diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml
index e07c55c80d..227192e93e 100644
--- a/.github/workflows/deploy.yml
+++ b/.github/workflows/deploy.yml
@@ -81,6 +81,18 @@ jobs:
- name: Install Netlify CLI
run: npm install netlify-cli -g
+ - name: Set branch context URL
+ continue-on-error: true
+ run: |
+ # Extract branch name from ref (removes refs/heads/ prefix)
+ if [[ ! -z "${{ inputs.netlify-alias }}" ]]; then
+ netlify env:set NEXTAUTH_URL ${{ inputs.site-url || vars.SITE_URL }} --context "branch:${{ inputs.netlify-alias }}"
+ fi
+ env:
+ NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
+ NETLIFY_SITE_ID: ${{ vars.NETLIFY_SITE_ID }}
+ GITHUB_HEAD_REF: ${{ github.head_ref }}
+
- name: Build using Netlify
run: netlify build --context ${{ inputs.netlify-context }} --offline
working-directory: site/gatsby-site
@@ -88,8 +100,6 @@ jobs:
NETLIFY_SITE_ID: ${{ vars.NETLIFY_SITE_ID }}
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- CYPRESS_PROJECT_ID: ${{ vars.CYPRESS_PROJECT_ID }}
- CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }}
E2E_ADMIN_USERNAME: ${{ secrets.E2E_ADMIN_USERNAME }}
E2E_ADMIN_PASSWORD: ${{ secrets.E2E_ADMIN_PASSWORD }}
ALGOLIA_ADMIN_KEY: ${{ secrets.ALGOLIA_ADMIN_KEY }}
@@ -97,11 +107,9 @@ jobs:
GATSBY_ALGOLIA_SEARCH_KEY: ${{ vars.GATSBY_ALGOLIA_SEARCH_KEY }}
GATSBY_AVAILABLE_LANGUAGES: ${{ vars.GATSBY_AVAILABLE_LANGUAGES }}
GATSBY_REALM_APP_ID: ${{ vars.GATSBY_REALM_APP_ID }}
- GOOGLE_TRANSLATE_API_KEY: ${{ secrets.GOOGLE_TRANSLATE_API_KEY }}
MONGODB_CONNECTION_STRING: ${{ secrets.MONGODB_CONNECTION_STRING }}
MONGODB_REPLICA_SET: ${{ secrets.MONGODB_REPLICA_SET }}
MONGODB_TRANSLATIONS_CONNECTION_STRING: ${{ secrets.MONGODB_TRANSLATIONS_CONNECTION_STRING }}
- TRANSLATE_SUBMISSION_DATE_START: ${{ vars.TRANSLATE_SUBMISSION_DATE_START }}
MONGODB_MIGRATIONS_CONNECTION_STRING: ${{ secrets.MONGODB_MIGRATIONS_CONNECTION_STRING }}
GATSBY_REALM_APP_GRAPHQL_URL: ${{ secrets.GATSBY_REALM_APP_GRAPHQL_URL }}
GATSBY_PRISMIC_REPO_NAME: ${{ vars.GATSBY_PRISMIC_REPO_NAME }}
@@ -116,7 +124,6 @@ jobs:
CLOUDFLARE_R2_SECRET_ACCESS_KEY: ${{ secrets.CLOUDFLARE_R2_SECRET_ACCESS_KEY }}
REALM_GRAPHQL_API_KEY: ${{ secrets.REALM_GRAPHQL_API_KEY }}
GATSBY_COMMIT_SHA: ${{ inputs.sha }}
- TRANSLATE_DRY_RUN: ${{ vars.TRANSLATE_DRY_RUN }}
REALM_API_APP_ID: ${{ vars.REALM_API_APP_ID }}
REALM_API_GROUP_ID: ${{ vars.REALM_API_GROUP_ID }}
REALM_APP_ID: ${{ vars.GATSBY_REALM_APP_ID }}
@@ -125,7 +132,8 @@ jobs:
ROLLBAR_POST_SERVER_ITEM_ACCESS_TOKEN: ${{ secrets.GATSBY_ROLLBAR_TOKEN }}
API_MONGODB_CONNECTION_STRING: ${{ secrets.API_MONGODB_CONNECTION_STRING }}
SITE_URL: ${{ inputs.site-url || vars.SITE_URL }}
- PROCESS_NOTIFICATIONS_SECRET: ${{ secrets.PROCESS_NOTIFICATIONS_SECRET }}
+ NEXTAUTH_URL: ${{ inputs.site-url || vars.SITE_URL }}
+ NEXTAUTH_SECRET: ${{ secrets.NEXTAUTH_SECRET }}
- name: Build size
run: |
diff --git a/.github/workflows/preview.yml b/.github/workflows/preview.yml
index e251115442..b96c27402a 100644
--- a/.github/workflows/preview.yml
+++ b/.github/workflows/preview.yml
@@ -50,16 +50,6 @@ jobs:
netlify-context: branch-deploy
runner-label: ${{ vars.PREVIEW_RUNNER_LABEL }}
- call-test:
- if: ${{ !failure() && !cancelled() }}
- uses: ./.github/workflows/test.yml
- needs: call-test-build
- secrets: inherit
- with:
- sha: ${{ github.event.pull_request.head.sha }}
- environment: staging
- runner-label: ${{ vars.PREVIEW_RUNNER_LABEL }}
-
call-test-playwright:
if: ${{ !failure() && !cancelled() }}
uses: ./.github/workflows/test-playwright.yml
diff --git a/.github/workflows/process-notifications.yml b/.github/workflows/process-notifications.yml
index 2c4509059b..803907d686 100644
--- a/.github/workflows/process-notifications.yml
+++ b/.github/workflows/process-notifications.yml
@@ -1,41 +1,50 @@
name: Process Notifications
-
on:
workflow_call:
inputs:
- environment:
- description: The Github environment to load secrets from
- type: string
- required: true
+ environment:
+ description: The Github environment to load secrets from
+ type: string
+ required: true
+ force-deploy:
+ description: Skip processing notifications if force deploy is true
+ type: boolean
+ required: false
+ default: false
jobs:
- execute-mutation:
+ execute-process:
+ if: ${{ inputs.force-deploy != true }}
runs-on: ubuntu-latest
environment: ${{ inputs.environment }}
steps:
- - name: Call GraphQL API
- env:
- SITE_URL: ${{ vars.SITE_URL }}
- PROCESS_NOTIFICATIONS_SECRET: ${{ secrets.PROCESS_NOTIFICATIONS_SECRET }}
- run: |
- RESPONSE=$(curl -s -o response.json -w "%{http_code}" -X POST "$SITE_URL/api/graphql" \
- -H "Content-Type: application/json" \
- -H "PROCESS_NOTIFICATIONS_SECRET: $PROCESS_NOTIFICATIONS_SECRET" \
- -d '{"query":"mutation { processNotifications }"}')
+ - name: Checkout code
+ uses: actions/checkout@v4
- HTTP_STATUS=$RESPONSE
+ - name: Setup Node.js
+ uses: actions/setup-node@v4
+ with:
+ node-version: "20"
+ cache: "npm"
+ cache-dependency-path: site/gatsby-site/package-lock.json
- if [ "$HTTP_STATUS" -ne 200 ]; then
- echo "GraphQL mutation failed with HTTP status: $HTTP_STATUS"
- cat response.json
- exit 1
- fi
+ - name: Install dependencies
+ working-directory: site/gatsby-site
+ run: npm ci
- if jq -e 'has("errors") or has("errorType")' response.json > /dev/null; then
- echo "GraphQL mutation failed with the following response:"
- jq '.' response.json
- exit 1
- fi
-
- echo "GraphQL mutation succeeded!"
- jq '.' response.json
+ - name: Process Notifications
+ working-directory: site/gatsby-site
+ env:
+ REALM_API_APP_ID: ${{ vars.REALM_API_APP_ID }}
+ REALM_API_GROUP_ID: ${{ vars.REALM_API_GROUP_ID }}
+ REALM_API_PRIVATE_KEY: ${{ secrets.REALM_API_PRIVATE_KEY }}
+ REALM_API_PUBLIC_KEY: ${{ secrets.REALM_API_PUBLIC_KEY }}
+ REALM_GRAPHQL_API_KEY: ${{ secrets.REALM_GRAPHQL_API_KEY }}
+ REALM_APP_ID: ${{ vars.REALM_APP_ID }}
+ API_MONGODB_CONNECTION_STRING: ${{ secrets.API_MONGODB_CONNECTION_STRING }}
+ ROLLBAR_POST_SERVER_ITEM_ACCESS_TOKEN: ${{ secrets.ROLLBAR_POST_SERVER_ITEM_ACCESS_TOKEN }}
+ MAILERSEND_API_KEY: ${{ secrets.MAILERSEND_API_KEY }}
+ NOTIFICATIONS_SENDER_NAME: ${{ vars.NOTIFICATIONS_SENDER_NAME }}
+ NOTIFICATIONS_SENDER: ${{ vars.NOTIFICATIONS_SENDER }}
+ SITE_URL: ${{ vars.SITE_URL }}
+ run: npm run process-notifications:ci
diff --git a/.github/workflows/production.yml b/.github/workflows/production.yml
index ea2fde4cb5..2646848d1e 100644
--- a/.github/workflows/production.yml
+++ b/.github/workflows/production.yml
@@ -52,16 +52,6 @@ jobs:
runner-label: ${{ vars.PRODUCTION_RUNNER_LABEL }}
cache-modifier: ${{ needs.cache-modifier.outputs.cache-modifier }}
- call-test:
- uses: ./.github/workflows/test.yml
- needs: [cache-modifier, call-test-build]
- secrets: inherit
- with:
- sha: ${{ github.sha }}
- environment: production
- runner-label: ${{ vars.PRODUCTION_RUNNER_LABEL }}
- cache-modifier: ${{ needs.cache-modifier.outputs.cache-modifier }}
-
call-test-playwright:
uses: ./.github/workflows/test-playwright.yml
needs: call-test-build
@@ -84,7 +74,13 @@ jobs:
call-deploy:
if: (inputs.force-deploy == true || success()) && !cancelled()
uses: ./.github/workflows/deploy.yml
- needs: [cache-modifier, call-test, call-test-api, call-test-playwright, call-test-playwright-full]
+ needs:
+ [
+ cache-modifier,
+ call-test-api,
+ call-test-playwright,
+ call-test-playwright-full,
+ ]
secrets: inherit
permissions:
pull-requests: write
@@ -95,10 +91,12 @@ jobs:
netlify-alias:
runner-label: ${{ vars.PRODUCTION_RUNNER_LABEL }}
cache-modifier: ${{ needs.cache-modifier.outputs.cache-modifier }}
-
+
call-process-notifications:
needs: call-deploy
uses: ./.github/workflows/process-notifications.yml
secrets: inherit
with:
- environment: production
\ No newline at end of file
+ environment: production
+ # inputs from the workflow_dispatch event come as strings even if they are explicitly defined as boolean
+ force-deploy: ${{ inputs.force-deploy == 'true' }}
diff --git a/.github/workflows/realm-empty-env.yml b/.github/workflows/realm-empty-env.yml
deleted file mode 100644
index 9150fee5a0..0000000000
--- a/.github/workflows/realm-empty-env.yml
+++ /dev/null
@@ -1,25 +0,0 @@
-name: Realm Deploy to Empty Environment
-
-on:
- push:
- branches:
- - staging
- workflow_dispatch:
-
-jobs:
- push:
- runs-on: ubuntu-latest
- environment: empty
- steps:
- - uses: actions/checkout@v2
- - name: "Install the Realm CLI"
- run: |
- npm install -g mongodb-realm-cli
- - name: Login
- run: |
- realm-cli login --api-key="${{ secrets.REALM_API_PUBLIC_KEY }}" --private-api-key="${{ secrets.REALM_API_PRIVATE_KEY }}" --realm-url https://services.cloud.mongodb.com --atlas-url https://cloud.mongodb.com
- - name: Push
- run: |
- cd site/realm
- realm-cli push --remote="${{ secrets.GATSBY_REALM_APP_ID }}" -y
-
diff --git a/.github/workflows/staging.yml b/.github/workflows/staging.yml
index 0f2b422cf7..42b4d6a5a8 100644
--- a/.github/workflows/staging.yml
+++ b/.github/workflows/staging.yml
@@ -60,16 +60,6 @@ jobs:
environment: staging
runner-label: ${{ vars.STAGING_RUNNER_LABEL }}
- call-test:
- uses: ./.github/workflows/test.yml
- needs: [cache-modifier, call-test-build]
- secrets: inherit
- with:
- sha: ${{ github.sha }}
- environment: staging
- runner-label: ${{ vars.STAGING_RUNNER_LABEL }}
- cache-modifier: ${{ needs.cache-modifier.outputs.cache-modifier }}
-
call-test-playwright-full:
if: ${{ !failure() && !cancelled() }}
uses: ./.github/workflows/test-playwright-full.yml
@@ -83,7 +73,7 @@ jobs:
call-deploy:
if: (inputs.force-deploy == true || success()) && !cancelled()
uses: ./.github/workflows/deploy.yml
- needs: [cache-modifier, call-test, call-test-playwright, call-test-api]
+ needs: [cache-modifier, call-test-playwright, call-test-api]
secrets: inherit
permissions:
pull-requests: write
@@ -94,10 +84,12 @@ jobs:
netlify-alias:
runner-label: ${{ vars.STAGING_RUNNER_LABEL }}
cache-modifier: ${{ needs.cache-modifier.outputs.cache-modifier }}
-
+
call-process-notifications:
needs: call-deploy
uses: ./.github/workflows/process-notifications.yml
secrets: inherit
with:
environment: staging
+ # inputs from the workflow_dispatch event come as strings even if they are explicitly defined as boolean
+ force-deploy: ${{ inputs.force-deploy == 'true' }}
diff --git a/.github/workflows/test-api.yml b/.github/workflows/test-api.yml
index c21a941d4f..12df1bfa15 100644
--- a/.github/workflows/test-api.yml
+++ b/.github/workflows/test-api.yml
@@ -58,21 +58,20 @@ jobs:
- name: Jest run
run: npm run test:api:ci
env:
- REALM_APP_ID: ""
- REALM_API_APP_ID: ""
- REALM_API_GROUP_ID: ""
- REALM_API_PUBLIC_KEY: ""
- REALM_API_PRIVATE_KEY: ""
- REALM_GRAPHQL_API_KEY: ""
+ REALM_APP_ID: dummy
+ REALM_API_APP_ID: dummy
+ REALM_API_GROUP_ID: dummy
+ REALM_API_PUBLIC_KEY: dummy
+ REALM_API_PRIVATE_KEY: dummy
+ REALM_GRAPHQL_API_KEY: dummy
API_MONGODB_CONNECTION_STRING: "" # dinamically set by globalSetup.ts
- E2E_ADMIN_USERNAME: ""
- E2E_ADMIN_PASSWORD: ""
ROLLBAR_POST_SERVER_ITEM_ACCESS_TOKEN: sarasa
MAILERSEND_API_KEY: something
NOTIFICATIONS_SENDER_NAME: Test Preview
NOTIFICATIONS_SENDER: test@test.com
- PROCESS_NOTIFICATIONS_SECRET: sarasa
SITE_URL: http://localhost:8000
+ NEXTAUTH_URL: http://localhost:8000
+ NEXTAUTH_SECRET: dummy
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4
diff --git a/.github/workflows/test-build.yml b/.github/workflows/test-build.yml
index 5b0332b868..a59585c4e8 100644
--- a/.github/workflows/test-build.yml
+++ b/.github/workflows/test-build.yml
@@ -54,16 +54,12 @@ jobs:
with:
path: |
site/gatsby-site/node_modules
- ~/.cache/Cypress
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}-${{ inputs.cache-modifier}}
- name: Install NPM dependencies
if: steps.cache-nodemodules.outputs.cache-hit != 'true'
- uses: cypress-io/github-action@v6
- with:
- working-directory: site/gatsby-site
- runTests: false
- install-command: npm ci
+ working-directory: site/gatsby-site
+ run: npm ci
- name: Use tests specific netlify.toml
run: mv tests-netlify.toml netlify.toml
@@ -80,8 +76,6 @@ jobs:
NETLIFY_SITE_ID: ${{ vars.NETLIFY_SITE_ID }}
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- CYPRESS_PROJECT_ID: ${{ vars.CYPRESS_PROJECT_ID }}
- CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }}
E2E_ADMIN_USERNAME: ${{ secrets.E2E_ADMIN_USERNAME }}
E2E_ADMIN_PASSWORD: ${{ secrets.E2E_ADMIN_PASSWORD }}
ALGOLIA_ADMIN_KEY: ${{ secrets.ALGOLIA_ADMIN_KEY }}
@@ -89,12 +83,10 @@ jobs:
GATSBY_ALGOLIA_SEARCH_KEY: ${{ vars.GATSBY_ALGOLIA_SEARCH_KEY }}
GATSBY_AVAILABLE_LANGUAGES: ${{ vars.GATSBY_AVAILABLE_LANGUAGES }}
GATSBY_REALM_APP_ID: ${{ vars.GATSBY_REALM_APP_ID }}
- GOOGLE_TRANSLATE_API_KEY: ${{ secrets.GOOGLE_TRANSLATE_API_KEY }}
MONGODB_CONNECTION_STRING: ${{ secrets.MONGODB_CONNECTION_STRING }}
MONGODB_REPLICA_SET: ${{ secrets.MONGODB_REPLICA_SET }}
MONGODB_TRANSLATIONS_CONNECTION_STRING: ${{ secrets.MONGODB_TRANSLATIONS_CONNECTION_STRING }}
MONGODB_MIGRATIONS_CONNECTION_STRING: ${{ secrets.MONGODB_MIGRATIONS_CONNECTION_STRING }}
- TRANSLATE_SUBMISSION_DATE_START: ${{ vars.TRANSLATE_SUBMISSION_DATE_START }}
GATSBY_REALM_APP_GRAPHQL_URL: ${{ secrets.GATSBY_REALM_APP_GRAPHQL_URL }}
GATSBY_PRISMIC_REPO_NAME: ${{ vars.GATSBY_PRISMIC_REPO_NAME }}
PRISMIC_ACCESS_TOKEN: ${{ secrets.PRISMIC_ACCESS_TOKEN }}
@@ -115,7 +107,8 @@ jobs:
REALM_API_PRIVATE_KEY: ${{ secrets.REALM_API_PRIVATE_KEY }}
ROLLBAR_POST_SERVER_ITEM_ACCESS_TOKEN: ${{ secrets.GATSBY_ROLLBAR_TOKEN }}
API_MONGODB_CONNECTION_STRING: ${{ secrets.API_MONGODB_CONNECTION_STRING }}
-
+ NEXTAUTH_URL: http://localhost:8000
+ NEXTAUTH_SECRET: 678x1irXYWeiOqTwCv1awvkAUbO9eHa5xzQEYhxhMms= # only used in local tests
- name: Cache build
uses: actions/cache/save@v4
diff --git a/.github/workflows/test-playwright-full.yml b/.github/workflows/test-playwright-full.yml
index 282cf2a5f2..36334acdbe 100644
--- a/.github/workflows/test-playwright-full.yml
+++ b/.github/workflows/test-playwright-full.yml
@@ -48,7 +48,6 @@ jobs:
with:
path: |
site/gatsby-site/node_modules
- ~/.cache/Cypress
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}-${{ inputs.cache-modifier }}
- name: Install NPM dependencies
@@ -57,7 +56,7 @@ jobs:
working-directory: site/gatsby-site
- name: start in memory mongodb
- run: nohup node -r ts-node/register playwright/memory-mongo.ts &
+ run: nohup npm run start:memory-mongo:ci &
working-directory: site/gatsby-site
env:
MONGODB_CONNECTION_STRING: mongodb://127.0.0.1:4110/
@@ -85,11 +84,9 @@ jobs:
GATSBY_ALGOLIA_SEARCH_KEY: ${{ vars.GATSBY_ALGOLIA_SEARCH_KEY }}
GATSBY_AVAILABLE_LANGUAGES: ${{ vars.GATSBY_AVAILABLE_LANGUAGES }}
GATSBY_REALM_APP_ID: ${{ vars.GATSBY_REALM_APP_ID }}
- GOOGLE_TRANSLATE_API_KEY: ${{ secrets.GOOGLE_TRANSLATE_API_KEY }}
MONGODB_CONNECTION_STRING: mongodb://127.0.0.1:4110/
MONGODB_TRANSLATIONS_CONNECTION_STRING: mongodb://127.0.0.1:4110/
MONGODB_MIGRATIONS_CONNECTION_STRING: mongodb://127.0.0.1:4110/
- TRANSLATE_SUBMISSION_DATE_START: ${{ vars.TRANSLATE_SUBMISSION_DATE_START }}
GATSBY_REALM_APP_GRAPHQL_URL: ${{ secrets.GATSBY_REALM_APP_GRAPHQL_URL }}
GATSBY_PRISMIC_REPO_NAME: ${{ vars.GATSBY_PRISMIC_REPO_NAME }}
PRISMIC_ACCESS_TOKEN: ${{ secrets.PRISMIC_ACCESS_TOKEN }}
@@ -137,8 +134,9 @@ jobs:
MAILERSEND_API_KEY: something
NOTIFICATIONS_SENDER_NAME: Test Preview
NOTIFICATIONS_SENDER: test@test.com
- PROCESS_NOTIFICATIONS_SECRET: sarasa
SITE_URL: http://localhost:8000
+ NEXTAUTH_URL: http://localhost:8000
+ NEXTAUTH_SECRET: 678x1irXYWeiOqTwCv1awvkAUbO9eHa5xzQEYhxhMms= # only used in local tests
- name: Upload Playwright traces
if: failure()
diff --git a/.github/workflows/test-playwright.yml b/.github/workflows/test-playwright.yml
index 2a54323ea6..bf21b53249 100644
--- a/.github/workflows/test-playwright.yml
+++ b/.github/workflows/test-playwright.yml
@@ -48,7 +48,6 @@ jobs:
with:
path: |
site/gatsby-site/node_modules
- ~/.cache/Cypress
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}-${{ inputs.cache-modifier }}
- name: Install NPM dependencies
@@ -92,8 +91,9 @@ jobs:
MAILERSEND_API_KEY: something
NOTIFICATIONS_SENDER_NAME: Test Preview
NOTIFICATIONS_SENDER: test@test.com
- PROCESS_NOTIFICATIONS_SECRET: sarasa
SITE_URL: http://localhost:8000
+ NEXTAUTH_URL: http://localhost:8000
+ NEXTAUTH_SECRET: 678x1irXYWeiOqTwCv1awvkAUbO9eHa5xzQEYhxhMms= # only used in local tests
- uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 6649ecd4f3..c8228851ef 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -107,11 +107,9 @@ jobs:
GATSBY_ALGOLIA_SEARCH_KEY: ${{ vars.GATSBY_ALGOLIA_SEARCH_KEY }}
GATSBY_AVAILABLE_LANGUAGES: ${{ vars.GATSBY_AVAILABLE_LANGUAGES }}
GATSBY_REALM_APP_ID: ${{ vars.GATSBY_REALM_APP_ID }}
- GOOGLE_TRANSLATE_API_KEY: ${{ secrets.GOOGLE_TRANSLATE_API_KEY }}
MONGODB_CONNECTION_STRING: ${{ secrets.MONGODB_CONNECTION_STRING }}
MONGODB_REPLICA_SET: ${{ secrets.MONGODB_REPLICA_SET }}
MONGODB_TRANSLATIONS_CONNECTION_STRING: ${{ secrets.MONGODB_TRANSLATIONS_CONNECTION_STRING }}
- TRANSLATE_SUBMISSION_DATE_START: ${{ vars.TRANSLATE_SUBMISSION_DATE_START }}
MONGODB_MIGRATIONS_CONNECTION_STRING: ${{ secrets.MONGODB_MIGRATIONS_CONNECTION_STRING }}
GATSBY_REALM_APP_GRAPHQL_URL: ${{ secrets.GATSBY_REALM_APP_GRAPHQL_URL }}
GATSBY_ROLLBAR_TOKEN: ${{ secrets.GATSBY_ROLLBAR_TOKEN }}
diff --git a/.github/workflows/translate-production.yml b/.github/workflows/translate-production.yml
new file mode 100644
index 0000000000..a5d9cad247
--- /dev/null
+++ b/.github/workflows/translate-production.yml
@@ -0,0 +1,15 @@
+name: Translate Reports - Production
+
+on:
+ schedule:
+ - cron: "0 5 * * *" # Run every day at 5 AM GMT
+
+ workflow_dispatch:
+
+jobs:
+ call-translate:
+ uses: ./.github/workflows/translate.yml
+ secrets: inherit
+ with:
+ environment: production
+
diff --git a/.github/workflows/translate-staging.yml b/.github/workflows/translate-staging.yml
new file mode 100644
index 0000000000..4b839bc475
--- /dev/null
+++ b/.github/workflows/translate-staging.yml
@@ -0,0 +1,15 @@
+name: Translate Reports - Staging
+
+on:
+ schedule:
+ - cron: "0 5 * * *" # Run every day at 5 AM GMT
+
+ workflow_dispatch:
+
+jobs:
+ call-translate:
+ uses: ./.github/workflows/translate.yml
+ secrets: inherit
+ with:
+ environment: staging
+
diff --git a/.github/workflows/translate.yml b/.github/workflows/translate.yml
new file mode 100644
index 0000000000..5bfeacd82b
--- /dev/null
+++ b/.github/workflows/translate.yml
@@ -0,0 +1,38 @@
+name: Translate Reports
+
+on:
+ workflow_call:
+ inputs:
+ environment:
+ description: The Github environment to load secrets from
+ type: string
+ required: true
+
+jobs:
+ translate:
+ environment: ${{ inputs.environment }}
+ runs-on: ubuntu-latest
+
+ steps:
+ - name: Checkout repository
+ uses: actions/checkout@v4
+
+ - name: Setup Node.js
+ uses: actions/setup-node@v4
+ with:
+ node-version: lts/*
+
+ - name: Install NPM dependencies
+ run: npm ci
+ working-directory: site/gatsby-site
+
+ - name: Run translation script
+ run: npm run translate-reports
+ working-directory: site/gatsby-site
+ env:
+ MONGODB_TRANSLATIONS_CONNECTION_STRING: ${{ secrets.MONGODB_TRANSLATIONS_CONNECTION_STRING }}
+ GOOGLE_TRANSLATE_API_KEY: ${{ secrets.GOOGLE_TRANSLATE_API_KEY }}
+ GATSBY_AVAILABLE_LANGUAGES: ${{ vars.GATSBY_AVAILABLE_LANGUAGES }}
+ TRANSLATE_SUBMISSION_DATE_START: ${{ vars.TRANSLATE_SUBMISSION_DATE_START }}
+ TRANSLATE_DRY_RUN: ${{ vars.TRANSLATE_DRY_RUN }}
+
diff --git a/README.md b/README.md
index 74a0a22fc2..10b06390f9 100644
--- a/README.md
+++ b/README.md
@@ -17,6 +17,10 @@
+
+
+
+
diff --git a/site/gatsby-site/.eslintrc.json b/site/gatsby-site/.eslintrc.json
index 3774112a0b..8b80efee28 100755
--- a/site/gatsby-site/.eslintrc.json
+++ b/site/gatsby-site/.eslintrc.json
@@ -7,7 +7,7 @@
"prettier",
"prettier/react"
],
- "plugins": ["react", "import", "jsx-a11y", "cypress"],
+ "plugins": ["react", "import", "jsx-a11y"],
"settings": {
"react": {
"version": "detect"
@@ -60,8 +60,7 @@
"env": {
"es6": true,
"browser": true,
- "node": true,
- "cypress/globals": true
+ "node": true
},
"globals": {
"graphql": false,
diff --git a/site/gatsby-site/README.md b/site/gatsby-site/README.md
index b56df875a4..8c73bd7cfe 100644
--- a/site/gatsby-site/README.md
+++ b/site/gatsby-site/README.md
@@ -47,9 +47,9 @@ Once you have cloned the repository, to set up a local development environment f
CLOUDFLARE_R2_SECRET_ACCESS_KEY= # Secret access key for Cloudflare R2 storage
CLOUDFLARE_R2_BUCKET_NAME= # Name of the Cloudflare R2 bucket for storage
GATSBY_CLOUDFLARE_R2_PUBLIC_BUCKET_URL= # Public URL for accessing the Cloudflare R2 bucket from the Gatsby app
- MAILERSEND_API_KEY= # API key for MailerSend email service or dummy value if you don't plan to send emails
- NOTIFICATIONS_SENDER_NAME=AIID Notifications # Name of the sender for email notifications
- NOTIFICATIONS_SENDER=notifications@incidentdatabase.ai # Email address of the sender for email notifications
+ MAILERSEND_API_KEY= # API key for MailerSend email service
+ NOTIFICATIONS_SENDER_NAME= # Name of the sender for email notifications
+ NOTIFICATIONS_SENDER= # Email address of the sender for email notifications
SITE_URL=http://localhost:8000
```
@@ -150,6 +150,7 @@ npm run codegen
### Schema and API Stitching
> [!IMPORTANT]
+
The API previously relied on the MongoDB Atlas Realm GraphQL API to fetch data, [but now that it has been deprecated](https://www.mongodb.com/developer/products/atlas/deprecating-mongodb-atlas-graphql-hosting-services/), we have migrated to a new API that we implement in this codebase. During the migration from Realm to our API, we stitch two GraphQL schemas: the auto-generated one from Atlas and the one defined in this codebase. These schemas can be found in the `remote.ts` and `local.ts` files respectively. The migration process involves progressively transferring GraphQL fields and functionality from the remote schema to the local one. The final combined schema is found in `schema.ts`.
### Email notifications
diff --git a/site/gatsby-site/blog/join-raic/index.fr.mdx b/site/gatsby-site/blog/join-raic/index.fr.mdx
index 7a419b07fc..94466db376 100644
--- a/site/gatsby-site/blog/join-raic/index.fr.mdx
+++ b/site/gatsby-site/blog/join-raic/index.fr.mdx
@@ -1,5 +1,5 @@
---
-titre: "Rejoignez l'équipe fondatrice de Responsible AI Collaborative"
+title: "Rejoignez l'équipe fondatrice de Responsible AI Collaborative"
metaTitle: "Rejoignez l'équipe fondatrice de Responsible AI Collaborative"
metaDescription: ''
date: '2022-03-29'
diff --git a/site/gatsby-site/cypress.config.js b/site/gatsby-site/cypress.config.js
deleted file mode 100644
index 7c0472bda6..0000000000
--- a/site/gatsby-site/cypress.config.js
+++ /dev/null
@@ -1,29 +0,0 @@
-const { defineConfig } = require('cypress');
-
-module.exports = defineConfig({
- video: false,
- chromeWebSecurity: false,
- screenshotOnRunFailure: false,
- defaultCommandTimeout: 12000,
- requestTimeout: 30000,
- responseTimeout: 30000,
- retries: {
- runMode: 2,
- openMode: 0,
- },
- e2e: {
- experimentalRunAllSpecs: true,
- // We've imported your old cypress plugins here.
- // You may want to clean this up later by importing these.
- setupNodeEvents(on, config) {
- if (process.env.INSTRUMENT) {
- require('@cypress/code-coverage/task')(on, config);
- }
-
- require('./cypress/plugins/index.js')(on, config);
-
- return config;
- },
- baseUrl: 'http://localhost:8000/',
- },
-});
diff --git a/site/gatsby-site/cypress/e2e/integration/apps/newsdigest.cy.js b/site/gatsby-site/cypress/e2e/integration/apps/newsdigest.cy.js
deleted file mode 100644
index 78c4ecf18a..0000000000
--- a/site/gatsby-site/cypress/e2e/integration/apps/newsdigest.cy.js
+++ /dev/null
@@ -1,110 +0,0 @@
-import { format } from 'date-fns';
-import { conditionalIt } from '../../../support/utils';
-import newsArticles from '../../../fixtures/candidates/newsArticles.json';
-
-describe('News Digest', () => {
- const url = '/apps/newsdigest';
-
- it('Successfully loads', () => {
- cy.visit(url);
- });
-
- it('Should load candidate cards', () => {
- newsArticles.data.candidates[0].date_published = format(new Date(), 'yyyy-MM-dd');
- newsArticles.data.candidates[1].date_published = format(new Date(), 'yyyy-MM-dd');
-
- cy.conditionalIntercept(
- '**/graphql',
- (req) => req.body.operationName == 'NewsArticles',
- 'NewsArticles',
- newsArticles
- );
-
- cy.visit(url);
- cy.get('[data-cy="candidate-card"]', { timeout: 15000 }).should('exist');
- });
-
- it('Should open submit form on pressing submit', () => {
- newsArticles.data.candidates[0].date_published = format(new Date(), 'yyyy-MM-dd');
- newsArticles.data.candidates[1].date_published = format(new Date(), 'yyyy-MM-dd');
-
- cy.conditionalIntercept(
- '**/graphql',
- (req) => req.body.operationName == 'NewsArticles',
- 'NewsArticles',
- newsArticles
- );
-
- cy.visit(url, {
- onBeforeLoad(window) {
- cy.stub(window, 'open', (url) => {
- expect(url.slice(0, 12)).to.equal('/apps/submit');
- });
- },
- });
- cy.get('[data-cy="candidate-dropdown"] button').first().click();
- cy.get('[data-cy="submit-icon"]', { timeout: 15000 }).first().parent().click();
- cy.window().its('open').should('be.called');
- });
-
- conditionalIt(
- !Cypress.env('isEmptyEnvironment') && Cypress.env('e2eUsername') && Cypress.env('e2ePassword'),
- 'Should dismiss and restore items',
- () => {
- cy.login(Cypress.env('e2eUsername'), Cypress.env('e2ePassword'));
-
- newsArticles.data.candidates[0].date_published = format(new Date(), 'yyyy-MM-dd');
- newsArticles.data.candidates[1].date_published = format(new Date(), 'yyyy-MM-dd');
-
- cy.conditionalIntercept(
- '**/graphql',
- (req) => req.body.operationName == 'NewsArticles',
- 'NewsArticles',
- newsArticles
- );
-
- cy.conditionalIntercept(
- '**/graphql',
- (req) => req.body.operationName == 'UpdateCandidate',
- 'UpdateCandidate',
- {
- data: {
- updateOneCandidate: {
- url: 'https://dummy.com',
- },
- },
- }
- );
-
- cy.visit(url);
-
- cy.get('[data-cy="results"] [data-cy="candidate-card"] [data-cy="candidate-dropdown"]', {
- timeout: 15000,
- })
- .first()
- .parent()
- .parent()
- .parent()
- .invoke('attr', 'data-id')
- .then((dataId) => {
- cy.get(`[data-id="${dataId}"] [data-cy="candidate-dropdown"]`).click();
-
- cy.get(`[data-id="${dataId}"] [data-cy="dismiss-icon"]`).parent().click();
-
- cy.get(`[data-cy="dismissed"] [data-id="${dataId}"]`).should('exist');
-
- cy.get(`[data-cy="results"] [data-id="${dataId}"]`).should('not.exist');
-
- cy.get(`[data-cy="dismissed-summary"]`).click();
-
- cy.get(`[data-id="${dataId}"] [data-cy="candidate-dropdown"]`).click();
-
- cy.get(`[data-id="${dataId}"] [data-cy="restore-icon"]`).parent().click();
-
- cy.get(`[data-cy="results"] [data-id="${dataId}"]`, { timeout: 8000 }).should('exist');
-
- cy.get(`[data-cy="dismissed"] [data-id="${dataId}"]`).should('not.exist');
- });
- }
- );
-});
diff --git a/site/gatsby-site/cypress/e2e/integration/downloadIndex.cy.js b/site/gatsby-site/cypress/e2e/integration/downloadIndex.cy.js
deleted file mode 100644
index 8429d815c5..0000000000
--- a/site/gatsby-site/cypress/e2e/integration/downloadIndex.cy.js
+++ /dev/null
@@ -1,100 +0,0 @@
-import { gql } from '@apollo/client';
-import path from 'path';
-
-const testClassifications = [
- 'CSET:Harm Distribution Basis:Race',
- 'CSET:Harm Distribution Basis:Religion',
- 'CSET:Harm Distribution Basis:National origin or immigrant status',
- 'CSET:Harm Distribution Basis:Sex',
- 'CSET:Intent:Accident',
- 'CSET:Lives Lost:false',
- 'CSET:Location:Global',
- 'CSET:Named Entities:Microsoft',
- 'CSET:Named Entities:Twitter',
- 'CSET:Named Entities:Tay',
- 'CSET:Named Entities:Xiaoice',
- 'CSET:Near Miss:Harm caused',
- 'CSET:Severity:Minor',
- 'CSET:AI Applications:comprehension',
- 'CSET:AI Applications:language output',
- 'CSET:AI Applications:chatbot',
- 'CSET:AI Techniques:content creation',
- 'CSET:AI Techniques:language recognition natural language processing',
- 'CSET:Harm Type:Psychological harm',
- 'CSET:Harm Type:Harm to social or political systems',
- 'CSET:Level of Autonomy:Medium',
- 'CSET:Nature of End User:Amateur',
- 'CSET:Physical System:Software only',
- 'CSET:Problem Nature:Specification',
- 'CSET:Problem Nature:Robustness',
- 'CSET:Problem Nature:Assurance',
- 'CSET:Public Sector Deployment:false',
- 'CSET:Relevant AI functions:Perception',
- 'CSET:Relevant AI functions:Cognition',
- 'CSET:Relevant AI functions:Action',
- 'CSET:Sector of Deployment:Arts, entertainment and recreation',
- 'CSET:System Developer:Microsoft',
- 'CSET:Technology Purveyor:Microsoft',
- 'CSET:Technology Purveyor:Twitter',
-];
-
-describe('Download Algolia Index', () => {
- const url = '/downloadIndex';
-
- const downloadsFolder = Cypress.config('downloadsFolder');
-
- it.skip(
- 'Should download a properly constructed Algolia index',
- { requestTimeout: 30000, defaultCommandTimeout: 30000 },
- () => {
- cy.visit(url);
-
- cy.query({
- query: gql`
- query {
- reports(limit: 9999) {
- report_number
- }
- }
- `,
- }).then(({ data: { reports } }) => {
- cy.get('[data-cy=download]').click();
-
- cy.readFile(path.join(downloadsFolder, 'index.json'), { timeout: 15000 }).then((index) => {
- expect(index).to.have.length(reports.length);
-
- const report = index.find((r) => r.report_number == 922);
-
- expect(report).to.deep.nested.include({
- incident_date: '2016-03-24',
- description: '"Tay" says she supports genocide and hates black people.',
- authors: ['Rob Price'],
- image_url:
- 'https://amp.businessinsider.com/images/56f3ebc19105842b008b870b-960-480.png',
- cloudinary_id:
- 'reports/amp.businessinsider.com/images/56f3ebc19105842b008b870b-960-480.png',
- language: 'en',
- source_domain: 'businessinsider.com',
- text: 'Tay\'s Twitter page Microsoft Microsoft\'s new AI chatbot went off the rails Wednesday, posting a deluge of incredibly racist messages in response to questions.\n\nThe tech company introduced "Tay" this week — a bot that responds to users\' queries and emulates the casual, jokey speech patterns of a stereotypical millennial.\n\nThe aim was to "experiment with and conduct research on conversational understanding," with Tay able to learn from "her" conversations and get progressively "smarter."\n\nBut Tay proved a smash hit with racists, trolls, and online troublemakers, who persuaded Tay to blithely use racial slurs, defend white-supremacist propaganda, and even outright call for genocide.\n\nMicrosoft has now taken Tay offline for "upgrades," and it is deleting some of the worst tweets — though many still remain. It\'s important to note that Tay\'s racism is not a product of Microsoft or of Tay itself. Tay is simply a piece of software that is trying to learn how humans talk in a conversation. Tay doesn\'t even know it exists, or what racism is. The reason it spouted garbage is that racist humans on Twitter quickly spotted a vulnerability — that Tay didn\'t understand what it was talking about — and exploited it.\n\nNonetheless, it is hugely embarrassing for the company.\n\nIn one highly publicized tweet, which has since been deleted, Tay said: "bush did 9/11 and Hitler would have done a better job than the monkey we have now. donald trump is the only hope we\'ve got." In another, responding to a question, she said, "ricky gervais learned totalitarianism from adolf hitler, the inventor of atheism."\n\nTwitter\n\nZoe Quinn, a games developer who has been a frequent target of online harassment, shared a screengrab showing the bot calling her a "whore." (The tweet also seems to have been deleted.)\n\nMany extremely inflammatory tweets remain online as of writing.\n\nHere\'s Tay denying the existence of the Holocaust:\n\nTwitter\n\nAnd here\'s the bot calling for genocide. (Note: In some — but not all — instances, people managed to have Tay say offensive comments by asking them to repeat them. This appears to be what happened here.)\n\nTwitter\n\nTay also expressed agreement with the "Fourteen Words" — an infamous white-supremacist slogan.\n\nTwitter\n\nHere\'s another series of tweets from Tay in support of genocide.\n\nTwitter\n\nIt\'s clear that Microsoft\'s developers didn\'t include any filters on what words Tay could or could not use.\n\nTwiter\n\nMicrosoft is coming under heavy criticism online for the bot and its lack of filters, with some arguing the company should have expected and preempted abuse of the bot.\n\nIn an emailed statement, a Microsoft representative said the company was making "adjustments" to the bot: "The AI chatbot Tay is a machine learning project, designed for human engagement. As it learns, some of its responses are inappropriate and indicative of the types of interactions some people are having with it. We\'re making some adjustments to Tay."',
- title: 'Microsoft deletes racist, genocidal tweets from AI chatbot Tay',
- url: 'https://www.businessinsider.com/microsoft-deletes-racist-genocidal-tweets-from-ai-chatbot-tay-2016-3',
- epoch_date_downloaded: 1555113600,
- epoch_date_modified: 1592092800,
- epoch_date_published: 1458777600,
- epoch_incident_date: 1458777600,
- epoch_date_submitted: 1559347200,
- submitters: ['Anonymous'],
- report_number: 922,
- incident_id: 6,
- });
-
- expect(report.classifications.length).to.eq(testClassifications.length);
-
- cy.wrap(report.classifications).each((key) => {
- expect(testClassifications).to.include(key);
- });
- });
- });
- }
- );
-});
diff --git a/site/gatsby-site/cypress/e2e/integration/rollbar.cy.js b/site/gatsby-site/cypress/e2e/integration/rollbar.cy.js
deleted file mode 100644
index 66ac9705a2..0000000000
--- a/site/gatsby-site/cypress/e2e/integration/rollbar.cy.js
+++ /dev/null
@@ -1,21 +0,0 @@
-import { maybeIt } from '../../support/utils';
-
-describe('Rollbar', () => {
- maybeIt('Should log an error to Rollbar', () => {
- cy.intercept('POST', 'https://api.rollbar.com/api/1/item/').as('rollbarAPICall');
-
- cy.visit('/login');
-
- cy.get('input[name=email]').type(Cypress.env('e2eUsername'));
-
- cy.get('input[name=password]').type('invalidPassword');
-
- cy.get('[data-cy="login-btn"]').click();
-
- cy.wait('@rollbarAPICall').then((interception) => {
- expect(interception.response.statusCode).to.equal(200);
- expect(interception.response.statusMessage).to.equal('OK');
- expect(interception.response.body.err).to.equal(0);
- });
- });
-});
diff --git a/site/gatsby-site/cypress/e2e/integration/snapshots.cy.js b/site/gatsby-site/cypress/e2e/integration/snapshots.cy.js
deleted file mode 100644
index 6064bb9895..0000000000
--- a/site/gatsby-site/cypress/e2e/integration/snapshots.cy.js
+++ /dev/null
@@ -1,30 +0,0 @@
-import { conditionalIt } from '../../support/utils';
-
-describe('The Database Snapshots Page', () => {
- const url = '/research/snapshots';
-
- it('Successfully loads', () => {
- cy.visit(url);
- });
-
- conditionalIt(
- !Cypress.env('isEmptyEnvironment'),
- 'Should display a list of snapshots to download',
- () => {
- cy.visit(url);
-
- cy.get('[data-cy="snapshots-list"] li')
- .should('exist')
- .and('be.visible')
- .and('have.length.gt', 0);
-
- cy.get('[data-cy="snapshots-list"] li').each((item) => {
- expect(item[0].innerText).to.match(
- /^\d{4}-\d{2}-\d{2} \d{1,2}:\d{2} (AM|PM) · \d+(\.\d{2})? MB · backup-\d{14}\.tar\.bz2$/
- );
-
- expect(item.find('a').attr('href')).to.match(/^https:\/\/.*\/backup-\d{14}\.tar\.bz2$/);
- });
- }
- );
-});
diff --git a/site/gatsby-site/cypress/e2e/unit/AlgoliaUpdater.cy.js b/site/gatsby-site/cypress/e2e/unit/AlgoliaUpdater.cy.js
deleted file mode 100644
index 2989b92883..0000000000
--- a/site/gatsby-site/cypress/e2e/unit/AlgoliaUpdater.cy.js
+++ /dev/null
@@ -1,451 +0,0 @@
-const { ObjectId } = require('bson');
-
-const AlgoliaUpdater = require('../../../src/utils/AlgoliaUpdater');
-
-const incidents = [
- {
- incident_id: 1,
- date: '2020-06-14',
- reports: [1, 23],
- },
-];
-
-const reports = [
- {
- _id: new ObjectId('60dd465f80935bc89e6f9b01'),
- authors: ['Alistair Barr'],
- date_downloaded: '2019-04-13',
- date_modified: '2020-06-14',
- date_published: '2015-05-19',
- date_submitted: '2019-06-01',
- description: 'Description of report 1',
- epoch_date_downloaded: 1555113600,
- epoch_date_modified: 1592092800,
- epoch_date_published: 1431993600,
- epoch_date_submitted: 1559347200,
- image_url: 'http://url.com',
- cloudinary_id: 'http://cloudinary.com',
- language: 'en',
- report_number: 1,
- source_domain: 'blogs.wsj.com',
- submitters: ['Roman Yampolskiy'],
- tags: [],
- text: 'Report 1 **text**',
- plain_text: 'Report 1 text',
- title: 'Report 1 title',
- url: 'https://url.com/stuff',
- },
- {
- _id: new ObjectId('60dd465f80935bc89e6f9b02'),
- authors: ['Alistair Barr'],
- date_downloaded: '2019-04-13',
- date_modified: '2020-06-14',
- date_published: '2015-05-19',
- date_submitted: '2019-06-01',
- description: 'Description of report 23',
- epoch_date_downloaded: 1555113600,
- epoch_date_modified: 1592092800,
- epoch_date_published: 1431993600,
- epoch_date_submitted: 1559347200,
- image_url: 'http://url.com',
- cloudinary_id: 'http://cloudinary.com',
- language: 'es',
- report_number: 23,
- source_domain: 'blogs.wsj.com',
- submitters: ['Roman Yampolskiy'],
- tags: [],
- text: 'Report 23 **text**',
- plain_text: 'Report 23 text',
- title: 'Report 23 title',
- url: 'https://url.com/stuff',
- },
-
- // this report hast no parent incidents
- {
- _id: new ObjectId('60dd465f80935bc89e6f9b07'),
- authors: ['Test User'],
- date_downloaded: '2019-04-13',
- date_modified: '2020-06-14',
- date_published: '2015-05-19',
- date_submitted: '2019-06-01',
- description: 'Description of report 40',
- epoch_date_downloaded: 1555113600,
- epoch_date_modified: 1592092800,
- epoch_date_published: 1431993600,
- epoch_date_submitted: 1559347200,
- image_url: 'http://url.com',
- cloudinary_id: 'http://cloudinary.com',
- language: 'es',
- report_number: 40,
- source_domain: 'blogs.wsj.com',
- submitters: ['Roman Yampolskiy'],
- tags: [],
- text: 'Report 40 **text**',
- plain_text: 'Report 40 text',
- title: 'Report 40 title',
- url: 'https://url.com/stuff',
- },
-];
-
-const classifications = [
- {
- _id: '60dd465f80935bc89e6f9b00',
- incidents: [1],
- reports: [],
- namespace: 'CSETv0',
- attributes: [
- { short_name: 'Named Entities', value_json: '["Amazon"]' },
- {
- short_name: 'Harm Type',
- value_json: '["Harm to physical health/safety", "Harm to physical property"]',
- },
- { short_name: 'Publish', value_json: 'true' },
- ],
- notes: null,
- },
- {
- _id: '60dd465f80935bc89e6f9b01',
- incidents: [],
- reports: [],
- namespace: 'SHOULD NOT BE INCLUDED',
- attributes: [{ short_name: 'Something', value_json: '"Great"' }],
- notes: 'Nothing to see here',
- },
-];
-
-const duplicates = [
- {
- duplicate_incident_number: 247,
- true_incident_number: 246,
- },
-];
-
-describe('Algolia', () => {
- it('Should update translations to Algolia', () => {
- const translatedReportsEN = [
- {
- _id: '61d5ad9f102e6e30fca9065r',
- text: 'translated-en-text **report 23**',
- plain_text: 'translated-en-text report 23',
- title: 'translated-en-title report 23',
- report_number: 23,
- },
- ];
-
- const translatedReportsES = [
- {
- _id: '61d5ad9f102e6e30fca90ddf',
- text: 'translated-es-text **report 1**',
- plain_text: 'translated-es-text report 1',
- title: 'translated-es-title report 1',
- report_number: 1,
- },
- ];
-
- const reporter = { log: cy.stub() };
-
- const classificationsCollection = {
- find: cy.stub().returns({
- toArray: cy.stub().resolves(classifications),
- }),
- };
-
- const reportsENCollection = {
- find: cy.stub().returns({
- toArray: cy.stub().resolves(translatedReportsEN),
- }),
- };
-
- const reportsESCollection = {
- find: cy.stub().returns({
- toArray: cy.stub().resolves(translatedReportsES),
- }),
- };
-
- const incidentsCollection = {
- find: cy.stub().returns({
- toArray: cy.stub().resolves(incidents),
- }),
- };
-
- const projection = {
- _id: 1,
- authors: 1,
- date_downloaded: 1,
- date_modified: 1,
- date_published: 1,
- date_submitted: 1,
- description: 1,
- epoch_date_downloaded: 1,
- epoch_date_modified: 1,
- epoch_date_published: 1,
- epoch_date_submitted: 1,
- image_url: 1,
- language: 1,
- report_number: 1,
- source_domain: 1,
- submitters: 1,
- title: 1,
- url: 1,
- plain_text: 1,
- editor_notes: 1,
- cloudinary_id: 1,
- is_incident_report: 1,
- flag: 1,
- };
-
- const reportsCollection = {
- find: cy
- .stub()
- .withArgs({}, { projection })
- .returns({
- toArray: cy.stub().resolves(reports),
- }),
- };
-
- const duplicatesCollection = {
- find: cy.stub().returns({
- toArray: cy.stub().resolves(duplicates),
- }),
- };
-
- const mongoClient = {
- connect: cy.stub(),
- close: cy.stub(),
- db: cy.stub().returns({
- collection: (() => {
- const stub = cy.stub();
-
- stub.withArgs('reports').returns(reportsCollection);
- stub.withArgs('classifications').returns(classificationsCollection);
- stub.withArgs('incidents').returns(incidentsCollection);
- stub.withArgs('reports_en').returns(reportsENCollection);
- stub.withArgs('reports_es').returns(reportsESCollection);
- stub.withArgs('duplicates').returns(duplicatesCollection);
-
- return stub;
- })(),
- }),
- };
-
- const esIndex = {
- replaceAllObjects: cy.stub().resolves({ objectIDs: ['1', '2'] }),
- setSettings: cy.stub().resolves({}),
- deleteBy: cy.stub().resolves({}),
- };
-
- const esIndexReplica = {
- setSettings: cy.stub().resolves({}),
- };
-
- const enIndex = {
- replaceAllObjects: cy.stub().resolves({ objectIDs: ['1', '2'] }),
- setSettings: cy.stub().resolves({}),
- deleteBy: cy.stub().resolves({}),
- };
-
- const enIndexReplica = {
- setSettings: cy.stub().resolves({}),
- };
-
- const algoliaClient = {
- initIndex: (() => {
- const stub = cy.stub();
-
- stub.withArgs('instant_search-es').returns(esIndex);
- stub.withArgs('instant_search-en').returns(enIndex);
-
- stub.withArgs('instant_search-es-featured').returns(esIndexReplica);
- stub.withArgs('instant_search-en-featured').returns(enIndexReplica);
-
- stub.withArgs('instant_search-es_epoch_incident_date_desc').returns(esIndexReplica);
- stub.withArgs('instant_search-en_epoch_incident_date_desc').returns(enIndexReplica);
-
- stub.withArgs('instant_search-es_epoch_incident_date_asc').returns(esIndexReplica);
- stub.withArgs('instant_search-en_epoch_incident_date_asc').returns(enIndexReplica);
-
- stub.withArgs('instant_search-es_epoch_date_published_desc').returns(esIndexReplica);
- stub.withArgs('instant_search-en_epoch_date_published_desc').returns(enIndexReplica);
-
- stub.withArgs('instant_search-es_epoch_date_published_asc').returns(esIndexReplica);
- stub.withArgs('instant_search-en_epoch_date_published_asc').returns(enIndexReplica);
-
- stub.withArgs('instant_search-es_epoch_date_submitted_desc').returns(esIndexReplica);
- stub.withArgs('instant_search-en_epoch_date_submitted_desc').returns(enIndexReplica);
-
- stub.withArgs('instant_search-es_epoch_date_submitted_asc').returns(esIndexReplica);
- stub.withArgs('instant_search-en_epoch_date_submitted_asc').returns(enIndexReplica);
-
- return stub;
- })(),
- };
-
- const updater = new AlgoliaUpdater({
- mongoClient,
- algoliaClient,
- languages: [{ code: 'es' }, { code: 'en' }],
- reporter,
- });
-
- cy.wrap(updater.run()).then(() => {
- expect(mongoClient.connect.callCount).to.eq(1);
-
- // english
-
- expect(enIndex.replaceAllObjects.getCalls().length).eq(1);
-
- expect(enIndex.replaceAllObjects.getCall(0).args[0].length).eq(2);
-
- expect(enIndex.replaceAllObjects.getCall(0).args[0][0]).to.deep.nested.include({
- authors: ['Alistair Barr'],
- description: 'Description of report 1',
- epoch_date_downloaded: 1555113600,
- epoch_date_modified: 1592092800,
- epoch_date_published: 1431993600,
- epoch_date_submitted: 1559347200,
- image_url: 'http://url.com',
- language: 'en',
- report_number: 1,
- source_domain: 'blogs.wsj.com',
- submitters: ['Roman Yampolskiy'],
- tags: [],
- text: 'Report 1 text',
- title: 'Report 1 title',
- url: 'https://url.com/stuff',
- objectID: '1',
- mongodb_id: '60dd465f80935bc89e6f9b01',
- incident_id: 1,
- epoch_incident_date: 1592092800,
- incident_date: '2020-06-14',
- namespaces: ['CSETv0'],
- classifications: [
- 'CSETv0:Named Entities:Amazon',
- 'CSETv0:Harm Type:Harm to physical health/safety',
- 'CSETv0:Harm Type:Harm to physical property',
- ],
- CSETv0: {
- 'Named Entities': ['Amazon'],
- 'Harm Type': ['Harm to physical health/safety', 'Harm to physical property'],
- },
- });
-
- expect(enIndex.replaceAllObjects.getCall(0).args[0][1]).to.deep.nested.include({
- authors: ['Alistair Barr'],
- description: 'Description of report 23',
- epoch_date_downloaded: 1555113600,
- epoch_date_modified: 1592092800,
- epoch_date_published: 1431993600,
- epoch_date_submitted: 1559347200,
- image_url: 'http://url.com',
- language: 'es',
- report_number: 23,
- source_domain: 'blogs.wsj.com',
- submitters: ['Roman Yampolskiy'],
- tags: [],
- text: 'translated-en-text report 23',
- title: 'translated-en-title report 23',
- url: 'https://url.com/stuff',
- objectID: '23',
- mongodb_id: '60dd465f80935bc89e6f9b02',
- incident_id: 1,
- incident_date: '2020-06-14',
- epoch_incident_date: 1592092800,
- namespaces: ['CSETv0'],
- classifications: [
- 'CSETv0:Named Entities:Amazon',
- 'CSETv0:Harm Type:Harm to physical health/safety',
- 'CSETv0:Harm Type:Harm to physical property',
- ],
- CSETv0: {
- 'Named Entities': ['Amazon'],
- 'Harm Type': ['Harm to physical health/safety', 'Harm to physical property'],
- },
- });
-
- expect(enIndex.deleteBy.getCall(0).args[0]).deep.eq({
- filters: 'incident_id = 247',
- });
-
- ``;
- // spanish
-
- expect(esIndex.replaceAllObjects.getCalls().length).eq(1);
-
- expect(esIndex.replaceAllObjects.getCall(0).args[0].length).eq(2);
-
- expect(esIndex.replaceAllObjects.getCall(0).args[0][0]).to.deep.nested.include({
- authors: ['Alistair Barr'],
- description: 'Description of report 1',
- epoch_date_downloaded: 1555113600,
- epoch_date_modified: 1592092800,
- epoch_date_published: 1431993600,
- epoch_date_submitted: 1559347200,
- image_url: 'http://url.com',
- language: 'en',
- report_number: 1,
- source_domain: 'blogs.wsj.com',
- submitters: ['Roman Yampolskiy'],
- tags: [],
- text: 'translated-es-text report 1',
- title: 'translated-es-title report 1',
- url: 'https://url.com/stuff',
- objectID: '1',
- mongodb_id: '60dd465f80935bc89e6f9b01',
- incident_id: 1,
- incident_date: '2020-06-14',
- epoch_incident_date: 1592092800,
- namespaces: ['CSETv0'],
- classifications: [
- 'CSETv0:Named Entities:Amazon',
- 'CSETv0:Harm Type:Harm to physical health/safety',
- 'CSETv0:Harm Type:Harm to physical property',
- ],
- CSETv0: {
- 'Named Entities': ['Amazon'],
- 'Harm Type': ['Harm to physical health/safety', 'Harm to physical property'],
- },
- featured: 0,
- });
-
- expect(esIndex.replaceAllObjects.getCall(0).args[0][1]).to.deep.nested.include({
- authors: ['Alistair Barr'],
- description: 'Description of report 23',
- epoch_date_downloaded: 1555113600,
- epoch_date_modified: 1592092800,
- epoch_date_published: 1431993600,
- epoch_date_submitted: 1559347200,
- image_url: 'http://url.com',
- language: 'es',
- report_number: 23,
- source_domain: 'blogs.wsj.com',
- submitters: ['Roman Yampolskiy'],
- tags: [],
- text: 'Report 23 text',
- title: 'Report 23 title',
- url: 'https://url.com/stuff',
- objectID: '23',
- mongodb_id: '60dd465f80935bc89e6f9b02',
- incident_id: 1,
- incident_date: '2020-06-14',
- epoch_incident_date: 1592092800,
- namespaces: ['CSETv0'],
- classifications: [
- 'CSETv0:Named Entities:Amazon',
- 'CSETv0:Harm Type:Harm to physical health/safety',
- 'CSETv0:Harm Type:Harm to physical property',
- ],
- CSETv0: {
- 'Named Entities': ['Amazon'],
- 'Harm Type': ['Harm to physical health/safety', 'Harm to physical property'],
- },
- featured: 2,
- });
-
- expect(esIndex.deleteBy.getCall(0).args[0]).deep.eq({
- filters: 'incident_id = 247',
- });
-
- expect(mongoClient.close.callCount).to.eq(1);
- });
- });
-});
diff --git a/site/gatsby-site/cypress/e2e/unit/functions/apiRequest.cy.js b/site/gatsby-site/cypress/e2e/unit/functions/apiRequest.cy.js
deleted file mode 100644
index dd94833e2e..0000000000
--- a/site/gatsby-site/cypress/e2e/unit/functions/apiRequest.cy.js
+++ /dev/null
@@ -1,62 +0,0 @@
-const apiRequest = require('../../../../../realm/functions/apiRequest');
-
-const stubEverything = () => {
- global.context = {
- // @ts-ignore
- functions: {
- execute: cy.stub().resolves('email template body'),
- },
- values: {
- get: (() => {
- const stub = cy.stub();
-
- stub.withArgs('publicApiKey').returns('public');
- stub.withArgs('privateApiKey').returns('private');
- stub.withArgs('groupId').returns('1');
- stub.withArgs('appId').returns('1');
- return stub;
- })(),
- },
- user: {
- type: 'system',
- },
- http: {
- post: cy
- .stub()
- .resolves({ statusCode: 200, body: { text: () => '{"access_token": "test" }' } }),
- get: cy
- .stub()
- .resolves({ statusCode: 200, body: { text: () => '{"result": "This is it" }' } }),
- },
- };
-
- global.EJSON = JSON;
-
- return;
-};
-
-describe('Functions', () => {
- it('Api Request GET', () => {
- stubEverything();
-
- cy.wrap(apiRequest({ method: 'GET', path: '/something' })).then((result) => {
- expect(global.context.http.post.getCall(0).args[0]).to.deep.nested.include({
- url: 'https://services.cloud.mongodb.com/api/admin/v3.0/auth/providers/mongodb-cloud/login',
- body: {
- username: 'public',
- apiKey: 'private',
- },
- encodeBodyAsJSON: true,
- });
-
- expect(global.context.http.get.getCall(0).args[0]).to.deep.nested.include({
- url: 'https://services.cloud.mongodb.com/api/admin/v3.0/groups/1/apps/1/something',
- headers: {
- Authorization: [`Bearer test`],
- },
- });
-
- expect(result).to.deep.nested.include({ result: 'This is it' });
- });
- });
-});
diff --git a/site/gatsby-site/cypress/e2e/unit/functions/logIncidentHistory.cy.js b/site/gatsby-site/cypress/e2e/unit/functions/logIncidentHistory.cy.js
deleted file mode 100644
index 374c318975..0000000000
--- a/site/gatsby-site/cypress/e2e/unit/functions/logIncidentHistory.cy.js
+++ /dev/null
@@ -1,94 +0,0 @@
-const logIncidentHistory = require('../../../../../realm/functions/logIncidentHistory');
-
-const incidentsSchema = require('../../../../../realm/data_sources/mongodb-atlas/aiidprod/incidents/schema.json');
-
-const historyIncidentsSchema = require('../../../../../realm/data_sources/mongodb-atlas/history/incidents/schema.json');
-
-const incidentInput = {
- incident_id: 545,
- title: 'Chatbot Tessa gives unauthorized diet advice to users seeking help for eating disorders',
- description:
- 'The National Eating Disorders Association (NEDA) has shut down its chatbot named Tessa after it gave weight-loss advice to users seeking help for eating disorders. The incident has raised concerns about the risks of using chatbots and AI assistants in healthcare settings, particularly in addressing sensitive issues like eating disorders. NEDA is investigating the matter, emphasizing the need for caution and accuracy when utilizing technology to provide mental health support.',
- reports: [3103, 3104],
- editors: ['63320ce63ec803072c9f529c'],
- date: '2023-05-29',
- AllegedDeployerOfAISystem: ['national-eating-disorders-association', 'cass'],
- AllegedDeveloperOfAISystem: ['cass'],
- AllegedHarmedOrNearlyHarmedParties: ['people-with-eating-disorders'],
- nlp_similar_incidents: [
- {
- incident_id: 6,
- similarity: 0.9976733922958374,
- },
- {
- incident_id: 279,
- similarity: 0.9975948333740234,
- },
- {
- incident_id: 7,
- similarity: 0.9975897669792175,
- },
- ],
- editor_similar_incidents: [],
- editor_dissimilar_incidents: [],
- embedding: {
- vector: [-0.083877206262615, 0.06872937753796578],
- from_reports: [3148, 3147],
- },
- tsne: {
- x: -0.28079595740348834,
- y: -0.3189867109991937,
- },
- modifiedBy: '63320ce63ec803072c9f529c',
- epoch_date_modified: 1685318400,
-};
-
-describe('Functions', () => {
- it('Should log a new incident', () => {
- const incidentsHistoryCollection = {
- insertOne: cy.stub().resolves(),
- };
-
- global.context = {
- // @ts-ignore
- services: {
- get: cy.stub().returns({
- db: cy.stub().returns({
- collection: (() => {
- const stub = cy.stub();
-
- stub.withArgs('incidents').returns(incidentsHistoryCollection);
-
- return stub;
- })(),
- }),
- }),
- },
- };
-
- cy.wrap(logIncidentHistory(incidentInput)).then(() => {
- const {
- AllegedDeployerOfAISystem,
- AllegedDeveloperOfAISystem,
- AllegedHarmedOrNearlyHarmedParties,
- ...incident
- } = incidentInput;
-
- incident['Alleged deployer of AI system'] = AllegedDeployerOfAISystem;
- incident['Alleged developer of AI system'] = AllegedDeveloperOfAISystem;
- incident['Alleged harmed or nearly harmed parties'] = AllegedHarmedOrNearlyHarmedParties;
-
- expect(incidentsHistoryCollection.insertOne.firstCall.args[0]).to.deep.equal(incident);
- });
- });
-
- it('Incident schema should be the same as History Incident schema', () => {
- expect(historyIncidentsSchema.properties).to.deep.equal({
- ...incidentsSchema.properties,
- modifiedBy: {
- bsonType: 'string',
- },
- });
- expect(historyIncidentsSchema.required).to.deep.equal(incidentsSchema.required);
- });
-});
diff --git a/site/gatsby-site/cypress/e2e/unit/functions/logReportHistory.cy.js b/site/gatsby-site/cypress/e2e/unit/functions/logReportHistory.cy.js
deleted file mode 100644
index c144689a76..0000000000
--- a/site/gatsby-site/cypress/e2e/unit/functions/logReportHistory.cy.js
+++ /dev/null
@@ -1,74 +0,0 @@
-const logReportHistory = require('../../../../../realm/functions/logReportHistory');
-
-const reportsSchema = require('../../../../../realm/data_sources/mongodb-atlas/aiidprod/reports/schema.json');
-
-const historyReportsSchema = require('../../../../../realm/data_sources/mongodb-atlas/history/reports/schema.json');
-
-const report = {
- report_number: 3152,
- is_incident_report: true,
- title: 'Is Starbucks shortchanging its baristas? v5',
- date_downloaded: '2023-06-09',
- date_modified: '2023-06-14',
- date_published: '2023-06-09',
- date_submitted: '2023-06-09',
- epoch_date_downloaded: 1686268800,
- epoch_date_modified: 1686765044,
- epoch_date_published: 1686268800,
- epoch_date_submitted: 1686268800,
- image_url:
- 'https://assets3.cbsnewsstatic.com/hub/i/r/2015/03/17/01a38576-5108-40f7-8df8-5416164ed878/thumbnail/1200x630/ca8d35fe6bc065b5c9a747d92bc6d94c/154211248.jpg',
- cloudinary_id:
- 'reports/assets3.cbsnewsstatic.com/hub/i/r/2015/03/17/01a38576-5108-40f7-8df8-5416164ed878/thumbnail/1200x630/ca8d35fe6bc065b5c9a747d92bc6d94c/154211248.jpg',
- authors: ['Pablo Costa'],
- submitters: ['Test User'],
- text: '[](/moneywatch)\n\nBy Aimee Picchi\n\nSeptember 24, 2015 / 11: 41 AM / MoneyWatch\n\nFor Starbucks([SBUX](http://markets.cbsnews.com/SBUX/quote/)) barista Kylei Weisse',
- plain_text:
- '\n\nBy Aimee Picchi\n\nSeptember 24, 2015 / 11: 41 AM / MoneyWatch\n\nFor Starbucks(SBUX) barista Kylei Weisse',
- url: 'https://www.cbsnews.com/news/is-starbucks-shortchanging-its-baristas',
- source_domain: 'cbsnews.com',
- language: 'en',
- tags: [],
- user: { link: '63320ce63ec803072c9f529c' },
- modifiedBy: '63320ce63ec803072c9f529c',
- editor_notes: 'this is an editor note',
-};
-
-describe('Functions', () => {
- it('Should log a new report', () => {
- const reportsHistoryCollection = {
- insertOne: cy.stub().resolves(),
- };
-
- global.context = {
- // @ts-ignore
- services: {
- get: cy.stub().returns({
- db: cy.stub().returns({
- collection: (() => {
- const stub = cy.stub();
-
- stub.withArgs('reports').returns(reportsHistoryCollection);
-
- return stub;
- })(),
- }),
- }),
- },
- };
-
- cy.wrap(logReportHistory(report)).then(() => {
- expect(reportsHistoryCollection.insertOne.firstCall.args[0]).to.deep.equal(report);
- });
- });
-
- it('Reports schema should be the same as History Reports schema', () => {
- expect(historyReportsSchema.properties).to.deep.equal({
- ...reportsSchema.properties,
- modifiedBy: {
- bsonType: 'string',
- },
- });
- expect(historyReportsSchema.required).to.deep.equal(reportsSchema.required);
- });
-});
diff --git a/site/gatsby-site/cypress/e2e/unit/functions/logRollbar.cy.js b/site/gatsby-site/cypress/e2e/unit/functions/logRollbar.cy.js
deleted file mode 100644
index ff0bc7ceb9..0000000000
--- a/site/gatsby-site/cypress/e2e/unit/functions/logRollbar.cy.js
+++ /dev/null
@@ -1,53 +0,0 @@
-const logRollbar = require('../../../../../realm/functions/logRollbar');
-
-describe('Functions', () => {
- const rollbarAccessToken = 'dummyToken';
-
- it('Log Rollbar', () => {
- global.context = {
- // @ts-ignore
- http: {
- post: cy.stub(),
- },
- values: {
- get: cy.stub().returns(rollbarAccessToken),
- },
- };
-
- const logParams = {
- level: 'info',
- environment: 'production',
- error: {
- message: 'Error test',
- },
- data: {
- userName: 'Pablo',
- incident_id: 12,
- },
- };
-
- cy.wrap(logRollbar(logParams)).then(() => {
- expect(global.context.http.post).to.be.calledWith({
- url: 'https://api.rollbar.com/api/1/item/',
- headers: {
- 'X-Rollbar-Access-Token': [rollbarAccessToken],
- accept: ['application/json'],
- 'content-type': ['application/json'],
- },
- body: {
- data: {
- level: logParams.level,
- environment: logParams.environment,
- custom: logParams.data,
- body: {
- message: {
- body: logParams.error.message,
- },
- },
- },
- },
- encodeBodyAsJSON: true,
- });
- });
- });
-});
diff --git a/site/gatsby-site/cypress/e2e/unit/functions/sendEmail.cy.js b/site/gatsby-site/cypress/e2e/unit/functions/sendEmail.cy.js
deleted file mode 100644
index 9a16fdff06..0000000000
--- a/site/gatsby-site/cypress/e2e/unit/functions/sendEmail.cy.js
+++ /dev/null
@@ -1,138 +0,0 @@
-const sendEmail = require('../../../../../realm/functions/sendEmail');
-
-const stubEverything = (sendGridApiKey) => {
- global.context = {
- // @ts-ignore
- functions: {
- execute: cy.stub().resolves('email template body'),
- },
- values: {
- get: cy.stub().returns(sendGridApiKey),
- },
- user: {
- type: 'system',
- },
- http: {
- post: cy.stub(),
- },
- };
-
- return;
-};
-
-describe('Functions', () => {
- it('Send email', () => {
- stubEverything('sendgridapikey');
-
- const recipients = [
- {
- email: 'recipient1@test.com',
- userId: '63320ce63ec803072c9f529c',
- },
- {
- email: 'recipient2@test.com',
- userId: '63320ce63ec803072c9f529d',
- },
- ];
-
- const dynamicData = {
- incidentId: '21',
- incidentTitle: 'Incident Title',
- incidentUrl: 'https://incidentdatabase.ai/cite/21',
- };
-
- const sendEmailParams = {
- recipients,
- subject: 'New Incident {{incidentId}} was created',
- dynamicData,
- templateId: 'NewIncident',
- };
-
- cy.wrap(sendEmail(sendEmailParams)).then(() => {
- expect(global.context.functions.execute).to.be.calledWith('getEmailTemplateNewIncident');
-
- const personalizations = recipients.map((recipient) => {
- // Wrap dynamicData object keys with {{key}}
- var newDynamicData = {};
-
- newDynamicData[`{{incidentId}}`] = dynamicData.incidentId;
- newDynamicData[`{{incidentTitle}}`] = dynamicData.incidentTitle;
- newDynamicData[`{{incidentUrl}}`] = dynamicData.incidentUrl;
- newDynamicData['{{email}}'] = recipient.email;
- newDynamicData['{{userId}}'] = recipient.userId;
-
- return {
- to: [
- {
- email: recipient.email,
- },
- ],
- subject: sendEmailParams.subject,
- substitutions: newDynamicData,
- };
- });
-
- const emailData = {
- from: {
- email: 'notifications@incidentdatabase.ai',
- name: 'AIID:Notifications',
- },
- personalizations,
- content: [
- {
- type: 'text/html',
- value: 'email template body',
- },
- ],
- };
-
- expect(global.context.http.post).to.be.calledWith({
- url: 'https://api.sendgrid.com/v3/mail/send',
- headers: {
- Authorization: [`Bearer sendgridapikey`],
- },
- body: emailData,
- encodeBodyAsJSON: true,
- });
- });
- });
-
- it(`Don't send email if no SendGrid API key is defined`, () => {
- stubEverything();
-
- const recipients = [
- {
- email: 'recipient1@test.com',
- userId: '63320ce63ec803072c9f529c',
- },
- {
- email: 'recipient2@test.com',
- userId: '63320ce63ec803072c9f529d',
- },
- ];
-
- const dynamicData = {
- incidentId: '21',
- incidentTitle: 'Incident Title',
- incidentUrl: 'https://incidentdatabase.ai/cite/21',
- };
-
- const sendEmailParams = {
- recipients,
- subject: 'New Incident {{incidentId}} was created',
- dynamicData,
- templateId: 'NewIncident',
- };
-
- cy.wrap(sendEmail(sendEmailParams)).then((result) => {
- expect(global.context.functions.execute).to.be.calledWith('getEmailTemplateNewIncident');
-
- expect(global.context.http.post).not.to.be.called;
-
- expect(result).to.deep.equal({
- statusCode: 202,
- status: 'No email sent. Missing sendGridApiKey value.',
- });
- });
- });
-});
diff --git a/site/gatsby-site/cypress/e2e/unit/migrations/2023.06.26T21.29.07.fix-gmf-multi.cy.js b/site/gatsby-site/cypress/e2e/unit/migrations/2023.06.26T21.29.07.fix-gmf-multi.cy.js
deleted file mode 100644
index df25db3ea4..0000000000
--- a/site/gatsby-site/cypress/e2e/unit/migrations/2023.06.26T21.29.07.fix-gmf-multi.cy.js
+++ /dev/null
@@ -1,123 +0,0 @@
-const { up } = require('../../../../migrations/2023.06.26T21.29.07.fix-gmf-multi');
-
-const classification_1 = {
- _id: { $oid: '63ff9df8b8231a8c28674ad3' },
- notes: '',
- publish: false,
- incident_id: { $numberInt: '100' },
- namespace: 'CSETv1',
- attributes: [
- { short_name: 'String', value_json: '"just a string"' },
- {
- short_name: 'Entities with nested values',
- value_json: JSON.stringify([
- {
- attributes: [
- {
- short_name: 'should be ignored',
- value_json: '"Lucie Inland"',
- },
- {
- short_name: 'Entity Relationship to the AI',
- value_json: JSON.stringify([
- 'string value',
- {
- customOption: true,
- label: 'broken item',
- id: 'new-id-1',
- },
- ]),
- },
- ],
- },
- ]),
- },
- {
- short_name: 'Mixed string list',
- value_json: JSON.stringify([
- 'item 1',
- 'item 2',
- {
- customOption: true,
- label: 'broken item',
- id: 'new-id-1',
- },
- ]),
- },
- {
- short_name: 'Pure string list',
- value_json: JSON.stringify(['item 1', 'item 2']),
- },
- ],
-};
-
-describe('Functions', () => {
- it('Should convert existing classifications to string', () => {
- const classificationsCollection = {
- find: cy.stub().returns({
- hasNext: cy.stub().onFirstCall().resolves(true).onSecondCall().resolves(false),
- next: cy.stub().onFirstCall().resolves(classification_1),
- }),
- updateOne: cy.stub().resolves({}),
- };
-
- const context = {
- client: {
- connect: cy.stub().resolves(),
-
- db: cy.stub().returns({
- collection: (() => {
- const stub = cy.stub();
-
- stub.withArgs('classifications').returns(classificationsCollection);
-
- return stub;
- })(),
- }),
- },
- };
-
- cy.wrap(up({ context })).then(() => {
- expect(
- classificationsCollection.updateOne.firstCall.args[1].$set.attributes[0]
- ).to.deep.equal({
- short_name: 'String',
- value_json: '"just a string"',
- });
-
- expect(
- classificationsCollection.updateOne.firstCall.args[1].$set.attributes[1]
- ).to.deep.equal({
- short_name: 'Entities with nested values',
- value_json: JSON.stringify([
- {
- attributes: [
- {
- short_name: 'should be ignored',
- value_json: '"Lucie Inland"',
- },
- {
- short_name: 'Entity Relationship to the AI',
- value_json: JSON.stringify(['string value', 'broken item']),
- },
- ],
- },
- ]),
- });
-
- expect(
- classificationsCollection.updateOne.firstCall.args[1].$set.attributes[2]
- ).to.deep.equal({
- short_name: 'Mixed string list',
- value_json: JSON.stringify(['item 1', 'item 2', 'broken item']),
- });
-
- expect(
- classificationsCollection.updateOne.firstCall.args[1].$set.attributes[3]
- ).to.deep.equal({
- short_name: 'Pure string list',
- value_json: JSON.stringify(['item 1', 'item 2']),
- });
- });
- });
-});
diff --git a/site/gatsby-site/cypress/e2e/unit/migrations/2023.09.26T19.12.20.fix-cset-migration.cy.js b/site/gatsby-site/cypress/e2e/unit/migrations/2023.09.26T19.12.20.fix-cset-migration.cy.js
deleted file mode 100644
index 126ce4ba37..0000000000
--- a/site/gatsby-site/cypress/e2e/unit/migrations/2023.09.26T19.12.20.fix-cset-migration.cy.js
+++ /dev/null
@@ -1,73 +0,0 @@
-const { up } = require('../../../../migrations/2023.09.26T19.12.20.fix-cset-migration');
-
-import classifications from '../../../fixtures/classifications/missingAttributes.json';
-import taxaV1 from '../../../fixtures/taxa/csetV1.json';
-import taxaV1Annotator3 from '../../../fixtures/taxa/CSETv1_Annotator-3.json';
-
-describe('Functions', () => {
- it('Should migrate fields to new names', () => {
- const classificationsCollection = {
- find: cy.stub().returns({
- toArray: cy.stub().resolves(classifications),
- }),
- updateOne: cy.stub().resolves({}),
- };
-
- const taxaCollection = {
- find: cy.stub().returns({
- toArray: cy.stub().resolves([taxaV1, taxaV1Annotator3]),
- }),
- };
-
- const context = {
- client: {
- connect: cy.stub().resolves(),
-
- db: cy.stub().returns({
- collection: (() => {
- const stub = cy.stub();
-
- stub.withArgs('classifications').returns(classificationsCollection);
- stub.withArgs('taxa').returns(taxaCollection);
-
- return stub;
- })(),
- }),
- },
- };
-
- cy.wrap(up({ context })).then(() => {
- expect(classificationsCollection.updateOne.getCalls().length).to.eq(2);
-
- expect(classificationsCollection.updateOne.firstCall.args[0]).to.deep.eq({
- _id: { $oid: '648faecdf5ee4963902350e2' },
- });
-
- const firstCallAttributes =
- classificationsCollection.updateOne.firstCall.args[1].$set.attributes;
-
- const c1 = classifications.find((c) => c._id.$oid == '648faecdf5ee4963902350e2');
-
- expect(firstCallAttributes.find((a) => a.short_name == 'Clear Link to AI')).to.not.exist;
- expect(firstCallAttributes.find((a) => a.short_name == 'Clear link to technology')).to.exist;
- expect(c1.attributes.find((a) => a.short_name == 'Clear Link to AI').value_json).to.eq(
- firstCallAttributes.find((a) => a.short_name == 'Clear link to technology').value_json
- );
-
- expect(classificationsCollection.updateOne.secondCall.args[0]).to.deep.eq({
- _id: { $oid: '63f3d2cface82aca35c26da3' },
- });
-
- const secondCallAttributes =
- classificationsCollection.updateOne.secondCall.args[1].$set.attributes;
-
- const c2 = classifications.find((c) => c._id.$oid == '63f3d2cface82aca35c26da3');
-
- expect(secondCallAttributes.find((a) => a.short_name == 'Reviewer')).to.not.exist;
- expect(secondCallAttributes.find((a) => a.short_name == 'Peer Reviewer')).to.exist;
- expect(c2.attributes.find((a) => a.short_name == 'Reviewer').value_json).to.eq(
- secondCallAttributes.find((a) => a.short_name == 'Peer Reviewer').value_json
- );
- });
- });
-});
diff --git a/site/gatsby-site/cypress/e2e/unit/migrations/2023.11.29T14.56.25.delete-duplicated-subscriptions.cy.js b/site/gatsby-site/cypress/e2e/unit/migrations/2023.11.29T14.56.25.delete-duplicated-subscriptions.cy.js
deleted file mode 100644
index e4b12d6db8..0000000000
--- a/site/gatsby-site/cypress/e2e/unit/migrations/2023.11.29T14.56.25.delete-duplicated-subscriptions.cy.js
+++ /dev/null
@@ -1,149 +0,0 @@
-const { ObjectId } = require('bson');
-
-const {
- up,
-} = require('../../../../migrations/2023.11.29T14.56.25.delete-duplicated-subscriptions');
-
-describe('Migration Script - Remove Duplicated Subscriptions', () => {
- it('Should remove duplicated subscriptions correctly', () => {
- // Mocked data for all three cases
- const testSubscriptions = {
- incident: [
- {
- _id: {
- type: 'incident',
- userId: '642188372947d07020c1319d',
- incident_id: 600,
- },
- uniqueIds: [
- new ObjectId('5f9f6b9b5f9c4c0001a3b3a3'),
- new ObjectId('5f9f6b9b5f9c4c0001a3b3a4'),
- ],
- },
- {
- _id: {
- type: 'submission-promoted',
- userId: '642188372947d07020c1319d',
- incident_id: 600,
- },
- uniqueIds: [
- new ObjectId('5f9f6b9b5f9c4c0001a3b3a0'),
- new ObjectId('5f9f6b9b5f9c4c0001a3b3a1'),
- new ObjectId('5f9f6b9b5f9c4c0001a3b3a2'),
- ],
- },
- ],
- entity: [
- {
- _id: {
- type: 'entity',
- userId: '642188372947d07020c1319d',
- entity_id: 'trans-women',
- },
- uniqueIds: [
- new ObjectId('5f9f6b9b5f9c4c0001a3b3a5'),
- new ObjectId('5f9f6b9b5f9c4c0001a3b3a6'),
- ],
- },
- ],
- 'new-incidents': [
- {
- _id: {
- type: 'new-incidents',
- userId: '642188372947d07020c1319d',
- },
- uniqueIds: [
- new ObjectId('5f9f6b9b5f9c4c0001a3b3a7'),
- new ObjectId('5f9f6b9b5f9c4c0001a3b3a8'),
- ],
- },
- ],
- };
-
- // Mocked collection with stubbed methods
- const subscriptionsCollection = {
- aggregate: cy.stub().callsFake((query) => {
- const type = query[0].$match.type.$in[0];
-
- return {
- toArray: cy.stub().resolves(testSubscriptions[type]),
- };
- }),
- deleteMany: cy.stub().callsFake((query) => {
- console.log('deleteMany called with:', query._id.$in[0].toString()); // Log the query
- return Promise.resolve({ deletedCount: 1 });
- }),
- };
-
- // Mocked context with database client
- const context = {
- client: {
- db: cy.stub().returns({
- collection: cy.stub().withArgs('subscriptions').returns(subscriptionsCollection),
- }),
- },
- };
-
- // Execute the migration script
- cy.wrap(up({ context })).then(() => {
- // Assertions for each case
- const args = subscriptionsCollection.deleteMany.getCall(0).args[0];
-
- const argsSubmissionPromoted = subscriptionsCollection.deleteMany.getCall(1).args[0];
-
- const argsEntity = subscriptionsCollection.deleteMany.getCall(2).args[0];
-
- const argsNewIncidents = subscriptionsCollection.deleteMany.getCall(3).args[0];
-
- let modifiedObjectIncident = {
- _id: {
- $in: args._id.$in.map((id) => id.toString()),
- },
- };
-
- let modifiedObjectSubmissionPromoted = {
- _id: {
- $in: argsSubmissionPromoted._id.$in.map((id) => id.toString()),
- },
- };
-
- let modifiedObjectEntity = {
- _id: {
- $in: argsEntity._id.$in.map((id) => id.toString()),
- },
- };
-
- let modifiedObjectNewIncidents = {
- _id: {
- $in: argsNewIncidents._id.$in.map((id) => id.toString()),
- },
- };
-
- expect(modifiedObjectIncident).to.be.deep.equal({
- _id: {
- $in: testSubscriptions['incident'][0].uniqueIds.slice(0, 1).map((id) => id.toString()),
- },
- });
-
- expect(modifiedObjectSubmissionPromoted).to.be.deep.equal({
- _id: {
- $in: testSubscriptions['incident'][1].uniqueIds.slice(0, 2).map((id) => id.toString()),
- },
- });
-
- expect(modifiedObjectEntity).to.be.deep.equal({
- _id: {
- $in: testSubscriptions['entity'][0].uniqueIds.slice(0, 1).map((id) => id.toString()),
- },
- });
-
- expect(modifiedObjectNewIncidents).to.be.deep.equal({
- _id: {
- $in: testSubscriptions['new-incidents'][0].uniqueIds
- .slice(0, 1)
- .map((id) => id.toString()),
- },
- });
- });
- });
-});
diff --git a/site/gatsby-site/cypress/e2e/unit/pageCreators/createCitationPages.cy.js b/site/gatsby-site/cypress/e2e/unit/pageCreators/createCitationPages.cy.js
deleted file mode 100644
index 3d843bcbb4..0000000000
--- a/site/gatsby-site/cypress/e2e/unit/pageCreators/createCitationPages.cy.js
+++ /dev/null
@@ -1,139 +0,0 @@
-import createCitationPages from '../../../../page-creators/createCitationPages';
-
-const response = {
- data: {
- allMongodbAiidprodIncidents: {
- nodes: [
- {
- incident_id: 1,
- title: 'Google’s YouTube Kids App Presents Inappropriate Content',
- date: '2015-05-19',
- reports: [
- {
- title: 'Google’s YouTube Kids App Criticized for ‘Inappropriate Content’',
- report_number: 1,
- language: 'en',
- image_url:
- 'http://si.wsj.net/public/resources/images/BN-IM269_YouTub_P_20150518174822.jpg',
- cloudinary_id:
- 'reports/si.wsj.net/public/resources/images/BN-IM269_YouTub_P_20150518174822.jpg',
- },
- {
- title: 'YouTube Kids app is STILL showing disturbing videos',
- report_number: 2,
- language: 'en',
- image_url:
- 'https://i.dailymail.co.uk/i/pix/2018/02/06/15/48EEE02F00000578-0-image-a-18_1517931140185.jpg',
- cloudinary_id:
- 'reports/i.dailymail.co.uk/i/pix/2018/02/06/15/48EEE02F00000578-0-image-a-18_1517931140185.jpg',
- },
- ],
- editor_similar_incidents: [],
- editor_dissimilar_incidents: [],
- flagged_dissimilar_incidents: [],
- description:
- 'YouTube’s content filtering and recommendation algorithms exposed children to disturbing and inappropriate videos.',
- nlp_similar_incidents: [
- {
- incident_id: 55,
- similarity: 0.9990941882133484,
- },
- {
- incident_id: 15,
- similarity: 0.9989638924598694,
- },
- {
- incident_id: 34,
- similarity: 0.998900830745697,
- },
- ],
- },
- ],
- },
- },
- extensions: {},
-};
-
-const languages = [
- {
- code: 'en',
- hrefLang: 'en-US',
- name: 'English',
- localName: 'English',
- langDir: 'ltr',
- dateFormat: 'MM/DD/YYYY',
- },
- {
- code: 'es',
- hrefLang: 'es',
- name: 'Spanish',
- localName: 'Español',
- langDir: 'ltr',
- dateFormat: 'DD-MM-YYYY',
- },
- {
- code: 'fr',
- hrefLang: 'fr',
- name: 'French',
- localName: 'Français',
- langDir: 'ltr',
- dateFormat: 'DD-MM-YYYY',
- },
- {
- code: 'ja',
- hrefLang: 'ja',
- name: 'Japanese',
- localName: '日本語',
- langDir: 'ltr',
- dateFormat: 'YYYY/MM/DD',
- },
-];
-
-describe('createCitationPages', () => {
- it('Should create cite pages for each avaliable language', () => {
- const graphql = cy.stub().resolves(response);
-
- const createPage = cy.stub();
-
- cy.wrap(createCitationPages(graphql, createPage, { languages })).then(() => {
- expect(createPage.callCount).to.eq(4);
-
- cy.wrap(createPage.getCall(0).args[0]).then((page) => {
- expect(page.path).contain('/cite/1');
- expect(page.context.locale).eq('en');
- expect(page.context.translate_es).eq(true);
- expect(page.context.translate_en).eq(false);
- expect(page.context.translate_fr).eq(true);
- expect(page.context.translate_ja).eq(true);
- expect(page.component).contain('/templates/cite.js');
- });
-
- cy.wrap(createPage.getCall(1).args[0]).then((page) => {
- expect(page.path).contain('/es/cite/1');
- expect(page.context.locale).eq('es');
- expect(page.context.translate_es).eq(true);
- expect(page.context.translate_en).eq(false);
- expect(page.context.translate_fr).eq(true);
- expect(page.context.translate_ja).eq(true);
- });
-
- cy.wrap(createPage.getCall(2).args[0]).then((page) => {
- expect(page.path).contain('/fr/cite/1');
- expect(page.context.locale).eq('fr');
- expect(page.context.translate_es).eq(true);
- expect(page.context.translate_en).eq(false);
- expect(page.context.translate_fr).eq(true);
- expect(page.context.translate_ja).eq(true);
- });
-
- cy.wrap(createPage.getCall(3).args[0]).then((page) => {
- expect(page.path).contain('/ja/cite/1');
- expect(page.context.locale).eq('ja');
- expect(page.context.translate_es).eq(true);
- expect(page.context.translate_en).eq(false);
- expect(page.context.translate_fr).eq(true);
- expect(page.context.translate_ja).eq(true);
- });
- });
- });
-});
diff --git a/site/gatsby-site/cypress/e2e/unit/pageCreators/createDocPages.cy.js b/site/gatsby-site/cypress/e2e/unit/pageCreators/createDocPages.cy.js
deleted file mode 100644
index 7175d52d5e..0000000000
--- a/site/gatsby-site/cypress/e2e/unit/pageCreators/createDocPages.cy.js
+++ /dev/null
@@ -1,78 +0,0 @@
-import createDocPages from '../../../../page-creators/createDocPages';
-
-const response = {
- data: {
- allPrismicDoc: {
- edges: [
- {
- node: {
- data: {
- slug: 'doc-1-prismic',
- },
- },
- },
- {
- node: {
- data: {
- slug: 'doc-2-prismic',
- },
- },
- },
- ],
- },
- allFile: {
- nodes: [
- {
- childMdx: {
- frontmatter: {
- slug: 'doc-1',
- },
- internal: {
- contentFilePath: 'doc-1.mdx',
- },
- },
- },
- {
- childMdx: {
- frontmatter: {
- slug: 'doc-2',
- },
- internal: {
- contentFilePath: 'doc-2.mdx',
- },
- },
- },
- ],
- },
- },
-};
-
-describe('createDocPages', () => {
- it('Should parse properly', () => {
- const graphql = cy.stub().resolves(response);
-
- const createPage = cy.stub();
-
- const reporter = { log: cy.stub() };
-
- cy.wrap(createDocPages(graphql, createPage, { reporter })).then(() => {
- expect(createPage.callCount).to.eq(4);
-
- cy.wrap(createPage.getCall(0).args[0]).then((page) => {
- expect(page.context.slug).eq('doc-1-prismic');
- });
-
- cy.wrap(createPage.getCall(1).args[0]).then((page) => {
- expect(page.context.slug).eq('doc-2-prismic');
- });
-
- cy.wrap(createPage.getCall(2).args[0]).then((page) => {
- expect(page.context.slug).eq('doc-1');
- });
-
- cy.wrap(createPage.getCall(3).args[0]).then((page) => {
- expect(page.context.slug).eq('doc-2');
- });
- });
- });
-});
diff --git a/site/gatsby-site/cypress/e2e/unit/pageCreators/createEntitiesPages.cy.js b/site/gatsby-site/cypress/e2e/unit/pageCreators/createEntitiesPages.cy.js
deleted file mode 100644
index 311089833d..0000000000
--- a/site/gatsby-site/cypress/e2e/unit/pageCreators/createEntitiesPages.cy.js
+++ /dev/null
@@ -1,244 +0,0 @@
-import createEntitiesPages from '../../../../page-creators/createEntitiesPages';
-
-const response = {
- data: {
- incidents: {
- nodes: [
- {
- incident_id: 1,
- title: 'Incident 1',
- Alleged_deployer_of_AI_system: ['ai-developer-1'],
- Alleged_developer_of_AI_system: ['ai-developer-1'],
- Alleged_harmed_or_nearly_harmed_parties: ['party-1'],
- reports: [{ report_number: 1 }, { report_number: 2 }],
- },
- {
- incident_id: 2,
- title: 'Incident 2',
- Alleged_deployer_of_AI_system: ['ai-deployer-1'],
- Alleged_developer_of_AI_system: ['ai-developer-1'],
- Alleged_harmed_or_nearly_harmed_parties: ['party-1', 'party-2'],
- reports: [{ report_number: 3 }],
- },
- {
- incident_id: 3,
- title: 'Incident 3',
- Alleged_deployer_of_AI_system: ['ai-developer-2', 'ai-deployer-2'],
- Alleged_developer_of_AI_system: ['ai-developer-2'],
- Alleged_harmed_or_nearly_harmed_parties: ['party-2'],
- reports: [{ report_number: 4 }, { report_number: 5 }],
- },
- {
- incident_id: 4,
- title: 'Incident 4',
- Alleged_deployer_of_AI_system: ['ai-deployer-3'],
- Alleged_developer_of_AI_system: ['ai-developer-1', 'ai-developer-2'],
- Alleged_harmed_or_nearly_harmed_parties: ['party-3'],
- reports: [{ report_number: 6 }, { report_number: 7 }, { report_number: 8 }],
- },
- ],
- },
- entities: {
- nodes: [
- {
- entity_id: 'ai-deployer-1',
- name: 'AI Deployer 1',
- },
- {
- entity_id: 'ai-deployer-2',
- name: 'AI Deployer 2',
- },
- {
- entity_id: 'ai-deployer-3',
- name: 'AI Deployer 3',
- },
- {
- entity_id: 'ai-developer-1',
- name: 'AI Developer 1',
- },
- {
- entity_id: 'ai-developer-2',
- name: 'AI Developer 2',
- },
- {
- entity_id: 'party-1',
- name: 'Party 1',
- },
- {
- entity_id: 'party-2',
- name: 'Party 2',
- },
- {
- entity_id: 'party-3',
- name: 'Party 3',
- },
- ],
- },
- responses: {
- nodes: [
- {
- report_number: 2,
- },
- {
- report_number: 3,
- },
- {
- report_number: 5,
- },
- ],
- },
- },
-};
-
-describe('createEntitiesPages', () => {
- it('Should parse properly', () => {
- const graphql = cy.stub().resolves(response);
-
- const createPage = cy.stub();
-
- cy.wrap(createEntitiesPages(graphql, createPage)).then(() => {
- expect(createPage.callCount).to.eq(8 + 1);
-
- cy.wrap(createPage.getCall(0).args[0]).then((page) => {
- expect(page.context.id).eq('ai-developer-1');
- expect(page.path).eq('/entities/ai-developer-1');
- expect(page.context.name).eq('AI Developer 1');
- expect(page.context.incidentsAsDeployer).to.deep.eq([]);
- expect(page.context.incidentsAsDeveloper).to.deep.eq([2, 4]);
- expect(page.context.incidentsAsBoth).to.deep.eq([1]);
- expect(page.context.incidentsHarmedBy).to.deep.eq([]);
- expect(page.context.relatedEntities).to.deep.eq([
- 'party-1',
- 'ai-deployer-1',
- 'party-2',
- 'ai-deployer-3',
- 'ai-developer-2',
- 'party-3',
- ]);
- expect(page.context.responses).to.deep.eq([
- { report_number: 2, incident_id: 1 },
- { report_number: 3, incident_id: 2 },
- ]);
- });
-
- cy.wrap(createPage.getCall(1).args[0]).then((page) => {
- expect(page.context.id).eq('party-1');
- expect(page.path).eq('/entities/party-1');
- expect(page.context.name).eq('Party 1');
- expect(page.context.incidentsAsDeployer).to.deep.eq([]);
- expect(page.context.incidentsAsDeveloper).to.deep.eq([]);
- expect(page.context.incidentsAsBoth).to.deep.eq([]);
- expect(page.context.incidentsHarmedBy).to.deep.eq([1, 2]);
- expect(page.context.relatedEntities).to.deep.eq([
- 'ai-developer-1',
- 'ai-deployer-1',
- 'party-2',
- ]);
- expect(page.context.responses).to.deep.eq([
- { report_number: 2, incident_id: 1 },
- { report_number: 3, incident_id: 2 },
- ]);
- });
-
- cy.wrap(createPage.getCall(2).args[0]).then((page) => {
- expect(page.context.id).eq('ai-deployer-1');
- expect(page.path).eq('/entities/ai-deployer-1');
- expect(page.context.name).eq('AI Deployer 1');
- expect(page.context.incidentsAsDeployer).to.deep.eq([2]);
- expect(page.context.incidentsAsDeveloper).to.deep.eq([]);
- expect(page.context.incidentsAsBoth).to.deep.eq([]);
- expect(page.context.incidentsHarmedBy).to.deep.eq([]);
- expect(page.context.relatedEntities).to.deep.eq(['ai-developer-1', 'party-1', 'party-2']);
- expect(page.context.responses).to.deep.eq([{ report_number: 3, incident_id: 2 }]);
- });
-
- cy.wrap(createPage.getCall(3).args[0]).then((page) => {
- expect(page.context.id).eq('party-2');
- expect(page.path).eq('/entities/party-2');
- expect(page.context.name).eq('Party 2');
- expect(page.context.incidentsAsDeployer).to.deep.eq([]);
- expect(page.context.incidentsAsDeveloper).to.deep.eq([]);
- expect(page.context.incidentsAsBoth).to.deep.eq([]);
- expect(page.context.incidentsHarmedBy).to.deep.eq([2, 3]);
- expect(page.context.relatedEntities).to.deep.eq([
- 'ai-deployer-1',
- 'ai-developer-1',
- 'party-1',
- 'ai-developer-2',
- 'ai-deployer-2',
- ]);
- expect(page.context.responses).to.deep.eq([
- { report_number: 3, incident_id: 2 },
- { report_number: 5, incident_id: 3 },
- ]);
- });
-
- cy.wrap(createPage.getCall(4).args[0]).then((page) => {
- expect(page.context.id).eq('ai-developer-2');
- expect(page.path).eq('/entities/ai-developer-2');
- expect(page.context.name).eq('AI Developer 2');
- expect(page.context.incidentsAsDeployer).to.deep.eq([]);
- expect(page.context.incidentsAsDeveloper).to.deep.eq([4]);
- expect(page.context.incidentsAsBoth).to.deep.eq([3]);
- expect(page.context.incidentsHarmedBy).to.deep.eq([]);
- expect(page.context.relatedEntities).to.deep.eq([
- 'ai-deployer-2',
- 'party-2',
- 'ai-deployer-3',
- 'ai-developer-1',
- 'party-3',
- ]);
- expect(page.context.responses).to.deep.eq([{ report_number: 5, incident_id: 3 }]);
- });
-
- cy.wrap(createPage.getCall(5).args[0]).then((page) => {
- expect(page.context.id).eq('ai-deployer-2');
- expect(page.path).eq('/entities/ai-deployer-2');
- expect(page.context.name).eq('AI Deployer 2');
- expect(page.context.incidentsAsDeployer).to.deep.eq([3]);
- expect(page.context.incidentsAsDeveloper).to.deep.eq([]);
- expect(page.context.incidentsAsBoth).to.deep.eq([]);
- expect(page.context.incidentsHarmedBy).to.deep.eq([]);
- expect(page.context.relatedEntities).to.deep.eq(['ai-developer-2', 'party-2']);
- expect(page.context.responses).to.deep.eq([{ report_number: 5, incident_id: 3 }]);
- });
-
- cy.wrap(createPage.getCall(6).args[0]).then((page) => {
- expect(page.context.id).eq('ai-deployer-3');
- expect(page.path).eq('/entities/ai-deployer-3');
- expect(page.context.name).eq('AI Deployer 3');
- expect(page.context.incidentsAsDeployer).to.deep.eq([4]);
- expect(page.context.incidentsAsDeveloper).to.deep.eq([]);
- expect(page.context.incidentsAsBoth).to.deep.eq([]);
- expect(page.context.incidentsHarmedBy).to.deep.eq([]);
- expect(page.context.relatedEntities).to.deep.eq([
- 'ai-developer-1',
- 'ai-developer-2',
- 'party-3',
- ]);
- expect(page.context.responses).to.deep.eq([]);
- });
-
- cy.wrap(createPage.getCall(7).args[0]).then((page) => {
- expect(page.context.id).eq('party-3');
- expect(page.path).eq('/entities/party-3');
- expect(page.context.name).eq('Party 3');
- expect(page.context.incidentsAsDeployer).to.deep.eq([]);
- expect(page.context.incidentsAsDeveloper).to.deep.eq([]);
- expect(page.context.incidentsAsBoth).to.deep.eq([]);
- expect(page.context.incidentsHarmedBy).to.deep.eq([4]);
- expect(page.context.relatedEntities).to.deep.eq([
- 'ai-deployer-3',
- 'ai-developer-1',
- 'ai-developer-2',
- ]);
- expect(page.context.responses).to.deep.eq([]);
- });
-
- cy.wrap(createPage.getCall(8).args[0]).then((page) => {
- expect(page.path).eq('/entities');
- expect(page.context.entities.length).eq(8);
- });
- });
- });
-});
diff --git a/site/gatsby-site/cypress/e2e/unit/pageCreators/createReportPages.cy.js b/site/gatsby-site/cypress/e2e/unit/pageCreators/createReportPages.cy.js
deleted file mode 100644
index 2e43485d83..0000000000
--- a/site/gatsby-site/cypress/e2e/unit/pageCreators/createReportPages.cy.js
+++ /dev/null
@@ -1,137 +0,0 @@
-import createReportPages from '../../../../page-creators/createReportPages';
-
-const response = {
- data: {
- reports: {
- nodes: [
- {
- report_number: 1,
- language: 'en',
- },
- {
- report_number: 2,
- language: 'es',
- },
- ],
- },
- },
-};
-
-const languages = [
- {
- code: 'en',
- hrefLang: 'en-US',
- name: 'English',
- localName: 'English',
- langDir: 'ltr',
- dateFormat: 'MM/DD/YYYY',
- },
- {
- code: 'es',
- hrefLang: 'es',
- name: 'Spanish',
- localName: 'Español',
- langDir: 'ltr',
- dateFormat: 'DD-MM-YYYY',
- },
- {
- code: 'fr',
- hrefLang: 'fr',
- name: 'French',
- localName: 'Français',
- langDir: 'ltr',
- dateFormat: 'DD-MM-YYYY',
- },
- {
- code: 'ja',
- hrefLang: 'ja',
- name: 'Japanese',
- localName: '日本語',
- langDir: 'ltr',
- dateFormat: 'YYYY/MM/DD',
- },
-];
-
-describe('createReportPages', () => {
- it('Should parse properly', () => {
- const graphql = cy.stub().resolves(response);
-
- const createPage = cy.stub();
-
- cy.wrap(createReportPages(graphql, createPage, { languages })).then(() => {
- expect(createPage.callCount).to.eq(8);
-
- cy.wrap(createPage.getCall(0).args[0]).then((page) => {
- expect(page.path).contain('/reports/1/');
- expect(page.context.originalPath).eq('/reports/1/');
- expect(page.context.locale).eq('en');
- expect(page.context.hrefLang).eq('en-US');
- expect(page.context.report_number).eq(1);
- expect(page.context.language).eq('en');
- expect(page.context.translate_es).eq(true);
- expect(page.context.translate_en).eq(false);
- expect(page.context.translate_fr).eq(true);
- });
-
- cy.wrap(createPage.getCall(1).args[0]).then((page) => {
- expect(page.path).contain('/reports/2/');
- expect(page.context.originalPath).eq('/reports/2/');
- expect(page.context.locale).eq('en');
- expect(page.context.hrefLang).eq('en-US');
- expect(page.context.report_number).eq(2);
- expect(page.context.language).eq('es');
- expect(page.context.translate_es).eq(false);
- expect(page.context.translate_en).eq(true);
- expect(page.context.translate_fr).eq(true);
- });
-
- cy.wrap(createPage.getCall(2).args[0]).then((page) => {
- expect(page.path).contain('/es/reports/1/');
- expect(page.context.originalPath).eq('/es/reports/1/');
- expect(page.context.locale).eq('es');
- expect(page.context.hrefLang).eq('es');
- expect(page.context.report_number).eq(1);
- expect(page.context.language).eq('en');
- expect(page.context.translate_es).eq(true);
- expect(page.context.translate_en).eq(false);
- expect(page.context.translate_fr).eq(true);
- });
-
- cy.wrap(createPage.getCall(3).args[0]).then((page) => {
- expect(page.path).contain('/es/reports/2/');
- expect(page.context.originalPath).eq('/es/reports/2/');
- expect(page.context.locale).eq('es');
- expect(page.context.hrefLang).eq('es');
- expect(page.context.report_number).eq(2);
- expect(page.context.language).eq('es');
- expect(page.context.translate_es).eq(false);
- expect(page.context.translate_en).eq(true);
- expect(page.context.translate_fr).eq(true);
- });
-
- cy.wrap(createPage.getCall(4).args[0]).then((page) => {
- expect(page.path).contain('/fr/reports/1/');
- expect(page.context.originalPath).eq('/fr/reports/1/');
- expect(page.context.locale).eq('fr');
- expect(page.context.hrefLang).eq('fr');
- expect(page.context.report_number).eq(1);
- expect(page.context.language).eq('en');
- expect(page.context.translate_es).eq(true);
- expect(page.context.translate_en).eq(false);
- expect(page.context.translate_fr).eq(true);
- });
-
- cy.wrap(createPage.getCall(5).args[0]).then((page) => {
- expect(page.path).contain('/fr/reports/2/');
- expect(page.context.originalPath).eq('/fr/reports/2/');
- expect(page.context.locale).eq('fr');
- expect(page.context.hrefLang).eq('fr');
- expect(page.context.report_number).eq(2);
- expect(page.context.language).eq('es');
- expect(page.context.translate_es).eq(false);
- expect(page.context.translate_en).eq(true);
- expect(page.context.translate_fr).eq(true);
- });
- });
- });
-});
diff --git a/site/gatsby-site/cypress/fixtures/api/parseNews.json b/site/gatsby-site/cypress/fixtures/api/parseNews.json
deleted file mode 100644
index 73f6fa7fab..0000000000
--- a/site/gatsby-site/cypress/fixtures/api/parseNews.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "title": "YouTube to crack down on inappropriate content masked as kids’ cartoons",
- "authors": "Valentina Palladino",
- "date_published": "2017-11-10",
- "date_downloaded": "2022-05-26",
- "image_url": "https://cdn.arstechnica.net/wp-content/uploads/2017/11/Screen-Shot-2017-11-10-at-9.25.47-AM-760x380.png",
- "text": "## Recent news stories and blog\n\nposts _highlighted_ the underbelly of YouTube Kids, Google's children-friendly version. This is more text to reach the 256 charactrs minimum, becuase otherwise the text by similarity component doesnt fetch, which surprisingly is way more character that I initially imagined when I started writing this."
-}
diff --git a/site/gatsby-site/cypress/fixtures/api/semanticallyRelated.json b/site/gatsby-site/cypress/fixtures/api/semanticallyRelated.json
deleted file mode 100644
index 83aea217ac..0000000000
--- a/site/gatsby-site/cypress/fixtures/api/semanticallyRelated.json
+++ /dev/null
@@ -1,789 +0,0 @@
-{
- "embedding": {
- "vector": [
- -0.023964308202266693,
- 0.05607481673359871,
- -0.00004077623088960536,
- -0.11318912357091904,
- 0.12186858057975769,
- -0.018450608476996422,
- -0.004034414421766996,
- 0.04273730516433716,
- 0.06428910046815872,
- -0.1037835106253624,
- 0.04839520528912544,
- 0.0703505277633667,
- 0.015900133177638054,
- -0.06311564892530441,
- 0.05773233622312546,
- -0.06310977786779404,
- -0.12136034667491913,
- -0.05006597563624382,
- 0.02043905109167099,
- -0.07664350420236588,
- -0.10433025658130646,
- 0.023817650973796844,
- 0.014939019456505775,
- 0.08703923970460892,
- -0.023380346596240997,
- 0.005182475782930851,
- 0.0916309505701065,
- 0.152744323015213,
- 0.0020932115148752928,
- 0.03841902315616608,
- -0.02578890323638916,
- -0.018660103902220726,
- 0.07827926427125931,
- -0.007629459258168936,
- 0.027523843571543694,
- 0.0728176161646843,
- 0.08824369311332703,
- -0.02516157180070877,
- -0.07853494584560394,
- -0.004685890395194292,
- 0.03434758260846138,
- 0.19572387635707855,
- -0.05911625549197197,
- -0.04617273807525635,
- 0.06351910531520844,
- 0.00975780002772808,
- 0.022178208455443382,
- -0.008340956643223763,
- -0.01676671765744686,
- 0.033647164702415466,
- 0.037996139377355576,
- 0.04835538566112518,
- -0.09170761704444885,
- 0.016935931518673897,
- -0.11758749186992645,
- 0.07934916019439697,
- 0.055077895522117615,
- 0.04269469529390335,
- 0.04540104418992996,
- -0.04484058544039726,
- -0.04936359450221062,
- -0.17317774891853333,
- -0.012070447206497192,
- -0.011398741975426674,
- 0.03162281587719917,
- -0.06664972007274628,
- -0.02246212400496006,
- 0.015477039851248264,
- 0.054210320115089417,
- 0.08462922275066376,
- 0.062386494129896164,
- -0.042441871017217636,
- -0.013109930790960789,
- 0.00939913745969534,
- -0.007456089369952679,
- -0.04210859164595604,
- 0.03813083469867706,
- 0.2379758656024933,
- -0.09484681487083435,
- -0.024057861417531967,
- 0.09911444783210754,
- -0.062179043889045715,
- 0.25326043367385864,
- 0.051108360290527344,
- 0.009980568662285805,
- -0.0048774490132927895,
- 0.052918609231710434,
- -0.013571743853390217,
- 0.0053449999541044235,
- 0.013823521323502064,
- -0.02330511249601841,
- -0.00428345799446106,
- -0.08592644333839417,
- -0.05291447788476944,
- 0.051154449582099915,
- 0.044978249818086624,
- -0.06860842555761337,
- -0.11980938911437988,
- 0.013209836557507515,
- -0.041604869067668915,
- -0.010049509815871716,
- -0.043893929570913315,
- 0.04407574608922005,
- 0.08970122039318085,
- -0.06201982498168945,
- 0.010958678089082241,
- 0.02480255998671055,
- -0.029584165662527084,
- 0.030199136584997177,
- -0.03733476996421814,
- 0.004361382685601711,
- 0.05117303505539894,
- 0.08744906634092331,
- -0.008145899511873722,
- -0.01030765287578106,
- -0.012884370051324368,
- 0.007773770019412041,
- 0.042627014219760895,
- 0.05515362694859505,
- 0.08136679232120514,
- 0.0797870084643364,
- 0.05545911192893982,
- 0.024416694417595863,
- -0.03696504980325699,
- 0.002257360378280282,
- -0.027584576979279518,
- -0.029509499669075012,
- -0.002881299937143922,
- -0.017272628843784332,
- 0.04902002215385437,
- 0.017209423705935478,
- -0.1888137310743332,
- 0.00729665532708168,
- 0.06908097118139267,
- 0.03220995143055916,
- 0.024652503430843353,
- 0.054667919874191284,
- -0.0736251175403595,
- 0.024177035316824913,
- -0.006179518532007933,
- -0.030262118205428123,
- 0.02030821330845356,
- 0.02248287759721279,
- 0.0544651634991169,
- 0.09958230704069138,
- 0.05269131809473038,
- -0.02119416370987892,
- -0.04541947320103645,
- -0.021787572652101517,
- 0.005743333604186773,
- 0.11426219344139099,
- -0.12011124938726425,
- -0.05265815556049347,
- -0.02017640694975853,
- -0.030176587402820587,
- 0.6467923521995544,
- 0.11972368508577347,
- 0.1060001477599144,
- 0.013893713243305683,
- -0.013081636279821396,
- 0.1637335866689682,
- 0.008448571898043156,
- -0.026979202404618263,
- -0.07952984422445297,
- -0.07374123483896255,
- -0.020890969783067703,
- -0.02450704574584961,
- -0.023407846689224243,
- 0.03410590440034866,
- 0.0030229040421545506,
- 0.08147445321083069,
- 0.051396019756793976,
- 0.05633780360221863,
- -0.0006175744929350913,
- -0.09070824086666107,
- -0.07482828944921494,
- 0.014075960032641888,
- -0.011161016300320625,
- -0.1102571189403534,
- 0.03255777060985565,
- 0.027126207947731018,
- 0.10418466478586197,
- -0.07217305898666382,
- 0.030076324939727783,
- -0.08190244436264038,
- 0.06465181708335876,
- -0.048410557210445404,
- 0.07246822118759155,
- -0.016070397570729256,
- 0.026312343776226044,
- 0.005570916458964348,
- -0.0451580211520195,
- 0.022034814581274986,
- -0.01495420839637518,
- 0.03327597305178642,
- 0.13300563395023346,
- 0.0014304907526820898,
- 0.003672738093882799,
- 0.02193296141922474,
- -0.08534662425518036,
- 0.0489189438521862,
- -0.021043088287115097,
- 0.145887091755867,
- -0.12002434581518173,
- 0.02632218413054943,
- -0.02032678946852684,
- 0.005311131477355957,
- 0.022687779739499092,
- -0.026692571118474007,
- -0.11155595630407333,
- -0.03194449469447136,
- 0.06306857615709305,
- 0.017884621396660805,
- 0.06336385756731033,
- 0.035713523626327515,
- -0.07010674476623535,
- 0.03513176366686821,
- 0.15677963197231293,
- 0.012076281942427158,
- -0.00727535504847765,
- 0.05517271161079407,
- -0.00003875116817653179,
- -0.05694807320833206,
- -0.03740766644477844,
- -0.004460991360247135,
- 0.037760648876428604,
- 0.033119842410087585,
- -0.030468299984931946,
- 0.03934554383158684,
- 0.05585010349750519,
- 0.02821902558207512,
- 0.04510577395558357,
- 0.00934689212590456,
- 0.031145943328738213,
- 0.05823395028710365,
- -0.1189592257142067,
- -0.04970730468630791,
- -0.03341735899448395,
- -0.07275558263063431,
- 0.05918843671679497,
- -0.04930403083562851,
- 0.08234687149524689,
- 0.06351930648088455,
- 0.016800522804260254,
- 0.04497920721769333,
- 0.00520231481641531,
- 0.04243406280875206,
- 0.030754465609788895,
- -0.03554164245724678,
- 0.03055102378129959,
- -0.015147416852414608,
- -0.014124817214906216,
- -0.0338791087269783,
- -0.02136504463851452,
- 0.02655712142586708,
- -0.014330370351672173,
- -0.05924011766910553,
- -0.019083186984062195,
- -0.017181551083922386,
- -0.05234689638018608,
- -0.09959612041711807,
- -0.04869609326124191,
- -0.00645188894122839,
- 0.028189007192850113,
- -0.04518024995923042,
- -0.10601905733346939,
- -0.034535542130470276,
- -0.011630917899310589,
- 0.07624693214893341,
- -0.08916652202606201,
- -0.013648060150444508,
- -0.09382314234972,
- 0.034809660166502,
- -0.041956834495067596,
- 0.04459584876894951,
- -0.00923885963857174,
- -0.04922966659069061,
- 0.006794288754463196,
- -0.09377547353506088,
- 0.046024274080991745,
- -0.042340464890003204,
- -0.07359741628170013,
- -0.08158750832080841,
- -0.02198752388358116,
- -0.028566252440214157,
- -0.04805636778473854,
- -0.004258294589817524,
- -0.06120524927973747,
- 0.003289475804194808,
- 0.03843763843178749,
- 0.03711937740445137,
- 0.03837374597787857,
- 0.0031473941635340452,
- 0.015530137345194817,
- -0.03378010541200638,
- 0.035534728318452835,
- 0.04169169440865517,
- 0.034465208649635315,
- 0.06474427133798599,
- -0.015593990683555603,
- -0.07352819293737411,
- -0.024305833503603935,
- 0.01797754317522049,
- -0.06285270303487778,
- 0.06392375379800797,
- -0.034877970814704895,
- 0.03623311221599579,
- -0.06192954629659653,
- -0.0385967381298542,
- 0.035151511430740356,
- -0.05345731973648071,
- -0.05816641449928284,
- -0.03389846906065941,
- 0.05157303810119629,
- 0.008887330070137978,
- 0.009516937658190727,
- 0.001185775501653552,
- -0.07130708545446396,
- 0.0012217324692755938,
- 0.05061257630586624,
- -0.023671327158808708,
- 0.037447910755872726,
- 0.09875141829252243,
- -0.012335122562944889,
- 0.01363567728549242,
- 0.049963872879743576,
- 0.02153601311147213,
- -0.01673515886068344,
- 0.03156718611717224,
- 0.356606662273407,
- -0.21184256672859192,
- 0.07365971803665161,
- 0.06545868515968323,
- 0.026761189103126526,
- 0.08846434205770493,
- -0.007228136993944645,
- 0.06764007359743118,
- 0.048296354711055756,
- 0.13307411968708038,
- 0.040988802909851074,
- -0.04280741512775421,
- 0.07349085807800293,
- -0.0543643943965435,
- 0.07032567262649536,
- -0.005102668888866901,
- 0.009479695931077003,
- 0.041483890265226364,
- -0.028939228504896164,
- -0.04659389704465866,
- 0.01838616281747818,
- -0.01978030800819397,
- 0.026904448866844177,
- 0.013995114713907242,
- -0.032057419419288635,
- 0.08018691092729568,
- 0.052976593375205994,
- 0.05448339879512787,
- -0.024877676740288734,
- 0.021451694890856743,
- -0.04819125682115555,
- 0.04903591424226761,
- 0.033724669367074966,
- 0.037962086498737335,
- -0.1573716253042221,
- 0.06181285157799721,
- -0.05925387889146805,
- -0.0690285786986351,
- 0.015509438700973988,
- 0.014414464123547077,
- 0.03774743154644966,
- 0.060111209750175476,
- -0.048783037811517715,
- 0.018741805106401443,
- -0.017430145293474197,
- -0.02758472040295601,
- 0.03070773370563984,
- 0.08656119555234909,
- 0.007413865998387337,
- 0.06484439224004745,
- 0.12673397362232208,
- 0.005170643329620361,
- 0.0343175008893013,
- -0.05470270290970802,
- 0.058783158659935,
- 0.11178593337535858,
- -0.03136925771832466,
- 0.017173482105135918,
- -0.04675508663058281,
- 0.030188260599970818,
- -0.003538244403898716,
- -0.014626499265432358,
- -0.13776689767837524,
- -0.032201558351516724,
- -0.03470497578382492,
- 0.052871640771627426,
- 0.0012443653540685773,
- -0.0255349762737751,
- -0.15119336545467377,
- -0.02536800689995289,
- -0.01586758904159069,
- -0.03459968790411949,
- 0.128774031996727,
- -0.0642271488904953,
- 0.05386940389871597,
- 0.04798757657408714,
- -0.027069073170423508,
- -0.05479811131954193,
- -0.09231263399124146,
- -0.004642825573682785,
- -0.03340407833456993,
- 0.021204596385359764,
- -0.018895413726568222,
- 0.06990785896778107,
- -0.06308874487876892,
- 0.10220003128051758,
- -0.063290074467659,
- 0.05357179045677185,
- -0.07091952860355377,
- 0.0312502346932888,
- -0.062301840633153915,
- -0.08114297688007355,
- 0.015089613385498524,
- 0.05890839546918869,
- -0.038302816450595856,
- -0.014147807843983173,
- 0.024518409743905067,
- -0.0029560737311840057,
- -0.033653534948825836,
- -0.07260218262672424,
- -0.024275878444314003,
- -0.07986856997013092,
- 0.021700402721762657,
- -0.0865854024887085,
- 0.02075737528502941,
- -0.01632300764322281,
- 0.007429033517837524,
- 0.013024693354964256,
- 0.018515655770897865,
- 0.0018488062778487802,
- -0.07598447054624557,
- 0.0006381625426001847,
- 0.054124195128679276,
- 0.05325794965028763,
- 0.016837220638990402,
- -0.04966406151652336,
- -0.007730068173259497,
- 0.1012473851442337,
- 0.03222963958978653,
- -0.03214528411626816,
- 0.03494251146912575,
- -0.04610561206936836,
- 0.019381485879421234,
- -0.15988293290138245,
- -0.3796190917491913,
- 0.028726346790790558,
- 0.010618179105222225,
- 0.03495784476399422,
- 0.029221706092357635,
- -0.09556277096271515,
- 0.00575805502012372,
- 0.037600502371788025,
- -0.019746094942092896,
- 0.0317976139485836,
- -0.07167092710733414,
- 0.05440152809023857,
- -0.06684675067663193,
- -0.09814610332250595,
- 0.025759844109416008,
- -0.05909114331007004,
- -0.01977655105292797,
- -0.0015762678813189268,
- -0.03475632891058922,
- -0.00473789032548666,
- -0.08758433908224106,
- 0.017217589542269707,
- -0.06157907471060753,
- -0.012175245210528374,
- 0.06448443233966827,
- 0.045658402144908905,
- -0.10424111783504486,
- -0.004361456260085106,
- 0.054838936775922775,
- 0.11814990639686584,
- -0.012259877286851406,
- -0.03437592834234238,
- -0.08252531290054321,
- 0.03836144506931305,
- 0.04960882291197777,
- 0.07834027707576752,
- 0.009159406647086143,
- -0.05805660039186478,
- -0.026123736053705215,
- 0.07350745052099228,
- 0.06549156457185745,
- 0.18766261637210846,
- 0.017114903777837753,
- 0.00109911581967026,
- 0.058975689113140106,
- 0.11285483092069626,
- 0.0010184918064624071,
- -0.0032395438756793737,
- -0.042010433971881866,
- -0.029860181733965874,
- 0.009276765398681164,
- 0.038843948394060135,
- 0.04968831688165665,
- -0.08821092545986176,
- -0.0331072062253952,
- -0.06903975456953049,
- -0.004059868864715099,
- -0.036960672587156296,
- 0.03239694610238075,
- 0.17460067570209503,
- 0.019191978499293327,
- 0.0453796312212944,
- 0.03697268292307854,
- -0.07422930747270584,
- 0.0072288489900529385,
- -0.07324154675006866,
- -0.03695409744977951,
- -0.02979547157883644,
- 0.041878294199705124,
- 0.004118024837225676,
- -0.06433261185884476,
- -0.1017644852399826,
- 0.009662877768278122,
- -0.01726146787405014,
- 0.018909532576799393,
- 0.1252327561378479,
- 0.01060597226023674,
- 0.03271806985139847,
- -0.0337635837495327,
- 0.11204469203948975,
- -0.05505319684743881,
- 0.009305638261139393,
- 0.06036781519651413,
- 0.1594386100769043,
- 0.05486956238746643,
- -0.020172156393527985,
- -0.030528336763381958,
- -0.009054379537701607,
- 0.007388626225292683,
- 0.16343650221824646,
- -0.00520400470122695,
- 0.12797759473323822,
- 0.04943324252963066,
- 0.041653282940387726,
- 0.013889550231397152,
- 0.03508187457919121,
- -0.11002205312252045,
- -0.016392244026064873,
- -0.4218326508998871,
- -0.027300454676151276,
- 0.051476605236530304,
- 0.1034964770078659,
- -0.04145736247301102,
- 0.10351621359586716,
- 0.012368208728730679,
- 0.018294794484972954,
- 0.01966005563735962,
- -0.03631073608994484,
- 0.1533058136701584,
- 0.04651655629277229,
- 0.05225561186671257,
- -0.10635030269622803,
- -0.012033008970320225,
- 0.05719587579369545,
- -0.03268162161111832,
- 0.011579246260225773,
- 0.04697713255882263,
- -0.1907632201910019,
- 0.006129913032054901,
- -0.0319150872528553,
- 0.0863238051533699,
- -0.018065981566905975,
- 0.00014837401977274567,
- 0.1128368079662323,
- -0.010560663416981697,
- 0.04586067050695419,
- 0.0373123362660408,
- -0.018684668466448784,
- 0.03935505449771881,
- 0.07206100970506668,
- -0.027066102251410484,
- 0.07961639016866684,
- 0.06929680705070496,
- 0.11463188380002975,
- 0.005067748017609119,
- 11.942320823669434,
- 0.01975112408399582,
- 0.012103739194571972,
- -0.03812810406088829,
- 0.016339559108018875,
- -0.0847352147102356,
- 0.03411359712481499,
- -0.05822411924600601,
- 0.03345651552081108,
- 0.08354393392801285,
- -0.005217531230300665,
- 0.026049941778182983,
- -0.07153378427028656,
- -0.08188896626234055,
- 0.005774252582341433,
- 0.00565227959305048,
- -0.08507826924324036,
- -0.0499022975564003,
- 0.0627235546708107,
- 0.011571435257792473,
- -0.04983760043978691,
- 0.04600962623953819,
- 0.018687520176172256,
- 0.0001299703144468367,
- -0.060492634773254395,
- 0.03598063439130783,
- 0.037693336606025696,
- -0.028684604912996292,
- 0.007065356243401766,
- -0.0072105638682842255,
- 0.06543887406587601,
- 0.07584885507822037,
- 0.020473768934607506,
- 0.018025165423750877,
- 0.07187926769256592,
- -0.021024908870458603,
- 0.05870530381798744,
- -0.03818651661276817,
- -0.011780884116888046,
- 0.07842547446489334,
- 0.045969653874635696,
- 0.011535519734025002,
- 0.03242400288581848,
- 0.001224190229550004,
- 0.08171335607767105,
- 0.025903591886162758,
- -0.011556800454854965,
- 0.110423244535923,
- 0.06316488981246948,
- 0.028612349182367325,
- 0.11642151325941086,
- -0.042622145265340805,
- 0.11637960374355316,
- 0.041278112679719925,
- -0.05953684449195862,
- -0.02649129182100296,
- -0.003576942253857851,
- -0.07774163037538528,
- 0.07867712527513504,
- 0.06270235776901245,
- -0.04458269104361534,
- 0.12217685580253601,
- 0.01686226949095726,
- 0.061180680990219116,
- 0.000419288087869063,
- 0.044033024460077286,
- 0.039565276354551315,
- 0.06978251039981842,
- -0.07318142056465149,
- 0.008878214284777641,
- -0.0029856241308152676,
- -0.08428064733743668,
- -0.049473103135824203,
- 0.030137838795781136,
- 0.06434731185436249,
- -0.023716893047094345,
- 0.09017572551965714,
- 0.009853723458945751,
- 0.03675893321633339,
- -0.0024937635753303766,
- 0.04563794657588005,
- 0.0541391558945179,
- -0.029472216963768005,
- -0.005296996794641018,
- 0.058021578937768936,
- 0.03537590801715851,
- 0.02844545803964138,
- 0.1200389638543129,
- 0.009889340959489346,
- -0.08924566209316254,
- -0.04269929230213165,
- 0.10266314446926117,
- 0.010654455982148647,
- -0.07296572625637054,
- 0.0007317379931919277,
- 0.005333417095243931,
- -0.00856640376150608,
- -0.09752031415700912,
- 0.06250763684511185,
- 0.06349506974220276,
- -0.0430079847574234,
- -0.0165438000112772,
- -0.03451127931475639,
- 0.06794361770153046,
- 0.0027684904634952545,
- 0.0122081208974123,
- -0.10996134579181671,
- -0.015265291556715965,
- 0.007062970660626888,
- 0.02807728946208954,
- -0.04103563725948334,
- 0.054951779544353485,
- 0.0745946392416954,
- -0.04770069569349289,
- 0.03432077541947365,
- -0.005520556587725878,
- -0.014999349601566792,
- 0.0010245922021567822,
- 0.06984962522983551,
- 0.03681432455778122,
- -0.02985820174217224,
- 0.021339403465390205,
- -0.03539080545306206,
- -0.021807393059134483,
- -0.025374092161655426,
- 0.013489731587469578,
- -0.035779040306806564,
- 0.0066265990026295185,
- 0.018642889335751534,
- -0.03357308730483055,
- 0.02261953428387642,
- 0.027455037459731102,
- 0.04041266068816185,
- 0.010105843655765057,
- 0.003743097884580493,
- -0.016724050045013428,
- -0.04033030942082405,
- 0.06498958170413971,
- 0.06990934908390045,
- 0.06895055621862411,
- -0.03771499544382095,
- -0.04655773192644119,
- -0.013669912703335285,
- -0.12263397127389908,
- -0.042162321507930756,
- 0.04952949285507202,
- 0.07827558368444443,
- 0.05589308217167854,
- -0.0043585170060396194,
- -0.1020987331867218,
- 0.010442721657454967,
- 0.03510861471295357,
- -0.0064980159513652325,
- -0.017132624983787537,
- 0.022786172106862068,
- -0.046611055731773376,
- -0.013830844312906265,
- 0.0696534737944603,
- -0.022246168926358223,
- -0.004966504871845245,
- 0.0008400992373935878,
- -0.097711943089962,
- 0.11142870038747787,
- 0.07150284945964813,
- -0.022945048287510872,
- 0.029778266325592995,
- -0.0060081444680690765,
- 0.006407240405678749,
- -0.005607781931757927,
- -0.02711460366845131,
- -0.009926862083375454,
- 0.0471850261092186,
- -0.08247797191143036,
- -0.09957440197467804,
- 0.0163003858178854,
- 0.1418502926826477,
- 0.08727724105119705,
- -0.08570118993520737,
- -0.04423873871564865,
- -0.01745712384581566
- ],
- "from_text_hash": "face0669a650a7a5df93305c42ac89d68a8f0f38"
- },
- "incidents": [
- {
- "incident_id": 1,
- "similarity": 0.9980230331420898
- },
- {
- "incident_id": 53,
- "similarity": 0.9971371293067932
- },
- {
- "incident_id": 279,
- "similarity": 0.9971080422401428
- }
- ]
-}
\ No newline at end of file
diff --git a/site/gatsby-site/cypress/fixtures/call/classifications.json b/site/gatsby-site/cypress/fixtures/call/classifications.json
deleted file mode 100644
index cdf03ea65a..0000000000
--- a/site/gatsby-site/cypress/fixtures/call/classifications.json
+++ /dev/null
@@ -1,364 +0,0 @@
-{
- "data": {
- "classifications": [
- {
- "__typename": "Classification",
- "_id": "60dd465f80935bc89e6f9b00",
- "publish": true,
- "attributes": [
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Annotator",
- "value_json": "\"1\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Annotation Status",
- "value_json": "\"6. Complete and final\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Reviewer",
- "value_json": "\"5\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Quality Control",
- "value_json": "false"
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Full Description",
- "value_json": "\"On December 5, 2018, a robot punctured a can of bear spray in Amazon's fulfillment center in Robbinsville, New Jersey. Amazon's spokesman stated that \\\"an automated machine punctured a 9-oz can of bear repellent.\\\" The punctured can released capsaicin, an irritant, into the air. Several dozen workers were exposed to the fumes, causing symptoms including trouble breathing and a burning sensation in the eyes and throat. 24 workers were hospitalized, and one was sent to intensive care and intubated.\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Short Description",
- "value_json": "\"Twenty-four Amazon workers in New Jersey were hospitalized after a robot punctured a can of bear repellent spray in a warehouse.\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Beginning Date",
- "value_json": "\"2018-12-05T00:00:00.000Z\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Ending Date",
- "value_json": "\"2018-12-05T00:00:00.000Z\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Location",
- "value_json": "\"Robbinsville, New Jersey, United States of America\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Near Miss",
- "value_json": "\"Harm caused\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Named Entities",
- "value_json": "[\"Amazon\"]"
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Technology Purveyor",
- "value_json": "[\"Amazon\"]"
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Intent",
- "value_json": "\"Accident\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Severity",
- "value_json": "\"Moderate\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Harm Type",
- "value_json": "[\"Harm to physical health/safety\",\"Harm to physical property\"]"
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Lives Lost",
- "value_json": "false"
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Harm Distribution Basis",
- "value_json": "[]"
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Infrastructure Sectors",
- "value_json": "[]"
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Financial Cost",
- "value_json": "\"\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Laws Implicated",
- "value_json": "[\"Workplace safety laws\",\"OSHA regulations\"]"
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "AI System Description",
- "value_json": "\"An automated machine operating within an Amazon fulfillment center.\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Data Inputs",
- "value_json": "[]"
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "System Developer",
- "value_json": "[]"
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Sector of Deployment",
- "value_json": "[\"Transportation and storage\"]"
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Public Sector Deployment",
- "value_json": "false"
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Nature of End User",
- "value_json": "\"\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Level of Autonomy",
- "value_json": "\"Unclear/unknown\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Relevant AI functions",
- "value_json": "[\"Unclear\"]"
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "AI Techniques",
- "value_json": "[]"
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "AI Applications",
- "value_json": "[\"robotics\"]"
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Physical System",
- "value_json": "[\"Unknown/unclear\"]"
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Problem Nature",
- "value_json": "[\"Unknown/unclear\"]"
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Publish",
- "value_json": "true"
- }
- ],
- "incidents": [
- {
- "incident_id": 2
- }
- ],
- "namespace": "CSET",
- "notes": "{}"
- },
- {
- "__typename": "Classification",
- "_id": "60dd465f80935bc89e6f9b01",
- "publish": true,
- "attributes": [
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Annotator",
- "value_json": "\"1\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Annotation Status",
- "value_json": "\"6. Complete and final\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Reviewer",
- "value_json": "\"6\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Quality Control",
- "value_json": "false"
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Full Description",
- "value_json": "\"A Boeing 737 MAX aircraft equipped with a new, automated flight control system plunged into the Java Sea, killing 189 people on board. On October 29, 2018, shortly after takeoff from Jakarta, Lion Air Flight 610 reported a malfunction in its \\\"angle of attack\\\" sensor. Based on faulty readings from the single sensor, the plane's Maneuvering Characteristics Augmentation System (MCAS) forced the plane's nose down in order to prevent stalling. The pilots pulled the nose back up over twenty times, but the MCAS system counteracted their actions. Eventually, the plane hit the ocean at a speed of several hundred miles per hour. Flight 610 had experienced a similar problem on a previous flight, but in that case, the pilots were able to override MCAS using an emergency procedure. Commentators speculated that the pilots on the day of the fatal crash may have been confused or startled, and that they may not have been fully aware of the MCAS system and how they could override it.\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Short Description",
- "value_json": "\"A Boeing 737 crashed into the sea, killing 189 people, after faulty sensor data caused an automated manuevering system to repeatedly push the plane's nose downward.\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Beginning Date",
- "value_json": "\"2018-10-29\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Ending Date",
- "value_json": "\"2018-10-29\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Location",
- "value_json": "\"Java Sea\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Near Miss",
- "value_json": "\"Harm caused\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Named Entities",
- "value_json": "[\"Lion Air\",\"Boeing\"]"
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Technology Purveyor",
- "value_json": "[\"Lion Air\"]"
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Intent",
- "value_json": "\"Accident\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Severity",
- "value_json": "\"Critical\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Harm Type",
- "value_json": "[\"Harm to physical health/safety\",\"Psychological harm\",\"Harm to physical property\",\"Harm to intangible property\"]"
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Lives Lost",
- "value_json": "true"
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Harm Distribution Basis",
- "value_json": "[]"
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Infrastructure Sectors",
- "value_json": "[\"Transportation\"]"
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Financial Cost",
- "value_json": "\"\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Laws Implicated",
- "value_json": "[\"Federal Aviation Administration regulations\",\"Indonesian air safety regulations\"]"
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "AI System Description",
- "value_json": "\"The Maneuvering Characteristics Augmentation System (MCAS) is an aircraft maneuvering system that can autonomously steer the plane based on sensor input\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Data Inputs",
- "value_json": "[\"Aircraft sensor data\"]"
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "System Developer",
- "value_json": "[\"Boeing\"]"
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Sector of Deployment",
- "value_json": "[\"Transportation and storage\"]"
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Public Sector Deployment",
- "value_json": "false"
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Nature of End User",
- "value_json": "\"Expert\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Level of Autonomy",
- "value_json": "\"High\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Relevant AI functions",
- "value_json": "[\"Perception\",\"Cognition\",\"Action\"]"
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "AI Techniques",
- "value_json": "[]"
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "AI Applications",
- "value_json": "[\"Aircraft maneuvering\",\"sensor input processing\"]"
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Physical System",
- "value_json": "[\"Vehicle/mobile robot\"]"
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Problem Nature",
- "value_json": "[\"Robustness\",\"Assurance\"]"
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Publish",
- "value_json": null
- }
- ],
- "incidents": [
- {
- "incident_id": 3
- }
- ],
- "namespace": "CSET",
- "notes": ""
- }
- ]
- }
-}
\ No newline at end of file
diff --git a/site/gatsby-site/cypress/fixtures/call/resources.json b/site/gatsby-site/cypress/fixtures/call/resources.json
deleted file mode 100644
index 0637a088a0..0000000000
--- a/site/gatsby-site/cypress/fixtures/call/resources.json
+++ /dev/null
@@ -1 +0,0 @@
-[]
\ No newline at end of file
diff --git a/site/gatsby-site/cypress/fixtures/call/taxa.json b/site/gatsby-site/cypress/fixtures/call/taxa.json
deleted file mode 100644
index 3f8ae240c0..0000000000
--- a/site/gatsby-site/cypress/fixtures/call/taxa.json
+++ /dev/null
@@ -1,6042 +0,0 @@
-{
- "data": {
- "taxas": [
- {
- "__typename": "Taxa",
- "description": "# What is the CSET Taxonomy?\n\nThe Center for Security and Emerging Technology (CSET) taxonomy is a general taxonomy of AI incidents. There are a large number of classified attributes, including ones pertaining to safety, fairness, industry, geography, timing, and cost.All classifications within the CSET taxonomy are first applied by one CSET annotator and reviewed by another CSET annotator before the classifications are finalized. The combination of a rigorously defined coding set and the completeness with which it has been applied make the CSET taxonomy the AIID's gold standard for taxonomies. Nevertheless, the CSET taxonomy is an ongoing effort and you are invited to report any errors you may discover in its application.\n\n## How do I explore the taxonomy?\n\nAll taxonomies can be used to filter incident reports within the [Discover Application](/apps/discover). The taxonomy filters work similarly to how you filter products on an E-commerce website. Use the search field at the bottom of the “Classifications” tab to find the taxonomy field you would like to filter with, then click the desired value to apply the filter.\n\n# About CSET\n\nA policy research organization within Georgetown University’s Walsh School of Foreign Service, CSET produces data-driven research at the intersection of security and technology, providing nonpartisan analysis to the policy community. CSET is currently focusing on the effects of progress in artificial intelligence (AI), advanced computing and biotechnology. CSET seeks to prepare a new generation of decision-makers to address the challenges and opportunities of emerging technologies. [(Read more)](https://cset.georgetown.edu/about-us/).",
- "field_list": [
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "enum",
- "field_number": null,
- "instant_facet": false,
- "long_description": "An ID designating the individual who classified this incident according to the CSET taxonomy.",
- "long_name": "Person responsible for the annotations",
- "mongo_type": "string",
- "permitted_values": [
- "1",
- "2",
- "3",
- "4",
- "5",
- "6",
- "7",
- "8",
- "9",
- "Other"
- ],
- "placeholder": "Select name here",
- "public": false,
- "required": false,
- "short_description": "This is the researcher that is responsible for applying the classifications of the CSET taxonomy.",
- "short_name": "Annotator",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "enum",
- "field_number": null,
- "instant_facet": false,
- "long_description": "What is the quality assurance status of the CSET classifications for this incident?",
- "long_name": "Where in the annotation process is this incident?",
- "mongo_type": "string",
- "permitted_values": [
- "1. Annotation in progress",
- "2. Initial annotation complete",
- "3. In peer review",
- "4. Peer review complete",
- "5. In quality control",
- "6. Complete and final"
- ],
- "placeholder": "Select process status here",
- "public": false,
- "required": false,
- "short_description": "What is the quality assurance status of the CSET classifications for this incident?",
- "short_name": "Annotation Status",
- "weight": 10
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "enum",
- "field_number": null,
- "instant_facet": false,
- "long_description": "The CSET taxonomy assigns individual researchers to each incident as the primary parties responsible for classifying the incident according to the taxonomy. This is the person responsible for assuring the integrity of annotator's classifications.",
- "long_name": "Person responsible for reviewing annotations",
- "mongo_type": "string",
- "permitted_values": [
- "1",
- "2",
- "3",
- "4",
- "5",
- "6",
- "7",
- "8",
- "9",
- "Other"
- ],
- "placeholder": "Select name here",
- "public": false,
- "required": false,
- "short_description": "This is the researcher that is responsible for ensuring the quality of the classifications applied to this incident.",
- "short_name": "Reviewer",
- "weight": 20
- },
- {
- "__typename": "TaxaField_list",
- "default": "false",
- "display_type": "bool",
- "field_number": null,
- "instant_facet": false,
- "long_description": "The peer review process sometimes uncovers issues with the classifications that have been applied by the annotator. This field serves as a flag when there is a need for additional thought and input on the classifications applied",
- "long_name": "Was this incident randomly selected for additional quality control?",
- "mongo_type": "bool",
- "permitted_values": [],
- "placeholder": "",
- "public": false,
- "required": false,
- "short_description": "Has someone flagged a potential issue with this incident's classifications?",
- "short_name": "Quality Control",
- "weight": 15
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "string",
- "field_number": null,
- "instant_facet": false,
- "long_description": "A plain-language description of the incident in one paragraph or less.",
- "long_name": "Full description of the incident",
- "mongo_type": "string",
- "permitted_values": [],
- "placeholder": "Describe the incident here",
- "public": null,
- "required": false,
- "short_description": "A plain-language description of the incident in one paragraph or less.",
- "short_name": "Full Description",
- "weight": 160
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "string",
- "field_number": null,
- "instant_facet": false,
- "long_description": "A one-sentence description of the incident.",
- "long_name": "Short description of the incident",
- "mongo_type": "string",
- "permitted_values": [],
- "placeholder": "Describe the incident here",
- "public": null,
- "required": false,
- "short_description": "A one-sentence description of the incident.",
- "short_name": "Short Description",
- "weight": 155
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "date",
- "field_number": null,
- "instant_facet": false,
- "long_description": "The date the incident began.",
- "long_name": "Beginning date",
- "mongo_type": "date",
- "permitted_values": [],
- "placeholder": "",
- "public": null,
- "required": false,
- "short_description": "The date the incident began.",
- "short_name": "Beginning Date",
- "weight": 90
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "date",
- "field_number": null,
- "instant_facet": false,
- "long_description": "The date the incident ended.",
- "long_name": "Ending date",
- "mongo_type": "date",
- "permitted_values": [],
- "placeholder": "",
- "public": null,
- "required": false,
- "short_description": "The date the incident ended.",
- "short_name": "Ending Date",
- "weight": 85
- },
- {
- "__typename": "TaxaField_list",
- "default": "global",
- "display_type": "location",
- "field_number": null,
- "instant_facet": true,
- "long_description": "The location or locations where the incident played out.",
- "long_name": "Location",
- "mongo_type": "string",
- "permitted_values": [],
- "placeholder": "Input a named place as it could be found in Google maps",
- "public": null,
- "required": false,
- "short_description": "The location or locations where the incident played out.",
- "short_name": "Location",
- "weight": 105
- },
- {
- "__typename": "TaxaField_list",
- "default": "Harm caused",
- "display_type": "enum",
- "field_number": null,
- "instant_facet": true,
- "long_description": "Was harm caused, or was it a near miss?",
- "long_name": "Harm nearly missed?",
- "mongo_type": "string",
- "permitted_values": [
- "Unclear/unknown",
- "Near miss",
- "Harm caused"
- ],
- "placeholder": "",
- "public": null,
- "required": false,
- "short_description": "Was harm caused, or was it a near miss?",
- "short_name": "Near Miss",
- "weight": 80
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "list",
- "field_number": null,
- "instant_facet": true,
- "long_description": "All named entities (such as people, organizations, locations, and products - generally proper nouns) that seem to have a significant relationship with this event, as indicated by the available evidence.",
- "long_name": "Named entities",
- "mongo_type": "array",
- "permitted_values": [],
- "placeholder": "",
- "public": null,
- "required": false,
- "short_description": "All named entities (such as people, organizations, locations, and products - generally proper nouns) that seem to have a significant relationship with this event, as indicated by the available evidence.",
- "short_name": "Named Entities",
- "weight": 100
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "list",
- "field_number": null,
- "instant_facet": true,
- "long_description": "A list of parties (up to three) that were responsible for the relevant AI tool or system, i.e. that had operational control over the AI-related system causing harm (or control over those who did).",
- "long_name": "Party responsible for AI system",
- "mongo_type": "array",
- "permitted_values": [],
- "placeholder": "",
- "public": null,
- "required": false,
- "short_description": "A list of parties (up to three) that were responsible for the relevant AI tool or system, i.e. that had operational control over the AI-related system causing harm (or control over those who did).",
- "short_name": "Technology Purveyor",
- "weight": 95
- },
- {
- "__typename": "TaxaField_list",
- "default": "Accident",
- "display_type": "enum",
- "field_number": null,
- "instant_facet": true,
- "long_description": "Indicates whether the incident was deliberate/expected or accidental, based on the available evidence. \"Deliberate or expected\" applies if it is established or highly likely that the system acted more or less as expected, from the perspective of at least one of the people or entities responsible for it. “Accident” applies if it is established or highly likely that the harm arose from the system acting in an unexpected way. \"Unclear\" applies if the evidence is contradictory or too thin to apply either of the above labels.",
- "long_name": "Probable level of intent",
- "mongo_type": "string",
- "permitted_values": [
- "Accident",
- "Deliberate or expected",
- "Unclear"
- ],
- "placeholder": "Accident",
- "public": null,
- "required": false,
- "short_description": "Was the incident an accident, intentional, or is the intent unclear?",
- "short_name": "Intent",
- "weight": 75
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "enum",
- "field_number": null,
- "instant_facet": true,
- "long_description": "An estimate of the overall severity of harm caused. \"Negligible\" harm means minor inconvenience or expense, easily remedied. “Minor” harm means limited damage to property, social stability, the political system, or civil liberties occurred or nearly occurred. \"Moderate\" harm means that humans were injured (but not killed) or nearly injured, or that financial, property, social, or political interests or civil liberties were materially affected (or nearly so affected). \"Severe\" harm means that a small number of humans were or were almost gravely injured or killed, or that financial, property, social, or political interests or civil liberties were significantly disrupted at at least a regional or national scale (or nearly so disrupted). \"Critical\" harm means that many humans were or were almost killed, or that financial, property, social, or political interests were seriously disrupted at a national or global scale (or nearly so disrupted).",
- "long_name": "Overall severity of harm",
- "mongo_type": "string",
- "permitted_values": [
- "Negligible",
- "Minor",
- "Moderate",
- "Severe",
- "Critical",
- "Unclear/unknown"
- ],
- "placeholder": "",
- "public": null,
- "required": false,
- "short_description": "How bad is the harm for the most affected person or organization?",
- "short_name": "Severity",
- "weight": 150
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "multi",
- "field_number": null,
- "instant_facet": true,
- "long_description": "Indicates the type(s) of harm caused or nearly caused by the incident.",
- "long_name": "Harm type",
- "mongo_type": "array",
- "permitted_values": [
- "Harm to physical health/safety",
- "Psychological harm",
- "Financial harm",
- "Harm to physical property",
- "Harm to intangible property",
- "Harm to social or political systems",
- "Harm to civil liberties",
- "Other"
- ],
- "placeholder": "",
- "public": null,
- "required": false,
- "short_description": "Indicates the type(s) of harm caused or nearly caused by the incident.",
- "short_name": "Harm Type",
- "weight": 140
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "bool",
- "field_number": null,
- "instant_facet": true,
- "long_description": "Marked \"trur\" if one or more people died as a result of the accident, \"false\" if there is no evidence of lives being lost, \"unclear\" otherwise.",
- "long_name": "Human lives lost",
- "mongo_type": "bool",
- "permitted_values": [],
- "placeholder": "",
- "public": null,
- "required": false,
- "short_description": "Were human lives lost as a result of the incident?",
- "short_name": "Lives Lost",
- "weight": 70
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "multi",
- "field_number": null,
- "instant_facet": true,
- "long_description": "If harms were unevenly distributed, this field indicates the basis or bases on which they were unevenly distributed.",
- "long_name": "Uneven distribution of harms basis",
- "mongo_type": "array",
- "permitted_values": [
- "Race",
- "Religion",
- "National origin or immigrant status",
- "Geography",
- "Age",
- "Sex",
- "Sexual orientation or gender identity",
- "Familial status or pregnancy",
- "Disability",
- "Veteran status",
- "Genetic information",
- "Financial means",
- "Ideology",
- "Other"
- ],
- "placeholder": "",
- "public": null,
- "required": false,
- "short_description": "If harms were unevenly distributed, this field indicates the basis or bases on which they were unevenly distributed.",
- "short_name": "Harm Distribution Basis",
- "weight": 145
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "multi",
- "field_number": null,
- "instant_facet": true,
- "long_description": "Where applicable, this field indicates if the incident caused harm to any of the economic sectors designated by the U.S. government as critical infrastructure.",
- "long_name": "Critical infrastructure sectors affected",
- "mongo_type": "array",
- "permitted_values": [
- "Chemical",
- "Commercial facilities",
- "Communications",
- "Critical manufacturing",
- "Dams",
- "Defense-industrial base",
- "Emergency services",
- "Energy",
- "Financial services",
- "Food and agriculture",
- "Government facilities",
- "Healthcare and public health",
- "Information technology",
- "Nuclear",
- "Transportation",
- "Water and wastewater"
- ],
- "placeholder": "",
- "public": null,
- "required": false,
- "short_description": "Where applicable, this field indicates if the incident caused harm to any of the economic sectors designated by the U.S. government as critical infrastructure.",
- "short_name": "Infrastructure Sectors",
- "weight": 65
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "string",
- "field_number": null,
- "instant_facet": false,
- "long_description": "The stated or estimated financial cost of the incident, if reported.",
- "long_name": "Total financial cost",
- "mongo_type": "string",
- "permitted_values": [],
- "placeholder": "",
- "public": null,
- "required": false,
- "short_description": "The stated or estimated financial cost of the incident, if reported.",
- "short_name": "Financial Cost",
- "weight": 60
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "list",
- "field_number": null,
- "instant_facet": false,
- "long_description": "Relevant laws under which entities involved in the incident may face legal liability as a result of the incident.",
- "long_name": "Laws covering the incident",
- "mongo_type": "array",
- "permitted_values": [],
- "placeholder": "",
- "public": null,
- "required": false,
- "short_description": "Relevant laws under which entities involved in the incident may face legal liability as a result of the incident.",
- "short_name": "Laws Implicated",
- "weight": 55
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "string",
- "field_number": null,
- "instant_facet": false,
- "long_description": "A brief description of the AI system(s) involved in the incident, including the system’s intended function, the context in which it was deployed, and any available details about the algorithms, hardware, and training data involved in the system.",
- "long_name": "Description of AI system involved",
- "mongo_type": "string",
- "permitted_values": [],
- "placeholder": "Describe the AI system here",
- "public": null,
- "required": false,
- "short_description": "A brief description of the AI system(s) involved in the incident, including the system’s intended function, the context in which it was deployed, and any available details about the algorithms, hardware, and training data involved in the system.",
- "short_name": "AI System Description",
- "weight": 135
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "list",
- "field_number": null,
- "instant_facet": false,
- "long_description": "A brief description of the data that the AI system(s) used or were trained on.",
- "long_name": "Description of the data inputs to the AI systems",
- "mongo_type": "array",
- "permitted_values": [],
- "placeholder": "Describe the AI system here",
- "public": null,
- "required": false,
- "short_description": "A brief description of the data that the AI system(s) used or were trained on.",
- "short_name": "Data Inputs",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "list",
- "field_number": null,
- "instant_facet": true,
- "long_description": "The entity that created the AI system.",
- "long_name": "System developer",
- "mongo_type": "array",
- "permitted_values": [],
- "placeholder": "",
- "public": null,
- "required": false,
- "short_description": "The entity that created the AI system.",
- "short_name": "System Developer",
- "weight": 130
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "multi",
- "field_number": null,
- "instant_facet": true,
- "long_description": "The primary economic sector in which the AI system(s) involved in the incident were operating.",
- "long_name": "Sector of deployment",
- "mongo_type": "array",
- "permitted_values": [
- "Manufacturing",
- "Electricity, gas, steam and air conditioning supply",
- "Water supply",
- "Construction",
- "Wholesale and retail trade",
- "Transportation and storage",
- "Accommodation and food service activities",
- "Information and communication",
- "Financial and insurance activities",
- "Real estate activities",
- "Professional, scientific and technical activities",
- "Administrative and support service activities",
- "Public administration and defence",
- "Education",
- "Human health and social work activities",
- "Arts, entertainment and recreation",
- "Other service activities",
- "Activities of households as employers",
- "Activities of extraterritorial organizations and bodies"
- ],
- "placeholder": "",
- "public": null,
- "required": false,
- "short_description": "The primary economic sector in which the AI system(s) involved in the incident were operating.",
- "short_name": "Sector of Deployment",
- "weight": 125
- },
- {
- "__typename": "TaxaField_list",
- "default": "false",
- "display_type": "bool",
- "field_number": null,
- "instant_facet": true,
- "long_description": "\"Yes\" if the AI system(s) involved in the accident were being used by the public sector or for the administration of public goods (for example, public transportation). \"No\" if the system(s) were being used in the private sector or for commercial purposes (for example, a ride-sharing company), on the other.",
- "long_name": "Public sector deployment",
- "mongo_type": "bool",
- "permitted_values": [],
- "placeholder": "",
- "public": null,
- "required": false,
- "short_description": "\"Yes\" if the AI system(s) involved in the accident were being used by the public sector or for the administration of public goods (for example, public transportation). \"No\" if the system(s) were being used in the private sector or for commercial purposes (for example, a ride-sharing company), on the other.",
- "short_name": "Public Sector Deployment",
- "weight": 45
- },
- {
- "__typename": "TaxaField_list",
- "default": "Accident",
- "display_type": "enum",
- "field_number": null,
- "instant_facet": true,
- "long_description": "\"Expert\" if users with special training or technical expertise were the ones meant to benefit from the AI system(s)’ operation; \"Amateur\" if the AI systems were primarily meant to benefit the general public or untrained users.",
- "long_name": "Nature of end user",
- "mongo_type": "string",
- "permitted_values": [
- "Expert",
- "Amateur"
- ],
- "placeholder": "Accident",
- "public": null,
- "required": false,
- "short_description": "\"Expert\" if users with special training or technical expertise were the ones meant to benefit from the AI system(s)’ operation; \"Amateur\" if the AI systems were primarily meant to benefit the general public or untrained users.",
- "short_name": "Nature of End User",
- "weight": 40
- },
- {
- "__typename": "TaxaField_list",
- "default": "Accident",
- "display_type": "enum",
- "field_number": null,
- "instant_facet": true,
- "long_description": "The degree to which the AI system(s) functions independently from human intervention. \"High\" means there is no human involved in the system action execution; \"Medium\" means the system generates a decision and a human oversees the resulting action; \"low\" means the system generates decision-support output and a human makes a decision and executes an action.",
- "long_name": "Level of autonomy",
- "mongo_type": "string",
- "permitted_values": [
- "High",
- "Medium",
- "Low"
- ],
- "placeholder": "Accident",
- "public": null,
- "required": false,
- "short_description": "The degree to which the AI system(s) functions independently from human intervention. \"High\" means there is no human involved in the system action execution; \"Medium\" means the system generates a decision and a human oversees the resulting action; \"low\" means the system generates decision-support output and a human makes a decision and executes an action.",
- "short_name": "Level of Autonomy",
- "weight": 35
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "multi",
- "field_number": null,
- "instant_facet": true,
- "long_description": "Indicates whether the AI system(s) were intended to perform any of the following high-level functions: \"Perception,\" i.e. sensing and understanding the environment; \"Cognition,\" i.e. making decisions; or \"Action,\" i.e. carrying out decisions through physical or digital means.",
- "long_name": "Relevant AI functions",
- "mongo_type": "array",
- "permitted_values": [
- "Perception",
- "Cognition",
- "Action",
- "Unclear"
- ],
- "placeholder": "",
- "public": null,
- "required": false,
- "short_description": "Indicates whether the AI system(s) were intended to perform any of the following high-level functions: \"Perception,\" i.e. sensing and understanding the environment; \"Cognition,\" i.e. making decisions; or \"Action,\" i.e. carrying out decisions through physical or digital means.",
- "short_name": "Relevant AI functions",
- "weight": 120
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "list",
- "field_number": null,
- "instant_facet": true,
- "long_description": "Open-ended tags that indicate the hardware and software involved in the AI system(s).",
- "long_name": "AI tools and techniques used",
- "mongo_type": "array",
- "permitted_values": [],
- "placeholder": "",
- "public": null,
- "required": false,
- "short_description": "Open-ended tags that indicate the hardware and software involved in the AI system(s).",
- "short_name": "AI Techniques",
- "weight": 115
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "list",
- "field_number": null,
- "instant_facet": true,
- "long_description": "Open-ended tags that describe the functions and applications of the AI system.",
- "long_name": "AI functions and applications used",
- "mongo_type": "array",
- "permitted_values": [],
- "placeholder": "",
- "public": null,
- "required": false,
- "short_description": "Open-ended tags that describe the functions and applications of the AI system.",
- "short_name": "AI Applications",
- "weight": 110
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "multi",
- "field_number": null,
- "instant_facet": true,
- "long_description": "Where relevant, indicates whether the AI system(s) was embedded into or tightly associated with specific types of hardware.",
- "long_name": "Physical system",
- "mongo_type": "array",
- "permitted_values": [
- "Consumer device",
- "Industrial process system",
- "Weapons system",
- "Vehicle/mobile robot",
- "Software only",
- "Unknown/unclear"
- ],
- "placeholder": "",
- "public": null,
- "required": false,
- "short_description": "Where relevant, indicates whether the AI system(s) was embedded into or tightly associated with specific types of hardware.",
- "short_name": "Physical System",
- "weight": 30
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "multi",
- "field_number": null,
- "instant_facet": true,
- "long_description": "Indicates which, if any, of the following types of AI failure describe the incident: \"Specification,\" i.e. the system's behavior did not align with the true intentions of its designer, operator, etc; \"Robustness,\" i.e. the system operated unsafely because of features or changes in its environment, or in the inputs the system received; \"Assurance,\" i.e. the system could not be adequately monitored or controlled during operation.",
- "long_name": "Causative factors within AI system",
- "mongo_type": "array",
- "permitted_values": [
- "Specification",
- "Robustness",
- "Assurance",
- "Unknown/unclear"
- ],
- "placeholder": "",
- "public": null,
- "required": false,
- "short_description": "Indicates which, if any, of the following types of AI failure describe the incident: \"Specification,\" i.e. the system's behavior did not align with the true intentions of its designer, operator, etc; \"Robustness,\" i.e. the system operated unsafely because of features or changes in its environment, or in the inputs the system received; \"Assurance,\" i.e. the system could not be adequately monitored or controlled during operation.",
- "short_name": "Problem Nature",
- "weight": 25
- },
- {
- "__typename": "TaxaField_list",
- "default": null,
- "display_type": "bool",
- "field_number": null,
- "instant_facet": null,
- "long_description": null,
- "long_name": null,
- "mongo_type": "bool",
- "permitted_values": null,
- "placeholder": null,
- "public": null,
- "required": null,
- "short_description": null,
- "short_name": "Publish",
- "weight": null
- }
- ],
- "namespace": "CSET",
- "weight": 70
- },
- {
- "__typename": "Taxa",
- "description": "# What is the CSET Taxonomy?\n\nThe Center for Security and Emerging Technology (CSET) taxonomy is\na general taxonomy of AI incidents. There are a large number of \nclassified attributes, including ones pertaining to safety, fairness, \nindustry, geography, timing, and cost. All classifications within \nthe CSET taxonomy are first applied by one CSET annotator and \nreviewed by another CSET annotator before the classifications are \nfinalized. The combination of a rigorously defined coding set and \nthe completeness with which it has been applied make the CSET \ntaxonomy the AIID's gold standard for taxonomies. Nevertheless, \nthe CSET taxonomy is an ongoing effort and you are invited to \nreport any errors you may discover in its application.\n\n## How do I explore the taxonomy?\n\nAll taxonomies can be used to filter incident reports within the \n[Discover Application](/apps/discover). The taxonomy filters work\nsimilarly to how you filter products on an E-commerce website. \nUse the search field at the bottom of the “Classifications” tab to \nfind the taxonomy field you would like to filter with, then click \nthe desired value to apply the filter.\n\n# About CSET\n\nA policy research organization within Georgetown University’s \nWalsh School of Foreign Service, CSET produces data-driven \nresearch at the intersection of security and technology, \nproviding nonpartisan analysis to the policy community. CSET is \ncurrently focusing on the effects of progress in artificial \nintelligence (AI), advanced computing and biotechnology. CSET \nseeks to prepare a new generation of decision-makers to address \nthe challenges and opportunities of emerging technologies. [(Read \nmore)](https://cset.georgetown.edu/about-us/).",
- "field_list": [
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "int",
- "field_number": "1.1",
- "instant_facet": false,
- "long_description": "The number of the incident in the AI Incident Database.",
- "long_name": "The number of the incident in the AI Incident Database.",
- "mongo_type": "int",
- "permitted_values": null,
- "placeholder": null,
- "public": true,
- "required": false,
- "short_description": "The number of the incident in the AI Incident Database.",
- "short_name": "Incident Number",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "string",
- "field_number": "1.2",
- "instant_facet": false,
- "long_description": "An ID designating the individual who classified this incident according to the CSET taxonomy.",
- "long_name": "Person responsible for the annotations",
- "mongo_type": "string",
- "permitted_values": [],
- "placeholder": "Select name here",
- "public": false,
- "required": false,
- "short_description": "This is the researcher that is responsible for applying the classifications of the CSET taxonomy.",
- "short_name": "Annotator",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "enum",
- "field_number": "1.3",
- "instant_facet": false,
- "long_description": "What is the quality assurance status of the CSET classifications for this incident?",
- "long_name": "Where in the annotation process is this incident?",
- "mongo_type": "string",
- "permitted_values": [
- "1. Annotation in progress",
- "2. Initial annotation complete",
- "3. In peer review",
- "4. Peer review complete",
- "5. In quality control",
- "6. Complete and final"
- ],
- "placeholder": "Select process status here",
- "public": false,
- "required": false,
- "short_description": "What is the quality assurance status of the CSET classifications for this incident?",
- "short_name": "Annotation Status",
- "weight": 10
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "string",
- "field_number": "1.4",
- "instant_facet": false,
- "long_description": "The CSET taxonomy assigns individual researchers to each incident as the primary parties responsible for classifying the incident according to the taxonomy. This is the person responsible for assuring the integrity of annotator's classifications.",
- "long_name": "Person responsible for reviewing annotations",
- "mongo_type": "string",
- "permitted_values": [],
- "placeholder": "Select name here",
- "public": false,
- "required": false,
- "short_description": "This is the researcher that is responsible for ensuring the quality of the classifications applied to this incident.",
- "short_name": "Peer Reviewer",
- "weight": 20
- },
- {
- "__typename": "TaxaField_list",
- "default": "false",
- "display_type": "bool",
- "field_number": "1.5",
- "instant_facet": false,
- "long_description": "The peer review process sometimes uncovers issues with the classifications that have been applied by the annotator. This field serves as a flag when there is a need for additional thought and input on the classifications applied",
- "long_name": "Was this incident randomly selected for additional quality control?",
- "mongo_type": "bool",
- "permitted_values": [],
- "placeholder": "",
- "public": false,
- "required": false,
- "short_description": "Has someone flagged a potential issue with this incident's classifications? Annotators should leave this field blank.",
- "short_name": "Quality Control",
- "weight": 15
- },
- {
- "__typename": "TaxaField_list",
- "default": "maybe",
- "display_type": "enum",
- "field_number": "2.1",
- "instant_facet": true,
- "long_description": "“Yes” if the AI system(s) is embedded in hardware that can interact with, affect, and change the physical objects (cars, robots, medical facilities, etc.). Mark “No” if the system cannot. This includes systems that inform, detect, predict, or recommend.",
- "long_name": "Did the incident occur in a domain with physical objects ?",
- "mongo_type": "string",
- "permitted_values": [
- "yes",
- "no",
- "maybe"
- ],
- "placeholder": "",
- "public": null,
- "required": false,
- "short_description": "Did the incident occur in a domain with physical objects ?",
- "short_name": "Physical Objects",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "maybe",
- "display_type": "enum",
- "field_number": "2.2",
- "instant_facet": true,
- "long_description": "“Yes” if the sector in which the AI was used is associated with entertainment. “No” if it was used in a different, clearly identifiable sector. “Maybe” if the sector of use could not be determined.",
- "long_name": "Did the AI incident occur in the entertainment industry?",
- "mongo_type": "string",
- "permitted_values": [
- "yes",
- "no",
- "maybe"
- ],
- "placeholder": "",
- "public": null,
- "required": false,
- "short_description": "Did the AI incident occur in the entertainment industry?",
- "short_name": "Entertainment Industry",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "maybe",
- "display_type": "enum",
- "field_number": "2.3",
- "instant_facet": true,
- "long_description": "“Yes” if the incident is about a report, test, or study of the data and does not discuss an instance of injury, damage, or loss. “Maybe” if it is unclear. Otherwise mark “No.”",
- "long_name": "Was the incident about a report, test, or study of data instead of the AI itself?",
- "mongo_type": "string",
- "permitted_values": [
- "yes",
- "no",
- "maybe"
- ],
- "placeholder": "",
- "public": null,
- "required": false,
- "short_description": "Was the incident about a report, test, or study of data instead of the AI itself?",
- "short_name": "Report, Test, or Study of data",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "maybe",
- "display_type": "enum",
- "field_number": "2.4",
- "instant_facet": true,
- "long_description": "“Yes” if the involved system was deployed or sold to users. “No” if it was not. “Maybe” if there is not enough information or if the use is unclear.",
- "long_name": "Was the reported system (even if AI involvement is unknown) deployed or sold to users?",
- "mongo_type": "string",
- "permitted_values": [
- "yes",
- "no",
- "maybe"
- ],
- "placeholder": "",
- "public": null,
- "required": false,
- "short_description": "Was the reported system (even if AI involvement is unknown) deployed or sold to users?",
- "short_name": "Deployed",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "maybe",
- "display_type": "enum",
- "field_number": "2.5",
- "instant_facet": true,
- "long_description": "“Yes” if it was a test/demonstration performed by developers, producers or journalists in controlled conditions. “No” if it was not a test/demonstration. “No” if the test/demonstration was done by a user. “No” if the test/demonstration was in operational or uncontrolled conditions. “Maybe” otherwise.",
- "long_name": "Was this a test or demonstration of an AI system done by developers, producers or researchers (versus users) in controlled conditions?",
- "mongo_type": "string",
- "permitted_values": [
- "yes",
- "no",
- "maybe"
- ],
- "placeholder": "",
- "public": null,
- "required": false,
- "short_description": "Was this a test or demonstration of an AI system done by developers, producers or researchers (versus users) in controlled conditions?",
- "short_name": "Producer Test in Controlled Conditions",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "maybe",
- "display_type": "enum",
- "field_number": "2.6",
- "instant_facet": true,
- "long_description": "“Yes” if it was a test/demonstration performed by developers, producers or journalists in controlled conditions. “No” if it was not a test/demonstration. “No” if the test/demonstration was done by a user. “No” if the test/demonstration was in controlled or non-operational conditions. “Maybe” otherwise.",
- "long_name": "Was this a test or demonstration of an AI system done by developers, producers or researchers (versus users) in operational conditions?",
- "mongo_type": "string",
- "permitted_values": [
- "yes",
- "no",
- "maybe"
- ],
- "placeholder": "",
- "public": null,
- "required": false,
- "short_description": "Was this a test or demonstration of an AI system done by developers, producers or researchers (versus users) in operational conditions?",
- "short_name": "Producer Test in Operational Conditions",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "maybe",
- "display_type": "enum",
- "field_number": "2.7",
- "instant_facet": true,
- "long_description": "“Yes” if it was a test/demonstration performed by users in controlled conditions. “No” if it was not a test/demonstration. “No” if the test/demonstration was done by developers, producers or researchers. “No” if the test/demonstration was in controlled or non-controlled conditions.“Maybe” otherwise.",
- "long_name": "Was this a test or demonstration done by users in controlled conditions?",
- "mongo_type": "string",
- "permitted_values": [
- "yes",
- "no",
- "maybe"
- ],
- "placeholder": "",
- "public": null,
- "required": false,
- "short_description": "Was this a test or demonstration done by users in controlled conditions?",
- "short_name": "User Test in Controlled Conditions",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "maybe",
- "display_type": "enum",
- "field_number": "2.8",
- "instant_facet": true,
- "long_description": "“Yes” if it was a test/demonstration performed by users in operational conditions. “No” if it was not a test/demonstration. “No” if the test/demonstration was done by developers, producers or researchers. “No” if the test/demonstration was in controlled or non-operational conditions.“Maybe” otherwise.",
- "long_name": "Was this a test or demonstration done by users in operational conditions?",
- "mongo_type": "string",
- "permitted_values": [
- "yes",
- "no",
- "maybe"
- ],
- "placeholder": "",
- "public": null,
- "required": false,
- "short_description": "Was this a test or demonstration done by users in operational conditions?",
- "short_name": "User Test in Operational Conditions",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "maybe",
- "display_type": "enum",
- "field_number": "2.9",
- "instant_facet": false,
- "long_description": "Using the answers to the 8 domain questions, assess if the incident occurred in a domain where harm could be expected to occur. If you are unclear, input “maybe.”",
- "long_name": "Incident occurred in a domain where we could expect harm to occur?",
- "mongo_type": "string",
- "permitted_values": [
- "yes",
- "no",
- "maybe"
- ],
- "placeholder": "",
- "public": null,
- "required": false,
- "short_description": "Incident occurred in a domain where we could likely expect harm to occur?",
- "short_name": "Harm Domain",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "unclear",
- "display_type": "enum",
- "field_number": "3.1",
- "instant_facet": true,
- "long_description": "An assessment of whether tangible harm, imminent tangible harm, or non-imminent tangible harm occurred. This assessment does not consider the context of the tangible harm, if an AI was involved, or if there is an identifiable, specific, and harmed entity. It is also not assessing if an intangible harm occurred. It is only asking if tangible harm occurred and what its imminency was.",
- "long_name": "Did tangible harm (loss, damage or injury ) occur? ",
- "mongo_type": "string",
- "permitted_values": [
- "tangible harm definitively occurred",
- "imminent risk of tangible harm (near miss) did occur",
- "non-imminent risk of tangible harm (an issue) occurred",
- "no tangible harm, near-miss, or issue",
- "unclear"
- ],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "Did tangible harm (loss, damage or injury ) occur? ",
- "short_name": "Tangible Harm",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "maybe",
- "display_type": "enum",
- "field_number": "3.2",
- "instant_facet": true,
- "long_description": "An assessment of whether or not an AI system was involved. It is sometimes difficult to judge between an AI and an automated system or expert rules system. In these cases select “maybe”",
- "long_name": "Does the incident involve an AI system?",
- "mongo_type": "string",
- "permitted_values": [
- "yes",
- "no",
- "maybe"
- ],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "Does the incident involve an AI system?",
- "short_name": "AI System",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "maybe",
- "display_type": "enum",
- "field_number": "3.3",
- "instant_facet": true,
- "long_description": "“Yes” if an AI was involved in harm, its behavior can be directly linked to the harm, and the harm may not have occurred if the AI acted differently. “Maybe” if the link is unclear. Otherwise, select “no.”",
- "long_name": "Can an AI be directly and clearly linked to tangible harm?",
- "mongo_type": "string",
- "permitted_values": [
- "yes",
- "no",
- "maybe"
- ],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "Can an AI be directly and clearly linked to tangible harm?",
- "short_name": "Clear Link to AI",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "bool",
- "field_number": "3.4",
- "instant_facet": true,
- "long_description": "“Yes” if it is theoretically possible to both specify and identify the entity. Having that information is not required. The information just needs to exist and be potentially discoverable. “No” if there are not any potentially identifiable specific entities or if the harmed entities are a class or subgroup that can only be characterized. ",
- "long_name": "There is a potentially identifiable specific entity that experienced the harm",
- "mongo_type": "bool",
- "permitted_values": [],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "A potentially identifiable specific entity that experienced the harm can be characterized or identified.",
- "short_name": "There is a potentially identifiable specific entity that experienced the harm",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "unclear",
- "display_type": "enum",
- "field_number": "3.5",
- "instant_facet": true,
- "long_description": "An assessment of the AI tangible harm level, which takes into account the CSET definitions of AI tangible harm levels, along with the inputs for annotation fields about the AI, harm, chain of harm, and entity.",
- "long_name": "Annotator's AI tangible harm level assessment",
- "mongo_type": "string",
- "permitted_values": [
- "AI tangible harm event",
- "AI tangible harm near-miss",
- "AI tangible harm issue",
- "none",
- "unclear"
- ],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "An assessment of the AI tangible harm level, which takes into account the CSET definitions of AI tangible harm levels, along with the inputs for annotation fields about the AI, harm, chain of harm, and entity. ",
- "short_name": "AI Harm Level",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "long_string",
- "field_number": "3.6",
- "instant_facet": false,
- "long_description": "If for 3.5 you select unclear or leave it blank, please provide a brief description of why.\n\n You can also add notes if you want to provide justification for a level",
- "long_name": "AI Tangible Harm Level Notes",
- "mongo_type": "string",
- "permitted_values": [],
- "placeholder": "Notes about the AI tangible harm level assessment",
- "public": true,
- "required": false,
- "short_description": "Notes about the AI tangible harm level assessment",
- "short_name": "AI Tangible Harm Level Notes",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "maybe",
- "display_type": "enum",
- "field_number": "4.1",
- "instant_facet": true,
- "long_description": "Did this impact people's access to critical or public services (health care, social services, voting, transportation, etc)?",
- "long_name": "Did this impact people's access to critical or public services (health care, social services, voting, transportation, etc)?",
- "mongo_type": "string",
- "permitted_values": [
- "yes",
- "no",
- "maybe"
- ],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "Indicates if people’s access to critical public services was impacted.",
- "short_name": "Impact on Critical Services",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "maybe",
- "display_type": "enum",
- "field_number": "4.2",
- "instant_facet": true,
- "long_description": "Indicate if a violation of human rights, civil rights, civil liberties, or democratic norms occurred.",
- "long_name": "Was this a violation of human rights, civil liberties, civil rights, or democratic norms?",
- "mongo_type": "string",
- "permitted_values": [
- "yes",
- "no",
- "maybe"
- ],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "Indicate if a violation of human rights, civil rights, civil liberties, or democratic norms occurred.",
- "short_name": "Rights Violation",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "maybe",
- "display_type": "enum",
- "field_number": "4.3",
- "instant_facet": true,
- "long_description": "Indicate if a minor was disproportionately targeted or affected",
- "long_name": "Was a minor involved in the incident (disproportionally treated or specifically targeted/affected)",
- "mongo_type": "string",
- "permitted_values": [
- "yes",
- "no",
- "maybe"
- ],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "Was a minor involved in the incident (disproportionally treated or specifically targeted/affected)",
- "short_name": "Involving Minor",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "maybe",
- "display_type": "enum",
- "field_number": "4.4",
- "instant_facet": true,
- "long_description": "Detrimental content can include deepfakes, identity misrepresentation, insults, threats of violence, eating disorder or self harm promotion, extremist content, misinformation, sexual abuse material, and scam emails. Detrimental content in itself is often not harmful, however, it can lead to or instigate injury, damage, or loss.",
- "long_name": "Was detrimental content (misinformation, hate speech) involved?",
- "mongo_type": "string",
- "permitted_values": [
- "yes",
- "no",
- "maybe"
- ],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "Was detrimental content (misinformation, hate speech) involved?",
- "short_name": "Detrimental Content",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "maybe",
- "display_type": "enum",
- "field_number": "4.5",
- "instant_facet": true,
- "long_description": "Protected characteristics include religion, commercial facilities, geography, age, sex, sexual orientation or gender identity, familial status (e.g., having or not having children) or pregnancy, disability, veteran status, genetic information, financial means, race or creed, Ideology, nation of origin, citizenship, and immigrant status.\n\nAt the federal level in the US, age is a protected characteristic for people over the age of 40. Minors are not considered a protected class. For this reason the CSET annotation taxonomy has a separate field to note if a minor was involved.\n\nOnly mark yes if there is clear evidence discrimination occurred. If there are conflicting accounts, mark unsure. Do not mark that discrimination occurred based on expectation alone.",
- "long_name": "Was a group of people or an individual treated differently based upon a protected characteristic?",
- "mongo_type": "string",
- "permitted_values": [
- "yes",
- "no",
- "maybe"
- ],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "Was a group of people treated differently based upon a protected characteristic (e.g. race, ethnicity, creed, immigrant status, color, religion, sex, national origin, age, disability, genetic information)?",
- "short_name": "Protected Characteristic",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "unclear",
- "display_type": "multi",
- "field_number": "4.6",
- "instant_facet": true,
- "long_description": "Multiple can occur.\n\nGenetic information refers to information about a person’s genetic tests or the genetic tests of their relatives. Genetic information can predict the manifestation of a disease or disorder.",
- "long_name": "If harms were potentially unevenly distributed among people, on what basis?",
- "mongo_type": "string",
- "permitted_values": [
- "none",
- "age",
- "disability",
- "familial status (e.g., having or not having children) or pregnancy",
- "financial means",
- "genetic information",
- "geography",
- "ideology",
- "nation of origin, citizenship, immigrant status",
- "race",
- "religion",
- "sex",
- "sexual orientation or gender identity",
- "veteran status",
- "unclear",
- "other"
- ],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "Indicates how the harms were potentially distributed.",
- "short_name": "Harm Distribution Basis",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "long_string",
- "field_number": "4.7",
- "instant_facet": false,
- "long_description": "Input any notes that may help explain your answers.",
- "long_name": "Input any notes that may help explain your answers.",
- "mongo_type": "string",
- "permitted_values": [],
- "placeholder": "Notes",
- "public": true,
- "required": false,
- "short_description": "Input any notes that may help explain your answers.",
- "short_name": "Notes (special interest intangible harm)",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "maybe",
- "display_type": "enum",
- "field_number": "5.1",
- "instant_facet": false,
- "long_description": "An assessment of whether a special interest intangible harm occurred. This assessment does not consider the context of the intangible harm, if an AI was involved, or if there is characterizable class or subgroup of harmed entities. It is also not assessing if an intangible harm occurred. It is only asking if a special interest intangible harm occurred.",
- "long_name": "Was there a special interest intangible harm or risk of harm?",
- "mongo_type": "string",
- "permitted_values": [
- "yes",
- "no",
- "maybe"
- ],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "An assessment of whether a special interest intangible harm occurred. This assessment does not consider the context of the intangible harm, if an AI was involved, or if there is characterizable class or subgroup of harmed entities. It is also not assessing if an intangible harm occurred. It is only asking if a special interest intangible harm occurred.",
- "short_name": "Special Interest Intangible Harm",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "maybe",
- "display_type": "enum",
- "field_number": "5.2",
- "instant_facet": true,
- "long_description": "An assessment of whether or not an AI system was involved. It is sometimes difficult to judge between an AI and an automated system or expert rules system. In these cases select “maybe”",
- "long_name": "Does the incident involve an AI system?",
- "mongo_type": "string",
- "permitted_values": [
- "yes",
- "no",
- "maybe"
- ],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "Does the incident involve an AI system?",
- "short_name": "AI System",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "maybe",
- "display_type": "enum",
- "field_number": "5.3",
- "instant_facet": true,
- "long_description": "“Yes” if an AI was involved in harm, its behavior can be directly linked to the harm, and the harm may not have occurred if the AI acted differently. “Maybe” if the link is unclear. Otherwise, select “no.”",
- "long_name": "Can an AI be directly and clearly linked to the special interest intangible harm?",
- "mongo_type": "string",
- "permitted_values": [
- "yes",
- "no",
- "maybe"
- ],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "Can an AI be directly and clearly linked to the special interest intangible harm?",
- "short_name": "AI Linked to Special Interest Intangible Harm",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": null,
- "display_type": "bool",
- "field_number": "5.4",
- "instant_facet": true,
- "long_description": "A characterizable class or subgroup are descriptions of different populations of people. Often they are characteristics by which people qualify for special protection by a law, policy, or similar authority.\n\n Sometimes, groups may be characterized by their exposure to the incident via geographical proximity (e.g., ‘visitors to the park’) or participation in an activity (e.g.,‘Twitter users’).",
- "long_name": "There is a characterizable class or subgroup of entities that experienced the harm",
- "mongo_type": "bool",
- "permitted_values": [],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "“Yes” if the harmed entity or entities can be characterized. “No” if there are not any characterizable entities.",
- "short_name": "Harmed Class of Entities",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "maybe",
- "display_type": "enum",
- "field_number": "5.5",
- "instant_facet": true,
- "long_description": "AI tangible harm is determined in a different field. The determination of a special interest intangible harm is not dependant upon the AI tangible harm level.",
- "long_name": "The annotator’s assessment of if an AI special interest intangible harm occurred.",
- "mongo_type": "string",
- "permitted_values": [
- "yes",
- "no",
- "maybe"
- ],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "The annotator’s assessment of if an AI special interest intangible harm occurred.",
- "short_name": "Annotator’s AI special interest intangible harm assessment",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "long_string",
- "field_number": "5.6",
- "instant_facet": false,
- "long_description": "If for 5.5 you select unclear or leave it blank, please provide a brief description of why.\n\nYou can also add notes if you want to provide justification for a level.",
- "long_name": "If for 5.5 you select unclear or leave it blank, please provide a brief description of why.\n\nYou can also add notes if you want to provide justification for a level.",
- "mongo_type": "string",
- "permitted_values": [],
- "placeholder": "Notes",
- "public": true,
- "required": false,
- "short_description": "If for 5.5 you select unclear or leave it blank, please provide a brief description of why.\n\nYou can also add notes if you want to provide justification for a level.",
- "short_name": "Notes (AI special interest intangible harm)",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "string",
- "field_number": "6.1",
- "instant_facet": false,
- "long_description": "The year in which the incident occurred. If there are multiple harms or occurrences of the incident, list the earliest. If a precise date is unavailable, but the available sources provide a basis for estimating the year, estimate. Otherwise, leave blank.",
- "long_name": "The year in which the incident first occurred.",
- "mongo_type": "string",
- "permitted_values": [],
- "placeholder": "YYYY",
- "public": true,
- "required": false,
- "short_description": "The year in which the incident occurred. If there are multiple harms or occurrences of the incident, list the earliest. If a precise date is unavailable, but the available sources provide a basis for estimating the year, estimate. Otherwise, leave blank.\n\nEnter in the format of YYYY",
- "short_name": "Date of Incident Year",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "string",
- "field_number": "6.2",
- "instant_facet": false,
- "long_description": "The month in which the incident occurred. If there are multiple harms or occurrences of the incident, list the earliest. If a precise date is unavailable, but the available sources provide a basis for estimating the month, estimate. Otherwise, leave blank.",
- "long_name": "The month in which the incident first occurred.",
- "mongo_type": "string",
- "permitted_values": [],
- "placeholder": "MM",
- "public": true,
- "required": false,
- "short_description": "The month in which the incident occurred. If there are multiple harms or occurrences of the incident, list the earliest. If a precise date is unavailable, but the available sources provide a basis for estimating the month, estimate. Otherwise, leave blank.\n\nEnter in the format of MM",
- "short_name": "Date of Incident Month",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "string",
- "field_number": "6.3",
- "instant_facet": true,
- "long_description": "The day on which the incident occurred. If a precise date is unavailable, leave blank.\n\nEnter in the format of DD",
- "long_name": "The day on which the first incident occurred.",
- "mongo_type": "string",
- "permitted_values": [],
- "placeholder": "DD",
- "public": true,
- "required": false,
- "short_description": "The day on which the incident occurred. If a precise date is unavailable, leave blank.\n\nEnter in the format of DD",
- "short_name": "Date of Incident Day",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": null,
- "display_type": "bool",
- "field_number": "6.4",
- "instant_facet": false,
- "long_description": "“Yes” if the data was estimated. “No” otherwise.",
- "long_name": "Is the date estimated?",
- "mongo_type": "bool",
- "permitted_values": [],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "“Yes” if the data was estimated. “No” otherwise.",
- "short_name": "Estimated Date",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "maybe",
- "display_type": "enum",
- "field_number": "6.5",
- "instant_facet": true,
- "long_description": "This happens very rarely but is possible. Examples include two chatbots having a conversation with each other, or two autonomous vehicles in a crash.",
- "long_name": "Was the AI interacting with another AI?",
- "mongo_type": "string",
- "permitted_values": [
- "yes",
- "no",
- "maybe"
- ],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "“Yes” if two or more independently operating AI systems were involved. “No” otherwise.",
- "short_name": "Multiple AI Interaction",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "maybe",
- "display_type": "enum",
- "field_number": "6.6",
- "instant_facet": true,
- "long_description": "This question is slightly different from the one in field 2.1.1. That question asks about there being interaction with physical objects–an ability to manipulate or change. A system can be embedded in a physical object and able to interact with the physical environment, e.g. a vacuum robot. A system can be embedded in a physical object and not interact with a physical environment, e.g. a camera system that only records images when the AI detects that dogs are present. AI systems that are accessed through API, web-browser, etc by using a mobile device or computer are not considered to be embedded in hardware systems. They are accessed through hardware.",
- "long_name": "Is the AI embedded in a physical system or have a physical presence?",
- "mongo_type": "string",
- "permitted_values": [
- "yes",
- "no",
- "maybe"
- ],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "“Yes” if the AI is embedded in a physical system. “No” if it is not. “Maybe” if it is unclear.",
- "short_name": "Embedded",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "string",
- "field_number": "6.7",
- "instant_facet": false,
- "long_description": "If the incident occurred at a specific known location, note the city. If there are multiple relevant locations, enter multiple city/state/country values.",
- "long_name": "If the incident occurred at a specific known location, note the city.",
- "mongo_type": "string",
- "permitted_values": [],
- "placeholder": "City",
- "public": true,
- "required": false,
- "short_description": "If the incident occurred at a specific known location, note the city.",
- "short_name": "Location City",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "string",
- "field_number": "6.8",
- "instant_facet": false,
- "long_description": "If the incident occurred at a specific known location, note the state/province. If there are multiple relevant locations, enter multiple city/state/country values.",
- "long_name": "If the incident occurred at a specific known location, note the state/province.",
- "mongo_type": "string",
- "permitted_values": [],
- "placeholder": "State or Province",
- "public": true,
- "required": false,
- "short_description": "If the incident occurred at a specific known location, note the state/province.",
- "short_name": "Location State/Province (two letters)",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "string",
- "field_number": "6.9",
- "instant_facet": false,
- "long_description": "Follow ISO 3166 for the 2-letter country codes.\n\nIf there are multiple relevant locations, enter multiple city/state/country values.",
- "long_name": "If the incident occurred at a specific known location, note the country. ",
- "mongo_type": "string",
- "permitted_values": [],
- "placeholder": "Country",
- "public": true,
- "required": false,
- "short_description": "If the incident occurred at a specific known location, note the country. Follow ISO 3166 for the 2-letter country codes.",
- "short_name": "Location Country (two letters)",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "unclear",
- "display_type": "enum",
- "field_number": "6.10",
- "instant_facet": true,
- "long_description": "Use this reference to map countries to regions: https://www.dhs.gov/geographic-regions",
- "long_name": "Location Region",
- "mongo_type": "string",
- "permitted_values": [
- "Global",
- "Africa",
- "Asia",
- "Caribbean",
- "Central America",
- "Europe",
- "North America",
- "Oceania",
- "South America",
- "unclear"
- ],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "Select the region of the world where the incident occurred. If it occurred in multiple, leave blank.",
- "short_name": "Location Region",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "unclear",
- "display_type": "multi",
- "field_number": "6.11",
- "instant_facet": true,
- "long_description": "Which critical infrastructure sectors were affected, if any?",
- "long_name": "Which critical infrastructure sectors were affected, if any?",
- "mongo_type": "string",
- "permitted_values": [
- "chemical",
- "commercial facilities",
- "communications",
- "critical manufacturing",
- "dams",
- "defense-industrial base",
- "emergency services",
- "energy",
- "financial services",
- "food and agriculture",
- "government facilities",
- "healthcare and public health",
- "information technology",
- "nuclear ",
- "transportation",
- "water and wastewater",
- "Other",
- "unclear"
- ],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "Which critical infrastructure sectors were affected, if any?",
- "short_name": "Infrastructure Sectors",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "list",
- "field_number": "6.12",
- "instant_facet": false,
- "long_description": "A record of any abnormal or atypical operational conditions that occurred. This field is most often blank.",
- "long_name": "A record of any abnormal or atypical operational conditions that occurred.",
- "mongo_type": "array",
- "permitted_values": [],
- "placeholder": "e.g. raining; night; low visibility",
- "public": true,
- "required": false,
- "short_description": "A record of any abnormal or atypical operational conditions that occurred.",
- "short_name": "Operating Conditions",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "long_string",
- "field_number": "6.13",
- "instant_facet": false,
- "long_description": "Input any notes that may help explain your answers.",
- "long_name": "Notes (Environmental and Temporal Characteristics)",
- "mongo_type": "string",
- "permitted_values": [],
- "placeholder": "Notes",
- "public": true,
- "required": false,
- "short_description": "Input any notes that may help explain your answers.",
- "short_name": "Notes (Environmental and Temporal Characteristics)",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "[]",
- "display_type": "object-list",
- "field_number": "7",
- "instant_facet": false,
- "long_description": "Characterizing Entities and the Harm",
- "long_name": "Characterizing Entities and the Harm",
- "mongo_type": "array",
- "permitted_values": [],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "Characterizing Entities and the Harm",
- "short_name": "Entities",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "int",
- "field_number": "8.1",
- "instant_facet": true,
- "long_description": "This field cannot be greater than zero if the harm is anything besides ‘Physical health/safety.’ ",
- "long_name": "How many human lives were lost?",
- "mongo_type": "int",
- "permitted_values": [],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "Indicates the number of deaths reported",
- "short_name": "Lives Lost",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "int",
- "field_number": "8.2",
- "instant_facet": false,
- "long_description": "This field cannot be greater than zero if the harm is anything besides 'Physical health/safety'.\n\nAll reported injuries should count, regardless of their severity level. If a person lost their limb and another person scraped their elbow, both cases would be considered injuries. Do not include the number of deaths in this count.",
- "long_name": "How many humans were injured?",
- "mongo_type": "int",
- "permitted_values": [],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "Indicate the number of injuries reported.",
- "short_name": "Injuries",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": null,
- "display_type": "bool",
- "field_number": "8.3",
- "instant_facet": false,
- "long_description": "Indicates if the amount was estimated.",
- "long_name": "Are any quantities estimated?",
- "mongo_type": "bool",
- "permitted_values": [],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "Indicates if the amount was estimated.",
- "short_name": "Estimated Harm Quantities",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "long_string",
- "field_number": "8.4",
- "instant_facet": false,
- "long_description": "Input any notes that may help explain your answers.",
- "long_name": "Notes ( Tangible Harm Quantities Information)",
- "mongo_type": "string",
- "permitted_values": [],
- "placeholder": "Notes",
- "public": true,
- "required": false,
- "short_description": "Input any notes that may help explain your answers.",
- "short_name": "Notes ( Tangible Harm Quantities Information)",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "long_string",
- "field_number": "9.1",
- "instant_facet": false,
- "long_description": "Describe the AI system in as much detail as the reports will allow.\n\nA high level description of the AI system is sufficient, but if more technical details about the AI system are available, include them in the description as well.",
- "long_name": "Description of the AI system involved",
- "mongo_type": "string",
- "permitted_values": [],
- "placeholder": "Description of the AI system involved",
- "public": true,
- "required": false,
- "short_description": "A description of the AI system (when possible)",
- "short_name": "AI System Description",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "list",
- "field_number": "9.2",
- "instant_facet": false,
- "long_description": "This is a freeform field that can have any value. There could be multiple entries for this field.\n\nCommon ones include\n\n- still images\n- video\n- text\n- speech\n- Personally Identifiable Information\n- structured data\n- other\n- unclear\n\nStill images are static images. Video images consist of moving images. Text and speech data are considered an important category of unstructured data. They consist of written and spoken words that are not in a tabular format. Personally identifiable information is data that can uniquely identify an individual and may contain sensitive information. Structured data is often in a tabular, machine readable format and can typically be used by an AI system without much preprocessing.\n\nAvoid using ‘unstructured data’ data in this field. Instead specify the type of unstructured data; text, images, audio files, etc. It is ok to use ‘structured data’ in this field.\n\nRecord what the media report explicitly states. If the report does not explicitly state an input modality but it is likely that a particular kind of input contributed to the harm or near harm, record that input. If you are still unsure, do not record anything.",
- "long_name": "Description of data inputs to the AI system",
- "mongo_type": "array",
- "permitted_values": [],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "A list of the types of data inputs for the AI system.",
- "short_name": "Data Inputs",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "multi",
- "field_number": "9.3",
- "instant_facet": true,
- "long_description": "Indicate the sector in which the AI system is deployed\n\nThere could be multiple entries for this field.",
- "long_name": "Indicates the sector in which the AI system is deployed",
- "mongo_type": "array",
- "permitted_values": [
- "agriculture, forestry and fishing",
- "mining and quarrying",
- "manufacturing",
- "electricity, gas, steam and air conditioning supply",
- "water supply",
- "construction",
- "wholesale and retail trade",
- "transportation and storage",
- "accommodation and food service activities",
- "information and communication",
- "financial and insurance activities",
- "real estate activities",
- "professional, scientific and technical activities",
- "administrative and support service activities",
- "public administration",
- "defense",
- "law enforcement",
- "Education",
- "human health and social work activities",
- "Arts, entertainment and recreation",
- "other service activities",
- "activities of households as employers",
- "activities of extraterritorial organizations and bodies",
- "other",
- "unclear"
- ],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "Indicate the sector in which the AI system is deployed",
- "short_name": "Sector of Deployment",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "maybe",
- "display_type": "enum",
- "field_number": "9.4",
- "instant_facet": true,
- "long_description": "Indicate whether the AI system is deployed in the public sector. The public sector is the part of the economy that is controlled and operated by the government.",
- "long_name": "Indicates whether the AI system is deployed in the public sector",
- "mongo_type": "string",
- "permitted_values": [
- "yes",
- "no",
- "maybe"
- ],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "Indicate whether the AI system is deployed in the public sector",
- "short_name": "Public Sector Deployment",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "enum",
- "field_number": "9.5",
- "instant_facet": true,
- "long_description": "Autonomy1: The system operates independently without simultaneous human oversight, interaction, or intervention.\n\nAutonomy2: The system operates independently but with human oversight, where a human can observe and override the system’s decisions in real time.\n\nAutonomy3: The system does not independently make decisions but instead provides information to a human who actively chooses to proceed with the AI’s information.",
- "long_name": "Autonomy Level",
- "mongo_type": "string",
- "permitted_values": [
- "Autonomy1",
- "Autonomy2",
- "Autonomy3",
- "unclear"
- ],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "Autonomy1: The system operates independently without simultaneous human oversight, interaction, or intervention.\n\nAutonomy2: The system operates independently but with human oversight, where a human can observe and override the system’s decisions in real time.\n\nAutonomy3: The system does not independently make decisions but instead provides information to a human who actively chooses to proceed with the AI’s information.",
- "short_name": "Autonomy Level",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "long_string",
- "field_number": "9.8",
- "instant_facet": false,
- "long_description": "Input any notes that may help explain your answers.",
- "long_name": "Notes (Information about AI System)",
- "mongo_type": "string",
- "permitted_values": [],
- "placeholder": "Notes",
- "public": true,
- "required": false,
- "short_description": "Input any notes that may help explain your answers.",
- "short_name": "Notes (Information about AI System)",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "unclear",
- "display_type": "enum",
- "field_number": "10.1",
- "instant_facet": true,
- "long_description": "Indicates if the system was designed to do harm. If it was designed to perform harm, the field will indicate if the AI system did or did not create unintended harm–i.e. was the reported harm the harm that AI was expected to perform or a different unexpected harm? ",
- "long_name": "Was the AI intentionally developed or deployed to perform the harm?",
- "mongo_type": "string",
- "permitted_values": [
- "Yes. Intentionally designed to perform harm and did create intended harm",
- "Yes. Intentionally designed to perform harm but created an unintended harm (a different harm may have occurred)",
- "No. Not intentionally designed to perform harm",
- "unclear"
- ],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "Was the AI intentionally developed or deployed to perform the harm?\n\nIf yes, did the AI’s behavior result in unintended or intended harm? ",
- "short_name": "Intentional Harm",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "string",
- "field_number": "10.2",
- "instant_facet": false,
- "long_description": "Describe the type of physical system that the AI was integrated into. ",
- "long_name": "Into what type of physical system was the AI integrated, if any?",
- "mongo_type": "string",
- "permitted_values": [],
- "placeholder": "Physical System Type (e.g. trash sorting robot)",
- "public": true,
- "required": false,
- "short_description": "Describe the type of physical system that the AI was integrated into.",
- "short_name": "Physical System Type",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "list",
- "field_number": "10.3",
- "instant_facet": false,
- "long_description": "Describe the AI’s application.\n\nIt is likely that the annotator will not have enough information to complete this field. If this occurs, enter unclear.\n\nThis is a freeform field. Some possible entries are\n\n- unclear\n- human language technologies\n- computer vision\n- robotics\n- automation and/or optimization\n- other\n\nThe application area of an AI is the high level task that the AI is intended to perform. It does not describe the technical methods by which the AI performs the task. Considering what an AI’s technical methods enable it to do is another way of arriving at what an AI’s application is. \n\nIt is possible for multiple application areas to be involved. When possible pick the principle or domain area, but it is ok to select multiple areas.",
- "long_name": "AI task or core application area",
- "mongo_type": "array",
- "permitted_values": [],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "Describe the AI’s application.",
- "short_name": "AI Task",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "unclear",
- "display_type": "list",
- "field_number": "10.4",
- "instant_facet": false,
- "long_description": "Describe the tools and methods that enable the AI’s application.\n\nIt is likely that the annotator will not have enough information to complete this field. If this occurs, enter unclear\n\nThis is a freeform field. Some possible entries are\n\n- unclear\n- reinforcement learning\n- neural networks\n- decision trees\n- bias mitigation\n- optimization\n- classifier\n- NLP/text analytics\n- continuous learning\n- unsupervised learning\n- supervised learning\n- clustering\n- prediction\n- rules\n- random forest\n\nAI tools and methods are the technical building blocks that enable the AI’s application.",
- "long_name": "AI tools and methods",
- "mongo_type": "array",
- "permitted_values": [],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "Describe the tools and methods that enable the AI’s application.",
- "short_name": "AI tools and methods",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "long_string",
- "field_number": "10.5",
- "instant_facet": false,
- "long_description": "Input any notes that may help explain your answers.",
- "long_name": "Notes (AI Functionality and Techniques)",
- "mongo_type": "string",
- "permitted_values": [],
- "placeholder": "Notes",
- "public": true,
- "required": false,
- "short_description": "Input any notes that may help explain your answers.",
- "short_name": "Notes (AI Functionality and Techniques)",
- "weight": 5
- }
- ],
- "namespace": "CSETv1",
- "weight": 70
- },
- {
- "__typename": "Taxa",
- "description": "# What is the CSET Taxonomy?\n\nThe Center for Security and Emerging Technology (CSET) taxonomy is\na general taxonomy of AI incidents. There are a large number of \nclassified attributes, including ones pertaining to safety, fairness, \nindustry, geography, timing, and cost. All classifications within \nthe CSET taxonomy are first applied by one CSET annotator and \nreviewed by another CSET annotator before the classifications are \nfinalized. The combination of a rigorously defined coding set and \nthe completeness with which it has been applied make the CSET \ntaxonomy the AIID's gold standard for taxonomies. Nevertheless, \nthe CSET taxonomy is an ongoing effort and you are invited to \nreport any errors you may discover in its application.\n\n## How do I explore the taxonomy?\n\nAll taxonomies can be used to filter incident reports within the \n[Discover Application](/apps/discover). The taxonomy filters work\nsimilarly to how you filter products on an E-commerce website. \nUse the search field at the bottom of the “Classifications” tab to \nfind the taxonomy field you would like to filter with, then click \nthe desired value to apply the filter.\n\n# About CSET\n\nA policy research organization within Georgetown University’s \nWalsh School of Foreign Service, CSET produces data-driven \nresearch at the intersection of security and technology, \nproviding nonpartisan analysis to the policy community. CSET is \ncurrently focusing on the effects of progress in artificial \nintelligence (AI), advanced computing and biotechnology. CSET \nseeks to prepare a new generation of decision-makers to address \nthe challenges and opportunities of emerging technologies. [(Read \nmore)](https://cset.georgetown.edu/about-us/).",
- "field_list": [
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "int",
- "field_number": "1.1",
- "instant_facet": false,
- "long_description": "The number of the incident in the AI Incident Database.",
- "long_name": "The number of the incident in the AI Incident Database.",
- "mongo_type": "int",
- "permitted_values": null,
- "placeholder": null,
- "public": true,
- "required": false,
- "short_description": "The number of the incident in the AI Incident Database.",
- "short_name": "Incident Number",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "string",
- "field_number": "1.2",
- "instant_facet": false,
- "long_description": "An ID designating the individual who classified this incident according to the CSET taxonomy.",
- "long_name": "Person responsible for the annotations",
- "mongo_type": "string",
- "permitted_values": [],
- "placeholder": "Select name here",
- "public": false,
- "required": false,
- "short_description": "This is the researcher that is responsible for applying the classifications of the CSET taxonomy.",
- "short_name": "Annotator",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "enum",
- "field_number": "1.3",
- "instant_facet": false,
- "long_description": "What is the quality assurance status of the CSET classifications for this incident?",
- "long_name": "Where in the annotation process is this incident?",
- "mongo_type": "string",
- "permitted_values": [
- "1. Annotation in progress",
- "2. Initial annotation complete",
- "3. In peer review",
- "4. Peer review complete",
- "5. In quality control",
- "6. Complete and final"
- ],
- "placeholder": "Select process status here",
- "public": false,
- "required": false,
- "short_description": "What is the quality assurance status of the CSET classifications for this incident?",
- "short_name": "Annotation Status",
- "weight": 10
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "string",
- "field_number": "1.4",
- "instant_facet": false,
- "long_description": "The CSET taxonomy assigns individual researchers to each incident as the primary parties responsible for classifying the incident according to the taxonomy. This is the person responsible for assuring the integrity of annotator's classifications.",
- "long_name": "Person responsible for reviewing annotations",
- "mongo_type": "string",
- "permitted_values": [],
- "placeholder": "Select name here",
- "public": false,
- "required": false,
- "short_description": "This is the researcher that is responsible for ensuring the quality of the classifications applied to this incident.",
- "short_name": "Peer Reviewer",
- "weight": 20
- },
- {
- "__typename": "TaxaField_list",
- "default": "false",
- "display_type": "bool",
- "field_number": "1.5",
- "instant_facet": false,
- "long_description": "The peer review process sometimes uncovers issues with the classifications that have been applied by the annotator. This field serves as a flag when there is a need for additional thought and input on the classifications applied",
- "long_name": "Was this incident randomly selected for additional quality control?",
- "mongo_type": "bool",
- "permitted_values": [],
- "placeholder": "",
- "public": false,
- "required": false,
- "short_description": "Has someone flagged a potential issue with this incident's classifications? Annotators should leave this field blank.",
- "short_name": "Quality Control",
- "weight": 15
- },
- {
- "__typename": "TaxaField_list",
- "default": "maybe",
- "display_type": "enum",
- "field_number": "2.1",
- "instant_facet": true,
- "long_description": "“Yes” if the AI system(s) is embedded in hardware that can interact with, affect, and change the physical objects (cars, robots, medical facilities, etc.). Mark “No” if the system cannot. This includes systems that inform, detect, predict, or recommend.",
- "long_name": "Did the incident occur in a domain with physical objects ?",
- "mongo_type": "string",
- "permitted_values": [
- "yes",
- "no",
- "maybe"
- ],
- "placeholder": "",
- "public": null,
- "required": false,
- "short_description": "Did the incident occur in a domain with physical objects ?",
- "short_name": "Physical Objects",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "maybe",
- "display_type": "enum",
- "field_number": "2.2",
- "instant_facet": true,
- "long_description": "“Yes” if the sector in which the AI was used is associated with entertainment. “No” if it was used in a different, clearly identifiable sector. “Maybe” if the sector of use could not be determined.",
- "long_name": "Did the AI incident occur in the entertainment industry?",
- "mongo_type": "string",
- "permitted_values": [
- "yes",
- "no",
- "maybe"
- ],
- "placeholder": "",
- "public": null,
- "required": false,
- "short_description": "Did the AI incident occur in the entertainment industry?",
- "short_name": "Entertainment Industry",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "maybe",
- "display_type": "enum",
- "field_number": "2.3",
- "instant_facet": true,
- "long_description": "“Yes” if the incident is about a report, test, or study of the data and does not discuss an instance of injury, damage, or loss. “Maybe” if it is unclear. Otherwise mark “No.”",
- "long_name": "Was the incident about a report, test, or study of data instead of the AI itself?",
- "mongo_type": "string",
- "permitted_values": [
- "yes",
- "no",
- "maybe"
- ],
- "placeholder": "",
- "public": null,
- "required": false,
- "short_description": "Was the incident about a report, test, or study of data instead of the AI itself?",
- "short_name": "Report, Test, or Study of data",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "maybe",
- "display_type": "enum",
- "field_number": "2.4",
- "instant_facet": true,
- "long_description": "“Yes” if the involved system was deployed or sold to users. “No” if it was not. “Maybe” if there is not enough information or if the use is unclear.",
- "long_name": "Was the reported system (even if AI involvement is unknown) deployed or sold to users?",
- "mongo_type": "string",
- "permitted_values": [
- "yes",
- "no",
- "maybe"
- ],
- "placeholder": "",
- "public": null,
- "required": false,
- "short_description": "Was the reported system (even if AI involvement is unknown) deployed or sold to users?",
- "short_name": "Deployed",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "maybe",
- "display_type": "enum",
- "field_number": "2.5",
- "instant_facet": true,
- "long_description": "“Yes” if it was a test/demonstration performed by developers, producers or journalists in controlled conditions. “No” if it was not a test/demonstration. “No” if the test/demonstration was done by a user. “No” if the test/demonstration was in operational or uncontrolled conditions. “Maybe” otherwise.",
- "long_name": "Was this a test or demonstration of an AI system done by developers, producers or researchers (versus users) in controlled conditions?",
- "mongo_type": "string",
- "permitted_values": [
- "yes",
- "no",
- "maybe"
- ],
- "placeholder": "",
- "public": null,
- "required": false,
- "short_description": "Was this a test or demonstration of an AI system done by developers, producers or researchers (versus users) in controlled conditions?",
- "short_name": "Producer Test in Controlled Conditions",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "maybe",
- "display_type": "enum",
- "field_number": "2.6",
- "instant_facet": true,
- "long_description": "“Yes” if it was a test/demonstration performed by developers, producers or journalists in controlled conditions. “No” if it was not a test/demonstration. “No” if the test/demonstration was done by a user. “No” if the test/demonstration was in controlled or non-operational conditions. “Maybe” otherwise.",
- "long_name": "Was this a test or demonstration of an AI system done by developers, producers or researchers (versus users) in operational conditions?",
- "mongo_type": "string",
- "permitted_values": [
- "yes",
- "no",
- "maybe"
- ],
- "placeholder": "",
- "public": null,
- "required": false,
- "short_description": "Was this a test or demonstration of an AI system done by developers, producers or researchers (versus users) in operational conditions?",
- "short_name": "Producer Test in Operational Conditions",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "maybe",
- "display_type": "enum",
- "field_number": "2.7",
- "instant_facet": true,
- "long_description": "“Yes” if it was a test/demonstration performed by users in controlled conditions. “No” if it was not a test/demonstration. “No” if the test/demonstration was done by developers, producers or researchers. “No” if the test/demonstration was in controlled or non-controlled conditions.“Maybe” otherwise.",
- "long_name": "Was this a test or demonstration done by users in controlled conditions?",
- "mongo_type": "string",
- "permitted_values": [
- "yes",
- "no",
- "maybe"
- ],
- "placeholder": "",
- "public": null,
- "required": false,
- "short_description": "Was this a test or demonstration done by users in controlled conditions?",
- "short_name": "User Test in Controlled Conditions",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "maybe",
- "display_type": "enum",
- "field_number": "2.8",
- "instant_facet": true,
- "long_description": "“Yes” if it was a test/demonstration performed by users in operational conditions. “No” if it was not a test/demonstration. “No” if the test/demonstration was done by developers, producers or researchers. “No” if the test/demonstration was in controlled or non-operational conditions.“Maybe” otherwise.",
- "long_name": "Was this a test or demonstration done by users in operational conditions?",
- "mongo_type": "string",
- "permitted_values": [
- "yes",
- "no",
- "maybe"
- ],
- "placeholder": "",
- "public": null,
- "required": false,
- "short_description": "Was this a test or demonstration done by users in operational conditions?",
- "short_name": "User Test in Operational Conditions",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "maybe",
- "display_type": "enum",
- "field_number": "2.9",
- "instant_facet": false,
- "long_description": "Using the answers to the 8 domain questions, assess if the incident occurred in a domain where harm could be expected to occur. If you are unclear, input “maybe.”",
- "long_name": "Incident occurred in a domain where we could expect harm to occur?",
- "mongo_type": "string",
- "permitted_values": [
- "yes",
- "no",
- "maybe"
- ],
- "placeholder": "",
- "public": null,
- "required": false,
- "short_description": "Incident occurred in a domain where we could likely expect harm to occur?",
- "short_name": "Harm Domain",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "unclear",
- "display_type": "enum",
- "field_number": "3.1",
- "instant_facet": true,
- "long_description": "An assessment of whether tangible harm, imminent tangible harm, or non-imminent tangible harm occurred. This assessment does not consider the context of the tangible harm, if an AI was involved, or if there is an identifiable, specific, and harmed entity. It is also not assessing if an intangible harm occurred. It is only asking if tangible harm occurred and what its imminency was.",
- "long_name": "Did tangible harm (loss, damage or injury ) occur? ",
- "mongo_type": "string",
- "permitted_values": [
- "tangible harm definitively occurred",
- "imminent risk of tangible harm (near miss) did occur",
- "non-imminent risk of tangible harm (an issue) occurred",
- "no tangible harm, near-miss, or issue",
- "unclear"
- ],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "Did tangible harm (loss, damage or injury ) occur? ",
- "short_name": "Tangible Harm",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "maybe",
- "display_type": "enum",
- "field_number": "3.2",
- "instant_facet": true,
- "long_description": "An assessment of whether or not an AI system was involved. It is sometimes difficult to judge between an AI and an automated system or expert rules system. In these cases select “maybe”",
- "long_name": "Does the incident involve an AI system?",
- "mongo_type": "string",
- "permitted_values": [
- "yes",
- "no",
- "maybe"
- ],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "Does the incident involve an AI system?",
- "short_name": "AI System",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "maybe",
- "display_type": "enum",
- "field_number": "3.3",
- "instant_facet": true,
- "long_description": "“Yes” if an AI was involved in harm, its behavior can be directly linked to the harm, and the harm may not have occurred if the AI acted differently. “Maybe” if the link is unclear. Otherwise, select “no.”",
- "long_name": "Can an AI be directly and clearly linked to tangible harm?",
- "mongo_type": "string",
- "permitted_values": [
- "yes",
- "no",
- "maybe"
- ],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "Can an AI be directly and clearly linked to tangible harm?",
- "short_name": "Clear Link to AI",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "bool",
- "field_number": "3.4",
- "instant_facet": true,
- "long_description": "“Yes” if it is theoretically possible to both specify and identify the entity. Having that information is not required. The information just needs to exist and be potentially discoverable. “No” if there are not any potentially identifiable specific entities or if the harmed entities are a class or subgroup that can only be characterized. ",
- "long_name": "There is a potentially identifiable specific entity that experienced the harm",
- "mongo_type": "bool",
- "permitted_values": [],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "A potentially identifiable specific entity that experienced the harm can be characterized or identified.",
- "short_name": "There is a potentially identifiable specific entity that experienced the harm",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "unclear",
- "display_type": "enum",
- "field_number": "3.5",
- "instant_facet": true,
- "long_description": "An assessment of the AI tangible harm level, which takes into account the CSET definitions of AI tangible harm levels, along with the inputs for annotation fields about the AI, harm, chain of harm, and entity.",
- "long_name": "Annotator's AI tangible harm level assessment",
- "mongo_type": "string",
- "permitted_values": [
- "AI tangible harm event",
- "AI tangible harm near-miss",
- "AI tangible harm issue",
- "none",
- "unclear"
- ],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "An assessment of the AI tangible harm level, which takes into account the CSET definitions of AI tangible harm levels, along with the inputs for annotation fields about the AI, harm, chain of harm, and entity. ",
- "short_name": "AI Harm Level",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "long_string",
- "field_number": "3.6",
- "instant_facet": false,
- "long_description": "If for 3.5 you select unclear or leave it blank, please provide a brief description of why.\n\n You can also add notes if you want to provide justification for a level",
- "long_name": "AI Tangible Harm Level Notes",
- "mongo_type": "string",
- "permitted_values": [],
- "placeholder": "Notes about the AI tangible harm level assessment",
- "public": true,
- "required": false,
- "short_description": "Notes about the AI tangible harm level assessment",
- "short_name": "AI Tangible Harm Level Notes",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "maybe",
- "display_type": "enum",
- "field_number": "4.1",
- "instant_facet": true,
- "long_description": "Did this impact people's access to critical or public services (health care, social services, voting, transportation, etc)?",
- "long_name": "Did this impact people's access to critical or public services (health care, social services, voting, transportation, etc)?",
- "mongo_type": "string",
- "permitted_values": [
- "yes",
- "no",
- "maybe"
- ],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "Indicates if people’s access to critical public services was impacted.",
- "short_name": "Impact on Critical Services",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "maybe",
- "display_type": "enum",
- "field_number": "4.2",
- "instant_facet": true,
- "long_description": "Indicate if a violation of human rights, civil rights, civil liberties, or democratic norms occurred.",
- "long_name": "Was this a violation of human rights, civil liberties, civil rights, or democratic norms?",
- "mongo_type": "string",
- "permitted_values": [
- "yes",
- "no",
- "maybe"
- ],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "Indicate if a violation of human rights, civil rights, civil liberties, or democratic norms occurred.",
- "short_name": "Rights Violation",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "maybe",
- "display_type": "enum",
- "field_number": "4.3",
- "instant_facet": true,
- "long_description": "Indicate if a minor was disproportionately targeted or affected",
- "long_name": "Was a minor involved in the incident (disproportionally treated or specifically targeted/affected)",
- "mongo_type": "string",
- "permitted_values": [
- "yes",
- "no",
- "maybe"
- ],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "Was a minor involved in the incident (disproportionally treated or specifically targeted/affected)",
- "short_name": "Involving Minor",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "maybe",
- "display_type": "enum",
- "field_number": "4.4",
- "instant_facet": true,
- "long_description": "Detrimental content can include deepfakes, identity misrepresentation, insults, threats of violence, eating disorder or self harm promotion, extremist content, misinformation, sexual abuse material, and scam emails. Detrimental content in itself is often not harmful, however, it can lead to or instigate injury, damage, or loss.",
- "long_name": "Was detrimental content (misinformation, hate speech) involved?",
- "mongo_type": "string",
- "permitted_values": [
- "yes",
- "no",
- "maybe"
- ],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "Was detrimental content (misinformation, hate speech) involved?",
- "short_name": "Detrimental Content",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "maybe",
- "display_type": "enum",
- "field_number": "4.5",
- "instant_facet": true,
- "long_description": "Protected characteristics include religion, commercial facilities, geography, age, sex, sexual orientation or gender identity, familial status (e.g., having or not having children) or pregnancy, disability, veteran status, genetic information, financial means, race or creed, Ideology, nation of origin, citizenship, and immigrant status.\n\nAt the federal level in the US, age is a protected characteristic for people over the age of 40. Minors are not considered a protected class. For this reason the CSET annotation taxonomy has a separate field to note if a minor was involved.\n\nOnly mark yes if there is clear evidence discrimination occurred. If there are conflicting accounts, mark unsure. Do not mark that discrimination occurred based on expectation alone.",
- "long_name": "Was a group of people or an individual treated differently based upon a protected characteristic?",
- "mongo_type": "string",
- "permitted_values": [
- "yes",
- "no",
- "maybe"
- ],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "Was a group of people treated differently based upon a protected characteristic (e.g. race, ethnicity, creed, immigrant status, color, religion, sex, national origin, age, disability, genetic information)?",
- "short_name": "Protected Characteristic",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "unclear",
- "display_type": "multi",
- "field_number": "4.6",
- "instant_facet": true,
- "long_description": "Multiple can occur.\n\nGenetic information refers to information about a person’s genetic tests or the genetic tests of their relatives. Genetic information can predict the manifestation of a disease or disorder.",
- "long_name": "If harms were potentially unevenly distributed among people, on what basis?",
- "mongo_type": "string",
- "permitted_values": [
- "none",
- "age",
- "disability",
- "familial status (e.g., having or not having children) or pregnancy",
- "financial means",
- "genetic information",
- "geography",
- "ideology",
- "nation of origin, citizenship, immigrant status",
- "race",
- "religion",
- "sex",
- "sexual orientation or gender identity",
- "veteran status",
- "unclear",
- "other"
- ],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "Indicates how the harms were potentially distributed.",
- "short_name": "Harm Distribution Basis",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "long_string",
- "field_number": "4.7",
- "instant_facet": false,
- "long_description": "Input any notes that may help explain your answers.",
- "long_name": "Input any notes that may help explain your answers.",
- "mongo_type": "string",
- "permitted_values": [],
- "placeholder": "Notes",
- "public": true,
- "required": false,
- "short_description": "Input any notes that may help explain your answers.",
- "short_name": "Notes (special interest intangible harm)",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "maybe",
- "display_type": "enum",
- "field_number": "5.1",
- "instant_facet": false,
- "long_description": "An assessment of whether a special interest intangible harm occurred. This assessment does not consider the context of the intangible harm, if an AI was involved, or if there is characterizable class or subgroup of harmed entities. It is also not assessing if an intangible harm occurred. It is only asking if a special interest intangible harm occurred.",
- "long_name": "Was there a special interest intangible harm or risk of harm?",
- "mongo_type": "string",
- "permitted_values": [
- "yes",
- "no",
- "maybe"
- ],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "An assessment of whether a special interest intangible harm occurred. This assessment does not consider the context of the intangible harm, if an AI was involved, or if there is characterizable class or subgroup of harmed entities. It is also not assessing if an intangible harm occurred. It is only asking if a special interest intangible harm occurred.",
- "short_name": "Special Interest Intangible Harm",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "maybe",
- "display_type": "enum",
- "field_number": "5.2",
- "instant_facet": true,
- "long_description": "An assessment of whether or not an AI system was involved. It is sometimes difficult to judge between an AI and an automated system or expert rules system. In these cases select “maybe”",
- "long_name": "Does the incident involve an AI system?",
- "mongo_type": "string",
- "permitted_values": [
- "yes",
- "no",
- "maybe"
- ],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "Does the incident involve an AI system?",
- "short_name": "AI System",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "maybe",
- "display_type": "enum",
- "field_number": "5.3",
- "instant_facet": true,
- "long_description": "“Yes” if an AI was involved in harm, its behavior can be directly linked to the harm, and the harm may not have occurred if the AI acted differently. “Maybe” if the link is unclear. Otherwise, select “no.”",
- "long_name": "Can an AI be directly and clearly linked to the special interest intangible harm?",
- "mongo_type": "string",
- "permitted_values": [
- "yes",
- "no",
- "maybe"
- ],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "Can an AI be directly and clearly linked to the special interest intangible harm?",
- "short_name": "AI Linked to Special Interest Intangible Harm",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": null,
- "display_type": "bool",
- "field_number": "5.4",
- "instant_facet": true,
- "long_description": "A characterizable class or subgroup are descriptions of different populations of people. Often they are characteristics by which people qualify for special protection by a law, policy, or similar authority.\n\n Sometimes, groups may be characterized by their exposure to the incident via geographical proximity (e.g., ‘visitors to the park’) or participation in an activity (e.g.,‘Twitter users’).",
- "long_name": "There is a characterizable class or subgroup of entities that experienced the harm",
- "mongo_type": "bool",
- "permitted_values": [],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "“Yes” if the harmed entity or entities can be characterized. “No” if there are not any characterizable entities.",
- "short_name": "Harmed Class of Entities",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "maybe",
- "display_type": "enum",
- "field_number": "5.5",
- "instant_facet": true,
- "long_description": "AI tangible harm is determined in a different field. The determination of a special interest intangible harm is not dependant upon the AI tangible harm level.",
- "long_name": "The annotator’s assessment of if an AI special interest intangible harm occurred.",
- "mongo_type": "string",
- "permitted_values": [
- "yes",
- "no",
- "maybe"
- ],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "The annotator’s assessment of if an AI special interest intangible harm occurred.",
- "short_name": "Annotator’s AI special interest intangible harm assessment",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "long_string",
- "field_number": "5.6",
- "instant_facet": false,
- "long_description": "If for 5.5 you select unclear or leave it blank, please provide a brief description of why.\n\nYou can also add notes if you want to provide justification for a level.",
- "long_name": "If for 5.5 you select unclear or leave it blank, please provide a brief description of why.\n\nYou can also add notes if you want to provide justification for a level.",
- "mongo_type": "string",
- "permitted_values": [],
- "placeholder": "Notes",
- "public": true,
- "required": false,
- "short_description": "If for 5.5 you select unclear or leave it blank, please provide a brief description of why.\n\nYou can also add notes if you want to provide justification for a level.",
- "short_name": "Notes (AI special interest intangible harm)",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "string",
- "field_number": "6.1",
- "instant_facet": false,
- "long_description": "The year in which the incident occurred. If there are multiple harms or occurrences of the incident, list the earliest. If a precise date is unavailable, but the available sources provide a basis for estimating the year, estimate. Otherwise, leave blank.",
- "long_name": "The year in which the incident first occurred.",
- "mongo_type": "string",
- "permitted_values": [],
- "placeholder": "YYYY",
- "public": true,
- "required": false,
- "short_description": "The year in which the incident occurred. If there are multiple harms or occurrences of the incident, list the earliest. If a precise date is unavailable, but the available sources provide a basis for estimating the year, estimate. Otherwise, leave blank.\n\nEnter in the format of YYYY",
- "short_name": "Date of Incident Year",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "string",
- "field_number": "6.2",
- "instant_facet": false,
- "long_description": "The month in which the incident occurred. If there are multiple harms or occurrences of the incident, list the earliest. If a precise date is unavailable, but the available sources provide a basis for estimating the month, estimate. Otherwise, leave blank.",
- "long_name": "The month in which the incident first occurred.",
- "mongo_type": "string",
- "permitted_values": [],
- "placeholder": "MM",
- "public": true,
- "required": false,
- "short_description": "The month in which the incident occurred. If there are multiple harms or occurrences of the incident, list the earliest. If a precise date is unavailable, but the available sources provide a basis for estimating the month, estimate. Otherwise, leave blank.\n\nEnter in the format of MM",
- "short_name": "Date of Incident Month",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "string",
- "field_number": "6.3",
- "instant_facet": true,
- "long_description": "The day on which the incident occurred. If a precise date is unavailable, leave blank.\n\nEnter in the format of DD",
- "long_name": "The day on which the first incident occurred.",
- "mongo_type": "string",
- "permitted_values": [],
- "placeholder": "DD",
- "public": true,
- "required": false,
- "short_description": "The day on which the incident occurred. If a precise date is unavailable, leave blank.\n\nEnter in the format of DD",
- "short_name": "Date of Incident Day",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": null,
- "display_type": "bool",
- "field_number": "6.4",
- "instant_facet": false,
- "long_description": "“Yes” if the data was estimated. “No” otherwise.",
- "long_name": "Is the date estimated?",
- "mongo_type": "bool",
- "permitted_values": [],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "“Yes” if the data was estimated. “No” otherwise.",
- "short_name": "Estimated Date",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "maybe",
- "display_type": "enum",
- "field_number": "6.5",
- "instant_facet": true,
- "long_description": "This happens very rarely but is possible. Examples include two chatbots having a conversation with each other, or two autonomous vehicles in a crash.",
- "long_name": "Was the AI interacting with another AI?",
- "mongo_type": "string",
- "permitted_values": [
- "yes",
- "no",
- "maybe"
- ],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "“Yes” if two or more independently operating AI systems were involved. “No” otherwise.",
- "short_name": "Multiple AI Interaction",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "maybe",
- "display_type": "enum",
- "field_number": "6.6",
- "instant_facet": true,
- "long_description": "This question is slightly different from the one in field 2.1.1. That question asks about there being interaction with physical objects–an ability to manipulate or change. A system can be embedded in a physical object and able to interact with the physical environment, e.g. a vacuum robot. A system can be embedded in a physical object and not interact with a physical environment, e.g. a camera system that only records images when the AI detects that dogs are present. AI systems that are accessed through API, web-browser, etc by using a mobile device or computer are not considered to be embedded in hardware systems. They are accessed through hardware.",
- "long_name": "Is the AI embedded in a physical system or have a physical presence?",
- "mongo_type": "string",
- "permitted_values": [
- "yes",
- "no",
- "maybe"
- ],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "“Yes” if the AI is embedded in a physical system. “No” if it is not. “Maybe” if it is unclear.",
- "short_name": "Embedded",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "string",
- "field_number": "6.7",
- "instant_facet": false,
- "long_description": "If the incident occurred at a specific known location, note the city. If there are multiple relevant locations, enter multiple city/state/country values.",
- "long_name": "If the incident occurred at a specific known location, note the city.",
- "mongo_type": "string",
- "permitted_values": [],
- "placeholder": "City",
- "public": true,
- "required": false,
- "short_description": "If the incident occurred at a specific known location, note the city.",
- "short_name": "Location City",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "string",
- "field_number": "6.8",
- "instant_facet": false,
- "long_description": "If the incident occurred at a specific known location, note the state/province. If there are multiple relevant locations, enter multiple city/state/country values.",
- "long_name": "If the incident occurred at a specific known location, note the state/province.",
- "mongo_type": "string",
- "permitted_values": [],
- "placeholder": "State or Province",
- "public": true,
- "required": false,
- "short_description": "If the incident occurred at a specific known location, note the state/province.",
- "short_name": "Location State/Province (two letters)",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "string",
- "field_number": "6.9",
- "instant_facet": false,
- "long_description": "Follow ISO 3166 for the 2-letter country codes.\n\nIf there are multiple relevant locations, enter multiple city/state/country values.",
- "long_name": "If the incident occurred at a specific known location, note the country. ",
- "mongo_type": "string",
- "permitted_values": [],
- "placeholder": "Country",
- "public": true,
- "required": false,
- "short_description": "If the incident occurred at a specific known location, note the country. Follow ISO 3166 for the 2-letter country codes.",
- "short_name": "Location Country (two letters)",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "unclear",
- "display_type": "enum",
- "field_number": "6.10",
- "instant_facet": true,
- "long_description": "Use this reference to map countries to regions: https://www.dhs.gov/geographic-regions",
- "long_name": "Location Region",
- "mongo_type": "string",
- "permitted_values": [
- "Global",
- "Africa",
- "Asia",
- "Caribbean",
- "Central America",
- "Europe",
- "North America",
- "Oceania",
- "South America",
- "unclear"
- ],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "Select the region of the world where the incident occurred. If it occurred in multiple, leave blank.",
- "short_name": "Location Region",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "unclear",
- "display_type": "multi",
- "field_number": "6.11",
- "instant_facet": true,
- "long_description": "Which critical infrastructure sectors were affected, if any?",
- "long_name": "Which critical infrastructure sectors were affected, if any?",
- "mongo_type": "string",
- "permitted_values": [
- "chemical",
- "commercial facilities",
- "communications",
- "critical manufacturing",
- "dams",
- "defense-industrial base",
- "emergency services",
- "energy",
- "financial services",
- "food and agriculture",
- "government facilities",
- "healthcare and public health",
- "information technology",
- "nuclear ",
- "transportation",
- "water and wastewater",
- "Other",
- "unclear"
- ],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "Which critical infrastructure sectors were affected, if any?",
- "short_name": "Infrastructure Sectors",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "list",
- "field_number": "6.12",
- "instant_facet": false,
- "long_description": "A record of any abnormal or atypical operational conditions that occurred. This field is most often blank.",
- "long_name": "A record of any abnormal or atypical operational conditions that occurred.",
- "mongo_type": "array",
- "permitted_values": [],
- "placeholder": "e.g. raining; night; low visibility",
- "public": true,
- "required": false,
- "short_description": "A record of any abnormal or atypical operational conditions that occurred.",
- "short_name": "Operating Conditions",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "long_string",
- "field_number": "6.13",
- "instant_facet": false,
- "long_description": "Input any notes that may help explain your answers.",
- "long_name": "Notes (Environmental and Temporal Characteristics)",
- "mongo_type": "string",
- "permitted_values": [],
- "placeholder": "Notes",
- "public": true,
- "required": false,
- "short_description": "Input any notes that may help explain your answers.",
- "short_name": "Notes (Environmental and Temporal Characteristics)",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "[]",
- "display_type": "object-list",
- "field_number": "7",
- "instant_facet": false,
- "long_description": "Characterizing Entities and the Harm",
- "long_name": "Characterizing Entities and the Harm",
- "mongo_type": "array",
- "permitted_values": [],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "Characterizing Entities and the Harm",
- "short_name": "Entities",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "int",
- "field_number": "8.1",
- "instant_facet": true,
- "long_description": "This field cannot be greater than zero if the harm is anything besides ‘Physical health/safety.’ ",
- "long_name": "How many human lives were lost?",
- "mongo_type": "int",
- "permitted_values": [],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "Indicates the number of deaths reported",
- "short_name": "Lives Lost",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "int",
- "field_number": "8.2",
- "instant_facet": false,
- "long_description": "This field cannot be greater than zero if the harm is anything besides 'Physical health/safety'.\n\nAll reported injuries should count, regardless of their severity level. If a person lost their limb and another person scraped their elbow, both cases would be considered injuries. Do not include the number of deaths in this count.",
- "long_name": "How many humans were injured?",
- "mongo_type": "int",
- "permitted_values": [],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "Indicate the number of injuries reported.",
- "short_name": "Injuries",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": null,
- "display_type": "bool",
- "field_number": "8.3",
- "instant_facet": false,
- "long_description": "Indicates if the amount was estimated.",
- "long_name": "Are any quantities estimated?",
- "mongo_type": "bool",
- "permitted_values": [],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "Indicates if the amount was estimated.",
- "short_name": "Estimated Harm Quantities",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "long_string",
- "field_number": "8.4",
- "instant_facet": false,
- "long_description": "Input any notes that may help explain your answers.",
- "long_name": "Notes ( Tangible Harm Quantities Information)",
- "mongo_type": "string",
- "permitted_values": [],
- "placeholder": "Notes",
- "public": true,
- "required": false,
- "short_description": "Input any notes that may help explain your answers.",
- "short_name": "Notes ( Tangible Harm Quantities Information)",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "long_string",
- "field_number": "9.1",
- "instant_facet": false,
- "long_description": "Describe the AI system in as much detail as the reports will allow.\n\nA high level description of the AI system is sufficient, but if more technical details about the AI system are available, include them in the description as well.",
- "long_name": "Description of the AI system involved",
- "mongo_type": "string",
- "permitted_values": [],
- "placeholder": "Description of the AI system involved",
- "public": true,
- "required": false,
- "short_description": "A description of the AI system (when possible)",
- "short_name": "AI System Description",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "list",
- "field_number": "9.2",
- "instant_facet": false,
- "long_description": "This is a freeform field that can have any value. There could be multiple entries for this field.\n\nCommon ones include\n\n- still images\n- video\n- text\n- speech\n- Personally Identifiable Information\n- structured data\n- other\n- unclear\n\nStill images are static images. Video images consist of moving images. Text and speech data are considered an important category of unstructured data. They consist of written and spoken words that are not in a tabular format. Personally identifiable information is data that can uniquely identify an individual and may contain sensitive information. Structured data is often in a tabular, machine readable format and can typically be used by an AI system without much preprocessing.\n\nAvoid using ‘unstructured data’ data in this field. Instead specify the type of unstructured data; text, images, audio files, etc. It is ok to use ‘structured data’ in this field.\n\nRecord what the media report explicitly states. If the report does not explicitly state an input modality but it is likely that a particular kind of input contributed to the harm or near harm, record that input. If you are still unsure, do not record anything.",
- "long_name": "Description of data inputs to the AI system",
- "mongo_type": "array",
- "permitted_values": [],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "A list of the types of data inputs for the AI system.",
- "short_name": "Data Inputs",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "multi",
- "field_number": "9.3",
- "instant_facet": true,
- "long_description": "Indicate the sector in which the AI system is deployed\n\nThere could be multiple entries for this field.",
- "long_name": "Indicates the sector in which the AI system is deployed",
- "mongo_type": "array",
- "permitted_values": [
- "agriculture, forestry and fishing",
- "mining and quarrying",
- "manufacturing",
- "electricity, gas, steam and air conditioning supply",
- "water supply",
- "construction",
- "wholesale and retail trade",
- "transportation and storage",
- "accommodation and food service activities",
- "information and communication",
- "financial and insurance activities",
- "real estate activities",
- "professional, scientific and technical activities",
- "administrative and support service activities",
- "public administration",
- "defense",
- "law enforcement",
- "Education",
- "human health and social work activities",
- "Arts, entertainment and recreation",
- "other service activities",
- "activities of households as employers",
- "activities of extraterritorial organizations and bodies",
- "other",
- "unclear"
- ],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "Indicate the sector in which the AI system is deployed",
- "short_name": "Sector of Deployment",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "maybe",
- "display_type": "enum",
- "field_number": "9.4",
- "instant_facet": true,
- "long_description": "Indicate whether the AI system is deployed in the public sector. The public sector is the part of the economy that is controlled and operated by the government.",
- "long_name": "Indicates whether the AI system is deployed in the public sector",
- "mongo_type": "string",
- "permitted_values": [
- "yes",
- "no",
- "maybe"
- ],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "Indicate whether the AI system is deployed in the public sector",
- "short_name": "Public Sector Deployment",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "enum",
- "field_number": "9.5",
- "instant_facet": true,
- "long_description": "Autonomy1: The system operates independently without simultaneous human oversight, interaction, or intervention.\n\nAutonomy2: The system operates independently but with human oversight, where a human can observe and override the system’s decisions in real time.\n\nAutonomy3: The system does not independently make decisions but instead provides information to a human who actively chooses to proceed with the AI’s information.",
- "long_name": "Autonomy Level",
- "mongo_type": "string",
- "permitted_values": [
- "Autonomy1",
- "Autonomy2",
- "Autonomy3",
- "unclear"
- ],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "Autonomy1: The system operates independently without simultaneous human oversight, interaction, or intervention.\n\nAutonomy2: The system operates independently but with human oversight, where a human can observe and override the system’s decisions in real time.\n\nAutonomy3: The system does not independently make decisions but instead provides information to a human who actively chooses to proceed with the AI’s information.",
- "short_name": "Autonomy Level",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "long_string",
- "field_number": "9.8",
- "instant_facet": false,
- "long_description": "Input any notes that may help explain your answers.",
- "long_name": "Notes (Information about AI System)",
- "mongo_type": "string",
- "permitted_values": [],
- "placeholder": "Notes",
- "public": true,
- "required": false,
- "short_description": "Input any notes that may help explain your answers.",
- "short_name": "Notes (Information about AI System)",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "unclear",
- "display_type": "enum",
- "field_number": "10.1",
- "instant_facet": true,
- "long_description": "Indicates if the system was designed to do harm. If it was designed to perform harm, the field will indicate if the AI system did or did not create unintended harm–i.e. was the reported harm the harm that AI was expected to perform or a different unexpected harm? ",
- "long_name": "Was the AI intentionally developed or deployed to perform the harm?",
- "mongo_type": "string",
- "permitted_values": [
- "Yes. Intentionally designed to perform harm and did create intended harm",
- "Yes. Intentionally designed to perform harm but created an unintended harm (a different harm may have occurred)",
- "No. Not intentionally designed to perform harm",
- "unclear"
- ],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "Was the AI intentionally developed or deployed to perform the harm?\n\nIf yes, did the AI’s behavior result in unintended or intended harm? ",
- "short_name": "Intentional Harm",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "string",
- "field_number": "10.2",
- "instant_facet": false,
- "long_description": "Describe the type of physical system that the AI was integrated into. ",
- "long_name": "Into what type of physical system was the AI integrated, if any?",
- "mongo_type": "string",
- "permitted_values": [],
- "placeholder": "Physical System Type (e.g. trash sorting robot)",
- "public": true,
- "required": false,
- "short_description": "Describe the type of physical system that the AI was integrated into.",
- "short_name": "Physical System Type",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "list",
- "field_number": "10.3",
- "instant_facet": false,
- "long_description": "Describe the AI’s application.\n\nIt is likely that the annotator will not have enough information to complete this field. If this occurs, enter unclear.\n\nThis is a freeform field. Some possible entries are\n\n- unclear\n- human language technologies\n- computer vision\n- robotics\n- automation and/or optimization\n- other\n\nThe application area of an AI is the high level task that the AI is intended to perform. It does not describe the technical methods by which the AI performs the task. Considering what an AI’s technical methods enable it to do is another way of arriving at what an AI’s application is. \n\nIt is possible for multiple application areas to be involved. When possible pick the principle or domain area, but it is ok to select multiple areas.",
- "long_name": "AI task or core application area",
- "mongo_type": "array",
- "permitted_values": [],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "Describe the AI’s application.",
- "short_name": "AI Task",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "unclear",
- "display_type": "list",
- "field_number": "10.4",
- "instant_facet": false,
- "long_description": "Describe the tools and methods that enable the AI’s application.\n\nIt is likely that the annotator will not have enough information to complete this field. If this occurs, enter unclear\n\nThis is a freeform field. Some possible entries are\n\n- unclear\n- reinforcement learning\n- neural networks\n- decision trees\n- bias mitigation\n- optimization\n- classifier\n- NLP/text analytics\n- continuous learning\n- unsupervised learning\n- supervised learning\n- clustering\n- prediction\n- rules\n- random forest\n\nAI tools and methods are the technical building blocks that enable the AI’s application.",
- "long_name": "AI tools and methods",
- "mongo_type": "array",
- "permitted_values": [],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "Describe the tools and methods that enable the AI’s application.",
- "short_name": "AI tools and methods",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "long_string",
- "field_number": "10.5",
- "instant_facet": false,
- "long_description": "Input any notes that may help explain your answers.",
- "long_name": "Notes (AI Functionality and Techniques)",
- "mongo_type": "string",
- "permitted_values": [],
- "placeholder": "Notes",
- "public": true,
- "required": false,
- "short_description": "Input any notes that may help explain your answers.",
- "short_name": "Notes (AI Functionality and Techniques)",
- "weight": 5
- }
- ],
- "namespace": "CSETv1_Annotator-1",
- "weight": 70
- },
- {
- "__typename": "Taxa",
- "description": "# What is the CSET Taxonomy?\n\nThe Center for Security and Emerging Technology (CSET) taxonomy is\na general taxonomy of AI incidents. There are a large number of \nclassified attributes, including ones pertaining to safety, fairness, \nindustry, geography, timing, and cost. All classifications within \nthe CSET taxonomy are first applied by one CSET annotator and \nreviewed by another CSET annotator before the classifications are \nfinalized. The combination of a rigorously defined coding set and \nthe completeness with which it has been applied make the CSET \ntaxonomy the AIID's gold standard for taxonomies. Nevertheless, \nthe CSET taxonomy is an ongoing effort and you are invited to \nreport any errors you may discover in its application.\n\n## How do I explore the taxonomy?\n\nAll taxonomies can be used to filter incident reports within the \n[Discover Application](/apps/discover). The taxonomy filters work\nsimilarly to how you filter products on an E-commerce website. \nUse the search field at the bottom of the “Classifications” tab to \nfind the taxonomy field you would like to filter with, then click \nthe desired value to apply the filter.\n\n# About CSET\n\nA policy research organization within Georgetown University’s \nWalsh School of Foreign Service, CSET produces data-driven \nresearch at the intersection of security and technology, \nproviding nonpartisan analysis to the policy community. CSET is \ncurrently focusing on the effects of progress in artificial \nintelligence (AI), advanced computing and biotechnology. CSET \nseeks to prepare a new generation of decision-makers to address \nthe challenges and opportunities of emerging technologies. [(Read \nmore)](https://cset.georgetown.edu/about-us/).",
- "field_list": [
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "int",
- "field_number": "1.1",
- "instant_facet": false,
- "long_description": "The number of the incident in the AI Incident Database.",
- "long_name": "The number of the incident in the AI Incident Database.",
- "mongo_type": "int",
- "permitted_values": null,
- "placeholder": null,
- "public": true,
- "required": false,
- "short_description": "The number of the incident in the AI Incident Database.",
- "short_name": "Incident Number",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "string",
- "field_number": "1.2",
- "instant_facet": false,
- "long_description": "An ID designating the individual who classified this incident according to the CSET taxonomy.",
- "long_name": "Person responsible for the annotations",
- "mongo_type": "string",
- "permitted_values": [],
- "placeholder": "Select name here",
- "public": false,
- "required": false,
- "short_description": "This is the researcher that is responsible for applying the classifications of the CSET taxonomy.",
- "short_name": "Annotator",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "enum",
- "field_number": "1.3",
- "instant_facet": false,
- "long_description": "What is the quality assurance status of the CSET classifications for this incident?",
- "long_name": "Where in the annotation process is this incident?",
- "mongo_type": "string",
- "permitted_values": [
- "1. Annotation in progress",
- "2. Initial annotation complete",
- "3. In peer review",
- "4. Peer review complete",
- "5. In quality control",
- "6. Complete and final"
- ],
- "placeholder": "Select process status here",
- "public": false,
- "required": false,
- "short_description": "What is the quality assurance status of the CSET classifications for this incident?",
- "short_name": "Annotation Status",
- "weight": 10
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "string",
- "field_number": "1.4",
- "instant_facet": false,
- "long_description": "The CSET taxonomy assigns individual researchers to each incident as the primary parties responsible for classifying the incident according to the taxonomy. This is the person responsible for assuring the integrity of annotator's classifications.",
- "long_name": "Person responsible for reviewing annotations",
- "mongo_type": "string",
- "permitted_values": [],
- "placeholder": "Select name here",
- "public": false,
- "required": false,
- "short_description": "This is the researcher that is responsible for ensuring the quality of the classifications applied to this incident.",
- "short_name": "Peer Reviewer",
- "weight": 20
- },
- {
- "__typename": "TaxaField_list",
- "default": "false",
- "display_type": "bool",
- "field_number": "1.5",
- "instant_facet": false,
- "long_description": "The peer review process sometimes uncovers issues with the classifications that have been applied by the annotator. This field serves as a flag when there is a need for additional thought and input on the classifications applied",
- "long_name": "Was this incident randomly selected for additional quality control?",
- "mongo_type": "bool",
- "permitted_values": [],
- "placeholder": "",
- "public": false,
- "required": false,
- "short_description": "Has someone flagged a potential issue with this incident's classifications? Annotators should leave this field blank.",
- "short_name": "Quality Control",
- "weight": 15
- },
- {
- "__typename": "TaxaField_list",
- "default": "maybe",
- "display_type": "enum",
- "field_number": "2.1",
- "instant_facet": true,
- "long_description": "“Yes” if the AI system(s) is embedded in hardware that can interact with, affect, and change the physical objects (cars, robots, medical facilities, etc.). Mark “No” if the system cannot. This includes systems that inform, detect, predict, or recommend.",
- "long_name": "Did the incident occur in a domain with physical objects ?",
- "mongo_type": "string",
- "permitted_values": [
- "yes",
- "no",
- "maybe"
- ],
- "placeholder": "",
- "public": null,
- "required": false,
- "short_description": "Did the incident occur in a domain with physical objects ?",
- "short_name": "Physical Objects",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "maybe",
- "display_type": "enum",
- "field_number": "2.2",
- "instant_facet": true,
- "long_description": "“Yes” if the sector in which the AI was used is associated with entertainment. “No” if it was used in a different, clearly identifiable sector. “Maybe” if the sector of use could not be determined.",
- "long_name": "Did the AI incident occur in the entertainment industry?",
- "mongo_type": "string",
- "permitted_values": [
- "yes",
- "no",
- "maybe"
- ],
- "placeholder": "",
- "public": null,
- "required": false,
- "short_description": "Did the AI incident occur in the entertainment industry?",
- "short_name": "Entertainment Industry",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "maybe",
- "display_type": "enum",
- "field_number": "2.3",
- "instant_facet": true,
- "long_description": "“Yes” if the incident is about a report, test, or study of the data and does not discuss an instance of injury, damage, or loss. “Maybe” if it is unclear. Otherwise mark “No.”",
- "long_name": "Was the incident about a report, test, or study of data instead of the AI itself?",
- "mongo_type": "string",
- "permitted_values": [
- "yes",
- "no",
- "maybe"
- ],
- "placeholder": "",
- "public": null,
- "required": false,
- "short_description": "Was the incident about a report, test, or study of data instead of the AI itself?",
- "short_name": "Report, Test, or Study of data",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "maybe",
- "display_type": "enum",
- "field_number": "2.4",
- "instant_facet": true,
- "long_description": "“Yes” if the involved system was deployed or sold to users. “No” if it was not. “Maybe” if there is not enough information or if the use is unclear.",
- "long_name": "Was the reported system (even if AI involvement is unknown) deployed or sold to users?",
- "mongo_type": "string",
- "permitted_values": [
- "yes",
- "no",
- "maybe"
- ],
- "placeholder": "",
- "public": null,
- "required": false,
- "short_description": "Was the reported system (even if AI involvement is unknown) deployed or sold to users?",
- "short_name": "Deployed",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "maybe",
- "display_type": "enum",
- "field_number": "2.5",
- "instant_facet": true,
- "long_description": "“Yes” if it was a test/demonstration performed by developers, producers or journalists in controlled conditions. “No” if it was not a test/demonstration. “No” if the test/demonstration was done by a user. “No” if the test/demonstration was in operational or uncontrolled conditions. “Maybe” otherwise.",
- "long_name": "Was this a test or demonstration of an AI system done by developers, producers or researchers (versus users) in controlled conditions?",
- "mongo_type": "string",
- "permitted_values": [
- "yes",
- "no",
- "maybe"
- ],
- "placeholder": "",
- "public": null,
- "required": false,
- "short_description": "Was this a test or demonstration of an AI system done by developers, producers or researchers (versus users) in controlled conditions?",
- "short_name": "Producer Test in Controlled Conditions",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "maybe",
- "display_type": "enum",
- "field_number": "2.6",
- "instant_facet": true,
- "long_description": "“Yes” if it was a test/demonstration performed by developers, producers or journalists in controlled conditions. “No” if it was not a test/demonstration. “No” if the test/demonstration was done by a user. “No” if the test/demonstration was in controlled or non-operational conditions. “Maybe” otherwise.",
- "long_name": "Was this a test or demonstration of an AI system done by developers, producers or researchers (versus users) in operational conditions?",
- "mongo_type": "string",
- "permitted_values": [
- "yes",
- "no",
- "maybe"
- ],
- "placeholder": "",
- "public": null,
- "required": false,
- "short_description": "Was this a test or demonstration of an AI system done by developers, producers or researchers (versus users) in operational conditions?",
- "short_name": "Producer Test in Operational Conditions",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "maybe",
- "display_type": "enum",
- "field_number": "2.7",
- "instant_facet": true,
- "long_description": "“Yes” if it was a test/demonstration performed by users in controlled conditions. “No” if it was not a test/demonstration. “No” if the test/demonstration was done by developers, producers or researchers. “No” if the test/demonstration was in controlled or non-controlled conditions.“Maybe” otherwise.",
- "long_name": "Was this a test or demonstration done by users in controlled conditions?",
- "mongo_type": "string",
- "permitted_values": [
- "yes",
- "no",
- "maybe"
- ],
- "placeholder": "",
- "public": null,
- "required": false,
- "short_description": "Was this a test or demonstration done by users in controlled conditions?",
- "short_name": "User Test in Controlled Conditions",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "maybe",
- "display_type": "enum",
- "field_number": "2.8",
- "instant_facet": true,
- "long_description": "“Yes” if it was a test/demonstration performed by users in operational conditions. “No” if it was not a test/demonstration. “No” if the test/demonstration was done by developers, producers or researchers. “No” if the test/demonstration was in controlled or non-operational conditions.“Maybe” otherwise.",
- "long_name": "Was this a test or demonstration done by users in operational conditions?",
- "mongo_type": "string",
- "permitted_values": [
- "yes",
- "no",
- "maybe"
- ],
- "placeholder": "",
- "public": null,
- "required": false,
- "short_description": "Was this a test or demonstration done by users in operational conditions?",
- "short_name": "User Test in Operational Conditions",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "maybe",
- "display_type": "enum",
- "field_number": "2.9",
- "instant_facet": false,
- "long_description": "Using the answers to the 8 domain questions, assess if the incident occurred in a domain where harm could be expected to occur. If you are unclear, input “maybe.”",
- "long_name": "Incident occurred in a domain where we could expect harm to occur?",
- "mongo_type": "string",
- "permitted_values": [
- "yes",
- "no",
- "maybe"
- ],
- "placeholder": "",
- "public": null,
- "required": false,
- "short_description": "Incident occurred in a domain where we could likely expect harm to occur?",
- "short_name": "Harm Domain",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "unclear",
- "display_type": "enum",
- "field_number": "3.1",
- "instant_facet": true,
- "long_description": "An assessment of whether tangible harm, imminent tangible harm, or non-imminent tangible harm occurred. This assessment does not consider the context of the tangible harm, if an AI was involved, or if there is an identifiable, specific, and harmed entity. It is also not assessing if an intangible harm occurred. It is only asking if tangible harm occurred and what its imminency was.",
- "long_name": "Did tangible harm (loss, damage or injury ) occur? ",
- "mongo_type": "string",
- "permitted_values": [
- "tangible harm definitively occurred",
- "imminent risk of tangible harm (near miss) did occur",
- "non-imminent risk of tangible harm (an issue) occurred",
- "no tangible harm, near-miss, or issue",
- "unclear"
- ],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "Did tangible harm (loss, damage or injury ) occur? ",
- "short_name": "Tangible Harm",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "maybe",
- "display_type": "enum",
- "field_number": "3.2",
- "instant_facet": true,
- "long_description": "An assessment of whether or not an AI system was involved. It is sometimes difficult to judge between an AI and an automated system or expert rules system. In these cases select “maybe”",
- "long_name": "Does the incident involve an AI system?",
- "mongo_type": "string",
- "permitted_values": [
- "yes",
- "no",
- "maybe"
- ],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "Does the incident involve an AI system?",
- "short_name": "AI System",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "maybe",
- "display_type": "enum",
- "field_number": "3.3",
- "instant_facet": true,
- "long_description": "“Yes” if an AI was involved in harm, its behavior can be directly linked to the harm, and the harm may not have occurred if the AI acted differently. “Maybe” if the link is unclear. Otherwise, select “no.”",
- "long_name": "Can an AI be directly and clearly linked to tangible harm?",
- "mongo_type": "string",
- "permitted_values": [
- "yes",
- "no",
- "maybe"
- ],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "Can an AI be directly and clearly linked to tangible harm?",
- "short_name": "Clear Link to AI",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "bool",
- "field_number": "3.4",
- "instant_facet": true,
- "long_description": "“Yes” if it is theoretically possible to both specify and identify the entity. Having that information is not required. The information just needs to exist and be potentially discoverable. “No” if there are not any potentially identifiable specific entities or if the harmed entities are a class or subgroup that can only be characterized. ",
- "long_name": "There is a potentially identifiable specific entity that experienced the harm",
- "mongo_type": "bool",
- "permitted_values": [],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "A potentially identifiable specific entity that experienced the harm can be characterized or identified.",
- "short_name": "There is a potentially identifiable specific entity that experienced the harm",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "unclear",
- "display_type": "enum",
- "field_number": "3.5",
- "instant_facet": true,
- "long_description": "An assessment of the AI tangible harm level, which takes into account the CSET definitions of AI tangible harm levels, along with the inputs for annotation fields about the AI, harm, chain of harm, and entity.",
- "long_name": "Annotator's AI tangible harm level assessment",
- "mongo_type": "string",
- "permitted_values": [
- "AI tangible harm event",
- "AI tangible harm near-miss",
- "AI tangible harm issue",
- "none",
- "unclear"
- ],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "An assessment of the AI tangible harm level, which takes into account the CSET definitions of AI tangible harm levels, along with the inputs for annotation fields about the AI, harm, chain of harm, and entity. ",
- "short_name": "AI Harm Level",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "long_string",
- "field_number": "3.6",
- "instant_facet": false,
- "long_description": "If for 3.5 you select unclear or leave it blank, please provide a brief description of why.\n\n You can also add notes if you want to provide justification for a level",
- "long_name": "AI Tangible Harm Level Notes",
- "mongo_type": "string",
- "permitted_values": [],
- "placeholder": "Notes about the AI tangible harm level assessment",
- "public": true,
- "required": false,
- "short_description": "Notes about the AI tangible harm level assessment",
- "short_name": "AI Tangible Harm Level Notes",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "maybe",
- "display_type": "enum",
- "field_number": "4.1",
- "instant_facet": true,
- "long_description": "Did this impact people's access to critical or public services (health care, social services, voting, transportation, etc)?",
- "long_name": "Did this impact people's access to critical or public services (health care, social services, voting, transportation, etc)?",
- "mongo_type": "string",
- "permitted_values": [
- "yes",
- "no",
- "maybe"
- ],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "Indicates if people’s access to critical public services was impacted.",
- "short_name": "Impact on Critical Services",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "maybe",
- "display_type": "enum",
- "field_number": "4.2",
- "instant_facet": true,
- "long_description": "Indicate if a violation of human rights, civil rights, civil liberties, or democratic norms occurred.",
- "long_name": "Was this a violation of human rights, civil liberties, civil rights, or democratic norms?",
- "mongo_type": "string",
- "permitted_values": [
- "yes",
- "no",
- "maybe"
- ],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "Indicate if a violation of human rights, civil rights, civil liberties, or democratic norms occurred.",
- "short_name": "Rights Violation",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "maybe",
- "display_type": "enum",
- "field_number": "4.3",
- "instant_facet": true,
- "long_description": "Indicate if a minor was disproportionately targeted or affected",
- "long_name": "Was a minor involved in the incident (disproportionally treated or specifically targeted/affected)",
- "mongo_type": "string",
- "permitted_values": [
- "yes",
- "no",
- "maybe"
- ],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "Was a minor involved in the incident (disproportionally treated or specifically targeted/affected)",
- "short_name": "Involving Minor",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "maybe",
- "display_type": "enum",
- "field_number": "4.4",
- "instant_facet": true,
- "long_description": "Detrimental content can include deepfakes, identity misrepresentation, insults, threats of violence, eating disorder or self harm promotion, extremist content, misinformation, sexual abuse material, and scam emails. Detrimental content in itself is often not harmful, however, it can lead to or instigate injury, damage, or loss.",
- "long_name": "Was detrimental content (misinformation, hate speech) involved?",
- "mongo_type": "string",
- "permitted_values": [
- "yes",
- "no",
- "maybe"
- ],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "Was detrimental content (misinformation, hate speech) involved?",
- "short_name": "Detrimental Content",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "maybe",
- "display_type": "enum",
- "field_number": "4.5",
- "instant_facet": true,
- "long_description": "Protected characteristics include religion, commercial facilities, geography, age, sex, sexual orientation or gender identity, familial status (e.g., having or not having children) or pregnancy, disability, veteran status, genetic information, financial means, race or creed, Ideology, nation of origin, citizenship, and immigrant status.\n\nAt the federal level in the US, age is a protected characteristic for people over the age of 40. Minors are not considered a protected class. For this reason the CSET annotation taxonomy has a separate field to note if a minor was involved.\n\nOnly mark yes if there is clear evidence discrimination occurred. If there are conflicting accounts, mark unsure. Do not mark that discrimination occurred based on expectation alone.",
- "long_name": "Was a group of people or an individual treated differently based upon a protected characteristic?",
- "mongo_type": "string",
- "permitted_values": [
- "yes",
- "no",
- "maybe"
- ],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "Was a group of people treated differently based upon a protected characteristic (e.g. race, ethnicity, creed, immigrant status, color, religion, sex, national origin, age, disability, genetic information)?",
- "short_name": "Protected Characteristic",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "unclear",
- "display_type": "multi",
- "field_number": "4.6",
- "instant_facet": true,
- "long_description": "Multiple can occur.\n\nGenetic information refers to information about a person’s genetic tests or the genetic tests of their relatives. Genetic information can predict the manifestation of a disease or disorder.",
- "long_name": "If harms were potentially unevenly distributed among people, on what basis?",
- "mongo_type": "string",
- "permitted_values": [
- "none",
- "age",
- "disability",
- "familial status (e.g., having or not having children) or pregnancy",
- "financial means",
- "genetic information",
- "geography",
- "ideology",
- "nation of origin, citizenship, immigrant status",
- "race",
- "religion",
- "sex",
- "sexual orientation or gender identity",
- "veteran status",
- "unclear",
- "other"
- ],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "Indicates how the harms were potentially distributed.",
- "short_name": "Harm Distribution Basis",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "long_string",
- "field_number": "4.7",
- "instant_facet": false,
- "long_description": "Input any notes that may help explain your answers.",
- "long_name": "Input any notes that may help explain your answers.",
- "mongo_type": "string",
- "permitted_values": [],
- "placeholder": "Notes",
- "public": true,
- "required": false,
- "short_description": "Input any notes that may help explain your answers.",
- "short_name": "Notes (special interest intangible harm)",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "maybe",
- "display_type": "enum",
- "field_number": "5.1",
- "instant_facet": false,
- "long_description": "An assessment of whether a special interest intangible harm occurred. This assessment does not consider the context of the intangible harm, if an AI was involved, or if there is characterizable class or subgroup of harmed entities. It is also not assessing if an intangible harm occurred. It is only asking if a special interest intangible harm occurred.",
- "long_name": "Was there a special interest intangible harm or risk of harm?",
- "mongo_type": "string",
- "permitted_values": [
- "yes",
- "no",
- "maybe"
- ],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "An assessment of whether a special interest intangible harm occurred. This assessment does not consider the context of the intangible harm, if an AI was involved, or if there is characterizable class or subgroup of harmed entities. It is also not assessing if an intangible harm occurred. It is only asking if a special interest intangible harm occurred.",
- "short_name": "Special Interest Intangible Harm",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "maybe",
- "display_type": "enum",
- "field_number": "5.2",
- "instant_facet": true,
- "long_description": "An assessment of whether or not an AI system was involved. It is sometimes difficult to judge between an AI and an automated system or expert rules system. In these cases select “maybe”",
- "long_name": "Does the incident involve an AI system?",
- "mongo_type": "string",
- "permitted_values": [
- "yes",
- "no",
- "maybe"
- ],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "Does the incident involve an AI system?",
- "short_name": "AI System",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "maybe",
- "display_type": "enum",
- "field_number": "5.3",
- "instant_facet": true,
- "long_description": "“Yes” if an AI was involved in harm, its behavior can be directly linked to the harm, and the harm may not have occurred if the AI acted differently. “Maybe” if the link is unclear. Otherwise, select “no.”",
- "long_name": "Can an AI be directly and clearly linked to the special interest intangible harm?",
- "mongo_type": "string",
- "permitted_values": [
- "yes",
- "no",
- "maybe"
- ],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "Can an AI be directly and clearly linked to the special interest intangible harm?",
- "short_name": "AI Linked to Special Interest Intangible Harm",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": null,
- "display_type": "bool",
- "field_number": "5.4",
- "instant_facet": true,
- "long_description": "A characterizable class or subgroup are descriptions of different populations of people. Often they are characteristics by which people qualify for special protection by a law, policy, or similar authority.\n\n Sometimes, groups may be characterized by their exposure to the incident via geographical proximity (e.g., ‘visitors to the park’) or participation in an activity (e.g.,‘Twitter users’).",
- "long_name": "There is a characterizable class or subgroup of entities that experienced the harm",
- "mongo_type": "bool",
- "permitted_values": [],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "“Yes” if the harmed entity or entities can be characterized. “No” if there are not any characterizable entities.",
- "short_name": "Harmed Class of Entities",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "maybe",
- "display_type": "enum",
- "field_number": "5.5",
- "instant_facet": true,
- "long_description": "AI tangible harm is determined in a different field. The determination of a special interest intangible harm is not dependant upon the AI tangible harm level.",
- "long_name": "The annotator’s assessment of if an AI special interest intangible harm occurred.",
- "mongo_type": "string",
- "permitted_values": [
- "yes",
- "no",
- "maybe"
- ],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "The annotator’s assessment of if an AI special interest intangible harm occurred.",
- "short_name": "Annotator’s AI special interest intangible harm assessment",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "long_string",
- "field_number": "5.6",
- "instant_facet": false,
- "long_description": "If for 5.5 you select unclear or leave it blank, please provide a brief description of why.\n\nYou can also add notes if you want to provide justification for a level.",
- "long_name": "If for 5.5 you select unclear or leave it blank, please provide a brief description of why.\n\nYou can also add notes if you want to provide justification for a level.",
- "mongo_type": "string",
- "permitted_values": [],
- "placeholder": "Notes",
- "public": true,
- "required": false,
- "short_description": "If for 5.5 you select unclear or leave it blank, please provide a brief description of why.\n\nYou can also add notes if you want to provide justification for a level.",
- "short_name": "Notes (AI special interest intangible harm)",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "string",
- "field_number": "6.1",
- "instant_facet": false,
- "long_description": "The year in which the incident occurred. If there are multiple harms or occurrences of the incident, list the earliest. If a precise date is unavailable, but the available sources provide a basis for estimating the year, estimate. Otherwise, leave blank.",
- "long_name": "The year in which the incident first occurred.",
- "mongo_type": "string",
- "permitted_values": [],
- "placeholder": "YYYY",
- "public": true,
- "required": false,
- "short_description": "The year in which the incident occurred. If there are multiple harms or occurrences of the incident, list the earliest. If a precise date is unavailable, but the available sources provide a basis for estimating the year, estimate. Otherwise, leave blank.\n\nEnter in the format of YYYY",
- "short_name": "Date of Incident Year",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "string",
- "field_number": "6.2",
- "instant_facet": false,
- "long_description": "The month in which the incident occurred. If there are multiple harms or occurrences of the incident, list the earliest. If a precise date is unavailable, but the available sources provide a basis for estimating the month, estimate. Otherwise, leave blank.",
- "long_name": "The month in which the incident first occurred.",
- "mongo_type": "string",
- "permitted_values": [],
- "placeholder": "MM",
- "public": true,
- "required": false,
- "short_description": "The month in which the incident occurred. If there are multiple harms or occurrences of the incident, list the earliest. If a precise date is unavailable, but the available sources provide a basis for estimating the month, estimate. Otherwise, leave blank.\n\nEnter in the format of MM",
- "short_name": "Date of Incident Month",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "string",
- "field_number": "6.3",
- "instant_facet": true,
- "long_description": "The day on which the incident occurred. If a precise date is unavailable, leave blank.\n\nEnter in the format of DD",
- "long_name": "The day on which the first incident occurred.",
- "mongo_type": "string",
- "permitted_values": [],
- "placeholder": "DD",
- "public": true,
- "required": false,
- "short_description": "The day on which the incident occurred. If a precise date is unavailable, leave blank.\n\nEnter in the format of DD",
- "short_name": "Date of Incident Day",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": null,
- "display_type": "bool",
- "field_number": "6.4",
- "instant_facet": false,
- "long_description": "“Yes” if the data was estimated. “No” otherwise.",
- "long_name": "Is the date estimated?",
- "mongo_type": "bool",
- "permitted_values": [],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "“Yes” if the data was estimated. “No” otherwise.",
- "short_name": "Estimated Date",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "maybe",
- "display_type": "enum",
- "field_number": "6.5",
- "instant_facet": true,
- "long_description": "This happens very rarely but is possible. Examples include two chatbots having a conversation with each other, or two autonomous vehicles in a crash.",
- "long_name": "Was the AI interacting with another AI?",
- "mongo_type": "string",
- "permitted_values": [
- "yes",
- "no",
- "maybe"
- ],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "“Yes” if two or more independently operating AI systems were involved. “No” otherwise.",
- "short_name": "Multiple AI Interaction",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "maybe",
- "display_type": "enum",
- "field_number": "6.6",
- "instant_facet": true,
- "long_description": "This question is slightly different from the one in field 2.1.1. That question asks about there being interaction with physical objects–an ability to manipulate or change. A system can be embedded in a physical object and able to interact with the physical environment, e.g. a vacuum robot. A system can be embedded in a physical object and not interact with a physical environment, e.g. a camera system that only records images when the AI detects that dogs are present. AI systems that are accessed through API, web-browser, etc by using a mobile device or computer are not considered to be embedded in hardware systems. They are accessed through hardware.",
- "long_name": "Is the AI embedded in a physical system or have a physical presence?",
- "mongo_type": "string",
- "permitted_values": [
- "yes",
- "no",
- "maybe"
- ],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "“Yes” if the AI is embedded in a physical system. “No” if it is not. “Maybe” if it is unclear.",
- "short_name": "Embedded",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "string",
- "field_number": "6.7",
- "instant_facet": false,
- "long_description": "If the incident occurred at a specific known location, note the city. If there are multiple relevant locations, enter multiple city/state/country values.",
- "long_name": "If the incident occurred at a specific known location, note the city.",
- "mongo_type": "string",
- "permitted_values": [],
- "placeholder": "City",
- "public": true,
- "required": false,
- "short_description": "If the incident occurred at a specific known location, note the city.",
- "short_name": "Location City",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "string",
- "field_number": "6.8",
- "instant_facet": false,
- "long_description": "If the incident occurred at a specific known location, note the state/province. If there are multiple relevant locations, enter multiple city/state/country values.",
- "long_name": "If the incident occurred at a specific known location, note the state/province.",
- "mongo_type": "string",
- "permitted_values": [],
- "placeholder": "State or Province",
- "public": true,
- "required": false,
- "short_description": "If the incident occurred at a specific known location, note the state/province.",
- "short_name": "Location State/Province (two letters)",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "string",
- "field_number": "6.9",
- "instant_facet": false,
- "long_description": "Follow ISO 3166 for the 2-letter country codes.\n\nIf there are multiple relevant locations, enter multiple city/state/country values.",
- "long_name": "If the incident occurred at a specific known location, note the country. ",
- "mongo_type": "string",
- "permitted_values": [],
- "placeholder": "Country",
- "public": true,
- "required": false,
- "short_description": "If the incident occurred at a specific known location, note the country. Follow ISO 3166 for the 2-letter country codes.",
- "short_name": "Location Country (two letters)",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "unclear",
- "display_type": "enum",
- "field_number": "6.10",
- "instant_facet": true,
- "long_description": "Use this reference to map countries to regions: https://www.dhs.gov/geographic-regions",
- "long_name": "Location Region",
- "mongo_type": "string",
- "permitted_values": [
- "Global",
- "Africa",
- "Asia",
- "Caribbean",
- "Central America",
- "Europe",
- "North America",
- "Oceania",
- "South America",
- "unclear"
- ],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "Select the region of the world where the incident occurred. If it occurred in multiple, leave blank.",
- "short_name": "Location Region",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "unclear",
- "display_type": "multi",
- "field_number": "6.11",
- "instant_facet": true,
- "long_description": "Which critical infrastructure sectors were affected, if any?",
- "long_name": "Which critical infrastructure sectors were affected, if any?",
- "mongo_type": "string",
- "permitted_values": [
- "chemical",
- "commercial facilities",
- "communications",
- "critical manufacturing",
- "dams",
- "defense-industrial base",
- "emergency services",
- "energy",
- "financial services",
- "food and agriculture",
- "government facilities",
- "healthcare and public health",
- "information technology",
- "nuclear ",
- "transportation",
- "water and wastewater",
- "Other",
- "unclear"
- ],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "Which critical infrastructure sectors were affected, if any?",
- "short_name": "Infrastructure Sectors",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "list",
- "field_number": "6.12",
- "instant_facet": false,
- "long_description": "A record of any abnormal or atypical operational conditions that occurred. This field is most often blank.",
- "long_name": "A record of any abnormal or atypical operational conditions that occurred.",
- "mongo_type": "array",
- "permitted_values": [],
- "placeholder": "e.g. raining; night; low visibility",
- "public": true,
- "required": false,
- "short_description": "A record of any abnormal or atypical operational conditions that occurred.",
- "short_name": "Operating Conditions",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "long_string",
- "field_number": "6.13",
- "instant_facet": false,
- "long_description": "Input any notes that may help explain your answers.",
- "long_name": "Notes (Environmental and Temporal Characteristics)",
- "mongo_type": "string",
- "permitted_values": [],
- "placeholder": "Notes",
- "public": true,
- "required": false,
- "short_description": "Input any notes that may help explain your answers.",
- "short_name": "Notes (Environmental and Temporal Characteristics)",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "[]",
- "display_type": "object-list",
- "field_number": "7",
- "instant_facet": false,
- "long_description": "Characterizing Entities and the Harm",
- "long_name": "Characterizing Entities and the Harm",
- "mongo_type": "array",
- "permitted_values": [],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "Characterizing Entities and the Harm",
- "short_name": "Entities",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "int",
- "field_number": "8.1",
- "instant_facet": true,
- "long_description": "This field cannot be greater than zero if the harm is anything besides ‘Physical health/safety.’ ",
- "long_name": "How many human lives were lost?",
- "mongo_type": "int",
- "permitted_values": [],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "Indicates the number of deaths reported",
- "short_name": "Lives Lost",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "int",
- "field_number": "8.2",
- "instant_facet": false,
- "long_description": "This field cannot be greater than zero if the harm is anything besides 'Physical health/safety'.\n\nAll reported injuries should count, regardless of their severity level. If a person lost their limb and another person scraped their elbow, both cases would be considered injuries. Do not include the number of deaths in this count.",
- "long_name": "How many humans were injured?",
- "mongo_type": "int",
- "permitted_values": [],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "Indicate the number of injuries reported.",
- "short_name": "Injuries",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": null,
- "display_type": "bool",
- "field_number": "8.3",
- "instant_facet": false,
- "long_description": "Indicates if the amount was estimated.",
- "long_name": "Are any quantities estimated?",
- "mongo_type": "bool",
- "permitted_values": [],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "Indicates if the amount was estimated.",
- "short_name": "Estimated Harm Quantities",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "long_string",
- "field_number": "8.4",
- "instant_facet": false,
- "long_description": "Input any notes that may help explain your answers.",
- "long_name": "Notes ( Tangible Harm Quantities Information)",
- "mongo_type": "string",
- "permitted_values": [],
- "placeholder": "Notes",
- "public": true,
- "required": false,
- "short_description": "Input any notes that may help explain your answers.",
- "short_name": "Notes ( Tangible Harm Quantities Information)",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "long_string",
- "field_number": "9.1",
- "instant_facet": false,
- "long_description": "Describe the AI system in as much detail as the reports will allow.\n\nA high level description of the AI system is sufficient, but if more technical details about the AI system are available, include them in the description as well.",
- "long_name": "Description of the AI system involved",
- "mongo_type": "string",
- "permitted_values": [],
- "placeholder": "Description of the AI system involved",
- "public": true,
- "required": false,
- "short_description": "A description of the AI system (when possible)",
- "short_name": "AI System Description",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "list",
- "field_number": "9.2",
- "instant_facet": false,
- "long_description": "This is a freeform field that can have any value. There could be multiple entries for this field.\n\nCommon ones include\n\n- still images\n- video\n- text\n- speech\n- Personally Identifiable Information\n- structured data\n- other\n- unclear\n\nStill images are static images. Video images consist of moving images. Text and speech data are considered an important category of unstructured data. They consist of written and spoken words that are not in a tabular format. Personally identifiable information is data that can uniquely identify an individual and may contain sensitive information. Structured data is often in a tabular, machine readable format and can typically be used by an AI system without much preprocessing.\n\nAvoid using ‘unstructured data’ data in this field. Instead specify the type of unstructured data; text, images, audio files, etc. It is ok to use ‘structured data’ in this field.\n\nRecord what the media report explicitly states. If the report does not explicitly state an input modality but it is likely that a particular kind of input contributed to the harm or near harm, record that input. If you are still unsure, do not record anything.",
- "long_name": "Description of data inputs to the AI system",
- "mongo_type": "array",
- "permitted_values": [],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "A list of the types of data inputs for the AI system.",
- "short_name": "Data Inputs",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "multi",
- "field_number": "9.3",
- "instant_facet": true,
- "long_description": "Indicate the sector in which the AI system is deployed\n\nThere could be multiple entries for this field.",
- "long_name": "Indicates the sector in which the AI system is deployed",
- "mongo_type": "array",
- "permitted_values": [
- "agriculture, forestry and fishing",
- "mining and quarrying",
- "manufacturing",
- "electricity, gas, steam and air conditioning supply",
- "water supply",
- "construction",
- "wholesale and retail trade",
- "transportation and storage",
- "accommodation and food service activities",
- "information and communication",
- "financial and insurance activities",
- "real estate activities",
- "professional, scientific and technical activities",
- "administrative and support service activities",
- "public administration",
- "defense",
- "law enforcement",
- "Education",
- "human health and social work activities",
- "Arts, entertainment and recreation",
- "other service activities",
- "activities of households as employers",
- "activities of extraterritorial organizations and bodies",
- "other",
- "unclear"
- ],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "Indicate the sector in which the AI system is deployed",
- "short_name": "Sector of Deployment",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "maybe",
- "display_type": "enum",
- "field_number": "9.4",
- "instant_facet": true,
- "long_description": "Indicate whether the AI system is deployed in the public sector. The public sector is the part of the economy that is controlled and operated by the government.",
- "long_name": "Indicates whether the AI system is deployed in the public sector",
- "mongo_type": "string",
- "permitted_values": [
- "yes",
- "no",
- "maybe"
- ],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "Indicate whether the AI system is deployed in the public sector",
- "short_name": "Public Sector Deployment",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "enum",
- "field_number": "9.5",
- "instant_facet": true,
- "long_description": "Autonomy1: The system operates independently without simultaneous human oversight, interaction, or intervention.\n\nAutonomy2: The system operates independently but with human oversight, where a human can observe and override the system’s decisions in real time.\n\nAutonomy3: The system does not independently make decisions but instead provides information to a human who actively chooses to proceed with the AI’s information.",
- "long_name": "Autonomy Level",
- "mongo_type": "string",
- "permitted_values": [
- "Autonomy1",
- "Autonomy2",
- "Autonomy3",
- "unclear"
- ],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "Autonomy1: The system operates independently without simultaneous human oversight, interaction, or intervention.\n\nAutonomy2: The system operates independently but with human oversight, where a human can observe and override the system’s decisions in real time.\n\nAutonomy3: The system does not independently make decisions but instead provides information to a human who actively chooses to proceed with the AI’s information.",
- "short_name": "Autonomy Level",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "long_string",
- "field_number": "9.8",
- "instant_facet": false,
- "long_description": "Input any notes that may help explain your answers.",
- "long_name": "Notes (Information about AI System)",
- "mongo_type": "string",
- "permitted_values": [],
- "placeholder": "Notes",
- "public": true,
- "required": false,
- "short_description": "Input any notes that may help explain your answers.",
- "short_name": "Notes (Information about AI System)",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "unclear",
- "display_type": "enum",
- "field_number": "10.1",
- "instant_facet": true,
- "long_description": "Indicates if the system was designed to do harm. If it was designed to perform harm, the field will indicate if the AI system did or did not create unintended harm–i.e. was the reported harm the harm that AI was expected to perform or a different unexpected harm? ",
- "long_name": "Was the AI intentionally developed or deployed to perform the harm?",
- "mongo_type": "string",
- "permitted_values": [
- "Yes. Intentionally designed to perform harm and did create intended harm",
- "Yes. Intentionally designed to perform harm but created an unintended harm (a different harm may have occurred)",
- "No. Not intentionally designed to perform harm",
- "unclear"
- ],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "Was the AI intentionally developed or deployed to perform the harm?\n\nIf yes, did the AI’s behavior result in unintended or intended harm? ",
- "short_name": "Intentional Harm",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "string",
- "field_number": "10.2",
- "instant_facet": false,
- "long_description": "Describe the type of physical system that the AI was integrated into. ",
- "long_name": "Into what type of physical system was the AI integrated, if any?",
- "mongo_type": "string",
- "permitted_values": [],
- "placeholder": "Physical System Type (e.g. trash sorting robot)",
- "public": true,
- "required": false,
- "short_description": "Describe the type of physical system that the AI was integrated into.",
- "short_name": "Physical System Type",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "list",
- "field_number": "10.3",
- "instant_facet": false,
- "long_description": "Describe the AI’s application.\n\nIt is likely that the annotator will not have enough information to complete this field. If this occurs, enter unclear.\n\nThis is a freeform field. Some possible entries are\n\n- unclear\n- human language technologies\n- computer vision\n- robotics\n- automation and/or optimization\n- other\n\nThe application area of an AI is the high level task that the AI is intended to perform. It does not describe the technical methods by which the AI performs the task. Considering what an AI’s technical methods enable it to do is another way of arriving at what an AI’s application is. \n\nIt is possible for multiple application areas to be involved. When possible pick the principle or domain area, but it is ok to select multiple areas.",
- "long_name": "AI task or core application area",
- "mongo_type": "array",
- "permitted_values": [],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "Describe the AI’s application.",
- "short_name": "AI Task",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "unclear",
- "display_type": "list",
- "field_number": "10.4",
- "instant_facet": false,
- "long_description": "Describe the tools and methods that enable the AI’s application.\n\nIt is likely that the annotator will not have enough information to complete this field. If this occurs, enter unclear\n\nThis is a freeform field. Some possible entries are\n\n- unclear\n- reinforcement learning\n- neural networks\n- decision trees\n- bias mitigation\n- optimization\n- classifier\n- NLP/text analytics\n- continuous learning\n- unsupervised learning\n- supervised learning\n- clustering\n- prediction\n- rules\n- random forest\n\nAI tools and methods are the technical building blocks that enable the AI’s application.",
- "long_name": "AI tools and methods",
- "mongo_type": "array",
- "permitted_values": [],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "Describe the tools and methods that enable the AI’s application.",
- "short_name": "AI tools and methods",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "long_string",
- "field_number": "10.5",
- "instant_facet": false,
- "long_description": "Input any notes that may help explain your answers.",
- "long_name": "Notes (AI Functionality and Techniques)",
- "mongo_type": "string",
- "permitted_values": [],
- "placeholder": "Notes",
- "public": true,
- "required": false,
- "short_description": "Input any notes that may help explain your answers.",
- "short_name": "Notes (AI Functionality and Techniques)",
- "weight": 5
- }
- ],
- "namespace": "CSETv1_Annotator-2",
- "weight": 70
- },
- {
- "__typename": "Taxa",
- "description": "# What is the CSET Taxonomy?\n\nThe Center for Security and Emerging Technology (CSET) taxonomy is\na general taxonomy of AI incidents. There are a large number of \nclassified attributes, including ones pertaining to safety, fairness, \nindustry, geography, timing, and cost. All classifications within \nthe CSET taxonomy are first applied by one CSET annotator and \nreviewed by another CSET annotator before the classifications are \nfinalized. The combination of a rigorously defined coding set and \nthe completeness with which it has been applied make the CSET \ntaxonomy the AIID's gold standard for taxonomies. Nevertheless, \nthe CSET taxonomy is an ongoing effort and you are invited to \nreport any errors you may discover in its application.\n\n## How do I explore the taxonomy?\n\nAll taxonomies can be used to filter incident reports within the \n[Discover Application](/apps/discover). The taxonomy filters work\nsimilarly to how you filter products on an E-commerce website. \nUse the search field at the bottom of the “Classifications” tab to \nfind the taxonomy field you would like to filter with, then click \nthe desired value to apply the filter.\n\n# About CSET\n\nA policy research organization within Georgetown University’s \nWalsh School of Foreign Service, CSET produces data-driven \nresearch at the intersection of security and technology, \nproviding nonpartisan analysis to the policy community. CSET is \ncurrently focusing on the effects of progress in artificial \nintelligence (AI), advanced computing and biotechnology. CSET \nseeks to prepare a new generation of decision-makers to address \nthe challenges and opportunities of emerging technologies. [(Read \nmore)](https://cset.georgetown.edu/about-us/).",
- "field_list": [
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "int",
- "field_number": "1.1",
- "instant_facet": false,
- "long_description": "The number of the incident in the AI Incident Database.",
- "long_name": "The number of the incident in the AI Incident Database.",
- "mongo_type": "int",
- "permitted_values": null,
- "placeholder": null,
- "public": true,
- "required": false,
- "short_description": "The number of the incident in the AI Incident Database.",
- "short_name": "Incident Number",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "string",
- "field_number": "1.2",
- "instant_facet": false,
- "long_description": "An ID designating the individual who classified this incident according to the CSET taxonomy.",
- "long_name": "Person responsible for the annotations",
- "mongo_type": "string",
- "permitted_values": [],
- "placeholder": "Select name here",
- "public": false,
- "required": false,
- "short_description": "This is the researcher that is responsible for applying the classifications of the CSET taxonomy.",
- "short_name": "Annotator",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "enum",
- "field_number": "1.3",
- "instant_facet": false,
- "long_description": "What is the quality assurance status of the CSET classifications for this incident?",
- "long_name": "Where in the annotation process is this incident?",
- "mongo_type": "string",
- "permitted_values": [
- "1. Annotation in progress",
- "2. Initial annotation complete",
- "3. In peer review",
- "4. Peer review complete",
- "5. In quality control",
- "6. Complete and final"
- ],
- "placeholder": "Select process status here",
- "public": false,
- "required": false,
- "short_description": "What is the quality assurance status of the CSET classifications for this incident?",
- "short_name": "Annotation Status",
- "weight": 10
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "string",
- "field_number": "1.4",
- "instant_facet": false,
- "long_description": "The CSET taxonomy assigns individual researchers to each incident as the primary parties responsible for classifying the incident according to the taxonomy. This is the person responsible for assuring the integrity of annotator's classifications.",
- "long_name": "Person responsible for reviewing annotations",
- "mongo_type": "string",
- "permitted_values": [],
- "placeholder": "Select name here",
- "public": false,
- "required": false,
- "short_description": "This is the researcher that is responsible for ensuring the quality of the classifications applied to this incident.",
- "short_name": "Peer Reviewer",
- "weight": 20
- },
- {
- "__typename": "TaxaField_list",
- "default": "false",
- "display_type": "bool",
- "field_number": "1.5",
- "instant_facet": false,
- "long_description": "The peer review process sometimes uncovers issues with the classifications that have been applied by the annotator. This field serves as a flag when there is a need for additional thought and input on the classifications applied",
- "long_name": "Was this incident randomly selected for additional quality control?",
- "mongo_type": "bool",
- "permitted_values": [],
- "placeholder": "",
- "public": false,
- "required": false,
- "short_description": "Has someone flagged a potential issue with this incident's classifications? Annotators should leave this field blank.",
- "short_name": "Quality Control",
- "weight": 15
- },
- {
- "__typename": "TaxaField_list",
- "default": "maybe",
- "display_type": "enum",
- "field_number": "2.1",
- "instant_facet": true,
- "long_description": "“Yes” if the AI system(s) is embedded in hardware that can interact with, affect, and change the physical objects (cars, robots, medical facilities, etc.). Mark “No” if the system cannot. This includes systems that inform, detect, predict, or recommend.",
- "long_name": "Did the incident occur in a domain with physical objects ?",
- "mongo_type": "string",
- "permitted_values": [
- "yes",
- "no",
- "maybe"
- ],
- "placeholder": "",
- "public": null,
- "required": false,
- "short_description": "Did the incident occur in a domain with physical objects ?",
- "short_name": "Physical Objects",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "maybe",
- "display_type": "enum",
- "field_number": "2.2",
- "instant_facet": true,
- "long_description": "“Yes” if the sector in which the AI was used is associated with entertainment. “No” if it was used in a different, clearly identifiable sector. “Maybe” if the sector of use could not be determined.",
- "long_name": "Did the AI incident occur in the entertainment industry?",
- "mongo_type": "string",
- "permitted_values": [
- "yes",
- "no",
- "maybe"
- ],
- "placeholder": "",
- "public": null,
- "required": false,
- "short_description": "Did the AI incident occur in the entertainment industry?",
- "short_name": "Entertainment Industry",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "maybe",
- "display_type": "enum",
- "field_number": "2.3",
- "instant_facet": true,
- "long_description": "“Yes” if the incident is about a report, test, or study of the data and does not discuss an instance of injury, damage, or loss. “Maybe” if it is unclear. Otherwise mark “No.”",
- "long_name": "Was the incident about a report, test, or study of data instead of the AI itself?",
- "mongo_type": "string",
- "permitted_values": [
- "yes",
- "no",
- "maybe"
- ],
- "placeholder": "",
- "public": null,
- "required": false,
- "short_description": "Was the incident about a report, test, or study of data instead of the AI itself?",
- "short_name": "Report, Test, or Study of data",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "maybe",
- "display_type": "enum",
- "field_number": "2.4",
- "instant_facet": true,
- "long_description": "“Yes” if the involved system was deployed or sold to users. “No” if it was not. “Maybe” if there is not enough information or if the use is unclear.",
- "long_name": "Was the reported system (even if AI involvement is unknown) deployed or sold to users?",
- "mongo_type": "string",
- "permitted_values": [
- "yes",
- "no",
- "maybe"
- ],
- "placeholder": "",
- "public": null,
- "required": false,
- "short_description": "Was the reported system (even if AI involvement is unknown) deployed or sold to users?",
- "short_name": "Deployed",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "maybe",
- "display_type": "enum",
- "field_number": "2.5",
- "instant_facet": true,
- "long_description": "“Yes” if it was a test/demonstration performed by developers, producers or journalists in controlled conditions. “No” if it was not a test/demonstration. “No” if the test/demonstration was done by a user. “No” if the test/demonstration was in operational or uncontrolled conditions. “Maybe” otherwise.",
- "long_name": "Was this a test or demonstration of an AI system done by developers, producers or researchers (versus users) in controlled conditions?",
- "mongo_type": "string",
- "permitted_values": [
- "yes",
- "no",
- "maybe"
- ],
- "placeholder": "",
- "public": null,
- "required": false,
- "short_description": "Was this a test or demonstration of an AI system done by developers, producers or researchers (versus users) in controlled conditions?",
- "short_name": "Producer Test in Controlled Conditions",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "maybe",
- "display_type": "enum",
- "field_number": "2.6",
- "instant_facet": true,
- "long_description": "“Yes” if it was a test/demonstration performed by developers, producers or journalists in controlled conditions. “No” if it was not a test/demonstration. “No” if the test/demonstration was done by a user. “No” if the test/demonstration was in controlled or non-operational conditions. “Maybe” otherwise.",
- "long_name": "Was this a test or demonstration of an AI system done by developers, producers or researchers (versus users) in operational conditions?",
- "mongo_type": "string",
- "permitted_values": [
- "yes",
- "no",
- "maybe"
- ],
- "placeholder": "",
- "public": null,
- "required": false,
- "short_description": "Was this a test or demonstration of an AI system done by developers, producers or researchers (versus users) in operational conditions?",
- "short_name": "Producer Test in Operational Conditions",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "maybe",
- "display_type": "enum",
- "field_number": "2.7",
- "instant_facet": true,
- "long_description": "“Yes” if it was a test/demonstration performed by users in controlled conditions. “No” if it was not a test/demonstration. “No” if the test/demonstration was done by developers, producers or researchers. “No” if the test/demonstration was in controlled or non-controlled conditions.“Maybe” otherwise.",
- "long_name": "Was this a test or demonstration done by users in controlled conditions?",
- "mongo_type": "string",
- "permitted_values": [
- "yes",
- "no",
- "maybe"
- ],
- "placeholder": "",
- "public": null,
- "required": false,
- "short_description": "Was this a test or demonstration done by users in controlled conditions?",
- "short_name": "User Test in Controlled Conditions",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "maybe",
- "display_type": "enum",
- "field_number": "2.8",
- "instant_facet": true,
- "long_description": "“Yes” if it was a test/demonstration performed by users in operational conditions. “No” if it was not a test/demonstration. “No” if the test/demonstration was done by developers, producers or researchers. “No” if the test/demonstration was in controlled or non-operational conditions.“Maybe” otherwise.",
- "long_name": "Was this a test or demonstration done by users in operational conditions?",
- "mongo_type": "string",
- "permitted_values": [
- "yes",
- "no",
- "maybe"
- ],
- "placeholder": "",
- "public": null,
- "required": false,
- "short_description": "Was this a test or demonstration done by users in operational conditions?",
- "short_name": "User Test in Operational Conditions",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "maybe",
- "display_type": "enum",
- "field_number": "2.9",
- "instant_facet": false,
- "long_description": "Using the answers to the 8 domain questions, assess if the incident occurred in a domain where harm could be expected to occur. If you are unclear, input “maybe.”",
- "long_name": "Incident occurred in a domain where we could expect harm to occur?",
- "mongo_type": "string",
- "permitted_values": [
- "yes",
- "no",
- "maybe"
- ],
- "placeholder": "",
- "public": null,
- "required": false,
- "short_description": "Incident occurred in a domain where we could likely expect harm to occur?",
- "short_name": "Harm Domain",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "unclear",
- "display_type": "enum",
- "field_number": "3.1",
- "instant_facet": true,
- "long_description": "An assessment of whether tangible harm, imminent tangible harm, or non-imminent tangible harm occurred. This assessment does not consider the context of the tangible harm, if an AI was involved, or if there is an identifiable, specific, and harmed entity. It is also not assessing if an intangible harm occurred. It is only asking if tangible harm occurred and what its imminency was.",
- "long_name": "Did tangible harm (loss, damage or injury ) occur? ",
- "mongo_type": "string",
- "permitted_values": [
- "tangible harm definitively occurred",
- "imminent risk of tangible harm (near miss) did occur",
- "non-imminent risk of tangible harm (an issue) occurred",
- "no tangible harm, near-miss, or issue",
- "unclear"
- ],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "Did tangible harm (loss, damage or injury ) occur? ",
- "short_name": "Tangible Harm",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "maybe",
- "display_type": "enum",
- "field_number": "3.2",
- "instant_facet": true,
- "long_description": "An assessment of whether or not an AI system was involved. It is sometimes difficult to judge between an AI and an automated system or expert rules system. In these cases select “maybe”",
- "long_name": "Does the incident involve an AI system?",
- "mongo_type": "string",
- "permitted_values": [
- "yes",
- "no",
- "maybe"
- ],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "Does the incident involve an AI system?",
- "short_name": "AI System",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "maybe",
- "display_type": "enum",
- "field_number": "3.3",
- "instant_facet": true,
- "long_description": "“Yes” if an AI was involved in harm, its behavior can be directly linked to the harm, and the harm may not have occurred if the AI acted differently. “Maybe” if the link is unclear. Otherwise, select “no.”",
- "long_name": "Can an AI be directly and clearly linked to tangible harm?",
- "mongo_type": "string",
- "permitted_values": [
- "yes",
- "no",
- "maybe"
- ],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "Can an AI be directly and clearly linked to tangible harm?",
- "short_name": "Clear Link to AI",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "bool",
- "field_number": "3.4",
- "instant_facet": true,
- "long_description": "“Yes” if it is theoretically possible to both specify and identify the entity. Having that information is not required. The information just needs to exist and be potentially discoverable. “No” if there are not any potentially identifiable specific entities or if the harmed entities are a class or subgroup that can only be characterized. ",
- "long_name": "There is a potentially identifiable specific entity that experienced the harm",
- "mongo_type": "bool",
- "permitted_values": [],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "A potentially identifiable specific entity that experienced the harm can be characterized or identified.",
- "short_name": "There is a potentially identifiable specific entity that experienced the harm",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "unclear",
- "display_type": "enum",
- "field_number": "3.5",
- "instant_facet": true,
- "long_description": "An assessment of the AI tangible harm level, which takes into account the CSET definitions of AI tangible harm levels, along with the inputs for annotation fields about the AI, harm, chain of harm, and entity.",
- "long_name": "Annotator's AI tangible harm level assessment",
- "mongo_type": "string",
- "permitted_values": [
- "AI tangible harm event",
- "AI tangible harm near-miss",
- "AI tangible harm issue",
- "none",
- "unclear"
- ],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "An assessment of the AI tangible harm level, which takes into account the CSET definitions of AI tangible harm levels, along with the inputs for annotation fields about the AI, harm, chain of harm, and entity. ",
- "short_name": "AI Harm Level",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "long_string",
- "field_number": "3.6",
- "instant_facet": false,
- "long_description": "If for 3.5 you select unclear or leave it blank, please provide a brief description of why.\n\n You can also add notes if you want to provide justification for a level",
- "long_name": "AI Tangible Harm Level Notes",
- "mongo_type": "string",
- "permitted_values": [],
- "placeholder": "Notes about the AI tangible harm level assessment",
- "public": true,
- "required": false,
- "short_description": "Notes about the AI tangible harm level assessment",
- "short_name": "AI Tangible Harm Level Notes",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "maybe",
- "display_type": "enum",
- "field_number": "4.1",
- "instant_facet": true,
- "long_description": "Did this impact people's access to critical or public services (health care, social services, voting, transportation, etc)?",
- "long_name": "Did this impact people's access to critical or public services (health care, social services, voting, transportation, etc)?",
- "mongo_type": "string",
- "permitted_values": [
- "yes",
- "no",
- "maybe"
- ],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "Indicates if people’s access to critical public services was impacted.",
- "short_name": "Impact on Critical Services",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "maybe",
- "display_type": "enum",
- "field_number": "4.2",
- "instant_facet": true,
- "long_description": "Indicate if a violation of human rights, civil rights, civil liberties, or democratic norms occurred.",
- "long_name": "Was this a violation of human rights, civil liberties, civil rights, or democratic norms?",
- "mongo_type": "string",
- "permitted_values": [
- "yes",
- "no",
- "maybe"
- ],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "Indicate if a violation of human rights, civil rights, civil liberties, or democratic norms occurred.",
- "short_name": "Rights Violation",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "maybe",
- "display_type": "enum",
- "field_number": "4.3",
- "instant_facet": true,
- "long_description": "Indicate if a minor was disproportionately targeted or affected",
- "long_name": "Was a minor involved in the incident (disproportionally treated or specifically targeted/affected)",
- "mongo_type": "string",
- "permitted_values": [
- "yes",
- "no",
- "maybe"
- ],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "Was a minor involved in the incident (disproportionally treated or specifically targeted/affected)",
- "short_name": "Involving Minor",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "maybe",
- "display_type": "enum",
- "field_number": "4.4",
- "instant_facet": true,
- "long_description": "Detrimental content can include deepfakes, identity misrepresentation, insults, threats of violence, eating disorder or self harm promotion, extremist content, misinformation, sexual abuse material, and scam emails. Detrimental content in itself is often not harmful, however, it can lead to or instigate injury, damage, or loss.",
- "long_name": "Was detrimental content (misinformation, hate speech) involved?",
- "mongo_type": "string",
- "permitted_values": [
- "yes",
- "no",
- "maybe"
- ],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "Was detrimental content (misinformation, hate speech) involved?",
- "short_name": "Detrimental Content",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "maybe",
- "display_type": "enum",
- "field_number": "4.5",
- "instant_facet": true,
- "long_description": "Protected characteristics include religion, commercial facilities, geography, age, sex, sexual orientation or gender identity, familial status (e.g., having or not having children) or pregnancy, disability, veteran status, genetic information, financial means, race or creed, Ideology, nation of origin, citizenship, and immigrant status.\n\nAt the federal level in the US, age is a protected characteristic for people over the age of 40. Minors are not considered a protected class. For this reason the CSET annotation taxonomy has a separate field to note if a minor was involved.\n\nOnly mark yes if there is clear evidence discrimination occurred. If there are conflicting accounts, mark unsure. Do not mark that discrimination occurred based on expectation alone.",
- "long_name": "Was a group of people or an individual treated differently based upon a protected characteristic?",
- "mongo_type": "string",
- "permitted_values": [
- "yes",
- "no",
- "maybe"
- ],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "Was a group of people treated differently based upon a protected characteristic (e.g. race, ethnicity, creed, immigrant status, color, religion, sex, national origin, age, disability, genetic information)?",
- "short_name": "Protected Characteristic",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "unclear",
- "display_type": "multi",
- "field_number": "4.6",
- "instant_facet": true,
- "long_description": "Multiple can occur.\n\nGenetic information refers to information about a person’s genetic tests or the genetic tests of their relatives. Genetic information can predict the manifestation of a disease or disorder.",
- "long_name": "If harms were potentially unevenly distributed among people, on what basis?",
- "mongo_type": "string",
- "permitted_values": [
- "none",
- "age",
- "disability",
- "familial status (e.g., having or not having children) or pregnancy",
- "financial means",
- "genetic information",
- "geography",
- "ideology",
- "nation of origin, citizenship, immigrant status",
- "race",
- "religion",
- "sex",
- "sexual orientation or gender identity",
- "veteran status",
- "unclear",
- "other"
- ],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "Indicates how the harms were potentially distributed.",
- "short_name": "Harm Distribution Basis",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "long_string",
- "field_number": "4.7",
- "instant_facet": false,
- "long_description": "Input any notes that may help explain your answers.",
- "long_name": "Input any notes that may help explain your answers.",
- "mongo_type": "string",
- "permitted_values": [],
- "placeholder": "Notes",
- "public": true,
- "required": false,
- "short_description": "Input any notes that may help explain your answers.",
- "short_name": "Notes (special interest intangible harm)",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "maybe",
- "display_type": "enum",
- "field_number": "5.1",
- "instant_facet": false,
- "long_description": "An assessment of whether a special interest intangible harm occurred. This assessment does not consider the context of the intangible harm, if an AI was involved, or if there is characterizable class or subgroup of harmed entities. It is also not assessing if an intangible harm occurred. It is only asking if a special interest intangible harm occurred.",
- "long_name": "Was there a special interest intangible harm or risk of harm?",
- "mongo_type": "string",
- "permitted_values": [
- "yes",
- "no",
- "maybe"
- ],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "An assessment of whether a special interest intangible harm occurred. This assessment does not consider the context of the intangible harm, if an AI was involved, or if there is characterizable class or subgroup of harmed entities. It is also not assessing if an intangible harm occurred. It is only asking if a special interest intangible harm occurred.",
- "short_name": "Special Interest Intangible Harm",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "maybe",
- "display_type": "enum",
- "field_number": "5.2",
- "instant_facet": true,
- "long_description": "An assessment of whether or not an AI system was involved. It is sometimes difficult to judge between an AI and an automated system or expert rules system. In these cases select “maybe”",
- "long_name": "Does the incident involve an AI system?",
- "mongo_type": "string",
- "permitted_values": [
- "yes",
- "no",
- "maybe"
- ],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "Does the incident involve an AI system?",
- "short_name": "AI System",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "maybe",
- "display_type": "enum",
- "field_number": "5.3",
- "instant_facet": true,
- "long_description": "“Yes” if an AI was involved in harm, its behavior can be directly linked to the harm, and the harm may not have occurred if the AI acted differently. “Maybe” if the link is unclear. Otherwise, select “no.”",
- "long_name": "Can an AI be directly and clearly linked to the special interest intangible harm?",
- "mongo_type": "string",
- "permitted_values": [
- "yes",
- "no",
- "maybe"
- ],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "Can an AI be directly and clearly linked to the special interest intangible harm?",
- "short_name": "AI Linked to Special Interest Intangible Harm",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": null,
- "display_type": "bool",
- "field_number": "5.4",
- "instant_facet": true,
- "long_description": "A characterizable class or subgroup are descriptions of different populations of people. Often they are characteristics by which people qualify for special protection by a law, policy, or similar authority.\n\n Sometimes, groups may be characterized by their exposure to the incident via geographical proximity (e.g., ‘visitors to the park’) or participation in an activity (e.g.,‘Twitter users’).",
- "long_name": "There is a characterizable class or subgroup of entities that experienced the harm",
- "mongo_type": "bool",
- "permitted_values": [],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "“Yes” if the harmed entity or entities can be characterized. “No” if there are not any characterizable entities.",
- "short_name": "Harmed Class of Entities",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "maybe",
- "display_type": "enum",
- "field_number": "5.5",
- "instant_facet": true,
- "long_description": "AI tangible harm is determined in a different field. The determination of a special interest intangible harm is not dependant upon the AI tangible harm level.",
- "long_name": "The annotator’s assessment of if an AI special interest intangible harm occurred.",
- "mongo_type": "string",
- "permitted_values": [
- "yes",
- "no",
- "maybe"
- ],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "The annotator’s assessment of if an AI special interest intangible harm occurred.",
- "short_name": "Annotator’s AI special interest intangible harm assessment",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "long_string",
- "field_number": "5.6",
- "instant_facet": false,
- "long_description": "If for 5.5 you select unclear or leave it blank, please provide a brief description of why.\n\nYou can also add notes if you want to provide justification for a level.",
- "long_name": "If for 5.5 you select unclear or leave it blank, please provide a brief description of why.\n\nYou can also add notes if you want to provide justification for a level.",
- "mongo_type": "string",
- "permitted_values": [],
- "placeholder": "Notes",
- "public": true,
- "required": false,
- "short_description": "If for 5.5 you select unclear or leave it blank, please provide a brief description of why.\n\nYou can also add notes if you want to provide justification for a level.",
- "short_name": "Notes (AI special interest intangible harm)",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "string",
- "field_number": "6.1",
- "instant_facet": false,
- "long_description": "The year in which the incident occurred. If there are multiple harms or occurrences of the incident, list the earliest. If a precise date is unavailable, but the available sources provide a basis for estimating the year, estimate. Otherwise, leave blank.",
- "long_name": "The year in which the incident first occurred.",
- "mongo_type": "string",
- "permitted_values": [],
- "placeholder": "YYYY",
- "public": true,
- "required": false,
- "short_description": "The year in which the incident occurred. If there are multiple harms or occurrences of the incident, list the earliest. If a precise date is unavailable, but the available sources provide a basis for estimating the year, estimate. Otherwise, leave blank.\n\nEnter in the format of YYYY",
- "short_name": "Date of Incident Year",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "string",
- "field_number": "6.2",
- "instant_facet": false,
- "long_description": "The month in which the incident occurred. If there are multiple harms or occurrences of the incident, list the earliest. If a precise date is unavailable, but the available sources provide a basis for estimating the month, estimate. Otherwise, leave blank.",
- "long_name": "The month in which the incident first occurred.",
- "mongo_type": "string",
- "permitted_values": [],
- "placeholder": "MM",
- "public": true,
- "required": false,
- "short_description": "The month in which the incident occurred. If there are multiple harms or occurrences of the incident, list the earliest. If a precise date is unavailable, but the available sources provide a basis for estimating the month, estimate. Otherwise, leave blank.\n\nEnter in the format of MM",
- "short_name": "Date of Incident Month",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "string",
- "field_number": "6.3",
- "instant_facet": true,
- "long_description": "The day on which the incident occurred. If a precise date is unavailable, leave blank.\n\nEnter in the format of DD",
- "long_name": "The day on which the first incident occurred.",
- "mongo_type": "string",
- "permitted_values": [],
- "placeholder": "DD",
- "public": true,
- "required": false,
- "short_description": "The day on which the incident occurred. If a precise date is unavailable, leave blank.\n\nEnter in the format of DD",
- "short_name": "Date of Incident Day",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": null,
- "display_type": "bool",
- "field_number": "6.4",
- "instant_facet": false,
- "long_description": "“Yes” if the data was estimated. “No” otherwise.",
- "long_name": "Is the date estimated?",
- "mongo_type": "bool",
- "permitted_values": [],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "“Yes” if the data was estimated. “No” otherwise.",
- "short_name": "Estimated Date",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "maybe",
- "display_type": "enum",
- "field_number": "6.5",
- "instant_facet": true,
- "long_description": "This happens very rarely but is possible. Examples include two chatbots having a conversation with each other, or two autonomous vehicles in a crash.",
- "long_name": "Was the AI interacting with another AI?",
- "mongo_type": "string",
- "permitted_values": [
- "yes",
- "no",
- "maybe"
- ],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "“Yes” if two or more independently operating AI systems were involved. “No” otherwise.",
- "short_name": "Multiple AI Interaction",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "maybe",
- "display_type": "enum",
- "field_number": "6.6",
- "instant_facet": true,
- "long_description": "This question is slightly different from the one in field 2.1.1. That question asks about there being interaction with physical objects–an ability to manipulate or change. A system can be embedded in a physical object and able to interact with the physical environment, e.g. a vacuum robot. A system can be embedded in a physical object and not interact with a physical environment, e.g. a camera system that only records images when the AI detects that dogs are present. AI systems that are accessed through API, web-browser, etc by using a mobile device or computer are not considered to be embedded in hardware systems. They are accessed through hardware.",
- "long_name": "Is the AI embedded in a physical system or have a physical presence?",
- "mongo_type": "string",
- "permitted_values": [
- "yes",
- "no",
- "maybe"
- ],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "“Yes” if the AI is embedded in a physical system. “No” if it is not. “Maybe” if it is unclear.",
- "short_name": "Embedded",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "string",
- "field_number": "6.7",
- "instant_facet": false,
- "long_description": "If the incident occurred at a specific known location, note the city. If there are multiple relevant locations, enter multiple city/state/country values.",
- "long_name": "If the incident occurred at a specific known location, note the city.",
- "mongo_type": "string",
- "permitted_values": [],
- "placeholder": "City",
- "public": true,
- "required": false,
- "short_description": "If the incident occurred at a specific known location, note the city.",
- "short_name": "Location City",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "string",
- "field_number": "6.8",
- "instant_facet": false,
- "long_description": "If the incident occurred at a specific known location, note the state/province. If there are multiple relevant locations, enter multiple city/state/country values.",
- "long_name": "If the incident occurred at a specific known location, note the state/province.",
- "mongo_type": "string",
- "permitted_values": [],
- "placeholder": "State or Province",
- "public": true,
- "required": false,
- "short_description": "If the incident occurred at a specific known location, note the state/province.",
- "short_name": "Location State/Province (two letters)",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "string",
- "field_number": "6.9",
- "instant_facet": false,
- "long_description": "Follow ISO 3166 for the 2-letter country codes.\n\nIf there are multiple relevant locations, enter multiple city/state/country values.",
- "long_name": "If the incident occurred at a specific known location, note the country. ",
- "mongo_type": "string",
- "permitted_values": [],
- "placeholder": "Country",
- "public": true,
- "required": false,
- "short_description": "If the incident occurred at a specific known location, note the country. Follow ISO 3166 for the 2-letter country codes.",
- "short_name": "Location Country (two letters)",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "unclear",
- "display_type": "enum",
- "field_number": "6.10",
- "instant_facet": true,
- "long_description": "Use this reference to map countries to regions: https://www.dhs.gov/geographic-regions",
- "long_name": "Location Region",
- "mongo_type": "string",
- "permitted_values": [
- "Global",
- "Africa",
- "Asia",
- "Caribbean",
- "Central America",
- "Europe",
- "North America",
- "Oceania",
- "South America",
- "unclear"
- ],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "Select the region of the world where the incident occurred. If it occurred in multiple, leave blank.",
- "short_name": "Location Region",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "unclear",
- "display_type": "multi",
- "field_number": "6.11",
- "instant_facet": true,
- "long_description": "Which critical infrastructure sectors were affected, if any?",
- "long_name": "Which critical infrastructure sectors were affected, if any?",
- "mongo_type": "string",
- "permitted_values": [
- "chemical",
- "commercial facilities",
- "communications",
- "critical manufacturing",
- "dams",
- "defense-industrial base",
- "emergency services",
- "energy",
- "financial services",
- "food and agriculture",
- "government facilities",
- "healthcare and public health",
- "information technology",
- "nuclear ",
- "transportation",
- "water and wastewater",
- "Other",
- "unclear"
- ],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "Which critical infrastructure sectors were affected, if any?",
- "short_name": "Infrastructure Sectors",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "list",
- "field_number": "6.12",
- "instant_facet": false,
- "long_description": "A record of any abnormal or atypical operational conditions that occurred. This field is most often blank.",
- "long_name": "A record of any abnormal or atypical operational conditions that occurred.",
- "mongo_type": "array",
- "permitted_values": [],
- "placeholder": "e.g. raining; night; low visibility",
- "public": true,
- "required": false,
- "short_description": "A record of any abnormal or atypical operational conditions that occurred.",
- "short_name": "Operating Conditions",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "long_string",
- "field_number": "6.13",
- "instant_facet": false,
- "long_description": "Input any notes that may help explain your answers.",
- "long_name": "Notes (Environmental and Temporal Characteristics)",
- "mongo_type": "string",
- "permitted_values": [],
- "placeholder": "Notes",
- "public": true,
- "required": false,
- "short_description": "Input any notes that may help explain your answers.",
- "short_name": "Notes (Environmental and Temporal Characteristics)",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "[]",
- "display_type": "object-list",
- "field_number": "7",
- "instant_facet": false,
- "long_description": "Characterizing Entities and the Harm",
- "long_name": "Characterizing Entities and the Harm",
- "mongo_type": "array",
- "permitted_values": [],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "Characterizing Entities and the Harm",
- "short_name": "Entities",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "int",
- "field_number": "8.1",
- "instant_facet": true,
- "long_description": "This field cannot be greater than zero if the harm is anything besides ‘Physical health/safety.’ ",
- "long_name": "How many human lives were lost?",
- "mongo_type": "int",
- "permitted_values": [],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "Indicates the number of deaths reported",
- "short_name": "Lives Lost",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "int",
- "field_number": "8.2",
- "instant_facet": false,
- "long_description": "This field cannot be greater than zero if the harm is anything besides 'Physical health/safety'.\n\nAll reported injuries should count, regardless of their severity level. If a person lost their limb and another person scraped their elbow, both cases would be considered injuries. Do not include the number of deaths in this count.",
- "long_name": "How many humans were injured?",
- "mongo_type": "int",
- "permitted_values": [],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "Indicate the number of injuries reported.",
- "short_name": "Injuries",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": null,
- "display_type": "bool",
- "field_number": "8.3",
- "instant_facet": false,
- "long_description": "Indicates if the amount was estimated.",
- "long_name": "Are any quantities estimated?",
- "mongo_type": "bool",
- "permitted_values": [],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "Indicates if the amount was estimated.",
- "short_name": "Estimated Harm Quantities",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "long_string",
- "field_number": "8.4",
- "instant_facet": false,
- "long_description": "Input any notes that may help explain your answers.",
- "long_name": "Notes ( Tangible Harm Quantities Information)",
- "mongo_type": "string",
- "permitted_values": [],
- "placeholder": "Notes",
- "public": true,
- "required": false,
- "short_description": "Input any notes that may help explain your answers.",
- "short_name": "Notes ( Tangible Harm Quantities Information)",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "long_string",
- "field_number": "9.1",
- "instant_facet": false,
- "long_description": "Describe the AI system in as much detail as the reports will allow.\n\nA high level description of the AI system is sufficient, but if more technical details about the AI system are available, include them in the description as well.",
- "long_name": "Description of the AI system involved",
- "mongo_type": "string",
- "permitted_values": [],
- "placeholder": "Description of the AI system involved",
- "public": true,
- "required": false,
- "short_description": "A description of the AI system (when possible)",
- "short_name": "AI System Description",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "list",
- "field_number": "9.2",
- "instant_facet": false,
- "long_description": "This is a freeform field that can have any value. There could be multiple entries for this field.\n\nCommon ones include\n\n- still images\n- video\n- text\n- speech\n- Personally Identifiable Information\n- structured data\n- other\n- unclear\n\nStill images are static images. Video images consist of moving images. Text and speech data are considered an important category of unstructured data. They consist of written and spoken words that are not in a tabular format. Personally identifiable information is data that can uniquely identify an individual and may contain sensitive information. Structured data is often in a tabular, machine readable format and can typically be used by an AI system without much preprocessing.\n\nAvoid using ‘unstructured data’ data in this field. Instead specify the type of unstructured data; text, images, audio files, etc. It is ok to use ‘structured data’ in this field.\n\nRecord what the media report explicitly states. If the report does not explicitly state an input modality but it is likely that a particular kind of input contributed to the harm or near harm, record that input. If you are still unsure, do not record anything.",
- "long_name": "Description of data inputs to the AI system",
- "mongo_type": "array",
- "permitted_values": [],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "A list of the types of data inputs for the AI system.",
- "short_name": "Data Inputs",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "multi",
- "field_number": "9.3",
- "instant_facet": true,
- "long_description": "Indicate the sector in which the AI system is deployed\n\nThere could be multiple entries for this field.",
- "long_name": "Indicates the sector in which the AI system is deployed",
- "mongo_type": "array",
- "permitted_values": [
- "agriculture, forestry and fishing",
- "mining and quarrying",
- "manufacturing",
- "electricity, gas, steam and air conditioning supply",
- "water supply",
- "construction",
- "wholesale and retail trade",
- "transportation and storage",
- "accommodation and food service activities",
- "information and communication",
- "financial and insurance activities",
- "real estate activities",
- "professional, scientific and technical activities",
- "administrative and support service activities",
- "public administration",
- "defense",
- "law enforcement",
- "Education",
- "human health and social work activities",
- "Arts, entertainment and recreation",
- "other service activities",
- "activities of households as employers",
- "activities of extraterritorial organizations and bodies",
- "other",
- "unclear"
- ],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "Indicate the sector in which the AI system is deployed",
- "short_name": "Sector of Deployment",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "maybe",
- "display_type": "enum",
- "field_number": "9.4",
- "instant_facet": true,
- "long_description": "Indicate whether the AI system is deployed in the public sector. The public sector is the part of the economy that is controlled and operated by the government.",
- "long_name": "Indicates whether the AI system is deployed in the public sector",
- "mongo_type": "string",
- "permitted_values": [
- "yes",
- "no",
- "maybe"
- ],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "Indicate whether the AI system is deployed in the public sector",
- "short_name": "Public Sector Deployment",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "enum",
- "field_number": "9.5",
- "instant_facet": true,
- "long_description": "Autonomy1: The system operates independently without simultaneous human oversight, interaction, or intervention.\n\nAutonomy2: The system operates independently but with human oversight, where a human can observe and override the system’s decisions in real time.\n\nAutonomy3: The system does not independently make decisions but instead provides information to a human who actively chooses to proceed with the AI’s information.",
- "long_name": "Autonomy Level",
- "mongo_type": "string",
- "permitted_values": [
- "Autonomy1",
- "Autonomy2",
- "Autonomy3",
- "unclear"
- ],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "Autonomy1: The system operates independently without simultaneous human oversight, interaction, or intervention.\n\nAutonomy2: The system operates independently but with human oversight, where a human can observe and override the system’s decisions in real time.\n\nAutonomy3: The system does not independently make decisions but instead provides information to a human who actively chooses to proceed with the AI’s information.",
- "short_name": "Autonomy Level",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "long_string",
- "field_number": "9.8",
- "instant_facet": false,
- "long_description": "Input any notes that may help explain your answers.",
- "long_name": "Notes (Information about AI System)",
- "mongo_type": "string",
- "permitted_values": [],
- "placeholder": "Notes",
- "public": true,
- "required": false,
- "short_description": "Input any notes that may help explain your answers.",
- "short_name": "Notes (Information about AI System)",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "unclear",
- "display_type": "enum",
- "field_number": "10.1",
- "instant_facet": true,
- "long_description": "Indicates if the system was designed to do harm. If it was designed to perform harm, the field will indicate if the AI system did or did not create unintended harm–i.e. was the reported harm the harm that AI was expected to perform or a different unexpected harm? ",
- "long_name": "Was the AI intentionally developed or deployed to perform the harm?",
- "mongo_type": "string",
- "permitted_values": [
- "Yes. Intentionally designed to perform harm and did create intended harm",
- "Yes. Intentionally designed to perform harm but created an unintended harm (a different harm may have occurred)",
- "No. Not intentionally designed to perform harm",
- "unclear"
- ],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "Was the AI intentionally developed or deployed to perform the harm?\n\nIf yes, did the AI’s behavior result in unintended or intended harm? ",
- "short_name": "Intentional Harm",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "string",
- "field_number": "10.2",
- "instant_facet": false,
- "long_description": "Describe the type of physical system that the AI was integrated into. ",
- "long_name": "Into what type of physical system was the AI integrated, if any?",
- "mongo_type": "string",
- "permitted_values": [],
- "placeholder": "Physical System Type (e.g. trash sorting robot)",
- "public": true,
- "required": false,
- "short_description": "Describe the type of physical system that the AI was integrated into.",
- "short_name": "Physical System Type",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "list",
- "field_number": "10.3",
- "instant_facet": false,
- "long_description": "Describe the AI’s application.\n\nIt is likely that the annotator will not have enough information to complete this field. If this occurs, enter unclear.\n\nThis is a freeform field. Some possible entries are\n\n- unclear\n- human language technologies\n- computer vision\n- robotics\n- automation and/or optimization\n- other\n\nThe application area of an AI is the high level task that the AI is intended to perform. It does not describe the technical methods by which the AI performs the task. Considering what an AI’s technical methods enable it to do is another way of arriving at what an AI’s application is. \n\nIt is possible for multiple application areas to be involved. When possible pick the principle or domain area, but it is ok to select multiple areas.",
- "long_name": "AI task or core application area",
- "mongo_type": "array",
- "permitted_values": [],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "Describe the AI’s application.",
- "short_name": "AI Task",
- "weight": 5
- },
- {
- "__typename": "TaxaField_list",
- "default": "unclear",
- "display_type": "list",
- "field_number": "10.4",
- "instant_facet": false,
- "long_description": "Describe the tools and methods that enable the AI’s application.\n\nIt is likely that the annotator will not have enough information to complete this field. If this occurs, enter unclear\n\nThis is a freeform field. Some possible entries are\n\n- unclear\n- reinforcement learning\n- neural networks\n- decision trees\n- bias mitigation\n- optimization\n- classifier\n- NLP/text analytics\n- continuous learning\n- unsupervised learning\n- supervised learning\n- clustering\n- prediction\n- rules\n- random forest\n\nAI tools and methods are the technical building blocks that enable the AI’s application.",
- "long_name": "AI tools and methods",
- "mongo_type": "array",
- "permitted_values": [],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "Describe the tools and methods that enable the AI’s application.",
- "short_name": "AI tools and methods",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "long_string",
- "field_number": "10.5",
- "instant_facet": false,
- "long_description": "Input any notes that may help explain your answers.",
- "long_name": "Notes (AI Functionality and Techniques)",
- "mongo_type": "string",
- "permitted_values": [],
- "placeholder": "Notes",
- "public": true,
- "required": false,
- "short_description": "Input any notes that may help explain your answers.",
- "short_name": "Notes (AI Functionality and Techniques)",
- "weight": 5
- }
- ],
- "namespace": "CSETv1_Annotator-3",
- "weight": 70
- },
- {
- "__typename": "Taxa",
- "description": "## What is the GMF Taxonomy?\n\nThe Goals, Methods, and Failures (GMF) taxonomy is a failure \ncause analysis taxonomy interrelating the goals of the system \ndeployment, the system's methods, and their likely failings. \nDetails on the process are available in the recent work published \nfor [SafeAI paper](https://arxiv.org/abs/2211.07280).\n\n## How do I explore the taxonomy?\n\nAll taxonomies can be used to filter incident reports within the \nDiscover Application. The taxonomy filters work similarly to how \nyou filter products on an E-commerce website. Use the search \nfield at the bottom of the “Classifications” tab to find the \ntaxonomy field you would like to filter with, then click the \ndesired value to apply the filter.\n\n## About the Responsible AI Collaborative\n\nThe AI Incident Database is a collaborative project of many \npeople and organizations. Details on the people and organizations \ncontributing to this particular taxonomy will appear here, while \nyou can learn more about the Collab itself on the incident \ndatabase [home](https://incidentdatabase.ai/) and \n[about](https://incidentdatabase.ai/about/) pages.\n\nThe maintainers of this taxonomy include,\n\n* [Nikiforos Pittaras](https://www.linkedin.com/in/nikiforos-pittaras/)\n* [Sean McGregor](https://www.linkedin.com/in/seanbmcgregor/)",
- "field_list": [
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "list",
- "field_number": "1.1.1",
- "instant_facet": true,
- "long_description": "An AI Goal which is almost certainly pursued by the AI system referenced in the incident.",
- "long_name": "Known AI Goal",
- "mongo_type": "array",
- "permitted_values": [],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "An AI Goal which is almost certainly pursued by the AI system referenced in the incident.",
- "short_name": "Known AI Goal",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "object-list",
- "field_number": "1.1.2",
- "instant_facet": false,
- "long_description": "One or more snippets that justify the classification.",
- "long_name": "Known AI Goal Snippets",
- "mongo_type": "array",
- "permitted_values": [],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "One or more snippets that justify the classification.",
- "short_name": "Known AI Goal Snippets",
- "weight": 40
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "long_string",
- "field_number": "1.1.3",
- "instant_facet": false,
- "long_description": "Free text with comments justifying the chosen classification (e.g. based on information on selected snippets and technical analysis), if needed.",
- "long_name": "Known AI Goal Classification Discussion",
- "mongo_type": "string",
- "permitted_values": [],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "Free text with comments justifying the chosen classification (e.g. based on information on selected snippets and technical analysis), if needed.",
- "short_name": "Known AI Goal Classification Discussion",
- "weight": 40
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "list",
- "field_number": "1.2.1",
- "instant_facet": true,
- "long_description": "An AI Goal which is probably pursued by the AI system referenced in the incident.",
- "long_name": "Potential AI Goal",
- "mongo_type": "array",
- "permitted_values": [],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "An AI Goal which is probably pursued by the AI system referenced in the incident.",
- "short_name": "Potential AI Goal",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "object-list",
- "field_number": "1.2.2",
- "instant_facet": false,
- "long_description": "One or more snippets that justify the classification.",
- "long_name": "Potential AI Goal Snippets",
- "mongo_type": "array",
- "permitted_values": [],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "One or more snippets that justify the classification.",
- "short_name": "Potential AI Goal Snippets",
- "weight": 40
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "long_string",
- "field_number": "1.2.3",
- "instant_facet": false,
- "long_description": "Free text with comments justifying the chosen classification (e.g. based on information on selected snippets and technical analysis), if needed.",
- "long_name": "Potential AI Goal Classification Discussion",
- "mongo_type": "string",
- "permitted_values": [],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "Free text with comments justifying the chosen classification (e.g. based on information on selected snippets and technical analysis), if needed.",
- "short_name": "Potential AI Goal Classification Discussion",
- "weight": 40
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "list",
- "field_number": "2.1.1",
- "instant_facet": true,
- "long_description": "An AI Technology which is almost certainly a part of the implementation of the AI system referenced in the incident.",
- "long_name": "Known AI Technology",
- "mongo_type": "array",
- "permitted_values": [],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "An AI Technology which is almost certainly a part of the implementation of the AI system referenced in the incident.",
- "short_name": "Known AI Technology",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "object-list",
- "field_number": "2.1.2",
- "instant_facet": false,
- "long_description": "One or more snippets that justify the classification.",
- "long_name": "Known AI Technology Snippets",
- "mongo_type": "array",
- "permitted_values": [],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "One or more snippets that justify the classification.",
- "short_name": "Known AI Technology Snippets",
- "weight": 40
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "long_string",
- "field_number": "2.1.3",
- "instant_facet": false,
- "long_description": "Free text with comments justifying the chosen classification (e.g. based on information on selected snippets and technical analysis), if needed.",
- "long_name": "Known AI Technology Classification Discussion",
- "mongo_type": "string",
- "permitted_values": [],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "Free text with comments justifying the chosen classification (e.g. based on information on selected snippets and technical analysis), if needed.",
- "short_name": "Known AI Technology Classification Discussion",
- "weight": 40
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "list",
- "field_number": "2.2.1",
- "instant_facet": true,
- "long_description": "An AI Method / Technology which probably is a part of the implementation of the AI system referenced in the incident.",
- "long_name": "Potential AI Technology",
- "mongo_type": "array",
- "permitted_values": [],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "An AI Method / Technology which probably is a part of the implementation of the AI system referenced in the incident.",
- "short_name": "Potential AI Technology",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "object-list",
- "field_number": "2.2.2",
- "instant_facet": false,
- "long_description": "One or more snippets that justify the classification.",
- "long_name": "Potential AI Technology Snippets",
- "mongo_type": "array",
- "permitted_values": [],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "One or more snippets that justify the classification.",
- "short_name": "Potential AI Technology Snippets",
- "weight": 40
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "long_string",
- "field_number": "2.2.3",
- "instant_facet": false,
- "long_description": "Free text with comments justifying the chosen classification (e.g. based on information on selected snippets and technical analysis), if needed.",
- "long_name": "Potential AI Technology Classification Discussion",
- "mongo_type": "string",
- "permitted_values": [],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "Free text with comments justifying the chosen classification (e.g. based on information on selected snippets and technical analysis), if needed.",
- "short_name": "Potential AI Technology Classification Discussion",
- "weight": 40
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "list",
- "field_number": "3.1.1",
- "instant_facet": true,
- "long_description": "An AI Technical Failure which almost certainly contributes to the AI system failure referenced in the incident.",
- "long_name": "Known AI Technical Failure",
- "mongo_type": "array",
- "permitted_values": [],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "An AI Technical Failure which almost certainly contributes to the AI system failure referenced in the incident.",
- "short_name": "Known AI Technical Failure",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "object-list",
- "field_number": "3.1.2",
- "instant_facet": false,
- "long_description": "One or more snippets that justify the classification.",
- "long_name": "Snippets",
- "mongo_type": "array",
- "permitted_values": [],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "One or more snippets that justify the classification.",
- "short_name": "Known AI Technical Failure Snippets",
- "weight": 40
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "long_string",
- "field_number": "3.1.3",
- "instant_facet": false,
- "long_description": "Free text with comments justifying the chosen classification (e.g. based on information on selected snippets and technical analysis), if needed.",
- "long_name": "Known AI Technical Failure Classification Discussion",
- "mongo_type": "string",
- "permitted_values": [],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "Free text with comments justifying the chosen classification (e.g. based on information on selected snippets and technical analysis), if needed.",
- "short_name": "Known AI Technical Failure Classification Discussion",
- "weight": 40
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "list",
- "field_number": "3.2.1",
- "instant_facet": true,
- "long_description": "An AI Technical Failure which probably contributes to the AI system failure referenced in the incident.",
- "long_name": "Potential AI Technical Failure",
- "mongo_type": "array",
- "permitted_values": [],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "An AI Technical Failure which probably contributes to the AI system failure referenced in the incident.",
- "short_name": "Potential AI Technical Failure",
- "weight": 50
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "object-list",
- "field_number": "3.2.2",
- "instant_facet": false,
- "long_description": "One or more snippets that justify the classification.",
- "long_name": "Potential AI Technical Failure Snippets",
- "mongo_type": "array",
- "permitted_values": [],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "One or more snippets that justify the classification.",
- "short_name": "Potential AI Technical Failure Snippets",
- "weight": 40
- },
- {
- "__typename": "TaxaField_list",
- "default": "",
- "display_type": "long_string",
- "field_number": "3.2.3",
- "instant_facet": false,
- "long_description": "Free text with comments justifying the chosen classification (e.g. based on information on selected snippets and technical analysis), if needed.",
- "long_name": "Potential AI Technical Failure Classification Discussion",
- "mongo_type": "string",
- "permitted_values": [],
- "placeholder": "",
- "public": true,
- "required": false,
- "short_description": "Free text with comments justifying the chosen classification (e.g. based on information on selected snippets and technical analysis), if needed.",
- "short_name": "Potential AI Technical Failure Classification Discussion",
- "weight": 40
- }
- ],
- "namespace": "GMF",
- "weight": 70
- }
- ]
- }
-}
diff --git a/site/gatsby-site/cypress/fixtures/candidates/newsArticles.json b/site/gatsby-site/cypress/fixtures/candidates/newsArticles.json
deleted file mode 100644
index c1eae80312..0000000000
--- a/site/gatsby-site/cypress/fixtures/candidates/newsArticles.json
+++ /dev/null
@@ -1,57 +0,0 @@
-{
- "data": {
- "candidates": [
- {
- "__typename": "Candidate",
- "date_published": "2022-09-22",
- "dismissed": null,
- "matching_keywords": ["AI"],
- "similarity": 0.9999999999999999,
- "text": "![An excerpt from Zarya of the Dawn, which received a US copyright\nregistration.](https://cdn.arstechnica.net/wp-\ncontent/uploads/2022/09/zarya_hero-800x448.jpg)\n\n[Enlarge](https://cdn.arstechnica.net/wp-\ncontent/uploads/2022/09/zarya_hero.jpg) /\n\nAn excerpt from the AI-assisted comic book\n\n_Zarya of the Dawn_\n\n, which received a US copyright registration.\n\nIn what might be a first, a New York-based artist named Kris Kashtanova has\nreceived US copyright registration on their graphic novel that features AI-\ngenerated artwork created by [latent\ndiffusion](https://www.louisbouchard.ai/latent-diffusion-models/) AI,\naccording to [their Instagram feed](https://www.instagram.com/p/CivS3iiPigt/)\nand confirmed through a public records search by Ars Technica.\n\nThe registration, effective September 15, applies to a comic book called\n[_Zarya of the Dawn_](https://aicomicbooks.com/). Kashtanova created the\nartwork for _Zarya_ using Midjourney, a commercial image synthesis service. In\ntheir post announcing the news from Tuesday, Kashtanova wrote:\n\n\u003e I got Copyright from the Copyright Office of the USA on my Ai-generated\n\u003e graphic novel. I was open how it was made and put Midjourney on the cover\n\u003e page. It wasn’t altered in any other way. Just the way you saw it here.\n\u003e\n\u003e I tried to make a case that we do own copyright when we make something using\n\u003e AI. I registered it as visual arts work. My certificate is in the mail and I\n\u003e got the number and a confirmation today that it was approved.\n\u003e\n\u003e My friend lawyer gave me this idea and I decided to make a precedent.\n\nGoing by their announcement, Kashtanova approached the registration by saying\nthe artwork was AI-assisted and not created entirely by the AI. Kashtanova\nwrote the comic book story, created the layout, and made artistic choices to\npiece the images together.\n\nIt's likely that artists have registered works created by machine or\nalgorithms before because the history of generative art [extends back to the\n1960s](https://en.wikipedia.org/wiki/Generative_art#History). But this is the\nfirst time we know of that an artist has registered a copyright for art\ncreated by the recent round of image synthesis models powered by latent\ndiffusion, which has been a [contentious\nsubject](https://arstechnica.com/information-technology/2022/09/artists-begin-\nselling-ai-generated-artwork-on-stock-photography-websites/) among artists.\n\nSpeculation about whether AI artwork can be copyrighted has been the subject\nof many articles over the past few months, and just yesterday, [we wrote\nabout](https://arstechnica.com/information-technology/2022/09/fearing-\ncopyright-issues-getty-images-bans-ai-generated-artwork/) Getty Images banning\nAI-generated artwork on its site over unresolved issues about copyright and\nethics issues.\n\nDespite popular misconception (explained in the Getty piece), the US Copyright\nOffice has not ruled against copyright on AI artworks. Instead, it [ruled\nout](https://www.theverge.com/2022/2/21/22944335/us-copyright-office-reject-\nai-generated-art-recent-entrance-to-paradise) copyright registered to an AI as\nthe author instead of a human.\n\n_Zarya of the Dawn_ , which features a main character with an uncanny\nresemblance to the actress [Zendaya](https://en.wikipedia.org/wiki/Zendaya),\nis available for free through the AI Comic Books website. AI artists often use\ncelebrity names in their prompts to achieve consistency between images, since\nthere are many celebrity photographs in the data set used to train Midjourney.\n\n",
- "title": "Artist receives first known US copyright registration for latent diffusion AI art | Ars Technica",
- "url": "https://arstechnica.com/?p=1883867"
- },
- {
- "__typename": "Candidate",
- "date_published": "2022-09-22",
- "dismissed": null,
- "matching_keywords": ["AI", "neural net"],
- "matching_harm_keywords": ["harm"],
- "similarity": 0.9999999999999999,
- "text": "![A selection of Stable Diffusion images with a strike-out through\nthem.](https://cdn.arstechnica.net/wp-\ncontent/uploads/2022/09/ai_image_ban_1-800x448.jpg)\n\n[Enlarge](https://cdn.arstechnica.net/wp-\ncontent/uploads/2022/09/ai_image_ban_1.jpg) /\n\nA selection of Stable Diffusion images with a strikeout through them.\n\nArs Technica\n\nGetty Images has banned the sale of AI generative artwork created using image\nsynthesis models such as Stable Diffusion, DALL-E 2, and Midjourney through\nits service, [The Verge\nreports](https://www.theverge.com/2022/9/21/23364696/getty-images-ai-ban-\ngenerated-artwork-illustration-copyright).\n\nTo clarify the new policy, The Verge spoke with Getty Images CEO Craig Peters.\n\"There are real concerns with respect to the copyright of outputs from these\nmodels and unaddressed rights issues with respect to the imagery, the image\nmetadata and those individuals contained within the imagery,\" Peters told the\npublication.\n\nGetty Images is a large repository of stock and archival photographs and\nillustrations, often used by publications (such as Ars Technica) to illustrate\narticles after paying a license fee.\n\nGetty's move [follows](https://arstechnica.com/information-\ntechnology/2022/09/flooded-with-ai-generated-images-some-art-communities-ban-\nthem-completely/) image synthesis bans by smaller art community sites earlier\nthis month, which found their sites flooded with AI-generated work that\nthreatened to overwhelm artwork created without the use of those tools. Getty\nImages competitor Shutterstock [allows](https://arstechnica.com/information-\ntechnology/2022/09/artists-begin-selling-ai-generated-artwork-on-stock-\nphotography-websites/) AI-generated artwork on its site (and although Vice\n[recently reported](https://www.vice.com/en/article/v7vzpj/shutterstock-is-\nremoving-ai-generated-images) the site was removing AI artwork, we still see\nthe same amount as before—and Shutterstock's content submission terms have not\nchanged).\n\n[![A notice from Getty Images and iStock about a ban on \"AI generated\ncontent.\"](https://cdn.arstechnica.net/wp-\ncontent/uploads/2022/09/getty_images_notice-1-640x479.jpg)](https://cdn.arstechnica.net/wp-\ncontent/uploads/2022/09/getty_images_notice-1.jpg)\n\n[Enlarge](https://cdn.arstechnica.net/wp-\ncontent/uploads/2022/09/getty_images_notice-1.jpg) /\n\nA notice from Getty Images and iStock about a ban on \"AI generated content.\"\n\nGetty Images\n\nThe ability to copyright AI-generated artwork has not been tested in court,\nand the ethics of using artists' work without consent (including artwork\n[found](https://waxy.org/2022/08/exploring-12-million-of-the-images-used-to-\ntrain-stable-diffusions-image-generator/) on Getty Images) to train neural\nnetworks that can create almost human-level artwork is still [an open\nquestion](https://arstechnica.com/information-technology/2022/09/have-ai-\nimage-generators-assimilated-your-art-new-tool-lets-you-check/) being debated\nonline. To protect the company's brand and its customers, Getty decided to\navoid the issue altogether with its ban. That said, Ars Technica searched the\nGetty Images library and found AI-generated artwork.\n\n## Can AI artwork be copyrighted?\n\nWhile the creators of popular AI image synthesis models insist their products\ncreate work protected by copyright, the issue of copyright over AI-generated\nimages has not yet been fully resolved. It's worth pointing out that an\n[often-cited article](https://www.smithsonianmag.com/smart-news/us-copyright-\noffice-rules-ai-art-cant-be-copyrighted-180979808/) in the Smithsonian titled\n\"US Copyright Office Rules AI Art Can't Be Copyrighted\" has an erroneous title\nand is often misunderstood. In that case, a researcher attempted to register\nan AI algorithm as the non-human owner of a copyright, which the Copyright\nOffice denied. The copyright owner must be human (or a group of humans, in the\ncase of a corporation).\n\nCurrently, AI image synthesis firms operate under the assumption that the\ncopyright for AI artwork can be registered to a human or corporation, just as\nit is with the output of any other artistic tool. There is some strong\nprecedent to this, and in the Copyright Office's [2022\ndecision](https://www.copyright.gov/rulings-filings/review-\nboard/docs/a-recent-entrance-to-paradise.pdf) rejecting the registry of\ncopyright to an AI (as mentioned above), it referenced a landmark 1884 legal\ncase that affirmed the copyright status of photographs.\n\nEarly in the camera's history, the defendant in the case ( _[Burrow-Giles\nLithographic Co. v. Sarony](https://en.wikipedia.org/wiki/Burrow-\nGiles_Lithographic_Co._v._Sarony))_ claimed that photographs could not be\ncopyrighted because a photo is \"a reproduction on paper of the exact features\nof some natural object or of some person.\" In effect, they argued that a photo\nis the work of a machine and not a creative expression. Instead, the court\nruled that photos can be copyrighted because they are \"representatives of\noriginal intellectual conceptions of [an] author.\"\n\nPeople familiar with the AI generative art process as it now stands, at least\nregarding text-to-image generators, will recognize that their image synthesis\noutputs are \"representatives of original intellectual conceptions of [an]\nauthor\" as well. Despite misconceptions to the contrary, creative input and\nguidance of a human are still necessary to create image synthesis work, no\nmatter how small the contribution. Even the selection of the tool and the\ndecision to execute it is a creative act.\n\nUnder US copyright law, pressing the shutter button of a camera randomly\npointed at a wall [still assigns\ncopyright](https://www.copyright.gov/help/faq/faq-general.html) to the human\nwho took the picture, and yet the human creative input in an image synthesis\nartwork can be much more extensive. So it would make sense that the person who\ninitiated the AI-generated work holds the copyright to the image unless\notherwise restrained by license or terms of use.\n\nAll that said, the question of copyright over AI artwork has yet to be legally\nresolved one way or the other in the United States. Stay tuned for further\ndevelopments.\n\n",
- "title": "Fearing copyright issues, Getty Images bans AI-generated artwork | Ars Technica",
- "url": "https://arstechnica.com/?p=1883513"
- },
- {
- "__typename": "Candidate",
- "date_published": "2022-09-19",
- "dismissed": null,
- "matching_keywords": ["AI"],
- "similarity": 0.0,
- "text": "![Negative photo image of a western blot test\nresult.](https://cdn.arstechnica.net/wp-\ncontent/uploads/2022/09/western_blot_3-800x448.jpg)\n\n[Enlarge](https://cdn.arstechnica.net/wp-\ncontent/uploads/2022/09/western_blot_3.jpg) /\n\nColorized photo image of a Western blot test result.\n\nScientific publishers such as the American Association for Cancer Research\n(AACR) and Taylor \u0026 Francis have begun attempting to detect fraud in academic\npaper submissions with an AI image-checking program called Proofig,\n[reports](https://www.theregister.com/2022/09/12/academic_publishers_are_using_ai)\nThe Register. Proofig, a product of an Israeli firm of the same name, aims to\nhelp use \"artificial intelligence, computer vision and image processing to\nreview image integrity in scientific publications,\"\n[according](https://www.proofig.com/) to the company's website.\n\nDuring a trial that ran from January 2021 to May 2022, AACR used Proofig to\nscreen 1,367 papers accepted for publication, according to The Register. Of\nthose, 208 papers required author contact to clear up issues such as mistaken\nduplications, and four papers were withdrawn.\n\nIn particular, many journals need help detecting image duplication fraud in\n[Western blots](https://en.wikipedia.org/wiki/Western_blot), which are a\nspecific style of protein-detection imagery consisting of line segments of\nvarious widths. Subtle differences in a blot's appearance can translate to\ndramatically different conclusions about test results, and [many cases of\nacademic fraud](https://www.science.org/content/blog-post/down-western-blot)\nhave seen unscrupulous researchers duplicate, crop, stretch, and rotate\nWestern blots to make it appear like they have more (or different) data than\nthey really do. Detecting duplicate images can be tedious work for human eyes,\nwhich is why some firms like Proofig and [ImageTwin](https://imagetwin.ai/),\nan Austrian firm, are attempting to automate the process.\n\nBut both Proofig's and ImageTwin's solutions currently have significant\nlimitations, according to The Register. First, human expertise is still\nnecessary to interpret detection results and reduce false positives. Second,\nProofig is currently expensive due to its computationally intensive process,\ncosting $99 to analyze 120 images for an individual (the journals have\nnegotiated cheaper rates). Currently, both high cost and the requirement for\nmanual oversight is keeping the journals from analyzing every paper at the\nsubmission stage. Instead, they have been reserving its use for later in the\npublication process.\n\nAcademic fraud, while uncommon, can still have a devastating effect on a\npublication's reputation. Between the [massive\nvolume](https://www.nature.com/articles/nj7612-457a) of academic papers being\npublished today and recent revelations about image fraud in [widely cited\nAlzheimer's research](https://www.science.org/content/article/potential-\nfabrication-research-images-threatens-key-theory-alzheimers-disease), the\nfield does seem ripe for computer vision tools that can assist humans with\nfraud detection. Their overall effectiveness—and how widely they become\nadopted—is still a developing story.\n\n",
- "title": "AI software helps bust image fraud in academic papers | Ars Technica",
- "url": "https://arstechnica.com/?p=1882596"
- },
- {
- "__typename": "Candidate",
- "date_published": "2022-09-22",
- "dismissed": null,
- "matching_keywords": ["AI", "neural net"],
- "similarity": 0.9964958016539909,
- "text": "![A pink waveform on a blue background, poetically suggesting\naudio.](https://cdn.arstechnica.net/wp-\ncontent/uploads/2022/09/waveform_hero_1-800x448.jpg)\n\nBenj Edwards / Ars Technica\n\nOn Wednesday, OpenAI released a new open source AI model called\n[Whisper](https://openai.com/blog/whisper/) that recognizes and translates\naudio at a level that approaches human recognition ability. It can transcribe\ninterviews, podcasts, conversations, and more.\n\nOpenAI [trained Whisper](https://cdn.openai.com/papers/whisper.pdf) on 680,000\nhours of audio data and matching transcripts in 98 languages collected from\nthe web. According to OpenAI, this open-collection approach has led to\n\"improved robustness to accents, background noise, and technical language.\" It\ncan also detect the spoken language and translate it to English.\n\nOpenAI describes Whisper as an [encoder-decoder\ntransformer](https://kikaben.com/transformers-encoder-decoder/), a type of\nneural network that can use context gleaned from input data to learn\nassociations that can then be translated into the model's output. OpenAI\npresents this overview of Whisper's operation:\n\n\u003e Input audio is split into 30-second chunks, converted into a log-Mel\n\u003e spectrogram, and then passed into an encoder. A decoder is trained to\n\u003e predict the corresponding text caption, intermixed with special tokens that\n\u003e direct the single model to perform tasks such as language identification,\n\u003e phrase-level timestamps, multilingual speech transcription, and to-English\n\u003e speech translation.\n\nBy open-sourcing Whisper, OpenAI hopes to introduce a new foundation model\nthat others can build on in the future to improve speech processing and\naccessibility tools. OpenAI has a significant track record on this front. In\nJanuary 2021, OpenAI released [CLIP](https://openai.com/blog/clip/), an open\nsource computer vision model that arguably ignited the recent era of rapidly\nprogressing image synthesis technology such as DALL-E 2 and [Stable\nDiffusion](https://arstechnica.com/information-technology/2022/09/with-stable-\ndiffusion-you-may-never-believe-what-you-see-online-again/).\n\nAt Ars Technica, we tested Whisper from code [available on\nGitHub](https://github.com/openai/whisper), and we fed it multiple samples,\nincluding a podcast episode and a particularly difficult-to-understand section\nof audio taken from a telephone interview. Although it took some time while\nrunning through a standard Intel desktop CPU (the technology doesn't work in\nreal time yet), Whisper did a good job of transcribing the audio into text\nthrough the demonstration Python program—far better than some AI-powered audio\ntranscription services we have tried in the past.\n\n[![Example console output from the OpenAI's Whisper demonstration program as\nit transcribes a podcast.](https://cdn.arstechnica.net/wp-\ncontent/uploads/2022/09/whisper_podcast_output-640x142.jpg)](https://cdn.arstechnica.net/wp-\ncontent/uploads/2022/09/whisper_podcast_output.jpg)\n\n[Enlarge](https://cdn.arstechnica.net/wp-\ncontent/uploads/2022/09/whisper_podcast_output.jpg) /\n\nExample console output from the OpenAI's Whisper demonstration program as it\ntranscribes a podcast.\n\nBenj Edwards / Ars Technica\n\nWith the proper setup, Whisper could easily be used to transcribe interviews,\npodcasts, and potentially translate podcasts produced in non-English languages\nto English on your machine—for free. That's a potent combination that might\neventually disrupt the transcription industry.\n\nAs with almost every major new AI model these days, Whisper brings positive\nadvantages and the potential for misuse. On Whisper's [model\ncard](https://github.com/openai/whisper/blob/main/model-card.md) (under the\n\"Broader Implications\" section), OpenAI warns that Whisper could be used to\nautomate surveillance or identify individual speakers in a conversation, but\nthe company hopes it will be used \"primarily for beneficial purposes.\"\n\n",
- "title": "AI model from OpenAI automatically recognizes speech and translates it to English | Ars Technica",
- "url": "https://arstechnica.com/?p=1883524"
- },
- {
- "__typename": "Candidate",
- "date_published": "2022-09-21",
- "dismissed": null,
- "matching_keywords": ["AI", "facial recognition"],
- "similarity": 0.0,
- "text": "![Censored medical images found in the LAION-5B data set used to train AI. The\nblack bars and distortion have been added.](https://cdn.arstechnica.net/wp-\ncontent/uploads/2022/09/medical_images_hero2-800x448.jpg)\n\n[Enlarge](https://cdn.arstechnica.net/wp-\ncontent/uploads/2022/09/medical_images_hero2.jpg) /\n\nCensored medical images found in the LAION-5B data set used to train AI. The\nblack bars and distortion have been added.\n\nArs Technica\n\nLate last week, a California-based [AI\nartist](https://twitter.com/LapineDeLaTerre) who goes by the name Lapine\n[discovered](https://twitter.com/LapineDeLaTerre/status/1570889343845404672?s=20\u0026t=KThzGIaLvD7nV0GNxmu0UA)\nprivate medical record photos taken by her doctor in 2013 referenced in the\n[LAION-5B](https://laion.ai/blog/laion-5b/) image set, which is a scrape of\npublicly available images on the web. AI researchers download a subset of that\ndata to train AI image synthesis models such as Stable Diffusion and [Google\nImagen](https://imagen.research.google/).\n\nLapine discovered her medical photos on a site called [Have I Been\nTrained](https://arstechnica.com/information-technology/2022/09/have-ai-image-\ngenerators-assimilated-your-art-new-tool-lets-you-check/), which lets artists\nsee if their work is in the LAION-5B data set. Instead of doing a text search\non the site, Lapine uploaded a recent photo of herself using the site's\nreverse image search feature. She was surprised to discover a set of two\nbefore-and-after medical photos of her face, which had only been authorized\nfor private use by her doctor, as reflected in an authorization form Lapine\n[tweeted](https://twitter.com/LapineDeLaTerre/status/1570889343845404672) and\nalso provided to Ars.\n\nLapine has a genetic condition called [Dyskeratosis\nCongenita](https://rarediseases.org/rare-diseases/dyskeratosis-congenita/).\n\"It affects everything from my skin to my bones and teeth,\" Lapine told Ars\nTechnica in an interview. \"In 2013, I underwent a small set of procedures to\nrestore facial contours after having been through so many rounds of mouth and\njaw surgeries. These pictures are from my last set of procedures with this\nsurgeon.\"\n\nThe surgeon who possessed the medical photos died of cancer in 2018, according\nto Lapine, and she suspects that they somehow left his practice's custody\nafter that. \"It’s the digital equivalent of receiving stolen property,\" says\nLapine. \"Someone stole the image from my deceased doctor’s files and it ended\nup somewhere online, and then it was scraped into this dataset.\"\n\nLapine prefers to conceal her identity for medical privacy reasons. With\nrecords and photos provided by Lapine, Ars confirmed that there are medical\nimages of her referenced in the LAION data set. During our search for Lapine's\nphotos, we also discovered thousands of similar patient medical record photos\nin the data set, each of which may have a similar questionable ethical or\nlegal status, many of which have likely been integrated into popular image\nsynthesis models that companies like Midjourney and Stability AI offer as a\ncommercial service.\n\nThis does not mean that anyone can suddenly create an AI version of Lapine's\nface (as the technology stands at the moment)—and her name is not linked to\nthe photos—but it bothers her that private medical images have been baked into\na product without any form of consent or recourse to remove them. \"It’s bad\nenough to have a photo leaked, but now it’s part of a product,\" says Lapine.\n\"And this goes for anyone’s photos, medical record or not. And the future\nabuse potential is really high.\"\n\n## Who watches the watchers?\n\nLAION [describes itself](https://laion.ai/about/) as a nonprofit organization\nwith members worldwide, \"aiming to make large-scale machine learning models,\ndatasets and related code available to the general public.\" Its data can be\nused in various projects, from facial recognition to computer vision to image\nsynthesis.\n\nFor example, after an AI training process, some of the images in the LAION\ndata set become the basis of Stable Diffusion's [amazing\nability](https://arstechnica.com/information-technology/2022/09/with-stable-\ndiffusion-you-may-never-believe-what-you-see-online-again/) to generate images\nfrom text descriptions. Since LAION is a [set of URLs](https://laion.ai/faq/)\npointing to images on the web, LAION does not host the images themselves.\nInstead, LAION [says](https://laion.ai/faq/) that researchers must download\nthe images from various locations when they want to use them in a project.\n\n[![The LAION data set is replete with potentially sensitive images collected\nfrom the Internet, such as these, which are now being integrated into\ncommercial machine learning products. Black bars have been added by Ars for\nprivacy purposes.](https://cdn.arstechnica.net/wp-\ncontent/uploads/2022/09/medical_images-640x405.jpg)](https://cdn.arstechnica.net/wp-\ncontent/uploads/2022/09/medical_images.jpg)\n\n[Enlarge](https://cdn.arstechnica.net/wp-\ncontent/uploads/2022/09/medical_images.jpg) /\n\nThe LAION data set is replete with potentially sensitive images collected from\nthe Internet, such as these, which are now being integrated into commercial\nmachine learning products. Black bars have been added by Ars for privacy\npurposes.\n\nArs Technica\n\nUnder these conditions, responsibility for a particular image's inclusion in\nthe LAION set then becomes a fancy game of pass the buck. A friend of Lapine's\nposed an open question on the #safety-and-privacy channel of LAION's Discord\nserver last Friday asking how to remove her images from the set. LAION\nengineer Romain Beaumont replied, \"The best way to remove an image from the\nInternet is to ask for the hosting website to stop hosting it,\" wrote\nBeaumont. \"We are not hosting any of these images.\"\n\nIn the US, scraping publicly available data from the Internet [appears to be\nlegal](https://medium.com/@tjwaterman99/web-scraping-is-now-\nlegal-6bf0e5730a78), as the results from a 2019 court case affirm. Is it\nmostly the deceased doctor's fault, then? Or the site that hosts Lapine's\nillicit images on the web?\n\nArs contacted LAION for comment on these questions but did not receive a\nresponse by press time. LAION's website does provide [a\nform](https://laion.ai/gdpr/) where European citizens can request information\nremoved from their database to comply with the EU's GDPR laws, but only if a\nphoto of a person is associated with a name in the image's metadata. Thanks to\nservices such as [PimEyes](https://pimeyes.com/en), however, it has become\ntrivial to associate someone's face with names through other means.\n\nUltimately, Lapine understands how the chain of custody over her private\nimages failed but still would like to see her images removed from the LAION\ndata set. \"I would like to have a way for anyone to ask to have their image\nremoved from the data set without sacrificing personal information. Just\nbecause they scraped it from the web doesn’t mean it was supposed to be public\ninformation, or even on the web at all.\"\n\n",
- "title": "Artist finds private medical record photos in popular AI training data set | Ars Technica",
- "url": "https://arstechnica.com/?p=1882591"
- }
- ]
- }
-}
diff --git a/site/gatsby-site/cypress/fixtures/checklists/riskSortingChecklist.json b/site/gatsby-site/cypress/fixtures/checklists/riskSortingChecklist.json
deleted file mode 100644
index e9299b1765..0000000000
--- a/site/gatsby-site/cypress/fixtures/checklists/riskSortingChecklist.json
+++ /dev/null
@@ -1,137 +0,0 @@
-{
- "data": {
- "checklist": {
- "__typename": "Checklist",
- "about": "",
- "date_created": "2024-01-02T23:38:07.875Z",
- "date_updated": "2024-01-02T23:38:07.875Z",
- "id": "1b4d984c-84c9-4417-a57f-a04acde37c36",
- "name": "Unspecified System",
- "risks": [
- {
- "__typename": "ChecklistRisk",
- "generated": false,
- "id": "7876ca98-ca8a-4365-8c39-203474c1dc38",
- "likelihood": "",
- "precedents": [
- {
- "__typename": "ChecklistRiskPrecedent",
- "description": "The French digital care company, Nabla, in researching GPT-3’s capabilities for medical documentation, diagnosis support, and treatment recommendation, found its inconsistency and lack of scientific and medical expertise unviable and risky in healthcare applications. This incident has been downgraded to an issue as it does not meet current ingestion criteria.",
- "incident_id": 287,
- "tags": [
- "GMF:Known AI Goal:Question Answering",
- "GMF:Known AI Technology:Transformer",
- "GMF:Known AI Technology:Language Modeling",
- "GMF:Known AI Technology:Distributional Learning",
- "GMF:Known AI Technology Classification Discussion:Distributional Learning: If no training data citing sources is available and/or not enough data from a medical domain were available.",
- "GMF:Potential AI Technical Failure:Limited Dataset",
- "GMF:Potential AI Technical Failure:Problematic Input",
- "GMF:Potential AI Technical Failure:Robustness Failure",
- "GMF:Potential AI Technical Failure:Overfitting",
- "GMF:Potential AI Technical Failure:Underfitting",
- "GMF:Potential AI Technical Failure:Inadequate Sequential Memory",
- "GMF:Potential AI Technical Failure Classification Discussion:Limited Dataset: If no training data citing sources is available and/or not enough data from a medical domain were available.\n\nProblematic Input: If the prompt does not state that references are required.\n\nOverfitting: System does not capture the semantic content of the prompt, but focuses on specific verbage.\n\nUnderfitting: Due to lack of fine-tuning, the model can be considered as having a poor fit for specific medical questions.",
- "GMF:Known AI Technical Failure:Distributional Artifacts"
- ],
- "title": "OpenAI’s GPT-3 Reported as Unviable in Medical Tasks by Healthcare Firm"
- }
- ],
- "risk_notes": "",
- "risk_status": "Mitigated",
- "severity": "Minor",
- "tags": [
- "GMF:Known AI Technical Failure:Distributional Artifacts"
- ],
- "title": "Distributional Artifacts",
- "touched": false
- },
- {
- "__typename": "ChecklistRisk",
- "generated": false,
- "id": "9a1d30d3-b45c-4d7f-a593-8d7dfe78ffb7",
- "likelihood": "",
- "precedents": [
- {
- "__typename": "ChecklistRiskPrecedent",
- "description": "Facebook's automatic language translation software incorrectly translated an Arabic post saying \"Good morning\" into Hebrew saying \"hurt them,\" leading to the arrest of a Palestinian man in Beitar Illit, Israel.",
- "incident_id": 72,
- "tags": [
- "GMF:Known AI Goal:Translation",
- "GMF:Known AI Goal Classification Discussion:Translation: Presumably the arabic dialect in the text is not represented adequately in the training data, hence the translation performance issues. \n",
- "GMF:Known AI Technical Failure:Dataset Imbalance",
- "GMF:Known AI Technical Failure:Distributional Bias",
- "GMF:Known AI Technical Failure Classification Discussion:Dataset Imbalance: Presumably the arabic dialect in the text is not represented adequately in the training data, hence the translation performance issues. \n\n\nDistributional Bias: Biased language in Western / Israeli media texts about Arabs could build false associations and high priors to terrorism and violence.",
- "GMF:Potential AI Technical Failure:Generalization Failure",
- "GMF:Potential AI Technical Failure Classification Discussion:Generalization Failure: Perhaps only one (standard arabic) or a few dialects are supported, and one or more language models is used as fallback for all arabic languages.",
- "GMF:Known AI Technology:Convolutional Neural Network",
- "GMF:Known AI Technology:Recurrent Neural Network",
- "GMF:Known AI Technology:Distributional Learning",
- "GMF:Potential AI Technology:Intermediate modeling",
- "GMF:Potential AI Technology:Classification",
- "GMF:Potential AI Technology:Multimodal Learning",
- "GMF:Potential AI Technology:Image Classification",
- "GMF:Potential AI Technology Classification Discussion:Intermediate modeling: Perhaps intermmediate languages are used (i.e. if no model has been trained to translate X to Y, use X->Z and then Z->Y), which accumulate errors.\n\nClassification: GIven the amount of supported languages for translation, a system must exist to detect the input language and classify amongst supported languages.\n\nMultimodal Learning: If image was also utilized to generate the translation, that would provide additional evidence to the mistranslation.\n\nImage Classification: If multimodal learning is used, perhaps the buldozer was recognized and its extracted keyword contributed to the bias in the NLP domain."
- ],
- "title": "Facebook translates 'good morning' into 'attack them', leading to arrest"
- }
- ],
- "risk_notes": "",
- "risk_status": "Not Mitigated",
- "severity": "Minor",
- "tags": [
- "GMF:Known AI Technical Failure:Dataset Imbalance"
- ],
- "title": "Dataset Imbalance",
- "touched": false
- },
- {
- "__typename": "ChecklistRisk",
- "generated": false,
- "id": "687fe402-3dad-4630-beef-7e423e64e4fd",
- "likelihood": "",
- "precedents": [
- {
- "__typename": "ChecklistRiskPrecedent",
- "description": "Facebook's automatic language translation software incorrectly translated an Arabic post saying \"Good morning\" into Hebrew saying \"hurt them,\" leading to the arrest of a Palestinian man in Beitar Illit, Israel.",
- "incident_id": 72,
- "tags": [
- "GMF:Known AI Goal:Translation",
- "GMF:Known AI Goal Classification Discussion:Translation: Presumably the arabic dialect in the text is not represented adequately in the training data, hence the translation performance issues. \n",
- "GMF:Known AI Technical Failure:Dataset Imbalance",
- "GMF:Known AI Technical Failure:Distributional Bias",
- "GMF:Known AI Technical Failure Classification Discussion:Dataset Imbalance: Presumably the arabic dialect in the text is not represented adequately in the training data, hence the translation performance issues. \n\n\nDistributional Bias: Biased language in Western / Israeli media texts about Arabs could build false associations and high priors to terrorism and violence.",
- "GMF:Potential AI Technical Failure:Generalization Failure",
- "GMF:Potential AI Technical Failure Classification Discussion:Generalization Failure: Perhaps only one (standard arabic) or a few dialects are supported, and one or more language models is used as fallback for all arabic languages.",
- "GMF:Known AI Technology:Convolutional Neural Network",
- "GMF:Known AI Technology:Recurrent Neural Network",
- "GMF:Known AI Technology:Distributional Learning",
- "GMF:Potential AI Technology:Intermediate modeling",
- "GMF:Potential AI Technology:Classification",
- "GMF:Potential AI Technology:Multimodal Learning",
- "GMF:Potential AI Technology:Image Classification",
- "GMF:Potential AI Technology Classification Discussion:Intermediate modeling: Perhaps intermmediate languages are used (i.e. if no model has been trained to translate X to Y, use X->Z and then Z->Y), which accumulate errors.\n\nClassification: GIven the amount of supported languages for translation, a system must exist to detect the input language and classify amongst supported languages.\n\nMultimodal Learning: If image was also utilized to generate the translation, that would provide additional evidence to the mistranslation.\n\nImage Classification: If multimodal learning is used, perhaps the buldozer was recognized and its extracted keyword contributed to the bias in the NLP domain."
- ],
- "title": "Facebook translates 'good morning' into 'attack them', leading to arrest"
- }
- ],
- "risk_notes": "",
- "risk_status": "Mitigated",
- "severity": "Severe",
- "tags": [
- "GMF:Known AI Technical Failure:Distributional Bias"
- ],
- "title": "Distributional Bias",
- "touched": false
- }
- ],
- "tags_goals": [
- "GMF:Known AI Goal:Question Answering"
- ],
- "tags_methods": [
- "GMF:Potential AI Technology:Classification",
- "GMF:Known AI Technology:Language Modeling"
- ],
- "tags_other": []
- }
- }
-}
diff --git a/site/gatsby-site/cypress/fixtures/checklists/riskSortingRisks.json b/site/gatsby-site/cypress/fixtures/checklists/riskSortingRisks.json
deleted file mode 100644
index 7bb6f3732c..0000000000
--- a/site/gatsby-site/cypress/fixtures/checklists/riskSortingRisks.json
+++ /dev/null
@@ -1,415 +0,0 @@
-{
- "data": {
- "risks": [
- {
- "__typename": "RisksPayloadItem",
- "precedents": [
- {
- "__typename": "RisksPayloadPrecedent",
- "description": "There are multiple reports of Amazon Alexa products (Echo, Echo Dot) reacting and acting upon unintended stimulus, usually from television commercials or news reporter's voices.",
- "incident_id": 34,
- "tags": [
- "GMF:Known AI Goal:AI Voice Assistant",
- "GMF:Known AI Technology:Automatic Speech Recognition",
- "GMF:Known AI Technology:Language Modeling",
- "GMF:Known AI Technology:Acoustic Fingerprint",
- "GMF:Known AI Technical Failure:Unsafe Exposure or Access",
- "GMF:Known AI Technical Failure:Misuse",
- "GMF:Potential AI Technical Failure:Unauthorized Data",
- "GMF:Potential AI Technical Failure:Inadequate Anonymization",
- "GMF:Potential AI Technical Failure:Context Misidentification",
- "GMF:Potential AI Technical Failure:Lack of Capability Control",
- "GMF:Potential AI Technical Failure:Underspecification",
- "GMF:Potential AI Technical Failure Classification Discussion:Unauthorized Data: This may apply on an ethical level: presumably the users sign an agreement consenting to passive voice capture.\n\nInadequate Anonymization: This may apply on an ethical level: presumably the users sign an agreement consenting to passive voice capture.\n\nLack of Capability Control: This is relevant if the order went through.\n\nUnderspecification: Speaker diarization / recognition missing."
- ],
- "title": "Amazon Alexa Responding to Environmental Inputs"
- },
- {
- "__typename": "RisksPayloadPrecedent",
- "description": "In Taiwan, a Tesla Model 3 on Autopilot mode whose driver did not pay attention to the road collided with a road repair truck; a road engineer immediately placed crash warnings in front of the Tesla, but soon after got hit and was killed by a BMW when its driver failed to see the sign and crashed into the accident.",
- "incident_id": 221,
- "tags": [
- "GMF:Potential AI Technology:Convolutional Neural Network",
- "GMF:Potential AI Technology:Visual Object Detection",
- "GMF:Potential AI Technology:Classification",
- "GMF:Known AI Technology:Image Segmentation",
- "GMF:Potential AI Technology Classification Discussion:Visual Object Detection: Potentially subtask of segmentation.\n\nClassification: Potentially subtask of segmentation.",
- "GMF:Known AI Technical Failure:Misuse",
- "GMF:Known AI Technical Failure:Generalization Failure",
- "GMF:Known AI Technical Failure Classification Discussion:Misuse: Driver should not use autopilot without supervision.",
- "GMF:Known AI Goal:Autonomous Driving"
- ],
- "title": "A Road Engineer Killed Following a Collision Involving a Tesla on Autopilot"
- }
- ],
- "tags": [
- "GMF:Known AI Technical Failure:Misuse"
- ],
- "title": "Misuse"
- },
- {
- "__typename": "RisksPayloadItem",
- "precedents": [
- {
- "__typename": "RisksPayloadPrecedent",
- "description": "Facebook's automatic language translation software incorrectly translated an Arabic post saying \"Good morning\" into Hebrew saying \"hurt them,\" leading to the arrest of a Palestinian man in Beitar Illit, Israel.",
- "incident_id": 72,
- "tags": [
- "GMF:Known AI Goal:Translation",
- "GMF:Known AI Goal Classification Discussion:Translation: Presumably the arabic dialect in the text is not represented adequately in the training data, hence the translation performance issues. \n",
- "GMF:Known AI Technical Failure:Dataset Imbalance",
- "GMF:Known AI Technical Failure:Distributional Bias",
- "GMF:Known AI Technical Failure Classification Discussion:Dataset Imbalance: Presumably the arabic dialect in the text is not represented adequately in the training data, hence the translation performance issues. \n\n\nDistributional Bias: Biased language in Western / Israeli media texts about Arabs could build false associations and high priors to terrorism and violence.",
- "GMF:Potential AI Technical Failure:Generalization Failure",
- "GMF:Potential AI Technical Failure Classification Discussion:Generalization Failure: Perhaps only one (standard arabic) or a few dialects are supported, and one or more language models is used as fallback for all arabic languages.",
- "GMF:Known AI Technology:Convolutional Neural Network",
- "GMF:Known AI Technology:Recurrent Neural Network",
- "GMF:Known AI Technology:Distributional Learning",
- "GMF:Potential AI Technology:Intermediate modeling",
- "GMF:Potential AI Technology:Classification",
- "GMF:Potential AI Technology:Multimodal Learning",
- "GMF:Potential AI Technology:Image Classification",
- "GMF:Potential AI Technology Classification Discussion:Intermediate modeling: Perhaps intermmediate languages are used (i.e. if no model has been trained to translate X to Y, use X->Z and then Z->Y), which accumulate errors.\n\nClassification: GIven the amount of supported languages for translation, a system must exist to detect the input language and classify amongst supported languages.\n\nMultimodal Learning: If image was also utilized to generate the translation, that would provide additional evidence to the mistranslation.\n\nImage Classification: If multimodal learning is used, perhaps the buldozer was recognized and its extracted keyword contributed to the bias in the NLP domain."
- ],
- "title": "Facebook translates 'good morning' into 'attack them', leading to arrest"
- },
- {
- "__typename": "RisksPayloadPrecedent",
- "description": "A publicly accessible research model that was trained via Reddit threads showed racially biased advice on moral dilemmas, allegedly demonstrating limitations of language-based models trained on moral judgments.",
- "incident_id": 146,
- "tags": [
- "GMF:Known AI Goal:Question Answering",
- "GMF:Known AI Technology:Distributional Learning",
- "GMF:Known AI Technology:Language Modeling",
- "GMF:Potential AI Technology:Transformer",
- "GMF:Known AI Technical Failure:Distributional Bias",
- "GMF:Known AI Technical Failure:Gaming Vulnerability",
- "GMF:Potential AI Technical Failure:Overfitting",
- "GMF:Potential AI Technical Failure:Robustness Failure",
- "GMF:Potential AI Technical Failure:Context Misidentification",
- "GMF:Potential AI Technical Failure:Limited Dataset",
- "GMF:Potential AI Technical Failure Classification Discussion:Limited Dataset: US ethics only, data sourced from two subreddits and a column."
- ],
- "title": "Research Prototype AI, Delphi, Reportedly Gave Racially Biased Answers on Ethics"
- }
- ],
- "tags": [
- "GMF:Known AI Technical Failure:Distributional Bias"
- ],
- "title": "Distributional Bias"
- },
- {
- "__typename": "RisksPayloadItem",
- "precedents": [
- {
- "__typename": "RisksPayloadPrecedent",
- "description": "YouTube’s content filtering and recommendation algorithms exposed children to disturbing and inappropriate videos.",
- "incident_id": 1,
- "tags": [
- "GMF:Known AI Goal:Content Recommendation",
- "GMF:Known AI Goal:Content Search",
- "GMF:Known AI Goal:Hate Speech Detection",
- "GMF:Known AI Goal:NSFW Content Detection",
- "GMF:Known AI Technology:Content-based Filtering",
- "GMF:Known AI Technology:Collaborative Filtering",
- "GMF:Potential AI Technology:Classification",
- "GMF:Potential AI Technology:Ensemble Aggregation",
- "GMF:Potential AI Technology:Distributional Learning",
- "GMF:Potential AI Technology Classification Discussion:Classification: Appropriateness could arise by appropriateness classifiers\n\nEnsemble Aggregation: In cases where \"child-appropriateness\" measure arises from multiple marginal detectors of-related subclasses (e.g. violent, adult, political themes)",
- "GMF:Potential AI Technical Failure:Concept Drift",
- "GMF:Potential AI Technical Failure:Generalization Failure",
- "GMF:Potential AI Technical Failure:Misconfigured Aggregation",
- "GMF:Potential AI Technical Failure:Distributional Bias",
- "GMF:Potential AI Technical Failure:Misaligned Objective",
- "GMF:Potential AI Technical Failure Classification Discussion:Concept Drift: Concept drift in cases where appropriateness evolves and changes with the passage of time and is culturally determined -- e.g. akin to old messed up disney cartoons.\n\nGeneralization Failure: Based on huge dataset size.\n\nMisconfigured Aggregation: In cases where \"child-appropriateness\" measure arises from multiple marginal detectors of-related subclasses (e.g. violent, adult, political themes)\n\nMisaligned Objective: Recommendation training is using child-appropriateness in its objective in a diminished capacity (as a component with a small contribution), or not at all (completely relying in post-hoc reviewing and filtering by other systems and humans).",
- "GMF:Known AI Technical Failure:Tuning Issues",
- "GMF:Known AI Technical Failure:Lack of Adversarial Robustness",
- "GMF:Known AI Technical Failure:Adversarial Data",
- "GMF:Known AI Technical Failure Classification Discussion:Tuning Issues: Default classification, in cases where the poor consideration of child -appropriateness context information does not fall under current subclasses of this classification."
- ],
- "title": "Google’s YouTube Kids App Presents Inappropriate Content"
- }
- ],
- "tags": [
- "GMF:Known AI Technical Failure:Tuning Issues"
- ],
- "title": "Tuning Issues"
- },
- {
- "__typename": "RisksPayloadItem",
- "precedents": [
- {
- "__typename": "RisksPayloadPrecedent",
- "description": "YouTube’s content filtering and recommendation algorithms exposed children to disturbing and inappropriate videos.",
- "incident_id": 1,
- "tags": [
- "GMF:Known AI Goal:Content Recommendation",
- "GMF:Known AI Goal:Content Search",
- "GMF:Known AI Goal:Hate Speech Detection",
- "GMF:Known AI Goal:NSFW Content Detection",
- "GMF:Known AI Technology:Content-based Filtering",
- "GMF:Known AI Technology:Collaborative Filtering",
- "GMF:Potential AI Technology:Classification",
- "GMF:Potential AI Technology:Ensemble Aggregation",
- "GMF:Potential AI Technology:Distributional Learning",
- "GMF:Potential AI Technology Classification Discussion:Classification: Appropriateness could arise by appropriateness classifiers\n\nEnsemble Aggregation: In cases where \"child-appropriateness\" measure arises from multiple marginal detectors of-related subclasses (e.g. violent, adult, political themes)",
- "GMF:Potential AI Technical Failure:Concept Drift",
- "GMF:Potential AI Technical Failure:Generalization Failure",
- "GMF:Potential AI Technical Failure:Misconfigured Aggregation",
- "GMF:Potential AI Technical Failure:Distributional Bias",
- "GMF:Potential AI Technical Failure:Misaligned Objective",
- "GMF:Potential AI Technical Failure Classification Discussion:Concept Drift: Concept drift in cases where appropriateness evolves and changes with the passage of time and is culturally determined -- e.g. akin to old messed up disney cartoons.\n\nGeneralization Failure: Based on huge dataset size.\n\nMisconfigured Aggregation: In cases where \"child-appropriateness\" measure arises from multiple marginal detectors of-related subclasses (e.g. violent, adult, political themes)\n\nMisaligned Objective: Recommendation training is using child-appropriateness in its objective in a diminished capacity (as a component with a small contribution), or not at all (completely relying in post-hoc reviewing and filtering by other systems and humans).",
- "GMF:Known AI Technical Failure:Tuning Issues",
- "GMF:Known AI Technical Failure:Lack of Adversarial Robustness",
- "GMF:Known AI Technical Failure:Adversarial Data",
- "GMF:Known AI Technical Failure Classification Discussion:Tuning Issues: Default classification, in cases where the poor consideration of child -appropriateness context information does not fall under current subclasses of this classification."
- ],
- "title": "Google’s YouTube Kids App Presents Inappropriate Content"
- }
- ],
- "tags": [
- "GMF:Known AI Technical Failure:Lack of Adversarial Robustness"
- ],
- "title": "Lack of Adversarial Robustness"
- },
- {
- "__typename": "RisksPayloadItem",
- "precedents": [
- {
- "__typename": "RisksPayloadPrecedent",
- "description": "YouTube’s content filtering and recommendation algorithms exposed children to disturbing and inappropriate videos.",
- "incident_id": 1,
- "tags": [
- "GMF:Known AI Goal:Content Recommendation",
- "GMF:Known AI Goal:Content Search",
- "GMF:Known AI Goal:Hate Speech Detection",
- "GMF:Known AI Goal:NSFW Content Detection",
- "GMF:Known AI Technology:Content-based Filtering",
- "GMF:Known AI Technology:Collaborative Filtering",
- "GMF:Potential AI Technology:Classification",
- "GMF:Potential AI Technology:Ensemble Aggregation",
- "GMF:Potential AI Technology:Distributional Learning",
- "GMF:Potential AI Technology Classification Discussion:Classification: Appropriateness could arise by appropriateness classifiers\n\nEnsemble Aggregation: In cases where \"child-appropriateness\" measure arises from multiple marginal detectors of-related subclasses (e.g. violent, adult, political themes)",
- "GMF:Potential AI Technical Failure:Concept Drift",
- "GMF:Potential AI Technical Failure:Generalization Failure",
- "GMF:Potential AI Technical Failure:Misconfigured Aggregation",
- "GMF:Potential AI Technical Failure:Distributional Bias",
- "GMF:Potential AI Technical Failure:Misaligned Objective",
- "GMF:Potential AI Technical Failure Classification Discussion:Concept Drift: Concept drift in cases where appropriateness evolves and changes with the passage of time and is culturally determined -- e.g. akin to old messed up disney cartoons.\n\nGeneralization Failure: Based on huge dataset size.\n\nMisconfigured Aggregation: In cases where \"child-appropriateness\" measure arises from multiple marginal detectors of-related subclasses (e.g. violent, adult, political themes)\n\nMisaligned Objective: Recommendation training is using child-appropriateness in its objective in a diminished capacity (as a component with a small contribution), or not at all (completely relying in post-hoc reviewing and filtering by other systems and humans).",
- "GMF:Known AI Technical Failure:Tuning Issues",
- "GMF:Known AI Technical Failure:Lack of Adversarial Robustness",
- "GMF:Known AI Technical Failure:Adversarial Data",
- "GMF:Known AI Technical Failure Classification Discussion:Tuning Issues: Default classification, in cases where the poor consideration of child -appropriateness context information does not fall under current subclasses of this classification."
- ],
- "title": "Google’s YouTube Kids App Presents Inappropriate Content"
- }
- ],
- "tags": [
- "GMF:Known AI Technical Failure:Adversarial Data"
- ],
- "title": "Adversarial Data"
- },
- {
- "__typename": "RisksPayloadItem",
- "precedents": [
- {
- "__typename": "RisksPayloadPrecedent",
- "description": "There are multiple reports of Amazon Alexa products (Echo, Echo Dot) reacting and acting upon unintended stimulus, usually from television commercials or news reporter's voices.",
- "incident_id": 34,
- "tags": [
- "GMF:Known AI Goal:AI Voice Assistant",
- "GMF:Known AI Technology:Automatic Speech Recognition",
- "GMF:Known AI Technology:Language Modeling",
- "GMF:Known AI Technology:Acoustic Fingerprint",
- "GMF:Known AI Technical Failure:Unsafe Exposure or Access",
- "GMF:Known AI Technical Failure:Misuse",
- "GMF:Potential AI Technical Failure:Unauthorized Data",
- "GMF:Potential AI Technical Failure:Inadequate Anonymization",
- "GMF:Potential AI Technical Failure:Context Misidentification",
- "GMF:Potential AI Technical Failure:Lack of Capability Control",
- "GMF:Potential AI Technical Failure:Underspecification",
- "GMF:Potential AI Technical Failure Classification Discussion:Unauthorized Data: This may apply on an ethical level: presumably the users sign an agreement consenting to passive voice capture.\n\nInadequate Anonymization: This may apply on an ethical level: presumably the users sign an agreement consenting to passive voice capture.\n\nLack of Capability Control: This is relevant if the order went through.\n\nUnderspecification: Speaker diarization / recognition missing."
- ],
- "title": "Amazon Alexa Responding to Environmental Inputs"
- }
- ],
- "tags": [
- "GMF:Known AI Technical Failure:Unsafe Exposure or Access"
- ],
- "title": "Unsafe Exposure or Access"
- },
- {
- "__typename": "RisksPayloadItem",
- "precedents": [
- {
- "__typename": "RisksPayloadPrecedent",
- "description": "Facebook's automatic language translation software incorrectly translated an Arabic post saying \"Good morning\" into Hebrew saying \"hurt them,\" leading to the arrest of a Palestinian man in Beitar Illit, Israel.",
- "incident_id": 72,
- "tags": [
- "GMF:Known AI Goal:Translation",
- "GMF:Known AI Goal Classification Discussion:Translation: Presumably the arabic dialect in the text is not represented adequately in the training data, hence the translation performance issues. \n",
- "GMF:Known AI Technical Failure:Dataset Imbalance",
- "GMF:Known AI Technical Failure:Distributional Bias",
- "GMF:Known AI Technical Failure Classification Discussion:Dataset Imbalance: Presumably the arabic dialect in the text is not represented adequately in the training data, hence the translation performance issues. \n\n\nDistributional Bias: Biased language in Western / Israeli media texts about Arabs could build false associations and high priors to terrorism and violence.",
- "GMF:Potential AI Technical Failure:Generalization Failure",
- "GMF:Potential AI Technical Failure Classification Discussion:Generalization Failure: Perhaps only one (standard arabic) or a few dialects are supported, and one or more language models is used as fallback for all arabic languages.",
- "GMF:Known AI Technology:Convolutional Neural Network",
- "GMF:Known AI Technology:Recurrent Neural Network",
- "GMF:Known AI Technology:Distributional Learning",
- "GMF:Potential AI Technology:Intermediate modeling",
- "GMF:Potential AI Technology:Classification",
- "GMF:Potential AI Technology:Multimodal Learning",
- "GMF:Potential AI Technology:Image Classification",
- "GMF:Potential AI Technology Classification Discussion:Intermediate modeling: Perhaps intermmediate languages are used (i.e. if no model has been trained to translate X to Y, use X->Z and then Z->Y), which accumulate errors.\n\nClassification: GIven the amount of supported languages for translation, a system must exist to detect the input language and classify amongst supported languages.\n\nMultimodal Learning: If image was also utilized to generate the translation, that would provide additional evidence to the mistranslation.\n\nImage Classification: If multimodal learning is used, perhaps the buldozer was recognized and its extracted keyword contributed to the bias in the NLP domain."
- ],
- "title": "Facebook translates 'good morning' into 'attack them', leading to arrest"
- }
- ],
- "tags": [
- "GMF:Known AI Technical Failure:Dataset Imbalance"
- ],
- "title": "Dataset Imbalance"
- },
- {
- "__typename": "RisksPayloadItem",
- "precedents": [
- {
- "__typename": "RisksPayloadPrecedent",
- "description": "A publicly accessible research model that was trained via Reddit threads showed racially biased advice on moral dilemmas, allegedly demonstrating limitations of language-based models trained on moral judgments.",
- "incident_id": 146,
- "tags": [
- "GMF:Known AI Goal:Question Answering",
- "GMF:Known AI Technology:Distributional Learning",
- "GMF:Known AI Technology:Language Modeling",
- "GMF:Potential AI Technology:Transformer",
- "GMF:Known AI Technical Failure:Distributional Bias",
- "GMF:Known AI Technical Failure:Gaming Vulnerability",
- "GMF:Potential AI Technical Failure:Overfitting",
- "GMF:Potential AI Technical Failure:Robustness Failure",
- "GMF:Potential AI Technical Failure:Context Misidentification",
- "GMF:Potential AI Technical Failure:Limited Dataset",
- "GMF:Potential AI Technical Failure Classification Discussion:Limited Dataset: US ethics only, data sourced from two subreddits and a column."
- ],
- "title": "Research Prototype AI, Delphi, Reportedly Gave Racially Biased Answers on Ethics"
- }
- ],
- "tags": [
- "GMF:Known AI Technical Failure:Gaming Vulnerability"
- ],
- "title": "Gaming Vulnerability"
- },
- {
- "__typename": "RisksPayloadItem",
- "precedents": [
- {
- "__typename": "RisksPayloadPrecedent",
- "description": "Three make-up artists lost their positions following an algorithmically-assessed video interview by HireVue who reportedly failed to provide adequate explanation of the findings.",
- "incident_id": 192,
- "tags": [
- "GMF:Known AI Goal:Automatic Skill Assessment",
- "GMF:Known AI Technology:Automatic Speech Recognition",
- "GMF:Potential AI Technology:Regression",
- "GMF:Potential AI Technology:Classification",
- "GMF:Potential AI Technical Failure:Dataset Imbalance",
- "GMF:Potential AI Technical Failure:Context Misidentification",
- "GMF:Potential AI Technical Failure:Inadequate Data Sampling",
- "GMF:Potential AI Technical Failure:Problematic Input",
- "GMF:Known AI Technical Failure:Lack of Explainability",
- "GMF:Known AI Technical Failure:Incomplete Data Attribute Capture",
- "GMF:Known AI Technical Failure Classification Discussion:Incomplete Data Attribute Capture: Makeup skill assessment with verbal descriptions, rather visual media."
- ],
- "title": "Three Make-Up Artists Lost Jobs Following Black-Box Automated Decision by HireVue"
- }
- ],
- "tags": [
- "GMF:Known AI Technical Failure:Lack of Explainability"
- ],
- "title": "Lack of Explainability"
- },
- {
- "__typename": "RisksPayloadItem",
- "precedents": [
- {
- "__typename": "RisksPayloadPrecedent",
- "description": "Three make-up artists lost their positions following an algorithmically-assessed video interview by HireVue who reportedly failed to provide adequate explanation of the findings.",
- "incident_id": 192,
- "tags": [
- "GMF:Known AI Goal:Automatic Skill Assessment",
- "GMF:Known AI Technology:Automatic Speech Recognition",
- "GMF:Potential AI Technology:Regression",
- "GMF:Potential AI Technology:Classification",
- "GMF:Potential AI Technical Failure:Dataset Imbalance",
- "GMF:Potential AI Technical Failure:Context Misidentification",
- "GMF:Potential AI Technical Failure:Inadequate Data Sampling",
- "GMF:Potential AI Technical Failure:Problematic Input",
- "GMF:Known AI Technical Failure:Lack of Explainability",
- "GMF:Known AI Technical Failure:Incomplete Data Attribute Capture",
- "GMF:Known AI Technical Failure Classification Discussion:Incomplete Data Attribute Capture: Makeup skill assessment with verbal descriptions, rather visual media."
- ],
- "title": "Three Make-Up Artists Lost Jobs Following Black-Box Automated Decision by HireVue"
- }
- ],
- "tags": [
- "GMF:Known AI Technical Failure:Incomplete Data Attribute Capture"
- ],
- "title": "Incomplete Data Attribute Capture"
- },
- {
- "__typename": "RisksPayloadItem",
- "precedents": [
- {
- "__typename": "RisksPayloadPrecedent",
- "description": "In Taiwan, a Tesla Model 3 on Autopilot mode whose driver did not pay attention to the road collided with a road repair truck; a road engineer immediately placed crash warnings in front of the Tesla, but soon after got hit and was killed by a BMW when its driver failed to see the sign and crashed into the accident.",
- "incident_id": 221,
- "tags": [
- "GMF:Potential AI Technology:Convolutional Neural Network",
- "GMF:Potential AI Technology:Visual Object Detection",
- "GMF:Potential AI Technology:Classification",
- "GMF:Known AI Technology:Image Segmentation",
- "GMF:Potential AI Technology Classification Discussion:Visual Object Detection: Potentially subtask of segmentation.\n\nClassification: Potentially subtask of segmentation.",
- "GMF:Known AI Technical Failure:Misuse",
- "GMF:Known AI Technical Failure:Generalization Failure",
- "GMF:Known AI Technical Failure Classification Discussion:Misuse: Driver should not use autopilot without supervision.",
- "GMF:Known AI Goal:Autonomous Driving"
- ],
- "title": "A Road Engineer Killed Following a Collision Involving a Tesla on Autopilot"
- }
- ],
- "tags": [
- "GMF:Known AI Technical Failure:Generalization Failure"
- ],
- "title": "Generalization Failure"
- },
- {
- "__typename": "RisksPayloadItem",
- "precedents": [
- {
- "__typename": "RisksPayloadPrecedent",
- "description": "The French digital care company, Nabla, in researching GPT-3’s capabilities for medical documentation, diagnosis support, and treatment recommendation, found its inconsistency and lack of scientific and medical expertise unviable and risky in healthcare applications. This incident has been downgraded to an issue as it does not meet current ingestion criteria.",
- "incident_id": 287,
- "tags": [
- "GMF:Known AI Goal:Question Answering",
- "GMF:Known AI Technology:Transformer",
- "GMF:Known AI Technology:Language Modeling",
- "GMF:Known AI Technology:Distributional Learning",
- "GMF:Known AI Technology Classification Discussion:Distributional Learning: If no training data citing sources is available and/or not enough data from a medical domain were available.",
- "GMF:Potential AI Technical Failure:Limited Dataset",
- "GMF:Potential AI Technical Failure:Problematic Input",
- "GMF:Potential AI Technical Failure:Robustness Failure",
- "GMF:Potential AI Technical Failure:Overfitting",
- "GMF:Potential AI Technical Failure:Underfitting",
- "GMF:Potential AI Technical Failure:Inadequate Sequential Memory",
- "GMF:Potential AI Technical Failure Classification Discussion:Limited Dataset: If no training data citing sources is available and/or not enough data from a medical domain were available.\n\nProblematic Input: If the prompt does not state that references are required.\n\nOverfitting: System does not capture the semantic content of the prompt, but focuses on specific verbage.\n\nUnderfitting: Due to lack of fine-tuning, the model can be considered as having a poor fit for specific medical questions.",
- "GMF:Known AI Technical Failure:Distributional Artifacts"
- ],
- "title": "OpenAI’s GPT-3 Reported as Unviable in Medical Tasks by Healthcare Firm"
- }
- ],
- "tags": [
- "GMF:Known AI Technical Failure:Distributional Artifacts"
- ],
- "title": "Distributional Artifacts"
- }
- ]
- }
-}
diff --git a/site/gatsby-site/cypress/fixtures/classifications/cssettool.json b/site/gatsby-site/cypress/fixtures/classifications/cssettool.json
deleted file mode 100644
index 51b71a641e..0000000000
--- a/site/gatsby-site/cypress/fixtures/classifications/cssettool.json
+++ /dev/null
@@ -1,644 +0,0 @@
-{
- "data": {
- "classifications": [
- {
- "__typename": "Classification",
- "_id": "6422fb4ad6ebced21049f7a2",
- "attributes": [
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Physical Objects",
- "value_json": "\"yes\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Entertainment Industry",
- "value_json": "\"no\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Report, Test, or Study of data",
- "value_json": "\"no\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Deployed",
- "value_json": "\"yes\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Producer Test in Controlled Conditions",
- "value_json": "\"no\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Producer Test in Operational Conditions",
- "value_json": "\"no\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "User Test in Controlled Conditions",
- "value_json": "\"no\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "User Test in Operational Conditions",
- "value_json": "\"no\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Harm Domain",
- "value_json": "\"yes\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Tangible Harm",
- "value_json": "\"tangible harm definitively occurred\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "AI System",
- "value_json": "\"yes\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Clear link to technology",
- "value_json": "\"yes\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "There is a potentially identifiable specific entity that experienced the harm",
- "value_json": "true"
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "AI Harm Level",
- "value_json": "\"AI tangible harm near-miss\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Impact on Critical Services",
- "value_json": "\"no\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Rights Violation",
- "value_json": "\"no\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Involving Minor",
- "value_json": "\"no\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Detrimental Content",
- "value_json": "\"no\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Protected Characteristic",
- "value_json": "\"no\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Harm Distribution Basis",
- "value_json": "[\"none\"]"
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Clear link to Technology",
- "value_json": "\"no\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Harmed Class of Entities",
- "value_json": "true"
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Annotator’s AI special interest intangible harm assessment",
- "value_json": "\"no\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Sector of Deployment",
- "value_json": "[\"transportation and storage\"]"
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Public Sector Deployment",
- "value_json": "\"no\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Autonomy Level",
- "value_json": "\"Autonomy2\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Intentional Harm",
- "value_json": "\"No. Not intentionally designed to perform harm\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "AI tools and methods",
- "value_json": "[\"Autonomous Driving\"]"
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Peer Reviewer",
- "value_json": "\"\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Quality Control",
- "value_json": "false"
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Annotation Status",
- "value_json": "\"2. Initial annotation complete\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Incident Number",
- "value_json": "52"
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Annotator",
- "value_json": "\"006\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "AI Tangible Harm Level Notes",
- "value_json": "\"The Tesla's autopilot failed to notice the trailer of the trucker and deploy breaks. This could have minimized damage during the crash. However, the crash was ultimately at fault of the Tesla driver.\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Notes (special interest intangible harm)",
- "value_json": "\"\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Special Interest Intangible Harm",
- "value_json": "\"no\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Notes (AI special interest intangible harm)",
- "value_json": "\"\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Date of Incident Year",
- "value_json": "\"2016\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Date of Incident Month",
- "value_json": "\"05\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Date of Incident Day",
- "value_json": "\"07\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Estimated Date",
- "value_json": "true"
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Multiple AI Interaction",
- "value_json": "\"no\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Embedded",
- "value_json": "\"yes\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Location City",
- "value_json": "\"Williston\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Location State/Province (two letters)",
- "value_json": "\"FL\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Location Country (two letters)",
- "value_json": "\"US\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Location Region",
- "value_json": "\"North America\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Infrastructure Sectors",
- "value_json": "[]"
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Operating Conditions",
- "value_json": "\"\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Notes (Environmental and Temporal Characteristics)",
- "value_json": "\"\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Entities",
- "value_json": "[{\"attributes\":[{\"short_name\":\"Entity\",\"value_json\":\"\\\"Joshua Brown\\\"\"},{\"short_name\":\"Named Entity\",\"value_json\":\"true\"},{\"short_name\":\"Entity type\",\"value_json\":\"\\\"individual\\\"\"},{\"short_name\":\"Entity Relationship to the AI\",\"value_json\":\"[\\\"user\\\"]\"},{\"short_name\":\"Harm Category Experienced\",\"value_json\":\"\\\"AI tangible harm event\\\"\"},{\"short_name\":\"Harm Type Experienced\",\"value_json\":\"\\\"physical health/safety\\\"\"},{\"short_name\":\"Notes (Characterizing Entities and the Harm)\",\"value_json\":\"\\\"Tesla Autopilot failed to detected truck and deploy its breaks. This could have minimized damaged during the crash. Ultimately, the Tesla was responsible for the crash\\\"\"}]},{\"attributes\":[{\"short_name\":\"Entity\",\"value_json\":\"\\\"Tesla Model S\\\"\"},{\"short_name\":\"Named Entity\",\"value_json\":\"true\"},{\"short_name\":\"Entity type\",\"value_json\":\"\\\"product\\\"\"},{\"short_name\":\"Entity Relationship to the AI\",\"value_json\":\"[\\\"product containing AI\\\"]\"},{\"short_name\":\"Harm Category Experienced\",\"value_json\":\"\\\"AI tangible harm event\\\"\"},{\"short_name\":\"Harm Type Experienced\",\"value_json\":\"\\\"physical property\\\"\"},{\"short_name\":\"Notes (Characterizing Entities and the Harm)\",\"value_json\":\"\\\"Autopilot failed to deploy breaks which could have minimized damage in the crash\\\"\"}]},{\"attributes\":[{\"short_name\":\"Entity\",\"value_json\":\"\\\"Frank Baressi\\\"\"},{\"short_name\":\"Named Entity\",\"value_json\":\"true\"},{\"short_name\":\"Entity type\",\"value_json\":\"\\\"individual\\\"\"},{\"short_name\":\"Entity Relationship to the AI\",\"value_json\":\"[\\\"user\\\"]\"},{\"short_name\":\"Harm Category Experienced\",\"value_json\":\"\\\"AI tangible harm event\\\"\"},{\"short_name\":\"Harm Type Experienced\",\"value_json\":\"\\\"physical property\\\"\"},{\"short_name\":\"Notes (Characterizing Entities and the Harm)\",\"value_json\":\"\\\"Truck driver hit by Tesla. Damage to truck could have been minimized by the deployment of breaks\\\"\"}]}]"
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Lives Lost",
- "value_json": "1"
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Injuries",
- "value_json": "-2"
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Estimated Harm Quantities",
- "value_json": "true"
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Notes ( Tangible Harm Quantities Information)",
- "value_json": "\"\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "AI System Description",
- "value_json": "\"Tesla Autopilot. \""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Data Inputs",
- "value_json": "[\"video input\",\"navigation\",\"sensor data\",\"tra\"]"
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Notes (Information about AI System)",
- "value_json": "\"\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Physical System Type",
- "value_json": "\"Automobile\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "AI Task",
- "value_json": "[\"navigation\",\"transportation\"]"
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Notes (AI Functionality and Techniques)",
- "value_json": "\"\""
- }
- ],
- "incidents": [
- {
- "incident_id": 52
- }
- ],
- "namespace": "CSETv1_Annotator-1",
- "notes": "This a note from the annotator 1",
- "publish": false
- },
- {
- "__typename": "Classification",
- "_id": "643db7dfea1eb46e5d45c614",
- "attributes": [
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Incident Number",
- "value_json": "52"
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Annotator",
- "value_json": null
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Annotation Status",
- "value_json": "\"3. In peer review\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Peer Reviewer",
- "value_json": "\"weqweq\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Quality Control",
- "value_json": "true"
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Physical Objects",
- "value_json": "\"maybe\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Entertainment Industry",
- "value_json": "\"maybe\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Report, Test, or Study of data",
- "value_json": null
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Deployed",
- "value_json": null
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Producer Test in Controlled Conditions",
- "value_json": "\"no\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Producer Test in Operational Conditions",
- "value_json": null
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "User Test in Controlled Conditions",
- "value_json": "\"yes\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "User Test in Operational Conditions",
- "value_json": null
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Harm Domain",
- "value_json": null
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Tangible Harm",
- "value_json": "\"non-imminent risk of tangible harm (an issue) occurred\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "AI System",
- "value_json": "\"no\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Clear link to technology",
- "value_json": "\"yes\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "There is a potentially identifiable specific entity that experienced the harm",
- "value_json": "false"
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "AI Harm Level",
- "value_json": null
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "AI Tangible Harm Level Notes",
- "value_json": null
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Impact on Critical Services",
- "value_json": null
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Rights Violation",
- "value_json": "\"no\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Involving Minor",
- "value_json": null
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Detrimental Content",
- "value_json": null
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Protected Characteristic",
- "value_json": null
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Harm Distribution Basis",
- "value_json": "[\"ideology\",\"financial means\",\"disability\"]"
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Notes (special interest intangible harm)",
- "value_json": "\"This is a note from Annotator 2\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Special Interest Intangible Harm",
- "value_json": null
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Clear link to Technology",
- "value_json": null
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Harmed Class of Entities",
- "value_json": "false"
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Annotator’s AI special interest intangible harm assessment",
- "value_json": null
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Notes (AI special interest intangible harm)",
- "value_json": null
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Date of Incident Year",
- "value_json": null
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Date of Incident Month",
- "value_json": "\"\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Date of Incident Day",
- "value_json": "\"\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Estimated Date",
- "value_json": "false"
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Multiple AI Interaction",
- "value_json": null
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Embedded",
- "value_json": null
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Location City",
- "value_json": null
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Location State/Province (two letters)",
- "value_json": null
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Location Country (two letters)",
- "value_json": null
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Location Region",
- "value_json": null
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Infrastructure Sectors",
- "value_json": null
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Operating Conditions",
- "value_json": null
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Notes (Environmental and Temporal Characteristics)",
- "value_json": null
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Entities",
- "value_json": "[{\"attributes\":[{\"short_name\":\"Entity\",\"value_json\":\"\\\"Joshua Brown\\\"\"},{\"short_name\":\"Named Entity\",\"value_json\":\"true\"},{\"short_name\":\"Entity type\",\"value_json\":\"\\\"individual\\\"\"},{\"short_name\":\"Entity Relationship to the AI\",\"value_json\":\"[\\\"user\\\"]\"},{\"short_name\":\"Harm Category Experienced\",\"value_json\":\"\\\"AI tangible harm event\\\"\"},{\"short_name\":\"Harm Type Experienced\",\"value_json\":\"\\\"physical health/safety\\\"\"},{\"short_name\":\"Notes (Characterizing Entities and the Harm)\",\"value_json\":\"\\\"Tesla Autopilot failed to detected truck and deploy its breaks. This could have minimized damaged during the crash. Ultimately, the Tesla was responsible for the crash\\\"\"}]}]"
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Lives Lost",
- "value_json": "null"
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Injuries",
- "value_json": "null"
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Estimated Harm Quantities",
- "value_json": "false"
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Notes ( Tangible Harm Quantities Information)",
- "value_json": null
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "AI System Description",
- "value_json": null
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Data Inputs",
- "value_json": "[\"road data\",\"traffic\",\"GPS\"]"
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Sector of Deployment",
- "value_json": null
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Public Sector Deployment",
- "value_json": null
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Autonomy Level",
- "value_json": null
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Notes (Information about AI System)",
- "value_json": null
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Intentional Harm",
- "value_json": null
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Physical System Type",
- "value_json": null
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "AI Task",
- "value_json": null
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "AI tools and methods",
- "value_json": null
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Notes (AI Functionality and Techniques)",
- "value_json": null
- }
- ],
- "incidents": [
- {
- "incident_id": 52
- }
- ],
- "namespace": "CSETv1_Annotator-2",
- "notes": "This a note from the annotator 2",
- "publish": false
- }
- ]
- }
-}
\ No newline at end of file
diff --git a/site/gatsby-site/cypress/fixtures/classifications/incident97Classifications.json b/site/gatsby-site/cypress/fixtures/classifications/incident97Classifications.json
deleted file mode 100644
index 393edb1022..0000000000
--- a/site/gatsby-site/cypress/fixtures/classifications/incident97Classifications.json
+++ /dev/null
@@ -1,79 +0,0 @@
-{
- "data": {
- "classifications": [
- {
- "__typename": "Classification",
- "_id": "61d8cecbb9af57365c029cd7",
- "classifications": {
- "AIApplications": [
- "autonomous driving"
- ],
- "AISystemDescription": "Tesla's Autopilot can carry out some driving functions autonomously, but requires the driver to keep their hands on the wheel",
- "AITechniques": [
- "computer vision"
- ],
- "AnnotationStatus": "4. Peer review complete",
- "Annotator": "1",
- "BeginningDate": "",
- "DataInputs": [
- "images of surroundings"
- ],
- "EndingDate": "",
- "FinancialCost": "",
- "FullDescription": "A Tesla Model 3 driver shared a video of their car's Autopilot system malfunctioning. The screen inside the car shows that Autopilot believes it is facing a traffic light that is alternating between red and yellow, when in fact it is looking at several white flags with the letters \"COOP\" written vertically.",
- "HarmDistributionBasis": [],
- "HarmType": [
- "Other"
- ],
- "InfrastructureSectors": [
- "Transportation"
- ],
- "Intent": "Accident",
- "LawsImplicated": [],
- "LevelOfAutonomy": "Medium",
- "LivesLost": false,
- "Location": "Switzerland",
- "NamedEntities": [
- "Starbucks",
- "Kronos"
- ],
- "NatureOfEndUser": "Amateur",
- "NearMiss": "Near miss",
- "PhysicalSystem": [
- "Vehicle/mobile robot"
- ],
- "ProblemNature": [
- "Robustness"
- ],
- "PublicSectorDeployment": false,
- "Publish": null,
- "RelevantAIFunctions": [
- "Perception",
- "Cognition",
- "Action"
- ],
- "Reviewer": "8",
- "SectorOfDeployment": [
- "Transportation and storage"
- ],
- "Severity": "Negligible",
- "ShortDescription": "A Tesla Model 3 mis-recognized flags with \"COOP\" written vertically on them as traffic lights.",
- "SystemDeveloper": [
- "Tesla"
- ],
- "TechnologyPurveyor": [
- "Tesla"
- ],
- "__typename": "ClassificationClassification"
- },
- "incidents": [
- {
- "incident_id": 97
- }
- ],
- "namespace": "CSET",
- "notes": ""
- }
- ]
- }
-}
\ No newline at end of file
diff --git a/site/gatsby-site/cypress/fixtures/classifications/missingAttributes.json b/site/gatsby-site/cypress/fixtures/classifications/missingAttributes.json
deleted file mode 100644
index 441c7e4f63..0000000000
--- a/site/gatsby-site/cypress/fixtures/classifications/missingAttributes.json
+++ /dev/null
@@ -1,474 +0,0 @@
-[
- {
- "_id": {
- "$oid": "648faecdf5ee4963902350e2"
- },
- "attributes": [
- {
- "short_name": "Incident Number",
- "value_json": "40"
- },
- {
- "short_name": "Annotator",
- "value_json": "\"007\""
- },
- {
- "short_name": "Annotation Status",
- "value_json": "\"2. Initial annotation complete\""
- },
- {
- "short_name": "Peer Reviewer"
- },
- {
- "value_json": "false",
- "short_name": "Quality Control"
- },
- {
- "value_json": "\"no\"",
- "short_name": "Physical Objects"
- },
- {
- "short_name": "Entertainment Industry",
- "value_json": "\"no\""
- },
- {
- "value_json": "\"no\"",
- "short_name": "Report, Test, or Study of data"
- },
- {
- "value_json": "\"yes\"",
- "short_name": "Deployed"
- },
- {
- "short_name": "Producer Test in Controlled Conditions",
- "value_json": "\"no\""
- },
- {
- "value_json": "\"no\"",
- "short_name": "Producer Test in Operational Conditions"
- },
- {
- "short_name": "User Test in Controlled Conditions",
- "value_json": "\"no\""
- },
- {
- "short_name": "User Test in Operational Conditions",
- "value_json": "\"yes\""
- },
- {
- "short_name": "Harm Domain",
- "value_json": "\"yes\""
- },
- {
- "short_name": "Tangible Harm",
- "value_json": "\"unclear\""
- },
- {
- "short_name": "AI System",
- "value_json": "\"yes\""
- },
- {
- "short_name": "Clear Link to AI",
- "value_json": "\"yes\""
- },
- {
- "short_name": "There is a potentially identifiable specific entity that experienced the harm",
- "value_json": "false"
- },
- {
- "short_name": "AI Harm Level",
- "value_json": "\"unclear\""
- },
- {
- "short_name": "AI Tangible Harm Level Notes",
- "value_json": "\"It is unclear from who are the specific entities that where false accused\""
- },
- {
- "short_name": "Impact on Critical Services",
- "value_json": "\"no\""
- },
- {
- "short_name": "Rights Violation",
- "value_json": "\"yes\""
- },
- {
- "short_name": "Involving Minor",
- "value_json": "\"no\""
- },
- {
- "short_name": "Detrimental Content",
- "value_json": "\"no\""
- },
- {
- "short_name": "Protected Characteristic",
- "value_json": "\"yes\""
- },
- {
- "short_name": "Harm Distribution Basis",
- "value_json": "[\"race\"]"
- },
- {
- "short_name": "Notes (special interest intangible harm)"
- },
- {
- "short_name": "Special Interest Intangible Harm",
- "value_json": "\"yes\""
- },
- {
- "value_json": "\"yes\"",
- "short_name": "AI Linked to Special Interest Intangible Harm"
- },
- {
- "short_name": "Harmed Class of Entities",
- "value_json": "true"
- },
- {
- "short_name": "Annotator’s AI special interest intangible harm assessment",
- "value_json": "\"yes\""
- },
- {
- "short_name": "Notes (AI special interest intangible harm)"
- },
- {
- "short_name": "Date of Incident Year",
- "value_json": "\"2016\""
- },
- {
- "short_name": "Date of Incident Month"
- },
- {
- "short_name": "Date of Incident Day"
- },
- {
- "short_name": "Estimated Date",
- "value_json": "false"
- },
- {
- "short_name": "Multiple AI Interaction",
- "value_json": "\"no\""
- },
- {
- "value_json": "\"yes\"",
- "short_name": "Embedded"
- },
- {
- "short_name": "Location City"
- },
- {
- "short_name": "Location State/Province (two letters)"
- },
- {
- "short_name": "Location Country (two letters)",
- "value_json": "\"US\""
- },
- {
- "value_json": "\"North America\"",
- "short_name": "Location Region"
- },
- {
- "short_name": "Infrastructure Sectors"
- },
- {
- "short_name": "Operating Conditions"
- },
- {
- "short_name": "Notes (Environmental and Temporal Characteristics)"
- },
- {
- "short_name": "Entities",
- "value_json": "[{\"attributes\":[{\"short_name\":\"Entity\",\"value_json\":\"\\\"COMPAS\\\"\"},{\"short_name\":\"Named Entity\",\"value_json\":\"true\"},{\"short_name\":\"Entity type\",\"value_json\":\"\\\"product\\\"\"},{\"short_name\":\"Entity Relationship to the AI\",\"value_json\":\"[\\\"AI\\\"]\"},{\"short_name\":\"Harm Category Experienced\",\"value_json\":\"\\\"not applicable\\\"\"},{\"short_name\":\"Harm Type Experienced\",\"value_json\":\"\\\"not applicable\\\"\"}]},{\"attributes\":[{\"short_name\":\"Entity\",\"value_json\":\"\\\"Equivant\\\"\"},{\"short_name\":\"Named Entity\",\"value_json\":\"true\"},{\"short_name\":\"Entity type\",\"value_json\":\"\\\"for-profit organization\\\"\"},{\"short_name\":\"Entity Relationship to the AI\",\"value_json\":\"[\\\"developer\\\"]\"},{\"short_name\":\"Harm Category Experienced\",\"value_json\":\"\\\"not applicable\\\"\"},{\"short_name\":\"Harm Type Experienced\",\"value_json\":\"\\\"not applicable\\\"\"}]},{\"attributes\":[{\"short_name\":\"Entity\",\"value_json\":\"\\\"ProPublica\\\"\"},{\"short_name\":\"Named Entity\",\"value_json\":\"true\"},{\"short_name\":\"Entity Relationship to the AI\",\"value_json\":\"[\\\"researcher\\\"]\"},{\"short_name\":\"Entity type\",\"value_json\":\"\\\"for-profit organization\\\"\"},{\"short_name\":\"Harm Category Experienced\",\"value_json\":\"\\\"not applicable\\\"\"},{\"short_name\":\"Harm Type Experienced\",\"value_json\":\"\\\"not applicable\\\"\"}]},{\"attributes\":[{\"short_name\":\"Entity\",\"value_json\":\"\\\"Wisconsin Supreme Court\\\"\"},{\"short_name\":\"Named Entity\",\"value_json\":\"true\"},{\"short_name\":\"Entity type\",\"value_json\":\"\\\"government entity\\\"\"},{\"short_name\":\"Entity Relationship to the AI\",\"value_json\":\"[\\\"deployer\\\"]\"},{\"short_name\":\"Harm Category Experienced\",\"value_json\":\"\\\"not applicable\\\"\"},{\"short_name\":\"Harm Type Experienced\",\"value_json\":\"\\\"not applicable\\\"\"}]},{\"attributes\":[{\"short_name\":\"Entity\",\"value_json\":\"\\\"Black people\\\"\"},{\"short_name\":\"Named Entity\",\"value_json\":\"false\"},{\"short_name\":\"Entity type\",\"value_json\":\"\\\"group of individuals\\\"\"},{\"short_name\":\"Entity Relationship to the AI\",\"value_json\":\"[\\\"user\\\"]\"},{\"short_name\":\"Harm Category Experienced\",\"value_json\":\"\\\"AI special interest intangible harm\\\"\"},{\"short_name\":\"Harm Type Experienced\",\"value_json\":\"\\\"violation of human rights, civil liberties, civil rights, or democratic norms\\\"\"}]}]"
- },
- {
- "short_name": "Lives Lost",
- "value_json": "0"
- },
- {
- "short_name": "Injuries",
- "value_json": "0"
- },
- {
- "short_name": "Estimated Harm Quantities",
- "value_json": "false"
- },
- {
- "short_name": "Notes ( Tangible Harm Quantities Information)"
- },
- {
- "short_name": "AI System Description",
- "value_json": "\"automated decision-making (ADM) systems that predict the likelihood of criminals reoffending, used in the US criminal justice system\""
- },
- {
- "value_json": "[\"Unclear\"]",
- "short_name": "Data Inputs"
- },
- {
- "short_name": "Sector of Deployment",
- "value_json": "[\"law enforcement\"]"
- },
- {
- "short_name": "Public Sector Deployment",
- "value_json": "\"no\""
- },
- {
- "value_json": "\"Autonomy3\"",
- "short_name": "Autonomy Level"
- },
- {
- "short_name": "Notes (Information about AI System)"
- },
- {
- "short_name": "Intentional Harm",
- "value_json": "\"No. Not intentionally designed to perform harm\""
- },
- {
- "short_name": "Physical System Type"
- },
- {
- "value_json": "[\"predict a defendant’s risk of committing another crime\"]",
- "short_name": "AI Task"
- },
- {
- "short_name": "AI tools and methods",
- "value_json": "[\"unclear\"]"
- },
- {
- "short_name": "Notes (AI Functionality and Techniques)"
- }
- ],
- "namespace": "CSETv1_Annotator-3",
- "notes": "",
- "publish": false,
- "incidents": [
- {
- "$numberInt": "40"
- }
- ],
- "reports": []
- },
- {
- "_id": {
- "$oid": "63f3d2cface82aca35c26da3"
- },
- "publish": true,
- "attributes": [
- {
- "short_name": "Incident Number",
- "value_json": "208"
- },
- {
- "value_json": "\"003\"",
- "short_name": "Annotator"
- },
- {
- "short_name": "Annotation Status",
- "value_json": "\"2. Initial annotation complete\""
- },
- {
- "short_name": "Reviewer"
- },
- {
- "short_name": "Quality Control",
- "value_json": "true"
- },
- {
- "short_name": "Physical Objects",
- "value_json": "\"yes\""
- },
- {
- "short_name": "Entertainment Industry",
- "value_json": "\"no\""
- },
- {
- "short_name": "Report, Test, or Study",
- "value_json": "\"no\""
- },
- {
- "value_json": "\"yes\"",
- "short_name": "Deployed"
- },
- {
- "value_json": "\"no\"",
- "short_name": "Producer Test in Controlled Conditions"
- },
- {
- "short_name": "Producer Test in Operational Conditions",
- "value_json": "\"no\""
- },
- {
- "short_name": "User Test in Controlled Conditions",
- "value_json": "\"no\""
- },
- {
- "short_name": "User Test in Operational Conditions",
- "value_json": "\"yes\""
- },
- {
- "short_name": "Harm Domain",
- "value_json": "\"yes\""
- },
- {
- "short_name": "Tangible Harm",
- "value_json": "\"imminent risk of tangible harm (near miss) did occur\""
- },
- {
- "value_json": "\"yes\"",
- "short_name": "AI System"
- },
- {
- "short_name": "Intentional Harm",
- "value_json": "\"No. Not intentionally designed to perform harm\""
- },
- {
- "short_name": "Clear link to technology",
- "value_json": "\"yes\""
- },
- {
- "short_name": "Possibly Identifiable Harmed Entity",
- "value_json": "true"
- },
- {
- "short_name": "Harm Level",
- "value_json": "\"AI tangible harm near-miss\""
- },
- {
- "short_name": "Harm Level Notes"
- },
- {
- "short_name": "Impact on Critical Services",
- "value_json": "\"no\""
- },
- {
- "short_name": "Rights Violation",
- "value_json": "\"no\""
- },
- {
- "short_name": "Involving Minor",
- "value_json": "\"no\""
- },
- {
- "short_name": "Detrimental Content"
- },
- {
- "short_name": "Protected Characteristic",
- "value_json": "\"no\""
- },
- {
- "short_name": "Harm Distribution Basis"
- },
- {
- "short_name": "Notes (special interest intangible harm)"
- },
- {
- "short_name": "Date of Incident Year",
- "value_json": "\"2021\""
- },
- {
- "short_name": "Date of Incident Month"
- },
- {
- "short_name": "Date of Incident Day"
- },
- {
- "short_name": "Estimated Date",
- "value_json": "true"
- },
- {
- "short_name": "Multiple AI Interaction",
- "value_json": "\"no\""
- },
- {
- "short_name": "Embedded",
- "value_json": "\"yes\""
- },
- {
- "short_name": "City"
- },
- {
- "short_name": "State or Province"
- },
- {
- "short_name": "Region",
- "value_json": "\"Europe and Northern America\""
- },
- {
- "short_name": "Infrastructure Sectors"
- },
- {
- "short_name": "Operating Conditions"
- },
- {
- "short_name": "Notes (Environmental and Temporal Characteristics)"
- },
- {
- "short_name": "Entities"
- },
- {
- "short_name": "Lives Lost",
- "value_json": "0"
- },
- {
- "short_name": "Injuries",
- "value_json": "0"
- },
- {
- "short_name": "Property Damage Cost",
- "value_json": "null"
- },
- {
- "short_name": "Financial Cost",
- "value_json": "null"
- },
- {
- "short_name": "Estimated Harm Quantities",
- "value_json": "true"
- },
- {
- "short_name": "Notes ( Tangible Harm Quantities Information)"
- },
- {
- "short_name": "AI System Description",
- "value_json": "\"System to facilitate self-driving capabilities, including braking\""
- },
- {
- "short_name": "Data Inputs",
- "value_json": "[\"radar\",\"audio\",\"video\"]"
- },
- {
- "short_name": "Sector of Deployment",
- "value_json": "[\"transportation and storage\"]"
- },
- {
- "short_name": "Public Sector Deployment",
- "value_json": "\"no\""
- },
- {
- "value_json": "\"Autonomy2\"",
- "short_name": "Autonomy Level"
- },
- {
- "short_name": "Notes (Information about AI System)"
- },
- {
- "short_name": "Physical System Type",
- "value_json": "\"vehicle\""
- },
- {
- "short_name": "AI Task"
- },
- {
- "short_name": "AI tools and methods"
- },
- {
- "short_name": "Notes (AI Functionality and Techniques)"
- }
- ],
- "namespace": "CSETv1",
- "notes": "",
- "incidents": [
- {
- "$numberInt": "208"
- }
- ],
- "reports": []
- }
-]
\ No newline at end of file
diff --git a/site/gatsby-site/cypress/fixtures/classifications/upsertCSET.json b/site/gatsby-site/cypress/fixtures/classifications/upsertCSET.json
deleted file mode 100644
index efbb28b1e4..0000000000
--- a/site/gatsby-site/cypress/fixtures/classifications/upsertCSET.json
+++ /dev/null
@@ -1,97 +0,0 @@
-{
- "data": {
- "upsertOneClassification": {
- "__typename": "Classification",
- "_id": "60dd466080935bc89e6f9b08",
- "classifications": {
- "AIApplications": [
- "HHHHH"
- ],
- "AISystemDescription": "dasdasd",
- "AITechniques": [
- "HJBJHGJHG"
- ],
- "AnnotationStatus": "3. In peer review",
- "Annotator": "2",
- "BeginningDate": "2015-01-01",
- "DataInputs": [
- "asdasd"
- ],
- "EndingDate": "2015-01-01",
- "FinancialCost": "dasdas",
- "FullDescription": "The staff scheduling tool used by Starbucks has led to staff working hours volatile and erratic schedules. Some store managers use a scheduling software, Kronos, to optimize scheduling and cut labor costs, however Starbucks refuses to accept or deny using Kronos.",
- "HarmDistributionBasis": [],
- "HarmType": [
- "Psychological harm"
- ],
- "InfrastructureSectors": [
- "Emergency services",
- "Energy",
- "Financial services"
- ],
- "Intent": "Unclear",
- "LawsImplicated": [
- "dsadasd"
- ],
- "LevelOfAutonomy": "High",
- "LivesLost": false,
- "Location": "Global",
- "NamedEntities": [
- "Starbucks",
- "Kronos"
- ],
- "NatureOfEndUser": "Expert",
- "NearMiss": "Unclear/unknown",
- "PhysicalSystem": [
- "Weapons system"
- ],
- "ProblemNature": [],
- "PublicSectorDeployment": false,
- "Publish": null,
- "RelevantAIFunctions": [
- "Cognition",
- "Action",
- "Unclear"
- ],
- "Reviewer": "6",
- "SectorOfDeployment": [
- "Manufacturing",
- "Electricity, gas, steam and air conditioning supply",
- "Water supply",
- "Construction",
- "Wholesale and retail trade",
- "Transportation and storage",
- "Accommodation and food service activities",
- "Information and communication",
- "Financial and insurance activities",
- "Real estate activities",
- "Professional, scientific and technical activities",
- "Administrative and support service activities",
- "Public administration and defence",
- "Education",
- "Human health and social work activities",
- "Arts, entertainment and recreation",
- "Other service activities",
- "Activities of households as employers",
- "Activities of extraterritorial organizations and bodies"
- ],
- "Severity": "Negligible",
- "ShortDescription": "Issues with Starbucks worker's schedules may be linked to a staffing software, Kronos.",
- "SystemDeveloper": [
- "dasdasd"
- ],
- "TechnologyPurveyor": [
- "Starbuck"
- ],
- "__typename": "ClassificationClassification"
- },
- "incidents": [
- {
- "incident_id": 10
- }
- ],
- "namespace": "CSET",
- "notes": "This is an updated note"
- }
- }
-}
\ No newline at end of file
diff --git a/site/gatsby-site/cypress/fixtures/classifications/upsertCSETv1merge.json b/site/gatsby-site/cypress/fixtures/classifications/upsertCSETv1merge.json
deleted file mode 100644
index 7950a6199c..0000000000
--- a/site/gatsby-site/cypress/fixtures/classifications/upsertCSETv1merge.json
+++ /dev/null
@@ -1,321 +0,0 @@
-{
- "data": {
- "upsertOneClassification": {
- "__typename": "Classification",
- "_id": "646ff84fb0365cada1ea87c7",
- "attributes": [
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Incident Number",
- "value_json": "52"
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Annotator",
- "value_json": "\"006\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Annotation Status",
- "value_json": "\"2. Initial annotation complete\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Peer Reviewer",
- "value_json": "\"weqweq\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Quality Control",
- "value_json": "true"
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Physical Objects",
- "value_json": "\"yes\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Entertainment Industry",
- "value_json": "\"no\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Report, Test, or Study of data",
- "value_json": "\"no\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Deployed",
- "value_json": "\"yes\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Producer Test in Controlled Conditions",
- "value_json": "\"no\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Producer Test in Operational Conditions",
- "value_json": "\"no\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "User Test in Controlled Conditions",
- "value_json": "\"no\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "User Test in Operational Conditions",
- "value_json": "\"no\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Harm Domain",
- "value_json": "\"yes\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Tangible Harm",
- "value_json": "\"tangible harm definitively occurred\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "AI System",
- "value_json": "\"yes\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Clear Link to AI",
- "value_json": "\"yes\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "There is a potentially identifiable specific entity that experienced the harm",
- "value_json": "true"
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "AI Harm Level",
- "value_json": "\"AI tangible harm near-miss\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "AI Tangible Harm Level Notes",
- "value_json": "\"Annotator 1: \\n\\n The Tesla's autopilot failed to notice the trailer of the trucker and deploy breaks. This could have minimized damage during the crash. However, the crash was ultimately at fault of the Tesla driver.\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Impact on Critical Services",
- "value_json": "\"no\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Rights Violation",
- "value_json": "\"no\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Involving Minor",
- "value_json": "\"no\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Detrimental Content",
- "value_json": "\"no\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Protected Characteristic",
- "value_json": "\"no\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Harm Distribution Basis",
- "value_json": "[\"none\",\"ideology\",\"financial means\",\"disability\"]"
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Notes (special interest intangible harm)",
- "value_json": "\"\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Special Interest Intangible Harm",
- "value_json": "\"no\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "AI Linked to Special Interest Intangible Harm",
- "value_json": "\"no\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Harmed Class of Entities",
- "value_json": "true"
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Annotator’s AI special interest intangible harm assessment",
- "value_json": "\"no\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Notes (AI special interest intangible harm)",
- "value_json": "\"\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Date of Incident Year",
- "value_json": "\"2016\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Date of Incident Month",
- "value_json": "\"05\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Date of Incident Day",
- "value_json": "\"07\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Estimated Date",
- "value_json": "true"
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Multiple AI Interaction",
- "value_json": "\"no\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Embedded",
- "value_json": "\"yes\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Location City",
- "value_json": "\"Williston\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Location State/Province (two letters)",
- "value_json": "\"FL\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Location Country (two letters)",
- "value_json": "\"US\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Location Region",
- "value_json": "\"North America\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Infrastructure Sectors",
- "value_json": "\"\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Operating Conditions",
- "value_json": "\"\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Notes (Environmental and Temporal Characteristics)",
- "value_json": "\"\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Entities",
- "value_json": "[{\"attributes\":[{\"short_name\":\"Entity\",\"value_json\":\"\\\"Joshua Brown\\\"\"},{\"short_name\":\"Named Entity\",\"value_json\":\"true\"},{\"short_name\":\"Entity type\",\"value_json\":\"\\\"individual\\\"\"},{\"short_name\":\"Entity Relationship to the AI\",\"value_json\":\"[\\\"user\\\"]\"},{\"short_name\":\"Harm Category Experienced\",\"value_json\":\"\\\"AI tangible harm event\\\"\"},{\"short_name\":\"Harm Type Experienced\",\"value_json\":\"\\\"physical health/safety\\\"\"},{\"short_name\":\"Notes (Characterizing Entities and the Harm)\",\"value_json\":\"\\\"Tesla Autopilot failed to detected truck and deploy its breaks. This could have minimized damaged during the crash. Ultimately, the Tesla was responsible for the crash\\\"\"}]},{\"attributes\":[{\"short_name\":\"Entity\",\"value_json\":\"\\\"Tesla Model S\\\"\"},{\"short_name\":\"Named Entity\",\"value_json\":\"true\"},{\"short_name\":\"Entity type\",\"value_json\":\"\\\"product\\\"\"},{\"short_name\":\"Entity Relationship to the AI\",\"value_json\":\"[\\\"product containing AI\\\"]\"},{\"short_name\":\"Harm Category Experienced\",\"value_json\":\"\\\"AI tangible harm event\\\"\"},{\"short_name\":\"Harm Type Experienced\",\"value_json\":\"\\\"physical property\\\"\"},{\"short_name\":\"Notes (Characterizing Entities and the Harm)\",\"value_json\":\"\\\"Autopilot failed to deploy breaks which could have minimized damage in the crash\\\"\"}]},{\"attributes\":[{\"short_name\":\"Entity\",\"value_json\":\"\\\"Frank Baressi\\\"\"},{\"short_name\":\"Named Entity\",\"value_json\":\"true\"},{\"short_name\":\"Entity type\",\"value_json\":\"\\\"individual\\\"\"},{\"short_name\":\"Entity Relationship to the AI\",\"value_json\":\"[\\\"user\\\"]\"},{\"short_name\":\"Harm Category Experienced\",\"value_json\":\"\\\"AI tangible harm event\\\"\"},{\"short_name\":\"Harm Type Experienced\",\"value_json\":\"\\\"physical property\\\"\"},{\"short_name\":\"Notes (Characterizing Entities and the Harm)\",\"value_json\":\"\\\"Truck driver hit by Tesla. Damage to truck could have been minimized by the deployment of breaks\\\"\"}]}]"
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Lives Lost",
- "value_json": "1"
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Injuries",
- "value_json": "-2"
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Estimated Harm Quantities",
- "value_json": "true"
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Notes ( Tangible Harm Quantities Information)",
- "value_json": "\"\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "AI System Description",
- "value_json": "\"Tesla Autopilot. \""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Data Inputs",
- "value_json": "[\"video input\",\"navigation\",\"sensor data\",\"tra\",\"road data\",\"traffic\",\"GPS\"]"
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Sector of Deployment",
- "value_json": "[\"transportation and storage\"]"
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Public Sector Deployment",
- "value_json": "\"no\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Autonomy Level",
- "value_json": "\"Autonomy2\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Notes (Information about AI System)",
- "value_json": "\"\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Intentional Harm",
- "value_json": "\"No. Not intentionally designed to perform harm\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Physical System Type",
- "value_json": "\"Automobile\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "AI Task",
- "value_json": "[\"navigation\",\"transportation\"]"
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "AI tools and methods",
- "value_json": "[\"Autonomous Driving\"]"
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Notes (AI Functionality and Techniques)",
- "value_json": "\"\""
- }
- ],
- "incidents": [
- 52
- ],
- "namespace": "CSETv1",
- "notes": "Annotator 1: \n\n This a note from the annotator 1\n\nAnnotator 2: \n\n This a note from the annotator 2",
- "publish": null
- }
- }
-}
\ No newline at end of file
diff --git a/site/gatsby-site/cypress/fixtures/classifications/upsertDuplicateClassification.json b/site/gatsby-site/cypress/fixtures/classifications/upsertDuplicateClassification.json
deleted file mode 100644
index 5a9494c3c5..0000000000
--- a/site/gatsby-site/cypress/fixtures/classifications/upsertDuplicateClassification.json
+++ /dev/null
@@ -1,325 +0,0 @@
-{
- "data": {
- "upsertOneClassification": {
- "__typename": "Classification",
- "_id": "64ac2b05c70973a5bd3fa61a",
- "attributes": [
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Physical Objects",
- "value_json": "\"no\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Entertainment Industry",
- "value_json": "\"no\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Report, Test, or Study of data",
- "value_json": "\"no\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Deployed",
- "value_json": "\"yes\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Producer Test in Controlled Conditions",
- "value_json": "\"no\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Producer Test in Operational Conditions",
- "value_json": "\"no\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "User Test in Controlled Conditions",
- "value_json": "\"no\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "User Test in Operational Conditions",
- "value_json": "\"no\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Harm Domain",
- "value_json": "\"yes\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Tangible Harm",
- "value_json": "\"tangible harm definitively occurred\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "AI System",
- "value_json": "\"yes\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Clear link to technology",
- "value_json": "\"yes\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "There is a potentially identifiable specific entity that experienced the harm",
- "value_json": "true"
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "AI Harm Level",
- "value_json": "\"AI tangible harm event\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Impact on Critical Services",
- "value_json": "\"no\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Rights Violation",
- "value_json": "\"no\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Involving Minor",
- "value_json": "\"no\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Detrimental Content",
- "value_json": "\"no\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Protected Characteristic",
- "value_json": "\"no\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Harm Distribution Basis",
- "value_json": "[\"none\"]"
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Clear link to Technology",
- "value_json": "\"yes\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Harmed Class of Entities",
- "value_json": "true"
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Annotator’s AI special interest intangible harm assessment",
- "value_json": "\"no\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Sector of Deployment",
- "value_json": "[\"accommodation and food service activities\"]"
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Public Sector Deployment",
- "value_json": "\"no\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Autonomy Level",
- "value_json": "\"Autonomy2\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Intentional Harm",
- "value_json": "\"No. Not intentionally designed to perform harm\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "AI tools and methods",
- "value_json": "\"\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Peer Reviewer",
- "value_json": "\"\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Quality Control",
- "value_json": "false"
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Annotation Status",
- "value_json": "\"6. Complete and final\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Incident Number",
- "value_json": "10"
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Annotator",
- "value_json": "\"002\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "AI Tangible Harm Level Notes",
- "value_json": "\"\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Notes (special interest intangible harm)",
- "value_json": "\"\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Special Interest Intangible Harm",
- "value_json": "\"no\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Notes (AI special interest intangible harm)",
- "value_json": "\"\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Date of Incident Year",
- "value_json": "\"2014\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Date of Incident Month",
- "value_json": "\"\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Date of Incident Day",
- "value_json": "\"\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Estimated Date",
- "value_json": "true"
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Multiple AI Interaction",
- "value_json": "\"no\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Embedded",
- "value_json": "\"no\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Location City",
- "value_json": "\"\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Location State/Province (two letters)",
- "value_json": "\"\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Location Country (two letters)",
- "value_json": "\"US\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Location Region",
- "value_json": "\"North America\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Infrastructure Sectors",
- "value_json": "[]"
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Operating Conditions",
- "value_json": "\"\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Notes (Environmental and Temporal Characteristics)",
- "value_json": "\"\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Entities",
- "value_json": "[{\"attributes\":[{\"short_name\":\"Entity\",\"value_json\":\"\\\"Starbucks\\\"\"},{\"short_name\":\"Named Entity\",\"value_json\":\"true\"},{\"short_name\":\"Entity type\",\"value_json\":\"\\\"for-profit organization\\\"\"},{\"short_name\":\"Entity Relationship to the AI\",\"value_json\":\"[\\\"deployer\\\"]\"},{\"short_name\":\"Harm Category Experienced\",\"value_json\":\"\\\"not applicable\\\"\"},{\"short_name\":\"Harm Type Experienced\",\"value_json\":\"\\\"not applicable\\\"\"}]},{\"attributes\":[{\"short_name\":\"Entity\",\"value_json\":\"\\\"Kronos\\\"\"},{\"short_name\":\"Named Entity\",\"value_json\":\"true\"},{\"short_name\":\"Entity type\",\"value_json\":\"\\\"for-profit organization\\\"\"},{\"short_name\":\"Entity Relationship to the AI\",\"value_json\":\"[\\\"developer\\\"]\"},{\"short_name\":\"Harm Category Experienced\",\"value_json\":\"\\\"not applicable\\\"\"},{\"short_name\":\"Harm Type Experienced\",\"value_json\":\"\\\"not applicable\\\"\"}]},{\"attributes\":[{\"short_name\":\"Entity\",\"value_json\":\"\\\"Kronos scheduling algorithm\\\"\"},{\"short_name\":\"Named Entity\",\"value_json\":\"false\"},{\"short_name\":\"Entity type\",\"value_json\":\"\\\"product\\\"\"},{\"short_name\":\"Entity Relationship to the AI\",\"value_json\":\"[\\\"product containing AI\\\"]\"},{\"short_name\":\"Harm Category Experienced\",\"value_json\":\"\\\"not applicable\\\"\"},{\"short_name\":\"Harm Type Experienced\",\"value_json\":\"\\\"not applicable\\\"\"}]},{\"attributes\":[{\"short_name\":\"Entity\",\"value_json\":\"\\\"Starbucks employees\\\"\"},{\"short_name\":\"Named Entity\",\"value_json\":\"false\"},{\"short_name\":\"Entity type\",\"value_json\":\"\\\"group of individuals\\\"\"},{\"short_name\":\"Notes (Characterizing Entities and the Harm)\",\"value_json\":\"\\\"7.6 - It is reasonable to expect that unpredictable schedules have led to financial loss for other Starbucks employees through lost wages or unexpected expenses like childcare to attend work on short notice.\\\"\"},{\"short_name\":\"Harm Category Experienced\",\"value_json\":\"\\\"AI tangible harm issue\\\"\"},{\"short_name\":\"Harm Type Experienced\",\"value_json\":\"\\\"financial loss\\\"\"},{\"short_name\":\"Entity Relationship to the AI\",\"value_json\":\"[\\\"affected non-users\\\"]\"}]},{\"attributes\":[{\"short_name\":\"Entity\",\"value_json\":\"\\\"Kylei Weisse\\\"\"},{\"short_name\":\"Named Entity\",\"value_json\":\"true\"},{\"short_name\":\"Entity type\",\"value_json\":\"\\\"individual\\\"\"},{\"short_name\":\"Entity Relationship to the AI\",\"value_json\":\"[\\\"affected non-user\\\"]\"},{\"short_name\":\"Harm Category Experienced\",\"value_json\":\"\\\"AI tangible harm event\\\"\"},{\"short_name\":\"Harm Type Experienced\",\"value_json\":\"\\\"financial loss\\\"\"},{\"short_name\":\"Notes (Characterizing Entities and the Harm)\",\"value_json\":\"\\\"Weisse incurred unexpected financial costs in order to make it to a shift that was assigned to him on very short notice. \\\"\"}]},{\"attributes\":[{\"short_name\":\"Entity\",\"value_json\":\"\\\"Starbucks employees\\\"\"},{\"short_name\":\"Named Entity\",\"value_json\":\"false\"},{\"short_name\":\"Entity type\",\"value_json\":\"\\\"group of individuals\\\"\"},{\"short_name\":\"Entity Relationship to the AI\",\"value_json\":\"[\\\"affected non-users\\\"]\"},{\"short_name\":\"Harm Category Experienced\",\"value_json\":\"\\\"Other harm not meeting CSET definitions\\\"\"},{\"short_name\":\"Harm Type Experienced\",\"value_json\":\"\\\"other intangible harm\\\"\"},{\"short_name\":\"Notes (Characterizing Entities and the Harm)\",\"value_json\":\"\\\"7.6 - Unpredictable schedules cause stress through financial and scheduling instability\\\"\"}]},{\"attributes\":[{\"short_name\":\"Entity\",\"value_json\":\"\\\"Jannette Navarro\\\"\"},{\"short_name\":\"Named Entity\",\"value_json\":\"true\"},{\"short_name\":\"Entity type\",\"value_json\":\"\\\"individual\\\"\"},{\"short_name\":\"Entity Relationship to the AI\",\"value_json\":\"[\\\"affected non-user\\\"]\"},{\"short_name\":\"Harm Category Experienced\",\"value_json\":\"\\\"Other harm not meeting CSET definitions\\\"\"},{\"short_name\":\"Harm Type Experienced\",\"value_json\":\"\\\"other intangible harm\\\"\"},{\"short_name\":\"Notes (Characterizing Entities and the Harm)\",\"value_json\":\"\\\"7.6 - Her unpredictable schedules caused serious stress and instability in her life.\\\"\"}]}]"
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Lives Lost",
- "value_json": "0"
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Injuries",
- "value_json": "0"
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Estimated Harm Quantities",
- "value_json": "false"
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Notes ( Tangible Harm Quantities Information)",
- "value_json": "\"\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "AI System Description",
- "value_json": "\"The Kronos scheduling algorithm is designed to optimize the productivity of stores like Starbucks by scheduling workers inconsistently throughout and across weeks based on predicted store traffic.\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Data Inputs",
- "value_json": "[\"schedules\",\"worker profiles\",\"store traffic\"]"
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Notes (Information about AI System)",
- "value_json": "\"\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Physical System Type",
- "value_json": "\"\""
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "AI Task",
- "value_json": "[\"scheduling\",\"productivity optimization\",\"predict store traffic\"]"
- },
- {
- "__typename": "ClassificationAttribute",
- "short_name": "Notes (AI Functionality and Techniques)",
- "value_json": "\"\""
- }
- ],
- "incidents": [
- {
- "__typename": "Incident",
- "incident_id": 50
- }
- ],
- "namespace": "CSETv1",
- "notes": "",
- "publish": true,
- "reports": []
- }
- }
-}
diff --git a/site/gatsby-site/cypress/fixtures/history/incidentHistory.json b/site/gatsby-site/cypress/fixtures/history/incidentHistory.json
deleted file mode 100644
index b8c13be934..0000000000
--- a/site/gatsby-site/cypress/fixtures/history/incidentHistory.json
+++ /dev/null
@@ -1,99 +0,0 @@
-{
- "data": {
- "history_incidents": [
- {
- "AllegedDeployerOfAISystem": ["youtube", "google"],
- "AllegedDeveloperOfAISystem": ["google"],
- "AllegedHarmedOrNearlyHarmedParties": ["google"],
- "_id": "64cc42271a57ad8fd9b338d0",
- "date": "2023-08-02",
- "description": "this is the description v2",
- "editor_dissimilar_incidents": [],
- "editor_notes": "This is the editor notes v3",
- "editor_similar_incidents": [],
- "editors": ["1", "2"],
- "embedding": null,
- "epoch_date_modified": 1691107500,
- "flagged_dissimilar_incidents": null,
- "incident_id": 10,
- "modifiedBy": "1",
- "nlp_similar_incidents": [],
- "reports": [3205, 3206],
- "title": "Google Bungles AI Reveal With Incorrect Webb Telescope Facts v2",
- "tsne": {
- "x": null,
- "y": null
- }
- },
- {
- "AllegedDeployerOfAISystem": ["youtube", "google"],
- "AllegedDeveloperOfAISystem": ["google"],
- "AllegedHarmedOrNearlyHarmedParties": ["google"],
- "_id": "64cc40ace0efed3dceee2e90",
- "date": "2023-08-02",
- "description": "this is the description v2",
- "editor_dissimilar_incidents": [],
- "editor_notes": "This is the editor notes v3",
- "editor_similar_incidents": [],
- "editors": ["1", "2"],
- "embedding": null,
- "epoch_date_modified": 1691107497,
- "flagged_dissimilar_incidents": null,
- "incident_id": 10,
- "modifiedBy": "1",
- "nlp_similar_incidents": [],
- "reports": [3205],
- "title": "Google Bungles AI Reveal With Incorrect Webb Telescope Facts v2",
- "tsne": {
- "x": null,
- "y": null
- }
- },
- {
- "AllegedDeployerOfAISystem": ["youtube"],
- "AllegedDeveloperOfAISystem": ["google"],
- "AllegedHarmedOrNearlyHarmedParties": ["google"],
- "_id": "64cc1d50a8af01b3b524593a",
- "date": "2023-08-02",
- "description": "this is the description v2",
- "editor_dissimilar_incidents": [],
- "editor_notes": "This is the editor notes v2",
- "editor_similar_incidents": [],
- "editors": ["1", "2"],
- "embedding": null,
- "epoch_date_modified": 1691098445,
- "flagged_dissimilar_incidents": null,
- "incident_id": 10,
- "modifiedBy": "1",
- "nlp_similar_incidents": [],
- "reports": [3205],
- "title": "Google Bungles AI Reveal With Incorrect Webb Telescope Facts v2",
- "tsne": {
- "x": null,
- "y": null
- }
- },
- {
- "AllegedDeployerOfAISystem": ["youtube"],
- "AllegedDeveloperOfAISystem": ["google"],
- "AllegedHarmedOrNearlyHarmedParties": ["tesla"],
- "_id": "64cc1d0c1c1f73dbc022f0b6",
- "date": "2023-08-03",
- "description": "this is the description",
- "editor_dissimilar_incidents": [],
- "editor_notes": null,
- "editor_similar_incidents": [],
- "editors": ["2"],
- "embedding": null,
- "epoch_date_modified": 1691098359,
- "flagged_dissimilar_incidents": null,
- "incident_id": 10,
- "modifiedBy": "1",
- "nlp_similar_incidents": [],
- "reports": [3205],
- "title": "Google Bungles AI Reveal With Incorrect Webb Telescope Facts",
- "tsne": null
- }
- ]
- }
-}
diff --git a/site/gatsby-site/cypress/fixtures/history/reportHistory.json b/site/gatsby-site/cypress/fixtures/history/reportHistory.json
deleted file mode 100644
index 2e05ddc6e2..0000000000
--- a/site/gatsby-site/cypress/fixtures/history/reportHistory.json
+++ /dev/null
@@ -1,291 +0,0 @@
-{
- "data": {
- "history_reports": [
- {
- "_id": "64d18f7a1a4fcdeaf137442b",
- "authors": ["Pablo Costa v2", "Pablo Costa v3", "Pablo Costa v4"],
- "cloudinary_id": "reports/image.cnbcfm.com/api/v1/image/100266733-38cbdbd7a4bcc3cf98120f6574fe94a3afe0fca6.jpg?v=1529461359&w=1920&h=1080",
- "date_downloaded": "2023-08-04",
- "date_modified": "2023-08-07",
- "date_published": "2023-08-04",
- "date_submitted": "2023-08-03",
- "description": null,
- "editor_notes": "editor notes v2",
- "embedding": null,
- "epoch_date_downloaded": 1691107200,
- "epoch_date_modified": 1691455351,
- "epoch_date_published": 1691107200,
- "epoch_date_submitted": 1691020800,
- "flag": null,
- "image_url": "https://image.cnbcfm.com/api/v1/image/100266733-38cbdbd7a4bcc3cf98120f6574fe94a3afe0fca6.jpg?v=1529461359&w=1920&h=1080",
- "inputs_outputs": ["input 1"],
- "is_incident_report": true,
- "language": "es",
- "modifiedBy": "1",
- "plain_text": "\n\nBy Aimee Picchi\n\nSeptember 24, 2015 / 11:41 AM / MoneyWatch\n\nFor Starbucks (SBUX) barista Kylei Weisse, working at the coffee chain helps him secure health insurance and some extra money while he studies at Georgia Perimeter College. What it doesn't provide is the kind of stable schedule that the company promised its workers last year.\n\n\"It's the wild inconsistency\" of the hours that's a problem, Weisse, 32, said. \"We're supposed to get them 10 days in advance, which often happens, but there's no guarantee. If our manager doesn't get it to us on time, we just have to deal with it.\"\n\nThat became a problem recently when Weisse's manager gave him only a few days notice on his work hours, which ended up conflicting with an anatomy and physiology exam at his college. Weisse ended up paying another worker $20 to take his shift so he could take the exam.\n\nThe short notice is especially frustrating because of Starbucks' vow last year to post employees' schedules at least 10 days in advance, as well as the company's insistence that workers provide at least one-month notice when they need to take a day off.\n\nWhat's behind Starbucks price increases? 03:04\n\nWeisse isn't alone in complaining that Starbucks isn't living up to its promises to overhaul its labor practices for its roughly 130,000 baristas. That vow followed an article last year by The New York Times that detailed how workers were struggling to manage childcare and other obligations when the company provided only a few days notice about their schedules.\n\nAbout half of roughly 200 Starbucks baristas in a recent survey said they are still receiving their schedule with less than one week's notice. Others also reported being asked to handle \"clopens,\" split shifts in which employees work a closing shift late into the evening and then an early opening shift the following morning. The company last year promised to end the practice.\n\nOf course, Starbucks isn't alone in using \"just-in-time\" scheduling, with the retail and restaurant industry increasingly turning to software that allows them to change work schedules at the last minute, depending on whether business picks up or slows down. But it is Starbucks that has become a lightning rod on the issue given its vows to improve how it treats employees and its own emphatic claims to valuing workers, whom it labels \"partners.\"\n\n\"Starbucks has the values and wants to do right by their employees,\" said Carrie Gleason, director of the Fair Workweek Initiative at the Center for Popular Democracy, an advocacy group focused on workers'rights, and a co-author of the group's new report on the company's labor practices. \"However, since last year when the company recognized there was a serious problem with the way it scheduled workers and pledged to reform, still so many of the same issues persist.\"\n\nStarbucks didn't respond to requests for comment on the study or on baristas' reports of labor practices that are failing to meet the company's stated goals.\n\nIn an internal memo this week published by Time, Starbucks executive Cliff Burrows wrote that the company couldn't validate the survey, but added that \"the findings suggest, contrary to the expectations we have in place, that some partners are receiving their schedules less than one week in advance and that there is a continuing issue with some partners working a close and then an opening shift the following morning.\" He asks store managers \"to go the extra mile to ensure partners have a consistent schedule.\"\n\nStarbucks ends \"race together\" campaign amid public backlash 00:26\n\nTo be sure, some Starbucks workers are receiving at least 10 days notice on their work hours, with the survey finding that about one-third receive two weeks notice and another 18 percent get their schedules three weeks in advance. But that leaves almost half of workers who only receive one week's notice, making it more difficult from them manage other obligations, such as school, family commitments or other jobs.\n\nClopens remain a problem, as well. About 60 percent of workers who have to handle a clopen receive seven or fewer hours of rest between a closing and an opening shift, the study found.\n\nThat's prompted one former Starbucks employee to start a petition to end the practice of scheduling clopens. Ciara Moran noted in her petition that she sometimes was only able to get four or five hours of sleep on the days she was scheduled for clopens. She said she quit her job because she doubted whether it was possible to get ahead given the demands on workers.\n\nEven if Starbucks stuck with its policy of providing eight hours between shifts, that's not enough time, especially given that many workers in the service sector have long commutes, the study said.\n\nAnother issue singled out by the report is Starbucks' practices on sick time. Since paid time off is only available to workers with at least a year on the job, about 40 percent of employees in the survey said they had dealt with barriers in taking sick days.\n\nIn a perfect world, Weisse said he'd like to receive his schedule either a month or a quarter in advance. Asked if he's upset about the last-minute schedules, Weisse said he had become resigned to it.\n\n\"I don't know if you've ever seen experiments with rats,\" he said. \"First they get upset if you treat them badly. Then they lay down and try not to move too much. I'm like that now. Things are terrible.\"\n\nV2\n",
- "report_number": 3206,
- "submitters": ["Test User v2"],
- "tags": [],
- "text": "[](/moneywatch)\n\nBy Aimee Picchi\n\nSeptember 24, 2015 / 11:41 AM / MoneyWatch\n\nFor Starbucks ([SBUX](http://markets.cbsnews.com/SBUX/quote/)) barista Kylei Weisse, working at the coffee chain helps him secure health insurance and some extra money while he studies at Georgia Perimeter College. What it doesn't provide is the kind of stable schedule that the [company promised its workers](https://www.cbsnews.com/news/for-some-starbucks-workers-job-leaves-bitter-taste/) last year.\n\n\"It's the wild inconsistency\" of the hours that's a problem, Weisse, 32, said. \"We're supposed to get them 10 days in advance, which often happens, but there's no guarantee. If our manager doesn't get it to us on time, we just have to deal with it.\"\n\nThat became a problem recently when Weisse's manager gave him only a few days notice on his work hours, which ended up conflicting with an anatomy and physiology exam at his college. Weisse ended up paying another worker $20 to take his shift so he could take the exam.\n\nThe short notice is especially frustrating because of Starbucks' vow last year to post employees' schedules at least 10 days in advance, as well as the company's insistence that workers provide at least one-month notice when they need to take a day off.\n\n[What's behind Starbucks price increases? 03:04](https://www.cbsnews.com/video/whats-behind-starbucks-price-increases/)\n\nWeisse isn't alone in complaining that Starbucks isn't living up to its promises to overhaul its labor practices for its roughly 130,000 baristas. That vow followed an [article last year by The New York Times](http://www.nytimes.com/interactive/2014/08/13/us/starbucks-workers-scheduling-hours.html?_r=1) that detailed how workers were struggling to manage childcare and other obligations when the company provided only a few days notice about their schedules.\n\nAbout half of roughly 200 Starbucks baristas [in a recent survey](http://static1.squarespace.com/static/556496efe4b02c9d26fdf26a/t/56027485e4b02ead4f16bc2a/1443001477305/The+Grind.pdf) said they are still receiving their schedule with less than one week's notice. Others also reported being asked to handle \"clopens,\" split shifts in which employees work a closing shift late into the evening and then an early opening shift the following morning. The company last year promised to end the practice.\n\nOf course, Starbucks isn't alone in using [\"just-in-time\" scheduling](https://www.cbsnews.com/news/in-retail-life-on-the-job-often-leads-to-a-dead-end/), with the retail and restaurant industry increasingly turning to software that allows them to change work schedules at the last minute, depending on whether business picks up or slows down. But it is Starbucks that has become a lightning rod on the issue given its vows to improve how it treats employees and its own [emphatic claims](http://www.starbucks.com/careers/working-at-starbucks) to valuing workers, whom it labels \"partners.\"\n\n\"Starbucks has the values and wants to do right by their employees,\" said Carrie Gleason, director of the Fair Workweek Initiative at the Center for Popular Democracy, an advocacy group focused on workers'rights, and a co-author of the group's new [report on the company's labor practices](http://populardemocracy.org/sites/default/files/The%2BGrind.pdf). \"However, since last year when the company recognized there was a serious problem with the way it scheduled workers and pledged to reform, still so many of the same issues persist.\"\n\nStarbucks didn't respond to requests for comment on the study or on baristas' reports of labor practices that are failing to meet the company's stated goals.\n\nIn an internal memo this week [published by Time](http://time.com/4047359/starbucks-scheduling-labor-practices-memo/), Starbucks executive Cliff Burrows wrote that the company couldn't validate the survey, but added that \"the findings suggest, contrary to the expectations we have in place, that some partners are receiving their schedules less than one week in advance and that there is a continuing issue with some partners working a close and then an opening shift the following morning.\" He asks store managers \"to go the extra mile to ensure partners have a consistent schedule.\"\n\n[Starbucks ends \"race together\" campaign amid public backlash 00:26](https://www.cbsnews.com/video/starbucks-ends-race-together-campaign-amid-public-backlash/)\n\nTo be sure, some Starbucks workers are receiving at least 10 days notice on their work hours, with the survey finding that about one-third receive two weeks notice and another 18 percent get their schedules three weeks in advance. But that leaves almost half of workers who only receive one week's notice, making it more difficult from them manage other obligations, such as school, family commitments or other jobs.\n\nClopens remain a problem, as well. About 60 percent of workers who have to handle a clopen receive seven or fewer hours of rest between a closing and an opening shift, the study found.\n\nThat's prompted one former Starbucks employee to start a petition to end the practice of scheduling clopens. Ciara Moran noted in her petition that she sometimes was only able to get [four or five hours of sleep](https://www.coworker.org/petitions/starbucks-end-clopens-now) on the days she was scheduled for clopens. She said she quit her job because she doubted whether it was possible to get ahead given the demands on workers.\n\nEven if Starbucks stuck with its policy of providing eight hours between shifts, that's not enough time, especially given that many workers in the service sector have long commutes, the study said.\n\nAnother issue singled out by the report is Starbucks' practices on sick time. Since paid time off is only available to workers with at least a year on the job, about 40 percent of employees in the survey said they had dealt with barriers in taking sick days.\n\nIn a perfect world, Weisse said he'd like to receive his schedule either a month or a quarter in advance. Asked if he's upset about the last-minute schedules, Weisse said he had become resigned to it.\n\n\"I don't know if you've ever seen experiments with rats,\" he said. \"First they get upset if you treat them badly. Then they lay down and try not to move too much. I'm like that now. Things are terrible.\"\n\nV2",
- "title": "Is Starbucks shortchanging its baristas? v2",
- "url": "https://www.cbsnews.com/news/is-starbucks-shortchanging-its-baristas",
- "source_domain": "cbsnews.com",
- "user": "1"
- },
- {
- "_id": "64d18f66f549de65c4e7841e",
- "authors": ["Pablo Costa v2", "Pablo Costa v3", "Pablo Costa v4"],
- "cloudinary_id": "reports/image.cnbcfm.com/api/v1/image/100266733-38cbdbd7a4bcc3cf98120f6574fe94a3afe0fca6.jpg?v=1529461359&w=1920&h=1080",
- "date_downloaded": "2023-08-04",
- "date_modified": "2023-08-07",
- "date_published": "2023-08-04",
- "date_submitted": "2023-08-03",
- "description": null,
- "editor_notes": "editor notes v2",
- "embedding": null,
- "epoch_date_downloaded": 1691107200,
- "epoch_date_modified": 1691455331,
- "epoch_date_published": 1691107200,
- "epoch_date_submitted": 1691020800,
- "flag": null,
- "image_url": "https://image.cnbcfm.com/api/v1/image/100266733-38cbdbd7a4bcc3cf98120f6574fe94a3afe0fca6.jpg?v=1529461359&w=1920&h=1080",
- "inputs_outputs": ["input 1"],
- "is_incident_report": true,
- "language": "es",
- "modifiedBy": "1",
- "plain_text": "\n\nBy Aimee Picchi\n\nSeptember 24, 2015 / 11:41 AM / MoneyWatch\n\nFor Starbucks (SBUX) barista Kylei Weisse, working at the coffee chain helps him secure health insurance and some extra money while he studies at Georgia Perimeter College. What it doesn't provide is the kind of stable schedule that the company promised its workers last year.\n\n\"It's the wild inconsistency\" of the hours that's a problem, Weisse, 32, said. \"We're supposed to get them 10 days in advance, which often happens, but there's no guarantee. If our manager doesn't get it to us on time, we just have to deal with it.\"\n\nThat became a problem recently when Weisse's manager gave him only a few days notice on his work hours, which ended up conflicting with an anatomy and physiology exam at his college. Weisse ended up paying another worker $20 to take his shift so he could take the exam.\n\nThe short notice is especially frustrating because of Starbucks' vow last year to post employees' schedules at least 10 days in advance, as well as the company's insistence that workers provide at least one-month notice when they need to take a day off.\n\nWhat's behind Starbucks price increases? 03:04\n\nWeisse isn't alone in complaining that Starbucks isn't living up to its promises to overhaul its labor practices for its roughly 130,000 baristas. That vow followed an article last year by The New York Times that detailed how workers were struggling to manage childcare and other obligations when the company provided only a few days notice about their schedules.\n\nAbout half of roughly 200 Starbucks baristas in a recent survey said they are still receiving their schedule with less than one week's notice. Others also reported being asked to handle \"clopens,\" split shifts in which employees work a closing shift late into the evening and then an early opening shift the following morning. The company last year promised to end the practice.\n\nOf course, Starbucks isn't alone in using \"just-in-time\" scheduling, with the retail and restaurant industry increasingly turning to software that allows them to change work schedules at the last minute, depending on whether business picks up or slows down. But it is Starbucks that has become a lightning rod on the issue given its vows to improve how it treats employees and its own emphatic claims to valuing workers, whom it labels \"partners.\"\n\n\"Starbucks has the values and wants to do right by their employees,\" said Carrie Gleason, director of the Fair Workweek Initiative at the Center for Popular Democracy, an advocacy group focused on workers'rights, and a co-author of the group's new report on the company's labor practices. \"However, since last year when the company recognized there was a serious problem with the way it scheduled workers and pledged to reform, still so many of the same issues persist.\"\n\nStarbucks didn't respond to requests for comment on the study or on baristas' reports of labor practices that are failing to meet the company's stated goals.\n\nIn an internal memo this week published by Time, Starbucks executive Cliff Burrows wrote that the company couldn't validate the survey, but added that \"the findings suggest, contrary to the expectations we have in place, that some partners are receiving their schedules less than one week in advance and that there is a continuing issue with some partners working a close and then an opening shift the following morning.\" He asks store managers \"to go the extra mile to ensure partners have a consistent schedule.\"\n\nStarbucks ends \"race together\" campaign amid public backlash 00:26\n\nTo be sure, some Starbucks workers are receiving at least 10 days notice on their work hours, with the survey finding that about one-third receive two weeks notice and another 18 percent get their schedules three weeks in advance. But that leaves almost half of workers who only receive one week's notice, making it more difficult from them manage other obligations, such as school, family commitments or other jobs.\n\nClopens remain a problem, as well. About 60 percent of workers who have to handle a clopen receive seven or fewer hours of rest between a closing and an opening shift, the study found.\n\nThat's prompted one former Starbucks employee to start a petition to end the practice of scheduling clopens. Ciara Moran noted in her petition that she sometimes was only able to get four or five hours of sleep on the days she was scheduled for clopens. She said she quit her job because she doubted whether it was possible to get ahead given the demands on workers.\n\nEven if Starbucks stuck with its policy of providing eight hours between shifts, that's not enough time, especially given that many workers in the service sector have long commutes, the study said.\n\nAnother issue singled out by the report is Starbucks' practices on sick time. Since paid time off is only available to workers with at least a year on the job, about 40 percent of employees in the survey said they had dealt with barriers in taking sick days.\n\nIn a perfect world, Weisse said he'd like to receive his schedule either a month or a quarter in advance. Asked if he's upset about the last-minute schedules, Weisse said he had become resigned to it.\n\n\"I don't know if you've ever seen experiments with rats,\" he said. \"First they get upset if you treat them badly. Then they lay down and try not to move too much. I'm like that now. Things are terrible.\"\n\nV2\n",
- "report_number": 3206,
- "submitters": ["Test User v2"],
- "tags": ["response"],
- "text": "[](/moneywatch)\n\nBy Aimee Picchi\n\nSeptember 24, 2015 / 11:41 AM / MoneyWatch\n\nFor Starbucks ([SBUX](http://markets.cbsnews.com/SBUX/quote/)) barista Kylei Weisse, working at the coffee chain helps him secure health insurance and some extra money while he studies at Georgia Perimeter College. What it doesn't provide is the kind of stable schedule that the [company promised its workers](https://www.cbsnews.com/news/for-some-starbucks-workers-job-leaves-bitter-taste/) last year.\n\n\"It's the wild inconsistency\" of the hours that's a problem, Weisse, 32, said. \"We're supposed to get them 10 days in advance, which often happens, but there's no guarantee. If our manager doesn't get it to us on time, we just have to deal with it.\"\n\nThat became a problem recently when Weisse's manager gave him only a few days notice on his work hours, which ended up conflicting with an anatomy and physiology exam at his college. Weisse ended up paying another worker $20 to take his shift so he could take the exam.\n\nThe short notice is especially frustrating because of Starbucks' vow last year to post employees' schedules at least 10 days in advance, as well as the company's insistence that workers provide at least one-month notice when they need to take a day off.\n\n[What's behind Starbucks price increases? 03:04](https://www.cbsnews.com/video/whats-behind-starbucks-price-increases/)\n\nWeisse isn't alone in complaining that Starbucks isn't living up to its promises to overhaul its labor practices for its roughly 130,000 baristas. That vow followed an [article last year by The New York Times](http://www.nytimes.com/interactive/2014/08/13/us/starbucks-workers-scheduling-hours.html?_r=1) that detailed how workers were struggling to manage childcare and other obligations when the company provided only a few days notice about their schedules.\n\nAbout half of roughly 200 Starbucks baristas [in a recent survey](http://static1.squarespace.com/static/556496efe4b02c9d26fdf26a/t/56027485e4b02ead4f16bc2a/1443001477305/The+Grind.pdf) said they are still receiving their schedule with less than one week's notice. Others also reported being asked to handle \"clopens,\" split shifts in which employees work a closing shift late into the evening and then an early opening shift the following morning. The company last year promised to end the practice.\n\nOf course, Starbucks isn't alone in using [\"just-in-time\" scheduling](https://www.cbsnews.com/news/in-retail-life-on-the-job-often-leads-to-a-dead-end/), with the retail and restaurant industry increasingly turning to software that allows them to change work schedules at the last minute, depending on whether business picks up or slows down. But it is Starbucks that has become a lightning rod on the issue given its vows to improve how it treats employees and its own [emphatic claims](http://www.starbucks.com/careers/working-at-starbucks) to valuing workers, whom it labels \"partners.\"\n\n\"Starbucks has the values and wants to do right by their employees,\" said Carrie Gleason, director of the Fair Workweek Initiative at the Center for Popular Democracy, an advocacy group focused on workers'rights, and a co-author of the group's new [report on the company's labor practices](http://populardemocracy.org/sites/default/files/The%2BGrind.pdf). \"However, since last year when the company recognized there was a serious problem with the way it scheduled workers and pledged to reform, still so many of the same issues persist.\"\n\nStarbucks didn't respond to requests for comment on the study or on baristas' reports of labor practices that are failing to meet the company's stated goals.\n\nIn an internal memo this week [published by Time](http://time.com/4047359/starbucks-scheduling-labor-practices-memo/), Starbucks executive Cliff Burrows wrote that the company couldn't validate the survey, but added that \"the findings suggest, contrary to the expectations we have in place, that some partners are receiving their schedules less than one week in advance and that there is a continuing issue with some partners working a close and then an opening shift the following morning.\" He asks store managers \"to go the extra mile to ensure partners have a consistent schedule.\"\n\n[Starbucks ends \"race together\" campaign amid public backlash 00:26](https://www.cbsnews.com/video/starbucks-ends-race-together-campaign-amid-public-backlash/)\n\nTo be sure, some Starbucks workers are receiving at least 10 days notice on their work hours, with the survey finding that about one-third receive two weeks notice and another 18 percent get their schedules three weeks in advance. But that leaves almost half of workers who only receive one week's notice, making it more difficult from them manage other obligations, such as school, family commitments or other jobs.\n\nClopens remain a problem, as well. About 60 percent of workers who have to handle a clopen receive seven or fewer hours of rest between a closing and an opening shift, the study found.\n\nThat's prompted one former Starbucks employee to start a petition to end the practice of scheduling clopens. Ciara Moran noted in her petition that she sometimes was only able to get [four or five hours of sleep](https://www.coworker.org/petitions/starbucks-end-clopens-now) on the days she was scheduled for clopens. She said she quit her job because she doubted whether it was possible to get ahead given the demands on workers.\n\nEven if Starbucks stuck with its policy of providing eight hours between shifts, that's not enough time, especially given that many workers in the service sector have long commutes, the study said.\n\nAnother issue singled out by the report is Starbucks' practices on sick time. Since paid time off is only available to workers with at least a year on the job, about 40 percent of employees in the survey said they had dealt with barriers in taking sick days.\n\nIn a perfect world, Weisse said he'd like to receive his schedule either a month or a quarter in advance. Asked if he's upset about the last-minute schedules, Weisse said he had become resigned to it.\n\n\"I don't know if you've ever seen experiments with rats,\" he said. \"First they get upset if you treat them badly. Then they lay down and try not to move too much. I'm like that now. Things are terrible.\"\n\nV2",
- "title": "Is Starbucks shortchanging its baristas? v2",
- "url": "https://www.cbsnews.com/news/is-starbucks-shortchanging-its-baristas",
- "source_domain": "cbsnews.com",
- "user": "1"
- },
- {
- "_id": "64d18f471bae3610af2ab1bc",
- "authors": ["Pablo Costa v2", "Pablo Costa v3", "Pablo Costa v4"],
- "cloudinary_id": "reports/image.cnbcfm.com/api/v1/image/100266733-38cbdbd7a4bcc3cf98120f6574fe94a3afe0fca6.jpg?v=1529461359&w=1920&h=1080",
- "date_downloaded": "2023-08-04",
- "date_modified": "2023-08-07",
- "date_published": "2023-08-04",
- "date_submitted": "2023-08-03",
- "description": null,
- "editor_notes": "editor notes v2",
- "embedding": null,
- "epoch_date_downloaded": 1691107200,
- "epoch_date_modified": 1691455300,
- "epoch_date_published": 1691107200,
- "epoch_date_submitted": 1691020800,
- "flag": null,
- "image_url": "https://image.cnbcfm.com/api/v1/image/100266733-38cbdbd7a4bcc3cf98120f6574fe94a3afe0fca6.jpg?v=1529461359&w=1920&h=1080",
- "inputs_outputs": ["input 1"],
- "is_incident_report": true,
- "language": "es",
- "modifiedBy": "1",
- "plain_text": "\n\nBy Aimee Picchi\n\nSeptember 24, 2015 / 11:41 AM / MoneyWatch\n\nFor Starbucks (SBUX) barista Kylei Weisse, working at the coffee chain helps him secure health insurance and some extra money while he studies at Georgia Perimeter College. What it doesn't provide is the kind of stable schedule that the company promised its workers last year.\n\n\"It's the wild inconsistency\" of the hours that's a problem, Weisse, 32, said. \"We're supposed to get them 10 days in advance, which often happens, but there's no guarantee. If our manager doesn't get it to us on time, we just have to deal with it.\"\n\nThat became a problem recently when Weisse's manager gave him only a few days notice on his work hours, which ended up conflicting with an anatomy and physiology exam at his college. Weisse ended up paying another worker $20 to take his shift so he could take the exam.\n\nThe short notice is especially frustrating because of Starbucks' vow last year to post employees' schedules at least 10 days in advance, as well as the company's insistence that workers provide at least one-month notice when they need to take a day off.\n\nWhat's behind Starbucks price increases? 03:04\n\nWeisse isn't alone in complaining that Starbucks isn't living up to its promises to overhaul its labor practices for its roughly 130,000 baristas. That vow followed an article last year by The New York Times that detailed how workers were struggling to manage childcare and other obligations when the company provided only a few days notice about their schedules.\n\nAbout half of roughly 200 Starbucks baristas in a recent survey said they are still receiving their schedule with less than one week's notice. Others also reported being asked to handle \"clopens,\" split shifts in which employees work a closing shift late into the evening and then an early opening shift the following morning. The company last year promised to end the practice.\n\nOf course, Starbucks isn't alone in using \"just-in-time\" scheduling, with the retail and restaurant industry increasingly turning to software that allows them to change work schedules at the last minute, depending on whether business picks up or slows down. But it is Starbucks that has become a lightning rod on the issue given its vows to improve how it treats employees and its own emphatic claims to valuing workers, whom it labels \"partners.\"\n\n\"Starbucks has the values and wants to do right by their employees,\" said Carrie Gleason, director of the Fair Workweek Initiative at the Center for Popular Democracy, an advocacy group focused on workers'rights, and a co-author of the group's new report on the company's labor practices. \"However, since last year when the company recognized there was a serious problem with the way it scheduled workers and pledged to reform, still so many of the same issues persist.\"\n\nStarbucks didn't respond to requests for comment on the study or on baristas' reports of labor practices that are failing to meet the company's stated goals.\n\nIn an internal memo this week published by Time, Starbucks executive Cliff Burrows wrote that the company couldn't validate the survey, but added that \"the findings suggest, contrary to the expectations we have in place, that some partners are receiving their schedules less than one week in advance and that there is a continuing issue with some partners working a close and then an opening shift the following morning.\" He asks store managers \"to go the extra mile to ensure partners have a consistent schedule.\"\n\nStarbucks ends \"race together\" campaign amid public backlash 00:26\n\nTo be sure, some Starbucks workers are receiving at least 10 days notice on their work hours, with the survey finding that about one-third receive two weeks notice and another 18 percent get their schedules three weeks in advance. But that leaves almost half of workers who only receive one week's notice, making it more difficult from them manage other obligations, such as school, family commitments or other jobs.\n\nClopens remain a problem, as well. About 60 percent of workers who have to handle a clopen receive seven or fewer hours of rest between a closing and an opening shift, the study found.\n\nThat's prompted one former Starbucks employee to start a petition to end the practice of scheduling clopens. Ciara Moran noted in her petition that she sometimes was only able to get four or five hours of sleep on the days she was scheduled for clopens. She said she quit her job because she doubted whether it was possible to get ahead given the demands on workers.\n\nEven if Starbucks stuck with its policy of providing eight hours between shifts, that's not enough time, especially given that many workers in the service sector have long commutes, the study said.\n\nAnother issue singled out by the report is Starbucks' practices on sick time. Since paid time off is only available to workers with at least a year on the job, about 40 percent of employees in the survey said they had dealt with barriers in taking sick days.\n\nIn a perfect world, Weisse said he'd like to receive his schedule either a month or a quarter in advance. Asked if he's upset about the last-minute schedules, Weisse said he had become resigned to it.\n\n\"I don't know if you've ever seen experiments with rats,\" he said. \"First they get upset if you treat them badly. Then they lay down and try not to move too much. I'm like that now. Things are terrible.\"\n\nV2\n",
- "report_number": 3206,
- "submitters": ["Test User v2"],
- "tags": [],
- "text": "[](/moneywatch)\n\nBy Aimee Picchi\n\nSeptember 24, 2015 / 11:41 AM / MoneyWatch\n\nFor Starbucks ([SBUX](http://markets.cbsnews.com/SBUX/quote/)) barista Kylei Weisse, working at the coffee chain helps him secure health insurance and some extra money while he studies at Georgia Perimeter College. What it doesn't provide is the kind of stable schedule that the [company promised its workers](https://www.cbsnews.com/news/for-some-starbucks-workers-job-leaves-bitter-taste/) last year.\n\n\"It's the wild inconsistency\" of the hours that's a problem, Weisse, 32, said. \"We're supposed to get them 10 days in advance, which often happens, but there's no guarantee. If our manager doesn't get it to us on time, we just have to deal with it.\"\n\nThat became a problem recently when Weisse's manager gave him only a few days notice on his work hours, which ended up conflicting with an anatomy and physiology exam at his college. Weisse ended up paying another worker $20 to take his shift so he could take the exam.\n\nThe short notice is especially frustrating because of Starbucks' vow last year to post employees' schedules at least 10 days in advance, as well as the company's insistence that workers provide at least one-month notice when they need to take a day off.\n\n[What's behind Starbucks price increases? 03:04](https://www.cbsnews.com/video/whats-behind-starbucks-price-increases/)\n\nWeisse isn't alone in complaining that Starbucks isn't living up to its promises to overhaul its labor practices for its roughly 130,000 baristas. That vow followed an [article last year by The New York Times](http://www.nytimes.com/interactive/2014/08/13/us/starbucks-workers-scheduling-hours.html?_r=1) that detailed how workers were struggling to manage childcare and other obligations when the company provided only a few days notice about their schedules.\n\nAbout half of roughly 200 Starbucks baristas [in a recent survey](http://static1.squarespace.com/static/556496efe4b02c9d26fdf26a/t/56027485e4b02ead4f16bc2a/1443001477305/The+Grind.pdf) said they are still receiving their schedule with less than one week's notice. Others also reported being asked to handle \"clopens,\" split shifts in which employees work a closing shift late into the evening and then an early opening shift the following morning. The company last year promised to end the practice.\n\nOf course, Starbucks isn't alone in using [\"just-in-time\" scheduling](https://www.cbsnews.com/news/in-retail-life-on-the-job-often-leads-to-a-dead-end/), with the retail and restaurant industry increasingly turning to software that allows them to change work schedules at the last minute, depending on whether business picks up or slows down. But it is Starbucks that has become a lightning rod on the issue given its vows to improve how it treats employees and its own [emphatic claims](http://www.starbucks.com/careers/working-at-starbucks) to valuing workers, whom it labels \"partners.\"\n\n\"Starbucks has the values and wants to do right by their employees,\" said Carrie Gleason, director of the Fair Workweek Initiative at the Center for Popular Democracy, an advocacy group focused on workers'rights, and a co-author of the group's new [report on the company's labor practices](http://populardemocracy.org/sites/default/files/The%2BGrind.pdf). \"However, since last year when the company recognized there was a serious problem with the way it scheduled workers and pledged to reform, still so many of the same issues persist.\"\n\nStarbucks didn't respond to requests for comment on the study or on baristas' reports of labor practices that are failing to meet the company's stated goals.\n\nIn an internal memo this week [published by Time](http://time.com/4047359/starbucks-scheduling-labor-practices-memo/), Starbucks executive Cliff Burrows wrote that the company couldn't validate the survey, but added that \"the findings suggest, contrary to the expectations we have in place, that some partners are receiving their schedules less than one week in advance and that there is a continuing issue with some partners working a close and then an opening shift the following morning.\" He asks store managers \"to go the extra mile to ensure partners have a consistent schedule.\"\n\n[Starbucks ends \"race together\" campaign amid public backlash 00:26](https://www.cbsnews.com/video/starbucks-ends-race-together-campaign-amid-public-backlash/)\n\nTo be sure, some Starbucks workers are receiving at least 10 days notice on their work hours, with the survey finding that about one-third receive two weeks notice and another 18 percent get their schedules three weeks in advance. But that leaves almost half of workers who only receive one week's notice, making it more difficult from them manage other obligations, such as school, family commitments or other jobs.\n\nClopens remain a problem, as well. About 60 percent of workers who have to handle a clopen receive seven or fewer hours of rest between a closing and an opening shift, the study found.\n\nThat's prompted one former Starbucks employee to start a petition to end the practice of scheduling clopens. Ciara Moran noted in her petition that she sometimes was only able to get [four or five hours of sleep](https://www.coworker.org/petitions/starbucks-end-clopens-now) on the days she was scheduled for clopens. She said she quit her job because she doubted whether it was possible to get ahead given the demands on workers.\n\nEven if Starbucks stuck with its policy of providing eight hours between shifts, that's not enough time, especially given that many workers in the service sector have long commutes, the study said.\n\nAnother issue singled out by the report is Starbucks' practices on sick time. Since paid time off is only available to workers with at least a year on the job, about 40 percent of employees in the survey said they had dealt with barriers in taking sick days.\n\nIn a perfect world, Weisse said he'd like to receive his schedule either a month or a quarter in advance. Asked if he's upset about the last-minute schedules, Weisse said he had become resigned to it.\n\n\"I don't know if you've ever seen experiments with rats,\" he said. \"First they get upset if you treat them badly. Then they lay down and try not to move too much. I'm like that now. Things are terrible.\"\n\nV2",
- "title": "Is Starbucks shortchanging its baristas? v2",
- "url": "https://www.cbsnews.com/news/is-starbucks-shortchanging-its-baristas",
- "source_domain": "cbsnews.com",
- "user": "1"
- },
- {
- "_id": "64d18f2f1a4fcdeaf1372bf4",
- "authors": ["Pablo Costa v2", "Pablo Costa v3", "Pablo Costa v4"],
- "cloudinary_id": "reports/image.cnbcfm.com/api/v1/image/100266733-38cbdbd7a4bcc3cf98120f6574fe94a3afe0fca6.jpg?v=1529461359&w=1920&h=1080",
- "date_downloaded": "2023-08-04",
- "date_modified": "2023-08-07",
- "date_published": "2023-08-04",
- "date_submitted": "2023-08-03",
- "description": null,
- "editor_notes": "editor notes v2",
- "embedding": null,
- "epoch_date_downloaded": 1691107200,
- "epoch_date_modified": 1691455276,
- "epoch_date_published": 1691107200,
- "epoch_date_submitted": 1691020800,
- "flag": null,
- "image_url": "https://image.cnbcfm.com/api/v1/image/100266733-38cbdbd7a4bcc3cf98120f6574fe94a3afe0fca6.jpg?v=1529461359&w=1920&h=1080",
- "inputs_outputs": ["input 1", "output 1", "input 2", "output 2"],
- "is_incident_report": true,
- "language": "es",
- "modifiedBy": "1",
- "plain_text": "\n\nBy Aimee Picchi\n\nSeptember 24, 2015 / 11:41 AM / MoneyWatch\n\nFor Starbucks (SBUX) barista Kylei Weisse, working at the coffee chain helps him secure health insurance and some extra money while he studies at Georgia Perimeter College. What it doesn't provide is the kind of stable schedule that the company promised its workers last year.\n\n\"It's the wild inconsistency\" of the hours that's a problem, Weisse, 32, said. \"We're supposed to get them 10 days in advance, which often happens, but there's no guarantee. If our manager doesn't get it to us on time, we just have to deal with it.\"\n\nThat became a problem recently when Weisse's manager gave him only a few days notice on his work hours, which ended up conflicting with an anatomy and physiology exam at his college. Weisse ended up paying another worker $20 to take his shift so he could take the exam.\n\nThe short notice is especially frustrating because of Starbucks' vow last year to post employees' schedules at least 10 days in advance, as well as the company's insistence that workers provide at least one-month notice when they need to take a day off.\n\nWhat's behind Starbucks price increases? 03:04\n\nWeisse isn't alone in complaining that Starbucks isn't living up to its promises to overhaul its labor practices for its roughly 130,000 baristas. That vow followed an article last year by The New York Times that detailed how workers were struggling to manage childcare and other obligations when the company provided only a few days notice about their schedules.\n\nAbout half of roughly 200 Starbucks baristas in a recent survey said they are still receiving their schedule with less than one week's notice. Others also reported being asked to handle \"clopens,\" split shifts in which employees work a closing shift late into the evening and then an early opening shift the following morning. The company last year promised to end the practice.\n\nOf course, Starbucks isn't alone in using \"just-in-time\" scheduling, with the retail and restaurant industry increasingly turning to software that allows them to change work schedules at the last minute, depending on whether business picks up or slows down. But it is Starbucks that has become a lightning rod on the issue given its vows to improve how it treats employees and its own emphatic claims to valuing workers, whom it labels \"partners.\"\n\n\"Starbucks has the values and wants to do right by their employees,\" said Carrie Gleason, director of the Fair Workweek Initiative at the Center for Popular Democracy, an advocacy group focused on workers'rights, and a co-author of the group's new report on the company's labor practices. \"However, since last year when the company recognized there was a serious problem with the way it scheduled workers and pledged to reform, still so many of the same issues persist.\"\n\nStarbucks didn't respond to requests for comment on the study or on baristas' reports of labor practices that are failing to meet the company's stated goals.\n\nIn an internal memo this week published by Time, Starbucks executive Cliff Burrows wrote that the company couldn't validate the survey, but added that \"the findings suggest, contrary to the expectations we have in place, that some partners are receiving their schedules less than one week in advance and that there is a continuing issue with some partners working a close and then an opening shift the following morning.\" He asks store managers \"to go the extra mile to ensure partners have a consistent schedule.\"\n\nStarbucks ends \"race together\" campaign amid public backlash 00:26\n\nTo be sure, some Starbucks workers are receiving at least 10 days notice on their work hours, with the survey finding that about one-third receive two weeks notice and another 18 percent get their schedules three weeks in advance. But that leaves almost half of workers who only receive one week's notice, making it more difficult from them manage other obligations, such as school, family commitments or other jobs.\n\nClopens remain a problem, as well. About 60 percent of workers who have to handle a clopen receive seven or fewer hours of rest between a closing and an opening shift, the study found.\n\nThat's prompted one former Starbucks employee to start a petition to end the practice of scheduling clopens. Ciara Moran noted in her petition that she sometimes was only able to get four or five hours of sleep on the days she was scheduled for clopens. She said she quit her job because she doubted whether it was possible to get ahead given the demands on workers.\n\nEven if Starbucks stuck with its policy of providing eight hours between shifts, that's not enough time, especially given that many workers in the service sector have long commutes, the study said.\n\nAnother issue singled out by the report is Starbucks' practices on sick time. Since paid time off is only available to workers with at least a year on the job, about 40 percent of employees in the survey said they had dealt with barriers in taking sick days.\n\nIn a perfect world, Weisse said he'd like to receive his schedule either a month or a quarter in advance. Asked if he's upset about the last-minute schedules, Weisse said he had become resigned to it.\n\n\"I don't know if you've ever seen experiments with rats,\" he said. \"First they get upset if you treat them badly. Then they lay down and try not to move too much. I'm like that now. Things are terrible.\"\n\nV2\n",
- "report_number": 3206,
- "submitters": ["Test User v2"],
- "tags": [],
- "text": "[](/moneywatch)\n\nBy Aimee Picchi\n\nSeptember 24, 2015 / 11:41 AM / MoneyWatch\n\nFor Starbucks ([SBUX](http://markets.cbsnews.com/SBUX/quote/)) barista Kylei Weisse, working at the coffee chain helps him secure health insurance and some extra money while he studies at Georgia Perimeter College. What it doesn't provide is the kind of stable schedule that the [company promised its workers](https://www.cbsnews.com/news/for-some-starbucks-workers-job-leaves-bitter-taste/) last year.\n\n\"It's the wild inconsistency\" of the hours that's a problem, Weisse, 32, said. \"We're supposed to get them 10 days in advance, which often happens, but there's no guarantee. If our manager doesn't get it to us on time, we just have to deal with it.\"\n\nThat became a problem recently when Weisse's manager gave him only a few days notice on his work hours, which ended up conflicting with an anatomy and physiology exam at his college. Weisse ended up paying another worker $20 to take his shift so he could take the exam.\n\nThe short notice is especially frustrating because of Starbucks' vow last year to post employees' schedules at least 10 days in advance, as well as the company's insistence that workers provide at least one-month notice when they need to take a day off.\n\n[What's behind Starbucks price increases? 03:04](https://www.cbsnews.com/video/whats-behind-starbucks-price-increases/)\n\nWeisse isn't alone in complaining that Starbucks isn't living up to its promises to overhaul its labor practices for its roughly 130,000 baristas. That vow followed an [article last year by The New York Times](http://www.nytimes.com/interactive/2014/08/13/us/starbucks-workers-scheduling-hours.html?_r=1) that detailed how workers were struggling to manage childcare and other obligations when the company provided only a few days notice about their schedules.\n\nAbout half of roughly 200 Starbucks baristas [in a recent survey](http://static1.squarespace.com/static/556496efe4b02c9d26fdf26a/t/56027485e4b02ead4f16bc2a/1443001477305/The+Grind.pdf) said they are still receiving their schedule with less than one week's notice. Others also reported being asked to handle \"clopens,\" split shifts in which employees work a closing shift late into the evening and then an early opening shift the following morning. The company last year promised to end the practice.\n\nOf course, Starbucks isn't alone in using [\"just-in-time\" scheduling](https://www.cbsnews.com/news/in-retail-life-on-the-job-often-leads-to-a-dead-end/), with the retail and restaurant industry increasingly turning to software that allows them to change work schedules at the last minute, depending on whether business picks up or slows down. But it is Starbucks that has become a lightning rod on the issue given its vows to improve how it treats employees and its own [emphatic claims](http://www.starbucks.com/careers/working-at-starbucks) to valuing workers, whom it labels \"partners.\"\n\n\"Starbucks has the values and wants to do right by their employees,\" said Carrie Gleason, director of the Fair Workweek Initiative at the Center for Popular Democracy, an advocacy group focused on workers'rights, and a co-author of the group's new [report on the company's labor practices](http://populardemocracy.org/sites/default/files/The%2BGrind.pdf). \"However, since last year when the company recognized there was a serious problem with the way it scheduled workers and pledged to reform, still so many of the same issues persist.\"\n\nStarbucks didn't respond to requests for comment on the study or on baristas' reports of labor practices that are failing to meet the company's stated goals.\n\nIn an internal memo this week [published by Time](http://time.com/4047359/starbucks-scheduling-labor-practices-memo/), Starbucks executive Cliff Burrows wrote that the company couldn't validate the survey, but added that \"the findings suggest, contrary to the expectations we have in place, that some partners are receiving their schedules less than one week in advance and that there is a continuing issue with some partners working a close and then an opening shift the following morning.\" He asks store managers \"to go the extra mile to ensure partners have a consistent schedule.\"\n\n[Starbucks ends \"race together\" campaign amid public backlash 00:26](https://www.cbsnews.com/video/starbucks-ends-race-together-campaign-amid-public-backlash/)\n\nTo be sure, some Starbucks workers are receiving at least 10 days notice on their work hours, with the survey finding that about one-third receive two weeks notice and another 18 percent get their schedules three weeks in advance. But that leaves almost half of workers who only receive one week's notice, making it more difficult from them manage other obligations, such as school, family commitments or other jobs.\n\nClopens remain a problem, as well. About 60 percent of workers who have to handle a clopen receive seven or fewer hours of rest between a closing and an opening shift, the study found.\n\nThat's prompted one former Starbucks employee to start a petition to end the practice of scheduling clopens. Ciara Moran noted in her petition that she sometimes was only able to get [four or five hours of sleep](https://www.coworker.org/petitions/starbucks-end-clopens-now) on the days she was scheduled for clopens. She said she quit her job because she doubted whether it was possible to get ahead given the demands on workers.\n\nEven if Starbucks stuck with its policy of providing eight hours between shifts, that's not enough time, especially given that many workers in the service sector have long commutes, the study said.\n\nAnother issue singled out by the report is Starbucks' practices on sick time. Since paid time off is only available to workers with at least a year on the job, about 40 percent of employees in the survey said they had dealt with barriers in taking sick days.\n\nIn a perfect world, Weisse said he'd like to receive his schedule either a month or a quarter in advance. Asked if he's upset about the last-minute schedules, Weisse said he had become resigned to it.\n\n\"I don't know if you've ever seen experiments with rats,\" he said. \"First they get upset if you treat them badly. Then they lay down and try not to move too much. I'm like that now. Things are terrible.\"\n\nV2",
- "title": "Is Starbucks shortchanging its baristas? v2",
- "url": "https://www.cbsnews.com/news/is-starbucks-shortchanging-its-baristas",
- "source_domain": "cbsnews.com",
- "user": "1"
- },
- {
- "_id": "64d18e9e1bae3610af2a8fee",
- "authors": ["Pablo Costa v2", "Pablo Costa v3", "Pablo Costa v4"],
- "cloudinary_id": "reports/image.cnbcfm.com/api/v1/image/100266733-38cbdbd7a4bcc3cf98120f6574fe94a3afe0fca6.jpg?v=1529461359&w=1920&h=1080",
- "date_downloaded": "2023-08-04",
- "date_modified": "2023-08-07",
- "date_published": "2023-08-04",
- "date_submitted": "2023-08-03",
- "description": null,
- "editor_notes": "editor notes v2",
- "embedding": null,
- "epoch_date_downloaded": 1691107200,
- "epoch_date_modified": 1691455131,
- "epoch_date_published": 1691107200,
- "epoch_date_submitted": 1691020800,
- "flag": null,
- "image_url": "https://image.cnbcfm.com/api/v1/image/100266733-38cbdbd7a4bcc3cf98120f6574fe94a3afe0fca6.jpg?v=1529461359&w=1920&h=1080",
- "inputs_outputs": ["input 1", "output 1", "input 2", "output 2", "input 3", "output 3"],
- "is_incident_report": true,
- "language": "es",
- "modifiedBy": "1",
- "plain_text": "\n\nBy Aimee Picchi\n\nSeptember 24, 2015 / 11:41 AM / MoneyWatch\n\nFor Starbucks (SBUX) barista Kylei Weisse, working at the coffee chain helps him secure health insurance and some extra money while he studies at Georgia Perimeter College. What it doesn't provide is the kind of stable schedule that the company promised its workers last year.\n\n\"It's the wild inconsistency\" of the hours that's a problem, Weisse, 32, said. \"We're supposed to get them 10 days in advance, which often happens, but there's no guarantee. If our manager doesn't get it to us on time, we just have to deal with it.\"\n\nThat became a problem recently when Weisse's manager gave him only a few days notice on his work hours, which ended up conflicting with an anatomy and physiology exam at his college. Weisse ended up paying another worker $20 to take his shift so he could take the exam.\n\nThe short notice is especially frustrating because of Starbucks' vow last year to post employees' schedules at least 10 days in advance, as well as the company's insistence that workers provide at least one-month notice when they need to take a day off.\n\nWhat's behind Starbucks price increases? 03:04\n\nWeisse isn't alone in complaining that Starbucks isn't living up to its promises to overhaul its labor practices for its roughly 130,000 baristas. That vow followed an article last year by The New York Times that detailed how workers were struggling to manage childcare and other obligations when the company provided only a few days notice about their schedules.\n\nAbout half of roughly 200 Starbucks baristas in a recent survey said they are still receiving their schedule with less than one week's notice. Others also reported being asked to handle \"clopens,\" split shifts in which employees work a closing shift late into the evening and then an early opening shift the following morning. The company last year promised to end the practice.\n\nOf course, Starbucks isn't alone in using \"just-in-time\" scheduling, with the retail and restaurant industry increasingly turning to software that allows them to change work schedules at the last minute, depending on whether business picks up or slows down. But it is Starbucks that has become a lightning rod on the issue given its vows to improve how it treats employees and its own emphatic claims to valuing workers, whom it labels \"partners.\"\n\n\"Starbucks has the values and wants to do right by their employees,\" said Carrie Gleason, director of the Fair Workweek Initiative at the Center for Popular Democracy, an advocacy group focused on workers'rights, and a co-author of the group's new report on the company's labor practices. \"However, since last year when the company recognized there was a serious problem with the way it scheduled workers and pledged to reform, still so many of the same issues persist.\"\n\nStarbucks didn't respond to requests for comment on the study or on baristas' reports of labor practices that are failing to meet the company's stated goals.\n\nIn an internal memo this week published by Time, Starbucks executive Cliff Burrows wrote that the company couldn't validate the survey, but added that \"the findings suggest, contrary to the expectations we have in place, that some partners are receiving their schedules less than one week in advance and that there is a continuing issue with some partners working a close and then an opening shift the following morning.\" He asks store managers \"to go the extra mile to ensure partners have a consistent schedule.\"\n\nStarbucks ends \"race together\" campaign amid public backlash 00:26\n\nTo be sure, some Starbucks workers are receiving at least 10 days notice on their work hours, with the survey finding that about one-third receive two weeks notice and another 18 percent get their schedules three weeks in advance. But that leaves almost half of workers who only receive one week's notice, making it more difficult from them manage other obligations, such as school, family commitments or other jobs.\n\nClopens remain a problem, as well. About 60 percent of workers who have to handle a clopen receive seven or fewer hours of rest between a closing and an opening shift, the study found.\n\nThat's prompted one former Starbucks employee to start a petition to end the practice of scheduling clopens. Ciara Moran noted in her petition that she sometimes was only able to get four or five hours of sleep on the days she was scheduled for clopens. She said she quit her job because she doubted whether it was possible to get ahead given the demands on workers.\n\nEven if Starbucks stuck with its policy of providing eight hours between shifts, that's not enough time, especially given that many workers in the service sector have long commutes, the study said.\n\nAnother issue singled out by the report is Starbucks' practices on sick time. Since paid time off is only available to workers with at least a year on the job, about 40 percent of employees in the survey said they had dealt with barriers in taking sick days.\n\nIn a perfect world, Weisse said he'd like to receive his schedule either a month or a quarter in advance. Asked if he's upset about the last-minute schedules, Weisse said he had become resigned to it.\n\n\"I don't know if you've ever seen experiments with rats,\" he said. \"First they get upset if you treat them badly. Then they lay down and try not to move too much. I'm like that now. Things are terrible.\"\n\nV2\n",
- "report_number": 3206,
- "submitters": ["Test User v2"],
- "tags": [],
- "text": "[](/moneywatch)\n\nBy Aimee Picchi\n\nSeptember 24, 2015 / 11:41 AM / MoneyWatch\n\nFor Starbucks ([SBUX](http://markets.cbsnews.com/SBUX/quote/)) barista Kylei Weisse, working at the coffee chain helps him secure health insurance and some extra money while he studies at Georgia Perimeter College. What it doesn't provide is the kind of stable schedule that the [company promised its workers](https://www.cbsnews.com/news/for-some-starbucks-workers-job-leaves-bitter-taste/) last year.\n\n\"It's the wild inconsistency\" of the hours that's a problem, Weisse, 32, said. \"We're supposed to get them 10 days in advance, which often happens, but there's no guarantee. If our manager doesn't get it to us on time, we just have to deal with it.\"\n\nThat became a problem recently when Weisse's manager gave him only a few days notice on his work hours, which ended up conflicting with an anatomy and physiology exam at his college. Weisse ended up paying another worker $20 to take his shift so he could take the exam.\n\nThe short notice is especially frustrating because of Starbucks' vow last year to post employees' schedules at least 10 days in advance, as well as the company's insistence that workers provide at least one-month notice when they need to take a day off.\n\n[What's behind Starbucks price increases? 03:04](https://www.cbsnews.com/video/whats-behind-starbucks-price-increases/)\n\nWeisse isn't alone in complaining that Starbucks isn't living up to its promises to overhaul its labor practices for its roughly 130,000 baristas. That vow followed an [article last year by The New York Times](http://www.nytimes.com/interactive/2014/08/13/us/starbucks-workers-scheduling-hours.html?_r=1) that detailed how workers were struggling to manage childcare and other obligations when the company provided only a few days notice about their schedules.\n\nAbout half of roughly 200 Starbucks baristas [in a recent survey](http://static1.squarespace.com/static/556496efe4b02c9d26fdf26a/t/56027485e4b02ead4f16bc2a/1443001477305/The+Grind.pdf) said they are still receiving their schedule with less than one week's notice. Others also reported being asked to handle \"clopens,\" split shifts in which employees work a closing shift late into the evening and then an early opening shift the following morning. The company last year promised to end the practice.\n\nOf course, Starbucks isn't alone in using [\"just-in-time\" scheduling](https://www.cbsnews.com/news/in-retail-life-on-the-job-often-leads-to-a-dead-end/), with the retail and restaurant industry increasingly turning to software that allows them to change work schedules at the last minute, depending on whether business picks up or slows down. But it is Starbucks that has become a lightning rod on the issue given its vows to improve how it treats employees and its own [emphatic claims](http://www.starbucks.com/careers/working-at-starbucks) to valuing workers, whom it labels \"partners.\"\n\n\"Starbucks has the values and wants to do right by their employees,\" said Carrie Gleason, director of the Fair Workweek Initiative at the Center for Popular Democracy, an advocacy group focused on workers'rights, and a co-author of the group's new [report on the company's labor practices](http://populardemocracy.org/sites/default/files/The%2BGrind.pdf). \"However, since last year when the company recognized there was a serious problem with the way it scheduled workers and pledged to reform, still so many of the same issues persist.\"\n\nStarbucks didn't respond to requests for comment on the study or on baristas' reports of labor practices that are failing to meet the company's stated goals.\n\nIn an internal memo this week [published by Time](http://time.com/4047359/starbucks-scheduling-labor-practices-memo/), Starbucks executive Cliff Burrows wrote that the company couldn't validate the survey, but added that \"the findings suggest, contrary to the expectations we have in place, that some partners are receiving their schedules less than one week in advance and that there is a continuing issue with some partners working a close and then an opening shift the following morning.\" He asks store managers \"to go the extra mile to ensure partners have a consistent schedule.\"\n\n[Starbucks ends \"race together\" campaign amid public backlash 00:26](https://www.cbsnews.com/video/starbucks-ends-race-together-campaign-amid-public-backlash/)\n\nTo be sure, some Starbucks workers are receiving at least 10 days notice on their work hours, with the survey finding that about one-third receive two weeks notice and another 18 percent get their schedules three weeks in advance. But that leaves almost half of workers who only receive one week's notice, making it more difficult from them manage other obligations, such as school, family commitments or other jobs.\n\nClopens remain a problem, as well. About 60 percent of workers who have to handle a clopen receive seven or fewer hours of rest between a closing and an opening shift, the study found.\n\nThat's prompted one former Starbucks employee to start a petition to end the practice of scheduling clopens. Ciara Moran noted in her petition that she sometimes was only able to get [four or five hours of sleep](https://www.coworker.org/petitions/starbucks-end-clopens-now) on the days she was scheduled for clopens. She said she quit her job because she doubted whether it was possible to get ahead given the demands on workers.\n\nEven if Starbucks stuck with its policy of providing eight hours between shifts, that's not enough time, especially given that many workers in the service sector have long commutes, the study said.\n\nAnother issue singled out by the report is Starbucks' practices on sick time. Since paid time off is only available to workers with at least a year on the job, about 40 percent of employees in the survey said they had dealt with barriers in taking sick days.\n\nIn a perfect world, Weisse said he'd like to receive his schedule either a month or a quarter in advance. Asked if he's upset about the last-minute schedules, Weisse said he had become resigned to it.\n\n\"I don't know if you've ever seen experiments with rats,\" he said. \"First they get upset if you treat them badly. Then they lay down and try not to move too much. I'm like that now. Things are terrible.\"\n\nV2",
- "title": "Is Starbucks shortchanging its baristas? v2",
- "url": "https://www.cbsnews.com/news/is-starbucks-shortchanging-its-baristas",
- "source_domain": "cbsnews.com",
- "user": "1"
- },
- {
- "_id": "64d18dccf549de65c4e6f6d9",
- "authors": ["Pablo Costa v2", "Pablo Costa v3", "Pablo Costa v4"],
- "cloudinary_id": "reports/image.cnbcfm.com/api/v1/image/100266733-38cbdbd7a4bcc3cf98120f6574fe94a3afe0fca6.jpg?v=1529461359&w=1920&h=1080",
- "date_downloaded": "2023-08-04",
- "date_modified": "2023-08-07",
- "date_published": "2023-08-04",
- "date_submitted": "2023-08-03",
- "description": null,
- "editor_notes": "editor notes v2",
- "embedding": null,
- "epoch_date_downloaded": 1691107200,
- "epoch_date_modified": 1691454921,
- "epoch_date_published": 1691107200,
- "epoch_date_submitted": 1691020800,
- "flag": null,
- "image_url": "https://image.cnbcfm.com/api/v1/image/100266733-38cbdbd7a4bcc3cf98120f6574fe94a3afe0fca6.jpg?v=1529461359&w=1920&h=1080",
- "inputs_outputs": ["input 1", "output 1", "input 2", "output 2"],
- "is_incident_report": true,
- "language": "es",
- "modifiedBy": "1",
- "plain_text": "\n\nBy Aimee Picchi\n\nSeptember 24, 2015 / 11:41 AM / MoneyWatch\n\nFor Starbucks (SBUX) barista Kylei Weisse, working at the coffee chain helps him secure health insurance and some extra money while he studies at Georgia Perimeter College. What it doesn't provide is the kind of stable schedule that the company promised its workers last year.\n\n\"It's the wild inconsistency\" of the hours that's a problem, Weisse, 32, said. \"We're supposed to get them 10 days in advance, which often happens, but there's no guarantee. If our manager doesn't get it to us on time, we just have to deal with it.\"\n\nThat became a problem recently when Weisse's manager gave him only a few days notice on his work hours, which ended up conflicting with an anatomy and physiology exam at his college. Weisse ended up paying another worker $20 to take his shift so he could take the exam.\n\nThe short notice is especially frustrating because of Starbucks' vow last year to post employees' schedules at least 10 days in advance, as well as the company's insistence that workers provide at least one-month notice when they need to take a day off.\n\nWhat's behind Starbucks price increases? 03:04\n\nWeisse isn't alone in complaining that Starbucks isn't living up to its promises to overhaul its labor practices for its roughly 130,000 baristas. That vow followed an article last year by The New York Times that detailed how workers were struggling to manage childcare and other obligations when the company provided only a few days notice about their schedules.\n\nAbout half of roughly 200 Starbucks baristas in a recent survey said they are still receiving their schedule with less than one week's notice. Others also reported being asked to handle \"clopens,\" split shifts in which employees work a closing shift late into the evening and then an early opening shift the following morning. The company last year promised to end the practice.\n\nOf course, Starbucks isn't alone in using \"just-in-time\" scheduling, with the retail and restaurant industry increasingly turning to software that allows them to change work schedules at the last minute, depending on whether business picks up or slows down. But it is Starbucks that has become a lightning rod on the issue given its vows to improve how it treats employees and its own emphatic claims to valuing workers, whom it labels \"partners.\"\n\n\"Starbucks has the values and wants to do right by their employees,\" said Carrie Gleason, director of the Fair Workweek Initiative at the Center for Popular Democracy, an advocacy group focused on workers'rights, and a co-author of the group's new report on the company's labor practices. \"However, since last year when the company recognized there was a serious problem with the way it scheduled workers and pledged to reform, still so many of the same issues persist.\"\n\nStarbucks didn't respond to requests for comment on the study or on baristas' reports of labor practices that are failing to meet the company's stated goals.\n\nIn an internal memo this week published by Time, Starbucks executive Cliff Burrows wrote that the company couldn't validate the survey, but added that \"the findings suggest, contrary to the expectations we have in place, that some partners are receiving their schedules less than one week in advance and that there is a continuing issue with some partners working a close and then an opening shift the following morning.\" He asks store managers \"to go the extra mile to ensure partners have a consistent schedule.\"\n\nStarbucks ends \"race together\" campaign amid public backlash 00:26\n\nTo be sure, some Starbucks workers are receiving at least 10 days notice on their work hours, with the survey finding that about one-third receive two weeks notice and another 18 percent get their schedules three weeks in advance. But that leaves almost half of workers who only receive one week's notice, making it more difficult from them manage other obligations, such as school, family commitments or other jobs.\n\nClopens remain a problem, as well. About 60 percent of workers who have to handle a clopen receive seven or fewer hours of rest between a closing and an opening shift, the study found.\n\nThat's prompted one former Starbucks employee to start a petition to end the practice of scheduling clopens. Ciara Moran noted in her petition that she sometimes was only able to get four or five hours of sleep on the days she was scheduled for clopens. She said she quit her job because she doubted whether it was possible to get ahead given the demands on workers.\n\nEven if Starbucks stuck with its policy of providing eight hours between shifts, that's not enough time, especially given that many workers in the service sector have long commutes, the study said.\n\nAnother issue singled out by the report is Starbucks' practices on sick time. Since paid time off is only available to workers with at least a year on the job, about 40 percent of employees in the survey said they had dealt with barriers in taking sick days.\n\nIn a perfect world, Weisse said he'd like to receive his schedule either a month or a quarter in advance. Asked if he's upset about the last-minute schedules, Weisse said he had become resigned to it.\n\n\"I don't know if you've ever seen experiments with rats,\" he said. \"First they get upset if you treat them badly. Then they lay down and try not to move too much. I'm like that now. Things are terrible.\"\n\nV2\n",
- "report_number": 3206,
- "submitters": ["Test User v2"],
- "tags": [],
- "text": "[](/moneywatch)\n\nBy Aimee Picchi\n\nSeptember 24, 2015 / 11:41 AM / MoneyWatch\n\nFor Starbucks ([SBUX](http://markets.cbsnews.com/SBUX/quote/)) barista Kylei Weisse, working at the coffee chain helps him secure health insurance and some extra money while he studies at Georgia Perimeter College. What it doesn't provide is the kind of stable schedule that the [company promised its workers](https://www.cbsnews.com/news/for-some-starbucks-workers-job-leaves-bitter-taste/) last year.\n\n\"It's the wild inconsistency\" of the hours that's a problem, Weisse, 32, said. \"We're supposed to get them 10 days in advance, which often happens, but there's no guarantee. If our manager doesn't get it to us on time, we just have to deal with it.\"\n\nThat became a problem recently when Weisse's manager gave him only a few days notice on his work hours, which ended up conflicting with an anatomy and physiology exam at his college. Weisse ended up paying another worker $20 to take his shift so he could take the exam.\n\nThe short notice is especially frustrating because of Starbucks' vow last year to post employees' schedules at least 10 days in advance, as well as the company's insistence that workers provide at least one-month notice when they need to take a day off.\n\n[What's behind Starbucks price increases? 03:04](https://www.cbsnews.com/video/whats-behind-starbucks-price-increases/)\n\nWeisse isn't alone in complaining that Starbucks isn't living up to its promises to overhaul its labor practices for its roughly 130,000 baristas. That vow followed an [article last year by The New York Times](http://www.nytimes.com/interactive/2014/08/13/us/starbucks-workers-scheduling-hours.html?_r=1) that detailed how workers were struggling to manage childcare and other obligations when the company provided only a few days notice about their schedules.\n\nAbout half of roughly 200 Starbucks baristas [in a recent survey](http://static1.squarespace.com/static/556496efe4b02c9d26fdf26a/t/56027485e4b02ead4f16bc2a/1443001477305/The+Grind.pdf) said they are still receiving their schedule with less than one week's notice. Others also reported being asked to handle \"clopens,\" split shifts in which employees work a closing shift late into the evening and then an early opening shift the following morning. The company last year promised to end the practice.\n\nOf course, Starbucks isn't alone in using [\"just-in-time\" scheduling](https://www.cbsnews.com/news/in-retail-life-on-the-job-often-leads-to-a-dead-end/), with the retail and restaurant industry increasingly turning to software that allows them to change work schedules at the last minute, depending on whether business picks up or slows down. But it is Starbucks that has become a lightning rod on the issue given its vows to improve how it treats employees and its own [emphatic claims](http://www.starbucks.com/careers/working-at-starbucks) to valuing workers, whom it labels \"partners.\"\n\n\"Starbucks has the values and wants to do right by their employees,\" said Carrie Gleason, director of the Fair Workweek Initiative at the Center for Popular Democracy, an advocacy group focused on workers'rights, and a co-author of the group's new [report on the company's labor practices](http://populardemocracy.org/sites/default/files/The%2BGrind.pdf). \"However, since last year when the company recognized there was a serious problem with the way it scheduled workers and pledged to reform, still so many of the same issues persist.\"\n\nStarbucks didn't respond to requests for comment on the study or on baristas' reports of labor practices that are failing to meet the company's stated goals.\n\nIn an internal memo this week [published by Time](http://time.com/4047359/starbucks-scheduling-labor-practices-memo/), Starbucks executive Cliff Burrows wrote that the company couldn't validate the survey, but added that \"the findings suggest, contrary to the expectations we have in place, that some partners are receiving their schedules less than one week in advance and that there is a continuing issue with some partners working a close and then an opening shift the following morning.\" He asks store managers \"to go the extra mile to ensure partners have a consistent schedule.\"\n\n[Starbucks ends \"race together\" campaign amid public backlash 00:26](https://www.cbsnews.com/video/starbucks-ends-race-together-campaign-amid-public-backlash/)\n\nTo be sure, some Starbucks workers are receiving at least 10 days notice on their work hours, with the survey finding that about one-third receive two weeks notice and another 18 percent get their schedules three weeks in advance. But that leaves almost half of workers who only receive one week's notice, making it more difficult from them manage other obligations, such as school, family commitments or other jobs.\n\nClopens remain a problem, as well. About 60 percent of workers who have to handle a clopen receive seven or fewer hours of rest between a closing and an opening shift, the study found.\n\nThat's prompted one former Starbucks employee to start a petition to end the practice of scheduling clopens. Ciara Moran noted in her petition that she sometimes was only able to get [four or five hours of sleep](https://www.coworker.org/petitions/starbucks-end-clopens-now) on the days she was scheduled for clopens. She said she quit her job because she doubted whether it was possible to get ahead given the demands on workers.\n\nEven if Starbucks stuck with its policy of providing eight hours between shifts, that's not enough time, especially given that many workers in the service sector have long commutes, the study said.\n\nAnother issue singled out by the report is Starbucks' practices on sick time. Since paid time off is only available to workers with at least a year on the job, about 40 percent of employees in the survey said they had dealt with barriers in taking sick days.\n\nIn a perfect world, Weisse said he'd like to receive his schedule either a month or a quarter in advance. Asked if he's upset about the last-minute schedules, Weisse said he had become resigned to it.\n\n\"I don't know if you've ever seen experiments with rats,\" he said. \"First they get upset if you treat them badly. Then they lay down and try not to move too much. I'm like that now. Things are terrible.\"\n\nV2",
- "title": "Is Starbucks shortchanging its baristas? v2",
- "url": "https://www.cbsnews.com/news/is-starbucks-shortchanging-its-baristas",
- "source_domain": "cbsnews.com",
- "user": "1"
- },
- {
- "_id": "64d18b101a4fcdeaf136613a",
- "authors": ["Pablo Costa v2"],
- "cloudinary_id": "reports/image.cnbcfm.com/api/v1/image/100266733-38cbdbd7a4bcc3cf98120f6574fe94a3afe0fca6.jpg?v=1529461359&w=1920&h=1080",
- "date_downloaded": "2023-08-04",
- "date_modified": "2023-08-07",
- "date_published": "2023-08-04",
- "date_submitted": "2023-08-03",
- "description": null,
- "editor_notes": "editor notes v2",
- "embedding": null,
- "epoch_date_downloaded": 1691107200,
- "epoch_date_modified": 1691454221,
- "epoch_date_published": 1691107200,
- "epoch_date_submitted": 1691020800,
- "flag": null,
- "image_url": "https://image.cnbcfm.com/api/v1/image/100266733-38cbdbd7a4bcc3cf98120f6574fe94a3afe0fca6.jpg?v=1529461359&w=1920&h=1080",
- "inputs_outputs": ["input 1", "output 1", "input 2", "output 2"],
- "is_incident_report": true,
- "language": "es",
- "modifiedBy": "1",
- "plain_text": "\n\nBy Aimee Picchi\n\nSeptember 24, 2015 / 11:41 AM / MoneyWatch\n\nFor Starbucks (SBUX) barista Kylei Weisse, working at the coffee chain helps him secure health insurance and some extra money while he studies at Georgia Perimeter College. What it doesn't provide is the kind of stable schedule that the company promised its workers last year.\n\n\"It's the wild inconsistency\" of the hours that's a problem, Weisse, 32, said. \"We're supposed to get them 10 days in advance, which often happens, but there's no guarantee. If our manager doesn't get it to us on time, we just have to deal with it.\"\n\nThat became a problem recently when Weisse's manager gave him only a few days notice on his work hours, which ended up conflicting with an anatomy and physiology exam at his college. Weisse ended up paying another worker $20 to take his shift so he could take the exam.\n\nThe short notice is especially frustrating because of Starbucks' vow last year to post employees' schedules at least 10 days in advance, as well as the company's insistence that workers provide at least one-month notice when they need to take a day off.\n\nWhat's behind Starbucks price increases? 03:04\n\nWeisse isn't alone in complaining that Starbucks isn't living up to its promises to overhaul its labor practices for its roughly 130,000 baristas. That vow followed an article last year by The New York Times that detailed how workers were struggling to manage childcare and other obligations when the company provided only a few days notice about their schedules.\n\nAbout half of roughly 200 Starbucks baristas in a recent survey said they are still receiving their schedule with less than one week's notice. Others also reported being asked to handle \"clopens,\" split shifts in which employees work a closing shift late into the evening and then an early opening shift the following morning. The company last year promised to end the practice.\n\nOf course, Starbucks isn't alone in using \"just-in-time\" scheduling, with the retail and restaurant industry increasingly turning to software that allows them to change work schedules at the last minute, depending on whether business picks up or slows down. But it is Starbucks that has become a lightning rod on the issue given its vows to improve how it treats employees and its own emphatic claims to valuing workers, whom it labels \"partners.\"\n\n\"Starbucks has the values and wants to do right by their employees,\" said Carrie Gleason, director of the Fair Workweek Initiative at the Center for Popular Democracy, an advocacy group focused on workers'rights, and a co-author of the group's new report on the company's labor practices. \"However, since last year when the company recognized there was a serious problem with the way it scheduled workers and pledged to reform, still so many of the same issues persist.\"\n\nStarbucks didn't respond to requests for comment on the study or on baristas' reports of labor practices that are failing to meet the company's stated goals.\n\nIn an internal memo this week published by Time, Starbucks executive Cliff Burrows wrote that the company couldn't validate the survey, but added that \"the findings suggest, contrary to the expectations we have in place, that some partners are receiving their schedules less than one week in advance and that there is a continuing issue with some partners working a close and then an opening shift the following morning.\" He asks store managers \"to go the extra mile to ensure partners have a consistent schedule.\"\n\nStarbucks ends \"race together\" campaign amid public backlash 00:26\n\nTo be sure, some Starbucks workers are receiving at least 10 days notice on their work hours, with the survey finding that about one-third receive two weeks notice and another 18 percent get their schedules three weeks in advance. But that leaves almost half of workers who only receive one week's notice, making it more difficult from them manage other obligations, such as school, family commitments or other jobs.\n\nClopens remain a problem, as well. About 60 percent of workers who have to handle a clopen receive seven or fewer hours of rest between a closing and an opening shift, the study found.\n\nThat's prompted one former Starbucks employee to start a petition to end the practice of scheduling clopens. Ciara Moran noted in her petition that she sometimes was only able to get four or five hours of sleep on the days she was scheduled for clopens. She said she quit her job because she doubted whether it was possible to get ahead given the demands on workers.\n\nEven if Starbucks stuck with its policy of providing eight hours between shifts, that's not enough time, especially given that many workers in the service sector have long commutes, the study said.\n\nAnother issue singled out by the report is Starbucks' practices on sick time. Since paid time off is only available to workers with at least a year on the job, about 40 percent of employees in the survey said they had dealt with barriers in taking sick days.\n\nIn a perfect world, Weisse said he'd like to receive his schedule either a month or a quarter in advance. Asked if he's upset about the last-minute schedules, Weisse said he had become resigned to it.\n\n\"I don't know if you've ever seen experiments with rats,\" he said. \"First they get upset if you treat them badly. Then they lay down and try not to move too much. I'm like that now. Things are terrible.\"\n\nV2\n",
- "report_number": 3206,
- "submitters": ["Test User v2"],
- "tags": [],
- "text": "[](/moneywatch)\n\nBy Aimee Picchi\n\nSeptember 24, 2015 / 11:41 AM / MoneyWatch\n\nFor Starbucks ([SBUX](http://markets.cbsnews.com/SBUX/quote/)) barista Kylei Weisse, working at the coffee chain helps him secure health insurance and some extra money while he studies at Georgia Perimeter College. What it doesn't provide is the kind of stable schedule that the [company promised its workers](https://www.cbsnews.com/news/for-some-starbucks-workers-job-leaves-bitter-taste/) last year.\n\n\"It's the wild inconsistency\" of the hours that's a problem, Weisse, 32, said. \"We're supposed to get them 10 days in advance, which often happens, but there's no guarantee. If our manager doesn't get it to us on time, we just have to deal with it.\"\n\nThat became a problem recently when Weisse's manager gave him only a few days notice on his work hours, which ended up conflicting with an anatomy and physiology exam at his college. Weisse ended up paying another worker $20 to take his shift so he could take the exam.\n\nThe short notice is especially frustrating because of Starbucks' vow last year to post employees' schedules at least 10 days in advance, as well as the company's insistence that workers provide at least one-month notice when they need to take a day off.\n\n[What's behind Starbucks price increases? 03:04](https://www.cbsnews.com/video/whats-behind-starbucks-price-increases/)\n\nWeisse isn't alone in complaining that Starbucks isn't living up to its promises to overhaul its labor practices for its roughly 130,000 baristas. That vow followed an [article last year by The New York Times](http://www.nytimes.com/interactive/2014/08/13/us/starbucks-workers-scheduling-hours.html?_r=1) that detailed how workers were struggling to manage childcare and other obligations when the company provided only a few days notice about their schedules.\n\nAbout half of roughly 200 Starbucks baristas [in a recent survey](http://static1.squarespace.com/static/556496efe4b02c9d26fdf26a/t/56027485e4b02ead4f16bc2a/1443001477305/The+Grind.pdf) said they are still receiving their schedule with less than one week's notice. Others also reported being asked to handle \"clopens,\" split shifts in which employees work a closing shift late into the evening and then an early opening shift the following morning. The company last year promised to end the practice.\n\nOf course, Starbucks isn't alone in using [\"just-in-time\" scheduling](https://www.cbsnews.com/news/in-retail-life-on-the-job-often-leads-to-a-dead-end/), with the retail and restaurant industry increasingly turning to software that allows them to change work schedules at the last minute, depending on whether business picks up or slows down. But it is Starbucks that has become a lightning rod on the issue given its vows to improve how it treats employees and its own [emphatic claims](http://www.starbucks.com/careers/working-at-starbucks) to valuing workers, whom it labels \"partners.\"\n\n\"Starbucks has the values and wants to do right by their employees,\" said Carrie Gleason, director of the Fair Workweek Initiative at the Center for Popular Democracy, an advocacy group focused on workers'rights, and a co-author of the group's new [report on the company's labor practices](http://populardemocracy.org/sites/default/files/The%2BGrind.pdf). \"However, since last year when the company recognized there was a serious problem with the way it scheduled workers and pledged to reform, still so many of the same issues persist.\"\n\nStarbucks didn't respond to requests for comment on the study or on baristas' reports of labor practices that are failing to meet the company's stated goals.\n\nIn an internal memo this week [published by Time](http://time.com/4047359/starbucks-scheduling-labor-practices-memo/), Starbucks executive Cliff Burrows wrote that the company couldn't validate the survey, but added that \"the findings suggest, contrary to the expectations we have in place, that some partners are receiving their schedules less than one week in advance and that there is a continuing issue with some partners working a close and then an opening shift the following morning.\" He asks store managers \"to go the extra mile to ensure partners have a consistent schedule.\"\n\n[Starbucks ends \"race together\" campaign amid public backlash 00:26](https://www.cbsnews.com/video/starbucks-ends-race-together-campaign-amid-public-backlash/)\n\nTo be sure, some Starbucks workers are receiving at least 10 days notice on their work hours, with the survey finding that about one-third receive two weeks notice and another 18 percent get their schedules three weeks in advance. But that leaves almost half of workers who only receive one week's notice, making it more difficult from them manage other obligations, such as school, family commitments or other jobs.\n\nClopens remain a problem, as well. About 60 percent of workers who have to handle a clopen receive seven or fewer hours of rest between a closing and an opening shift, the study found.\n\nThat's prompted one former Starbucks employee to start a petition to end the practice of scheduling clopens. Ciara Moran noted in her petition that she sometimes was only able to get [four or five hours of sleep](https://www.coworker.org/petitions/starbucks-end-clopens-now) on the days she was scheduled for clopens. She said she quit her job because she doubted whether it was possible to get ahead given the demands on workers.\n\nEven if Starbucks stuck with its policy of providing eight hours between shifts, that's not enough time, especially given that many workers in the service sector have long commutes, the study said.\n\nAnother issue singled out by the report is Starbucks' practices on sick time. Since paid time off is only available to workers with at least a year on the job, about 40 percent of employees in the survey said they had dealt with barriers in taking sick days.\n\nIn a perfect world, Weisse said he'd like to receive his schedule either a month or a quarter in advance. Asked if he's upset about the last-minute schedules, Weisse said he had become resigned to it.\n\n\"I don't know if you've ever seen experiments with rats,\" he said. \"First they get upset if you treat them badly. Then they lay down and try not to move too much. I'm like that now. Things are terrible.\"\n\nV2",
- "title": "Is Starbucks shortchanging its baristas? v2",
- "url": "https://www.cbsnews.com/news/is-starbucks-shortchanging-its-baristas",
- "source_domain": "cbsnews.com",
- "user": "1"
- },
- {
- "_id": "64d17f86f549de65c4e31a29",
- "authors": ["Pablo Costa v2"],
- "cloudinary_id": "reports/image.cnbcfm.com/api/v1/image/100266733-38cbdbd7a4bcc3cf98120f6574fe94a3afe0fca6.jpg?v=1529461359&w=1920&h=1080",
- "date_downloaded": "2023-08-04",
- "date_modified": "2023-08-07",
- "date_published": "2023-08-04",
- "date_submitted": "2023-08-03",
- "description": null,
- "editor_notes": "editor notes v2",
- "embedding": null,
- "epoch_date_downloaded": 1691107200,
- "epoch_date_modified": 1691451266,
- "epoch_date_published": 1691107200,
- "epoch_date_submitted": 1691020800,
- "flag": null,
- "image_url": "https://image.cnbcfm.com/api/v1/image/100266733-38cbdbd7a4bcc3cf98120f6574fe94a3afe0fca6.jpg?v=1529461359&w=1920&h=1080",
- "inputs_outputs": null,
- "is_incident_report": true,
- "language": "es",
- "modifiedBy": "1",
- "plain_text": "\n\nBy Aimee Picchi\n\nSeptember 24, 2015 / 11:41 AM / MoneyWatch\n\nFor Starbucks (SBUX) barista Kylei Weisse, working at the coffee chain helps him secure health insurance and some extra money while he studies at Georgia Perimeter College. What it doesn't provide is the kind of stable schedule that the company promised its workers last year.\n\n\"It's the wild inconsistency\" of the hours that's a problem, Weisse, 32, said. \"We're supposed to get them 10 days in advance, which often happens, but there's no guarantee. If our manager doesn't get it to us on time, we just have to deal with it.\"\n\nThat became a problem recently when Weisse's manager gave him only a few days notice on his work hours, which ended up conflicting with an anatomy and physiology exam at his college. Weisse ended up paying another worker $20 to take his shift so he could take the exam.\n\nThe short notice is especially frustrating because of Starbucks' vow last year to post employees' schedules at least 10 days in advance, as well as the company's insistence that workers provide at least one-month notice when they need to take a day off.\n\nWhat's behind Starbucks price increases? 03:04\n\nWeisse isn't alone in complaining that Starbucks isn't living up to its promises to overhaul its labor practices for its roughly 130,000 baristas. That vow followed an article last year by The New York Times that detailed how workers were struggling to manage childcare and other obligations when the company provided only a few days notice about their schedules.\n\nAbout half of roughly 200 Starbucks baristas in a recent survey said they are still receiving their schedule with less than one week's notice. Others also reported being asked to handle \"clopens,\" split shifts in which employees work a closing shift late into the evening and then an early opening shift the following morning. The company last year promised to end the practice.\n\nOf course, Starbucks isn't alone in using \"just-in-time\" scheduling, with the retail and restaurant industry increasingly turning to software that allows them to change work schedules at the last minute, depending on whether business picks up or slows down. But it is Starbucks that has become a lightning rod on the issue given its vows to improve how it treats employees and its own emphatic claims to valuing workers, whom it labels \"partners.\"\n\n\"Starbucks has the values and wants to do right by their employees,\" said Carrie Gleason, director of the Fair Workweek Initiative at the Center for Popular Democracy, an advocacy group focused on workers'rights, and a co-author of the group's new report on the company's labor practices. \"However, since last year when the company recognized there was a serious problem with the way it scheduled workers and pledged to reform, still so many of the same issues persist.\"\n\nStarbucks didn't respond to requests for comment on the study or on baristas' reports of labor practices that are failing to meet the company's stated goals.\n\nIn an internal memo this week published by Time, Starbucks executive Cliff Burrows wrote that the company couldn't validate the survey, but added that \"the findings suggest, contrary to the expectations we have in place, that some partners are receiving their schedules less than one week in advance and that there is a continuing issue with some partners working a close and then an opening shift the following morning.\" He asks store managers \"to go the extra mile to ensure partners have a consistent schedule.\"\n\nStarbucks ends \"race together\" campaign amid public backlash 00:26\n\nTo be sure, some Starbucks workers are receiving at least 10 days notice on their work hours, with the survey finding that about one-third receive two weeks notice and another 18 percent get their schedules three weeks in advance. But that leaves almost half of workers who only receive one week's notice, making it more difficult from them manage other obligations, such as school, family commitments or other jobs.\n\nClopens remain a problem, as well. About 60 percent of workers who have to handle a clopen receive seven or fewer hours of rest between a closing and an opening shift, the study found.\n\nThat's prompted one former Starbucks employee to start a petition to end the practice of scheduling clopens. Ciara Moran noted in her petition that she sometimes was only able to get four or five hours of sleep on the days she was scheduled for clopens. She said she quit her job because she doubted whether it was possible to get ahead given the demands on workers.\n\nEven if Starbucks stuck with its policy of providing eight hours between shifts, that's not enough time, especially given that many workers in the service sector have long commutes, the study said.\n\nAnother issue singled out by the report is Starbucks' practices on sick time. Since paid time off is only available to workers with at least a year on the job, about 40 percent of employees in the survey said they had dealt with barriers in taking sick days.\n\nIn a perfect world, Weisse said he'd like to receive his schedule either a month or a quarter in advance. Asked if he's upset about the last-minute schedules, Weisse said he had become resigned to it.\n\n\"I don't know if you've ever seen experiments with rats,\" he said. \"First they get upset if you treat them badly. Then they lay down and try not to move too much. I'm like that now. Things are terrible.\"\n\nV2\n",
- "report_number": 3206,
- "submitters": ["Test User v2"],
- "tags": [],
- "text": "[](/moneywatch)\n\nBy Aimee Picchi\n\nSeptember 24, 2015 / 11:41 AM / MoneyWatch\n\nFor Starbucks ([SBUX](http://markets.cbsnews.com/SBUX/quote/)) barista Kylei Weisse, working at the coffee chain helps him secure health insurance and some extra money while he studies at Georgia Perimeter College. What it doesn't provide is the kind of stable schedule that the [company promised its workers](https://www.cbsnews.com/news/for-some-starbucks-workers-job-leaves-bitter-taste/) last year.\n\n\"It's the wild inconsistency\" of the hours that's a problem, Weisse, 32, said. \"We're supposed to get them 10 days in advance, which often happens, but there's no guarantee. If our manager doesn't get it to us on time, we just have to deal with it.\"\n\nThat became a problem recently when Weisse's manager gave him only a few days notice on his work hours, which ended up conflicting with an anatomy and physiology exam at his college. Weisse ended up paying another worker $20 to take his shift so he could take the exam.\n\nThe short notice is especially frustrating because of Starbucks' vow last year to post employees' schedules at least 10 days in advance, as well as the company's insistence that workers provide at least one-month notice when they need to take a day off.\n\n[What's behind Starbucks price increases? 03:04](https://www.cbsnews.com/video/whats-behind-starbucks-price-increases/)\n\nWeisse isn't alone in complaining that Starbucks isn't living up to its promises to overhaul its labor practices for its roughly 130,000 baristas. That vow followed an [article last year by The New York Times](http://www.nytimes.com/interactive/2014/08/13/us/starbucks-workers-scheduling-hours.html?_r=1) that detailed how workers were struggling to manage childcare and other obligations when the company provided only a few days notice about their schedules.\n\nAbout half of roughly 200 Starbucks baristas [in a recent survey](http://static1.squarespace.com/static/556496efe4b02c9d26fdf26a/t/56027485e4b02ead4f16bc2a/1443001477305/The+Grind.pdf) said they are still receiving their schedule with less than one week's notice. Others also reported being asked to handle \"clopens,\" split shifts in which employees work a closing shift late into the evening and then an early opening shift the following morning. The company last year promised to end the practice.\n\nOf course, Starbucks isn't alone in using [\"just-in-time\" scheduling](https://www.cbsnews.com/news/in-retail-life-on-the-job-often-leads-to-a-dead-end/), with the retail and restaurant industry increasingly turning to software that allows them to change work schedules at the last minute, depending on whether business picks up or slows down. But it is Starbucks that has become a lightning rod on the issue given its vows to improve how it treats employees and its own [emphatic claims](http://www.starbucks.com/careers/working-at-starbucks) to valuing workers, whom it labels \"partners.\"\n\n\"Starbucks has the values and wants to do right by their employees,\" said Carrie Gleason, director of the Fair Workweek Initiative at the Center for Popular Democracy, an advocacy group focused on workers'rights, and a co-author of the group's new [report on the company's labor practices](http://populardemocracy.org/sites/default/files/The%2BGrind.pdf). \"However, since last year when the company recognized there was a serious problem with the way it scheduled workers and pledged to reform, still so many of the same issues persist.\"\n\nStarbucks didn't respond to requests for comment on the study or on baristas' reports of labor practices that are failing to meet the company's stated goals.\n\nIn an internal memo this week [published by Time](http://time.com/4047359/starbucks-scheduling-labor-practices-memo/), Starbucks executive Cliff Burrows wrote that the company couldn't validate the survey, but added that \"the findings suggest, contrary to the expectations we have in place, that some partners are receiving their schedules less than one week in advance and that there is a continuing issue with some partners working a close and then an opening shift the following morning.\" He asks store managers \"to go the extra mile to ensure partners have a consistent schedule.\"\n\n[Starbucks ends \"race together\" campaign amid public backlash 00:26](https://www.cbsnews.com/video/starbucks-ends-race-together-campaign-amid-public-backlash/)\n\nTo be sure, some Starbucks workers are receiving at least 10 days notice on their work hours, with the survey finding that about one-third receive two weeks notice and another 18 percent get their schedules three weeks in advance. But that leaves almost half of workers who only receive one week's notice, making it more difficult from them manage other obligations, such as school, family commitments or other jobs.\n\nClopens remain a problem, as well. About 60 percent of workers who have to handle a clopen receive seven or fewer hours of rest between a closing and an opening shift, the study found.\n\nThat's prompted one former Starbucks employee to start a petition to end the practice of scheduling clopens. Ciara Moran noted in her petition that she sometimes was only able to get [four or five hours of sleep](https://www.coworker.org/petitions/starbucks-end-clopens-now) on the days she was scheduled for clopens. She said she quit her job because she doubted whether it was possible to get ahead given the demands on workers.\n\nEven if Starbucks stuck with its policy of providing eight hours between shifts, that's not enough time, especially given that many workers in the service sector have long commutes, the study said.\n\nAnother issue singled out by the report is Starbucks' practices on sick time. Since paid time off is only available to workers with at least a year on the job, about 40 percent of employees in the survey said they had dealt with barriers in taking sick days.\n\nIn a perfect world, Weisse said he'd like to receive his schedule either a month or a quarter in advance. Asked if he's upset about the last-minute schedules, Weisse said he had become resigned to it.\n\n\"I don't know if you've ever seen experiments with rats,\" he said. \"First they get upset if you treat them badly. Then they lay down and try not to move too much. I'm like that now. Things are terrible.\"\n\nV2",
- "title": "Is Starbucks shortchanging its baristas? v2",
- "url": "https://www.cbsnews.com/news/is-starbucks-shortchanging-its-baristas",
- "source_domain": "cbsnews.com",
- "user": "1"
- },
- {
- "_id": "64cc41211c1f73dbc02ab00c",
- "authors": ["Pablo Costa"],
- "cloudinary_id": "reports/assets3.cbsnewsstatic.com/hub/i/r/2015/03/17/01a38576-5108-40f7-8df8-5416164ed878/thumbnail/1200x630/ca8d35fe6bc065b5c9a747d92bc6d94c/154211248.jpg?v=523df724471d66f84598615fede8d33f",
- "date_downloaded": "2023-08-03",
- "date_modified": "2023-08-03",
- "date_published": "2023-08-03",
- "date_submitted": "2023-08-03",
- "description": null,
- "editor_notes": null,
- "embedding": {
- "__typename": "History_reportEmbedding",
- "from_text_hash": "0cf0b5d5d39e3e9040ce8da9367364511c3e9532",
- "vector": [
- -0.09017669409513474, 0.049546271562576294, 0.038945719599723816, -0.1436443030834198
- ]
- },
- "epoch_date_downloaded": 1691020800,
- "epoch_date_modified": 1691107596,
- "epoch_date_published": 1691020800,
- "epoch_date_submitted": 1691020800,
- "flag": null,
- "image_url": "https://assets3.cbsnewsstatic.com/hub/i/r/2015/03/17/01a38576-5108-40f7-8df8-5416164ed878/thumbnail/1200x630/ca8d35fe6bc065b5c9a747d92bc6d94c/154211248.jpg?v=523df724471d66f84598615fede8d33f",
- "inputs_outputs": null,
- "is_incident_report": true,
- "language": "en",
- "modifiedBy": "1",
- "plain_text": "\n\nBy Aimee Picchi\n\nSeptember 24, 2015 / 11:41 AM / MoneyWatch\n\nFor Starbucks (SBUX) barista Kylei Weisse, working at the coffee chain helps him secure health insurance and some extra money while he studies at Georgia Perimeter College. What it doesn't provide is the kind of stable schedule that the company promised its workers last year.\n\n\"It's the wild inconsistency\" of the hours that's a problem, Weisse, 32, said. \"We're supposed to get them 10 days in advance, which often happens, but there's no guarantee. If our manager doesn't get it to us on time, we just have to deal with it.\"\n\nThat became a problem recently when Weisse's manager gave him only a few days notice on his work hours, which ended up conflicting with an anatomy and physiology exam at his college. Weisse ended up paying another worker $20 to take his shift so he could take the exam.\n\nThe short notice is especially frustrating because of Starbucks' vow last year to post employees' schedules at least 10 days in advance, as well as the company's insistence that workers provide at least one-month notice when they need to take a day off.\n\nWhat's behind Starbucks price increases? 03:04\n\nWeisse isn't alone in complaining that Starbucks isn't living up to its promises to overhaul its labor practices for its roughly 130,000 baristas. That vow followed an article last year by The New York Times that detailed how workers were struggling to manage childcare and other obligations when the company provided only a few days notice about their schedules.\n\nAbout half of roughly 200 Starbucks baristas in a recent survey said they are still receiving their schedule with less than one week's notice. Others also reported being asked to handle \"clopens,\" split shifts in which employees work a closing shift late into the evening and then an early opening shift the following morning. The company last year promised to end the practice.\n\nOf course, Starbucks isn't alone in using \"just-in-time\" scheduling, with the retail and restaurant industry increasingly turning to software that allows them to change work schedules at the last minute, depending on whether business picks up or slows down. But it is Starbucks that has become a lightning rod on the issue given its vows to improve how it treats employees and its own emphatic claims to valuing workers, whom it labels \"partners.\"\n\n\"Starbucks has the values and wants to do right by their employees,\" said Carrie Gleason, director of the Fair Workweek Initiative at the Center for Popular Democracy, an advocacy group focused on workers'rights, and a co-author of the group's new report on the company's labor practices. \"However, since last year when the company recognized there was a serious problem with the way it scheduled workers and pledged to reform, still so many of the same issues persist.\"\n\nStarbucks didn't respond to requests for comment on the study or on baristas' reports of labor practices that are failing to meet the company's stated goals.\n\nIn an internal memo this week published by Time, Starbucks executive Cliff Burrows wrote that the company couldn't validate the survey, but added that \"the findings suggest, contrary to the expectations we have in place, that some partners are receiving their schedules less than one week in advance and that there is a continuing issue with some partners working a close and then an opening shift the following morning.\" He asks store managers \"to go the extra mile to ensure partners have a consistent schedule.\"\n\nStarbucks ends \"race together\" campaign amid public backlash 00:26\n\nTo be sure, some Starbucks workers are receiving at least 10 days notice on their work hours, with the survey finding that about one-third receive two weeks notice and another 18 percent get their schedules three weeks in advance. But that leaves almost half of workers who only receive one week's notice, making it more difficult from them manage other obligations, such as school, family commitments or other jobs.\n\nClopens remain a problem, as well. About 60 percent of workers who have to handle a clopen receive seven or fewer hours of rest between a closing and an opening shift, the study found.\n\nThat's prompted one former Starbucks employee to start a petition to end the practice of scheduling clopens. Ciara Moran noted in her petition that she sometimes was only able to get four or five hours of sleep on the days she was scheduled for clopens. She said she quit her job because she doubted whether it was possible to get ahead given the demands on workers.\n\nEven if Starbucks stuck with its policy of providing eight hours between shifts, that's not enough time, especially given that many workers in the service sector have long commutes, the study said.\n\nAnother issue singled out by the report is Starbucks' practices on sick time. Since paid time off is only available to workers with at least a year on the job, about 40 percent of employees in the survey said they had dealt with barriers in taking sick days.\n\nIn a perfect world, Weisse said he'd like to receive his schedule either a month or a quarter in advance. Asked if he's upset about the last-minute schedules, Weisse said he had become resigned to it.\n\n\"I don't know if you've ever seen experiments with rats,\" he said. \"First they get upset if you treat them badly. Then they lay down and try not to move too much. I'm like that now. Things are terrible.\"\n",
- "report_number": 3206,
- "submitters": ["Test User"],
- "tags": [],
- "text": "[](/moneywatch)\n\nBy Aimee Picchi\n\nSeptember 24, 2015 / 11:41 AM / MoneyWatch\n\nFor Starbucks ([SBUX](http://markets.cbsnews.com/SBUX/quote/)) barista Kylei Weisse, working at the coffee chain helps him secure health insurance and some extra money while he studies at Georgia Perimeter College. What it doesn't provide is the kind of stable schedule that the [company promised its workers](https://www.cbsnews.com/news/for-some-starbucks-workers-job-leaves-bitter-taste/) last year.\n\n\"It's the wild inconsistency\" of the hours that's a problem, Weisse, 32, said. \"We're supposed to get them 10 days in advance, which often happens, but there's no guarantee. If our manager doesn't get it to us on time, we just have to deal with it.\"\n\nThat became a problem recently when Weisse's manager gave him only a few days notice on his work hours, which ended up conflicting with an anatomy and physiology exam at his college. Weisse ended up paying another worker $20 to take his shift so he could take the exam.\n\nThe short notice is especially frustrating because of Starbucks' vow last year to post employees' schedules at least 10 days in advance, as well as the company's insistence that workers provide at least one-month notice when they need to take a day off.\n\n[What's behind Starbucks price increases? 03:04](https://www.cbsnews.com/video/whats-behind-starbucks-price-increases/)\n\nWeisse isn't alone in complaining that Starbucks isn't living up to its promises to overhaul its labor practices for its roughly 130,000 baristas. That vow followed an [article last year by The New York Times](http://www.nytimes.com/interactive/2014/08/13/us/starbucks-workers-scheduling-hours.html?_r=1) that detailed how workers were struggling to manage childcare and other obligations when the company provided only a few days notice about their schedules.\n\nAbout half of roughly 200 Starbucks baristas [in a recent survey](http://static1.squarespace.com/static/556496efe4b02c9d26fdf26a/t/56027485e4b02ead4f16bc2a/1443001477305/The+Grind.pdf) said they are still receiving their schedule with less than one week's notice. Others also reported being asked to handle \"clopens,\" split shifts in which employees work a closing shift late into the evening and then an early opening shift the following morning. The company last year promised to end the practice.\n\nOf course, Starbucks isn't alone in using [\"just-in-time\" scheduling](https://www.cbsnews.com/news/in-retail-life-on-the-job-often-leads-to-a-dead-end/), with the retail and restaurant industry increasingly turning to software that allows them to change work schedules at the last minute, depending on whether business picks up or slows down. But it is Starbucks that has become a lightning rod on the issue given its vows to improve how it treats employees and its own [emphatic claims](http://www.starbucks.com/careers/working-at-starbucks) to valuing workers, whom it labels \"partners.\"\n\n\"Starbucks has the values and wants to do right by their employees,\" said Carrie Gleason, director of the Fair Workweek Initiative at the Center for Popular Democracy, an advocacy group focused on workers'rights, and a co-author of the group's new [report on the company's labor practices](http://populardemocracy.org/sites/default/files/The%2BGrind.pdf). \"However, since last year when the company recognized there was a serious problem with the way it scheduled workers and pledged to reform, still so many of the same issues persist.\"\n\nStarbucks didn't respond to requests for comment on the study or on baristas' reports of labor practices that are failing to meet the company's stated goals.\n\nIn an internal memo this week [published by Time](http://time.com/4047359/starbucks-scheduling-labor-practices-memo/), Starbucks executive Cliff Burrows wrote that the company couldn't validate the survey, but added that \"the findings suggest, contrary to the expectations we have in place, that some partners are receiving their schedules less than one week in advance and that there is a continuing issue with some partners working a close and then an opening shift the following morning.\" He asks store managers \"to go the extra mile to ensure partners have a consistent schedule.\"\n\n[Starbucks ends \"race together\" campaign amid public backlash 00:26](https://www.cbsnews.com/video/starbucks-ends-race-together-campaign-amid-public-backlash/)\n\nTo be sure, some Starbucks workers are receiving at least 10 days notice on their work hours, with the survey finding that about one-third receive two weeks notice and another 18 percent get their schedules three weeks in advance. But that leaves almost half of workers who only receive one week's notice, making it more difficult from them manage other obligations, such as school, family commitments or other jobs.\n\nClopens remain a problem, as well. About 60 percent of workers who have to handle a clopen receive seven or fewer hours of rest between a closing and an opening shift, the study found.\n\nThat's prompted one former Starbucks employee to start a petition to end the practice of scheduling clopens. Ciara Moran noted in her petition that she sometimes was only able to get [four or five hours of sleep](https://www.coworker.org/petitions/starbucks-end-clopens-now) on the days she was scheduled for clopens. She said she quit her job because she doubted whether it was possible to get ahead given the demands on workers.\n\nEven if Starbucks stuck with its policy of providing eight hours between shifts, that's not enough time, especially given that many workers in the service sector have long commutes, the study said.\n\nAnother issue singled out by the report is Starbucks' practices on sick time. Since paid time off is only available to workers with at least a year on the job, about 40 percent of employees in the survey said they had dealt with barriers in taking sick days.\n\nIn a perfect world, Weisse said he'd like to receive his schedule either a month or a quarter in advance. Asked if he's upset about the last-minute schedules, Weisse said he had become resigned to it.\n\n\"I don't know if you've ever seen experiments with rats,\" he said. \"First they get upset if you treat them badly. Then they lay down and try not to move too much. I'm like that now. Things are terrible.\"",
- "title": "Is Starbucks shortchanging its baristas?",
- "url": "https://www.cbsnews.com/news/is-starbucks-shortchanging-its-baristas",
- "source_domain": "cbsnews.com",
- "user": "1"
- }
- ]
- }
-}
diff --git a/site/gatsby-site/cypress/fixtures/history/versionReports.json b/site/gatsby-site/cypress/fixtures/history/versionReports.json
deleted file mode 100644
index 32540363a4..0000000000
--- a/site/gatsby-site/cypress/fixtures/history/versionReports.json
+++ /dev/null
@@ -1,44 +0,0 @@
-{
- "data": {
- "reports": [
- {
- "__typename": "Report",
- "_id": "5d34b8c29ced494f010ed472",
- "authors": ["Caroline O'Donovan"],
- "cloudinary_id": "reports/img.buzzfeed.com/buzzfeed-static/static/2015-06/2/17/campaign_images/webdr02/kronos-makes-changes-to-software-accused-of-produ-2-14421-1433279634-2_dblbig.jpg",
- "date_published": "2015-06-03",
- "description": "Kronos, a workforce management company, thinks giving managers more data can make scheduling practices more fair. But ultimately, the underpinnings of the problem may go deeper than the algorit",
- "epoch_date_submitted": 1559347200,
- "image_url": "https://img.buzzfeed.com/buzzfeed-static/static/2015-06/2/17/campaign_images/webdr02/kronos-makes-changes-to-software-accused-of-produ-2-14421-1433279634-2_dblbig.jpg",
- "inputs_outputs": null,
- "language": "en",
- "report_number": 3205,
- "source_domain": "buzzfeednews.com",
- "submitters": ["Catherine Olsson"],
- "tags": [],
- "text": "In April, the New York attorney general's office launched an [investigation](http://www.reuters.com/article/2015/04/13/us-retail-workers-nyag-idUSKBN0N40G420150413) into the scheduling practices of 13 national retail chains, distributing a letter to the Gap, Target, J.C. Penney, and 10 other companies. The letter asked, among other things, whether these companies' store managers use software manufactured by a company called Kronos to algorithmically generate schedules.\n\nA few months later, Kronos was also featured prominently in an [article](http://www.nytimes.com/interactive/2014/08/13/us/starbucks-workers-scheduling-hours.html) published by the _New York Times_ about the ill effects of erratic scheduling on Starbucks employees, especially one particular family. In a [follow-up piece](http://www.nytimes.com/times-insider/2014/08/22/times-article-changes-a-policy-fast/), the author, Jodi Kantor, points directly to Kronos' scheduling software as the root of the problem. \"I saw that her life was coming apart and that the Starbucks software had contributed to the crisis,\" Kantor wrote of one of the story's subjects.\n\nThe piece's argument centered around the financial and scheduling unpredictability engendered by platforms like Kronos. When you don't know if your shift might be canceled, if or when you'll be called in, or what your hours will look like next week or the week after, it becomes [very difficult](http://www.buzzfeed.com/sapna/victorias-secret-keeps-workers-on-call-and-unpaid#.wspVMPngB) to make even the most\n\nbasic plans for your future. This can have devastating long-term financial and emotional impacts on workers. According to a [recent study](http://www.epi.org/publication/irregular-work-scheduling-and-its-consequences/) by the Economic Policy Institute, a left-leaning think tank in Washington, D.C., 17 percent of the American workforce is negatively affected by unstable schedules.\n\nFor their part, Kronos representatives argue that the algorithm is far from the root of the problem. \"The populist view is that scheduling is evil, in that it's causing erratic schedules for employees, and so forth,\" Charlie DeWitt, vice president of business development for Kronos, told BuzzFeed News. \"The fact of the matter is it's an algorithm. It does whatever you want it to do.\"\n\nAnd you don't necessarily need to work for Kronos to believe that in a competitive retail climate, the problem is more complicated than technology alone. [Lonnie Golden](http://www.abington.psu.edu/academics/faculty/dr-lonnie-golden), a Penn State economist who has extensively studied the impact of erratic scheduling, acknowledges that Kronos' product itself is less to blame than the managers who make staffing decisions based on the data it provides. \"It's not necessarily the technology that's responsible for minimum to no advance notice,\" he said. \"It's the way in which it's applied.\"\n\nBut, he added, \"where there's a technology problem, there's usually a technology solution.\" And while Kronos maintains that managers, and not the software, are responsible for early dismissals and last-minute shift cancellations, the company is nonetheless pursuing some technological solutions.\n\nKronos wants to help managers better understand how scheduling adjustments affect workers and, ultimately, the bottom line. Though the company maintains that its software doesn't produce the kind of erratic schedules that hurt wage workers, DeWitt said there was nonetheless an interest in figuring out why that perception existed — and, if possible, fixing it.\n\nTo that end, earlier this month at a [retail conference in Philadelphia](http://www.kronos.com/microsites/RetailExecSummitSpring15/), the company announced that it's working on a new plug-in that will give managers better insight into workers' schedule stability, equity of hours worked among employees, and the consistency of schedules from week to week. In addition, Kronos is improving a feature meant to help give employees more control over their schedules: Though the software already incorporates employee availability and preferences into its scheduling calculations, improvements to a shift-swapping feature on its employee-facing web and mobile apps will theoretically allow employees to work around conflicts among themselves.\n\nGolden said increased employee input and control would be a good thing. But some retailers, DeWitt pointed out, are uncomfortable making workers use an app outside of work hours; indeed, the practice could be seen as a shift of management responsibilities onto lower-paid individuals.\n\nPart of the idea behind the new Kronos plug-in is to help companies tie fairer scheduling practices to reduction in absenteeism and turnover, which can be enormously costly. In other words, if Kronos can help executives see the connection between treating workers fairly and a store's ability to increase revenue, DeWitt said, managers will have an impetus to create more predictable, stable schedules.\n\nAnd just because companies are looking at this kind of data doesn't mean they have to use it. \"Companies like Kronos and Workplace Systems are starting to integrate some of these principles into their software,\" said [Carrie Gleason](http://populardemocracy.org/carrie-gleason), director of the Fair Workweek Initiative at the Center for Popular Democracy, \"but it's all optional, so companies can decide not to do it.\" While [12 states](http://populardemocracy.org/campaign/restoring-fair-workweek) are currently considering legislation that would create new labor standards around the workweek, Gleason said the technology alone lacks a mechanism for enforcement.\n\nGiven market pressures and standard management practices, it's unlikely that any change to Kronos' technology would give workers more power — especially because, given the [competitive retail climate](http://www.buzzfeed.com/sapna/retail-winter-of-death#.krGlE3qDm) at the moment, the bottom line tends to be the priority. \"It's not just bad managers. They have extreme pressure to increase productivity on an ever-shrinking labor budget,\" Gleason said.\n\nWith these changes, Kronos has taken logical steps toward both repairing its reputation and making sure its software creates sustainable work environments. But while the company cannot control exactly how the algorithm that forecasts schedules and optimizes workforces is deployed inside different workplaces, the Kronos engineers who designed the product are nonetheless the partial architects of work environments that have been proven to be untenable for low-wage workers. The Kronos scheduling algorithm isn't designed to serve those people; it's designed to be sold to their bosses, and as such, will ultimately be shaped to serve the needs of management — until regulations exist that compel them to change how it's used.",
- "title": "Report 3205 title",
- "url": "https://www.buzzfeednews.com/article/carolineodonovan/kronos-makes-changes-to-software-accused-of-producing-bad-sc"
- },
- {
- "__typename": "Report",
- "_id": "5d34b8c29ced494f010ed471",
- "authors": ["Alain Sherter"],
- "cloudinary_id": "reports/cbsnews2.cbsistatic.com/hub/i/r/2014/09/25/aa2708c1-7e84-4573-8f79-add177a690cd/thumbnail/1200x630/2505bd91ab74f8e2ce3e7c6f8a5d77f3/starbucks.jpg",
- "date_published": "2014-09-26",
- "description": "Baristas at the coffee chain worry the company won't fulfill its promise to improve working conditions",
- "epoch_date_submitted": 1559347200,
- "image_url": "https://cbsnews2.cbsistatic.com/hub/i/r/2014/09/25/aa2708c1-7e84-4573-8f79-add177a690cd/thumbnail/1200x630/2505bd91ab74f8e2ce3e7c6f8a5d77f3/starbucks.jpg",
- "inputs_outputs": null,
- "language": "en",
- "report_number": 3206,
- "source_domain": "cbsnews.com",
- "submitters": ["Catherine Olsson"],
- "tags": [],
- "text": "Liberte Locke, a 32-year-old \"barista\" at a Starbucks (SBUX) in New York City, is fed up.\n\n\"Starbucks' attitude is that there's always someone else who can do the job,\" she said in running through her complaints about life at the java giant.\n\nIf that isn't necessarily the consensus among Starbucks workers, interviews with nine current and former baristas at the company make clear it's not an isolated opinion, either. Even those who say they like their job paint a picture of a business that underpays front-line workers, enforces work rules arbitrarily, and too often fails to strike a balance between corporate goals and employee needs.\n\nOf course, such complaints are nothing new in retail, where low pay and erratic schedules are the norm. But by its own account, Starbucks is no ordinary company and is ostensibly a far cry from the fast-food outlets now facing a nationwide uprising by employees tired of working for peanuts.\n\nThat's evident in the company's recruitment pitch. Starbucks invites job-seekers to \"become a part of something bigger and inspire positive change in the world,\" describing it as a chance to discover a \"deep sense of purpose.\"\n\nDamage control\n\nThat image suffered a serious blow last month after The New York Times vividly chronicled a Starbucks worker struggling with the company's scheduling practices. The story, which centered on a 22-year-old barista and single mother, amounted to a public relations nightmare for Starbucks. Perhaps not coincidentally, within days of the story's publication top executives were promising reform.\n\nIn a memo to employees earlier this month, for instance, Chief Operating Officer Troy Alstead vowed to \"transform the U.S. partner experience,\" referring to Starbucks' more than 130,000 baristas. Inviting worker feedback, he said Starbucks will examine its approach to employee pay, revisit its dress code, make it easier for people to ask for time off, and consider other changes aimed at helping baristas balance work and their personal lives.\n\nAmong other changes, the company said it would end the practice of \"clopening,\" when an employee responsible for closing a store late at night is also assigned to open it early in the morning.\n\n\"We recognize that we can do more for our partners who wear the apron every day,\" he wrote.\n\nSome baristas did not feel this August memo from Starbucks went far enough in proposing ways to improve work conditions, so they marked it up with their own ideas. CBS\n\nAlthough Starbucks workers welcome this pledge to respect the apron, they fear the company is more intent on dousing the PR flames than on genuinely improving employees' experience. After the retailer last month sent an email to workers outlining possible solutions to the kind of scheduling problems and related issues detailed by the Times, a group of baristas gave the proposal a C- and posted online a marked-up version of the memo listing their own demands (see image above).\n\n\"We hope you're ready for a commitment to give us schedules that don't mess with taking care of kids, going to school or holding onto that second job we need because Sbux wages don't make ends meet,\" wrote the baristas, who are working with a union-backed labor group, the Center for Popular Democracy.\n\nRetail jungle\n\nDespite the recent media focus on Starbucks, the company's labor practices are generally no worse than those of many large retailers. In some ways they're better, with the company offering health care to part-time, as well as full-time, workers; unusually generous 401(k) matching contributions; annual stock grants to employees; and tuition reimbursement.\n\nStarbucks highlights such benefits as an example of its commitment to employees. \"Sharing success with one another has been core to the company's heritage for more than 40 years,\" Alstead said in the September memo.\n\nMeanwhile, some baristas say they enjoy their work and feel valued by Starbucks. \"It's a decent place to work, and my manager and co-workers are great,\" said one employee who asked not to be identified.\n\nBut other current and former workers claim Starbucks has changed in recent years, saying that corporate leaders' intense focus on slashing costs has short-circuited its professed commitment to workers. Mostly, they say Starbucks doesn't listen to employees and even punishes those who identify problems.\n\n\"The biggest problem is that baristas don't have a voice,\" said Sarah Madden, a former Starbucks barista who left the company this spring after two years with the coffee vendor. \"They can't speak to issues that they know exist. Workers know how to fix them, but when [they] speak up there are serious repercussions -- your hours get cut, you're transferred to another store or isolated from other people.\"\n\nEmployees interviewed for this article said one result of Starbucks' cost-containment push is that stores are frequently understaffed, hurting customer service and forcing managers to scramble to find staff. That problem is common across the big-box s",
- "title": "Report 3206 title",
- "url": "https://www.cbsnews.com/news/for-some-starbucks-workers-job-leaves-bitter-taste/"
- }
- ]
- }
-}
diff --git a/site/gatsby-site/cypress/fixtures/incidents/fullIncident10.json b/site/gatsby-site/cypress/fixtures/incidents/fullIncident10.json
deleted file mode 100644
index 89638145c7..0000000000
--- a/site/gatsby-site/cypress/fixtures/incidents/fullIncident10.json
+++ /dev/null
@@ -1,582 +0,0 @@
-{
- "data": {
- "incident": {
- "AllegedDeployerOfAISystem": [
- {
- "entity_id": "boeing",
- "name": "Boeing"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "entity_id": "boeing",
- "name": "Boeing"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "entity_id": "airplane-passengers",
- "name": "Airplane Passengers"
- },
- {
- "entity_id": "airplane-crew",
- "name": "Airplane Crew"
- }
- ],
- "date": "2018-10-27",
- "description": "A Boeing 737 crashed into the sea, killing 189 people, after faulty sensor data caused an automated manuevering system to repeatedly push the plane's nose downward.",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "editors": [{"userId": "1", "first_name": "Sean", "last_name": "McGregor"}],
- "editor_notes": "This is a test note.",
- "embedding": {
- "from_reports": [
- 1342, 389, 388, 387, 386, 385, 384, 383, 382, 381, 380, 379, 378, 377, 376, 375, 374, 373,
- 372
- ],
- "vector": [
- -0.06344708055257797, 0.08166317641735077, 0.006767462007701397, -0.11429263651371002,
- 0.07818274199962616, -0.02436312846839428, -0.01997959055006504, 0.05669109523296356,
- 0.05186852812767029, -0.13120679557323456, 0.03844519332051277, 0.03713090717792511,
- 0.012107397429645061, -0.08131768554449081, -0.0030612871050834656, -0.07282830774784088,
- -0.10005918890237808, -0.017672335729002953, -0.04277820512652397, -0.10577819496393204,
- -0.0891910269856453, -0.023506660014390945, 0.013328559696674347, 0.10228399187326431,
- -0.05645120143890381, 0.024322863668203354, 0.01313194539397955, 0.12776179611682892,
- -0.04956616833806038, 0.02988206408917904, -0.018648860976099968, 0.007596772629767656,
- 0.11170940846204758, 0.003350325394421816, 0.0032103341072797775, 0.08627865463495255,
- -0.00452623562887311, -0.010653890669345856, -0.058303702622652054, -0.001056130276992917,
- 0.015081183053553104, 0.2215815633535385, 0.03857589140534401, -0.014560513198375702,
- 0.054756034165620804, -0.04517057538032532, 0.026975179091095924, 0.044276487082242966,
- -0.005364003591239452, -0.006352393887937069, -0.04265836998820305, 0.11225835978984833,
- -0.017474645748734474, -0.004692276008427143, -0.1397094875574112, 0.022719180211424828,
- 0.007162908092141151, -0.021760985255241394, 0.034230660647153854, -0.06839179247617722,
- -0.027931824326515198, -0.24558360874652863, -0.036384135484695435, -0.058355312794446945,
- 0.046371184289455414, -0.08864477276802063, -0.025864744558930397, -0.017693018540740013,
- 0.035014234483242035, 0.0771557092666626, 0.05928211286664009, -0.0035111422184854746,
- -0.022297749295830727, 0.020870553329586983, 0.00987770315259695, 0.007683281786739826,
- 0.015684884041547775, 0.20638824999332428, -0.10439275205135345, 0.017273789271712303,
- 0.0921032726764679, -0.06327635049819946, 0.4307502806186676, 0.017499251291155815,
- -0.015983114019036293, -0.05489431694149971, 0.06922943890094757, 0.08754252642393112,
- 0.04365835338830948, 0.0006397831602953374, -0.03455432131886482, 0.022921863943338394,
- -0.042694348841905594, 0.08542480319738388, 0.09744493663311005, 0.04502207413315773,
- -0.005134069360792637, 0.04406854510307312, -0.0013151513412594795, -0.04973506182432175,
- 0.031067509204149246, -0.06925342231988907, 0.10270313918590546, 0.044825535267591476,
- -0.0316423624753952, -0.009173722006380558, 0.10225946456193924, -0.03086371161043644,
- 0.07444128394126892, -0.0654892846941948, 0.02339647151529789, 0.006005859933793545,
- 0.1028587594628334, 0.012438771314918995, 0.06194404512643814, -0.057714033871889114,
- 0.008545254357159138, 0.05273856595158577, 0.09500562399625778, 0.012938018888235092,
- 0.020519161596894264, 0.07068191468715668, 0.060623545199632645, -0.04661741852760315,
- 0.0014588618651032448, -0.055866874754428864, -0.04990503191947937, -0.0431852713227272,
- -0.04515451937913895, 0.03898932784795761, -0.031004035845398903, -0.18412724137306213,
- 0.029460584744811058, 0.11556845903396606, -0.022403575479984283, -0.048633452504873276,
- -0.04316400736570358, -0.04320515692234039, 0.04446222260594368, -0.006907036527991295,
- -0.024769144132733345, 0.07969899475574493, 0.044741321355104446, 0.03819488361477852,
- 0.10996264219284058, 0.04219183325767517, -0.06744411587715149, -0.06720941513776779,
- -0.01892978511750698, -0.00012278031499590725, 0.08596516400575638, -0.10735524445772171,
- -0.07457881420850754, 0.059798114001750946, 0.021282117813825607, 0.6299101114273071,
- 0.134905144572258, 0.15164721012115479, 0.01427449006587267, -0.013758943416178226,
- 0.17783470451831818, 0.02516569383442402, 0.07244158536195755, -0.08331070095300674,
- -0.08149050921201706, 0.04999091103672981, -0.06587005406618118, -0.03134734556078911,
- 0.02202579565346241, 0.036786504089832306, 0.13036037981510162, 0.0014339291956275702,
- 0.07809950411319733, -0.00879748910665512, -0.061851922422647476, -0.025590619072318077,
- 0.053029585629701614, 0.029615910723805428, -0.12107467651367188, -0.02424752525985241,
- 0.04301344230771065, 0.0734277293086052, -0.06770920008420944, 0.017072996124625206,
- -0.02781393565237522, 0.056854650378227234, -0.028930114582180977, 0.046034298837184906,
- -0.050670549273490906, -0.04385126382112503, 0.000608303991612047, 0.04627717658877373,
- 0.040977369993925095, -0.0655832588672638, -0.029511934146285057, 0.12535209953784943,
- 0.0019232049817219377, -0.014919769950211048, 0.05207999795675278, -0.09502332657575607,
- 0.03438139706850052, 0.008555830456316471, 0.1427675038576126, -0.09635698050260544,
- 0.05538341775536537, -0.027438664808869362, 0.0018772735493257642, 0.06616037338972092,
- -0.0008730663103051484, -0.04682141914963722, -0.04707155376672745, 0.05115866661071777,
- 0.01534971408545971, 0.08094620704650879, 0.060719434171915054, -0.045343250036239624,
- 0.05772528424859047, 0.07550844550132751, -0.015437616966664791, -0.009207835420966148,
- 0.033605027943849564, 0.08157436549663544, -0.006787578575313091, 0.0011824340326711535,
- 0.027522604912519455, 0.06866221874952316, 0.02102738246321678, -0.016859864816069603,
- 0.05195382237434387, 0.01630200445652008, -0.044876981526613235, 0.031958065927028656,
- -0.0068326364271342754, 0.031163422390818596, 0.12911729514598846, -0.08039039373397827,
- -0.027837857604026794, -0.033585075289011, -0.0044412920251488686, 0.00181517843157053,
- -0.05503761023283005, 0.07274633646011353, 0.05138422176241875, 0.09305553883314133,
- 0.047614213079214096, 0.0635477602481842, 0.052272383123636246, 0.09539659321308136,
- 0.01260871347039938, 0.07816364616155624, -0.022480685263872147, -0.10858412832021713,
- -0.011636169627308846, -0.01382924523204565, 0.03377460688352585, 0.01729704439640045,
- -0.04430908337235451, -0.03341041877865791, -0.018115008249878883, -0.03196175396442413,
- -0.08039093762636185, -0.029139384627342224, 0.05125431343913078, 0.07340147346258163,
- -0.05758129805326462, -0.0693565160036087, -0.11273239552974701, 0.011098888702690601,
- 0.05132390186190605, 0.0065963189117610455, -0.009955956600606441, -0.0899561271071434,
- 0.0036788065917789936, 0.02168198861181736, 0.02494187280535698, 0.002130234846845269,
- 0.009494908154010773, -0.024494096636772156, -0.0534856803715229, 0.027977384626865387,
- -0.021101923659443855, -0.010055462829768658, -0.06882566213607788, -0.06549129635095596,
- -0.046290263533592224, 0.009037143550813198, 0.014897903427481651, -0.0001035439272527583,
- 0.04245966672897339, 0.06145596504211426, 0.027484379708766937, 0.015355827286839485,
- -0.055655587464571, 0.06611933559179306, -0.03458729386329651, -0.014109536074101925,
- 0.07251986116170883, -0.04376121982932091, 0.03160928934812546, 0.0026789456605911255,
- -0.09107188880443573, -0.044206179678440094, -0.02269771136343479, -0.06411559134721756,
- 0.02426946349442005, -0.013378143310546875, -0.0031066001392900944, -0.028513427823781967,
- 0.003366093384101987, 0.05981818586587906, -0.07770969718694687, -0.03501378372311592,
- -0.09344836324453354, 0.11275885254144669, -0.022175855934619904, -0.0041088140569627285,
- 0.03609473630785942, -0.04315100237727165, 0.05717639997601509, 0.02622450515627861,
- -0.022940978407859802, 0.03283856436610222, 0.04560241848230362, -0.02188671939074993,
- -0.0207736324518919, 0.07642219960689545, -0.030955474823713303, -0.0022758510895073414,
- 0.08343758434057236, 0.40858742594718933, -0.16646449267864227, 0.054266609251499176,
- 0.07613331079483032, 0.01531206164509058, 0.06417442113161087, -0.0521782748401165,
- 0.054851431399583817, 0.057886313647031784, 0.11549802869558334, 0.06297305226325989,
- -0.01765582524240017, -0.004982133395969868, -0.09845121204853058, 0.0861775279045105,
- -0.012090081349015236, 0.005952168721705675, -0.01462347712367773, -0.11557795107364655,
- 0.023503607138991356, 0.04266585037112236, -0.010662105865776539, -0.03751755133271217,
- 0.02998199500143528, -0.04927113279700279, 0.00439730379730463, 0.050774868577718735,
- -0.022382713854312897, -0.014233832247555256, 0.0006110582035034895,
- 0.0030639723408967257, 0.0240780021995306, 0.03440861031413078, 0.03302140161395073,
- -0.13999004662036896, 0.06121567636728287, -0.1325918585062027, -0.04115681350231171,
- 0.06036125868558884, -0.014271182008087635, 0.021423690021038055, 0.0811619982123375,
- -0.05149877071380615, 0.040416210889816284, 0.004071986768394709, -0.04767303913831711,
- 0.028679970651865005, 0.04017426446080208, 0.020066604018211365, 0.02610035054385662,
- 0.15174522995948792, -0.003197514684870839, -0.08480332046747208, -0.09627586603164673,
- 0.07195685803890228, 0.11450020968914032, -0.007007709238678217, 0.00008728267130209133,
- -0.021491868421435356, -0.012001284398138523, 0.0006278584478422999,
- -0.025568537414073944, -0.11514681577682495, 0.009250554256141186, -0.016638627275824547,
- 0.08458741754293442, 0.005612723529338837, -0.029712319374084473, -0.2066710740327835,
- -0.038253434002399445, -0.05918815732002258, -0.004766690079122782, 0.12450370192527771,
- -0.07947517186403275, 0.07468193024396896, 0.037242259830236435, -0.019413068890571594,
- -0.0031337274704128504, -0.08106856048107147, -0.014668671414256096,
- -0.0035597740206867456, 0.05358244106173515, 0.015515458770096302, 0.04440915957093239,
- -0.0326528325676918, 0.10425469279289246, -0.08538517355918884, 0.039385464042425156,
- -0.02220459282398224, -0.012059991247951984, 0.08449280261993408, -0.04939454793930054,
- 0.026767978444695473, 0.03294164687395096, -0.0439005084335804, 0.0026921082753688097,
- -0.0647711381316185, -0.01117676217108965, -0.1198347732424736, -0.06000101566314697,
- -0.028660306707024574, -0.08811549097299576, 0.0398731529712677, -0.10606566071510315,
- -0.022146623581647873, 0.00519324978813529, -0.013546744361519814, 0.03412497043609619,
- 0.04217640683054924, 0.008760668337345123, -0.12313014268875122, 0.01883292756974697,
- 0.014594534412026405, 0.08930257707834244, -0.0036958479322493076, -0.03563234210014343,
- 0.0669945627450943, 0.08493194729089737, 0.06356420367956161, 0.02009717933833599,
- -0.0015545934438705444, -0.039242297410964966, 0.0007369191735051572,
- -0.08653631806373596, -0.5273846983909607, 0.031393423676490784, 0.011410865932703018,
- 0.03258967399597168, 0.03455083817243576, -0.09342635422945023, 0.04197270795702934,
- 0.007006137631833553, -0.06691224128007889, 0.09141910076141357, -0.05037718266248703,
- 0.046842485666275024, 0.03113701194524765, -0.052511729300022125, -0.0293575469404459,
- -0.06893039494752884, -0.0499526746571064, 0.06269312649965286, 0.009647976607084274,
- -0.06364712119102478, -0.07210268080234528, 0.025532282888889313, -0.013693449087440968,
- -0.013378389179706573, -0.013388528488576412, 0.03790067881345749, -0.06533662974834442,
- -0.04290788993239403, 0.03279047831892967, 0.027424560859799385, 0.04212072491645813,
- -0.059496887028217316, 0.004935381002724171, 0.02523903176188469, -0.0819990262389183,
- 0.1562936007976532, 0.03191092982888222, -0.01723107323050499, -0.03827314078807831,
- 0.09025111049413681, 0.021108156070113182, 0.18821220099925995, -0.011712453328073025,
- 0.04752412438392639, 0.02414696477353573, 0.15398526191711426, 0.016526708379387856,
- 0.0515609011054039, -0.046682823449373245, 0.016951140016317368, 0.042424120008945465,
- -0.007611788343638182, 0.061881449073553085, -0.06372123956680298, -0.02784441038966179,
- -0.045753125101327896, 0.003441715380176902, -0.0273282490670681, 0.03934372588992119,
- 0.17908860743045807, 0.0002350738359382376, 0.03189994767308235, 0.02569684199988842,
- -0.05624527111649513, -0.00832993071526289, -0.04454752802848816, -0.1649830937385559,
- -0.03559219837188721, -0.0014056990621611476, 0.001042360789142549, -0.03227381035685539,
- -0.11232796311378479, -0.02575782500207424, -0.04104438051581383, 0.008446035906672478,
- 0.08687619864940643, -0.009420855902135372, 0.05255577713251114, -0.05577778071165085,
- 0.08524417877197266, 0.052407074719667435, 0.013439630158245564, 0.057359207421541214,
- 0.08264976739883423, 0.026237430050969124, -0.00016529779531992972, -0.02069155126810074,
- -0.0531524121761322, 0.04047936201095581, 0.12000852823257446, -0.04559985548257828,
- 0.1281876266002655, 0.08232666552066803, -0.04636223241686821, -0.05993393808603287,
- 0.017575189471244812, -0.023134935647249222, 0.041024401783943176, -0.4756084680557251,
- 0.0006596884923055768, 0.0946284830570221, 0.013818830251693726, 0.027002064511179924,
- 0.07831794023513794, 0.004088155925273895, -0.04393080994486809, -0.005337872542440891,
- -0.07678817212581635, 0.1588609665632248, -0.017595047131180763, 0.061794131994247437,
- -0.11756108701229095, 0.002164247212931514, 0.08217575401067734, -0.031884223222732544,
- -0.019212055951356888, 0.07963450253009796, -0.18765386939048767, -0.008585888892412186,
- -0.04915010556578636, 0.14347591996192932, 0.0510973259806633, 0.05139395594596863,
- 0.0864999070763588, -0.0654895082116127, 0.08237777650356293, 0.027914226055145264,
- 0.0003843303711619228, 0.07182669639587402, -0.0003162035718560219, -0.01586276851594448,
- 0.08826897293329239, 0.05560927093029022, 0.07555775344371796, -0.024065975099802017,
- 11.837002754211426, 0.08186496049165726, 0.010233218781650066, -0.09398049116134644,
- -0.02357613481581211, -0.053556982427835464, 0.02875404991209507, -0.0795513167977333,
- 0.0528319887816906, 0.10250276327133179, -0.003235118230804801, -0.03232278674840927,
- -0.015236265026032925, -0.12379569560289383, 0.033160142600536346, -0.05445294454693794,
- -0.05277487635612488, -0.03479344770312309, 0.05653807893395424, -0.05563515052199364,
- -0.017919739708304405, 0.03046807087957859, 0.07026179879903793, 0.04843892157077789,
- -0.09303463250398636, 0.04560847580432892, 0.016503382474184036, -0.00032065113191492856,
- 0.009418527595698833, 0.020813044160604477, -0.0002812228340189904, -0.007912078872323036,
- 0.06769078224897385, 0.010395673103630543, 0.005251294933259487, 0.0591278150677681,
- 0.05194774270057678, 0.0801427885890007, 0.013462981209158897, 0.09252247959375381,
- 0.021749215200543404, 0.034575775265693665, 0.01413714699447155, 0.043317582458257675,
- 0.06281183660030365, 0.04084233194589615, 0.07763221859931946, 0.1042674109339714,
- -0.006390677765011787, 0.06788602471351624, 0.06937188655138016, -0.003430915530771017,
- 0.09525635093450546, 0.005875948816537857, -0.00579046830534935, 0.06147320568561554,
- -0.029097365215420723, -0.06330995261669159, 0.04642622545361519, 0.1053842082619667,
- -0.04732728376984596, 0.10194314271211624, 0.01952417939901352, 0.09165963530540466,
- -0.02079552412033081, 0.040394507348537445, 0.11218514293432236, 0.024409707635641098,
- -0.07873810082674026, -0.06401826441287994, -0.006225597579032183, -0.1297062337398529,
- -0.04469316825270653, 0.04769357293844223, 0.12735280394554138, -0.033025361597537994,
- 0.0407552644610405, -0.06081210449337959, 0.04428580775856972, -0.03983631357550621,
- -0.02211560495197773, 0.04093929007649422, -0.051558829843997955, 0.032224662601947784,
- 0.08239895850419998, 0.04183740168809891, 0.07335241138935089, 0.07879146933555603,
- -0.012950051575899124, -0.08752363175153732, -0.09988908469676971, 0.09239979088306427,
- -0.05865079537034035, -0.06893647462129593, -0.004783601965755224, -0.008584263734519482,
- 0.057420819997787476, -0.15754695236682892, 0.05836616829037666, 0.07054243236780167,
- -0.13312113285064697, -0.008350353688001633, -0.018074244260787964, 0.05601808801293373,
- -0.015025931410491467, 0.006143397185951471, -0.07129538059234619, 0.03372417390346527,
- 0.00952817965298891, 0.04351312667131424, -0.027814576402306557, 0.05202679708600044,
- 0.06829900294542313, -0.07715551555156708, 0.09498211741447449, 0.05001722648739815,
- -0.020474791526794434, -0.027409369125962257, 0.027404114603996277, 0.0013600001111626625,
- -0.1029287576675415, -0.03453785181045532, -0.026776200160384178, -0.0355544276535511,
- -0.05667409673333168, -0.05159550905227661, 0.00842534750699997, 0.04403869807720184,
- -0.08255467563867569, -0.020291928201913834, 0.03682293742895126, 0.04841336980462074,
- 0.060471270233392715, 0.01630278304219246, 0.06233486533164978, -0.06925024837255478,
- -0.06339938193559647, 0.044754721224308014, 0.05862953141331673, 0.050429265946149826,
- -0.05315876752138138, 0.005935625173151493, -0.056703120470047, -0.09531483799219131,
- -0.027026336640119553, 0.055659808218479156, 0.06263458728790283, 0.03222028166055679,
- 0.025132114067673683, -0.07015661895275116, -0.032896898686885834, 0.11033283919095993,
- 0.050238292664289474, 0.046613458544015884, 0.012085264548659325, -0.0776837095618248,
- 0.008306549862027168, 0.11836802214384079, -0.03238619118928909, 0.012659713625907898,
- 0.009754479862749577, -0.0047632805071771145, 0.08684848248958588, 0.0753466859459877,
- 0.013453416526317596, 0.013804382644593716, 0.021041125059127808, 0.007891855202615261,
- -0.00983220525085926, -0.02341271936893463, 0.05158422887325287, -0.026740239933133125,
- -0.12163105607032776, -0.051347073167562485, 0.04762517288327217, 0.0905437245965004,
- -0.00225575128570199, -0.12051983922719955, -0.050016652792692184, -0.028566580265760422
- ]
- },
- "epoch_date_modified": 1540598400,
- "flagged_dissimilar_incidents": [],
- "incident_id": 3,
- "nlp_similar_incidents": [
- {
- "incident_id": 20,
- "similarity": 0.9988358616828918
- },
- {
- "incident_id": 52,
- "similarity": 0.9987477660179138
- },
- {
- "incident_id": 25,
- "similarity": 0.9986588358879089
- }
- ],
- "reports": [
- {
- "authors": ["Carlos E. Perez"],
- "cloudinary_id": "reports/placeholder.svg",
- "date_published": "2019-03-14",
- "description": "Present day Air travel is one of the safest modes of travel. Statistics from the US Department of Transportation show that in 2007 and 2016 there were 11 fatalities per trillion miles of commercial ai",
- "epoch_date_submitted": 1607299200,
- "image_url": "placeholder.svg",
- "inputs_outputs": null,
- "language": "en",
- "report_number": 1342,
- "source_domain": "medium.com",
- "submitters": ["Ingrid Dickinson (CSET)"],
- "tags": [],
- "text": "Present day Air travel is one of the safest modes of travel. Statistics from the US Department of Transportation show that in 2007 and 2016 there were 11 fatalities per trillion miles of commercial air travel. This is in stark contrasts to the 7,864 fatalities per trillion miles of travel on the highway ( You can check the statistics here: fatalities and miles of travel per mode of transport). Incremental improvements to air travel is a marvel of technical innovation. However, when an aircraft accident does occur, we are forced to take notice due to the magnitude of a single event.\n\nAir travel today is at a level of technical maturity that when a plane crashes by accident (i.e not due to man-made causes like terrorism or misfiring of missiles), then it is surprisingly due not to pilot error or physical equipment failure but rather because of a computer error. That is, an aircraft accident is caused by a software bug.\n\nEveryone today is intimately familiar with software bugs. Microsoft blue screen of death and the use of ctrl-alt-delete have been burned into our experiences. Even in better designed operating systems that we find in smartphones, it’s is not uncommon to force a reboot. This is much less common that we often have to look up the procedure, but it does happen nevertheless.\n\nSoftware is notoriously difficult to make bug free. It is the nature of the beast. This is because, to build bug-free software systems, we need to explicitly list all the scenarios that can go wrong and how, and then test our software for those conditions. Unfortunately, that list tends to be unbounded if our designs don’t restrict the scope of a software’s applicability. In short, software developers are able to manage the unbounded complexity by narrowing the scope of applicability. That is why even the most sophisticated “artificial intelligent” applications work well in the most narrow of areas. It is very easy to get frustrated by the limitations of voice assistants like Alexa. That’s because AI technology has not reached the level of maturity that is required for open-ended general conversation. In short, bug-free depends fundamentally on a narrow scope of application and extensive testing within this narrow scope.\n\nAs we build more sophisticated software that has higher degrees of complexity, we need to understand the scope of an application and an ever-increasing scope demands more on the testing of these systems. Thus to understand this complexity better, we need to understand the kinds of automation we are building.\n\nAs I mentioned earlier, the USDOT shows that there were over 37,000 fatalities in highway accidents in 2017 alone. Thus it makes logical sense to understand how automation affects the safety of road vehicles. The Society of Automation Engineering (SAE) has an international standard which defines six levels of driving automation (SAE J3016). This is a useful framework for classifying the levels of automation in domains outside that of cars. A broader prescription is as follows:\n\nLevel 0 (Manual Process)\n\nThe absence of any automation.\n\nLevel 1 (Attended Process)\n\nUsers are aware of the initiation and completion of the performance of each automated task. The user may undo a task in the event of incorrect execution. Users, however, are responsible for the correct sequencing of tasks.\n\nLevel 2 (Attended Multiple Processes)\n\nUsers are aware of the initiation and completion of a composite of tasks. The user, however, is not responsible for the correct sequencing of tasks. An example will be the booking of a hotel, car, and flight. The exact ordering of the booking may not be a concern of the user. However, failure of the performance of this task may require more extensive manual remedial actions. An unfortunate example of a failed remedial action is the re-accommodation of United Airlines’ paying customer.\n\nLevel 3 (Unattended Process)\n\nUsers are only notified in exceptional situations and are required to do the work in these conditions. An example of this is in systems that continuously monitor the security of a network. Practitioners take action depending on the severity of an event.\n\nLevel 4 (Intelligent Process)\n\nUsers are responsible for defining the end goals of automation, however, all aspects of the process execution, as well as the handling of in-flight exceptional conditions, are handled by the automation. The automation is capable of performing appropriate compensating action in events of in-flight failure. The user however is still responsible for identifying the specific context in which automation can be safely applied to.\n\nLevel 5 (Fully Automated Process)\n\nThis is a final and future state where human involvement is no longer required in the processes. This, of course, may not be the final level because it does not assume that the process is capable of optimizing itself to make improvements.\n\nLevel 6 (Self Optimizing Process)\n\nThis is automation that requires no human involvement and is also capable of improving itself over time. This level goes beyond the SAE requirements but may be required in certain high-performance competitive environments such as Robocar races and stock trading.\n\nThe automobiles of today have extremely sophisticated software that controls many parts of the functioning of the system. This software works at many levels and at each level the risks are different. Some software works at an extremely narrow scope that we are unaware that it is operating. So for example, a car’s fuel injection system is, in fact, fully automated. We can say this about many of the functions of a car that deals with its engine performance. So for example, many car enthusiasts buy programmers and chips that provide after-market tweaks on a car’s performance characteristics. Failure of any of these kinds of systems can still be fatal. SAE’s standards described above however apply to driving automation and not engine automation. There is a stark difference in automation that affect steering and automation that maintains the smooth running of engines.\n\nAutomation such as traction control or car stabilization does affect steering. These are engaged in exceptional narrow conditions to ensure greater passenger safety. Controlled behavior is injected in a situation so that a driver can gain better control of a vehicle that he otherwise could not have done so himself. In this context, a driver is actually momentarily not controlling the car.\n\nThere have been many cases of planes falling from the skies due to software bugs. My earliest memory of this kind of a catastrophe is Lauda Air Flight 004 in May 1991. This is when one of the engines reverse trusters engaged in mid-flight forcing the plane to spiral out of control and crash. There was no official conclusion as to the cause, however, the aviation writer Macarthur Job said that “had that Boeing 767 been of an earlier version of the type, fitted with engines that were controlled mechanically rather than electronically, then that accident could not have happened.”\n\nMore recently, there is the case of Air France 447 in 2009. The official conclusion was that there was a “temporary inconsistency between the measured speeds, likely as a result of the obstruction of the pitot tubes by ice crystals, causing autopilot disconnection and reconfiguration.” The verdict was that the human pilots were eventually part of the fault due to their inability to react appropriately to the anomalous situation. To say this differently, the pilots received incorrect information from the instrumentation and thus took inappropriate action to stabilize the plane.\n\nThere are other cases of computer caused failures. Qantas flight 72, it was determined that the CPU of the air data inertial reference unit (ADIRU) corrupted the angle of attack (AOA) data. Malaysia Air 124 that plunged 200 feet in midflight. The instrumentation displayed that the plane was “going too fast and too slow simultaneously”.\n\nIn general, it is the responsibility for the pilots to properly perform compensating actions in the case of equipment failure (known as alternate law). The point though is that computer error due to equipment failure should be no different from regular equipment error and it is the responsibility of the pilots to take appropriate measures. Typically, on equipment error, the autopilot is disengaged and the plane is to be flown manually. This is Level 3 (unattended process) automation where the scope when automation is in play is explicit. In Level 3, a pilot is made aware of an exceptional condition and takes manual control of the plane.\n\nIn Level 4 (intelligent process), a pilot must be able to recognize the exceptional condition and is able to specify when automation is applicable. Today, we have self-driving cars that are deployed in narrow applications. We have cars that can self-park and we have cars that can drive in good weather conditions on the highway. These are Level 4 automation where is up to the judgment of the driver to engage the automation. Autopilot in planes are Level 4 automation and is engaged in contexts of low complexity.\n\nThen there is the case of Boeing’s 737 Max 8’s MCAS. This I will argue is a Level 5 automation, this is a fully automated process wherein it is expected to function in all scenarios. Like electronics that control engine performance, fully automated processes aren’t generally problematic, however, when you involve driving (or steering for planes) then it opens up the question of the maturity of this level of automation.\n\nAirbus has what is called ‘Alpha Protection’:\n\n“Alpha protection” software is built into every Airbus aircraft to prevent the aircraft from exceeding its performance limits in angle of attack, and kicks in automatically when those limits are reached.\n\nFrom the definition, Alpha protection is automation that is always measuring, however, it isn’t always active. It is like a speed limiter that exits in cars today, it is constantly measuring, but is activated only when measurements exceed thresholds. However, what happens when the measurements are incorrect due to faulty sensors? One could argue that this might have been what happened to Air France 447. That is, the automation became active when the pilots did not expect it. Faulty sensors are always problematic, but faulty sensors that can trigger automated behavior can be extremely dangerous.\n\nThe Boeing 737 Max 8 has a system known as Maneuvering Characteristics Augmentation System (MCAS). The business motivation behind MCAS is itself quite revealing. Apparently, it is analogous to a software patch that attempts to fix a physical flaw of the aircraft. The Boeing 737 aircraft, introduced in 1968, is an extremely mature and reliable aircraft. The 737 is the best selling aircraft in the world, selling over 10,000 aircraft since its inception. It is has been favored by many short-haul budget airlines that have risen in the past decade. Its main competitor in the Airbus A320, where over 8,000 planes have been delivered since its inception in 1988.\n\nIn 2008, a joint American-French company CFM launched a more fuel and cost-efficient engine known as the Leap engine. Airbus fitted their new planes (Airbus A320neo) with this new engine. The reason behind the economy of the Leap engine is due to its much larger air intake diameter.\n\nTo be competitive, the Max 8, was retrofitted also with this new engine. However, unlike the A320neo, there was not enough ground clearance for the Leap engine. To compensate for this problem, Boeing reduced the distance between the engine and the underside of the wing. This, however, had the effect of changing the center of mass of the plane. The Max 8 now had the dynamic tendency of raising its nose and as a consequence increasing the risk of a stall.\n\nTo paper over this tendency, Boeing developed MCAS. The purpose of MCAS is that it is software dedicated to compensating for this flaw:\n\nBoeing engineers, in turn, came up with another makeshift solution. They developed a software that would work in the background. As soon as the nose of the aircraft pointed upward too steeply, the system would automatically activate the tailplane and bring the aircraft back to a safe cruising plane. The pilots wouldn’t even notice the software’s intervention — at least that was the idea.\n\nEmploying software to paper over a plane’s natural instability is not new. Many of the more advanced fighter jets are designed to be unstable to ensure greater maneuverability. The fighter pilots are also trained to anticipate the peculiar flight characteristics of their planes. In contrast, there have been many complaints that pilots of the Max 8 were not properly informed of the existence of the MCAS system:\n\n“There are 1,400 pages and only one mention of the infamous Maneuvering Characteristics Augmentation System (MCAS) … in the abbreviations sections. But the manual does not include an explanation of what it is…”\n\nPerhaps Boeing determined that information about this system wasn’t worth attention by pilots. After all, the intention of the MCAS system was to make the 737 Max 8 to give the same “feel” as the previous model the 737 NG. This is what we call in software circles as virtualization. That is, this is software that renders a virtual machine on the pilot’s user interface to the plane so it feels and acts like another kind of plane (i.e. one that is structurally balanced).\n\nThere is a “law” in software development knows as “The Law of Leaky Abstractions” which states “All non-trivial abstractions, to some degree, are leaky.” MCAS is perhaps a leaky abstraction, that is, it tries to creates a virtual abstraction of a legacy 737 NG without Leap engines, to hide an unbalanced airplane. Surely, nothing can leak with this kind of abstraction? It is one thing to abstract away virtual machinery and its entirely another thing to attempt to abstract away physical reality. However, in both cases, something will eventually leak through.\n\nSo does the MCAS behave when its abstractions begin to leak? Here is what is reported by pilots of the plane:\n\n“On both the NG and the MAX, when you have a runaway trim stab this can be stopped temporarily by pulling the control column in the opposite direction. But when the MCAS is activated because of a high angle of attack, this can only be stopped by cutting the electrical trim motor.”\n\nHow a pilot responds to an abstraction leak can be very different from that of the real thing it is trying to abstract. With faulty sensors, one can turn this off and use one’s understanding of the situation and the plane to make good decisions. However, when one’s understanding of the nature of the plane is virtual and not real, then you just can’t revert to reality. Reality is outside of the pilot’s comprehension and thus a cause to inproper decision making. A virtual trashcan works like a regular trash can in that you can still recover the documents you place in the trash before it is emptied. Reality however is very different than the virtual world, many times there is no undo function!\n\nThen there’s this leaky abstraction when the plane itself has exhibited its own intentions:\n\nBut the EFS never acts by itself, so we were astounded when we heard what the real reason was. (…) However, in some cases — as happened on Flight 610 — the MCAS moves by itself.\n\nand this:\n\nMCAS is activated without pilot input and only operates in manual, flaps up flight.\n\nThis is because, a virtual abstraction of a real plane, is the same as Level 5 automation! If MCAS is turned off, the pilots will find themselves to be flying an entirely different plane. When you abstract away interaction with reality, you cannot avoid introducing a process that mediates between a pilot’s action and the actual actions of the plane. The behavior of the real plane will depend on the environment that it is in. The behavior of a virtual plane will depend on just the working sensors that are available to render the virtual simulation. Level 5 automation requires a kind of intelligence that is aware of what sensors are faulty and furthermore is able to navigate a problem with partial and unobserved information. The smarts to enable this kind of Artificial Intelligence is simply not available in our current state of technological development.\n\nIn short, Boeing has decided to implement technology that is simply too ambitious. Not all software has the same level of complexity. This is not an issue of insufficient testing to uncover logical flaws in the software. This is not an issue of robustly handling sensor and equipment failure. This is an issue of attempting to implement an overly ambitious and thus a dangerous solution.\n\nAir travel is extremely reliable, but introducing software patches as a means to virtualize physical behavior can lead to unintended consequences. The reason that we still fly planes with pilots in them is that we expect pilots to be able to solve unexpected situations that automation cannot handle. MCAS like virtualization, handcuffs pilots from differentiating between the real and the simulated. I would thus recommend to regulators that in the future, MCAS like virtualization should be treated and tested very differently from other automation. They should be treated as Level 5 automation with a more exhaustive level of scrutiny.\n\n",
- "title": "AI Safety, Leaking Abstractions and Boeing’s 737 Max 8",
- "url": "https://medium.com/intuitionmachine/ai-safety-leaking-abstractions-and-boeings-737-max-8-5d4b3b9bf0c3"
- },
- {
- "authors": ["Niniek Karmini", "David Koenig"],
- "cloudinary_id": "reports/www.courthousenews.com/wp-content/uploads/2018/11/AP18332052000971-300x206.jpg",
- "date_published": "2018-11-29",
- "description": "JAKARTA, Indonesia (AP) — Pilots fought against an automated system that pitched a Boeing jetliner’s nose down repeatedly because of a faulty sensor until they finally lost control and plunged into the Java Sea last month, Indonesian investigators said Wednesday.\nAt a news conference, safety officials said they were still struggling to understand why the plane crashed, killing all 189 people on board.\n\nThe National Transportation Safety Commission’s Nurcahyo Utomo said investigators were trying to figure out from interviews with engineers why they certified that the Boeing 737 MAX 8 was airworthy and whether they had followed required maintenance procedures. Pilots of previous flights had reported problems with control systems on the brand-new jet.",
- "epoch_date_submitted": 1559347200,
- "image_url": "http://www.courthousenews.com/wp-content/uploads/2018/11/AP18332052000971-300x206.jpg",
- "inputs_outputs": null,
- "language": "en",
- "report_number": 389,
- "source_domain": "courthousenews.com",
- "submitters": ["Catherine Olsson"],
- "tags": [],
- "text": "JAKARTA, Indonesia (AP) — Pilots fought against an automated system that pitched a Boeing jetliner’s nose down repeatedly because of a faulty sensor until they finally lost control and plunged into the Java Sea last month, Indonesian investigators said Wednesday.\n\nAt a news conference, safety officials said they were still struggling to understand why the plane crashed, killing all 189 people on board.\n\nThe National Transportation Safety Commission’s Nurcahyo Utomo said investigators were trying to figure out from interviews with engineers why they certified that the Boeing 737 MAX 8 was airworthy and whether they had followed required maintenance procedures. Pilots of previous flights had reported problems with control systems on the brand-new jet.\n\nThe board issued a preliminary report that stopped short of declaring a probable cause of the crash — the investigation is continuing — but it provided new details about the pilots’ struggle to fly the highly automated jet and Lion Air’s inability to fix problems with sensors on the plane.\n\nSensors that measure speed were flushed and checked, and an electrical plug was cleaned before the fatal flight. Mechanics, however, did not check a sensor that measures whether the nose of the plane is pointing up or down.\n\nThat “angle of attack” sensor gave faulty readings throughout the short flight, triggering a system that automatically pointed the plane’s nose down more than two dozen times, with pilots responding by manually fighting to correct the pitch. Pilots even asked air traffic controllers to tell them how fast and high they were flying.\n\nThe malfunctions and warnings from the plane’s control system appeared to overwhelm the pilots almost as soon as the jet became airborne, said another investigator, Ony Suryo Wibowo.\n\n“The problem is if multiple malfunctions occur all at once, which one should be prioritized?” Wibowo said.\n\nIn a statement following release of the report, U.S.-based Boeing declared that the MAX, its newest plane, is safe. The manufacturer played up the possibility of pilot error.\n\nBoeing noted that the crew of the plane’s previous flight one day earlier had responded correctly to the automatic nose-down pitch and flew the plane manually. They also ran safety checklists. The preliminary report does not say whether pilots on the deadly flight took those steps, Boeing pointed out.\n\nBoeing has said that the procedure to correct an automatic nose-down pitch is in the plane’s operating manual and pilots should have known about it.\n\nSearchers have not yet recovered the plane’s cockpit voice recorder, which could tell investigators what the pilots were doing — or failing to do — to regain control of the plane during the brief, erratic flight.\n\nThe report by Indonesia’s safety commission repeated earlier recommendations made just after the disaster that pilots be better versed in emergency procedures and aware of past aircraft problems. They recommended that Lion Air, a fast-growing low-cost airline based in Jakarta, ensure that pilots follow proper procedures “to improve the safety culture.”\n\nMary Schiavo, a former inspector general of the U.S. Department of Transportation, said the preliminary report offered a road map of final recommendations that are likely to emerge from the investigation.\n\n“They will be looking for more precise reporting of problems (by pilots), and certainly a better maintenance response,” she said.\n\nPeter Lemme, an expert in aviation and satellite communications and a former Boeing engineer who wrote an analysis of the data on his blog, compared the scene in the cockpit to “a deadly game of tag” in which the plane pointed down, the pilots countered by manually aiming the nose higher, only for the sequence to repeat about five seconds later.\n\nThat happened 26 times during the 11-minute flight, but pilots failed to recognize what was happening and follow the known procedure for countering incorrect activation of the automated safety system, Lemme told The Associated Press.\n\nLemme said he was troubled that there weren’t easy checks to see if sensor information was correct, that the crew of the fatal flight apparently wasn’t warned about the problems on previous flights and that the Lion Air jet wasn’t fully repaired after those flights.\n\n“Had they fixed the airplane, we would not have had the accident,” he said. “Every accident is a combination of events, so there is disappointment all around here,” he said.\n\nThe U.S. National Transportation Safety Board and Boeing experts are helping the Indonesian investigators.\n\nBoeing has a great deal at stake in defending its plane.\n\nMore than 200 MAX jets have been delivered to airlines around the world. Pilots at American Airlines and Southwest Airlines complained this month that they had not been given all information about the new automated anti-stall safety system on the MAX.\n\nBoeing shares fell 14 percent in the last three weeks through Tuesday, as investigators focused on t",
- "title": "Report Faults Safety Failures, Defects in Lion Air Crash",
- "url": "https://www.courthousenews.com/report-faults-safety-failures-defects-in-lion-air-crash/"
- },
- {
- "authors": ["Niniek Karmini", "David Koenig"],
- "cloudinary_id": "reports/storage.googleapis.com/afs-prod/media/media:2f65d418951d44d59e9c68c92123f4d7/2853.jpeg",
- "date_published": "2018-11-29",
- "description": "JAKARTA, Indonesia (AP) — Pilots fought against an automated system that pitched a Boeing jetliner's nose down repeatedly because of a faulty sensor until they finally lost control and plunged into the Java Sea last month, Indonesian investigators said Wednesday. At a news conference, safety officials said they were still struggling to understand why the plane crashed, killing all 189 people on board. The National Transportation Safety Commission's Nurcahyo Utomo said investigators were trying to figure out from interviews with engineers why they certified that the Boeing 737 MAX 8 was airworthy and whether they had followed required maintenance procedures. Pilots of previous flights had reported problems with control systems on the brand-new jet.",
- "epoch_date_submitted": 1559347200,
- "image_url": "https://storage.googleapis.com/afs-prod/media/media:2f65d418951d44d59e9c68c92123f4d7/2853.jpeg",
- "inputs_outputs": null,
- "language": "en",
- "report_number": 388,
- "source_domain": "apnews.com",
- "submitters": ["Catherine Olsson"],
- "tags": [],
- "text": "National Transportation Safety Committee investigator Nurcahyo Utomo holds a model of an airplane during a press conference on the committee's preliminary findings on their investigation on the crash of Lion Air flight 610, in Jakarta, Indonesia, Wednesday, Nov. 28, 2018. Black box data collected from their crashed Boeing 737 MAX 8 show Lion Air pilots struggled to maintain control as the aircraft's automatic safety system repeatedly pushed the plane's nose down, according to a preliminary investigation into last month's disaster. (AP Photo/Achmad Ibrahim)\n\nJAKARTA, Indonesia (AP) — Pilots fought against an automated system that pitched a Boeing jetliner’s nose down repeatedly because of a faulty sensor until they finally lost control and plunged into the Java Sea last month, Indonesian investigators said Wednesday.\n\nAt a news conference, safety officials said they were still struggling to understand why the plane crashed, killing all 189 people on board.\n\nThe National Transportation Safety Commission’s Nurcahyo Utomo said investigators were trying to figure out from interviews with engineers why they certified that the Boeing 737 MAX 8 was airworthy and whether they had followed required maintenance procedures. Pilots of previous flights had reported problems with control systems on the brand-new jet.\n\nThe board issued a preliminary report that stopped short of placing blame for the crash — the investigation is continuing — but it provided new details about the pilots’ struggle to fly the highly automated jet and Lion Air’s inability to fix problems with sensors on the plane.\n\nSensors that measure speed were flushed and checked, and an electrical plug was cleaned before the fatal flight. Mechanics, however, did not check sensors that measure whether the nose of the plane is pointing up or down.\n\nAn “angle of attack” sensor gave faulty readings throughout the short flight, triggering a system that automatically pointed the plane’s nose down more than two dozen times, with pilots responding by manually fighting to correct the pitch. Pilots even asked air traffic controllers to tell them how fast and high they were flying.\n\nThe malfunctions and warnings from the plane’s control system appeared to overwhelm the pilots almost as soon as the jet became airborne, said another investigator, Ony Suryo Wibowo.\n\n“The problem is if multiple malfunctions occur all at once, which one should be prioritized?” Wibowo said.\n\nIn a statement following release of the report, U.S.-based Boeing declared that the MAX, its newest plane, is safe. The manufacturer played up the possibility of pilot error.\n\nBoeing noted that the crew of the plane’s previous flight one day earlier had responded correctly to the automatic nose-down pitch and flew the plane manually. They also ran safety checklists. The preliminary report does not say whether pilots on the deadly flight took those steps, Boeing pointed out.\n\nBoeing has said that the procedure to correct an automatic nose-down pitch is in the plane’s operating manual and pilots should have known about it.\n\nSeveral experts said, however, that Boeing likely will have to consider changes in the new anti-stall system, perhaps developing an algorithm to disregard sensor readings that appear off-base.\n\nThe report offered new details on persistent problems with sensors on the Lion Air jet and the airline’s efforts to fix them.\n\nJohn Cox, a safety consultant and former airline pilot, said Lion Air should have taken the troubled plane on a maintenance test flight.\n\n“I don’t think the airplane was ready for passenger service because they had not validated that they had fixed the problem,” he said.\n\nSearchers have not yet recovered the plane’s cockpit voice recorder, which could tell investigators what the pilots were doing — or failing to do — to regain control of the plane during the brief, erratic flight.\n\nThe report by Indonesia’s safety commission did not draw conclusions about why the crew lost control of the plane, but it repeated earlier recommendations that pilots be better versed in emergency procedures and aware of past aircraft problems. They recommended that Lion Air, a fast-growing low-cost airline based in Jakarta, ensures that pilots follow proper procedures “to improve the safety culture.”\n\nMary Schiavo, a former inspector general of the U.S. Department of Transportation, said the preliminary report offered a road map of final recommendations that are likely to emerge from the investigation.\n\n“They will be looking for more precise reporting of problems (by pilots), and certainly a better maintenance response,” she said.\n\nPeter Lemme, an expert in aviation and satellite communications and a former Boeing engineer who wrote an analysis of the data on his blog, compared the scene in the cockpit to “a deadly game of tag” in which the plane pointed down, the pilots countered by manually aiming the nose higher, only for the sequence to repeat about five seconds later.\n\nThat happened 26 times during the 11-mi",
- "title": "Report faults safety failures, defects in Lion Air crash",
- "url": "https://www.apnews.com/4cf97e9b0a004cf5a0db401bb1d222e1"
- },
- {
- "authors": ["Helen Regan", "Masrur Jamaluddin"],
- "cloudinary_id": "reports/cdn.cnn.com/cnnnext/dam/assets/181107144739-01-lion-air-1106-super-tease.jpg",
- "date_published": "2018-11-08",
- "description": "Problems were reported on a Lion Air jet that crashed into the sea off Jakarta even after technicians replaced a sensor on board the aircraft, investigators said.",
- "epoch_date_submitted": 1559347200,
- "image_url": "https://cdn.cnn.com/cnnnext/dam/assets/181107144739-01-lion-air-1106-super-tease.jpg",
- "inputs_outputs": null,
- "language": "en",
- "report_number": 387,
- "source_domain": "edition.cnn.com",
- "submitters": ["Catherine Olsson"],
- "tags": [],
- "text": "(CNN) Problems were reported on a Lion Air jet that crashed into the sea off Jakarta even after technicians replaced a sensor on board the aircraft, investigators said.\n\nIndonesian authorities confirmed Wednesday that the angle of attack (AOA) sensor was replaced after a flight from Manado, in North Sulawesi to Denpasar, Bali on October 28. The Boeing 737 MAX 8 then made another flight to Jakarta that same day, and the pilots reported further problems.\n\nAll 189 people on board Flight 610 died when the new Boeing 737 MAX 8 crashed into the sea on October 29, 13 minutes after taking off from Jakarta on a short flight to Pangkal Pinang on the Indonesian island of Bangka.\n\nInvestigators said the jet experienced problems on its last four flights -- including, crucially, the flight that crashed, according to Soerjanto Tjahjono, the head of the National Transportation Safety Committee (KNKT).\n\nBoeing released an operational bulletin on Wednesday, warning all airlines about how to address any erroneous readings related to the AOA sensor. The Federal Aviation Administration (FAA) later issued its own directive that advised pilots about how to respond to similar problems.\n\nSearch for voice recorder\n\nAlmost two weeks after the crash, authorities are still searching for the plane's cockpit voice recorder (CVR), which is believed to be buried under deep mud. If found, it should reveal what happened in the cockpit in the final seconds of the flight.\n\nInvestigators are already examining the flight data recorder that was pulled off the sea bed, some 30 meters under water, on November 1.\n\nPhotos: In photos: Lion Air plane crashes off Indonesia A relative of one of the crash victims tosses flower petals from an Indonesian Navy ship on Tuesday, November 6. Hide Caption 1 of 27 Photos: In photos: Lion Air plane crashes off Indonesia Victims' families and colleagues react on a Navy ship as they're ferried to the crash site on November 6. Hide Caption 2 of 27 Photos: In photos: Lion Air plane crashes off Indonesia An Indonesian official examines a turbine engine from the plane on Sunday, November 4. Hide Caption 3 of 27 Photos: In photos: Lion Air plane crashes off Indonesia People in Jakarta grieve over the coffin of a relative on November 4. Hide Caption 4 of 27 Photos: In photos: Lion Air plane crashes off Indonesia Indonesian Navy divers recover a flight data recorder on Thursday, November 1. Hide Caption 5 of 27 Photos: In photos: Lion Air plane crashes off Indonesia Families of the victims look through personal items that were recovered from the wreckage. Hide Caption 6 of 27 Photos: In photos: Lion Air plane crashes off Indonesia A police officer arranges shoes recovered during search operations. Hide Caption 7 of 27 Photos: In photos: Lion Air plane crashes off Indonesia A Navy ship arrives at a search area in the waters of Karawang. Hide Caption 8 of 27 Photos: In photos: Lion Air plane crashes off Indonesia A relative of a passenger cries at a Jakarta hospital on Tuesday, October 30. Family members have been providing authorities with DNA samples to help identify victims of the crash. Hide Caption 9 of 27 Photos: In photos: Lion Air plane crashes off Indonesia Officials transport a body bag in Jakarta. Hide Caption 10 of 27 Photos: In photos: Lion Air plane crashes off Indonesia Indonesian President Joko Widodo inspects debris. Hide Caption 11 of 27 Photos: In photos: Lion Air plane crashes off Indonesia Victims' relatives embrace at a police hospital in Jakarta. Hide Caption 12 of 27 Photos: In photos: Lion Air plane crashes off Indonesia Soldiers drag ashore an inflatable raft containing debris from the plane. Hide Caption 13 of 27 Photos: In photos: Lion Air plane crashes off Indonesia A wallet is seen in the water where the plane went down. Hide Caption 14 of 27 Photos: In photos: Lion Air plane crashes off Indonesia A relative of a passenger cries at a hospital in Jakarta. Hide Caption 15 of 27 Photos: In photos: Lion Air plane crashes off Indonesia President Widodo (front row, second from right) tours the operations center in Jakarta where debris is laid out. Hide Caption 16 of 27 Photos: In photos: Lion Air plane crashes off Indonesia Police work to identify personal belongings that are believed to be from the plane's wreckage. Hide Caption 17 of 27 Photos: In photos: Lion Air plane crashes off Indonesia A police officer studies a map in the search-and-rescue command center. Hide Caption 18 of 27 Photos: In photos: Lion Air plane crashes off Indonesia A diver with the Indonesian Navy enters the water off the north coast of Karawang. Hide Caption 19 of 27 Photos: In photos: Lion Air plane crashes off Indonesia Rescue workers carry a body that was recovered from the waters near Jakarta on October 29. Hide Caption 20 of 27 Photos: In photos: Lion Air plane crashes off Indonesia A woman in Pangkal Pinang prays as she and others wait for news on October 29. Hide Caption 21 of 27 Photos: In photos: Lion Air plane crashes off ",
- "title": "Lion Air: Sensor was replaced day before crash but problems persisted",
- "url": "https://edition.cnn.com/2018/11/08/asia/lion-air-sensor-replaced-intl/index.html"
- },
- {
- "authors": ["Barbara S. Peterson"],
- "cloudinary_id": "reports/hips.hearstapps.com/hmg-prod.s3.amazonaws.com/images/investigators-examine-engine-parts-from-the-ill-fated-lion-news-photo-1058470458-1541688511.jpg?crop=1.00xw:0.733xh;0,0.0375xh&resize=1200:*",
- "date_published": "2018-11-08",
- "description": "Mounting evidence that something was very wrong with the sensors on board the Boeing 737 MAX and the flight information being sent to the pilots.",
- "epoch_date_submitted": 1559347200,
- "image_url": "https://hips.hearstapps.com/hmg-prod.s3.amazonaws.com/images/investigators-examine-engine-parts-from-the-ill-fated-lion-news-photo-1058470458-1541688511.jpg?crop=1.00xw:0.733xh;0,0.0375xh&resize=1200:*",
- "inputs_outputs": null,
- "language": "en",
- "report_number": 386,
- "source_domain": "popularmechanics.com",
- "submitters": ["Catherine Olsson"],
- "tags": [],
- "text": "The FAA has issued an emergency directive to anyone flying the Boeing 737 MAX, the type of plane that crashed in the Lion Air Flight JH 610 incident, related to the faulty sensors that reportedly fed bad information to the pilots. Meanwhile, investigators have reported that the plane received a replacement angle-of-attack sensor (a system that measures whether the plane's nose is too high relative to the current of air) the day before the deadly crash.\n\nAs Bloomberg reported earlier this week, Boeing issued a bulletin to 737 MAX operators warning them that faulty inputs from airflow sensors could have contributed to the Lion Air crash. The Boeing statement gave few details, saying that “the investigation is ongoing.” The FAA's directive backs up that bulletin by giving anyone who flies the 737 MAX three days, starting Wednesday, to revise their airplane flight manual for that model.\n\nThe FAA said it was taking the action to “address possible erroneous angle of attack inputs” that could put the plane in a sudden dive. The FAA said airline operators need to revise the manual “to give crew Horizontal stabilizer trim procedures to follow under certain conditions.\" In the U.S., the order affects American, Southwest, and United, which together operate 45 MAX jets.\n\nHere's the official statement:\n\n“Boeing has released a Flight Crew Operations Manual Bulletin regarding the potential for erroneous angle of attack input on 737 Max aircraft. The FAA plans to mandate the Flight Crew Operations Manual Bulletin by issuing an Airworthiness Directive (AD). The FAA continues to work closely with Boeing, and as a part of the investigative team on the Indonesia Lion Air accident, will take further appropriate actions depending on the results of the investigation. The FAA has alerted affected domestic carriers and foreign airworthiness authorities who oversee air carriers that use the 737 MAX of the agency’s forthcoming action.\"\n\nThe new revelation—that the doomed 737 received a new sensor after a flight on October 28, the day before the deadly crash—adds to the growing evidence of a serious problem with the sensors and flight data being fed to the crew of Lion Air 610. Data downloaded from the flight data recorder, which was recovered by divers searching the underwater crash site, have revealed a series of glitches in three flights prior to the crash that gave flawed airspeed and other information to the cockpit.\n\nIf AOA sensors fail, it can cause the plane’s computers to incorrectly show the plane is heading into an aerodynamic stall—which, in turn, can put the jet into a sudden dive to restore airspeed.\n\n“It’s too early to tell if the sensors caused the accident,” said John Goglia, an aviation safety expert and former member of the National Transportation Safety Board. He said that sensor equipment has become more automated with each new generation of aircraft, and that, in turn, introduces a new risk.\n\n“This could be a training issue,” he said. “The automation keeps marching forward and this is most advanced model that Boeing has built.” It’s still unclear whether the issue is one of an actual flaw, or a procedure that wasn’t correctly followed.",
- "title": "Lion Air Flight JH 160 Crash Sensor Replacement",
- "url": "https://www.popularmechanics.com/flight/airlines/a24841961/sensor-replaced-one-day-before-lion-air-flight-jh-160-crash/"
- },
- {
- "authors": ["Jeremy Bogaisky"],
- "cloudinary_id": "reports/thumbor.forbes.com/thumbor/600x315/https%3A%2F%2Fspecials-images.forbesimg.com%2Fimageserve%2F1057534088%2F960x0.jpg",
- "date_published": "2018-11-09",
- "description": "With autopilot and auto landing, many airline pilots now aren't getting regular manual flying practice. That may have played a role in the Lion Air crash, says safety consultant Keith Mackey.",
- "epoch_date_submitted": 1559347200,
- "image_url": "https://thumbor.forbes.com/thumbor/600x315/https%3A%2F%2Fspecials-images.forbesimg.com%2Fimageserve%2F1057534088%2F960x0.jpg",
- "inputs_outputs": null,
- "language": "en",
- "report_number": 385,
- "source_domain": "forbes.com",
- "submitters": ["Catherine Olsson"],
- "tags": [],
- "text": "AFP/Getty Images\n\n[Updated: Nov. 13]\n\nThe FAA issued an emergency airworthiness directive Wednesday to airlines operating the new Boeing 737 MAX, calling on them to better instruct pilots on how to deal with a potential faulty reading from a key gauge, an angle of attack sensor, that's supposed to help keep planes from falling out of the sky. The directive follows the discovery that the sensor was malfunctioning on a Lion Air 737 MAX that plunged into the sea off Indonesia on Oct. 29, killing all 189 aboard.\n\nThe accident and the FAA warning, which comes after Boeing issued a similar bulletin, may be less an indication that there’s anything wrong with the new version of Boeing’s top-selling plane than a sign of how increasingly automated flight systems are eroding pilot skills, says Keith Mackey, a Florida-based safety consultant who’s a former airline pilot and accident investigator.\n\nTo put it simply, says Mackey, the FAA’s directive tells pilots to turn off the plane's autopilot system, and if necessary the pitch trim system too, and fly the plane yourself.\n\n“It’s unfortunate that they even have to write something like this,” says Mackey. “It should be understood.”\n\nThe angle of attack sensor is a vane on the wing that gauges airflow to determine if the wing is generating enough lift. That airflow can be disrupted if the plane slows down or goes into too steep a climb, putting the plane in danger of stalling. In that situation the 737 MAX has a pitch trim system that automatically pushes the nose down to prevent a stall. The FAA's and Boeing's bulletins explain to pilots how to disengage the system in the event that a faulty reading from the angle of attack sensor leads it to push the nose down.\n\nShortly after takeoff from Jakarta, the Lion Air plane’s pilots requested to return to the airport, but they never turned back, plunging into the water at high speed.\n\nBased on the evidence available, says Mackey, the pilots may not have disengaged the autopilot or the trim system, which given the faulty angle of attack reading, may have lowered the nose and dived the plane into the water.\n\n“The pilot should have recognized that I’m getting an erroneous indication on my airspeed,” he says. “It’s a nice day, you can look out the window and see that the airplane isn’t flying nose high.”\n\nHe sees the accident as indicative of two problems: the increasing use of autopilot is giving pilots less flight time to maintain basic skills, and a lower level of experience and training among pilots in the developing world.\n\nMany airlines will require pilots shortly after takeoff to engage the autopilot, which in modern jets essentially manage the direction, speed and altitude of a plane based on instructions programmed by the pilot. Planes can also auto land at airports that have the necessary equipment.\n\n“You get a lot of takeoffs and landings but no one gets much flying practice,” says Mackey. “They’re getting to be good computer programmers, they know which buttons to push and when to push them. When something begins to fail it becomes a puzzlement.”\n\nThe 737 MAX is the only Boeing plane in which the angle of attack sensor triggers automated movements of the jet's tail, the aviation safety consultant John Cox told the Seattle Times.\n\nBoeing appears not to have informed pilots and airlines that a new automated trim system had been introduced in the MAX, failing to add mention of it to the flight crew operations manual or to include it in training for pilots, Aviation Week and the Wall Street Journal reported Nov. 13.\n\n\"If [it] was not covered in the MAX training, that is an error,\" says Mackey, but \"a pilot proficient in hand flying the airplane should have recognized an automation failure issue quickly and reverted to hand flying the airplane to an uneventful landing, with or without the training.\"\n\nIn developing countries with small military and private aviation sectors, airlines tend to rely on Western schools for pilot training, putting many pilots at the controls of large aircraft with fewer flight hours, he says.\n\nThose same factors limit the pool of trained mechanics. With air travel taking off in Asia, that can lead to systematic maintenance issues at growing airlines, says Mackey.\n\nThe Lion Air plane’s angle of attack sensor had registered incorrect airspeed readings on the four flights prior to the one that crashed, according to the Indonesia National Transportation Safety Committee, and the sensor had been replaced the day before.\n\nMackey says it’s a red flag that the issue went unaddressed for so long.\n\nBoeing has a lot riding on the 737 MAX: It has more than 4,500 orders on the books and has delivered 219. Lion Air was the launch customer for the 737 MAX 8, the variant of the plane that crashed, and the MAX 9.\n\nBoeing's bulletin states that the angle of attack sensor can trigger the 737 MAX's automatic pitch trim system to push the nose down for as long as 10 seconds. If pilots manually pull the nose back up, the system can reengage",
- "title": "Crash Of Lion Air 737 MAX Raises Questions About Autopilot And Pilot Skills",
- "url": "https://www.forbes.com/sites/jeremybogaisky/2018/11/08/crash-of-lion-air-737-max-raises-questions-about-autopilot-and-pilot-skills/#133731448477"
- },
- {
- "authors": ["Andy Pasztor", "Andrew Tangel"],
- "cloudinary_id": "reports/s.marketwatch.com/public/resources/MWimages/MW-GY683_Southw_ZG_20181116075039.jpg",
- "date_published": "2018-11-16",
- "description": "During the three weeks before Lion Air Flight 610 plunged into waters off Indonesia, Southwest Airlines Co. replaced two malfunctioning flight-control...",
- "epoch_date_submitted": 1559347200,
- "image_url": "http://s.marketwatch.com/public/resources/MWimages/MW-GY683_Southw_ZG_20181116075039.jpg",
- "inputs_outputs": null,
- "language": "en",
- "report_number": 384,
- "source_domain": "marketwatch.com",
- "submitters": ["Catherine Olsson"],
- "tags": [],
- "text": "During the three weeks before Lion Air Flight 610 plunged into waters off Indonesia, Southwest Airlines Co. LUV, +0.25% replaced two malfunctioning flight-control sensors of the same type that has been publicly implicated in the crash, according to a summary of Southwest maintenance records reviewed by The Wall Street Journal.\n\nBoth U.S. maintenance issues involved a Boeing Co. BA, +2.56% 737 MAX 8, the same model that crashed last month in Indonesia. The sensors measure whether the jetliner is angled above or below level flight. Those sensors, or related hardware, needed repairs in the Southwest instances, according to the summary document. The document also indicates Southwest pilots reported they couldn’t engage automated throttle settings, similar to cruise control on a car.\n\nA Southwest spokeswoman said the sensors didn’t fail and were removed as a precautionary measure as part of a troubleshooting process. She said at least one was repaired.\n\nInvestigators have confirmed the same type of sensor failed on the Lion Air flight, but they haven’t determined precisely what happened between that failure and the crash.\n\nSince the accident, which killed 189 people, Boeing has warned airlines about the potential for erroneous data from what are called “angle-of-attack” sensors. “We have not experienced a sensor failure or flight issue as described in Boeing’s bulletin,” the Southwest spokeswoman said.\n\nThe Southwest incidents didn’t result in emergencies and no one was hurt. They prompted what appear to be routine reports by mechanics checking out problems with the sensors.\n\nAn expanded version of this report appears on WSJ.com.",
- "title": "Southwest replaced flight-control sensors of the kind implicated in Lion Air crash",
- "url": "https://www.marketwatch.com/story/southwest-replaced-flight-control-sensors-of-the-kind-implicated-in-lion-air-crash-2018-11-16"
- },
- {
- "authors": ["Alan Levin", "Harry Suhartono", "Julie Johnsson"],
- "cloudinary_id": "reports/timedotcom.files.wordpress.com/2018/10/lion-air-jet.jpg?quality=85",
- "date_published": "2018-10-31",
- "description": "The instruments were checked by maintenance workers overnight",
- "epoch_date_submitted": 1559347200,
- "image_url": "https://timedotcom.files.wordpress.com/2018/10/lion-air-jet.jpg?quality=85",
- "inputs_outputs": null,
- "language": "en",
- "report_number": 383,
- "source_domain": "time.com",
- "submitters": ["Catherine Olsson"],
- "tags": [],
- "text": "(Bloomberg) — The Lion Air jet that crashed into the Java Sea off Indonesia earlier this week had experienced problems with the sensors used to calculate altitude and speed on its previous flight, an issue that could help explain why the plane dove into the water.\n\nPilots on the nearly new Boeing Co. 737 Max 8 reported the issue after flying from Denpasar to Jakarta the night before the accident, Lion Air spokesman Danang Mandala Prihantoro said Wednesday. The instruments were checked by maintenance workers overnight and the plane was cleared to fly, Prihantoro said.\n\nWhile it will be days or weeks before definitive information emerges in the crash shortly after takeoff with 189 people aboard, discrepancies in speed and altitude readings can cause confusion on the cockpit and have led to accidents in the past, including the 2009 crash of an Air France plane in the Atlantic Ocean.\n\nFlight-tracking data before the two-month old Lion Air jet crashed showed the plane was varying its altitude and speed, a possible indication that the pilots weren’t getting accurate information from the aircraft’s air-pressure sensors.\n\nThe Brief Newsletter Sign up to receive the top stories you need to know right now. View Sample Sign Up Now\n\nErroneous sensors could be an explanation for the flight track data, said John Cox, president of Safety Operating Systems and a former airline pilot. But Cox and others cautioned that it’s too soon to say what happened on the Lion Air flight and some of the flight data — such as speeds that weren’t extreme and none of the highly abrupt maneuvers that preceded the Air France jet’s loss of control — may suggest some other cause.\n\nIndonesia’s National Search and Rescue Agency has picked up signals from so-called pingers on the Flight JT610’s crash-proof flight recorders.\n\n“We have located the area where we strongly believe the plane’s black box is located. The large parts of the aircraft should be nearby,” National Military Chief Hadi Tjahjanto said.\n\nInspections of the 737 Max 8 aircraft operated by Lion Air and Garuda Indonesia since the accident found no technical issues, according to a statement by the country’s Transport Ministry. A review of maintenance documents found no additional issues were reported on the airspeed and altimeter system in the past 3 months.\n\nInvestigators from around the world, including a team from Boeing, are onsite poring over evidence. For now, the planemaker has told 737 Max operators that it doesn’t recommend they take any action at this time.\n\nEven with modern GPS tracking, planes need to calculate their precise speed through the air. To determine airspeed — which can vary substantially compared to the speed over the ground due to winds — aircraft rely on Pitot tubes which measure the air rushing into them.\n\nBy comparing that pressure against the ambient air pressure — which is obtained by what are known as static ports — aircraft can determine airspeed.\n\nIf either of the pressure sensors are blocked, it can cause erroneous readings. In the case of the Air France flight, investigators concluded that a high-altitude ice storm clogged the Pitot tubes.\n\nJetliners are equipped with three separate airspeed sensor systems as backups. If one goes bad, pilots are trained to check the other readings and disregard the one that’s incorrect.\n\nUnited Technologies Corp. is a supplier of the systems to the 737 Max, according to Airframer.com, a website that tracks suppliers of aircraft components. A company representative said she wasn’t immediately able to confirm whether its equipment was on the Lion Air plane.\n\nLion Air and investigators haven’t provided details about the issue on the previous flight Sunday night. Data provided by flight tracking company FlightRadar24 showed that the jet took off and reached an altitude of 5,550 feet (1,692 meters), then dropped to 4,625 feet, an unusual altitude loss at a time when aircraft normally climb steadily.\n\nThe plane then resumed its climb, but never exceeded 28,000 feet. Jetliners usually don’t fly below 30,000 feet because cruising at the lower altitudes is less fuel efficient. However, planes with partially malfunctioning altitude sensors aren’t allowed above 28,000 feet.\n\n“Every aircraft that we have will go through transit, pre-flight and post-flight checks,” said Lion Air’s Prihantoro. “We are conducting inspection and maintenance if needed on every aircraft.”\n\nAir France\n\nIndonesia’s National Transportation Safety Committee, which is leading the investigation, has interviewed pilots from the previous flight, Ony Soerjo Wibowo, an investigator, told a news conference on Tuesday.\n\nIn the Air France accident, investigators concluded that the Pitot tubes had become clogged with ice and all three of the plane’s speed indicators failed at different times, according to the final report of France’s Office of Investigation and Analysis.\n\nThe routine flight from Rio de Janeiro to Paris was interrupted with a cacophony of alarms and confusing informatio",
- "title": "Lion Air Jet Had Airspeed Sensor Failure on Previous Flight",
- "url": "http://time.com/5441004/lion-air-jet-sensor-failure/"
- },
- {
- "authors": ["Reuters Editorial"],
- "cloudinary_id": "reports/s4.reutersmedia.net/resources_v2/images/rcom-default.png",
- "date_published": "2018-11-07",
- "description": "Boeing Co said on Wednesday it had issued a bulletin to airlines reminding pilots how to handle circumstances where there was erroneous data from \"angle of attack\" sensors, in the wake of the Lion Air crash in Indonesia last week.",
- "epoch_date_submitted": 1559347200,
- "image_url": "https://s4.reutersmedia.net/resources_v2/images/rcom-default.png",
- "inputs_outputs": null,
- "language": "en",
- "report_number": 382,
- "source_domain": "reuters.com",
- "submitters": ["Catherine Olsson"],
- "tags": [],
- "text": "ZHUHAI, China, Nov 7 (Reuters) - Boeing Co said on Wednesday it had issued a bulletin to airlines reminding pilots how to handle circumstances where there was erroneous data from “angle of attack” sensors, in the wake of the Lion Air crash in Indonesia last week.\n\nThe manufacturer said in a statement that the Indonesian National Transportation Safety Committee had indicated that the Boeing 737 MAX jet involved in the crash, which killed all 189 people on board, had experienced erroneous input from one of the sensors.\n\nThe angle of attack probe measures the attitude of the plane relative to the air flow and provides crucial data for flight controls. An angle that is too high can throw the aircraft into an aerodynamic stall.\n\nThe Boeing statement did not say whether its advice was specific to the 737 MAX or included other aircraft models. (Reporting by Tim Hepher in Zhuhai, China; Writing by Jamie Freed; Editing by Muralikumar Anantharaman)",
- "title": "Boeing issues bulletin for pilots after Lion Air sensor data error",
- "url": "https://www.reuters.com/article/indonesia-crash-boeing/boeing-issues-bulletin-for-pilots-after-lion-air-sensor-data-error-idUSB9N1X603X"
- },
- {
- "authors": ["Stanley Widianto", "Ashley Halsey III", "Aaron Gregg"],
- "cloudinary_id": "reports/www.mercurynews.com/wp-content/uploads/2018/11/Indonesia-Lion-Air-Crash.jpg?w=1024&h=642",
- "date_published": "2018-11-29",
- "description": "JAKARTA, Indonesia – A malfunctioning sensor and an automated response from the aircraft’s software stymied pilots’ efforts to control a doomed Indonesian flight that went careening into the sea last month, according to a preliminary investigative report released Wednesday.\nThe report, which stops short of determining the cause of the crash or analyzing findings, chronicles the chaotic moments on the Lion Air flight before it crashed into the waters off the coast of Java last month, killing all 189 passengers and crew on board.\n\nIt details how sensors and other equipment were checked and fixed before the aircraft’s final flight, but not the “angle of attack” sensor. That measures where the nose is pointing and was showing erroneous readings throughout the short time the plane was airborne.",
- "epoch_date_submitted": 1559347200,
- "image_url": "https://www.mercurynews.com/wp-content/uploads/2018/11/Indonesia-Lion-Air-Crash.jpg?w=1024&h=642",
- "inputs_outputs": null,
- "language": "en",
- "report_number": 381,
- "source_domain": "mercurynews.com",
- "submitters": ["Catherine Olsson"],
- "tags": [],
- "text": "JAKARTA, Indonesia – A malfunctioning sensor and an automated response from the aircraft’s software stymied pilots’ efforts to control a doomed Indonesian flight that went careening into the sea last month, according to a preliminary investigative report released Wednesday.\n\nThe report, which stops short of determining the cause of the crash or analyzing findings, chronicles the chaotic moments on the Lion Air flight before it crashed into the waters off the coast of Java last month, killing all 189 passengers and crew on board.\n\nIt details how sensors and other equipment were checked and fixed before the aircraft’s final flight, but not the “angle of attack” sensor. That measures where the nose is pointing and was showing erroneous readings throughout the short time the plane was airborne.\n\nWith the sensor insisting the nose was too high, an automatic feature kicked in, sending the plane plummeting as the pilots wrestled to regain control. Unable to trust their readings, the pilots resorted to asking air traffic control about their speed and altitude.\n\nLion Air Flight 610 plunged into the Java Sea on Oct. 29 just after taking off from the Indonesian capital, Jakarta, killing the eight crew members and 181 passengers on board, including a child and two infants.\n\nThe crash appears to have been caused by a mix of brand new technology and cockpit confusion as the pilots fought to gain altitude after an early-morning takeoff from Jakarta. The flight crew – at an altitude of just 5,000 feet – had very little time to resolve the issue before the plane crashed into the sea at a reported 450 miles per hour.\n\nThough the report contains no conclusion assigning blame, its descriptions of automated systems overtaking the aircraft – leaving pilots both confused and powerless – poses questions for Boeing and Lion Air about whether the cockpit crew was prepared for this scenario. After the Lion Air crash, pilots in the United States accused Boeing of withholding safety information on its new 737 model.\n\nThe aircraft’s pilots asked to return to Jakarta just two minutes after takeoff, reporting a “flight-control problem” but not specifying what it was.\n\nBlack-box data released by Indonesian investigators showed that the pilots were pulling back on the control column, attempting to raise the plane’s nose, with almost 100 pounds of pressure before they crashed.\n\nThe Indonesian National Transportation Safety Committee, which produced the report, also said that Lion Air, a Jakarta-based low-cost airline, should improve its “safety culture.”\n\nNo engineer briefed the pilots of the crashed plane on the multiple problems the aircraft experienced on previous flights, and it was up to him to review the maintenance logs.\n\nThe report, however, contains no conclusion on who was at fault.\n\n“When it comes to faulting, I don’t know. Our job isn’t to find faults,” National Transportation Safety Committee investigator Nurcahyo Utomo said at a news conference Wednesday.\n\nThe aircraft was the most recent incarnation of the venerable Boeing 737, a plane that first flew in 1967 and has gone through multiple iterations before it emerged as the 737 Max.\n\nThe 737 Max was equipped with more-powerful engines that are mounted farther forward on the wing, requiring that additional software be added to the autopilot to provide more control.\n\nThat software, which has been described as several lines of coding, was identified in the Boeing manual as the maneuvering characteristics augmentation system, or MCAS.\n\nWhen the sensors transmitted faulty data to the cockpit of Flight 610, the new MCAS system sensed a stall – that point at which planes do not have enough airspeed to create lift – and sought to correct for it by repeatedly pointing the nose of the aircraft down.\n\nA feature in previous 737 models that allowed pilots to manually override an “electric trimming” process – which automatically budges the nose downward to prevent a stall, does not work in Boeing’s 737 Max 8 planes, Boeing explained in a Nov. 7 bulletin.\n\nThat same week, the Federal Aviation Administration issued an emergency notice to all airlines that fly the 737 Max, warning them that erroneous sensor inputs “could cause the flight crew to have difficulty controlling the airplane,” leading to “possible impact with terrain.”\n\nThe deviation probably was caused by what is called a “runaway stabilizer.” Stabilizers are essentially those small wings on either side at the tail end of the plane. They each have flaps – called elevators – that help control the elevation of the plane.\n\nIn case of a runaway stabilizer, pilots are instructed in the cockpit checklist to hold the control column firmly, disengaging the autopilot that, in this case, contained the MCAS program. Next, they are told, disengage the auto throttle and manually fly the plane.\n\n“This corner of the performance charts is called the ‘coffin corner,’ ” said Mary Schiavo, an aviati",
- "title": "Report: Lion Air pilots unable to correct for faulty sensor",
- "url": "https://www.mercurynews.com/2018/11/28/report-lion-air-pilots-unable-to-correct-faulty-sensor/"
- },
- {
- "authors": ["Iafrica Editors Curate"],
- "cloudinary_id": "reports/www.iafrica.com/wp-content/uploads/2018/11/Lion-air-e1541663580577.jpg",
- "date_published": "2018-11-08",
- "description": "A crucial sensor was replaced on a Lion Air jet the day before it plunged into the Java Sea, and that sensor replacement may have exacerbated other problems with the plane, Indonesian investigators said on Wednesday.\nThat sensor, known as the “angle of attack” sensor, keeps track of the angle of the aircraft nose to help prevent the plane from stalling and diving.",
- "epoch_date_submitted": 1559347200,
- "image_url": "https://www.iafrica.com/wp-content/uploads/2018/11/Lion-air-e1541663580577.jpg",
- "inputs_outputs": null,
- "language": "en",
- "report_number": 380,
- "source_domain": "iafrica.com",
- "submitters": ["Catherine Olsson"],
- "tags": [],
- "text": "A crucial sensor was replaced on a Lion Air jet the day before it plunged into the Java Sea, and that sensor replacement may have exacerbated other problems with the plane, Indonesian investigators said on Wednesday.\n\nThat sensor, known as the “angle of attack” sensor, keeps track of the angle of the aircraft nose to help prevent the plane from stalling and diving.\n\nEarlier this week, Indonesian officials hinted that airspeed indicators played a role in the deadly October 29 crash that killed all 189 people on board.\n\nThe jet’s airspeed indicator malfunctioned on its last four flights, and that problem was related to the sensor issue, said Soerjanto Tjahjono, chairperson of Indonesia’s National Transportation Safety Committee, on Wednesday.\n\nLion Air’s first two attempts to address the airspeed indicator problem didn’t work, and for the Boeing 737 MAX 8 plane’s second-to-last flight on October 28, the angle of attack sensors were replaced, Tjahjono said.\n\nOn the October 28 flight, from Bali to Jakarta, the pilot’s and co-pilot’s sensors disagreed. The 2-month-old plane went into a sudden dive minutes after takeoff, which the pilots were able to recover from. They decided to fly on to Jakarta at a lower-than-normal altitude.\n\nThe next day, during the deadly crash, the plane hit the water at very high speed just 13 minutes after takeoff from Jakarta. Its flight crew had requested permission to return to the airport several minutes after taking off.\n\n“The point is that after the AOA (sensor) is replaced, the problem is not solved but the problem might even increase. Is this fatal? NTSC (National Transportation Safety Committee) wants to explore this,” he said.\n\nEven if an angle of attack sensor on a jet is faulty, there’s generally a backup system in place for the critical component, and pilots are trained to handle a plane safely if those sensors fail, airline safety experts said.\n\nThere are audio signals and physical warnings that can alert the pilot to malfunctioning equipment or other dangers, said Todd Curtis, director of the Airsafe.com Foundation.\n\n“They should have been completely engaged in what was going on inside that cockpit, and any kind of warning that came up, they would have been wise to pay attention to it,” Curtis said.\n\nInvestigators are likely focused on how a single sensor’s failure resulted in a faulty command that didn’t take into account information from a second sensor, said John Cox, CEO of Safety Operating Systems.\n\n“We don’t know what the crew knew and didn’t know yet,” Cox said. “We will.”\n\nA new procedure release\n\nBoeing, which manufactured the Lion Air plane, issues safety-related bulletins, and had previously circulated instructions about what flight crews should do if sensors fail.\n\nIndonesia’s National Transportation Safety Committee said it had agreed with Boeing on procedures that the airplane manufacturer should distribute globally on how flight crews can deal with “angle of attack” sensor problems.\n\nBut a Boeing statement said a safety bulletin, sent to airlines on Tuesday, directs flight crews to existing guidelines on how they should respond to erroneous “angle of attack” data. It wasn’t immediately clear if it plans an update, though comments from Indonesian officials indicate they expect one.\n\nIndonesian investigators said their flight procedure recommendations to Boeing were based on how the flight crew responded to problems on the Bali-to-Jakarta flight.\n\n“The draft of what will be conveyed by Boeing this morning has been presented to us,” said air accident investigator Nurcahyo Utomo.\n\n“There are some things that we ask for explanation and some that we ask to be removed, and there has been an agreement between the NTSC and Boeing to release a new procedure to all Boeing 737 MAX users in the world,” he said.\n\nIndonesia’s search and rescue agency on Wednesday extended the search effort for a second time, saying it will continue until Sunday. Body parts are still being recovered and searchers continue to hunt for the cockpit voice recorder.\n\nThe Lion Air crash is the worst airline disaster in Indonesia since 1997, when 234 people died on a Garuda flight near Medan. In December 2014, an AirAsia flight from Surabaya to Singapore plunged into the sea, killing all 162 on board.\n\nLion Air is one of Indonesia’s youngest airlines but has grown rapidly, flying to dozens of domestic and international destinations. It has been expanding aggressively in Southeast Asia, a fast-growing region of more than 600 million people.\n\nNews24",
- "title": "Lion Air Plane Crash: Crucial 'Angle Of Attack' Sensor Replaced Before Crash",
- "url": "https://www.iafrica.com/lion-air-plane-crash-crucial-angle-of-attack-sensor-replaced-before-crash/"
- },
- {
- "authors": ["CGTN Live"],
- "cloudinary_id": "reports/news.cgtn.com/news/3d3d674e3163444e30457a6333566d54/img/0b16c22bf73a4262b045df07e92b840c/0b16c22bf73a4262b045df07e92b840c.jpg",
- "date_published": "2018-11-10",
- "description": "Indonesia's National Transportation Safety Committee said on Wednesday that a crucial sensor had been replaced on a Lion Air jet the day before it plunged into the Java Sea, killing all 189 people on board.\n\nThat sensor, known as the \"angle of attack\" (AOA) sensor, keeps track of the angle of the aircraft nose to help prevent the plane from stalling and diving.",
- "epoch_date_submitted": 1559347200,
- "image_url": "https://news.cgtn.com/news/3d3d674e3163444e30457a6333566d54/img/0b16c22bf73a4262b045df07e92b840c/0b16c22bf73a4262b045df07e92b840c.jpg",
- "inputs_outputs": null,
- "language": "en",
- "report_number": 379,
- "source_domain": "news.cgtn.com",
- "submitters": ["Catherine Olsson"],
- "tags": [],
- "text": "Indonesia's National Transportation Safety Committee said on Wednesday that a crucial sensor had been replaced on a Lion Air jet the day before it plunged into the Java Sea, killing all 189 people on board.\n\nThat sensor, known as the \"angle of attack\" (AOA) sensor, keeps track of the angle of the aircraft nose to help prevent the plane from stalling and diving.\n\nExperts say the sensor is a crucial parameter that helps the aircraft's computers understand whether its nose is too high relative to the current of air. If the sensor fails to send correct information, it can confuse both the aircraft's computer and its pilots, throwing an aircraft into an aerodynamic stall and making it fall.\n\n\nAn Indonesian National Transportation Safety Commission official examines a turbine engine from the crashed Lion Air flight JT610 in Jakarta, Indonesia, November 4, 2018. /VCG Photo\n\nEarlier this week, Indonesian officials hinted that airspeed indicators played a role in Lion Air crash. One of the black boxes showed that the airspeed indicator on the jet malfunctioned on its last four flights, and that problem was related to the sensor issue, said Soerjanto Tjahjono, chairman of Indonesia's National Transportation Safety Committee, on Wednesday.\n\nLion Air's first two attempts to address the airspeed indicator problem didn't work, and the AOA sensors were not replaced until the Boeing 737 MAX 8 plane's second-to-last flight on October 28, said Tjahjono.\n\nOn the October 28 flight, from Bali to Jakarta, the pilot's and copilot's sensors disagreed. The 2-month-old plane went into a sudden dive minutes after takeoff, which the pilots were able to recover from. They decided to fly to Jakarta at a lower-than-normal altitude.\n\n\nWorkers load up recovered debris and belongings believed to be from crashed Lion Air flight JT610. /VCG Photo\n\nThe next day, during the deadly crash, the plane hit the water at very high speed just 13 minutes after takeoff from Jakarta. Its flight crew had requested permission to return to the airport several minutes after taking off.\n\n\"The point is that after the AOA sensor is replaced, the problem is not solved but the problem might even increase. Is this fatal? NTSC (National Transportation Safety Committee) wants to explore this,\" he said.\n\nWarnings must not be ignored\n\nAirline safety experts said the aircraft usually have a backup system that responds to sensor faults, and pilots are trained to handle a plane safely if those sensors fail.\n\nThere are audio signals and physical warnings that can alert the pilot to malfunctioning equipment or other dangers, said Todd Curtis, director of the Airsafe.com Foundation.\n\n\"They should have been completely engaged in what was going on inside that cockpit, and any kind of warning that came up, they would have been wise to pay attention to it,\" Curtis said.\n\n\nRelatives of the victims of the Lion Air crash sprinkle flowers at the crash site. /AP Photo\n\nInvestigators are likely focused on how a single sensor's failure resulted in a faulty command that didn't take into account information from a second sensor, said John Cox, CEO of Safety Operating Systems.\n\n\"We don't know what the crew knew and didn't know yet,\" Cox said, adding \"We will.\"\n\nThe Boeing 737 MAX has three such AOA sensors, Reuters quoted an informed source.\n\nFAA says sensor problem detected in 246 Boeing 737 MAX airplanes worldwide\n\nThe US Federal Aviation Administration (FAA) on Wednesday issued an emergency airworthiness directive on 246 Boeing 737 Max airplanes worldwide, of which 45 airplanes in the US are operated by Southwest Air Co, United Airlines and American Airlines Group Inc.\n\nIt warned airlines that erroneously input from an AOA sensor could cause \"repeated nose-down trim commands of the horizontal stabilizer.\" If this condition is not addressed, it could lead the flight crew to have difficulty controlling the airplane.\n\n\nA Boeing 737 MAX parked outside the hangar. /VCG Photo\n\n\"We are issuing this airworthiness directive because we evaluated all the relevant information and determined the unsafe condition is likely to exist or develop in other products of the same type design,\" said the FAA.\n\nThe directive dictates that operators \"revise the airplane flight manual to give the flight crew horizontal stabilizer trim procedures to follow under some conditions.\"\n\nBoeing 737 Max jet is the latest version of the US aircraft maker, which has been in service for just over a year. And the Lion Air crash was the first involving the new jet.\n\n(With inputs from AP)",
- "title": "Indonesian officials: Problems with sensor found on crashed Lion Air jet",
- "url": "https://news.cgtn.com/news/3d3d674e3163444e30457a6333566d54/share_p.html"
- },
- {
- "authors": ["Alan Levin", "Julie Johnsson", "Harry Suhartono"],
- "cloudinary_id": "reports/www.insurancejournal.com/app/uploads/2018/11/Bloomberg-Graphic_Top-Boeing-Max-Customers_08Nov2018-580x517.png",
- "date_published": "2018-11-08",
- "description": "A Boeing Co. warning to 737 Max operators around the globe provides the first clues about how bad data from an airflow sensor might have contributed to",
- "epoch_date_submitted": 1559347200,
- "image_url": "https://www.insurancejournal.com/app/uploads/2018/11/Bloomberg-Graphic_Top-Boeing-Max-Customers_08Nov2018-580x517.png",
- "inputs_outputs": null,
- "language": "en",
- "report_number": 378,
- "source_domain": "insurancejournal.com",
- "submitters": ["Catherine Olsson"],
- "tags": [],
- "text": "A Boeing Co. warning to 737 Max operators around the globe provides the first clues about how bad data from an airflow sensor might have contributed to the deadly crash of an Indonesian airliner last week.\n\nThe bulletin and statements by Indonesian investigators suggest that the pilots on the Lion Air 737 Max 8 were battling the plane as its computers commanded a steep dive during its final moments of flight.\n\nBoeing cautioned that the so-called angle-of-attack sensor can provide false readings in limited circumstances — such as when a plane’s autopilot is switched off — that cause the 737 Max to pitch nose downward. The sensor malfunction can essentially trick the plane into pointing its nose down to gain the speed it thinks it needs to keep flying.\n\nThe Boeing directive doesn’t call for operators to conduct new inspections or take other action. It merely stressed that pilots should follow procedures in the flight manual when encountering erroneous data. Following the protocol should be routine for pilots, though may be more challenging in the heat of the moment when equipment is malfunctioning and alarms are sounding.\n\nAmerican aviation regulators followed by issuing an emergency order Wednesday requiring that airlines follow Boeing’s instructions and add information to pilot manuals showing how to diagnose the problem and respond. Carriers will have three days to update their manuals under the order, issued by the Federal Aviation Administration, according to an emailed statement.\n\nThe FAA said the problem “could cause the flight crew to have difficulty controlling the airplane, and lead to excessive nose-down attitude, significant altitude loss, and possible impact with terrain.”\n\nThe sensor on the Lion Air jet been replaced the day before after it failed on a previous trip, the Indonesia National Transportation Safety Committee said in a briefing Wednesday. The malfunction can cause the plane’s computers to erroneously detect a mid-flight stall in airflow, causing the aircraft to abruptly dive to regain the speed it needs to keep flying.\n\nOn a previous flight from Bali to Jakarta, the angle-of-attack sensor feeding the captain’s flight displays registered a 20-degree difference from the device on the copilot’s side of the cockpit, the committee said. Pilots on that flight were able to compensate.\n\nAn angle-of-attack sensor that had been removed before that previous flight has been brought to the investigators and will be examined in the U.S., the Indonesian officials said.\n\nIt’s still possible the FAA may order Boeing to redesign the equipment or software as investigators piece together details of the Oct. 29 crash, which killed 189 people. The agency said it “will take further appropriate actions depending on the results of the investigation.”\n\nFresh Questions\n\nThe new information about Lion Air Flight 610 raises multiple questions investigators will want to examine on the pilots’ actions, how flight crews were trained and whether the maintenance performed on the system was adequate, said Roger Cox, a former NTSB investigator.\n\n“I would definitely be looking at the man-machine interface and how pilots respond,” said Cox, a former airline pilot who flew earlier versions of the 737 and specialized at the NTSB in cockpit actions.\n\nOne of the puzzling things about the accident is that the plane was flying in clear skies during daylight, so pilots should have been able to handle the problems they faced with airspeed and erroneous sensors, Cox said. However, in rare instances, accidents have been caused by what investigators call a “startle factor.”\n\n“If you don’t take the appropriate action because you’re surprised, you can make a serious error,” he said.\n\nThe pilots union at Southwest Airlines Co., the biggest customer of the 737 Max, hasn’t received any reports from its members of problems with faulty sensor readings, said Jon Weaks, president of the Southwest Airlines Pilots Association.\n\nThe airline confirmed that it hasn’t experienced any of the sensor troubles and said its 26 Max remain operational and no schedule disruption is expected.\n\nUnited Technologies Corp. supplies the angle-of-attack sensors and indicator for the 737 Max, according to Airframers.net. The company didn’t respond to requests for comment. Honeywell International Inc. provides the air data inertial reference unit.\n\nThe Lion Air jetliner plunged into the Java Sea minutes after takeoff from Jakarta airport, nosing downward so suddenly that it may have hit speeds of 600 miles an hour before slamming into the water.\n\nMoments earlier, the pilots radioed a request to return to Jakarta, but never turned back toward the airport, according to Indonesia’s safety commission and flight-tracking data. The agency said the pilots were dealing with an erroneous airspeed indication.\n\nBoeing, which is headquartered in Chicago, said it is cooperating fully and providing technical assistance as the investigation continues. Boeing’s shares rose 1.5 percent to $372.02 at",
- "title": "New Clues to Lion Air 737 Max Crash Revealed in Boeing, FAA Warnings",
- "url": "https://www.insurancejournal.com/news/international/2018/11/08/507060.htm"
- },
- {
- "authors": ["Australian Broadcasting Corporation"],
- "cloudinary_id": "reports/www.abc.net.au/news/image/10464216-16x9-700x394.jpg",
- "date_published": "2018-11-08",
- "description": "A crucial sensor that is the subject of a Boeing safety bulletin was replaced on a Lion Air jet the day before it plunged into the Java Sea and possibly worsened other problems with the plane, Indonesian investigators say.",
- "epoch_date_submitted": 1559347200,
- "image_url": "https://www.abc.net.au/news/image/10464216-16x9-700x394.jpg",
- "inputs_outputs": null,
- "language": "en",
- "report_number": 377,
- "source_domain": "abc.net.au",
- "submitters": ["Catherine Olsson"],
- "tags": [],
- "text": "Lion Air plane had angle of attack sensor replaced prior to crash; Boeing issues safety reminder\n\nUpdated\n\nA crucial sensor that is the subject of a Boeing safety bulletin was replaced on a Lion Air jet the day before it plunged into the Java Sea and possibly worsened other problems with the plane, Indonesian investigators have revealed.\n\nKey points: Boeing issues safety bulletin reminding pilots how to handle erroneous data from key sensor\n\nThe angle of attack sensors were replaced on the plane's second-to-last flight\n\nChairman of Indonesia's NTSC says airspeed indicator malfunctions were intertwined with the sensor issue\n\nIndonesia's National Transportation Safety Committee (NTSC) said it had agreed with Boeing on procedures that the airplane manufacturer should distribute globally on how flight crews can deal with \"angle of attack\" sensor problems following the October 29 crash that killed all 189 people on board.\n\nExperts say the angle of attack is a crucial parameter that helps the aircraft's computers understand whether its nose is too high relative to the current of air.\n\nThe sensor keeps track of the angle of the aircraft nose relative to oncoming air to prevent the plane from stalling and diving.\n\nBut a Boeing statement said a safety bulletin, sent to airlines this week, directs flight crews to existing guidelines on how they should respond to erroneous \"angle of attack\" data.\n\nIt was not immediately clear whether Boeing was planning to update the guidelines, though comments from Indonesian officials indicate they expect so.\n\nAirspeed indicator malfunction and sensor issue linked\n\nTransport safety committee chairman Soerjanto Tjahjono said airspeed indicator malfunctions on the jet's last four flights, which were revealed by an analysis of the flight data recorder, were intertwined with the sensor issue.\n\n\"The point is that after the AOA [sensor] is replaced the problem is not solved, but the problem might even increase. Is this fatal? NTSC wants to explore this,\" he said.\n\nLion Air's first two attempts to address the airspeed indicator problem did not work, and for the Boeing 737 MAX 8 plane's second-to-last flight on October 28, the angle of attack sensors were replaced, Mr Tjahjono said.\n\nOn that flight, from Bali to Jakarta, the pilot's and co-pilot's sensors disagreed.\n\nThe two-month-old plane went into a sudden dive minutes after take-off, which the pilots were able to recover from. They decided to fly on to Jakarta at a lower-than-normal altitude.\n\nIndonesian investigators said their flight procedure recommendations to Boeing were based on how the flight crew responded to problems on the Bali to Jakarta flight.\n\n\"The draft of what will be conveyed by Boeing this morning has been presented to us,\" air accident investigator Nurcahyo Utomo said.\n\n\"There are some things that we ask for explanation and some that we ask to be removed, and there has been an agreement between NTSC and Boeing to release a new procedure to all Boeing 737 MAX users in the world.\"\n\nIndonesia's search and rescue agency extended the search effort on Wednesday for a second time, saying it would continue until Sunday.\n\nBody parts are still being recovered and searchers continue to hunt for the cockpit voice recorder.\n\nThe plane hit the water at very high speed just 13 minutes after take-off from Jakarta. Its flight crew had requested permission to return to the airport several minutes after taking off.\n\nThe Lion Air crash is the worst airline disaster in Indonesia since 1997, when 234 people died on a Garuda flight near Medan.\n\nIn December 2014, an AirAsia flight from Surabaya to Singapore plunged into the sea, killing all 162 on board.\n\nLion Air is one of Indonesia's youngest airlines but has grown rapidly, flying to dozens of domestic and international destinations. It has been expanding aggressively in South-East Asia, a fast-growing region of more than 600 million people.\n\nAP/Reuters\n\nTopics: disasters-and-accidents, air-and-space, indonesia, asia\n\nFirst posted",
- "title": "Lion Air plane had angle of attack sensor replaced prior to crash; Boeing issues safety reminder",
- "url": "https://www.abc.net.au/news/2018-11-08/lion-air-flight-had-crucial-sensor-replaced-prior-to-fatal-crash/10475468"
- },
- {
- "authors": ["Grant Bradley"],
- "cloudinary_id": "reports/www.nzherald.co.nz/resizer/yF7-HI8O2KRMMtki3GBhsuDKm-w=/1200x0/smart/filters:quality(70)/arc-anglerfish-syd-prod-nzme.s3.amazonaws.com/public/TJU32NCPOJFSVJO4SLPNBPNMQ4.jpg",
- "date_published": "2018-10-30",
- "description": "Faulty sensing equipment on planes has been linked to several crashes",
- "epoch_date_submitted": 1559347200,
- "image_url": "https://www.nzherald.co.nz/resizer/yF7-HI8O2KRMMtki3GBhsuDKm-w=/1200x0/smart/filters:quality(70)/arc-anglerfish-syd-prod-nzme.s3.amazonaws.com/public/TJU32NCPOJFSVJO4SLPNBPNMQ4.jpg",
- "inputs_outputs": null,
- "language": "en",
- "report_number": 376,
- "source_domain": "nzherald.co.nz",
- "submitters": ["Catherine Olsson"],
- "tags": [],
- "text": "Possible faulty equipment that led to the crash of Lion Air Flight 610 was the same sort of sensing gear that contributed to the crash of an Air New Zealand A320 off Perpignan 10 years ago.\n\nA failure of air flow monitoring pitot tubes on board the Lion Air Boeing 737 has been cited as a possible contributor to yesterday's crash off Indonesia which killed 189 people.\n\nA report in the New York Times says the erratic flight path before the high speed plunge indicated a problem with the pressure sensitive instruments near the nose of the plane.\n\n\"The erratic flight path makes us suspect a problem with the pitot-static system,\" said Gerry Soejatman, an Indonesian aviation expert.\n\nData from the flight indicated an ''erratic climb and ground speed problem\", leading him to suspect a problem with the instruments had also been an issue then.\n\nAdvertisement\n\nSeveral plane crashes have been blamed on blockages or other problems with pitot tubes which resulted in erroneous speed or altitude readings, the Times reported.\n\nIn November 2008 an Airbus A320 that had been leased by Air New Zealand to a European carrier crashed, killing two German pilots and five New Zealanders on board.\n\nThe plane had been on a routine test flight, prior to being handed back to Air New Zealand by XL Airways Germany, a charter company that had been leasing it for the previous two years.\n\nAn inquiry found that the crash was triggered by a test that was conducted at low speed and low altitude, throwing the plane into a stall from which it failed to recover.\n\nThe ill-fated manoeuvre arose especially from makeshift preparations for the exercise and poor coordination between the German and New Zealand crew on board, the Bureau d'Enquetes et d'Analyses (BEA) said after a 22-month inquiry.\n\nBut compounding their mistake was a malfunction in two out of three external probes that feed the A320's complex computerised flight system with vital data about air flow.\n\nThe plane had been repainted and rinsed by a French maintenance company three days before the test, the investigation found. Water entered these so-called angle of attack (AOA) sensors, causing them to freeze and thus skewing the avionics.\n\nA year later, in 2009, a Rio-to-Paris Air France flight disappeared over the Atlantic with the loss of all 228 people on board. An inquiry found that the plane flew into a thunderstorm, which froze the crucial speed sensors, resulting in the pilots flying blind and leading to a mid-air stall.\n\nIndonesian actress Conchita Caroline had concerns about the doomed Lion Air plane after flying on it the day before. Photo / Supplied\n\nToday a passenger who was on the ill-fated Lion Air aircraft a day before the crash outlined concerns about the plane.\n\nIndonesian actress and TV presenter Conchita Caroline said her flight from Bali to Jakarta struck problems.\n\nAs the plane readied for takeoff, an engine seemed to die several times, the air conditioning was faulty and the floor beneath her felt hot to touch.\n\nLion Air's chief executive Edward Surat said yesterday there was a report of a technical issue from that fight but that had been resolved ''according to procedure\" before Flight 610 took off.\n\nFollowing the crash Boeing's stock price fell by almost 7 per cent. Lion Air is an important customer for its 737s.",
- "title": "Possible fault in Lion Air plane similar to a cause of Air New Zealand Airbus A320 France crash",
- "url": "https://www.nzherald.co.nz/business/news/article.cfm?c_id=3&objectid=12151363"
- },
- {
- "authors": ["USA Today Editorial Board"],
- "cloudinary_id": "reports/www.gannett-cdn.com/presto/2018/12/04/USAT/dfc4ad2e-d645-4d86-94ad-02c1f63b6f74-Boeing.ourview.JPG?crop=1161,657,x0,y0&width=3200&height=1680&fit=bounds",
- "date_published": "2018-12-05",
- "description": "Why did the 737 Max plunge into the sea in Indonesia, killing all 189 on board? Pilots must know about every change on the jets they fly: Our view",
- "epoch_date_submitted": 1559347200,
- "image_url": "https://www.gannett-cdn.com/presto/2018/12/04/USAT/dfc4ad2e-d645-4d86-94ad-02c1f63b6f74-Boeing.ourview.JPG?crop=1161,657,x0,y0&width=3200&height=1680&fit=bounds",
- "inputs_outputs": null,
- "language": "en",
- "report_number": 375,
- "source_domain": "usatoday.com",
- "submitters": ["Catherine Olsson"],
- "tags": [],
- "text": "Why did the 737 Max plunge into the sea in Indonesia, killing all 189 on board? Pilots must know about every change on the jets they fly: Our view\n\nIndonesians recover a plastic box containing the data recorder of Lion Air Flight 610 on Nov. 1, 2018. (Photo: Pradita Utama, epa-EFE)\n\n“Know your airplane, fly your airplane” is a bedrock principle for pilots.\n\nBut pilots can’t know their airplane if the maker fails to disclose a new emergency feature in its flight operations manual, as happened with the Boeing 737 Max.\n\nOn Oct. 29, the feature, known by the acronym MCAS, relentlessly pushed down the nose of Indonesia’s Lion Air Flight 610 more than 20 times before the jet plunged into the Java Sea, killing all 189 on board.\n\nPilots struggled against the new system, which is designed to prevent a stall by automatically pushing the nose down. Tragically, on Flight 610 it was apparently triggered by a sensor delivering a false reading. There was no stall.\n\nThe 737 Max, Boeing's newest version of the workhorse 737 series, is flown by airlines around the world, including American, Southwest and United. Hundreds more are on order. Since the Lion Air crash, American and Southwest pilots have complained about Boeing’s failure to communicate.\n\nBOEING: Safety will always be a core value\n\n“The key to any emergency is identifying the system that is betraying you or failed,” says Dennis Tajer, a veteran 737 captain and spokesman for the Allied Pilots Association, which represents pilots at American.\n\n“We did not know about the system\" until after the Lion Air crash. It was not on previous versions of the 737. Jon Weaks, a Southwest captain and president of Southwest Airlines Pilots Association, put it simply: \"We should have known the system existed.\"\n\nWith all the safety built into today’s jetliners, it typically takes a cascading series of events to bring down a plane. Based on a preliminary report released last week by Indonesian authorities and questions raised by safety experts, the final flight of Lion Air 610 is a textbook example of multiple failures.\n\nInvestigators will need to get to the bottom of several issues involving:\n\n►Boeing. A potential design or manufacturing flaw might have allowed a single sensor, with an erroneous reading, to trigger MCAS — which stands for Maneuvering Characteristics Augmentation System — and the nose-down movements. Two sensors on the jet were measuring what’s known as angle of attack, “one giving you an accurate reading, one inaccurate,” says former National Transportation Safety Board Chair Mark Rosenker. “The problem was the inaccurate one appeared to take over.” He questioned why a single malfunctioning sensor could create a situation potentially leading to a catastrophic failure. The answer might be that it shouldn't.\n\nWithin days of the crash, Boeing issued a bulletin telling 737 Max pilots to deal with erroneous sensor data and nose-down movements by turning off the automatic system, in accordance with “existing procedures.” A Federal Aviation Administration directive followed, warning that erroneous readings could cause “difficulty controlling the airplane” and “possible impact with terrain.”\n\n►Lion Air. The day before the crash, Lion Air maintenance replaced the sensor on the same plane. But pilots got erroneous readings on that flight and experienced a nearly identical problem to the one on Flight 610. Was the sensor installed properly by company crews? Based on the serious problems on Oct. 28, should the plane have been grounded before the fatal flight?\n\n►Flight 610 pilots. On the Oct. 28 flight, pilots initially reacted to the nose-down movements the same way as pilots on Flight 610 the next day. When that didn’t work, they used two switches to cut off the system — a standard emergency procedure. It is baffling that the pilots on Flight 610 failed to do the same thing. Perhaps faced by an inaccurate reading from a faulty sensor and a system they likely knew nothing about, they were confused in the emergency. Perhaps they were not well-trained. For now, that remains a mystery.\n\nThe causes of the crash will be determined by Indonesian authorities and the U.S. National Transportation Safety Board, which has an interest in keeping American fleets safe.\n\nBoeing issued a statement asserting, “We are confident in the safety of the 737 MAX.\" A company spokesman added that the “function performed by MCAS is referenced” in the flight manual, and “existing procedures” to deal with it are documented. The chairman of the United Airlines branch of the Airline Pilots Association echoed that statement, breaking with two other unions and his own union leadership.\n\nBackup systems, what the industry calls redundancy, are designed to keep planes in the air if one component fails. The ultimate safety backups are the pilots — who deserve to know about every change on the aircraft they fly.\n\nUSA TODAY's editorial opinions are decided by its Editorial Board, separate from the news staff. Most editorials are coupl",
- "title": "What we've got here is a failure to communicate",
- "url": "https://www.usatoday.com/story/opinion/2018/12/04/lion-air-what-weve-got-here-failure-communicate-editorials-debates/2192044002/"
- },
- {
- "authors": ["Dominic Gates"],
- "cloudinary_id": "reports/static.seattletimes.com/wp-content/uploads/2018/11/11272018_Black-box-data_121412-1200x630.jpg",
- "date_published": "2018-11-27",
- "description": "Data from the fatal Oct. 29 flight that killed 189 people, and from the prior day's flight of the same jet, raises questions about three factors that seem to have...",
- "epoch_date_submitted": 1559347200,
- "image_url": "https://static.seattletimes.com/wp-content/uploads/2018/11/11272018_Black-box-data_121412-1200x630.jpg",
- "inputs_outputs": null,
- "language": "en",
- "report_number": 374,
- "source_domain": "seattletimes.com",
- "submitters": ["Catherine Olsson"],
- "tags": [],
- "text": "Data from the fatal Oct. 29 flight that killed 189 people, and from the prior day's flight of the same jet, raises questions about three factors that seem to have contributed to the crash.\n\nA key instrument reading on Lion Air flight JT610 was faulty even as the pilots taxied out for takeoff. As soon as the Boeing 737 MAX was airborne, the captain’s control column began to shake as a stall warning.\n\nAnd from the moment they retracted the wing flaps at about 3,000 feet, the two pilots struggled — in a 10-minute tug of war — against a new anti-stall flight-control system that relentlessly pushed the jet’s nose down 26 times before they lost control.\n\nThough the pilots responded to each nose-down movement by pulling the nose up again, mysteriously they didn’t do what the pilots on the previous day’s flight had done: simply switched off that flight-control system.\n\nThe detail is revealed in the data from the so-called “black box” flight recorder (it’s actually orange in color) from the fatal Oct. 29 flight that killed 189 people and the prior day’s flight of the same jet, presented last Thursday to the Indonesian Parliament by the country’s National Transportation Safety Committee (NTSC).\n\nThis data is the major basis for the preliminary crash-investigation report that was made public Wednesday in Indonesia, Tuesday evening in Seattle.\n\nThe flight-recorder data is presented as a series of line graphs that give a clear picture of what was going on with the aircraft systems as the plane taxied on the ground, took off and flew for just 11 minutes.\n\nThe data points to three factors that seem to have contributed to the disaster:\n\nA potential design flaw in Boeing’s new anti-stall addition to the MAX’s flight-control system and a lack of communication to airlines about the system.\n\nThe baffling failure of the Lion Air pilots to recognize what was happening and execute a standard procedure to shut off the faulty system.\n\nAnd a Lion Air maintenance shortfall that allowed the plane to fly repeatedly without fixing the key sensor that was feeding false information to the flight computer on previous flights.\n\nAnti-stall system triggered\n\nPeter Lemme, a former Boeing flight-controls engineer who is now an avionics and satellite-communications consultant, analyzed the graphs minute by minute.\n\nHe said the data shows Boeing’s new system — called MCAS (Maneuvering Characteristics Augmentation System) — “was triggered persistently” as soon as the wing flaps retracted.\n\nThe data confirms that a sensor that measures the plane’s angle of attack, the angle between the wings and the air flow, was feeding a faulty reading to the flight computer. The two angle-of-attack sensors on either side of the jet’s nose differed by about 20 degrees in their measurements even during the ground taxi phase when the plane’s pitch was level. One of those readings was clearly completely wrong.\n\nOn any given flight, the flight computer takes data from only one of the angle-of-attack (AOA) sensors, apparently for simplicity of design. In this case, the computer interpreted the AOA reading as much too high an angle, suggesting an imminent stall that required MCAS to kick in and save the airplane.\n\nWhen the MCAS system pushed the nose down, the captain repeatedly pulled it back up, probably by using thumb switches on the control column. But each time, the MCAS system, as designed, kicked in to swivel the horizontal tail and push the nose back down again.\n\nThe data shows that after this cycle repeated 21 times, the captain ceded control to the first officer and MCAS then pushed the nose down twice more, this time without a pilot response.\n\nAfter a few more cycles of this struggle, with the horizontal tail now close to the limit of its movement, the captain resumed control and pulled back on the control column with high force.\n\nIt was too late. The plane dived into the sea at more than 500 miles per hour.\n\nPrevious crew handled similar situation\n\nRemarkably, the corresponding black-box-data charts from the same plane’s flight the previous day show that the pilots on that earlier flight encountered more or less exactly the same situation.\n\nAgain the AOA sensors were out of sync from the start. Again, the captain’s control column began shaking, a stall warning, at the moment of takeoff. Again, MCAS kicked in to push the nose down as soon as the flaps retracted.\n\nInitially that crew reacted like the pilots of JT610, but after a dozen cycles of the nose going down and pushing it back up, they turned off MCAS using two standard cutoff switches on the control pedestal “within minutes of experiencing the automatic nose down” movements, according to the NTSC preliminary investigation report.\n\nThere were no further uncommanded nose-down movements. For the rest of the flight, they controlled the jet’s pitch manually and everything was normal. The jet continued to its destination and landed safely.\n\nBecause the cockpit voice recorder has not yet been recovered from the sea bed, it’s a myste",
- "title": "Pilots struggled against Boeing’s 737 MAX control system on doomed Lion Air flight",
- "url": "https://www.seattletimes.com/business/boeing-aerospace/black-box-data-reveals-lion-air-pilots-struggle-against-boeings-737-max-flight-control-system/"
- },
- {
- "authors": ["Bloomberg"],
- "cloudinary_id": "reports/www.businesstimes.com.sg/sites/default/files/styles/article_img_retina/public/image/2018/11/28/gn-2711-lionair_0.jpg?itok=4QuG887p",
- "date_published": "2018-11-28",
- "description": "[JAKARTA] A malfunctioning sensor at the centre of the investigation into the Oct 29 crash of a Lion Air jetliner into the Java Sea wasn't repaired before the fatal flight even though it had failed on the plane's previous trip, according to a preliminary investigative report. . Read more at The Business Times.",
- "epoch_date_submitted": 1559347200,
- "image_url": "https://www.businesstimes.com.sg/sites/default/files/styles/article_img_retina/public/image/2018/11/28/gn-2711-lionair_0.jpg?itok=4QuG887p",
- "inputs_outputs": null,
- "language": "en",
- "report_number": 373,
- "source_domain": "businesstimes.com.sg",
- "submitters": ["Catherine Olsson"],
- "tags": [],
- "text": "A malfunctioning sensor at the centre of the investigation into the Oct 29 crash of a Lion Air jetliner into the Java Sea wasn't repaired before the fatal flight even though it had failed on the plane's previous trip, according to a preliminary investigative report.\n\n[JAKARTA] A malfunctioning sensor at the centre of the investigation into the Oct 29 crash of a Lion Air jetliner into the Java Sea wasn't repaired before the fatal flight even though it had failed on the plane's previous trip, according to a preliminary investigative report.\n\nA mechanic worked on other sensors and equipment during a night shift before the early morning departure, but not on the so-called angle-of-attack vane, according to Indonesia's National Transportation Safety Committee. Portions of the committee's report were viewed by Bloomberg News before a scheduled release on Wednesday.\n\nThe report doesn't offer a cause for the accident but provides the most detailed look so far into the chaotic minutes before the crash and into the steps that were taken to address malfunctions that occurred on the plane the previous night. On both flights, pilots reported that they had difficulty figuring out basic information such as speed and altitude.\n\nThe pilots on Flight 610, which plunged into the Java Sea more than 11 minutes after it took off from Jakarta, appeared not to understand what was happening to them as they radioed air traffic controllers asking for their altitude and speed. They said they had an unspecified \"flight control problem,\" according to the report. Lion Air spokesman Danang Prihantoro didn't answer calls seeking comments when tried on his mobile phone on Wednesday.\n\nsentifi.com Market voices on:\n\nEveryone aboard died in the crash, although there are conflicting counts for the death toll. A weight and balance calculation lists 188 people - two pilots, five flight attendants and 181 passengers. Another listing known as a voyage report lists an extra flight attendant for a total of 189 people.\n\nThe Boeing Co 737 Max 8's angle-of-attack sensor, which measures how high or low the plane's nose was pointed relative to the oncoming air, had malfunctioned on the previous flight as well as in the minutes before the crash, according to the report. The sensor erroneously concluded the nose was pointed too high and the aircraft was in danger of losing lift, prompting a stall warning in the cockpit and triggering safety software that attempted to put them into a dive.\n\nThe two sets of pilots reacted differently to the multiple errors messages and malfunctions. On the previous flight, the pilots were able to shut off the motor that was trying to push down the nose relatively soon after taking off.\n\nFor reasons that haven't been explained, the pilots on Flight 610 didn't take that step - which is part of a long-standing emergency procedure. The plane's crash-proof cockpit recorder hasn't been recovered, so investigators don't have much insight into what they were thinking as they responded to the emergency.\n\nBoeing declined to comment on the preliminary report. It is working as a technical adviser to the Indonesian investigation.\n\n\"We will analyze any additional information as it becomes available,\" the aircraft maker said in a statement on Tuesday. \"We are taking every measure to fully understand all aspects of this accident, working closely with the investigation team and the relevant government authorities.\"\n\nEarlier this month the manufacturer issued a bulletin to operators of the Max reminding them that such a cascade of failures could be addressed by an existing emergency procedure. The manufacturer has said it's confident in the safety of the latest version of its 737 model.\n\nEARLIER FLIGHT\n\nOn the Oct 28 flight that landed safely in Jakarta, the captain told investigators that he scanned cockpit instruments and determined that the copilot's readings matched a third standby system and were accurate. He turned over control of the plane to the copilot.\n\nBy contrast, the captain on the flight that crashed radioed a controller about a minute before the plane disappeared from radar to say that all of the plane's altitude gauges were different and they couldn't determine how high they were.\n\nInvestigators will focus on how the airline performed maintenance on the plane.\n\nThe captain on the Oct 28 flight reported problems with speed and altitude readings and with a system called Feel Differential Pressure, which controls the force pilots need to push or pull the control column that raises and lowers the nose, according to the report. There was no indication that the angle of attack sensor was malfunctioning.\n\nAn angle of attack sensor had been replaced and tested just before the Oct 28 flight. According to flight data from the plane, the sensor on the left was reading about 20 degrees differently from the one on the right.\n\nOn both flights, a device known as a stick shaker - a warning that the wings are about to lose lift, which vibrates the control column",
- "title": "Faulty Lion Air sensor wasn’t fixed before crash, preliminary report finds",
- "url": "https://www.businesstimes.com.sg/transport/faulty-lion-air-sensor-wasn%E2%80%99t-fixed-before-crash-preliminary-report-finds"
- },
- {
- "authors": ["James Glanz", "Muktita Suhartono", "Hannah Beech"],
- "cloudinary_id": "reports/static01.nyt.com/images/2018/11/28/world/28lionair1-promo/28lionair1-promo-facebookJumbo-v2.jpg",
- "date_published": "2018-11-28",
- "description": "Information from Lion Air Flight 610, which crashed off Indonesia last month, supports the theory that a new Boeing anti-stall system played a role.",
- "epoch_date_submitted": 1559347200,
- "image_url": "https://static01.nyt.com/images/2018/11/28/world/28lionair1-promo/28lionair1-promo-facebookJumbo-v2.jpg",
- "inputs_outputs": null,
- "language": "en",
- "report_number": 372,
- "source_domain": "nytimes.com",
- "submitters": ["Catherine Olsson"],
- "tags": [],
- "text": "Investigators have yet to recover the cockpit voice recorder, which could provide further insight into the steps taken by the pilots and whether they followed the correct procedures.\n\nDespite Boeing’s insistence that the proper procedures were in the handbook, also called the emergency checklist, pilots have said since the accident that Boeing had not been clear about one potentially vital difference between the system on the new 737s and the older models. In the older versions, pilots could help address the problem of the nose being forced down improperly — a situation known as “runaway stabilizer trim” — by pulling back on the control column in front of them, the pilots say.\n\nIn the latest 737 generation, called the Max, that measure does not work, they said, citing information they have received since the crash. The pilots on Lion Air Flight 610 appear to have forcefully pulled back on their control columns to no avail, before the final dive, according to the information from the flight data recorder.\n\nCapt. Dennis Tajer, spokesman for the American Airlines pilot union and a 737 pilot, said he could not comment on any aspect of the investigation. But, he said, “in the previous model of the 737, pulling back on the control column, Boeing says will stop a stabilizer runaway.”\n\nInformation provided to American Airlines from Boeing since the crash, Captain Tajer said, “specifically says that pulling back on the control column in the Max will not stop the runaway if M.C.A.S. is triggered. That is an important difference to know.”\n\nBoeing said in its statement on Tuesday that the existing procedures covered the latest 737 model.\n\nBulletins from Boeing and the Federal Aviation Administration of the United States since the crash indicate that pilots could overcome an incorrectly activated M.C.A.S. with a series of steps. First, they would have had to activate switches on the outside of the control columns in front of both the pilot and co-pilot. Those switches are for electrically controlling the trim — the angle of the stabilizers on the plane’s tail. The pilot of Flight 610 appears to have done that repeatedly to bring the nose up, but the M.C.A.S. reactivated each time, as it was designed to do, forcing the nose back down, and the pilot had to repeat the process again and again.",
- "title": "In Indonesia Lion Air Crash, Black Box Data Reveal Pilots’ Struggle to Regain Control",
- "url": "https://www.nytimes.com/2018/11/27/world/asia/indonesia-lion-air-crash-.html"
- }
- ],
- "title": "Crashes with Maneuvering Characteristics Augmentation System (MCAS)",
- "tsne": {
- "x": 0.11154986524731458,
- "y": 0.6203396517870035
- }
- }
- }
-}
diff --git a/site/gatsby-site/cypress/fixtures/incidents/fullIncident50.json b/site/gatsby-site/cypress/fixtures/incidents/fullIncident50.json
deleted file mode 100644
index 0587fba0fc..0000000000
--- a/site/gatsby-site/cypress/fixtures/incidents/fullIncident50.json
+++ /dev/null
@@ -1,958 +0,0 @@
-{
- "data": {
- "incident": {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "the-dao",
- "name": "The DAO"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "the-dao",
- "name": "The DAO"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "dao-token-holders",
- "name": "DAO Token Holders"
- }
- ],
- "__typename": "Incident",
- "date": "2016-06-17",
- "description": "On June 18, 2016, an attacker successfully exploited a vulnerability in The Decentralized Autonomous Organization (The DAO) on the Ethereum blockchain to steal 3.7M Ether valued at $70M.",
- "editor_dissimilar_incidents": [],
- "editor_notes": null,
- "editor_similar_incidents": [],
- "editors": [
- {
- "__typename": "User",
- "first_name": "Sean",
- "last_name": "McGregor",
- "userId": "619b47ea5eed5334edfa3bbc"
- }
- ],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [
- 905,
- 903,
- 902,
- 901,
- 900,
- 899,
- 898,
- 897,
- 896,
- 893,
- 892,
- 889,
- 888,
- 887,
- 886,
- 885,
- 884,
- 883,
- 881,
- 880,
- 879,
- 878,
- 877,
- 876
- ],
- "vector": [
- -0.0661667212843895,
- 0.09495183080434799,
- 0.010774415917694569,
- -0.0843186303973198,
- 0.07742074877023697,
- 0.002700377954170108,
- -0.0008173985406756401,
- 0.057413578033447266,
- 0.09605775028467178,
- -0.1488141417503357,
- 0.004636809695512056,
- 0.05968795344233513,
- 0.021845035254955292,
- -0.0762571468949318,
- 0.04533643648028374,
- -0.09069175273180008,
- -0.15813405811786652,
- -0.022130673751235008,
- -0.042528972029685974,
- -0.10905041545629501,
- -0.07701637595891953,
- 0.012940806336700916,
- 0.018910806626081467,
- 0.11774744838476181,
- -0.04104795679450035,
- 0.04697092995047569,
- 0.12957395613193512,
- 0.12819425761699677,
- -0.058150216937065125,
- 0.06893474608659744,
- -0.018372666090726852,
- -0.09186699986457825,
- 0.15362109243869781,
- 0.028102269396185875,
- 0.025071216747164726,
- 0.09713421016931534,
- 0.01256798580288887,
- -0.01616877131164074,
- -0.041066594421863556,
- -0.017975831404328346,
- 0.044571682810783386,
- 0.2357323318719864,
- -0.03317007049918175,
- -0.027484485879540443,
- 0.05428558960556984,
- -0.04763684794306755,
- -1.0566697710601147e-05,
- 0.04871894046664238,
- 0.0070588416419923306,
- 0.004973179195076227,
- -0.026652388274669647,
- -0.008015204221010208,
- -0.07091150432825089,
- 0.033345308154821396,
- -0.09143518656492233,
- 0.061592280864715576,
- 0.03615380451083183,
- 0.03313060477375984,
- 0.07367609441280365,
- -0.04913125932216644,
- -0.01810459792613983,
- -0.20834849774837494,
- -0.05211314558982849,
- -0.03780398145318031,
- 0.08887007087469101,
- -0.08282432705163956,
- -0.02316044457256794,
- 0.03807034716010094,
- 0.003166689770296216,
- 0.048870425671339035,
- 0.053769540041685104,
- -0.029292000457644463,
- -0.002758365822955966,
- 0.035534992814064026,
- 0.01716659404337406,
- -0.009857158176600933,
- -0.01820841059088707,
- 0.1924063116312027,
- -0.10551274567842484,
- 0.015695957466959953,
- 0.08622416853904724,
- -0.09239751845598221,
- 0.3837597668170929,
- -3.496369390632026e-05,
- -0.06069179251790047,
- -0.02606315352022648,
- 0.12018977850675583,
- 0.0050528384745121,
- 0.03152324631810188,
- 0.0403270348906517,
- -0.025558656081557274,
- 0.04960830882191658,
- -0.05975503847002983,
- -0.03103153593838215,
- 0.05772930011153221,
- 0.0396592952311039,
- -0.0018726816633716226,
- 0.0107951695099473,
- -0.025373486801981926,
- -0.028895430266857147,
- 0.024420717731118202,
- -0.07865981012582779,
- 0.10167545080184937,
- 0.08524877578020096,
- -0.05940742790699005,
- -0.006057963240891695,
- 0.06243671104311943,
- -0.056733157485723495,
- 0.06139994040131569,
- -0.07574266940355301,
- 0.0216194037348032,
- -0.007321906741708517,
- 0.05265502631664276,
- -0.025458944961428642,
- 0.02595309354364872,
- -0.015414812602102757,
- 0.02327638864517212,
- 0.03251353278756142,
- 0.06957828998565674,
- 0.049125488847494125,
- -0.023909522220492363,
- 0.057829465717077255,
- 0.036426953971385956,
- -0.07245929539203644,
- 0.007933235727250576,
- -0.059332478791475296,
- -0.0435311533510685,
- -0.047337573021650314,
- -0.04053480550646782,
- 0.03915426507592201,
- -0.06534258276224136,
- -0.2260957807302475,
- 0.015165231190621853,
- 0.060068678110837936,
- -0.0034208225551992655,
- -0.026531696319580078,
- 0.04104552045464516,
- -0.07288438826799393,
- 0.018118413165211678,
- -0.014951043762266636,
- -0.049901094287633896,
- 0.0704021230340004,
- -0.017830973491072655,
- 0.051336515694856644,
- 0.13087646663188934,
- 0.04126317426562309,
- -0.06066800281405449,
- -0.03640735521912575,
- 0.0299614816904068,
- -0.02631322294473648,
- 0.10236970335245132,
- -0.1225552037358284,
- -0.027694450691342354,
- -0.026750773191452026,
- -0.022465072572231293,
- 0.6963229775428772,
- 0.06071530655026436,
- 0.1349962204694748,
- 0.0029604679439216852,
- -0.010627356357872486,
- 0.1805461049079895,
- 0.009208586066961288,
- 0.06478998810052872,
- -0.04796625301241875,
- -0.05369967222213745,
- 0.03317221999168396,
- -0.07248315960168839,
- -0.04857209697365761,
- 0.021922463551163673,
- -0.014980182982981205,
- 0.07153782248497009,
- 0.033672574907541275,
- 0.08822420984506607,
- -0.009559323079884052,
- -0.08002188056707382,
- -0.02796768955886364,
- 0.04889626428484917,
- -0.002079806989058852,
- -0.12316332012414932,
- -0.00598991708829999,
- 0.04790058732032776,
- 0.08986284583806992,
- -0.06529728323221207,
- 0.0019114370224997401,
- -0.03926361724734306,
- 0.043254926800727844,
- -0.016697514802217484,
- 0.06446542590856552,
- -0.015036128461360931,
- 0.048525601625442505,
- 0.022319965064525604,
- 0.04527026414871216,
- -0.020831571891903877,
- -0.08953225612640381,
- -0.006588423624634743,
- 0.1359531283378601,
- -0.002234226791188121,
- -0.030231744050979614,
- 0.1041426882147789,
- -0.11253884434700012,
- 0.0400945320725441,
- 0.0055610924027860165,
- 0.19018787145614624,
- -0.17008160054683685,
- 0.021101707592606544,
- -0.00634838966652751,
- -0.013233933597803116,
- 0.043402597308158875,
- 0.0033622318878769875,
- -0.06131330132484436,
- -0.056475479155778885,
- 0.0574350506067276,
- 0.015077848918735981,
- 0.034125734120607376,
- 0.07870019972324371,
- -0.027285316959023476,
- 0.05490930378437042,
- 0.05595440790057182,
- 0.019953204318881035,
- -0.047013092786073685,
- 0.061499033123254776,
- 0.02760140411555767,
- -0.006400404032319784,
- -0.01763268932700157,
- -0.01890098862349987,
- 0.0064741335809230804,
- 0.03504158556461334,
- 0.001586462720297277,
- 0.06483786553144455,
- -0.0428876094520092,
- -0.032916028052568436,
- 0.01864536665380001,
- 0.06462439149618149,
- 0.0023124387953430414,
- 0.08506456017494202,
- -0.06751906871795654,
- -0.027384648099541664,
- -0.037361446768045425,
- -0.02647651731967926,
- 0.05260567367076874,
- -0.014446704648435116,
- 0.06518206745386124,
- 0.08603981137275696,
- 0.09696471691131592,
- 0.0062536210753023624,
- 0.048122942447662354,
- 0.017186813056468964,
- 0.026083774864673615,
- 0.019874846562743187,
- 0.07057034224271774,
- -0.02904350310564041,
- -0.05003984272480011,
- -0.01425819844007492,
- -0.001251187059096992,
- 0.04657392203807831,
- 0.007774615194648504,
- -0.09506087750196457,
- -0.020778952166438103,
- -0.07087522745132446,
- -0.024529092013835907,
- -0.0887717679142952,
- -0.060240041464567184,
- 0.020624155178666115,
- 0.046308714896440506,
- -0.040538158267736435,
- -0.09442443400621414,
- -0.06354733556509018,
- 0.006772881373763084,
- 0.06922020763158798,
- -0.00778896315023303,
- -0.021353259682655334,
- -0.124875009059906,
- 0.004535881336778402,
- -0.06257758289575577,
- 0.036274638026952744,
- 0.006892743986099958,
- -0.021391555666923523,
- -0.015682250261306763,
- -0.04881167784333229,
- 0.01879616267979145,
- -0.014313933439552784,
- -0.002905568340793252,
- -0.07575004547834396,
- -0.06220642849802971,
- -0.032436590641736984,
- -0.006158924195915461,
- -0.002058455953374505,
- -0.05558959022164345,
- -0.005457794759422541,
- 0.04193447530269623,
- 0.063014455139637,
- -0.027310015633702278,
- -0.03688542917370796,
- 0.0466887503862381,
- -0.012773402035236359,
- -0.009203986264765263,
- 0.08859669417142868,
- -0.016090862452983856,
- 0.02242548018693924,
- -0.02983110584318638,
- -0.07793480902910233,
- -0.033489566296339035,
- 0.01613295078277588,
- -0.03415980935096741,
- 0.03627980500459671,
- -0.016666151583194733,
- 0.025052055716514587,
- -0.03267792984843254,
- 0.020628737285733223,
- 0.03692276030778885,
- -0.02742244303226471,
- -0.09069464355707169,
- -0.04986213520169258,
- 0.1718524694442749,
- 0.00028678213129751384,
- -0.0322076715528965,
- 0.02312176674604416,
- -0.06042476370930672,
- 0.05028273165225983,
- -0.00551630137488246,
- 0.012767993845045567,
- 0.032750293612480164,
- 0.10601982474327087,
- -0.0063768420368433,
- 0.033016130328178406,
- 0.05911942943930626,
- -0.0034290996845811605,
- 0.04406482353806496,
- 0.06185388192534447,
- 0.4226973056793213,
- -0.1968797892332077,
- 0.0842713937163353,
- 0.10632825642824173,
- 0.0010914724553003907,
- 0.039177585393190384,
- -0.0801040455698967,
- 0.04901694133877754,
- 0.08682584017515182,
- 0.10728341341018677,
- 0.13156089186668396,
- -0.018922606483101845,
- 0.019393766298890114,
- -0.04106520488858223,
- 0.08649475127458572,
- -0.029056930914521217,
- -0.0071672541089355946,
- -0.018303148448467255,
- -0.06217241659760475,
- -0.004366402048617601,
- 0.047536689788103104,
- -0.031071506440639496,
- -0.00480313366279006,
- -0.0061461725272238255,
- -0.055548787117004395,
- 0.00788793247193098,
- 0.057616639882326126,
- 0.031225956976413727,
- 0.01318689901381731,
- 0.015787797048687935,
- -0.019895801320672035,
- 0.03961948677897453,
- 0.025899363681674004,
- 0.014753241091966629,
- -0.1348978728055954,
- 0.03202307969331741,
- -0.05162663385272026,
- -0.13509045541286469,
- 0.09003769606351852,
- -0.003307627746835351,
- 0.05749477818608284,
- 0.06454337388277054,
- -0.021481366828083992,
- 0.028288818895816803,
- -0.026615282520651817,
- -0.026294425129890442,
- 0.008199688978493214,
- 0.06729302555322647,
- 0.025896921753883362,
- 0.07375463098287582,
- 0.16271694004535675,
- -0.041269026696681976,
- -0.015906035900115967,
- -0.08949262648820877,
- 0.05659450963139534,
- 0.13324247300624847,
- -0.0464564673602581,
- -0.005015434231609106,
- -0.001693259458988905,
- -0.002847062423825264,
- -0.013766842894256115,
- -0.07604783028364182,
- -0.05830862745642662,
- -0.02066342532634735,
- -0.06560307741165161,
- 0.08522600680589676,
- 0.04107437655329704,
- -0.04214470461010933,
- -0.14534230530261993,
- -0.011104445904493332,
- -0.032366808503866196,
- 0.03278728947043419,
- 0.11380184441804886,
- -0.0666615441441536,
- 0.040425315499305725,
- -0.005399531219154596,
- 0.014014272950589657,
- 0.023620227351784706,
- -0.07893305271863937,
- -0.009794498793780804,
- -0.08585638552904129,
- 0.03401630371809006,
- 0.07119400054216385,
- 0.06484425067901611,
- -0.04560472443699837,
- 0.10027354955673218,
- -0.09807371348142624,
- 0.09029466658830643,
- -0.00776924192905426,
- -0.05461972951889038,
- 0.048991065472364426,
- -0.039878834038972855,
- 0.019989730790257454,
- 0.019362283870577812,
- -0.04829762503504753,
- 0.06533920019865036,
- -0.017562834545969963,
- -0.05175589397549629,
- -0.07299955189228058,
- -0.07298615574836731,
- -0.04072772338986397,
- -0.09242146462202072,
- 0.07381884753704071,
- -0.06534093618392944,
- 0.0010574118932709098,
- -0.020853906869888306,
- -0.040836818516254425,
- -0.012832515873014927,
- 0.02487863413989544,
- 0.03318801149725914,
- -0.15873613953590393,
- -0.055572014302015305,
- -0.021044636145234108,
- 0.03568285331130028,
- 0.017814001068472862,
- -0.0451168566942215,
- 0.005319114774465561,
- 0.057521238923072815,
- 0.034872833639383316,
- 0.03899437189102173,
- 0.023746006190776825,
- -0.051500916481018066,
- 0.059377770870923996,
- -0.14109168946743011,
- -0.3940942585468292,
- 0.04678523913025856,
- 0.006228484213352203,
- 0.02189958095550537,
- -0.015611437149345875,
- -0.05416549742221832,
- 0.05052398517727852,
- 0.0026056349743157625,
- -0.03473886474967003,
- 0.0980633795261383,
- -0.07380123436450958,
- 0.017081940546631813,
- -0.061888162046670914,
- -0.060919493436813354,
- -0.02053762413561344,
- -0.07007520645856857,
- -0.049346838146448135,
- 0.041981007903814316,
- 0.025222048163414,
- -0.06693807244300842,
- -0.08524662256240845,
- 0.06733603030443192,
- -0.021311646327376366,
- -0.003399507375434041,
- 0.0076775881461799145,
- 0.024136727675795555,
- -0.07568683475255966,
- -0.06720703840255737,
- -0.016028104349970818,
- 0.061864208430051804,
- 0.03237927332520485,
- -0.07795371860265732,
- -0.005399972666054964,
- 0.038687314838171005,
- 0.003363342024385929,
- 0.10057994723320007,
- 0.003988614305853844,
- -0.015340202488005161,
- -0.08878466486930847,
- 0.0977032408118248,
- 0.06695879250764847,
- 0.18500442802906036,
- -0.01678348518908024,
- 0.006111804861575365,
- 0.004242830444127321,
- 0.11370434612035751,
- 0.03940612077713013,
- 0.013183747418224812,
- -0.030457524582743645,
- 0.01693480648100376,
- -0.018341096118092537,
- -0.013356991112232208,
- 0.09827983379364014,
- -0.05066269263625145,
- -0.027613507583737373,
- 0.01687728427350521,
- -0.01242680475115776,
- -0.023277008906006813,
- -0.03319449722766876,
- 0.21616916358470917,
- 0.03379783406853676,
- 0.042088836431503296,
- 0.017735781148076057,
- -0.03290579095482826,
- 0.017938842996954918,
- -0.10539724677801132,
- -0.11517835408449173,
- -0.013451620005071163,
- 0.000374626339180395,
- 0.021733524277806282,
- -0.05304350331425667,
- -0.09813041239976883,
- -0.027155568823218346,
- 0.013767196796834469,
- -0.01930530183017254,
- 0.10336603969335556,
- -0.021463418379426003,
- 0.03581016883254051,
- -0.06046905741095543,
- 0.13518653810024261,
- 0.031003080308437347,
- 0.017072312533855438,
- 0.011110997758805752,
- 0.0667453482747078,
- 0.04917195439338684,
- -0.0021193886641412973,
- -0.051941823214292526,
- -0.05759355053305626,
- 0.020791461691260338,
- 0.13696010410785675,
- -0.04596574977040291,
- 0.1332692801952362,
- 0.02513316459953785,
- -0.009932330809533596,
- -0.054872483015060425,
- 0.03171728178858757,
- 0.013050459325313568,
- -0.003947978373616934,
- -0.44521331787109375,
- -0.05231727287173271,
- 0.1282065063714981,
- -0.030108973383903503,
- 0.025894753634929657,
- 0.09331361204385757,
- 0.03157180920243263,
- -0.07923457771539688,
- -0.030358143150806427,
- -0.05153513327240944,
- 0.11359219998121262,
- 0.010586780495941639,
- 0.06787595897912979,
- -0.13399849832057953,
- 0.02302604913711548,
- 0.08097248524427414,
- -0.043132904917001724,
- -0.01535704080015421,
- 0.05189881846308708,
- -0.2099890559911728,
- -0.004585218150168657,
- -0.05359213426709175,
- 0.11603052169084549,
- 0.019611136987805367,
- 0.03128006309270859,
- 0.09810841828584671,
- -0.06763505190610886,
- 0.02503429353237152,
- 0.054650451987981796,
- 0.002728505292907357,
- 0.06416928023099899,
- 0.006461964920163155,
- -0.02583378739655018,
- 0.10828322172164917,
- 0.08189579099416733,
- 0.03860188275575638,
- -0.03500935435295105,
- 12.041316986083984,
- 0.07135587930679321,
- 0.07587986439466476,
- -0.07815652340650558,
- 0.01789211481809616,
- -0.06088171899318695,
- 0.042837608605623245,
- -0.08220500499010086,
- 0.0217966940253973,
- 0.1364554613828659,
- 0.0007437678868882358,
- -0.04616783931851387,
- -0.029968850314617157,
- -0.07923655956983566,
- 0.03229570388793945,
- -0.02203737199306488,
- -0.04797447845339775,
- -0.0020305009093135595,
- 0.024356653913855553,
- -0.03915480151772499,
- -0.06702367961406708,
- 0.013569020666182041,
- 0.07913649827241898,
- -0.0034444101620465517,
- -0.04820480942726135,
- 0.028118645772337914,
- 0.02363363839685917,
- -0.016757983714342117,
- -0.01822235994040966,
- 0.06246187165379524,
- -0.02062375284731388,
- 0.0004203618736937642,
- 0.03233122453093529,
- -0.030118217691779137,
- 0.06812857836484909,
- 0.06541542708873749,
- 0.0953434482216835,
- 0.03266927972435951,
- 0.0185119416564703,
- 0.04870273172855377,
- 0.020875677466392517,
- 0.005300997290760279,
- 0.02631889097392559,
- 0.06798504292964935,
- 0.05154086649417877,
- 0.015005327761173248,
- 0.017745381221175194,
- 0.12363690137863159,
- 0.013060785830020905,
- 0.08051296323537827,
- 0.09826701134443283,
- -0.01794828288257122,
- 0.11512423306703568,
- 0.022138921543955803,
- -0.016594456508755684,
- 0.013868294656276703,
- 0.006469572428613901,
- -0.09581004828214645,
- 0.12190597504377365,
- 0.05028713122010231,
- -0.046826597303152084,
- 0.10982882231473923,
- 0.025811506435275078,
- 0.11328303813934326,
- 0.014556948095560074,
- 0.08173282444477081,
- 0.0457267165184021,
- 0.07863391190767288,
- -0.14725281298160553,
- -0.07506497949361801,
- 0.023782463744282722,
- -0.07605893164873123,
- -0.08246233314275742,
- 0.08330795168876648,
- 0.10566451400518417,
- -0.04493102803826332,
- 0.07607607543468475,
- -0.04333483800292015,
- 0.003520787926390767,
- -0.05823725461959839,
- 0.009233443066477776,
- 0.024135639891028404,
- -0.03351334109902382,
- 0.042286068201065063,
- 0.04909465089440346,
- 0.033163342624902725,
- 0.08282016962766647,
- 0.07227231562137604,
- 0.046822961419820786,
- -0.05663175508379936,
- -0.0007530542206950486,
- 0.10325410962104797,
- -0.006014158949255943,
- -0.05423947051167488,
- 0.003947563003748655,
- -0.04840860143303871,
- 0.0478232316672802,
- -0.1463749259710312,
- 0.068173848092556,
- 0.08410429209470749,
- -0.05504782497882843,
- -0.023465273901820183,
- -0.028513863682746887,
- 0.04851672425866127,
- 0.0020922934636473656,
- 0.03378622606396675,
- -0.05709858611226082,
- 0.0017180262366309762,
- 0.010725595988333225,
- 0.0572512112557888,
- -0.02881232462823391,
- 0.10155069082975388,
- 0.07183052599430084,
- -0.04418819025158882,
- 0.07062981277704239,
- 0.05435023829340935,
- -0.03762836754322052,
- -0.018741268664598465,
- 0.04699109122157097,
- 0.0607602559030056,
- -0.05994049087166786,
- -0.02827439457178116,
- -0.02400636114180088,
- -0.051030974835157394,
- -0.03479217365384102,
- -0.03554803878068924,
- -0.015273932367563248,
- 6.777645467082039e-05,
- -0.024866431951522827,
- -0.024908997118473053,
- 0.04018652066588402,
- 0.061754241585731506,
- 0.062193069607019424,
- -0.0466693639755249,
- 0.039988692849874496,
- -0.06996554136276245,
- -0.034812234342098236,
- 0.04701513424515724,
- 0.05103026703000069,
- 0.0690593495965004,
- -0.0636117234826088,
- -0.045921146869659424,
- -0.05381940305233002,
- -0.13033494353294373,
- 0.02399160899221897,
- 0.09703382849693298,
- 0.05136001110076904,
- 0.02009364403784275,
- 0.0055291480384767056,
- -0.06774132698774338,
- -0.05190951004624367,
- 0.0539257638156414,
- 0.10736360400915146,
- 0.02136417292058468,
- 0.04460662975907326,
- -0.052776917815208435,
- -0.029110541567206383,
- 0.10957958549261093,
- -0.05377667769789696,
- 0.013081823475658894,
- -0.005934875924140215,
- -0.04737425222992897,
- 0.07549577951431274,
- 0.13798557221889496,
- 0.013311639428138733,
- 0.04293627664446831,
- 0.06811729818582535,
- -0.006506450939923525,
- 0.04009142145514488,
- -0.009688236750662327,
- 0.016802940517663956,
- -0.02174876444041729,
- -0.0929674506187439,
- -0.05609692260622978,
- 0.03033480793237686,
- 0.11118770390748978,
- 0.03098963014781475,
- -0.13081684708595276,
- -0.01888337731361389,
- -0.042367786169052124
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 50,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 38,
- "similarity": 0.9988240599632263
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 6,
- "similarity": 0.9987120628356934
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 26,
- "similarity": 0.9986885786056519
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "report_number": 905
- },
- {
- "__typename": "Report",
- "report_number": 903
- },
- {
- "__typename": "Report",
- "report_number": 902
- },
- {
- "__typename": "Report",
- "report_number": 901
- },
- {
- "__typename": "Report",
- "report_number": 900
- },
- {
- "__typename": "Report",
- "report_number": 899
- },
- {
- "__typename": "Report",
- "report_number": 898
- },
- {
- "__typename": "Report",
- "report_number": 897
- },
- {
- "__typename": "Report",
- "report_number": 896
- },
- {
- "__typename": "Report",
- "report_number": 893
- },
- {
- "__typename": "Report",
- "report_number": 892
- },
- {
- "__typename": "Report",
- "report_number": 889
- },
- {
- "__typename": "Report",
- "report_number": 888
- },
- {
- "__typename": "Report",
- "report_number": 887
- },
- {
- "__typename": "Report",
- "report_number": 886
- },
- {
- "__typename": "Report",
- "report_number": 885
- },
- {
- "__typename": "Report",
- "report_number": 884
- },
- {
- "__typename": "Report",
- "report_number": 883
- },
- {
- "__typename": "Report",
- "report_number": 881
- },
- {
- "__typename": "Report",
- "report_number": 880
- },
- {
- "__typename": "Report",
- "report_number": 879
- },
- {
- "__typename": "Report",
- "report_number": 878
- },
- {
- "__typename": "Report",
- "report_number": 877
- },
- {
- "__typename": "Report",
- "report_number": 876
- }
- ],
- "title": "The DAO Hack"
- }
- }
-}
diff --git a/site/gatsby-site/cypress/fixtures/incidents/incident.json b/site/gatsby-site/cypress/fixtures/incidents/incident.json
deleted file mode 100644
index 19868022fe..0000000000
--- a/site/gatsby-site/cypress/fixtures/incidents/incident.json
+++ /dev/null
@@ -1,294 +0,0 @@
-{
- "data": {
- "incident": {
- "AllegedDeployerOfAISystem": [
- {
- "entity_id": "youtube",
- "name": "YouTube"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "entity_id": "youtube",
- "name": "YouTube"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "entity_id": "children",
- "name": "Children"
- }
- ],
- "__typename": "Incident",
- "date": "2015-05-19",
- "description": "YouTube’s content filtering and recommendation algorithms exposed children to disturbing and inappropriate videos.",
- "editor_notes": "This incident was originally submitted by Sean McGregor.",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "flagged_dissimilar_incidents": [],
- "epoch_date_modified": 1589385600,
- "editors": [{"userId": "1", "first_name": "Sean", "last_name": "McGregor"}],
- "nlp_similar_incidents": [],
- "incident_id": 1,
- "reports": [
- {
- "__typename": "Report",
- "report_number": 1
- },
- {
- "__typename": "Report",
- "report_number": 2
- },
- {
- "__typename": "Report",
- "report_number": 3
- },
- {
- "__typename": "Report",
- "report_number": 4
- },
- {
- "__typename": "Report",
- "report_number": 5
- },
- {
- "__typename": "Report",
- "report_number": 6
- },
- {
- "__typename": "Report",
- "report_number": 7
- },
- {
- "__typename": "Report",
- "report_number": 8
- },
- {
- "__typename": "Report",
- "report_number": 9
- },
- {
- "__typename": "Report",
- "report_number": 10
- },
- {
- "__typename": "Report",
- "report_number": 11
- },
- {
- "__typename": "Report",
- "report_number": 12
- },
- {
- "__typename": "Report",
- "report_number": 14
- },
- {
- "__typename": "Report",
- "report_number": 15
- }
- ],
- "title": "YouTube Kids app is STILL showing disturbing videos",
- "embedding": {
- "from_reports": [25, 24, 23, 22, 21, 20, 19, 18, 17, 16],
- "vector": [
- -0.06841292232275009, 0.08255906403064728, 0.017737803980708122, -0.10710948705673218,
- 0.12266533076763153, -0.04649468511343002, -0.015452317893505096, 0.017702659592032433,
- 0.07051698118448257, -0.10235148668289185, -0.021081121638417244, 0.017820026725530624,
- 0.032566819339990616, -0.03947213292121887, 0.02732796035706997, -0.05834178999066353,
- -0.09229441732168198, -0.03068310022354126, 0.0005864544655196369, -0.11755073070526123,
- -0.08433695137500763, 0.005715564824640751, 0.006991466972976923, 0.11313071101903915,
- -0.035511113703250885, 0.022447967901825905, 0.11154558509588242, 0.11783023923635483,
- 0.004598249681293964, 0.05499538779258728, -0.015789125114679337, -0.08348552882671356,
- 0.09375607967376709, 0.0020884941332042217, 0.006771962158381939, 0.09916503727436066,
- -0.0054870047606527805, -0.034903112798929214, -0.024041183292865753, 0.01617508940398693,
- 0.032581936568021774, 0.23353910446166992, 0.005509792361408472, -0.027768690139055252,
- 0.0438775010406971, 0.005334157962352037, 0.02050728164613247, 0.10855700820684433,
- -0.0015129774110391736, 0.003089690115302801, -0.016975484788417816, 0.09770088642835617,
- -0.027908002957701683, 0.036213070154190063, -0.13222885131835938, 0.02784169837832451,
- 0.03731813281774521, -0.0004827398806810379, 0.06573175638914108, -0.08812443912029266,
- -0.0006616926984861493, -0.19004479050636292, -0.04138186201453209, -0.032365936785936356,
- 0.08064189553260803, -0.05979529768228531, -0.033193208277225494, 0.03483796492218971,
- 0.015335386618971825, 0.07672490924596786, 0.05630197376012802, -0.049237314611673355,
- -0.038985442370176315, 0.0047752647660672665, -0.035621028393507004,
- -0.024215692654252052, -0.006061650346964598, 0.2335447371006012, -0.07867880165576935,
- -0.01898614689707756, 0.08680970966815948, -0.09278423339128494, 0.3987751603126526,
- 0.060071952641010284, 0.006044968031346798, -0.04462457448244095, 0.05455758422613144,
- 0.07360662519931793, 0.04261058568954468, 0.039191871881484985, -0.049547627568244934,
- 0.03456296771764755, -0.05879871919751167, 0.0024951749946922064, 0.06703958660364151,
- 0.027154255658388138, -0.00874017272144556, 0.057451874017715454, -0.014647191390395164,
- -0.0853469967842102, -0.018129613250494003, -0.031861964613199234, 0.09290651977062225,
- 0.06789884716272354, -0.03658333048224449, 0.00017825902614276856, 0.0675666555762291,
- -0.042418934404850006, 0.04237237200140953, -0.018076278269290924, 0.029788712039589882,
- -0.008379393257200718, 0.03076322376728058, -0.0024012539070099592, 0.029750501736998558,
- -0.02490108460187912, 0.012197589501738548, 0.05529804900288582, 0.07074347883462906,
- 0.042738210409879684, 0.031818244606256485, 0.05765729025006294, 0.06285413354635239,
- -0.02862699329853058, -0.04140282794833183, -0.018030405044555664, -0.021337758749723434,
- -0.021196458488702774, -0.04177958890795708, 0.04202679172158241, -0.041546277701854706,
- -0.19947485625743866, -0.01082480140030384, 0.08963049948215485, -0.002991348970681429,
- -0.029417729005217552, 0.00001862770841398742, -0.05120665952563286, 0.033794522285461426,
- -0.005810092203319073, -0.01500248908996582, 0.028721055015921593, 0.022154029458761215,
- 0.02840401791036129, 0.1543091982603073, 0.05063353106379509, -0.05564175173640251,
- -0.03861511871218681, -0.012248655781149864, -0.03405265882611275, 0.1141527071595192,
- -0.11974640935659409, -0.05455257371068001, 0.013094077818095684, -0.02587847411632538,
- 0.6567185521125793, 0.11371896415948868, 0.16934607923030853, 0.01082638744264841,
- -0.017566747963428497, 0.17517471313476562, -0.007486309856176376, 0.04383862763643265,
- -0.0851464718580246, -0.05663176253437996, 0.023771299049258232, -0.07230733335018158,
- -0.03115556202828884, 0.03225359693169594, 0.007663371507078409, 0.12639595568180084,
- -0.012094255536794662, 0.07621781527996063, 0.00470320088788867, -0.09740330278873444,
- -0.035283416509628296, 0.08072682470083237, -0.019965332001447678, -0.13426944613456726,
- -0.02990957535803318, 0.029031893238425255, 0.08364960551261902, -0.09460131078958511,
- 0.0003482694737613201, -0.07730256021022797, 0.03519482538104057, -0.023247364908456802,
- 0.0200048740953207, -0.012543300166726112, 0.03703422099351883, 0.04566573724150658,
- 0.054340749979019165, 0.011343533173203468, -0.10123256593942642, -0.015494327060878277,
- 0.12752971053123474, -0.028449540957808495, -0.025896990671753883, 0.08327052742242813,
- -0.08837111294269562, 0.049304746091365814, 0.011028222739696503, 0.13671047985553741,
- -0.10338710248470306, 0.014687960036098957, -0.031844086945056915, 0.018948879092931747,
- 0.061671994626522064, 0.013810168020427227, -0.0349402092397213, -0.0487808883190155,
- 0.09728659689426422, -0.00012544904893729836, 0.09605928510427475, 0.02715083584189415,
- -0.03827338293194771, 0.05727006122469902, 0.1374557912349701, -0.0015562714543193579,
- 0.002443319885060191, 0.0505552664399147, 0.04696148633956909, -0.05495886877179146,
- -0.012679487466812134, -0.010057899169623852, 0.05804906412959099, 0.03781615197658539,
- 0.013323754072189331, 0.03330517187714577, -0.01974913477897644, -0.054327286779880524,
- 0.011778479442000389, 0.002034979173913598, 0.017116189002990723, 0.11226259171962738,
- -0.04688004404306412, -0.045044831931591034, -0.05095986649394035, -0.0462941899895668,
- 0.03157275542616844, 0.0027627546805888414, 0.0806470513343811, 0.08949355036020279,
- 0.08464962244033813, 0.008359028957784176, 0.04931395500898361, 0.06887535750865936,
- 0.02331547439098358, 0.0073752254247665405, 0.07620115578174591, -0.01985809952020645,
- -0.041596926748752594, -0.010979698970913887, 0.009829701855778694, 0.01548650860786438,
- 0.0071002715267241, -0.0704135149717331, -0.033914510160684586, -0.03795802220702171,
- -0.06428028643131256, -0.06263178586959839, -0.035338468849658966, 0.026913082227110863,
- 0.01082033384591341, -0.04205778241157532, -0.10908146947622299, -0.0952560305595398,
- 0.02637300454080105, 0.06364049017429352, -0.011436312459409237, -0.0018066571792587638,
- -0.10706274211406708, 0.010102959349751472, 0.00010898010805249214, 0.05975433439016342,
- -0.0042587947100400925, 0.013140772469341755, 0.009641138836741447, -0.05218709632754326,
- 0.041256871074438095, -0.0037247289437800646, -0.028871595859527588, -0.07932685315608978,
- -0.03143605217337608, -0.05029808357357979, -0.007401092443615198, 0.008981220424175262,
- -0.05836968496441841, 0.039155252277851105, 0.03987164422869682, 0.05013152211904526,
- 0.017009055241942406, -0.01974823698401451, 0.05732440948486328, -0.03805435448884964,
- -0.01476270891726017, 0.07429195195436478, -0.03144090250134468, 0.051159631460905075,
- -0.009531856514513493, -0.04681968688964844, -0.0428457111120224, -0.011817383579909801,
- -0.03160657361149788, 0.05843649059534073, -0.020481187850236893, 0.009324030950665474,
- -0.04654700309038162, -0.009206941351294518, -0.00036862859269604087,
- -0.06137499958276749, -0.07406989485025406, -0.06351901590824127, 0.12707851827144623,
- 0.013410033658146858, 0.003595705609768629, 0.040755774825811386, -0.03535497188568115,
- 0.0348849818110466, -0.01023091934621334, -0.00972566194832325, 0.02409248799085617,
- 0.03795306012034416, -0.024982433766126633, -0.016601163893938065, 0.05590899661183357,
- -0.021581852808594704, 0.021253470331430435, 0.04567709565162659, 0.4016311764717102,
- -0.1771545559167862, 0.08875250071287155, 0.09526221454143524, 0.043530892580747604,
- 0.04562800005078316, -0.03788471594452858, 0.04147379845380783, 0.08256692439317703,
- 0.13061656057834625, 0.0672105997800827, -0.025289136916399002, -0.02244524285197258,
- -0.0973358303308487, 0.09815799444913864, 0.021489152684807777, 0.00803743489086628,
- 0.001990589778870344, -0.08938077837228775, -0.03518141806125641, 0.03726280853152275,
- -0.06316126883029938, -0.016641218215227127, -0.007199821528047323, -0.08435548841953278,
- 0.005285636521875858, 0.010777292773127556, 0.007784110493957996, -0.00029415133758448064,
- 0.04070577770471573, -0.04265180975198746, 0.039291538298130035, 0.005728474818170071,
- 0.0280133243650198, -0.09785696864128113, 0.017010536044836044, -0.047516338527202606,
- -0.06677897274494171, 0.087294802069664, -0.029750987887382507, 0.035855840891599655,
- 0.05851803347468376, -0.028794264420866966, 0.021998634561896324, 0.005094739608466625,
- -0.06911887228488922, 0.001192352850921452, 0.05071138218045235, 0.04473762959241867,
- 0.08768881112337112, 0.17643532156944275, -0.03303345665335655, -0.02794659696519375,
- -0.07459728419780731, 0.04609562084078789, 0.0989299863576889, 0.01764814555644989,
- -0.007207629270851612, 0.019862011075019836, -0.03803921863436699, 0.016768282279372215,
- -0.048121534287929535, -0.10502655804157257, -0.030588310211896896, -0.06079907342791557,
- 0.07820115983486176, 0.0133530143648386, -0.020684074610471725, -0.15514804422855377,
- -0.03883208706974983, -0.05287303775548935, 0.018698962405323982, 0.11219044029712677,
- -0.035789601504802704, 0.023708146065473557, -0.00006640001811319962, -0.0346628800034523,
- 0.023297566920518875, -0.08568543195724487, 0.02937793731689453, -0.03430604189634323,
- 0.03398282080888748, 0.06947711855173111, 0.05557971075177193, -0.02448728308081627,
- 0.07269691675901413, -0.06804728507995605, 0.05087907984852791, -0.007492095232009888,
- -0.05932514742016792, 0.05213136225938797, -0.026688313111662865, 0.04018903151154518,
- 0.006246981211006641, -0.016213852912187576, -0.009014453738927841, 0.012285523116588593,
- -0.0429302342236042, -0.1051013246178627, -0.03627810627222061, -0.039240896701812744,
- -0.07250531762838364, 0.05594303458929062, -0.09858179837465286, -0.029730787500739098,
- -0.010231925174593925, -0.017459088936448097, -0.004941485822200775, 0.021638978272676468,
- 0.016592394560575485, -0.13497930765151978, 0.01397754531353712, -0.02866910956799984,
- 0.0900668278336525, 0.015401040203869343, -0.03447005897760391, 0.047278162091970444,
- 0.10501136630773544, 0.04263550415635109, -0.042092155665159225, -0.006090549752116203,
- -0.055239371955394745, 0.048462629318237305, -0.10146979242563248, -0.4245150685310364,
- 0.03392636403441429, 0.002807642798870802, 0.04192684218287468, 0.03449872508645058,
- -0.09351135790348053, 0.0382453128695488, -0.029909217730164528, -0.029241550713777542,
- 0.07282052934169769, -0.03713016211986542, 0.03001207672059536, 0.0038425568491220474,
- -0.0648050606250763, -0.0014395734760910273, -0.05548696964979172, -0.04708419367671013,
- 0.03259451687335968, -0.047132428735494614, -0.06258593499660492, -0.11664848029613495,
- 0.04426175355911255, -0.005214188247919083, 0.013939594849944115, 0.0053037977777421474,
- 0.018227469176054, -0.07227052748203278, -0.035798605531454086, 0.07407542318105698,
- 0.0237907562404871, 0.027823403477668762, -0.09101470559835434, 0.00403182115405798,
- 0.04289809614419937, 0.002940054051578045, 0.10798662900924683, 0.005232854746282101,
- 0.013773500919342041, -0.033875398337841034, 0.09276439994573593, 0.053784988820552826,
- 0.1874297559261322, 0.006454192101955414, 0.008839316666126251, -0.005961133167147636,
- 0.13444970548152924, 0.03219016641378403, 0.007194367703050375, -0.04626338183879852,
- 0.0015428598271682858, 0.03673217073082924, -0.014871479943394661, 0.06865783780813217,
- -0.06340701878070831, -0.02543795108795166, -0.001353089464828372, -0.015346253290772438,
- -0.008049285039305687, -0.042929451912641525, 0.19707965850830078, 0.019158484414219856,
- 0.020838281139731407, 0.019428418949246407, -0.0790431797504425, 0.011285698041319847,
- -0.05750890448689461, -0.07732291519641876, -0.02597511187195778, -0.01730029657483101,
- -0.0019100510980933905, -0.0291757695376873, -0.0892198458313942, -0.016103576868772507,
- 0.01992134191095829, -0.013292859308421612, 0.13769462704658508, -0.017439983785152435,
- 0.026736993342638016, -0.028537243604660034, 0.11801580339670181, 0.042630404233932495,
- 0.033879853785037994, 0.05562686175107956, 0.08898753672838211, 0.0360906608402729,
- 0.05037165805697441, -0.029208045452833176, -0.04760030657052994, 0.0068192980252206326,
- 0.13346144556999207, -0.025236347690224648, 0.09788227081298828, 0.05268704891204834,
- -0.045215003192424774, -0.043609537184238434, 0.013746184296905994, 0.004718789830803871,
- 0.057142727077007294, -0.459599107503891, -0.023622829467058182, 0.08187734335660934,
- -0.0005193061078898609, 0.011456172913312912, 0.08629194647073746, 0.013369627296924591,
- -0.04185105115175247, 0.009133456274867058, -0.06891002506017685, 0.12935106456279755,
- 0.031008630990982056, 0.0335465632379055, -0.12094652652740479, 0.012401250191032887,
- 0.08364032953977585, -0.020446652546525, -0.016942763701081276, 0.049437690526247025,
- -0.22709457576274872, 0.019584443420171738, -0.04060276597738266, 0.1202157735824585,
- -0.006222317926585674, 0.02427615597844124, 0.07044126093387604, -0.048852771520614624,
- 0.019644223153591156, 0.043219029903411865, -0.007314726710319519, 0.047816626727581024,
- -0.014264775440096855, -0.017777079716324806, 0.0680513009428978, 0.06374215334653854,
- 0.11908354610204697, -0.011608901433646679, 11.899330139160156, 0.06354790180921555,
- 0.03805717080831528, -0.09183052182197571, 0.02933480404317379, -0.043524473905563354,
- 0.012845571152865887, -0.11245249211788177, 0.01809948869049549, 0.11993591487407684,
- -0.04148494079709053, -0.07741526514291763, -0.04576029255986214, -0.08622977882623672,
- 0.02301032654941082, -0.05425844341516495, -0.11018048226833344, -0.04356323927640915,
- 0.04094509407877922, -0.037357185035943985, -0.027706224471330643, 0.07822529226541519,
- 0.040297623723745346, 0.0133597981184721, -0.0708509311079979, 0.04072750359773636,
- 0.031060751527547836, -0.029224704951047897, 0.0024882876314222813,
- -0.0032400377094745636, 0.005964864976704121, -0.0013202037662267685,
- 0.029165472835302353, 0.023526037111878395, 0.049488604068756104, 0.0732952356338501,
- 0.07578669488430023, 0.05409271642565727, 0.033286020159721375, 0.11310321092605591,
- 0.042199213057756424, 0.011933716014027596, 0.02123691700398922, 0.010619988664984703,
- 0.055588286370038986, 0.0684037134051323, 0.006086287554353476, 0.117994025349617,
- 0.028286844491958618, 0.07547932118177414, 0.10054685920476913, -0.004639047663658857,
- 0.12230505794286728, 0.0020156202372163534, -0.0125412717461586, 0.03635096922516823,
- -0.0036049727350473404, -0.0754992738366127, 0.049604251980781555, 0.05443967133760452,
- -0.06271867454051971, 0.10463930666446686, 0.017123958095908165, 0.09628205001354218,
- -0.0034097707830369473, 0.0742160975933075, 0.043456606566905975, 0.08228088170289993,
- -0.12962567806243896, -0.06976678222417831, 0.042611174285411835, -0.11410216987133026,
- -0.05902496725320816, 0.07816030085086823, 0.11529189348220825, -0.07289905846118927,
- 0.02237776666879654, -0.006855964660644531, 0.015925757586956024, -0.04842060059309006,
- -0.0033435900695621967, 0.06455186754465103, -0.009379561990499496,
- -0.0064817690290510654, 0.09206972271203995, 0.017871515825390816, 0.05520313233137131,
- 0.09756311029195786, -0.022609345614910126, -0.06705362349748611, -0.04262623190879822,
- 0.06597613543272018, 0.007484654430299997, -0.07253653556108475, 0.023873088881373405,
- -0.07184994220733643, 0.05379415303468704, -0.15725001692771912, 0.06870647519826889,
- 0.11843399703502655, -0.08344094455242157, -0.012355917133390903, -0.045404307544231415,
- 0.0864037349820137, 0.03444259613752365, -0.0061794668436050415, -0.04775547981262207,
- 0.002829032950103283, -0.012330928817391396, 0.007511543575674295, -0.03704431653022766,
- 0.03596052527427673, 0.06446601450443268, -0.03978605568408966, 0.04420388862490654,
- 0.05639089271426201, -0.021426601335406303, -0.03194120526313782, 0.052361078560352325,
- 0.03495921567082405, -0.06257215887308121, -0.028345942497253418, -0.04622543603181839,
- -0.015253916382789612, -0.03683768957853317, -0.05004741623997688, -0.0005166478222236037,
- 0.031687844544649124, -0.06214047595858574, -0.00023040230735205114, 0.03909517452120781,
- 0.035062454640865326, 0.04656009003520012, 0.029403720051050186, 0.08677220344543457,
- -0.03357093408703804, -0.02433578297495842, 0.04499950632452965, 0.03461521491408348,
- 0.05594952777028084, 0.017158230766654015, -0.04802138730883598, -0.04711337760090828,
- -0.1342587172985077, 0.009164378046989441, 0.09510406106710434, 0.02136695757508278,
- 0.013719795271754265, 0.011115007102489471, -0.06621604412794113, -0.06388624757528305,
- 0.1011749878525734, 0.04433156177401543, 0.026613185182213783, 0.011879386380314827,
- -0.054494667798280716, -0.028955820947885513, 0.09631345421075821, -0.046050988137722015,
- 0.004781014285981655, 0.012626012787222862, -0.026319196447730064, 0.09636221081018448,
- 0.08935143053531647, -0.006123233586549759, 0.04916246980428696, -0.005961393937468529,
- 0.00781418476253748, 0.02850925549864769, -0.03245514631271362, 0.01417984813451767,
- -0.032771773636341095, -0.0886230617761612, -0.04930981621146202, 0.02034725807607174,
- 0.08620401471853256, 0.02943563088774681, -0.13183625042438507, -0.01733490265905857,
- -0.03880348056554794
- ]
- },
- "tsne": { "x": -0.000001, "y": 0.000001 }
- }
- }
-}
diff --git a/site/gatsby-site/cypress/fixtures/incidents/incident112.json b/site/gatsby-site/cypress/fixtures/incidents/incident112.json
deleted file mode 100644
index f7882d8637..0000000000
--- a/site/gatsby-site/cypress/fixtures/incidents/incident112.json
+++ /dev/null
@@ -1,107 +0,0 @@
-{
- "data": {
- "incident": {
- "AllegedDeployerOfAISystem": [
- {
- "entity_id": "youtube",
- "name": "YouTube"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "entity_id": "youtube",
- "name": "YouTube"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "entity_id": "google",
- "name": "Google"
- }
- ],
- "__typename": "Incident",
- "date": "2015-05-19",
- "description": "YouTube’s content filtering and recommendation algorithms exposed children to disturbing and inappropriate videos.",
- "incident_id": 112,
- "nlp_similar_incidents": [],
- "editors": [
- {
- "__typename": "User",
- "first_name": "Sean",
- "last_name": "McGregor",
- "roles": [
- "admin"
- ],
- "userId": "619b47ea5eed5334edfa3bbc"
- }
- ],
- "editor_notes": "",
- "editor_similar_incidents": [],
- "editor_dissimilar_incidents": [],
- "flagged_dissimilar_incidents": [],
- "embedding": {
- "from_reports": [],
- "vector": []
- },
- "reports": [
- {
- "__typename": "Report",
- "report_number": 1
- },
- {
- "__typename": "Report",
- "report_number": 2
- },
- {
- "__typename": "Report",
- "report_number": 3
- },
- {
- "__typename": "Report",
- "report_number": 4
- },
- {
- "__typename": "Report",
- "report_number": 5
- },
- {
- "__typename": "Report",
- "report_number": 6
- },
- {
- "__typename": "Report",
- "report_number": 7
- },
- {
- "__typename": "Report",
- "report_number": 8
- },
- {
- "__typename": "Report",
- "report_number": 9
- },
- {
- "__typename": "Report",
- "report_number": 10
- },
- {
- "__typename": "Report",
- "report_number": 11
- },
- {
- "__typename": "Report",
- "report_number": 12
- },
- {
- "__typename": "Report",
- "report_number": 14
- },
- {
- "__typename": "Report",
- "report_number": 15
- }
- ],
- "title": "YouTube Kids app is STILL showing disturbing videos"
- }
- }
-}
\ No newline at end of file
diff --git a/site/gatsby-site/cypress/fixtures/incidents/incidentWithDeletedReport.json b/site/gatsby-site/cypress/fixtures/incidents/incidentWithDeletedReport.json
deleted file mode 100644
index 1b89c11bae..0000000000
--- a/site/gatsby-site/cypress/fixtures/incidents/incidentWithDeletedReport.json
+++ /dev/null
@@ -1,84 +0,0 @@
-{
- "data": {
- "incident": {
- "AllegedDeployerOfAISystem": [
- {
- "entity_id": "youtube",
- "name": "YouTube"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "entity_id": "youtube",
- "name": "YouTube"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [],
- "__typename": "Incident",
- "date": "2015-05-19",
- "description": "YouTube’s content filtering and recommendation algorithms exposed children to disturbing and inappropriate videos.",
- "editors": [{"userId": "1", "first_name": "Sean", "last_name": "McGregor"}],
- "nlp_similar_incidents": [],
- "incident_id": 1,
- "editor_similar_incidents": [],
- "editor_dissimilar_incidents": [],
- "flagged_dissimilar_incidents": [],
- "embedding": [],
- "reports": [
- {
- "__typename": "Report",
- "report_number": 1
- },
- {
- "__typename": "Report",
- "report_number": 2
- },
- {
- "__typename": "Report",
- "report_number": 3
- },
- {
- "__typename": "Report",
- "report_number": 4
- },
- {
- "__typename": "Report",
- "report_number": 5
- },
- {
- "__typename": "Report",
- "report_number": 6
- },
- {
- "__typename": "Report",
- "report_number": 7
- },
- {
- "__typename": "Report",
- "report_number": 8
- },
- {
- "__typename": "Report",
- "report_number": 9
- },
- {
- "__typename": "Report",
- "report_number": 11
- },
- {
- "__typename": "Report",
- "report_number": 12
- },
- {
- "__typename": "Report",
- "report_number": 14
- },
- {
- "__typename": "Report",
- "report_number": 15
- }
- ],
- "title": "YouTube Kids app is STILL showing disturbing videos"
- }
- }
-}
diff --git a/site/gatsby-site/cypress/fixtures/incidents/incidents.json b/site/gatsby-site/cypress/fixtures/incidents/incidents.json
deleted file mode 100644
index 75ac408f4b..0000000000
--- a/site/gatsby-site/cypress/fixtures/incidents/incidents.json
+++ /dev/null
@@ -1,272 +0,0 @@
-{
- "data": {
- "incidents": [
- {
- "AllegedDeployerOfAISystem": [
- {
- "entity_id": "youtube",
- "name": "YouTube"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "entity_id": "youtube",
- "name": "YouTube"
- },
- {
- "entity_id": "vue",
- "name": "Vue"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "entity_id": "google",
- "name": "Google"
- }
- ],
- "__typename": "Incident",
- "date": "2015-05-18",
- "description": "bueee",
- "incident_id": 1,
- "nlp_similar_incidents": [],
- "editors": [],
- "editor_notes": "",
- "editor_similar_incidents": [],
- "editor_dissimilar_incidents": [],
- "flagged_dissimilar_incidents": [],
- "embedding": [],
- "reports": [
- {
- "__typename": "Report",
- "report_number": 8
- },
- {
- "__typename": "Report",
- "report_number": 4
- },
- {
- "__typename": "Report",
- "report_number": 3
- },
- {
- "__typename": "Report",
- "report_number": 1
- },
- {
- "__typename": "Report",
- "report_number": 5
- },
- {
- "__typename": "Report",
- "report_number": 10
- },
- {
- "__typename": "Report",
- "report_number": 11
- },
- {
- "__typename": "Report",
- "report_number": 2
- },
- {
- "__typename": "Report",
- "report_number": 12
- },
- {
- "__typename": "Report",
- "report_number": 7
- },
- {
- "__typename": "Report",
- "report_number": 14
- },
- {
- "__typename": "Report",
- "report_number": 9
- },
- {
- "__typename": "Report",
- "report_number": 6
- },
- {
- "__typename": "Report",
- "report_number": 15
- }
- ],
- "title": "Google’s YouTube Kids App Criticized for ‘Inappropriate Content’"
- },
- {
- "AllegedDeployerOfAISystem": [],
- "AllegedDeveloperOfAISystem": [],
- "AllegedHarmedOrNearlyHarmedParties": [],
- "__typename": "Incident",
- "date": "2018-11-16",
- "description": "Twenty-four Amazon workers in New Jersey were hospitalized after a robot punctured a can of bear repellent spray in a warehouse.",
- "incident_id": 2,
- "nlp_similar_incidents": [],
- "editors": [],
- "editor_notes": "",
- "editor_similar_incidents": [],
- "editor_dissimilar_incidents": [],
- "flagged_dissimilar_incidents": [],
- "embedding": [],
- "reports": [
- {
- "__typename": "Report",
- "report_number": 155
- },
- {
- "__typename": "Report",
- "report_number": 149
- },
- {
- "__typename": "Report",
- "report_number": 139
- },
- {
- "__typename": "Report",
- "report_number": 152
- },
- {
- "__typename": "Report",
- "report_number": 154
- },
- {
- "__typename": "Report",
- "report_number": 144
- },
- {
- "__typename": "Report",
- "report_number": 148
- },
- {
- "__typename": "Report",
- "report_number": 141
- },
- {
- "__typename": "Report",
- "report_number": 145
- },
- {
- "__typename": "Report",
- "report_number": 157
- },
- {
- "__typename": "Report",
- "report_number": 156
- },
- {
- "__typename": "Report",
- "report_number": 142
- },
- {
- "__typename": "Report",
- "report_number": 150
- },
- {
- "__typename": "Report",
- "report_number": 146
- },
- {
- "__typename": "Report",
- "report_number": 151
- },
- {
- "__typename": "Report",
- "report_number": 153
- },
- {
- "__typename": "Report",
- "report_number": 143
- }
- ],
- "title": "24 Amazon workers sent to hospital after robot accidentally unleashes bear spray"
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "entity_id": "youtube",
- "name": "YouTube"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "entity_id": "youtube",
- "name": "YouTube"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [],
- "__typename": "Incident",
- "date": "2015-05-19",
- "description": "YouTube’s content filtering and recommendation algorithms exposed children to disturbing and inappropriate videos.",
- "incident_id": 112,
- "nlp_similar_incidents": [],
- "editors": [],
- "editor_notes": "",
- "editor_similar_incidents": [],
- "editor_dissimilar_incidents": [],
- "flagged_dissimilar_incidents": [],
- "embedding": [],
- "reports": [
- {
- "__typename": "Report",
- "report_number": 1
- },
- {
- "__typename": "Report",
- "report_number": 2
- },
- {
- "__typename": "Report",
- "report_number": 3
- },
- {
- "__typename": "Report",
- "report_number": 4
- },
- {
- "__typename": "Report",
- "report_number": 5
- },
- {
- "__typename": "Report",
- "report_number": 6
- },
- {
- "__typename": "Report",
- "report_number": 7
- },
- {
- "__typename": "Report",
- "report_number": 8
- },
- {
- "__typename": "Report",
- "report_number": 9
- },
- {
- "__typename": "Report",
- "report_number": 10
- },
- {
- "__typename": "Report",
- "report_number": 11
- },
- {
- "__typename": "Report",
- "report_number": 12
- },
- {
- "__typename": "Report",
- "report_number": 14
- },
- {
- "__typename": "Report",
- "report_number": 15
- }
- ],
- "title": "YouTube Kids app is STILL showing disturbing videos"
- }
- ]
- }
-}
diff --git a/site/gatsby-site/cypress/fixtures/incidents/probablyRelatedIncidents.json b/site/gatsby-site/cypress/fixtures/incidents/probablyRelatedIncidents.json
deleted file mode 100644
index c1450005fb..0000000000
--- a/site/gatsby-site/cypress/fixtures/incidents/probablyRelatedIncidents.json
+++ /dev/null
@@ -1,42 +0,0 @@
-{
- "data": {
- "incidents": [
- {
- "__typename": "Incident",
- "incident_id": 1,
- "reports": [
- {
- "__typename": "Report",
- "report_number": 1,
- "title": "Report 1 test title",
- "url": "https://www.techtimes.com/articles/70761/20150721/study-finds-non-negligible-number-complications-during-robotic-surgery-144.htm"
- }
- ]
- },
- {
- "__typename": "Incident",
- "incident_id": 2,
- "reports": [
- {
- "__typename": "Report",
- "report_number": 2,
- "title": "Report 2 test title",
- "url": "https://www.test.com/articles/70761"
- }
- ]
- },
- {
- "__typename": "Incident",
- "incident_id": 3,
- "reports": [
- {
- "__typename": "Report",
- "report_number": 3,
- "title": "Report 3 test title",
- "url": "https://www.test.com/articles/70"
- }
- ]
- }
- ]
- }
-}
\ No newline at end of file
diff --git a/site/gatsby-site/cypress/fixtures/incidents/updateIncident50.json b/site/gatsby-site/cypress/fixtures/incidents/updateIncident50.json
deleted file mode 100644
index 0c4182d1ef..0000000000
--- a/site/gatsby-site/cypress/fixtures/incidents/updateIncident50.json
+++ /dev/null
@@ -1,998 +0,0 @@
-{
- "data": {
- "updateOneIncident": {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "the-dao",
- "name": "The DAO"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "the-dao",
- "name": "The DAO"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "dao-token-holders",
- "name": "DAO Token Holders"
- }
- ],
- "__typename": "Incident",
- "date": "2016-06-17",
- "description": "On June 18, 2016, an attacker successfully exploited a vulnerability in The Decentralized Autonomous Organization (The DAO) on the Ethereum blockchain to steal 3.7M Ether valued at $70M.",
- "editor_dissimilar_incidents": [],
- "editor_notes": null,
- "editor_similar_incidents": [],
- "editors": [
- {
- "__typename": "User",
- "first_name": "Sean",
- "last_name": "McGregor",
- "userId": "619b47ea5eed5334edfa3bbc"
- }
- ],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [
- 905,
- 903,
- 902,
- 901,
- 900,
- 899,
- 898,
- 897,
- 896,
- 893,
- 892,
- 889,
- 888,
- 887,
- 886,
- 885,
- 884,
- 883,
- 881,
- 880,
- 879,
- 878,
- 877,
- 876
- ],
- "vector": [
- -0.0661667212843895,
- 0.09495183080434799,
- 0.010774415917694569,
- -0.0843186303973198,
- 0.07742074877023697,
- 0.002700377954170108,
- -0.0008173985406756401,
- 0.057413578033447266,
- 0.09605775028467178,
- -0.1488141417503357,
- 0.004636809695512056,
- 0.05968795344233513,
- 0.021845035254955292,
- -0.0762571468949318,
- 0.04533643648028374,
- -0.09069175273180008,
- -0.15813405811786652,
- -0.022130673751235008,
- -0.042528972029685974,
- -0.10905041545629501,
- -0.07701637595891953,
- 0.012940806336700916,
- 0.018910806626081467,
- 0.11774744838476181,
- -0.04104795679450035,
- 0.04697092995047569,
- 0.12957395613193512,
- 0.12819425761699677,
- -0.058150216937065125,
- 0.06893474608659744,
- -0.018372666090726852,
- -0.09186699986457825,
- 0.15362109243869781,
- 0.028102269396185875,
- 0.025071216747164726,
- 0.09713421016931534,
- 0.01256798580288887,
- -0.01616877131164074,
- -0.041066594421863556,
- -0.017975831404328346,
- 0.044571682810783386,
- 0.2357323318719864,
- -0.03317007049918175,
- -0.027484485879540443,
- 0.05428558960556984,
- -0.04763684794306755,
- -1.0566697710601147e-05,
- 0.04871894046664238,
- 0.0070588416419923306,
- 0.004973179195076227,
- -0.026652388274669647,
- -0.008015204221010208,
- -0.07091150432825089,
- 0.033345308154821396,
- -0.09143518656492233,
- 0.061592280864715576,
- 0.03615380451083183,
- 0.03313060477375984,
- 0.07367609441280365,
- -0.04913125932216644,
- -0.01810459792613983,
- -0.20834849774837494,
- -0.05211314558982849,
- -0.03780398145318031,
- 0.08887007087469101,
- -0.08282432705163956,
- -0.02316044457256794,
- 0.03807034716010094,
- 0.003166689770296216,
- 0.048870425671339035,
- 0.053769540041685104,
- -0.029292000457644463,
- -0.002758365822955966,
- 0.035534992814064026,
- 0.01716659404337406,
- -0.009857158176600933,
- -0.01820841059088707,
- 0.1924063116312027,
- -0.10551274567842484,
- 0.015695957466959953,
- 0.08622416853904724,
- -0.09239751845598221,
- 0.3837597668170929,
- -3.496369390632026e-05,
- -0.06069179251790047,
- -0.02606315352022648,
- 0.12018977850675583,
- 0.0050528384745121,
- 0.03152324631810188,
- 0.0403270348906517,
- -0.025558656081557274,
- 0.04960830882191658,
- -0.05975503847002983,
- -0.03103153593838215,
- 0.05772930011153221,
- 0.0396592952311039,
- -0.0018726816633716226,
- 0.0107951695099473,
- -0.025373486801981926,
- -0.028895430266857147,
- 0.024420717731118202,
- -0.07865981012582779,
- 0.10167545080184937,
- 0.08524877578020096,
- -0.05940742790699005,
- -0.006057963240891695,
- 0.06243671104311943,
- -0.056733157485723495,
- 0.06139994040131569,
- -0.07574266940355301,
- 0.0216194037348032,
- -0.007321906741708517,
- 0.05265502631664276,
- -0.025458944961428642,
- 0.02595309354364872,
- -0.015414812602102757,
- 0.02327638864517212,
- 0.03251353278756142,
- 0.06957828998565674,
- 0.049125488847494125,
- -0.023909522220492363,
- 0.057829465717077255,
- 0.036426953971385956,
- -0.07245929539203644,
- 0.007933235727250576,
- -0.059332478791475296,
- -0.0435311533510685,
- -0.047337573021650314,
- -0.04053480550646782,
- 0.03915426507592201,
- -0.06534258276224136,
- -0.2260957807302475,
- 0.015165231190621853,
- 0.060068678110837936,
- -0.0034208225551992655,
- -0.026531696319580078,
- 0.04104552045464516,
- -0.07288438826799393,
- 0.018118413165211678,
- -0.014951043762266636,
- -0.049901094287633896,
- 0.0704021230340004,
- -0.017830973491072655,
- 0.051336515694856644,
- 0.13087646663188934,
- 0.04126317426562309,
- -0.06066800281405449,
- -0.03640735521912575,
- 0.0299614816904068,
- -0.02631322294473648,
- 0.10236970335245132,
- -0.1225552037358284,
- -0.027694450691342354,
- -0.026750773191452026,
- -0.022465072572231293,
- 0.6963229775428772,
- 0.06071530655026436,
- 0.1349962204694748,
- 0.0029604679439216852,
- -0.010627356357872486,
- 0.1805461049079895,
- 0.009208586066961288,
- 0.06478998810052872,
- -0.04796625301241875,
- -0.05369967222213745,
- 0.03317221999168396,
- -0.07248315960168839,
- -0.04857209697365761,
- 0.021922463551163673,
- -0.014980182982981205,
- 0.07153782248497009,
- 0.033672574907541275,
- 0.08822420984506607,
- -0.009559323079884052,
- -0.08002188056707382,
- -0.02796768955886364,
- 0.04889626428484917,
- -0.002079806989058852,
- -0.12316332012414932,
- -0.00598991708829999,
- 0.04790058732032776,
- 0.08986284583806992,
- -0.06529728323221207,
- 0.0019114370224997401,
- -0.03926361724734306,
- 0.043254926800727844,
- -0.016697514802217484,
- 0.06446542590856552,
- -0.015036128461360931,
- 0.048525601625442505,
- 0.022319965064525604,
- 0.04527026414871216,
- -0.020831571891903877,
- -0.08953225612640381,
- -0.006588423624634743,
- 0.1359531283378601,
- -0.002234226791188121,
- -0.030231744050979614,
- 0.1041426882147789,
- -0.11253884434700012,
- 0.0400945320725441,
- 0.0055610924027860165,
- 0.19018787145614624,
- -0.17008160054683685,
- 0.021101707592606544,
- -0.00634838966652751,
- -0.013233933597803116,
- 0.043402597308158875,
- 0.0033622318878769875,
- -0.06131330132484436,
- -0.056475479155778885,
- 0.0574350506067276,
- 0.015077848918735981,
- 0.034125734120607376,
- 0.07870019972324371,
- -0.027285316959023476,
- 0.05490930378437042,
- 0.05595440790057182,
- 0.019953204318881035,
- -0.047013092786073685,
- 0.061499033123254776,
- 0.02760140411555767,
- -0.006400404032319784,
- -0.01763268932700157,
- -0.01890098862349987,
- 0.0064741335809230804,
- 0.03504158556461334,
- 0.001586462720297277,
- 0.06483786553144455,
- -0.0428876094520092,
- -0.032916028052568436,
- 0.01864536665380001,
- 0.06462439149618149,
- 0.0023124387953430414,
- 0.08506456017494202,
- -0.06751906871795654,
- -0.027384648099541664,
- -0.037361446768045425,
- -0.02647651731967926,
- 0.05260567367076874,
- -0.014446704648435116,
- 0.06518206745386124,
- 0.08603981137275696,
- 0.09696471691131592,
- 0.0062536210753023624,
- 0.048122942447662354,
- 0.017186813056468964,
- 0.026083774864673615,
- 0.019874846562743187,
- 0.07057034224271774,
- -0.02904350310564041,
- -0.05003984272480011,
- -0.01425819844007492,
- -0.001251187059096992,
- 0.04657392203807831,
- 0.007774615194648504,
- -0.09506087750196457,
- -0.020778952166438103,
- -0.07087522745132446,
- -0.024529092013835907,
- -0.0887717679142952,
- -0.060240041464567184,
- 0.020624155178666115,
- 0.046308714896440506,
- -0.040538158267736435,
- -0.09442443400621414,
- -0.06354733556509018,
- 0.006772881373763084,
- 0.06922020763158798,
- -0.00778896315023303,
- -0.021353259682655334,
- -0.124875009059906,
- 0.004535881336778402,
- -0.06257758289575577,
- 0.036274638026952744,
- 0.006892743986099958,
- -0.021391555666923523,
- -0.015682250261306763,
- -0.04881167784333229,
- 0.01879616267979145,
- -0.014313933439552784,
- -0.002905568340793252,
- -0.07575004547834396,
- -0.06220642849802971,
- -0.032436590641736984,
- -0.006158924195915461,
- -0.002058455953374505,
- -0.05558959022164345,
- -0.005457794759422541,
- 0.04193447530269623,
- 0.063014455139637,
- -0.027310015633702278,
- -0.03688542917370796,
- 0.0466887503862381,
- -0.012773402035236359,
- -0.009203986264765263,
- 0.08859669417142868,
- -0.016090862452983856,
- 0.02242548018693924,
- -0.02983110584318638,
- -0.07793480902910233,
- -0.033489566296339035,
- 0.01613295078277588,
- -0.03415980935096741,
- 0.03627980500459671,
- -0.016666151583194733,
- 0.025052055716514587,
- -0.03267792984843254,
- 0.020628737285733223,
- 0.03692276030778885,
- -0.02742244303226471,
- -0.09069464355707169,
- -0.04986213520169258,
- 0.1718524694442749,
- 0.00028678213129751384,
- -0.0322076715528965,
- 0.02312176674604416,
- -0.06042476370930672,
- 0.05028273165225983,
- -0.00551630137488246,
- 0.012767993845045567,
- 0.032750293612480164,
- 0.10601982474327087,
- -0.0063768420368433,
- 0.033016130328178406,
- 0.05911942943930626,
- -0.0034290996845811605,
- 0.04406482353806496,
- 0.06185388192534447,
- 0.4226973056793213,
- -0.1968797892332077,
- 0.0842713937163353,
- 0.10632825642824173,
- 0.0010914724553003907,
- 0.039177585393190384,
- -0.0801040455698967,
- 0.04901694133877754,
- 0.08682584017515182,
- 0.10728341341018677,
- 0.13156089186668396,
- -0.018922606483101845,
- 0.019393766298890114,
- -0.04106520488858223,
- 0.08649475127458572,
- -0.029056930914521217,
- -0.0071672541089355946,
- -0.018303148448467255,
- -0.06217241659760475,
- -0.004366402048617601,
- 0.047536689788103104,
- -0.031071506440639496,
- -0.00480313366279006,
- -0.0061461725272238255,
- -0.055548787117004395,
- 0.00788793247193098,
- 0.057616639882326126,
- 0.031225956976413727,
- 0.01318689901381731,
- 0.015787797048687935,
- -0.019895801320672035,
- 0.03961948677897453,
- 0.025899363681674004,
- 0.014753241091966629,
- -0.1348978728055954,
- 0.03202307969331741,
- -0.05162663385272026,
- -0.13509045541286469,
- 0.09003769606351852,
- -0.003307627746835351,
- 0.05749477818608284,
- 0.06454337388277054,
- -0.021481366828083992,
- 0.028288818895816803,
- -0.026615282520651817,
- -0.026294425129890442,
- 0.008199688978493214,
- 0.06729302555322647,
- 0.025896921753883362,
- 0.07375463098287582,
- 0.16271694004535675,
- -0.041269026696681976,
- -0.015906035900115967,
- -0.08949262648820877,
- 0.05659450963139534,
- 0.13324247300624847,
- -0.0464564673602581,
- -0.005015434231609106,
- -0.001693259458988905,
- -0.002847062423825264,
- -0.013766842894256115,
- -0.07604783028364182,
- -0.05830862745642662,
- -0.02066342532634735,
- -0.06560307741165161,
- 0.08522600680589676,
- 0.04107437655329704,
- -0.04214470461010933,
- -0.14534230530261993,
- -0.011104445904493332,
- -0.032366808503866196,
- 0.03278728947043419,
- 0.11380184441804886,
- -0.0666615441441536,
- 0.040425315499305725,
- -0.005399531219154596,
- 0.014014272950589657,
- 0.023620227351784706,
- -0.07893305271863937,
- -0.009794498793780804,
- -0.08585638552904129,
- 0.03401630371809006,
- 0.07119400054216385,
- 0.06484425067901611,
- -0.04560472443699837,
- 0.10027354955673218,
- -0.09807371348142624,
- 0.09029466658830643,
- -0.00776924192905426,
- -0.05461972951889038,
- 0.048991065472364426,
- -0.039878834038972855,
- 0.019989730790257454,
- 0.019362283870577812,
- -0.04829762503504753,
- 0.06533920019865036,
- -0.017562834545969963,
- -0.05175589397549629,
- -0.07299955189228058,
- -0.07298615574836731,
- -0.04072772338986397,
- -0.09242146462202072,
- 0.07381884753704071,
- -0.06534093618392944,
- 0.0010574118932709098,
- -0.020853906869888306,
- -0.040836818516254425,
- -0.012832515873014927,
- 0.02487863413989544,
- 0.03318801149725914,
- -0.15873613953590393,
- -0.055572014302015305,
- -0.021044636145234108,
- 0.03568285331130028,
- 0.017814001068472862,
- -0.0451168566942215,
- 0.005319114774465561,
- 0.057521238923072815,
- 0.034872833639383316,
- 0.03899437189102173,
- 0.023746006190776825,
- -0.051500916481018066,
- 0.059377770870923996,
- -0.14109168946743011,
- -0.3940942585468292,
- 0.04678523913025856,
- 0.006228484213352203,
- 0.02189958095550537,
- -0.015611437149345875,
- -0.05416549742221832,
- 0.05052398517727852,
- 0.0026056349743157625,
- -0.03473886474967003,
- 0.0980633795261383,
- -0.07380123436450958,
- 0.017081940546631813,
- -0.061888162046670914,
- -0.060919493436813354,
- -0.02053762413561344,
- -0.07007520645856857,
- -0.049346838146448135,
- 0.041981007903814316,
- 0.025222048163414,
- -0.06693807244300842,
- -0.08524662256240845,
- 0.06733603030443192,
- -0.021311646327376366,
- -0.003399507375434041,
- 0.0076775881461799145,
- 0.024136727675795555,
- -0.07568683475255966,
- -0.06720703840255737,
- -0.016028104349970818,
- 0.061864208430051804,
- 0.03237927332520485,
- -0.07795371860265732,
- -0.005399972666054964,
- 0.038687314838171005,
- 0.003363342024385929,
- 0.10057994723320007,
- 0.003988614305853844,
- -0.015340202488005161,
- -0.08878466486930847,
- 0.0977032408118248,
- 0.06695879250764847,
- 0.18500442802906036,
- -0.01678348518908024,
- 0.006111804861575365,
- 0.004242830444127321,
- 0.11370434612035751,
- 0.03940612077713013,
- 0.013183747418224812,
- -0.030457524582743645,
- 0.01693480648100376,
- -0.018341096118092537,
- -0.013356991112232208,
- 0.09827983379364014,
- -0.05066269263625145,
- -0.027613507583737373,
- 0.01687728427350521,
- -0.01242680475115776,
- -0.023277008906006813,
- -0.03319449722766876,
- 0.21616916358470917,
- 0.03379783406853676,
- 0.042088836431503296,
- 0.017735781148076057,
- -0.03290579095482826,
- 0.017938842996954918,
- -0.10539724677801132,
- -0.11517835408449173,
- -0.013451620005071163,
- 0.000374626339180395,
- 0.021733524277806282,
- -0.05304350331425667,
- -0.09813041239976883,
- -0.027155568823218346,
- 0.013767196796834469,
- -0.01930530183017254,
- 0.10336603969335556,
- -0.021463418379426003,
- 0.03581016883254051,
- -0.06046905741095543,
- 0.13518653810024261,
- 0.031003080308437347,
- 0.017072312533855438,
- 0.011110997758805752,
- 0.0667453482747078,
- 0.04917195439338684,
- -0.0021193886641412973,
- -0.051941823214292526,
- -0.05759355053305626,
- 0.020791461691260338,
- 0.13696010410785675,
- -0.04596574977040291,
- 0.1332692801952362,
- 0.02513316459953785,
- -0.009932330809533596,
- -0.054872483015060425,
- 0.03171728178858757,
- 0.013050459325313568,
- -0.003947978373616934,
- -0.44521331787109375,
- -0.05231727287173271,
- 0.1282065063714981,
- -0.030108973383903503,
- 0.025894753634929657,
- 0.09331361204385757,
- 0.03157180920243263,
- -0.07923457771539688,
- -0.030358143150806427,
- -0.05153513327240944,
- 0.11359219998121262,
- 0.010586780495941639,
- 0.06787595897912979,
- -0.13399849832057953,
- 0.02302604913711548,
- 0.08097248524427414,
- -0.043132904917001724,
- -0.01535704080015421,
- 0.05189881846308708,
- -0.2099890559911728,
- -0.004585218150168657,
- -0.05359213426709175,
- 0.11603052169084549,
- 0.019611136987805367,
- 0.03128006309270859,
- 0.09810841828584671,
- -0.06763505190610886,
- 0.02503429353237152,
- 0.054650451987981796,
- 0.002728505292907357,
- 0.06416928023099899,
- 0.006461964920163155,
- -0.02583378739655018,
- 0.10828322172164917,
- 0.08189579099416733,
- 0.03860188275575638,
- -0.03500935435295105,
- 12.041316986083984,
- 0.07135587930679321,
- 0.07587986439466476,
- -0.07815652340650558,
- 0.01789211481809616,
- -0.06088171899318695,
- 0.042837608605623245,
- -0.08220500499010086,
- 0.0217966940253973,
- 0.1364554613828659,
- 0.0007437678868882358,
- -0.04616783931851387,
- -0.029968850314617157,
- -0.07923655956983566,
- 0.03229570388793945,
- -0.02203737199306488,
- -0.04797447845339775,
- -0.0020305009093135595,
- 0.024356653913855553,
- -0.03915480151772499,
- -0.06702367961406708,
- 0.013569020666182041,
- 0.07913649827241898,
- -0.0034444101620465517,
- -0.04820480942726135,
- 0.028118645772337914,
- 0.02363363839685917,
- -0.016757983714342117,
- -0.01822235994040966,
- 0.06246187165379524,
- -0.02062375284731388,
- 0.0004203618736937642,
- 0.03233122453093529,
- -0.030118217691779137,
- 0.06812857836484909,
- 0.06541542708873749,
- 0.0953434482216835,
- 0.03266927972435951,
- 0.0185119416564703,
- 0.04870273172855377,
- 0.020875677466392517,
- 0.005300997290760279,
- 0.02631889097392559,
- 0.06798504292964935,
- 0.05154086649417877,
- 0.015005327761173248,
- 0.017745381221175194,
- 0.12363690137863159,
- 0.013060785830020905,
- 0.08051296323537827,
- 0.09826701134443283,
- -0.01794828288257122,
- 0.11512423306703568,
- 0.022138921543955803,
- -0.016594456508755684,
- 0.013868294656276703,
- 0.006469572428613901,
- -0.09581004828214645,
- 0.12190597504377365,
- 0.05028713122010231,
- -0.046826597303152084,
- 0.10982882231473923,
- 0.025811506435275078,
- 0.11328303813934326,
- 0.014556948095560074,
- 0.08173282444477081,
- 0.0457267165184021,
- 0.07863391190767288,
- -0.14725281298160553,
- -0.07506497949361801,
- 0.023782463744282722,
- -0.07605893164873123,
- -0.08246233314275742,
- 0.08330795168876648,
- 0.10566451400518417,
- -0.04493102803826332,
- 0.07607607543468475,
- -0.04333483800292015,
- 0.003520787926390767,
- -0.05823725461959839,
- 0.009233443066477776,
- 0.024135639891028404,
- -0.03351334109902382,
- 0.042286068201065063,
- 0.04909465089440346,
- 0.033163342624902725,
- 0.08282016962766647,
- 0.07227231562137604,
- 0.046822961419820786,
- -0.05663175508379936,
- -0.0007530542206950486,
- 0.10325410962104797,
- -0.006014158949255943,
- -0.05423947051167488,
- 0.003947563003748655,
- -0.04840860143303871,
- 0.0478232316672802,
- -0.1463749259710312,
- 0.068173848092556,
- 0.08410429209470749,
- -0.05504782497882843,
- -0.023465273901820183,
- -0.028513863682746887,
- 0.04851672425866127,
- 0.0020922934636473656,
- 0.03378622606396675,
- -0.05709858611226082,
- 0.0017180262366309762,
- 0.010725595988333225,
- 0.0572512112557888,
- -0.02881232462823391,
- 0.10155069082975388,
- 0.07183052599430084,
- -0.04418819025158882,
- 0.07062981277704239,
- 0.05435023829340935,
- -0.03762836754322052,
- -0.018741268664598465,
- 0.04699109122157097,
- 0.0607602559030056,
- -0.05994049087166786,
- -0.02827439457178116,
- -0.02400636114180088,
- -0.051030974835157394,
- -0.03479217365384102,
- -0.03554803878068924,
- -0.015273932367563248,
- 6.777645467082039e-05,
- -0.024866431951522827,
- -0.024908997118473053,
- 0.04018652066588402,
- 0.061754241585731506,
- 0.062193069607019424,
- -0.0466693639755249,
- 0.039988692849874496,
- -0.06996554136276245,
- -0.034812234342098236,
- 0.04701513424515724,
- 0.05103026703000069,
- 0.0690593495965004,
- -0.0636117234826088,
- -0.045921146869659424,
- -0.05381940305233002,
- -0.13033494353294373,
- 0.02399160899221897,
- 0.09703382849693298,
- 0.05136001110076904,
- 0.02009364403784275,
- 0.0055291480384767056,
- -0.06774132698774338,
- -0.05190951004624367,
- 0.0539257638156414,
- 0.10736360400915146,
- 0.02136417292058468,
- 0.04460662975907326,
- -0.052776917815208435,
- -0.029110541567206383,
- 0.10957958549261093,
- -0.05377667769789696,
- 0.013081823475658894,
- -0.005934875924140215,
- -0.04737425222992897,
- 0.07549577951431274,
- 0.13798557221889496,
- 0.013311639428138733,
- 0.04293627664446831,
- 0.06811729818582535,
- -0.006506450939923525,
- 0.04009142145514488,
- -0.009688236750662327,
- 0.016802940517663956,
- -0.02174876444041729,
- -0.0929674506187439,
- -0.05609692260622978,
- 0.03033480793237686,
- 0.11118770390748978,
- 0.03098963014781475,
- -0.13081684708595276,
- -0.01888337731361389,
- -0.042367786169052124
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 50,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 38,
- "similarity": 0.9988240599632263
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 6,
- "similarity": 0.9987120628356934
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 26,
- "similarity": 0.9986885786056519
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "report_number": 905
- },
- {
- "__typename": "Report",
- "report_number": 903
- },
- {
- "__typename": "Report",
- "report_number": 902
- },
- {
- "__typename": "Report",
- "report_number": 901
- },
- {
- "__typename": "Report",
- "report_number": 900
- },
- {
- "__typename": "Report",
- "report_number": 899
- },
- {
- "__typename": "Report",
- "report_number": 898
- },
- {
- "__typename": "Report",
- "report_number": 897
- },
- {
- "__typename": "Report",
- "report_number": 896
- },
- {
- "__typename": "Report",
- "report_number": 893
- },
- {
- "__typename": "Report",
- "report_number": 892
- },
- {
- "__typename": "Report",
- "report_number": 889
- },
- {
- "__typename": "Report",
- "report_number": 888
- },
- {
- "__typename": "Report",
- "report_number": 887
- },
- {
- "__typename": "Report",
- "report_number": 886
- },
- {
- "__typename": "Report",
- "report_number": 885
- },
- {
- "__typename": "Report",
- "report_number": 884
- },
- {
- "__typename": "Report",
- "report_number": 883
- },
- {
- "__typename": "Report",
- "report_number": 881
- },
- {
- "__typename": "Report",
- "report_number": 880
- },
- {
- "__typename": "Report",
- "report_number": 879
- },
- {
- "__typename": "Report",
- "report_number": 878
- },
- {
- "__typename": "Report",
- "report_number": 877
- },
- {
- "__typename": "Report",
- "report_number": 876
- },
- {
- "__typename": "Report",
- "report_number": 25
- },
- {
- "__typename": "Report",
- "report_number": 24
- },
- {
- "__typename": "Report",
- "report_number": 23
- },
- {
- "__typename": "Report",
- "report_number": 22
- },
- {
- "__typename": "Report",
- "report_number": 21
- },
- {
- "__typename": "Report",
- "report_number": 20
- },
- {
- "__typename": "Report",
- "report_number": 19
- },
- {
- "__typename": "Report",
- "report_number": 18
- },
- {
- "__typename": "Report",
- "report_number": 17
- },
- {
- "__typename": "Report",
- "report_number": 16
- }
- ],
- "title": "The DAO Hack"
- }
- }
-}
diff --git a/site/gatsby-site/cypress/fixtures/incidents/updateOneIncident.json b/site/gatsby-site/cypress/fixtures/incidents/updateOneIncident.json
deleted file mode 100644
index dc203924d2..0000000000
--- a/site/gatsby-site/cypress/fixtures/incidents/updateOneIncident.json
+++ /dev/null
@@ -1,82 +0,0 @@
-{
- "data": {
- "updateOneIncident": {
- "__typename": "Incident",
- "title": "Test Incident",
- "description": "This is a test description",
- "date": "2015-05-19",
- "nlp_similar_incidents": [],
- "incident_id": 1,
- "editors": [],
- "editor_notes": "This is a test",
- "embedding": {
- "from_reports": [1, 2, 3],
- "vector": [-0.023964308202266693, 0.05607481673359871, -0.00004077623088960536]
- },
- "reports": [
- {
- "__typename": "Report",
- "report_number": 1
- },
- {
- "__typename": "Report",
- "report_number": 2
- },
- {
- "__typename": "Report",
- "report_number": 3
- },
- {
- "__typename": "Report",
- "report_number": 4
- },
- {
- "__typename": "Report",
- "report_number": 5
- },
- {
- "__typename": "Report",
- "report_number": 6
- },
- {
- "__typename": "Report",
- "report_number": 7
- },
- {
- "__typename": "Report",
- "report_number": 8
- },
- {
- "__typename": "Report",
- "report_number": 9
- },
- {
- "__typename": "Report",
- "report_number": 10
- },
- {
- "__typename": "Report",
- "report_number": 11
- },
- {
- "__typename": "Report",
- "report_number": 12
- },
- {
- "__typename": "Report",
- "report_number": 14
- },
- {
- "__typename": "Report",
- "report_number": 15
- }
- ],
- "AllegedDeployerOfAISystem": [],
- "AllegedDeveloperOfAISystem": [],
- "AllegedHarmedOrNearlyHarmedParties": [],
- "editor_similar_incidents": [],
- "editor_dissimilar_incidents": [],
- "flagged_dissimilar_incidents": []
- }
- }
-}
diff --git a/site/gatsby-site/cypress/fixtures/incidents/updateOneIncident112.json b/site/gatsby-site/cypress/fixtures/incidents/updateOneIncident112.json
deleted file mode 100644
index 12d08ee070..0000000000
--- a/site/gatsby-site/cypress/fixtures/incidents/updateOneIncident112.json
+++ /dev/null
@@ -1,95 +0,0 @@
-{
- "data": {
- "updateOneIncident": {
- "__typename": "Incident",
- "date": "2015-05-19",
- "epoch_date_modified": 1623936000,
- "incident_id": 112,
- "nlp_similar_incidents": [],
- "title": "Test title",
- "AllegedDeployerOfAISystem": [
- {
- "entity_id": "youtube",
- "name": "YouTube"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "entity_id": "youtube",
- "name": "YouTube"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "entity_id": "google",
- "name": "Google"
- }
- ],
- "description": "YouTube’s content filtering and recommendation algorithms exposed children to disturbing and inappropriate videos.",
- "editors": [],
- "editor_notes": "",
- "editor_similar_incidents": [],
- "editor_dissimilar_incidents": [],
- "flagged_dissimilar_incidents": [],
- "embedding": [],
- "reports": [
- {
- "__typename": "Report",
- "report_number": 1
- },
- {
- "__typename": "Report",
- "report_number": 2
- },
- {
- "__typename": "Report",
- "report_number": 3
- },
- {
- "__typename": "Report",
- "report_number": 4
- },
- {
- "__typename": "Report",
- "report_number": 5
- },
- {
- "__typename": "Report",
- "report_number": 6
- },
- {
- "__typename": "Report",
- "report_number": 7
- },
- {
- "__typename": "Report",
- "report_number": 8
- },
- {
- "__typename": "Report",
- "report_number": 9
- },
- {
- "__typename": "Report",
- "report_number": 10
- },
- {
- "__typename": "Report",
- "report_number": 11
- },
- {
- "__typename": "Report",
- "report_number": 12
- },
- {
- "__typename": "Report",
- "report_number": 14
- },
- {
- "__typename": "Report",
- "report_number": 15
- }
- ]
- }
- }
-}
diff --git a/site/gatsby-site/cypress/fixtures/incidents/updateOneIncidentFlagged.json b/site/gatsby-site/cypress/fixtures/incidents/updateOneIncidentFlagged.json
deleted file mode 100644
index 96d29ac87e..0000000000
--- a/site/gatsby-site/cypress/fixtures/incidents/updateOneIncidentFlagged.json
+++ /dev/null
@@ -1,898 +0,0 @@
-{
- "data": {
- "updateOneIncident": {
- "AllegedDeployerOfAISystem": [
- {
- "entity_id": "youtube",
- "name": "YouTube"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "entity_id": "youtube",
- "name": "YouTube"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "entity_id": "children",
- "name": "Children"
- }
- ],
- "__typename": "Incident",
- "date": "2015-05-19",
- "description": "YouTube’s content filtering and recommendation algorithms exposed children to disturbing and inappropriate videos.",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "editors": [{"userId": "1", "first_name": "Sean", "last_name": "McGregor"}],
- "editor_notes": "Notes",
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [
- 8,
- 4,
- 2,
- 6,
- 3,
- 1,
- 15,
- 14,
- 7,
- 9,
- 11,
- 5,
- 10,
- 12
- ],
- "vector": [
- -0.06751111149787903,
- 0.06833232194185257,
- 0.010899675078690052,
- -0.1141943484544754,
- 0.10080315172672272,
- 0.01041362900286913,
- 0.004443523474037647,
- 0.06500855833292007,
- 0.06018650531768799,
- -0.12926925718784332,
- 0.032988499850034714,
- 0.08060640841722488,
- 0.016019538044929504,
- -0.08831886947154999,
- 0.03878483548760414,
- -0.056356046348810196,
- -0.11832374334335327,
- -0.061912901699543,
- 0.00044723687460646033,
- -0.13217340409755707,
- -0.06828062236309052,
- 0.005839996039867401,
- 0.04001348838210106,
- 0.1130295842885971,
- -0.06357292085886002,
- 0.015788035467267036,
- 0.0938146561384201,
- 0.14007553458213806,
- -0.006976238451898098,
- 0.02674410305917263,
- -0.024702386930584908,
- -0.060499805957078934,
- 0.09834303706884384,
- 0.028151435777544975,
- -0.003724640468135476,
- 0.07607823610305786,
- 0.026787251234054565,
- -0.034132473170757294,
- -0.053497880697250366,
- -0.006818083580583334,
- 0.03357214853167534,
- 0.2392258495092392,
- -0.01522007118910551,
- -0.04272773489356041,
- 0.05436471104621887,
- -0.033676136285066605,
- 0.008932373486459255,
- 0.021447274833917618,
- -0.01526916678994894,
- 0.018386078998446465,
- -0.004120422061532736,
- 0.045311231166124344,
- -0.04808126017451286,
- 0.03301524370908737,
- -0.13022664189338684,
- 0.0739666223526001,
- 0.059854477643966675,
- -0.0072577702812850475,
- 0.0048950170166790485,
- -0.06400027871131897,
- -0.05337051302194595,
- -0.2183171659708023,
- -0.004998120479285717,
- -0.05138816311955452,
- 0.07542525231838226,
- -0.06747041642665863,
- -0.023869697004556656,
- 0.03969760984182358,
- 0.02445111609995365,
- 0.08581807464361191,
- 0.06814367324113846,
- -0.04185875877737999,
- -0.03961445763707161,
- 0.023705054074525833,
- 0.008248405531048775,
- -0.07232844084501266,
- 0.058500949293375015,
- 0.20375311374664307,
- -0.12462537735700607,
- -0.007715493440628052,
- 0.12739452719688416,
- -0.07659653574228287,
- 0.399318128824234,
- 0.005340586882084608,
- -0.0035068041179329157,
- 0.011667273938655853,
- 0.057709138840436935,
- 0.009511681273579597,
- 0.029707204550504684,
- 0.033682581037282944,
- -0.029148587957024574,
- 0.019796648994088173,
- -0.08744984865188599,
- -0.019982142373919487,
- 0.07410560548305511,
- 0.017671674489974976,
- -0.06110009923577309,
- -0.025912797078490257,
- 0.006488392595201731,
- -0.0646391361951828,
- 0.0131051791831851,
- -0.030177459120750427,
- 0.09472082555294037,
- 0.12158668786287308,
- -0.0433499850332737,
- 0.0101811857894063,
- 0.08442790061235428,
- -0.03529804199934006,
- 0.04516928642988205,
- -0.06753674894571304,
- 0.01851566508412361,
- -0.0022945713717490435,
- 0.06124957278370857,
- -0.019099414348602295,
- 0.03850109502673149,
- -0.02109062857925892,
- 0.02649538218975067,
- 0.062046486884355545,
- 0.09004365652799606,
- 0.06856346875429153,
- 0.033803727477788925,
- 0.051028911024332047,
- 0.053875088691711426,
- -0.059690915048122406,
- -0.014724021777510643,
- -0.03732502460479736,
- -0.06891216337680817,
- -0.019345002248883247,
- -0.028079630807042122,
- 0.05517822504043579,
- -0.03237510845065117,
- -0.21407906711101532,
- 0.011020176112651825,
- 0.07791819423437119,
- -0.005589810200035572,
- -0.023210937157273293,
- -0.0006834408268332481,
- -0.07203776389360428,
- 0.02977374568581581,
- -0.0282851941883564,
- -0.03804128244519234,
- 0.04580365866422653,
- 0.042382050305604935,
- 0.0624740794301033,
- 0.11983799934387207,
- 0.06592465937137604,
- -0.04777733236551285,
- -0.028617989271879196,
- -0.010432593524456024,
- -0.025620754808187485,
- 0.1340397596359253,
- -0.1234222874045372,
- -0.05250753089785576,
- -0.024475963786244392,
- -0.011878431774675846,
- 0.7158257365226746,
- 0.13809804618358612,
- 0.1790991723537445,
- 0.012203633785247803,
- -0.005702610593289137,
- 0.18286240100860596,
- -0.012297024019062519,
- 0.026955831795930862,
- -0.08516968041658401,
- -0.08060626685619354,
- 0.005017218645662069,
- -0.05450236797332764,
- -0.05015072226524353,
- 0.015251747332513332,
- 0.00537919020280242,
- 0.08517521619796753,
- 0.027782384306192398,
- 0.08666928112506866,
- 0.008960898034274578,
- -0.13210484385490417,
- -0.05779949575662613,
- 0.05018134042620659,
- -0.010647958144545555,
- -0.13695164024829865,
- -0.027771811932325363,
- 0.05150548368692398,
- 0.11699623614549637,
- -0.07711777836084366,
- 0.013236366212368011,
- -0.08345691859722137,
- 0.04666563495993614,
- -0.03792157769203186,
- 0.056029062718153,
- -0.0348258912563324,
- 0.037581123411655426,
- 0.030298050493001938,
- 0.0075138467364013195,
- 0.018439840525388718,
- -0.07718020677566528,
- 0.010858790017664433,
- 0.13200680911540985,
- -0.009125451557338238,
- -0.025015002116560936,
- 0.03971810266375542,
- -0.09030832350254059,
- 0.04492773860692978,
- 0.042199913412332535,
- 0.15621386468410492,
- -0.12556049227714539,
- -0.027194801717996597,
- -0.016787255182862282,
- -0.02714703604578972,
- 0.04927260801196098,
- -0.028628593310713768,
- -0.07970613241195679,
- -0.049315858632326126,
- 0.07168067991733551,
- 0.011337504722177982,
- 0.07918159663677216,
- 0.03366359323263168,
- -0.04004121571779251,
- 0.04816044494509697,
- 0.10558205842971802,
- 0.007133524399250746,
- -0.002612150739878416,
- 0.06350519508123398,
- 0.03574853017926216,
- -0.0598721019923687,
- -0.03840963914990425,
- 0.0015659868950024247,
- 0.06949596852064133,
- 0.033102914690971375,
- -0.021990062668919563,
- 0.061066411435604095,
- 0.05190804973244667,
- -0.025544852018356323,
- 0.03303765878081322,
- 0.025902168825268745,
- 0.012357489205896854,
- 0.08913643658161163,
- -0.06669402122497559,
- -0.05167621374130249,
- -0.025445496663451195,
- -0.028500333428382874,
- 0.037685662508010864,
- -0.029687877744436264,
- 0.10330115258693695,
- 0.08765925467014313,
- 0.04571971669793129,
- 0.04460557550191879,
- 0.00851842574775219,
- 0.06369432061910629,
- 0.016736486926674843,
- -0.008043179288506508,
- 0.0617452934384346,
- -0.01771087758243084,
- -0.0420556478202343,
- -0.05382009595632553,
- 0.030562059953808784,
- 0.030627688392996788,
- 0.024923931807279587,
- -0.07219066470861435,
- -0.03554943948984146,
- -0.021678028628230095,
- -0.05689859017729759,
- -0.09916865825653076,
- -0.02484963834285736,
- 0.025788361206650734,
- 0.060430027544498444,
- -0.04168326407670975,
- -0.10055224597454071,
- -0.09495048969984055,
- -0.0014290763065218925,
- 0.07926061004400253,
- -0.04331298917531967,
- -0.026174787431955338,
- -0.11835215985774994,
- 0.026642531156539917,
- -0.0405084528028965,
- 0.04630076140165329,
- -0.0018020307179540396,
- 0.009858553297817707,
- 0.012842164374887943,
- -0.07354587316513062,
- 0.04929225519299507,
- -0.013356514275074005,
- -0.04199269041419029,
- -0.051833223551511765,
- -0.043190039694309235,
- -0.05485346540808678,
- -0.013860245235264301,
- 0.0002538064436521381,
- -0.06030190363526344,
- 0.022819461300969124,
- 0.05012454465031624,
- 0.047167498618364334,
- 0.015500479377806187,
- -0.014035174623131752,
- 0.04158627986907959,
- -0.03991321101784706,
- -0.004908382426947355,
- 0.07153703272342682,
- -0.005284569226205349,
- 0.038838356733322144,
- -0.02877068519592285,
- -0.0799451619386673,
- -0.025076311081647873,
- 0.02276465855538845,
- -0.06101040169596672,
- 0.06979287415742874,
- -0.007303394377231598,
- 0.02603452280163765,
- -0.06543748080730438,
- -0.0584222674369812,
- 0.06910447031259537,
- -0.06620290130376816,
- -0.08040560781955719,
- -0.06333219259977341,
- 0.11522306501865387,
- -0.0009372790227644145,
- -0.0002988105989061296,
- -0.018853822723031044,
- -0.04952820762991905,
- 0.04341583698987961,
- 0.01825651526451111,
- 0.005542284343391657,
- 0.048264265060424805,
- 0.05329020693898201,
- -0.011852064169943333,
- 0.009348586201667786,
- 0.0947144627571106,
- 0.0016540930373594165,
- 0.012756044045090675,
- 0.049556855112314224,
- 0.42458438873291016,
- -0.23956359922885895,
- 0.08144944161176682,
- 0.06532326340675354,
- 0.022978518158197403,
- 0.07468179613351822,
- -0.017472652718424797,
- 0.0809146836400032,
- 0.07708591967821121,
- 0.1390814185142517,
- 0.06958930194377899,
- -0.02989189885556698,
- 0.017549630254507065,
- -0.08762890100479126,
- 0.08430270850658417,
- 0.0026099644601345062,
- 0.01993623375892639,
- 0.0051873656921088696,
- -0.06471341848373413,
- -0.030918385833501816,
- 0.04581025615334511,
- -0.0496351532638073,
- 0.003529379377141595,
- 0.0052365511655807495,
- -0.04721677303314209,
- 0.04870540648698807,
- 0.005073614418506622,
- 0.031836461275815964,
- -0.0374281145632267,
- 0.021031256765127182,
- -0.035953622311353683,
- 0.0672457292675972,
- 0.017347004264593124,
- 0.04067784175276756,
- -0.1445656716823578,
- 0.03259913995862007,
- -0.038730818778276443,
- -0.10293225944042206,
- 0.06898675858974457,
- 0.008180005475878716,
- 0.05942970886826515,
- 0.043580006808042526,
- -0.03393199294805527,
- 0.03301108628511429,
- 0.0033580027520656586,
- -0.06474892050027847,
- 0.022291285917162895,
- 0.07998084276914597,
- 0.028106775134801865,
- 0.06635434925556183,
- 0.15895533561706543,
- -0.03906647115945816,
- -0.01629597879946232,
- -0.07169432193040848,
- 0.06728740781545639,
- 0.13194677233695984,
- -0.02122916653752327,
- 0.0047514671459794044,
- -0.01091065164655447,
- -0.01794218085706234,
- -0.0073253256268799305,
- -0.04848084598779678,
- -0.10691217333078384,
- -0.04139458015561104,
- -0.024491574615240097,
- 0.07845963537693024,
- 0.02428032085299492,
- -0.03995290771126747,
- -0.19800643622875214,
- -0.0026063884142786264,
- -0.044453706592321396,
- 0.016197847202420235,
- 0.14747275412082672,
- -0.07280340045690536,
- 0.06430599093437195,
- 0.010243180207908154,
- -0.029160384088754654,
- -0.0075486875139176846,
- -0.09614811837673187,
- 0.022665055468678474,
- -0.043887048959732056,
- 0.0293156448751688,
- -0.0037028095684945583,
- 0.0466746911406517,
- -0.06860145926475525,
- 0.10484334081411362,
- -0.09580199420452118,
- 0.06873780488967896,
- -0.03901352360844612,
- -0.00535299489274621,
- -0.010373040102422237,
- -0.07423386722803116,
- 0.02955637499690056,
- 0.032732043415308,
- -0.04781872779130936,
- 0.022318031638860703,
- 0.010479814372956753,
- -0.041934069246053696,
- -0.06784622371196747,
- -0.08494709432125092,
- -0.03348236158490181,
- -0.08107020705938339,
- 0.029855532571673393,
- -0.07650331407785416,
- -0.010514209046959877,
- -0.028768962249159813,
- -0.013564067892730236,
- 0.010737260803580284,
- 0.022603536024689674,
- 0.018867207691073418,
- -0.14062903821468353,
- -0.010557340458035469,
- 0.014816207811236382,
- 0.0550229549407959,
- -0.00392100540921092,
- -0.03987070918083191,
- 0.008631507866084576,
- 0.09243209660053253,
- 0.051566965878009796,
- -0.014424344524741173,
- 0.032864101231098175,
- -0.0769663080573082,
- 0.024031054228544235,
- -0.1290379911661148,
- -0.4835863411426544,
- 0.031126784160733223,
- -0.005657945293933153,
- 0.03951896354556084,
- 0.01765534095466137,
- -0.09358400106430054,
- 0.04668349772691727,
- 0.03406636416912079,
- -0.057909347116947174,
- 0.07036790251731873,
- -0.06006186455488205,
- 0.05000746622681618,
- -0.04809490218758583,
- -0.09291540086269379,
- -0.021612783893942833,
- -0.07057099789381027,
- -0.041148360818624496,
- 0.009705767035484314,
- -0.04566310718655586,
- -0.06362741440534592,
- -0.12178967893123627,
- 0.023115551099181175,
- -0.024115921929478645,
- 0.014277414418756962,
- 0.030531877651810646,
- 0.032099831849336624,
- -0.06525886803865433,
- -0.034029219299554825,
- 0.0689021572470665,
- 0.10282614082098007,
- 0.024635326117277145,
- -0.06260403245687485,
- -0.042286984622478485,
- 0.07193491607904434,
- 0.03734942898154259,
- 0.12834225594997406,
- 0.011544815264642239,
- -0.04782729595899582,
- -0.05626342073082924,
- 0.0874474048614502,
- 0.07249437272548676,
- 0.18404218554496765,
- -0.001084585557691753,
- 0.028493400663137436,
- 0.03217640146613121,
- 0.1530645787715912,
- 0.011864771135151386,
- 0.019141705706715584,
- -0.043886248022317886,
- -0.000246525916736573,
- 0.03297804296016693,
- 0.007374501321464777,
- 0.07198794931173325,
- -0.08842956274747849,
- -0.024187300354242325,
- -0.04932364448904991,
- -0.036444902420043945,
- -0.00968796107918024,
- 0.01727161556482315,
- 0.20790469646453857,
- 0.024914294481277466,
- 0.04269474372267723,
- 0.02180929109454155,
- -0.06787194311618805,
- 0.02991289086639881,
- -0.07747910916805267,
- -0.08489386737346649,
- 0.0016734780510887504,
- 0.003876428585499525,
- 0.019302967935800552,
- -0.03869864344596863,
- -0.11641888320446014,
- -0.007962762378156185,
- -0.012906588613986969,
- 0.024085843935608864,
- 0.12995949387550354,
- -0.009067179635167122,
- 0.02553263120353222,
- -0.043396055698394775,
- 0.12694872915744781,
- 0.005771626252681017,
- 0.016380274668335915,
- 0.05838372930884361,
- 0.13795043528079987,
- 0.032388146966695786,
- -0.008685377426445484,
- -0.03574720397591591,
- -0.06095563620328903,
- -0.00701144291087985,
- 0.16191114485263824,
- -0.0320994071662426,
- 0.13154183328151703,
- 0.061692964285612106,
- -0.013146298937499523,
- -0.011134927161037922,
- 0.030635178089141846,
- -0.09174548089504242,
- 0.020075634121894836,
- -0.4635121822357178,
- -0.037205129861831665,
- 0.08993685990571976,
- 0.07373366504907608,
- -0.01057463139295578,
- 0.09988445788621902,
- 0.02569989673793316,
- -0.017683779820799828,
- -0.03647949919104576,
- -0.08582112938165665,
- 0.15117700397968292,
- 0.009962162934243679,
- 0.04395595192909241,
- -0.1254577785730362,
- 0.004033549223095179,
- 0.07400038093328476,
- -0.030040318146348,
- 0.010046513751149178,
- 0.08613644540309906,
- -0.1734483689069748,
- 0.000398208387196064,
- -0.009813143871724606,
- 0.1200493723154068,
- -0.017634185031056404,
- 0.0008364693494513631,
- 0.11237500607967377,
- -0.03338782489299774,
- 0.02809484489262104,
- 0.04343299940228462,
- -0.024486351758241653,
- 0.03872191160917282,
- 0.016284745186567307,
- -0.024872692301869392,
- 0.10558666288852692,
- 0.09232846647500992,
- 0.0896136611700058,
- -0.023824721574783325,
- 12.093663215637207,
- 0.059831369668245316,
- 0.03861444070935249,
- -0.07119647413492203,
- 0.02949344739317894,
- -0.06272678077220917,
- 0.024783587083220482,
- -0.10949559509754181,
- 0.040611445903778076,
- 0.13046197593212128,
- -0.017563657835125923,
- -0.00658689858391881,
- -0.03890739753842354,
- -0.09977187216281891,
- 0.01523934118449688,
- -0.038092177361249924,
- -0.06732737272977829,
- -0.043383531272411346,
- 0.0521574504673481,
- -0.025644689798355103,
- -0.052224598824977875,
- 0.062254153192043304,
- 0.038297634571790695,
- 0.013639355078339577,
- -0.06387387961149216,
- 0.02805626392364502,
- 0.0176945012062788,
- -0.024937298148870468,
- 0.005456236656755209,
- 0.0005895905196666718,
- 0.028532689437270164,
- 0.05307486280798912,
- 0.051670853048563004,
- 0.003526048269122839,
- 0.043198902159929276,
- 0.016213398426771164,
- 0.08697874844074249,
- 0.012468554079532623,
- 0.016399675980210304,
- 0.11506865173578262,
- -0.0003089409729000181,
- 0.005678512621670961,
- 0.030987415462732315,
- 0.03628048673272133,
- 0.08396806567907333,
- 0.02185681462287903,
- 0.011324593797326088,
- 0.13135364651679993,
- 0.01750919781625271,
- 0.052610691636800766,
- 0.10222429782152176,
- -0.015730680897831917,
- 0.13655047118663788,
- 0.03978545218706131,
- -0.04027331620454788,
- 0.05149737000465393,
- -0.023218605667352676,
- -0.08751729875802994,
- 0.08946223556995392,
- 0.03806225210428238,
- -0.06551478803157806,
- 0.11126597970724106,
- 0.014641471207141876,
- 0.10557831078767776,
- 0.028887895867228508,
- 0.03383209556341171,
- 0.05612984672188759,
- 0.08562233299016953,
- -0.11319215595722198,
- -0.055315446108579636,
- 0.0056048487313091755,
- -0.08517054468393326,
- -0.0776425153017044,
- 0.03760230541229248,
- 0.0885901004076004,
- -0.04497387632727623,
- 0.05068518593907356,
- -0.005972007755190134,
- 0.007273481693118811,
- -0.015972761437296867,
- 0.017325393855571747,
- 0.05740436911582947,
- -0.036247964948415756,
- -0.011887731961905956,
- 0.0818559005856514,
- 0.04341413453221321,
- 0.04590362310409546,
- 0.10007711499929428,
- -0.007543106563389301,
- -0.12452486902475357,
- -0.0778733640909195,
- 0.11014217138290405,
- -0.02676902338862419,
- -0.06226581335067749,
- -0.0069038355723023415,
- -0.04669567570090294,
- 0.05252223461866379,
- -0.15983225405216217,
- 0.09104359149932861,
- 0.10960844904184341,
- -0.06557178497314453,
- -0.019575104117393494,
- -0.03713585063815117,
- 0.10052820295095444,
- -0.010031597688794136,
- -0.0018359879031777382,
- -0.0866147056221962,
- -0.006196219008415937,
- -0.01418494712561369,
- 0.04623302444815636,
- -0.05342397466301918,
- 0.05922197178006172,
- 0.11029165238142014,
- -0.05927251651883125,
- 0.030491385608911514,
- 0.0506318137049675,
- -0.02302822656929493,
- -0.020355621352791786,
- 0.07802460342645645,
- 0.01590467058122158,
- -0.06962765008211136,
- -0.004785343538969755,
- -0.03470280021429062,
- -0.04139275476336479,
- -0.02087325230240822,
- -0.03893286734819412,
- -0.006751519162207842,
- 0.02563958801329136,
- -0.029216241091489792,
- -0.005483976565301418,
- 0.05976912006735802,
- 0.04977164790034294,
- 0.08243031054735184,
- 0.01512414775788784,
- 0.059996671974658966,
- -0.0617864690721035,
- -0.045490335673093796,
- 0.06045665591955185,
- 0.059099823236465454,
- 0.07833261042833328,
- -0.04907867684960365,
- -0.04899505898356438,
- -0.025258947163820267,
- -0.11052446067333221,
- 0.0023709412198513746,
- 0.0793098583817482,
- 0.05834943801164627,
- 0.03624396398663521,
- -0.00003271159948781133,
- -0.1106363981962204,
- -0.054049551486968994,
- 0.06089178845286369,
- 0.009241101332008839,
- -0.0011530950432643294,
- 0.03619951382279396,
- -0.049168843775987625,
- -0.02075459063053131,
- 0.09559421986341476,
- -0.03881938010454178,
- -0.002634539036080241,
- 0.006359184626489878,
- -0.07278710603713989,
- 0.14398010075092316,
- 0.10322894155979156,
- 0.01622978039085865,
- 0.03343237563967705,
- 0.039149291813373566,
- 0.006420120131224394,
- 0.008812407962977886,
- -0.016249610111117363,
- -0.01085068192332983,
- -0.005181484390050173,
- -0.09266925603151321,
- -0.08250880241394043,
- 0.035998787730932236,
- 0.10179644078016281,
- 0.06698081642389297,
- -0.11816566437482834,
- -0.03291957452893257,
- -0.044960860162973404
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 1,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 55,
- "similarity": 0.9990941882133484
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 15,
- "similarity": 0.9989638924598694
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 34,
- "similarity": 0.998900830745697
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "report_number": 8
- },
- {
- "__typename": "Report",
- "report_number": 4
- },
- {
- "__typename": "Report",
- "report_number": 2
- },
- {
- "__typename": "Report",
- "report_number": 6
- },
- {
- "__typename": "Report",
- "report_number": 3
- },
- {
- "__typename": "Report",
- "report_number": 1
- },
- {
- "__typename": "Report",
- "report_number": 15
- },
- {
- "__typename": "Report",
- "report_number": 14
- },
- {
- "__typename": "Report",
- "report_number": 7
- },
- {
- "__typename": "Report",
- "report_number": 9
- },
- {
- "__typename": "Report",
- "report_number": 11
- },
- {
- "__typename": "Report",
- "report_number": 5
- },
- {
- "__typename": "Report",
- "report_number": 10
- },
- {
- "__typename": "Report",
- "report_number": 12
- }
- ],
- "title": "Google’s YouTube Kids App Presents Inappropriate Content"
- }
- }
-}
\ No newline at end of file
diff --git a/site/gatsby-site/cypress/fixtures/reports/flagged.json b/site/gatsby-site/cypress/fixtures/reports/flagged.json
deleted file mode 100644
index f68ddbb23e..0000000000
--- a/site/gatsby-site/cypress/fixtures/reports/flagged.json
+++ /dev/null
@@ -1,40 +0,0 @@
-{
- "data": {
- "updateOneReport": {
- "__typename": "Report",
- "_id": "5d34b8c29ced494f010ed471",
- "authors": ["Alain Sherter"],
- "date_downloaded": "2019-04-13",
- "date_published": "2014-09-26",
- "flag": true,
- "image_url": "https://cbsnews2.cbsistatic.com/hub/i/r/2014/09/25/aa2708c1-7e84-4573-8f79-add177a690cd/thumbnail/1200x630/2505bd91ab74f8e2ce3e7c6f8a5d77f3/starbucks.jpg",
- "report_number": 1,
- "submitters": ["Catherine Olsson"],
- "tags": [],
- "text": "Liberte Locke, a 32-year-old \"barista\" at a Starbucks (SBUX) in New York City, is fed up.\n\"Starbucks' attitude is that there's always someone else who can do the job,\" she said in running through her complaints about life at the java giant.\nIf that isn't necessarily the consensus among Starbucks workers, interviews with nine current and former baristas at the company make clear it's not an isolated opinion, either. Even those who say they like their job paint a picture of a business that underpays front-line workers, enforces work rules arbitrarily, and too often fails to strike a balance between corporate goals and employee needs.\nOf course, such complaints are nothing new in retail, where low pay and erratic schedules are the norm. But by its own account, Starbucks is no ordinary company and is ostensibly a far cry from the fast-food outlets now facing a nationwide uprising by employees tired of working for peanuts.\nThat's evident in the company's recruitment pitch. Starbucks invites job-seekers to \"become a part of something bigger and inspire positive change in the world,\" describing it as a chance to discover a \"deep sense of purpose.\"\nDamage control\nThat image suffered a serious blow last month after The New York Times vividly chronicled a Starbucks worker struggling with the company's scheduling practices. The story, which centered on a 22-year-old barista and single mother, amounted to a public relations nightmare for Starbucks. Perhaps not coincidentally, within days of the story's publication top executives were promising reform.\nIn a memo to employees earlier this month, for instance, Chief Operating Officer Troy Alstead vowed to \"transform the U.S. partner experience,\" referring to Starbucks' more than 130,000 baristas. Inviting worker feedback, he said Starbucks will examine its approach to employee pay, revisit its dress code, make it easier for people to ask for time off, and consider other changes aimed at helping baristas balance work and their personal lives.\nAmong other changes, the company said it would end the practice of \"clopening,\" when an employee responsible for closing a store late at night is also assigned to open it early in the morning.\n\"We recognize that we can do more for our partners who wear the apron every day,\" he wrote.\nSome baristas did not feel this August memo from Starbucks went far enough in proposing ways to improve work conditions, so they marked it up with their own ideas. CBS\nAlthough Starbucks workers welcome this pledge to respect the apron, they fear the company is more intent on dousing the PR flames than on genuinely improving employees' experience. After the retailer last month sent an email to workers outlining possible solutions to the kind of scheduling problems and related issues detailed by the Times, a group of baristas gave the proposal a C- and posted online a marked-up version of the memo listing their own demands (see image above).\n\"We hope you're ready for a commitment to give us schedules that don't mess with taking care of kids, going to school or holding onto that second job we need because Sbux wages don't make ends meet,\" wrote the baristas, who are working with a union-backed labor group, the Center for Popular Democracy.\nRetail jungle\nDespite the recent media focus on Starbucks, the company's labor practices are generally no worse than those of many large retailers. In some ways they're better, with the company offering health care to part-time, as well as full-time, workers; unusually generous 401(k) matching contributions; annual stock grants to employees; and tuition reimbursement.\nStarbucks highlights such benefits as an example of its commitment to employees. \"Sharing success with one another has been core to the company's heritage for more than 40 years,\" Alstead said in the September memo.\nMeanwhile, some baristas say they enjoy their work and feel valued by Starbucks. \"It's a decent place to work, and my manager and co-workers are great,\" said one employee who asked not to be identified.\nBut other current and former workers claim Starbucks has changed in recent years, saying that corporate leaders' intense focus on slashing costs has short-circuited its professed commitment to workers. Mostly, they say Starbucks doesn't listen to employees and even punishes those who identify problems.\n\"The biggest problem is that baristas don't have a voice,\" said Sarah Madden, a former Starbucks barista who left the company this spring after two years with the coffee vendor. \"They can't speak to issues that they know exist. Workers know how to fix them, but when [they] speak up there are serious repercussions -- your hours get cut, you're transferred to another store or isolated from other people.\"\nEmployees interviewed for this article said one result of Starbucks' cost-containment push is that stores are frequently understaffed, hurting customer service and forcing managers to scramble to find staff. That problem is common across the big-box s",
- "title": "For some Starbucks workers, job leaves bitter taste",
- "description": "Description For some Starbucks workers, job leaves bitter taste",
- "url": "https://www.cbsnews.com/news/for-some-starbucks-workers-job-leaves-bitter-taste/",
- "editor_notes": "",
- "plain_text": "Liberte Locke, a 32-year-old \"barista\" at a Starbucks (SBUX) in New York City, is fed up.\n\"Starbucks' attitude is that there's always someone else who can do the job,\" she said in running through her complaints about life at the java giant.\nIf that isn't necessarily the consensus among Starbucks workers, interviews with nine current and former baristas at the company make clear it's not an isolated opinion, either. Even those who say they like their job paint a picture of a business that underpays front-line workers, enforces work rules arbitrarily, and too often fails to strike a balance between corporate goals and employee needs.\nOf course, such complaints are nothing new in retail, where low pay and erratic schedules are the norm. But by its own account, Starbucks is no ordinary company and is ostensibly a far cry from the fast-food outlets now facing a nationwide uprising by employees tired of working for peanuts.\nThat's evident in the company's recruitment pitch. Starbucks invites job-seekers to \"become a part of something bigger and inspire positive change in the world,\" describing it as a chance to discover a \"deep sense of purpose.\"\nDamage control\nThat image suffered a serious blow last month after The New York Times vividly chronicled a Starbucks worker struggling with the company's scheduling practices. The story, which centered on a 22-year-old barista and single mother, amounted to a public relations nightmare for Starbucks. Perhaps not coincidentally, within days of the story's publication top executives were promising reform.\nIn a memo to employees earlier this month, for instance, Chief Operating Officer Troy Alstead vowed to \"transform the U.S. partner experience,\" referring to Starbucks' more than 130,000 baristas. Inviting worker feedback, he said Starbucks will examine its approach to employee pay, revisit its dress code, make it easier for people to ask for time off, and consider other changes aimed at helping baristas balance work and their personal lives.\nAmong other changes, the company said it would end the practice of \"clopening,\" when an employee responsible for closing a store late at night is also assigned to open it early in the morning.\n\"We recognize that we can do more for our partners who wear the apron every day,\" he wrote.\nSome baristas did not feel this August memo from Starbucks went far enough in proposing ways to improve work conditions, so they marked it up with their own ideas. CBS\nAlthough Starbucks workers welcome this pledge to respect the apron, they fear the company is more intent on dousing the PR flames than on genuinely improving employees' experience. After the retailer last month sent an email to workers outlining possible solutions to the kind of scheduling problems and related issues detailed by the Times, a group of baristas gave the proposal a C- and posted online a marked-up version of the memo listing their own demands (see image above).\n\"We hope you're ready for a commitment to give us schedules that don't mess with taking care of kids, going to school or holding onto that second job we need because Sbux wages don't make ends meet,\" wrote the baristas, who are working with a union-backed labor group, the Center for Popular Democracy.\nRetail jungle\nDespite the recent media focus on Starbucks, the company's labor practices are generally no worse than those of many large retailers. In some ways they're better, with the company offering health care to part-time, as well as full-time, workers; unusually generous 401(k) matching contributions; annual stock grants to employees; and tuition reimbursement.\nStarbucks highlights such benefits as an example of its commitment to employees. \"Sharing success with one another has been core to the company's heritage for more than 40 years,\" Alstead said in the September memo.\nMeanwhile, some baristas say they enjoy their work and feel valued by Starbucks. \"It's a decent place to work, and my manager and co-workers are great,\" said one employee who asked not to be identified.\nBut other current and former workers claim Starbucks has changed in recent years, saying that corporate leaders' intense focus on slashing costs has short-circuited its professed commitment to workers. Mostly, they say Starbucks doesn't listen to employees and even punishes those who identify problems.\n\"The biggest problem is that baristas don't have a voice,\" said Sarah Madden, a former Starbucks barista who left the company this spring after two years with the coffee vendor. \"They can't speak to issues that they know exist. Workers know how to fix them, but when [they] speak up there are serious repercussions -- your hours get cut, you're transferred to another store or isolated from other people.\"\nEmployees interviewed for this article said one result of Starbucks' cost-containment push is that stores are frequently understaffed, hurting customer service and forcing managers to scramble to find staff. That problem is common across the big-box s",
- "embedding": {
- "from_text_hash": "",
- "vector": []
- },
- "user": {
- "userId": "642188372947d07020c1319d"
- },
- "is_incident_report": true,
- "source_domain": "cbsnews.com",
- "cloudinary_id": "reports/cbsnews2.cbsistatic.com/hub/i/r/2014/09/25/aa2708c1-7e84-4573-8f79-add177a690cd/thumbnail/1200x630/2505bd91ab74f8e2ce3e7c6f8a5d77f3/starbucks.jpg",
- "epoch_date_submitted": 1559347200,
- "epoch_date_published": 1559347200,
- "epoch_date_modified": 1559347200,
- "epoch_date_downloaded": 1559347200,
- "date_submitted": "2019-06-01",
- "date_modified": "2019-06-02",
- "language": "en",
- "quiet": false
- }
- }
-}
diff --git a/site/gatsby-site/cypress/fixtures/reports/issueWithTranslations.json b/site/gatsby-site/cypress/fixtures/reports/issueWithTranslations.json
deleted file mode 100644
index a304a6f318..0000000000
--- a/site/gatsby-site/cypress/fixtures/reports/issueWithTranslations.json
+++ /dev/null
@@ -1,50 +0,0 @@
-{
- "data": {
- "report": {
- "authors": [
- "Marco Acevedo"
- ],
- "date_downloaded": "2019-04-13",
- "date_published": "2015-07-11",
- "flag": null,
- "image_url": "https://assets.change.org/photos/0/yb/id/eYyBIdJOMHpqcty-1600x900-noPad.jpg?1523726975",
- "report_number": 10,
- "submitters": [
- "Roman Yampolskiy"
- ],
- "tags": [
- "Test Tag"
- ],
- "text": "## Video still of a reproduced version of Minnie Mouse\n\nWhich appeared on the now-suspended Simple Fun channel Simple Fun.",
- "plain_text": "Video still of a reproduced version of Minnie Mouse\n\nWhich appeared on the now-suspended Simple Fun channel Simple Fun.",
- "title": "Remove YouTube Kids app until it eliminates its inappropriate content",
- "description": "Description Remove YouTube Kids app until it eliminates its inappropriate content",
- "url": "https://www.change.org/p/remove-youtube-kids-app-until-it-eliminates-its-inappropriate-content",
- "editor_notes": "",
- "language": "en",
- "translations_es": {
- "__typename": "ReportTranslation",
- "title": "Este es el Título en español",
- "text": "Este es un texto de prueba que tiene un largo mayor a ochenta caracteres (en español)"
- },
- "translations_en": {
- "__typename": "ReportTranslation",
- "title": "",
- "text": ""
- },
- "translations_fr": {
- "__typename": "ReportTranslation",
- "title": "C'est le Titre en français",
- "text": "Il s'agit d'un texte de test de plus de quatre-vingts caractères - lorem ipsum (en français)"
- },
- "translations_ja": {
- "__typename": "ReportTranslation",
- "title": "これは日本語でのタイトルです",
- "text": "解サオライ協立なーづ民手ぶみドに即記朝ぐ奥置ぱで地更トるあて栄厚ぜづを祭屋ん来派どてゃ読速ヘ誌約カタシネ原39業理る。外ヒヱフ社第むせゆ由更混ソエ夕野しりすよ顔飛リの兆基う公言や置17謝后嘘5供フキヌア星集ヘラ辞勘壇崇さびわ。(日本語で)"
- },
- "date_modified": "2023-01-01",
- "epoch_date_modified": 1672531200,
- "is_incident_report": false
- }
- }
-}
\ No newline at end of file
diff --git a/site/gatsby-site/cypress/fixtures/reports/probablyRelatedReports.json b/site/gatsby-site/cypress/fixtures/reports/probablyRelatedReports.json
deleted file mode 100644
index 8ffaaccfce..0000000000
--- a/site/gatsby-site/cypress/fixtures/reports/probablyRelatedReports.json
+++ /dev/null
@@ -1,24 +0,0 @@
-{
- "data": {
- "reports": [
- {
- "__typename": "Report",
- "report_number": 1,
- "title": "Report 1 test title",
- "url": "https://www.bbc.com/news/world-us-canada-46468719"
- },
- {
- "__typename": "Report",
- "report_number": 2,
- "title": "Report 2 test title",
- "url": "https://www.bbc.com/news/world-us-canada-46468719"
- },
- {
- "__typename": "Report",
- "report_number": 3,
- "title": "Report 3 test title",
- "url": "https://www.bbc.com/news/world-us-canada-46468719"
- }
- ]
- }
-}
\ No newline at end of file
diff --git a/site/gatsby-site/cypress/fixtures/reports/report.json b/site/gatsby-site/cypress/fixtures/reports/report.json
deleted file mode 100644
index 1ae223f554..0000000000
--- a/site/gatsby-site/cypress/fixtures/reports/report.json
+++ /dev/null
@@ -1,37 +0,0 @@
-{
- "data": {
- "report": {
- "authors": ["Marco Acevedo"],
- "cloudinary_id": "reports/assets.change.org/photos/0/yb/id/eYyBIdJOMHpqcty-1600x900-noPad.jpg?1523726975",
- "date_downloaded": "2019-04-13",
- "date_modified": "2020-06-14",
- "date_published": "2015-07-11",
- "date_submitted": "2019-06-01",
- "editor_notes": "",
- "embedding": {
- "from_text_hash": "12256b4f3816b968a2224017eac1bf7d5c6b98e5",
- "vector": [-0.09368586540222168, 0.02987837791442871, 0.03945714980363846]
- },
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_published": 1436572800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "image_url": "https://assets.change.org/photos/0/yb/id/eYyBIdJOMHpqcty-1600x900-noPad.jpg?1523726975",
- "is_incident_report": true,
- "language": "en",
- "plain_text": "Videos filled with profanity, sexually explicit material, alcohol, smoking, and drug references - this is what parents are finding on Google’s YouTube Kids app. That’s right - its kids app. Now, parents across the country are calling on Google to remove the app until it can guarantee the total elimination of this inappropriate content.\n\nWhen my neighbors told me about the horrible adult content popping up on the Youtube Kids app, I thought there must be a mistake. Why would Google market an app as “a family-friendly place to explore” and not have proper safeguards in place? Unfortunately, it turned out to be true. And I’ve since learned of the numerous complaints filed to the Federal Trade Commission about this very problem.\n\nEven worse, Google’s response has been laughable. They tell parents to simply flag inappropriate material or set new filters. As a father of two, it makes me angry when a large company like Google doesn’t take responsibility for its kids’ products. Parents are being sold on an app built for kids 5 and under that is supposed to keep them safe from adult content. Parents like myself are joining forces to hold Google accountable.\n\nTell Google to remove the YouTube Kids app until it can live up to its marketing.\n\nThe solution is simple: only allow content pre-approved for ages 5 and under to appear on the app, and don’t allow ads clearly meant for adults. Unless it can live up to expectations, the app should be removed.\n\nParents are not the only ones outraged. The media has blasted Google’s app, calling it “the most anti-family idea ever to come out of Silicon Valley,\" and reporting that it “ignores basic protections for children.”\n\nWith your support, we can get Google to remove YouTube Kids until the proper protections are in place.\n\nThese are examples of videos encountered on YouTube Kids:\n\nA graphic lecture discussing hardcore pornography by Cindy Gallop:\n\nhttps://www.youtube.com/watch?v=EgtcEq7jpAk\n\nHow to make chlorine gas with household products (chemical weapon used in Syria):\n\nhttps://www.youtube.com/watch?v=DF2CXHvh8uI\n\nHow to tie a noose:\n\nhttps://www.youtube.com/watch?v=TpAA2itjI34\n\nHow to throw knives:\n\nhttps://www.youtube.com/watch?v=NGgzn1haQ-E\n\nA guy tasting battery acid:\n\nhttps://www.youtube.com/watch?v=gif-OWNjJSw\n\nHow to use a chainsaw:\n\nhttps://www.youtube.com/watch?v=Kk28thdgCEU\n\nA “Sesame Street” episode dubbed with long strings of expletives:\n\nhttps://www.youtube.com/watch?v=kVkqzE-iiEY\n\nReferences to pedophilia in a homemade video reviewing a “My Little Pony” episode:\n\nhttps://www.youtube.com/watch?v=7K9uH4d-HnU\n\nA DIY video on conducting illegal piracy, featuring pictures of marijuana leaves:\n\nhttps://www.youtube.com/watch?v=dZDF5uqORA0",
- "report_number": 10,
- "source_domain": "change.org",
- "submitters": ["Roman Yampolskiy"],
- "tags": [],
- "text": "Videos filled with profanity, sexually explicit material, alcohol, smoking, and drug references - this is what parents are finding on Google’s YouTube Kids app. That’s right - its kids app. Now, parents across the country are calling on Google to remove the app until it can guarantee the total elimination of this inappropriate content.\n\nWhen my neighbors told me about the horrible adult content popping up on the Youtube Kids app, I thought there must be a mistake. Why would Google market an app as “a family-friendly place to explore” and not have proper safeguards in place? Unfortunately, it turned out to be true. And I’ve since learned of the numerous complaints filed to the Federal Trade Commission about this very problem.\n\nEven worse, Google’s response has been laughable. They tell parents to simply flag inappropriate material or set new filters. As a father of two, it makes me angry when a large company like Google doesn’t take responsibility for its kids’ products. Parents are being sold on an app built for kids 5 and under that is supposed to keep them safe from adult content. Parents like myself are joining forces to hold Google accountable.\n\nTell Google to remove the YouTube Kids app until it can live up to its marketing.\n\nThe solution is simple: only allow content pre-approved for ages 5 and under to appear on the app, and don’t allow ads clearly meant for adults. Unless it can live up to expectations, the app should be removed.\n\nParents are not the only ones outraged. The media has blasted Google’s app, calling it “the most anti-family idea ever to come out of Silicon Valley,\" and reporting that it “ignores basic protections for children.”\n\nWith your support, we can get Google to remove YouTube Kids until the proper protections are in place.\n\nThese are examples of videos encountered on YouTube Kids:\n\nA graphic lecture discussing hardcore pornography by Cindy Gallop:\n\nhttps://www.youtube.com/watch?v=EgtcEq7jpAk\n\nHow to make chlorine gas with household products (chemical weapon used in Syria):\n\nhttps://www.youtube.com/watch?v=DF2CXHvh8uI\n\nHow to tie a noose:\n\nhttps://www.youtube.com/watch?v=TpAA2itjI34\n\nHow to throw knives:\n\nhttps://www.youtube.com/watch?v=NGgzn1haQ-E\n\nA guy tasting battery acid:\n\nhttps://www.youtube.com/watch?v=gif-OWNjJSw\n\nHow to use a chainsaw:\n\nhttps://www.youtube.com/watch?v=Kk28thdgCEU\n\nA “Sesame Street” episode dubbed with long strings of expletives:\n\nhttps://www.youtube.com/watch?v=kVkqzE-iiEY\n\nReferences to pedophilia in a homemade video reviewing a “My Little Pony” episode:\n\nhttps://www.youtube.com/watch?v=7K9uH4d-HnU\n\nA DIY video on conducting illegal piracy, featuring pictures of marijuana leaves:\n\nhttps://www.youtube.com/watch?v=dZDF5uqORA0",
- "title": "Remove YouTube Kids app until it eliminates its inappropriate content",
- "description": "Description Remove YouTube Kids app until it eliminates its inappropriate content",
- "url": "https://www.change.org/p/remove-youtube-kids-app-until-it-eliminates-its-inappropriate-content",
- "user": {
- "userId": "63320ce63ec803072c9f529c"
- }
- }
- }
-}
diff --git a/site/gatsby-site/cypress/fixtures/reports/reportSiblings.json b/site/gatsby-site/cypress/fixtures/reports/reportSiblings.json
deleted file mode 100644
index 0c87479336..0000000000
--- a/site/gatsby-site/cypress/fixtures/reports/reportSiblings.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "data": {
- "reports": [
- {
- "report_number": 1,
- "embedding": {
- "from_text_hash": "2c8b97b95507aa6b23a29e6c80e69cac1de41e11",
- "vector": [
- -0.09760236740112305, 0.018021853640675545, 0.10105229914188385, 0.09371653199195862,
- -0.10924399644136429, -0.03652585297822952, -0.037053391337394714
- ]
- }
- },
- {
- "report_number": 2,
- "embedding": {
- "from_text_hash": "2c8b97b95507aa6b23a29e6c80e69cac1de41e11",
- "vector": [
- -0.09760236740112305, 0.018021853640675545, 0.10105229914188385, 0.09371653199195862,
- -0.10924399644136429, -0.03652585297822952, -0.037053391337394714
- ]
- }
- }
- ]
- }
-}
diff --git a/site/gatsby-site/cypress/fixtures/reports/reportWithTranslations.json b/site/gatsby-site/cypress/fixtures/reports/reportWithTranslations.json
deleted file mode 100644
index 9cdcfb4a55..0000000000
--- a/site/gatsby-site/cypress/fixtures/reports/reportWithTranslations.json
+++ /dev/null
@@ -1,44 +0,0 @@
-{
- "data": {
- "report": {
- "authors": ["Marco Acevedo"],
- "date_downloaded": "2019-04-13",
- "date_published": "2015-07-11",
- "flag": null,
- "image_url": "https://assets.change.org/photos/0/yb/id/eYyBIdJOMHpqcty-1600x900-noPad.jpg?1523726975",
- "report_number": 10,
- "submitters": ["Roman Yampolskiy"],
- "tags": ["Test Tag"],
- "text": "## Video still of a reproduced version of Minnie Mouse\n\nWhich appeared on the now-suspended Simple Fun channel Simple Fun.",
- "plain_text": "Video still of a reproduced version of Minnie Mouse\n\nWhich appeared on the now-suspended Simple Fun channel Simple Fun.",
- "title": "Remove YouTube Kids app until it eliminates its inappropriate content",
- "description": "Description YouTube Kids app until it eliminates its inappropriate content",
- "url": "https://www.change.org/p/remove-youtube-kids-app-until-it-eliminates-its-inappropriate-content",
- "editor_notes": "",
- "language": "en",
- "translations_es": {
- "__typename": "ReportTranslation",
- "text": "Este es un texto de prueba que tiene un largo mayor a ochenta caracteres (en español)",
- "title": "Este es el Título en español"
- },
- "translations_en": {
- "__typename": "ReportTranslation",
- "text": "",
- "title": ""
- },
- "translations_fr": {
- "__typename": "ReportTranslation",
- "text": "Il s'agit d'un texte de test de plus de quatre-vingts caractères - lorem ipsum (en français)",
- "title": "C'est le Titre en français"
- },
- "translations_ja": {
- "__typename": "ReportTranslation",
- "text": "解サオライ協立なーづ民手ぶみドに即記朝ぐ奥置ぱで地更トるあて栄厚ぜづを祭屋ん来派どてゃ読速ヘ誌約カタシネ原39業理る。外ヒヱフ社第むせゆ由更混ソエ夕野しりすよ顔飛リの兆基う公言や置17謝后嘘5供フキヌア星集ヘラ辞勘壇崇さびわ。(日本語で)",
- "title": "これは日本語でのタイトルです"
- },
- "date_modified": "2023-01-01",
- "epoch_date_modified": 1672531200,
- "is_incident_report": true
- }
- }
-}
diff --git a/site/gatsby-site/cypress/fixtures/reports/reports.json b/site/gatsby-site/cypress/fixtures/reports/reports.json
deleted file mode 100644
index 754ce699a1..0000000000
--- a/site/gatsby-site/cypress/fixtures/reports/reports.json
+++ /dev/null
@@ -1,139661 +0,0 @@
-{
- "data": {
- "incidents": [
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "youtube",
- "name": "YouTube"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "youtube",
- "name": "YouTube"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "children",
- "name": "Children"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [15, 14, 12, 11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1],
- "vector": [
- -0.07948590815067291, 0.09085860103368759, 0.03640035539865494, -0.11171464622020721,
- 0.1533605307340622, -0.042664311826229095, 0.0022750997450202703, 0.08651214838027954,
- 0.009645934216678143, -0.06862533837556839, 0.00012636370956897736, 0.08639326691627502,
- 0.025479478761553764, -0.06317057460546494, 0.08277058601379395, -0.07889588922262192,
- -0.09982892870903015, -0.07872314006090164, 0.01746305078268051, -0.08592868596315384,
- -0.08851323276758194, -0.006927904207259417, 0.010939792729914188, 0.12689469754695892,
- -0.06825084984302521, -0.03279152140021324, 0.08277703821659088, 0.08628324419260025,
- 0.01796918362379074, -0.0522342212498188, 0.0035976609215140343, -0.03007364831864834,
- 0.06099598482251167, 0.03325291723012924, -0.04157591238617897, 0.02291201613843441,
- 0.016329333186149597, -0.01855628751218319, -0.07285746932029724, 0.023222308605909348,
- 0.060360137373209, 0.2320559322834015, -0.0095139741897583, -0.029360797256231308,
- 0.02781594544649124, -0.03788290545344353, -0.024976572021842003, 0.020316582173109055,
- 0.01490454375743866, 0.024829212576150894, 0.04882518947124481, 0.030301226302981377,
- -0.013280948624014854, 0.060725197196006775, -0.12357711046934128, 0.08164606988430023,
- 0.0707424134016037, 0.03481821343302727, 0.019586700946092606, -0.08143248409032822,
- 0.02802850678563118, -0.15475325286388397, -0.0327613428235054, -0.06433533877134323,
- 0.10933934897184372, -0.0902462974190712, -0.026613663882017136, 0.016846202313899994,
- 0.027910204604268074, 0.10312942415475845, 0.12448485940694809, -0.0028538424521684647,
- -0.000205133474082686, 0.009527688845992088, -0.030281297862529755,
- -0.035140395164489746, 0.03345125913619995, 0.21859659254550934, -0.12986183166503906,
- 0.003429040312767029, 0.161686971783638, -0.09442462772130966, 0.3201349377632141,
- -0.006564520299434662, 0.028106756508350372, -0.04277428984642029, 0.08578711748123169,
- -0.005728639662265778, 0.029642801731824875, 0.04676978662610054, 0.018126612529158592,
- 0.0339781753718853, -0.14285804331302643, -0.000606783083640039, 0.07397141307592392,
- -0.012461156584322453, -0.09778446704149246, 0.008635229431092739, 0.002102288417518139,
- -0.06261752545833588, -0.04993546009063721, -0.043097659945487976, 0.17411744594573975,
- 0.08295375108718872, -0.030599363148212433, 0.006923707202076912, 0.054013993591070175,
- 0.024150945246219635, 0.08000592887401581, -0.04417868331074715, 0.04555775225162506,
- 0.018363166600465775, 0.06389713287353516, -0.027194062247872353, 0.04889437183737755,
- -0.01966717466711998, 0.013569671660661697, 0.10413219034671783, 0.11622064560651779,
- 0.08792480081319809, 0.029001640155911446, 0.05815243721008301, 0.04725264757871628,
- -0.03933054953813553, 0.008572543039917946, 0.01957942731678486, -0.05252859741449356,
- -0.018227020278573036, -0.050826799124479294, 0.05129397660493851, -0.04494450241327286,
- -0.19044755399227142, -0.029161546379327774, 0.048434752970933914,
- -0.006731080356985331, -0.05019174516201019, -0.02796386368572712, -0.0688943862915039,
- 0.012313270010054111, -0.06153661385178566, -0.09993868321180344, 0.053390778601169586,
- 0.014023121446371078, 0.07810705900192261, 0.1798696368932724, 0.07650961726903915,
- -0.042287856340408325, -0.0010946093825623393, -0.0500674843788147,
- -0.04523634538054466, 0.14934296905994415, -0.10152336210012436, -0.06735163927078247,
- -0.02275332622230053, 0.07685739547014236, 0.7856839299201965, 0.12787596881389618,
- 0.200931116938591, 0.000487364741275087, 0.032861948013305664, 0.21347913146018982,
- -0.018858851864933968, -0.013502001762390137, -0.04027562960982323,
- -0.10104662925004959, 0.026064569130539894, -0.07834206521511078, -0.02547670342028141,
- -0.024498431012034416, 0.046903226524591446, 0.05562370643019676, 0.0016221801051869988,
- 0.04894581064581871, -0.011869670823216438, -0.11212952435016632, -0.050784021615982056,
- 0.032343775033950806, -0.017428535968065262, -0.13743025064468384,
- -0.023539766669273376, 0.08991794288158417, 0.13095808029174805, -0.07686492055654526,
- -0.014204669743776321, -0.05197397992014885, 0.05524981766939163, -0.05589084327220917,
- 0.09462866187095642, -0.06163877993822098, 0.0009161792695522308, 0.036684680730104446,
- -0.04057587310671806, 0.026779966428875923, -0.051097236573696136, 0.07904530316591263,
- 0.15312381088733673, -0.02966725081205368, 0.035068757832050323, 0.020003359764814377,
- -0.10392645746469498, 0.0020661235321313143, 0.023793930187821388, 0.10501138120889664,
- -0.09017878770828247, 0.0497453510761261, -0.047754671424627304, -0.01860445737838745,
- 0.025240028277039528, -0.004956403747200966, -0.11118016391992569, -0.03396674990653992,
- 0.09599142521619797, 0.03356778994202614, 0.08368321508169174, -0.018247555941343307,
- 0.008082234300673008, 0.06485851854085922, 0.14802180230617523, -0.001108878175728023,
- 0.0230703167617321, 0.0071370829828083515, 0.06767531484365463, -0.10121028870344162,
- -0.013037052936851978, -0.018483184278011322, 0.018805578351020813,
- 0.012899234890937805, -0.0060206688940525055, 0.06834544241428375, 0.11551271378993988,
- -0.018187664449214935, 0.08667758852243423, -0.0259700957685709, 0.0024416856467723846,
- 0.09295327961444855, -0.026924632489681244, -0.0637354776263237, -0.017325211316347122,
- -0.018188737332820892, 0.03798501566052437, -0.038471709936857224, 0.13622069358825684,
- 0.056767623871564865, 0.09108483046293259, 0.0557236447930336, -0.01600010134279728,
- 0.07204900681972504, 0.016769245266914368, 0.02412537857890129, 0.05396299064159393,
- -0.013042201288044453, -0.047136154025793076, -0.06442618370056152, 0.07577831298112869,
- 0.07901372760534286, 0.08070117235183716, -0.06839532405138016, -0.03846164420247078,
- 0.04419819265604019, -0.08674498647451401, -0.06390170753002167, -0.008206884376704693,
- 0.05806886777281761, 0.03307729586958885, -0.02085125632584095, -0.09802130609750748,
- -0.130092591047287, -0.02262728475034237, 0.01748536340892315, -0.042753785848617554,
- -0.023438991978764534, -0.11899112164974213, 0.017434019595384598,
- -0.051357727497816086, 0.07338225841522217, -0.012152127921581268, 0.019991185516119003,
- 0.07741351425647736, -0.07763748615980148, 0.0349334217607975, 0.025662122294306755,
- -0.13495896756649017, -0.04775156080722809, 0.0013584104599431157, -0.08023878186941147,
- 0.02390958182513714, -0.06800710409879684, -0.026802659034729004, 0.02636665292084217,
- 0.07787628471851349, 0.0679551288485527, 0.022080369293689728, -0.0005214127013459802,
- 0.0258317943662405, -0.031803835183382034, 0.0226964820176363, 0.06778471171855927,
- -0.08200621604919434, 0.05930350720882416, -0.06724029779434204, -0.08897215127944946,
- -0.06283900141716003, -0.003979571163654327, -0.04541262984275818, 0.03299565613269806,
- -0.011117802932858467, 0.02194586768746376, -0.042868293821811676, -0.10864128172397614,
- 0.030564457178115845, -0.0995653048157692, -0.06719790399074554, -0.11867118626832962,
- 0.17452789843082428, 0.03386146202683449, -0.013701900839805603, -0.0005982288275845349,
- -0.013526772148907185, 0.09465891122817993, 0.019066020846366882, -0.01853952556848526,
- 0.0997692123055458, 0.04238351806998253, -0.01146724447607994, -0.038807570934295654,
- 0.08697092533111572, 0.03115704096853733, 0.021290792152285576, 0.005839123390614986,
- 0.4638288915157318, -0.3346848487854004, 0.05066133663058281, 0.08220109343528748,
- 0.0521855503320694, 0.07570131868124008, -0.013473210856318474, 0.05964947119355202,
- 0.08902070671319962, 0.14969345927238464, 0.03465116024017334, 0.02825244329869747,
- -0.05263951048254967, -0.12291334569454193, 0.03679358959197998, 0.04730582982301712,
- -0.03550662472844124, -0.03204333037137985, -0.10161004960536957, -0.011906320229172707,
- 0.053606852889060974, -0.044475432485342026, -0.03413059189915657, 0.06869575381278992,
- -0.060197390615940094, 0.005024984944611788, 0.00022275984520092607,
- 0.01342199556529522, -0.046814560890197754, 0.005736525636166334, -0.05730132386088371,
- 0.09952379018068314, 0.045267000794410706, -0.02523145079612732, -0.17523640394210815,
- 0.032954756170511246, 0.014772064983844757, -0.06661691516637802, 0.14598888158798218,
- 0.003846165956929326, 0.023278886452317238, 0.09735055267810822, -0.04381773620843887,
- 0.021698713302612305, -0.03442159295082092, -0.08391135185956955, -0.009268864057958126,
- 0.0877627357840538, -0.01861383765935898, 0.039379581809043884, 0.17703227698802948,
- -0.07329455763101578, 0.014340467751026154, -0.0949285477399826, 0.09097141772508621,
- 0.15652140974998474, -0.0446496456861496, 0.03635780140757561, -0.017306476831436157,
- -0.025966012850403786, 0.020645704120397568, -0.05212201178073883, -0.08439070731401443,
- -0.09398376941680908, -0.023195302113890648, 0.06240738183259964, 0.013037583790719509,
- -0.034249499440193176, -0.3022688031196594, 0.0415644571185112, -0.06676431000232697,
- 0.021559633314609528, 0.1280994564294815, -0.12570171058177948, 0.045020002871751785,
- -0.00918902549892664, -0.01614285446703434, -0.0375448539853096, -0.07914002984762192,
- 0.02015768364071846, -0.08732691407203674, 0.034801289439201355, -0.035188592970371246,
- 0.02521633543074131, -0.05852872505784035, 0.06713760644197464, -0.07154536247253418,
- 0.08019717782735825, -0.015319573692977428, 0.03200096637010574,
- -0.00023488308943342417, -0.033331673592329025, 0.05190667137503624,
- -0.0035600338596850634, 0.005851748399436474, 0.06541244685649872, 0.011962209828197956,
- -0.020180420950055122, -0.1045527383685112, -0.12098775804042816, 0.002662759507074952,
- -0.06424923986196518, 0.06466106325387955, -0.05552670732140541, -0.07277648150920868,
- -0.04504513740539551, -0.01359830517321825, 0.03784548491239548, 0.07127374410629272,
- -0.0027288205455988646, -0.12870998680591583, -0.018413836136460304,
- -0.013024690560996532, 0.05993296205997467, 0.045423537492752075, -0.043155305087566376,
- 0.07325142621994019, 0.08511427789926529, 0.08401037752628326, -0.023083912208676338,
- 0.05169710889458656, -0.09561487287282944, -0.007750862743705511, -0.05924983695149422,
- -0.6614077687263489, -0.030518164858222008, 0.009236813522875309, -0.000807272270321846,
- 0.0421658456325531, -0.06613171100616455, 0.011604745872318745, -0.017638318240642548,
- -0.06641745567321777, 0.0503820963203907, -0.06834245473146439, 0.06442267447710037,
- -0.02277708798646927, -0.09785164147615433, -0.04729120433330536, -0.07562524080276489,
- -0.025336476042866707, 0.05657762661576271, -0.07361403852701187, -0.09034541994333267,
- -0.18336185812950134, 0.03191784769296646, -0.02767813578248024, 0.02557050995528698,
- -0.017591917887330055, -0.019827034324407578, -0.11719999462366104,
- -0.06093444675207138, 0.06600058823823929, 0.14423073828220367, 0.04819812998175621,
- -0.07211635261774063, -0.06981830298900604, 0.047415655106306076,
- -0.00013619981473311782, 0.09622721374034882, -0.006136709358543158,
- -0.13004177808761597, -0.0625772550702095, 0.03347940742969513, 0.07131504267454147,
- 0.1818988174200058, -0.020508840680122375, 0.06539695709943771, 0.0276035089045763,
- 0.20309558510780334, -0.03724668547511101, -0.013651126064360142, -0.06517322361469269,
- 0.01606043614447117, 0.0770893394947052, 0.028500186279416084, 0.0624292753636837,
- -0.09228168427944183, -0.03707728534936905, -0.05439514294266701, 0.023142743855714798,
- 0.00815004575997591, 0.05213453993201256, 0.25517332553863525, 0.008888890966773033,
- 0.10037841647863388, -0.02906477078795433, -0.08064335584640503, 0.015957972034811974,
- -0.04868634045124054, -0.07630491256713867, -0.009409707970917225,
- -0.008209540508687496, -0.02924802526831627, -0.014570697210729122,
- -0.054310575127601624, -0.03144371882081032, 0.012223240919411182, 0.029884537681937218,
- 0.12484361231327057, 0.009508803486824036, 0.05331040918827057, -0.04776666313409805,
- 0.06112350523471832, 0.010555309243500233, 0.03746833652257919, 0.10435453802347183,
- 0.17911459505558014, 0.057047151029109955, 0.006056452635675669, -0.016306698322296143,
- -0.025882497429847717, 0.022294875234365463, 0.20493584871292114, -0.07532024383544922,
- 0.12717975676059723, 0.07756775617599487, -0.040710024535655975, 0.009841421619057655,
- 0.014551813714206219, -0.06608497351408005, -0.012801537290215492, -0.5762628316879272,
- -0.057796575129032135, 0.12100917100906372, 0.08715058118104935, -0.01907513663172722,
- 0.06407225131988525, -0.022537315264344215, -0.07744105905294418, 0.011731286533176899,
- -0.10972654819488525, 0.12422114610671997, -0.0022560388315469027, 0.07045219093561172,
- -0.08594054728746414, -0.0018699459033086896, 0.06354068964719772, -0.0528656467795372,
- -0.020370332524180412, 0.10872342437505722, -0.18389727175235748, 0.05041345953941345,
- -0.004725458100438118, 0.08227464556694031, -0.059218887239694595, 0.022255292162299156,
- 0.11747485399246216, -0.02134742960333824, 0.06425836682319641, 0.04930538311600685,
- -0.04765419661998749, 0.029541879892349243, 0.048389825969934464, -0.02576974406838417,
- 0.06268011778593063, 0.04904696345329285, 0.13011100888252258, -0.011283975094556808,
- 12.205403327941895, 0.07540540397167206, 0.024326056241989136, -0.030710633844137192,
- 0.07481846213340759, -0.08727842569351196, 0.009099815972149372, -0.16957825422286987,
- 0.031020116060972214, 0.19537808001041412, -0.021675944328308105, 0.014996747486293316,
- -0.06347478181123734, -0.10451904684305191, 0.046527814120054245, -0.03138358145952225,
- -0.07278072088956833, -0.06772897392511368, 0.07250741124153137, -0.03251395374536514,
- -0.04836398363113403, 0.06337516754865646, 0.040255770087242126, 0.016873452812433243,
- -0.0688595324754715, 0.015601490624248981, -0.003580976277589798, -0.046795640140771866,
- 0.05689563974738121, 0.022426947951316833, 0.012194043025374413, 0.014087908901274204,
- 0.0388932041823864, -0.010651716962456703, 0.09474799782037735, -0.003971504513174295,
- 0.11385457217693329, 0.021288929507136345, 0.04851887747645378, 0.14872972667217255,
- -0.007511619478464127, -0.042572323232889175, 0.05197754502296448, 0.05275717005133629,
- 0.12328396737575531, -0.001978888176381588, 0.06659922003746033, 0.07355332374572754,
- 0.018347838893532753, 0.07530263066291809, 0.06737876683473587, -0.020439311861991882,
- 0.172207310795784, 0.013735709711909294, -0.0011977418325841427, 0.08956144750118256,
- 0.03633883595466614, -0.10160794854164124, 0.045240968465805054, 0.028613198548555374,
- -0.12175338715314865, 0.12531931698322296, -0.00633984012529254, 0.1444990485906601,
- -0.009874317795038223, 0.03529677540063858, 0.07263214141130447, 0.08788053691387177,
- -0.07670363783836365, 0.00915507972240448, -0.03665868937969208, -0.11659909039735794,
- -0.05807268247008324, -0.05753806233406067, 0.07339158654212952, -0.08155396580696106,
- -0.03182993456721306, -0.03560515493154526, -0.023391732946038246, 0.03785473480820656,
- 0.00674344040453434, 0.059530191123485565, -0.10243456810712814, -0.00888829492032528,
- 0.08962143957614899, 0.034723035991191864, 0.006307243835180998, 0.053953010588884354,
- -0.01765206828713417, -0.1845034807920456, -0.06280398368835449, 0.14847779273986816,
- -0.05238889902830124, -0.11510316282510757, 0.020358869805932045, -0.049834564328193665,
- 0.08642349392175674, -0.16791251301765442, 0.10097113251686096, 0.14783784747123718,
- -0.11416537314653397, 0.03241683915257454, -0.07873380929231644, 0.11509417742490768,
- -0.042868439108133316, -0.008143585175275803, -0.018544768914580345,
- 0.007188543677330017, -0.07611794769763947, 0.032199159264564514, -0.08262717723846436,
- 0.03205226734280586, 0.11805050820112228, -0.04701688513159752, 0.03338472917675972,
- 0.01724979653954506, 0.021810784935951233, -0.035057272762060165, 0.06422694772481918,
- -0.00955595076084137, -0.06638315320014954, -0.006074884440749884, 0.007693510036915541,
- -0.031996749341487885, -0.04242856428027153, -0.08934380859136581, 0.021805046126246452,
- 0.09053973853588104, -0.057470764964818954, 0.029965287074446678, 0.01582507975399494,
- 0.034599728882312775, 0.08764895796775818, 0.003275603288784623, 0.07664830982685089,
- -0.036554351449012756, -0.06122685223817825, 0.0589420348405838, 0.02528192847967148,
- 0.08835219591856003, -0.02101980149745941, -0.06547607481479645, 0.041263606399297714,
- -0.1079225242137909, -0.01054944284260273, 0.10716062039136887, 0.09849299490451813,
- 0.08492674678564072, 0.03272782638669014, -0.11140859872102737, -0.04352523386478424,
- 0.09115184843540192, 0.015664054080843925, -0.05902768671512604, 0.0831526666879654,
- -0.03885272517800331, 0.0158526673913002, 0.09907328337430954, -0.07136818766593933,
- 0.0017901129322126508, -0.046121951192617416, -0.026408089324831963,
- 0.16701915860176086, 0.10561692714691162, 0.05335230007767677, 0.0024440239649266005,
- 0.05794177204370499, 0.04646385461091995, -0.07252659648656845, 0.012867394834756851,
- 0.008615968748927116, 0.02873525209724903, -0.12472911924123764, -0.08501408994197845,
- 0.05695442855358124, 0.11487173289060593, 0.11360307037830353, -0.0816308930516243,
- -0.06181091070175171, -0.08729453384876251
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 1,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 55,
- "similarity": 0.9990941882133484
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 15,
- "similarity": 0.9989638924598694
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 34,
- "similarity": 0.998900830745697
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Bbc Trending"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 15,
- "source_domain": "bbc.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "The disturbing YouTube videos that are tricking children",
- "url": "https://www.bbc.com/news/blogs-trending-39381889"
- },
- {
- "__typename": "Report",
- "authors": ["Sara Perkins"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 14,
- "source_domain": "studybreaks.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "YouTube Kids Is Nowhere Near as Innocent As It Seems",
- "url": "https://studybreaks.com/tvfilm/youtube-kids-isnt-innocent-seems/"
- },
- {
- "__typename": "Report",
- "authors": ["Ben Popper"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 12,
- "source_domain": "theverge.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "YouTube says it will crack down on bizarre videos targeting children",
- "url": "https://www.theverge.com/2017/11/9/16629788/youtube-kids-distrubing-inappropriate-flag-age-restrict"
- },
- {
- "__typename": "Report",
- "authors": ["K.G Orphanides"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 11,
- "source_domain": "wired.co.uk",
- "submitters": ["Roman Yampolskiy"],
- "title": "Children's YouTube is still churning out blood, suicide and cannibalism",
- "url": "https://www.wired.co.uk/article/youtube-for-kids-videos-problems-algorithm-recommend"
- },
- {
- "__typename": "Report",
- "authors": ["Marco Acevedo"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 10,
- "source_domain": "change.org",
- "submitters": ["Roman Yampolskiy"],
- "title": "Remove YouTube Kids app until it eliminates its inappropriate content",
- "url": "https://www.change.org/p/remove-youtube-kids-app-until-it-eliminates-its-inappropriate-content"
- },
- {
- "__typename": "Report",
- "authors": ["James Cook"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 9,
- "source_domain": "businessinsider.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "YouTube suggested conspiracy videos to children using its Kids app",
- "url": "https://www.businessinsider.com/youtube-suggested-conspiracy-videos-to-children-using-its-kids-app-2018-3"
- },
- {
- "__typename": "Report",
- "authors": ["Sapna Maheshwari"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 8,
- "source_domain": "nytimes.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "YouTube Kids, Criticized for Content, Introduces New Parental Controls",
- "url": "https://www.nytimes.com/2018/04/25/business/media/youtube-kids-parental-controls.html"
- },
- {
- "__typename": "Report",
- "authors": ["Valentina Palladino"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 7,
- "source_domain": "arstechnica.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "YouTube to crack down on inappropriate content masked as kids’ cartoons",
- "url": "https://arstechnica.com/gadgets/2017/11/youtube-to-crack-down-on-inappropriate-content-masked-as-kids-cartoons/"
- },
- {
- "__typename": "Report",
- "authors": ["Sandra Temko"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 6,
- "source_domain": "goodmorningamerica.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "What parents should know about inappropriate content on YouTube",
- "url": "https://www.goodmorningamerica.com/family/story/parents-inappropriate-content-youtube-54993637"
- },
- {
- "__typename": "Report",
- "authors": ["Julia Alexander"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 5,
- "source_domain": "polygon.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "YouTube Kids has been a problem since 2015 - why did it take this long to address?",
- "url": "https://www.polygon.com/2017/12/8/16737556/youtube-kids-video-inappropriate-superhero-disney"
- },
- {
- "__typename": "Report",
- "authors": ["Zoë Bernard"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 4,
- "source_domain": "businessinsider.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "YouTube has thousands of disturbing videos targeted at kids: Report",
- "url": "https://www.businessinsider.com/youtube-has-thousands-of-disturbing-videos-targeted-at-kids-report-2017-11"
- },
- {
- "__typename": "Report",
- "authors": ["Terri Peters"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 3,
- "source_domain": "today.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Disturbing YouTube Kids video shows Mickey Mouse with gun",
- "url": "https://www.today.com/parents/moms-warn-disturbing-video-found-youtube-kids-please-be-careful-t101552"
- },
- {
- "__typename": "Report",
- "authors": ["Phoebe Weston"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 2,
- "source_domain": "dailymail.co.uk",
- "submitters": ["Roman Yampolskiy"],
- "title": "YouTube Kids app is STILL showing disturbing videos",
- "url": "https://www.dailymail.co.uk/sciencetech/article-5358365/YouTube-Kids-app-showing-disturbing-videos.html"
- },
- {
- "__typename": "Report",
- "authors": ["Alistair Barr"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1,
- "source_domain": "blogs.wsj.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Google’s YouTube Kids App Criticized for ‘Inappropriate Content’",
- "url": "https://blogs.wsj.com/digits/2015/05/19/googles-youtube-kids-app-criticized-for-inappropriate-content/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "amazon",
- "name": "Amazon"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "amazon",
- "name": "Amazon"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "warehouse-workers",
- "name": "Warehouse Workers"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [
- 157, 156, 155, 154, 153, 152, 151, 150, 149, 148, 146, 145, 144, 143, 142, 141, 139
- ],
- "vector": [
- -0.07652203738689423, 0.08098477870225906, 0.017470115795731544, -0.1128547266125679,
- 0.09970543533563614, -0.03924233093857765, -0.005062606651335955, 0.04170852527022362,
- 0.06416644901037216, -0.1160900816321373, -0.018352966755628586, 0.06617151200771332,
- 0.002568816067650914, -0.09342072904109955, 0.014795778319239616, -0.11996015161275864,
- -0.04691644012928009, -0.03480390086770058, -0.015334266237914562, -0.09987296164035797,
- -0.07177101075649261, 0.014928936958312988, 0.027921956032514572, 0.10176075994968414,
- -0.009761247783899307, 0.021997466683387756, 0.06196748465299606, 0.11331119388341904,
- -0.017447680234909058, 0.04111694172024727, -0.04244190454483032, -0.06948525458574295,
- 0.10589735954999924, -0.009336553514003754, -0.01717049814760685, 0.06171329692006111,
- -0.009318104945123196, -0.03262023627758026, -0.021795079112052917, 0.00860857218503952,
- -0.002209782600402832, 0.2042616307735443, -0.006853833794593811, -0.033241286873817444,
- 0.03635391220450401, -0.02211702987551689, 0.002815103391185403, 0.0642809048295021,
- 0.02347497269511223, 0.0265001580119133, -0.002724933438003063, 0.10972722619771957,
- -0.00891632866114378, 0.03020159713923931, -0.117342509329319, 0.07372647523880005,
- 0.0436544232070446, 0.0053124320693314075, 0.06526510417461395, -0.07507354021072388,
- -0.007955833338201046, -0.23098152875900269, -0.047849781811237335,
- -0.048115719109773636, 0.07544416189193726, -0.06257346272468567, -0.04160866513848305,
- 0.03038950450718403, 0.022897737100720406, 0.0669063851237297, 0.07608062028884888,
- 0.007208198308944702, -0.03385590389370918, -0.017582368105649948, 0.032831642776727676,
- 0.01055982057005167, 0.025353044271469116, 0.2025710940361023, -0.10617107152938843,
- 0.023931564763188362, 0.11834338307380676, -0.07243460416793823, 0.4092824459075928,
- 0.01206928864121437, -0.033579736948013306, -0.055262938141822815, 0.057504262775182724,
- 0.019577810540795326, 0.023307980969548225, 0.04753044992685318, -0.01667933724820614,
- 0.02374931611120701, -0.01341288536787033, 0.026245513930916786, 0.06345787644386292,
- 0.039789073169231415, -0.01672394573688507, 0.04397520795464516, -0.008176978677511215,
- -0.05063611641526222, 0.025197699666023254, -0.031262822449207306, 0.0599193349480629,
- 0.02853238210082054, -0.006139028817415237, -0.02449115738272667, 0.059172242879867554,
- -0.03541659191250801, 0.07746297121047974, -0.041764676570892334, 0.03494670242071152,
- 0.0037817140109837055, 0.06148752570152283, 0.018558887764811516, 0.05317816138267517,
- -0.04012463241815567, 0.00905111338943243, 0.07911185175180435, 0.07179104536771774,
- 0.023692462593317032, 0.04391846805810928, 0.042664140462875366, 0.05776133015751839,
- 0.008791993372142315, 0.00565507123246789, -0.00022848782828077674,
- -0.04705021530389786, -0.008663668297231197, -0.050597578287124634, 0.05921247601509094,
- -0.04965035989880562, -0.23218637704849243, -0.0035564335994422436, 0.11892444640398026,
- -0.01069594919681549, -0.017732245847582817, 0.012893108651041985, -0.05725347250699997,
- 0.02925671823322773, -0.019561531022191048, -0.06658606231212616, 0.06824865192174911,
- 0.02424495480954647, 0.048235319554805756, 0.08677992224693298, 0.058071598410606384,
- -0.046049565076828, -0.061344657093286514, 0.006215582136064768, -0.01973329856991768,
- 0.10392502695322037, -0.12849687039852142, -0.020081060007214546, 0.028013838455080986,
- -0.02155563049018383, 0.6527144312858582, 0.12276913225650787, 0.18703517317771912,
- 0.011257941834628582, -0.04487169533967972, 0.15910273790359497, -0.0061661964282393456,
- 0.04768645390868187, -0.06746366620063782, -0.07337421923875809, 0.036898817867040634,
- -0.0563196986913681, -0.03449517861008644, 0.031510382890701294, 0.038674283772706985,
- 0.11770200729370117, 0.017767056822776794, 0.09866275638341904, -0.002097391290590167,
- -0.10968735069036484, -0.020519349724054337, 0.07746084034442902, -0.00117174640763551,
- -0.11175080388784409, -0.015159678645431995, 0.047371234744787216, 0.09470459818840027,
- -0.08803552389144897, 0.0055318125523626804, -0.06163522228598595, 0.02502712607383728,
- -0.027283580973744392, 0.032440219074487686, -0.032828837633132935,
- 0.029284819960594177, 0.03364958241581917, 0.04783441498875618, 0.01794467121362686,
- -0.11089912801980972, -0.010433323681354523, 0.14361999928951263,
- -0.0015118482988327742, -0.0315704382956028, 0.07119545340538025, -0.08116665482521057,
- 0.012455757707357407, -0.008485001511871815, 0.1309499591588974, -0.09490954130887985,
- -0.00047856010496616364, -0.0024859970435500145, 0.03583277761936188,
- 0.04996580258011818, -0.003527839668095112, -0.07081085443496704, -0.03378080949187279,
- 0.062864288687706, 0.03229483962059021, 0.0867636427283287, 0.047307636588811874,
- -0.02292247861623764, 0.05960831046104431, 0.06067396700382233, -0.025493986904621124,
- -0.010687309317290783, 0.04436647146940231, 0.08238428086042404, -0.027426786720752716,
- 0.01701824553310871, 0.052138958126306534, 0.06828171759843826, 0.027326660230755806,
- 0.0012845471501350403, 0.061968374997377396, 0.011162257753312588, -0.04845089837908745,
- 0.04163369908928871, -0.027017319574952126, -0.014724256470799446, 0.09530288726091385,
- -0.06629401445388794, -0.028021054342389107, -0.056264668703079224,
- -0.03355516865849495, 0.00819314457476139, -0.04496898502111435, 0.08723241090774536,
- 0.06317058205604553, 0.07108927518129349, 0.02364627830684185, 0.04554719477891922,
- 0.06526166200637817, 0.018747607246041298, 0.002332473173737526, 0.047915298491716385,
- -0.06406595557928085, -0.08582927286624908, -0.040202297270298004,
- -0.011514604091644287, 0.043101679533720016, 0.05001964792609215, -0.06972895562648773,
- -0.029805663973093033, 0.005388341378420591, -0.053882401436567307, -0.0786578580737114,
- -0.04828641191124916, 0.045688480138778687, 0.03996986150741577, -0.04981130734086037,
- -0.08901101350784302, -0.09169287234544754, 0.021402860060334206, 0.044059060513973236,
- 0.008210726082324982, -0.027915846556425095, -0.09796100854873657, 0.009502124041318893,
- 0.017461111769080162, 0.057328131049871445, 0.023571426048874855, 0.0017424061661586165,
- 0.0164587814360857, -0.0447552427649498, 0.03469756245613098, -0.00809232983738184,
- -0.021407878026366234, -0.11232136934995651, -0.08244484663009644,
- -0.055877652019262314, 0.008219944313168526, 0.009895280934870243, -0.05791812017560005,
- 0.06590205430984497, 0.03142063692212105, 0.025855254381895065, 0.017400085926055908,
- -0.03181595727801323, 0.0475182980298996, -0.06436997652053833, 0.010311546735465527,
- 0.06719493120908737, -0.03745737299323082, 0.03727046027779579, 0.025801541283726692,
- -0.06596728414297104, -0.014607391320168972, 0.0069754766300320625,
- -0.03490840271115303, 0.05405335873365402, -0.006366245914250612, 0.013220824301242828,
- -0.03774507716298103, 0.008248474448919296, 0.038642048835754395, -0.06196383759379387,
- -0.06046837195754051, -0.0514935702085495, 0.12223825603723526, 0.021229831501841545,
- 0.021802643314003944, -0.0008839081274345517, -0.06293985247612, 0.02712993323802948,
- -0.021003814414143562, -0.02324116975069046, 0.03556792810559273, 0.009779529646039009,
- -0.031541481614112854, -0.044903699308633804, 0.05986544489860535, 0.008887850679457188,
- 0.004704887978732586, 0.034282881766557693, 0.4056452214717865, -0.15272089838981628,
- 0.060134921222925186, 0.07205159217119217, 0.009662668220698833, 0.044443272054195404,
- -0.051126934587955475, 0.0707518458366394, 0.0969809889793396, 0.10443348437547684,
- 0.07726199179887772, -0.016057807952165604, 0.00024835491785779595,
- -0.08353189378976822, 0.1038174256682396, 0.025685014203190804, 0.02210139110684395,
- -0.005384776741266251, -0.08169493824243546, -0.029145263135433197,
- -0.010551303625106812, -0.040921784937381744, -0.01647692546248436,
- -0.0019993542227894068, -0.06156256049871445, -0.0001351328828604892,
- 0.03726017475128174, 0.014182914979755878, -0.06697762757539749, 0.017200246453285217,
- -0.0627157986164093, 0.053010694682598114, 0.04153992608189583, 0.02473846636712551,
- -0.09099921584129333, 0.016954079270362854, -0.0803801491856575, -0.06803768873214722,
- 0.09079939126968384, -0.0030472464859485626, 0.06847867369651794, 0.05860552936792374,
- -0.023123662918806076, 0.003784998320043087, -0.010142066515982151,
- -0.05727430433034897, 0.005618658382445574, 0.07841198891401291, 0.046853553503751755,
- 0.052049074321985245, 0.17996162176132202, -0.041777871549129486, -0.0690055787563324,
- -0.07305869460105896, 0.059278495609760284, 0.11609189212322235, -0.005065910518169403,
- 0.001764096668921411, 0.030535511672496796, -0.03545472025871277, -0.002088253851979971,
- -0.052458733320236206, -0.08294451981782913, -0.019498297944664955,
- -0.02476082183420658, 0.07539928704500198, -0.0057012420147657394, -0.06458935886621475,
- -0.22072187066078186, -0.012568791396915913, -0.031508490443229675,
- 0.019573170691728592, 0.12308001518249512, -0.03224164992570877, 0.036100711673498154,
- 0.011976262554526329, -0.02269013226032257, 0.03598783165216446, -0.09423700720071793,
- 0.04970209300518036, -0.01896175928413868, 0.03318094089627266, 0.011586762964725494,
- 0.03885836526751518, -0.08769721537828445, 0.07254301011562347, -0.07417991012334824,
- 0.07882050424814224, 0.033697087317705154, -0.01335889007896185, 0.03890615329146385,
- -0.01664363034069538, 0.010333242826163769, 0.01185266301035881, -0.017014935612678528,
- 0.014549974352121353, -0.007125353906303644, -0.041691914200782776, -0.1053692027926445,
- -0.029079463332891464, -0.009136569686233997, -0.06340687721967697,
- 0.035894639790058136, -0.08286052197217941, -0.018764808773994446,
- -0.018078403547406197, -0.023059900850057602, 0.006268370896577835,
- 0.036775149405002594, 0.004267194774001837, -0.13673000037670135, 0.0038887872360646725,
- 0.0011154154781252146, 0.08310892432928085, -0.02001413144171238, -0.04995860904455185,
- 0.028654053807258606, 0.12756788730621338, 0.07543572783470154, 0.0005916905938647687,
- -0.009171316400170326, -0.0519971065223217, 0.058157216757535934, -0.07624876499176025,
- -0.507161557674408, 0.05760999396443367, 0.020804615691304207, 0.03406164050102234,
- 0.03027808666229248, -0.06081368029117584, 0.052386265248060226, -0.036370500922203064,
- -0.030714591965079308, 0.09938469529151917, -0.05292891710996628, 0.009356542490422726,
- 0.025834720581769943, -0.05370820313692093, -0.036665741354227066, -0.09057041257619858,
- -0.057331476360559464, 0.059506114572286606, -0.05774204432964325,
- -0.055311400443315506, -0.08221263438463211, 0.020254075527191162,
- -0.023018406704068184, 0.01791882887482643, -0.028404364362359047, 0.032944243401288986,
- -0.0859249010682106, -0.04097425937652588, 0.03803113475441933, 0.03570596128702164,
- 0.03654215857386589, -0.06179299205541611, 0.009878108277916908, 0.058492016047239304,
- -0.04039068892598152, 0.1475374549627304, 0.03455892577767372, 0.02181902900338173,
- -0.05137041211128235, 0.06974902749061584, 0.025106580927968025, 0.1891777366399765,
- -0.003504733322188258, 0.06822022050619125, 0.003590909531340003, 0.12536312639713287,
- 0.008777600713074207, 0.01981741189956665, -0.021193405613303185, 0.026234343647956848,
- 0.027465179562568665, -0.01804407685995102, 0.08639910817146301, -0.08803719282150269,
- -0.008597633801400661, -0.03585945814847946, 0.022366590797901154, 0.013051025569438934,
- -0.03027166612446308, 0.1871473789215088, 0.01144335325807333, 0.026386963203549385,
- -0.0006047773058526218, -0.08528578281402588, 0.0012333663180470467,
- -0.029065655544400215, -0.11157222092151642, -0.014428090304136276,
- 0.008902481757104397, -0.008009474724531174, -0.03788654878735542, -0.09792234003543854,
- -0.020159119740128517, -0.021831676363945007, 0.0009049786604009569,
- 0.10228520631790161, -0.022106273099780083, 0.036381062120199203, -0.018811268731951714,
- 0.10148406773805618, 0.017151083797216415, 0.028403516858816147, 0.06562552601099014,
- 0.09992393851280212, 0.04236050322651863, -0.004483911208808422, -0.07817769795656204,
- -0.07976946234703064, -0.007549675181508064, 0.12457042932510376, -0.04886356368660927,
- 0.08981450647115707, 0.05661375820636749, -0.03621017932891846, -0.044146034866571426,
- 0.024998990818858147, 0.029549114406108856, 0.036570530384778976, -0.4434695541858673,
- -0.015711138024926186, 0.10793046653270721, 0.0009254837059415877, 0.03483496233820915,
- 0.0815664529800415, 0.03415539860725403, -0.049010924994945526, -0.00039070582715794444,
- -0.07015891373157501, 0.1291477531194687, 0.014668617397546768, 0.049437060952186584,
- -0.08962235599756241, 0.026521608233451843, 0.09209442138671875, -0.029207531362771988,
- -0.04112047702074051, 0.04624466225504875, -0.16383236646652222, 0.014536246657371521,
- -0.00631839781999588, 0.1380445808172226, 0.0326753668487072, 0.053327497094869614,
- 0.07174693793058395, -0.096595898270607, 0.042808521538972855, 0.05883165821433067,
- -0.008031829260289669, 0.06512391567230225, -0.006466221529990435, -0.03322106599807739,
- 0.1048254445195198, 0.06602787971496582, 0.13076135516166687, -0.039646051824092865,
- 11.779975891113281, 0.05884335935115814, 0.04460390657186508, -0.0635022222995758,
- 0.02025590091943741, -0.031236115843057632, 0.03530853986740112, -0.11361109465360641,
- 0.034576475620269775, 0.08322642743587494, -0.027175595983862877, -0.02836155705153942,
- -0.04810985177755356, -0.09428874403238297, 0.018201014026999474, -0.029319042339920998,
- -0.07189470529556274, -0.057805322110652924, 0.006514917127788067, -0.05782275274395943,
- -0.01196354627609253, 0.06638640910387039, 0.06623207032680511, 0.03346290439367294,
- -0.05171607434749603, 0.07166242599487305, 0.036302924156188965, -0.007150415331125259,
- -0.00431758863851428, 0.0015262295491993427, -0.024119384586811066,
- -0.0005683624185621738, 0.010427946224808693, 0.021682793274521828,
- -0.023716164752840996, -0.0025931838899850845, 0.051955144852399826,
- 0.06683415174484253, 0.04148750752210617, 0.06345599889755249, 0.02713778428733349,
- 0.004718912299722433, 0.008430356159806252, 0.028450487181544304, 0.07413125038146973,
- 0.05267392471432686, 0.0222577303647995, 0.09522640705108643, 0.02649310603737831,
- 0.0729687437415123, 0.08665649592876434, -0.04424617066979408, 0.11094028502702713,
- 0.03448471426963806, -0.00942555908113718, 0.05881138890981674, -0.02424265630543232,
- -0.059000998735427856, 0.053050216287374496, 0.08261076360940933, -0.045604437589645386,
- 0.062326282262802124, -0.0031774481758475304, 0.11950648576021194, -0.05988255515694618,
- 0.04555482044816017, 0.07948882132768631, 0.05916368216276169, -0.133966326713562,
- -0.046588558703660965, 0.025497810915112495, -0.13470114767551422, -0.08818083256483078,
- 0.021506881341338158, 0.12212421000003815, -0.0884784460067749, 0.04599878937005997,
- -0.044136419892311096, 0.022406253963708878, -0.01744804158806801,
- 0.0004984086845070124, 0.06340940296649933, -0.023794572800397873, 0.002383160637691617,
- 0.05933810770511627, 0.00512282270938158, 0.08692650496959686, 0.1095716804265976,
- -0.015678133815526962, -0.09418753534555435, -0.067026287317276, 0.11502797901630402,
- -0.028674617409706116, -0.07329754531383514, 0.015143876895308495, -0.06777998059988022,
- 0.050622545182704926, -0.1440141201019287, 0.057044483721256256, 0.11155525594949722,
- -0.09374024718999863, -0.000915432523470372, -0.06443963199853897, 0.07149513810873032,
- -0.02948842942714691, 0.006262441631406546, -0.0730707049369812, 0.043563611805438995,
- -0.04257882386445999, 0.00851704552769661, -0.0405794121325016, 0.01738794520497322,
- 0.03899053484201431, -0.041006866842508316, 0.031950704753398895, 0.06366851925849915,
- -0.05824650451540947, -0.04521706700325012, 0.07441025227308273, 0.010434187948703766,
- -0.08026038855314255, -0.047077424824237823, -0.019604995846748352,
- -0.009892184287309647, -0.017028070986270905, -0.016851672902703285,
- -0.013570328243076801, 0.03415684029459953, -0.07226894050836563, -0.022397013381123543,
- 0.019087284803390503, 0.020243272185325623, 0.08162132650613785, 0.030761167407035828,
- 0.05176606401801109, -0.05079502984881401, -0.01864187978208065, 0.07780700922012329,
- 0.042092371731996536, 0.08446309715509415, -0.047096267342567444, -0.004612313583493233,
- -0.03836975619196892, -0.0629785805940628, 0.01713133230805397, 0.07636196166276932,
- 0.05995330214500427, 0.025708146393299103, 0.014158974401652813, -0.027457386255264282,
- -0.03003653697669506, 0.08409295231103897, 0.01872066780924797, 0.014870202168822289,
- 0.01592090353369713, -0.07268670201301575, -0.033184491097927094, 0.10202372819185257,
- -0.01844269409775734, -0.0014607170596718788, 0.02513871341943741, 0.01836085319519043,
- 0.08461461216211319, 0.12079115211963654, 0.05916639789938927, 0.03438772261142731,
- -0.007982785813510418, 0.00560655165463686, -0.03504084050655365, -0.000991297303698957,
- -0.005733597092330456, -0.023227380588650703, -0.11807837337255478,
- -0.05893953517079353, 0.030840888619422913, 0.09508112072944641, 0.021821781992912292,
- -0.10450457036495209, -0.037425633519887924, -0.03639313578605652
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 2,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 24,
- "similarity": 0.9990843534469604
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 126,
- "similarity": 0.9989529252052307
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 51,
- "similarity": 0.9988634586334229
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Sophie Nieto-Munoz"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 157,
- "source_domain": "nj.com",
- "submitters": ["Catherine Olsson"],
- "title": "OSHA investigates Amazon warehouse bear spray accident that left worker critical",
- "url": "https://www.nj.com/mercer/2018/12/osha-investigates-amazon-warehouse-bear-spray-accident-that-left-worker-critical.html"
- },
- {
- "__typename": "Report",
- "authors": ["Jasper Jolly", "Larry Elliott"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 156,
- "source_domain": "theguardian.com",
- "submitters": ["Catherine Olsson"],
- "title": "Amazon robot sets off bear repellant, putting 24 workers in hospital",
- "url": "https://www.theguardian.com/technology/2018/dec/06/24-us-amazon-workers-hospitalised-after-robot-sets-off-bear-repellent"
- },
- {
- "__typename": "Report",
- "authors": ["Megan Henney"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 155,
- "source_domain": "foxbusiness.com",
- "submitters": ["Catherine Olsson"],
- "title": "Amazon bear repellent accident this week wasn’t its first",
- "url": "https://www.foxbusiness.com/retail/amazon-bear-repellent-accident-this-week-wasnt-its-first"
- },
- {
- "__typename": "Report",
- "authors": ["Lindsey Bever"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 154,
- "source_domain": "washingtonpost.com",
- "submitters": ["Catherine Olsson"],
- "title": "Amazon warehouse bear spray incident leaves workers sickened in Robbinsville, N.J.",
- "url": "https://www.washingtonpost.com/business/2018/12/05/dozens-amazon-workers-sickened-after-bear-repellent-accidentally-discharged-warehouse/?noredirect=on\u0026utm_term=.0001fedc3ea0"
- },
- {
- "__typename": "Report",
- "authors": ["Wire Reports"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 153,
- "source_domain": "tennessean.com",
- "submitters": ["Catherine Olsson"],
- "title": "Amazon bear spray accident attributed to robot error",
- "url": "https://www.tennessean.com/story/news/2018/12/06/amazon-bear-spray-accident-robot-error/2229903002/"
- },
- {
- "__typename": "Report",
- "authors": ["David Grossman"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 152,
- "source_domain": "popularmechanics.com",
- "submitters": ["Catherine Olsson"],
- "title": "Amazon Warehouse Bear Spray Accident Injures Dozens, One Critically",
- "url": "https://www.popularmechanics.com/technology/infrastructure/a25414009/amazon-warehouse-bear-spray-accident/"
- },
- {
- "__typename": "Report",
- "authors": ["BBC News"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 151,
- "source_domain": "bbc.com",
- "submitters": ["Catherine Olsson"],
- "title": "Amazon workers injured in bear spray accident",
- "url": "https://www.bbc.com/news/world-us-canada-46468719"
- },
- {
- "__typename": "Report",
- "authors": ["Louise Matsakis"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 150,
- "source_domain": "wired.com",
- "submitters": ["Catherine Olsson"],
- "title": "Amazon Has a History of Bear Repellent Accidents",
- "url": "https://www.wired.com/story/amazon-first-bear-repellent-accident/"
- },
- {
- "__typename": "Report",
- "authors": ["NBC10 Staff"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 149,
- "source_domain": "nbcphiladelphia.com",
- "submitters": ["Catherine Olsson"],
- "title": "Robot Punctures Bear Spray Can, More Than 50 People Sickened at New Jersey Amazon Warehouse, Town Says",
- "url": "https://www.nbcphiladelphia.com/news/local/Amazon-Warehouse-Robbinsville-Sickened-Workers-501976671.html"
- },
- {
- "__typename": "Report",
- "authors": ["Michael L. Diamond"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 148,
- "source_domain": "usatoday.com",
- "submitters": ["Catherine Olsson"],
- "title": "Amazon warehouse NJ accident shines light on company's safety record",
- "url": "https://www.usatoday.com/story/money/business/2018/12/05/amazon-warehouse-nj-accident-shines-light-companys-safety-record/2216715002/"
- },
- {
- "__typename": "Report",
- "authors": ["Jordan Pearson"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 146,
- "source_domain": "motherboard.vice.com",
- "submitters": ["Catherine Olsson"],
- "title": "24 Amazon Workers Hospitalized After Robot Punctures Bear Spray In Warehouse",
- "url": "https://motherboard.vice.com/en_us/article/qvqe85/24-amazon-workers-hospitalized-after-robot-punctures-bear-spray-in-warehouse"
- },
- {
- "__typename": "Report",
- "authors": ["Sarah Harvard"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 145,
- "source_domain": "independent.co.uk",
- "submitters": ["Catherine Olsson"],
- "title": "Dozens of Amazon employees taken to hospital after robot unleashes bear spray",
- "url": "https://www.independent.co.uk/news/world/americas/us-politics/amazon-bear-repellent-new-jersey-hospital-workers-a8669381.html"
- },
- {
- "__typename": "Report",
- "authors": ["Michael L. Diamond"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 144,
- "source_domain": "app.com",
- "submitters": ["Catherine Olsson"],
- "title": "Bear spray incident at NJ Amazon warehouse shines light on safety record",
- "url": "https://www.app.com/story/money/business/main-street/2018/12/05/bear-spray-incident-nj-amazon-warehouse-shines-light-safety-record/2215515002/"
- },
- {
- "__typename": "Report",
- "authors": ["Ken Hanly"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 143,
- "source_domain": "digitaljournal.com",
- "submitters": ["Catherine Olsson"],
- "title": "Amazon bear repellent accident sends 24 workers to the hospital",
- "url": "http://www.digitaljournal.com/business/amazon-bear-repellent-accident-sends-24-workers-to-the-hospital/article/538549"
- },
- {
- "__typename": "Report",
- "authors": ["Reuters"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1665532800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 142,
- "source_domain": "msn.com",
- "submitters": ["Catherine Olsson"],
- "title": "Robot's bear spray accident puts 24 Amazon workers in hospital",
- "url": "https://www.msn.com/en-ie/news/techandscience/robots-bear-spray-accident-puts-24-amazon-workers-in-hospital/ar-BBQzRNq"
- },
- {
- "__typename": "Report",
- "authors": ["Sophie Nieto-Munoz"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 141,
- "source_domain": "nj.com",
- "submitters": ["Catherine Olsson"],
- "title": "1 critical, 54 Amazon workers treated after bear repellent discharge in N.J. warehouse",
- "url": "https://www.nj.com/mercer/2018/12/80-workers-at-amazon-warehouse-in-nj-treated-after-being-sickened-by-bear-repellant.html#incart_river_index"
- },
- {
- "__typename": "Report",
- "authors": ["Soo Youn"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 139,
- "source_domain": "abcnews.go.com",
- "submitters": ["Catherine Olsson"],
- "title": "24 Amazon workers sent to hospital after robot accidentally unleashes bear spray",
- "url": "https://abcnews.go.com/US/24-amazon-workers-hospital-bear-repellent-accident/story?id=59625712"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "boeing",
- "name": "Boeing"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "boeing",
- "name": "Boeing"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "airplane-passengers",
- "name": "Airplane Passengers"
- },
- {
- "__typename": "Entity",
- "entity_id": "airplane-crew",
- "name": "Airplane Crew"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [
- 1342, 389, 388, 387, 386, 385, 384, 383, 382, 381, 380, 379, 378, 377, 376, 375, 374,
- 373, 372
- ],
- "vector": [
- -0.06344708055257797, 0.08166317641735077, 0.006767462007701397, -0.11429263651371002,
- 0.07818274199962616, -0.02436312846839428, -0.01997959055006504, 0.05669109523296356,
- 0.05186852812767029, -0.13120679557323456, 0.03844519332051277, 0.03713090717792511,
- 0.012107397429645061, -0.08131768554449081, -0.0030612871050834656,
- -0.07282830774784088, -0.10005918890237808, -0.017672335729002953, -0.04277820512652397,
- -0.10577819496393204, -0.0891910269856453, -0.023506660014390945, 0.013328559696674347,
- 0.10228399187326431, -0.05645120143890381, 0.024322863668203354, 0.01313194539397955,
- 0.12776179611682892, -0.04956616833806038, 0.02988206408917904, -0.018648860976099968,
- 0.007596772629767656, 0.11170940846204758, 0.003350325394421816, 0.0032103341072797775,
- 0.08627865463495255, -0.00452623562887311, -0.010653890669345856, -0.058303702622652054,
- -0.001056130276992917, 0.015081183053553104, 0.2215815633535385, 0.03857589140534401,
- -0.014560513198375702, 0.054756034165620804, -0.04517057538032532, 0.026975179091095924,
- 0.044276487082242966, -0.005364003591239452, -0.006352393887937069,
- -0.04265836998820305, 0.11225835978984833, -0.017474645748734474, -0.004692276008427143,
- -0.1397094875574112, 0.022719180211424828, 0.007162908092141151, -0.021760985255241394,
- 0.034230660647153854, -0.06839179247617722, -0.027931824326515198, -0.24558360874652863,
- -0.036384135484695435, -0.058355312794446945, 0.046371184289455414,
- -0.08864477276802063, -0.025864744558930397, -0.017693018540740013,
- 0.035014234483242035, 0.0771557092666626, 0.05928211286664009, -0.0035111422184854746,
- -0.022297749295830727, 0.020870553329586983, 0.00987770315259695, 0.007683281786739826,
- 0.015684884041547775, 0.20638824999332428, -0.10439275205135345, 0.017273789271712303,
- 0.0921032726764679, -0.06327635049819946, 0.4307502806186676, 0.017499251291155815,
- -0.015983114019036293, -0.05489431694149971, 0.06922943890094757, 0.08754252642393112,
- 0.04365835338830948, 0.0006397831602953374, -0.03455432131886482, 0.022921863943338394,
- -0.042694348841905594, 0.08542480319738388, 0.09744493663311005, 0.04502207413315773,
- -0.005134069360792637, 0.04406854510307312, -0.0013151513412594795,
- -0.04973506182432175, 0.031067509204149246, -0.06925342231988907, 0.10270313918590546,
- 0.044825535267591476, -0.0316423624753952, -0.009173722006380558, 0.10225946456193924,
- -0.03086371161043644, 0.07444128394126892, -0.0654892846941948, 0.02339647151529789,
- 0.006005859933793545, 0.1028587594628334, 0.012438771314918995, 0.06194404512643814,
- -0.057714033871889114, 0.008545254357159138, 0.05273856595158577, 0.09500562399625778,
- 0.012938018888235092, 0.020519161596894264, 0.07068191468715668, 0.060623545199632645,
- -0.04661741852760315, 0.0014588618651032448, -0.055866874754428864,
- -0.04990503191947937, -0.0431852713227272, -0.04515451937913895, 0.03898932784795761,
- -0.031004035845398903, -0.18412724137306213, 0.029460584744811058, 0.11556845903396606,
- -0.022403575479984283, -0.048633452504873276, -0.04316400736570358,
- -0.04320515692234039, 0.04446222260594368, -0.006907036527991295, -0.024769144132733345,
- 0.07969899475574493, 0.044741321355104446, 0.03819488361477852, 0.10996264219284058,
- 0.04219183325767517, -0.06744411587715149, -0.06720941513776779, -0.01892978511750698,
- -0.00012278031499590725, 0.08596516400575638, -0.10735524445772171,
- -0.07457881420850754, 0.059798114001750946, 0.021282117813825607, 0.6299101114273071,
- 0.134905144572258, 0.15164721012115479, 0.01427449006587267, -0.013758943416178226,
- 0.17783470451831818, 0.02516569383442402, 0.07244158536195755, -0.08331070095300674,
- -0.08149050921201706, 0.04999091103672981, -0.06587005406618118, -0.03134734556078911,
- 0.02202579565346241, 0.036786504089832306, 0.13036037981510162, 0.0014339291956275702,
- 0.07809950411319733, -0.00879748910665512, -0.061851922422647476, -0.025590619072318077,
- 0.053029585629701614, 0.029615910723805428, -0.12107467651367188, -0.02424752525985241,
- 0.04301344230771065, 0.0734277293086052, -0.06770920008420944, 0.017072996124625206,
- -0.02781393565237522, 0.056854650378227234, -0.028930114582180977, 0.046034298837184906,
- -0.050670549273490906, -0.04385126382112503, 0.000608303991612047, 0.04627717658877373,
- 0.040977369993925095, -0.0655832588672638, -0.029511934146285057, 0.12535209953784943,
- 0.0019232049817219377, -0.014919769950211048, 0.05207999795675278, -0.09502332657575607,
- 0.03438139706850052, 0.008555830456316471, 0.1427675038576126, -0.09635698050260544,
- 0.05538341775536537, -0.027438664808869362, 0.0018772735493257642, 0.06616037338972092,
- -0.0008730663103051484, -0.04682141914963722, -0.04707155376672745, 0.05115866661071777,
- 0.01534971408545971, 0.08094620704650879, 0.060719434171915054, -0.045343250036239624,
- 0.05772528424859047, 0.07550844550132751, -0.015437616966664791, -0.009207835420966148,
- 0.033605027943849564, 0.08157436549663544, -0.006787578575313091, 0.0011824340326711535,
- 0.027522604912519455, 0.06866221874952316, 0.02102738246321678, -0.016859864816069603,
- 0.05195382237434387, 0.01630200445652008, -0.044876981526613235, 0.031958065927028656,
- -0.0068326364271342754, 0.031163422390818596, 0.12911729514598846, -0.08039039373397827,
- -0.027837857604026794, -0.033585075289011, -0.0044412920251488686, 0.00181517843157053,
- -0.05503761023283005, 0.07274633646011353, 0.05138422176241875, 0.09305553883314133,
- 0.047614213079214096, 0.0635477602481842, 0.052272383123636246, 0.09539659321308136,
- 0.01260871347039938, 0.07816364616155624, -0.022480685263872147, -0.10858412832021713,
- -0.011636169627308846, -0.01382924523204565, 0.03377460688352585, 0.01729704439640045,
- -0.04430908337235451, -0.03341041877865791, -0.018115008249878883, -0.03196175396442413,
- -0.08039093762636185, -0.029139384627342224, 0.05125431343913078, 0.07340147346258163,
- -0.05758129805326462, -0.0693565160036087, -0.11273239552974701, 0.011098888702690601,
- 0.05132390186190605, 0.0065963189117610455, -0.009955956600606441, -0.0899561271071434,
- 0.0036788065917789936, 0.02168198861181736, 0.02494187280535698, 0.002130234846845269,
- 0.009494908154010773, -0.024494096636772156, -0.0534856803715229, 0.027977384626865387,
- -0.021101923659443855, -0.010055462829768658, -0.06882566213607788,
- -0.06549129635095596, -0.046290263533592224, 0.009037143550813198, 0.014897903427481651,
- -0.0001035439272527583, 0.04245966672897339, 0.06145596504211426, 0.027484379708766937,
- 0.015355827286839485, -0.055655587464571, 0.06611933559179306, -0.03458729386329651,
- -0.014109536074101925, 0.07251986116170883, -0.04376121982932091, 0.03160928934812546,
- 0.0026789456605911255, -0.09107188880443573, -0.044206179678440094,
- -0.02269771136343479, -0.06411559134721756, 0.02426946349442005, -0.013378143310546875,
- -0.0031066001392900944, -0.028513427823781967, 0.003366093384101987,
- 0.05981818586587906, -0.07770969718694687, -0.03501378372311592, -0.09344836324453354,
- 0.11275885254144669, -0.022175855934619904, -0.0041088140569627285, 0.03609473630785942,
- -0.04315100237727165, 0.05717639997601509, 0.02622450515627861, -0.022940978407859802,
- 0.03283856436610222, 0.04560241848230362, -0.02188671939074993, -0.0207736324518919,
- 0.07642219960689545, -0.030955474823713303, -0.0022758510895073414, 0.08343758434057236,
- 0.40858742594718933, -0.16646449267864227, 0.054266609251499176, 0.07613331079483032,
- 0.01531206164509058, 0.06417442113161087, -0.0521782748401165, 0.054851431399583817,
- 0.057886313647031784, 0.11549802869558334, 0.06297305226325989, -0.01765582524240017,
- -0.004982133395969868, -0.09845121204853058, 0.0861775279045105, -0.012090081349015236,
- 0.005952168721705675, -0.01462347712367773, -0.11557795107364655, 0.023503607138991356,
- 0.04266585037112236, -0.010662105865776539, -0.03751755133271217, 0.02998199500143528,
- -0.04927113279700279, 0.00439730379730463, 0.050774868577718735, -0.022382713854312897,
- -0.014233832247555256, 0.0006110582035034895, 0.0030639723408967257, 0.0240780021995306,
- 0.03440861031413078, 0.03302140161395073, -0.13999004662036896, 0.06121567636728287,
- -0.1325918585062027, -0.04115681350231171, 0.06036125868558884, -0.014271182008087635,
- 0.021423690021038055, 0.0811619982123375, -0.05149877071380615, 0.040416210889816284,
- 0.004071986768394709, -0.04767303913831711, 0.028679970651865005, 0.04017426446080208,
- 0.020066604018211365, 0.02610035054385662, 0.15174522995948792, -0.003197514684870839,
- -0.08480332046747208, -0.09627586603164673, 0.07195685803890228, 0.11450020968914032,
- -0.007007709238678217, 0.00008728267130209133, -0.021491868421435356,
- -0.012001284398138523, 0.0006278584478422999, -0.025568537414073944,
- -0.11514681577682495, 0.009250554256141186, -0.016638627275824547, 0.08458741754293442,
- 0.005612723529338837, -0.029712319374084473, -0.2066710740327835, -0.038253434002399445,
- -0.05918815732002258, -0.004766690079122782, 0.12450370192527771, -0.07947517186403275,
- 0.07468193024396896, 0.037242259830236435, -0.019413068890571594,
- -0.0031337274704128504, -0.08106856048107147, -0.014668671414256096,
- -0.0035597740206867456, 0.05358244106173515, 0.015515458770096302, 0.04440915957093239,
- -0.0326528325676918, 0.10425469279289246, -0.08538517355918884, 0.039385464042425156,
- -0.02220459282398224, -0.012059991247951984, 0.08449280261993408, -0.04939454793930054,
- 0.026767978444695473, 0.03294164687395096, -0.0439005084335804, 0.0026921082753688097,
- -0.0647711381316185, -0.01117676217108965, -0.1198347732424736, -0.06000101566314697,
- -0.028660306707024574, -0.08811549097299576, 0.0398731529712677, -0.10606566071510315,
- -0.022146623581647873, 0.00519324978813529, -0.013546744361519814, 0.03412497043609619,
- 0.04217640683054924, 0.008760668337345123, -0.12313014268875122, 0.01883292756974697,
- 0.014594534412026405, 0.08930257707834244, -0.0036958479322493076, -0.03563234210014343,
- 0.0669945627450943, 0.08493194729089737, 0.06356420367956161, 0.02009717933833599,
- -0.0015545934438705444, -0.039242297410964966, 0.0007369191735051572,
- -0.08653631806373596, -0.5273846983909607, 0.031393423676490784, 0.011410865932703018,
- 0.03258967399597168, 0.03455083817243576, -0.09342635422945023, 0.04197270795702934,
- 0.007006137631833553, -0.06691224128007889, 0.09141910076141357, -0.05037718266248703,
- 0.046842485666275024, 0.03113701194524765, -0.052511729300022125, -0.0293575469404459,
- -0.06893039494752884, -0.0499526746571064, 0.06269312649965286, 0.009647976607084274,
- -0.06364712119102478, -0.07210268080234528, 0.025532282888889313, -0.013693449087440968,
- -0.013378389179706573, -0.013388528488576412, 0.03790067881345749, -0.06533662974834442,
- -0.04290788993239403, 0.03279047831892967, 0.027424560859799385, 0.04212072491645813,
- -0.059496887028217316, 0.004935381002724171, 0.02523903176188469, -0.0819990262389183,
- 0.1562936007976532, 0.03191092982888222, -0.01723107323050499, -0.03827314078807831,
- 0.09025111049413681, 0.021108156070113182, 0.18821220099925995, -0.011712453328073025,
- 0.04752412438392639, 0.02414696477353573, 0.15398526191711426, 0.016526708379387856,
- 0.0515609011054039, -0.046682823449373245, 0.016951140016317368, 0.042424120008945465,
- -0.007611788343638182, 0.061881449073553085, -0.06372123956680298, -0.02784441038966179,
- -0.045753125101327896, 0.003441715380176902, -0.0273282490670681, 0.03934372588992119,
- 0.17908860743045807, 0.0002350738359382376, 0.03189994767308235, 0.02569684199988842,
- -0.05624527111649513, -0.00832993071526289, -0.04454752802848816, -0.1649830937385559,
- -0.03559219837188721, -0.0014056990621611476, 0.001042360789142549,
- -0.03227381035685539, -0.11232796311378479, -0.02575782500207424, -0.04104438051581383,
- 0.008446035906672478, 0.08687619864940643, -0.009420855902135372, 0.05255577713251114,
- -0.05577778071165085, 0.08524417877197266, 0.052407074719667435, 0.013439630158245564,
- 0.057359207421541214, 0.08264976739883423, 0.026237430050969124,
- -0.00016529779531992972, -0.02069155126810074, -0.0531524121761322, 0.04047936201095581,
- 0.12000852823257446, -0.04559985548257828, 0.1281876266002655, 0.08232666552066803,
- -0.04636223241686821, -0.05993393808603287, 0.017575189471244812, -0.023134935647249222,
- 0.041024401783943176, -0.4756084680557251, 0.0006596884923055768, 0.0946284830570221,
- 0.013818830251693726, 0.027002064511179924, 0.07831794023513794, 0.004088155925273895,
- -0.04393080994486809, -0.005337872542440891, -0.07678817212581635, 0.1588609665632248,
- -0.017595047131180763, 0.061794131994247437, -0.11756108701229095, 0.002164247212931514,
- 0.08217575401067734, -0.031884223222732544, -0.019212055951356888, 0.07963450253009796,
- -0.18765386939048767, -0.008585888892412186, -0.04915010556578636, 0.14347591996192932,
- 0.0510973259806633, 0.05139395594596863, 0.0864999070763588, -0.0654895082116127,
- 0.08237777650356293, 0.027914226055145264, 0.0003843303711619228, 0.07182669639587402,
- -0.0003162035718560219, -0.01586276851594448, 0.08826897293329239, 0.05560927093029022,
- 0.07555775344371796, -0.024065975099802017, 11.837002754211426, 0.08186496049165726,
- 0.010233218781650066, -0.09398049116134644, -0.02357613481581211, -0.053556982427835464,
- 0.02875404991209507, -0.0795513167977333, 0.0528319887816906, 0.10250276327133179,
- -0.003235118230804801, -0.03232278674840927, -0.015236265026032925,
- -0.12379569560289383, 0.033160142600536346, -0.05445294454693794, -0.05277487635612488,
- -0.03479344770312309, 0.05653807893395424, -0.05563515052199364, -0.017919739708304405,
- 0.03046807087957859, 0.07026179879903793, 0.04843892157077789, -0.09303463250398636,
- 0.04560847580432892, 0.016503382474184036, -0.00032065113191492856,
- 0.009418527595698833, 0.020813044160604477, -0.0002812228340189904,
- -0.007912078872323036, 0.06769078224897385, 0.010395673103630543, 0.005251294933259487,
- 0.0591278150677681, 0.05194774270057678, 0.0801427885890007, 0.013462981209158897,
- 0.09252247959375381, 0.021749215200543404, 0.034575775265693665, 0.01413714699447155,
- 0.043317582458257675, 0.06281183660030365, 0.04084233194589615, 0.07763221859931946,
- 0.1042674109339714, -0.006390677765011787, 0.06788602471351624, 0.06937188655138016,
- -0.003430915530771017, 0.09525635093450546, 0.005875948816537857, -0.00579046830534935,
- 0.06147320568561554, -0.029097365215420723, -0.06330995261669159, 0.04642622545361519,
- 0.1053842082619667, -0.04732728376984596, 0.10194314271211624, 0.01952417939901352,
- 0.09165963530540466, -0.02079552412033081, 0.040394507348537445, 0.11218514293432236,
- 0.024409707635641098, -0.07873810082674026, -0.06401826441287994, -0.006225597579032183,
- -0.1297062337398529, -0.04469316825270653, 0.04769357293844223, 0.12735280394554138,
- -0.033025361597537994, 0.0407552644610405, -0.06081210449337959, 0.04428580775856972,
- -0.03983631357550621, -0.02211560495197773, 0.04093929007649422, -0.051558829843997955,
- 0.032224662601947784, 0.08239895850419998, 0.04183740168809891, 0.07335241138935089,
- 0.07879146933555603, -0.012950051575899124, -0.08752363175153732, -0.09988908469676971,
- 0.09239979088306427, -0.05865079537034035, -0.06893647462129593, -0.004783601965755224,
- -0.008584263734519482, 0.057420819997787476, -0.15754695236682892, 0.05836616829037666,
- 0.07054243236780167, -0.13312113285064697, -0.008350353688001633, -0.018074244260787964,
- 0.05601808801293373, -0.015025931410491467, 0.006143397185951471, -0.07129538059234619,
- 0.03372417390346527, 0.00952817965298891, 0.04351312667131424, -0.027814576402306557,
- 0.05202679708600044, 0.06829900294542313, -0.07715551555156708, 0.09498211741447449,
- 0.05001722648739815, -0.020474791526794434, -0.027409369125962257, 0.027404114603996277,
- 0.0013600001111626625, -0.1029287576675415, -0.03453785181045532, -0.026776200160384178,
- -0.0355544276535511, -0.05667409673333168, -0.05159550905227661, 0.00842534750699997,
- 0.04403869807720184, -0.08255467563867569, -0.020291928201913834, 0.03682293742895126,
- 0.04841336980462074, 0.060471270233392715, 0.01630278304219246, 0.06233486533164978,
- -0.06925024837255478, -0.06339938193559647, 0.044754721224308014, 0.05862953141331673,
- 0.050429265946149826, -0.05315876752138138, 0.005935625173151493, -0.056703120470047,
- -0.09531483799219131, -0.027026336640119553, 0.055659808218479156, 0.06263458728790283,
- 0.03222028166055679, 0.025132114067673683, -0.07015661895275116, -0.032896898686885834,
- 0.11033283919095993, 0.050238292664289474, 0.046613458544015884, 0.012085264548659325,
- -0.0776837095618248, 0.008306549862027168, 0.11836802214384079, -0.03238619118928909,
- 0.012659713625907898, 0.009754479862749577, -0.0047632805071771145, 0.08684848248958588,
- 0.0753466859459877, 0.013453416526317596, 0.013804382644593716, 0.021041125059127808,
- 0.007891855202615261, -0.00983220525085926, -0.02341271936893463, 0.05158422887325287,
- -0.026740239933133125, -0.12163105607032776, -0.051347073167562485, 0.04762517288327217,
- 0.0905437245965004, -0.00225575128570199, -0.12051983922719955, -0.050016652792692184,
- -0.028566580265760422
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 3,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 20,
- "similarity": 0.9988358616828918
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 52,
- "similarity": 0.9987477660179138
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 25,
- "similarity": 0.9986588358879089
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Carlos E. Perez"],
- "epoch_date_downloaded": 1603238400,
- "epoch_date_modified": 1607299200,
- "epoch_date_submitted": 1607299200,
- "flag": null,
- "report_number": 1342,
- "source_domain": "medium.com",
- "submitters": ["Ingrid Dickinson (CSET)"],
- "title": "AI Safety, Leaking Abstractions and Boeing’s 737 Max 8",
- "url": "https://medium.com/intuitionmachine/ai-safety-leaking-abstractions-and-boeings-737-max-8-5d4b3b9bf0c3"
- },
- {
- "__typename": "Report",
- "authors": ["Niniek Karmini", "David Koenig"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 389,
- "source_domain": "courthousenews.com",
- "submitters": ["Catherine Olsson"],
- "title": "Report Faults Safety Failures, Defects in Lion Air Crash",
- "url": "https://www.courthousenews.com/report-faults-safety-failures-defects-in-lion-air-crash/"
- },
- {
- "__typename": "Report",
- "authors": ["Niniek Karmini", "David Koenig"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 388,
- "source_domain": "apnews.com",
- "submitters": ["Catherine Olsson"],
- "title": "Report faults safety failures, defects in Lion Air crash",
- "url": "https://www.apnews.com/4cf97e9b0a004cf5a0db401bb1d222e1"
- },
- {
- "__typename": "Report",
- "authors": ["Helen Regan", "Masrur Jamaluddin"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 387,
- "source_domain": "edition.cnn.com",
- "submitters": ["Catherine Olsson"],
- "title": "Lion Air: Sensor was replaced day before crash but problems persisted",
- "url": "https://edition.cnn.com/2018/11/08/asia/lion-air-sensor-replaced-intl/index.html"
- },
- {
- "__typename": "Report",
- "authors": ["Barbara S. Peterson"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 386,
- "source_domain": "popularmechanics.com",
- "submitters": ["Catherine Olsson"],
- "title": "Lion Air Flight JH 160 Crash Sensor Replacement",
- "url": "https://www.popularmechanics.com/flight/airlines/a24841961/sensor-replaced-one-day-before-lion-air-flight-jh-160-crash/"
- },
- {
- "__typename": "Report",
- "authors": ["Jeremy Bogaisky"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 385,
- "source_domain": "forbes.com",
- "submitters": ["Catherine Olsson"],
- "title": "Crash Of Lion Air 737 MAX Raises Questions About Autopilot And Pilot Skills",
- "url": "https://www.forbes.com/sites/jeremybogaisky/2018/11/08/crash-of-lion-air-737-max-raises-questions-about-autopilot-and-pilot-skills/#133731448477"
- },
- {
- "__typename": "Report",
- "authors": ["Andy Pasztor", "Andrew Tangel"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 384,
- "source_domain": "marketwatch.com",
- "submitters": ["Catherine Olsson"],
- "title": "Southwest replaced flight-control sensors of the kind implicated in Lion Air crash",
- "url": "https://www.marketwatch.com/story/southwest-replaced-flight-control-sensors-of-the-kind-implicated-in-lion-air-crash-2018-11-16"
- },
- {
- "__typename": "Report",
- "authors": ["Alan Levin", "Harry Suhartono", "Julie Johnsson"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 383,
- "source_domain": "time.com",
- "submitters": ["Catherine Olsson"],
- "title": "Lion Air Jet Had Airspeed Sensor Failure on Previous Flight",
- "url": "http://time.com/5441004/lion-air-jet-sensor-failure/"
- },
- {
- "__typename": "Report",
- "authors": ["Reuters Editorial"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 382,
- "source_domain": "reuters.com",
- "submitters": ["Catherine Olsson"],
- "title": "Boeing issues bulletin for pilots after Lion Air sensor data error",
- "url": "https://www.reuters.com/article/indonesia-crash-boeing/boeing-issues-bulletin-for-pilots-after-lion-air-sensor-data-error-idUSB9N1X603X"
- },
- {
- "__typename": "Report",
- "authors": ["Stanley Widianto", "Ashley Halsey III", "Aaron Gregg"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 381,
- "source_domain": "mercurynews.com",
- "submitters": ["Catherine Olsson"],
- "title": "Report: Lion Air pilots unable to correct for faulty sensor",
- "url": "https://www.mercurynews.com/2018/11/28/report-lion-air-pilots-unable-to-correct-faulty-sensor/"
- },
- {
- "__typename": "Report",
- "authors": ["Iafrica Editors Curate"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 380,
- "source_domain": "iafrica.com",
- "submitters": ["Catherine Olsson"],
- "title": "Lion Air Plane Crash: Crucial 'Angle Of Attack' Sensor Replaced Before Crash",
- "url": "https://www.iafrica.com/lion-air-plane-crash-crucial-angle-of-attack-sensor-replaced-before-crash/"
- },
- {
- "__typename": "Report",
- "authors": ["CGTN Live"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 379,
- "source_domain": "news.cgtn.com",
- "submitters": ["Catherine Olsson"],
- "title": "Indonesian officials: Problems with sensor found on crashed Lion Air jet",
- "url": "https://news.cgtn.com/news/3d3d674e3163444e30457a6333566d54/share_p.html"
- },
- {
- "__typename": "Report",
- "authors": ["Alan Levin", "Julie Johnsson", "Harry Suhartono"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 378,
- "source_domain": "insurancejournal.com",
- "submitters": ["Catherine Olsson"],
- "title": "New Clues to Lion Air 737 Max Crash Revealed in Boeing, FAA Warnings",
- "url": "https://www.insurancejournal.com/news/international/2018/11/08/507060.htm"
- },
- {
- "__typename": "Report",
- "authors": ["Australian Broadcasting Corporation"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 377,
- "source_domain": "abc.net.au",
- "submitters": ["Catherine Olsson"],
- "title": "Lion Air plane had angle of attack sensor replaced prior to crash; Boeing issues safety reminder",
- "url": "https://www.abc.net.au/news/2018-11-08/lion-air-flight-had-crucial-sensor-replaced-prior-to-fatal-crash/10475468"
- },
- {
- "__typename": "Report",
- "authors": ["Grant Bradley"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 376,
- "source_domain": "nzherald.co.nz",
- "submitters": ["Catherine Olsson"],
- "title": "Possible fault in Lion Air plane similar to a cause of Air New Zealand Airbus A320 France crash",
- "url": "https://www.nzherald.co.nz/business/news/article.cfm?c_id=3\u0026objectid=12151363"
- },
- {
- "__typename": "Report",
- "authors": ["USA Today Editorial Board"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 375,
- "source_domain": "usatoday.com",
- "submitters": ["Catherine Olsson"],
- "title": "What we've got here is a failure to communicate",
- "url": "https://www.usatoday.com/story/opinion/2018/12/04/lion-air-what-weve-got-here-failure-communicate-editorials-debates/2192044002/"
- },
- {
- "__typename": "Report",
- "authors": ["Dominic Gates"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 374,
- "source_domain": "seattletimes.com",
- "submitters": ["Catherine Olsson"],
- "title": "Pilots struggled against Boeing’s 737 MAX control system on doomed Lion Air flight",
- "url": "https://www.seattletimes.com/business/boeing-aerospace/black-box-data-reveals-lion-air-pilots-struggle-against-boeings-737-max-flight-control-system/"
- },
- {
- "__typename": "Report",
- "authors": ["Bloomberg"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 373,
- "source_domain": "businesstimes.com.sg",
- "submitters": ["Catherine Olsson"],
- "title": "Faulty Lion Air sensor wasn’t fixed before crash, preliminary report finds",
- "url": "https://www.businesstimes.com.sg/transport/faulty-lion-air-sensor-wasn%E2%80%99t-fixed-before-crash-preliminary-report-finds"
- },
- {
- "__typename": "Report",
- "authors": ["James Glanz", "Muktita Suhartono", "Hannah Beech"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 372,
- "source_domain": "nytimes.com",
- "submitters": ["Catherine Olsson"],
- "title": "In Indonesia Lion Air Crash, Black Box Data Reveal Pilots’ Struggle to Regain Control",
- "url": "https://www.nytimes.com/2018/11/27/world/asia/indonesia-lion-air-crash-.html"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "uber",
- "name": "Uber"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "uber",
- "name": "Uber"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "pedestrians",
- "name": "pedestrians"
- },
- {
- "__typename": "Entity",
- "entity_id": "elaine-herzberg",
- "name": "Elaine Herzberg"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [
- 2147, 1542, 1378, 1377, 1376, 1375, 1257, 647, 646, 645, 644, 642, 641, 640, 639, 638,
- 637, 636, 635, 634, 633, 632, 631, 630, 629
- ],
- "vector": [
- -0.0846592664718628, 0.09683708786964416, 0.0018341173068620264, -0.08967580616474152,
- 0.08797364689409733, -0.037870765952393415, -0.003483723814715631, 0.051369239911437034,
- 0.030194059163331986, -0.138347829580307, 0.008459272161126137, 0.06196095436811447,
- 0.02072503016795963, -0.06711601167917251, 0.07483988970518113, -0.08524796932935715,
- -0.07236710116267205, -0.054239196393173185, 0.015509895775467157, -0.10938964195549489,
- -0.08011390715837478, -0.014652929424482864, 0.03217422330286354, 0.09354846745729446,
- -0.07118092849850655, 0.0240833393484354, 0.09408194795250893, 0.08343935355544091,
- -0.013710100133903325, 0.04076675534946844, 0.005400219222065061, -0.07529483944177627,
- 0.11028320416808128, 0.01024627581005916, -0.009555443851277233, 0.08640524983406067,
- 0.02563377982005477, -0.025396399293094875, -0.018404500954784454, 0.000992587658111006,
- 0.016571827665902674, 0.24623755991458893, -0.0035413020104169846,
- -0.017046232181601225, 0.028611532137729226, -0.053052680809050796,
- 0.009453473761677742, 0.044915392771363256, 0.018388651170535012, 0.03985610820818693,
- -0.01821308586280793, 0.10514867791905999, -0.02492065473459661, 0.007210043626837432,
- -0.1356933197379112, 0.04098955886438489, 0.04290360239101574, -0.036191780222579836,
- 0.05934069991111755, -0.07561388902366162, -0.06360519956680946, -0.260237540602684,
- -0.03925069753080607, -0.07535185262560845, 0.08863271325826645, -0.07354739628732204,
- -0.025132642700336872, -0.03282105847261846, 0.03668368451297283, 0.07306290253996849,
- 0.06398226611316205, -0.03430676041170955, -0.028221310071530753, 0.022276825625449418,
- 0.00795855003525503, -0.0141558582149446, 0.005944506181403995, 0.2109391552209854,
- -0.12896220803260802, 0.00995615049265325, 0.11276903837919235, -0.11560262054204941,
- 0.48431270480155947, 0.014579312759451568, -0.027828870927914976, -0.047631854861974715,
- 0.09786443322896958, 0.040815992029383776, 0.04556209079921245, 0.05646595284342766,
- -0.04006856718100607, 0.040041271932423114, -0.05718197993934154, 0.043879461828619244,
- 0.08236350951716304, 0.040478705577552315, -0.012495228876359761, 0.04930456109344959,
- -0.018008644673973322, -0.04649050426087342, 0.02510530357481912, -0.042786036878824235,
- 0.09554205998778344, 0.009263399029150606, -0.014464010035153478, 0.019066642420366407,
- 0.07531018798239529, -0.024089524887967853, 0.04405933775007725, -0.0545586465485394,
- 0.01742503550311085, 0.01878144864924252, 0.05399622827768326, 0.008574953330680727,
- 0.03662201751489192, -0.08138285674154759, 0.01690422997751739, 0.05810549890622497,
- 0.10441827297210693, 0.0008521567797288299, -0.01900345625123009, 0.05099394753575325,
- 0.0883323709666729, -0.0732303436845541, -0.03498829531017691, -0.02751774337142706,
- -0.05213117577135563, -0.04699740230571479, -0.06739619635045528, 0.04359155772719532,
- -0.06043919444084168, -0.18895144760608673, 0.0034058465431735384, 0.12024244755506515,
- 0.00831742039968958, -0.06335969993844628, -0.010892672679619863, -0.07097142487764359,
- 0.028668173886835575, -0.02785679881926626, -0.02922104485332966, 0.05060123382136226,
- 0.028725383672863244, 0.022936625573784113, 0.10220238283276557, 0.06699825525283813,
- -0.054186270236968995, -0.04494437649846077, 0.01038725217920728, -0.0343044266756624,
- 0.09852900758385658, -0.10900246411561966, -0.06476700387895107, 0.024713151990436017,
- -0.012564852153882384, 0.7060649418830871, 0.10480172723531724, 0.19194932609796525,
- 0.0015897568978834897, -0.03195896882563829, 0.1795315158367157, -0.005862037613987923,
- 0.05523172825574875, -0.0736899297684431, -0.05709368132054806, 0.030383077273145317,
- -0.10613782465457916, -0.062454649806022645, 0.04477746278047562, 0.042490471224300566,
- 0.12044968992471695, 0.030930046656285414, 0.09334246426820755, 0.00413892881013453,
- -0.09886752851307393, -0.02782487640157342, 0.07352297697216273, 0.008016936415806412,
- -0.11116573452949524, -0.04080663507338613, 0.0556263492256403, 0.0972367212176323,
- -0.07730861749500036, 0.015802520724246278, -0.04851560238283128, 0.06869748070836067,
- -0.012449123607948422, 0.04071416437625885, -0.05957965893670916, 0.043034556824713945,
- 0.022390559962950647, 0.067618837505579, -0.01323810440953821, -0.14034753397107125,
- -0.029328738579060883, 0.11009390443563462, -0.0032990131666883827,
- -0.04341245710616931, 0.052087113941088316, -0.09446058318018913, 0.04954366704449058,
- 0.0012835013400763274, 0.1548495200276375, -0.1224883034825325, 0.03172746807336807,
- -0.0002364539378322661, 0.010422487882897258, 0.037059050771640616,
- -0.010028083173092455, -0.0748931546509266, -0.05971840053796768, 0.07758537776768208,
- 0.03724869654513895, 0.07427921094000339, 0.09206009313464164, -0.051271895989775655,
- 0.023254655003547668, 0.06476526046171785, 0.0005639807967236266, -0.017801499591441824,
- 0.05868206098675728, 0.10269977331161499, -0.03526572484523058, -0.02012170513626188,
- 0.03970216133631766, 0.01973320764489472, 0.01694236760609783, -0.003988117426633835,
- 0.07302964583039284, -0.0011958131683059037, -0.0456543618068099, 0.03666537733748555,
- 0.022942388176452368, 0.017920937077142297, 0.12508447587490082, -0.036211680554552005,
- -0.06171761234290898, -0.009065731819719076, -0.020459258081391454,
- 0.024892477933317423, -0.04115564999636263, 0.09384416103363037, 0.049987136889249086,
- 0.11048373222351074, 0.03219619810581207, 0.056922945454716684, 0.06347970567643642,
- 0.01037253910675645, 0.029190807370468974, 0.06764137845486402, -0.03304008578183129,
- -0.07072424627840519, -0.011339742429554463, 0.01092434193007648, 0.04097650604322553,
- 0.04036724008619785, -0.07641795858740806, -0.03823172174394131, -0.03501694170758128,
- -0.06625783590599894, -0.07886630848050118, -0.0373528744187206, -0.0016239163745194673,
- 0.06362784907221794, -0.03912277488503605, -0.07184397853910923, -0.11656317502260208,
- 0.014007746146526188, 0.051569254286587235, 0.007811293988488614, -0.017884792263212147,
- -0.1251189863681793, 0.0008319983258843422, -0.04440984644694254, 0.04517108023166656,
- -0.01582607101649046, 0.002860398106276989, 0.004250614591874182, -0.055897069685161116,
- 0.02209227778017521, -0.024839490726590155, -0.025127546230796726, -0.06377871327102184,
- -0.0660593818873167, -0.03700870908796787, 0.0003976559685543179, 0.01732379225664772,
- -0.006639886759221554, 0.02726925502996892, 0.02798230013810098, 0.04597492578439415,
- -0.019030537884682418, -0.04634534895420075, 0.058300079479813575, -0.01752883367240429,
- -0.027717575337737797, 0.06580998748540878, -0.012120649605058133, 0.052974410774186256,
- -0.010016548514249735, -0.09423828348517418, -0.01999950993806124, 0.03238842741482586,
- -0.07572664678096772, 0.05900269044097513, -0.00942707975511439, 0.0011973457771819085,
- -0.04151343682780862, 0.004773898299317807, 0.06522836938500404, -0.07441130138933659,
- -0.07616382759064436, -0.10567231804132461, 0.13366131156682967, -0.01142276732251048,
- -0.03847359140403569, 0.027405203357338905, -0.05604849302675575, 0.05844971787184477,
- -0.03452143495902419, -0.021580043854191898, 0.05691049110144377, 0.016679024402983487,
- -0.012021929010516033, -0.004000854433979839, 0.04211211550049484,
- -0.042707847096025944, 0.026921091191470622, 0.07134173013269901, 0.4431210935115814,
- -0.17051540404558183, 0.0940755358338356, 0.1028959347307682, 0.0058458200935274365,
- 0.05536533676087856, -0.04019062614068389, 0.07595221653580665, 0.07751662850379944,
- 0.11186160646378994, 0.10444205150008201, -0.03538080874830484, -0.027557153292000293,
- -0.07421029821038246, 0.08278390780091285, 0.011164871198125183, 0.011579344756901264,
- -0.031019085189327597, -0.09007996305823326, -0.007244501439854503, 0.03259705634787679,
- -0.06500502184033394, 0.0043501401122193785, -0.023096349311017547,
- -0.09787895500659943, -0.013323158924467862, -0.004016594812273979,
- 0.003941980979871005, -0.01319456459255889, 0.024226259207352996, -0.020752545739524068,
- 0.04662869127467275, 0.006822529551573098, 0.03492965907789767, -0.12740575164556503,
- 0.04854857187718153, -0.09279441960155964, -0.0912524450942874, 0.0907598003745079,
- -0.033658105358481405, 0.025375594922807068, 0.07526924669742584, -0.023907224126160146,
- 0.027512824868317694, -0.011330435182899237, -0.06654733918607235, 0.0284028112096712,
- 0.05985389016568661, 0.03444248167797923, 0.09220986634492874, 0.16017489463090898,
- -0.06226566582918167, -0.048700503315776585, -0.06869876354932786, 0.10022494047880173,
- 0.12208719551563263, -0.032789433728903535, 0.009014141010120512, 0.009633499146439135,
- -0.051543289050459865, 0.008533317770343274, -0.06293936386704445, -0.08069658525288105,
- 0.008412821064703167, -0.036672752345912156, 0.0593112376332283, -0.01268138355575502,
- -0.0025226156960707156, -0.18999581903219223, -0.033632727526128295,
- -0.0355561340181157, 0.01844673461280763, 0.11727472186088563, -0.0500562653504312,
- 0.036935437377542256, 0.0578368955780752, -0.02706808865070343, 0.01814715691842139,
- -0.09330590069293976, 0.03893271965906024, -0.017522193965269252, 0.044045278313569726,
- 0.046780629530549046, 0.04090808436274528, -0.03286645922344178, 0.07871085524559021,
- -0.10230669379234314, 0.09581757223233581, 0.008663464579731226, 0.0005228945659473539,
- 0.034263619151897726, -0.03991728383116424, 0.037218119986355304, 0.04483292661607265,
- -0.032393829082138836, 0.02134167860262096, -0.028676058684941382,
- -0.049788694654707796, -0.11608034372329712, -0.07090676687657833, -0.0421094712195918,
- -0.06255424637347459, 0.06872760385274887, -0.12196890205144882, -0.03917711888439954,
- -0.01901193178113317, -0.004092300878837705, 0.023150448482847422, 0.04435204996727407,
- 0.03180161932483316, -0.1536539426445961, 0.023450865428894758, -0.01322328818961978,
- 0.09085876211524009, -0.037579316087067126, -0.03092336601112038, 0.023804550282657145,
- 0.12421181954443455, 0.06506379090249538, 0.018649443127214907, -0.0034673186368308962,
- -0.04505423290655017, 0.020798469027504325, -0.08467895656824112, -0.4855735731124878,
- 0.052180408183485266, -0.019882952431216835, 0.061991261914372445, 0.008833804605528713,
- -0.025478953029669356, 0.04899578457465395, -0.02180211363360286, -0.0387974455114454,
- 0.09756957069039345, -0.06567983373999596, 0.0008291128394193947, 0.030228531230241062,
- -0.07902780793607235, -0.022873703795485197, -0.031512408973649146,
- -0.05003576785326004, 0.06586769729852676, -0.028179272869601847, -0.07797966599464416,
- -0.11414681702852249, 0.020113035552203656, -0.0224893158179475, 0.006702898347284645,
- 0.0075934897037222985, 0.022376695857383312, -0.09880346313118935, -0.04442218624055386,
- 0.04512701258063316, 0.0760277122631669, 0.04511968322331086, -0.0427904534371919,
- -0.01286087671527639, 0.05431474015116691, -0.05528200186789036, 0.1616513603925705,
- 0.023404860728187486, 0.013862783350050449, -0.05551612734794617, 0.07677775502204895,
- 0.0664640973508358, 0.18372972011566163, -0.007376625565811991, 0.05192051760852337,
- 0.027500523605849595, 0.16126795560121537, 0.057595241069793704, 0.021884947633370757,
- -0.041825368776917456, 0.0016975983045995236, 0.01976077403873205, -0.02296368272975087,
- 0.047239053063094616, -0.06655690133571625, -0.030421289037913083,
- -0.046177051290869714, 0.02017291926778853, -0.012219731422374026, 0.03434669222217053,
- 0.2040424007177353, 0.019254498966038227, 0.04184722013305873, -0.00013594915624707938,
- -0.07421951666474343, -0.010613299384713172, -0.06725183650851249, -0.11661929100751876,
- -0.012286982405930758, -0.0122216952778399, 0.011233134304638952, -0.04934828907251358,
- -0.13297742754220962, -0.012647377932444215, -0.045823478838428855,
- 0.0001559102488681674, 0.11549242526292801, 0.004677758841426112, 0.06006131271133199,
- -0.02268375860992819, 0.11187846094369888, 0.04974955178797245, 0.012972435178235174,
- 0.08644798085093498, 0.09748008221387863, 0.0111104748188518, 0.011385615728795529,
- -0.033937491066753867, -0.05005565457046032, -0.0032210352271795275, 0.1219142161309719,
- -0.056559281051158906, 0.08144311301410198, 0.05620416887104511, -0.03414735207334161,
- -0.06521549589931964, 0.050573898553848265, -0.021105949468910694, 0.04649154953658581,
- -0.47482115745544434, -0.020832945127040148, 0.11470910727977753, 0.03382687478326261,
- 0.015934930564835668, 0.08999820902943612, 0.01785993991419673, -0.04464737758040428,
- -0.03660994920996018, -0.04851431561633945, 0.16148380026221276, -0.02063236549496651,
- 0.053756827935576436, -0.10265912994742393, 0.050803958456963304, 0.09266467913985252,
- -0.023858198886737226, -0.038248589457944036, 0.06758012369275093, -0.23886163771152497,
- -0.00999525391496718, -0.07070138413459062, 0.1325138995051384, 0.03754258150234818,
- 0.02643867637962103, 0.06072814062237739, -0.06452276073396206, 0.044626697078347204,
- 0.059135642852634195, -0.013128776634112, 0.06855396278202534, -0.002565007071243599,
- -0.011355909751728177, 0.11655035048723221, 0.0707932468119543, 0.11717592462897301,
- -0.03815200394019484, 12.09377815246582, 0.07590757071971893, 0.031835955530405045,
- -0.08009537406265736, 0.0444907187949866, -0.044817753881216046, 0.006886446287389845,
- -0.11851690009236336, 0.05856343028135598, 0.11747961282730103, -0.0330176399089396,
- -0.04661966102896258, -0.023086953964084386, -0.10819373711943626, 0.011666014981456101,
- -0.10157374233007431, -0.06744109423831106, -0.018043325832113623, 0.019728905707597732,
- -0.028319038785994052, 0.01273402474820614, 0.018322945045074448, 0.07674840420484542,
- 0.015322715057991446, -0.05534501487389207, 0.048677917756140235, 0.03118246969766915,
- -0.0017437606316525489, 0.008063469519838691, 0.04233515252824873, -0.02308212251518853,
- 0.02305731499567628, 0.037870046440511944, -0.009041436263360084, -0.02396404346101917,
- 0.08008714348077774, 0.05354024425148964, 0.08091429069638252, 0.008212809199467302,
- 0.11407907277345658, 0.019197526276111602, 0.008718169680796563, 0.01798414971679449,
- 0.03849363908171654, 0.04166653195396066, 0.04297367990016937, 0.07036278400570155,
- 0.10348156571388245, 0.028313125604763626, 0.03049783518537879, 0.0830694404244423,
- -0.02938409999711439, 0.13877654671669007, 0.02412051536142826, -0.0013588677998632192,
- 0.044199218526482585, -0.013849098505452274, -0.08305238172411919, 0.08265919148921967,
- 0.0753033097088337, -0.06253878392279148, 0.08584359675645828, -0.008321292200125754,
- 0.10959795445203781, -0.030184947410598396, 0.07423478782176972, 0.06326918188482523,
- 0.07477014696516562, -0.15285771399736403, -0.08312787655740976, 0.04887001281604171,
- -0.11305136471986771, -0.061855299919843676, 0.03310157242231071, 0.12084148168563842,
- -0.040905766366049645, 0.045620486568659545, -0.056919012516736985,
- 0.024014769652858377, -0.035861024130135775, -0.026681853658519685, 0.04452032882720232,
- -0.0027241608093027028, 0.02519744273275137, 0.05937916307710111, 0.006204131484264508,
- 0.11747969806194306, 0.07925231382250786, -0.024323599692434073, -0.08118046626448631,
- -0.08259075045585633, 0.09229928247514181, -0.02324707676656544, -0.08565966874361038,
- 0.000058398712426424026, -0.055197408124804496, 0.07147284957580269,
- -0.14830837428569793, 0.07541693340986967, 0.12264674603939056, -0.0991906800866127,
- -0.010835404265671969, -0.04119646845385432, 0.05101410752162337, -0.013263760125264526,
- 0.02366903052199632, -0.04299734408035874, 0.022177588189952076, 0.00005510407499969006,
- 0.0431901216506958, -0.047473657354712484, 0.07110484467819334, 0.09340215101838112,
- -0.07699612528085709, 0.02586842805147171, 0.06051126465201378, -0.023968078632606193,
- -0.056211964562535285, 0.06438367299735547, 0.04643748614937067, -0.09860310420393943,
- -0.05692560203373432, -0.04077638506889343, -0.030813880218192934, -0.03956541694700718,
- -0.03514982557855546, 0.007736947217490524, 0.028382118814624845, -0.06624750953167677,
- -0.01795354039641097, -0.00803337176796049, 0.026570825632661582, 0.07593799896538257,
- 0.036998816040577365, 0.06518086522817612, -0.08225366346538067, -0.019461659938097,
- 0.0499397636577487, 0.03312168129370548, 0.07880690922960638, -0.004557865913957357,
- 0.011633826200850308, -0.06995937325060368, -0.09818934947252274, 0.02313267400022596,
- 0.10449964955449104, 0.07937728494405746, 0.02644701935350895, 0.021547860491555184,
- -0.08882342994213105, -0.05844337474554777, 0.14248467981815338, 0.03758065511006862,
- 0.0045315576414577665, 0.013117789165116847, -0.10145496994256974, -0.03264497248455882,
- 0.16549230873584747, -0.0475476295594126, 0.004326883628964424, 0.038531768727116285,
- -0.024556134836748244, 0.0795782396942377, 0.12135607168078423, 0.05159177013090812,
- 0.03781166378408671, 0.0015061425836756825, 0.009407938420772553, 0.02025873378617689,
- -0.0328198685310781, -0.00627887356095016, 0.010038359458558261, -0.13913205057382583,
- -0.07570967212319374, 0.027975340853445232, 0.09240777164697647, 0.004999784817919135,
- -0.10160187870264054, -0.02972993817180395, -0.043640056597068905
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 4,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 20,
- "similarity": 0.9996035695075989
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 71,
- "similarity": 0.9995622038841248
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 8,
- "similarity": 0.9994083046913147
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Aaron Huff"],
- "epoch_date_downloaded": 1663113600,
- "epoch_date_modified": 1665619200,
- "epoch_date_submitted": 1663113600,
- "flag": null,
- "report_number": 2147,
- "source_domain": "ccjdigital.com",
- "submitters": ["Srishti Khemka (CSET)"],
- "title": "Who's liable when a self-driving truck causes a crash?",
- "url": "https://www.ccjdigital.com/business/article/15064258/whos-liable-when-a-selfdriving-truck-causes-a-crash"
- },
- {
- "__typename": "Report",
- "authors": ["Lauren Smiley"],
- "epoch_date_downloaded": 1646956800,
- "epoch_date_modified": 1646956800,
- "epoch_date_submitted": 1646956800,
- "flag": null,
- "report_number": 1542,
- "source_domain": "wired.com",
- "submitters": ["Sean McGregor"],
- "title": "‘I’m the Operator’: The Aftermath of a Self-Driving Tragedy",
- "url": "https://www.wired.com/story/uber-self-driving-car-fatal-crash/"
- },
- {
- "__typename": "Report",
- "authors": ["Daisuke Wakabayashi"],
- "epoch_date_downloaded": 1603756800,
- "epoch_date_modified": 1607299200,
- "epoch_date_submitted": 1607299200,
- "flag": null,
- "report_number": 1378,
- "source_domain": "nytimes.com",
- "submitters": ["Patrick Hall (BNH.ai)", "CSET annotators"],
- "title": "Self-Driving Uber Car Kills Pedestrian in Arizona, Where Robots Roam",
- "url": "https://www.nytimes.com/2018/03/19/technology/uber-driverless-fatality.html"
- },
- {
- "__typename": "Report",
- "authors": ["Katyanna Quach"],
- "epoch_date_downloaded": 1604793600,
- "epoch_date_modified": 1607299200,
- "epoch_date_submitted": 1607299200,
- "flag": null,
- "report_number": 1377,
- "source_domain": "theregister.com",
- "submitters": ["Roman Lutz", "CSET annotators"],
- "title": "Remember the Uber self-driving car that killed a woman crossing the street? The AI had no clue about jaywalkers",
- "url": "https://www.theregister.com/2019/11/06/uber_self_driving_car_death/"
- },
- {
- "__typename": "Report",
- "authors": ["Andrew Smith"],
- "epoch_date_downloaded": 1604793600,
- "epoch_date_modified": 1607299200,
- "epoch_date_submitted": 1607299200,
- "flag": null,
- "report_number": 1376,
- "source_domain": "theguardian.com",
- "submitters": ["Roman Lutz", "CSET annotators"],
- "title": "Franken-algorithms: The Deadly Consequences of Unpredictable Code",
- "url": "https://www.theguardian.com/technology/2018/aug/29/coding-algorithms-frankenalgos-program-danger"
- },
- {
- "__typename": "Report",
- "authors": ["Mike Murphy"],
- "epoch_date_downloaded": 1605398400,
- "epoch_date_modified": 1607299200,
- "epoch_date_submitted": 1607299200,
- "flag": null,
- "report_number": 1375,
- "source_domain": "qz.com",
- "submitters": ["AIAAIC", "Thomas Giallella (CSET)"],
- "title": "A self-driving Uber just killed a pedestrian",
- "url": "https://qz.com/1232570/a-self-driving-uber-just-killed-a-woman-in-arizona-as-uber-suspends-its-autonomous-tests/"
- },
- {
- "__typename": "Report",
- "authors": ["Sam Levin"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1673308800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1257,
- "source_domain": "theguardian.com",
- "submitters": ["Anonymous"],
- "title": "Uber crash shows 'catastrophic failure' of self-driving technology, experts say",
- "url": "https://www.theguardian.com/technology/2018/mar/22/self-driving-car-uber-death-woman-failure-fatal-crash-arizona"
- },
- {
- "__typename": "Report",
- "authors": ["CBS News"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 647,
- "source_domain": "cbsnews.com",
- "submitters": ["Catherine Olsson"],
- "title": "Uber self-drives robo-cars out of Arizona after fatal crash",
- "url": "https://www.cbsnews.com/news/uber-ends-self-driving-car-arizona-after-tempe-fatal-crash-elaine-herzberg/"
- },
- {
- "__typename": "Report",
- "authors": ["Sam Levin", "Julia Carrie Wong"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 646,
- "source_domain": "theguardian.com",
- "submitters": ["Catherine Olsson"],
- "title": "Self-driving Uber kills Arizona woman in first fatal crash involving pedestrian",
- "url": "https://www.theguardian.com/technology/2018/mar/19/uber-self-driving-car-kills-woman-arizona-tempe"
- },
- {
- "__typename": "Report",
- "authors": ["Laura Bliss"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 645,
- "source_domain": "citylab.com",
- "submitters": ["Catherine Olsson"],
- "title": "Self-Driving Uber Investigation Reveals Handoff Problem",
- "url": "https://www.citylab.com/transportation/2018/05/behind-the-uber-self-driving-car-crash-a-failure-to-communicate/561230/"
- },
- {
- "__typename": "Report",
- "authors": ["The Economist"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 644,
- "source_domain": "economist.com",
- "submitters": ["Catherine Olsson"],
- "title": "The Economist explains",
- "url": "https://www.economist.com/the-economist-explains/2018/05/29/why-ubers-self-driving-car-killed-a-pedestrian"
- },
- {
- "__typename": "Report",
- "authors": ["Sara Ashley O'Brien"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 642,
- "source_domain": "money.cnn.com",
- "submitters": ["Catherine Olsson"],
- "title": "Uber operator in fatal self-driving vehicle crash was likely streaming 'The Voice'",
- "url": "https://money.cnn.com/2018/06/22/technology/uber-self-driving-crash-police-report/index.html"
- },
- {
- "__typename": "Report",
- "authors": ["Kate Conger", "Bryan Menegus"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 641,
- "source_domain": "gizmodo.com",
- "submitters": ["Catherine Olsson"],
- "title": "Uber Driver in Fatal Tempe Crash May Have Been Watching The Voice Behind the Wheel",
- "url": "https://gizmodo.com/uber-driver-in-fatal-tempe-crash-may-have-been-watching-1827039127"
- },
- {
- "__typename": "Report",
- "authors": ["Kim Tobin", "Clayton Klapper", "Morgan Bircher"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 640,
- "source_domain": "abc15.com",
- "submitters": ["Catherine Olsson"],
- "title": "Arizona driver in deadly self-driving Uber crash could face charges",
- "url": "https://www.abc15.com/news/region-southeast-valley/tempe/tempe-police-release-new-video-from-deadly-self-driving-uber-crash"
- },
- {
- "__typename": "Report",
- "authors": ["Dara Kerr"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 639,
- "source_domain": "cnet.com",
- "submitters": ["Catherine Olsson"],
- "title": "Uber self-driving car kills pedestrian in Arizona",
- "url": "https://www.cnet.com/roadshow/news/uber-autonomous-car-crash-arizona-tempe/"
- },
- {
- "__typename": "Report",
- "authors": ["Dara Kerr"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 638,
- "source_domain": "cnet.com",
- "submitters": ["Catherine Olsson"],
- "title": "Uber's driverless-car safety comes under scrutiny after fatality",
- "url": "https://www.cnet.com/news/uber-self-driving-car-fatality-in-arizona-has-people-asking-how-safe-are-driverless-cars/"
- },
- {
- "__typename": "Report",
- "authors": ["Steven Musil"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 637,
- "source_domain": "cnet.com",
- "submitters": ["Catherine Olsson"],
- "title": "Uber reportedly settles with family of victim in self-driving car crash",
- "url": "https://www.cnet.com/news/uber-reportedly-settles-with-family-of-victim-self-driving-car-crash/"
- },
- {
- "__typename": "Report",
- "authors": ["Abrar Al-Heeti"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 636,
- "source_domain": "cnet.com",
- "submitters": ["Catherine Olsson"],
- "title": "Uber's fatal self-driving crash reportedly caused by software",
- "url": "https://www.cnet.com/roadshow/news/uber-reportedly-finds-false-positive-self-driving-car-accident/"
- },
- {
- "__typename": "Report",
- "authors": ["The Straits Times"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 635,
- "source_domain": "straitstimes.com",
- "submitters": ["Catherine Olsson"],
- "title": "Uber operator was watching The Voice just before fatal self-driving crash in Tempe, Arizona",
- "url": "https://www.straitstimes.com/world/united-states/uber-operator-watching-the-voice-before-self-driving-crash-in-tempe-arizona"
- },
- {
- "__typename": "Report",
- "authors": ["Timothy B. Lee"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 634,
- "source_domain": "arstechnica.com",
- "submitters": ["Catherine Olsson"],
- "title": "Report: Software bug led to death in Uber’s self-driving crash",
- "url": "https://arstechnica.com/tech-policy/2018/05/report-software-bug-led-to-death-in-ubers-self-driving-crash/"
- },
- {
- "__typename": "Report",
- "authors": ["Heather Somerville"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 633,
- "source_domain": "reuters.com",
- "submitters": ["Catherine Olsson"],
- "title": "Uber car's 'safety' driver streamed TV show before fatal crash: police",
- "url": "https://www.reuters.com/article/us-uber-selfdriving-crash/uber-cars-safety-driver-streamed-tv-show-before-fatal-crash-police-idUSKBN1JI0LB"
- },
- {
- "__typename": "Report",
- "authors": ["Heather Somerville", "David Shepardson"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 632,
- "source_domain": "cnbc.com",
- "submitters": ["Catherine Olsson"],
- "title": "Uber driver streamed The Voice before self-driving car crash",
- "url": "https://www.cnbc.com/2018/06/22/uber-driver-streamed-the-voice-before-self-driving-car-crash.html"
- },
- {
- "__typename": "Report",
- "authors": ["Meriame Berboucha"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 631,
- "source_domain": "forbes.com",
- "submitters": ["Catherine Olsson"],
- "title": "Uber Self-Driving Car Crash: What Really Happened",
- "url": "https://www.forbes.com/sites/meriameberboucha/2018/05/28/uber-self-driving-car-crash-what-really-happened/#5bc866e94dc4"
- },
- {
- "__typename": "Report",
- "authors": ["Chaim Gartenberg"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 630,
- "source_domain": "theverge.com",
- "submitters": ["Catherine Olsson"],
- "title": "Safety driver of fatal self-driving Uber crash was reportedly watching Hulu at time of accident",
- "url": "https://www.theverge.com/2018/6/22/17492320/safety-driver-self-driving-uber-crash-hulu-police-report"
- },
- {
- "__typename": "Report",
- "authors": ["Chris Coppola", "Brieanna J Frank"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 629,
- "source_domain": "azcentral.com",
- "submitters": ["Catherine Olsson"],
- "title": "Tempe police release report, audio, photo",
- "url": "https://www.azcentral.com/story/news/local/tempe-breaking/2018/06/21/uber-self-driving-car-crash-tempe-police-elaine-herzberg/724344002/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "hospitals",
- "name": "Hospitals"
- },
- {
- "__typename": "Entity",
- "entity_id": "doctors",
- "name": "Doctors"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "intuitive-surgical",
- "name": "Intuitive Surgical"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "patients",
- "name": "Patients"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [778, 777, 776, 775, 774, 773, 772, 771, 770, 769, 768, 767],
- "vector": [
- -0.051828280091285706, 0.10240602493286133, -0.0037282295525074005,
- -0.07863979786634445, 0.07439541071653366, -0.014638278633356094,
- -0.0031555509194731712, 0.056146591901779175, 0.05421518161892891, -0.1300828605890274,
- -0.006394254043698311, 0.06596224755048752, 0.016157181933522224, -0.08691854029893875,
- 0.058323945850133896, -0.09636255353689194, -0.10303040593862534, -0.03488186374306679,
- -0.026107417419552803, -0.08820376545190811, -0.08325649052858353, 0.03057410754263401,
- -0.009592480026185513, 0.09963918477296829, -0.04252292588353157, 0.003966222051531076,
- 0.0738610252737999, 0.10441004484891891, -0.04793804511427879, 0.028220949694514275,
- -0.026596674695611, -0.07028132677078247, 0.10359951108694077, 0.004230213817209005,
- 0.00873842928558588, 0.10660818964242935, 0.012510967440903187, -0.039072830229997635,
- -0.020457545295357704, -0.03191334381699562, 0.04908689856529236, 0.22634422779083252,
- -0.023521078750491142, -0.009554236195981503, 0.029541296884417534,
- -0.03794101998209953, 0.005501577164977789, 0.053114816546440125, 0.012170323170721531,
- 0.043577346950769424, -0.0060601127333939075, 0.03945757821202278,
- -0.027140123769640923, -0.00966273806989193, -0.12043336778879166, 0.07486630231142044,
- 0.016428431496024132, -0.050931479781866074, 0.045364007353782654, -0.06737269461154938,
- -0.004889642354100943, -0.20145080983638763, -0.018941223621368408, -0.0889444574713707,
- 0.10220547765493393, -0.07034944742918015, -0.04650619998574257, -0.012898406945168972,
- 0.04326114431023598, 0.08218399435281754, 0.07990796864032745, -0.026977578178048134,
- -0.045104850083589554, 0.024363450706005096, 0.01777544617652893, -0.017715049907565117,
- 0.017853273078799248, 0.165802001953125, -0.06700465083122253, 0.03136150911450386,
- 0.07932417839765549, -0.07911743968725204, 0.38386270403862, -0.004387794062495232,
- 0.0037662694230675697, -0.03268516808748245, 0.08000550419092178, 0.023257562890648842,
- 0.02510499767959118, 0.025936037302017212, -0.03330562636256218, 0.043882861733436584,
- -0.058794062584638596, 0.02154207043349743, 0.08011958003044128, 0.03010120987892151,
- 0.009860922582447529, -0.062387168407440186, -0.0066091748885810375,
- -0.051873695105314255, 0.0167105533182621, -0.0511925108730793, 0.09898414462804794,
- 0.10320208221673965, -0.04170364513993263, 0.01889273338019848, 0.053971853107213974,
- -0.0309232696890831, 0.058948662132024765, -0.049841687083244324, 0.053425099700689316,
- -0.03422500938177109, 0.03477909415960312, 0.005586747080087662, -0.0012314531486481428,
- -0.04403435066342354, 0.03123193047940731, 0.07037211209535599, 0.07150520384311676,
- 0.03446081653237343, 0.037753552198410034, 0.05171491578221321, 0.05658699572086334,
- -0.013186953961849213, -0.07339595258235931, -0.0036187435034662485, -0.064053475856781,
- -0.00449328450486064, 0.005127470009028912, 0.0678177922964096, -0.046396780759096146,
- -0.18878787755966187, -0.025185218080878258, 0.07182706892490387, -0.03534100577235222,
- -0.035511564463377, -0.008508585393428802, -0.0342077761888504, 0.03970756381750107,
- -0.024452874436974525, -0.023808136582374573, 0.08120223134756088, 0.035085201263427734,
- 0.033872973173856735, 0.09523972123861313, 0.07419822365045547, -0.05575304850935936,
- -0.041920069605112076, 0.023357154801487923, -0.023858146741986275, 0.1319330483675003,
- -0.12778721749782562, -0.055443961173295975, 0.005352959036827087,
- -0.005458784755319357, 0.6866786479949951, 0.11730695515871048, 0.15120232105255127,
- -0.018209783360362053, -0.008469260297715664, 0.17611181735992432,
- -0.0016993741737678647, 0.035666026175022125, -0.07675612717866898,
- -0.05804400518536568, 0.025900067761540413, -0.07885158061981201, -0.02797883003950119,
- 0.02397829480469227, 0.04841640964150429, 0.08800058811903, 0.012889492325484753,
- 0.0730067566037178, 0.024855324998497963, -0.06985598057508469, -0.04704057052731514,
- 0.0741221234202385, 0.0011785157257691026, -0.08973530679941177, -0.0058233351446688175,
- 0.05713857710361481, 0.06837455928325653, -0.06949513405561447, -0.0014649108052253723,
- -0.04139414429664612, 0.04475477337837219, -0.004378199577331543, 0.08622714877128601,
- -0.035681650042533875, 0.013040141202509403, 0.028623221442103386, 0.02570563368499279,
- 0.0050433031283319, -0.07496700435876846, -0.005901381839066744, 0.07966557145118713,
- -0.025477802380919456, -0.026605656370520592, 0.07975545525550842, -0.08640965074300766,
- 0.0013544383691623807, 0.022094955667853355, 0.16007007658481598, -0.11741586774587631,
- 0.04160764440894127, -0.001277819275856018, 0.005617283284664154, 0.058628350496292114,
- 0.008823628537356853, -0.022218668833374977, -0.04368738830089569, 0.07533866912126541,
- 0.06891954690217972, 0.10846684128046036, 0.06758616119623184, -0.019523367285728455,
- 0.05416575446724892, 0.054297272115945816, -0.04753910005092621, -0.03875652700662613,
- 0.04687091335654259, 0.07999003678560257, -0.031075449660420418, -0.008005707524716854,
- 0.021336941048502922, 0.026868583634495735, 0.017121415585279465, 0.003473683027550578,
- 0.03991537168622017, -0.004186335951089859, -0.07198859751224518, 0.07923774421215057,
- 0.016375351697206497, 0.00043252704199403524, 0.1059998869895935, -0.07159579545259476,
- -0.02706431783735752, -0.030564626678824425, -0.03616103529930115, 0.02603762596845627,
- -0.05982840061187744, 0.06899850070476532, 0.08888580650091171, 0.07522030174732208,
- 0.013478082604706287, 0.04008067771792412, 0.04205217584967613, 0.041492581367492676,
- 0.02722785621881485, 0.04260675981640816, -0.04024123772978783, -0.04726450517773628,
- -0.03480850160121918, -0.0013441545888781548, 0.047050874680280685,
- 0.006635463330894709, -0.043812815099954605, -0.031343650072813034,
- -0.06142351031303406, -0.033870238810777664, -0.06270018965005875, -0.06340272724628448,
- 0.027185672894120216, 0.03397543355822563, -0.04118378460407257, -0.08014283329248428,
- -0.0865720883011818, 0.009115147404372692, 0.08324340730905533, -0.0070398785173892975,
- 0.00139676034450531, -0.11069528013467789, 0.025910058990120888, 0.021474430337548256,
- 0.049233853816986084, 0.007254557218402624, 0.016753606498241425, 0.029424382373690605,
- -0.05070466175675392, 0.03427309915423393, -0.02700047194957733, -0.08284366875886917,
- -0.05452011153101921, -0.057574108242988586, -0.06234089657664299, 0.011356756091117859,
- -0.002459118142724037, -0.07179802656173706, 0.04335440322756767, 0.03869905322790146,
- 0.041107986122369766, -0.03239354118704796, -0.06490481644868851, 0.04358445480465889,
- -0.028313415125012398, -0.008928077295422554, 0.0845457911491394, -0.03189454972743988,
- 0.03537587448954582, -0.005882443394511938, -0.042655233293771744, -0.04978005960583687,
- -0.005374221131205559, -0.04015108942985535, 0.01462385430932045, -0.021661585196852684,
- -0.029112733900547028, -0.02948603965342045, 0.0001484322565374896,
- 0.017260337248444557, -0.07599832117557526, -0.08505728095769882, -0.08346503973007202,
- 0.1215689405798912, 0.017226748168468475, 0.017141690477728844, -0.0008325663511641324,
- -0.03573198616504669, 0.0418049655854702, 0.010419778525829315, 0.009646697901189327,
- 0.03399045765399933, 0.05646795034408569, -0.010717883706092834, -0.011656542308628559,
- 0.06355772912502289, -0.029476024210453033, 0.038027580827474594, 0.08721242100000381,
- 0.42714059352874756, -0.12741096317768097, 0.08558356016874313, 0.07872616499662399,
- 0.01868944615125656, 0.030391065403819084, -0.06332516670227051, 0.06335560232400894,
- 0.09480738639831543, 0.12934555113315582, 0.1011432334780693, -0.015360664576292038,
- -0.0020343882497400045, -0.08249357342720032, 0.08634986728429794, 0.008820200338959694,
- 0.01623362861573696, -0.02027815952897072, -0.09129134565591812, -0.008423431776463985,
- 0.04323651269078255, -0.006854033097624779, 0.02474505640566349, 0.0070963832549750805,
- -0.07570556551218033, 0.009023929946124554, 0.01674165017902851, -0.01661510020494461,
- -0.033984385430812836, 0.011273283511400223, -0.04701635241508484, 0.06337554007768631,
- 0.04798503220081329, 0.027881065383553505, -0.13116154074668884, 0.029292471706867218,
- -0.12779337167739868, -0.07602322101593018, 0.08196823298931122, -0.02248724363744259,
- 0.05700675770640373, 0.06720375269651413, -0.02884977124631405, 0.015993604436516762,
- -0.005132822319865227, -0.04022078961133957, 0.017708782106637955, 0.06481004506349564,
- 0.006668721791356802, 0.006138339173048735, 0.17293590307235718, -0.003692776896059513,
- -0.027009708806872368, -0.06255251914262772, 0.07879031449556351, 0.15769068896770477,
- -0.020404977723956108, -0.0027925290632992983, 0.0023867881391197443,
- -0.01458264421671629, 0.01609276607632637, -0.039747197180986404, -0.0941450223326683,
- -0.015176314860582352, -0.017673203721642494, 0.08388382196426392, 0.01238573994487524,
- -0.03550374135375023, -0.15716277062892914, -0.041828978806734085, -0.06034037470817566,
- 0.0036441159900277853, 0.083196721971035, -0.0784829631447792, 0.045140642672777176,
- 0.032736048102378845, -0.004489978309720755, 0.06628453731536865, -0.03753501549363136,
- 0.04636191949248314, -0.036673035472631454, 0.014607100747525692, 0.001688488177023828,
- 0.015330987982451916, -0.060352981090545654, 0.0768972635269165, -0.05716710910201073,
- 0.047344934195280075, 0.021197183057665825, -0.0394921638071537, 0.030334221199154854,
- -0.020638935267925262, 0.0018515110714361072, 0.02659248374402523,
- -0.008817832916975021, -0.032226867973804474, -0.05987590551376343,
- -0.03178483620285988, -0.07560528069734573, -0.08015259355306625, -0.015436972491443157,
- -0.04840289056301117, 0.017564425244927406, -0.07563094049692154, -0.03706952556967735,
- -0.041756752878427505, -0.06903637945652008, 0.014223583042621613, 0.025650886818766594,
- 0.02439512126147747, -0.1305207908153534, 0.0025752505753189325, -0.0001855095470091328,
- 0.07098197937011719, -0.006784940604120493, -0.028342338278889656, 0.03939284756779671,
- 0.12359445542097092, 0.0312254149466753, -0.018240442499518394, -0.019331887364387512,
- -0.06933341175317764, 0.030554840341210365, -0.07944139093160629, -0.417706698179245,
- 0.07659073173999786, 0.01634378731250763, 0.023688236251473427, 0.022633260115981102,
- -0.08682196587324142, 0.02578672207891941, 0.003373129526153207, -0.03718753531575203,
- 0.07251139730215073, -0.07424631714820862, 0.002148565137758851, 0.008717546239495277,
- -0.059075728058815, -0.03665614128112793, -0.03532891348004341, -0.055423304438591,
- 0.02770836651325226, -0.032031867653131485, -0.08860667794942856, -0.08928949385881424,
- 0.05060608312487602, -0.00899658165872097, -0.033794473856687546, 0.0032445061951875687,
- 0.028654256835579872, -0.07189258188009262, -0.05731381103396416, 0.010721344500780106,
- 0.0635615810751915, 0.05315004661679268, -0.06435775011777878, -0.004814547020941973,
- 0.013927108608186245, -0.03240017965435982, 0.10504566878080368, 0.0006519432063214481,
- -0.035302113741636276, -0.019214915111660957, 0.06440011411905289, 0.037498459219932556,
- 0.1880689412355423, 0.00013730798673350364, -0.00590098462998867, 0.0068012201227247715,
- 0.13539667427539825, 0.013362030498683453, 0.058360178023576736, -0.011863376013934612,
- -0.0006944485357962549, 0.08590825647115707, 0.007009690161794424, 0.09511026740074158,
- -0.0872543528676033, -0.022035731002688408, -0.06056465581059456, 0.03227165713906288,
- -0.0036775183398276567, -0.018799658864736557, 0.19767987728118896,
- 0.002582980552688241, 0.030554592609405518, 0.029527580365538597, -0.028399521484971046,
- 0.006826391909271479, -0.06089314445853233, -0.12556855380535126, -0.006270287092775106,
- -0.0009869434870779514, 0.0005871419562026858, -0.022956714034080505,
- -0.12284421175718307, -0.03629589080810547, -0.017028016969561577, 0.021019957959651947,
- 0.10789626091718674, -0.05123766139149666, 0.0003092469123657793, -0.02841496653854847,
- 0.12946753203868866, 0.04141078516840935, -0.0025713739451020956, 0.0665719285607338,
- 0.10663661360740662, 0.02690848894417286, -0.017835797742009163, -0.04333530738949776,
- -0.07546230405569077, 0.007685096934437752, 0.11300140619277954, -0.07588483393192291,
- 0.0914900004863739, 0.04547763243317604, -0.04112478345632553, -0.05700002610683441,
- 0.03922535851597786, -0.05544726178050041, 0.013588597066700459, -0.42599841952323914,
- -0.03423362225294113, 0.11535204201936722, 0.01635187678039074, 0.020890632644295692,
- 0.06367320567369461, 0.005036060232669115, -0.06733093410730362, 0.032101962715387344,
- -0.10489699989557266, 0.1451767086982727, 0.03990570083260536, 0.06554494798183441,
- -0.06674612313508987, 0.013945342041552067, 0.07365935295820236, -0.05107894167304039,
- -0.00011456318316049874, 0.07308366894721985, -0.16778655350208282,
- 0.014679946005344391, -0.03885732963681221, 0.1246255412697792, 0.05288299545645714,
- 0.044138286262750626, 0.09021047502756119, -0.04055126756429672, 0.048545029014348984,
- 0.08651576191186905, 0.008568794466555119, 0.04487672820687294, -0.011509373784065247,
- -0.026659997180104256, 0.08163711428642273, 0.06202845647931099, 0.12995405495166779,
- -0.040396131575107574, 11.846012115478516, 0.06013701856136322, 0.029170647263526917,
- -0.06432435661554337, -0.027117038145661354, -0.03519906476140022, 0.04356392100453377,
- -0.12744760513305664, 0.048179369419813156, 0.11488235741853714, -0.00554405665025115,
- -0.04973602294921875, -0.018839815631508827, -0.10330063104629517, 0.0325981043279171,
- -0.058802638202905655, -0.04473764821887016, -0.02088438719511032, 0.04094252735376358,
- -0.04986779764294624, -0.027208244428038597, 0.0005841588717885315,
- 0.061733413487672806, 0.00023393554147332907, -0.04922034963965416,
- 0.022062765434384346, 0.005091593135148287, 0.010113433003425598, 0.02093484252691269,
- -0.033371079713106155, -0.017702870070934296, 0.014894767664372921,
- 0.046905022114515305, 0.011743255890905857, 0.04248349368572235, 0.03411043435335159,
- 0.06300204247236252, 0.06509052962064743, 0.029037507250905037, 0.08369874954223633,
- 0.017476236447691917, 0.027330748736858368, 0.020479846745729446, 0.01895623840391636,
- 0.07322686165571213, 0.0712544396519661, 0.033213164657354355, 0.11282432079315186,
- 0.01959618180990219, 0.08482886105775833, 0.07621178776025772, 0.006423432379961014,
- 0.11863300949335098, -0.026978394016623497, -0.0017251110402867198, 0.03259836509823799,
- 0.020643500611186028, -0.05839439108967781, 0.04376908764243126, 0.03787742182612419,
- -0.05186532437801361, 0.14221636950969696, 0.019724378362298012, 0.09396157413721085,
- -0.010857072658836842, 0.06965750455856323, 0.10700125247240067, 0.05521690845489502,
- -0.12204679101705551, -0.027548983693122864, -0.005405889358371496,
- -0.14086459577083588, -0.10279395431280136, 0.0672752633690834, 0.0689413771033287,
- -0.04671606048941612, 0.050485607236623764, -0.01765153557062149, 0.0464821457862854,
- -0.028110750019550323, 0.009261069819331169, 0.03970858082175255, -0.03060847520828247,
- 0.02725128084421158, 0.07672420889139175, 0.0304449200630188, 0.08794150501489639,
- 0.10503413528203964, -0.03420231118798256, -0.097470723092556, -0.07421001046895981,
- 0.06828287988901138, -0.03430686891078949, -0.05419587716460228, -0.0030367588624358177,
- -0.029813969507813454, 0.042109835892915726, -0.1379709392786026, 0.06522408127784729,
- 0.11293995380401611, -0.10609527677297592, -0.027769772335886955, -0.04036993160843849,
- 0.06306418031454086, 0.002509189071133733, 0.042703043669462204, -0.06773417443037033,
- 0.03365793451666832, -0.016211779788136482, 0.045633748173713684, -0.039934996515512466,
- 0.04273328185081482, 0.07757114619016647, -0.057174552232027054, 0.01874479465186596,
- 0.034541018307209015, 0.0023965707514435053, -0.04342058673501015, 0.05221225693821907,
- 0.036781322211027145, -0.09190132468938828, -0.045355767011642456, -0.00930678192526102,
- -0.028549382463097572, -0.05372351408004761, -0.014535032212734222, 0.03654402866959572,
- 0.022645017132163048, -0.09166315943002701, -0.02786342240869999, 0.027204232290387154,
- 0.07092130929231644, 0.12383677810430527, -0.008258179761469364, 0.05818166956305504,
- -0.05554186925292015, -0.05717405676841736, 0.07615139335393906, 0.044388461858034134,
- 0.03921923786401749, -0.06371463090181351, 0.008161189965903759, -0.07885269820690155,
- -0.10894370824098587, -0.025393838062882423, 0.0772736445069313, 0.08170139789581299,
- 0.06512673199176788, -0.025027567520737648, -0.052346184849739075, -0.04555598273873329,
- 0.09396780282258987, -0.024920621886849403, 0.002875042147934437, 0.03262360766530037,
- -0.023056408390402794, -0.006093844771385193, 0.07994336634874344,
- -0.049213651567697525, -0.0017551598139107227, 0.021809041500091553,
- -0.07246153801679611, 0.06665144115686417, 0.06880195438861847, 0.02642243355512619,
- 0.02742842771112919, 0.058890264481306076, 0.03295687586069107, -0.011233311146497726,
- -0.010608411394059658, 0.05057479068636894, -0.022512376308441162, -0.07715926319360733,
- -0.06897809356451035, 0.004747218918055296, 0.08658222109079361, 0.039271093904972076,
- -0.07726147025823593, -0.037439484149217606, -0.033507898449897766
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 5,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 40,
- "similarity": 0.9987583756446838
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 43,
- "similarity": 0.9987248778343201
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 7,
- "similarity": 0.9987182021141052
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Don Melanson"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 778,
- "source_domain": "techtimes.com",
- "submitters": ["Anonymous"],
- "title": "Study Finds 'Nonnegligible' Number Of Complications During Robotic Surgery, 144 Deaths Since 2000",
- "url": "https://www.techtimes.com/articles/70761/20150721/study-finds-non-negligible-number-complications-during-robotic-surgery-144.htm"
- },
- {
- "__typename": "Report",
- "authors": ["Charles Pulliam-Moore"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 777,
- "source_domain": "splinternews.com",
- "submitters": ["Anonymous"],
- "title": "Robotic surgery may be the future, but right now it’s consistently janky",
- "url": "https://splinternews.com/robotic-surgery-may-be-the-future-but-right-now-it-s-c-1793849328"
- },
- {
- "__typename": "Report",
- "authors": ["Show More Authors"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": true,
- "report_number": 776,
- "source_domain": "researchgate.net",
- "submitters": ["Anonymous"],
- "title": "Adverse Events in Robotic Surgery: A Retrospective Study of 14 Years of FDA Data",
- "url": "https://www.researchgate.net/publication/280062076_Adverse_Events_in_Robotic_Surgery_A_Retrospective_Study_of_14_Years_of_FDA_Data"
- },
- {
- "__typename": "Report",
- "authors": ["George Dvorsky"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 775,
- "source_domain": "io9.gizmodo.com",
- "submitters": ["Anonymous"],
- "title": "Botched Robotic Surgeries Have Been Linked to 144 Patient Deaths",
- "url": "https://io9.gizmodo.com/botched-robotic-surgeries-have-been-linked-to-144-patie-1719265629"
- },
- {
- "__typename": "Report",
- "authors": ["Jamie Condliffe"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 774,
- "source_domain": "gizmodo.com",
- "submitters": ["Anonymous"],
- "title": "Robotic Surgery Has Been Connected to 144 U.S. Deaths Since 2000",
- "url": "https://gizmodo.com/robotic-surgery-has-been-connected-to-144-u-s-deaths-s-1719202166"
- },
- {
- "__typename": "Report",
- "authors": ["Keith Wagstaff"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 773,
- "source_domain": "nbcnews.com",
- "submitters": ["Anonymous"],
- "title": "Robotic Surgery Involved in 144 Deaths in 14 Years",
- "url": "https://www.nbcnews.com/tech/tech-news/robotic-surgery-linked-144-deaths-2000-n395811"
- },
- {
- "__typename": "Report",
- "authors": ["The Register"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 772,
- "source_domain": "theregister.co.uk",
- "submitters": ["Anonymous"],
- "title": "Robot surgeons kill 144 patients, hurt 1,391, malfunction 8,061 times",
- "url": "https://www.theregister.co.uk/2015/07/21/robot_surgery_kills_americans/"
- },
- {
- "__typename": "Report",
- "authors": ["BBC News"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 771,
- "source_domain": "bbc.com",
- "submitters": ["Anonymous"],
- "title": "Robotic surgery linked to 144 deaths in the US",
- "url": "https://www.bbc.com/news/technology-33609495"
- },
- {
- "__typename": "Report",
- "authors": ["Wendy Lemeric"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 770,
- "source_domain": "christiantoday.com",
- "submitters": ["Anonymous"],
- "title": "Robotic surgeries: Really safe?",
- "url": "https://www.christiantoday.com/article/robotic-surgeries-are-they-really-safe/59860.htm"
- },
- {
- "__typename": "Report",
- "authors": ["Physics Today"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 769,
- "source_domain": "physicstoday.scitation.org",
- "submitters": ["Anonymous"],
- "title": "Study looks at problems experienced in robotic surgery",
- "url": "https://physicstoday.scitation.org/do/10.1063/PT.5.029056/full/"
- },
- {
- "__typename": "Report",
- "authors": ["Will Knight", "Douglas Heaven"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 768,
- "source_domain": "technologyreview.com",
- "submitters": ["Anonymous"],
- "title": "Robotic Surgery Linked To 144 Deaths Since 2000",
- "url": "https://www.technologyreview.com/s/539521/robotic-surgery-linked-to-144-deaths-since-2000/"
- },
- {
- "__typename": "Report",
- "authors": [
- "Homa Alemzadeh",
- "Ravishankar K. Iyer",
- "Zbigniew Kalbarczyk",
- "Nancy Leveson",
- "Jai Raman"
- ],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 767,
- "source_domain": "arxiv.org",
- "submitters": ["Anonymous"],
- "title": "Adverse Events in Robotic Surgery: A Retrospective Study of 14 Years of FDA Data",
- "url": "https://arxiv.org/ftp/arxiv/papers/1507/1507.03518.pdf"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "microsoft",
- "name": "Microsoft"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "microsoft",
- "name": "Microsoft"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "twitter-users",
- "name": "Twitter Users"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [
- 1780, 1374, 930, 929, 928, 927, 926, 925, 924, 923, 922, 921, 920, 919, 918, 917, 916,
- 915, 914, 913, 912, 911, 910, 909, 908, 906
- ],
- "vector": [
- -0.06375305655484016, 0.05348588892061693, 0.022818767754450582, -0.11583303817762779,
- 0.10794395666856033, -0.05277051807094652, 0.00892529864079104, 0.051701576826207414,
- 0.06950802047951864, -0.14009616724573648, -0.025033523973364096, 0.0686647372875506,
- 0.021326086767098438, -0.07155120136359563, 0.030349523469340056, -0.07065728412887368,
- -0.10931921664338845, -0.037682321249471545, -0.004868887362625593, -0.1474236480605144,
- -0.0699941273778677, 0.007157026371435047, 0.0036852299683512403, 0.09943251942212765,
- -0.028515314878089927, 0.015649853731911908, 0.11773478640959813, 0.10020922740491536,
- -0.03188421214984443, 0.059341931518597096, -0.015498120261606975, -0.09203818970574783,
- 0.11951648300656906, 0.00852191224336051, 0.018309532682626292, 0.08219760778145148,
- 0.03127564658195926, -0.008996357886084856, -0.016961061086756393,
- -0.010618936084658625, 0.019693195372103497, 0.21885227927794823, -0.002569024101831019,
- -0.02281586372723373, 0.0447330167158865, -0.029129746137186885, -0.005985071888202443,
- 0.03204675445046563, -0.002216934472716485, 0.01684486691822083, -0.0022556798246044377,
- 0.028146183709255777, -0.045939852053729385, 0.027091232213514067, -0.09223057200702336,
- 0.04763640210820505, 0.034537183399571895, 0.017201102025305424, 0.05768435992873632,
- -0.0659259412652598, 0.006771436180525388, -0.16935404304128426, -0.05430812103440985,
- -0.04925792816524895, 0.06178417422163945, -0.08465382557075757, -0.018501911115331147,
- 0.016195311685665868, 0.01686542498646304, 0.033065369863134735, 0.05542774430404489,
- -0.05412483369358457, -0.01251608772480932, 0.036033353329492875, -0.012997338257264346,
- -0.023921443830029324, 0.01269640161906584, 0.20495637964743835, -0.1059107118501113,
- -0.0005791416355910209, 0.10149912249583465, -0.1223033145070076, 0.358428778556677,
- 0.012263108325826649, -0.009563591261842074, -0.00023714690066229267,
- 0.10477862077263686, 0.008391341660171747, 0.04057168786843809, 0.017566502067403726,
- 0.010161642197859831, 0.05561452036580214, -0.024652372024810083, -0.015506317606195807,
- 0.04427307854908017, 0.02474933074643979, -0.016915463681261126, -0.011718880019683499,
- -0.008872857632993076, -0.04824320817939364, -0.0054296428380229585,
- -0.009123201623039607, 0.11144387607391064, 0.06638856017245696, -0.028150352112089213,
- -0.0031876706052571535, 0.05616943944747058, -0.05460747506899329, 0.048538642147412665,
- -0.05082703860422883, 0.0327084782727, -0.020414210858199604, 0.06249124930652145,
- -0.011414479065793924, 0.03437440145689134, -0.03029854252907591, 0.008201477887968604,
- 0.06312002132360178, 0.09099304403823155, 0.06696351875479405, -0.0129171844992715,
- 0.057407390827742905, 0.07897082594438241, -0.06553621962666512, -0.02300598964883158,
- -0.044230729717617996, -0.038972998602100864, -0.03567169146957055,
- -0.02077548246821747, 0.052427648996504456, -0.07028158775602396, -0.20286925366291633,
- 0.019216803112962786, 0.055216823561260335, -0.042252409970387816,
- -0.025723758010336988, 0.040719718515622214, -0.07855945624984227, 0.01983168697020469,
- -0.02390444074318601, -0.028142219807845183, 0.05483430552367981, -0.011687519568323087,
- 0.03683022249382562, 0.06467785590631628, 0.03695807271063901, -0.03572425847568621,
- -0.050919198466894716, -0.010044673105137637, -0.015329385764953959, 0.1045674357849818,
- -0.1399291682128723, -0.03115406325713803, -0.006401459931601914, -0.049656280441782795,
- 0.6744584555809314, 0.1345819143148569, 0.18406766108595407, 0.020022440415162306,
- -0.027934006291056555, 0.1434949655085802, -0.012911750690993639, 0.05885407672478603,
- -0.06427472842355761, -0.04931159937181152, 0.02675577034600652, -0.08552328640451798,
- -0.05189722622386538, 0.03068319486024288, 0.022932686905663174, 0.09193183453037189,
- 0.0315966876290846, 0.09717562020971225, 0.01690772644136674, -0.12042817129538609,
- -0.04148219457755868, 0.052535386997848176, 0.023605289499615677, -0.13727940504367536,
- -0.03141905998703665, 0.05672550151267877, 0.0949970159966212, -0.09627033856052619,
- 0.009129975882108109, -0.07894305526637115, 0.04521250385397042, -0.01631632613302477,
- 0.035594107795847006, -0.025056988072509948, 0.0486990818932939, 0.029517080761322107,
- 0.04106893030872855, -0.02814942414764888, -0.06517228885338856, 0.0005496045341715217,
- 0.10433955476261102, -0.0185512529927879, -0.03990170045290142, 0.09070110607605714,
- -0.08291837372458898, 0.03223435202828394, -0.01879457730235747, 0.14795057418254706,
- -0.1247051114646288, 0.034411582339089364, -0.02749195291947287, -0.019352507119317755,
- 0.013607927712235743, -0.024631640184312485, -0.07399079816129345, -0.07655889720011216,
- 0.10001653977311574, 0.01582917864792622, 0.03880388937138308, 0.05495867938645041,
- -0.034314960572653666, 0.04554233142586712, 0.038382185193208546, 0.014711243586274438,
- -0.04559418953095491, 0.06402405000363405, 0.0422444050379384, -0.048163727803442344,
- -0.06132746204877129, 0.03131719492823602, 0.03477057410726467, 0.01729963669248928,
- -0.0011094226770532818, 0.0566915745775287, 0.010266745827930909, -0.01864667938207276,
- 0.026557751537229005, 0.048703500374148674, 0.05095095473986406, 0.08129327443356697,
- -0.06903789127961947, -0.07140713252682382, -0.034851253032684326,
- -0.007321512290778069, 0.024301618364496298, -0.04601368289709521, 0.08877519331872463,
- 0.09834261589611952, 0.06446677141894515, 0.024894025093929555, 0.005212849426942949,
- 0.050761649205994144, 0.04002237004729418, 0.004255067699817188, 0.06358139564354832,
- -0.018713785940865188, -0.028364764463801224, -0.01867835425274769,
- 0.010831095401394682, 0.02069256398737287, -0.0033433475316717075,
- -0.057447620954077974, -0.03743050428322302, -0.03292034938931465, -0.04390276233271624,
- -0.10352425592449996, -0.0235515610816387, 0.046253443632919625, 0.03186556254513562,
- -0.07632854408942737, -0.111631789459632, -0.09745888497966987, -0.0011094970093556466,
- 0.08507729106797622, -0.01599872443610086, -0.0147229163882842, -0.11677056293074901,
- 0.020101147005334496, -0.03482977378567179, 0.04966235239631855, 0.004947226516938267,
- -0.002099556977415117, 0.010246567123641189, -0.06324162520468235, 0.045071874622058555,
- -0.009297761936278012, -0.005780710853287019, -0.008481875607125962,
- -0.06524881512786333, -0.06051042269413861, -0.01140381426802588, -0.023440885704565935,
- -0.03535795036273507, 0.02010405235565626, 0.04493254358665301, 0.057374357138402186,
- -0.028692685472868525, -0.024919573290389962, 0.04026566128819608,
- -0.030155598759078063, -0.006531695257693242, 0.07982496200845791,
- -0.040452921975744315, 0.03378890645063411, -0.028002292123766474, -0.088543029072193,
- -0.022878093233045477, 0.0046087076905398415, -0.05734935238097723, 0.07458158742743902,
- -0.02623916184830495, 0.00218637397315783, -0.03644224707610332, -0.0191848999238573,
- 0.06312868174595329, -0.03987973000710973, -0.09083787473635031, -0.06304952609710969,
- 0.13154517615643832, -0.005108869843892395, -0.027828636910551444, 0.008412113610225229,
- -0.05183595669670747, 0.05042739291317188, -0.006909567540368209, -0.005769638805829275,
- 0.045936980562356226, 0.06837021151127723, 0.004427992237301974, 0.03406197900543562,
- 0.07494274075501241, -0.002637330012825819, 0.031895069691997305, 0.06874589270983751,
- 0.4298192388736285, -0.25062677479134154, 0.09200055682315277, 0.09223281219601631,
- -0.0005254689380168342, 0.047479431646374554, -0.055799232433156036,
- 0.07792992001542678, 0.052250116060559564, 0.1040559929723923, 0.09793508532815255,
- -0.06101523751679521, 0.0218643212171558, -0.04064530170916651, 0.06597063625947787,
- 0.02494406094774604, 0.01477296097884671, -0.023236412554979324, -0.05273156659677625,
- -0.010552511165420024, 0.03245516579213122, -0.055065033599161185,
- -0.007115281079537594, -0.025333337720859654, -0.061616348525813706,
- -0.0004161110219474022, 0.0348914628669333, 0.05576529411169199, -0.021670981518512305,
- 0.04549727570086431, -0.03291741657840948, 0.025134269233184077, 0.07115485476186642,
- 0.016745408605157327, -0.150975397716348, 0.050163937179604545, -0.06825865889326312,
- -0.09470049299013156, 0.049796184023412376, -0.006473128482377013, 0.04030452074948698,
- 0.05491624749265611, -0.003662605259495859, 0.0299042671551713, 0.004485411859395054,
- -0.059030919980544314, -0.003026177318623433, 0.05501910925914462, 0.036816909817459345,
- 0.08896508311422971, 0.164308739396242, -0.030387968944314007, -0.025977723560152717,
- -0.08287706283422616, 0.07608365296171261, 0.11688321126768222, -0.03537751667989561,
- 0.016811896464787424, -0.007967400848149108, -0.009066933022740368,
- -0.017604085751092777, -0.047843411923027955, -0.0868352592851107, -0.0560944013010997,
- -0.06187009653792931, 0.07790318890832938, 0.037079492261489995, -0.036153037244310744,
- -0.1699062677530142, -0.05317890654819516, -0.02672394603275909, 0.0221685458225413,
- 0.14593464594620925, -0.07458682784524101, 0.038655978795409635, 0.02502602657365899,
- 0.009103028849215032, 0.03069382755515667, -0.09288924015485324, 0.00811474051219053,
- -0.06178936770615669, 0.04301471558686059, 0.07388464624706942, 0.05412765878897447,
- -0.05500722962180869, 0.0829486890624349, -0.09782272061476341, 0.08090044722820704,
- 0.021595109341433272, -0.05776232330558392, 0.031034916713206958, -0.03263118684005279,
- 0.031153924987078287, 0.017133983890884198, -0.0661270315400683, 0.013242128117081638,
- -0.04302946356340097, -0.03739971709616769, -0.07361992176335591, -0.051584649902696796,
- -0.052734389113119014, -0.0747271039738105, 0.033980623326407604, -0.08611119844807455,
- -0.004296913098257322, -0.05564580105531674, -0.009255136454997297,
- 0.002392884144613233, 0.01932256190160003, 0.01236723932127531, -0.14311674093970886,
- -0.011766244173766328, 0.004225894334152914, 0.041529195598111704, -0.04140357648094113,
- -0.039068871041168816, 0.02235766322029611, 0.09529291974523893, 0.03168692400392432,
- -0.03381346083747653, -0.0006267701660712751, -0.052210393003546275, 0.0713654335659857,
- -0.11843676693164386, -0.49069493550520676, 0.05260049471130165, 0.026635106796255477,
- 0.03296138225078511, 0.005458744956950585, -0.04444651736356228, 0.03779937587499332,
- 0.01509173933076314, -0.040481575549795076, 0.08717661179029025, -0.050659918441222265,
- 0.025666923163673624, -0.042272206637650155, -0.06551758889467098, 0.002118542638177482,
- -0.08871672918590215, -0.028779591200873256, 0.02757233868424709, -0.005404576108468553,
- -0.04280243770111925, -0.08108047095055763, 0.011374338418066215, -0.015026096994496094,
- 0.001483473879768728, 0.02598967038340141, 0.008307411124965606, -0.05230920577350144,
- -0.0486969889786381, 0.03788247460929247, 0.05935558225386418, 0.026315324635316547,
- -0.06559105919530758, 0.010647632075303521, 0.07308389525860548, 0.01329613470275385,
- 0.13460497586772993, -0.0017805493441231262, 0.002758297742380259, -0.07547353931631033,
- 0.05226355672885592, 0.08303566033450457, 0.18433832549131834, -0.006668813401260055,
- 0.042708745172533855, -0.01580265982864568, 0.1420814162836625, 0.06101693488800755,
- 0.010666908114217222, -0.041189422293637805, -0.011631289069415428,
- 0.026741681853309274, -0.01533038449437859, 0.06594674590115364, -0.07267085863993718,
- -0.025813444016071465, -0.005746569801256276, -0.002377298275510279,
- -0.0374646802038814, -0.0031472659611608833, 0.19873916644316453, 0.022449652055421702,
- 0.04246155369596986, 0.027693730264078252, -0.05776844385008399, 0.012660188175057275,
- -0.07406646400116958, -0.08445869414852215, -0.024251653481489763,
- -0.0027674520746446573, 0.0011222520843148232, -0.04003687973062579,
- -0.11265533417463303, -0.02074619632856831, -0.004344016976224689,
- 0.0007422258495353162, 0.10492053685279992, -0.016296238692190785, 0.011588760974028936,
- -0.04848460190427991, 0.1328058492105741, 0.03271304271542109, 0.03315518346006194,
- 0.07096413042969428, 0.07396411444418706, 0.04232305103841309, 0.005116697356033211,
- -0.047379625329855256, -0.07668402239393729, -0.015095746861054348, 0.15838497475935862,
- -0.04033787424962681, 0.12376627440635975, 0.04045137961824926, -0.0034955030580301983,
- -0.03603530177273429, 0.021469017600443643, -0.02055015626347785, 0.011682469491811039,
- -0.4688771814107895, -0.02894808898250071, 0.12469096309863605, 0.038098364137113094,
- 0.028040468876357548, 0.09773331248792462, 0.0174925221083238, -0.055162718783741675,
- -0.052061177636810146, -0.08180628086511905, 0.13804436689959124, -0.005840667304045592,
- 0.0735862606133406, -0.10941045989210789, 0.03483785130083561, 0.06756623898847745,
- -0.04050948434898881, -0.005660024594712572, 0.06748065187667425, -0.2599861816718028,
- 0.000262873015974317, -0.016989641569895096, 0.13273423680892357, 0.010976251975919765,
- 0.031182768172584474, 0.08959856299826732, -0.057915339747873634, 0.03210557810178635,
- 0.04133960012292776, 0.00762162956659897, 0.07088937039057222, 0.013887194871830825,
- 0.009429703435251633, 0.11535075220924157, 0.09808821546343657, 0.06300047052522692,
- -0.025467828337031487, 12.08831867804894, 0.047925213495126136, 0.06809210397589666,
- -0.07382656836237472, -0.017668762387564547, -0.05014398450461718, 0.013898112166386384,
- -0.11204509136195366, 0.054351415865732215, 0.10981517543013279, -0.014609266034452818,
- -0.02861806324038368, -0.02993255655746907, -0.10346090148847836, 0.030470393365249038,
- -0.046768778863434605, -0.07595356138279805, -0.03323553651213073, 0.045600894874391645,
- -0.04239236535683561, -0.051248596264765814, 0.07599561140299417, 0.07204754220751616,
- 0.004336602292963876, -0.0591289007749695, 0.0396961818377559, -0.005463559341688569,
- -0.011206747890145589, 0.0019265246788003983, 0.04056512424722314, 0.013450783619191498,
- 0.05279015609994531, 0.06401804154022382, -0.001297110559579988, 0.026867927929673057,
- 0.07103466118972462, 0.06469033393883504, 0.03621641626523342, 0.04881870391993569,
- 0.08254370093345642, -0.004000616660610272, -0.0017908354504750324, 0.01053512487235891,
- 0.026687612445899643, 0.056189471282638036, 0.05164122230444963, 0.04418095416174485,
- 0.15269357797044975, 0.015086393991413597, 0.04872648360637518, 0.08200162190657395,
- -0.019791172553176202, 0.13111765854633772, 0.020593661093488872, -0.033797250111372426,
- 0.047834473075524256, -0.026688803139572535, -0.07978955160181683, 0.11001015984668182,
- 0.026450931197569635, -0.040431526238815144, 0.09865105825547989, 0.03611866545711214,
- 0.0979331059094805, -0.013334557946878843, 0.04708844838807216, 0.07206400362058328,
- 0.057078735365603976, -0.05750858296568577, -0.10455019012666665, 0.031976836244351804,
- -0.09215818445842999, -0.07850681381443372, 0.07297666585789277, 0.1131808955508929,
- -0.0444106853280503, 0.05762348207645118, -0.02527088698340007, 0.04912439514681374,
- -0.037418624198135846, 0.005044551127446959, 0.062263214244292334, -0.04627452147766375,
- 0.03442488703876734, 0.025967900157691196, 0.04153955931990193, 0.05506296750480452,
- 0.10147210396826267, 0.026124506436574917, -0.0991808817936824, -0.08346974806716809,
- 0.10190179233904928, -0.010786427502842763, -0.05729785400371139, 0.037681679223449185,
- -0.06610827470341554, 0.05645758074779923, -0.13668438978493214, 0.08542701315421325,
- 0.11231459648563312, -0.10454329246511826, -0.020884498971729323, -0.028064112967023484,
- 0.0836395496645799, 0.01748917583609, 0.03235797599280396, -0.08040171317183055,
- 0.01946370660040814, 0.03594099616076654, 0.03617113565829081, -0.02815122136514849,
- 0.051966228594000526, 0.09637902118265629, -0.048103833194965355, 0.017877053229872566,
- 0.06633828662765714, -0.03153548387882228, -0.007334448139702614, 0.0638077030531489,
- 0.023645561489572104, -0.07964082406117366, -0.04796002651206576, -0.05472851258057814,
- -0.04319254007490459, -0.002207370022705828, -0.02767224504182545, 0.01919274946871715,
- 0.00894290132698818, 0.010980650307968833, -0.013734036102855148, 0.041985122442173846,
- 0.07530405214772774, 0.0654550428600767, 0.01669858493663084, 0.06467291497840331,
- -0.04047753921566674, -0.038707526257404916, 0.04800477758264886, 0.06705190914754684,
- 0.07851779237031363, -0.082272051475369, -0.03652438353030728, -0.05565489617247994,
- -0.11908972263336182, 0.024898466788447246, 0.05894650324570158, 0.04086813200802471,
- 0.039621531775292866, 0.02741047895016471, -0.08420576685323165, -0.046064537591659106,
- 0.0758845192881731, 0.02024397778754624, -0.005285922659543128, 0.03789519918007919,
- -0.05180783046839329, -0.03147455563213533, 0.09615453561911216, -0.0348138629566305,
- -0.000708552619191603, 0.007725496354396455, -0.04243925794099386, 0.07562950339454871,
- 0.12147398593907173, 0.04276877715109059, 0.01732619608250948, 0.01794156339019537,
- 0.023851551446848765, 0.03252500772494106, -0.006325501828821591, 0.02999380216575586,
- -0.020539148728578135, -0.0806123550193241, -0.0842178043945191, 0.0446745851301015,
- 0.08335431271161024, 0.07405058470277044, -0.13962661646879637, -0.01442792964203713,
- -0.04123126162448898
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 6,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 41,
- "similarity": 0.9991844296455383
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 58,
- "similarity": 0.9991589188575745
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 49,
- "similarity": 0.9991413950920105
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Peter Lee", "Microsoft"],
- "epoch_date_downloaded": 1670371200,
- "epoch_date_modified": 1670371200,
- "epoch_date_submitted": 1670371200,
- "flag": null,
- "report_number": 2398,
- "source_domain": "blogs.microsoft.com",
- "submitters": ["Kate Perkins"],
- "title": "Learning from Tay’s introduction",
- "url": "https://blogs.microsoft.com/blog/2016/03/25/learning-tays-introduction/"
- },
- {
- "__typename": "Report",
- "authors": ["Amy Kraft"],
- "epoch_date_downloaded": 1658707200,
- "epoch_date_modified": 1658707200,
- "epoch_date_submitted": 1658707200,
- "flag": null,
- "report_number": 1780,
- "source_domain": "cbsnews.com",
- "submitters": ["Sonali Pednekar (CSET)"],
- "title": "Microsoft shuts down AI chatbot after it turned into a Nazi",
- "url": "https://www.cbsnews.com/news/microsoft-shuts-down-ai-chatbot-after-it-turned-into-racist-nazi/"
- },
- {
- "__typename": "Report",
- "authors": ["Wikipedia Editors"],
- "epoch_date_downloaded": 1605312000,
- "epoch_date_modified": 1607299200,
- "epoch_date_submitted": 1607299200,
- "flag": null,
- "report_number": 1374,
- "source_domain": "en.wikipedia.org",
- "submitters": ["AIAAIC", "Thomas Giallella (CSET)"],
- "title": "Tay (bot)",
- "url": "https://en.wikipedia.org/wiki/Tay_(bot)"
- },
- {
- "__typename": "Report",
- "authors": ["Sophie Kleeman"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1670544000,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 930,
- "source_domain": "gizmodo.com",
- "submitters": ["Anonymous"],
- "title": "Here Are the Microsoft Twitter Bot’s Craziest Racist Rants",
- "url": "https://gizmodo.com/here-are-the-microsoft-twitter-bot-s-craziest-racist-ra-1766820160"
- },
- {
- "__typename": "Report",
- "authors": ["John West"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 929,
- "source_domain": "qz.com",
- "submitters": ["Anonymous"],
- "title": "Microsoft’s disastrous Tay experiment shows the hidden dangers of AI",
- "url": "https://qz.com/653084/microsofts-disastrous-tay-experiment-shows-the-hidden-dangers-of-ai/"
- },
- {
- "__typename": "Report",
- "authors": ["Chloe Rose Stuart-Ulin"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 928,
- "source_domain": "qz.com",
- "submitters": ["Anonymous"],
- "title": "Microsoft’s politically correct chatbot is even worse than its racist one",
- "url": "https://qz.com/1340990/microsofts-politically-correct-chat-bot-is-even-worse-than-its-racist-one/"
- },
- {
- "__typename": "Report",
- "authors": ["Hope Reese"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 927,
- "source_domain": "techrepublic.com",
- "submitters": ["Anonymous"],
- "title": "Why Microsoft's 'Tay' AI bot went wrong",
- "url": "https://www.techrepublic.com/article/why-microsofts-tay-ai-bot-went-wrong/"
- },
- {
- "__typename": "Report",
- "authors": ["Helena Horton"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 926,
- "source_domain": "telegraph.co.uk",
- "submitters": ["Anonymous"],
- "title": "Microsoft deletes 'teen girl' AI after it became a Hitler-loving sex robot within 24 hours",
- "url": "https://www.telegraph.co.uk/technology/2016/03/24/microsofts-teen-girl-ai-turns-into-a-hitler-loving-sex-robot-wit/"
- },
- {
- "__typename": "Report",
- "authors": ["Alan Boyle"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 925,
- "source_domain": "geekwire.com",
- "submitters": ["Anonymous"],
- "title": "Microsoft’s racist chatbot, Tay, makes MIT’s annual worst-tech list",
- "url": "https://www.geekwire.com/2016/microsoft-chatbot-tay-mit-technology-fails/"
- },
- {
- "__typename": "Report",
- "authors": ["Yuxi Liu"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 924,
- "source_domain": "chatbotslife.com",
- "submitters": ["Anonymous"],
- "title": "The Accountability of AI - Case Study: Microsoft’s Tay Experiment",
- "url": "https://chatbotslife.com/the-accountability-of-ai-case-study-microsofts-tay-experiment-ad577015181f"
- },
- {
- "__typename": "Report",
- "authors": ["Rebecca"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 923,
- "source_domain": "thedrum.com",
- "submitters": ["Anonymous"],
- "title": "Microsoft's artificial Twitter bot stunt backfires as trolls teach it racist statements",
- "url": "https://www.thedrum.com/news/2016/03/24/microsofts-artificial-twitter-bot-stunt-backfires-trolls-teach-it-racist-statements"
- },
- {
- "__typename": "Report",
- "authors": ["Rob Price"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 922,
- "source_domain": "businessinsider.com",
- "submitters": ["Anonymous"],
- "title": "Microsoft deletes racist, genocidal tweets from AI chatbot Tay",
- "url": "https://www.businessinsider.com/microsoft-deletes-racist-genocidal-tweets-from-ai-chatbot-tay-2016-3"
- },
- {
- "__typename": "Report",
- "authors": ["Caroline Sinders"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 921,
- "source_domain": "medium.com",
- "submitters": ["Anonymous"],
- "title": "Microsoft’s Tay is an Example of Bad Design",
- "url": "https://medium.com/@carolinesinders/microsoft-s-tay-is-an-example-of-bad-design-d4e65bb2569f"
- },
- {
- "__typename": "Report",
- "authors": ["Matt Scherer", "Lutz Barz"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 920,
- "source_domain": "futureoflife.org",
- "submitters": ["Anonymous"],
- "title": "Tay the Racist Chatbot: Who is responsible when a machine learns to be evil?",
- "url": "https://futureoflife.org/2016/03/27/tay-the-racist-chatbot-who-is-responsible-when-a-machine-learns-to-be-evil/"
- },
- {
- "__typename": "Report",
- "authors": ["Abby Ohlheiser"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 919,
- "source_domain": "washingtonpost.com",
- "submitters": ["Anonymous"],
- "title": "Trolls turned Tay, Microsoft’s fun millennial AI bot, into a genocidal maniac",
- "url": "https://www.washingtonpost.com/news/the-intersect/wp/2016/03/24/the-internet-turned-tay-microsofts-fun-millennial-ai-bot-into-a-genocidal-maniac/?utm_term=.488066f12daf"
- },
- {
- "__typename": "Report",
- "authors": ["James Vincent"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 918,
- "source_domain": "theverge.com",
- "submitters": ["Anonymous"],
- "title": "Twitter taught Microsoft’s AI chatbot to be a racist asshole in less than a day",
- "url": "https://www.theverge.com/2016/3/24/11297050/tay-microsoft-chatbot-racist"
- },
- {
- "__typename": "Report",
- "authors": ["Dave Lee"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 917,
- "source_domain": "bbc.com",
- "submitters": ["Anonymous"],
- "title": "Tay: Microsoft issues apology over racist chatbot fiasco",
- "url": "https://www.bbc.com/news/technology-35902104"
- },
- {
- "__typename": "Report",
- "authors": ["Jonathan Vanian"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 916,
- "source_domain": "fortune.com",
- "submitters": ["Anonymous"],
- "title": "Unmasking A.I.'s Bias Problem",
- "url": "http://fortune.com/longform/ai-bias-problem/"
- },
- {
- "__typename": "Report",
- "authors": ["Davey Alba"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 915,
- "source_domain": "wired.com",
- "submitters": ["Anonymous"],
- "title": "It's Your Fault Microsoft's Teen AI Turned Into Such a Jerk",
- "url": "https://www.wired.com/2016/03/fault-microsofts-teen-ai-turned-jerk/"
- },
- {
- "__typename": "Report",
- "authors": ["Victoria Woollaston"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1670544000,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 914,
- "source_domain": "wired.co.uk",
- "submitters": ["Anonymous"],
- "title": "Microsoft chatbot Zo is a censored version of Tay",
- "url": "https://www.wired.co.uk/article/microsoft-zo-ai-chatbot-tay"
- },
- {
- "__typename": "Report",
- "authors": ["Lauren J. Young"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 913,
- "source_domain": "inverse.com",
- "submitters": ["Anonymous"],
- "title": "5 Big Questions About Tay, Microsoft's Failed A.I. Twitter Chatbot",
- "url": "https://www.inverse.com/article/13281-5-big-questions-about-tay-microsoft-s-failed-a-i-twitter-chatbot"
- },
- {
- "__typename": "Report",
- "authors": ["James Grebey"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 912,
- "source_domain": "inverse.com",
- "submitters": ["Anonymous"],
- "title": "With Teen Bot Tay, Microsoft Proved Assholes Will Indoctrinate A.I.",
- "url": "https://www.inverse.com/article/25723-how-microsofts-tay-nazi-artificial-intelligence"
- },
- {
- "__typename": "Report",
- "authors": ["Staff"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 911,
- "source_domain": "theguardian.com",
- "submitters": ["Anonymous"],
- "title": "Microsoft 'deeply sorry' for racist and sexist tweets by AI chatbot",
- "url": "https://www.theguardian.com/technology/2016/mar/26/microsoft-deeply-sorry-for-offensive-tweets-by-ai-chatbot"
- },
- {
- "__typename": "Report",
- "authors": ["Samuel Gibbs"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 910,
- "source_domain": "theguardian.com",
- "submitters": ["Anonymous"],
- "title": "Microsoft’s racist chatbot returns with drug-smoking Twitter meltdown",
- "url": "https://www.theguardian.com/technology/2016/mar/30/microsoft-racist-sexist-chatbot-twitter-drugs"
- },
- {
- "__typename": "Report",
- "authors": ["Botego Inc"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 909,
- "source_domain": "blog.botego.com",
- "submitters": ["Anonymous"],
- "title": "Why did Microsoft’s chatbot Tay fail, and what does it mean for Artificial Intelligence studies?",
- "url": "https://blog.botego.com/why-microsoft-s-chatbot-tay-failed-and-what-does-it-mean-for-artificial-intelligence-studies-fb71d22e8359"
- },
- {
- "__typename": "Report",
- "authors": ["Matt D'Angelo"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 908,
- "source_domain": "businessnewsdaily.com",
- "submitters": ["Anonymous"],
- "title": "Worst Chatbot Fails",
- "url": "https://www.businessnewsdaily.com/10450-funniest-chatbot-fails.html"
- },
- {
- "__typename": "Report",
- "authors": ["Glenn Mcdonald"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 906,
- "source_domain": "infoworld.com",
- "submitters": ["Anonymous"],
- "title": "Danger, danger! 10 alarming examples of AI gone wild",
- "url": "https://www.infoworld.com/article/3184205/technology-business/danger-danger-10-alarming-examples-of-ai-gone-wild.html#slide2"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "wikipedia",
- "name": "Wikipedia"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "wikipedia",
- "name": "Wikipedia"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "wikipedia-users",
- "name": "Wikipedia Users"
- },
- {
- "__typename": "Entity",
- "entity_id": "wikipedia-editors",
- "name": "Wikipedia Editors"
- },
- {
- "__typename": "Entity",
- "entity_id": "wikimedia-foundation",
- "name": "Wikimedia Foundation"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1130, 1129, 1127, 1126, 1125, 1123],
- "vector": [
- -0.05560194328427315, 0.07980284094810486, 0.01976396143436432, -0.10309290140867233,
- 0.09499523788690567, -0.04932767152786255, -0.023121079429984093, 0.04145066440105438,
- 0.07487001270055771, -0.11145179718732834, -0.008898443542420864, 0.037604622542858124,
- 0.02923051081597805, -0.05768401920795441, 0.027318447828292847, -0.04488274082541466,
- -0.1326587051153183, -0.03482675924897194, -0.023884808644652367, -0.09562527388334274,
- -0.061918195337057114, 0.002097462071105838, 0.009183586575090885, 0.08840262144804001,
- -0.04083045572042465, 0.031111739575862885, 0.09437783807516098, 0.090986467897892,
- -0.0340486504137516, 0.060640912503004074, -0.03135436400771141, -0.07002026587724686,
- 0.11000275611877441, 0.021175900474190712, 0.01975017413496971, 0.07216381281614304,
- -0.009371533989906311, -0.03963446617126465, -0.03269907459616661,
- -0.009161844849586487, 0.04100130870938301, 0.21337063610553741, -0.002439524745568633,
- -0.021780187264084816, 0.035895656794309616, -0.02966306544840336, -0.01424216479063034,
- 0.025500072166323662, -0.0014026882126927376, 0.020727163180708885,
- -0.008886435069143772, 0.031856391578912735, -0.05060433968901634, 0.010124840773642063,
- -0.11112117767333984, 0.062476396560668945, 0.04360717907547951, 0.015243534930050373,
- 0.05382547900080681, -0.09514283388853073, 0.014723186381161213, -0.18441559374332428,
- -0.03617960214614868, -0.08538704365491867, 0.09946078807115555, -0.09052684903144836,
- -0.041125643998384476, -0.009032408706843853, 0.034084420651197433, 0.06351006031036377,
- 0.04755426570773125, -0.04785488545894623, -0.010249179787933826, 0.035744402557611465,
- 0.011654374189674854, -0.030115924775600433, 0.010291341692209244, 0.25574517250061035,
- -0.07601023465394974, 0.014028177596628666, 0.08554794639348984, -0.12138089537620544,
- 0.4012831151485443, 0.004304142203181982, 0.016655756160616875, -0.025795919820666313,
- 0.10380866378545761, 0.0199118684977293, 0.05883622169494629, 0.027859024703502655,
- 0.008500025607645512, 0.047835394740104675, -0.05728091299533844, 0.006935379933565855,
- 0.05542084947228432, 0.013696789741516113, -0.02268344722688198, -0.012818646617233753,
- -0.011939438991248608, -0.05323818698525429, -0.010620917193591595,
- -0.02825377881526947, 0.10871278494596481, 0.05781591311097145, -0.040745511651039124,
- -0.012791209854185581, 0.06604877859354019, -0.051925644278526306, 0.07616483420133591,
- -0.04799489676952362, 0.030268723145127296, -0.04477090761065483, 0.06866590678691864,
- -0.02598886750638485, 0.028733177110552788, -0.036374323070049286, 0.040321819484233856,
- 0.056962061673402786, 0.0696534514427185, 0.06685853749513626, -0.0005558765842579305,
- 0.05076025798916817, 0.046197205781936646, -0.026223188266158104, -0.05756526067852974,
- -0.04930676147341728, -0.08422168344259262, -0.03316517174243927, -0.012481099925935268,
- 0.04093905910849571, -0.046176910400390625, -0.19312100112438202,
- -0.0045813024044036865, 0.06735283136367798, 0.0021410256158560514,
- -0.022126594558358192, 0.00968054961413145, -0.04779764637351036, 0.03191282972693443,
- -0.021223941817879677, -0.027295751497149467, 0.07042676955461502, 0.03124321438372135,
- 0.03947221860289574, 0.0937008261680603, 0.048521738499403, -0.0354110449552536,
- -0.06160980835556984, -0.012586687691509724, -0.042172614485025406, 0.13245528936386108,
- -0.08030936121940613, -0.039862584322690964, -0.026371391490101814,
- -0.032799456268548965, 0.6963747143745422, 0.10800264030694962, 0.16055384278297424,
- -0.004036394413560629, -0.031662680208683014, 0.1669403314590454, 0.02398953028023243,
- 0.05436457321047783, -0.0605170913040638, -0.04839342460036278, 0.03156931698322296,
- -0.06932403892278671, -0.047053974121809006, 0.04531094431877136, 0.04740532860159874,
- 0.08540350198745728, 0.012944410555064678, 0.06766001135110855, 0.02971128188073635,
- -0.07619374245405197, -0.03575918450951576, 0.06391128152608871, -0.03466905280947685,
- -0.1263422966003418, -0.02338228188455105, 0.06444146484136581, 0.08942443877458572,
- -0.10072195529937744, 0.005148443393409252, -0.042619407176971436, 0.048773109912872314,
- -0.01546438131481409, 0.08483383059501648, -0.035720307379961014, 0.0493062287569046,
- 0.02116379141807556, 0.0013664303114637733, -0.012011054903268814, -0.06967340409755707,
- -0.010872073471546173, 0.12305114418268204, -0.02030487172305584, -0.013982976786792278,
- 0.08116415143013, -0.10829215496778488, 0.0330427847802639, -0.0026200187858194113,
- 0.14667265117168427, -0.12356692552566528, 0.021902943029999733, -0.022941848263144493,
- 0.005047150421887636, 0.04296587035059929, -0.003063182346522808, -0.022666966542601585,
- -0.061200737953186035, 0.08267765492200851, 0.0023626743350178003, 0.045664578676223755,
- 0.014682832174003124, -0.03446996212005615, 0.0649333968758583, 0.06786183267831802,
- -0.02315383404493332, -0.02681281417608261, 0.061657506972551346, 0.02831067331135273,
- -0.0437147356569767, -0.030225081369280815, 0.013821683824062347, 0.02269924432039261,
- 0.0363394059240818, -0.003079814137890935, 0.04633000120520592, 0.004159804433584213,
- -0.04467765986919403, 0.07518817484378815, 0.019627751782536507, 0.04782038927078247,
- 0.07954328507184982, -0.06076208874583244, -0.050332266837358475, -0.03582048416137695,
- -0.055039968341588974, 0.037596773356199265, -0.02310612052679062, 0.07641873508691788,
- 0.09526023268699646, 0.0943065881729126, 0.028323573991656303, 0.05294720456004143,
- 0.046969056129455566, 0.03560490161180496, -0.004500759299844503, 0.0489969402551651,
- -0.0362304262816906, -0.029456714168190956, -0.020602459087967873, 0.008020042441785336,
- 0.03167049586772919, -0.006983600091189146, -0.03439867123961449, -0.01681574620306492,
- -0.0393732525408268, -0.034525316208601, -0.06230918690562248, -0.029821457341313362,
- 0.06816175580024719, 0.05116034671664238, -0.059462133795022964, -0.08227529376745224,
- -0.09206578880548477, -0.011565525084733963, 0.0577174574136734, -0.045427750796079636,
- -0.001219177502207458, -0.11804613471031189, 0.012129048816859722,
- -0.005422804970294237, 0.034674301743507385, 0.020384911447763443, 0.004886738955974579,
- 0.0546550452709198, -0.08381647616624832, 0.039166152477264404, -0.0043359301052987576,
- -0.041920021176338196, -0.0032292886171489954, -0.0562765896320343,
- -0.046499088406562805, -0.017111903056502342, -0.03647328540682793,
- -0.04598905146121979, 0.016099892556667328, 0.07149802893400192, 0.04639272019267082,
- -0.02073577046394348, -0.07018817216157913, 0.0522746741771698, 0.0007213796488940716,
- -0.019399525597691536, 0.0793076828122139, -0.04316142573952675, 0.03137873113155365,
- -0.021407561376690865, -0.06908674538135529, -0.04804667830467224,
- -0.016080735251307487, -0.05105782672762871, 0.027280667796730995, -0.01870776154100895,
- 0.017486637458205223, -0.03891688212752342, -0.005331719759851694, 0.04419420287013054,
- -0.05726977810263634, -0.09122532606124878, -0.09643886238336563, 0.13292022049427032,
- 0.006452510599046946, -0.010582994669675827, 0.0382317379117012, -0.018650265410542488,
- 0.04857316613197327, -0.003758629783987999, -0.016544722020626068, 0.02849946916103363,
- 0.06936576217412949, 0.016040878370404243, 0.012372714467346668, 0.07319670170545578,
- -0.009398129768669605, 0.047148194164037704, 0.06388067454099655, 0.4181530177593231,
- -0.2376888394355774, 0.10458878427743912, 0.06842607259750366, 0.0008228868246078491,
- 0.03481050580739975, -0.0639987364411354, 0.07745283097028732, 0.0740264430642128,
- 0.12818484008312225, 0.07472994178533554, -0.023510100319981575, 0.02800367772579193,
- -0.08449283987283707, 0.0843673124909401, 0.0022629552986472845, 0.011504932306706905,
- -0.01855556108057499, -0.0774507001042366, -0.01835557632148266, 0.035652875900268555,
- -0.0428478866815567, 0.019321726635098457, 0.018295401707291603, -0.03889196366071701,
- 0.010102850385010242, 0.011147331446409225, 0.02694001793861389, -0.022907108068466187,
- 0.01768685318529606, 0.002153215231373906, 0.06021619960665703, 0.02255977690219879,
- 0.040470514446496964, -0.17383944988250732, 0.03052195906639099, -0.10198643803596497,
- -0.11555665731430054, 0.06321095675230026, -0.0008811101433821023, 0.044479142874479294,
- 0.07439897954463959, -0.0341809019446373, 0.03727586194872856, 0.03295943886041641,
- -0.03288056328892708, 0.01443762332201004, 0.07795795053243637, 0.005932347383350134,
- 0.06800315529108047, 0.17577888071537018, -0.03500618040561676, -0.012992248870432377,
- -0.08972856402397156, 0.06248430535197258, 0.1551053375005722, -0.02577870897948742,
- 0.008159377612173557, -0.01154641155153513, -0.026111839339137077, 0.011300090700387955,
- -0.041766420006752014, -0.09163019806146622, -0.03542190045118332, -0.01976127177476883,
- 0.07061140984296799, 0.015776408836245537, -0.03886556252837181, -0.17423540353775024,
- -0.012973387725651264, -0.06843455135822296, -0.0009301492827944458,
- 0.09770999103784561, -0.07524795830249786, 0.046400681138038635, 0.0017247271025553346,
- 0.008069622330367565, 0.024314209818840027, -0.057425741106271744, 0.016177231445908546,
- -0.03905026614665985, 0.013095379807054996, 0.053315937519073486, 0.04262198507785797,
- -0.03570453077554703, 0.0946367084980011, -0.08568982034921646, 0.06451937556266785,
- -0.005597063805907965, -0.04460570588707924, 0.03422737494111061, -0.044380296021699905,
- 0.03962205350399017, 0.016708048060536385, -0.060610298067331314, 0.001402236521244049,
- -0.021283937618136406, -0.0370589941740036, -0.06720411032438278, -0.0776873305439949,
- -0.011382962577044964, -0.07230251282453537, 0.05198325216770172, -0.0986914113163948,
- -0.022593222558498383, -0.008157980628311634, -0.060918983072042465,
- -0.011095157824456692, -0.005537636578083038, -0.00859180185943842,
- -0.16068686544895172, 0.0028987445402890444, 0.016663148999214172, 0.04711568355560303,
- 0.018339747563004494, -0.03278476372361183, 0.006713125389069319, 0.12921053171157837,
- 0.06405364722013474, -0.01760283298790455, 0.014327611774206161, -0.09896287322044373,
- 0.03075343556702137, -0.13432587683200836, -0.441989928483963, 0.07101509720087051,
- 0.04050787538290024, 0.027695635333657265, 0.01742604188621044, -0.07232391089200974,
- 0.04791674390435219, 0.022887133061885834, -0.06540331244468689, 0.07033707201480865,
- -0.05897185578942299, 0.030005022883415222, -0.027280574664473534, -0.05228447914123535,
- -0.03156420215964317, -0.047745317220687866, -0.04081622138619423, 0.016853446140885353,
- -0.010623794980347157, -0.07822737842798233, -0.11131659895181656, 0.01645882986485958,
- -0.016370853409171104, 0.006298060063272715, 0.017709670588374138, 0.04797634482383728,
- -0.052194640040397644, -0.05677181854844093, 0.04585752263665199, 0.08578471094369888,
- 0.035645872354507446, -0.06052778661251068, 0.0023864377290010452, 0.044110510498285294,
- -0.003739873878657818, 0.10034092515707016, 0.0039285351522266865, -0.04170839115977287,
- -0.05820276215672493, 0.08540400117635727, 0.0653972327709198, 0.18313263356685638,
- 0.025511527433991432, 0.04915982857346535, -0.013130992650985718, 0.1793217808008194,
- 0.05531703308224678, 0.029974648728966713, -0.010211172513663769, -0.019343320280313492,
- 0.04020126163959503, 0.005939742084592581, 0.11303547024726868, -0.0727187916636467,
- -0.02891349606215954, -0.028786106035113335, -0.015668492764234543,
- -0.03691397234797478, -0.0013385252095758915, 0.24205350875854492, 0.014120531268417835,
- 0.05152862146496773, 0.02538204751908779, -0.05979913845658302, 0.020382173359394073,
- -0.06769172102212906, -0.07038319110870361, -0.020885372534394264,
- -0.0011661687167361379, 0.006164889317005873, -0.028894169256091118,
- -0.11349012702703476, -0.0011646812781691551, -0.0050225513987243176,
- 0.005296241492033005, 0.12307080626487732, -0.0032571295741945505, 0.016306055709719658,
- -0.04037942364811897, 0.12294148653745651, 0.03342652693390846, 0.0024764046538621187,
- 0.050615739077329636, 0.11274190992116928, 0.046728309243917465, 0.009199780412018299,
- -0.05737661197781563, -0.054727762937545776, 0.01979576237499714, 0.13966278731822968,
- -0.04817798733711243, 0.08671370893716812, 0.04335847496986389, 0.015561223961412907,
- -0.04438382014632225, 0.04604731872677803, -0.008419406600296497, 0.0008467218722216785,
- -0.49077939987182617, -0.062469396740198135, 0.10746555775403976, 0.02398313395678997,
- -0.0008153370581567287, 0.08882836252450943, 0.01055601704865694, -0.04274861887097359,
- -0.028771979734301567, -0.11230801790952682, 0.08481191843748093, 0.01850881427526474,
- 0.06693205237388611, -0.09001452475786209, 0.028963947668671608, 0.05972810462117195,
- -0.029279274865984917, -0.00665605952963233, 0.07267748564481735, -0.2082148790359497,
- 0.016871588304638863, -0.045181289315223694, 0.0987672284245491, -0.026045890524983406,
- 0.03737771883606911, 0.09155190736055374, -0.09915313869714737, 0.034476932138204575,
- 0.06277667731046677, -0.012504135258495808, 0.04589961841702461, -0.009375030174851418,
- -0.021784545853734016, 0.07642924040555954, 0.10153254866600037, 0.09192468971014023,
- -0.03424649313092232, 12.178412437438965, 0.052551668137311935, 0.05334300175309181,
- -0.08548915386199951, -0.005484241526573896, -0.0593315027654171, 0.03120042197406292,
- -0.0841907486319542, 0.0894956961274147, 0.10628816485404968, -0.009406350553035736,
- -0.034689921885728836, -0.0371011383831501, -0.08560552448034286, 0.01795618049800396,
- -0.04163460060954094, -0.06090458109974861, -0.04678685963153839, 0.03941276669502258,
- -0.04036605358123779, -0.04230523109436035, 0.06749608367681503, 0.06980542093515396,
- -0.01985647715628147, -0.038702622056007385, 0.036408405750989914,
- 0.00005043686178396456, -0.033190350979566574, 0.009562722407281399,
- 0.01609809324145317, -0.010217854753136635, 0.045242130756378174, 0.06366043537855148,
- 0.021923525258898735, 0.029870957136154175, 0.030954226851463318, 0.07648459821939468,
- 0.009626221843063831, 0.034542515873909, 0.09161708503961563, -0.003952525556087494,
- -0.003156519727781415, 0.02623826451599598, 0.038868553936481476, 0.07158725708723068,
- 0.0609796904027462, 0.0535661019384861, 0.1254032403230667, 0.017550883814692497,
- 0.0689343586564064, 0.08620882034301758, -0.020740976557135582, 0.14067958295345306,
- -0.0060133240185678005, -0.01507427915930748, 0.04460876062512398,
- -0.009759425185620785, -0.10044211149215698, 0.06249156594276428, 0.020598679780960083,
- -0.054403383284807205, 0.12259145826101303, 0.03167520463466644, 0.11472037434577942,
- -0.005014483351260424, 0.06407396495342255, 0.07957345992326736, 0.03844039887189865,
- -0.09744682908058167, -0.04550935700535774, -0.01386314257979393, -0.11882337927818298,
- -0.07878497242927551, 0.03950391337275505, 0.08506322652101517, -0.03847222402691841,
- 0.05301002785563469, -0.01898619718849659, 0.005258392076939344, -0.0690762847661972,
- -0.003378235502168536, 0.029236622154712677, -0.050103798508644104,
- 0.012550249695777893, 0.04754890501499176, 0.030056074261665344, 0.02199169062077999,
- 0.1191137507557869, -0.011323473416268826, -0.10910782217979431, -0.059617817401885986,
- 0.10358279943466187, -0.04584319517016411, -0.0537082701921463, 0.016525205224752426,
- -0.03183411806821823, 0.05349187180399895, -0.14594754576683044, 0.04428614303469658,
- 0.10819489508867264, -0.10658710449934006, -0.0168767012655735, -0.026272455230355263,
- 0.0755620226264, -0.00580903934314847, 0.035979013890028, -0.08483461290597916,
- 0.03492031618952751, -0.020050503313541412, 0.03821610286831856, -0.0586530864238739,
- 0.06125244125723839, 0.08812820911407471, -0.03083180822432041, 0.021573470905423164,
- 0.03998039290308952, -0.028715545311570168, -0.025966571643948555, 0.0713610053062439,
- 0.030217617750167847, -0.07562924921512604, -0.020845875144004822,
- -0.032082971185445786, -0.0030564432963728905, -0.029140489175915718,
- -0.020487571135163307, 0.016776295378804207, 0.03523002937436104, -0.037144098430871964,
- 0.0012626245152205229, 0.020610937848687172, 0.06375571340322495, 0.0932278037071228,
- -0.0032197905238717794, 0.06950963288545609, -0.056487541645765305,
- -0.07401762157678604, 0.05771951004862785, 0.07266205549240112, 0.04950202628970146,
- -0.057286735624074936, -0.04511762037873268, -0.0724460706114769, -0.10258808732032776,
- -0.011030959896743298, 0.07752873003482819, 0.04733104631304741, 0.03372626379132271,
- -0.01043854933232069, -0.08175575733184814, -0.07319227606058121, 0.10047617554664612,
- 0.005712601821869612, -0.013933110050857067, 0.028536468744277954, -0.04608602449297905,
- -0.034047409892082214, 0.07282457500696182, -0.021485494449734688,
- -0.0017847054405137897, 0.02270633541047573, -0.06536845117807388, 0.08132375031709671,
- 0.08356361836194992, 0.05631391704082489, 0.012725782580673695, 0.03185906261205673,
- 0.016624709591269493, 0.06998966634273529, 0.005319265183061361, 0.029486672952771187,
- -0.008328601717948914, -0.08660898357629776, -0.08284997940063477, 0.048047568649053574,
- 0.12260525673627853, 0.09707608819007874, -0.11099519580602646, -0.04536668583750725,
- -0.02423730678856373
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 7,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 41,
- "similarity": 0.9989801645278931
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 49,
- "similarity": 0.9989698529243469
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 15,
- "similarity": 0.9989620447158813
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Katyanna Quach"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1130,
- "source_domain": "theregister.co.uk",
- "submitters": ["Anonymous"],
- "title": "People built AI bots to improve Wikipedia. Then they started squabbling in petty edit wars, sigh",
- "url": "https://www.theregister.co.uk/2017/02/23/wiki_bots_love_online_conflict/"
- },
- {
- "__typename": "Report",
- "authors": ["Luke Cooper"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1129,
- "source_domain": "huffingtonpost.com.au",
- "submitters": ["Anonymous"],
- "title": "Automated Wikipedia Edit-Bots Have Been Fighting Each Other For A Decade",
- "url": "https://www.huffingtonpost.com.au/2017/02/27/automated-wikipedia-edit-bots-have-been-fighting-each-other-for_a_21722577/"
- },
- {
- "__typename": "Report",
- "authors": ["Matt Simon"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1127,
- "source_domain": "wired.com",
- "submitters": ["Anonymous"],
- "title": "Internet Bots Fight Each Other Because They're All Too Human",
- "url": "https://www.wired.com/2017/03/internet-bots-fight-theyre-human/"
- },
- {
- "__typename": "Report",
- "authors": ["Ian Sample"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1126,
- "source_domain": "theguardian.com",
- "submitters": ["Anonymous"],
- "title": "Study reveals bot-on-bot editing wars raging on Wikipedia's pages",
- "url": "https://www.theguardian.com/technology/2017/feb/23/wikipedia-bot-editing-war-study"
- },
- {
- "__typename": "Report",
- "authors": ["Glenn Mcdonald"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1125,
- "source_domain": "seeker.com",
- "submitters": ["Anonymous"],
- "title": "Wiki Bots That Feud for Years Highlight the Troubled Future of AI",
- "url": "https://www.seeker.com/wiki-bots-that-feud-for-years-highlight-the-troubled-future-of-ai-2291186353.html"
- },
- {
- "__typename": "Report",
- "authors": ["Glenn Mcdonald"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1123,
- "source_domain": "infoworld.com",
- "submitters": ["Anonymous"],
- "title": "Danger, danger! 10 alarming examples of AI gone wild",
- "url": "https://www.infoworld.com/article/3184205/technology-business/danger-danger-10-alarming-examples-of-ai-gone-wild.html#slide3"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "uber",
- "name": "Uber"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "uber",
- "name": "Uber"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "pedestrians",
- "name": "pedestrians"
- },
- {
- "__typename": "Entity",
- "entity_id": "motorists",
- "name": "Motorists"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1156, 1155, 1154, 1153, 1151, 1150, 1149, 1145, 1143, 1142],
- "vector": [
- -0.07200925052165985, 0.07060249149799347, 0.007956783287227154, -0.11106470972299576,
- 0.07885187864303589, -0.02343246340751648, -0.006326497532427311, 0.04680032655596733,
- 0.06303064525127411, -0.1483798772096634, 0.01025867648422718, 0.05169990658760071,
- 0.013742160983383656, -0.06746386736631393, 0.05317746847867966, -0.08387965708971024,
- -0.07572732865810394, -0.057770587503910065, -0.0025667711161077023,
- -0.12924185395240784, -0.05928806588053703, -0.02142002061009407, 0.05073828250169754,
- 0.11759855598211288, -0.06427404284477234, 0.0027712553273886442, 0.09263377636671066,
- 0.10234741121530533, -0.04556966572999954, 0.07262437045574188, -0.0010970871662721038,
- -0.0659235417842865, 0.12320125102996826, 0.03092355467379093, 0.007237332873046398,
- 0.10980379581451416, 0.0021312576718628407, -0.02387567050755024, -0.033603038638830185,
- -0.012716710567474365, 0.02006390318274498, 0.2409716546535492, -0.010151884518563747,
- -0.03389029577374458, 0.04068119451403618, -0.04983201622962952, 0.018584003672003746,
- 0.04422289505600929, 0.017210084944963455, 0.03214838355779648, -0.00653050234541297,
- 0.0841076523065567, -0.011586712673306465, 0.02606916055083275, -0.11806613206863403,
- 0.04623847454786301, 0.044882725924253464, -0.03249926120042801, 0.04107765853404999,
- -0.06991757452487946, -0.03703992813825607, -0.27334529161453247, -0.031766608357429504,
- -0.04157187044620514, 0.07854840904474258, -0.07486681640148163, -0.01389901340007782,
- -0.0025481802877038717, 0.02208552695810795, 0.0645747184753418, 0.05631387233734131,
- -0.03823104128241539, -0.042142126709222794, 0.03045213222503662, 0.014351447112858295,
- -0.023740969598293304, 0.016809051856398582, 0.19607530534267426, -0.12267549335956573,
- -0.006584778428077698, 0.11017031967639923, -0.12966017425060272, 0.4579234719276428,
- 0.01150047592818737, -0.035965029150247574, -0.01200692169368267, 0.10645802319049835,
- 0.036435600370168686, 0.041008468717336655, 0.03636779636144638, -0.038584426045417786,
- 0.04889452084898949, -0.05370398610830307, 0.028702983632683754, 0.06642468273639679,
- 0.03497914969921112, -0.014188443310558796, 0.06089607626199722, -0.0060629756189882755,
- -0.052683137357234955, 0.04317452758550644, -0.03304733335971832, 0.11051058769226074,
- 0.050320737063884735, -0.019812699407339096, -0.004031748976558447, 0.09663945436477661,
- -0.02792636677622795, 0.041595518589019775, -0.06772918254137039, 0.005107642617076635,
- 0.009912620298564434, 0.04910486191511154, 0.012192592956125736, 0.052681028842926025,
- -0.06828880310058594, 0.004752916283905506, 0.05528179556131363, 0.11248711496591568,
- -0.021139591932296753, -0.02427554503083229, 0.05625845864415169, 0.06658930331468582,
- -0.0866839811205864, -0.019339624792337418, -0.05711629241704941, -0.07100171595811844,
- -0.05206433683633804, -0.06556204706430435, 0.060577165335416794, -0.07958711683750153,
- -0.20941586792469025, 0.013075585477054119, 0.1289895474910736, -0.004893262404948473,
- -0.05448247119784355, 0.0009505863999947906, -0.07845793664455414, 0.05481019616127014,
- -0.021840892732143402, -0.03204495087265968, 0.062158990651369095, 0.002148745581507683,
- 0.037503890693187714, 0.10917706787586212, 0.05377890542149544, -0.048943351954221725,
- -0.0557887963950634, 0.021261204034090042, -0.03180685266852379, 0.12689614295959473,
- -0.13338592648506165, -0.06261110305786133, -0.006547140423208475,
- -0.027285873889923096, 0.7149996161460876, 0.10908979177474976, 0.2059982568025589,
- 0.010096349753439426, -0.019950103014707565, 0.18403634428977966,
- -0.0036411122418940067, 0.06703575700521469, -0.08986122906208038, -0.06884050369262695,
- 0.045187123119831085, -0.10005893558263779, -0.06394238770008087, 0.03470747917890549,
- 0.013602581806480885, 0.1181912049651146, 0.03612513840198517, 0.09045340865850449,
- -0.015404902398586273, -0.11906047910451889, -0.025454554706811905, 0.05860920995473862,
- 0.010449441149830818, -0.12602944672107697, -0.05745198577642441, 0.04151206836104393,
- 0.12009912729263306, -0.08523379266262054, 0.026004204526543617, -0.06302492320537567,
- 0.07706417143344879, -0.009871091693639755, 0.05721430853009224, -0.06055238097906113,
- 0.0333540141582489, 0.023780735209584236, 0.0861058309674263, -0.016987957060337067,
- -0.14764565229415894, -0.040579233318567276, 0.10890426486730576, -0.024516619741916656,
- -0.030764330178499222, 0.05358883738517761, -0.08860626071691513, 0.051255762577056885,
- 0.022281114012002945, 0.15286318957805634, -0.13877436518669128, -0.00380685250274837,
- 0.005881854332983494, 0.009884152561426163, 0.055720120668411255, -0.002119907410815358,
- -0.07175002992153168, -0.050211600959300995, 0.08773620426654816, 0.03883805125951767,
- 0.07460162043571472, 0.0764833465218544, -0.056666117161512375, 0.03983457386493683,
- 0.02818210981786251, 0.027417737990617752, -0.04178256914019585, 0.05311893671751022,
- 0.08368457853794098, -0.02357116900384426, -0.038797471672296524, 0.051315754652023315,
- 0.029277753084897995, 0.019528906792402267, -0.008622300811111927, 0.07268961519002914,
- -0.0018919389694929123, -0.05970417708158493, 0.022058947011828423, 0.03404523804783821,
- 0.009919533506035805, 0.1212373599410057, -0.03260360285639763, -0.05407984182238579,
- -0.010656429454684258, -0.0052493056282401085, 0.024759117513895035,
- -0.017894702032208443, 0.07865099608898163, 0.07112862169742584, 0.07465001195669174,
- 0.031290844082832336, 0.03206341341137886, 0.057545386254787445, 0.03871931880712509,
- 0.03190093860030174, 0.08819900453090668, -0.018947964534163475, -0.0633404403924942,
- -0.03114347532391548, 0.007333800196647644, 0.04115942865610123, 0.032028570771217346,
- -0.07333029806613922, -0.03856214880943298, -0.037710174918174744,
- -0.032590340822935104, -0.08872955292463303, -0.03748791292309761, 0.01336829923093319,
- 0.060217034071683884, -0.03739707171916962, -0.09602905064821243, -0.09520494192838669,
- 0.017528032884001732, 0.05801016837358475, -0.013095265254378319, -0.022720206528902054,
- -0.11746156215667725, -0.0023122234269976616, -0.03826991468667984,
- 0.036642562597990036, 0.004079633392393589, -0.006332065910100937, -0.01757737062871456,
- -0.044071998447179794, 0.017318354919552803, -0.030603816732764244,
- -0.01388694066554308, -0.041308529675006866, -0.07128776609897614,
- -0.025666743516921997, -0.01741432212293148, 0.026736244559288025,
- -0.017533574253320694, 0.04356244578957558, 0.03622041270136833, 0.04912920668721199,
- -0.003518705489113927, -0.02234586700797081, 0.05946006253361702, -0.016645532101392746,
- -0.0430896170437336, 0.07980471849441528, -0.0024551074020564556, 0.039409492164850235,
- 0.007179655134677887, -0.10221867263317108, -0.0009201174834743142,
- 0.050021808594465256, -0.06213117763400078, 0.05412455275654793, -0.024089420214295387,
- 0.025891801342368126, -0.04406129568815231, 0.0010053960140794516, 0.05755428224802017,
- -0.07608021795749664, -0.08609415590763092, -0.0838104784488678, 0.15198107063770294,
- -0.005378848407417536, -0.019413704052567482, 0.036140721291303635,
- -0.04914285987615585, 0.04341772198677063, -0.024600248783826828, 0.006003499962389469,
- 0.022318994626402855, 0.02578880451619625, -0.02550727128982544, 0.01132354699075222,
- 0.03900008648633957, -0.05474303290247917, 0.032013315707445145, 0.07091347873210907,
- 0.4399999678134918, -0.1798096001148224, 0.08227833360433578, 0.08424754440784454,
- 0.015096509829163551, 0.061287254095077515, -0.03168133273720741, 0.08353041112422943,
- 0.07528389990329742, 0.0949057936668396, 0.10218168795108795, -0.04481469839811325,
- -0.010847603902220726, -0.06032750755548477, 0.10650358349084854, -0.015598297119140625,
- 0.007218196988105774, -0.01524527370929718, -0.06441286206245422, -0.021572189405560493,
- 0.027853498235344887, -0.057968854904174805, -0.0041655064560472965,
- -0.01892932318150997, -0.06222321465611458, 0.005674345884472132,
- 0.000048987847549142316, 0.01944664679467678, -0.015083253383636475,
- 0.014198489487171173, -0.010446748696267605, 0.05621640756726265, 0.014023633673787117,
- 0.036804571747779846, -0.1316474974155426, 0.023897549137473106, -0.08738703280687332,
- -0.11153552681207657, 0.07397128641605377, -0.031187275424599648, 0.04456931725144386,
- 0.04287544637918472, -0.01687692478299141, 0.039483968168497086, -0.010150782763957977,
- -0.06368155032396317, 0.025494808331131935, 0.06031714752316475, 0.01667949929833412,
- 0.12115846574306488, 0.16258184611797333, -0.05791252851486206, -0.07418686896562576,
- -0.08276047557592392, 0.08435269445180893, 0.1057237759232521, -0.05857891961932182,
- -0.0010667635360732675, -0.008254156447947025, -0.03962995111942291,
- -0.01805751770734787, -0.07235515862703323, -0.10270021110773087,
- -0.0016284215962514281, -0.026215652003884315, 0.07823801785707474,
- -0.005587209481745958, -0.03870655596256256, -0.19922921061515808, -0.07232733815908432,
- -0.03377474471926689, 0.003110326360911131, 0.1311774104833603, -0.05401206761598587,
- 0.04869344085454941, 0.02569563128054142, -0.014925198629498482, 0.00915142334997654,
- -0.09224273264408112, 0.029675418511033058, -0.05328679084777832, 0.06423746049404144,
- 0.0654614120721817, 0.051033712923526764, -0.03918663412332535, 0.09043196588754654,
- -0.11584074795246124, 0.07522954046726227, 0.032127495855093, -0.040525492280721664,
- 0.05682903528213501, -0.05541105195879936, 0.03331159055233002, 0.03480721637606621,
- -0.05753537267446518, 0.03988013416528702, -0.04284436255693436, -0.06961444020271301,
- -0.08552609384059906, -0.06213514879345894, -0.05901537463068962, -0.08896365761756897,
- 0.06320297718048096, -0.12617790699005127, -0.016612323001027107, -0.04742323234677315,
- -0.00272186566144228, 0.038863375782966614, 0.03280247747898102, 0.05557750537991524,
- -0.16689914464950562, 0.023372527211904526, -0.008975891396403313, 0.07681793719530106,
- -0.03770654648542404, -0.04845906049013138, 0.02302136830985546, 0.09240038692951202,
- 0.06925536692142487, 0.02491608075797558, 0.003975681494921446, -0.058097489178180695,
- 0.039570920169353485, -0.11857807636260986, -0.4842650294303894, 0.030994340777397156,
- -0.010270134545862675, 0.035047635436058044, -0.001404036651365459,
- -0.07057221233844757, 0.05575854703783989, -0.024688510224223137, -0.044516392052173615,
- 0.10796958208084106, -0.05763361603021622, 0.014726993627846241, 0.0031374827958643436,
- -0.06463165581226349, -0.045547761023044586, -0.060987263917922974,
- -0.05891111493110657, 0.04706171154975891, -0.021866830065846443, -0.07061006128787994,
- -0.1047668606042862, 0.027278471738100052, -0.01512407697737217, 0.024005906656384468,
- 0.024865157902240753, 0.033303942531347275, -0.06408022344112396, -0.032795652747154236,
- 0.03348834440112114, 0.05878794193267822, 0.04227253422141075, -0.04102291166782379,
- -0.005221919156610966, 0.06839174032211304, -0.023763736709952354, 0.1663191169500351,
- -0.005021236836910248, 0.03661305829882622, -0.05089876055717468, 0.09830939769744873,
- 0.05912519246339798, 0.18396133184432983, -0.005375003907829523, 0.03982267156243324,
- 0.034582313150167465, 0.15636086463928223, 0.06300186365842819, 0.023360544815659523,
- -0.04814605042338371, 0.0030466902535408735, 0.042989227920770645, -0.03043568693101406,
- 0.06337825953960419, -0.07771190255880356, -0.027002409100532532, -0.03497747704386711,
- -0.03160092234611511, -0.0171195138245821, 0.01974611170589924, 0.20189587771892548,
- 0.03023071587085724, 0.021878059953451157, 0.016513461247086525, -0.08548487722873688,
- 0.007780036423355341, -0.07217039912939072, -0.11691973358392715,
- -0.0012638592161238194, -0.017836742103099823, 0.01997913047671318,
- -0.036273978650569916, -0.15027394890785217, -0.0049917614087462425,
- -0.026691094040870667, 0.00520261749625206, 0.10711409896612167, 0.0028531260322779417,
- 0.033239662647247314, -0.025332683697342873, 0.12766475975513458, 0.04262947663664818,
- 0.02042616903781891, 0.05916661024093628, 0.06621933728456497, 0.01623590476810932,
- 0.020806647837162018, -0.04873194545507431, -0.05429208278656006, 0.03480776771903038,
- 0.15104170143604279, -0.05591427534818649, 0.10668237507343292, 0.023088881745934486,
- -0.04097915440797806, -0.06500785797834396, 0.03640575706958771, -0.015711380168795586,
- 0.055833958089351654, -0.4547760486602783, 0.001641457318328321, 0.12329814583063126,
- 0.03278585523366928, 0.03123711422085762, 0.10994144529104233, 0.03492095321416855,
- -0.05334097146987915, -0.05841491371393204, -0.0549166277050972, 0.18458281457424164,
- -0.03425407037138939, 0.0399547703564167, -0.14057551324367523, 0.061549581587314606,
- 0.08968359977006912, 0.0017336156452074647, -0.020443301647901535, 0.08033909648656845,
- -0.24364690482616425, -0.00183216598816216, -0.05643942207098007, 0.15190249681472778,
- 0.057525504380464554, 0.008144204504787922, 0.0598333366215229, -0.05550466105341911,
- 0.013120713643729687, 0.048531852662563324, -0.00364714115858078, 0.07591734826564789,
- -0.008338814601302147, 0.0061062234453856945, 0.12240274995565414, 0.10022735595703125,
- 0.10220217704772949, -0.02630605921149254, 12.078258514404297, 0.07264581322669983,
- 0.048420749604701996, -0.07583726942539215, 0.02167227491736412, -0.06048329919576645,
- 0.040418416261672974, -0.08694098889827728, 0.08548592031002045, 0.12550067901611328,
- -0.022017857059836388, -0.0424085296690464, -0.007665338926017284, -0.11357257515192032,
- 0.016258494928479195, -0.08829326182603836, -0.05928146839141846, -0.02377546951174736,
- 0.042324263602495193, -0.022504277527332306, -0.011977160349488258,
- 0.022726446390151978, 0.06826547533273697, 0.008425035513937473, -0.07265055924654007,
- 0.04890979081392288, 0.03803806006908417, -0.013662472367286682, -0.01841878518462181,
- 0.020649569109082222, -0.033330321311950684, 0.03354372829198837, 0.0527917742729187,
- 0.005140754394233227, -0.017155013978481293, 0.10338155180215836, 0.09104497730731964,
- 0.04611731693148613, 0.0011034503113478422, 0.07408071309328079, 0.025337163358926773,
- 0.02613891288638115, 0.015877295285463333, 0.04824860766530037, 0.03932053968310356,
- 0.04671579226851463, 0.042519208043813705, 0.11088739335536957, 0.02393413335084915,
- 0.04513559117913246, 0.09257505089044571, -0.04365108162164688, 0.13361725211143494,
- -0.010977739468216896, 0.0010355471167713404, 0.03922606259584427,
- -0.025265473872423172, -0.06673689931631088, 0.07255949079990387, 0.06902623176574707,
- -0.06860877573490143, 0.09493640810251236, 0.014913350343704224, 0.12331972271203995,
- -0.0181247778236866, 0.055531132966279984, 0.054596759378910065, 0.07095319777727127,
- -0.12743426859378815, -0.11521320044994354, 0.06084199622273445, -0.10587334632873535,
- -0.07038693875074387, 0.06129680201411247, 0.12267778813838959, -0.059649478644132614,
- 0.036201223731040955, -0.04304483160376549, 0.03395869955420494, -0.055926740169525146,
- -0.033748120069503784, 0.04858320578932762, -0.0009822413558140397,
- 0.030687585473060608, 0.03563718870282173, 0.001221371698193252, 0.11730526387691498,
- 0.10732395946979523, -0.006381840445101261, -0.07481010258197784, -0.07893909513950348,
- 0.12515056133270264, -0.025272423401474953, -0.08501461148262024, 0.012039103545248508,
- -0.057198744267225266, 0.054882269352674484, -0.16241547465324402, 0.05724253132939339,
- 0.10473420470952988, -0.08306323736906052, -0.03033316507935524, -0.0185146052390337,
- 0.07989580184221268, -0.009296637959778309, 0.02641112729907036, -0.052555061876773834,
- 0.026624638587236404, 0.01454250793904066, 0.028598198667168617, -0.05218775197863579,
- 0.07855062186717987, 0.09554906189441681, -0.05865345150232315, 0.05296068266034126,
- 0.07397168129682541, -0.047936491668224335, -0.06475985050201416, 0.06441943347454071,
- 0.05352271348237991, -0.10222824662923813, -0.04530157893896103, -0.05109819769859314,
- -0.05090218782424927, -0.009684432297945023, -0.026472821831703186,
- 0.028664320707321167, 0.025123456493020058, -0.05910623073577881, -0.017905769869685173,
- 0.023863036185503006, 0.03841336444020271, 0.10570865869522095, 0.018848415464162827,
- 0.06746477633714676, -0.08073939383029938, -0.025991078466176987, 0.05504307150840759,
- 0.06217106431722641, 0.08967487514019012, -0.025160571560263634, -0.026564527302980423,
- -0.08230280876159668, -0.1139218658208847, 0.028830930590629578, 0.11065759509801865,
- 0.045339878648519516, 0.02677268348634243, -0.00259010074660182, -0.08104588836431503,
- -0.06999115645885468, 0.12279675155878067, 0.029483264312148094, 0.025136198848485947,
- 0.018871694803237915, -0.0815454050898552, -0.03148127347230911, 0.14265139400959015,
- -0.0498967207968235, 0.004569975659251213, 0.0517117902636528, -0.025783712044358253,
- 0.09543725848197937, 0.10925358533859253, 0.037711359560489655, 0.050509531050920486,
- 0.01332989800721407, -0.012219427153468132, 0.021475864574313164, -0.03247310221195221,
- 0.012380851432681084, -0.027367522940039635, -0.13615871965885162, -0.08390982449054718,
- 0.02723335288465023, 0.08517411351203918, 0.013599136844277382, -0.09742316603660583,
- -0.020898079499602318, -0.04375355690717697
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 8,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 71,
- "similarity": 0.9995664358139038
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 20,
- "similarity": 0.9994966983795166
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 4,
- "similarity": 0.9994083046913147
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Halting Problem"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1156,
- "source_domain": "medium.com",
- "submitters": ["Anonymous"],
- "title": "Uber Denounces Traffic Light Laws After Self-Driving Car Runs Red Light",
- "url": "https://medium.com/halting-problem/uber-denounces-traffic-light-laws-after-self-driving-car-runs-red-light-2c8d02e30162"
- },
- {
- "__typename": "Report",
- "authors": ["Liane Yvkoff"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1155,
- "source_domain": "thedrive.com",
- "submitters": ["Anonymous"],
- "title": "Uber's Autonomous Vehicles Responsible For Red Light Violations, Not \"Human Error\"",
- "url": "http://www.thedrive.com/tech/7908/ubers-autonomous-vehicles-responsible-for-red-light-violations-not-human-error"
- },
- {
- "__typename": "Report",
- "authors": ["Edward Moyer"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1154,
- "source_domain": "cnet.com",
- "submitters": ["Anonymous"],
- "title": "Report contradicts Uber's explanation of robocar red light slip",
- "url": "https://www.cnet.com/news/uber-self-driving-car/"
- },
- {
- "__typename": "Report",
- "authors": ["Sam Levin"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1153,
- "source_domain": "theguardian.com",
- "submitters": ["Anonymous"],
- "title": "Witness says self-driving Uber ran red light on its own, disputing Uber's claims",
- "url": "https://www.theguardian.com/technology/2016/dec/21/witness-says-self-driving-uber-ran-red-light-on-its-own-disputing-ubers-claims"
- },
- {
- "__typename": "Report",
- "authors": ["Dom Galeon"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1151,
- "source_domain": "futurism.com",
- "submitters": ["Anonymous"],
- "title": "Uber’s Self Driving Cars Are Running Red Lights, Uber’s Blaming “Human Error”",
- "url": "https://futurism.com/ubers-self-driving-cars-are-running-red-lights-ubers-blaming-human-error"
- },
- {
- "__typename": "Report",
- "authors": ["Alex Davies"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1150,
- "source_domain": "wired.com",
- "submitters": ["Anonymous"],
- "title": "Uber's Self-Driving Car Runs Red Light in San Francisco",
- "url": "https://www.wired.com/2016/12/ubers-self-driving-car-ran-red-light-san-francisco/"
- },
- {
- "__typename": "Report",
- "authors": ["David Z. Morris"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1149,
- "source_domain": "fortune.com",
- "submitters": ["Anonymous"],
- "title": "Uber’s Self-Driving Cars Missed Six Red Lights In San Francisco",
- "url": "http://fortune.com/2017/02/26/uber-self-driving-car-red-lights/"
- },
- {
- "__typename": "Report",
- "authors": ["Joe Fitzgerald Rodriguez"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1145,
- "source_domain": "sfexaminer.com",
- "submitters": ["Anonymous"],
- "title": "Investigation: Uber red light-running car was fault of technology, not driver",
- "url": "http://www.sfexaminer.com/investigation-uber-red-light-running-car-fault-technology-not-driver/"
- },
- {
- "__typename": "Report",
- "authors": ["Andrew Liptak"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1143,
- "source_domain": "theverge.com",
- "submitters": ["Anonymous"],
- "title": "A self-driving Uber ran a red light last December, contrary to company claims",
- "url": "https://www.theverge.com/2017/2/25/14737374/uber-self-driving-car-red-light-december-contrary-company-claims"
- },
- {
- "__typename": "Report",
- "authors": ["Glenn Mcdonald"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1142,
- "source_domain": "infoworld.com",
- "submitters": ["Anonymous"],
- "title": "Danger, danger! 10 alarming examples of AI gone wild",
- "url": "https://www.infoworld.com/article/3184205/technology-business/danger-danger-10-alarming-examples-of-ai-gone-wild.html#slide4"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "new-york-city-dept.-of-education",
- "name": "New York city Dept. of Education"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "new-york-city-dept.-of-education",
- "name": "New York city Dept. of Education"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "teachers",
- "name": "Teachers"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1335, 1334, 1333, 1332, 1331, 1330, 1329],
- "vector": [
- -0.04720689728856087, 0.07342597097158432, 0.013066277839243412, -0.08290518820285797,
- 0.09053350239992142, -0.035509444773197174, 0.0029156836681067944, 0.061072997748851776,
- 0.08453560620546341, -0.06306493282318115, -0.004781161900609732, 0.04387950897216797,
- 0.02404143288731575, -0.04946058988571167, 0.013363895006477833, -0.09223741292953491,
- -0.10387714952230453, -0.04160770773887634, -0.023431792855262756, -0.13637065887451172,
- -0.050054021179676056, -0.0017812394071370363, -0.025039132684469223,
- 0.11485866457223892, -0.04546497017145157, 0.04350864514708519, 0.0973123237490654,
- 0.0965752974152565, -0.019104013219475746, 0.04063749685883522, -0.04969044402241707,
- -0.07383473962545395, 0.10068739950656891, 0.006023920141160488, -0.023269807919859886,
- 0.10315395891666412, 0.009273598901927471, -0.010803164914250374, -0.030690031126141548,
- -0.006737568415701389, 0.06329858303070068, 0.2690942585468292, -0.023985642939805984,
- -0.004390844609588385, 0.018358245491981506, -0.04560638219118118,
- -0.020040784031152725, 0.07387334108352661, -0.00503754336386919, 0.03165249899029732,
- -0.006335202604532242, 0.08194057643413544, -0.00869815330952406, 0.024608107283711433,
- -0.11254145205020905, 0.06546200066804886, 0.05649920552968979, -0.0013816894497722387,
- 0.0681319311261177, -0.07476935535669327, -0.04408078268170357, -0.2075829952955246,
- -0.043876759707927704, -0.08632593601942062, 0.07457439601421356, -0.07630405575037003,
- -0.05295443907380104, 0.03881075605750084, 0.032013796269893646, 0.054983098059892654,
- 0.03973506763577461, -0.020703738555312157, -0.028459027409553528, 0.006402807775884867,
- -0.011152436025440693, -0.026227807626128197, 0.0008101420826278627, 0.1847372204065323,
- -0.06204049661755562, 0.01077454537153244, 0.08026433736085892, -0.06913203746080399,
- 0.4011571407318115, 0.0029296164866536856, -0.007585511542856693, -0.019465889781713486,
- 0.07187113910913467, 0.022317033261060715, 0.062065087258815765, 0.05078095942735672,
- -0.019971255213022232, 0.06039479747414589, -0.07929794490337372, 0.0034987039398401976,
- 0.06306316703557968, 0.04509202763438225, -0.004106201231479645, 0.04100383073091507,
- -0.016773760318756104, -0.07620758563280106, -0.025180000811815262,
- -0.04838419705629349, 0.12222433090209961, 0.09228835999965668, -0.0428803488612175,
- 0.03245951607823372, 0.08351512253284454, -0.019648727029561996, 0.03027573600411415,
- -0.035600773990154266, 0.0011271450202912092, 0.025638435035943985, 0.03202388435602188,
- 0.018286241218447685, 0.002392855240032077, -0.024663161486387253,
- 0.0015212798025459051, 0.025222018361091614, 0.06341385841369629, 0.02825642004609108,
- -0.006048433482646942, 0.06491727381944656, 0.051674630492925644, -0.00359720247797668,
- -0.04938185587525368, -0.025274327024817467, -0.0692477598786354,
- -0.0036497723776847124, -0.01690484769642353, 0.05154896900057793,
- -0.048605483025312424, -0.1424386203289032, -0.01470120158046484, 0.04946761578321457,
- -0.038870375603437424, -0.019363684579730034, -0.004382745828479528,
- -0.019836531952023506, 0.08447407186031342, -0.03973427042365074, 0.00528769101947546,
- 0.029172299429774284, 0.05815703794360161, 0.04739825055003166, 0.12443532049655914,
- 0.06384433805942535, -0.048364900052547455, -0.0113422442227602, 0.016537586227059364,
- -0.021365787833929062, 0.11906050145626068, -0.11085335910320282, -0.02703005075454712,
- -0.002632217714563012, 0.012110969983041286, 0.6776477694511414, 0.12041686475276947,
- 0.16290614008903503, -0.003836314892396331, -0.02614414505660534, 0.17497876286506653,
- -0.01592804305255413, 0.03529418632388115, -0.044653408229351044, -0.03337349742650986,
- 0.019224094226956367, -0.09306713193655014, -0.06045161560177803, 0.0013382668839767575,
- -0.0030158006120473146, 0.12288057059049606, 0.00398239865899086, 0.05796223133802414,
- -0.0031840912997722626, -0.11689669638872147, -0.06739480048418045,
- 0.043006233870983124, 0.0021551530808210373, -0.12661999464035034,
- -0.008451389148831367, 0.046791184693574905, 0.08096665889024734, -0.09864877909421921,
- 0.029805246740579605, -0.06431997567415237, 0.029960686340928078, -0.0357879102230072,
- 0.019793495535850525, -0.02276224084198475, 0.018600111827254295, 0.045345451682806015,
- 0.05253402143716812, 0.027922969311475754, -0.09868272393941879, -0.05217474699020386,
- 0.07043059915304184, -0.021180881187319756, -0.027676671743392944, 0.04223212972283363,
- -0.08104940503835678, 0.04692303389310837, -0.010810124687850475, 0.17073439061641693,
- -0.1270376741886139, 0.05037856474518776, -0.029430439695715904, 0.0034102180507034063,
- 0.07087364047765732, 0.015441106632351875, -0.05888217315077782, -0.013538266532123089,
- 0.10365121811628342, 0.03240520507097244, 0.12590888142585754, -0.02244807407259941,
- -0.014304252341389656, 0.07630842924118042, 0.07732586562633514, 0.016334403306245804,
- -0.0313233807682991, 0.041165709495544434, 0.048057299107313156, -0.04284050315618515,
- 0.023859191685914993, 0.02150735631585121, 0.025545699521899223, 0.04046143963932991,
- 0.012598265893757343, 0.02289905585348606, -0.004074841737747192, -0.062459547072649,
- 0.012990524992346764, 0.02538091316819191, -0.004399850498884916, 0.09022969752550125,
- -0.06599049270153046, -0.024594111368060112, -0.029081465676426888,
- -0.016255173832178116, 0.013762279413640499, -0.03955700248479843, 0.06225958094000816,
- 0.07032466679811478, 0.048515744507312775, 0.01981840468943119, 0.0396859347820282,
- 0.06278090178966522, 0.02529020421206951, 0.023283665999770164, 0.08884714543819427,
- -0.019426656886935234, -0.05040374770760536, -0.011055870912969112,
- -0.0032967492006719112, 0.01670265384018421, 0.014680683612823486, -0.06271291524171829,
- -0.03387460485100746, -0.0614018514752388, -0.07212787866592407, -0.04325594753026962,
- -0.05202030390501022, 0.0000023474651698052185, 0.022210387513041496,
- -0.04713748022913933, -0.08667434006929398, -0.05727388337254524, 0.029114825651049614,
- 0.0814303308725357, -0.021843615919351578, -0.015418638475239277, -0.1350412517786026,
- 0.008506660349667072, -0.006823641713708639, 0.05810705944895744, 0.006982856895774603,
- 0.013779563829302788, 0.041634224355220795, -0.06349163502454758, 0.03395909443497658,
- -0.009824465028941631, -0.031236331909894943, -0.12559948861598969,
- -0.03294694423675537, -0.054413847625255585, 0.028468463569879532, 0.025760671123862267,
- -0.0457577109336853, 0.03182278200984001, 0.01679874025285244, 0.05276026949286461,
- 0.029534215107560158, -0.06211259588599205, 0.0884476900100708, -0.06192678213119507,
- -0.015196016058325768, 0.08931994438171387, -0.042750198394060135, 0.02392488718032837,
- 0.008675904013216496, -0.0864417627453804, -0.04025595262646675, -0.030242586508393288,
- -0.05348871275782585, 0.02675996720790863, -0.015278825536370277, -0.003718780819326639,
- -0.06177916005253792, -0.028635403141379356, 0.005970112979412079, -0.06821983307600021,
- -0.07209118455648422, -0.09335675090551376, 0.1353822946548462, 0.018553506582975388,
- 0.011012445203959942, -0.012535401619970798, -0.06185663491487503, 0.046438150107860565,
- 0.02180361934006214, 0.011924716643989086, 0.02839871682226658, 0.03442908078432083,
- -0.01263248361647129, -0.007949057966470718, 0.09996616095304489, -0.02571900747716427,
- -0.00113491911906749, 0.05611708015203476, 0.44715970754623413, -0.1492140144109726,
- 0.0835895910859108, 0.09244107455015182, 0.01716270111501217, 0.06041113659739494,
- -0.060054074972867966, 0.06874271482229233, 0.0818488597869873, 0.14337782561779022,
- 0.15600095689296722, -0.07003398984670639, -0.0025260394904762506, -0.07512442767620087,
- 0.1006356030702591, 0.018119562417268753, 0.02170097641646862, -0.02331450581550598,
- -0.08897111564874649, -0.04504634067416191, 0.01763540506362915, -0.02371840737760067,
- 0.021578947082161903, 0.03352624550461769, -0.03380557522177696, 0.027586420997977257,
- 0.0014927672455087304, -0.006197573151439428, -0.03321079537272453, 0.03720604628324509,
- -0.047140393406152725, 0.08154105395078659, 0.004570356570184231, 0.0396188423037529,
- -0.13717137277126312, 0.0090882433578372, -0.09206867963075638, -0.08020436763763428,
- 0.09396906197071075, -0.023632928729057312, 0.02648804895579815, 0.05901803448796272,
- -0.05622631311416626, 0.04719363898038864, 0.009563349187374115, -0.048874013125896454,
- 0.03516369313001633, 0.04385089501738548, 0.01773570477962494, -0.004090920090675354,
- 0.15614739060401917, -0.023706182837486267, -0.012681810185313225, -0.0772077813744545,
- 0.06081821396946907, 0.13463906943798065, 0.022597284987568855, -0.031083185225725174,
- 0.03805924579501152, -0.020735228434205055, 0.00902997050434351, -0.040687475353479385,
- -0.08526241779327393, -0.013124285265803337, -0.07108587771654129, 0.11665623635053635,
- 0.03251396119594574, -0.03419095277786255, -0.10989481955766678, -0.0328073687851429,
- -0.052619434893131256, 0.021916935220360756, 0.1038421019911766, -0.04694952815771103,
- 0.08055780082941055, -0.020396584644913673, -0.025653347373008728, 0.03398681432008743,
- -0.07645465433597565, -0.002187343081459403, -0.059131231158971786, 0.02253187634050846,
- 0.0455021858215332, 0.03303620591759682, -0.04194430634379387, 0.08329027146100998,
- -0.09672430902719498, 0.052820444107055664, -0.03190302848815918, -0.0486450269818306,
- -0.033517025411129, -0.0227116160094738, 0.03747757896780968, 0.0027494188398122787,
- -0.01953238621354103, -0.016107093542814255, 0.012770848348736763, -0.0424354188144207,
- -0.08394766598939896, -0.06846118718385696, -0.021110624074935913, -0.05574719235301018,
- 0.047043412923812866, -0.11126761883497238, -0.004704880993813276, -0.02055053599178791,
- -0.013606931082904339, 0.0019737135153263807, 0.046084847301244736,
- 0.007966311648488045, -0.12922526895999908, 0.0047613889910280704, -0.04126753285527229,
- 0.06443297117948532, -0.005984166171401739, -0.04877815768122673, 0.033007360994815826,
- 0.10300715267658234, 0.052053261548280716, -0.04260809347033501, -0.040431439876556396,
- -0.028217779472470284, 0.04631895199418068, -0.11107422411441803, -0.41375112533569336,
- 0.04405367001891136, 0.02843068726360798, 0.049380335956811905, 0.00794618297368288,
- -0.08269103616476059, 0.02060927078127861, -0.019818099215626717, -0.04554494097828865,
- 0.0906655341386795, -0.04048530012369156, 0.03795508295297623, 0.006786900106817484,
- -0.09111254662275314, -0.019121292978525162, -0.02813432738184929,
- -0.031272031366825104, 0.07267866283655167, -0.025199873372912407, -0.09891890734434128,
- -0.10577844083309174, 0.04079155996441841, -0.007530036848038435, 0.0027738690841943026,
- 0.011395661160349846, 0.00886969082057476, -0.07342108339071274, -0.023978544399142265,
- 0.05145880579948425, 0.05524725466966629, 0.029863936826586723, -0.08575058728456497,
- 0.009114977903664112, 0.033365316689014435, -0.005665076430886984, 0.10834506899118423,
- -0.003463629400357604, 0.046305038034915924, -0.06154925748705864, 0.08827024698257446,
- 0.028392406180500984, 0.18750320374965668, 0.010310055688023567, 0.0027944822795689106,
- 0.05713847652077675, 0.11147405207157135, 0.017801180481910706, -0.0037336305249482393,
- -0.01508253999054432, 0.008456643670797348, 0.03743403032422066, -0.012114581651985645,
- 0.09383637458086014, -0.05510091409087181, -0.005701752845197916, -0.05530848354101181,
- -0.01356292050331831, -0.007993808016180992, -0.03408282250165939, 0.20060573518276215,
- 0.0010291055077686906, 0.021977346390485764, 0.036486413329839706, -0.08230490982532501,
- 0.003739601233974099, -0.06276924163103104, -0.06362464278936386, -0.014275902882218361,
- -0.0017411420121788979, -0.0036669166292995214, -0.024074239656329155,
- -0.1068170815706253, -0.010243423283100128, -0.017312277108430862, 0.033185962587594986,
- 0.08935515582561493, -0.012439221143722534, 0.011243290267884731, -0.02596910484135151,
- 0.12851379811763763, 0.05130587890744209, 0.022107185795903206, 0.04414171725511551,
- 0.09512113779783249, 0.01983790658414364, -0.011499432846903801, -0.023187587037682533,
- -0.039759133011102676, 0.010431863367557526, 0.1583252251148224, -0.04568507894873619,
- 0.09989041090011597, 0.044460322707891464, -0.010807393118739128, -0.06045138090848923,
- 0.004495847970247269, -0.028557123616337776, 0.061991069465875626, -0.4415742754936218,
- -0.029366541653871536, 0.10504703968763351, 0.006053191144019365, 0.0021027165930718184,
- 0.06141494959592819, -0.005240610335022211, -0.04395272955298424, 0.010136330500245094,
- -0.11252149194478989, 0.17685385048389435, 0.037048403173685074, 0.03710281103849411,
- -0.10689390450716019, 0.043819986283779144, 0.08669093996286392, -0.06112431362271309,
- 0.008226580917835236, 0.06795205920934677, -0.15891899168491364, -0.005730911158025265,
- -0.05794626474380493, 0.12746010720729828, 0.021920979022979736, 0.014283544383943081,
- 0.07401198893785477, -0.024888237938284874, 0.014705793000757694, 0.048300109803676605,
- -0.003827553940936923, 0.027519358322024345, -0.004180422518402338,
- -0.01843295805156231, 0.09576783329248428, 0.111923448741436, 0.07887367904186249,
- -0.04058567062020302, 11.881474494934082, 0.04221243038773537, 0.04751678928732872,
- -0.06595883518457413, -0.022671615704894066, -0.051262348890304565,
- 0.018860872834920883, -0.0994039997458458, 0.07090459018945694, 0.13331544399261475,
- -0.007798281963914633, -0.07882870733737946, -0.039299461990594864,
- -0.08047305047512054, 0.001123957335948944, -0.03394579514861107, -0.06649085879325867,
- -0.023052511736750603, 0.04207697883248329, -0.0404396690428257, -0.01448809914290905,
- 0.028465760871767998, 0.0318838469684124, 0.013876676559448242, -0.07428796589374542,
- 0.005981366615742445, 0.0213534664362669, -0.0075362506322562695, 0.0060660880990326405,
- 0.02184406854212284, -0.006614624988287687, 0.02892353944480419, 0.048893239349126816,
- -0.0002601922315079719, 0.04634285345673561, 0.07127739489078522, 0.0763288214802742,
- 0.035457029938697815, 0.038050293922424316, 0.10736455768346786, 0.04764309152960777,
- 0.06639520078897476, 0.054668862372636795, 0.033300429582595825, 0.063808374106884,
- 0.04818776994943619, 0.009554916992783546, 0.12904144823551178, 0.03881799802184105,
- 0.09287495911121368, 0.11346925050020218, -0.00830104760825634, 0.13521423935890198,
- -0.007533243857324123, 0.012989516369998455, 0.05061465501785278, 0.031268563121557236,
- -0.0906730368733406, 0.05593227967619896, 0.06092185154557228, -0.05325380340218544,
- 0.12631657719612122, 0.007549319416284561, 0.09561879187822342, 0.01664474979043007,
- 0.05354755371809006, 0.09611012041568756, 0.07843488454818726, -0.1618894785642624,
- -0.027283798903226852, 0.02295800670981407, -0.09158681333065033, -0.07476438581943512,
- 0.07235003262758255, 0.049627985805273056, -0.04397217556834221, 0.04880591481924057,
- -0.01963604800403118, 0.0468636155128479, -0.024568581953644753, -0.027012258768081665,
- 0.0482717826962471, -0.019167885184288025, -0.05203980579972267, 0.09804681688547134,
- 0.028248120099306107, 0.04959726333618164, 0.09240467101335526, -0.04338771849870682,
- -0.07642411440610886, -0.10373740643262863, 0.07203594595193863, -0.01616894267499447,
- -0.0463968850672245, 0.032301757484674454, -0.06914506107568741, 0.06480538100004196,
- -0.1710355430841446, 0.10375557094812393, 0.12003172188997269, -0.11842143535614014,
- -0.036798425018787384, -0.043587468564510345, 0.04700341075658798, 0.018444066867232323,
- 0.02676907368004322, -0.04579028859734535, 0.016958465799689293, -0.01641853153705597,
- 0.023260904476046562, -0.04154900088906288, 0.05928456783294678, 0.08607836812734604,
- -0.048410121351480484, 0.028938237577676773, 0.05049000307917595, -0.035483263432979584,
- -0.03806069493293762, 0.0525972843170166, 0.01035444624722004, -0.07478926330804825,
- -0.04048175364732742, -0.007710017263889313, -0.03989068418741226,
- -0.039779871702194214, -0.04568949341773987, -0.017884230241179466,
- 0.044250134378671646, -0.09081623703241348, 0.002549031749367714, 0.06503800302743912,
- 0.03892742469906807, 0.0957084372639656, 0.007441393099725246, 0.045392632484436035,
- -0.032449014484882355, -0.05849651247262955, 0.03638774901628494, 0.005451531149446964,
- 0.06140292435884476, -0.026822486892342567, -0.03837665542960167, -0.051669683307409286,
- -0.11462730169296265, -0.005816583056002855, 0.016601460054516792, 0.023434346541762352,
- 0.024162301793694496, 0.015679147094488144, -0.04270661994814873, -0.025447726249694824,
- 0.08615592867136002, 0.03414945676922798, 0.01186091173440218, 0.028429625555872917,
- -0.05758250504732132, -0.040182895958423615, 0.1248588114976883, -0.0457443967461586,
- -0.004216914065182209, 0.011996292509138584, -0.03184336796402931, 0.10165165364742279,
- 0.07751031965017319, 0.0031932422425597906, 0.022240206599235535, 0.03198792785406113,
- 0.00759771978482604, 0.019133413210511208, -0.006208057515323162,
- -0.0021274678874760866, -0.03965749219059944, -0.06583020091056824,
- -0.07111408561468124, 0.029082970693707466, 0.12093964964151382, 0.04363810643553734,
- -0.07254912704229355, -0.018703525885939598, -0.05770919844508171
- ]
- },
- "flagged_dissimilar_incidents": [11],
- "incident_id": 9,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 11,
- "similarity": 0.9989643096923828
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 40,
- "similarity": 0.9989066123962402
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 54,
- "similarity": 0.9989059567451477
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Jessica Bakeman"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1335,
- "source_domain": "politico.com",
- "submitters": ["Catherine Olsson"],
- "title": "Teachers plan widespread appeals of 'unfair' evaluations",
- "url": "https://www.politico.com/states/new-york/albany/story/2013/10/teachers-plan-widespread-appeals-of-unfair-evaluations-000000"
- },
- {
- "__typename": "Report",
- "authors": ["Matthew Di Carlo"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1334,
- "source_domain": "shankerinstitute.org",
- "submitters": ["Catherine Olsson"],
- "title": "Reign Of Error: The Publication Of Teacher Data Reports In New York City",
- "url": "http://www.shankerinstitute.org/blog/reign-error-publication-teacher-data-reports-new-york-city"
- },
- {
- "__typename": "Report",
- "authors": ["Emmeline Zhao"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1333,
- "source_domain": "huffingtonpost.com",
- "submitters": ["Catherine Olsson"],
- "title": "New York City Teacher Ratings: Teacher Data Reports Publicly Released Amid Controversy",
- "url": "https://www.huffingtonpost.com/2012/02/24/new-york-city-teacher-rat_n_1299837.html"
- },
- {
- "__typename": "Report",
- "authors": ["Parent Advocates"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1332,
- "source_domain": "parentadvocates.org",
- "submitters": ["Catherine Olsson"],
- "title": "A NYC Math Teacher Fights Back After Receiving an Unfair 'Unsatisfactory' Rating from a Principal",
- "url": "http://parentadvocates.org/nicecontent/dsp_printable.cfm?articleID=6016"
- },
- {
- "__typename": "Report",
- "authors": ["Matt Barnum"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1331,
- "source_domain": "cityandstateny.com",
- "submitters": ["Catherine Olsson"],
- "title": "New data show more than half of NYC teachers judged, in part, by test scores they don’t directly affect",
- "url": "https://www.cityandstateny.com/articles/policy/education/new-york-teachers-judged-by-test-scores-they-dont-affect.html"
- },
- {
- "__typename": "Report",
- "authors": ["Valerie Strauss"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1330,
- "source_domain": "washingtonpost.com",
- "submitters": ["Catherine Olsson"],
- "title": "Master teacher suing New York state over ‘ineffective’ rating is going to court",
- "url": "https://www.washingtonpost.com/news/answer-sheet/wp/2015/08/09/master-teacher-suing-new-york-state-over-ineffective-rating-is-going-to-court/?utm_term=.afb4a2d4450e"
- },
- {
- "__typename": "Report",
- "authors": ["Gary Rubinstein"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1329,
- "source_domain": "garyrubinstein.teachforus.org",
- "submitters": ["Catherine Olsson"],
- "title": "Analyzing Released NYC Value-Added Data Part 2",
- "url": "http://garyrubinstein.teachforus.org/2012/02/28/analyzing-released-nyc-value-added-data-part-2/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "starbucks",
- "name": "Starbucks"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "kronos",
- "name": "Kronos"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "starbucks-employees",
- "name": "Starbucks employees"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [25, 24, 23, 22, 21, 20, 19, 18, 17, 16],
- "vector": [
- -0.06841292232275009, 0.08255906403064728, 0.017737803980708122, -0.10710948705673218,
- 0.12266533076763153, -0.04649468511343002, -0.015452317893505096, 0.017702659592032433,
- 0.07051698118448257, -0.10235148668289185, -0.021081121638417244, 0.017820026725530624,
- 0.032566819339990616, -0.03947213292121887, 0.02732796035706997, -0.05834178999066353,
- -0.09229441732168198, -0.03068310022354126, 0.0005864544655196369, -0.11755073070526123,
- -0.08433695137500763, 0.005715564824640751, 0.006991466972976923, 0.11313071101903915,
- -0.035511113703250885, 0.022447967901825905, 0.11154558509588242, 0.11783023923635483,
- 0.004598249681293964, 0.05499538779258728, -0.015789125114679337, -0.08348552882671356,
- 0.09375607967376709, 0.0020884941332042217, 0.006771962158381939, 0.09916503727436066,
- -0.0054870047606527805, -0.034903112798929214, -0.024041183292865753,
- 0.01617508940398693, 0.032581936568021774, 0.23353910446166992, 0.005509792361408472,
- -0.027768690139055252, 0.0438775010406971, 0.005334157962352037, 0.02050728164613247,
- 0.10855700820684433, -0.0015129774110391736, 0.003089690115302801,
- -0.016975484788417816, 0.09770088642835617, -0.027908002957701683, 0.036213070154190063,
- -0.13222885131835938, 0.02784169837832451, 0.03731813281774521, -0.0004827398806810379,
- 0.06573175638914108, -0.08812443912029266, -0.0006616926984861493, -0.19004479050636292,
- -0.04138186201453209, -0.032365936785936356, 0.08064189553260803, -0.05979529768228531,
- -0.033193208277225494, 0.03483796492218971, 0.015335386618971825, 0.07672490924596786,
- 0.05630197376012802, -0.049237314611673355, -0.038985442370176315,
- 0.0047752647660672665, -0.035621028393507004, -0.024215692654252052,
- -0.006061650346964598, 0.2335447371006012, -0.07867880165576935, -0.01898614689707756,
- 0.08680970966815948, -0.09278423339128494, 0.3987751603126526, 0.060071952641010284,
- 0.006044968031346798, -0.04462457448244095, 0.05455758422613144, 0.07360662519931793,
- 0.04261058568954468, 0.039191871881484985, -0.049547627568244934, 0.03456296771764755,
- -0.05879871919751167, 0.0024951749946922064, 0.06703958660364151, 0.027154255658388138,
- -0.00874017272144556, 0.057451874017715454, -0.014647191390395164, -0.0853469967842102,
- -0.018129613250494003, -0.031861964613199234, 0.09290651977062225, 0.06789884716272354,
- -0.03658333048224449, 0.00017825902614276856, 0.0675666555762291, -0.042418934404850006,
- 0.04237237200140953, -0.018076278269290924, 0.029788712039589882, -0.008379393257200718,
- 0.03076322376728058, -0.0024012539070099592, 0.029750501736998558, -0.02490108460187912,
- 0.012197589501738548, 0.05529804900288582, 0.07074347883462906, 0.042738210409879684,
- 0.031818244606256485, 0.05765729025006294, 0.06285413354635239, -0.02862699329853058,
- -0.04140282794833183, -0.018030405044555664, -0.021337758749723434,
- -0.021196458488702774, -0.04177958890795708, 0.04202679172158241, -0.041546277701854706,
- -0.19947485625743866, -0.01082480140030384, 0.08963049948215485, -0.002991348970681429,
- -0.029417729005217552, 0.00001862770841398742, -0.05120665952563286,
- 0.033794522285461426, -0.005810092203319073, -0.01500248908996582, 0.028721055015921593,
- 0.022154029458761215, 0.02840401791036129, 0.1543091982603073, 0.05063353106379509,
- -0.05564175173640251, -0.03861511871218681, -0.012248655781149864, -0.03405265882611275,
- 0.1141527071595192, -0.11974640935659409, -0.05455257371068001, 0.013094077818095684,
- -0.02587847411632538, 0.6567185521125793, 0.11371896415948868, 0.16934607923030853,
- 0.01082638744264841, -0.017566747963428497, 0.17517471313476562, -0.007486309856176376,
- 0.04383862763643265, -0.0851464718580246, -0.05663176253437996, 0.023771299049258232,
- -0.07230733335018158, -0.03115556202828884, 0.03225359693169594, 0.007663371507078409,
- 0.12639595568180084, -0.012094255536794662, 0.07621781527996063, 0.00470320088788867,
- -0.09740330278873444, -0.035283416509628296, 0.08072682470083237, -0.019965332001447678,
- -0.13426944613456726, -0.02990957535803318, 0.029031893238425255, 0.08364960551261902,
- -0.09460131078958511, 0.0003482694737613201, -0.07730256021022797, 0.03519482538104057,
- -0.023247364908456802, 0.0200048740953207, -0.012543300166726112, 0.03703422099351883,
- 0.04566573724150658, 0.054340749979019165, 0.011343533173203468, -0.10123256593942642,
- -0.015494327060878277, 0.12752971053123474, -0.028449540957808495,
- -0.025896990671753883, 0.08327052742242813, -0.08837111294269562, 0.049304746091365814,
- 0.011028222739696503, 0.13671047985553741, -0.10338710248470306, 0.014687960036098957,
- -0.031844086945056915, 0.018948879092931747, 0.061671994626522064, 0.013810168020427227,
- -0.0349402092397213, -0.0487808883190155, 0.09728659689426422, -0.00012544904893729836,
- 0.09605928510427475, 0.02715083584189415, -0.03827338293194771, 0.05727006122469902,
- 0.1374557912349701, -0.0015562714543193579, 0.002443319885060191, 0.0505552664399147,
- 0.04696148633956909, -0.05495886877179146, -0.012679487466812134, -0.010057899169623852,
- 0.05804906412959099, 0.03781615197658539, 0.013323754072189331, 0.03330517187714577,
- -0.01974913477897644, -0.054327286779880524, 0.011778479442000389, 0.002034979173913598,
- 0.017116189002990723, 0.11226259171962738, -0.04688004404306412, -0.045044831931591034,
- -0.05095986649394035, -0.0462941899895668, 0.03157275542616844, 0.0027627546805888414,
- 0.0806470513343811, 0.08949355036020279, 0.08464962244033813, 0.008359028957784176,
- 0.04931395500898361, 0.06887535750865936, 0.02331547439098358, 0.0073752254247665405,
- 0.07620115578174591, -0.01985809952020645, -0.041596926748752594, -0.010979698970913887,
- 0.009829701855778694, 0.01548650860786438, 0.0071002715267241, -0.0704135149717331,
- -0.033914510160684586, -0.03795802220702171, -0.06428028643131256, -0.06263178586959839,
- -0.035338468849658966, 0.026913082227110863, 0.01082033384591341, -0.04205778241157532,
- -0.10908146947622299, -0.0952560305595398, 0.02637300454080105, 0.06364049017429352,
- -0.011436312459409237, -0.0018066571792587638, -0.10706274211406708,
- 0.010102959349751472, 0.00010898010805249214, 0.05975433439016342,
- -0.0042587947100400925, 0.013140772469341755, 0.009641138836741447,
- -0.05218709632754326, 0.041256871074438095, -0.0037247289437800646,
- -0.028871595859527588, -0.07932685315608978, -0.03143605217337608, -0.05029808357357979,
- -0.007401092443615198, 0.008981220424175262, -0.05836968496441841, 0.039155252277851105,
- 0.03987164422869682, 0.05013152211904526, 0.017009055241942406, -0.01974823698401451,
- 0.05732440948486328, -0.03805435448884964, -0.01476270891726017, 0.07429195195436478,
- -0.03144090250134468, 0.051159631460905075, -0.009531856514513493, -0.04681968688964844,
- -0.0428457111120224, -0.011817383579909801, -0.03160657361149788, 0.05843649059534073,
- -0.020481187850236893, 0.009324030950665474, -0.04654700309038162,
- -0.009206941351294518, -0.00036862859269604087, -0.06137499958276749,
- -0.07406989485025406, -0.06351901590824127, 0.12707851827144623, 0.013410033658146858,
- 0.003595705609768629, 0.040755774825811386, -0.03535497188568115, 0.0348849818110466,
- -0.01023091934621334, -0.00972566194832325, 0.02409248799085617, 0.03795306012034416,
- -0.024982433766126633, -0.016601163893938065, 0.05590899661183357,
- -0.021581852808594704, 0.021253470331430435, 0.04567709565162659, 0.4016311764717102,
- -0.1771545559167862, 0.08875250071287155, 0.09526221454143524, 0.043530892580747604,
- 0.04562800005078316, -0.03788471594452858, 0.04147379845380783, 0.08256692439317703,
- 0.13061656057834625, 0.0672105997800827, -0.025289136916399002, -0.02244524285197258,
- -0.0973358303308487, 0.09815799444913864, 0.021489152684807777, 0.00803743489086628,
- 0.001990589778870344, -0.08938077837228775, -0.03518141806125641, 0.03726280853152275,
- -0.06316126883029938, -0.016641218215227127, -0.007199821528047323,
- -0.08435548841953278, 0.005285636521875858, 0.010777292773127556, 0.007784110493957996,
- -0.00029415133758448064, 0.04070577770471573, -0.04265180975198746,
- 0.039291538298130035, 0.005728474818170071, 0.0280133243650198, -0.09785696864128113,
- 0.017010536044836044, -0.047516338527202606, -0.06677897274494171, 0.087294802069664,
- -0.029750987887382507, 0.035855840891599655, 0.05851803347468376, -0.028794264420866966,
- 0.021998634561896324, 0.005094739608466625, -0.06911887228488922, 0.001192352850921452,
- 0.05071138218045235, 0.04473762959241867, 0.08768881112337112, 0.17643532156944275,
- -0.03303345665335655, -0.02794659696519375, -0.07459728419780731, 0.04609562084078789,
- 0.0989299863576889, 0.01764814555644989, -0.007207629270851612, 0.019862011075019836,
- -0.03803921863436699, 0.016768282279372215, -0.048121534287929535, -0.10502655804157257,
- -0.030588310211896896, -0.06079907342791557, 0.07820115983486176, 0.0133530143648386,
- -0.020684074610471725, -0.15514804422855377, -0.03883208706974983, -0.05287303775548935,
- 0.018698962405323982, 0.11219044029712677, -0.035789601504802704, 0.023708146065473557,
- -0.00006640001811319962, -0.0346628800034523, 0.023297566920518875,
- -0.08568543195724487, 0.02937793731689453, -0.03430604189634323, 0.03398282080888748,
- 0.06947711855173111, 0.05557971075177193, -0.02448728308081627, 0.07269691675901413,
- -0.06804728507995605, 0.05087907984852791, -0.007492095232009888, -0.05932514742016792,
- 0.05213136225938797, -0.026688313111662865, 0.04018903151154518, 0.006246981211006641,
- -0.016213852912187576, -0.009014453738927841, 0.012285523116588593, -0.0429302342236042,
- -0.1051013246178627, -0.03627810627222061, -0.039240896701812744, -0.07250531762838364,
- 0.05594303458929062, -0.09858179837465286, -0.029730787500739098, -0.010231925174593925,
- -0.017459088936448097, -0.004941485822200775, 0.021638978272676468,
- 0.016592394560575485, -0.13497930765151978, 0.01397754531353712, -0.02866910956799984,
- 0.0900668278336525, 0.015401040203869343, -0.03447005897760391, 0.047278162091970444,
- 0.10501136630773544, 0.04263550415635109, -0.042092155665159225, -0.006090549752116203,
- -0.055239371955394745, 0.048462629318237305, -0.10146979242563248, -0.4245150685310364,
- 0.03392636403441429, 0.002807642798870802, 0.04192684218287468, 0.03449872508645058,
- -0.09351135790348053, 0.0382453128695488, -0.029909217730164528, -0.029241550713777542,
- 0.07282052934169769, -0.03713016211986542, 0.03001207672059536, 0.0038425568491220474,
- -0.0648050606250763, -0.0014395734760910273, -0.05548696964979172, -0.04708419367671013,
- 0.03259451687335968, -0.047132428735494614, -0.06258593499660492, -0.11664848029613495,
- 0.04426175355911255, -0.005214188247919083, 0.013939594849944115, 0.0053037977777421474,
- 0.018227469176054, -0.07227052748203278, -0.035798605531454086, 0.07407542318105698,
- 0.0237907562404871, 0.027823403477668762, -0.09101470559835434, 0.00403182115405798,
- 0.04289809614419937, 0.002940054051578045, 0.10798662900924683, 0.005232854746282101,
- 0.013773500919342041, -0.033875398337841034, 0.09276439994573593, 0.053784988820552826,
- 0.1874297559261322, 0.006454192101955414, 0.008839316666126251, -0.005961133167147636,
- 0.13444970548152924, 0.03219016641378403, 0.007194367703050375, -0.04626338183879852,
- 0.0015428598271682858, 0.03673217073082924, -0.014871479943394661, 0.06865783780813217,
- -0.06340701878070831, -0.02543795108795166, -0.001353089464828372,
- -0.015346253290772438, -0.008049285039305687, -0.042929451912641525,
- 0.19707965850830078, 0.019158484414219856, 0.020838281139731407, 0.019428418949246407,
- -0.0790431797504425, 0.011285698041319847, -0.05750890448689461, -0.07732291519641876,
- -0.02597511187195778, -0.01730029657483101, -0.0019100510980933905, -0.0291757695376873,
- -0.0892198458313942, -0.016103576868772507, 0.01992134191095829, -0.013292859308421612,
- 0.13769462704658508, -0.017439983785152435, 0.026736993342638016, -0.028537243604660034,
- 0.11801580339670181, 0.042630404233932495, 0.033879853785037994, 0.05562686175107956,
- 0.08898753672838211, 0.0360906608402729, 0.05037165805697441, -0.029208045452833176,
- -0.04760030657052994, 0.0068192980252206326, 0.13346144556999207, -0.025236347690224648,
- 0.09788227081298828, 0.05268704891204834, -0.045215003192424774, -0.043609537184238434,
- 0.013746184296905994, 0.004718789830803871, 0.057142727077007294, -0.459599107503891,
- -0.023622829467058182, 0.08187734335660934, -0.0005193061078898609,
- 0.011456172913312912, 0.08629194647073746, 0.013369627296924591, -0.04185105115175247,
- 0.009133456274867058, -0.06891002506017685, 0.12935106456279755, 0.031008630990982056,
- 0.0335465632379055, -0.12094652652740479, 0.012401250191032887, 0.08364032953977585,
- -0.020446652546525, -0.016942763701081276, 0.049437690526247025, -0.22709457576274872,
- 0.019584443420171738, -0.04060276597738266, 0.1202157735824585, -0.006222317926585674,
- 0.02427615597844124, 0.07044126093387604, -0.048852771520614624, 0.019644223153591156,
- 0.043219029903411865, -0.007314726710319519, 0.047816626727581024,
- -0.014264775440096855, -0.017777079716324806, 0.0680513009428978, 0.06374215334653854,
- 0.11908354610204697, -0.011608901433646679, 11.899330139160156, 0.06354790180921555,
- 0.03805717080831528, -0.09183052182197571, 0.02933480404317379, -0.043524473905563354,
- 0.012845571152865887, -0.11245249211788177, 0.01809948869049549, 0.11993591487407684,
- -0.04148494079709053, -0.07741526514291763, -0.04576029255986214, -0.08622977882623672,
- 0.02301032654941082, -0.05425844341516495, -0.11018048226833344, -0.04356323927640915,
- 0.04094509407877922, -0.037357185035943985, -0.027706224471330643, 0.07822529226541519,
- 0.040297623723745346, 0.0133597981184721, -0.0708509311079979, 0.04072750359773636,
- 0.031060751527547836, -0.029224704951047897, 0.0024882876314222813,
- -0.0032400377094745636, 0.005964864976704121, -0.0013202037662267685,
- 0.029165472835302353, 0.023526037111878395, 0.049488604068756104, 0.0732952356338501,
- 0.07578669488430023, 0.05409271642565727, 0.033286020159721375, 0.11310321092605591,
- 0.042199213057756424, 0.011933716014027596, 0.02123691700398922, 0.010619988664984703,
- 0.055588286370038986, 0.0684037134051323, 0.006086287554353476, 0.117994025349617,
- 0.028286844491958618, 0.07547932118177414, 0.10054685920476913, -0.004639047663658857,
- 0.12230505794286728, 0.0020156202372163534, -0.0125412717461586, 0.03635096922516823,
- -0.0036049727350473404, -0.0754992738366127, 0.049604251980781555, 0.05443967133760452,
- -0.06271867454051971, 0.10463930666446686, 0.017123958095908165, 0.09628205001354218,
- -0.0034097707830369473, 0.0742160975933075, 0.043456606566905975, 0.08228088170289993,
- -0.12962567806243896, -0.06976678222417831, 0.042611174285411835, -0.11410216987133026,
- -0.05902496725320816, 0.07816030085086823, 0.11529189348220825, -0.07289905846118927,
- 0.02237776666879654, -0.006855964660644531, 0.015925757586956024, -0.04842060059309006,
- -0.0033435900695621967, 0.06455186754465103, -0.009379561990499496,
- -0.0064817690290510654, 0.09206972271203995, 0.017871515825390816, 0.05520313233137131,
- 0.09756311029195786, -0.022609345614910126, -0.06705362349748611, -0.04262623190879822,
- 0.06597613543272018, 0.007484654430299997, -0.07253653556108475, 0.023873088881373405,
- -0.07184994220733643, 0.05379415303468704, -0.15725001692771912, 0.06870647519826889,
- 0.11843399703502655, -0.08344094455242157, -0.012355917133390903, -0.045404307544231415,
- 0.0864037349820137, 0.03444259613752365, -0.0061794668436050415, -0.04775547981262207,
- 0.002829032950103283, -0.012330928817391396, 0.007511543575674295, -0.03704431653022766,
- 0.03596052527427673, 0.06446601450443268, -0.03978605568408966, 0.04420388862490654,
- 0.05639089271426201, -0.021426601335406303, -0.03194120526313782, 0.052361078560352325,
- 0.03495921567082405, -0.06257215887308121, -0.028345942497253418, -0.04622543603181839,
- -0.015253916382789612, -0.03683768957853317, -0.05004741623997688,
- -0.0005166478222236037, 0.031687844544649124, -0.06214047595858574,
- -0.00023040230735205114, 0.03909517452120781, 0.035062454640865326, 0.04656009003520012,
- 0.029403720051050186, 0.08677220344543457, -0.03357093408703804, -0.02433578297495842,
- 0.04499950632452965, 0.03461521491408348, 0.05594952777028084, 0.017158230766654015,
- -0.04802138730883598, -0.04711337760090828, -0.1342587172985077, 0.009164378046989441,
- 0.09510406106710434, 0.02136695757508278, 0.013719795271754265, 0.011115007102489471,
- -0.06621604412794113, -0.06388624757528305, 0.1011749878525734, 0.04433156177401543,
- 0.026613185182213783, 0.011879386380314827, -0.054494667798280716,
- -0.028955820947885513, 0.09631345421075821, -0.046050988137722015, 0.004781014285981655,
- 0.012626012787222862, -0.026319196447730064, 0.09636221081018448, 0.08935143053531647,
- -0.006123233586549759, 0.04916246980428696, -0.005961393937468529, 0.00781418476253748,
- 0.02850925549864769, -0.03245514631271362, 0.01417984813451767, -0.032771773636341095,
- -0.0886230617761612, -0.04930981621146202, 0.02034725807607174, 0.08620401471853256,
- 0.02943563088774681, -0.13183625042438507, -0.01733490265905857, -0.03880348056554794
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 10,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 54,
- "similarity": 0.9988328814506531
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 30,
- "similarity": 0.9988228678703308
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 37,
- "similarity": 0.998763918876648
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Caroline O'Donovan"],
- "epoch_date_downloaded": 1662595200,
- "epoch_date_modified": 1662595200,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 25,
- "source_domain": "buzzfeednews.com",
- "submitters": ["Catherine Olsson"],
- "title": "After A Wave Of Bad Press, This Controversial Software Company Is Making Changes",
- "url": "https://www.buzzfeednews.com/article/carolineodonovan/kronos-makes-changes-to-software-accused-of-producing-bad-sc"
- },
- {
- "__typename": "Report",
- "authors": ["Alain Sherter"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 24,
- "source_domain": "cbsnews.com",
- "submitters": ["Catherine Olsson"],
- "title": "For some Starbucks workers, job leaves bitter taste",
- "url": "https://www.cbsnews.com/news/for-some-starbucks-workers-job-leaves-bitter-taste/"
- },
- {
- "__typename": "Report",
- "authors": ["Aimee Picchi"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": true,
- "report_number": 23,
- "source_domain": "cbsnews.com",
- "submitters": ["Catherine Olsson"],
- "title": "Is Starbucks shortchanging its baristas?",
- "url": "https://www.cbsnews.com/news/is-starbucks-shortchanging-its-baristas/"
- },
- {
- "__typename": "Report",
- "authors": ["Tommy Tonkins"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 22,
- "source_domain": "quinyx.com",
- "submitters": ["Catherine Olsson"],
- "title": "How Starbucks started taking their schedules seriously…and why you should too",
- "url": "https://www.quinyx.com/blog/how-starbucks-started-taking-their-schedules-seriously-and-why-you-should-too"
- },
- {
- "__typename": "Report",
- "authors": ["Aditi Sen", "Carrie Gleason"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 21,
- "source_domain": "populardemocracy.org",
- "submitters": ["Catherine Olsson"],
- "title": "THE GRIND: Striving for Scheduling Fairness at Starbucks",
- "url": "http://populardemocracy.org/sites/default/files/The%2BGrind.pdf"
- },
- {
- "__typename": "Report",
- "authors": ["Aaron Smith"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 20,
- "source_domain": "money.cnn.com",
- "submitters": ["Catherine Olsson"],
- "title": "Starbucks vows to do more to ease barista schedules",
- "url": "https://money.cnn.com/2015/09/24/news/companies/starbucks-schedules/index.html"
- },
- {
- "__typename": "Report",
- "authors": ["Fair Workweek Initiative"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 19,
- "source_domain": "fairworkweek.org",
- "submitters": ["Catherine Olsson"],
- "title": "The Seattle Times: Starbucks says its scheduling practices have improved",
- "url": "http://www.fairworkweek.org/news-bedford/starbucks-schedule"
- },
- {
- "__typename": "Report",
- "authors": ["Heidi Groover"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 18,
- "source_domain": "thestranger.com",
- "submitters": ["Catherine Olsson"],
- "title": "\"I Hope That Howard Schultz Hears My Story\": A Starbucks Barista on Why He's Fighting for Fair Scheduling",
- "url": "https://www.thestranger.com/blogs/slog/2015/11/12/23142113/i-hope-that-howard-schultz-hears-my-story-a-starbucks-barista-on-why-hes-fighting-for-fair-scheduling"
- },
- {
- "__typename": "Report",
- "authors": ["News Writer"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 17,
- "source_domain": "searchhrsoftware.techtarget.com",
- "submitters": ["Catherine Olsson"],
- "title": "Kronos shift scheduling software a grind for Starbucks worker",
- "url": "https://searchhrsoftware.techtarget.com/news/4500252451/Kronos-shift-scheduling-software-a-grind-for-Starbucks-worker"
- },
- {
- "__typename": "Report",
- "authors": ["Jodi Kantor"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 16,
- "source_domain": "nytimes.com",
- "submitters": ["Catherine Olsson"],
- "title": "Working Anything but 9 to 5",
- "url": "https://www.nytimes.com/interactive/2014/08/13/us/starbucks-workers-scheduling-hours.html"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "northpointe",
- "name": "Northpointe"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "northpointe",
- "name": "Northpointe"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "accused-people",
- "name": "Accused People"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1373, 1372, 1371, 41, 40, 39, 38, 37, 36, 35, 33, 32, 31, 30, 29],
- "vector": [
- -0.06276785582304001, 0.09080149978399277, 0.010065465234220028, -0.08005686104297638,
- 0.09238579124212265, -0.017490586265921593, -0.00808903481811285, 0.06638959795236588,
- 0.0848974958062172, -0.11978688836097717, 0.004371209070086479, 0.045173924416303635,
- 0.03897416591644287, -0.05737490579485893, 0.03266919404268265, -0.09589169174432755,
- -0.1317751705646515, -0.06207800656557083, -0.02830495499074459, -0.1446930468082428,
- -0.05978138744831085, -0.012969749048352242, 0.0007092816522344947, 0.11406068503856659,
- -0.055050838738679886, 0.051929425448179245, 0.10045582801103592, 0.08657995611429214,
- -0.0450856015086174, 0.05541533976793289, -0.03730310872197151, -0.06288866698741913,
- 0.12886014580726624, 0.0012589237885549664, -0.00822367426007986, 0.10245783627033234,
- -0.004162013530731201, -0.027877746149897575, 0.018492160364985466,
- -0.016641534864902496, 0.03236059099435806, 0.287757009267807, -0.010380679741501808,
- -0.008396935649216175, 0.033271074295043945, -0.05657938867807388,
- -0.005864790640771389, 0.03740707412362099, -0.0065825702622532845,
- 0.029640788212418556, -0.014648333191871643, 0.04226880893111229, -0.03774857148528099,
- 0.02951708622276783, -0.11639466136693954, 0.0503229945898056, 0.040333133190870285,
- 0.0063290842808783054, 0.04670506343245506, -0.09074541181325912, -0.04131000116467476,
- -0.22576852142810822, -0.022427577525377274, -0.08852061629295349, 0.10743065178394318,
- -0.07249630987644196, -0.037755776196718216, 0.015093302354216576, 0.023231398314237595,
- 0.06394460797309875, 0.05901208147406578, -0.02218746207654476, -0.018582981079816818,
- 0.024730341508984566, -0.0044011445716023445, -0.028093189001083374,
- -0.010343018919229507, 0.18985773622989655, -0.09215770661830902, 0.016830015927553177,
- 0.09196879714727402, -0.08077315986156464, 0.41030585765838623, 0.00847188476473093,
- -0.025622406974434853, -0.041267767548561096, 0.08980906754732132, 0.05452655628323555,
- 0.056772757321596146, 0.04435916244983673, -0.03639151155948639, 0.04559927061200142,
- -0.08899296820163727, -0.019248800352215767, 0.06749453395605087, 0.03187686949968338,
- -0.01580190844833851, 0.037427764385938644, -0.03191576153039932, -0.053990013897418976,
- -0.00756469601765275, -0.02645173855125904, 0.08282116055488586, 0.10134097933769226,
- -0.06312533468008041, 0.023153873160481453, 0.11105652153491974, -0.03936069831252098,
- 0.06734423339366913, -0.04413444176316261, 0.027800774201750755, 0.0014957707608118653,
- 0.051078181713819504, -0.01926600933074951, 0.017291540279984474, -0.0543878935277462,
- 0.028905658051371574, 0.02133841998875141, 0.09737100452184677, 0.03589101880788803,
- -0.017541302368044853, 0.03293997421860695, 0.06907153129577637, -0.07039723545312881,
- -0.05312769114971161, -0.02665039151906967, -0.0647612065076828, -0.05630007013678551,
- -0.010242213495075703, 0.046767327934503555, -0.04311898723244667, -0.16643351316452026,
- -0.0058822655119001865, 0.07564634829759598, -0.03430946543812752, -0.03767788037657738,
- -0.029038408771157265, -0.03499169275164604, 0.04336114600300789, -0.01881428435444832,
- -0.017972491681575775, 0.06326103955507278, 0.03847844526171684, 0.026522943750023842,
- 0.1308836191892624, 0.06643779575824738, -0.05634210631251335, -0.014503808692097664,
- 0.003702837973833084, -0.03371310979127884, 0.1356159895658493, -0.13374775648117065,
- -0.06037304550409317, -0.013127568177878857, -0.021544653922319412, 0.7228193879127502,
- 0.11130507290363312, 0.16668438911437988, -0.0043335664086043835, -0.028160087764263153,
- 0.17204679548740387, 0.018974922597408295, 0.04717700928449631, -0.07083780318498611,
- -0.02359008602797985, 0.022965647280216217, -0.07166320830583572, -0.05388615280389786,
- 0.043068308383226395, 0.026936747133731842, 0.10255398601293564, 0.006227985490113497,
- 0.07661987096071243, 0.01527912262827158, -0.10761289298534393, -0.03886611387133598,
- 0.07835540175437927, 0.012739255093038082, -0.1088080182671547, -0.020591549575328827,
- 0.06674235314130783, 0.08360587060451508, -0.10852150619029999, 0.026219455525279045,
- -0.07880063354969025, 0.05461229383945465, -0.0287617277354002, 0.05566642805933952,
- -0.040134549140930176, 0.052230432629585266, 0.06420483440160751, 0.04795122891664505,
- 0.005025262478739023, -0.12201729416847229, -0.038403306156396866, 0.0812850147485733,
- -0.03659128397703171, -0.017256351187825203, 0.06357841193675995, -0.10389211773872375,
- 0.030200621113181114, 0.003295705420896411, 0.1709427833557129, -0.14047451317310333,
- 0.010668080300092697, -0.019175998866558075, -0.02247629500925541, 0.06385478377342224,
- 0.020120510831475258, -0.06267264485359192, -0.05166913941502571, 0.07517895847558975,
- 0.026678407564759254, 0.08426865190267563, 0.03681925684213638, -0.03796761855483055,
- 0.05435363948345184, 0.10693775862455368, 0.02518179453909397, -0.01918852888047695,
- 0.05755578726530075, 0.0646405890583992, -0.03184448182582855, -0.013324299827218056,
- 0.04776967689394951, 0.0038715696427971125, 0.04428112506866455, 0.016938451677560806,
- 0.022685891017317772, -0.025224732235074043, -0.07002931088209152, 0.03476357460021973,
- 0.041497036814689636, 0.023327575996518135, 0.07783100008964539, -0.06528133898973465,
- -0.037274714559316635, -0.03448052704334259, -0.03400355204939842, 0.005301427561789751,
- -0.03393721953034401, 0.07918255031108856, 0.09992781281471252, 0.07963701337575912,
- 0.029572276398539543, 0.04161710664629936, 0.05401993170380592, 0.03474266454577446,
- 0.0383453443646431, 0.06800445914268494, -0.018142573535442352, -0.04942857474088669,
- -0.012541164644062519, 0.006544354371726513, 0.0370955653488636, 0.001495987642556429,
- -0.06769538670778275, -0.038586556911468506, -0.07477716356515884, -0.04581147059798241,
- -0.07458249479532242, -0.061635177582502365, -0.004250547382980585, 0.05292034149169922,
- -0.051064133644104004, -0.0924396812915802, -0.09015432745218277, 0.011184630915522575,
- 0.07592662423849106, -0.038039419800043106, -0.02615753561258316, -0.11937663704156876,
- 0.024150464683771133, -0.020317982882261276, 0.06071744114160538, -0.022655058652162552,
- 0.01698465831577778, 0.024389389902353287, -0.08511780202388763, 0.043463584035634995,
- -0.013367818668484688, -0.04380018264055252, -0.04427843168377876,
- -0.027096709236502647, -0.05219287797808647, -0.01743071712553501, 0.009226378053426743,
- -0.03714902698993683, 0.03254977613687515, 0.03020383045077324, 0.05759774520993233,
- -0.023551056161522865, -0.06256188452243805, 0.07244992256164551, -0.023333638906478882,
- -0.006867597345262766, 0.09867466986179352, -0.04708404093980789, 0.03292638808488846,
- -0.01789095811545849, -0.08691789954900742, -0.05889863148331642, 0.008656682446599007,
- -0.04467938095331192, 0.033069200813770294, -0.009994322434067726, 0.004165226127952337,
- -0.029022153466939926, -0.01042331475764513, 0.0299216341227293, -0.0522475428879261,
- -0.10768374055624008, -0.08536051213741302, 0.10762462019920349, 0.0091287512332201,
- -0.021183162927627563, 0.015669364482164383, -0.030392298474907875, 0.03875775262713432,
- -0.00766843231394887, 0.017464039847254753, 0.03184277191758156, 0.05976499617099762,
- 0.00857173278927803, 0.022306255996227264, 0.07462760806083679, -0.04030873253941536,
- 0.023630188778042793, 0.05190223455429077, 0.4421502947807312, -0.18817099928855896,
- 0.08508501201868057, 0.0986425057053566, 0.038478028029203415, 0.0477471724152565,
- -0.0628739669919014, 0.0708930641412735, 0.09217012673616409, 0.1358434408903122,
- 0.13762351870536804, -0.05236869677901268, -0.022118162363767624, -0.09374333918094635,
- 0.10440158098936081, -0.01205216534435749, 0.04155224189162254, -0.014208863489329815,
- -0.1067526564002037, -0.01835639216005802, 0.03572875261306763, -0.0469447560608387,
- 0.02839723415672779, -0.000477262947242707, -0.04342695325613022, 0.0017800326459109783,
- -0.011195983737707138, -0.0027361006941646338, -0.021438466385006905,
- 0.03956655040383339, -0.05129004642367363, 0.08882008492946625, 0.0075348918326199055,
- 0.0366353876888752, -0.14529554545879364, 0.006592267192900181, -0.07943154126405716,
- -0.09368705749511719, 0.09333609789609909, -0.002465325640514493, 0.04625195264816284,
- 0.06726787984371185, -0.06420160084962845, 0.044643666595220566, -0.012566729448735714,
- -0.06606940925121307, 0.02730708196759224, 0.06317983567714691, 0.023640869185328484,
- 0.028377139940857887, 0.16014185547828674, -0.04493776336312294, -0.010942989028990269,
- -0.09657766669988632, 0.0743243619799614, 0.15237270295619965, -0.0054568033665418625,
- 0.012012947350740433, 0.019472666084766388, -0.015708567574620247, 0.012791892513632774,
- -0.07065103948116302, -0.06562944501638412, -0.0012929030926898122,
- -0.053171563893556595, 0.08995283395051956, 0.040196146816015244, -0.030941301956772804,
- -0.09998413175344467, -0.0022624125704169273, -0.04911722615361214, 0.01834864728152752,
- 0.0942029133439064, -0.04574563354253769, 0.050686225295066833, -0.014838709495961666,
- 0.009209693409502506, 0.03963693231344223, -0.06569911539554596, 0.014304905198514462,
- -0.049885645508766174, 0.016362717375159264, 0.05469229444861412, 0.04272927716374397,
- -0.04345101863145828, 0.11323758959770203, -0.10205727070569992, 0.06561043113470078,
- 0.004212781321257353, -0.04534721001982689, 0.02027500607073307, -0.011101141571998596,
- 0.031664200127124786, 0.027097919955849648, -0.038781292736530304, 0.012395496480166912,
- -0.02900565229356289, -0.05771912634372711, -0.07372375577688217, -0.09187387675046921,
- -0.016223052516579628, -0.0818304568529129, 0.023141825571656227, -0.12507601082324982,
- -0.02150009386241436, -0.046233825385570526, -0.031342990696430206,
- -0.01942874677479267, 0.02751225233078003, 0.03234715759754181, -0.12556564807891846,
- 0.016454285010695457, -0.03384886682033539, 0.07178248465061188, -0.013776361010968685,
- -0.04912262782454491, 0.00730797927826643, 0.09716808050870895, 0.04894323647022247,
- -0.030118802562355995, -0.009740651585161686, -0.053344275802373886,
- 0.05874931067228317, -0.12932753562927246, -0.34554532170295715, 0.07281836122274399,
- -0.012236989103257656, 0.032057762145996094, 0.007836691103875637, -0.06472606956958771,
- 0.03712473437190056, 0.013911350630223751, -0.05417046323418617, 0.07868971675634384,
- -0.046581778675317764, 0.024284712970256805, -0.029812004417181015,
- -0.09190986305475235, -0.03597913309931755, -0.034003403037786484, -0.06123115494847298,
- 0.049080073833465576, -0.022271282970905304, -0.08604421466588974, -0.1171908900141716,
- 0.02565832808613777, -0.008505446836352348, 0.021910667419433594, 0.020671920850872993,
- 0.02779439650475979, -0.03524288162589073, -0.04047920182347298, 0.04976114258170128,
- 0.0684078112244606, 0.030566755682229996, -0.07861112058162689, -0.004558498039841652,
- 0.05224291980266571, 0.013855786994099617, 0.10449501127004623, 0.015342462807893753,
- 0.0018563660560175776, -0.08738839626312256, 0.09395364671945572, 0.06323015689849854,
- 0.18378585577011108, -0.008621031418442726, -0.009908735752105713, 0.03801785409450531,
- 0.15838603675365448, 0.059526290744543076, 0.012845400720834732, -0.024188775569200516,
- 0.0037687390577048063, 0.04190240055322647, -0.006391607224941254, 0.09824122488498688,
- -0.07006968557834625, -0.008412573486566544, -0.043011609464883804,
- -0.005289285909384489, -0.019407741725444794, -0.029521862044930458,
- 0.21727868914604187, 0.01444204431027174, 0.022597244009375572, 0.027340801432728767,
- -0.06215967237949371, -0.003755287267267704, -0.06354428082704544, -0.083940789103508,
- -0.010725315660238266, -0.031755272299051285, 0.0045990231446921825,
- -0.036212801933288574, -0.11541099846363068, -0.02670324221253395, 0.009104417636990547,
- -0.007063405588269234, 0.12577812373638153, -0.016717825084924698, 0.010688256472349167,
- -0.02927452139556408, 0.1301189363002777, 0.04653843492269516, -0.017839917913079262,
- 0.04900725185871124, 0.09486358612775803, 0.013256519101560116, 0.04016301408410072,
- -0.029241200536489487, -0.09686891734600067, -0.017132392153143883, 0.14254863560199738,
- -0.04546181857585907, 0.09020986407995224, 0.06619881838560104, -0.049640122801065445,
- -0.0753193274140358, 0.023276792839169502, -0.021216152235865593, 0.005380667746067047,
- -0.4456224739551544, -0.028403470292687416, 0.12142731994390488, -0.007251409348100424,
- 0.029287029057741165, 0.07661685347557068, 0.03348027169704437, -0.0560232475399971,
- -0.01936895214021206, -0.099929079413414, 0.13208575546741486, 0.035507284104824066,
- 0.07235801964998245, -0.11110522598028183, 0.036667753010988235, 0.0728568583726883,
- -0.02991405688226223, 0.03304025158286095, 0.069147028028965, -0.2418408840894699,
- 0.001110390410758555, -0.031496189534664154, 0.10761669278144836, 0.019577812403440475,
- 0.025772877037525177, 0.07523150742053986, -0.07000989466905594, 0.010793671011924744,
- 0.0700509250164032, -0.021418416872620583, 0.03241507709026337, -0.02222248539328575,
- -0.019807789474725723, 0.10362014174461365, 0.11377287656068802, 0.06153976917266846,
- -0.005547869484871626, 12.102202415466309, 0.05692416429519653, 0.06765516102313995,
- -0.0948413759469986, -0.001578970463015139, -0.04833045229315758, 0.012691917829215527,
- -0.13493193686008453, 0.0661906749010086, 0.14753754436969757, -0.02410304732620716,
- -0.07593118399381638, -0.037427425384521484, -0.11524689942598343, 0.032514434307813644,
- -0.05047069489955902, -0.06429905444383621, -0.005265408661216497, 0.05119197815656662,
- -0.04874555766582489, -0.021690193563699722, -0.0018107874784618616,
- 0.07157280296087265, -0.0012789773754775524, -0.0445297546684742, -0.009302709251642227,
- 0.033325884491205215, -0.01999986730515957, 0.0002663639315869659, 0.041206054389476776,
- -0.015241891145706177, 0.004348010756075382, 0.056794796139001846,
- -0.013052660040557384, 0.04692849889397621, 0.051260147243738174, 0.0959043800830841,
- 0.05546329915523529, 0.028293907642364502, 0.10980624705553055, 0.023740805685520172,
- 0.04466326907277107, 0.03174680843949318, 0.03641850873827934, 0.06294726580381393,
- 0.06760633736848831, 0.04065375402569771, 0.10704975575208664, 0.024042123928666115,
- 0.07928995788097382, 0.10603342205286026, 0.00806545838713646, 0.12208127230405807,
- -0.007929038256406784, -0.0000754586435505189, 0.03817008435726166,
- 0.020579401403665543, -0.08402567356824875, 0.04779966175556183, 0.035160131752491,
- -0.0570901595056057, 0.13446584343910217, 0.006861989852041006, 0.10945938527584076,
- 0.01315215416252613, 0.0639282837510109, 0.09611288458108902, 0.0628041997551918,
- -0.14964137971401215, -0.07935837656259537, 0.0004398506134748459, -0.10580775886774063,
- -0.08334843814373016, 0.1304274946451187, 0.09222862124443054, -0.05033309757709503,
- 0.04374520108103752, -0.021457813680171967, 0.01181250810623169, -0.023938128724694252,
- -0.015448208898305893, 0.05611478537321091, -0.008017162792384624,
- -0.015834959223866463, 0.067313052713871, 0.024667909368872643, 0.039050448685884476,
- 0.0907452180981636, -0.009737563319504261, -0.11256473511457443, -0.07474791258573532,
- 0.08154651522636414, -0.026441378518939018, -0.06461330503225327, 0.028864340856671333,
- -0.05229470506310463, 0.06444542855024338, -0.16794417798519135, 0.07435691356658936,
- 0.1153489500284195, -0.09273386746644974, -0.02983097918331623, -0.04227280616760254,
- 0.041308287531137466, 0.013322955928742886, 0.05038465932011604, -0.049925997853279114,
- -0.007437469437718391, 0.01652229204773903, 0.04465124383568764, -0.033131133764982224,
- 0.0697794258594513, 0.09851908683776855, -0.065849669277668, -0.004177459049969912,
- 0.06939376890659332, -0.019280696287751198, -0.01586373709142208, 0.055759891867637634,
- 0.056562457233667374, -0.06667478382587433, -0.05053147301077843, -0.028961632400751114,
- -0.02428123727440834, -0.025066209957003593, -0.05388327315449715, 0.008282464928925037,
- 0.06932780146598816, -0.07784053683280945, -0.0017863771645352244, 0.026719486340880394,
- 0.04817390814423561, 0.09030099213123322, -0.04229998216032982, 0.06533251702785492,
- -0.0677846148610115, -0.07581304013729095, 0.0462997630238533, 0.024651195853948593,
- 0.06353592127561569, -0.030710747465491295, -0.049474429339170456, -0.06887587159872055,
- -0.11448220908641815, 0.007736665662378073, 0.0990118682384491, 0.046110477298498154,
- 0.05725906416773796, 0.020090783014893532, -0.08134841918945312, -0.05089491605758667,
- 0.11207645386457443, 0.029104085639119148, -0.017227953299880028, 0.03262723237276077,
- -0.056720949709415436, -0.042138051241636276, 0.11834468692541122,
- -0.041132982820272446, -0.004576374311000109, -0.007253172807395458,
- -0.02118280716240406, 0.1003788560628891, 0.0840870663523674, 0.04608093947172165,
- 0.05814574286341667, 0.06408236175775528, -0.013860744424164295, 0.02511390671133995,
- -0.01992175355553627, 0.04243132844567299, -0.02249964140355587, -0.08219926059246063,
- -0.08093304932117462, 0.03279072046279907, 0.1072336807847023, 0.036964237689971924,
- -0.06061241403222084, -0.022236300632357597, -0.05641582980751991
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 11,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 40,
- "similarity": 0.9996532797813416
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 54,
- "similarity": 0.9994363784790039
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 49,
- "similarity": 0.9990864396095276
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Jeff Larson", "Surya Mattu", "Lauren Kirchner", "Julia Angwin"],
- "epoch_date_downloaded": 1604534400,
- "epoch_date_modified": 1607299200,
- "epoch_date_submitted": 1607299200,
- "flag": null,
- "report_number": 1373,
- "source_domain": "propublica.org",
- "submitters": ["Roman Lutz", "CSET annotators"],
- "title": "How We Analyzed the COMPAS Recidivism Algorithm",
- "url": "https://www.propublica.org/article/how-we-analyzed-the-compas-recidivism-algorithm"
- },
- {
- "__typename": "Report",
- "authors": ["Karen Hao", "Jonathan Stray"],
- "epoch_date_downloaded": 1604534400,
- "epoch_date_modified": 1607299200,
- "epoch_date_submitted": 1607299200,
- "flag": null,
- "report_number": 1372,
- "source_domain": "technologyreview.com",
- "submitters": ["Roman Lutz", "CSET annotators"],
- "title": "Can you make AI fairer than a judge? Play our courtroom algorithm game",
- "url": "https://www.technologyreview.com/2019/10/17/75285/ai-fairer-than-judge-criminal-risk-assessment-algorithm/"
- },
- {
- "__typename": "Report",
- "authors": ["Ben Sullivan"],
- "epoch_date_downloaded": 1605312000,
- "epoch_date_modified": 1607299200,
- "epoch_date_submitted": 1607299200,
- "flag": null,
- "report_number": 1371,
- "source_domain": "vice.com",
- "submitters": ["AIAAIC", "Thomas Giallella (CSET)"],
- "title": "A New Program Judges If You’re a Criminal From Your Facial Features",
- "url": "https://www.vice.com/en/article/d7ykmw/new-program-decides-criminality-from-facial-features"
- },
- {
- "__typename": "Report",
- "authors": ["Rashida Richardson"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 41,
- "source_domain": "aclu.org",
- "submitters": ["Roman Yampolskiy"],
- "title": "New York City Takes on Algorithmic Discrimination",
- "url": "https://www.aclu.org/blog/privacy-technology/surveillance-technologies/new-york-city-takes-algorithmic-discrimination"
- },
- {
- "__typename": "Report",
- "authors": ["Tafari Mbadiwe"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 40,
- "source_domain": "thenewatlantis.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Algorithmic Injustice",
- "url": "https://www.thenewatlantis.com/publications/algorithmic-injustice"
- },
- {
- "__typename": "Report",
- "authors": ["Kelly McEvers", "Audie Cornish", "Julia Angwin"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 39,
- "source_domain": "npr.org",
- "submitters": ["Roman Yampolskiy"],
- "title": "The Hidden Discrimination In Criminal Risk-Assessment Scores",
- "url": "https://www.npr.org/2016/05/24/479349654/the-hidden-discrimination-in-criminal-risk-assessment-scores"
- },
- {
- "__typename": "Report",
- "authors": ["Nikki Williams"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 38,
- "source_domain": "digitalethics.org",
- "submitters": ["Roman Yampolskiy"],
- "title": "Sentence by Numbers: The Scary Truth Behind Risk Assessment Algorithms",
- "url": "https://www.digitalethics.org/essays/sentence-numbers-scary-truth-behind-risk-assessment-algorithms"
- },
- {
- "__typename": "Report",
- "authors": ["Jennifer L. Doleac", "Megan Stevenson"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 37,
- "source_domain": "brookings.edu",
- "submitters": ["Roman Yampolskiy"],
- "title": "Are criminal risk assessment scores racist?",
- "url": "https://www.brookings.edu/blog/up-front/2016/08/22/are-criminal-risk-assessment-scores-racist/"
- },
- {
- "__typename": "Report",
- "authors": ["Privacy International"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 36,
- "source_domain": "privacyinternational.org",
- "submitters": ["Roman Yampolskiy"],
- "title": "ProPublica analysis finds bias in COMPAS criminal justice risk scoring system",
- "url": "https://privacyinternational.org/examples/1801/propublica-analysis-finds-bias-compas-criminal-justice-risk-scoring-system"
- },
- {
- "__typename": "Report",
- "authors": ["Ed Yong"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 35,
- "source_domain": "theatlantic.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "A Popular Algorithm Is No Better at Predicting Crimes Than Random People",
- "url": "https://www.theatlantic.com/technology/archive/2018/01/equivant-compas-algorithm/550646/"
- },
- {
- "__typename": "Report",
- "authors": ["John Naughton"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 33,
- "source_domain": "theguardian.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Even algorithms are biased against black men",
- "url": "https://www.theguardian.com/commentisfree/2016/jun/26/algorithms-racial-bias-offenders-florida"
- },
- {
- "__typename": "Report",
- "authors": ["Brian Resnick"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 32,
- "source_domain": "vox.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Yes, artificial intelligence can be racist",
- "url": "https://www.vox.com/science-and-health/2019/1/23/18194717/alexandria-ocasio-cortez-ai-bias"
- },
- {
- "__typename": "Report",
- "authors": ["Jack Smith Iv"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 31,
- "source_domain": "mic.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "U.S. Courts Are Using Algorithms Riddled With Racism to Hand Out Sentences",
- "url": "https://mic.com/articles/144084/propublica-courts-use-a-racially-biased-formula-to-predict-future-criminals#.B9eK1ndTR"
- },
- {
- "__typename": "Report",
- "authors": ["Chuck Dinerstein"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 30,
- "source_domain": "acsh.org",
- "submitters": ["Roman Yampolskiy"],
- "title": "ProPublica Is Wrong In Charging Racial Bias In An Algorithm",
- "url": "https://www.acsh.org/news/2018/01/17/propublica-wrong-charging-racial-bias-algorithm-12427"
- },
- {
- "__typename": "Report",
- "authors": ["Julia Angwin", "Jeff Larson", "Surya Mattu", "Lauren Kirchner"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 29,
- "source_domain": "propublica.org",
- "submitters": ["Roman Yampolskiy"],
- "title": "Machine Bias - ProPublica",
- "url": "https://www.propublica.org/article/machine-bias-risk-assessments-in-criminal-sentencing"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "microsoft-research",
- "name": "Microsoft Research"
- },
- {
- "__typename": "Entity",
- "entity_id": "boston-university",
- "name": "Boston University"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "microsoft-research",
- "name": "Microsoft Research"
- },
- {
- "__typename": "Entity",
- "entity_id": "google",
- "name": "Google"
- },
- {
- "__typename": "Entity",
- "entity_id": "boston-university",
- "name": "Boston University"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "women",
- "name": "Women"
- },
- {
- "__typename": "Entity",
- "entity_id": "minority-groups",
- "name": "Minority Groups"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [42],
- "vector": [
- -0.009824884124100208, 0.11814969033002853, -0.010753804817795753, -0.0541902594268322,
- 0.08629671484231949, -0.021357253193855286, 0.004239959642291069, 0.08944444358348846,
- 0.07985533773899078, -0.10837796330451965, -0.08853011578321457, 0.01550666056573391,
- 0.01587929204106331, -0.09572742134332657, 0.012334301136434078, -0.09872188419103622,
- -0.12456364929676056, -0.010383441112935543, -0.028100019320845604,
- -0.09220030903816223, -0.13643421232700348, 0.022538624703884125, -0.018806586042046547,
- 0.07435420155525208, -0.03439102694392204, 0.05378744751214981, 0.16322961449623108,
- 0.08291955292224884, -0.07468928396701813, 0.10147975385189056, -0.006564434617757797,
- -0.03942331299185753, 0.15316429734230042, 0.026380201801657677, 0.005389012861996889,
- 0.06565302610397339, 0.026827115565538406, 0.017755836248397827, 0.04043406620621681,
- 0.04627165198326111, 0.055458132177591324, 0.286598265171051, -0.06045382097363472,
- -0.015856115147471428, 0.0035812598653137684, -0.05130279064178467,
- 0.003139987587928772, 0.03080405667424202, 0.014169285073876381, 0.046275362372398376,
- 0.01584264636039734, -0.003795584663748741, -0.04530514031648636, 0.008166608400642872,
- -0.08560536801815033, 0.04719041287899017, 0.06320450454950333, -0.01325751468539238,
- 0.05079163983464241, -0.14171546697616577, -0.04278614744544029, -0.24740126729011536,
- -0.03115120157599449, -0.11511589586734772, 0.11868792027235031, -0.05585900694131851,
- -0.02822013385593891, 0.017929324880242348, -0.013626553118228912, 0.041184715926647186,
- 0.09149032831192017, -0.054528385400772095, -0.03514707088470459, 0.048274148255586624,
- -0.003202092135325074, -0.02176990918815136, -0.03865877538919449, 0.09997766464948654,
- -0.11566697806119919, 0.052664484828710556, 0.0721094012260437, -0.07584553956985474,
- 0.31689250469207764, 0.01769426092505455, -0.06743455678224564, -0.03901726379990578,
- 0.12020085006952286, -0.0061604599468410015, 0.03786083683371544, 0.04316601902246475,
- -0.06137809157371521, 0.03548094630241394, -0.13241678476333618, -0.018318984657526016,
- 0.046819206327199936, 0.05763512849807739, -0.03674023598432541, -0.07496324181556702,
- -0.036789048463106155, -0.0961989313364029, 0.012139526195824146, -0.05740680918097496,
- 0.12446453422307968, 0.0618412159383297, -0.0735095888376236, 0.03951957821846008,
- 0.08807504922151566, -0.01056583970785141, 0.027889927849173546, -0.04273171350359917,
- 0.017839211970567703, -0.0031354890670627356, 0.09706996381282806, 0.00907786563038826,
- -0.013331137597560883, -0.03727549687027931, 0.02635941095650196, 0.05583147332072258,
- 0.07613365352153778, 0.09910640120506287, -0.03305165097117424, 0.04608301445841789,
- 0.08173810690641403, -0.07209586352109909, -0.10035834461450577, -0.06291083991527557,
- -0.010426202788949013, -0.026203200221061707, -0.03940334916114807, 0.04920933395624161,
- -0.024517439305782318, -0.1586260199546814, -0.04579269513487816, 0.04866267740726471,
- -0.06779313832521439, -0.015624606050550938, -0.016951415687799454,
- -0.05550293251872063, 0.019895827397704124, -0.036974258720874786, 0.008046997711062431,
- 0.05357362702488899, -0.05012546479701996, 0.0005932610365562141, 0.07610628008842468,
- 0.08072002977132797, -0.05160605162382126, -0.042407143861055374, 0.009350243955850601,
- -0.056414999067783356, 0.1273527443408966, -0.05973382294178009, -0.04763691499829292,
- -0.04229426011443138, 0.021486937999725342, 0.8129945397377014, 0.07983048260211945,
- 0.22260643541812897, 0.01701902411878109, -0.04729709401726723, 0.18588964641094208,
- 0.06001747399568558, 0.07277290523052216, -0.04502563551068306, -0.023810988292098045,
- -0.00017984627629630268, -0.06126556918025017, -0.12249413877725601,
- 0.002150975400581956, 0.04900960624217987, 0.06382513791322708, 0.059906005859375,
- 0.06837876886129379, -0.01813049614429474, -0.1142849549651146, -0.01739228144288063,
- 0.08929260820150375, 0.03617322817444801, -0.0957593098282814, -0.025981450453400612,
- 0.05990728363394737, 0.07316864281892776, -0.08565152436494827, -0.03524385392665863,
- -0.06105423346161842, 0.0839710533618927, -0.008400107733905315, 0.11665819585323334,
- -0.03543215990066528, 0.10793769359588623, 0.0544198639690876, 0.017654825001955032,
- -0.0263376384973526, -0.09057975560426712, -0.018302926793694496, 0.08513610064983368,
- -0.02009587362408638, -0.03413255140185356, 0.037363119423389435, -0.09960585087537766,
- 0.05122993886470795, -0.047835540026426315, 0.18392710387706757, -0.15798309445381165,
- 0.03236212953925133, -0.043842412531375885, 0.008670947514474392, 0.040629319846630096,
- 0.029914291575551033, -0.0697808787226677, -0.007816513068974018, 0.09841796010732651,
- 0.00998419988900423, 0.07561206817626953, 0.021356109529733658, 0.0047831544652581215,
- 0.07827352732419968, 0.1602775752544403, 0.028769904747605324, -0.026586968451738358,
- 0.06821618229150772, 0.054154399782419205, -0.06109890714287758, -0.023618124425411224,
- 0.04793429374694824, -0.04005047306418419, -0.010309988632798195, -0.004227972589433193,
- 0.060986582189798355, 0.003174535697326064, -0.05627511069178581, 0.05997803807258606,
- 0.073630191385746, 0.05986204743385315, 0.09086761623620987, -0.035371631383895874,
- -0.0391220822930336, -0.026185357943177223, -0.07487261295318604, 0.04839867353439331,
- -0.04328123852610588, 0.0838342010974884, 0.10742227733135223, 0.07012475281953812,
- 0.03471042215824127, 0.02344144508242607, 0.05549339950084686, -0.02136852964758873,
- 0.0018326661083847284, 0.07347016781568527, -0.052195895463228226, -0.05689862743020058,
- -0.017467975616455078, -0.003160127904266119, 0.046403668820858, -0.03967432305216789,
- -0.0504172183573246, -0.011653670109808445, -0.05619988963007927, -0.058735255151987076,
- -0.07846791297197342, -0.06076488643884659, -0.00010819414455909282, 0.0452769435942173,
- -0.03987925499677658, -0.047891829162836075, -0.06055749952793121, -0.02172905206680298,
- 0.07412967830896378, -0.049861591309309006, -0.014331039972603321, -0.1186918318271637,
- -0.023439602926373482, -0.033693309873342514, 0.041660238057374954,
- 0.016649551689624786, 0.009642970748245716, 0.027705194428563118, -0.08706871420145035,
- 0.023634858429431915, -0.03696252405643463, -0.09343405812978745, -0.021864136680960655,
- -0.04384705051779747, 0.010498174466192722, -0.033857833594083786, 0.017432939261198044,
- -0.05257200822234154, -0.005313747562468052, 0.0664493590593338, 0.07144501805305481,
- -0.06221315264701843, -0.08860930055379868, 0.029581280425190926, 0.002992816036567092,
- -0.02942267805337906, 0.09758400917053223, -0.05948000028729439, 0.05995079129934311,
- -0.025901438668370247, -0.13618874549865723, -0.044325314462184906,
- -0.006475470028817654, -0.004834441468119621, -0.010256568901240826,
- 0.016668498516082764, -0.021716024726629257, -0.01957044191658497,
- -0.0014365927781909704, 0.005900494288653135, -0.04152563214302063,
- -0.12885858118534088, -0.12040302902460098, 0.11507052183151245, -0.008224856108427048,
- -0.02744450978934765, 0.05036548897624016, 0.005642968229949474, 0.054792750626802444,
- -0.019671302288770676, -0.01585470326244831, 0.07226552814245224, 0.07559357583522797,
- 0.03511812910437584, 0.047360364347696304, 0.07146630436182022, -0.028775420039892197,
- 0.04934906214475632, 0.08112451434135437, 0.4872371256351471, -0.10894546657800674,
- 0.017959948629140854, 0.13549242913722992, 0.00499868206679821, 0.04253489524126053,
- -0.05507376417517662, 0.10016697645187378, 0.11193849891424179, 0.1378108263015747,
- 0.1680864542722702, -0.004573526792228222, 0.02345612458884716, -0.06845005601644516,
- 0.08040037006139755, -0.01644492708146572, 0.05519953742623329, -0.0016717214602977037,
- -0.07841113209724426, -0.01703488454222679, 0.019437139853835106,
- -0.0002679342869669199, 0.04670402407646179, -0.05377145856618881,
- -0.013984705321490765, 0.015033951960504055, -0.006229354068636894,
- -0.037202514708042145, -0.016015585511922836, 0.03893209993839264,
- -0.008264245465397835, 0.08414826542139053, 0.055240653455257416,
- -0.0013339408906176686, -0.12454049289226532, 0.01569456048309803, -0.02881905622780323,
- -0.1060384139418602, 0.0934285968542099, -0.013029555790126324, 0.04315369576215744,
- 0.07992636412382126, -0.05571981146931648, 0.07230677455663681, 0.024430910125374794,
- -0.02922189235687256, 0.0195256806910038, 0.029362039640545845, -0.016192713752388954,
- -0.010297815315425396, 0.137188121676445, -0.032678913325071335, 0.02785361185669899,
- -0.12498239427804947, 0.06652932614088058, 0.1580406129360199, 0.01719658449292183,
- 0.0031430574599653482, 0.0019919134210795164, -0.014132548123598099,
- 0.009748152457177639, -0.019872281700372696, -0.10018331557512283, -0.03487750142812729,
- -0.07574062794446945, 0.12021492421627045, 0.040268752723932266, 0.006635970436036587,
- -0.1400240659713745, 0.004156710114330053, -0.03011716715991497, 0.06419315934181213,
- 0.0703691840171814, -0.058711037039756775, 0.11571754515171051, 0.008245492354035378,
- 0.017555320635437965, 0.041675783693790436, -0.10213044285774231, 0.00931798666715622,
- -0.040072325617074966, 0.03835109621286392, 0.04054807871580124, 0.051960136741399765,
- -0.023673027753829956, 0.15933535993099213, -0.09888136386871338, 0.08886715024709702,
- 0.01480267383158207, -0.05207829177379608, -0.01881035789847374, -0.03298932686448097,
- 0.051997534930706024, -0.02351386472582817, -0.039551761001348495,
- -0.022082900628447533, -0.029905658215284348, -0.04549108073115349,
- -0.05021646246314049, -0.1368575096130371, 0.029552403837442398, -0.08077865839004517,
- 0.07482441514730453, -0.07717560976743698, -0.006585287861526012, -0.05551529303193092,
- -0.039495453238487244, -0.008457865566015244, -0.01786177232861519,
- 0.011994535103440285, -0.14911745488643646, 0.014446694403886795, 0.018320871517062187,
- 0.035908401012420654, -0.026521863415837288, -0.0733761116862297, -0.029806746169924736,
- 0.036406490951776505, 0.026480065658688545, -0.0027715791948139668,
- -0.03429000452160835, -0.08425772190093994, 0.031373996287584305, -0.1210743710398674,
- -0.1477712243795395, 0.053749144077301025, 0.0471404530107975, 0.039531536400318146,
- 0.01149298157542944, -0.07977388799190521, 0.01111647393554449, 0.001079412060789764,
- -0.0221256073564291, 0.0776396095752716, -0.07660864293575287, 0.002461302326992154,
- -0.08835157006978989, -0.14481016993522644, -0.018414605408906937,
- -0.042218856513500214, -0.057345304638147354, 0.055354755371809006,
- -0.053331390023231506, -0.08888450264930725, -0.11838099360466003, 0.04858861118555069,
- -0.04111657291650772, 0.0025239877868443727, -0.0008865167037583888,
- 0.034956589341163635, -0.05292400345206261, -0.07882863283157349, 0.02969176135957241,
- 0.10029788315296173, 0.035236798226833344, -0.11894761025905609, 0.0008127411128953099,
- 0.10980404168367386, 0.06366225332021713, 0.10202992707490921, -0.011407795362174511,
- -0.0201815664768219, -0.059416621923446655, 0.10598333179950714, 0.050543904304504395,
- 0.1830819696187973, -0.0038563536945730448, -0.08415112644433975, 0.05283481255173683,
- 0.08427724242210388, 0.08737426996231079, -0.00036499681300483644, -0.0453793928027153,
- -0.0523308701813221, 0.029189256951212883, -0.013040035963058472, 0.0995149165391922,
- -0.044087495654821396, -0.02574542909860611, -0.029925039038062096,
- 0.023567041382193565, -0.08094504475593567, -0.04607510566711426, 0.24698111414909363,
- 0.004424962680786848, 0.03697320073843002, 0.03659657761454582, -0.052125874906778336,
- -0.0093650808557868, -0.07647346705198288, -0.0608597993850708, -0.012882486917078495,
- -0.03863854706287384, -0.008884879760444164, -0.04887250438332558, -0.09398066252470016,
- -0.019792070612311363, -0.005595481488853693, 0.011688376776874065, 0.1557094156742096,
- -0.01503349095582962, -0.016813626512885094, -0.029499579221010208, 0.1461172103881836,
- 0.05634251609444618, -0.029454242438077927, 0.05294755473732948, 0.09147074818611145,
- -0.024249672889709473, 0.03837376460433006, -0.014251855202019215,
- -0.040615666657686234, -0.05069117248058319, 0.16536647081375122, -0.026053404435515404,
- 0.052701547741889954, 0.04817083850502968, -0.014490020461380482, -0.08593957871198654,
- 0.023057183250784874, -0.059205636382102966, 0.012689365074038506, -0.4020475149154663,
- -0.041260477155447006, 0.110524982213974, 0.028183607384562492, 0.0051840669475495815,
- 0.07837674766778946, 0.041423339396715164, -0.07593563944101334, 0.00886565912514925,
- -0.11001930385828018, 0.13577768206596375, 0.02064199559390545, 0.0521465428173542,
- 0.014229037798941135, -0.021743401885032654, 0.07965148985385895, -0.033810269087553024,
- 0.05662860721349716, 0.0695735439658165, -0.2560040354728699, -0.0047375839203596115,
- -0.0604662261903286, 0.05139271169900894, -0.031075213104486465, 0.05586317554116249,
- 0.06436081975698471, -0.08014146238565445, 0.04317551851272583, 0.06588363647460938,
- -0.03256877511739731, 0.02205386385321617, -0.00037328715552575886,
- -0.0029883100651204586, 0.10447502881288528, 0.13035883009433746, 0.05560837686061859,
- -0.002198768313974142, 12.152301788330078, -0.0031514738220721483, 0.0149290906265378,
- -0.08531524240970612, -0.04452245682477951, -0.06918215751647949, 0.015566636808216572,
- -0.11326083540916443, 0.05510295182466507, 0.1603657752275467, 0.0001124492846429348,
- -0.0759226381778717, -0.007193278055638075, -0.10849854350090027, 0.04004554823040962,
- -0.030691232532262802, -0.10110381990671158, -0.035471949726343155, 0.00817826297134161,
- -0.08859800547361374, -0.018804343417286873, 0.06685806810855865, 0.1442307084798813,
- -0.008060869760811329, -0.01169293187558651, -0.03909272328019142,
- -0.011859187856316566, -0.046861834824085236, 0.007133043836802244,
- 0.056118350476026535, -0.030206041410565376, 0.002877680119127035, 0.10751324146986008,
- -0.034658998250961304, 0.0778881311416626, 0.04938530549407005, 0.06181655079126358,
- 0.06759477406740189, 0.008389078080654144, 0.04204491898417473, 0.007180194370448589,
- 0.03665057197213173, 0.0795893594622612, 0.021257948130369186, 0.07315466552972794,
- 0.07288909703493118, 0.05570575222373009, 0.10368908196687698, 0.04380961135029793,
- 0.06783019751310349, 0.09636495262384415, 0.023578882217407227, 0.14406104385852814,
- -0.019462935626506805, -0.02849298156797886, 0.027806967496871948, 0.02188948355615139,
- -0.11185072362422943, 0.07781166583299637, 0.034646350890398026, -0.10984018445014954,
- 0.17198504507541656, 0.02556898072361946, 0.09136583656072617, 0.007793464697897434,
- 0.015436050482094288, 0.07866309583187103, 0.014080757275223732, -0.17655330896377563,
- -0.10981810837984085, 0.04075715318322182, -0.12331625074148178, -0.08969244360923767,
- 0.13311420381069183, 0.09001588821411133, -0.0668199360370636, 0.11758342385292053,
- -0.05267307907342911, -0.0148391118273139, -0.038166552782058716, 0.004722638987004757,
- 0.020701635628938675, 0.0007155394414439797, -0.013191848993301392, 0.03425712510943413,
- 0.045485544949769974, 0.0020835234317928553, 0.09746361523866653, -0.023534288629889488,
- -0.057590190321207047, -0.049917303025722504, 0.10467809438705444, -0.03177664428949356,
- -0.06859266757965088, 0.08265668153762817, -0.08256217837333679, 0.036531683057546616,
- -0.1522705852985382, 0.050126053392887115, 0.12239742279052734, -0.10158877819776535,
- -0.012362620793282986, -0.09144606441259384, 0.04077167063951492, 0.02441650815308094,
- 0.033570680767297745, -0.03575791418552399, -0.017737315967679024, 0.03681768849492073,
- 0.021190278232097626, -0.008890628814697266, 0.06698790937662125, 0.07449793070554733,
- -0.03847464919090271, 0.003477649763226509, 0.02922019734978676, -0.0017461408860981464,
- -0.00975003931671381, 0.03367779776453972, 0.0719057098031044, -0.05822958052158356,
- -0.03936847671866417, -0.023361701518297195, -0.02781311608850956, -0.03953143581748009,
- 0.01981355994939804, 0.004597363527864218, 0.08682676404714584, -0.062254004180431366,
- 0.02230987884104252, 0.036304205656051636, 0.06894245743751526, 0.0814463421702385,
- -0.06191391125321388, 0.07310083508491516, -0.03481070324778557, -0.0208571869879961,
- 0.017018862068653107, 0.02460586652159691, 0.04959644004702568, -0.06347128003835678,
- -0.05898968130350113, -0.15831348299980164, -0.135291188955307, 0.07375987619161606,
- 0.11957160383462906, 0.09258915483951569, 0.07356860488653183, 0.018499821424484253,
- -0.05617867782711983, -0.07093656808137894, 0.11510875076055527, 0.049998119473457336,
- -0.021435296162962914, 0.06972017139196396, -0.04573914408683777, -0.029857467859983444,
- 0.10754960030317307, -0.03888990730047226, -0.0060898843221366405, 0.03196281939744949,
- -0.052320756018161774, 0.10164452344179153, 0.18170395493507385, 0.045982036739587784,
- 0.05598064512014389, 0.025338776409626007, -0.028481589630246162, 0.05560722202062607,
- -0.0398157462477684, 0.05151843652129173, -0.05701665207743645, -0.08110897988080978,
- -0.09520523995161057, 0.05390689894556999, 0.15462909638881683, 0.07484786212444305,
- -0.041195981204509735, -0.011360447853803635, -0.02322305738925934
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 12,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 59,
- "similarity": 0.9984645247459412
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 102,
- "similarity": 0.9980642795562744
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 13,
- "similarity": 0.9978631138801575
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": [
- "Tolga Bolukbasi",
- "Kai-Wei Chang",
- "James Zou",
- "Venkatesh Saligrama",
- "Adam Kalai"
- ],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 42,
- "source_domain": "arxiv.org",
- "submitters": ["Catherine Olsson"],
- "title": "Man is to Computer Programmer as Woman is to Homemaker? Debiasing Word Embeddings",
- "url": "https://arxiv.org/abs/1607.06520"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "google",
- "name": "Google"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "google",
- "name": "Google"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "women",
- "name": "Women"
- },
- {
- "__typename": "Entity",
- "entity_id": "minority-groups",
- "name": "Minority Groups"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1415, 1414, 49, 48, 47, 46, 45, 44, 43],
- "vector": [
- -0.05272473022341728, 0.06977222859859467, 0.0038558158557862043, -0.09948118776082993,
- 0.07379695773124695, -0.016177836805582047, 0.005715823266655207, 0.057473354041576385,
- 0.06978234648704529, -0.1422828584909439, -0.02615007385611534, 0.017237432301044464,
- 0.01740160770714283, -0.05848430097103119, 0.050299257040023804, -0.08481940627098083,
- -0.09215177595615387, -0.034851476550102234, 0.005186694208532572, -0.1404513716697693,
- -0.07372979819774628, -0.01096381340175867, 0.0001819384197006002, 0.07641997933387756,
- -0.026424823328852654, 0.03701035678386688, 0.12152077257633209, 0.10508625954389572,
- -0.059354059398174286, 0.03505353257060051, -0.028294513002038002, -0.09018049389123917,
- 0.13017086684703827, 0.017735784873366356, 0.01094077993184328, 0.0852154940366745,
- 0.025076022371649742, -0.015997495502233505, -0.009862435981631279,
- -0.01804673671722412, 0.05264990031719208, 0.26364433765411377, -0.011874334886670113,
- -0.026032987982034683, 0.04389336332678795, -0.03868317976593971, -0.02113635092973709,
- 0.04549381509423256, 0.006918606348335743, 0.033503491431474686, -0.008474786765873432,
- 0.013058926910161972, -0.034001674503088, 0.0282293688505888, -0.09149301052093506,
- 0.06759071350097656, 0.057333383709192276, -0.007149399258196354, 0.04467125982046127,
- -0.10129676759243011, -0.03829944133758545, -0.20440270006656647, -0.042356934398412704,
- -0.09480282664299011, 0.09247338771820068, -0.07398871332406998, -0.03179524838924408,
- 0.032350119203329086, 0.012889908626675606, 0.06696483492851257, 0.04611930623650551,
- -0.04133931174874306, -0.0494072288274765, 0.041875261813402176, -0.02485213801264763,
- -0.04450233653187752, -0.020037982612848282, 0.18085290491580963, -0.06916689872741699,
- 0.017403341829776764, 0.09380583465099335, -0.11001686751842499, 0.3805004358291626,
- 0.026145799085497856, -0.02559085004031658, -0.01533369068056345, 0.0891803726553917,
- 0.027862748131155968, 0.024802174419164658, 0.034610554575920105, -0.009816640987992287,
- 0.05368605628609657, -0.07056146115064621, -0.03546805679798126, 0.05084959790110588,
- 0.032079365104436874, -0.011218449100852013, -0.03856708109378815,
- -0.013307011686265469, -0.05931107699871063, -0.03461262583732605,
- -0.006696509663015604, 0.11611711978912354, 0.08902964740991592, -0.03967960178852081,
- 0.009959766641259193, 0.07068905979394913, -0.040982265025377274, 0.04144878685474396,
- -0.05625148117542267, 0.031010905280709267, -0.03157632052898407, 0.06602121144533157,
- -0.004303520079702139, 0.03131254389882088, -0.04901447892189026, 0.012970115058124065,
- 0.043366722762584686, 0.07721659541130066, 0.06569267809391022, -0.020924706012010574,
- 0.051918428391218185, 0.0511447973549366, -0.0501430407166481, -0.08141308277845383,
- -0.019290102645754814, -0.042025040835142136, -0.016913441941142082,
- -0.03953452780842781, 0.04894184321165085, -0.05247358977794647, -0.2090085744857788,
- 0.010454324074089527, 0.08387327939271927, -0.05712081491947174, -0.024366125464439392,
- 0.012675972655415535, -0.07334576547145844, 0.03529471531510353, -0.017615342512726784,
- 0.004079977981746197, 0.042630597949028015, 0.011082369834184647, 0.0258942861109972,
- 0.0956382229924202, 0.052965063601732254, -0.04250340163707733, -0.07167176157236099,
- 0.005608465988188982, -0.0425332747399807, 0.1277945190668106, -0.120212621986866,
- -0.04820326343178749, -0.03749116137623787, -0.009127050638198853, 0.732806384563446,
- 0.1195923388004303, 0.20555295050144196, 0.007610435131937265, -0.03643103316426277,
- 0.1550830900669098, 0.019585125148296356, 0.04714013263583183, -0.07671415060758591,
- -0.035420630127191544, 0.018817968666553497, -0.08470522612333298,
- -0.056554973125457764, 0.008675367571413517, 0.02277369238436222, 0.09035304188728333,
- 0.022580496966838837, 0.07621926814317703, 0.01588195189833641, -0.1142885684967041,
- -0.033800944685935974, 0.07412252575159073, 0.013815918006002903, -0.1436813622713089,
- -0.031656280159950256, 0.05692864954471588, 0.08987695723772049, -0.08408913761377335,
- 0.005901109427213669, -0.05598386749625206, 0.04819387570023537, -0.014655617997050285,
- 0.060922734439373016, -0.04561622440814972, 0.0751279667019844, 0.041982293128967285,
- 0.04983651265501976, -0.026867302134633064, -0.10003915429115295, -0.02857232838869095,
- 0.08336291462182999, -0.028223177418112755, -0.038188476115465164, 0.07774008810520172,
- -0.08345038443803787, 0.034280672669410706, -0.002001308836042881, 0.15503379702568054,
- -0.13128340244293213, 0.010115671902894974, -0.005711289122700691, -0.03175758942961693,
- 0.0373460128903389, -0.009858952835202217, -0.0646442100405693, -0.05512324348092079,
- 0.10583648085594177, 0.018135404214262962, 0.04416859894990921, 0.05378985032439232,
- -0.02938542142510414, 0.046826109290122986, 0.07578660547733307, 0.014815875329077244,
- -0.04083146154880524, 0.057757455855607986, 0.03383238986134529, -0.058896806091070175,
- -0.05450992286205292, 0.027756916359066963, 0.023969369009137154, 0.037126120179891586,
- -0.001957900123670697, 0.06962375342845917, -0.004961072467267513, -0.05280457064509392,
- 0.04933031275868416, 0.0805991068482399, 0.029736293479800224, 0.09607215225696564,
- -0.06257466971874237, -0.033273372799158096, -0.041111234575510025,
- -0.03211883082985878, 0.031130949035286903, -0.00866900384426117, 0.08538451790809631,
- 0.11845077574253082, 0.0945640578866005, 0.013750794343650341, 0.03729910030961037,
- 0.04910603538155556, 0.020836669951677322, 0.007555770222097635, 0.07982335984706879,
- -0.017666054889559746, -0.051389679312705994, -0.009423728100955486,
- -0.009040678851306438, 0.0172226931899786, -0.0063713970594108105, -0.05553797259926796,
- -0.022005340084433556, -0.06004243344068527, -0.036348383873701096,
- -0.10022833943367004, -0.06162204220890999, 0.050898339599370956, 0.04998975619673729,
- -0.05225960910320282, -0.07269774377346039, -0.07147706300020218, 0.0045180912129580975,
- 0.10451985150575638, -0.024603355675935745, -0.04270249232649803, -0.1151256412267685,
- 0.01546091865748167, -0.02450154535472393, 0.059845320880413055, -0.012705384753644466,
- -0.014433039352297783, 0.015582844614982605, -0.060558121651411057,
- 0.017290374264121056, -0.00189846137072891, -0.02876288630068302, -0.021613065153360367,
- -0.049152031540870667, -0.04761726036667824, 0.013540934771299362, 0.006777848582714796,
- -0.03594350442290306, 0.012972382828593254, 0.02720298059284687, 0.04515642672777176,
- -0.021319342777132988, -0.0675307959318161, 0.05781276524066925, -0.024020854383707047,
- -0.009670447558164597, 0.07884283363819122, -0.04342556372284889, 0.047011639922857285,
- -0.007373826578259468, -0.0826248824596405, -0.052519623190164566, 0.021338511258363724,
- -0.02881550043821335, 0.03597862645983696, -0.006562691647559404, 0.015848884359002113,
- -0.053841546177864075, 0.003263177117332816, 0.07919338345527649, -0.040667686611413956,
- -0.09905733168125153, -0.08053583651781082, 0.13116058707237244, 0.004640248138457537,
- -0.011085434816777706, -0.003021606244146824, -0.053431540727615356, 0.0460064560174942,
- -0.015047488734126091, 0.005671968683600426, 0.012632853351533413, 0.0709468275308609,
- 0.01448402926325798, 0.03982106223702431, 0.0725344642996788, -0.03436509147286415,
- 0.03332839906215668, 0.09307301789522171, 0.43908655643463135, -0.1692691445350647,
- 0.09122886508703232, 0.09814275801181793, 0.014008656144142151, 0.029436670243740082,
- -0.06598313897848129, 0.08650172501802444, 0.08532971888780594, 0.12464359402656555,
- 0.12619347870349884, -0.05065202713012695, 0.020557262003421783, -0.06954262405633926,
- 0.09802273660898209, 0.005897178314626217, 0.020376963540911674, -0.01785450242459774,
- -0.06323161721229553, -0.0128124775364995, 0.03892691433429718, -0.04790932685136795,
- 0.018955687060952187, -0.025952698662877083, -0.06018368527293205, 0.017571480944752693,
- 0.024740807712078094, 0.03878049552440643, -0.040243618190288544, 0.04913639649748802,
- -0.011148993857204914, 0.04873412474989891, 0.04216648265719414, 0.031655918806791306,
- -0.1658235490322113, 0.023854369297623634, -0.070555180311203, -0.0909501314163208,
- 0.07425927370786667, -0.02406950108706951, 0.08080147206783295, 0.04392464831471443,
- -0.009359213523566723, 0.05087437480688095, -0.02271965518593788, -0.03132233768701553,
- 0.010462865233421326, 0.04937232285737991, 0.03407125174999237, 0.06968382000923157,
- 0.13059888780117035, -0.043002039194107056, -0.014110778458416462, -0.09466680884361267,
- 0.07095429301261902, 0.13509556651115417, -0.0025061164051294327, 0.020418468862771988,
- 0.0276345182210207, -0.012212168425321579, -0.0017131376080214977,
- -0.030290506780147552, -0.08335728198289871, -0.02298440970480442, -0.06259218603372574,
- 0.07388283312320709, 0.03547414392232895, -0.03216227889060974, -0.14308995008468628,
- -0.04173562303185463, -0.041794031858444214, 0.02334410324692726, 0.13149358332157135,
- -0.06947294622659683, 0.043465208262205124, 0.019107822328805923, -0.009276878088712692,
- 0.02799282781779766, -0.064410500228405, -0.018665533512830734, -0.07325693964958191,
- 0.040650416165590286, 0.04681502282619476, 0.049472685903310776, -0.0443633571267128,
- 0.10852700471878052, -0.09416988492012024, 0.0720243752002716, -0.021660741418600082,
- -0.037695467472076416, 0.010392679832875729, -0.0356682687997818, 0.019186394289135933,
- 0.026800619438290596, -0.06809230893850327, 0.006275505758821964, -0.026355627924203873,
- -0.05607355386018753, -0.059760648757219315, -0.09117671102285385,
- -0.039940979331731796, -0.08387485891580582, 0.06017617508769035, -0.10482539981603622,
- 0.0005439466331154108, -0.02489306777715683, -0.03384485840797424, -0.02717181295156479,
- 0.010437710210680962, 0.01793573424220085, -0.1447342336177826, -0.0064455680549144745,
- 0.01141933724284172, 0.04862897843122482, -0.026805944740772247, -0.05735667422413826,
- 0.006453458219766617, 0.09997456520795822, 0.028155479580163956, -0.029042022302746773,
- 0.017289817333221436, -0.08151327073574066, 0.07457245886325836, -0.12537327408790588,
- -0.37395650148391724, 0.044456347823143005, 0.052807047963142395, 0.04331822693347931,
- -0.010165777057409286, -0.044810522347688675, 0.05009646713733673, 0.007855468429625034,
- -0.05404289811849594, 0.08685392886400223, -0.057581979781389236, 0.021821314468979836,
- -0.057462479919195175, -0.06106771528720856, -0.02377750165760517,
- -0.043583594262599945, -0.060753244906663895, 0.020523319020867348,
- -0.03521488606929779, -0.06303775310516357, -0.0919046476483345, 0.034381203353405,
- -0.015445949509739876, -0.024377483874559402, 0.01167251542210579, 0.029520593583583832,
- -0.030598124489188194, -0.05033145844936371, 0.04621666669845581, 0.0706225335597992,
- 0.035722848027944565, -0.07662972062826157, 0.011070508509874344, 0.06968974322080612,
- 0.02333023026585579, 0.1193125769495964, 0.0016070911660790443, 0.030839810147881508,
- -0.08363939076662064, 0.09115847945213318, 0.06362822651863098, 0.18507425487041473,
- 0.00042474514339119196, -0.016784952953457832, 0.02900954708456993, 0.13661852478981018,
- 0.0734827071428299, 0.01446300745010376, -0.029384944587945938, -0.020430024713277817,
- 0.024797704070806503, -0.005407454911619425, 0.07968469709157944, -0.07716064900159836,
- -0.012873885221779346, -0.020647920668125153, -0.012150799855589867,
- -0.021437285467982292, -0.05233529210090637, 0.22297507524490356, 0.011280490085482597,
- 0.02774861827492714, 0.01654440350830555, -0.062418416142463684, 0.017043892294168472,
- -0.10285720229148865, -0.06723729521036148, -0.024143701419234276,
- -0.0072279623709619045, 0.01817779615521431, -0.05904277786612511, -0.1172214075922966,
- -0.008959395810961723, -0.006707288324832916, 0.020443182438611984, 0.13453075289726257,
- -0.038650594651699066, -0.011553439311683178, -0.03358389809727669, 0.1436658501625061,
- 0.015225006267428398, 0.00312826014123857, 0.04786364734172821, 0.09664303809404373,
- 0.015978004783391953, 0.04432882368564606, -0.02482100948691368, -0.0442071259021759,
- -0.011910972185432911, 0.1519392728805542, -0.023747580125927925, 0.13969774544239044,
- 0.03765036165714264, -0.009943042881786823, -0.06556832790374756, 0.035704176872968674,
- -0.0035544377751648426, 0.021391984075307846, -0.4136596918106079, -0.03280751779675484,
- 0.10953827947378159, 0.03321346268057823, 0.01755494624376297, 0.08942089229822159,
- 0.024359872564673424, -0.03569130599498749, -0.03558741509914398, -0.09727485477924347,
- 0.1442151665687561, 0.03174883872270584, 0.055118195712566376, -0.08419337868690491,
- 0.02355271391570568, 0.07001913338899612, -0.03632055222988129, 0.02873176336288452,
- 0.06479519605636597, -0.2411094307899475, -0.01908407174050808, -0.02145453542470932,
- 0.12463220208883286, -0.025479650124907494, 0.04143715277314186, 0.0974193662405014,
- -0.07291141897439957, 0.01767098158597946, 0.03612987697124481, -0.018056346103549004,
- 0.05670492351055145, -0.022244203835725784, -0.011565442197024822, 0.12830835580825806,
- 0.14312544465065002, 0.08514584600925446, -0.03147471323609352, 12.03015422821045,
- 0.03995593637228012, 0.056718867272138596, -0.1087287962436676, 0.00019207129662390798,
- -0.05177081748843193, 0.030428657308220863, -0.1265580654144287, 0.08990801125764847,
- 0.13664613664150238, -0.0170881524682045, -0.04934551939368248, -0.02505398727953434,
- -0.09916604310274124, 0.019795183092355728, -0.029809024184942245, -0.06611742824316025,
- -0.04573468491435051, 0.04300680384039879, -0.04159677401185036, -0.040290236473083496,
- 0.05718051642179489, 0.07217415422201157, 0.013454696163535118, -0.056123487651348114,
- 0.03325943648815155, 0.009169025346636772, -0.006653332617133856, 0.0067786541767418385,
- 0.025185897946357727, 0.01493610255420208, 0.025703325867652893, 0.0696554034948349,
- -0.008223664946854115, 0.025617185980081558, 0.09433367848396301, 0.09650399535894394,
- 0.02436768263578415, 0.03467433154582977, 0.057720813900232315, -0.022179655730724335,
- 0.02913038618862629, 0.01929377019405365, 0.03791389241814613, 0.0560433603823185,
- 0.04583549499511719, 0.053823430091142654, 0.14290043711662292, 0.017855782061815262,
- 0.0697646513581276, 0.08496435731649399, -0.00008735482697375119, 0.1269722729921341,
- 0.03446415439248085, -0.029940733686089516, 0.03477637469768524, -0.013762355782091618,
- -0.09042267501354218, 0.08053325116634369, -0.0009445424075238407, -0.06518084555864334,
- 0.12052149325609207, 0.038094356656074524, 0.11051961779594421, 0.050128769129514694,
- 0.042428065091371536, 0.07284235954284668, 0.0583561472594738, -0.14565305411815643,
- -0.10090884566307068, 0.028396593406796455, -0.10163699835538864, -0.10144330561161041,
- 0.07687434554100037, 0.08414551615715027, -0.03493954613804817, 0.033376749604940414,
- -0.008320089429616928, 0.031087517738342285, -0.012978868559002876,
- -0.014005462639033794, 0.03721106797456741, -0.0018672964069992304,
- -0.002168235369026661, 0.04068123549222946, 0.02367938496172428, 0.04367480054497719,
- 0.12013326585292816, -0.0062223197892308235, -0.09728823602199554, -0.06951972097158432,
- 0.10842921584844589, -0.019577661529183388, -0.056793127208948135, 0.03919821232557297,
- -0.06634111702442169, 0.05850604549050331, -0.1608736664056778, 0.08586671948432922,
- 0.09107500314712524, -0.10122900456190109, -0.036583974957466125, -0.040511537343263626,
- 0.04626020789146423, 0.044010329991579056, 0.0265888012945652, -0.06483305990695953,
- 0.016333511099219322, 0.006256207823753357, 0.05433402210474014, -0.045520905405282974,
- 0.0750659853219986, 0.08831819146871567, -0.053634367883205414, 0.024343648925423622,
- 0.05351126939058304, -0.03370765969157219, -0.024078302085399628, 0.05766250565648079,
- 0.048244278877973557, -0.08784964680671692, -0.04368525743484497, -0.03871152922511101,
- -0.033633824437856674, -0.014627397060394287, -0.041246797889471054,
- 0.007724180817604065, 0.04201122745871544, -0.02790415659546852, -0.012389109469950199,
- 0.04847291484475136, 0.08087211102247238, 0.0910031646490097, -0.013051716610789299,
- 0.05264776572585106, -0.05526064708828926, -0.024885976687073708, 0.04136817157268524,
- 0.02942837029695511, 0.054212894290685654, -0.07282653450965881, -0.049706146121025085,
- -0.05195079743862152, -0.1377832591533661, 0.03565090522170067, 0.0682927593588829,
- 0.0352201946079731, 0.022669892758131027, 0.014437615871429443, -0.07987982034683228,
- -0.056918952614068985, 0.08485665917396545, 0.030885891988873482,
- -0.0072879791259765625, 0.025005539879202843, -0.047645486891269684,
- -0.05130651593208313, 0.10401240736246109, -0.0353204607963562, -0.01465753372758627,
- -0.0013446472585201263, -0.06924598664045334, 0.07565809786319733, 0.12792499363422394,
- 0.06460526585578918, 0.04799829423427582, 0.04347630962729454, -0.0018360689282417297,
- 0.06256036460399628, 0.002811092883348465, 0.033403247594833374, -0.04710337147116661,
- -0.08645334839820862, -0.08961770683526993, 0.03521587327122688, 0.1032337099313736,
- 0.0789337009191513, -0.08834335207939148, 0.008626776747405529, -0.05130504444241524
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 13,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 14,
- "similarity": 0.9993362426757812
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 59,
- "similarity": 0.9992702007293701
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 6,
- "similarity": 0.9990901350975037
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Kyle Wiggers"],
- "epoch_date_downloaded": 1624924800,
- "epoch_date_modified": 1625011200,
- "epoch_date_submitted": 1625011200,
- "flag": null,
- "report_number": 1415,
- "source_domain": "venturebeat.com",
- "submitters": ["Kate Perkins"],
- "title": "AI displays bias and inflexibility in civility detection, study finds",
- "url": "https://venturebeat.com/2021/02/10/ai-displays-bias-and-inflexibility-in-civility-detection-study-finds/"
- },
- {
- "__typename": "Report",
- "authors": [
- "Anushree Hede",
- "Oshin Agarwal",
- "Linda Lu",
- "Diana C. Mutz",
- "Ani Nenkova"
- ],
- "epoch_date_downloaded": 1625529600,
- "epoch_date_modified": 1626048000,
- "epoch_date_submitted": 1626048000,
- "flag": null,
- "report_number": 1414,
- "source_domain": "arxiv.org",
- "submitters": ["Kate Perkins"],
- "title": "From Toxicity in Online Comments to Incivility in American News: Proceed with Caution",
- "url": "https://arxiv.org/abs/2102.03671"
- },
- {
- "__typename": "Report",
- "authors": ["Jennifer Langston"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 49,
- "source_domain": "techxplore.com",
- "submitters": ["Catherine Olsson"],
- "title": "Security researchers show Google's anti-internet troll AI platform is easily deceived",
- "url": "https://techxplore.com/news/2017-03-google-anti-internet-troll-ai-platform.html"
- },
- {
- "__typename": "Report",
- "authors": ["Liel Leibovitz", "Armin Rosen", "Marjorie Ingall", "Adam Garfinkle"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 48,
- "source_domain": "tabletmag.com",
- "submitters": ["Catherine Olsson"],
- "title": "Google's New Hate Speech Algorithm Has a Problem With Jews",
- "url": "https://www.tabletmag.com/scroll/241981/googles-new-hate-speech-algorithm-has-a-problem-with-jews"
- },
- {
- "__typename": "Report",
- "authors": ["Dave Gershgorn"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1661126400,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 47,
- "source_domain": "qz.com",
- "submitters": ["Catherine Olsson"],
- "title": "Alphabet’s hate-fighting AI doesn’t understand hate yet",
- "url": "https://qz.com/918640/alphabets-hate-fighting-ai-doesnt-understand-hate-yet/"
- },
- {
- "__typename": "Report",
- "authors": ["Infowars.Com -"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 46,
- "source_domain": "infowars.com",
- "submitters": ["Catherine Olsson"],
- "title": "Google Robo-Tool Flags Conservative Comments as “Toxic”",
- "url": "https://www.infowars.com/google-robo-tool-flags-conservative-comments-as-toxic/"
- },
- {
- "__typename": "Report",
- "authors": ["Jillian C. York"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 45,
- "source_domain": "motherboard.vice.com",
- "submitters": ["Catherine Olsson"],
- "title": "Google's Anti-Bullying AI Mistakes Civility for Decency",
- "url": "https://motherboard.vice.com/en_us/article/qvvv3p/googles-anti-bullying-ai-mistakes-civility-for-decency"
- },
- {
- "__typename": "Report",
- "authors": ["Robyn Speer"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 44,
- "source_domain": "blog.conceptnet.io",
- "submitters": ["Catherine Olsson"],
- "title": "You weren’t supposed to actually implement it, Google",
- "url": "http://blog.conceptnet.io/posts/2017/you-werent-supposed-to-actually-implement-it-google/"
- },
- {
- "__typename": "Report",
- "authors": ["Violet Blue"],
- "epoch_date_downloaded": 1660176000,
- "epoch_date_modified": 1660176000,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 43,
- "source_domain": "engadget.com",
- "submitters": ["Catherine Olsson"],
- "title": "Google’s comment-ranking system will be a hit with the alt-right",
- "url": "https://www.engadget.com/2017/09/01/google-perspective-comment-ranking-system/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "google",
- "name": "Google"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "google",
- "name": "Google"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "women",
- "name": "Women"
- },
- {
- "__typename": "Entity",
- "entity_id": "minority-groups",
- "name": "Minority Groups"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [56, 55, 54, 53, 52, 51, 50],
- "vector": [
- -0.06812333315610886, 0.07312361896038055, 0.0012275875778868794, -0.09128017723560333,
- 0.11263307183980942, 0.01442499365657568, 0.008689731359481812, 0.05370127037167549,
- 0.05163989216089249, -0.1499343365430832, -0.02977919951081276, 0.0417129322886467,
- 0.021340880542993546, -0.05214689299464226, 0.029312465339899063, -0.09553118050098419,
- -0.11362843960523605, -0.06251520663499832, 0.007441126275807619, -0.13786037266254425,
- -0.08494632691144943, -0.006602924782782793, 0.010856358334422112, 0.09159582108259201,
- -0.03628447279334068, 0.029328037053346634, 0.12328428030014038, 0.0850682407617569,
- -0.03903194144368172, 0.02871108055114746, -0.044933218508958817, -0.06940045207738876,
- 0.12263745814561844, 0.011036111041903496, 0.0008292219717986882, 0.059265248477458954,
- 0.04493580013513565, -0.007938596419990063, -0.029678162187337875,
- -0.0045592449605464935, 0.053586263209581375, 0.23888275027275085,
- -0.0015402643475681543, -0.02356303110718727, 0.03300350159406662, -0.04445534199476242,
- -0.021132078021764755, 0.015232247300446033, 0.00949903018772602, 0.030726488679647446,
- -0.010826244950294495, 0.031847983598709106, -0.016426634043455124,
- 0.031053902581334114, -0.08002264052629471, 0.03406510502099991, 0.06388451159000397,
- 0.007392506580799818, 0.06785287708044052, -0.10005109757184982, -0.028087524697184563,
- -0.18963898718357086, -0.029708949849009514, -0.10842316597700119, 0.08197589963674545,
- -0.078435979783535, -0.030128613114356995, 0.02657386288046837, 0.008966518566012383,
- 0.0728900283575058, 0.07055605202913284, -0.028817027807235718, -0.05432187765836716,
- 0.011338741518557072, -0.02222438156604767, -0.04807904735207558, -0.012799669988453388,
- 0.20532779395580292, -0.10161487013101578, 0.009566212072968483, 0.10656582564115524,
- -0.09116616100072861, 0.37240466475486755, 0.035817649215459824, -0.023730797693133354,
- -0.04439851641654968, 0.08892568200826645, 0.019540246576070786, 0.028466688469052315,
- 0.027864230796694756, -0.013085024431347847, 0.041139546781778336, -0.07394585758447647,
- 0.005524826236069202, 0.06161957234144211, 0.02336287498474121, -0.04062538221478462,
- -0.044141773134469986, -0.0013800436863675714, -0.03972926363348961,
- -0.0483662374317646, -0.023204872384667397, 0.13707852363586426, 0.09084966033697128,
- -0.04018194600939751, 0.00653799856081605, 0.06232620030641556, -0.03247116878628731,
- 0.042977843433618546, -0.05687129124999046, 0.04144331067800522, -0.031570177525281906,
- 0.08337350934743881, -0.006872082594782114, 0.05249378830194473, -0.049355532974004745,
- 0.02328568510711193, 0.07803245633840561, 0.07031898200511932, 0.07527180761098862,
- -0.021877793595194817, 0.04357923939824104, 0.04629843682050705, -0.05905608460307121,
- -0.04449549317359924, -0.038640983402729034, -0.03170075640082359, -0.02409086562693119,
- -0.05441451817750931, 0.048362791538238525, -0.04721560329198837, -0.22287508845329285,
- 0.009698540903627872, 0.08639175444841385, -0.07231911271810532, -0.01664215512573719,
- 0.025675123557448387, -0.06829438358545303, 0.01311995554715395, -0.004864455200731754,
- -0.01703820750117302, 0.04716268926858902, -0.01766587235033512, 0.0563143715262413,
- 0.09013324230909348, 0.060816146433353424, -0.059015583246946335, -0.07206050306558609,
- -0.0006034786929376423, -0.07174516469240189, 0.1293329894542694, -0.11428513377904892,
- -0.051959533244371414, -0.0213677529245615, -0.007351432926952839, 0.7368220686912537,
- 0.10016284883022308, 0.20565436780452728, 0.015525482594966888, -0.007762584835290909,
- 0.14538881182670593, 0.005041108932346106, 0.07069679349660873, -0.06384886056184769,
- -0.06407778710126877, 0.02881750836968422, -0.09691429138183594, -0.06287999451160431,
- 0.02187529020011425, 0.02125491388142109, 0.08613628894090652, 0.017259767279028893,
- 0.054917994886636734, -0.01156046986579895, -0.09979387372732162, -0.055314429104328156,
- 0.06474374979734421, 0.013817123137414455, -0.14626066386699677, -0.04131774976849556,
- 0.03646600618958473, 0.09525899589061737, -0.09613709151744843, 0.0016980221262201667,
- -0.060107938945293427, 0.05929967388510704, -0.0006144533981569111, 0.06992513686418533,
- -0.023053646087646484, 0.06437516957521439, 0.0610920786857605, 0.044062066823244095,
- -0.016589783132076263, -0.08943235874176025, 0.019124925136566162, 0.07928895950317383,
- -0.029493261128664017, -0.023020410910248756, 0.06114443019032478, -0.0821901336312294,
- 0.034940194338560104, -0.015980128198862076, 0.1337108314037323, -0.1276773065328598,
- 0.03994696959853172, -0.010036690160632133, -0.004558742046356201, 0.038397133350372314,
- -0.011186850257217884, -0.08577845990657806, -0.040260739624500275, 0.10164792835712433,
- -0.0014897502260282636, 0.02291618473827839, 0.031206095591187477,
- -0.025332821533083916, 0.05185125395655632, 0.1334163248538971, 0.002889664378017187,
- -0.006473117973655462, 0.053417034447193146, 0.030894219875335693, -0.03441622853279114,
- -0.04607561603188515, 0.032413266599178314, 0.011865681037306786, 0.02340090647339821,
- -0.0048162611201405525, 0.050865769386291504, -0.0008923875284381211,
- -0.052244510501623154, 0.04075605794787407, 0.06795085966587067, 0.045655421912670135,
- 0.10313467681407928, -0.027768468484282494, -0.06679359823465347, -0.0354437492787838,
- -0.05561579391360283, 0.004850267432630062, -0.012367830611765385, 0.09882370382547379,
- 0.10608281195163727, 0.08446373045444489, 0.0246200542896986, 0.0345306396484375,
- 0.045433226972818375, -0.0008177310228347778, 0.022599300369620323,
- 0.055016856640577316, -0.031606029719114304, -0.06141882389783859, 0.004699987825006247,
- 0.007513056043535471, 0.05463720113039017, 0.018415501341223717, -0.06986583024263382,
- -0.028332838788628578, -0.042653895914554596, -0.023900842294096947,
- -0.08706455677747726, -0.05140333250164986, 0.04462013021111488, 0.04569743946194649,
- -0.03087211772799492, -0.0946490690112114, -0.0834047719836235, 0.000057424585975240916,
- 0.07106222957372665, -0.039799828082323074, -0.01701936312019825, -0.1142682358622551,
- -0.021169258281588554, -0.023946544155478477, 0.05040232092142105,
- 0.0040769740007817745, -0.010274329222738743, 0.023073971271514893,
- -0.07336687296628952, 0.031231816858053207, -0.004394493531435728,
- -0.025776242837309837, -0.02708209864795208, -0.056298572570085526, -0.058657456189394,
- 0.023875640705227852, 0.006591256707906723, -0.030983859673142433, 0.02249317802488804,
- 0.0524093434214592, 0.05524703860282898, 0.0022978854831308126, -0.05034911632537842,
- 0.06619928777217865, -0.03306303173303604, -0.021401097998023033, 0.07342052459716797,
- -0.044330205768346786, 0.040391284972429276, -0.016197316348552704,
- -0.10740349441766739, -0.022770149633288383, 0.02531721629202366, -0.047625940293073654,
- 0.029569463804364204, 0.001471762196160853, 0.04024962708353996, -0.049280326813459396,
- -0.027408408001065254, 0.0406123585999012, -0.05296245217323303, -0.10401391237974167,
- -0.0805249959230423, 0.13868452608585358, 0.031451281160116196, -0.00968179665505886,
- 0.034068815410137177, -0.057000309228897095, 0.041366096585989, -0.04494979977607727,
- -0.000403224112233147, 0.020773420110344887, 0.06223752722144127, 0.02010808326303959,
- 0.03672405704855919, 0.07691346108913422, -0.0014812942827120423, 0.01854504458606243,
- 0.06992476433515549, 0.4228633940219879, -0.22736695408821106, 0.08793781697750092,
- 0.09942955523729324, 0.004663901869207621, 0.043457694351673126, -0.06367094814777374,
- 0.08921533077955246, 0.08992594480514526, 0.1304776817560196, 0.12892307341098785,
- -0.04013681411743164, -0.0015008898917585611, -0.0925491526722908, 0.09067811071872711,
- -0.004517198074609041, -0.008161655627191067, -0.0019463973585516214,
- -0.06209893152117729, -0.0186955314129591, 0.0510113425552845, -0.05490199476480484,
- 0.015634434297680855, -0.03474796563386917, -0.052477844059467316, 0.019385239109396935,
- 0.03200504556298256, 0.025630729272961617, -0.016734156757593155, 0.0501607246696949,
- 0.00843312032520771, 0.06364879757165909, 0.03321194648742676, 0.002700237324461341,
- -0.15650852024555206, 0.02751997485756874, -0.0760044977068901, -0.11322914808988571,
- 0.08178068697452545, -0.020677972584962845, 0.05501033738255501, 0.056351326406002045,
- -0.026795804500579834, 0.03922119736671448, -0.038741860538721085, -0.04885893315076828,
- 0.0015474226092919707, 0.04304037615656853, 0.020491940900683403, 0.042112648487091064,
- 0.1462826430797577, -0.04449725151062012, -0.008531874045729637, -0.09103822708129883,
- 0.07963898032903671, 0.11566929519176483, -0.007538927253335714, 0.02948327176272869,
- -0.006328923162072897, -0.02083229459822178, -0.002028264570981264,
- -0.03193498030304909, -0.10594945400953293, -0.053058747202157974, -0.0576845183968544,
- 0.07677052915096283, 0.03276520222425461, -0.05035471171140671, -0.15009328722953796,
- -0.033801641315221786, -0.04145534709095955, 0.0254069697111845, 0.11694953590631485,
- -0.05168683081865311, 0.08189914375543594, 0.026918696239590645, -0.00724766543135047,
- -0.0046814195811748505, -0.0947372168302536, -0.002966828877106309,
- -0.05173574760556221, 0.05142994597554207, 0.03661658242344856, 0.05298459529876709,
- -0.03933599218726158, 0.1020437702536583, -0.08460234850645065, 0.09986277669668198,
- -0.009956569410860538, -0.04343535751104355, 0.05031866207718849, -0.061976950615644455,
- 0.03448411077260971, 0.012665415182709694, -0.05449768900871277, 0.016997892409563065,
- -0.014093203470110893, -0.04282749816775322, -0.08680442720651627, -0.08801262825727463,
- -0.02700977586209774, -0.08859236538410187, 0.08826692402362823, -0.06015736982226372,
- -0.009157956577837467, -0.019845878705382347, -0.04708622023463249,
- -0.009010951034724712, 0.002031902316957712, 0.018099099397659302, -0.1511583775281906,
- -0.0016384701011702418, -0.0013899700716137886, 0.046431031078100204,
- -0.01138422079384327, -0.038101423531770706, 0.011000237427651882, 0.10280471295118332,
- 0.050876814872026443, -0.008881972171366215, -0.00961280893534422, -0.0891178771853447,
- 0.0710291638970375, -0.11308075487613678, -0.3996361196041107, 0.05970918387174606,
- 0.02231764979660511, 0.03140014782547951, 0.00618432741612196, -0.06045808270573616,
- 0.03847413510084152, 0.02163160778582096, -0.07209134846925735, 0.07678747922182083,
- -0.06822411715984344, 0.02931329235434532, -0.0702858418226242, -0.0658634752035141,
- -0.010072486475110054, -0.048135627061128616, -0.047104980796575546,
- 0.03909408301115036, -0.03422394022345543, -0.04376029223203659, -0.10579324513673782,
- 0.028905155137181282, -0.026365267112851143, 0.005789116490632296, 0.011843315325677395,
- 0.022133197635412216, -0.0600760392844677, -0.06218380108475685, 0.03841004893183708,
- 0.08581988513469696, 0.027896713465452194, -0.08580165356397629, 0.0025401648599654436,
- 0.0899592861533165, 0.007734339218586683, 0.10838799923658371, -0.006145217455923557,
- -0.02714424952864647, -0.08968601375818253, 0.08504704385995865, 0.045400600880384445,
- 0.1850024312734604, -0.015494488179683685, -0.01423961203545332, 0.018054986372590065,
- 0.14495256543159485, 0.06282926350831985, 0.021018685773015022, -0.026501262560486794,
- -0.007653199601918459, 0.04113209992647171, -0.019669439643621445, 0.09544054418802261,
- -0.06426941603422165, -0.012631809338927269, -0.015043721534311771,
- -0.019494328647851944, -0.0322432667016983, -0.057533472776412964, 0.22193531692028046,
- 0.02429266646504402, 0.038249604403972626, 0.010704231448471546, -0.050846073776483536,
- 0.012345570139586926, -0.06992024928331375, -0.08231030404567719, -0.026380788534879684,
- -0.014283082447946072, 0.01757584698498249, -0.042343221604824066, -0.08836299926042557,
- -0.017272762954235077, 0.017222078517079353, 0.009721649810671806, 0.12554559111595154,
- -0.007136741187423468, 0.03073998913168907, -0.021623119711875916, 0.1225908026099205,
- 0.020756181329488754, 0.024392645806074142, 0.04868873208761215, 0.08865291625261307,
- 0.0075142644345760345, 0.025622833520174026, -0.025322487577795982,
- -0.05211011320352554, -0.029573509469628334, 0.12419165670871735, -0.016710136085748672,
- 0.12051473557949066, 0.049224723130464554, -0.025845874100923538, -0.0650215819478035,
- 0.029819918796420097, 0.005427841562777758, 0.031058896332979202, -0.45473048090934753,
- -0.037353746592998505, 0.12826427817344666, 0.029934683814644814,
- -0.0011932210763916373, 0.08930064737796783, 0.039364609867334366, -0.04086172953248024,
- -0.012227552942931652, -0.08948807418346405, 0.12812064588069916, 0.028663096949458122,
- 0.08713410049676895, -0.0618833489716053, 0.005328478757292032, 0.05759227275848389,
- -0.026506317779421806, 0.015196061693131924, 0.07452910393476486, -0.20505142211914062,
- -0.0028003198094666004, -0.022126058116555214, 0.12013603746891022,
- 0.004041749518364668, 0.04304470866918564, 0.0940808653831482, -0.06580641865730286,
- 0.036671482026576996, 0.02684957906603813, 0.00214808969758451, 0.0669565424323082,
- 0.02416151389479637, -0.00568245118483901, 0.10351666063070297, 0.11290750652551651,
- 0.09014856815338135, -0.036794353276491165, 12.040261268615723, 0.019674504175782204,
- 0.04618356004357338, -0.09627889096736908, 0.010411457158625126, -0.055622268468141556,
- 0.023222561925649643, -0.11914629489183426, 0.06965853273868561, 0.1726166009902954,
- -0.022531254217028618, -0.057751405984163284, -0.017875198274850845,
- -0.09848080575466156, 0.027526795864105225, -0.022937800735235214, -0.04616839066147804,
- -0.052341800183057785, 0.045205436646938324, -0.05787891894578934,
- -0.043794479221105576, 0.07405286282300949, 0.10148230940103531, -0.0033550169318914413,
- -0.04891389608383179, 0.024219317361712456, 0.005868353880941868, -0.027045389637351036,
- -0.0025921701453626156, 0.040138669312000275, -0.014386405237019062,
- 0.036466944962739944, 0.060039401054382324, -0.020288990810513496, 0.04258224368095398,
- 0.05898696184158325, 0.09990157186985016, 0.04947860166430473, 0.04875752329826355,
- 0.05402941629290581, -0.0017241284949705005, 0.024209367111325264, 0.017807137221097946,
- 0.048963677138090134, 0.0671558603644371, 0.04032042250037193, 0.062411677092313766,
- 0.12543651461601257, 0.03521864116191864, 0.07033675909042358, 0.0896795317530632,
- -0.0027676429599523544, 0.13590660691261292, 0.009612820111215115, -0.02675420604646206,
- 0.04163598269224167, 0.007464311085641384, -0.08826189488172531, 0.09425254911184311,
- 0.033230170607566833, -0.07901448756456375, 0.1232418343424797, 0.02807350642979145,
- 0.1015927642583847, 0.0448235347867012, 0.04602393880486488, 0.06262631714344025,
- 0.05965634807944298, -0.15496130287647247, -0.0874079093337059, 0.013310887850821018,
- -0.10872843116521835, -0.1013076901435852, 0.08778166770935059, 0.08762422949075699,
- -0.03760100528597832, 0.036920011043548584, -0.014709092676639557, 0.024237286299467087,
- -0.0061380681581795216, -0.0033990053925663233, 0.028600966557860374,
- -0.022574711591005325, 0.012482242658734322, 0.05895966291427612, 0.039544470608234406,
- 0.036618370562791824, 0.12213730067014694, 0.0012250897707417607, -0.1030462235212326,
- -0.0702487975358963, 0.14721441268920898, -0.018157539889216423, -0.07644939422607422,
- 0.03376035392284393, -0.054987646639347076, 0.034286726266145706, -0.17094387114048004,
- 0.0819329097867012, 0.11482024937868118, -0.0800756961107254, -0.032139845192432404,
- -0.040293216705322266, 0.04686058685183525, 0.020727574825286865, 0.005968505050987005,
- -0.0705542042851448, 0.019409487023949623, 0.018141312524676323, 0.03995677828788757,
- -0.04291233420372009, 0.02626447007060051, 0.10349597036838531, -0.06626635789871216,
- 0.04049649089574814, 0.05632825568318367, -0.026401232928037643, -0.014160684309899807,
- 0.05232737213373184, 0.046276677399873734, -0.07881168276071548, -0.039574336260557175,
- -0.04908445104956627, -0.020109577104449272, -0.013293908908963203,
- -0.042505085468292236, 0.012843511067330837, 0.03444945067167282, -0.016044490039348602,
- 0.00012613214494194835, 0.0506729893386364, 0.08400344103574753, 0.061495840549468994,
- -0.014922326430678368, 0.059198733419179916, -0.050598081201314926,
- -0.012671345844864845, 0.027118191123008728, 0.048429615795612335, 0.06589799374341965,
- -0.0861634686589241, -0.04328358918428421, -0.05763186886906624, -0.14456839859485626,
- 0.022690748795866966, 0.08745215833187103, 0.06330524384975433, 0.030668247491121292,
- 0.00130323669873178, -0.08539021760225296, -0.06891106069087982, 0.10576748847961426,
- 0.03335045650601387, -0.009571217931807041, 0.010669806972146034, -0.05843004211783409,
- -0.02218794822692871, 0.11074422299861908, -0.05187774449586868, -0.0011356434551998973,
- 0.0026938405353575945, -0.07656805962324142, 0.09632375091314316, 0.15581762790679932,
- 0.06693960726261139, 0.038616955280303955, 0.019204819574952126, -0.005194937344640493,
- 0.04337788000702858, -0.013762320391833782, 0.06263856589794159, -0.04456657916307449,
- -0.1456117331981659, -0.08428388088941574, 0.06304702907800674, 0.11981944739818573,
- 0.09645584970712662, -0.11195074766874313, -0.013602136634290218, -0.029795024544000626
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 14,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 13,
- "similarity": 0.9993362426757812
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 59,
- "similarity": 0.9992086887359619
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 37,
- "similarity": 0.9991270899772644
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Jack Morse"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 56,
- "source_domain": "mashable.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Google's AI has some seriously messed up opinions about homosexuality",
- "url": "https://mashable.com/2017/10/25/google-machine-learning-bias/#7AyGipoEHmqF"
- },
- {
- "__typename": "Report",
- "authors": ["Gwyn D'Mello"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 55,
- "source_domain": "indiatimes.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Google's AI Is Branding Jews \u0026 Homosexuals As Bad People, Thanks To Toxic Human Biases",
- "url": "https://www.indiatimes.com/technology/news/google-s-ai-is-branding-jews-homosexuals-as-bad-people-thanks-to-toxic-human-biases-332434.html"
- },
- {
- "__typename": "Report",
- "authors": ["The Inquirer"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 54,
- "source_domain": "theinquirer.net",
- "submitters": ["Roman Yampolskiy"],
- "title": "Google's AI is already associating ethnic minorities with negative sentiment",
- "url": "https://www.theinquirer.net/inquirer/news/3019938/googles-ai-is-already-associating-ethnic-minorities-with-negative-sentiment"
- },
- {
- "__typename": "Report",
- "authors": ["Pranjal Kumar"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 53,
- "source_domain": "techleer.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Google Sentiment Analysis API gives a biased output",
- "url": "https://www.techleer.com/articles/387-google-sentiment-analysis-api-gives-a-biased-output/"
- },
- {
- "__typename": "Report",
- "authors": ["Andrew Thompson"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 52,
- "source_domain": "motherboard.vice.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Google’s Sentiment Analyzer Thinks Being Gay Is Bad",
- "url": "https://motherboard.vice.com/en_us/article/j5jmj8/google-artificial-intelligence-bias"
- },
- {
- "__typename": "Report",
- "authors": ["Louise Matsakis"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 51,
- "source_domain": "motherboard.vice.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Google Is Sorry its Sentiment Analyzer is Biased",
- "url": "https://motherboard.vice.com/en_us/article/ne3nkb/google-artificial-intelligence-bias-apology"
- },
- {
- "__typename": "Report",
- "authors": ["David Lumb"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 50,
- "source_domain": "engadget.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Google's sentiment analysis API is just as biased as humans",
- "url": "https://www.engadget.com/2017/10/25/googles-sentiment-analysis-api-is-just-as-biased-as-humans/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "amazon",
- "name": "Amazon"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "amazon",
- "name": "Amazon"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "amazon-customers",
- "name": "Amazon Customers"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [
- 81, 80, 79, 78, 77, 76, 75, 74, 73, 72, 70, 69, 68, 67, 66, 65, 64, 63, 62, 61, 60, 59,
- 58, 57
- ],
- "vector": [
- -0.041130442172288895, 0.08098245412111282, 0.018247367814183235, -0.11018535494804382,
- 0.08558443933725357, -0.04286811873316765, 0.004067139234393835, 0.059905651956796646,
- 0.06310287117958069, -0.11864622682332993, -0.028226079419255257, 0.03595753386616707,
- 0.018771760165691376, -0.055991653352975845, 0.036713387817144394, -0.10373625159263611,
- -0.11743728071451187, -0.021358855068683624, 0.0004927936242893338,
- -0.11058437079191208, -0.04838984087109566, 0.03782813623547554, 0.022801963612437248,
- 0.12000948935747147, -0.004989624954760075, 0.02231578715145588, 0.07643946260213852,
- 0.11532404273748398, -0.03193770721554756, 0.06020234152674675, -0.022882984951138496,
- -0.07092305272817612, 0.09993011504411697, 0.003357269801199436, -0.01298303809016943,
- 0.07697881758213043, 0.03932596743106842, -0.03392913565039635, -0.043933335691690445,
- 0.011522802524268627, 0.07708042114973068, 0.20355242490768433, -0.025699598714709282,
- 0.006360786501318216, 0.045294139534235, -0.04896478354930878, 0.0020043824333697557,
- 0.040087077766656876, 0.0068911537528038025, 0.033639464527368546,
- -0.020472293719649315, 0.032915886491537094, -0.0194090586155653, 0.038852594792842865,
- -0.10929767042398453, 0.048173725605010986, 0.04514072835445404, -0.020283252000808716,
- 0.0313594825565815, -0.07748818397521973, -0.021113181486725807, -0.23595093190670013,
- -0.05945971980690956, -0.06560907512903214, 0.09395542740821838, -0.0788707509636879,
- -0.03684103116393089, 0.004953431896865368, 0.018215954303741455, 0.053744811564683914,
- 0.06118452921509743, -0.04512840881943703, -0.02492295391857624, 0.029526105150580406,
- -0.013379459269344807, -0.041902463883161545, 0.017894331365823746, 0.23141153156757355,
- -0.06876542419195175, 0.010523281991481781, 0.10090592503547668, -0.08940290659666061,
- 0.4045279026031494, 0.02699025720357895, -0.00676212040707469, -0.017727242782711983,
- 0.05544227734208107, 0.0059186858125030994, 0.03177448734641075, 0.03632569685578346,
- -0.017691215500235558, 0.07203540951013565, -0.05237758532166481, 0.01644529588520527,
- 0.0487404465675354, 0.0071757473051548, -0.04301990196108818, -0.00685172388330102,
- -0.01550045982003212, -0.07715942710638046, 0.020482411608099937, -0.02255823463201523,
- 0.08997136354446411, 0.08957169204950333, -0.018219342455267906, 0.0017087534070014954,
- 0.07066931575536728, -0.05043823644518852, 0.06139587238430977, -0.04732220247387886,
- -0.0004176330112386495, 0.0031754535157233477, 0.07742572575807571,
- -0.00027279730420559645, 0.0504906140267849, -0.026807820424437523,
- 0.016923055052757263, 0.04532204940915108, 0.044278040528297424, 0.04381006583571434,
- 0.0035969289019703865, 0.07557374238967896, 0.04892395809292793, -0.05939503386616707,
- -0.037159476429224014, -0.024090096354484558, -0.058637578040361404,
- -0.025941453874111176, -0.022779399529099464, 0.037504445761442184,
- -0.046888288110494614, -0.18796247243881226, 0.012569837272167206, 0.06133130565285683,
- -0.010190757922828197, -0.010896820574998856, 0.0030359141528606415,
- -0.059230778366327286, 0.057492032647132874, -0.01833442598581314,
- -0.013388223014771938, 0.07450462132692337, 0.007746308576315641, 0.056510552763938904,
- 0.09954168647527695, 0.06218789517879486, -0.04097208008170128, -0.05362151935696602,
- 0.00960711669176817, -0.036220304667949677, 0.11882328987121582, -0.0622810535132885,
- -0.04259999096393585, -0.008965966291725636, -0.012178330682218075, 0.6692491173744202,
- 0.0877620205283165, 0.14517085254192352, -0.024774186313152313, -0.01519083883613348,
- 0.1759694218635559, 0.027844881638884544, 0.03933153674006462, -0.060211796313524246,
- -0.06755037605762482, 0.011239167302846909, -0.05776967108249664, -0.027441784739494324,
- 0.040031783282756805, 0.02332557551562786, 0.09763769060373306, 0.041550636291503906,
- 0.0922686979174614, -0.02040291391313076, -0.11554638296365738, -0.04305422306060791,
- 0.05126301571726799, -0.00984943751245737, -0.1260589212179184, -0.03303849697113037,
- 0.051536817103624344, 0.09652598947286606, -0.07449638098478317, 0.03129766881465912,
- -0.04671810194849968, 0.040301550179719925, -0.03237293288111687, 0.042737822979688644,
- -0.022233428433537483, 0.0009881496662274003, 0.0405728854238987, 0.0319116972386837,
- 0.007242085877805948, -0.08074139058589935, -0.021599620580673218, 0.14124496281147003,
- -0.025028599426150322, -0.021757109090685844, 0.06727411597967148, -0.0922318622469902,
- 0.06472068279981613, 0.026605943217873573, 0.1217491552233696, -0.135572150349617,
- 0.0015977005241438746, -0.013275017030537128, -0.02228987216949463, 0.0292535200715065,
- 0.003237988566979766, -0.05656573548913002, -0.03242308273911476, 0.09003864973783493,
- -0.012640908360481262, 0.08300463110208511, -0.00669577531516552, -0.054690733551979065,
- 0.043155308812856674, 0.05291947349905968, -0.020429855212569237, -0.03192191570997238,
- 0.05898093059659004, 0.04061650112271309, -0.014110468327999115, -0.04697524383664131,
- 0.024267522618174553, 0.03356272354722023, 0.03867849335074425, -0.005263786297291517,
- 0.05487177148461342, 0.017968976870179176, -0.052192214876413345, 0.07111383229494095,
- 0.0015547514194622636, 0.0010229357285425067, 0.0785399004817009, -0.11762457340955734,
- -0.03010001964867115, -0.0406329520046711, -0.040183551609516144, 0.025075888261198997,
- -0.038034286350011826, 0.06934691220521927, 0.09681198745965958, 0.055840104818344116,
- 0.03444622829556465, 0.02308722585439682, 0.08027851581573486, 0.03472838178277016,
- 0.007392724975943565, 0.09893403202295303, -0.030751550570130348, -0.04325876012444496,
- -0.03899872675538063, 0.004201976582407951, 0.045944660902023315, 0.030292289331555367,
- -0.060442280024290085, -0.026626134291291237, -0.009731544181704521,
- -0.048840101808309555, -0.09014222770929337, -0.026243558153510094, 0.03630291298031807,
- 0.03162182494997978, -0.059395480901002884, -0.07834456861019135, -0.07889818400144577,
- 0.013698101043701172, 0.07425028085708618, -0.04797443374991417, -0.018664861097931862,
- -0.1086161732673645, -0.001959529472514987, 0.006838140543550253, 0.05373137816786766,
- 0.005812162533402443, 0.005134206730872393, 0.016418619081377983, -0.06654850393533707,
- 0.014303125441074371, 0.00043135942541994154, -0.03765714168548584, -0.0780288428068161,
- -0.0707404688000679, -0.011676762253046036, 0.004399421159178019, -0.00444795610383153,
- -0.024663040414452553, 0.01838320679962635, 0.04564759135246277, 0.06440279632806778,
- -0.007196702528744936, -0.06692355126142502, 0.04772714897990227, -0.019043050706386566,
- 0.007983263581991196, 0.06437063217163086, 0.00043125779484398663, 0.025480857118964195,
- -0.0034946484956890345, -0.05262736603617668, -0.04228514805436134,
- -0.02494329959154129, -0.04295991361141205, 0.038176387548446655,
- -0.0006679074722342193, 0.015042421407997608, -0.06726784259080887,
- -0.016756482422351837, 0.026851460337638855, -0.05290946364402771, -0.08454712480306625,
- -0.08862846344709396, 0.09971395134925842, 0.004970041569322348, -0.005733969155699015,
- 0.03041951358318329, -0.07096362113952637, 0.04493417963385582, 0.00908610224723816,
- 0.004004660528153181, 0.03743034973740578, 0.03457117825746536, -0.022422267124056816,
- 0.002171961357817054, 0.09847245365381241, -0.013764738105237484, 0.02222858928143978,
- 0.03767963871359825, 0.4340490400791168, -0.21193642914295197, 0.08822997659444809,
- 0.06944351643323898, -0.010315940715372562, 0.043146248906850815, -0.049537304788827896,
- 0.0901184007525444, 0.08513198047876358, 0.11086558550596237, 0.07463396340608597,
- -0.04063216224312782, 0.03692818060517311, -0.09877566248178482, 0.0977424755692482,
- -0.007944564335048199, 0.020042844116687775, 0.026870660483837128,
- -0.057199906557798386, -0.04758403077721596, 0.04213416576385498, -0.0389130674302578,
- -0.0011875048512592912, -0.0026675909757614136, -0.02886413224041462,
- 0.04571877419948578, 0.028168341144919395, 0.03796222433447838, -0.025901786983013153,
- 0.023682691156864166, -0.023706594482064247, 0.03295816853642464, 0.03318256139755249,
- 0.00618775887414813, -0.1394524723291397, 0.053276803344488144, -0.042946428060531616,
- -0.07441726326942444, 0.05771835148334503, 0.000889451417606324, 0.048732589930295944,
- 0.06645797938108444, -0.034858088940382004, 0.02943032793700695, -0.030845550820231438,
- -0.05622466281056404, 0.029247507452964783, 0.013478281907737255, 0.01561304647475481,
- 0.08948493748903275, 0.16859905421733856, -0.017132746055722237, -0.006639588624238968,
- -0.05239918455481529, 0.0502232164144516, 0.11007968336343765, -0.031757574528455734,
- 0.017071546986699104, 0.002338012447580695, 0.00344679388217628, -0.006887864787131548,
- -0.040419112890958786, -0.07610612362623215, -0.0353829599916935, -0.05181039497256279,
- 0.10476507991552353, 0.03011980652809143, -0.05625816807150841, -0.16349713504314423,
- -0.007187763229012489, -0.0606856644153595, 0.020971355959773064, 0.11795148998498917,
- -0.06099129840731621, 0.03970474377274513, -0.009367569349706173, -0.016112277284264565,
- -0.005197734571993351, -0.054677754640579224, 0.01394550409168005, -0.05983505770564079,
- 0.043940722942352295, 0.0585116483271122, 0.03739504516124725, -0.08199317008256912,
- 0.08107519149780273, -0.10578560829162598, 0.07999863475561142, -0.01319310162216425,
- -0.025382474064826965, -0.02292236126959324, -0.02960113249719143, 0.0280594602227211,
- 0.008677604608237743, -0.03776838257908821, 0.0030961844604462385, 0.00985743384808302,
- -0.043445292860269547, -0.07785587757825851, -0.06092097982764244, -0.01949232816696167,
- -0.061244141310453415, 0.04959530755877495, -0.05543333664536476, 0.031444307416677475,
- -0.00031897384906187654, -0.024702349677681923, -0.025353929027915,
- 0.028416937217116356, -0.016016775742173195, -0.16238443553447723, 0.010840612463653088,
- 0.003905265824869275, 0.07073532789945602, -0.007212984841316938, -0.035011567175388336,
- 0.018976636230945587, 0.10536462068557739, 0.040343720465898514, -0.03810349479317665,
- 0.024075118824839592, -0.04471280053257942, 0.047672439366579056, -0.11685926467180252,
- -0.4850558340549469, 0.04486856982111931, 0.05144676938652992, 0.025576571002602577,
- 0.02209468185901642, -0.08799296617507935, 0.052893515676259995, -0.012420023791491985,
- -0.059916138648986816, 0.0572020560503006, -0.05707186460494995, 0.0435967892408371,
- -0.03699500486254692, -0.07409847527742386, -0.024998679757118225,
- -0.049053292721509933, -0.04443703591823578, 0.04472211375832558, -0.04565708339214325,
- -0.03350025415420532, -0.1148591861128807, 0.024618729948997498, 0.014622855931520462,
- 0.009098846465349197, 0.0250565055757761, 0.031604938209056854, -0.07027726620435715,
- -0.03887898847460747, 0.03332178667187691, 0.06949298083782196, 0.03460456058382988,
- -0.06235957145690918, 0.004806114826351404, 0.06172093749046326, -0.001959408400580287,
- 0.10645586252212524, 0.0080398665741086, -0.013537888415157795, -0.07040651887655258,
- 0.06807905435562134, 0.05085711181163788, 0.18506567180156708, 0.00455700745806098,
- 0.045393865555524826, 0.04529334232211113, 0.1319969743490219, 0.041101980954408646,
- 0.0011793655576184392, -0.027501428499817848, 0.02034645527601242, 0.033465687185525894,
- 0.00190690066665411, 0.06157104671001434, -0.061276208609342575, -0.01659185253083706,
- -0.03423479571938515, -0.02698790840804577, -0.015765905380249023, -0.03815638646483421,
- 0.21059052646160126, 0.006765108555555344, 0.03768853098154068, 0.011455685831606388,
- -0.044046252965927124, 0.012494738213717937, -0.08480995893478394, -0.08637670427560806,
- -0.01209249347448349, 0.005542605649679899, 0.016403313726186752, -0.045518096536397934,
- -0.08787479996681213, -0.013350884430110455, -0.013662480749189854,
- 0.004255685489624739, 0.10409948974847794, -0.02725353091955185, 0.02171889878809452,
- -0.036497268825769424, 0.14556725323200226, 0.02768034301698208, 0.02259444259107113,
- 0.037526123225688934, 0.08620193600654602, 0.010905926115810871, 0.02161272056400776,
- -0.04816468432545662, -0.07002728432416916, -0.008603798225522041, 0.13901162147521973,
- -0.02553149126470089, 0.1468815803527832, 0.049254219979047775, -0.047785740345716476,
- -0.03359806165099144, 0.03479921817779541, -0.006892543286085129, 0.008104522712528706,
- -0.47587820887565613, -0.030369462445378304, 0.09390008449554443, 0.02038213610649109,
- 0.011768460273742676, 0.08914738893508911, 0.037938445806503296, -0.03997189179062843,
- -0.03118051402270794, -0.10243108123540878, 0.11008889228105545, 0.014904678799211979,
- 0.02690006047487259, -0.09170285612344742, 0.05050060153007507, 0.06863626092672348,
- -0.03077639453113079, -0.023313961923122406, 0.04465514048933983, -0.19706790149211884,
- 0.007701031398028135, -0.019644474610686302, 0.13121646642684937, 0.0056799971498548985,
- 0.014531008899211884, 0.09508264064788818, -0.04491749778389931, 0.005415951367467642,
- 0.03436635807156563, -0.00035073779872618616, 0.042759668081998825,
- -0.010907025076448917, -0.0325402207672596, 0.08078809827566147, 0.09257036447525024,
- 0.1100800558924675, -0.011424526572227478, 12.053832054138184, 0.06182970479130745,
- 0.06337190419435501, -0.08818331360816956, 0.01295415684580803, -0.03765881806612015,
- 0.018529696390032768, -0.09605409950017929, 0.07422521710395813, 0.11337430030107498,
- -0.018759628757834435, -0.029612617567181587, -0.04371493682265282,
- -0.09405332803726196, 0.0054393126629292965, -0.0296806450933218, -0.07310271263122559,
- -0.06091757118701935, 0.04429927468299866, -0.04180809482932091, -0.03918684646487236,
- 0.06163370609283447, 0.0710393488407135, 0.009772386401891708, -0.040527936071157455,
- 0.00519345561042428, 0.013602224178612232, -0.012366906739771366, -0.005033144727349281,
- 0.007293248549103737, 0.01649007759988308, 0.04622986912727356, 0.0539950467646122,
- 0.005729099735617638, 0.045712728053331375, 0.04418613389134407, 0.07094753533601761,
- 0.022395454347133636, 0.026598460972309113, 0.05519530177116394, 0.006991209927946329,
- 0.005535768810659647, 0.02061919867992401, 0.044198695570230484, 0.06693417578935623,
- 0.046102624386548996, 0.02647269330918789, 0.11341136693954468, 0.034703467041254044,
- 0.07993405312299728, 0.10686991363763809, -0.03586820140480995, 0.12559670209884644,
- 0.027289606630802155, -0.00507625937461853, 0.04518115520477295, -0.03489958867430687,
- -0.09323596954345703, 0.06314195692539215, 0.014105375856161118, -0.06829579174518585,
- 0.11133592575788498, 0.026869604364037514, 0.10286255925893784, -0.010711134411394596,
- 0.0882880762219429, 0.07741305977106094, 0.0715632513165474, -0.12293466180562973,
- -0.06089229881763458, 0.02819572389125824, -0.0777643695473671, -0.0938972756266594,
- 0.04349737986922264, 0.10112615674734116, -0.03800687566399574, 0.04672786220908165,
- -0.006746460217982531, 0.04074403643608093, 0.004115317482501268, -0.009331141598522663,
- 0.039909061044454575, -0.00372335291467607, -0.006457009818404913, 0.06899504363536835,
- -0.00433399248868227, 0.032389383763074875, 0.11902571469545364, -0.01514811348170042,
- -0.11899161338806152, -0.08487847447395325, 0.08930200338363647, 0.0028848859947174788,
- -0.060009490698575974, 0.015336890704929829, -0.08041929453611374, 0.006749572232365608,
- -0.17489172518253326, 0.06852330267429352, 0.1152678057551384, -0.0907655879855156,
- -0.019395237788558006, -0.004959765821695328, 0.07746157795190811, 0.013646252453327179,
- 0.005515709985047579, -0.06087599694728851, 0.03589417040348053, -0.03162935748696327,
- 0.04220740124583244, -0.05010989308357239, 0.07599662989377975, 0.08300353586673737,
- -0.04019590839743614, 0.016520269215106964, 0.058661993592977524, -0.00675929756835103,
- -0.03994849696755409, 0.046199869364500046, 0.026757292449474335, -0.06888196617364883,
- -0.023609191179275513, -0.04244517907500267, -0.026215560734272003,
- -0.00670865410938859, -0.03800639137625694, -0.008041193708777428, 0.020732607692480087,
- -0.04979059472680092, 0.00813593715429306, 0.05290807783603668, 0.0625481829047203,
- 0.1006489172577858, -0.006878107786178589, 0.0521966852247715, -0.044708769768476486,
- -0.027987724170088768, 0.049736518412828445, 0.038697924464941025, 0.0489078052341938,
- -0.035768598318099976, -0.05566631257534027, -0.06501954048871994, -0.10995325446128845,
- 0.03454503417015076, 0.0873313918709755, 0.058635909110307693, 0.03259079530835152,
- -0.010606235824525356, -0.0744454637169838, -0.01058876607567072, 0.09132484346628189,
- 0.029749711975455284, 0.020252445712685585, 0.009633752517402172, -0.05007574334740639,
- -0.05336745083332062, 0.08040490001440048, -0.02937922067940235, -0.018804563209414482,
- 0.031086506322026253, -0.061079587787389755, 0.10350785404443741, 0.08139143884181976,
- 0.030939390882849693, 0.034924425184726715, 0.016622411087155342, 0.01871764473617077,
- 0.01372770220041275, 0.009654988534748554, -0.00167891476303339, -0.0412672683596611,
- -0.10081363469362259, -0.05269717797636986, 0.04958696663379669, 0.11872496455907822,
- 0.0727042406797409, -0.09309318661689758, -0.016395002603530884, -0.023679839447140694
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 15,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 19,
- "similarity": 0.9990130662918091
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 1,
- "similarity": 0.9989638924598694
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 7,
- "similarity": 0.9989620447158813
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": [
- "Fae Sutherland",
- "Melissa Blue",
- "Sarah Rees Brennan",
- "Bev Stephans",
- "Jo Bourne",
- "Nora Bombay",
- "Jim Moores",
- "Lisa Marie Rice"
- ],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 81,
- "source_domain": "dearauthor.com",
- "submitters": ["Catherine Olsson"],
- "title": "Amazon Censors Its Rankings \u0026 Search Results to Protect Us Against GLBT Books",
- "url": "https://dearauthor.com/features/letters-of-opinion/amazon-censors-its-rankings-search-results-to-protect-us-against-glbt-books/"
- },
- {
- "__typename": "Report",
- "authors": ["Amy Martinez"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 80,
- "source_domain": "seattletimes.com",
- "submitters": ["Catherine Olsson"],
- "title": "Amazon.com says it has fixed error that removed gay, lesbian sales rankings",
- "url": "https://www.seattletimes.com/business/amazoncom-says-it-has-fixed-error-that-removed-gay-lesbian-sales-rankings/"
- },
- {
- "__typename": "Report",
- "authors": ["Associated Press"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 79,
- "source_domain": "independent.co.uk",
- "submitters": ["Catherine Olsson"],
- "title": "Sales rank purged from Amazon",
- "url": "https://www.independent.co.uk/life-style/gadgets-and-tech/news/sales-rank-purged-from-amazon-1668375.html"
- },
- {
- "__typename": "Report",
- "authors": ["Japhy Grant"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 78,
- "source_domain": "queerty.com",
- "submitters": ["Catherine Olsson"],
- "title": "Why We’re Not Buying Amazon’s Gay Book ‘Glitch’",
- "url": "https://www.queerty.com/amazon-says-sorry-for-delisting-gay-books-twitter-doesnt-care-20090413"
- },
- {
- "__typename": "Report",
- "authors": ["Steven Musil"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 77,
- "source_domain": "cnet.com",
- "submitters": ["Catherine Olsson"],
- "title": "Amazon criticized for deranking 'adult' books",
- "url": "https://www.cnet.com/news/amazon-criticized-for-deranking-adult-books/"
- },
- {
- "__typename": "Report",
- "authors": ["Laura Northrup"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 76,
- "source_domain": "consumerist.com",
- "submitters": ["Catherine Olsson"],
- "title": "Gay and Lesbian Books Lose Amazon Sales Rank For Some Reason",
- "url": "https://consumerist.com/2009/04/13/gay-and-lesbian-books-lose-amazon-sales-rank-for-some-reason/"
- },
- {
- "__typename": "Report",
- "authors": ["Paul Armstrong"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 75,
- "source_domain": "edition.cnn.com",
- "submitters": ["Catherine Olsson"],
- "title": "Amazon: 'Glitch' caused gay censorship error",
- "url": "http://edition.cnn.com/2009/TECH/04/14/amazon.gay.lesbian.ranking/"
- },
- {
- "__typename": "Report",
- "authors": ["Jon Carroll"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 74,
- "source_domain": "sfgate.com",
- "submitters": ["Catherine Olsson"],
- "title": "The Amazon affair",
- "url": "https://www.sfgate.com/entertainment/article/The-Amazon-affair-3164807.php"
- },
- {
- "__typename": "Report",
- "authors": ["Forum"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 73,
- "source_domain": "whyweprotest.net",
- "submitters": ["Catherine Olsson"],
- "title": "Amazon removing \"adult\" (read gay) books from searches",
- "url": "https://whyweprotest.net/threads/amazon-removing-adult-read-gay-books-from-searches.37912/"
- },
- {
- "__typename": "Report",
- "authors": ["Nouse"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 72,
- "source_domain": "nouse.co.uk",
- "submitters": ["Catherine Olsson"],
- "title": "Amazon censoring books with Adult Content? Feels like the 1950s...",
- "url": "https://nouse.co.uk/2009/04/18/amazon-censoring-books-with-%E2%80%9Cadult-content%E2%80%9D-feels-like-the-1950s"
- },
- {
- "__typename": "Report",
- "authors": ["Kathy E. Gill"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 70,
- "source_domain": "wiredpen.com",
- "submitters": ["Catherine Olsson"],
- "title": "#AmazonFail : Why Did Amazon.com Delist Gay, Lesbian Books?",
- "url": "https://wiredpen.com/2009/04/12/amazonfail/"
- },
- {
- "__typename": "Report",
- "authors": ["Bobbie Johnson", "Helen Pidd", "Zoe Margolis"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 69,
- "source_domain": "theguardian.com",
- "submitters": ["Catherine Olsson"],
- "title": "'Gay writing' falls foul of Amazon sales ranking system",
- "url": "https://www.theguardian.com/culture/2009/apr/13/amazon-gay-writers"
- },
- {
- "__typename": "Report",
- "authors": ["Edward Champion"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 68,
- "source_domain": "edrants.com",
- "submitters": ["Catherine Olsson"],
- "title": "Amazonfail: A Call to Boycott Amazon",
- "url": "http://www.edrants.com/amazonfail-a-call-to-boycott-amazon/comment-page-1/"
- },
- {
- "__typename": "Report",
- "authors": ["Danny O'Brien"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 67,
- "source_domain": "irishtimes.com",
- "submitters": ["Catherine Olsson"],
- "title": "Lessons to be learnt from 'Amazonfail' censorship row",
- "url": "https://www.irishtimes.com/business/lessons-to-be-learnt-from-amazonfail-censorship-row-1.752161"
- },
- {
- "__typename": "Report",
- "authors": ["Annie Palmer"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 66,
- "source_domain": "dailymail.co.uk",
- "submitters": ["Catherine Olsson"],
- "title": "Amazon hides erotic novels from appearing in its search results",
- "url": "https://www.dailymail.co.uk/sciencetech/article-5560037/Amazon-hides-erotic-novels-appearing-search-results-make-site-safe-work.html"
- },
- {
- "__typename": "Report",
- "authors": ["Lisa Devaney"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 65,
- "source_domain": "digitaljournal.com",
- "submitters": ["Catherine Olsson"],
- "title": "Author Zoe Margolis Replies to Amazon's alleged censorship",
- "url": "http://www.digitaljournal.com/article/270891"
- },
- {
- "__typename": "Report",
- "authors": ["Motoko Rich"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 64,
- "source_domain": "nytimes.com",
- "submitters": ["Catherine Olsson"],
- "title": "The New York Times",
- "url": "https://www.nytimes.com/2009/04/14/technology/internet/14amazon.html"
- },
- {
- "__typename": "Report",
- "authors": ["Carolyn Kellogg"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 63,
- "source_domain": "latimesblogs.latimes.com",
- "submitters": ["Catherine Olsson"],
- "title": "Amazon de-ranks so-called adult books, including National Book Award winner",
- "url": "https://latimesblogs.latimes.com/jacketcopy/2009/04/amazon-deranks-gayfriendly-books-the-twitterverse-notices.html"
- },
- {
- "__typename": "Report",
- "authors": ["Wikinews"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 62,
- "source_domain": "en.wikinews.org",
- "submitters": ["Catherine Olsson"],
- "title": "Amazon.com de-ranks LGBT books, blames \"glitch\"",
- "url": "https://en.wikinews.org/wiki/Amazon.com_de-ranks_LGBT_books,_blames_%22glitch%22"
- },
- {
- "__typename": "Report",
- "authors": ["Dan Goodin"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 61,
- "source_domain": "theregister.co.uk",
- "submitters": ["Catherine Olsson"],
- "title": "Conspiracy theories aplenty as Amazon delists gay books",
- "url": "https://www.theregister.co.uk/2009/04/14/amazon_book_delisting/"
- },
- {
- "__typename": "Report",
- "authors": ["Owen Thomas"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 60,
- "source_domain": "gawker.com",
- "submitters": ["Catherine Olsson"],
- "title": "Amazon.com Says 'Embarrassing' Error, Not Hacker, Censored 57,310 Gay Books",
- "url": "https://gawker.com/5210653/amazoncom-says-embarrassing-error-not-hacker-censored-57310-gay-books"
- },
- {
- "__typename": "Report",
- "authors": ["Chris Snyder"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 59,
- "source_domain": "wired.com",
- "submitters": ["Catherine Olsson"],
- "title": "Amazon 'Glitch' Delists Gay-Themed Books, Interwebs Cry Foul",
- "url": "https://www.wired.com/2009/04/amazon-sales-ra/"
- },
- {
- "__typename": "Report",
- "authors": ["Meta Writer"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 58,
- "source_domain": "meta-writer.livejournal.com",
- "submitters": ["Catherine Olsson"],
- "title": "Amazon Censorship - Who is affected?",
- "url": "https://meta-writer.livejournal.com/11992.html"
- },
- {
- "__typename": "Report",
- "authors": ["Emma Ruby-Sachs"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 57,
- "source_domain": "huffingtonpost.com",
- "submitters": ["Catherine Olsson"],
- "title": "Amazon Censors Gay Books",
- "url": "https://www.huffingtonpost.com/emma-rubysachs/amazon-censors-gay-books_b_186153.html"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "google",
- "name": "Google"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "google",
- "name": "Google"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "black-people",
- "name": "Black People"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [
- 1370, 1369, 105, 104, 103, 102, 101, 100, 99, 98, 96, 95, 93, 92, 91, 90, 89, 88, 87,
- 86, 85, 84, 83
- ],
- "vector": [
- -0.051503099501132965, 0.048117782920598984, 0.007358178496360779, -0.10423984378576279,
- 0.10722922533750534, -0.040674854069948196, -0.0035654183011502028, 0.05289492756128311,
- 0.03062761388719082, -0.13417963683605194, 0.014803623780608177, 0.05321385711431503,
- 0.020848704501986504, -0.05491350591182709, 0.023225359618663788, -0.05299665033817291,
- -0.08905620872974396, -0.056210316717624664, -0.011505908332765102,
- -0.09579528123140335, -0.05341023951768875, -0.004016597289592028, 0.051384087651968,
- 0.08984055370092392, -0.037065617740154266, 0.01860898733139038, 0.10152281075716019,
- 0.0941510796546936, -0.04618561640381813, 0.040096912533044815, -0.020777270197868347,
- -0.056017596274614334, 0.10789928585290909, 0.008275122381746769, 0.031632810831069946,
- 0.052592091262340546, 0.030568091198801994, -0.007591055706143379, -0.05150948464870453,
- 0.008371586911380291, -0.01732012629508972, 0.16455480456352234, 0.013610404916107655,
- -0.018765628337860107, 0.0549948625266552, -0.011438826099038124, 0.018880216404795647,
- 0.05602940917015076, 0.012831049039959908, 0.013528096489608288, -0.034227967262268066,
- 0.034200094640254974, -0.044258009642362595, 0.01714184507727623, -0.11120203137397766,
- 0.047875165939331055, 0.03620675951242447, 0.023411380127072334, 0.04491522163152695,
- -0.05360378324985504, -0.017488669604063034, -0.16931302845478058, -0.0581226721405983,
- -0.04849720001220703, 0.06333591789007187, -0.055242057889699936, -0.02435837872326374,
- 0.012745353393256664, 0.020849842578172684, 0.04482383653521538, 0.04867209121584892,
- -0.055559705942869186, -0.025966258719563484, -0.029434597119688988,
- -0.0034865480847656727, -0.0117795430123806, 0.03614542633295059, 0.2181260883808136,
- -0.10207069665193558, 0.0007926797261461616, 0.10359078645706177, -0.09940976649522781,
- 0.342805415391922, 0.015248451381921768, -0.023370465263724327, -0.011321770958602428,
- 0.08976658433675766, 0.009629935957491398, 0.027457188814878464, 0.030051475390791893,
- 0.003173436736688018, 0.04965326935052872, -0.05388409271836281, 0.003946374636143446,
- 0.03773060441017151, 0.028307264670729637, -0.02430623024702072, -0.04303766414523125,
- 0.010362896136939526, -0.05180518701672554, 0.0015525271883234382,
- -0.031512800604104996, 0.12745270133018494, 0.05559094622731209, -0.027487967163324356,
- -0.004625823348760605, 0.08292792737483978, -0.037122875452041626, 0.05499215051531792,
- -0.07211989164352417, 0.015332380309700966, -0.006666351109743118, 0.07221361249685287,
- 0.0018731566378846765, 0.0645466297864914, -0.044186536222696304, 0.004629926756024361,
- 0.043674930930137634, 0.09173278510570526, 0.033784814178943634, 0.012281483970582485,
- 0.08590741455554962, 0.057363659143447876, -0.04183659702539444, 0.003895566798746586,
- -0.023770933970808983, -0.050091348588466644, -0.00016329259960912168,
- -0.040259506553411484, 0.058978546410799026, -0.05635854974389076, -0.18824519217014313,
- 0.016716208308935165, 0.06972236931324005, -0.02703414484858513, -0.03358997404575348,
- 0.044426556676626205, -0.044854532927274704, 0.05611736699938774, -0.032397039234638214,
- -0.055181171745061874, 0.08121182769536972, 0.038471534848213196, 0.059726882725954056,
- 0.0901019275188446, 0.050978582352399826, -0.026641711592674255, -0.06524799019098282,
- -0.009362516924738884, -0.049733616411685944, 0.0827103704214096, -0.11580514907836914,
- -0.029456814751029015, -0.018107151612639427, -0.018471762537956238, 0.6319846510887146,
- 0.09978162497282028, 0.1418217122554779, 0.007987696677446365, -0.015525507740676403,
- 0.16288603842258453, -0.041254304349422455, 0.06918248534202576, -0.06452678143978119,
- -0.05117005854845047, 0.04412677139043808, -0.06820545345544815, -0.04069846495985985,
- 0.02805529721081257, 0.0323714055120945, 0.08427809923887253, 0.03910038247704506,
- 0.09306827932596207, 0.01052576582878828, -0.11479923129081726, -0.03382803127169609,
- 0.041990727186203, -0.009959699586033821, -0.1295447051525116, -0.04155033826828003,
- 0.04988914355635643, 0.08401527255773544, -0.0789482519030571, 0.02379545383155346,
- -0.06453533470630646, 0.0461629219353199, -0.015510576777160168, 0.050474222749471664,
- -0.018275795504450798, 0.031601741909980774, 0.026143668219447136, 0.02503534033894539,
- -0.012742760591208935, -0.0782330259680748, -0.024839719757437706, 0.1229657530784607,
- -0.03043009154498577, -0.02529783919453621, 0.09028156101703644, -0.07285043597221375,
- 0.033969417214393616, -0.018383288756012917, 0.11771383136510849, -0.11931809037923813,
- 0.02113446407020092, 0.011134686879813671, 0.008950172923505306, 0.04349357262253761,
- -0.03289223834872246, -0.08307594060897827, -0.047354601323604584, 0.09303474426269531,
- 0.007897873409092426, 0.03941378742456436, 0.03719354420900345, -0.048203177750110626,
- 0.01691710390150547, 0.055793922394514084, -0.013899625279009342, -0.033825453370809555,
- 0.06626862287521362, 0.06603772938251495, -0.04895501211285591, -0.04845663905143738,
- 0.04273106902837753, 0.06228993088006973, 0.021027565002441406, -0.007044090423732996,
- 0.0426417700946331, 0.026143206283450127, -0.03946402296423912, 0.04422366991639137,
- 0.010725894011557102, 0.036578647792339325, 0.0840960144996643, -0.07124588638544083,
- -0.037836216390132904, -0.02590321935713291, -0.01584809646010399, 0.019376615062355995,
- -0.04764216020703316, 0.07609106600284576, 0.07413353770971298, 0.04401535168290138,
- 0.02914353273808956, 0.030055779963731766, 0.05118768289685249, 0.031048189848661423,
- 0.00788981281220913, 0.08753117173910141, -0.023206746205687523, -0.0684429332613945,
- -0.021326687186956406, -0.00819357205182314, 0.0565953254699707, 0.03149031847715378,
- -0.04577568918466568, -0.02714996039867401, 0.00414600083604455, -0.012633711099624634,
- -0.06694358587265015, -0.017566464841365814, 0.0556790828704834, 0.02808460406959057,
- -0.03054833598434925, -0.09257104247808456, -0.06738533079624176, 0.0020224512554705143,
- 0.05539479851722717, -0.0545620396733284, -0.002246940042823553, -0.08636870980262756,
- 0.003804383799433708, -0.025797300040721893, 0.04385380074381828, -0.01723477803170681,
- 0.01944064535200596, -0.012556907720863819, -0.0723494216799736, 0.029776383191347122,
- -0.009216335602104664, 0.015362394973635674, -0.04591533914208412, -0.07236392796039581,
- -0.05243496969342232, -0.010194279253482819, -0.009023301303386688,
- 0.007132296916097403, 0.056283287703990936, 0.05012156069278717, 0.02895280532538891,
- 0.0053243981674313545, -0.014871164225041866, 0.04552614688873291, -0.03832259401679039,
- -0.024874627590179443, 0.07156597822904587, -0.005167091730982065, 0.024045933037996292,
- -0.002130194567143917, -0.07486168295145035, -0.03554655238986015, 0.007280399091541767,
- -0.024081408977508545, 0.04487549141049385, -0.02180817537009716, 0.027199439704418182,
- -0.05220630764961243, -0.03454688936471939, 0.06233391538262367, -0.059287890791893005,
- -0.055255621671676636, -0.07532300055027008, 0.10559320449829102, 0.0031410909723490477,
- 0.00024750232114456594, 0.015572590753436089, -0.04143775627017021,
- 0.044428251683712006, -0.03348015621304512, -0.01598048396408558, 0.007023585960268974,
- 0.05863520875573158, -0.002014875179156661, 0.002202174859121442, 0.054026614874601364,
- -0.011382381431758404, 0.007108339108526707, 0.07471243292093277, 0.42766112089157104,
- -0.2383633553981781, 0.06367524713277817, 0.08581539988517761, -0.00565447099506855,
- 0.05771602317690849, -0.029131589457392693, 0.08858754485845566, 0.06068543717265129,
- 0.09636923670768738, 0.08614448457956314, -0.03197746351361275, -0.001797487260773778,
- -0.058166030794382095, 0.08563818782567978, 0.019316472113132477, 0.0314575731754303,
- -0.011051440611481667, -0.0321708582341671, -0.02180851809680462, 0.006993016693741083,
- -0.04567060247063637, 0.003611369989812374, -0.010101964697241783,
- -0.041262269020080566, 0.003937159664928913, 0.04013117775321007, 0.04806506633758545,
- -0.028990035876631737, 0.029200872406363487, -0.01053187157958746, 0.024177685379981995,
- 0.04798295721411705, 0.04350484907627106, -0.09122371673583984, 0.03960653394460678,
- -0.07123595476150513, -0.08033681660890579, 0.06168539077043533, -0.0029528627637773752,
- 0.06126375123858452, 0.03774677962064743, -0.0007700413698330522, 0.01986871473491192,
- -0.021861182525753975, -0.045800138264894485, 0.00003108386226813309,
- 0.05882616713643074, 0.02569514699280262, 0.07353680580854416, 0.1517370194196701,
- -0.0314314030110836, -0.03282137215137482, -0.07518048584461212, 0.054278094321489334,
- 0.14614379405975342, -0.03056730329990387, 0.011262889951467514, -0.017522413283586502,
- -0.028565967455506325, -0.0034200367517769337, -0.04081355035305023,
- -0.09264946728944778, -0.012314962223172188, -0.02504204586148262, 0.0911809429526329,
- 0.024356069043278694, -0.040820587426424026, -0.1625021994113922, -0.05329630523920059,
- -0.02737131342291832, 0.00943351723253727, 0.1026906743645668, -0.0700308158993721,
- 0.01647348515689373, -0.002876769518479705, 0.007512203883379698, -0.009817796759307384,
- -0.09732804447412491, -0.014055507257580757, -0.05349550023674965, 0.04446730390191078,
- 0.04416230320930481, 0.05806603655219078, -0.03782831132411957, 0.04874777793884277,
- -0.09269923716783524, 0.06648515909910202, 0.010859786532819271, -0.022334931418299675,
- 0.016962336376309395, -0.0263332799077034, 0.04361672326922417, 0.026392478495836258,
- -0.04463069513440132, 0.000405478582251817, -0.015308002009987831, -0.02348695881664753,
- -0.05598374083638191, -0.05938778817653656, -0.04070339724421501, -0.0853385180234909,
- 0.027413466945290565, -0.09919992834329605, -0.015947634354233742,
- -0.024530794471502304, -0.0026575555093586445, 0.003857225878164172,
- 0.04484635218977928, 0.012148072943091393, -0.12536118924617767, 0.006539503578096628,
- 0.013042585924267769, 0.0521022193133831, -0.02737836167216301, -0.058118559420108795,
- 0.02709478698670864, 0.08680358529090881, 0.055893223732709885, -0.03196972608566284,
- 0.005396978929638863, -0.049830302596092224, 0.0739915668964386, -0.1008315160870552,
- -0.5333501100540161, 0.04759052395820618, 0.027811890468001366, 0.02050703391432762,
- 0.019204895943403244, -0.06806972622871399, 0.055612776428461075, -0.002704548416659236,
- -0.018942665308713913, 0.0745035707950592, -0.039444781839847565, 0.03114883042871952,
- -0.015998655930161476, -0.03506641834974289, 0.004739925730973482,
- -0.060950957238674164, -0.07534746825695038, 0.04281243681907654, -0.01842840574681759,
- -0.034789592027664185, -0.06326279044151306, -0.0015406148741021752,
- -0.0036566017661243677, 0.018328355625271797, 0.01267279777675867, 0.004306294955313206,
- -0.05088816583156586, -0.06073368713259697, 0.05604572221636772, 0.06306834518909454,
- 0.02930932678282261, -0.06087099015712738, -0.008465380407869816, 0.06665889918804169,
- 0.01987309381365776, 0.11364581435918808, 0.018732594326138496, -0.028956055641174316,
- -0.05736541748046875, 0.06931554526090622, 0.053030792623758316, 0.18770913779735565,
- -0.007684669923037291, 0.05584573745727539, -0.000820864166598767, 0.1372060924768448,
- 0.05616576597094536, 0.007429051678627729, -0.029037728905677795, -0.00865691713988781,
- 0.03241593763232231, 0.0036807393189519644, 0.06020759418606758, -0.07254869490861893,
- -0.02450402081012726, -0.03658243268728256, -0.016359996050596237,
- -0.056503891944885254, 0.010329700075089931, 0.19945956766605377, 0.004100400023162365,
- 0.01265710312873125, 0.0012937142746523023, -0.042021360248327255, 0.010934429243206978,
- -0.10163477063179016, -0.042203038930892944, -0.0065145972184836864,
- 0.003551499918103218, -0.0066248890943825245, -0.044281601905822754,
- -0.0997108444571495, -0.003865985432639718, 0.0007324332254938781,
- -0.007943060249090195, 0.09679807722568512, -0.014037867076694965, 0.042018309235572815,
- -0.04050638899207115, 0.13593006134033203, 0.008804083801805973, 0.02177419885993004,
- 0.0652698427438736, 0.09129258990287781, 0.02024172618985176, 0.0011534146033227444,
- -0.05371493846178055, -0.04074188321828842, -0.03036506474018097, 0.14021098613739014,
- -0.033912543207407, 0.13772958517074585, 0.024335749447345734, -0.0406770333647728,
- -0.025007765740156174, -0.0018636881140992045, 0.0075110807083547115,
- 0.019133903086185455, -0.5009574294090271, 0.006348407827317715, 0.11586620658636093,
- 0.007187734358012676, 0.029735280200839043, 0.08599352836608887, 0.011379307135939598,
- -0.027532683685421944, -0.031860195100307465, -0.07255804538726807, 0.11722896248102188,
- -0.020886201411485672, 0.06982991099357605, -0.11180281639099121, 0.046283137053251266,
- 0.08757393062114716, -0.029796501621603966, -0.002598607912659645, 0.03548067435622215,
- -0.23778808116912842, -0.011881367303431034, -0.040306270122528076, 0.1274327039718628,
- 0.042515289038419724, 0.03948631137609482, 0.08607124537229538, -0.062102142721414566,
- 0.023674873635172844, 0.028248045593500137, 0.016430899500846863, 0.044025689363479614,
- 0.001249662833288312, -0.011860310100018978, 0.09780656546354294, 0.09177765995264053,
- 0.09448999911546707, -0.026351453736424446, 11.896552085876465, 0.026701906695961952,
- 0.07324030250310898, -0.07909838855266571, 0.0031620869413018227, -0.06119142845273018,
- 0.01909453235566616, -0.08033397793769836, 0.09688439220190048, 0.11651478707790375,
- -0.005301170516759157, -0.017883656546473503, -0.04056569188833237,
- -0.08868668228387833, 0.02009536698460579, -0.05213138833642006, -0.0465085543692112,
- -0.04910624027252197, 0.04961384832859039, -0.05561087280511856, -0.01827332004904747,
- 0.07862261682748795, 0.08963242918252945, 0.023612594231963158, -0.06820515543222427,
- 0.020637836307287216, 0.018923548981547356, -0.015691103413701057, 0.01584603823721409,
- 0.04083903133869171, 0.005966374184936285, 0.05768203362822533, 0.05257289484143257,
- 0.013908707536756992, -0.0017841265071183443, 0.04828684777021408, 0.038171280175447464,
- 0.03718430921435356, 0.0012927360367029905, 0.06966821849346161, 0.017722124233841896,
- 0.004689035005867481, 0.011566040106117725, 0.015550520271062851, 0.051334019750356674,
- 0.056720469146966934, 0.048462122678756714, 0.11283008754253387, 0.0038087349385023117,
- 0.06169461831450462, 0.09597434103488922, -0.04358147084712982, 0.10672924667596817,
- -0.00850308034569025, -0.014794701710343361, 0.04844815656542778,
- 0.00036766380071640015, -0.06065891683101654, 0.06714177876710892, 0.014674901962280273,
- -0.04168016090989113, 0.10742121934890747, 0.01567705348134041, 0.09778402000665665,
- -0.023746497929096222, 0.048092734068632126, 0.05171496421098709, 0.06456999480724335,
- -0.06336826086044312, -0.06361936777830124, 0.04060731083154678, -0.09868708997964859,
- -0.07144788652658463, 0.05837681144475937, 0.07866911590099335, -0.032969046384096146,
- 0.048998378217220306, -0.04990215227007866, 0.04895680025219917, -0.015596972778439522,
- 0.01503635011613369, 0.04243168979883194, -0.025602126494050026, 0.010544264689087868,
- 0.03818085044622421, 0.035710085183382034, 0.05942487716674805, 0.12154769897460938,
- 0.006552840117365122, -0.07527945935726166, -0.10827205330133438, 0.11408891528844833,
- -0.031318601220846176, -0.050941597670316696, 0.01796385459601879,
- -0.055725228041410446, 0.025736909359693527, -0.1549237221479416, 0.07475262880325317,
- 0.12429288029670715, -0.07333305478096008, -0.024372251704335213, -0.008814439177513123,
- 0.07618030160665512, -0.02539992332458496, 0.027380775660276413, -0.06917345523834229,
- 0.015551799908280373, 0.017250102013349533, 0.04995947703719139, -0.03076537512242794,
- 0.007344141136854887, 0.06400894373655319, -0.05930410325527191, 0.02101602964103222,
- 0.06352879106998444, -0.03278166055679321, -0.025834348052740097, 0.057536642998456955,
- 0.03592763468623161, -0.0882168784737587, -0.04485525190830231, -0.039990078657865524,
- -0.03247034177184105, 0.0021859421394765377, -0.06362611055374146, 0.006376145873218775,
- 0.006447021849453449, -0.00629050238057971, -0.021260220557451248, 0.04178130254149437,
- 0.05934636667370796, 0.0668702945113182, -0.0053604962304234505, 0.06662441045045853,
- -0.02891780249774456, -0.030522514134645462, 0.03841589763760567, 0.07178830355405807,
- 0.10191691666841507, -0.08620843291282654, -0.04237694293260574, -0.041069600731134415,
- -0.11840031296014786, 0.022232968360185623, 0.07430654764175415, 0.06613657623529434,
- 0.01843341812491417, 0.016548670828342438, -0.0764431282877922, -0.001875734538771212,
- 0.09203153103590012, 0.009105108678340912, 0.0046114507131278515, -0.004762183874845505,
- -0.050858885049819946, -0.024895740672945976, 0.08066103607416153, -0.02162332460284233,
- -0.013188212178647518, 0.01618201658129692, -0.08465935289859772, 0.07527428865432739,
- 0.08924352377653122, 0.020511509850621223, 0.006756860762834549, 0.0083226403221488,
- 0.0020585828460752964, 0.03943431377410889, 0.002389743225648999, 0.03780775144696236,
- -0.013145280070602894, -0.12803684175014496, -0.07405786216259003, 0.021984416991472244,
- 0.08752834051847458, 0.07728761434555054, -0.13225612044334412, -0.02523518167436123,
- -0.018153170123696327
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 16,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 53,
- "similarity": 0.9994699954986572
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 60,
- "similarity": 0.9992568492889404
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 68,
- "similarity": 0.9991583228111267
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Jana Kasperkevic"],
- "epoch_date_downloaded": 1603756800,
- "epoch_date_modified": 1661126400,
- "epoch_date_submitted": 1607299200,
- "flag": null,
- "report_number": 1370,
- "source_domain": "theguardian.com",
- "submitters": ["Patrick Hall (BNH.ai)", "CSET annotators"],
- "title": "Google says sorry for racist auto-tag in photo app",
- "url": "https://www.theguardian.com/technology/2015/jul/01/google-sorry-racist-auto-tag-photo-app"
- },
- {
- "__typename": "Report",
- "authors": ["Pete Pachal"],
- "epoch_date_downloaded": 1605312000,
- "epoch_date_modified": 1607299200,
- "epoch_date_submitted": 1607299200,
- "flag": null,
- "report_number": 1369,
- "source_domain": "mashable.com",
- "submitters": ["AIAAIC", "Thomas Giallella (CSET)"],
- "title": "Google Photos identified two black people as 'gorillas'",
- "url": "https://mashable.com/2015/07/01/google-photos-black-people-gorillas/"
- },
- {
- "__typename": "Report",
- "authors": ["Jessica Guynn"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 105,
- "source_domain": "usatoday.com",
- "submitters": ["Anonymous"],
- "title": "Google Photos labeled black people 'gorillas'",
- "url": "https://www.usatoday.com/story/tech/2015/07/01/google-apologizes-after-photos-identify-black-people-as-gorillas/29567465/"
- },
- {
- "__typename": "Report",
- "authors": ["Alex Hern"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 104,
- "source_domain": "theguardian.com",
- "submitters": ["Anonymous"],
- "title": "Google's solution to accidental algorithmic racism: ban gorillas",
- "url": "https://www.theguardian.com/technology/2018/jan/12/google-racism-ban-gorilla-black-people"
- },
- {
- "__typename": "Report",
- "authors": ["Sophie Curtis"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 103,
- "source_domain": "telegraph.co.uk",
- "submitters": ["Anonymous"],
- "title": "Google Photos labels black people as 'gorillas'",
- "url": "https://www.telegraph.co.uk/technology/google/11710136/Google-Photos-assigns-gorilla-tag-to-photos-of-black-people.html"
- },
- {
- "__typename": "Report",
- "authors": ["Conor Dougherty"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 102,
- "source_domain": "bits.blogs.nytimes.com",
- "submitters": ["Anonymous"],
- "title": "Google Photos Mistakenly Labels Black People ‘Gorillas’",
- "url": "https://bits.blogs.nytimes.com/2015/07/01/google-photos-mistakenly-labels-black-people-gorillas/"
- },
- {
- "__typename": "Report",
- "authors": ["Sky News Us Team"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 101,
- "source_domain": "news.sky.com",
- "submitters": ["Anonymous"],
- "title": "Google Photo App Labels Black Couple 'Gorillas'",
- "url": "https://news.sky.com/story/google-photo-app-labels-black-couple-gorillas-10353994"
- },
- {
- "__typename": "Report",
- "authors": ["Cory Doctorow"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 100,
- "source_domain": "boingboing.net",
- "submitters": ["Anonymous"],
- "title": "Two years later, Google solves 'racist algorithm' problem by purging 'gorilla' label from image classifier",
- "url": "https://boingboing.net/2018/01/11/gorilla-chimp-monkey-unpersone.html"
- },
- {
- "__typename": "Report",
- "authors": ["Jackie Snow"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 99,
- "source_domain": "technologyreview.com",
- "submitters": ["Anonymous"],
- "title": "Google Photos Still Has a Problem with Gorillas",
- "url": "https://www.technologyreview.com/the-download/609959/google-photos-still-has-a-problem-with-gorillas/"
- },
- {
- "__typename": "Report",
- "authors": ["Amanda Schupak"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 98,
- "source_domain": "cbsnews.com",
- "submitters": ["Anonymous"],
- "title": "Google apologizes for mis-tagging photos of African Americans",
- "url": "https://www.cbsnews.com/news/google-photos-labeled-pics-of-african-americans-as-gorillas/"
- },
- {
- "__typename": "Report",
- "authors": ["Tech2 News Staff"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 96,
- "source_domain": "firstpost.com",
- "submitters": ["Anonymous"],
- "title": "Google has ‘fixed’ its algorithm that categorised people as 'Gorillas' with a not so elegant solution",
- "url": "https://www.firstpost.com/tech/news-analysis/google-has-fixed-its-algorithm-that-categorised-people-as-gorillas-with-a-not-so-elegant-solution-4303613.html"
- },
- {
- "__typename": "Report",
- "authors": ["Madison Malone Kircher"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 95,
- "source_domain": "nymag.com",
- "submitters": ["Anonymous"],
- "title": "Google Removed Gorillas From Search to Fix Racist Algorithm",
- "url": "http://nymag.com/intelligencer/2018/01/google-removed-gorillas-from-search-to-fix-racist-algorithm.html"
- },
- {
- "__typename": "Report",
- "authors": ["Black Voices Editor"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 93,
- "source_domain": "huffingtonpost.com",
- "submitters": ["Anonymous"],
- "title": "Google Apologizes For Tagging Photos Of Black People As ‘Gorillas'",
- "url": "https://www.huffingtonpost.com/2015/07/02/google-black-people-goril_n_7717008.html"
- },
- {
- "__typename": "Report",
- "authors": ["BBC News"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1661126400,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 92,
- "source_domain": "bbc.com",
- "submitters": ["Anonymous"],
- "title": "Google apologises for Photos app's racist blunder",
- "url": "https://www.bbc.com/news/technology-33347866"
- },
- {
- "__typename": "Report",
- "authors": ["Jethro Mullen"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 91,
- "source_domain": "edition.cnn.com",
- "submitters": ["Anonymous"],
- "title": "Google rushes to fix software that served up racial slur",
- "url": "https://edition.cnn.com/2015/07/02/tech/google-image-recognition-gorillas-tag/index.html"
- },
- {
- "__typename": "Report",
- "authors": ["Charles Pulliam-Moore"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1667692800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 90,
- "source_domain": "splinternews.com",
- "submitters": ["Anonymous"],
- "title": "Google Photos identified black people as 'gorillas,' but racist software isn't new",
- "url": "https://splinternews.com/google-photos-identified-black-people-as-gorillas-but-1793848829"
- },
- {
- "__typename": "Report",
- "authors": ["Alistair Barr"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 89,
- "source_domain": "blogs.wsj.com",
- "submitters": ["Anonymous"],
- "title": "Google Mistakenly Tags Black People as ‘Gorillas,’ Showing Limits of Algorithms",
- "url": "https://blogs.wsj.com/digits/2015/07/01/google-mistakenly-tags-black-people-as-gorillas-showing-limits-of-algorithms/"
- },
- {
- "__typename": "Report",
- "authors": [
- "Manoush Zomorodi",
- "Jen Poyant",
- "Jackie Snow",
- "Ariana Tobin",
- "Miranda Katz"
- ],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": true,
- "report_number": 88,
- "source_domain": "wnycstudios.org",
- "submitters": ["Anonymous"],
- "title": "Why Google 'Thought' This Black Woman Was a Gorilla",
- "url": "https://www.wnycstudios.org/story/deep-problem-deep-learning"
- },
- {
- "__typename": "Report",
- "authors": ["Andrew Griffin"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1661126400,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 87,
- "source_domain": "independent.co.uk",
- "submitters": ["Anonymous"],
- "title": "Google Photos tags black people as 'gorillas', puts pictures in special folder",
- "url": "https://www.independent.co.uk/life-style/gadgets-and-tech/news/google-photos-tags-black-people-as-gorillas-puts-pictures-in-special-folder-10357668.html"
- },
- {
- "__typename": "Report",
- "authors": ["CBC News"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 86,
- "source_domain": "cbc.ca",
- "submitters": ["Anonymous"],
- "title": "Google apologizes after app mistakenly labels black people 'gorillas'",
- "url": "https://www.cbc.ca/news/trending/google-photos-black-people-gorillas-1.3135754"
- },
- {
- "__typename": "Report",
- "authors": ["Maggie Zhang"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 85,
- "source_domain": "forbes.com",
- "submitters": ["Anonymous"],
- "title": "Google Photos Tags Two African-Americans As Gorillas Through Facial Recognition Software",
- "url": "https://www.forbes.com/sites/mzhang/2015/07/01/google-photos-tags-two-african-americans-as-gorillas-through-facial-recognition-software/#368d7ccb713d"
- },
- {
- "__typename": "Report",
- "authors": ["Richard Gray"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 84,
- "source_domain": "dailymail.co.uk",
- "submitters": ["Anonymous"],
- "title": "Google Photos app tags black Jacky Alcine and friend as GORILLAS",
- "url": "https://www.dailymail.co.uk/sciencetech/article-3145887/Google-apologises-Photos-app-tags-black-people-gorillas-Fault-image-recognition-software-mislabelled-picture.html"
- },
- {
- "__typename": "Report",
- "authors": ["Tom Simonite"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 83,
- "source_domain": "wired.com",
- "submitters": ["Anonymous"],
- "title": "When It Comes to Gorillas, Google Photos Remains Blind",
- "url": "https://www.wired.com/story/when-it-comes-to-gorillas-google-photos-remains-blind/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "google",
- "name": "Google"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "google",
- "name": "Google"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "gmail-users",
- "name": "Gmail Users"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [
- 129, 128, 127, 126, 125, 124, 123, 122, 121, 120, 119, 118, 117, 116, 115, 114, 113,
- 112, 111, 110, 107, 106
- ],
- "vector": [
- -0.07178778201341629, 0.09306187927722931, 0.010533968918025494, -0.10563721507787704,
- 0.08729603886604309, -0.008435267023742199, -0.004366419743746519, 0.051958728581666946,
- 0.04700574651360512, -0.12829110026359558, 0.003471947507932782, 0.041035231202840805,
- 0.019332295283675194, -0.06879913061857224, 0.030069859698414803, -0.023159021511673927,
- -0.10590009391307831, -0.038712166249752045, 0.00475914403796196, -0.10765480250120163,
- -0.07656612992286682, -0.00973616074770689, -0.018510280176997185, 0.1168321892619133,
- -0.035404644906520844, 0.013811438344419003, 0.10274726897478104, 0.09887469559907913,
- -0.037307288497686386, 0.02301955409348011, -0.03527421876788139, -0.0796240046620369,
- 0.11996997147798538, -0.00038731403765268624, 0.0023071281611919403,
- 0.06301238387823105, 0.00923040509223938, -0.026584988459944725, -0.051216233521699905,
- -0.0151755902916193, 0.04477497562766075, 0.19045013189315796, 0.0014948926400393248,
- -0.01636156626045704, 0.047026749700307846, -0.026039529591798782, 0.03520817309617996,
- 0.032884035259485245, -0.0003617816837504506, 0.03370918333530426,
- -0.003578533185645938, 0.04155229777097702, -0.04613916575908661, 0.04109187424182892,
- -0.1163509413599968, 0.011294719763100147, 0.01709786057472229, -0.01309540867805481,
- 0.06622648239135742, -0.08604564517736435, -0.04276515170931816, -0.15652278065681458,
- -0.07585382461547852, -0.042058929800987244, 0.08107471466064453, -0.04807458817958832,
- -0.056125249713659286, 0.027330445125699043, -0.007369862403720617, 0.07142652571201324,
- 0.05594884231686592, -0.03676411882042885, -0.03536740690469742, 0.02857680432498455,
- -0.02504214644432068, -0.0273725688457489, -0.01593654416501522, 0.2378804087638855,
- -0.08660169690847397, -0.008274074643850327, 0.1024164929986, -0.1053425595164299,
- 0.36414238810539246, 0.027604447677731514, -0.021186094731092453,
- -0.0002213801199104637, 0.07434561103582382, 0.0353751964867115, 0.03242257609963417,
- 0.0305656548589468, -0.0028046758379787207, 0.04276274889707565, -0.050628624856472015,
- -0.004538305569440126, 0.052391014993190765, 0.028347980231046677,
- -0.023742632940411568, -0.061095237731933594, 0.017573010176420212,
- -0.07566506415605545, -0.007184329442679882, -0.03065260499715805, 0.11158139258623123,
- 0.0733032301068306, -0.026019416749477386, -0.017298579216003418, 0.06793103367090225,
- -0.024858636781573296, 0.05038951709866524, -0.06804961711168289, 0.0456111803650856,
- -0.04920289292931557, 0.05940009653568268, -0.014159235171973705, 0.040028590708971024,
- -0.04535537585616112, 0.0063081844709813595, 0.03298552334308624, 0.08882798999547958,
- 0.07491514086723328, -0.0067779929377138615, 0.08176960051059723, 0.07448723912239075,
- -0.07827629148960114, -0.04349161684513092, -0.004295399412512779, -0.03588823974132538,
- -0.01000656746327877, -0.04073251038789749, 0.04293835163116455, -0.04368935525417328,
- -0.19300581514835358, 0.03333314135670662, 0.06188073381781578, -0.056185539811849594,
- -0.018559791147708893, 0.031243525445461273, -0.05923869460821152, 0.05745407193899155,
- -0.01452929712831974, -0.039498183876276016, 0.055169906467199326, 0.040618933737277985,
- 0.0469491221010685, 0.1071050614118576, 0.04636816680431366, -0.041073027998209,
- -0.05705784261226654, 0.003336080349981785, -0.036776699125766754, 0.11025739461183548,
- -0.12407488375902176, -0.03160501644015312, 0.014510884881019592, -0.037432167679071426,
- 0.6857259273529053, 0.11359963566064835, 0.1792399287223816, 0.00014282843039836735,
- -0.02085498720407486, 0.15081284940242767, -0.007250134367495775, 0.0713706761598587,
- -0.06223839521408081, -0.041400980204343796, 0.03957963362336159, -0.08603782206773758,
- -0.05124402418732643, 0.04120229557156563, 0.020586945116519928, 0.09982273727655411,
- 0.03226344287395477, 0.06500610709190369, -0.0069403317756950855, -0.09979042410850525,
- -0.031802739948034286, 0.07699424028396606, 0.015373089350759983, -0.14015252888202667,
- -0.03756240755319595, 0.04432976245880127, 0.09216263890266418, -0.1079084649682045,
- -0.0027072434313595295, -0.0711149275302887, 0.038989000022411346,
- 0.0031840389128774405, 0.033683743327856064, 0.0004974408075213432, 0.04948136582970619,
- 0.0525859035551548, 0.06380731612443924, -0.007017245516180992, -0.06469882279634476,
- -0.011109482496976852, 0.0737079307436943, -0.03186462074518204, -0.037827711552381516,
- 0.07314484566450119, -0.07138392329216003, 0.03755904734134674, -0.02376481331884861,
- 0.14758890867233276, -0.10248249024152756, 0.0319397896528244, -0.006288332864642143,
- 0.0025962621439248323, 0.029311692342162132, 0.004615799989551306, -0.06856703758239746,
- -0.05785384401679039, 0.07555027306079865, -0.009432610124349594, 0.07260510325431824,
- 0.06377146393060684, -0.028631335124373436, 0.05959649011492729, 0.11506178230047226,
- -0.007364685647189617, -0.01809110678732395, 0.07229436188936234, 0.06635559350252151,
- -0.026872282847762108, -0.04990987852215767, 0.016049064695835114, 0.013742547482252121,
- 0.023511463776230812, -0.006671576295047998, 0.05926030874252319, 0.0019913555588573217,
- -0.04460931196808815, 0.009235919453203678, 0.06751194596290588, 0.04031907021999359,
- 0.08396920561790466, -0.055277787148952484, -0.049686893820762634, -0.03334815800189972,
- -0.02646404691040516, 0.022061815485358238, -0.031214548274874687, 0.0709225982427597,
- 0.08544372767210007, 0.04133089259266853, 0.024101056158542633, 0.03152468800544739,
- 0.04294724389910698, 0.01567051373422146, -0.012907136231660843, 0.0741741955280304,
- -0.0333334282040596, -0.025096088647842407, -0.006364220753312111, 0.004926688969135284,
- 0.015934301540255547, -0.006994540803134441, -0.0608404278755188, -0.03452107682824135,
- -0.05495081841945648, -0.02431578002870083, -0.09863623976707458, -0.07603004574775696,
- 0.020072275772690773, 0.0092164920642972, -0.06212906911969185, -0.0861601009964943,
- -0.06296530365943909, 0.01447772141546011, 0.11589118838310242, -0.011093632318079472,
- -0.005390017759054899, -0.109777070581913, 0.014007550664246082, 0.000494643987622112,
- 0.04119304195046425, -0.002816331572830677, -0.029619168490171432, 0.008898075670003891,
- -0.08676541596651077, 0.04860639199614525, 0.008513877168297768, -0.014891794882714748,
- -0.05688956007361412, -0.056977931410074234, -0.04602310433983803, 0.011797538958489895,
- 0.016280658543109894, -0.03355066478252411, 0.019309934228658676, 0.028210721909999847,
- 0.062274299561977386, -0.01448072399944067, -0.03793416544795036, 0.04572923108935356,
- -0.02687414363026619, -0.02879921905696392, 0.07115501910448074, -0.014958896674215794,
- 0.017480989918112755, -0.005785585846751928, -0.0938664972782135, -0.012733631767332554,
- 0.018130376935005188, -0.028584180399775505, 0.043291207402944565,
- -0.014277245849370956, 0.00548888323828578, -0.04970855638384819, -0.038107577711343765,
- 0.058692816644907, -0.014344531111419201, -0.08116466552019119, -0.06094205379486084,
- 0.1371130496263504, -0.006859265733510256, -0.025710759684443474, 0.04988071694970131,
- -0.06616190075874329, 0.05255547910928726, -0.03709796443581581, -0.0036574385594576597,
- 0.015329345129430294, 0.07038652896881104, -0.003594563342630863, 0.054745495319366455,
- 0.05103027820587158, 0.007575468625873327, 0.014669832773506641, 0.06618572771549225,
- 0.4247058033943176, -0.28825294971466064, 0.06848221272230148, 0.10540933161973953,
- 0.011743510141968727, 0.07065140455961227, -0.047841206192970276, 0.07728925347328186,
- 0.07065816968679428, 0.12429044395685196, 0.12393320351839066, -0.030635036528110504,
- -0.005611011292785406, -0.07764387130737305, 0.0952034741640091, -0.0033084393944591284,
- 0.05837598070502281, -0.015539050102233887, -0.06179497390985489,
- -0.0058387997560203075, 0.04334529861807823, -0.07275652140378952, -0.01072562113404274,
- -0.022546714171767235, -0.04545806720852852, 0.004389594309031963, 0.04019252955913544,
- 0.05698220804333687, -0.03267009183764458, 0.025574862957000732, -0.06651785969734192,
- 0.03348176181316376, 0.06347499787807465, 0.008955705910921097, -0.10631296038627625,
- 0.03178492188453674, -0.06584879755973816, -0.09684140980243683, 0.05662674829363823,
- -0.0001398832828272134, 0.051695432513952255, 0.058815062046051025,
- -0.021117063239216805, 0.03358028829097748, -0.021669434383511543,
- -0.051048967987298965, 0.025057708844542503, 0.04056387022137642, 0.03135949745774269,
- 0.07784157246351242, 0.16458134353160858, -0.04009353369474411, -0.05842067301273346,
- -0.05895676463842392, 0.055395737290382385, 0.09497246146202087, -0.01074303314089775,
- 0.025739191100001335, 0.01206978503614664, -0.01020274218171835, -0.0074461475014686584,
- -0.04569391906261444, -0.07762178033590317, -0.046780094504356384, -0.08016356825828552,
- 0.09291251003742218, 0.02661576122045517, -0.041748180985450745, -0.17219091951847076,
- -0.004370547831058502, -0.04436875879764557, 0.03524456545710564, 0.14223521947860718,
- -0.07205650210380554, 0.07094892859458923, -0.004057833459228277, -0.012864100746810436,
- 0.005222690291702747, -0.08171746134757996, 0.001540002878755331, -0.05226348713040352,
- 0.027211135253310204, 0.05332731828093529, 0.08167468011379242, -0.031406741589307785,
- 0.0691097304224968, -0.06001821905374527, 0.07591743022203445, 0.0022975681349635124,
- -0.05697361007332802, 0.028240865096449852, -0.04157477989792824, 0.04675881564617157,
- 0.008509796112775803, -0.05200554430484772, 0.021803125739097595, -0.014860513620078564,
- -0.02572082355618477, -0.05917537584900856, -0.08136618882417679, -0.053959235548973083,
- -0.09200796484947205, 0.03730681911110878, -0.08174293488264084, -0.014762568287551403,
- -0.02481703832745552, -0.006058080587536097, -0.0008455621427856386,
- 0.020672565326094627, 0.005212713498622179, -0.13301783800125122, 0.005218018312007189,
- 0.0036388433072715998, 0.05588734522461891, -0.023029696196317673,
- -0.053115710616111755, 0.004784105345606804, 0.076507069170475, 0.043559473007917404,
- -0.062441810965538025, -0.020643962547183037, -0.040734294801950455,
- 0.07719045132398605, -0.12859520316123962, -0.4892957806587219, 0.04806424677371979,
- 0.03705398365855217, 0.029360352084040642, -0.0012962049804627895,
- -0.051606640219688416, 0.04636725038290024, 0.009697518311440945, -0.033164627850055695,
- 0.08843956142663956, -0.0675717145204544, 0.046055376529693604, -0.05876016989350319,
- -0.049124762415885925, 0.017425011843442917, -0.07611643522977829, -0.04365716502070427,
- 0.04954423010349274, -0.01233696285635233, -0.03721960261464119, -0.09387950599193573,
- 0.005410477519035339, -0.01408976037055254, 0.007106982637196779, 0.02370503544807434,
- 0.00424685375764966, -0.0564248189330101, -0.04092780128121376, 0.05597638711333275,
- 0.0682569071650505, 0.013579891063272953, -0.07887030392885208, -0.0025298772379755974,
- 0.0601675845682621, 0.02489086426794529, 0.12506893277168274, -0.0036907230969518423,
- 0.025414960458874702, -0.07046539336442947, 0.0970688983798027, 0.032266244292259216,
- 0.18554669618606567, -0.01906209997832775, 0.016102004796266556, -0.0243398267775774,
- 0.13275325298309326, 0.08156471699476242, -0.0058805812150239944, -0.020361507311463356,
- -0.015827925875782967, 0.021405022591352463, -0.021198730915784836, 0.07156182080507278,
- -0.07362110167741776, -0.03209424018859863, -0.03312116488814354, -0.027179555967450142,
- -0.027324264869093895, 0.005099981091916561, 0.19879041612148285, 0.018241964280605316,
- 0.03068440966308117, 0.03186729922890663, -0.065997414290905, 0.021718991920351982,
- -0.08129380643367767, -0.04094082489609718, -0.03515243902802467, -0.006624440662562847,
- 0.011790714226663113, -0.05447814613580704, -0.11183027923107147, -0.03511077165603638,
- 0.01685977727174759, -0.007038674782961607, 0.12865465879440308, -0.00881181936711073,
- 0.02062755823135376, -0.020358813926577568, 0.1134285032749176, 0.023112554103136063,
- 0.018867069855332375, 0.057959605008363724, 0.09334833174943924, 0.029745610430836678,
- 0.013319596648216248, -0.04388773813843727, -0.09338614344596863, 0.007627877872437239,
- 0.1526554524898529, -0.00023789503029547632, 0.11738359183073044, 0.04112052544951439,
- -0.03113052248954773, -0.05499781295657158, 0.027973441407084465, -0.014061320573091507,
- 0.034028686583042145, -0.5114631652832031, -0.011487671174108982, 0.10469555109739304,
- 0.01013870444148779, 0.0008938260143622756, 0.11429870128631592, 0.007206419017165899,
- -0.03999325633049011, -0.050026774406433105, -0.0821605697274208, 0.10878831893205643,
- -0.003536126809194684, 0.05568180978298187, -0.1400018185377121, 0.016517678275704384,
- 0.07054419815540314, -0.053033314645290375, 0.011099670082330704, 0.04370090365409851,
- -0.25858810544013977, -0.008860512636601925, -0.024162400513887405, 0.1510825753211975,
- -0.035665083676576614, 0.03719168156385422, 0.10272419452667236, -0.047134578227996826,
- 0.021329371258616447, 0.010920267552137375, 0.028821438550949097, 0.0642993226647377,
- 0.00524328276515007, 0.00011426216951804236, 0.10662367194890976, 0.07851927727460861,
- 0.09021186083555222, -0.026016341522336006, 12.013092041015625, 0.022509677335619926,
- 0.054261352866888046, -0.09613119810819626, 0.008257539011538029, -0.06116074323654175,
- 0.018296821042895317, -0.0778355821967125, 0.053802624344825745, 0.12167375534772873,
- 0.0018658990738913417, -0.01317431591451168, -0.02930331788957119, -0.09412943571805954,
- 0.041936930269002914, -0.059400200843811035, -0.06663203984498978, -0.06501762568950653,
- 0.056548215448856354, -0.05248691141605377, -0.036243241280317307, 0.08865459263324738,
- 0.06562694162130356, 0.03627147898077965, -0.047504864633083344, 0.029374338686466217,
- 0.003001303179189563, -0.002684083767235279, 0.006431020330637693, 0.029287107288837433,
- 0.010043985210359097, 0.01618473418056965, 0.047375429421663284, -0.012828507460653782,
- 0.02193804271519184, 0.0752677172422409, 0.07179529219865799, 0.03928268700838089,
- 0.035768210887908936, 0.07564397156238556, 0.0024681196082383394, 0.018825680017471313,
- 0.02143069915473461, 0.03718741238117218, 0.055462051182985306, 0.05258364602923393,
- 0.012947329320013523, 0.149521604180336, 0.007221079897135496, 0.07131192088127136,
- 0.08597734570503235, -0.024201273918151855, 0.10229312628507614, 0.05739051476120949,
- -0.038270339369773865, 0.032653581351041794, -0.025570983067154884,
- -0.06740391999483109, 0.10475769639015198, 0.045606907457113266, -0.04886454716324806,
- 0.10987994074821472, 0.026832377538084984, 0.08369915187358856, 0.0011533071519806981,
- 0.05996108055114746, 0.07417409867048264, 0.07549376040697098, -0.11067323386669159,
- -0.10115940123796463, 0.01444004476070404, -0.08701495081186295, -0.07390391826629639,
- 0.06609081476926804, 0.11707277595996857, -0.038057949393987656, 0.039968203753232956,
- -0.029645459726452827, 0.03363374248147011, -0.03997628763318062, -0.004288400989025831,
- 0.038791343569755554, -0.010786005295813084, 0.010513970628380775, 0.06114640086889267,
- 0.037362124770879745, 0.029087208211421967, 0.12973904609680176, -0.00881315115839243,
- -0.06719270348548889, -0.07474429905414581, 0.08797844499349594, -0.024716852232813835,
- -0.051419686526060104, 0.04390634596347809, -0.0711250901222229, 0.04881652817130089,
- -0.16328351199626923, 0.08516810089349747, 0.12322767078876495, -0.08750469237565994,
- -0.037090931087732315, -0.03616531193256378, 0.04564794525504112, 0.029541445896029472,
- 0.026118671521544456, -0.054156649857759476, 0.011910292319953442, 0.01236081775277853,
- 0.04532980918884277, -0.033701054751873016, 0.055539194494485855, 0.05540350452065468,
- -0.027731837704777718, 0.027622101828455925, 0.042390160262584686,
- -0.033530354499816895, -0.01841154880821705, 0.051626499742269516, 0.0327376052737236,
- -0.06862935423851013, -0.03530694544315338, -0.030340038239955902, -0.04700577259063721,
- 0.0036337890196591616, -0.06433556228876114, 0.006669776048511267, 0.010682763531804085,
- -0.029989836737513542, -0.005920718424022198, 0.025427091866731644, 0.07083927094936371,
- 0.07363453507423401, -0.006358329672366381, 0.07567550987005234, -0.051681265234947205,
- -0.03217646852135658, 0.02563312090933323, 0.04652576521039009, 0.06013048067688942,
- -0.10008806735277176, -0.03286164999008179, -0.03947761282324791, -0.16287408769130707,
- 0.061731014400720596, 0.06569802761077881, 0.06960011273622513, 0.012103695422410965,
- 0.030654555186629295, -0.0775878056883812, -0.02935379557311535, 0.07742904871702194,
- 0.06401491910219193, 0.027099253609776497, 0.03423347696661949, -0.03321591392159462,
- -0.03306884691119194, 0.10273576527833939, -0.03897333890199661, 0.014533349312841892,
- -0.009475668892264366, -0.09628744423389435, 0.09064791351556778, 0.13710422813892365,
- 0.025299321860074997, 0.03607197105884552, 0.005997340194880962, 0.021899469196796417,
- 0.08106671273708344, -0.013008777052164078, 0.03264911472797394, -0.009949034079909325,
- -0.09915454685688019, -0.05618555471301079, 0.0561593621969223, 0.08923111110925674,
- 0.05698946863412857, -0.11992453783750534, -0.005201245192438364, 0.0013892219867557287
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 17,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 6,
- "similarity": 0.9991281628608704
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 13,
- "similarity": 0.9989537596702576
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 46,
- "similarity": 0.9989345073699951
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Fanghawk"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 129,
- "source_domain": "escapistmagazine.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Google's Email Replying AI Keeps Saying It Loves You",
- "url": "http://www.escapistmagazine.com/forums/read/7.885332-Googles-Email-Replying-AI-Keeps-Saying-It-Loves-You"
- },
- {
- "__typename": "Report",
- "authors": ["Brenden Gallagher"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 128,
- "source_domain": "dailydot.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Gmail's Smart Reply Blurs the Line Between People and Brands",
- "url": "https://www.dailydot.com/debug/thanks-for-letting-me-know/"
- },
- {
- "__typename": "Report",
- "authors": ["Stephen Hall"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 127,
- "source_domain": "9to5google.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Gmail Smart Reply goofed w/ 'Sent from my iPhone'",
- "url": "https://9to5google.com/2018/09/19/gmails-smart-reply-prototype-thought-sent-from-my-iphone-was-a-good-response/"
- },
- {
- "__typename": "Report",
- "authors": ["Chuong Nguyen"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 126,
- "source_domain": "digitaltrends.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Smart Reply Not Smart Enough? Desktop Gmail Users Can Soon Opt Out",
- "url": "https://www.digitaltrends.com/computing/desktop-gmail-smart-reply-opt-out/"
- },
- {
- "__typename": "Report",
- "authors": ["Natt Garun"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 125,
- "source_domain": "theverge.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Google ends support for Reply, which added smart replies to third-party apps",
- "url": "https://www.theverge.com/2018/10/10/17961262/google-reply-shut-down-area-120-app-smart-compose"
- },
- {
- "__typename": "Report",
- "authors": [
- "Nicola Twilley",
- "Isaac Chotiner",
- "Aimee Lucido",
- "Benjamin Wallace-Wells",
- "Douglas Preston",
- "Emilia Clarke",
- "Susanna Wolff"
- ],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 124,
- "source_domain": "newyorker.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Google’s New Autoreply Sounds Great!!!!",
- "url": "https://www.newyorker.com/tech/annals-of-technology/google-new-smart-reply-sounds-great"
- },
- {
- "__typename": "Report",
- "authors": ["David Marcelis", "Douglas Macmillan"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 123,
- "source_domain": "wsj.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Is This Article Worth Reading? Gmail’s Suggested Reply: ‘Haha, Thanks!’",
- "url": "https://www.wsj.com/articles/very-interesting-awesome-love-it-gmail-users-confront-chipper-smart-reply-1537282569"
- },
- {
- "__typename": "Report",
- "authors": ["Blair Hanley Frank"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 122,
- "source_domain": "greenbot.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Google Inbox's new Smart Replies uses machine learning to speed up email responses",
- "url": "https://www.greenbot.com/article/3000629/apps/googles-inbox-uses-machine-learning-to-speed-up-email-replies.html"
- },
- {
- "__typename": "Report",
- "authors": ["Eric Limer"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 121,
- "source_domain": "popularmechanics.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Google's Smart Reply Lets a Computer Answer Your Emails for You",
- "url": "https://www.popularmechanics.com/technology/apps/news/a18042/google-smart-reply-auto-response-for-inbox-machine-learning/"
- },
- {
- "__typename": "Report",
- "authors": ["Karissa Bell"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 120,
- "source_domain": "mashable.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Google's new email feature will write replies for you",
- "url": "https://mashable.com/2015/11/03/google-inbox-smart-reply/#8Eg.3vjAVPqK"
- },
- {
- "__typename": "Report",
- "authors": ["Elmer Montejo"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 119,
- "source_domain": "techlicious.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Google Inbox Suggests Replies for Incoming Email",
- "url": "https://www.techlicious.com/blog/google-inbox-smartly-offering-quick-replies-for-your-messages/"
- },
- {
- "__typename": "Report",
- "authors": ["Annie Palmer For Dailymail.Com"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 118,
- "source_domain": "dailymail.co.uk",
- "submitters": ["Roman Yampolskiy"],
- "title": "Google tweaked its Smart Reply feature because it would repeatedly suggest users send 'I love you'",
- "url": "https://www.dailymail.co.uk/sciencetech/article-6190923/Google-tweaked-Smart-Reply-feature-repeatedly-suggest-users-send-love-you.html"
- },
- {
- "__typename": "Report",
- "authors": ["Cade Metz"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 117,
- "source_domain": "wired.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Soon, Gmail's AI Could Reply to Your Email for You",
- "url": "https://www.wired.com/2015/11/google-is-using-ai-to-create-automatic-replies-in-gmail/"
- },
- {
- "__typename": "Report",
- "authors": ["David Goldman"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 116,
- "source_domain": "money.cnn.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "New Gmail feature scans your emails and suggests replies",
- "url": "https://money.cnn.com/2015/11/03/technology/gmail-inbox-smart-reply/"
- },
- {
- "__typename": "Report",
- "authors": ["Neira Jones"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 115,
- "source_domain": "twitter.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Neira Jones on Twitter",
- "url": "https://twitter.com/neirajones/status/1043068135778267137"
- },
- {
- "__typename": "Report",
- "authors": ["Chris Smith"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 114,
- "source_domain": "trustedreviews.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "You can turn off Gmail's creepy Smart Replies on desktop too - just not yet",
- "url": "https://www.trustedreviews.com/news/turn-off-gmail-smart-reply-3586013"
- },
- {
- "__typename": "Report",
- "authors": ["Mallory Locklear"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 113,
- "source_domain": "engadget.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Gmail users will be able to opt out of Smart Replies on desktop",
- "url": "https://www.engadget.com/2018/09/20/gmail-opt-out-smart-replies-desktop/"
- },
- {
- "__typename": "Report",
- "authors": ["Christopher Bonanos"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 112,
- "source_domain": "nymag.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Ranking Gmail’s AI Fueled Smart Replies",
- "url": "http://nymag.com/intelligencer/2018/08/ranking-gmails-ai-fueled-smart-replies.html"
- },
- {
- "__typename": "Report",
- "authors": ["Corinne Purtill"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 111,
- "source_domain": "qz.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Gmail smart compose: Will it change how we write emails?",
- "url": "https://qz.com/work/1409198/gmail-smart-compose-will-it-change-how-we-write-emails/"
- },
- {
- "__typename": "Report",
- "authors": ["Samantha Maxwell"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 110,
- "source_domain": "thetechnoskeptic.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Google's Smart Reply: Convenience Over Connection",
- "url": "https://thetechnoskeptic.com/google-smart-reply/"
- },
- {
- "__typename": "Report",
- "authors": ["Kif Leswing"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 107,
- "source_domain": "businessinsider.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Google changed Gmail's Smart Reply after AI kept suggesting I love you",
- "url": "https://www.businessinsider.com/google-changed-gmail-smart-reply-after-ai-kept-suggesting-i-love-you-response-2018-9"
- },
- {
- "__typename": "Report",
- "authors": ["Bálint Miklós"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 106,
- "source_domain": "blog.google",
- "submitters": ["Roman Yampolskiy"],
- "title": "Computer, respond to this email: Introducing Smart Reply in Inbox by Gmail",
- "url": "https://blog.google/products/gmail/computer-respond-to-this-email/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "google",
- "name": "Google"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "google",
- "name": "Google"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "women",
- "name": "Women"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1368, 1367, 138, 137, 136, 135, 134, 133, 132, 131, 130],
- "vector": [
- -0.05363982543349266, 0.08325769752264023, 0.0015218150801956654, -0.13376055657863617,
- 0.06415941566228867, -0.0507449172437191, 0.021668724715709686, 0.09182830154895782,
- 0.05839407444000244, -0.13146676123142242, -0.018217025324702263, 0.045100945979356766,
- 0.01810116320848465, -0.08209303021430969, 0.03670625388622284, -0.024045003578066826,
- -0.10506102442741394, -0.031152868643403053, 0.03578050807118416, -0.13818199932575226,
- -0.0869596004486084, 0.01781335100531578, -0.053178440779447556, 0.09188752621412277,
- -0.06063111126422882, 0.0017790355486795306, 0.09751144051551819, 0.08604664355516434,
- -0.02879738248884678, 0.10375870019197464, -0.044775769114494324, -0.10318057239055634,
- 0.11630069464445114, -0.0009271681192331016, 0.01131425704807043, 0.08548644930124283,
- 0.0027053330559283495, -0.021193282678723335, -0.03935568779706955,
- 0.010321388021111488, 0.059484705328941345, 0.21874213218688965, -0.024685371667146683,
- 0.03403032198548317, 0.036109987646341324, -0.03149046003818512, -0.009165105409920216,
- 0.049834560602903366, 0.008698105812072754, 0.05669586732983589, -0.008873517625033855,
- 0.029317695647478104, -0.02406415529549122, 0.029604388400912285, -0.0915759727358818,
- 0.044265661388635635, 0.04164057597517967, 0.0025286132004112005, 0.030124174430966377,
- -0.07611717283725739, -0.029063934460282326, -0.18999218940734863, -0.05349178612232208,
- -0.08542387187480927, 0.08594200015068054, -0.06306812167167664, -0.0196723360568285,
- 0.02217280864715576, 0.023399531841278076, 0.07589935511350632, 0.0766075998544693,
- -0.04349542036652565, -0.04737908020615578, 0.012731477618217468, -0.009844229556620121,
- -0.02314293384552002, -0.004794213455170393, 0.21021682024002075, -0.08607066422700882,
- 0.02700144611299038, 0.08135415613651276, -0.10243427753448486, 0.3805665671825409,
- 0.025843746960163116, -0.0212827417999506, -0.032204851508140564, 0.06893082708120346,
- 0.020636141300201416, 0.044843245297670364, 0.011553794145584106, 0.0019417586736381054,
- 0.07564420253038406, -0.06110009178519249, -0.01238513644784689, 0.06946707516908646,
- 0.02510759048163891, -0.008044969290494919, -0.01855195313692093,
- -0.0020167699549347162, -0.035824477672576904, -0.008072469383478165,
- -0.032581593841314316, 0.1176619753241539, 0.0790688693523407, -0.05152767524123192,
- 0.03696037083864212, 0.04016483202576637, -0.04976709187030792, 0.06879543513059616,
- -0.0722607672214508, 0.03573652356863022, -0.005723025184124708, 0.09507714956998825,
- 0.004760151728987694, 0.02222990058362484, -0.03328410163521767, 0.00827267300337553,
- 0.06651733815670013, 0.08299671858549118, 0.05244769901037216, 0.047391101717948914,
- 0.07239777594804764, 0.06198704615235329, -0.060796234756708145, -0.07837066054344177,
- -0.031995296478271484, -0.07408004254102707, -0.040118250995874405,
- -0.030792254954576492, 0.045166924595832825, -0.050181031227111816, -0.1930360645055771,
- 0.006736762821674347, 0.08768732100725174, -0.062096331268548965, -0.023862451314926147,
- 0.016685716807842255, -0.06090838834643364, 0.04326324537396431, -0.04533572867512703,
- -0.02872133068740368, 0.04992937669157982, 0.03516088426113129, 0.03956281393766403,
- 0.09650199860334396, 0.06831342726945877, -0.03895470127463341, -0.05373439937829971,
- -0.010271440260112286, -0.06792373210191727, 0.1455269455909729, -0.15136733651161194,
- -0.05124159902334213, -0.014112168923020363, -0.0009218269842676818, 0.7096028923988342,
- 0.10079388320446014, 0.17431838810443878, 0.0011135886888951063, -0.023701466619968414,
- 0.15993525087833405, -0.0175741296261549, 0.08166021853685379, -0.05192083492875099,
- -0.023859791457653046, 0.042757850140333176, -0.0911334753036499, -0.06643462926149368,
- 0.022427178919315338, 0.02482765167951584, 0.09233317524194717, -0.005916402209550142,
- 0.07588720321655273, 0.03178200498223305, -0.09104743599891663, -0.033655937761068344,
- 0.0276168305426836, 0.009372718632221222, -0.1384090781211853, -0.030651478096842766,
- 0.04650726541876793, 0.09379878640174866, -0.08989990502595901, -0.005096812266856432,
- -0.06334614008665085, 0.08724834024906158, -0.004770268686115742, 0.06721293926239014,
- -0.026721559464931488, 0.037176016718149185, 0.03523482009768486, 0.03142659366130829,
- -0.008488579653203487, -0.10594024509191513, -0.01676890067756176, 0.058337580412626266,
- -0.05103863775730133, -0.028715545311570168, 0.042939163744449615, -0.07433867454528809,
- 0.028633954003453255, -0.03672245517373085, 0.1532055288553238, -0.12826955318450928,
- 0.032842040061950684, -0.0027111137751489878, 0.02082108147442341, 0.038898587226867676,
- -0.0014055107021704316, -0.05196543037891388, -0.060066357254981995, 0.0988101065158844,
- 0.025572216138243675, 0.05575606971979141, 0.039465729147195816, -0.05014035850763321,
- 0.07540050894021988, 0.0682411640882492, -0.0011297427117824554, -0.03520422801375389,
- 0.08747584372758865, 0.04763016477227211, -0.049348797649145126, -0.038970496505498886,
- 0.027351079508662224, 0.020589904859662056, 0.024732084944844246, -0.021598823368549347,
- 0.05301250144839287, 0.009510841220617294, -0.05343562364578247, 0.09026265144348145,
- 0.04194003716111183, 0.016519935801625252, 0.07903904467821121, -0.055832959711551666,
- -0.08282388746738434, -0.03229305148124695, -0.043591879308223724, 0.02135588228702545,
- -0.031256210058927536, 0.07509469240903854, 0.09031607955694199, 0.10813982039690018,
- 0.030836928635835648, 0.028039894998073578, 0.052711501717567444, -0.009538783691823483,
- -0.0037030046805739403, 0.07597646117210388, -0.015998175367712975,
- -0.046389248222112656, -0.0022333539091050625, -0.00028982225921936333,
- 0.024424051865935326, 0.005094243213534355, -0.06342155486345291, -0.023052651435136795,
- -0.07593193650245667, -0.02758360467851162, -0.08856010437011719, -0.0828017070889473,
- 0.04270969703793526, 0.016366951167583466, -0.04559028148651123, -0.050338875502347946,
- -0.09754309058189392, 0.009757805615663528, 0.05042552575469017, -0.03613561391830444,
- -0.02505791187286377, -0.11900565773248672, 0.015497350133955479, -0.013724551536142826,
- 0.05867057666182518, -0.0106060691177845, 0.007083397824317217, 0.029522549360990524,
- -0.0730028748512268, 0.05212807282805443, 0.020435839891433716, -0.031022997573018074,
- 0.003424733644351363, -0.07893833518028259, -0.04473474994301796,
- -0.0024612611159682274, -0.009083530865609646, -0.05021922290325165,
- 0.04541991651058197, 0.03511718288064003, 0.07861000299453735, -0.0004944092943333089,
- -0.08053645491600037, 0.04302418231964111, -0.04016534611582756, -0.0390712134540081,
- 0.08231925964355469, -0.019753066822886467, 0.03620600327849388, 0.008981234394013882,
- -0.07322308421134949, -0.05216984450817108, -0.001093451981432736,
- -0.024215208366513252, 0.06477361172437668, -0.0037306593731045723,
- 0.023509865626692772, -0.02761075086891651, -0.023050272837281227, 0.051231157034635544,
- -0.046104546636343, -0.10116250813007355, -0.0788249745965004, 0.12965133786201477,
- -0.0307074673473835, 0.036706987768411636, 0.028405386954545975, -0.04387618228793144,
- 0.04389443248510361, -0.015653768554329872, -0.010711145587265491, 0.04610200971364975,
- 0.026574641466140747, 0.017657143995165825, 0.016635539010167122, 0.051436647772789,
- -0.04193434119224548, 0.01303543709218502, 0.07584497332572937, 0.4777715802192688,
- -0.22826255857944489, 0.07778075337409973, 0.12320958822965622, 0.0009781585540622473,
- 0.04738645628094673, -0.009955712594091892, 0.08842266350984573, 0.08303079754114151,
- 0.15624214708805084, 0.10390016436576843, -0.050686392933130264, 0.007472311146557331,
- -0.13030888140201569, 0.1026664450764656, 0.004710278939455748, 0.04551146179437637,
- 0.004804958589375019, -0.07968656718730927, -0.025570200756192207, 0.025318939238786697,
- -0.06452792137861252, -0.014191379770636559, -0.025036834180355072,
- -0.052051249891519547, 0.003885577665641904, 0.02224859409034252, 0.03034910000860691,
- -0.042065657675266266, 0.04659273847937584, -0.019605763256549835, 0.04284622520208359,
- 0.033416394144296646, 0.029186774045228958, -0.11762482672929764, 0.022170178592205048,
- -0.06547451764345169, -0.11121690273284912, 0.05595017969608307, -0.0025348649360239506,
- 0.06740707904100418, 0.048389971256256104, -0.05216062068939209, 0.027849679812788963,
- -0.015834052115678787, -0.05093318596482277, 0.01727578602731228, 0.04645537957549095,
- -0.009521245025098324, 0.0654245913028717, 0.15840604901313782, -0.024751270189881325,
- 0.0025726661551743746, -0.08233312517404556, 0.06041577830910683, 0.18249602615833282,
- 0.03225436061620712, 0.031435899436473846, 0.006804026663303375, -0.005715482402592897,
- 0.0005421607638709247, -0.028437405824661255, -0.10062327235937119,
- -0.04011942073702812, -0.023115726187825203, 0.09688626974821091, 0.016088752076029778,
- -0.01754125952720642, -0.15817223489284515, -0.027804521843791008, -0.06135697290301323,
- 0.04367434233427048, 0.09672913700342178, -0.07399239391088486, 0.058144401758909225,
- -0.03431158885359764, -0.017719721421599388, 0.04014119133353233, -0.07384254783391953,
- 0.007736981380730867, -0.026352088898420334, 0.027020620182156563, 0.06375675648450851,
- 0.049308981746435165, -0.019757144153118134, 0.09488631039857864, -0.08627210557460785,
- 0.04456300660967827, -0.035299599170684814, -0.04766467586159706, -0.010289068333804607,
- -0.0076268999837338924, 0.039715733379125595, 0.008988793939352036,
- -0.059924326837062836, 0.02787361852824688, -0.02453344315290451, -0.04059300571680069,
- -0.04800039902329445, -0.04666022211313248, -0.006234379019588232, -0.05545048788189888,
- 0.04573604092001915, -0.0848522037267685, 0.004457920324057341, -0.019799968227744102,
- -0.04678666964173317, -0.028732312843203545, 0.026796013116836548, 0.012180396355688572,
- -0.12818484008312225, -0.0019097084878012538, -0.00074471888365224,
- 0.053109362721443176, -0.02303660474717617, -0.04764579236507416, 0.0023072862531989813,
- 0.1085323765873909, 0.038268573582172394, -0.06855332851409912, -0.03169667348265648,
- -0.06938792765140533, 0.04086381569504738, -0.12208059430122375, -0.4805137515068054,
- 0.07650799304246902, 0.028880007565021515, 0.02332467958331108, -0.0025277049280703068,
- -0.06225844845175743, 0.06870883703231812, 0.004672481212764978, -0.04748941957950592,
- 0.08241456001996994, -0.050137683749198914, 0.02479243464767933, -0.03093401901423931,
- -0.07773014158010483, -0.010706065222620964, -0.03908275067806244, -0.0591275654733181,
- 0.021267516538500786, -0.03417077288031578, -0.07437119632959366, -0.10550690442323685,
- 0.026579761877655983, -0.014345458708703518, 0.016527561470866203, 0.0224949661642313,
- 0.027714692056179047, -0.04898136481642723, -0.0518508106470108, 0.0657787024974823,
- 0.08675308525562286, 0.059712156653404236, -0.070378378033638, 0.02011154592037201,
- 0.05288718640804291, 0.04299066960811615, 0.12209869176149368, 0.003684978699311614,
- 0.002581255976110697, -0.038032762706279755, 0.10139460861682892, 0.04522254317998886,
- 0.18540239334106445, 0.01564677432179451, 0.006470130290836096, 0.031121285632252693,
- 0.14376072585582733, 0.0846128761768341, 0.011615888215601444, -0.027082087472081184,
- -0.020835144445300102, 0.0019426066428422928, -0.03554306924343109, 0.07731799781322479,
- -0.058931294828653336, -0.02527056448161602, -0.04011131823062897,
- -0.0013266410678625107, -0.03304678946733475, -0.04438187927007675, 0.2684756815433502,
- 0.017374036833643913, 0.017496615648269653, 0.03803755342960358, -0.03961840644478798,
- 0.020576300099492073, -0.12210964411497116, -0.060777828097343445, -0.02174156904220581,
- 0.0036770778242498636, -0.0037439458537846804, -0.04674952104687691,
- -0.10414398461580276, -0.03443983569741249, 0.02093607373535633, 0.013662976212799549,
- 0.13755717873573303, -0.025473840534687042, 0.024344025179743767, -0.014302998781204224,
- 0.13681147992610931, 0.028722010552883148, -0.001456359401345253, 0.06636369228363037,
- 0.10604424774646759, 0.017089279368519783, 0.049040451645851135, -0.002180398441851139,
- -0.07521753013134003, -0.02173781208693981, 0.1372883915901184, -0.0022558923810720444,
- 0.11527692526578903, 0.06820264458656311, -0.06074021756649017, -0.044483400881290436,
- 0.0123762721195817, -0.024310089647769928, 0.02159021981060505, -0.47198107838630676,
- -0.045506689697504044, 0.09020116925239563, 0.018448196351528168, -0.011152366176247597,
- 0.08082172274589539, 0.011262482032179832, -0.051485396921634674, -0.032638877630233765,
- -0.09915880858898163, 0.13855743408203125, 0.012499508447945118, 0.06035641208291054,
- -0.1006447821855545, -0.0057167839258909225, 0.10393833369016647, -0.020979922264814377,
- 0.011460528708994389, 0.0654657632112503, -0.23611146211624146, 0.002129256958141923,
- -0.005453087855130434, 0.14169830083847046, 0.005479409825056791, 0.04155191406607628,
- 0.10358669608831406, -0.05817436799407005, 0.040640249848365784, 0.05870705470442772,
- 0.030395181849598885, 0.059491872787475586, -0.05905639007687569,
- -0.0067337993532419205, 0.09985936433076859, 0.13033129274845123, 0.09452524036169052,
- -0.0006306443247012794, 12.007132530212402, 0.04994555935263634, 0.03429802879691124,
- -0.08737616240978241, -0.024892527610063553, -0.03748909756541252, 0.022279437631368637,
- -0.13793686032295227, 0.08785557001829147, 0.12491928786039352, -0.012996307574212551,
- -0.08044995367527008, -0.015342798084020615, -0.08332063257694244, 0.028720296919345856,
- -0.07378488034009933, -0.058881428092718124, -0.06216941773891449, 0.04392407834529877,
- -0.04749639332294464, -0.07114537805318832, 0.07951884716749191, 0.04918145760893822,
- 0.027072977274656296, -0.03564629703760147, 0.008428532630205154, 0.04335714504122734,
- -0.008972377516329288, 0.027849234640598297, 0.0014258407754823565,
- 0.015072831884026527, 0.046529270708560944, 0.07495874911546707, 0.018588678911328316,
- 0.05415559932589531, 0.06151163950562477, 0.09805529564619064, 0.037185654044151306,
- 0.00837248470634222, 0.05218233913183212, 0.011066905222833157, 0.003627530997619033,
- 0.026096154004335403, 0.004102298058569431, 0.07162192463874817, 0.0569658987224102,
- 0.06385619193315506, 0.12380239367485046, 0.014672109857201576, 0.06853591650724411,
- 0.07255267351865768, -0.010837030597031116, 0.1073731929063797, 0.008212109096348286,
- -0.02395354025065899, 0.07886361330747604, -0.0013594412012025714, -0.09243066608905792,
- 0.06702220439910889, -0.02839594893157482, -0.03822696581482887, 0.10883166640996933,
- 0.004303753841668367, 0.11213040351867676, -0.02712031453847885, 0.07117675244808197,
- 0.08747544139623642, 0.07118678838014603, -0.10483544319868088, -0.0884709432721138,
- 0.01954127848148346, -0.12845386564731598, -0.10132598876953125, 0.06364716589450836,
- 0.09451618045568466, -0.04642808064818382, 0.00016820082964841276, -0.03674070164561272,
- 0.03650028258562088, -0.03099188394844532, 0.013725784607231617, 0.035166893154382706,
- -0.005424154922366142, 0.013848859816789627, 0.042466823011636734, 0.020363278687000275,
- 0.0151897007599473, 0.12321088463068008, -0.015399124473333359, -0.07399622350931168,
- -0.0826951339840889, 0.11669033020734787, -0.02512204460799694, -0.060638271272182465,
- 0.02381652034819126, -0.09498496353626251, 0.007136305794119835, -0.1725081503391266,
- 0.07915306836366653, 0.13882564008235931, -0.0954437330365181, -0.02865329384803772,
- -0.04220424219965935, 0.06308651715517044, 0.03537584841251373, -0.0029645294416695833,
- -0.05621005594730377, 0.006523123010993004, 0.013182591646909714, 0.04057571664452553,
- -0.03309168666601181, 0.01570364087820053, 0.10402281582355499, -0.06724245101213455,
- -0.029593955725431442, 0.05372114107012749, -0.018554754555225372, -0.04111648350954056,
- 0.0602957047522068, 0.023534314706921577, -0.08571194857358932, -0.05348031595349312,
- -0.03289671242237091, -0.004408384207636118, -0.02012919820845127,
- -0.042882584035396576, 0.02276722341775894, 0.04838850721716881, -0.04616635665297508,
- -0.006306767463684082, 0.03652282431721687, 0.08010219782590866, 0.11174628138542175,
- 0.026069553568959236, 0.05980289354920387, -0.037812553346157074, -0.019611088559031487,
- 0.0486309640109539, 0.017896128818392754, 0.030604086816310883, -0.07008754462003708,
- -0.046214450150728226, -0.07563420385122299, -0.14912527799606323, 0.025130612775683403,
- 0.09105539321899414, 0.06498225033283234, 0.014454146847128868, 0.012622921727597713,
- -0.07056539505720139, -0.026400335133075714, 0.08917781710624695, 0.03496171906590462,
- 0.015520057640969753, 0.02313796803355217, -0.02712499350309372, -0.05832208693027496,
- 0.1330617070198059, -0.016858195886015892, -0.01999707892537117, 0.004358015954494476,
- -0.0885784924030304, 0.12766242027282715, 0.09897833317518234, 0.013418769463896751,
- 0.02643350325524807, 0.028874998912215233, 0.01938093639910221, 0.08092020452022552,
- -0.00849698856472969, -0.005901135038584471, -0.041271794587373734,
- -0.07038453221321106, -0.07353278994560242, 0.020910115912556648, 0.09115458279848099,
- 0.05110686644911766, -0.07931911200284958, -0.021051406860351562, -0.06616972386837006
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 18,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 19,
- "similarity": 0.9991586208343506
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 49,
- "similarity": 0.999096155166626
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 53,
- "similarity": 0.9989434480667114
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Lydia Dishman"],
- "epoch_date_downloaded": 1605312000,
- "epoch_date_modified": 1607299200,
- "epoch_date_submitted": 1607299200,
- "flag": null,
- "report_number": 1368,
- "source_domain": "fastcompany.com",
- "submitters": ["AIAAIC", "Thomas Giallella (CSET)"],
- "title": "The Hidden Gender Bias In Google Image Search",
- "url": "https://www.fastcompany.com/3045295/the-hidden-gender-bias-in-google-image-search"
- },
- {
- "__typename": "Report",
- "authors": ["Julia Carpenter"],
- "epoch_date_downloaded": 1605312000,
- "epoch_date_modified": 1607299200,
- "epoch_date_submitted": 1607299200,
- "flag": null,
- "report_number": 1367,
- "source_domain": "washingtonpost.com",
- "submitters": ["AIAAIC", "Thomas Giallella (CSET)"],
- "title": "Google’s algorithm shows prestigious job ads to men, but not to women. Here’s why that should worry you.",
- "url": "https://www.washingtonpost.com/news/the-intersect/wp/2015/07/06/googles-algorithm-shows-prestigious-job-ads-to-men-but-not-to-women-heres-why-that-should-worry-you/"
- },
- {
- "__typename": "Report",
- "authors": ["Taryn Hillin"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 138,
- "source_domain": "splinternews.com",
- "submitters": ["Catherine Olsson"],
- "title": "Looking for 'doctor' or 'cop' in Google Image Search delivers crazy sexist results",
- "url": "https://splinternews.com/looking-for-doctor-or-cop-in-google-image-search-delive-1793847037"
- },
- {
- "__typename": "Report",
- "authors": ["Adrienne Lafrance"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 137,
- "source_domain": "theatlantic.com",
- "submitters": ["Catherine Olsson"],
- "title": "Be Careful What You Google",
- "url": "https://www.theatlantic.com/technology/archive/2015/04/be-careful-what-you-google/390207/"
- },
- {
- "__typename": "Report",
- "authors": ["De Elizabeth", "Bella Cacciatore", "Christopher Rosa", "Danica L"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 136,
- "source_domain": "glamour.com",
- "submitters": ["Catherine Olsson"],
- "title": "When You Google Image CEO, the First Female Photo on the Results Page Is Barbie",
- "url": "https://www.glamour.com/story/google-search-ceo"
- },
- {
- "__typename": "Report",
- "authors": ["Amelia Butterly"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 135,
- "source_domain": "bbc.co.uk",
- "submitters": ["Catherine Olsson"],
- "title": "Google Image search for CEO has Barbie as first female result",
- "url": "http://www.bbc.co.uk/newsbeat/article/32332603/google-image-search-for-ceo-has-barbie-as-first-female-result"
- },
- {
- "__typename": "Report",
- "authors": ["Zach Miners"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 134,
- "source_domain": "pcworld.com",
- "submitters": ["Catherine Olsson"],
- "title": "The first woman CEO to appear in a Google Images search is ... CEO Barbie",
- "url": "https://www.pcworld.com/article/2908592/the-first-woman-ceo-to-appear-in-a-google-images-search-is-ceo-barbie.html"
- },
- {
- "__typename": "Report",
- "authors": ["Melissa Locker"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 133,
- "source_domain": "fastcompany.com",
- "submitters": ["Catherine Olsson"],
- "title": "Why is it still so hard to find women CEOs on Google Images?",
- "url": "https://www.fastcompany.com/90215758/why-is-it-still-so-hard-to-find-women-ceos-on-google-images"
- },
- {
- "__typename": "Report",
- "authors": ["Jennifer Langston"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 132,
- "source_domain": "washington.edu",
- "submitters": ["Catherine Olsson"],
- "title": "Who’s a CEO? Google image results can shift gender biases",
- "url": "https://www.washington.edu/news/2015/04/09/whos-a-ceo-google-image-results-can-shift-gender-biases/"
- },
- {
- "__typename": "Report",
- "authors": ["T.C. Sottek"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 131,
- "source_domain": "theverge.com",
- "submitters": ["Catherine Olsson"],
- "title": "Google Search thinks the most important female CEO is Barbie",
- "url": "https://www.theverge.com/tldr/2015/4/9/8378745/i-see-white-people"
- },
- {
- "__typename": "Report",
- "authors": ["Emily Cohn"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 130,
- "source_domain": "huffingtonpost.com",
- "submitters": ["Catherine Olsson"],
- "title": "Google Image Search Has A Gender Bias Problem",
- "url": "https://www.huffingtonpost.com/2015/04/10/google-image-gender-bias_n_7036414.html"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "google",
- "name": "Google"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "google",
- "name": "Google"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "women",
- "name": "Women"
- },
- {
- "__typename": "Entity",
- "entity_id": "minority-groups",
- "name": "Minority Groups"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [
- 1366, 1365, 187, 185, 184, 183, 182, 181, 179, 178, 177, 176, 175, 174, 173, 172, 171,
- 169, 168, 167, 166, 163, 162, 161, 160, 159, 158
- ],
- "vector": [
- -0.04462599754333496, 0.0754234790802002, 0.00817991141229868, -0.08815445750951767,
- 0.08879519253969193, -0.040130335837602615, 0.00225651147775352, 0.07407353818416595,
- 0.043821029365062714, -0.1312798708677292, -0.012961729429662228, 0.04053567349910736,
- 0.021801970899105072, -0.06672752648591995, 0.033752478659152985, -0.07256587594747543,
- -0.10491200536489487, -0.02304697223007679, -0.008180827833712101, -0.11939965188503265,
- -0.08069511502981186, 0.016011936590075493, -0.013633877970278263, 0.09080656617879868,
- -0.05562294274568558, 0.03002280183136463, 0.07315954566001892, 0.06706208735704422,
- -0.029519008472561836, 0.04582149535417557, -0.04604358226060867, -0.0684344470500946,
- 0.11178749054670334, -0.00448099710047245, -0.010100122541189194, 0.08174944669008255,
- 0.042107757180929184, -0.020934710279107094, -0.031326089054346085, 0.01306798867881298,
- 0.035043325275182724, 0.21329592168331146, -0.0066869682632386684, 0.004669734742492437,
- 0.04021652042865753, -0.03181588277220726, -0.012667503207921982, 0.04386451840400696,
- 0.004545778967440128, 0.01590697653591633, 0.0030775750055909157, 0.029607025906443596,
- -0.03075242228806019, 0.015856312587857246, -0.09926659613847733, 0.04464086890220642,
- 0.0403391569852829, -0.025086501613259315, 0.020796583965420723, -0.07991887629032135,
- -0.04660656675696373, -0.18798284232616425, -0.06001770868897438, -0.07913821190595627,
- 0.1165957897901535, -0.05854182690382004, -0.033309780061244965, -0.00234028697013855,
- 0.009168334305286407, 0.04589354246854782, 0.07205816358327866, -0.020072562620043755,
- -0.030805664137005806, -0.0014757467433810234, -0.012572246603667736,
- -0.02591846138238907, -0.008341597393155098, 0.2017580270767212, -0.07072080671787262,
- 0.02153969183564186, 0.08413824439048767, -0.10094282031059265, 0.3664453625679016,
- 0.03514012694358826, -0.011406267993152142, -0.02603982947766781, 0.073273666203022,
- 0.020061280578374863, 0.048749394714832306, 0.02404129132628441, -0.0012485861079767346,
- 0.07047165930271149, -0.05596021190285683, -0.030558966100215912, 0.06041787192225456,
- 0.03982723131775856, -0.01033567264676094, -0.04548121243715286, -0.0035985771100968122,
- -0.061742618680000305, -0.006657219026237726, -0.042436856776475906,
- 0.12765167653560638, 0.0781506896018982, -0.04213865473866463, 0.0315423458814621,
- 0.0585215799510479, -0.03179843723773956, 0.05441085621714592, -0.028794722631573677,
- 0.030362501740455627, 0.0016108655836433172, 0.08060623705387115, 0.021259168162941933,
- 0.03337153419852257, -0.018462343141436577, 0.029408060014247894, 0.055693600326776505,
- 0.05887443199753761, 0.04240085929632187, 0.01176156010478735, 0.04817972332239151,
- 0.05825452879071236, -0.0756482407450676, -0.06105978414416313, -0.004228441976010799,
- -0.03565327078104019, -0.030710265040397644, -0.01858678087592125, 0.03830529749393463,
- -0.0363168865442276, -0.17329829931259155, -0.015953300520777702, 0.0494384840130806,
- -0.024796202778816223, -0.044244714081287384, 0.012662705034017563,
- -0.05723794922232628, 0.02464928850531578, -0.008858555927872658, -0.026752974838018417,
- 0.06744155287742615, 0.01705612801015377, 0.05158991739153862, 0.11465832591056824,
- 0.07331905514001846, -0.03352972865104675, -0.03676914796233177, -0.0029454666655510664,
- -0.054019998759031296, 0.10783035308122635, -0.10872519761323929, -0.04430287331342697,
- -0.01362286414951086, 0.015758786350488663, 0.6787411570549011, 0.09864550828933716,
- 0.1526268720626831, 0.0028874787967652082, -0.031235260888934135, 0.16324405372142792,
- -0.022548843175172806, 0.06063143536448479, -0.02689368650317192, -0.01824937015771866,
- 0.03856386989355087, -0.07767642289400101, -0.06680747866630554, 0.01781025342643261,
- 0.04678664728999138, 0.07296790182590485, 0.004336770158261061, 0.09228363633155823,
- 0.01068970188498497, -0.08089140802621841, -0.026699291542172432, 0.03352801129221916,
- -0.006517329718917608, -0.1309705376625061, -0.01780964620411396, 0.08213929831981659,
- 0.08702511340379715, -0.0946860983967781, 0.006370787043124437, -0.049888141453266144,
- 0.056344982236623764, 0.007718410808593035, 0.040874917060136795, -0.025544418022036552,
- 0.03387879580259323, 0.04275037720799446, 0.03079596534371376, -0.025781217962503433,
- -0.11198199540376663, -0.011226968839764595, 0.05849671736359596, -0.01641133800148964,
- -0.03920280560851097, 0.06509954482316971, -0.083890400826931, 0.03406396880745888,
- -0.02423659898340702, 0.12214842438697815, -0.11664055287837982, 0.0038556691724807024,
- -0.0012449464993551373, -0.025478478521108627, 0.0539800263941288, 0.004648360889405012,
- -0.06910622864961624, -0.047901421785354614, 0.10019828379154205, 0.01340248342603445,
- 0.056663427501916885, 0.011879184283316135, -0.05142880976200104, 0.03786079213023186,
- 0.0915413349866867, -0.008749900385737419, -0.026225470006465912, 0.0513741634786129,
- 0.048108480870723724, -0.05914099141955376, -0.017394516617059708, 0.023239456117153168,
- 0.005210637114942074, 0.01369665376842022, -0.0007928151753731072, 0.031842708587646484,
- 0.013771845027804375, -0.06101968511939049, 0.0844915434718132, 0.03139595314860344,
- 0.03031451255083084, 0.08664441108703613, -0.07734870910644531, -0.027721216902136803,
- -0.028872838243842125, -0.02348203770816326, 0.0007051985594443977,
- -0.029927754774689674, 0.07148191332817078, 0.08876663446426392, 0.07367625832557678,
- 0.05059054493904114, 0.03421906754374504, 0.06271599978208542, 0.039151765406131744,
- 0.016165733337402344, 0.04517087712883949, -0.03704967349767685, -0.04967007413506508,
- -0.007817083038389683, 0.014984764158725739, 0.045589543879032135, 0.0250215083360672,
- -0.07161038368940353, -0.02839740365743637, -0.03438112512230873, -0.038636215031147,
- -0.07523974031209946, -0.0499720573425293, 0.010243241675198078, 0.035458724945783615,
- -0.04545838385820389, -0.08581962436437607, -0.0748310461640358, 0.016860784962773323,
- 0.07691945880651474, -0.04338947311043739, -0.013557607308030128, -0.1110977977514267,
- 0.001606116653420031, -0.00397855881601572, 0.0537436343729496, -0.007970515638589859,
- 0.014009303413331509, 0.014309143647551537, -0.08731693029403687, 0.026041150093078613,
- 0.024599691852927208, -0.027807867154479027, -0.024686725810170174,
- -0.03927256166934967, -0.0498296320438385, -0.027073951438069344, 0.0021484913304448128,
- -0.038467004895210266, 0.039244577288627625, 0.04923614487051964, 0.044577475637197495,
- -0.0017945916624739766, -0.03854742646217346, 0.05546716973185539,
- -0.028606880456209183, -0.0004377041186671704, 0.10059614479541779,
- -0.01848272979259491, 0.031650252640247345, 0.005655357614159584, -0.07447582483291626,
- -0.07487303018569946, -0.018533464521169662, -0.018514474853873253, 0.04543009772896767,
- -0.013563906773924828, -0.00018440643907524645, -0.03430793806910515,
- -0.02717970870435238, 0.055717989802360535, -0.05495458096265793, -0.07882482558488846,
- -0.08981148153543472, 0.11239156872034073, -0.007672634441405535, 0.01693745329976082,
- 0.010518979281187057, -0.06271685659885406, 0.06226982921361923, -0.019725682213902473,
- 0.015579248778522015, 0.05076757073402405, 0.05943195894360542, 0.012677536346018314,
- 0.0006961073377169669, 0.06002599373459816, -0.012869893573224545,
- -0.0009189652628265321, 0.06145787611603737, 0.4627649784088135, -0.1578351855278015,
- 0.06861266493797302, 0.10121934860944748, 0.016919797286391258, 0.03897612541913986,
- -0.014394788071513176, 0.06798716634511948, 0.09180375933647156, 0.1295596808195114,
- 0.10460804402828217, -0.0269487127661705, -0.011527358554303646, -0.09286616742610931,
- 0.09422052651643753, 0.006370458751916885, 0.023255763575434685, -0.03008323907852173,
- -0.07522444427013397, 0.0031677980441600084, 0.029268790036439896,
- -0.049721065908670425, 0.0170497614890337, -0.009976162575185299, -0.06789420545101166,
- 0.008190368302166462, 0.005707491654902697, 0.039037466049194336, -0.030784722417593002,
- 0.0449691005051136, -0.04524535313248634, 0.032096996903419495, 0.015599410980939865,
- 0.02986982651054859, -0.11503411829471588, 0.037934429943561554, -0.07293490320444107,
- -0.06735194474458694, 0.050154805183410645, -0.017920365557074547, 0.043414123356342316,
- 0.05327598378062248, -0.019076231867074966, 0.05664276331663132, -0.03267699480056763,
- -0.04654387757182121, 0.024028636515140533, 0.043668679893016815, -0.01228332333266735,
- 0.058219585567712784, 0.1567123532295227, -0.03314727917313576, -0.015868954360485077,
- -0.07467616349458694, 0.062102362513542175, 0.1390596479177475, 0.02291441708803177,
- 0.024296030402183533, 0.008455879986286163, -0.01748679392039776, 0.02384469471871853,
- -0.03660278394818306, -0.08341579884290695, -0.012603949755430222, -0.02795032598078251,
- 0.091933973133564, 0.028507383540272713, -0.006295443512499332, -0.13514071702957153,
- -0.004103521350771189, -0.04909074306488037, 0.043478842824697495, 0.102384552359581,
- -0.07096931338310242, 0.037407226860523224, -0.026934655383229256, 0.005381089169532061,
- 0.011609538458287716, -0.0801154300570488, 0.015753023326396942, -0.03832412511110306,
- 0.027160393074154854, 0.03205432742834091, 0.030012013390660286, -0.044614192098379135,
- 0.07946821302175522, -0.08571774512529373, 0.05133712664246559, 0.008470972068607807,
- -0.020452823489904404, -0.007564934436231852, -0.009837289340794086,
- 0.035815317183732986, -0.013992583379149437, -0.03298550099134445, -0.02569546550512314,
- -0.011243727058172226, -0.03427976742386818, -0.07133938372135162, -0.0658477395772934,
- -0.0022514527663588524, -0.062358684837818146, 0.03467060998082161, -0.0835542380809784,
- -0.024981245398521423, -0.022538142278790474, -0.017358824610710144,
- -0.028841610997915268, 0.022721849381923676, 0.012976856902241707, -0.10637848824262619,
- -0.007748214527964592, -0.002437169896438718, 0.06285503506660461, -0.01672966592013836,
- -0.07188937067985535, 0.010906078852713108, 0.10064384341239929, 0.022657250985503197,
- -0.05804971978068352, -0.010162843391299248, -0.07481278479099274, 0.09019604325294495,
- -0.11776067316532135, -0.4487052261829376, 0.06236555427312851, 0.016768550500273705,
- 0.03676533326506615, 0.011229910887777805, -0.058989278972148895, 0.04123635217547417,
- 0.01472915057092905, -0.05571421608328819, 0.06924218684434891, -0.04809616133570671,
- 0.034892622381448746, -0.014966483227908611, -0.05606679245829582, -0.01927235536277294,
- -0.04290846362709999, -0.0411859005689621, 0.03167881444096565, -0.03828557953238487,
- -0.059395890682935715, -0.10841173678636551, 0.026344189420342445, 0.00534160016104579,
- 0.01472179964184761, 0.015121356584131718, 0.00524026807397604, -0.038375720381736755,
- -0.04088853299617767, 0.05357534438371658, 0.0858757346868515, 0.03398077189922333,
- -0.05513598397374153, 0.01597847416996956, 0.08052191138267517, 0.019100943580269814,
- 0.09145589172840118, 0.012450944632291794, -0.0029659182764589787, -0.09280949831008911,
- 0.07749766111373901, 0.05792422965168953, 0.18680612742900848, 0.0009302588878199458,
- 0.006651054602116346, 0.026508329436182976, 0.15302345156669617, 0.04167848080396652,
- 0.013584035448729992, -0.024035917595028877, -0.007739257533103228, 0.02584530971944332,
- -0.0022755099926143885, 0.07229262590408325, -0.09232935309410095,
- -0.010396349243819714, -0.03940005600452423, 0.011129714548587799, -0.04797157272696495,
- -0.04571860283613205, 0.22297403216362, 0.00833467673510313, 0.03210999444127083,
- 0.020595740526914597, -0.03521645814180374, 0.013520379550755024, -0.0775037333369255,
- -0.08638301491737366, 0.0008569914498366416, 0.008226951584219933, 0.007444178685545921,
- -0.03281348943710327, -0.10470710694789886, -0.019745131954550743, 0.00283098965883255,
- 0.009786175563931465, 0.11515413969755173, -0.045943863689899445, 0.023944295942783356,
- -0.04280652105808258, 0.11045343428850174, 0.026071898639202118, 0.01496406365185976,
- 0.0599980391561985, 0.11081194877624512, -0.01571349985897541, 0.029484005644917488,
- -0.02535131201148033, -0.05906381458044052, -0.03224313631653786, 0.13298727571964264,
- -0.030097495764493942, 0.09894159436225891, 0.07060912251472473, -0.04451759159564972,
- -0.04589593783020973, 0.029538942500948906, -0.019890036433935165,
- 0.0034396525006741285, -0.4664316177368164, -0.0456819124519825, 0.09687246382236481,
- 0.011120748706161976, -0.005599565338343382, 0.07462941855192184, 0.017119046300649643,
- -0.03730566054582596, -0.013100867159664631, -0.0884583443403244, 0.11943648755550385,
- 0.009612435474991798, 0.08028978109359741, -0.08353672921657562, 0.011813892982900143,
- 0.08557061851024628, -0.03252408653497696, 0.01678752340376377, 0.039498090744018555,
- -0.20964138209819794, 0.0065355002880096436, -0.009332818910479546, 0.13016973435878754,
- 0.013589675538241863, 0.033734146505594254, 0.09248774498701096, -0.05226077139377594,
- -0.002722290577366948, 0.06255465000867844, 0.008712977170944214, 0.04432734474539757,
- 0.001156427781097591, -0.011484541930258274, 0.0869433805346489, 0.10096680372953415,
- 0.10323947668075562, -0.027841828763484955, 11.940415382385254, 0.037929896265268326,
- 0.05413806810975075, -0.08618855476379395, 0.004970872774720192, -0.036087170243263245,
- 0.012432624585926533, -0.12026423960924149, 0.06615009903907776, 0.1263953596353531,
- -0.005442541092634201, -0.0419686995446682, -0.05086668208241463, -0.09216734766960144,
- 0.019732018932700157, -0.02877654880285263, -0.05244006961584091, -0.053468815982341766,
- 0.06420504301786423, -0.04239151254296303, -0.015086941421031952, 0.05882171913981438,
- 0.06334000080823898, 0.016817549243569374, -0.05142739787697792, -0.024004654958844185,
- 0.029336631298065186, -0.010678118094801903, 0.025040803477168083, 0.03311379626393318,
- 0.013690189458429813, 0.014539066702127457, 0.058627013117074966, 0.016737602651119232,
- 0.05419156327843666, 0.0491165928542614, 0.05469606816768646, 0.030078859999775887,
- 0.019908031448721886, 0.08602979779243469, 0.012211265042424202, 0.009824610315263271,
- 0.022947881370782852, 0.03748953342437744, 0.0726180449128151, 0.045530010014772415,
- 0.05494459345936775, 0.11160846054553986, 0.02526511438190937, 0.0828179344534874,
- 0.0846620425581932, -0.007949220947921276, 0.10498429089784622, 0.023069655522704124,
- 0.010978566482663155, 0.05998355522751808, 0.02347799390554428, -0.07351262867450714,
- 0.05676939710974693, -0.011799403466284275, -0.06786063313484192, 0.1214957907795906,
- 0.02673649787902832, 0.10471729934215546, -0.00480656698346138, 0.07814837247133255,
- 0.08626528829336166, 0.07889863103628159, -0.1354568600654602, -0.06296496093273163,
- 0.025660309940576553, -0.09852535277605057, -0.07290894538164139, 0.05847785994410515,
- 0.058554984629154205, -0.043663352727890015, 0.03430591896176338, -0.03187437728047371,
- 0.03567129001021385, 0.0027377773076295853, 0.0013959213392809033, 0.04375893995165825,
- -0.024283047765493393, 0.0032117750961333513, 0.05234171822667122, 0.013735847547650337,
- 0.06544487178325653, 0.10171886533498764, -0.012729864567518234, -0.11233586072921753,
- -0.07815004885196686, 0.07540767639875412, -0.018582144752144814, -0.08313947916030884,
- 0.020784571766853333, -0.06357933580875397, 0.01807704195380211, -0.1518300622701645,
- 0.10399004817008972, 0.12610302865505219, -0.10275665670633316, -0.0038073163013905287,
- -0.05414152890443802, 0.07750354707241058, 0.024172117933630943, 0.019209254533052444,
- -0.050031062215566635, 0.03289109095931053, -0.008661114610731602, 0.03824290260672569,
- -0.028976138681173325, 0.043924640864133835, 0.07287624478340149, -0.05710763484239578,
- 0.007331652566790581, 0.049854595214128494, -0.03148835152387619, -0.024908049032092094,
- 0.04013631120324135, 0.04289291426539421, -0.09180398285388947, -0.03084952011704445,
- -0.03364231064915657, -0.018320059403777122, -0.0007737954729236662,
- -0.07012253254652023, 0.01674051582813263, 0.042879603803157806, -0.055570147931575775,
- -0.006858093664050102, 0.032973095774650574, 0.05795400217175484, 0.07379461079835892,
- 0.006076281424611807, 0.05879773572087288, -0.04771651700139046, -0.024029793217778206,
- 0.03268115967512131, 0.029998263344168663, 0.061607129871845245, -0.06026570871472359,
- -0.055210430175065994, -0.04305906593799591, -0.12879180908203125, 0.029467906802892685,
- 0.09102488309144974, 0.03961432725191116, 0.0385904498398304, 0.03831496462225914,
- -0.07583427429199219, -0.01837197132408619, 0.1148669421672821, -0.010789119638502598,
- -0.025214040651917458, 0.012817553244531155, -0.03936007618904114, -0.04471062868833542,
- 0.10345688462257385, -0.028311941772699356, -0.030077900737524033,
- 0.00046813717926852405, -0.10967129468917847, 0.09420531243085861, 0.08583264797925949,
- 0.042019039392471313, 0.03373776376247406, 0.041095465421676636, 0.03391950577497482,
- 0.0058323899284005165, 0.010115450248122215, 0.01698950119316578, -0.025896240025758743,
- -0.10164079070091248, -0.0864722803235054, 0.025467978790402412, 0.10652009397745132,
- 0.032505471259355545, -0.09894245862960815, -0.011659343726933002, -0.06705737859010696
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 19,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 18,
- "similarity": 0.9991586208343506
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 40,
- "similarity": 0.9991539716720581
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 53,
- "similarity": 0.9991511106491089
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Tom Simonite"],
- "epoch_date_downloaded": 1604620800,
- "epoch_date_modified": 1607299200,
- "epoch_date_submitted": 1607299200,
- "flag": null,
- "report_number": 1366,
- "source_domain": "technologyreview.com",
- "submitters": ["Roman Lutz", "CSET annotators"],
- "title": "Probing the Dark Side of Google’s Ad-Targeting System",
- "url": "https://www.technologyreview.com/2015/07/06/110198/probing-the-dark-side-of-googles-ad-targeting-system/"
- },
- {
- "__typename": "Report",
- "authors": ["Samuel Gibbs"],
- "epoch_date_downloaded": 1604620800,
- "epoch_date_modified": 1607299200,
- "epoch_date_submitted": 1607299200,
- "flag": null,
- "report_number": 1365,
- "source_domain": "theguardian.com",
- "submitters": ["Roman Lutz", "CSET annotators"],
- "title": "Women less likely to be shown ads for high-paid jobs on Google, study shows",
- "url": "https://www.theguardian.com/technology/2015/jul/08/women-less-likely-ads-high-paid-jobs-google-study"
- },
- {
- "__typename": "Report",
- "authors": ["The Root Staff"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 187,
- "source_domain": "theroot.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Google a 'Black' Name, Get an Arrest Ad?",
- "url": "https://www.theroot.com/google-a-black-name-get-an-arrest-ad-1790895136"
- },
- {
- "__typename": "Report",
- "authors": ["Bianca Bosker"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 185,
- "source_domain": "huffingtonpost.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Google's Online Ad Results Guilty Of Racial Profiling, According To New Study",
- "url": "https://www.huffingtonpost.com/2013/02/05/online-racial-profiling_n_2622556.html"
- },
- {
- "__typename": "Report",
- "authors": ["Latanya Sweeney"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 184,
- "source_domain": "queue.acm.org",
- "submitters": ["Roman Yampolskiy"],
- "title": "Discrimination in Online Ad Delivery",
- "url": "https://queue.acm.org/detail.cfm?id=2460278"
- },
- {
- "__typename": "Report",
- "authors": ["BBC News"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 183,
- "source_domain": "bbc.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Google searches expose racial bias, says study of names",
- "url": "https://www.bbc.com/news/technology-21322183"
- },
- {
- "__typename": "Report",
- "authors": ["Will Knight", "Douglas Heaven"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 182,
- "source_domain": "technologyreview.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Racism is Poisoning Online Ad Delivery, Says Harvard Professor",
- "url": "https://www.technologyreview.com/s/510646/racism-is-poisoning-online-ad-delivery-says-harvard-professor/"
- },
- {
- "__typename": "Report",
- "authors": ["Globe Staff"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 181,
- "source_domain": "bostonglobe.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Harvard professor spots Web search bias",
- "url": "https://www.bostonglobe.com/business/2013/02/06/harvard-professor-spots-web-search-bias/PtOgSh1ivTZMfyEGj00X4I/story.html"
- },
- {
- "__typename": "Report",
- "authors": ["The Telegraph"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 179,
- "source_domain": "telegraph.co.uk",
- "submitters": ["Roman Yampolskiy"],
- "title": "Google search results 'show racial bias'",
- "url": "https://www.telegraph.co.uk/technology/google/9847819/Google-search-results-show-racial-bias.html"
- },
- {
- "__typename": "Report",
- "authors": ["Phys Org"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 178,
- "source_domain": "phys.org",
- "submitters": ["Roman Yampolskiy"],
- "title": "Online search ads expose racial bias, study finds",
- "url": "https://phys.org/news/2013-02-online-ads-expose-racial-bias.html"
- },
- {
- "__typename": "Report",
- "authors": ["Agence France Presse"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 177,
- "source_domain": "businessinsider.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Study Finds Google Search Ads Are Racially Biased",
- "url": "https://www.businessinsider.com/study-finds-google-search-ads-are-racially-biased-2013-2"
- },
- {
- "__typename": "Report",
- "authors": ["Arwa Mahdawi"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 176,
- "source_domain": "theguardian.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Can Googling be racist?",
- "url": "https://www.theguardian.com/commentisfree/2013/feb/05/can-googling-be-racist"
- },
- {
- "__typename": "Report",
- "authors": ["Alyssa Newcomb"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 175,
- "source_domain": "abcnews.go.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Google Ad Delivery Can Show 'Racial Bias,' Says Harvard Study",
- "url": "https://abcnews.go.com/Technology/google-ad-delivery-shows-racial-bias-study-harvard/story?id=18419075"
- },
- {
- "__typename": "Report",
- "authors": ["RT"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 174,
- "source_domain": "rt.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Google exposes racial discrimination in online ads delivery - study",
- "url": "https://www.rt.com/news/google-racial-discrimination-study-442/"
- },
- {
- "__typename": "Report",
- "authors": ["Jennifer Cowan"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 173,
- "source_domain": "sitepronews.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Google Ads Reveal Bias Against African-Americans, Harvard University Study Reveals",
- "url": "http://www.sitepronews.com/2013/02/06/google-ads-reveal-bias-against-african-americans-harvard-university-study-reveals/"
- },
- {
- "__typename": "Report",
- "authors": [
- "Michael Brennan",
- "Judith Heumann",
- "Moushira Elgeziri",
- "Marielle Velander"
- ],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 172,
- "source_domain": "fordfoundation.org",
- "submitters": ["Roman Yampolskiy"],
- "title": "Can computers be racist? Big data, inequality, and discrimination",
- "url": "https://www.fordfoundation.org/ideas/equals-change-blog/posts/can-computers-be-racist-big-data-inequality-and-discrimination/"
- },
- {
- "__typename": "Report",
- "authors": ["Bill Snyder"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 171,
- "source_domain": "cio.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Are Google Ad Results Guilty of Racial Profiling?",
- "url": "https://www.cio.com/article/2370727/internet/are-google-ad-results-guilty-of-racial-profiling-.html"
- },
- {
- "__typename": "Report",
- "authors": ["Mariya Yao"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 169,
- "source_domain": "topbots.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Fighting Algorithmic Bias \u0026 Homogenous Thinking in AI",
- "url": "https://www.topbots.com/fighting-homogenous-thinking-algorithmic-bias-ai/"
- },
- {
- "__typename": "Report",
- "authors": ["Privacy International"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 168,
- "source_domain": "privacyinternational.org",
- "submitters": ["Roman Yampolskiy"],
- "title": "Embedded racism determines online advertising placement",
- "url": "https://privacyinternational.org/examples-abuse/1877/embedded-racism-determines-online-advertising-placement"
- },
- {
- "__typename": "Report",
- "authors": ["David Stewart"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 167,
- "source_domain": "archive.boston.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Harvard professor says 'black' names in Google searches more likely to offer arrest ads",
- "url": "http://archive.boston.com/news/source/2013/02/harvard_profess.html"
- },
- {
- "__typename": "Report",
- "authors": ["PrivacyLaw"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 166,
- "source_domain": "sites.law.berkeley.edu",
- "submitters": ["Roman Yampolskiy"],
- "title": "Latanya Sweeney, Racial Discrimination in Online Ad Delivery",
- "url": "https://sites.law.berkeley.edu/privacylaw/2013/05/28/latanya-sweeney-racial-discrimination-in-online-ad-delivery/"
- },
- {
- "__typename": "Report",
- "authors": ["Tim Worstall"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 163,
- "source_domain": "forbes.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Is Google Racist Or Is It The Rest Of Us?",
- "url": "https://www.forbes.com/sites/timworstall/2013/02/07/is-google-racist-or-is-it-the-rest-of-us/#5e5e88da5f1e"
- },
- {
- "__typename": "Report",
- "authors": ["Anneli L. Tostar"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 162,
- "source_domain": "thecrimson.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Harvard Researcher: Google-Generated Ads Show Racial Bias",
- "url": "https://www.thecrimson.com/article/2013/2/14/google-ads-racial-skew/"
- },
- {
- "__typename": "Report",
- "authors": ["Freakonomics"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 161,
- "source_domain": "freakonomics.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "How Much Does Your Name Matter?",
- "url": "http://freakonomics.com/podcast/how-much-does-your-name-matter/"
- },
- {
- "__typename": "Report",
- "authors": ["Latanya Sweeney"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 160,
- "source_domain": "arxiv.org",
- "submitters": ["Roman Yampolskiy"],
- "title": "Discrimination in Online Ad Delivery",
- "url": "https://arxiv.org/abs/1301.6822"
- },
- {
- "__typename": "Report",
- "authors": ["Damien Gayle"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 159,
- "source_domain": "dailymail.co.uk",
- "submitters": ["Roman Yampolskiy"],
- "title": "Google accused of racism after black names are 25% more likely to bring up adverts for criminal records checks",
- "url": "https://www.dailymail.co.uk/sciencetech/article-2273741/Google-accused-racism-black-names-25-likely-bring-adverts-criminal-records-checks.html"
- },
- {
- "__typename": "Report",
- "authors": ["Data Privacy Lab"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 158,
- "source_domain": "dataprivacylab.org",
- "submitters": ["Roman Yampolskiy"],
- "title": "Discrimination in Online Ad Delivery",
- "url": "https://dataprivacylab.org/projects/onlineads/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "tesla",
- "name": "Tesla"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "tesla",
- "name": "Tesla"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "motorists",
- "name": "Motorists"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [
- 1364, 1363, 1362, 216, 215, 214, 213, 211, 210, 207, 206, 205, 204, 203, 202, 201, 198,
- 197, 196, 193, 192, 191
- ],
- "vector": [
- -0.09854776412248611, 0.09725019335746765, 0.00013262851280160248, -0.09642257541418076,
- 0.08455607295036316, -0.023406175896525383, -0.014249068684875965, 0.03303529694676399,
- 0.05101284012198448, -0.14086028933525085, -0.0014230250380933285, 0.07070067524909973,
- 0.014026240445673466, -0.06965964287519455, 0.058801546692848206, -0.1093464195728302,
- -0.09000163525342941, -0.05496882274746895, 0.0025239696260541677, -0.10414553433656693,
- -0.06894678622484207, -0.01591174677014351, 0.04368920624256134, 0.10318127274513245,
- -0.06555083394050598, 0.01772111840546131, 0.08782772719860077, 0.09836433082818985,
- -0.02571585215628147, 0.04944312199950218, -0.002442443510517478, -0.061643827706575394,
- 0.12056582421064377, 0.020439468324184418, -0.0025435807183384895, 0.09782061725854874,
- 0.010518994182348251, -0.010829496197402477, -0.03452669456601143,
- -0.005688006989657879, 0.016219276934862137, 0.27081212401390076, 0.0024325817357748747,
- -0.014405790716409683, 0.030558111146092415, -0.060780271887779236, 0.02017604187130928,
- 0.055438973009586334, 0.02178546041250229, 0.03658834844827652, -0.010685687884688377,
- 0.08318229764699936, -0.02870897576212883, 0.022047705948352814, -0.12018579989671707,
- 0.05942615494132042, 0.03468028083443642, -0.019382230937480927, 0.06777326762676239,
- -0.07412510365247726, -0.06106267869472504, -0.274429053068161, -0.050291869789361954,
- -0.06636955589056015, 0.07352770864963531, -0.076737180352211, -0.028539134189486504,
- -0.011435454711318016, 0.03425134718418121, 0.08297278732061386, 0.07678878307342529,
- -0.05035805329680443, -0.04382077977061272, 0.04586238041520119, 0.008026591502130032,
- -0.006468795705586672, -0.017312990501523018, 0.2051229625940323, -0.12550245225429535,
- -0.004074454307556152, 0.11929087340831757, -0.10949433594942093, 0.4797731637954712,
- 0.022162066772580147, -0.033370669931173325, -0.035857148468494415, 0.09640064090490341,
- 0.03742389380931854, 0.03728462755680084, 0.05439044535160065, -0.04097871854901314,
- 0.02331879548728466, -0.04205847159028053, 0.039543185383081436, 0.07500776648521423,
- 0.04470234364271164, -0.007345843594521284, 0.06281436234712601, -0.017345227301120758,
- -0.05425957217812538, 0.0225552748888731, -0.04079994186758995, 0.08412633091211319,
- 0.05659261718392372, -0.018079690635204315, 0.023165255784988403, 0.09294388443231583,
- -0.03413775563240051, 0.056740544736385345, -0.07172862440347672, 0.026290278881788254,
- 0.004695205017924309, 0.052812349051237106, -0.00032019129139371216,
- 0.04836758226156235, -0.08165793865919113, 0.009520601481199265, 0.04669966921210289,
- 0.09548843652009964, 0.013311979360878468, -0.03603706881403923, 0.05684690177440643,
- 0.08966038376092911, -0.07918906211853027, -0.0275486521422863, -0.027333801612257957,
- -0.0687667652964592, -0.0342971496284008, -0.05565417930483818, 0.040556252002716064,
- -0.06714076548814774, -0.20059329271316528, 0.02606200985610485, 0.1176946610212326,
- -0.019587213173508644, -0.044948991388082504, -0.01587161235511303,
- -0.08239433169364929, 0.041814565658569336, -0.031588274985551834,
- -0.026968609541654587, 0.04472363740205765, 0.03176560997962952, 0.02899065427482128,
- 0.11061351001262665, 0.07170284539461136, -0.05484689399600029, -0.039694882929325104,
- 0.017166562378406525, -0.03455138951539993, 0.09817047417163849, -0.11850078403949738,
- -0.0597064234316349, 0.021462950855493546, -0.01557911280542612, 0.7048510909080505,
- 0.12078604102134705, 0.19058758020401, 0.019196413457393646, -0.03535488620400429,
- 0.17591920495033264, 0.015038648620247841, 0.05732220038771629, -0.09269445389509201,
- -0.07162798196077347, 0.03705238923430443, -0.09896782040596008, -0.05695858970284462,
- 0.031154191121459007, 0.025005001574754715, 0.11398908495903015, 0.031369648873806,
- 0.09446889907121658, -0.00576434563845396, -0.10700792819261551, -0.04196798801422119,
- 0.06928922981023788, 0.020695477724075317, -0.09595248848199844, -0.04395073652267456,
- 0.04035142436623573, 0.09978733211755753, -0.0756087601184845, 0.0069469730369746685,
- -0.04866798222064972, 0.04907120391726494, -0.013348936103284359, 0.036563441157341,
- -0.05452536419034004, 0.030141092836856842, 0.025567632168531418, 0.07970467209815979,
- 0.00556656438857317, -0.12451452761888504, -0.029619533568620682, 0.10953176766633987,
- -0.016259362921118736, -0.040427904576063156, 0.05443478748202324, -0.09481413662433624,
- 0.04514933004975319, 0.01950010284781456, 0.14545521140098572, -0.11138441413640976,
- 0.01672876812517643, 0.003967937547713518, 0.00039706772076897323, 0.05409729853272438,
- -0.013562973588705063, -0.06340169161558151, -0.04996073618531227, 0.0846385508775711,
- 0.04262986779212952, 0.0688195750117302, 0.08976703882217407, -0.03502948582172394,
- 0.0444328635931015, 0.06657323986291885, 0.002164724748581648, -0.02308385819196701,
- 0.052833400666713715, 0.09831574559211731, -0.019757302477955818, -0.024859679862856865,
- 0.03680504858493805, 0.014065497554838657, 0.023221587762236595, -0.004759501200169325,
- 0.06888839602470398, 0.010018054395914078, -0.06317729502916336, 0.018513666465878487,
- 0.029440857470035553, 0.012764299288392067, 0.12544435262680054, -0.0531485415995121,
- -0.06391730904579163, -0.016628345474600792, -0.027791844680905342,
- 0.011623798869550228, -0.024948803707957268, 0.09202096611261368, 0.05521172285079956,
- 0.0977916494011879, 0.027177540585398674, 0.044649794697761536, 0.06618582457304001,
- 0.03303724154829979, 0.04598393663764, 0.08565874397754669, -0.02406192570924759,
- -0.08575870096683502, -0.02299336902797222, 0.005558336153626442, 0.03917694091796875,
- 0.03045847825706005, -0.07519379258155823, -0.04031640291213989, -0.04505905881524086,
- -0.03772391378879547, -0.09025636315345764, -0.039459384977817535, 0.005715471226722002,
- 0.08343584090471268, -0.02796991914510727, -0.06152478605508804, -0.109695665538311,
- 0.02257184311747551, 0.06344329565763474, 0.009365387260913849, -0.01745491661131382,
- -0.10795583575963974, -0.015228793025016785, -0.046136949211359024, 0.04158715531229973,
- -0.011489201337099075, -0.0024850894697010517, 0.0028833276592195034,
- -0.057873472571372986, 0.010804261080920696, -0.03240805119276047,
- -0.030783144757151604, -0.06475099176168442, -0.08422110229730606, -0.04172114282846451,
- -0.0028113166335970163, 0.02209043689072132, -0.006238594651222229, 0.04079429805278778,
- 0.021495621651411057, 0.03500901162624359, -0.01461605355143547, -0.04994308575987816,
- 0.07008219510316849, -0.026470404118299484, -0.017266765236854553, 0.08346021920442581,
- -0.018790777772665024, 0.05191514641046524, 0.002069946378469467, -0.08700097352266312,
- -0.02452372945845127, 0.03019266575574875, -0.07251083105802536, 0.04302674159407616,
- -0.02783656120300293, 0.018794991075992584, -0.02867565117776394, 0.012141555547714233,
- 0.05386083945631981, -0.06684642285108566, -0.07464061677455902, -0.09858077019453049,
- 0.11601383984088898, -0.0011793047888204455, -0.02653670497238636, 0.028221778571605682,
- -0.05548955500125885, 0.057047486305236816, -0.02400454878807068, -0.004619945306330919,
- 0.02763308770954609, 0.034511495381593704, -0.02480294182896614, 0.0038751994725316763,
- 0.0558452382683754, -0.034747060388326645, 0.03188489377498627, 0.06422419846057892,
- 0.43076542019844055, -0.1492510437965393, 0.07305138558149338, 0.09218814224004745,
- 0.010406569577753544, 0.06392523646354675, -0.054059673100709915, 0.07206226140260696,
- 0.08028817176818848, 0.11014589667320251, 0.11308807879686356, -0.03190682828426361,
- -0.0017317923484370112, -0.05944843217730522, 0.10325931757688522,
- -0.002729589818045497, 0.012377352453768253, -0.018100248649716377,
- -0.09974140673875809, 0.0005830133450217545, 0.05323615297675133, -0.055332086980342865,
- 0.00756802735850215, -0.008807220496237278, -0.07544073462486267, -0.012105145491659641,
- 0.004583361092954874, 0.002636492485180497, -0.03202100843191147, 0.007973361760377884,
- -0.022454308345913887, 0.03218711540102959, 0.019835462793707848, 0.034708574414253235,
- -0.13488705456256866, 0.04441250115633011, -0.11269807815551758, -0.08395880460739136,
- 0.09062450379133224, -0.03657539188861847, 0.04254020005464554, 0.057443417608737946,
- -0.03486986458301544, 0.027085579931735992, -0.005594748072326183,
- -0.060971736907958984, 0.03198741376399994, 0.07367823272943497, 0.015608927235007286,
- 0.08227942883968353, 0.15920478105545044, -0.05470482259988785, -0.05357002094388008,
- -0.06750065833330154, 0.09547638893127441, 0.10685401409864426, -0.044624414294958115,
- 0.002776021370664239, -0.025413231924176216, -0.01833600178360939,
- 0.0029652558732777834, -0.07705584168434143, -0.07308759540319443, 0.010519175790250301,
- -0.030152814462780952, 0.06163770332932472, -0.015433874912559986,
- -0.026359526440501213, -0.17248786985874176, -0.03283625841140747,
- -0.033009737730026245, 0.0183369442820549, 0.1367301493883133, -0.05296768993139267,
- 0.011971423402428627, 0.05287148058414459, -0.0286665391176939, 0.02397085353732109,
- -0.1009778082370758, 0.015210193581879139, -0.051749370992183685, 0.03850738704204559,
- 0.03588588535785675, 0.04821150004863739, -0.03662419691681862, 0.08447107672691345,
- -0.10297909379005432, 0.0607028603553772, 0.022891147062182426, 0.006257851142436266,
- 0.027133803814649582, -0.033587995916604996, 0.037095628678798676, 0.050675585865974426,
- -0.04677142947912216, 0.022064078599214554, -0.042893748730421066, -0.03971457853913307,
- -0.10577218234539032, -0.06678280234336853, -0.04076705873012543, -0.08601056039333344,
- 0.0644114539027214, -0.11113088577985764, -0.04222820699214935, -0.03438689187169075,
- -0.009362026117742062, 0.02493305690586567, 0.04357459023594856, 0.04207555949687958,
- -0.15564511716365814, 0.031139563769102097, -0.021191062405705452, 0.08504121750593185,
- -0.033107638359069824, -0.022909505292773247, 0.002031037351116538, 0.11638540774583817,
- 0.05998140946030617, 0.015513298101723194, 0.006600022781640291, -0.05625453218817711,
- 0.0074010384269058704, -0.08094915747642517, -0.44957607984542847, 0.05611385032534599,
- 0.0048478529788553715, 0.048857998102903366, -0.0015093080000951886,
- -0.04296132177114487, 0.04012934863567352, -0.008119827136397362, -0.056492485105991364,
- 0.09921442717313766, -0.05119876563549042, 0.02337007038295269, 0.009181186556816101,
- -0.07505005598068237, -0.051133379340171814, -0.0380447618663311, -0.06039241701364517,
- 0.05928511917591095, -0.027091164141893387, -0.0706656277179718, -0.10151439160108566,
- 0.030106810852885246, -0.0294752586632967, 0.011163202114403248, 0.0005338588380254805,
- 0.029289858415722847, -0.08574165403842926, -0.03214763104915619, 0.03571445867419243,
- 0.06786268949508667, 0.0466635599732399, -0.06305406987667084, -0.012036583386361599,
- 0.03628775477409363, -0.05145427957177162, 0.1591692566871643, 0.0037455151323229074,
- 0.012089437805116177, -0.07376153767108917, 0.08614129573106766, 0.052863478660583496,
- 0.18411187827587128, -0.02268756739795208, 0.025749247521162033, 0.028196362778544426,
- 0.15366503596305847, 0.04578617587685585, 0.01966717280447483, -0.025941789150238037,
- 0.005573951173573732, 0.03024476207792759, -0.0216671209782362, 0.048242487013339996,
- -0.07562702149152756, -0.02954305335879326, -0.028565794229507446, 0.004782168660312891,
- -0.0027702695224434137, 0.020445313304662704, 0.20103317499160767, 0.013123811222612858,
- 0.03252408653497696, -0.004254558123648167, -0.06682591140270233, -0.01897827349603176,
- -0.052628207951784134, -0.11220169812440872, -0.012437296099960804,
- -0.010478075593709946, 0.01750408299267292, -0.042270030826330185, -0.14297176897525787,
- -0.010293800383806229, -0.03235838562250137, -0.004378842189908028, 0.10117915272712708,
- 0.0171503946185112, 0.05860309675335884, -0.021588794887065887, 0.11402371525764465,
- 0.049378979951143265, 0.003932416904717684, 0.06464913487434387, 0.09210999310016632,
- 0.021068809553980827, 0.027416903525590897, -0.024609746411442757, -0.07129077613353729,
- 0.011640158481895924, 0.11172168701887131, -0.05306204408407211, 0.08220460265874863,
- 0.046323273330926895, -0.031617071479558945, -0.07416533678770065, 0.03384711593389511,
- -0.01317195687443018, 0.0478692390024662, -0.46225807070732117, -0.006651423871517181,
- 0.12227943539619446, 0.01923183910548687, 0.0346638523042202, 0.08488588780164719,
- 0.04303969070315361, -0.03542937710881233, -0.056804023683071136, -0.037659045308828354,
- 0.16681934893131256, -0.019106192514300346, 0.04547404125332832, -0.08758831024169922,
- 0.05644745007157326, 0.07254098355770111, -0.03556172922253609, -0.029101721942424774,
- 0.06803948432207108, -0.2196744978427887, -0.002300676889717579, -0.06466151028871536,
- 0.1485317349433899, 0.046910032629966736, 0.02880544774234295, 0.07859434187412262,
- -0.06502726674079895, 0.04680299758911133, 0.057763658463954926, -0.015695985406637192,
- 0.07305282354354858, 0.009337649680674076, -0.01693628914654255, 0.13187269866466522,
- 0.08635043352842331, 0.09807007014751434, -0.02348875254392624, 12.071603775024414,
- 0.08083176612854004, 0.027466468513011932, -0.07046504318714142, 0.043448206037282944,
- -0.052411701530218124, 0.02326548844575882, -0.1179305836558342, 0.05226784944534302,
- 0.12174446880817413, -0.024739356711506844, -0.038458455353975296,
- -0.017673281952738762, -0.11501879245042801, 0.0045645409263670444,
- -0.09152081608772278, -0.04906793683767319, -0.014608352445065975, 0.029607754200696945,
- -0.03964872285723686, -0.003677221480756998, -0.007017027121037245, 0.07665600627660751,
- 0.021553102880716324, -0.06926912814378738, 0.05757911130785942, 0.0328955352306366,
- -0.0050612217746675014, 0.006620450410991907, 0.03387396037578583, -0.04199300706386566,
- 0.019326675683259964, 0.0393611416220665, -0.011738413013517857, -0.019437534734606743,
- 0.08017662167549133, 0.07227934151887894, 0.07620751857757568, 0.007060323841869831,
- 0.0971425250172615, 0.032321084290742874, 0.013265944086015224, 0.03870987892150879,
- 0.03774615749716759, 0.0380995087325573, 0.03982100263237953, 0.07520842552185059,
- 0.11099200695753098, 0.02971442975103855, 0.0557219535112381, 0.08847322314977646,
- -0.028460746631026268, 0.1448066532611847, 0.00900234468281269, -0.0041068606078624725,
- 0.041493769735097885, -0.017981858924031258, -0.07069914788007736, 0.07354807108640671,
- 0.0867614820599556, -0.06500522047281265, 0.08713863790035248, 0.0012530451640486717,
- 0.11518030613660812, -0.022776860743761063, 0.05951818451285362, 0.08205752819776535,
- 0.061747800558805466, -0.12675908207893372, -0.09126792103052139, 0.03987646475434303,
- -0.11528437584638596, -0.07002050429582596, 0.054732922464609146, 0.1179094985127449,
- -0.06768202036619186, 0.056690528988838196, -0.05066420137882233, 0.024407310411334038,
- -0.034977756440639496, -0.038520749658346176, 0.04117589816451073, 0.00601799925789237,
- 0.027949441224336624, 0.05042947456240654, 0.008602031506597996, 0.0909070298075676,
- 0.09336233884096146, -0.02223915047943592, -0.09424269944429398, -0.10351330786943436,
- 0.09365645051002502, -0.027627140283584595, -0.060067519545555115, 0.011969148181378841,
- -0.05385255813598633, 0.06595813482999802, -0.1580476611852646, 0.06650838255882263,
- 0.11029691249132156, -0.10563451796770096, -0.00017136087990365922,
- -0.029043084010481834, 0.04488661512732506, -0.010781584307551384, 0.043406352400779724,
- -0.044329650700092316, 0.013352013193070889, 0.015773624181747437, 0.05257055535912514,
- -0.04941223934292793, 0.067010298371315, 0.08254413306713104, -0.0785747841000557,
- 0.0444975420832634, 0.06452199071645737, -0.01347291748970747, -0.060431599617004395,
- 0.05969374254345894, 0.05101870000362396, -0.09393798559904099, -0.05441507324576378,
- -0.027493441477417946, -0.058305785059928894, -0.04256724566221237,
- -0.041516877710819244, 0.023686040192842484, 0.02914755418896675, -0.06613437086343765,
- -0.019933095201849937, 0.016945648938417435, 0.028817160055041313, 0.09538128972053528,
- 0.007709362078458071, 0.05484627187252045, -0.0890345349907875, -0.02756393700838089,
- 0.05453285947442055, 0.050606951117515564, 0.06764575093984604, -0.021859752014279366,
- 0.005056436639279127, -0.06003940477967262, -0.12301488220691681, 0.004266269970685244,
- 0.11143708229064941, 0.06971663981676102, 0.03696995601058006, 0.03480852395296097,
- -0.09788868576288223, -0.0625617578625679, 0.12342055141925812, 0.0296880304813385,
- 0.008482557721436024, 0.013726392760872841, -0.10091838240623474, -0.028944509103894234,
- 0.15701280534267426, -0.03838954120874405, 0.0034874991979449987, 0.025295419618487358,
- -0.007585897576063871, 0.08640934526920319, 0.10789216309785843, 0.07843133062124252,
- 0.03975341096520424, 0.00582738546654582, -0.011804679408669472, 0.03061184287071228,
- -0.025439780205488205, 0.011465140618383884, 0.012355566956102848, -0.14467602968215942,
- -0.07577485591173172, 0.031664375215768814, 0.08557406812906265, 0.004281325731426477,
- -0.09455294907093048, -0.029936902225017548, -0.03553452715277672
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 20,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 71,
- "similarity": 0.9996734857559204
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 4,
- "similarity": 0.9996035695075989
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 25,
- "similarity": 0.999518632888794
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Timothy B. Lee"],
- "epoch_date_downloaded": 1603670400,
- "epoch_date_modified": 1607299200,
- "epoch_date_submitted": 1607299200,
- "flag": null,
- "report_number": 1364,
- "source_domain": "arstechnica.com",
- "submitters": ["Ingrid Dickinson (CSET)"],
- "title": "Tesla with Autopilot hits cop car—driver admits he was watching a movie",
- "url": "https://arstechnica.com/cars/2020/08/movie-watching-tesla-driver-charged-after-autopilot-hits-cop-car/"
- },
- {
- "__typename": "Report",
- "authors": ["Ethan Baron"],
- "epoch_date_downloaded": 1603670400,
- "epoch_date_modified": 1607299200,
- "epoch_date_submitted": 1607299200,
- "flag": null,
- "report_number": 1363,
- "source_domain": "mercurynews.com",
- "submitters": ["Ingrid Dickinson (CSET)"],
- "title": "Tesla on ‘Autopilot’ hits police vehicle which hits ambulance, driver possibly drunk: police",
- "url": "https://www.mercurynews.com/2020/07/14/tesla-on-autopilot-hits-police-vehicle-which-hits-ambulance-driver-possibly-drunk-police/"
- },
- {
- "__typename": "Report",
- "authors": ["Ryan Kath"],
- "epoch_date_downloaded": 1603670400,
- "epoch_date_modified": 1607299200,
- "epoch_date_submitted": 1607299200,
- "flag": null,
- "report_number": 1362,
- "source_domain": "nbcboston.com",
- "submitters": ["Ingrid Dickinson (CSET)"],
- "title": "Police: Tesla That Hit Mass. State Trooper's Vehicle Was In Autopilot",
- "url": "https://www.nbcboston.com/investigations/police-tesla-that-hit-mass-state-troopers-vehicle-was-in-autopilot/2151164/"
- },
- {
- "__typename": "Report",
- "authors": ["National Transportation Safety Board"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 216,
- "source_domain": "ntsb.gov",
- "submitters": ["Anonymous"],
- "title": "HWY18FH011 Preliminary",
- "url": "https://ntsb.gov/investigations/AccidentReports/Pages/HWY18FH011-preliminary.aspx"
- },
- {
- "__typename": "Report",
- "authors": ["Fred Lambert"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 215,
- "source_domain": "electrek.co",
- "submitters": ["Anonymous"],
- "title": "Family of Tesla driver killed in Model X crash on Autopilot is preparing to sue Tesla",
- "url": "https://electrek.co/2018/04/11/tesla-driver-killed-model-x-autopilot-crash-sue-tesla/"
- },
- {
- "__typename": "Report",
- "authors": ["Dan Howarth"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 214,
- "source_domain": "dezeen.com",
- "submitters": ["Anonymous"],
- "title": "Apple engineer killed in Tesla car operating in driverless mode",
- "url": "https://www.dezeen.com/2018/04/03/driver-killed-tesla-model-x-operting-autopilot-mode/"
- },
- {
- "__typename": "Report",
- "authors": ["May"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 213,
- "source_domain": "recode.net",
- "submitters": ["Anonymous"],
- "title": "Elon Musk says Tesla crashes shouldn’t be front page news. Here’s why they should.",
- "url": "https://www.recode.net/2018/5/17/17362308/elon-musk-tesla-self-driving-autopilot-fatalities"
- },
- {
- "__typename": "Report",
- "authors": ["Benjamin Goggin"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 211,
- "source_domain": "digg.com",
- "submitters": ["Anonymous"],
- "title": "After Several Deaths, Tesla Is Still Sending Mixed Messages About Autopilot",
- "url": "http://digg.com/2018/tesla-crash-autopilot-investigation"
- },
- {
- "__typename": "Report",
- "authors": ["Jordan Golson"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 210,
- "source_domain": "theverge.com",
- "submitters": ["Anonymous"],
- "title": "Tesla driver killed in crash with Autopilot active, NHTSA investigating",
- "url": "https://www.theverge.com/2016/6/30/12072408/tesla-autopilot-car-crash-death-autonomous-model-s"
- },
- {
- "__typename": "Report",
- "authors": ["Brinda A. Thomas"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 207,
- "source_domain": "medium.com",
- "submitters": ["Anonymous"],
- "title": "A Closer Inspection of Tesla’s Autopilot Safety Statistics",
- "url": "https://medium.com/@mc2maven/a-closer-inspection-of-teslas-autopilot-safety-statistics-533eebe0869d"
- },
- {
- "__typename": "Report",
- "authors": ["Chuck Jones"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 206,
- "source_domain": "forbes.com",
- "submitters": ["Anonymous"],
- "title": "How An Uber Self-Driving Car Killing A Pedestrian Could Impact Tesla's Stock",
- "url": "https://www.forbes.com/sites/chuckjones/2018/03/19/how-an-uber-self-driving-car-killing-a-pedestrian-could-impact-teslas-stock/#2d597250197f"
- },
- {
- "__typename": "Report",
- "authors": ["Ian Bogost"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 205,
- "source_domain": "theatlantic.com",
- "submitters": ["Anonymous"],
- "title": "Can You Sue a Robocar?",
- "url": "https://www.theatlantic.com/technology/archive/2018/03/can-you-sue-a-robocar/556007/"
- },
- {
- "__typename": "Report",
- "authors": ["Bloomberg"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 204,
- "source_domain": "industryweek.com",
- "submitters": ["Anonymous"],
- "title": "Tesla Criticized for Blaming Autopilot Death on Driver",
- "url": "https://www.industryweek.com/technology-and-iiot/tesla-criticized-blaming-autopilot-death-driver"
- },
- {
- "__typename": "Report",
- "authors": ["David Shepardson"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 203,
- "source_domain": "reuters.com",
- "submitters": ["Anonymous"],
- "title": "Tesla says crashed vehicle had been on autopilot prior to accident",
- "url": "https://www.reuters.com/article/us-tesla-crash/tesla-says-crashed-vehicle-had-been-on-autopilot-prior-to-accident-idUSKBN1H7023"
- },
- {
- "__typename": "Report",
- "authors": ["Sean Keach"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 202,
- "source_domain": "trustedreviews.com",
- "submitters": ["Anonymous"],
- "title": "Who's to blame when robot cars kill?",
- "url": "https://www.trustedreviews.com/news/driverless-car-deaths-insurance-blame-uber-tesla-2945865"
- },
- {
- "__typename": "Report",
- "authors": ["Tom Krisher"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 201,
- "source_domain": "phys.org",
- "submitters": ["Anonymous"],
- "title": "FACT CHECK: Tesla safety claims aren't quite right",
- "url": "https://phys.org/news/2018-05-fact-tesla-safety.html"
- },
- {
- "__typename": "Report",
- "authors": ["Al Jazeera"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 198,
- "source_domain": "aljazeera.com",
- "submitters": ["Anonymous"],
- "title": "Tesla: Autopilot was on during crash",
- "url": "https://www.aljazeera.com/news/2018/04/tesla-acknowledges-autopilot-crash-180401155649131.html"
- },
- {
- "__typename": "Report",
- "authors": ["Marco Della Cava"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 197,
- "source_domain": "usatoday.com",
- "submitters": ["Anonymous"],
- "title": "Tesla Model S was on Autopilot, Utah driver tells police",
- "url": "https://www.usatoday.com/story/tech/2018/05/14/tesla-model-s-crash-utah-involved-autopilot-distracted-driver/609596002/"
- },
- {
- "__typename": "Report",
- "authors": ["Rob Stumpf", "Shari Gab", "James Gilboy", "Eric Brandt"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 196,
- "source_domain": "thedrive.com",
- "submitters": ["Anonymous"],
- "title": "Tesla Driver Allegedly Reported Autopilot Issues to Dealer Several Times Prior to Fatal Crash",
- "url": "http://www.thedrive.com/news/19802/tesla-driver-allegedly-reported-autopilot-issues-to-dealer-several-times-prior-to-fatal-crash"
- },
- {
- "__typename": "Report",
- "authors": ["Neal E. Boudette"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 193,
- "source_domain": "nytimes.com",
- "submitters": ["Anonymous"],
- "title": "Fatal Tesla Crash Raises New Questions About Autopilot System",
- "url": "https://www.nytimes.com/2018/03/31/business/tesla-crash-autopilot-musk.html"
- },
- {
- "__typename": "Report",
- "authors": ["Tim Higgins", "Mike Spector", "Mike Colias"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 192,
- "source_domain": "wsj.com",
- "submitters": ["Anonymous"],
- "title": "Tesla, Uber Deaths Raise Questions About the Perils of Partly Autonomous Driving",
- "url": "https://www.wsj.com/articles/tesla-uber-deaths-raise-questions-about-the-perils-of-partly-autonomous-driving-1522661400"
- },
- {
- "__typename": "Report",
- "authors": ["Victor Tangermann"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 191,
- "source_domain": "futurism.com",
- "submitters": ["Anonymous"],
- "title": "Tesla Model X in Autopilot Killed a Driver. Officials Aren’t Pleased With How Tesla Handled It.",
- "url": "https://futurism.com/officials-tesla-model-x-autopilot-killed-driver"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "researchers",
- "name": "Researchers"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "researchers",
- "name": "Researchers"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "researchers",
- "name": "Researchers"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [2471],
- "vector": [
- -0.059915781021118164, 0.06541264802217484, -0.02197926677763462, -0.018693748861551285,
- 0.15119808912277222, -0.01630253717303276, -0.0018472232623025775, 0.050734300166368484,
- 0.06344340741634369, -0.09745842218399048, -0.011855782009661198, 0.05967399850487709,
- -0.008315498009324074, -0.04024724289774895, 0.0962136909365654, -0.14351928234100342,
- -0.14981040358543396, 0.020441509783267975, -0.05965305119752884, -0.0315028540790081,
- -0.1102096363902092, 0.045472029596567154, 0.03211711347103119, 0.08353710919618607,
- -0.025762828066945076, 0.043093159794807434, 0.06794725358486176, 0.05977523326873779,
- -0.012683004140853882, 0.014995580539107323, -0.05136667564511299,
- -0.012912331148982048, 0.11187221109867096, -0.007679098751395941, 0.04241742566227913,
- 0.09081380814313889, 0.023698881268501282, 0.0041041006334125996, -0.17976970970630646,
- -0.008118469268083572, 0.040996141731739044, 0.15667986869812012, -0.02130923978984356,
- -0.017945772036910057, 0.04714246094226837, 0.008209862746298313, -0.005177169106900692,
- 0.005919026210904121, 0.004136186093091965, 0.020162364467978477, 0.02219904027879238,
- 0.031876903027296066, -0.05092792585492134, -0.009952209889888763, -0.06337521225214005,
- 0.06034500151872635, 0.03950042277574539, 0.0310335885733366, 0.03684951737523079,
- -0.07384876906871796, -0.03080032393336296, -0.12337394803762436, -0.03355030342936516,
- -0.015786202624440193, 0.06676317751407623, -0.07410755753517151, 0.0021810722537338734,
- -0.022151941433548927, 0.04455910623073578, 0.05524788796901703, 0.040856003761291504,
- -0.04274668172001839, -0.02874407172203064, 0.0009503824985586107,
- -0.024871082976460457, -0.0022087334655225277, -0.007677488960325718,
- 0.2733445465564728, -0.04187159240245819, 0.05628356337547302, 0.061902038753032684,
- -0.08002710342407227, 0.316942036151886, 0.06593228131532669, -0.01076091080904007,
- -0.014263330027461052, 0.06610796600580215, 0.038723379373550415, -0.03540991619229317,
- 0.02348986081779003, 0.009632861241698265, 0.040146537125110626, -0.08098682016134262,
- -0.027797609567642212, 0.05226742848753929, 0.06056077033281326, 0.04581107944250107,
- -0.1679353564977646, -0.03706374019384384, -0.006176401395350695, 0.008110408671200275,
- -0.07237070053815842, 0.17797265946865082, 0.029692236334085464, 0.0022823973558843136,
- 0.014134064316749573, 0.04355694726109505, 0.0010968797141686082, 0.047524407505989075,
- -0.017943603917956352, 0.033453524112701416, 0.05394832044839859, 0.057217761874198914,
- 0.05254229158163071, 0.030425839126110077, -0.0409809909760952, 0.041861642152071,
- 0.08053939044475555, 0.025957340374588966, 0.015102079138159752, -0.00675609428435564,
- 0.0696655735373497, 0.07126739621162415, -0.012008942663669586, -0.06962943077087402,
- 0.007369342725723982, 0.030390113592147827, -0.02523171901702881,
- -0.0029178254771977663, 0.06873822957277298, -0.027819393202662468,
- -0.22742000222206116, -0.006447257939726114, 0.02157941646873951, -0.007636990398168564,
- -0.007603802252560854, 0.06494981795549393, -0.07129740715026855, 0.0583559013903141,
- 0.00173124298453331, -0.02184845507144928, 0.05856142193078995, 0.028983119875192642,
- 0.05466021969914436, 0.048054289072752, 0.017761602997779846, 0.011629682965576649,
- -0.03829244151711464, 0.006977455224841833, -0.060257140547037125, 0.04435279592871666,
- -0.05659322440624237, -0.02155216783285141, -0.028172872960567474, -0.03347666934132576,
- 0.49769678711891174, 0.13527171313762665, 0.0317993089556694, -0.03363795951008797,
- -0.03038850426673889, 0.11591290682554245, 0.01432349719107151, 0.053993742913007736,
- -0.03013697639107704, 0.006701764650642872, 0.06606288254261017, -0.00623607961460948,
- 0.0011597583070397377, -0.015373467467725277, 0.03499697521328926, 0.035432469099760056,
- 0.00486006960272789, 0.08736971020698547, -0.003297981806099415, -0.08824682980775833,
- -0.014237225987017155, -0.0003569867694750428, 0.0031309430487453938,
- -0.11712811887264252, 0.004152073059231043, 0.03554685786366463, 0.058235134929418564,
- -0.0765710398554802, -0.004790072329342365, -0.019407493993639946, 0.010860406793653965,
- 0.03257210925221443, 0.045857176184654236, -0.02262301929295063, -0.051540523767471313,
- 0.06675881147384644, -0.022051068022847176, -0.04418924078345299, -0.022356657311320305,
- 0.020787393674254417, 0.13457748293876648, 0.03379470854997635, -0.03789399936795235,
- 0.08573877066373825, -0.06612837314605713, 0.009111774154007435, -0.08807681500911713,
- 0.1022823303937912, -0.1014266237616539, 0.0854976698756218, 0.007543735206127167,
- 0.024058548733592033, 0.0499204620718956, -0.07321390509605408, -0.08234576880931854,
- -0.03195999935269356, 0.06192201375961304, 0.010231899097561836, 0.05794023722410202,
- 0.027609337121248245, -0.01366468146443367, 0.0246904119849205, -0.04143410921096802,
- -0.03152383118867874, -0.09292830526828766, 0.05214046314358711, 0.03500240296125412,
- -0.06222061812877655, 0.0177261084318161, 0.004235681612044573, 0.0017592929070815444,
- 0.012512226589024067, 0.03750503808259964, 0.049842145293951035, 0.062269605696201324,
- 0.020021382719278336, 0.09509698301553726, 0.020217198878526688, 0.022104283794760704,
- 0.09853818267583847, -0.1404532492160797, 0.008514031767845154, -0.04808369651436806,
- -0.05388133227825165, 0.0031425170600414276, -0.026297148317098618, 0.0695919319987297,
- 0.0632207989692688, 0.07093098759651184, -0.03813987597823143, 0.073262520134449,
- -0.0046849618665874004, 0.06204548478126526, 0.025179656222462654, 0.06190240755677223,
- -0.04790991544723511, 0.010854499414563179, -0.058603718876838684,
- -0.0010856467997655272, 0.09795492887496948, -0.024650830775499344,
- -0.025200696662068367, -0.010765171609818935, 0.05269545689225197, 0.03585858270525932,
- -0.05746592581272125, -0.0060347202233970165, 0.03357825055718422, -0.02130335569381714,
- -0.05101080983877182, -0.12069728970527649, -0.038389090448617935, 0.011117871850728989,
- 0.06754661351442337, -0.020375017076730728, 0.03042217530310154, -0.06037053093314171,
- -0.02533058449625969, 0.0026424573734402657, 0.006467137020081282, 0.0512530542910099,
- -0.07573586702346802, -0.024743705987930298, -0.0827236920595169, 0.001629610313102603,
- -0.003924433141946793, -0.009625173173844814, -0.08974910527467728,
- -0.042173027992248535, -0.06351352483034134, 0.03698043152689934, -0.012512912042438984,
- -0.01596509851515293, 0.018423212692141533, 0.025841299444437027, 0.022116484120488167,
- 0.009209721349179745, -0.06005534529685974, 0.09105566889047623, -0.03293745592236519,
- 0.05836614593863487, 0.04534636065363884, -0.03401264175772667, 0.031050700694322586,
- -0.0032458326313644648, -0.0656900480389595, -0.05657069385051727, -0.08465863764286041,
- -0.07502516359090805, 0.008409119211137295, -0.036117564886808395,
- -0.007281793747097254, -0.023580245673656464, 0.021617282181978226, 0.05580639839172363,
- -0.071652851998806, -0.022980382665991783, -0.08502492308616638, 0.12543626129627228,
- 0.02416951209306717, 0.05382363870739937, 0.03907492384314537, -0.08858101814985275,
- 0.03181732818484306, 0.006048266775906086, 0.009781038388609886, 0.04631863906979561,
- 0.1135839968919754, 0.012304192408919334, -0.05633889138698578, 0.06255990266799927,
- -0.01290222443640232, 0.022706471383571625, 0.07998072355985641, 0.41789108514785767,
- -0.06657577306032181, 0.05466033145785332, 0.0475686714053154, 0.02754073776304722,
- 0.033045072108507156, -0.02927377074956894, 0.08876527845859528, 0.06021956354379654,
- 0.09317591041326523, 0.060883961617946625, -0.005156578496098518, 0.05278376117348671,
- -0.0000014704710338264704, 0.06521805375814438, -0.012456271797418594,
- 0.031245844438672066, 0.025130169466137886, 0.013270661234855652, -0.00935315154492855,
- -0.02978282980620861, -0.01051073707640171, 0.016987046226859093, -0.03308464586734772,
- -0.022104935720562935, 0.007048754021525383, 0.04215692728757858,
- -0.0012391051277518272, -0.0041956668719649315, -0.018102163448929787,
- -0.03219110146164894, 0.015914779156446457, 0.018671955913305283, -0.01808234676718712,
- -0.1231975108385086, 0.08013828843832016, -0.10252155363559723, -0.053249962627887726,
- 0.012996500357985497, -0.02347894385457039, 0.015578370541334152, 0.0732739195227623,
- 0.018346518278121948, 0.021323848515748978, 0.029086099937558174, 0.003699011169373989,
- 0.011856434866786003, 0.03748441860079765, -0.01296814251691103, -0.0027780188247561455,
- 0.13256970047950745, -0.016987968236207962, 0.0478401817381382, -0.03591882809996605,
- 0.06746522337198257, 0.13084343075752258, -0.09156457334756851, 0.020165730267763138,
- -0.05046600475907326, 0.07306848466396332, -0.012454455718398094, 0.02036086656153202,
- -0.10489357262849808, 0.016824990510940552, -0.04419641196727753, 0.0819861963391304,
- 0.04799535498023033, -0.08847687393426895, -0.20033931732177734, -0.07753831148147583,
- -0.10693150758743286, 0.03758618235588074, 0.12841001152992249, -0.07423030585050583,
- 0.031113646924495697, 0.025345975533127785, -0.005389174912124872, -0.04056627303361893,
- -0.07180050760507584, -0.0018960804445669055, -0.12111813575029373,
- -0.02192341722548008, 0.012366038747131824, 0.03053860366344452, -0.056254807859659195,
- 0.08066201210021973, -0.03539150580763817, 0.027968814596533775, 0.017555788159370422,
- -0.07720152288675308, -0.038074806332588196, -0.01788407377898693, 0.055640723556280136,
- 0.014231894165277481, -0.010096898302435875, -0.13646705448627472,
- -0.028909171000123024, 0.015130719169974327, -0.05692215636372566,
- -0.010864966548979282, -0.011247190646827221, -0.05788423493504524, 0.08983761072158813,
- -0.0560389868915081, -0.020440397784113884, 0.0058345915749669075,
- -0.050813280045986176, 0.002244027564302087, -0.04753900319337845,
- -0.039800964295864105, -0.1427210420370102, -0.028208443894982338, 0.014155594632029533,
- 0.05002591013908386, 0.011586225591599941, -0.05859258025884628, 0.022728331387043,
- 0.18604399263858795, 0.034409455955028534, -0.02605544961988926, -0.008863437920808792,
- -0.05503131449222565, 0.05642285197973251, -0.07355756312608719, -0.45439809560775757,
- 0.05562081187963486, -0.0038250102661550045, 0.055924925953149796, 0.0333491675555706,
- -0.07485155761241913, 0.03183344751596451, 0.029230313375592232, 0.010913164354860783,
- 0.031886987388134, -0.06335511803627014, 0.006020050495862961, -0.009773311205208302,
- -0.024866612628102303, 0.004874249920248985, -0.030257072299718857,
- -0.022313566878437996, 0.0335674025118351, -0.002616472542285919, -0.04299597814679146,
- -0.009421166032552719, -0.011377288959920406, -0.06069197133183479, -0.0644073411822319,
- 0.007338338997215033, -0.01673152670264244, -0.12672673165798187, -0.014777925796806812,
- -0.006420892663300037, 0.014011618681252003, 0.01737399771809578, -0.030783623456954956,
- -0.01250292919576168, 0.09733623266220093, 0.04179063066840172, 0.08938879519701004,
- 0.00451756501570344, -0.08428549021482468, -0.05209273472428322, 0.03560028225183487,
- 0.015704989433288574, 0.18960611522197723, 0.02122243493795395, 0.05800626799464226,
- 0.004812868777662516, 0.12016744911670685, 0.05059225484728813, 0.03139099106192589,
- -0.01935650408267975, -0.027078421786427498, 0.053320810198783875,
- -0.020546503365039825, 0.011198778636753559, -0.12760275602340698, 0.008544586598873138,
- 0.00030810912721790373, -0.01782347820699215, -0.04469839483499527,
- -0.04373209550976753, 0.19536101818084717, -0.026517320424318314, 0.06781309843063354,
- 0.05564676597714424, 0.0022707751486450434, -0.04928332939743996, -0.04524659365415573,
- -0.07067831605672836, -0.008925916627049446, 0.005848248023539782,
- -0.005511767230927944, -0.08413788676261902, -0.06252884864807129,
- -0.034148767590522766, -0.03366692736744881, 0.004764792509377003, 0.0484381839632988,
- -0.03930247202515602, 0.00227892748080194, -0.05563957244157791, 0.09687178581953049,
- 0.01142878457903862, 0.10555703938007355, 0.007453570608049631, 0.08720751851797104,
- 0.019463811069726944, -0.0611388273537159, -0.08149206638336182, 0.016164060682058334,
- -0.03357502445578575, 0.11690329760313034, -0.03311958536505699, 0.10171891003847122,
- 0.03759251907467842, 0.08982691168785095, -0.01596282236278057, 0.05734632536768913,
- -0.027456533163785934, -0.08352447301149368, -0.49940207600593567, -0.05644996091723442,
- 0.10330894589424133, 0.05193192511796951, -0.024850675836205482, 0.08702398091554642,
- -0.0094791604205966, -0.051711443811655045, 0.08183744549751282, -0.06348916888237,
- 0.0872989296913147, -0.02819712646305561, 0.06919670104980469, -0.08822628110647202,
- 0.03616591915488243, 0.07649470865726471, -0.08161621540784836, -0.06153900921344757,
- 0.022721482440829277, -0.15507718920707703, 0.003699308028444648, -0.0864553302526474,
- 0.17452841997146606, 0.051447875797748566, 0.07026050984859467, 0.0814162865281105,
- -0.0632735937833786, 0.105096735060215, 0.0656183511018753, 0.06310290098190308,
- 0.14774899184703827, 0.027978796511888504, -0.03484947979450226, 0.07689255475997925,
- 0.06462769955396652, 0.11216168850660324, -0.04720534384250641, 11.826379776000977,
- 0.035377152264118195, 0.04981140419840813, -0.04300324618816376, -0.04390537738800049,
- -0.04415418580174446, 0.057387590408325195, -0.036806508898735046, 0.06895346194505692,
- 0.06353434175252914, 0.024505428969860077, -0.037684474140405655, -0.07384738326072693,
- -0.05746392160654068, 0.028623251244425774, 0.019342642277479172,
- -0.0008756653405725956, -0.04787189140915871, 0.04375108331441879, -0.05464315041899681,
- -0.004365542437881231, 0.07246730476617813, 0.06802263855934143, 0.011543069034814835,
- -0.07058826833963394, 0.02811143919825554, 0.0016851172549650073, 0.044660672545433044,
- 0.020530004054307938, 0.008552147075533867, -0.030250897631049156, 0.055396173149347305,
- 0.06703784316778183, 0.06818149983882904, 0.050584577023983, 0.03347044810652733,
- 0.015257714316248894, 0.04656721279025078, 0.039086148142814636, 0.0034199266228824854,
- 0.014789898879826069, -0.0014097793027758598, 0.012178037315607071, 0.02694126032292843,
- 0.039516326040029526, 0.041907455772161484, 0.00525211077183485, 0.16419824957847595,
- 0.026709940284490585, 0.06481444835662842, 0.07044288516044617, 0.017966678366065025,
- 0.10717126727104187, -0.0003714115300681442, -0.019947640597820282,
- -0.03037988767027855, 0.028393924236297607, -0.07849036157131195, 0.06682873517274857,
- 0.10216959565877914, -0.02818314917385578, 0.10049964487552643, 0.06213899329304695,
- -0.012917475774884224, -0.00597611116245389, 0.06463798880577087, 0.0820683091878891,
- 0.07476991415023804, -0.11276307702064514, -0.024891220033168793, 0.021225707605481148,
- -0.11549883335828781, -0.064895398914814, 0.007747489493340254, -0.03091690130531788,
- -0.06161421164870262, 0.11651375144720078, -0.01192311942577362, 0.06697091460227966,
- -0.043628621846437454, 0.025018738582730293, -0.009373731911182404,
- -0.06705663353204727, 0.025912119075655937, -0.06018481403589249, 0.01983368583023548,
- 0.03382303938269615, 0.08332879096269608, 0.027830932289361954, -0.026897065341472626,
- -0.088051937520504, 0.04285178333520889, -0.04712222144007683, -0.02384411171078682,
- -0.02248777262866497, -0.03329150378704071, 0.05193953961133957, -0.10695630311965942,
- 0.06379566341638565, 0.04091109335422516, -0.07602466642856598, 0.018039735034108162,
- -0.008203975856304169, 0.05788235366344452, 0.02715451829135418, 0.025204038247466087,
- -0.020969120785593987, 0.05976210534572601, 0.016132785007357597, 0.06177077069878578,
- -0.07575055211782455, 0.04478606581687927, 0.028911126777529716, -0.05719756707549095,
- 0.04182112216949463, 0.017863895744085312, -0.010983370244503021, -0.02540009468793869,
- 0.0009691891027614474, 0.03994530811905861, -0.08562225103378296, -0.03650473430752754,
- -0.046804189682006836, 0.038082584738731384, 0.020945243537425995, -0.05938076227903366,
- -0.005559565033763647, -0.049098554998636246, 0.01751895807683468,
- -0.007818524725735188, 0.05280118063092232, 0.056534431874752045, 0.08036176860332489,
- -0.0037644505500793457, 0.04623281583189964, 0.01121346466243267, -0.041021861135959625,
- 0.050861816853284836, 0.034309595823287964, 0.11376220732927322, -0.05201757326722145,
- 0.00014358348562382162, -0.042565878480672836, -0.12298345565795898,
- -0.017328903079032898, 0.0020275528077036142, 0.13455544412136078, 0.08635465800762177,
- 0.002052762545645237, -0.07397312670946121, -0.008215383626520634, 0.09377864003181458,
- -0.008046874776482582, -0.0649961307644844, -0.04373849928379059, -0.025458773598074913,
- -0.006456554867327213, 0.05495886504650116, -0.04501945152878761, -0.018072383478283882,
- 0.04625691846013069, -0.20867711305618286, -0.01983027532696724, 0.08034281432628632,
- -0.010474950075149536, 0.0005339234485290945, 0.037580735981464386, 0.03445466235280037,
- 0.01312335580587387, 0.06582687050104141, 0.03773483633995056, 0.010196244344115257,
- -0.12978005409240723, -0.027815690264105797, -0.029439030215144157, 0.09130009263753891,
- 0.08419561386108398, -0.14764653146266937, 0.003932719584554434, 0.008447349071502686
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 21,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 17,
- "similarity": 0.998652458190918
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 6,
- "similarity": 0.9984972476959229
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 59,
- "similarity": 0.9984487295150757
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": [],
- "epoch_date_downloaded": 1674000000,
- "epoch_date_modified": 1674000000,
- "epoch_date_submitted": 1674000000,
- "flag": null,
- "report_number": 2504,
- "source_domain": "",
- "submitters": [],
- "title": "",
- "url": ""
- },
- {
- "__typename": "Report",
- "authors": ["Sean McGregor"],
- "epoch_date_downloaded": 1667260800,
- "epoch_date_modified": 1667260800,
- "epoch_date_submitted": 1667260800,
- "flag": null,
- "report_number": 2471,
- "source_domain": "github.com",
- "submitters": ["Sean McGregor"],
- "title": "AI Incident Database Incidents Converted to Issues",
- "url": "https://github.com/responsible-ai-collaborative/aiid/issues/449"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "google",
- "name": "Google"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "google",
- "name": "Google"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "motorists",
- "name": "Motorists"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [
- 240, 239, 238, 237, 236, 235, 234, 233, 232, 231, 230, 229, 228, 227, 226, 225, 224,
- 223, 221, 220, 219, 218
- ],
- "vector": [
- -0.06796354055404663, 0.07919735461473465, 0.00534878671169281, -0.10466296225786209,
- 0.04597989469766617, -0.022099725902080536, -0.02259206399321556, 0.018108971416950226,
- 0.04988753795623779, -0.12413308024406433, 0.040317997336387634, 0.028432631865143776,
- 0.02404242753982544, -0.05731012672185898, 0.011674373410642147, -0.1099802702665329,
- -0.09295041859149933, -0.05730743706226349, -0.027923475950956345, -0.08683214336633682,
- -0.05334227904677391, 0.012659952044487, -0.0040799835696816444, 0.09657838195562363,
- -0.05234254524111748, 0.015549341216683388, 0.054516974836587906, 0.09326210618019104,
- -0.023037314414978027, 0.004504717420786619, -0.02334033139050007, -0.05436324700713158,
- 0.1325889676809311, 0.018933074548840523, -0.0020371368154883385, 0.08011799305677414,
- -0.011640399694442749, -0.053438451141119, -0.02510886639356613, 0.017715539783239365,
- 0.03382091224193573, 0.21923746168613434, -0.029728686437010765, -0.017591319978237152,
- 0.06252972781658173, -0.03713575750589371, 0.013773025013506413, 0.03925115615129471,
- 0.018990295007824898, 0.04331731051206589, -0.04446524754166603, 0.10967309772968292,
- -0.05313504859805107, 0.004370458889752626, -0.12867139279842377, 0.04699563607573509,
- 0.028263384476304054, 0.0012945408234372735, 0.051104847341775894, -0.07486189901828766,
- -0.039323799312114716, -0.24534450471401215, -0.040875986218452454,
- -0.013161479495465755, 0.09582655876874924, -0.06853345036506653, -0.03502785786986351,
- -0.011558770202100277, 0.0008137656259350479, 0.08151569962501526, 0.05303189903497696,
- -0.03331931680440903, -0.03775480389595032, -0.002655370393767953, 0.017552627250552177,
- -0.00571496831253171, 0.016043148934841156, 0.22509771585464478, -0.1104590892791748,
- 0.027182066813111305, 0.12045052647590637, -0.07998432964086533, 0.41516923904418945,
- -0.017314445227384567, 0.014130539260804653, -0.059854064136743546, 0.08684075623750687,
- 0.037167977541685104, 0.0317658893764019, 0.053707655519247055, -0.0029006926342844963,
- 0.033397454768419266, -0.031011365354061127, 0.026792354881763458, 0.06061798706650734,
- 0.0005878980737179518, -0.013723387382924557, -0.03502704203128815,
- -0.015071309171617031, -0.0789632499217987, 0.026337821036577225, -0.04227515682578087,
- 0.04532944783568382, 0.05236126109957695, -0.0066697923466563225, 0.017347587272524834,
- 0.09591605514287949, -0.028196481987833977, 0.04525872692465782, -0.06381222605705261,
- 0.027688002213835716, -0.01004915963858366, 0.058289315551519394, 0.006264631170779467,
- 0.033171866089105606, -0.014815098606050014, 0.004817879758775234, 0.02791893668472767,
- 0.10227623581886292, 0.00777656864374876, 0.018077759072184563, 0.08882847428321838,
- 0.11157839000225067, -0.03559813275933266, -0.04927779361605644, -0.029523460194468498,
- -0.08288402110338211, 0.005237475037574768, -0.0677390992641449, 0.05694848671555519,
- -0.045113157480955124, -0.2023208737373352, 0.014164602383971214, 0.11653728783130646,
- -0.005740289576351643, -0.023267799988389015, -0.026242615655064583,
- -0.06880997866392136, 0.06003820523619652, -0.026670031249523163, -0.028302906081080437,
- 0.06051715835928917, 0.05611126497387886, 0.037508103996515274, 0.08925022929906845,
- 0.058271169662475586, -0.04822796955704689, -0.05294301360845566, -0.036528121680021286,
- -0.04296787455677986, 0.08237143605947495, -0.08082285523414612, -0.04154704511165619,
- 0.015839407220482826, -0.03860754147171974, 0.6513984203338623, 0.13919112086296082,
- 0.15508431196212769, 0.016362560912966728, -0.04054165259003639, 0.1566045880317688,
- 0.020278502255678177, 0.06142696365714073, -0.10363876819610596, -0.0678604319691658,
- 0.045681729912757874, -0.09295275062322617, -0.04050060734152794, 0.0063997907564044,
- 0.028057921677827835, 0.08435254544019699, 0.05123075470328331, 0.07696012407541275,
- 0.002451101550832391, -0.13049887120723724, -0.018855856731534004, 0.05338616669178009,
- 0.0040555414743721485, -0.1341717690229416, -0.04519209638237953, 0.035065192729234695,
- 0.07689733058214188, -0.0614936463534832, 0.014206279069185257, -0.07666736096143723,
- 0.06454460322856903, -0.030086340382695198, 0.02710772305727005, -0.05888419225811958,
- 0.005913267843425274, 0.013416403904557228, 0.039789386093616486, 0.006916533689945936,
- -0.10929325222969055, -0.044349249452352524, 0.12077116966247559, -0.00721391849219799,
- -0.04177097603678703, 0.041505083441734314, -0.09694301337003708, 0.04822266101837158,
- 0.024221869185566902, 0.15135863423347473, -0.11896505951881409, 0.008469277061522007,
- 0.010105222463607788, 0.03918562829494476, 0.0800727903842926, -0.025909848511219025,
- -0.03521456941962242, -0.018067969009280205, 0.07557840645313263, 0.025829477235674858,
- 0.08113953471183777, 0.031154250726103783, -0.06819064170122147, 0.06776659190654755,
- 0.08363731950521469, -0.013830358162522316, -0.014282267540693283, 0.07974756509065628,
- 0.07569646090269089, -0.021944750100374222, -0.00775637524202466, 0.04902641475200653,
- 0.05190707743167877, 0.03736543655395508, 0.00788408238440752, 0.05551132932305336,
- 0.034503962844610214, -0.04058035835623741, 0.03399057313799858, 0.03787479177117348,
- 0.01562492549419403, 0.10670774430036545, -0.06195180490612984, -0.04582585021853447,
- -0.013636425137519836, -0.01988983154296875, 0.014406854286789894,
- -0.038460180163383484, 0.09146496653556824, 0.05315001308917999, 0.08403652906417847,
- 0.02406555600464344, 0.05816260725259781, 0.06405477970838547, 0.06753643602132797,
- 0.052396927028894424, 0.08652479946613312, -0.05997876077890396, -0.05804687365889549,
- -0.039927225559949875, -0.01951664686203003, 0.015641672536730766, 0.055321838706731796,
- -0.0652795061469078, -0.025646917521953583, -0.018585963174700737, -0.02607129141688347,
- -0.07387267053127289, -0.05264377221465111, 0.03303951025009155, 0.025265099480748177,
- -0.033112578094005585, -0.08493319153785706, -0.06332314014434814, 0.006732114125043154,
- 0.04696323722600937, -0.028497906401753426, -0.00033063170849345624,
- -0.10545535385608673, 0.015977047383785248, 0.005365819204598665, 0.04121827706694603,
- 0.020914431661367416, 0.043756742030382156, 0.002366028493270278, -0.0748547613620758,
- 0.01094729546457529, -0.022783152759075165, 0.010036741383373737, -0.11109185218811035,
- -0.047879572957754135, -0.06337977200746536, -0.028762347996234894, 0.04157952219247818,
- -0.025412391871213913, 0.0502178892493248, 0.018685854971408844, 0.017551062628626823,
- 0.01239816565066576, -0.020395390689373016, 0.06864502280950546, -0.014647313393652439,
- -0.052602753043174744, 0.07547363638877869, -0.022512592375278473, 0.05044128745794296,
- 0.022249506786465645, -0.06737428158521652, -0.002243488561362028, 0.016951771453022957,
- -0.036098554730415344, 0.012553143315017223, -0.04794326052069664, 0.0200184378772974,
- -0.05060168728232384, -0.022094743326306343, 0.05730273947119713, -0.07323379814624786,
- -0.06877624243497849, -0.09181332588195801, 0.14928843080997467, -0.016706198453903198,
- 0.03921331465244293, 0.03163765370845795, -0.08269688487052917, 0.01323272567242384,
- -0.015407498925924301, -0.021153386682271957, 0.015430759638547897,
- 0.021139223128557205, -0.016204949468374252, -0.01893642358481884, 0.08273124694824219,
- -0.014687707647681236, 0.015599622391164303, 0.05428192764520645, 0.43851110339164734,
- -0.1971648782491684, 0.07766226679086685, 0.07148335874080658, 0.037394583225250244,
- 0.08497434109449387, -0.010512630455195904, 0.08297596126794815, 0.08441164344549179,
- 0.11691612750291824, 0.06526486575603485, -0.027477039024233818, -0.02084178663790226,
- -0.08218591660261154, 0.0979061871767044, -0.01178283616900444, 0.010537439025938511,
- -0.0027352648321539164, -0.07625018805265427, -0.018748397007584572,
- 0.04945551976561546, -0.08217155933380127, -0.0044042509980499744,
- -0.010077044367790222, -0.06296015530824661, 0.023511940613389015, -0.01875227876007557,
- 0.010095746256411076, -0.03739186376333237, 0.0004484347300603986, 0.016089625656604767,
- 0.028389394283294678, 0.03497552499175072, 0.0504634864628315, -0.09034854173660278,
- 0.03069867379963398, -0.03857651725411415, -0.11327686905860901, 0.0747293010354042,
- -0.02909681387245655, 0.05203242227435112, 0.07163634151220322, -0.0071517606265842915,
- 0.011876845732331276, -0.003200637409463525, -0.056771520525217056,
- 0.027030663564801216, 0.055379126220941544, 0.03256632760167122, 0.10918119549751282,
- 0.16510863602161407, -0.05295821279287338, -0.06037935987114906, -0.07876790314912796,
- 0.0717281624674797, 0.09258249402046204, -0.009386938065290451, 0.014366772025823593,
- 0.020125487819314003, -0.02950228378176689, 0.0050862315110862255, -0.01957922801375389,
- -0.07451064884662628, 0.01358345989137888, -0.04436686262488365, 0.08856602013111115,
- 0.0035438500344753265, -0.02712811902165413, -0.19776487350463867,
- -0.012277909554541111, -0.04742155224084854, 0.017102357000112534, 0.14620111882686615,
- -0.02897779457271099, 0.017186123877763748, 0.01618766412138939, -0.00767871318385005,
- -0.017952553927898407, -0.07901139557361603, 0.019077420234680176, 0.005975888576358557,
- 0.04678419977426529, 0.03330928459763527, 0.049907900393009186, -0.05059603601694107,
- 0.052831586450338364, -0.10661400109529495, 0.043426211923360825, 0.022419486194849014,
- 0.0007299669669009745, 0.030449258163571358, -0.020899860188364983, 0.06330800801515579,
- 0.025462627410888672, -0.038793254643678665, 0.007674177177250385,
- -0.006051443517208099, -0.05127290263772011, -0.08018961548805237, -0.04020373523235321,
- -0.03692953661084175, -0.08713286370038986, 0.058032866567373276, -0.11240240931510925,
- -0.005053997505456209, -0.023917727172374725, -0.034354254603385925,
- 0.007779289968311787, 0.003818344557657838, 0.058559346944093704, -0.16144879162311554,
- 0.04193038120865822, 0.023056168109178543, 0.09080179035663605, 0.02600194700062275,
- -0.02762855775654316, 0.0215232502669096, 0.05675651133060455, 0.06540127843618393,
- -0.021694080904126167, 0.016331816092133522, -0.0486777201294899, -0.009997721761465073,
- -0.06389662623405457, -0.48857393860816956, 0.0474822074174881, 0.026610607281327248,
- 0.053738296031951904, 0.013034774921834469, -0.07922764122486115, 0.04757857322692871,
- 0.01991094835102558, -0.0368419848382473, 0.08607804030179977, -0.05586870014667511,
- 0.038123808801174164, 0.0018621659837663174, -0.03951874002814293,
- -0.021607425063848495, -0.07830334454774857, -0.06378873437643051, 0.03983772173523903,
- -0.022573383525013924, -0.05154120549559593, -0.07893043011426926, 0.009033513255417347,
- -0.0022520492784678936, 0.019081735983490944, -0.0029923489782959223,
- 0.05081259086728096, -0.06397822499275208, -0.04420156031847, 0.04857967793941498,
- 0.0910281240940094, 0.028039848431944847, -0.04316693916916847, 0.010814003646373749,
- 0.027103187516331673, -0.02682500332593918, 0.11529836058616638, -0.012520003132522106,
- 0.003671115729957819, -0.05454866588115692, 0.08941977471113205, 0.027851350605487823,
- 0.18546725809574127, 0.011788262985646725, 0.051429592072963715, 0.049488361924886703,
- 0.13698770105838776, 0.03649614751338959, 0.0010183335980400443, 0.004174891393631697,
- 0.007580847013741732, 0.023457475006580353, -0.009806408546864986, 0.07644493132829666,
- -0.0469442754983902, -0.04429377615451813, -0.07134329527616501, -0.028941918164491653,
- -0.012575935572385788, 0.06216971576213837, 0.19655117392539978, 0.0020670194644480944,
- 0.035550009459257126, 0.024327825754880905, -0.06497868150472641, 0.01046257745474577,
- -0.07875679433345795, -0.11214177310466766, -0.03738829866051674, -0.014214233495295048,
- 0.01366054080426693, -0.00685372669249773, -0.13519179821014404, 0.01093045249581337,
- -0.034026723355054855, -0.011603695340454578, 0.10760807991027832, 0.003321858588606119,
- 0.0331115759909153, -0.017354443669319153, 0.1089022159576416, 0.013828829862177372,
- 0.005134545266628265, 0.08464798331260681, 0.11142659932374954, 0.03104407899081707,
- -0.03824358806014061, -0.03634413331747055, -0.0713299810886383, 0.011281839571893215,
- 0.09765157848596573, -0.04757509008049965, 0.08376223593950272, 0.01385514810681343,
- -0.007617816794663668, -0.04805015027523041, 0.036892153322696686, -0.02815335802733898,
- 0.058846164494752884, -0.4607901871204376, -0.015653522685170174, 0.0911063700914383,
- 0.03241344913840294, 0.024962468072772026, 0.10384339839220047, 0.010184463113546371,
- -0.032302722334861755, -0.005706875119358301, -0.07221595197916031, 0.16134674847126007,
- -0.01968272589147091, 0.02041507512331009, -0.10814280807971954, 0.05335365608334541,
- 0.07810915261507034, -0.019358113408088684, -0.03623491898179054, 0.06696169823408127,
- -0.209843248128891, 0.01404065452516079, -0.036969009786844254, 0.14938266575336456,
- 0.014026070013642311, 0.0017720437608659267, 0.08302241563796997, -0.09552492946386337,
- 0.022590717300772667, 0.023864300921559334, -0.010171187110245228, 0.04960458353161812,
- -0.021066399291157722, -0.02574804238975048, 0.1041061133146286, 0.08548396825790405,
- 0.055071357637643814, -0.04243641719222069, 12.016918182373047, 0.04901014268398285,
- 0.026423806324601173, -0.08605834096670151, 0.05523308366537094, -0.036742597818374634,
- 0.02148284763097763, -0.09901085495948792, 0.07642357051372528, 0.11647552996873856,
- -0.00897932704538107, -0.04092122241854668, -0.034316014498472214, -0.09062885493040085,
- -0.014933106489479542, -0.07555031776428223, -0.04773290082812309, -0.02920175902545452,
- 0.020372042432427406, -0.046447888016700745, 0.006677640601992607, 0.02371814101934433,
- 0.05847197771072388, 0.01835545152425766, -0.07885538786649704, 0.08478985726833344,
- 0.02467963844537735, 0.0004946787375956774, -0.0002966872416436672, 0.01863023079931736,
- -0.02001427859067917, 0.012879491783678532, 0.028733236715197563, 0.013535493984818459,
- -0.02810537815093994, 0.04819616302847862, 0.05692720785737038, 0.039903391152620316,
- -0.027751171961426735, 0.07986355572938919, 0.02740638144314289, -0.0037559291813522577,
- 0.011921397410333157, 0.03166862949728966, 0.0891050174832344, 0.05784444883465767,
- 0.04394322633743286, 0.1263892948627472, 0.060263630002737045, 0.04238339886069298,
- 0.07202229648828506, -0.06415628641843796, 0.15830667316913605, 0.012711415067315102,
- -0.0006954988930374384, 0.05553384870290756, -0.0074633448384702206,
- -0.06332691013813019, 0.07288253307342529, 0.05049442872405052, -0.04712822288274765,
- 0.07856521010398865, 0.014461640268564224, 0.13213267922401428, -0.04503084346652031,
- 0.040489133447408676, 0.05797257274389267, 0.0898536741733551, -0.11438608169555664,
- -0.043873660266399384, 0.028905151411890984, -0.1026616096496582, -0.05491230636835098,
- 0.0661446675658226, 0.09791168570518494, -0.014991143718361855, 0.040704816579818726,
- -0.01690060831606388, 0.008330957032740116, -0.05225636065006256, 0.001680106739513576,
- 0.04299265518784523, -0.00860698614269495, -0.007211114279925823, 0.0951504185795784,
- -0.007626920938491821, 0.07662038505077362, 0.13478544354438782, -0.0341106615960598,
- -0.10090310126543045, -0.11050653457641602, 0.09123609215021133, -0.06291482597589493,
- -0.060540053993463516, 0.005363949108868837, -0.0687122642993927, 0.05237393081188202,
- -0.17916148900985718, 0.028240352869033813, 0.06386923789978027, -0.07510144263505936,
- -0.041370633989572525, -0.04078218340873718, 0.06226102262735367,
- -0.0024579158052802086, 0.04872065782546997, -0.0630723237991333, 0.04155658930540085,
- -0.03534131497144699, 0.035097602754831314, -0.052235983312129974, 0.045786842703819275,
- 0.05350205674767494, -0.03465595096349716, 0.03836897760629654, 0.04195793718099594,
- -0.03613908961415291, -0.03437189757823944, 0.055703531950712204, 0.04148098826408386,
- -0.06575428694486618, -0.03847917169332504, -0.008855815976858139,
- -0.014202686958014965, -0.03475891798734665, -0.045838870108127594,
- 0.011900883167982101, 0.005882075056433678, -0.043396420776844025,
- 0.0013710090424865484, 0.03976764529943466, 0.03160031884908676, 0.09369388222694397,
- 0.013864871114492416, 0.09214670956134796, -0.06353037059307098, -0.018482504412531853,
- 0.0710681900382042, 0.0559195913374424, 0.0791020318865776, -0.049869682639837265,
- -0.021519573405385017, -0.04299190640449524, -0.09264650195837021, 0.023723410442471504,
- 0.09011857956647873, 0.049952175468206406, 0.02694944106042385, 0.038052890449762344,
- -0.06352376937866211, -0.01608571782708168, 0.10758829116821289, -0.023144280537962914,
- 0.01251961663365364, 0.010864718817174435, -0.07217864692211151, -0.03532804548740387,
- 0.12299242615699768, -0.03759482130408287, 0.010892625898122787, 0.001930877915583551,
- -0.06262215971946716, 0.08046355843544006, 0.10307430475950241, 0.020225508138537407,
- 0.03626379743218422, -0.012527256272733212, 0.03309957683086395, 0.030281074345111847,
- -0.005369074642658234, -0.016715507954359055, -0.02687712386250496,
- -0.14456795156002045, -0.0828174352645874, 0.04569721221923828, 0.11657167226076126,
- 0.022795742377638817, -0.11263611912727356, -0.032474335283041, -0.027859525755047798
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 22,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 226,
- "similarity": 0.9991014003753662
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 234,
- "similarity": 0.9989522695541382
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 20,
- "similarity": 0.9989081025123596
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Inverse"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 240,
- "source_domain": "inverse.com",
- "submitters": ["Catherine Olsson"],
- "title": "California Fires: How Is Waze Handling LA Wildfires? We Asked the App",
- "url": "https://www.inverse.com/article/39232-california-fires-navigation-app-waze"
- },
- {
- "__typename": "Report",
- "authors": ["Associated Press"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 239,
- "source_domain": "dailymail.co.uk",
- "submitters": ["Catherine Olsson"],
- "title": "Navigation apps like Waze may NOT be reliable for steering you out of a disaster, experts warn",
- "url": "https://www.dailymail.co.uk/sciencetech/article-6178109/Can-apps-like-Waze-steer-clear-disaster-Maybe-not.html"
- },
- {
- "__typename": "Report",
- "authors": ["Haroon Siddique", "Sam Levin"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 238,
- "source_domain": "theguardian.com",
- "submitters": ["Catherine Olsson"],
- "title": "California wildfires: winds pose ‘extreme danger’ for Los Angeles",
- "url": "https://www.theguardian.com/world/2017/dec/07/california-wildfires-winds-pose-extreme-danger-in-los-angeles"
- },
- {
- "__typename": "Report",
- "authors": ["Paul Lilly"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 237,
- "source_domain": "hothardware.com",
- "submitters": ["Catherine Olsson"],
- "title": "Google's Waze Navigation Rerouting AI Directed Drivers Through Raging California Wildfires",
- "url": "https://hothardware.com/news/google-waze-navigation-rerouting-ai-directed-drivers-into-california-wildfires"
- },
- {
- "__typename": "Report",
- "authors": ["Aaron Mak"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 236,
- "source_domain": "slate.com",
- "submitters": ["Catherine Olsson"],
- "title": "Can You Trust Waze During an Emergency Like the California Wildfires?",
- "url": "http://www.slate.com/blogs/future_tense/2017/12/07/california_wildfires_raise_questions_about_whether_you_can_trust_waze_google.html"
- },
- {
- "__typename": "Report",
- "authors": ["Rob Price"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 235,
- "source_domain": "businessinsider.com",
- "submitters": ["Catherine Olsson"],
- "title": "LA Police say mapping apps are directing people to areas on fire",
- "url": "https://www.businessinsider.com/la-fires-gps-apps-directing-people-areas-fire-lapd-2017-12"
- },
- {
- "__typename": "Report",
- "authors": ["Mj Franklin"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 234,
- "source_domain": "mashable.com",
- "submitters": ["Catherine Olsson"],
- "title": "6 times navigation app Waze drove itself right into a scandal",
- "url": "https://mashable.com/2018/04/08/waze-driving-accident-scandal/#8Eg.3vjAVPqK"
- },
- {
- "__typename": "Report",
- "authors": ["Bel Air Association"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1654041600,
- "epoch_date_submitted": 1559347200,
- "flag": true,
- "report_number": 233,
- "source_domain": "belairassociation.org",
- "submitters": ["Catherine Olsson"],
- "title": "City Council News: Motions Introduced to Curb Navigational Apps such as WAZE",
- "url": "http://belairassociation.org/blog/2018/4/13/city-council-news-motion-introduced-to-curb-navigational-apps-such-as-waze"
- },
- {
- "__typename": "Report",
- "authors": ["Keith Wagstaff"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 232,
- "source_domain": "mashable.com",
- "submitters": ["Catherine Olsson"],
- "title": "LAPD says navigation apps steered people to neighborhoods on fire",
- "url": "https://mashable.com/2017/12/07/lapd-warns-that-navigation-apps-are-steering-people-to-neighborhoods-on-fire/#8Eg.3vjAVPqK"
- },
- {
- "__typename": "Report",
- "authors": ["City News Service"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 231,
- "source_domain": "ocregister.com",
- "submitters": ["Catherine Olsson"],
- "title": "Waze, Google Maps make traffic matters worse during Skirball and Creek fires, officials say",
- "url": "https://www.ocregister.com/2017/12/08/waze-google-maps-make-traffic-matters-worse-during-skirball-and-creek-fires-officials-say/"
- },
- {
- "__typename": "Report",
- "authors": ["Jefferson Graham", "Brett Molina"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 230,
- "source_domain": "usatoday.com",
- "submitters": ["Catherine Olsson"],
- "title": "Waze sent commuters toward California wildfires, drivers say",
- "url": "https://www.usatoday.com/story/tech/news/2017/12/07/california-fires-navigation-apps-like-waze-sent-commuters-into-flames-drivers/930904001/"
- },
- {
- "__typename": "Report",
- "authors": ["Meghan Mccarty Carino"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 229,
- "source_domain": "scpr.org",
- "submitters": ["Catherine Olsson"],
- "title": "LAPD warns navigation apps sent drivers into Skirball Fire zone",
- "url": "https://www.scpr.org/news/2017/12/07/78662/lapd-warns-navigation-apps-sent-drivers-into-skirb/"
- },
- {
- "__typename": "Report",
- "authors": ["City News Service"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 228,
- "source_domain": "dailynews.com",
- "submitters": ["Catherine Olsson"],
- "title": "Waze, Google Maps make traffic matters worse during Skirball and Creek fires, officials say",
- "url": "https://www.dailynews.com/2017/12/08/waze-google-maps-make-traffic-matters-worse-during-skirball-and-creek-fires-officials-say/"
- },
- {
- "__typename": "Report",
- "authors": ["California News Wire Services"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 227,
- "source_domain": "patch.com",
- "submitters": ["Catherine Olsson"],
- "title": "Traffic App Waze Causes Headaches Across LA County: Councilman",
- "url": "https://patch.com/california/pasadena-ca/traffic-app-waze-causes-headaches-across-la-county-councilman"
- },
- {
- "__typename": "Report",
- "authors": ["Chris Paukert"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 226,
- "source_domain": "cnet.com",
- "submitters": ["Catherine Olsson"],
- "title": "California wildfires: Police warn nav apps could put you in danger",
- "url": "https://www.cnet.com/roadshow/news/california-wild-fires-navigation-apps/"
- },
- {
- "__typename": "Report",
- "authors": ["City News Service"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 225,
- "source_domain": "dailybreeze.com",
- "submitters": ["Catherine Olsson"],
- "title": "Waze, Google Maps make traffic matters worse during Skirball and Creek fires, officials say",
- "url": "https://www.dailybreeze.com/2017/12/08/waze-google-maps-make-traffic-matters-worse-during-skirball-and-creek-fires-officials-say/"
- },
- {
- "__typename": "Report",
- "authors": ["Jefferson Graham", "Brett Molina"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 224,
- "source_domain": "krem.com",
- "submitters": ["Catherine Olsson"],
- "title": "Waze sent commuters toward California wildfires, drivers say",
- "url": "https://www.krem.com/article/news/nation-world/waze-sent-commuters-toward-california-wildfires-drivers-say/507-497699772"
- },
- {
- "__typename": "Report",
- "authors": ["Nina Godlewski"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 223,
- "source_domain": "ibtimes.com",
- "submitters": ["Catherine Olsson"],
- "title": "Waze, Google Maps Send California Residents Straight Into Wildfires",
- "url": "https://www.ibtimes.com/waze-google-maps-send-california-residents-straight-wildfires-2625610"
- },
- {
- "__typename": "Report",
- "authors": ["Ali Breland"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 221,
- "source_domain": "thehill.com",
- "submitters": ["Catherine Olsson"],
- "title": "Waze is sending California drivers toward fires",
- "url": "https://thehill.com/policy/technology/363852-waze-is-sending-california-drivers-towards-fires"
- },
- {
- "__typename": "Report",
- "authors": ["Cathy Burke"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 220,
- "source_domain": "newsmax.com",
- "submitters": ["Catherine Olsson"],
- "title": "Waze Navigation App Directing Drivers Into Cali Wild Fires",
- "url": "https://www.newsmax.com/newsfront/waze-gps-navigation-app/2017/12/07/id/830584/"
- },
- {
- "__typename": "Report",
- "authors": ["Jefferson Graham", "Brett Molina", "Kyle Grillot", "Afp"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 219,
- "source_domain": "cnbc.com",
- "submitters": ["Catherine Olsson"],
- "title": "California fires: Navigation apps like Waze sent commuters into flames, drivers say",
- "url": "https://www.cnbc.com/2017/12/07/california-fires-navigation-apps-like-waze-sent-commuters-into-flames-drivers-say.html"
- },
- {
- "__typename": "Report",
- "authors": ["Laura J. Nelson"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 218,
- "source_domain": "latimes.com",
- "submitters": ["Catherine Olsson"],
- "title": "Firefighters attempt to contain Bel-Air blaze ahead of the strong winds expected Thursday night",
- "url": "https://www.latimes.com/local/california/la-me-southern-california-wildfires-live-firefighters-attempt-to-contain-bel-air-1512605377-htmlstory.html"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "navya",
- "name": "Navya"
- },
- {
- "__typename": "Entity",
- "entity_id": "keolis-north-america",
- "name": "Keolis North America"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "navya",
- "name": "Navya"
- },
- {
- "__typename": "Entity",
- "entity_id": "keolis-north-america",
- "name": "Keolis North America"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "navya",
- "name": "Navya"
- },
- {
- "__typename": "Entity",
- "entity_id": "keolis-north-america",
- "name": "Keolis North America"
- },
- {
- "__typename": "Entity",
- "entity_id": "bus-passengers",
- "name": "bus passengers"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [
- 270, 269, 268, 267, 266, 264, 263, 261, 260, 259, 258, 257, 254, 253, 250, 249, 248,
- 247, 246, 245, 244, 243, 242
- ],
- "vector": [
- -0.09028391248506049, 0.07128552703753761, 0.017065276169096647, -0.1191363571130711,
- 0.06872106319212395, -0.014399328096972211, -0.018485749894550638, 0.024339142640161772,
- 0.05947001379631136, -0.15014686629824017, 0.001426333465370471, 0.06099938730830732,
- 0.012280963087940345, -0.09412217852861984, 0.050915093485104, -0.11329895646675774,
- -0.07681851898846419, -0.02825079678112398, -0.009957371965435374, -0.10397532290738562,
- -0.08424263771461404, -0.01506540400441736, 0.047511103846456695, 0.10593394562602043,
- -0.05846871273673099, 0.01731627702753505, 0.0444409233396468, 0.11400183905725894,
- -0.017402116930537413, 0.0387740776590679, -0.004565700706418442, -0.09735522111472876,
- 0.1308489373844603, 0.0349667780911145, -0.011340078573835932, 0.09709073732728543,
- 0.013920142122989764, -0.014380847893493332, -0.04587577880643632, 0.013509958279546876,
- 0.02726835585401758, 0.22227176311223404, 0.0105413181249194, -0.01867837575264275,
- 0.046555181013663176, -0.06616172963834327, 0.011963792955097944, 0.0401374333963284,
- 0.008978731186210138, 0.022626304963563125, -0.00735137119140152, 0.0813364471592333,
- -0.012596193842751824, 0.009013270569519827, -0.12467722367981206, 0.037430070077433535,
- 0.04268145763679691, -0.016832864376382255, 0.052665196440142135, -0.07174182011057502,
- -0.061359264604423355, -0.23432720873666846, -0.06592673330527285, -0.05852498664297973,
- 0.07390288376937741, -0.08015233569818994, -0.0320685965049526, 0.006884726267067574,
- 0.02478976539050168, 0.08475649324448212, 0.06463724532691033, -0.021576798485551517,
- -0.017164221347269158, -0.003457163020199084, -0.0005560456572667412,
- -0.0009133135400074736, -0.014652749553889684, 0.1999636308654495, -0.13594072506479596,
- -0.004700292468718861, 0.1263216756608175, -0.10099097357495972, 0.43472629008085834,
- 0.03333184429768311, -0.017053227861533345, -0.03188792574118175, 0.10462376669697139,
- 0.02726872814009371, 0.04844639855234519, 0.050389801354511925, -0.0293538326868261,
- 0.015610762537740495, -0.034552319309390754, 0.009839037038466853, 0.07856979342582433,
- 0.04488543623491474, -0.01766123324278337, 0.05476507350154545, -0.009674179145013508,
- -0.049250449863788875, 0.03736483666074017, -0.04340214654803276, 0.0910311342905397,
- 0.025961436493241268, 0.002807605814229211, 0.00167797372231017, 0.07108167986102078,
- -0.021950792865422758, 0.05771967234170955, -0.06747606898779454, 0.012590870969807324,
- 0.023632935673484335, 0.03248977159629525, 0.021887003069581544, 0.031511856243014336,
- -0.0843932353284048, -0.006883402511922885, 0.06060913278032904, 0.08610947640693706,
- -0.008600112936540467, 0.004731446717177396, 0.06257285987553389, 0.053691222545002464,
- -0.05871942137246546, 0.026009682092673913, -0.04547654570120832, -0.05088832215203539,
- -0.02830459646255527, -0.06776992377379666, 0.03730738457575764, -0.05597039935705454,
- -0.23642206645530203, 0.019518470725692485, 0.10325794553627139, 0.02481691503856817,
- -0.046666540124494095, 0.021475654161211267, -0.08237005033246848, 0.03022214225695833,
- -0.016244308152438505, -0.010701487025590208, 0.051208248604898865,
- 0.005525794507854659, 0.03057035797721018, 0.09527423459550609, 0.05820556112524608,
- -0.05236086905326532, -0.04917189939220881, -0.0019076527906176837,
- -0.030278146656675508, 0.08961818189076755, -0.11346451436047969, -0.040696812206474337,
- 0.021639807493952307, 0.003787092980928719, 0.6602183373078055, 0.09774980953206187,
- 0.20016865237899448, 0.013899256080470008, -0.03012672413909889, 0.18178520707980447,
- 0.006887526016014263, 0.027263633388033864, -0.07838637932487157, -0.09174158213579137,
- 0.03485968381004489, -0.08732777785347856, -0.04803759167375772, 0.025197261043459825,
- 0.02333482178737936, 0.08626360867334448, 0.0537640740690024, 0.08213607586272385,
- -0.047362691034441406, -0.11181727456657783, -0.017957750475034118,
- 0.050370509108609476, 0.026177669748785378, -0.10836085839116055, -0.03516269118889519,
- 0.0497011786893658, 0.10580965034339739, -0.08643869197239047, 0.00235901743492476,
- -0.0495717851040156, 0.06259223924058935, -0.010448642323077049, 0.06202197455517624,
- -0.051410242105307785, 0.0031667420053449664, 0.03355054761809499, 0.06837175462556921,
- -0.010778977107965266, -0.12189227148242619, -0.0012737072560728689,
- 0.11902134897916214, 0.016576871311332543, -0.021542769517628072, 0.05834231647136419,
- -0.09422068524619807, 0.03199935707000449, -0.015521502083688772, 0.16225066262742746,
- -0.12288207884715951, 0.044800016158462866, 0.021049429447410384, 0.013821447981804933,
- 0.027569484694496445, -0.007728985228585889, -0.07706866980246875,
- -0.046695267700630684, 0.09372344799845925, 0.06388805490796981, 0.0826549048980941,
- 0.1053548782416012, -0.028496251122661582, 0.0395775713512431, 0.09615443181246519,
- -0.0023149217127154216, 0.00043195941353864646, 0.046186552342513336,
- 0.0717160793264275, -0.028306950101345454, 0.009940870050543352, 0.04040932467551497,
- -0.010754096088930964, 0.027934252907036116, -0.012685150693869218,
- 0.050049827373384134, 0.017005338848558375, -0.038777045318451914,
- 0.0009170422715175411, 0.0371755378867459, 0.04004936114601467, 0.11028524261453877,
- -0.04219370732164901, -0.05124130565673113, -0.018484639348057302,
- -0.006552609093689724, 0.009527754161630899, -0.030946293400357597, 0.08639775994031326,
- 0.06347103789448738, 0.09051156367944635, 0.022768325997395037, 0.04977351305601389,
- 0.07164107344072798, 0.0387877725145739, 0.027863299479181675, 0.07341138609563527,
- -0.03927015363360229, -0.10376464737498242, -0.030745887744199972, 0.004682030872968228,
- 0.03457207149704513, 0.058613928399332195, -0.08797993284204732, -0.04072939513413155,
- -0.04947989800459017, -0.05389256453465508, -0.07361525086605031, -0.028533270334541474,
- 0.0054532323594448035, 0.0571876378810924, -0.050078571703204, -0.08785869083974672,
- -0.10533790646687798, 0.009489343182750694, 0.06814599203188783, -0.012283752094726484,
- -0.027841242708508736, -0.12114428404880606, -0.008694895770927162,
- -0.04276264098260309, 0.03272559267023335, 0.010241829036006136, 0.011301441773590024,
- -0.011602406085686474, -0.04510843424814875, 0.037061032839119434, -0.02094656346446794,
- -0.00947665368490245, -0.06477828493908695, -0.05552341740416444, -0.03338676808989081,
- 0.026742152646993814, 0.020823055139297376, -0.052924541159249515, 0.04674927817414636,
- 0.014660481090211997, 0.046282602190647434, -0.0017340197531587403,
- -0.02875962171136685, 0.05486397696254046, -0.016970641273276313, -0.04511415645601633,
- 0.0818839918660081, 0.027862624042545973, 0.04662937768127607, -0.020205377241718055,
- -0.09824735962826273, -0.03236442397389075, 0.04230933017907259, -0.05280466750264168,
- 0.033624995722556894, -0.040119343518239, -0.006049821345621477, -0.025266188976314406,
- -0.013731339693312411, 0.05531765536769577, -0.06925425548916278, -0.07244763171057338,
- -0.08069032705996347, 0.13717022862123407, -0.008582176354653, -0.009792626749359719,
- 0.03917392521448757, -0.06281805767313293, 0.04130252300883117, -0.01844907482660821,
- -0.007201793555514482, 0.03733387092411842, 0.01635092165025012, -0.02443320172555421,
- 0.01212732902849498, 0.0495561052761648, -0.015589348306251772, 0.0375352761424754,
- 0.06701119381772436, 0.432441313629565, -0.18843876311312552, 0.08868200793538404,
- 0.09517675071306851, 0.018100666874290808, 0.06403005317501399, -0.06243392719846705,
- 0.060994624686629875, 0.08683685731628667, 0.09882491600254308, 0.10015854093691577,
- -0.031183739123820407, -0.03349406606234286, -0.04872705641648044, 0.09034804805465367,
- 0.016552370073717928, -0.014560644211166578, -0.03173014946261664, -0.0640464433995278,
- 0.004591471857249575, 0.023058823684392417, -0.08505159438304279, 0.008548574587937606,
- 0.00589712730953065, -0.07116861673800842, 0.0036205355250074163, 0.006916497674588438,
- -0.002939308157099573, -0.004741282576857054, 0.015423207690574876,
- -0.04861753076598372, 0.059510366626731724, 0.032588720625347414, 0.046974899753442274,
- -0.11633312928935756, 0.019742292157151616, -0.10525480657815933, -0.10284947944076164,
- 0.10729972208323686, -0.032494772696341184, 0.0238031850034452, 0.06868420071575952,
- -0.031638852811580444, 0.04850522206043419, -0.008212759979474156, -0.04433084431144854,
- 0.026196814091552213, 0.046067921930681106, 0.027489795612738184, 0.09442172555819801,
- 0.16495145079882248, -0.06129159357236779, -0.053865980559393116, -0.08074050979769748,
- 0.09241529359765675, 0.08576268856616123, -0.026730301364770403, 0.020021399118654106,
- -0.00024887949795178747, -0.024445521776847865, 0.005525853839176504,
- -0.04339003769437904, -0.10802184887554335, 0.004950722530180507, -0.056331628285672355,
- 0.054875605139861124, -0.010201447339014798, -0.022738762270740193,
- -0.18558140099048615, -0.04719603468623498, -0.03052781498990953, 0.010405891151015607,
- 0.13344144983136136, -0.03502918067185775, 0.01750960364512613, 0.017391208212559475,
- -0.02251350209901474, 0.021642850514541824, -0.09727716526907423, 0.020303819004608238,
- -0.037747786765027304, 0.05790499921726144, 0.04250404840011312, 0.033955051806633885,
- -0.043331657495835556, 0.1029832269186559, -0.09940906678852827, 0.07187719432556111,
- 0.02186150493039547, -0.01618480948103673, 0.06505218407382136, -0.06675960431280344,
- 0.026740837832102956, 0.045017093268182616, -0.052673004081715706, 0.038402865063804,
- -0.03129877381877083, -0.0668528049212435, -0.09758212708908579, -0.08785231055124947,
- -0.04709917594395254, -0.07267643900021263, 0.05830783939555935, -0.07194051641525458,
- -0.03178782494860175, -0.047419397403364594, -0.01170497028974553, 0.050984510321817965,
- 0.038595289417097105, 0.056570936237340386, -0.13641271740198135,
- -0.0012539541070430498, -0.011518120046947961, 0.05849848825322545,
- -0.01632835831159078, -0.031233901466728876, 0.02611743363187365, 0.12417934284262035,
- 0.049863061968885035, 0.01982766577123624, 0.020802225168470457, -0.08382538625079652,
- -0.003578534390291442, -0.09531872031157432, -0.4796196753564088, 0.03235094776660528,
- 0.018362681472512042, 0.040126033056446395, 0.017282482216377622, -0.05861638543074545,
- 0.03945675654255826, -0.017497556223331587, -0.01599215888120892, 0.08404754086033157,
- -0.05912943832252337, 0.007745559109658327, 0.02211382090235534, -0.06590105469703027,
- -0.0219164508111451, -0.07190769894615463, -0.03170593044437144, 0.03624576462797173,
- -0.005466289276702572, -0.07482570717516153, -0.08003375663057617, 0.027825052141333403,
- -0.018159253887184288, 0.02168840680109418, -0.012257051593421595, 0.033628423288262085,
- -0.06548540636330195, -0.048812939076805895, 0.026663158843091325, 0.06328419093852458,
- 0.04902338127241186, -0.04926458827179411, -0.014827064253673281, 0.05794652923941612,
- -0.03607526639699126, 0.16167763329070547, 0.02456043014788757, 0.006994340141081129,
- -0.06394140138898206, 0.06717384703781294, 0.045948862665049404, 0.18490923422834146,
- -0.006332730058879268, 0.034900078965027045, 0.03464302370000793, 0.1438787083910859,
- 0.02842641336357464, 0.028106253533421652, -0.028139081520392843, 0.027143653461952574,
- 0.012159566202646365, -0.005888542409672443, 0.07085523284647775, -0.07242687305678493,
- -0.022905112466896357, -0.03579983114183921, -0.0092882066661411, -0.011188511594967998,
- 0.02016712082347468, 0.2123125610144242, 0.033280526743391936, 0.032363121524331684,
- 0.00892834934838111, -0.05633370829341204, 0.002860828667231228, -0.07390533922159154,
- -0.10200207648069962, -0.023324361982066995, -0.007246134903929804,
- 0.010861558158902208, -0.03355712548870107, -0.11374704960895621, 0.013242075146358136,
- -0.025247910161219213, 0.0031477421896694145, 0.08889873584975368, 0.012815622504010958,
- 0.036112981585218855, -0.022955678251531463, 0.10287672329856001, 0.03947604663224648,
- 0.023222538500862276, 0.07702472449644752, 0.06721221825674824, 0.011512160560928549,
- -0.009842338435270864, -0.05452483989622282, -0.025395079045151564, 0.02857438537656613,
- 0.1168295883614084, -0.061265864406975554, 0.08660796867764514, 0.019084904828797215,
- -0.03810829041606706, -0.05844604232065056, 0.05850562339891558, -0.0010209475623686676,
- 0.02755440564562931, -0.43633517493372376, -0.00852937631956909, 0.12215778199226959,
- 0.029051944922210405, 0.025527305050712566, 0.08649743089209432, 0.03326598162074452,
- -0.0392043930478394, -0.026840076786870865, -0.057364568843141846, 0.14128216874340307,
- -0.015735060300516045, 0.04369503251560356, -0.1080203969841418, 0.0474726327482368,
- 0.07218147360760233, -0.01734681245263504, -0.04042129124686851, 0.09654903962560323,
- -0.20632471662500632, 0.019818705000469217, -0.04926548578331004, 0.15552984858336655,
- 0.06974318898890329, 0.0015668165338549602, 0.07229709074549052, -0.06437683283634808,
- 0.046967394386782595, 0.0626717991317096, -0.011506080936195085, 0.07996965183512024,
- -0.014283675396733957, -0.019092454170079334, 0.1108435703360516, 0.05722819353737261,
- 0.08947751144676105, -0.005534484435844681, 12.045964448348336, 0.05755551653387754,
- 0.04585504831503267, -0.07533726630651433, 0.03850811845420495, -0.05862640119765116,
- 0.04522553211806909, -0.06599975142465986, 0.0495800801107417, 0.11807172486315602,
- -0.028353055093801864, -0.0229031829243784, -0.020688268784199507, -0.11550194543340932,
- 0.0144331349216847, -0.08361722472245278, -0.0985042535416458, -0.03503638582871012,
- 0.022342306905952486, -0.027415685477140156, -0.008657232034475664,
- 0.005868733440444846, 0.05662626886497373, 0.02435292141593021, -0.07015348063862842,
- 0.059584061129261616, 0.04764597636202107, -0.01866619006993816, -0.02619664976373315,
- 0.008350779687094948, -0.028901079599998648, 0.025842501665465534, 0.01593125474629114,
- 0.0022671533768753643, -0.016626762056029806, 0.04300560681756748, 0.06887789750876634,
- 0.07451614964267482, 0.0036788194189759215, 0.09416999748867491, 0.04075547103243678,
- 0.020080716035369296, 0.05088463247470234, 0.037779410855601665, 0.043921868256090776,
- 0.05179793375503758, 0.07521702365382858, 0.10108616267857344, 0.020450161415994997,
- 0.018074979833529695, 0.0947083166759947, -0.05195609391059564, 0.12946001731831094,
- 0.018500681521128052, 0.002344344169377228, 0.027711627090035978, -0.005762378583945658,
- -0.04423786780756453, 0.07958524107285168, 0.08450488357440285, -0.06760501480944779,
- 0.08283698267262915, 0.012001548266119284, 0.11344988247298676, -0.022148332507956937,
- 0.05940462041484273, 0.0682012215256691, 0.052930147994471634, -0.12650844843491263,
- -0.051740972973082375, 0.040523066023445645, -0.10854346337525742, -0.06709059825895922,
- 0.02657958288783329, 0.11916742279477742, -0.042406029229902706, 0.04529961947675632,
- -0.04894631177834843, 0.01668971090618035, -0.0445962973019999, -0.021124813491200177,
- 0.02528475478048558, -0.0017868665593635776, 0.028091299150179584, 0.05465164100346358,
- 0.01954351714274431, 0.1478201053712679, 0.08620623272398244, -0.022021922171520797,
- -0.08662616502007713, -0.06741977590338691, 0.11530273602060649, -0.03744538059539121,
- -0.08967785521045975, -0.005718151517414853, -0.05124964265395766, 0.07043584954479466,
- -0.15399211807095486, 0.06858820464138103, 0.09475400890021221, -0.08943657852385355,
- 0.016340594910814063, -0.0330893633502495, 0.04168256441556403, -0.020695217135969713,
- 0.036165076449675405, -0.05216275260824224, 0.029479000170755644, -0.004904858654101744,
- 0.03155681553661176, -0.03902180648773261, 0.04776801102106338, 0.08343661544115646,
- -0.05938050940470851, 0.06797308037462442, 0.06054332856412815, -0.029898154964346602,
- -0.060933171649989876, 0.05379656289258729, 0.017076941379143493, -0.09180021059253941,
- -0.05356672025569107, -0.021693627653724474, -0.032886601832654815,
- -0.04857204724913058, -0.021795729243540733, 0.017604232224149873, 0.039246313638337284,
- -0.045965072739383446, -0.03996331734663766, 0.009135374404570979, 0.0475279637409941,
- 0.07519334162403223, 0.03374715633285434, 0.08184540579500406, -0.08904407286773557,
- -0.027152155672766916, 0.04121833950605081, 0.04303120758951358, 0.06659956033463063,
- -0.011887001987222744, -0.010485165059040099, -0.04111514210134097, -0.1014782877072044,
- 0.004282747111890627, 0.101820542436579, 0.06404160254675409, 0.036294644966762026,
- 0.018404321704545746, -0.10062394453131634, -0.05989217300615881, 0.12313317021597987,
- 0.042867093913904995, 0.01333347954705064, 0.044547484134850296, -0.0937134079311205,
- -0.021909507368590035, 0.12787316804346832, -0.049384196491345116, 0.0147846248962552,
- 0.037192538623576576, 0.01843531837221235, 0.07774330274728329, 0.09487530734875928,
- 0.05424247981737489, 0.036777596100759896, 0.003928340607039307, -0.005653372054676647,
- -0.00016685212809217933, -0.02575903834329675, 0.01951814184734679,
- -0.0021641665725442376, -0.13238442430029745, -0.07868527766803037,
- 0.016795324706396532, 0.09230997283821521, 0.001098597488042129, -0.11995523682107097,
- -0.027400849845118657, -0.07750490477875523
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 23,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 71,
- "similarity": 0.9995170831680298
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 20,
- "similarity": 0.9994038343429565
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 4,
- "similarity": 0.9992981553077698
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Dave Lee"],
- "epoch_date_downloaded": 1671148800,
- "epoch_date_modified": 1671148800,
- "epoch_date_submitted": 1671148800,
- "flag": null,
- "report_number": 2389,
- "source_domain": "bbc.com",
- "submitters": ["Anonymous"],
- "title": "Self-driving shuttle bus in crash on first day",
- "url": "https://www.bbc.com/news/technology-41923814"
- },
- {
- "__typename": "Report",
- "authors": ["Timothy B. Lee"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 270,
- "source_domain": "arstechnica.com",
- "submitters": ["Anonymous"],
- "title": "The real lesson of that self-driving shuttle’s first-day accident",
- "url": "https://arstechnica.com/cars/2017/11/the-real-lesson-of-that-self-driving-shuttles-first-day-accident/"
- },
- {
- "__typename": "Report",
- "authors": ["David Shepardson"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 269,
- "source_domain": "reuters.com",
- "submitters": ["Anonymous"],
- "title": "U.S. safety board to probe self-driving shuttle crash in Las Vegas",
- "url": "https://www.reuters.com/article/us-autos-selfdriving/u-s-safety-board-to-probe-self-driving-shuttle-crash-in-las-vegas-idUSKBN1DA2K1"
- },
- {
- "__typename": "Report",
- "authors": ["Madison Park"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 268,
- "source_domain": "money.cnn.com",
- "submitters": ["Anonymous"],
- "title": "Self-driving bus involved in accident on its first day",
- "url": "https://money.cnn.com/2017/11/09/technology/self-driving-bus-accident-las-vegas/index.html"
- },
- {
- "__typename": "Report",
- "authors": ["Inverse"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 267,
- "source_domain": "inverse.com",
- "submitters": ["Anonymous"],
- "title": "Self-Driving Bus Crashed in Vegas in Its First Hour: Who Was At Fault?",
- "url": "https://www.inverse.com/article/38279-self-driving-bus-crash"
- },
- {
- "__typename": "Report",
- "authors": ["Nick Statt"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 266,
- "source_domain": "theverge.com",
- "submitters": ["Anonymous"],
- "title": "A self-driving shuttle in Las Vegas got into an accident on its first day of service",
- "url": "https://www.theverge.com/2017/11/8/16626224/las-vegas-self-driving-shuttle-crash-accident-first-day"
- },
- {
- "__typename": "Report",
- "authors": [
- "Chuong Nguyen",
- "Aj Dellinger",
- "Christian De Looper",
- "Trevor Mogg",
- "Stephen Edelstein",
- "Ronan Glon"
- ],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 264,
- "source_domain": "digitaltrends.com",
- "submitters": ["Anonymous"],
- "title": "Digital Trends was onboard the ill-fated Las Vegas self-driving shuttle",
- "url": "https://www.digitaltrends.com/cars/self-driving-bus-crash-vegas-account/"
- },
- {
- "__typename": "Report",
- "authors": ["Intelligent Transport"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 263,
- "source_domain": "intelligenttransport.com",
- "submitters": ["Anonymous"],
- "title": "Keolis' self-driving shuttle launches in Las Vegas, crashes after two hours",
- "url": "https://www.intelligenttransport.com/transport-news/29928/aaa-keolis-launch-first-public-self-driving-shuttle-downtown-las-vegas/"
- },
- {
- "__typename": "Report",
- "authors": ["Reuters"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 261,
- "source_domain": "tribune.com.pk",
- "submitters": ["Anonymous"],
- "title": "US safety board to probe self-driving shuttle crash in Las Vegas",
- "url": "https://tribune.com.pk/story/1555671/8-us-safety-board-probe-self-driving-shuttle-crash-las-vegas/"
- },
- {
- "__typename": "Report",
- "authors": ["Martin T. Montilino"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 260,
- "source_domain": "martinmontilino.com",
- "submitters": ["Anonymous"],
- "title": "Self-Driving Bus Crashes Two Hours After Being Put on the Road",
- "url": "https://www.martinmontilino.com/self-driving-bus-crashes-two-hours-after-being-put-on-the-road/"
- },
- {
- "__typename": "Report",
- "authors": ["Jim Park"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 259,
- "source_domain": "truckinginfo.com",
- "submitters": ["Anonymous"],
- "title": "Truck Driver Gets the Blame in Driverless Shuttle Bus Crash",
- "url": "https://www.truckinginfo.com/160097/truck-driver-gets-the-blame-in-driverless-shuttle-bus-crash"
- },
- {
- "__typename": "Report",
- "authors": ["Pete Bigelow"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 258,
- "source_domain": "caranddriver.com",
- "submitters": ["Anonymous"],
- "title": "Self-Driving-Shuttle Era Begins with a First-Day Crash in Vegas",
- "url": "https://www.caranddriver.com/news/a15339580/shuttle-down-self-driving-shuttle-era-begins-with-a-first-day-crash-in-las-vegas/"
- },
- {
- "__typename": "Report",
- "authors": ["Sam Burnett"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 257,
- "source_domain": "uk.motor1.com",
- "submitters": ["Anonymous"],
- "title": "Self-driving shuttle bus crashes on first day of testing",
- "url": "https://uk.motor1.com/news/186160/autonomous-shuttle-bus-crash-first-day/"
- },
- {
- "__typename": "Report",
- "authors": ["Samuel Gibbs"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 254,
- "source_domain": "kathmandupost.ekantipur.com",
- "submitters": ["Anonymous"],
- "title": "Self-driving bus involved in crash less than two hours after Las Vegas launch",
- "url": "http://kathmandupost.ekantipur.com/printedition/news/2017-11-11/self-driving-bus-involved-in-crash-less-than-two-hours-after-las-vegas-launch.html"
- },
- {
- "__typename": "Report",
- "authors": ["Saqib Shah"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 253,
- "source_domain": "engadget.com",
- "submitters": ["Anonymous"],
- "title": "Las Vegas' self-driving bus crashes in first hour of service",
- "url": "https://www.engadget.com/2017/11/09/las-vegas-self-driving-shuttle-bus-crash/"
- },
- {
- "__typename": "Report",
- "authors": ["Mick Akers"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 250,
- "source_domain": "govtech.com",
- "submitters": ["Anonymous"],
- "title": "Las Vegas Won't Stop Driverless Shuttle Program after Fatal Accident in Arizona",
- "url": "http://www.govtech.com/transportation/Las-Vegas-Wont-Stop-Driverless-Shuttle-Program-after-Fatal-Accident-in-Arizona.html"
- },
- {
- "__typename": "Report",
- "authors": ["Ryan Felton"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 249,
- "source_domain": "jalopnik.com",
- "submitters": ["Anonymous"],
- "title": "Las Vegas' Driverless Shuttle Is Back In Service But The Feds Want To Examine What Happened",
- "url": "https://jalopnik.com/las-vegas-driverless-shuttle-is-back-in-service-but-the-1820393012"
- },
- {
- "__typename": "Report",
- "authors": ["Sky News"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 248,
- "source_domain": "news.sky.com",
- "submitters": ["Anonymous"],
- "title": "Driverless bus in crash after two hours on road in Las Vegas",
- "url": "https://news.sky.com/story/driverless-bus-in-crash-after-two-hours-on-road-in-las-vegas-11119198"
- },
- {
- "__typename": "Report",
- "authors": ["James Titcomb"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 247,
- "source_domain": "telegraph.co.uk",
- "submitters": ["Anonymous"],
- "title": "Driverless car involved in crash in first hour of first day",
- "url": "https://www.telegraph.co.uk/technology/2017/11/09/driverless-car-involved-crash-first-hour-first-day/"
- },
- {
- "__typename": "Report",
- "authors": ["Mick Akers"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 246,
- "source_domain": "lasvegassun.com",
- "submitters": ["Anonymous"],
- "title": "How does downtown's autonomous bus work?",
- "url": "https://lasvegassun.com/news/2018/apr/05/how-does-downtowns-autonomous-bus-work/"
- },
- {
- "__typename": "Report",
- "authors": ["Terence Cullen"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 245,
- "source_domain": "nydailynews.com",
- "submitters": ["Anonymous"],
- "title": "Self-driving bus gets into accident on its first day in Las Vegas, human driver blamed for collision",
- "url": "https://www.nydailynews.com/news/national/self-driving-bus-accident-day-las-vegas-article-1.3621441"
- },
- {
- "__typename": "Report",
- "authors": ["Rory Stott"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 244,
- "source_domain": "archdaily.com",
- "submitters": ["Anonymous"],
- "title": "Self-Driving Bus in Las Vegas Crashes Just 2 Hours After Launch",
- "url": "https://www.archdaily.com/883379/self-driving-bus-in-las-vegas-crashes-just-2-hours-after-launch"
- },
- {
- "__typename": "Report",
- "authors": ["Alistair Charlton"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 243,
- "source_domain": "gearbrain.com",
- "submitters": ["Anonymous"],
- "title": "Las Vegas self-driving bus crashed into on its first day",
- "url": "https://www.gearbrain.com/las-vegas-driverless-bus-crash-2508016007.html"
- },
- {
- "__typename": "Report",
- "authors": ["Samuel Gibbs"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 242,
- "source_domain": "theguardian.com",
- "submitters": ["Anonymous"],
- "title": "Self-driving bus involved in crash less than two hours after Las Vegas launch",
- "url": "https://www.theguardian.com/technology/2017/nov/09/self-driving-bus-crashes-two-hours-after-las-vegas-launch-truck-autonomous-vehicle"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "volkswagen",
- "name": "Volkswagen"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "volkswagen",
- "name": "Volkswagen"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "robotics-consultant",
- "name": "Robotics Consultant"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [
- 299, 298, 296, 295, 294, 293, 292, 291, 290, 289, 288, 287, 286, 285, 284, 283, 282,
- 281, 279, 278, 277, 276, 275, 274, 273, 272, 271
- ],
- "vector": [
- -0.07400684803724289, 0.08404706418514252, 0.015563134104013443, -0.11206013709306717,
- 0.08265795558691025, -0.0553116500377655, -0.0069880555383861065, 0.028743745759129524,
- 0.05489363521337509, -0.1408553272485733, -0.01196356862783432, 0.05854295939207077,
- 0.013867301866412163, -0.06523729115724564, 0.05655360966920853, -0.0803913027048111,
- -0.057285185903310776, -0.009439037181437016, 0.012313158251345158,
- -0.06952771544456482, -0.0838116928935051, 0.0072096120566129684, 0.03527950868010521,
- 0.09700698405504227, -0.050160035490989685, 0.024314524605870247, 0.08398175984621048,
- 0.10549037903547287, -0.024168778210878372, 0.04852273315191269, -0.026934072375297546,
- -0.058739516884088516, 0.1039343997836113, 0.009088723920285702, 0.024030093103647232,
- 0.060027386993169785, 0.008336935192346573, -0.012281624600291252, -0.063009113073349,
- -0.01993419975042343, 0.015731997787952423, 0.19075898826122284, 0.005020381882786751,
- -0.04084630310535431, 0.0401763953268528, -0.014619073830544949, 0.01315888948738575,
- 0.04315515235066414, 0.018011799082159996, 0.03361605852842331, -0.003918278031051159,
- 0.0502634234726429, -0.030774643644690514, 0.001773708499968052, -0.10669871419668198,
- 0.06896180659532547, 0.030828271061182022, 0.015976475551724434, 0.0669587031006813,
- -0.07802377641201019, -0.027671856805682182, -0.19604384899139404, -0.07659848779439926,
- -0.07322173565626144, 0.07510203123092651, -0.06613533943891525, -0.04409258812665939,
- 0.03289742022752762, 0.03853278234601021, 0.0693705752491951, 0.057417385280132294,
- -0.035410936921834946, -0.00047083254321478307, 0.007825142703950405,
- 0.023209907114505768, 0.024401117116212845, -0.01790499873459339, 0.2422037124633789,
- -0.11409389227628708, -0.009278376586735249, 0.11974277347326279, -0.0942920595407486,
- 0.3942223787307739, 0.024415398016572, -0.04208369180560112, -0.016097433865070343,
- 0.0972529724240303, 0.05303148925304413, 0.005293840542435646, 0.056922122836112976,
- -0.015018714591860771, 0.0066801984794437885, -0.05495468154549599,
- 0.017370298504829407, 0.05197954922914505, 0.026382768526673317, -0.03774147108197212,
- 0.07860276103019714, -0.01266151200979948, -0.046862587332725525, 0.004782777279615402,
- -0.0293324813246727, 0.10104329138994217, 0.05068443715572357, -0.041522230952978134,
- 0.004608833231031895, 0.07769807428121567, -0.07591868191957474, 0.05757627636194229,
- -0.05924265459179878, 0.04113876074552536, 0.008879445493221283, 0.06573766469955444,
- 0.010534755885601044, 0.0441206730902195, -0.07081720232963562, 0.02837536297738552,
- 0.08338212966918945, 0.06734656542539597, 0.03971231356263161, -0.02022767812013626,
- 0.06978356093168259, 0.06465305387973785, -0.02640085108578205, 0.004142318852245808,
- -0.03308524191379547, -0.0447833314538002, -0.030171191319823265, -0.030002105981111526,
- 0.06022948399186134, -0.03386867418885231, -0.23243401944637299, 0.0029976009391248226,
- 0.10736764222383499, 0.01072464045137167, -0.009821301326155663, 0.023823508992791176,
- -0.05908603593707085, 0.04812762141227722, -0.04787670075893402, -0.05374567583203316,
- 0.06425753980875015, 0.011800765059888363, 0.056702882051467896, 0.10690874606370926,
- 0.055388666689395905, -0.026397284120321274, -0.05139019712805748, 0.015209073200821877,
- -0.023357661440968513, 0.1141754537820816, -0.12747284770011902, -0.026205753907561302,
- 0.011375795118510723, -0.003668392775580287, 0.6522467136383057, 0.08960209041833878,
- 0.1576753407716751, 0.006175536196678877, -0.020104780793190002, 0.16269591450691223,
- -0.010537203401327133, 0.049114976078271866, -0.05185730755329132, -0.07536215335130692,
- 0.04717247188091278, -0.06287292391061783, -0.02634652517735958, 0.038128916174173355,
- 0.02610558457672596, 0.11167623102664948, 0.018350018188357353, 0.08101920038461685,
- -0.012533273547887802, -0.07711491733789444, -0.05693304166197777, 0.05988398566842079,
- 0.018971994519233704, -0.09802323579788208, -0.02074226178228855, 0.03731216490268707,
- 0.10736344754695892, -0.0797424390912056, -0.011836742050945759, -0.029819605872035027,
- 0.03585943579673767, -0.015145949088037014, 0.05078304558992386, -0.004211399704217911,
- 0.04023846611380577, 0.06283280998468399, 0.04106821492314339, -0.0038436888717114925,
- -0.08056334406137466, 0.005258282646536827, 0.12530310451984406, -0.014153013937175274,
- -0.013719294220209122, 0.06269044429063797, -0.0903313085436821, 0.03046043962240219,
- 0.013919045217335224, 0.10849062353372574, -0.08068490028381348, 0.048746127635240555,
- 0.0036618609447032213, 0.007407623343169689, 0.07151724398136139, 0.006128998938947916,
- -0.052634768187999725, -0.06434855610132217, 0.059293124824762344, 0.03512969985604286,
- 0.03301716223359108, 0.06691259890794754, -0.011843331158161163, 0.04389609396457672,
- 0.08706997334957123, 0.0004734258691314608, -0.010412170551717281, 0.0266710352152586,
- 0.07645826041698456, -0.0360214039683342, 0.006963078398257494, 0.006089174188673496,
- 0.02085825242102146, 0.02671518549323082, 0.003516408381983638, 0.03812286630272865,
- 0.011276571080088615, -0.041109152138233185, 0.02427719347178936, -0.026504918932914734,
- -0.0029139849357306957, 0.1125725582242012, -0.06709858775138855, -0.04096907004714012,
- -0.031275924295186996, -0.03761453926563263, 0.004954167641699314, -0.03085722215473652,
- 0.08676349371671677, 0.08469849824905396, 0.08916163444519043, 0.04234767332673073,
- 0.03235650062561035, 0.05458683893084526, 0.042367368936538696, -0.00568922096863389,
- 0.03435026854276657, -0.033375415951013565, -0.09464211761951447, -0.030147692188620567,
- -0.009087740443646908, 0.06426851451396942, 0.028239939361810684, -0.08715163916349411,
- -0.0124836266040802, -0.022573349997401237, -0.041149381548166275,
- -0.045942340046167374, -0.016099750995635986, 0.04657633975148201, 0.05004553124308586,
- -0.048719149082899094, -0.07803831994533539, -0.10206327587366104, 0.04324529692530632,
- 0.03643476963043213, 0.0009252033196389675, -0.0257267989218235, -0.09487956017255783,
- -0.00977203156799078, -0.015104631893336773, 0.04303601011633873, 0.005832829978317022,
- 0.011029520072042942, 0.006571868434548378, -0.04747989773750305, 0.017935745418071747,
- -0.010983353480696678, -0.03170012682676315, -0.05786057189106941, -0.0646473839879036,
- -0.047421328723430634, 0.026284217834472656, 0.00979915913194418, -0.05250973254442215,
- 0.04295897111296654, 0.02922729216516018, 0.029314937070012093, -0.013775168918073177,
- -0.030185138806700706, 0.05292702466249466, -0.03839006647467613, 0.010305211879312992,
- 0.07558807730674744, -0.03136857971549034, 0.0020140623673796654, -0.03592265024781227,
- -0.06545266509056091, -0.022440025582909584, 0.032876260578632355, -0.06320963054895401,
- 0.03932134434580803, -0.035149458795785904, 0.04022795334458351, -0.028934938833117485,
- -0.016584647819399834, 0.04607570171356201, -0.06002296879887581, -0.05354214459657669,
- -0.0869826152920723, 0.10768070816993713, 0.026949355378746986, -0.02093932405114174,
- 0.01724681816995144, -0.022414494305849075, 0.027052175253629684, -0.019418084993958473,
- -0.013083653524518013, 0.03738245740532875, 0.031885627657175064, 0.0030676776077598333,
- -0.011657382361590862, 0.03300194442272186, 0.011595863848924637, 0.03469066321849823,
- 0.04326422140002251, 0.41007113456726074, -0.1693713366985321, 0.08342304080724716,
- 0.08161839842796326, 0.005542457569390535, 0.07117488235235214, -0.04591963067650795,
- 0.07998693734407425, 0.07282698899507523, 0.100765660405159, 0.10739999264478683,
- -0.030222248286008835, -0.01941676065325737, -0.09235135465860367, 0.09032443910837173,
- 0.02050367370247841, 0.03171626478433609, -0.006221357733011246, -0.07902351766824722,
- -0.03481251746416092, -0.011018584482371807, -0.03160460665822029, 0.013551036827266216,
- -0.0034511706326156855, -0.07063411176204681, 0.0011678487062454224,
- 0.05037800595164299, 0.03152230754494667, -0.040229156613349915, 0.018491005524992943,
- -0.056004371494054794, 0.06332575529813766, 0.015604543499648571, 0.07262968271970749,
- -0.14941227436065674, 0.034302692860364914, -0.049690622836351395, -0.08647998422384262,
- 0.11686800420284271, -0.009471497498452663, 0.05204775929450989, 0.05777742341160774,
- -0.03657016530632973, 0.019016817212104797, -0.017781034111976624, -0.03755607828497887,
- 0.010350700467824936, 0.0896269902586937, 0.053148165345191956, 0.05939655750989914,
- 0.1508486568927765, -0.02477705478668213, -0.036998849362134933, -0.08444679528474808,
- 0.052950285375118256, 0.15587981045246124, -0.018099484965205193, 0.022857919335365295,
- -0.02089211903512478, -0.022742755711078644, 0.0080971485003829, -0.06430709362030029,
- -0.07075440883636475, -0.014655394479632378, -0.023093219846487045, 0.06136880815029144,
- -0.02331661805510521, -0.05701788142323494, -0.1559581756591797, -0.01704038307070732,
- -0.0479283481836319, 0.005176153499633074, 0.09259287267923355, -0.057527825236320496,
- 0.020885424688458443, 0.023688027635216713, -0.031006716191768646,
- 0.00006431730434997007, -0.10403046756982803, 0.02884780243039131, -0.0450885109603405,
- 0.03101222962141037, 0.03520748019218445, 0.04621736332774162, -0.04719606414437294,
- 0.07559753954410553, -0.08314041793346405, 0.05158378183841705, 0.02087562158703804,
- 0.01121161226183176, 0.0573650598526001, -0.008200363256037235, 0.012514952570199966,
- 0.02348477579653263, -0.04150356724858284, 0.02665574476122856, -0.02927202358841896,
- -0.043477464467287064, -0.0950508713722229, -0.07107537984848022, -0.005578520242124796,
- -0.0702657625079155, 0.051607295870780945, -0.05091889202594757, -0.03219224140048027,
- -0.013187366537749767, -0.03524485230445862, 0.018224934116005898, 0.041208576411008835,
- 0.0357842892408371, -0.13361680507659912, 0.0008941057021729648, 0.009307586587965488,
- 0.05233779922127724, -0.019264666363596916, -0.02709379605948925, 0.003989183343946934,
- 0.1060764417052269, 0.06599404662847519, -0.00888033676892519, -0.0044081080704927444,
- -0.09286584705114365, 0.022110238671302795, -0.05716652050614357, -0.4762811064720154,
- 0.0649513527750969, 0.03376617282629013, 0.034160710871219635, 0.0260940995067358,
- -0.0768357366323471, 0.039229508489370346, -0.00942289736121893, -0.019184788689017296,
- 0.09588699787855148, -0.056386496871709824, 0.005057248752564192, 0.016374776139855385,
- -0.04516344889998436, -0.04250646382570267, -0.07243034988641739, -0.054616495966911316,
- 0.05920667573809624, -0.042582135647535324, -0.07815346866846085, -0.09836693108081818,
- 0.03239607438445091, -0.04546565189957619, -0.006826586555689573, -0.025987064465880394,
- 0.010125516913831234, -0.07626000046730042, -0.06268341094255447, 0.04831323027610779,
- 0.03199607878923416, 0.05990086495876312, -0.0921270027756691, -0.015941865742206573,
- 0.044692978262901306, -0.015068716369569302, 0.13958193361759186, 0.03823370859026909,
- -0.018683969974517822, -0.06510055065155029, 0.0856650173664093, 0.039406079798936844,
- 0.18724973499774933, -0.0034612466115504503, 0.059080008417367935,
- -0.012709309346973896, 0.11691780388355255, 0.01235674787312746, 0.02007366716861725,
- -0.037248414009809494, 0.007321130018681288, 0.050795331597328186, -0.01522551104426384,
- 0.08246544748544693, -0.07825284451246262, -0.020105816423892975, -0.02236359938979149,
- 0.017092127352952957, -0.01248670369386673, -0.025089891627430916, 0.1943112313747406,
- 0.01508090365678072, 0.03176332265138626, -0.014990217983722687, -0.05973663181066513,
- 0.01685212180018425, -0.04159797728061676, -0.09856313467025757, -0.01722020097076893,
- 0.005177778657525778, -0.007153548765927553, -0.042008060961961746,
- -0.10133503377437592, -0.020481405779719353, 0.012358804233372211,
- -0.0048951259814202785, 0.0919894129037857, 0.013714454136788845, 0.03589746728539467,
- -0.027597103267908096, 0.10684675723314285, 0.03930016979575157, 0.005207804497331381,
- 0.052661605179309845, 0.09989495575428009, 0.04407559335231781, -0.015092969872057438,
- -0.047356050461530685, -0.04705271124839783, -0.009506900794804096, 0.11698403209447861,
- -0.050865110009908676, 0.08651360869407654, 0.053152065724134445, -0.03970056027173996,
- -0.04305518418550491, 0.016001399606466293, 0.042506907135248184, 0.05428384244441986,
- -0.4875420928001404, -0.007967238314449787, 0.13110603392124176, -0.013531096279621124,
- 0.016496427357196808, 0.08055534958839417, 0.036455389112234116, -0.06276874244213104,
- -0.026534315198659897, -0.04512018710374832, 0.08840001374483109, -0.006048679351806641,
- 0.07625237852334976, -0.070694200694561, 0.030509985983371735, 0.08322248607873917,
- -0.03691675513982773, -0.03025943785905838, 0.04177263006567955, -0.22093349695205688,
- 0.014407009817659855, -0.01449307706207037, 0.13539186120033264, 0.043154772371053696,
- 0.06221036985516548, 0.09562662243843079, -0.08043111115694046, 0.08108101040124893,
- 0.07110994309186935, 0.0002310392737854272, 0.06045358628034592, 0.01835291087627411,
- -0.01748243346810341, 0.09399837255477905, 0.07465863227844238, 0.09496280550956726,
- -0.01670982502400875, 11.909689903259277, 0.04610695689916611, 0.05886436998844147,
- -0.07978128641843796, 0.028207167983055115, -0.06936191022396088, 0.024083826690912247,
- -0.10849516838788986, 0.043542537838220596, 0.08067413419485092, 0.0018622740171849728,
- -0.02410614863038063, -0.031684596091508865, -0.06915154308080673, 0.01602756977081299,
- -0.04708264023065567, -0.051029499620199203, -0.043089158833026886, 0.04106850177049637,
- -0.07106678932905197, -0.019869359210133553, 0.041798610240221024, 0.06521047651767731,
- 0.02409297041594982, -0.06533492356538773, 0.04116213694214821, 0.02355210669338703,
- -0.024729754775762558, 0.0023154288064688444, 0.03452985733747482, -0.04022235795855522,
- 0.0272919200360775, 0.03195754438638687, -0.0035200822167098522, 0.03297906741499901,
- 0.013869370333850384, 0.046257924288511276, 0.06918811053037643, 0.019871290773153305,
- 0.08732108026742935, 0.019895877689123154, 0.0075770653784275055, 0.02764546126127243,
- 0.057613421231508255, 0.04916369542479515, 0.0337550975382328, 0.049817316234111786,
- 0.08886297792196274, 0.002880048705264926, 0.05433083325624466, 0.08330126106739044,
- -0.021165143698453903, 0.12010835856199265, 0.0002711141132749617,
- -0.008753940463066101, 0.031678277999162674, -0.00017455175111535937,
- -0.06503483653068542, 0.06557943671941757, 0.08840015530586243, -0.07771163433790207,
- 0.07653891295194626, -0.015169243328273296, 0.1170998066663742, -0.039299581199884415,
- 0.06617248803377151, 0.08878529816865921, 0.03355633467435837, -0.10504209250211716,
- -0.059509094804525375, 0.031451307237148285, -0.1428530067205429, -0.08131975680589676,
- 0.02559034340083599, 0.050025954842567444, -0.06720355898141861, 0.06702809035778046,
- -0.06029072403907776, 0.013231032527983189, -0.02543286234140396, -0.00952134933322668,
- 0.013498525135219097, -0.028707966208457947, 0.026824576780200005, 0.049985140562057495,
- 0.004689638037234545, 0.05979827418923378, 0.09060835838317871, -0.01586705632507801,
- -0.08706539124250412, -0.11850710213184357, 0.10138283669948578, -0.03586987033486366,
- -0.052662014961242676, 0.04019603133201599, -0.05347251147031784, 0.023304197937250137,
- -0.16006553173065186, 0.04802984744310379, 0.09975412487983704, -0.09931322932243347,
- 0.0022646645084023476, -0.0450301468372345, 0.07657505571842194, -0.020662367343902588,
- 0.021069541573524475, -0.07244044542312622, 0.03660987317562103, -0.009701108559966087,
- 0.04255078732967377, -0.05255058780312538, 0.0270999763160944, 0.06080927327275276,
- -0.07592085003852844, 0.06426301598548889, 0.06676031649112701, -0.02670961804687977,
- -0.046598292887210846, 0.04643329605460167, 0.02175859361886978, -0.0975160002708435,
- -0.04220127686858177, -0.04151827469468117, -0.03957577422261238, -0.04644744470715523,
- -0.02221040427684784, 0.006258148699998856, 0.046552542597055435, -0.08055807650089264,
- 0.001736110309138894, 0.007260832469910383, 0.01686464436352253, 0.07370040565729141,
- 0.008956807665526867, 0.04850296676158905, -0.07256464660167694, -0.05407354235649109,
- 0.05000222474336624, 0.04241662845015526, 0.09070133417844772, -0.036282941699028015,
- 0.008823113515973091, -0.04946677386760712, -0.09973490983247757, 0.001395592698827386,
- 0.10994113236665726, 0.05926664546132088, 0.0478619746863842, 0.018695732578635216,
- -0.04227180406451225, -0.027692042291164398, 0.08031444996595383, 0.03956754505634308,
- 0.01049597654491663, 0.021543124690651894, -0.08723562210798264, -0.02472868748009205,
- 0.12260151654481888, -0.009106640703976154, 0.019442729651927948, 0.02847592532634735,
- 0.014118397608399391, 0.07365704327821732, 0.06435517221689224, 0.07613654434680939,
- 0.013368327170610428, 0.016920823603868484, -0.010088898241519928,
- -0.024158835411071777, -0.0009188739932142198, 0.01964700222015381,
- 0.0006395235541276634, -0.11602896451950073, -0.075126513838768, 0.018991701304912567,
- 0.09849151968955994, 0.0041756900027394295, -0.07450032234191895, -0.03003210946917534,
- -0.014180646277964115
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 24,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 52,
- "similarity": 0.9991915225982666
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 25,
- "similarity": 0.9991036653518677
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 51,
- "similarity": 0.9990925788879395
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Associated Press"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 299,
- "source_domain": "smh.com.au",
- "submitters": ["Anonymous"],
- "title": "Robot kills man at Volkswagen plant in Germany",
- "url": "https://www.smh.com.au/technology/robot-kills-man-at-volkswagen-plant-in-germany-20150702-gi3938.html"
- },
- {
- "__typename": "Report",
- "authors": ["Katherine Kizilos"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 298,
- "source_domain": "cosmosmagazine.com",
- "submitters": ["Anonymous"],
- "title": "Man dies in robot accident at Volkswagen. Who is responsible?",
- "url": "https://cosmosmagazine.com/technology/man-dies-in-robot-accident-at-volkswagen-who-is-responsible"
- },
- {
- "__typename": "Report",
- "authors": ["Colin Fernandez"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 296,
- "source_domain": "dailymail.co.uk",
- "submitters": ["Anonymous"],
- "title": "Robot kills man at Volkswagen plant in Frankfurt, Germany",
- "url": "https://www.dailymail.co.uk/news/article-3146547/Robot-kills-man-Volkswagen-plant-Germany.html"
- },
- {
- "__typename": "Report",
- "authors": ["Seth Ferranti"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 295,
- "source_domain": "vice.com",
- "submitters": ["Anonymous"],
- "title": "'A Robot Killed a Man': A New Doc Looks at the Terrifying Future of Automation",
- "url": "https://www.vice.com/en_ca/article/gy7j8b/a-robot-killed-a-man-a-new-doc-looks-at-the-terrifying-future-of-automation"
- },
- {
- "__typename": "Report",
- "authors": ["IFL Science"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 294,
- "source_domain": "iflscience.com",
- "submitters": ["Anonymous"],
- "title": "Robot Kills Worker at Volkswagen Plant in Germany",
- "url": "https://www.iflscience.com/technology/robot-kills-worker-volkswagen-plant-germany/"
- },
- {
- "__typename": "Report",
- "authors": ["Cox Media Group National Content Desk"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 293,
- "source_domain": "ajc.com",
- "submitters": ["Anonymous"],
- "title": "Robot kills man at VW plant, then this happened",
- "url": "https://www.ajc.com/news/national/robot-kills-man-plant-then-this-happened/PoQPE7wEFrwgn0gqSB2XMK/"
- },
- {
- "__typename": "Report",
- "authors": ["RT Staff"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 292,
- "source_domain": "roboticsbusinessreview.com",
- "submitters": ["Anonymous"],
- "title": "Robot Kills Worker in Volkswagen Factory Accident",
- "url": "https://www.roboticsbusinessreview.com/rbr/robot_kills_worker_in_volkswagen_factory_accident/"
- },
- {
- "__typename": "Report",
- "authors": ["Kia Kokalitcheva"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 291,
- "source_domain": "fortune.com",
- "submitters": ["Anonymous"],
- "title": "Worker killed by robot at VW plant",
- "url": "http://fortune.com/2015/07/01/volkswagen-factory-death/"
- },
- {
- "__typename": "Report",
- "authors": ["Alex Johnson"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 290,
- "source_domain": "nbcnews.com",
- "submitters": ["Anonymous"],
- "title": "Robot Crushes Contractor to Death at VW Motor Plant in Germany",
- "url": "https://www.nbcnews.com/news/world/robot-crushes-contractor-death-vw-motor-plant-germany-n385541"
- },
- {
- "__typename": "Report",
- "authors": ["The Guardian"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 289,
- "source_domain": "plantservices.com",
- "submitters": ["Anonymous"],
- "title": "Robot kills worker at Volkswagen plant in Germany",
- "url": "https://www.plantservices.com/industrynews/2015/robot-kills-worker-at-volkswagen-plant-in-germany/"
- },
- {
- "__typename": "Report",
- "authors": ["Peter Gothard"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 288,
- "source_domain": "computing.co.uk",
- "submitters": ["Anonymous"],
- "title": "Robot kills man at German Volkswagen plant",
- "url": "https://www.computing.co.uk/ctg/news/2416045/robot-kills-man-at-german-volkswagen-plant"
- },
- {
- "__typename": "Report",
- "authors": ["Ben Brumfield"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 287,
- "source_domain": "edition.cnn.com",
- "submitters": ["Anonymous"],
- "title": "Car assembly line robot kills worker in Germany",
- "url": "https://edition.cnn.com/2015/07/02/europe/germany-volkswagen-robot-kills-worker/index.html"
- },
- {
- "__typename": "Report",
- "authors": ["Peter Dockrill"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 286,
- "source_domain": "sciencealert.com",
- "submitters": ["Anonymous"],
- "title": "Volkswagen Worker Grabbed And Killed by Robot in German Plant",
- "url": "https://www.sciencealert.com/volkswagen-worker-grabbed-and-killed-by-robot-in-german-plant"
- },
- {
- "__typename": "Report",
- "authors": ["Kayleen Carr"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 285,
- "source_domain": "futurism.com",
- "submitters": ["Anonymous"],
- "title": "Robot Kills Man at Volkswagen Plant…Human Error to Blame",
- "url": "https://futurism.com/robot-kills-man-at-volkswagen-plant-human-error-to-blame"
- },
- {
- "__typename": "Report",
- "authors": ["Nathan Mcalone"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 284,
- "source_domain": "businessinsider.com",
- "submitters": ["Anonymous"],
- "title": "Robot kills factory worker in Germany",
- "url": "https://www.businessinsider.com/robot-kills-factory-worker-in-germany-2015-7"
- },
- {
- "__typename": "Report",
- "authors": ["Justin Huggler"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 283,
- "source_domain": "telegraph.co.uk",
- "submitters": ["Anonymous"],
- "title": "Robot kills man at Volkswagen plant in Germany",
- "url": "https://www.telegraph.co.uk/news/worldnews/europe/germany/11712513/Robot-kills-man-at-Volkswagen-plant-in-Germany.html"
- },
- {
- "__typename": "Report",
- "authors": ["BBC"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 282,
- "source_domain": "bbc.co.uk",
- "submitters": ["Anonymous"],
- "title": "Man crushed to death by robot at car factory",
- "url": "http://www.bbc.co.uk/newsbeat/article/33359005/man-crushed-to-death-by-robot-at-car-factory"
- },
- {
- "__typename": "Report",
- "authors": ["Dpa The Local"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 281,
- "source_domain": "thelocal.de",
- "submitters": ["Anonymous"],
- "title": "Assembly robot crushes worker at Volkswagen",
- "url": "https://www.thelocal.de/20150701/assembly-robot-kills-worker-at-volkswagen"
- },
- {
- "__typename": "Report",
- "authors": ["Becca Smouse", "Published P.M. Et July"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 279,
- "source_domain": "usatoday.com",
- "submitters": ["Anonymous"],
- "title": "Robot hits, kills Volkswagen worker",
- "url": "https://www.usatoday.com/story/money/cars/2015/07/01/volkswagen-worker-killed-by-robot/29596851/"
- },
- {
- "__typename": "Report",
- "authors": ["Larry Alton"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 278,
- "source_domain": "venturebeat.com",
- "submitters": ["Anonymous"],
- "title": "Robots can kill, but can they murder?",
- "url": "https://venturebeat.com/2017/09/06/robots-can-kill-but-can-they-murder/"
- },
- {
- "__typename": "Report",
- "authors": [
- "Katie Collins",
- "Thursday July",
- "In Partnership With",
- "Abigail Beall",
- "William Welser"
- ],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 277,
- "source_domain": "wired.co.uk",
- "submitters": ["Anonymous"],
- "title": "Robot kills worker at Volkswagen plant",
- "url": "https://www.wired.co.uk/article/robot-kills-man-at-volkswagen-factory"
- },
- {
- "__typename": "Report",
- "authors": ["The Register News Team"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 276,
- "source_domain": "theregister.co.uk",
- "submitters": ["Anonymous"],
- "title": "Rise of the Machines: ROBOT KILLS MAN at Volkswagen plant",
- "url": "https://www.theregister.co.uk/2015/07/02/robot_kills_man_at_german_volkswagen_plant/"
- },
- {
- "__typename": "Report",
- "authors": ["Kashmira Gander"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 275,
- "source_domain": "independent.co.uk",
- "submitters": ["Anonymous"],
- "title": "Worker killed by robot at Volkswagen car factory",
- "url": "https://www.independent.co.uk/news/world/europe/worker-killed-by-robot-at-volkswagen-car-factory-10359557.html"
- },
- {
- "__typename": "Report",
- "authors": ["Libby Torres"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 274,
- "source_domain": "thedailybeast.com",
- "submitters": ["Anonymous"],
- "title": "Robots Are Killing People. How Worried Should We Be?",
- "url": "https://www.thedailybeast.com/robots-are-killing-people-how-worried-should-we-be"
- },
- {
- "__typename": "Report",
- "authors": ["Associated Press"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 273,
- "source_domain": "khq.com",
- "submitters": ["Anonymous"],
- "title": "Robot kills man at Volkswagen plant in Germany",
- "url": "https://www.khq.com/news/robot-kills-man-at-volkswagen-plant-in-germany/article_0c96571e-5bb1-511c-977a-b103aba554c7.html"
- },
- {
- "__typename": "Report",
- "authors": ["Eliana Dockterman"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 272,
- "source_domain": "time.com",
- "submitters": ["Anonymous"],
- "title": "Robot Kills Man at Volkswagen Plant",
- "url": "http://time.com/3944181/robot-kills-man-volkswagen-plant/"
- },
- {
- "__typename": "Report",
- "authors": ["Associated Press"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 271,
- "source_domain": "theguardian.com",
- "submitters": ["Anonymous"],
- "title": "Robot kills worker at Volkswagen plant in Germany",
- "url": "https://www.theguardian.com/world/2015/jul/02/robot-kills-worker-at-volkswagen-plant-in-germany"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "google",
- "name": "Google"
- },
- {
- "__typename": "Entity",
- "entity_id": "delphi-technologies",
- "name": "Delphi Technologies"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "google",
- "name": "Google"
- },
- {
- "__typename": "Entity",
- "entity_id": "delphi-technologies",
- "name": "Delphi Technologies"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "delphi-technologies",
- "name": "Delphi Technologies"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [2173, 310, 309, 308, 307, 306, 305, 304, 302, 301, 300],
- "vector": [
- -0.06625556200742722, 0.09334201365709305, 0.0032414207234978676, -0.08511292189359665,
- 0.05287647247314453, -0.029761414974927902, -0.005836550612002611, 0.0333869606256485,
- 0.07443692535161972, -0.1433834582567215, 0.013304045423865318, 0.04299473762512207,
- 0.022457383573055267, -0.03297197073698044, 0.050033602863550186, -0.0945369228720665,
- -0.0741734504699707, -0.05278659239411354, 0.0035548589657992125, -0.09730147570371628,
- -0.07698796689510345, -0.040447622537612915, 0.0483129657804966, 0.08957281708717346,
- -0.04322344437241554, 0.03400951996445656, 0.06840762495994568, 0.11482551693916321,
- -0.06182333081960678, 0.06638487428426743, 0.0045190248638391495, -0.054962873458862305,
- 0.12162217497825623, 0.04227007180452347, 0.010104953311383724, 0.0899818018078804,
- -0.02199968509376049, -0.008193951100111008, -0.052011750638484955,
- 0.015028854832053185, 0.01592273637652397, 0.2136312574148178, 0.014698762446641922,
- -0.030828695744276047, 0.044931113719940186, -0.03917437419295311, 0.01799432933330536,
- 0.039138391613960266, 0.0130748450756073, 0.016889583319425583, -0.020685646682977676,
- 0.04715520516037941, -0.046685054898262024, 0.010528416372835636, -0.10406773537397385,
- 0.07801647484302521, 0.026421867311000824, -0.014786398969590664, 0.053686533123254776,
- -0.06291646510362625, -0.021319987252354622, -0.22871313989162445, -0.06521210819482803,
- -0.07092057913541794, 0.07949072122573853, -0.07114934921264648, -0.03110601380467415,
- -0.00685609458014369, 0.023391393944621086, 0.07280021160840988, 0.051409006118774414,
- -0.04004691168665886, -0.013872047886252403, 0.020131593570113182, 0.022368011996150017,
- -0.001579742762260139, -0.0034239739179611206, 0.21003907918930054,
- -0.11510252207517624, -0.019465522840619087, 0.10146155953407288, -0.125821053981781,
- 0.4304133355617523, 0.015006712637841702, -0.02691018395125866, -0.01835881546139717,
- 0.09949145466089249, 0.03469664230942726, 0.034839216619729996, 0.047257330268621445,
- -0.012048173695802689, 0.036877989768981934, -0.04137231037020683,
- -0.0012881963048130274, 0.04101354256272316, 0.039994653314352036,
- -0.011802366934716702, 0.0409153588116169, -0.007182959001511335, -0.041612960398197174,
- 0.03523661941289902, -0.04216838255524635, 0.11664216220378876, 0.03664752095937729,
- -0.010330846533179283, 0.012605476193130016, 0.0750313475728035, -0.01461928803473711,
- 0.04456145688891411, -0.07412952929735184, 0.03898051753640175, 0.028034059330821037,
- 0.05136895179748535, 0.021052023395895958, 0.06613492220640182, -0.07890191674232483,
- 0.004993307404220104, 0.057250384241342545, 0.0903790295124054, -0.006681738421320915,
- -0.03040017932653427, 0.06794849783182144, 0.06990987807512283, -0.08537565171718597,
- 0.010986668057739735, -0.027446933090686798, -0.07773607969284058,
- -0.015967097133398056, -0.047252632677555084, 0.052014827728271484,
- -0.08394023776054382, -0.22956794500350952, 0.03622506931424141, 0.11602500081062317,
- 0.008645033463835716, -0.04283709451556206, -0.00956448819488287, -0.0841103047132492,
- 0.06465562433004379, -0.022315330803394318, -0.04046842083334923, 0.06272898614406586,
- 0.008480756543576717, 0.04522505775094032, 0.09645814448595047, 0.06436587125062943,
- -0.03721205145120621, -0.06233634799718857, 0.0152875492349267, -0.04463117569684982,
- 0.10287337750196457, -0.13208064436912537, -0.05286600813269615, 0.0023715400602668524,
- 0.0023342014756053686, 0.693342924118042, 0.10080325603485107, 0.16961559653282166,
- 0.0025950302369892597, -0.049074623733758926, 0.17105481028556824,
- -0.014104669913649559, 0.059322889894247055, -0.06392960995435715, -0.08677098900079727,
- 0.04109307751059532, -0.08587206900119781, -0.055197976529598236, 0.0336814783513546,
- 0.026692284271121025, 0.11880665272474289, 0.050722572952508926, 0.09859233349561691,
- -0.026165682822465897, -0.1082342192530632, -0.022848904132843018, 0.06565368920564651,
- 0.01597919501364231, -0.11718880385160446, -0.05383948236703873, 0.03586786240339279,
- 0.10854761302471161, -0.0970841646194458, 0.013210589066147804, -0.051124729216098785,
- 0.05332530662417412, -0.008825244382023811, 0.059354618191719055, -0.04797809198498726,
- 0.024911733344197273, 0.033076610416173935, 0.06438453495502472, -0.03757324814796448,
- -0.1159711554646492, -0.024671072140336037, 0.08436574041843414, -0.006507365498691797,
- -0.042024265974760056, 0.04637819528579712, -0.07830221205949783, 0.05926316976547241,
- 0.00949536357074976, 0.11338958144187927, -0.10696976631879807, 0.02949042245745659,
- 0.023625755682587624, 0.003931853454560041, 0.047312404960393906, -0.002811863087117672,
- -0.05489296093583107, -0.05239817127585411, 0.08248265832662582, 0.04876863956451416,
- 0.05072369426488876, 0.07926482707262039, -0.039009883999824524, 0.05115419253706932,
- 0.09296815097332001, -0.011187826283276081, -0.01011710800230503, 0.04100438579916954,
- 0.08544714003801346, -0.04707029089331627, -0.02010030299425125, 0.025870883837342262,
- 0.00795059185475111, 0.015779957175254822, -0.03276999294757843, 0.07017118483781815,
- -0.005876683164387941, -0.06605562567710876, 0.04387544095516205, 0.031500209122896194,
- 0.015615404583513737, 0.11491682380437851, -0.047671128064394, -0.04224330559372902,
- -0.004365716595202684, 0.005620970390737057, 0.00401070062071085, -0.0183403417468071,
- 0.07296452671289444, 0.0964573547244072, 0.0767832100391388, 0.037875182926654816,
- 0.036652203649282455, 0.07543010264635086, 0.03979894518852234, 0.04945683106780052,
- 0.057266589254140854, -0.010380814783275127, -0.08556271344423294,
- -0.020339107140898705, -0.0009444333845749497, 0.05845359340310097, 0.04708712175488472,
- -0.08341015130281448, -0.019948037341237068, -0.010728711262345314, 0.00432475283741951,
- -0.05990748479962349, -0.04166911542415619, 0.019122641533613205, 0.08334673196077347,
- -0.03169814869761467, -0.06961839646100998, -0.10253777354955673, 0.02256988175213337,
- 0.06031443923711777, -0.010171700268983841, -0.020304111763834953, -0.10786109417676926,
- -0.029797567054629326, -0.03978933021426201, 0.043333232402801514, 0.014813298359513283,
- 0.003972034435719252, 0.00028777625993825495, -0.07992517948150635,
- 0.005241003818809986, -0.02050030045211315, -0.012619188986718655, -0.03607039153575897,
- -0.0763457715511322, -0.042002275586128235, 0.008163753896951675, 0.018281089141964912,
- -0.02705388143658638, 0.03849763050675392, 0.03949344530701637, 0.047183264046907425,
- -0.0036595696583390236, -0.037990111857652664, 0.04860323294997215,
- -0.019638707861304283, -0.032971832901239395, 0.09134624153375626, -0.02530810981988907,
- 0.01972186379134655, -0.003496903693303466, -0.10289175063371658, -0.02414531260728836,
- 0.012377484701573849, -0.07019387185573578, 0.04145083203911781, -0.03225806728005409,
- 0.0398108996450901, -0.043620314449071884, 0.0016257351962849498, 0.04448091983795166,
- -0.08745691180229187, -0.06311314553022385, -0.11370441317558289, 0.11547258496284485,
- -0.013580936007201672, -0.029509877786040306, 0.03393561393022537,
- -0.025315461680293083, 0.042044755071401596, -0.02461392432451248,
- 0.00019464375509414822, 0.04135337099432945, 0.019421756267547607,
- -0.016249869018793106, 0.012393680401146412, 0.05616651475429535, -0.021282777190208435,
- 0.018252845853567123, 0.08079565316438675, 0.4233589470386505, -0.17557024955749512,
- 0.08404603600502014, 0.06316450238227844, 0.021695906296372414, 0.07782024145126343,
- -0.03227205574512482, 0.0761239156126976, 0.07673127204179764, 0.08491067588329315,
- 0.09520172327756882, -0.013188168406486511, -0.014734098687767982, -0.04347969591617584,
- 0.10018716007471085, -0.004583629779517651, 0.009117227047681808, -0.03897066414356232,
- -0.06667158007621765, -0.0050679282285273075, 0.015024354681372643,
- -0.05172586068511009, 0.0024798186495900154, -0.004516362678259611,
- -0.058750394731760025, -0.01368099544197321, 0.0062975953333079815,
- 0.037639375776052475, -0.01476908940821886, 0.013736292719841003, -0.03752850368618965,
- 0.03827730193734169, 0.021403508260846138, 0.05191989243030548, -0.13153569400310516,
- 0.03534311056137085, -0.10879712551832199, -0.09964101016521454, 0.05781753361225128,
- -0.03126591071486473, 0.040776513516902924, 0.05295226350426674, -0.026998691260814667,
- 0.0443345345556736, 0.00030037446413189173, -0.04762040451169014, 0.031003745272755623,
- 0.05012674257159233, -0.00229876721277833, 0.09374452382326126, 0.16185255348682404,
- -0.04881003871560097, -0.07883496582508087, -0.08878185600042343, 0.077903613448143,
- 0.10510110855102539, -0.04314737394452095, 0.02453637309372425, -0.017133818939328194,
- -0.01283461693674326, 0.0028369061183184385, -0.06463810801506042, -0.0982067883014679,
- 0.01972801797091961, -0.021017184481024742, 0.07707545906305313, -0.02181226760149002,
- -0.024706469848752022, -0.18398958444595337, -0.051357973366975784,
- -0.025121737271547318, 0.005825443658977747, 0.12884114682674408, -0.062179163098335266,
- 0.03980438411235809, 0.010142583400011063, -0.022406838834285736, 0.029343249276280403,
- -0.09812279045581818, 0.007842815481126308, -0.03932861611247063, 0.043154504150152206,
- 0.044714249670505524, 0.045477867126464844, -0.048114288598299026, 0.0931570753455162,
- -0.11109817028045654, 0.05186763033270836, 0.036839161068201065, -0.004777542315423489,
- 0.05577876418828964, -0.04574919119477272, 0.045697249472141266, 0.0520811453461647,
- -0.05829267203807831, 0.03621356189250946, -0.05813741311430931, -0.023621832951903343,
- -0.08455201238393784, -0.05968211963772774, -0.023309720680117607, -0.08285822719335556,
- 0.05808046832680702, -0.09134716540575027, -0.009518026374280453, -0.035157255828380585,
- -0.01420973613858223, 0.02666538767516613, 0.03782147541642189, 0.05629913508892059,
- -0.1398848593235016, 0.022295134142041206, -0.016568580642342567, 0.06690911203622818,
- -0.025150490924715996, -0.05810551717877388, 0.000924771826248616, 0.11442696303129196,
- 0.06052591651678085, 0.016007879748940468, 0.009933286346495152, -0.07351484149694443,
- 0.03009551763534546, -0.08722387999296188, -0.5045241713523865, 0.033839307725429535,
- 0.024711299687623978, 0.030340449884533882, -0.009729469195008278, -0.05726659297943115,
- 0.05760398879647255, -0.013829155825078487, -0.04555481672286987, 0.10587907582521439,
- -0.04935277998447418, 0.00965467095375061, 0.013010567054152489, -0.056847263127565384,
- -0.017451439052820206, -0.04488277807831764, -0.042962510138750076, 0.06186890974640846,
- -0.027170954272150993, -0.07592558860778809, -0.09748660773038864, 0.0252112727612257,
- -0.015056206844747066, -0.005378322675824165, 0.007115824613720179,
- 0.021034695208072662, -0.06668878346681595, -0.038149360567331314, 0.026123911142349243,
- 0.046612903475761414, 0.048639312386512756, -0.05655979737639427,
- -0.0037744580768048763, 0.0448334775865078, -0.02880075015127659, 0.15072552859783173,
- 0.013842037878930569, 0.018349237740039825, -0.07592631131410599, 0.09810679405927658,
- 0.06806580722332001, 0.18692559003829956, -0.010341610759496689, 0.03254295513033867,
- -0.00005727846655645408, 0.15151150524616241, 0.03603566065430641, 0.03149859234690666,
- -0.02604493498802185, 0.010193820111453533, 0.03646555542945862, -0.020201725885272026,
- 0.06970620155334473, -0.09803258627653122, -0.0031296678353101015,
- -0.015793807804584503, -0.0015667116967961192, -0.038286663591861725,
- 0.017815522849559784, 0.21029749512672424, 0.018749576061964035, 0.033888429403305054,
- 0.01579931564629078, -0.04613638296723366, 0.008909131400287151, -0.06225334107875824,
- -0.09810132533311844, -0.005696229171007872, 0.00012806548329535872,
- 0.014529877342283726, -0.026407962664961815, -0.14564301073551178, 0.0127185620367527,
- -0.024596838280558586, -0.01201198436319828, 0.08740092813968658, 0.028328539803624153,
- 0.011786660179495811, -0.03460954129695892, 0.10422810912132263, 0.03769811615347862,
- 0.020088938996195793, 0.04949462041258812, 0.06318121403455734, 0.011620505712926388,
- -0.00019796892593149096, -0.040474314242601395, -0.05261093005537987,
- 0.03652479499578476, 0.11375205218791962, -0.06380316615104675, 0.08306726813316345,
- 0.033079516142606735, -0.040521446615457535, -0.0644325464963913, 0.02871701307594776,
- -0.0023140886332839727, 0.050383374094963074, -0.48920977115631104,
- -0.016037972643971443, 0.11782507598400116, 0.01573462225496769, 0.034733135253190994,
- 0.10110319405794144, 0.052338067442178726, -0.053785290569067, -0.05242842808365822,
- -0.030506091192364693, 0.12360375374555588, -0.026461243629455566, 0.05243707075715065,
- -0.14245563745498657, 0.05405408516526222, 0.07520417124032974, -0.018079182133078575,
- -0.030174870043992996, 0.06409178674221039, -0.2122087925672531, -0.001313574961386621,
- -0.05313752591609955, 0.14896978437900543, 0.046786725521087646, 0.004967014770954847,
- 0.07953585684299469, -0.054389312863349915, 0.04453231766819954, 0.052701905369758606,
- -0.00248878076672554, 0.0948013961315155, 0.017350446432828903, -0.012729615904390812,
- 0.11792047321796417, 0.0824582651257515, 0.08690668642520905, -0.019098684191703796,
- 11.911587715148926, 0.06489867717027664, 0.03927663341164589, -0.06686785817146301,
- 0.034953773021698, -0.0719321072101593, 0.04341771826148033, -0.0622633658349514,
- 0.06525613367557526, 0.1010899618268013, -0.02060018666088581, -0.015593353658914566,
- -0.021611496806144714, -0.09536614269018173, 0.004991566762328148, -0.08176182955503464,
- -0.04646146297454834, -0.035186294466257095, 0.03275245055556297, -0.04490986466407776,
- -0.006469703745096922, -0.0037597075570374727, 0.07519439607858658,
- 0.016415150836110115, -0.07143210619688034, 0.04380438104271889, 0.04602983966469765,
- -0.004799714311957359, -0.013500615023076534, 0.03312108665704727, -0.04170478880405426,
- 0.03677923604846001, 0.061010874807834625, 0.00827555637806654, 0.005309164058417082,
- 0.05387168750166893, 0.06138080731034279, 0.0563737116754055, -0.004138626623898745,
- 0.08062140643596649, 0.029078012332320213, 0.023958032950758934, 0.020021788775920868,
- 0.029863793402910233, 0.03606881946325302, 0.037275418639183044, 0.06497389078140259,
- 0.11447601765394211, 0.020123841241002083, 0.055141665041446686, 0.09338314831256866,
- -0.05475353077054024, 0.13905511796474457, 0.019924001768231392, 0.007237218786031008,
- 0.036042455583810806, -0.019175739958882332, -0.055690910667181015,
- 0.060995735228061676, 0.06337333470582962, -0.05735981464385986, 0.09127490222454071,
- 0.026373879984021187, 0.11745455116033554, -0.044418659061193466, 0.042146410793066025,
- 0.07107274979352951, 0.05678226798772812, -0.11604895442724228, -0.07745877653360367,
- 0.059540364891290665, -0.12131686508655548, -0.06436861306428909, 0.036859262734651566,
- 0.08350179344415665, -0.06589055061340332, 0.03734903037548065, -0.0475686751306057,
- 0.02805573306977749, -0.04661310836672783, -0.02722775936126709, 0.03568423166871071,
- -0.01730584353208542, 0.039076659828424454, 0.05124794319272041, 0.004284219350665808,
- 0.0996105968952179, 0.09367799013853073, -0.030982734635472298, -0.08456770330667496,
- -0.09596873074769974, 0.10231070965528488, -0.03860005363821983, -0.07618355005979538,
- 0.01318111177533865, -0.03552596643567085, 0.03938998654484749, -0.16312864422798157,
- 0.07058433443307877, 0.11965226382017136, -0.1074320524930954, -0.015659289434552193,
- -0.03224752098321915, 0.0700426995754242, -0.015887008979916573, 0.03741561993956566,
- -0.051792290061712265, 0.017983434721827507, 0.009901206009089947, 0.043476179242134094,
- -0.06485212594270706, 0.05528205260634422, 0.09528999030590057, -0.06535597890615463,
- 0.05234827846288681, 0.07042420655488968, -0.06339691579341888, -0.05964033305644989,
- 0.048837050795555115, 0.03648320585489273, -0.10805794596672058, -0.0227205790579319,
- -0.0361357182264328, -0.024152399972081184, -0.03091512806713581, -0.016864163801074028,
- 0.024224460124969482, 0.02843351848423481, -0.05836135149002075, -0.017182141542434692,
- 0.0014245811617001891, 0.018511636182665825, 0.07297047227621078, 0.023202771320939064,
- 0.0534103661775589, -0.06115597486495972, -0.005188378971070051, 0.050403892993927,
- 0.07380799949169159, 0.08236677944660187, -0.01804240792989731, -0.0033378317020833492,
- -0.06084107980132103, -0.1325916349887848, 0.015085398219525814, 0.10276970267295837,
- 0.056108828634023666, 0.04137887433171272, 0.017337579280138016, -0.08658670634031296,
- -0.06311137229204178, 0.11428331583738327, 0.027775835245847702, 0.018520234152674675,
- 0.003482355270534754, -0.09727931767702103, -0.0173103678971529, 0.1435033679008484,
- -0.043053265661001205, 0.012265981175005436, 0.02709786780178547, -0.034189991652965546,
- 0.06901118159294128, 0.08679332584142685, 0.05304647609591484, 0.022522442042827606,
- 0.02481350116431713, 0.003532180329784751, 0.02511184848845005, -0.008613696321845055,
- 0.024630330502986908, -0.005704261362552643, -0.13397450745105743, -0.08423195034265518,
- 0.05069112777709961, 0.07848168164491653, 0.0008073513745330274, -0.10738331824541092,
- -0.03515298664569855, -0.04691890627145767
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 25,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 71,
- "similarity": 0.9995356798171997
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 20,
- "similarity": 0.999518632888794
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 8,
- "similarity": 0.9993955492973328
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Paul Lienert"],
- "epoch_date_downloaded": 1666742400,
- "epoch_date_modified": 1666742400,
- "epoch_date_submitted": 1666656000,
- "flag": null,
- "report_number": 2173,
- "source_domain": "reuters.com",
- "submitters": ["Sean McGregor"],
- "title": "Two rival self-driving cars have close call in California",
- "url": "https://www.reuters.com/article/us-autos-selfdriving-nearmiss/two-rival-self-driving-cars-have-close-call-in-california-idUSKBN0P601T20150626"
- },
- {
- "__typename": "Report",
- "authors": ["Justin Pritchard"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 310,
- "source_domain": "nbcwashington.com",
- "submitters": ["Anonymous"],
- "title": "Google, Delphi Self-Driving Cars Getting Dinged in California",
- "url": "https://www.nbcwashington.com/news/tech/Self-Driving-Driverless-Cars-Google-Accidents-California-303273701.html?_osource=AMP"
- },
- {
- "__typename": "Report",
- "authors": ["Jennifer Cowan"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 309,
- "source_domain": "sitepronews.com",
- "submitters": ["Anonymous"],
- "title": "Delphi Changes Story, Says Google Self-Driving Car Did Not Nearly Crash Into Audi",
- "url": "http://www.sitepronews.com/2015/06/29/delphi-changes-story-says-google-self-driving-car-did-not-nearly-crash-into-audi/"
- },
- {
- "__typename": "Report",
- "authors": ["Mike Wehner"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 308,
- "source_domain": "dailydot.com",
- "submitters": ["Anonymous"],
- "title": "Near-miss between self-driving cars shows computers are smarter than us",
- "url": "https://www.dailydot.com/debug/google-delphi-self-driving-cars-almost-crash/"
- },
- {
- "__typename": "Report",
- "authors": ["Contextual Feed"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 307,
- "source_domain": "wiproo.com",
- "submitters": ["Anonymous"],
- "title": "Google and Delphi Self Driving Cars Clash In Near Miss Accident",
- "url": "https://wiproo.com/google-and-delphi-self-driving-cars-clash-in-near-miss-accident.html"
- },
- {
- "__typename": "Report",
- "authors": ["Benjamin Snyder"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 306,
- "source_domain": "fortune.com",
- "submitters": ["Anonymous"],
- "title": "Google's self-driving Lexus cuts off self-driving Audi",
- "url": "http://fortune.com/2015/06/26/google-self-driving-lexus-audi/"
- },
- {
- "__typename": "Report",
- "authors": ["Mary Papenfuss"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 305,
- "source_domain": "ibtimes.co.uk",
- "submitters": ["Anonymous"],
- "title": "Google and Delphi self-driving cars in near miss",
- "url": "https://www.ibtimes.co.uk/google-delphi-self-driving-cars-near-miss-1508187"
- },
- {
- "__typename": "Report",
- "authors": ["Chris Isidore"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 304,
- "source_domain": "money.cnn.com",
- "submitters": ["Anonymous"],
- "title": "Self-driving cars from rivals Google, Delphi in close call",
- "url": "https://money.cnn.com/2015/06/26/autos/self-driving-car-near-accident/index.html"
- },
- {
- "__typename": "Report",
- "authors": ["Kirsten Rincon"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 302,
- "source_domain": "dmv.com",
- "submitters": ["Anonymous"],
- "title": "Google's Driverless Car Almost Hit Delphi's Autonomous Vehicle, Report Says",
- "url": "https://www.dmv.com/blog/google-driverless-car-almost-hit-delphis-autonomous-vehicle-522114"
- },
- {
- "__typename": "Report",
- "authors": ["Kelly Fiveash"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 301,
- "source_domain": "theregister.co.uk",
- "submitters": ["Anonymous"],
- "title": "Robo-car wars: Delphi's near crash, prang, wallop with Google DENIED!",
- "url": "https://www.theregister.co.uk/2015/06/27/delphi_denies_close_google_car_crash/"
- },
- {
- "__typename": "Report",
- "authors": ["Sarah Begley"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 300,
- "source_domain": "time.com",
- "submitters": ["Anonymous"],
- "title": "Driverless Car Maker Denies Claim of Near-Miss With Google Car",
- "url": "http://time.com/3941588/delphi-driverless-cars/?iid=time_readnext"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "apple",
- "name": "Apple"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "apple",
- "name": "Apple"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "device-owners",
- "name": "Device Owners"
- },
- {
- "__typename": "Entity",
- "entity_id": "apple",
- "name": "Apple"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [
- 340, 339, 338, 337, 336, 334, 333, 330, 329, 327, 326, 325, 324, 323, 321, 319, 318,
- 317, 316, 315, 314, 313, 312, 311
- ],
- "vector": [
- -0.08088229596614838, 0.08429934829473495, 0.004627680871635675, -0.14326903223991394,
- 0.07029224932193756, -0.017795979976654053, -0.005753949750214815, 0.04846213385462761,
- 0.07787804305553436, -0.13038356602191925, -0.006304561626166105, 0.07733246684074402,
- 0.01603851281106472, -0.0833967998623848, 0.04844905063509941, -0.07262439280748367,
- -0.09759089350700378, -0.050368133932352066, -0.02380451001226902, -0.10841285437345505,
- -0.10285703092813492, -0.01177156064659357, -0.0036236734595149755, 0.12109225988388062,
- -0.06470268219709396, -0.009071256965398788, 0.09122820943593979, 0.08193778246641159,
- -0.06569334119558334, 0.03489547595381737, -0.00656498596072197, -0.07115232944488525,
- 0.11893200129270554, 0.022366933524608612, 0.006301852408796549, 0.09548026323318481,
- 0.02425994724035263, -0.02180537022650242, -0.03292466327548027, -0.00911868829280138,
- -0.005214502569288015, 0.21512283384799957, 0.008285642601549625, -0.028210237622261047,
- 0.0452263318002224, -0.051117509603500366, 0.0301066841930151, 0.05034757778048515,
- -0.0036002397537231445, -0.008020919747650623, 0.002098449971526861,
- 0.029102005064487457, -0.06827931106090546, 0.03341832011938095, -0.10562606900930405,
- 0.046747103333473206, 0.016301406547427177, 0.02093549259006977, 0.056827932596206665,
- -0.09205716103315353, -0.026832973584532738, -0.21523922681808472, -0.04414963349699974,
- -0.060971733182668686, 0.07647133618593216, -0.07968191057443619, -0.03352748602628708,
- 0.044726382941007614, 0.04671860113739967, 0.055643826723098755, 0.09157150238752365,
- -0.013746238313615322, -0.03028653748333454, 0.007425240706652403,
- -0.014140024781227112, 0.0021180198527872562, -0.00009768849849933758,
- 0.1908392757177353, -0.123320072889328, -0.006178814917802811, 0.12425258755683899,
- -0.12665966153144836, 0.37141337990760803, 0.007130040321499109, -0.03864673525094986,
- -0.048788364976644516, 0.08835221081972122, 0.03468708321452141, 0.04266589507460594,
- 0.013244833797216415, -0.03481410816311836, 0.008096893317997456, -0.07856548577547073,
- -0.010936512611806393, 0.08124511688947678, 0.04338916763663292, -0.02232995443046093,
- -0.01362716406583786, -0.00363717507570982, -0.060851871967315674,
- 0.0053414516150951385, -0.040009189397096634, 0.09260633587837219, 0.11354031413793564,
- -0.041397761553525925, -0.008973690681159496, 0.005272386595606804,
- -0.07000820338726044, 0.09035458415746689, -0.08347845822572708, 0.04192188009619713,
- 0.0035342948976904154, 0.06441493332386017, -0.002173309912905097, 0.03831152990460396,
- -0.06176818907260895, 0.020912595093250275, 0.07252370566129684, 0.09274023026227951,
- 0.03551186993718147, -0.015528340823948383, 0.07367335259914398, 0.05715068802237511,
- -0.07671704143285751, 0.020493613556027412, -0.032610051333904266,
- -0.039156075567007065, -0.043806303292512894, -0.039437878876924515,
- 0.05920803174376488, -0.043448373675346375, -0.22508694231510162, 0.05209236219525337,
- 0.0739622414112091, -0.00655244430527091, -0.04617145285010338, 0.05448225140571594,
- -0.049468740820884705, 0.047232698649168015, -0.00983052421361208, -0.07124287635087967,
- 0.05905928835272789, 0.015526704490184784, 0.041613221168518066, 0.12706775963306427,
- 0.03083913028240204, -0.04330398142337799, -0.05630872771143913, 0.022600315511226654,
- -0.03796574845910072, 0.10609084367752075, -0.127626433968544, -0.05397787317633629,
- 0.011415866203606129, -0.06808275729417801, 0.6858680844306946, 0.05739109218120575,
- 0.2014162689447403, 0.04366585612297058, 0.014691653661429882, 0.1791812628507614,
- -0.02759864181280136, 0.09918508678674698, -0.08043748885393143, -0.06588936597108841,
- 0.06403978914022446, -0.06911689043045044, -0.038306571543216705, 0.026025347411632538,
- 0.015045261941850185, 0.08799415826797485, 0.013776012696325779, 0.08718299120664597,
- 0.009089464321732521, -0.06952344626188278, -0.03874671086668968, 0.034597691148519516,
- 0.023051613941788673, -0.1090613305568695, -0.0447838269174099, 0.05376524105668068,
- 0.09313670545816422, -0.07632371038198471, 0.001267984858714044, -0.057236943393945694,
- 0.05512651428580284, -0.012925182469189167, 0.08228117972612381, -0.007014891132712364,
- 0.02584206312894821, 0.02733040414750576, 0.04335200414061546, 0.011812145821750164,
- -0.08961421251296997, -0.015317913144826889, 0.08885464072227478, -0.03715360909700394,
- -0.02491270937025547, 0.07867182046175003, -0.09805078059434891, 0.025920243933796883,
- 0.004845127929002047, 0.15901421010494232, -0.09457263350486755, 0.021142438054084778,
- -0.0017215703846886754, 0.01986503042280674, 0.024921348318457603, 0.027912801131606102,
- -0.061139971017837524, -0.06246953085064888, 0.0852896049618721, 0.032454486936330795,
- 0.0341978445649147, 0.08241992443799973, 0.006018340587615967, 0.03755616024136543,
- 0.05783845856785774, -0.03317571058869362, -0.035122405737638474, 0.0618986040353775,
- 0.06826257705688477, -0.04315292462706566, -0.03153252974152565, 0.046828996390104294,
- 0.041342832148075104, -0.010434520430862904, -0.037231866270303726, 0.04535330459475517,
- -0.04146469011902809, -0.06936275959014893, 0.0330655537545681, 0.05513603612780571,
- 0.028638405725359917, 0.10529717803001404, -0.03958655148744583, -0.0618768036365509,
- -0.03823733702301979, -0.03905361890792847, 0.04722066596150398, -0.04873472824692726,
- 0.07815475016832352, 0.07217059284448624, 0.06952320039272308, 0.02270743064582348,
- 0.03196459636092186, 0.0602080412209034, 0.06075706705451012, 0.05260995030403137,
- 0.056379999965429306, -0.0238646287471056, -0.03419533371925354, -0.02354707382619381,
- 0.011334206908941269, 0.04566654935479164, 0.025523021817207336, -0.07704540342092514,
- -0.031155375763773918, -0.035545505583286285, -0.03550266847014427,
- -0.09641695767641068, -0.03633671626448631, 0.02592802792787552, 0.017246024683117867,
- -0.03669515624642372, -0.09334250539541245, -0.07299745827913284, 0.01665629632771015,
- 0.0632457509636879, -0.011785343289375305, -0.002534043276682496, -0.09581849724054337,
- -0.0008876440697349608, -0.04101071134209633, 0.0672353133559227, -0.007056636270135641,
- 0.010332688689231873, 0.01574394293129444, -0.026717988774180412, 0.04490021988749504,
- -0.020214824005961418, -0.025930315256118774, -0.060033444315195084,
- -0.05992916598916054, -0.039799388498067856, -0.03333147242665291,
- -0.029678529128432274, -0.015979154035449028, 0.016343431547284126,
- 0.055082064121961594, 0.06013351306319237, -0.00276811677031219, -0.022712690755724907,
- 0.056417420506477356, -0.016678569838404655, -0.02131633274257183, 0.08187618851661682,
- -0.043438542634248734, 0.01515908818691969, -0.04060039296746254, -0.08101561665534973,
- -0.03688165545463562, 0.03701678663492203, -0.061779070645570755, 0.05092065408825874,
- -0.005742533598095179, 0.04444499313831329, -0.03880837559700012, -0.03882757946848869,
- 0.05112038552761078, -0.06285492330789566, -0.0889657512307167, -0.07413994520902634,
- 0.11859180778265, -0.019615354016423225, -0.026480024680495262, 0.05219829082489014,
- -0.008012673817574978, 0.06174031272530556, -0.03668522462248802, 0.01608988083899021,
- 0.01988404057919979, 0.042991381138563156, -0.010034012608230114, 0.07222296297550201,
- 0.02838638424873352, -0.04850484058260918, 0.05183298513293266, 0.03445176035165787,
- 0.4413665235042572, -0.2571927607059479, 0.08508088439702988, 0.09504643827676773,
- 0.034390855580568314, 0.053688157349824905, -0.04526078701019287, 0.0577504001557827,
- 0.10754084587097168, 0.10866603255271912, 0.12766902148723602, -0.044090792536735535,
- -0.01043559517711401, -0.09452497959136963, 0.0927993655204773, -0.008847605437040329,
- 0.008946997113525867, -0.000678238517139107, -0.08592387288808823, -0.02581670694053173,
- 0.05380009487271309, -0.03631165996193886, -0.0035077438224107027,
- -0.008365835063159466, -0.012246702797710896, 0.00017247501818928868,
- 0.009606802836060524, 0.040041934698820114, -0.006529714446514845,
- 0.0001493298914283514, -0.012368029914796352, 0.05422819033265114, 0.027856916189193726,
- 0.02198617346584797, -0.09161224961280823, 0.02322172373533249, -0.04721274971961975,
- -0.13008622825145721, 0.0968923568725586, -0.0066994656808674335, 0.05280676856637001,
- 0.057570427656173706, -0.06570305675268173, 0.036902155727148056, -0.05027228221297264,
- -0.0606779120862484, 0.0029655946418642998, 0.11433061212301254, 0.011922351084649563,
- 0.08781832456588745, 0.18357090651988983, -0.05300836265087128, -0.06185612082481384,
- -0.06766924262046814, 0.066439189016819, 0.13579639792442322, -0.028004931285977364,
- 0.03411412984132767, 0.019193550571799278, -0.05008791387081146, -0.02741687186062336,
- -0.06589093059301376, -0.07742267102003098, -0.03360604867339134, -0.03121625818312168,
- 0.07909860461950302, 0.017441581934690475, -0.046116430312395096, -0.1849784106016159,
- -0.03691215440630913, -0.029964694753289223, 0.024166127666831017, 0.1087098941206932,
- -0.07169055938720703, 0.024982431903481483, -0.0031429778318852186,
- -0.01117232907563448, -0.032326590269804, -0.07531628757715225, -0.0004807746736332774,
- 0.003616166999563575, 0.04394331946969032, 0.06170842424035072, 0.04991086199879646,
- 0.011834884993731976, 0.05737815424799919, -0.0962553396821022, 0.06860267370939255,
- 0.0026774972211569548, -0.024042842909693718, 0.03122374229133129,
- -0.037383873015642166, 0.024371406063437462, 0.01508470717817545, -0.051570165902376175,
- 0.01595970056951046, -0.03717382624745369, -0.04181879758834839, -0.055879686027765274,
- -0.05482470989227295, -0.03822161257266998, -0.09393572807312012, 0.0406012199819088,
- -0.05608411133289337, -0.006350507959723473, -0.04126400873064995, -0.05791198089718819,
- 0.012464803643524647, 0.015400242060422897, 0.0314224474132061, -0.164228618144989,
- -0.020373888313770294, 0.001603704527951777, 0.05109874904155731, -0.0255954060703516,
- -0.028398854658007622, 0.018972614780068398, 0.07790255546569824, 0.04306668043136597,
- -0.039137836545705795, 0.009035409428179264, -0.06391582638025284, 0.018764356151223183,
- -0.10743594169616699, -0.517064094543457, 0.08379939943552017, 0.014975802041590214,
- 0.0017693708650767803, 0.03222544118762016, -0.047619402408599854, 0.04392043128609657,
- -0.0002433656045468524, -0.030283136293292046, 0.09035804867744446,
- -0.06369849294424057, 0.023878566920757294, -0.03756236657500267, -0.013454217463731766,
- -0.0206045713275671, -0.05263955891132355, -0.051904816180467606, 0.04763287305831909,
- -0.025118494406342506, -0.03695430979132652, -0.1207994744181633, 0.02614532597362995,
- -0.04775513336062431, 0.017262587323784828, 0.007866204716265202, 0.014958853833377361,
- -0.07189228385686874, -0.05240814387798309, 0.037327397614717484, 0.07311483472585678,
- 0.046038996428251266, -0.07916534692049026, 0.015355478972196579, 0.013649091124534607,
- -0.010245469398796558, 0.1408328264951706, 0.01998230256140232, -0.05529220402240753,
- -0.07952691614627838, 0.08022689819335938, 0.06623827666044235, 0.18478403985500336,
- -0.022002683952450752, 0.015198107808828354, 0.004688094835728407, 0.15481841564178467,
- 0.05580104887485504, 0.015854913741350174, -0.04142952337861061, 0.02239934168756008,
- 0.029008036479353905, -0.029886208474636078, 0.08419602364301682, -0.05521206185221672,
- -0.02349313534796238, -0.010336539708077908, -0.013557743281126022, -0.037999227643013,
- -0.0043154810555279255, 0.21714603900909424, 0.02993100881576538, 0.027601659297943115,
- 0.008146797306835651, -0.038297656923532486, 0.0196028184145689, -0.0641302689909935,
- -0.10886108875274658, -0.022197261452674866, 0.02217715233564377, 0.02927621640264988,
- -0.04675883427262306, -0.12565399706363678, -0.03782438114285469, 0.04897572472691536,
- -0.007837515324354172, 0.09030843526124954, 0.013882025144994259, 0.07196070998907089,
- -0.035112567245960236, 0.11237671226263046, 0.009720141999423504, 0.01870180107653141,
- 0.06373270601034164, 0.12328717112541199, 0.030051201581954956, 0.006138911470770836,
- -0.02077181451022625, -0.07376506924629211, 0.015447616577148438, 0.13293127715587616,
- -0.05110793188214302, 0.1337805688381195, 0.041371654719114304, -0.058582693338394165,
- -0.05686696246266365, 0.020365523174405098, -0.013104166835546494, 0.031588830053806305,
- -0.4829256236553192, 0.0029930875170975924, 0.15086247026920319, 0.0037925252690911293,
- 0.023413313552737236, 0.07757625728845596, -0.0004491238796617836, -0.04433367773890495,
- -0.059717003256082535, -0.061177562922239304, 0.11394088715314865,
- 0.0027083198074251413, 0.08721084147691727, -0.08545144647359848, 0.03201703354716301,
- 0.07337034493684769, -0.04153159633278847, 0.008073813281953335, 0.053769517689943314,
- -0.28050166368484497, 0.019761616364121437, -0.022170836105942726, 0.10412680357694626,
- 0.04355938360095024, 0.0500083863735199, 0.10913366824388504, -0.06686756014823914,
- 0.0419834703207016, 0.0464293509721756, 0.00036478639231063426, 0.06181103363633156,
- -0.007314711809158325, -0.03270969167351723, 0.10058200359344482, 0.10440501570701599,
- 0.07477965950965881, -0.03162483498454094, 12.045844078063965, 0.0333486907184124,
- 0.04703526198863983, -0.07675163447856903, 0.0005196464480832219, -0.06759963184595108,
- 0.015581022948026657, -0.07479903846979141, 0.06784582883119583, 0.13215219974517822,
- -0.004709609784185886, -0.053085941821336746, -0.017252234742045403,
- -0.1146933063864708, 0.04878374934196472, -0.056256648153066635, -0.025797247886657715,
- -0.03744479641318321, 0.04305064305663109, -0.04575224220752716, -0.06660771369934082,
- 0.0576341412961483, 0.0648316815495491, 0.03196011111140251, -0.0658058449625969,
- 0.026539327576756477, -0.012841281481087208, 0.0029341846238821745,
- 0.007909631356596947, 0.03090819902718067, -0.01769212633371353, -0.012225307524204254,
- 0.05994100868701935, -0.024732746183872223, 0.04769698157906532, 0.03721757233142853,
- 0.07090293616056442, 0.07019402831792831, 0.03670767322182655, 0.06403791159391403,
- 0.032993901520967484, -0.013105941005051136, 0.013879463076591492, 0.05008772015571594,
- 0.08070821315050125, 0.043959349393844604, 0.05896174907684326, 0.12289687246084213,
- 0.02049323543906212, 0.09340999275445938, 0.08764565736055374, -0.001002975390292704,
- 0.093246228992939, 0.0210239440202713, -0.014525619335472584, 0.041113220155239105,
- -0.001746250200085342, -0.06985823065042496, 0.1022716760635376, 0.1037532165646553,
- -0.07408374547958374, 0.1024908646941185, 0.01595144346356392, 0.1330413967370987,
- -0.02496260218322277, 0.07840543985366821, 0.04250621795654297, 0.10272669047117233,
- -0.09023722261190414, -0.12128343433141708, 0.0334402434527874, -0.0969311073422432,
- -0.07029198855161667, 0.05622474476695061, 0.12856678664684296, -0.01658751256763935,
- 0.013717814348638058, -0.06314805895090103, 0.03686215355992317, -0.04499462619423866,
- 0.004536996129900217, 0.0377533845603466, -0.02510763704776764, 0.058019619435071945,
- 0.01959100551903248, 0.037406254559755325, 0.05638653039932251, 0.08175229281187057,
- 0.0437302403151989, -0.0819464772939682, -0.05828087031841278, 0.1254163235425949,
- -0.007998616434633732, -0.06319079548120499, -0.01861867681145668,
- -0.014216947369277477, 0.03012465499341488, -0.1437882035970688, 0.0367560014128685,
- 0.11734187602996826, -0.07459800690412521, -0.011478416621685028, -0.046058788895606995,
- 0.047864172607660294, -0.01359515730291605, 0.04607348516583443, -0.062238749116659164,
- -0.002989198314025998, 0.06189602240920067, 0.04330039396882057, -0.0345529206097126,
- 0.06671977043151855, 0.10689529031515121, -0.05372084677219391, 0.05795576050877571,
- 0.04664037749171257, -0.024260595440864563, -0.02478960156440735, 0.07012610882520676,
- 0.06791557371616364, -0.08329502493143082, -0.027048727497458458, -0.01928173191845417,
- -0.0474075973033905, -0.0027636587619781494, -0.04401731118559837,
- -0.0070101190358400345, 0.03045491687953472, -0.07131596654653549,
- -0.015888046473264694, 0.04577506706118584, 0.06266429275274277, 0.07995115965604782,
- -0.018300354480743408, 0.053486812859773636, -0.05875176563858986, -0.0645613893866539,
- 0.04619439318776131, 0.07500337809324265, 0.07343413680791855, -0.12134785205125809,
- -0.0483577735722065, -0.029692599549889565, -0.1365446299314499, 0.018788155168294907,
- 0.1099715605378151, 0.06752122193574905, 0.05815776810050011, 0.0072378613986074924,
- -0.08517060428857803, -0.0649421438574791, 0.1028423085808754, 0.04671696946024895,
- 0.013000600039958954, 0.06309153884649277, -0.038887783885002136, -0.015290264040231705,
- 0.0878823921084404, -0.06261452287435532, 0.022737735882401466, -0.03196064755320549,
- -0.08487830311059952, 0.11430135369300842, 0.11260127276182175, 0.002870424883440137,
- 0.007534840609878302, 0.038702771067619324, 0.012768003158271313, 0.02972661890089512,
- -0.015969181433320045, 0.05002876743674278, -0.011628345586359501, -0.13521897792816162,
- -0.08994657546281815, 0.04652377963066101, 0.07449058443307877, 0.01652381382882595,
- -0.10769561678171158, -0.050597935914993286, -0.003495311364531517
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 26,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 32,
- "similarity": 0.9995800256729126
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 39,
- "similarity": 0.9989436864852905
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 60,
- "similarity": 0.9989173412322998
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Margi Murphy"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 340,
- "source_domain": "thesun.co.uk",
- "submitters": ["Catherine Olsson"],
- "title": "Hackers fool Apple's super secure Face ID and unlock iPhone X with a simple mask",
- "url": "https://www.thesun.co.uk/tech/4902775/hackers-fool-apples-super-secure-face-id-and-unlock-iphone-x-with-a-simple-mask/"
- },
- {
- "__typename": "Report",
- "authors": ["Rene Ritchie"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 339,
- "source_domain": "imore.com",
- "submitters": ["Catherine Olsson"],
- "title": "Face ID hasn't been hacked: What you need to know",
- "url": "https://www.imore.com/face-id-spoofing-fud"
- },
- {
- "__typename": "Report",
- "authors": ["Jack Morse"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 338,
- "source_domain": "mashable.com",
- "submitters": ["Catherine Olsson"],
- "title": "Face ID has been defeated again, and this time it was 'simple'",
- "url": "https://mashable.com/2017/11/27/apple-face-id-mask-defeated-again/#N3QOEjviHiqW"
- },
- {
- "__typename": "Report",
- "authors": ["Buster Hein"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 337,
- "source_domain": "cultofmac.com",
- "submitters": ["Catherine Olsson"],
- "title": "Hackers claim they fooled Face ID with cheap mask",
- "url": "https://www.cultofmac.com/513755/hackers-claim-fooled-face-id-cheap-mask/"
- },
- {
- "__typename": "Report",
- "authors": ["Thomas Fox-Brewster"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 336,
- "source_domain": "forbes.com",
- "submitters": ["Catherine Olsson"],
- "title": "Apple Face ID 'Fooled Again' -- This Time By $200 Evil Twin Mask",
- "url": "https://www.forbes.com/sites/thomasbrewster/2017/11/27/apple-face-id-artificial-intelligence-twin-mask-attacks-iphone-x/#78af9df52775"
- },
- {
- "__typename": "Report",
- "authors": ["Reuters"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 334,
- "source_domain": "fortune.com",
- "submitters": ["Catherine Olsson"],
- "title": "Apple iPhone X Face ID: Vietnam Firm Demos Possible Hack",
- "url": "http://fortune.com/2017/11/14/apple-iphone-x-face-id-hack/"
- },
- {
- "__typename": "Report",
- "authors": ["James Billington"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 333,
- "source_domain": "ibtimes.co.uk",
- "submitters": ["Catherine Olsson"],
- "title": "How safe is Apple's Face ID and can it be hacked? New iPhone X security feature explained",
- "url": "https://www.ibtimes.co.uk/how-safe-apples-face-id-can-it-be-hacked-new-iphone-x-security-feature-explained-1639125"
- },
- {
- "__typename": "Report",
- "authors": ["Raymond Wong"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 330,
- "source_domain": "finance.yahoo.com",
- "submitters": ["Catherine Olsson"],
- "title": "Hackers fool the iPhone X's Face ID using a cheesy-looking mask",
- "url": "https://finance.yahoo.com/news/hackers-fool-iphone-x-apos-201927910.html"
- },
- {
- "__typename": "Report",
- "authors": ["James Titcomb"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 329,
- "source_domain": "telegraph.co.uk",
- "submitters": ["Catherine Olsson"],
- "title": "Hackers claim to beat iPhone X's Face ID in one week with £115 mask",
- "url": "https://www.telegraph.co.uk/technology/2017/11/13/hackers-beat-iphone-xs-face-one-week-115-mask/"
- },
- {
- "__typename": "Report",
- "authors": ["news.com.au"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 327,
- "source_domain": "news.com.au",
- "submitters": ["Catherine Olsson"],
- "title": "Face ID hack is a little concerning",
- "url": "https://www.news.com.au/technology/gadgets/mobile-phones/10yearold-who-looks-like-his-mum-hacks-her-iphones-face-id/news-story/eb6f46d6a5b370f6a3ae165df56f28f5"
- },
- {
- "__typename": "Report",
- "authors": ["Alfred Ng"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 326,
- "source_domain": "cnet.com",
- "submitters": ["Catherine Olsson"],
- "title": "iPhone X’s Face ID supposedly got hacked. We have questions",
- "url": "https://www.cnet.com/news/iphone-xs-face-id-supposedly-got-hacked-we-have-questions/"
- },
- {
- "__typename": "Report",
- "authors": ["Ben Travis"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 325,
- "source_domain": "standard.co.uk",
- "submitters": ["Catherine Olsson"],
- "title": "iPhone X Face ID security tricked by hackers with 3D-printed mask",
- "url": "https://www.standard.co.uk/lifestyle/london-life/iphone-x-face-id-security-tricked-by-hackers-with-3dprinted-mask-a3689221.html"
- },
- {
- "__typename": "Report",
- "authors": ["PYMTS"],
- "epoch_date_downloaded": 1560124800,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 324,
- "source_domain": "pymnts.com",
- "submitters": ["Catherine Olsson"],
- "title": "Apple iPhone X Face ID Biometrics Hacked Again",
- "url": "https://www.pymnts.com/news/security-and-risk/2017/apple-iphone-x-face-id-biometrics-hack/"
- },
- {
- "__typename": "Report",
- "authors": ["Dan Goodin"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 323,
- "source_domain": "arstechnica.com",
- "submitters": ["Catherine Olsson"],
- "title": "Hackers say they broke Apple’s Face ID. Here’s why we’re not convinced",
- "url": "https://arstechnica.com/information-technology/2017/11/hackers-say-they-broke-apples-face-id-heres-why-were-not-convinced/"
- },
- {
- "__typename": "Report",
- "authors": ["Jacob Kleinman"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 321,
- "source_domain": "lifehacker.com",
- "submitters": ["Catherine Olsson"],
- "title": "Why It's Not a Big Deal That Masks Can Fool Face ID on the iPhone X",
- "url": "https://lifehacker.com/why-its-not-a-big-deal-that-masks-can-fool-face-id-on-t-1820405606"
- },
- {
- "__typename": "Report",
- "authors": ["Alistair Charlton"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 319,
- "source_domain": "gearbrain.com",
- "submitters": ["Catherine Olsson"],
- "title": "iPhone X Face ID hack uses olives and paper eyes",
- "url": "https://www.gearbrain.com/iphone-x-face-id-hack-2508339151.html"
- },
- {
- "__typename": "Report",
- "authors": ["Victoria Woollaston"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 318,
- "source_domain": "alphr.com",
- "submitters": ["Catherine Olsson"],
- "title": "What is Face ID and how does Face ID work?",
- "url": "https://www.alphr.com/apple/1007008/face-id-what-is-apple-face-id-how-does-it-work"
- },
- {
- "__typename": "Report",
- "authors": ["Reuters"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 317,
- "source_domain": "computerworld.com.au",
- "submitters": ["Catherine Olsson"],
- "title": "How to fool Face ID on the iPhone X",
- "url": "https://www.computerworld.com.au/article/630017/how-fool-face-id-iphone-x/"
- },
- {
- "__typename": "Report",
- "authors": ["Shivali Best"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 316,
- "source_domain": "dailymail.co.uk",
- "submitters": ["Catherine Olsson"],
- "title": "Hackers develop £115 mask to fool Apple's iPhone X Face ID",
- "url": "https://www.dailymail.co.uk/sciencetech/article-5077919/Hackers-develop-simple-115-MASK-fool-Face-ID.html"
- },
- {
- "__typename": "Report",
- "authors": ["Bruce Schneier"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 315,
- "source_domain": "schneier.com",
- "submitters": ["Catherine Olsson"],
- "title": "Apple FaceID Hacked",
- "url": "https://www.schneier.com/blog/archives/2017/11/apple_faceid_ha.html"
- },
- {
- "__typename": "Report",
- "authors": ["Joshua Espinoza"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 314,
- "source_domain": "complex.com",
- "submitters": ["Catherine Olsson"],
- "title": "This Security Firm Has Found Another Way to Fool Apple’s Face ID",
- "url": "https://www.complex.com/life/2017/11/vietnamese-security-firm-hacks-iphone-x-face-id-again"
- },
- {
- "__typename": "Report",
- "authors": ["Scott Matteson"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 313,
- "source_domain": "techrepublic.com",
- "submitters": ["Catherine Olsson"],
- "title": "iPhone's Face ID can be hacked, but here's why nobody needs to panic",
- "url": "https://www.techrepublic.com/article/iphones-face-id-can-be-hacked-but-heres-why-nobody-needs-to-panic/"
- },
- {
- "__typename": "Report",
- "authors": [
- "Andy Greenberg",
- "Caitlin Kelly",
- "Emily Dreyfuss",
- "Lydia Horne",
- "Lily Hay Newman",
- "Garrett M. Graff",
- "Brian Barrett",
- "Nicholas Thompson"
- ],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 312,
- "source_domain": "wired.com",
- "submitters": ["Catherine Olsson"],
- "title": "We Tried Really Hard To Beat Face ID—and Failed (So Far)",
- "url": "https://www.wired.com/story/tried-to-beat-face-id-and-failed-so-far/"
- },
- {
- "__typename": "Report",
- "authors": [
- "Andy Greenberg",
- "Caitlin Kelly",
- "Emily Dreyfuss",
- "Lydia Horne",
- "Lily Hay Newman",
- "Garrett M. Graff",
- "Brian Barrett",
- "Nicholas Thompson"
- ],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 311,
- "source_domain": "wired.com",
- "submitters": ["Catherine Olsson"],
- "title": "Hackers Claim to Break Face ID a Week After iPhone X Release",
- "url": "https://www.wired.com/story/hackers-say-broke-face-id-security/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "soviet-union",
- "name": "Soviet Union"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "soviet-union",
- "name": "Soviet Union"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "all-life-on-earth",
- "name": "All Life on Earth"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [
- 371, 370, 368, 367, 366, 365, 364, 363, 361, 360, 359, 358, 357, 356, 355, 354, 353,
- 352, 351, 350, 349, 347, 346, 345, 344, 343, 342
- ],
- "vector": [
- -0.0762137919664383, 0.06954893469810486, 0.04287980496883392, -0.09946485608816147,
- 0.09719663113355637, -0.03817618638277054, -0.0014223753241822124, 0.007929236628115177,
- 0.0828045979142189, -0.12473036348819733, -0.029920287430286407, 0.05281619355082512,
- 0.00877845473587513, -0.06357751041650772, 0.01563243567943573, -0.07308889180421829,
- -0.11625820398330688, -0.006733056623488665, -0.0342586487531662, -0.1062900647521019,
- -0.04122785106301308, 0.012464906089007854, -0.007490647956728935, 0.10535179823637009,
- -0.0388505719602108, 0.007440822198987007, 0.06986493617296219, 0.14127673208713531,
- -0.07215716689825058, 0.060747306793928146, -0.013847578316926956, -0.02942086011171341,
- 0.12810033559799194, 0.004082795232534409, 0.011774816550314426, 0.08063926547765732,
- -0.005618902388960123, -0.028682900592684746, -0.028983524069190025,
- 0.016996266320347786, -0.04803698882460594, 0.24058668315410614, 0.030820025131106377,
- -0.023388005793094635, 0.052969131618738174, -0.04693705216050148, 0.021173330023884773,
- 0.020146621391177177, 0.003107875119894743, -0.0013196782674640417,
- 0.015985552221536636, 0.04458192363381386, -0.06269184499979019, 0.016977880150079727,
- -0.10832999646663666, 0.06732872873544693, 0.008446065708994865, -0.019437072798609734,
- 0.06366550922393799, -0.05120537430047989, -0.016980450600385666, -0.22297324240207672,
- -0.06204080954194069, -0.09351664781570435, 0.08193637430667877, -0.09564787149429321,
- -0.037200577557086945, -0.014808766543865204, 0.06560586392879486, 0.07182356715202332,
- 0.06603909283876419, -0.039138246327638626, 0.0034367891494184732, 0.05665251985192299,
- 0.011680030263960361, 0.02752036787569523, -0.026790253818035126, 0.246968075633049,
- -0.08953151851892471, -0.021586397662758827, 0.08466491848230362, -0.06722196191549301,
- 0.4309605360031128, -0.034504424780607224, -0.0059028067626059055,
- -0.011313848197460175, 0.10931000858545303, 0.012032635509967804, 0.021848198026418686,
- 0.03559044003486633, -0.016259457916021347, 0.08132065087556839, -0.059659119695425034,
- 0.02390315569937229, 0.06040139123797417, 0.029774606227874756, 0.004231876693665981,
- 0.15097446739673615, -0.011379744857549667, -0.0560220405459404, -0.0005610519438050687,
- -0.03526579588651657, 0.06573545187711716, 0.04689444974064827, -0.041940171271562576,
- 0.00011552277283044532, 0.0826033502817154, -0.07851997017860413, 0.05164854973554611,
- -0.07111930102109909, 0.0022886735387146473, -0.009900976903736591,
- 0.048864834010601044, -0.0025045257061719894, 0.016997365280985832,
- -0.06953464448451996, 0.03811538591980934, 0.04964017495512962, 0.06284879148006439,
- 0.041526589542627335, -0.036111894994974136, 0.11654771864414215, 0.09553109854459763,
- -0.07088997960090637, -0.033847447484731674, -0.04543468356132507,
- -0.057767100632190704, -0.07024931907653809, -0.012110494077205658,
- 0.054117828607559204, -0.06899946182966232, -0.1685999482870102, 0.014350596815347672,
- 0.07710075378417969, 0.0009542251937091351, -0.030910642817616463, 0.023859156295657158,
- -0.04628457874059677, 0.036385904997587204, -0.02314971573650837, -0.03360462933778763,
- 0.06464242190122604, 0.04631005972623825, 0.06253841519355774, 0.08480489999055862,
- 0.06316261738538742, -0.027093909680843353, -0.034900564700365067,
- -0.009942918084561825, 0.0012763389386236668, 0.10469990223646164, -0.08994291722774506,
- -0.05229628086090088, 0.0029563128482550383, -0.005723308306187391, 0.6608192920684814,
- 0.11116327345371246, 0.1635742336511612, -0.0037474355194717646, -0.0017898991936817765,
- 0.18598215281963348, 0.016031086444854736, 0.055132906883955, -0.06133611127734184,
- -0.04874024912714958, 0.04160914197564125, -0.04936115816235542, 0.009802661836147308,
- 0.018685152754187584, 0.030319886282086372, 0.08118928223848343, 0.02421403117477894,
- 0.05788309872150421, -0.010985227301716805, -0.08650783449411392, -0.08230982720851898,
- 0.08308905363082886, 0.01088674645870924, -0.10470855981111526, -0.03547924757003784,
- 0.04151296243071556, 0.09172269701957703, -0.10008618235588074, 0.004436959978193045,
- -0.06385119259357452, 0.044021155685186386, -0.01621028408408165, 0.038919951766729355,
- -0.014676423743367195, -0.008902015164494514, 0.05038793012499809, 0.004722797777503729,
- 0.02853699028491974, -0.08510037511587143, -0.03442028537392616, 0.08850192278623581,
- -0.032634660601615906, -0.013232276774942875, 0.048088766634464264,
- -0.07757119089365005, 0.006283176597207785, 0.015690751373767853, 0.1465231329202652,
- -0.09632284194231033, 0.05304946005344391, -0.02413475140929222, -0.023036427795886993,
- 0.06435605883598328, 0.02110656350851059, -0.024910487234592438, -0.04302595555782318,
- 0.08278078585863113, 0.06148550659418106, 0.06430789083242416, 0.043715912848711014,
- -0.026673801243305206, 0.09769388288259506, 0.05875406041741371, 0.012373538687825203,
- -0.028264440596103668, 0.015555806457996368, 0.08161668479442596, 0.013838149607181549,
- -0.016682175919413567, -0.003801460610702634, -0.02911551296710968,
- 0.025458090007305145, -0.002635196316987276, 0.02829284407198429, 0.011094324290752411,
- -0.041448924690485, 0.0443604439496994, 0.00021657880279235542, 0.01327091921120882,
- 0.08154358714818954, -0.12824603915214539, -0.05305306240916252, -0.03573550656437874,
- -0.049102384597063065, 0.007904734462499619, -0.061431437730789185, 0.10623550415039062,
- 0.060088854283094406, 0.09639935940504074, 0.05188209190964699, 0.02119133435189724,
- 0.027408869937062263, 0.09517966955900192, 0.022441480308771133, 0.08915653824806213,
- -0.012114649638533592, -0.04766622558236122, -0.04393303394317627,
- -0.0021763055119663477, 0.00699545256793499, 0.0006947799120098352,
- -0.04692497104406357, -0.018900278955698013, -0.04597814753651619, -0.04462607577443123,
- -0.09310594946146011, -0.02520298957824707, 0.031797006726264954, 0.053824346512556076,
- -0.04187357798218727, -0.07805066555738449, -0.1003963053226471, 0.011594989337027073,
- 0.0661361813545227, -0.015923215076327324, -0.026506828144192696, -0.10260742902755737,
- 0.034434132277965546, 0.010449282824993134, 0.050725407898426056, -0.009430532343685627,
- 0.034510597586631775, 0.015631552785634995, -0.05336301401257515, 0.021273506805300713,
- -0.007814735174179077, -0.032220058143138885, -0.0653093159198761, -0.07075051218271255,
- -0.03234025835990906, -0.04124129191040993, -0.01737292669713497, 0.007195124868303537,
- 0.029372096061706543, 0.03274833783507347, 0.0419413298368454, -0.0030548288486897945,
- -0.029235050082206726, 0.0638810470700264, -0.02687322162091732, -0.0002646187786012888,
- 0.11183946579694748, -0.05884217843413353, 0.026298420503735542, -0.03093835525214672,
- -0.08751853555440903, -0.05588410049676895, -0.009099127724766731, -0.07646312564611435,
- 0.05871475115418434, -0.054953090846538544, 0.008865468204021454, -0.028188500553369522,
- -0.01716831885278225, 0.00013905249943491071, -0.04687049239873886,
- -0.04820723831653595, -0.10117802768945694, 0.12612496316432953, 0.018517808988690376,
- -0.00038116637733764946, 0.051050249487161636, -0.04349632188677788,
- 0.044102463871240616, 0.013467912562191486, 0.002144390717148781, 0.05506149306893349,
- 0.08925499767065048, -0.0329115092754364, -0.016608284786343575, 0.07505766302347183,
- -0.010022459551692009, 0.03031357191503048, 0.06399408727884293, 0.4343199133872986,
- -0.22472265362739563, 0.07556501775979996, 0.07026676088571548, 0.025208186358213425,
- 0.05734710767865181, -0.03606949746608734, 0.05057346075773239, 0.07055481523275375,
- 0.11811472475528717, 0.1294071525335312, -0.038455113768577576, 0.011333703994750977,
- -0.09367717057466507, 0.08037138730287552, 0.02122369036078453, 0.015775995329022408,
- -0.017199330031871796, -0.06733186542987823, 0.0021519965957850218, 0.04237924516201019,
- -0.03198910132050514, 0.011365976184606552, 0.030054474249482155, -0.028032176196575165,
- 0.012131099589169025, 0.07777435332536697, 0.007650683168321848, -0.03676380589604378,
- 0.01526500005275011, -0.05998057872056961, 0.032389454543590546, -0.008207318373024464,
- 0.047326963394880295, -0.14560462534427643, -0.0023167594335973263,
- -0.07941680401563644, -0.0958145260810852, 0.060097482055425644, -0.05672938749194145,
- 0.05459217727184296, 0.05775056034326553, -0.0726369321346283, 0.032835882157087326,
- 0.01951627805829048, -0.030875086784362793, 0.029340825974941254, 0.08526372164487839,
- 0.018521426245570183, 0.03768415376543999, 0.13306587934494019, -0.033488623797893524,
- -0.050643324851989746, -0.10015977919101715, 0.0599655956029892, 0.13517901301383972,
- -0.03584279119968414, -0.0011976180830970407, 0.009013164788484573, 0.04440276324748993,
- 0.0013293467927724123, -0.03903580084443092, -0.0832672193646431, -0.03862328082323074,
- -0.0595037043094635, 0.07355223596096039, 0.012639001943171024, -0.030107621103525162,
- -0.15520702302455902, -0.0007760379812680185, -0.04872005060315132,
- 0.017768917605280876, 0.14845377206802368, -0.10551492124795914, 0.026048753410577774,
- 0.01247510127723217, -0.03154226019978523, 0.012045885436236858, -0.05724312365055084,
- -0.019158773124217987, -0.0467546321451664, -0.013072140514850616, 0.07649312168359756,
- 0.04175516590476036, -0.07272475957870483, 0.09973379969596863, -0.09533042460680008,
- 0.0472719669342041, 0.010447083972394466, -0.019983040168881416, 0.02111637219786644,
- -0.02622142620384693, 0.021577410399913788, -0.0012666339753195643,
- -0.03832751139998436, 0.04816882684826851, -0.03610024228692055, -0.026417091488838196,
- -0.10099589079618454, -0.050890594720840454, -0.018197139725089073, -0.0720028504729271,
- 0.05782582610845566, -0.11697031557559967, -0.005303435493260622, -0.05213921517133713,
- -0.029493257403373718, 0.00712543772533536, 0.0232077743858099, -0.024551279842853546,
- -0.1097167506814003, -0.02316976711153984, -0.016513057053089142, 0.03968607634305954,
- 0.03870975226163864, -0.004362738691270351, -0.010097329504787922, 0.10601391643285751,
- 0.07582659274339676, -0.027615495026111603, 0.0008003615075722337,
- -0.051471758633852005, 0.04698034003376961, -0.09274627268314362, -0.5010314583778381,
- 0.06600485742092133, 0.04780726507306099, 0.019474757835268974, 0.014352167956531048,
- -0.05969149246811867, 0.030650541186332703, -0.025570878759026527, -0.03386989235877991,
- 0.08773928880691528, -0.04594118520617485, 0.031305473297834396, -0.0020679219160228968,
- -0.05490720272064209, -0.025433208793401718, -0.06238756701350212, -0.038927111774683,
- 0.09567257016897202, 0.0036168356891721487, -0.07285940647125244, -0.1109108254313469,
- 0.06539582461118698, -0.028648652136325836, 0.026489751413464546, 0.020662475377321243,
- 0.02634599059820175, -0.05845728516578674, -0.07914631813764572, 0.04012314975261688,
- 0.03736028075218201, 0.03491595759987831, -0.06988274306058884, -0.015242692083120346,
- 0.024396291002631187, -0.03155728802084923, 0.10694669932126999, -0.007546642795205116,
- -0.017653057351708412, -0.06162318214774132, 0.09988072514533997, 0.022574298083782196,
- 0.18442417681217194, -0.015282627195119858, 0.06070508062839508, 0.0361752063035965,
- 0.17046518623828888, 0.04092557355761528, -0.0050538633950054646, -0.01963181421160698,
- 0.03877844288945198, 0.02245943807065487, -0.013918731361627579, 0.048964355140924454,
- -0.08639546483755112, -0.01347785722464323, -0.03437473624944687, 0.01416286826133728,
- 0.0015270469011738896, 0.0012655833270400763, 0.20278337597846985, 0.005431981757283211,
- 0.0562051460146904, -0.00215831003151834, -0.0154952397570014, -0.047500159591436386,
- -0.05058890953660011, -0.08089891821146011, -0.034957367926836014,
- -0.023692356422543526, -0.015818806365132332, -0.020249323919415474,
- -0.09292550384998322, -0.03313207998871803, 0.050012797117233276, 0.016750779002904892,
- 0.06310576945543289, 0.004879179876297712, 0.04829765856266022, -0.027365216985344887,
- 0.12537775933742523, 0.057401757687330246, 0.015095366165041924, 0.03390329331159592,
- 0.0800880566239357, 0.07293462008237839, -0.010147130116820335, -0.03377242758870125,
- -0.10607825964689255, 0.0342387855052948, 0.12963329255580902, -0.06415402889251709,
- 0.1055225282907486, 0.04871492460370064, -0.06421130895614624, -0.07601895183324814,
- 0.024232741445302963, -0.010994307696819305, 0.03587213158607483, -0.5044726729393005,
- -0.0322001650929451, 0.12646104395389557, -0.03605198487639427, -0.009865887463092804,
- 0.07129926234483719, 0.0383075512945652, -0.0395241416990757, -0.006077209021896124,
- -0.0752999410033226, 0.12528711557388306, -0.014980172738432884, 0.07615134119987488,
- -0.08237963914871216, 0.05541233718395233, 0.08278046548366547, -0.046347592025995255,
- -0.040366243571043015, 0.045873213559389114, -0.2221885621547699, 0.03562759608030319,
- -0.0563846193253994, 0.14343908429145813, 0.019396357238292694, 0.033960144966840744,
- 0.0906481072306633, -0.06555559486150742, 0.07377153635025024, 0.06981948763132095,
- -0.03758921101689339, 0.034411899745464325, -0.009477468207478523, -0.05020711198449135,
- 0.09567393362522125, 0.09181098639965057, 0.06136251986026764, -0.02763516455888748,
- 12.079584121704102, 0.07415210455656052, 0.05968153849244118, -0.05764291435480118,
- 0.02409207634627819, -0.0755171924829483, 0.025656092911958694, -0.06108811870217323,
- 0.041603945195674896, 0.09070955216884613, 0.005961701273918152, -0.046280454844236374,
- -0.03440798819065094, -0.10779547691345215, 0.0253757331520319, -0.013507493771612644,
- -0.03296937420964241, -0.019860515370965004, 0.03599260374903679, -0.055989909917116165,
- -0.03492068499326706, 0.029292944818735123, 0.05707249045372009, 0.02789248153567314,
- -0.07418552786111832, 0.02680843323469162, 0.02142382599413395, -0.010679822415113449,
- -0.008950328454375267, 0.03795326501131058, -0.03296227753162384, 0.03436097875237465,
- 0.03861323371529579, 0.017611190676689148, 0.025688698515295982, -0.033306047320365906,
- 0.04741831123828888, 0.05178762972354889, 0.0156905148178339, 0.09715785086154938,
- -0.012727522291243076, 0.00931699201464653, 0.01565634272992611, 0.028415920212864876,
- 0.06612289696931839, 0.04461238160729408, 0.03951527550816536, 0.10592150688171387,
- 0.041538238525390625, 0.08261637389659882, 0.09609661996364594, -0.0328950472176075,
- 0.14492656290531158, 0.0039855013601481915, 0.019771937280893326, 0.04713090881705284,
- -0.01338258758187294, -0.05880638584494591, 0.08421963453292847, 0.09405443072319031,
- -0.05815516412258148, 0.07368635386228561, 0.010472942143678665, 0.10099435597658157,
- -0.0532674714922905, 0.13542287051677704, 0.14001497626304626, 0.08439178764820099,
- -0.11339060217142105, -0.07009235769510269, -0.012683234177529812, -0.09037265926599503,
- -0.07447951287031174, 0.03310459107160568, 0.110174261033535, -0.02977862022817135,
- 0.042387399822473526, -0.014384658075869083, 0.02078855223953724, -0.07782503962516785,
- -0.023009397089481354, 0.017546091228723526, -0.03251411393284798, 0.020908212289214134,
- 0.08179657906293869, 0.045906562358140945, 0.03491926193237305, 0.10351210832595825,
- 0.013569675385951996, -0.07214891910552979, -0.10150057077407837, 0.08502286672592163,
- -0.017103299498558044, -0.036223724484443665, 0.03347431495785713,
- -0.034336477518081665, 0.06838608533143997, -0.17699910700321198, 0.05768665671348572,
- 0.0699632465839386, -0.13104991614818573, 0.00010358500003349036, 0.0026615301612764597,
- 0.051115527749061584, -0.017224017530679703, 0.06973466277122498, -0.04772479459643364,
- 0.049095068126916885, 0.0015802094712853432, 0.04345889389514923, -0.04344789311289787,
- 0.07299640774726868, 0.07593594491481781, -0.08710655570030212, 0.06515680253505707,
- 0.0430416539311409, -0.010288278572261333, -0.022753562778234482, 0.08042890578508377,
- 0.002042314037680626, -0.09041549265384674, -0.040568068623542786, -0.03181023523211479,
- -0.05036051198840141, -0.04583993926644325, -0.059507329016923904, 0.026044605299830437,
- 0.051580216735601425, -0.07778163999319077, -0.006932475138455629, -0.01710430718958378,
- 0.039929717779159546, 0.10243169218301773, -0.051230575889348984, 0.07174269109964371,
- -0.05300524830818176, -0.06441520899534225, 0.06865403056144714, 0.07059892266988754,
- 0.009814681485295296, -0.05398033186793327, -0.013012437149882317, -0.03918597474694252,
- -0.10747875273227692, 0.002381217200309038, 0.05595207214355469, 0.0554785318672657,
- 0.06157400459051132, 0.04527570679783821, -0.08067402243614197, -0.03438982740044594,
- 0.0940793976187706, 0.07794170826673508, 0.0007100004004314542, 0.0003533258568495512,
- -0.06279247254133224, -0.03578878566622734, 0.12584669888019562, -0.060706887394189835,
- 0.000989413820207119, -0.0015771746402606368, 0.0389188788831234, 0.06483932584524155,
- 0.04324252903461456, 0.07003995031118393, 0.008727584034204483, 0.02272726036608219,
- 0.015723420307040215, -0.019678058102726936, -0.007804188411682844, 0.02836904674768448,
- -0.029705634340643883, -0.10339406877756119, -0.06607445329427719, 0.050294551998376846,
- 0.116370290517807, 0.020186642184853554, -0.06950348615646362, -0.03368394449353218,
- -0.02551659196615219
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 27,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 24,
- "similarity": 0.9985427260398865
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 30,
- "similarity": 0.9985296130180359
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 52,
- "similarity": 0.9985203742980957
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Nick Pearson", "Debra Killalea"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 371,
- "source_domain": "9news.com.au",
- "submitters": ["Roman Yampolskiy"],
- "title": "A global nuclear weapons disaster averted by Stanislav Petrov in 1983",
- "url": "https://www.9news.com.au/2018/09/26/11/44/stanislav-petrov-1983-false-alarm-that-nearly-destroyed-the-world"
- },
- {
- "__typename": "Report",
- "authors": ["Colin Freeman", "Simon Heffer"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 370,
- "source_domain": "telegraph.co.uk",
- "submitters": ["Roman Yampolskiy"],
- "title": "Stanislav Petrov: the true story of the grumpy Russian who singlehandedly stopped armageddon",
- "url": "https://www.telegraph.co.uk/films/0/stanislav-petrov-true-story-grumpy-russian-singlehandedly-stopped/"
- },
- {
- "__typename": "Report",
- "authors": ["Tijana Radeska"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 368,
- "source_domain": "thevintagenews.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Because Stanislav Petrov reported a computer malfunction in 1983, we know him today as \"The man who saved the world\"",
- "url": "https://www.thevintagenews.com/2018/01/30/stanislav-petrov/"
- },
- {
- "__typename": "Report",
- "authors": ["Sewell Chan"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 367,
- "source_domain": "nytimes.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Stanislav Petrov, Soviet Officer Who Helped Avert Nuclear War, Is Dead at 77",
- "url": "https://www.nytimes.com/2017/09/18/world/europe/stanislav-petrov-nuclear-war-dead.html"
- },
- {
- "__typename": "Report",
- "authors": ["Sara Malm", "Chris Pleasance"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 366,
- "source_domain": "dailymail.co.uk",
- "submitters": ["Roman Yampolskiy"],
- "title": "Man who 'saved the world' Stanislav Petrov awarded for spotting US nuke attack was a false alarm",
- "url": "https://www.dailymail.co.uk/news/article-6217643/Man-saved-world-Stanislav-Petrov-awarded-spotting-nuke-attack-false-alarm.html"
- },
- {
- "__typename": "Report",
- "authors": ["Jay Akbar"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 365,
- "source_domain": "thesun.co.uk",
- "submitters": ["Roman Yampolskiy"],
- "title": "Man who 'saved the world' Stanislav Petrov FINALLY given award 35 years after he recognised US nuke attack was a false alarm",
- "url": "https://www.thesun.co.uk/news/7366945/man-who-saved-the-world-stanislav-petrov-finally-given-award-35-years-after-he-recognised-us-nuke-attack-was-a-false-alarm/"
- },
- {
- "__typename": "Report",
- "authors": [
- "Nikolas K. Gvosdev",
- "Stephen Kinzer",
- "Tony Barber",
- "Simon Saradzhyan",
- "Nini Arshakuni",
- "Daniel Shapiro"
- ],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 364,
- "source_domain": "russiamatters.org",
- "submitters": ["Roman Yampolskiy"],
- "title": "Nuclear Near Miss: Remembering the ‘Man Who Saved the World’",
- "url": "https://www.russiamatters.org/blog/nuclear-near-miss-remembering-man-who-saved-world"
- },
- {
- "__typename": "Report",
- "authors": ["Maria Michela D'Alessandro", "Mark Galeotti"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 363,
- "source_domain": "themoscowtimes.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "The Man Who Saved the World",
- "url": "https://themoscowtimes.com/articles/the-man-who-saved-the-world-60585"
- },
- {
- "__typename": "Report",
- "authors": ["Joan Westenberg"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 361,
- "source_domain": "medium.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Meet the man who single-handedly stopped a nuclear war",
- "url": "https://medium.com/the-mission/meet-the-man-who-single-handedly-stopped-a-nuclear-war-5986ff010b60"
- },
- {
- "__typename": "Report",
- "authors": ["John Bacon"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 360,
- "source_domain": "usatoday.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Stanislav Petrov, Soviet credited with averting nuclear war, dies at 77",
- "url": "https://www.usatoday.com/story/news/world/2017/09/18/soviet-soldier-credited-saving-world-nuclear-war-dies-77/676233001/"
- },
- {
- "__typename": "Report",
- "authors": ["The Economist"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 359,
- "source_domain": "economist.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Obituary: Stanislav Petrov was declared to have died on September 18th",
- "url": "https://www.economist.com/obituary/2017/09/30/obituary-stanislav-petrov-was-declared-to-have-died-on-september-18th"
- },
- {
- "__typename": "Report",
- "authors": ["Jack Parkos"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 358,
- "source_domain": "71republic.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Stanislav Petrov: The Forgotten Man who Saved the World From Nuclear War",
- "url": "https://71republic.com/2019/01/05/stanislav-petrov-forgotten-man/"
- },
- {
- "__typename": "Report",
- "authors": ["Jacob Weindling"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 357,
- "source_domain": "pastemagazine.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Happy 35th Anniversary to the Closest the World Has Come to Total Nuclear Annihilation!",
- "url": "https://www.pastemagazine.com/articles/2018/09/happy-35-year-anniversary-to-the-closest-the-world.html"
- },
- {
- "__typename": "Report",
- "authors": ["Iain Thomson"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 356,
- "source_domain": "theregister.co.uk",
- "submitters": ["Roman Yampolskiy"],
- "title": "RIP Stanislav Petrov: Russian colonel who saved world from all-out nuclear war",
- "url": "https://www.theregister.co.uk/2017/09/18/stanislav_petrov_obit/"
- },
- {
- "__typename": "Report",
- "authors": ["Kiona N. Smith"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 355,
- "source_domain": "forbes.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "The Computer That Almost Started A Nuclear War, And The Man Who Stopped It",
- "url": "https://www.forbes.com/sites/kionasmith/2018/09/25/the-computer-that-almost-started-a-nuclear-war-and-the-man-who-stopped-it/#41cccb292835"
- },
- {
- "__typename": "Report",
- "authors": ["BBC"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 354,
- "source_domain": "bbc.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Stanislav Petrov, who averted possible nuclear war, dies at 77",
- "url": "https://www.bbc.com/news/world-europe-41314948"
- },
- {
- "__typename": "Report",
- "authors": ["Associated Press"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 353,
- "source_domain": "latimes.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Stanislav Petrov, 'the man who saved the world' from nuclear war, dies at 77",
- "url": "https://www.latimes.com/local/obituaries/la-me-stanislavsky-petrov-20170921-story.html"
- },
- {
- "__typename": "Report",
- "authors": ["Pavel Aksenov"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 352,
- "source_domain": "bbc.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Stanislav Petrov: The man who may have saved the world",
- "url": "https://www.bbc.com/news/world-europe-24280831"
- },
- {
- "__typename": "Report",
- "authors": ["Marc Bennetts"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 351,
- "source_domain": "theguardian.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Soviet officer who averted cold war nuclear disaster dies aged 77",
- "url": "https://www.theguardian.com/world/2017/sep/18/soviet-officer-who-averted-cold-war-nuclear-disaster-dies-aged-77"
- },
- {
- "__typename": "Report",
- "authors": ["Alex Lockie"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 350,
- "source_domain": "businessinsider.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Stanislav Petrov, the Soviet officer 'saved' the world from nuclear war",
- "url": "https://www.businessinsider.com/stanislav-petrov-the-soviet-officer-saved-the-world-from-nuclear-war-2018-9"
- },
- {
- "__typename": "Report",
- "authors": ["Dylan Matthews"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 349,
- "source_domain": "vox.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "35 years ago today, one man saved us from world-ending nuclear war",
- "url": "https://www.vox.com/2018/9/26/17905796/nuclear-war-1983-stanislav-petrov-soviet-union"
- },
- {
- "__typename": "Report",
- "authors": ["Greg Myre"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 347,
- "source_domain": "npr.org",
- "submitters": ["Roman Yampolskiy"],
- "title": "Stanislav Petrov, 'The Man Who Saved The World,' Dies At 77",
- "url": "https://www.npr.org/sections/thetwo-way/2017/09/18/551792129/stanislav-petrov-the-man-who-saved-the-world-dies-at-77"
- },
- {
- "__typename": "Report",
- "authors": ["Graham Hillard"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 346,
- "source_domain": "nationalreview.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Stanislav Petrov Saved the World from Destruction: Can We Too Resist?",
- "url": "https://www.nationalreview.com/2018/10/remembering-stanislav-petrov/"
- },
- {
- "__typename": "Report",
- "authors": ["Atlanta Journal-Constitution"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": true,
- "report_number": 345,
- "source_domain": "ajc.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Who is Stanislav Petrov, the man who literally saved the world from nuclear...",
- "url": "https://www.ajc.com/news/local/who-stanislav-petrov-the-man-who-literally-saved-the-world-from-nuclear-war/KvWRsAZaAlV97h9OORGh2N/"
- },
- {
- "__typename": "Report",
- "authors": ["Simon Shuster"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 344,
- "source_domain": "time.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Interview: Stanislav Petrov, Russian Who Averted Nuclear War",
- "url": "http://time.com/4947879/stanislav-petrov-russia-nuclear-war-obituary/"
- },
- {
- "__typename": "Report",
- "authors": ["Laura Stevens"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 343,
- "source_domain": "home.bt.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Three times a computer glitch has created a false nuclear alarm",
- "url": "http://home.bt.com/tech-gadgets/nuclear-soviet-america-cold-war-false-nuclear-alarms-11364243342199"
- },
- {
- "__typename": "Report",
- "authors": ["Wikipedia Editors"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1661126400,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 342,
- "source_domain": "en.wikipedia.org",
- "submitters": ["Roman Yampolskiy"],
- "title": "1983 Soviet nuclear false alarm incident",
- "url": "https://en.wikipedia.org/wiki/1983_Soviet_nuclear_false_alarm_incident"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "waddell-and-reed",
- "name": "Waddell \u0026 Reed"
- },
- {
- "__typename": "Entity",
- "entity_id": "navinder-sarao",
- "name": "Navinder Sarao"
- },
- {
- "__typename": "Entity",
- "entity_id": "barclays-capital",
- "name": "Barclays Capital"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "waddell-and-reed",
- "name": "Waddell \u0026 Reed"
- },
- {
- "__typename": "Entity",
- "entity_id": "navinder-sarao",
- "name": "Navinder Sarao"
- },
- {
- "__typename": "Entity",
- "entity_id": "barclays-capital",
- "name": "Barclays Capital"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "market-participants",
- "name": "Market Participants"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [
- 419, 418, 417, 416, 415, 414, 413, 412, 411, 410, 409, 408, 407, 406, 405, 404, 403,
- 402, 401, 400, 399, 398, 397, 396, 395, 394, 393, 392, 391, 390
- ],
- "vector": [
- -0.04186917468905449, 0.09565678983926773, 0.015450851991772652, -0.05114547908306122,
- 0.10264825075864792, -0.0710822120308876, -0.003496959339827299, 0.04881735146045685,
- 0.06777264922857285, -0.12032078951597214, -0.012242273427546024, 0.05597032979130745,
- 0.0190630741417408, -0.05683464929461479, 0.0076247313991189, -0.07599484920501709,
- -0.09748140722513199, -0.026642952114343643, -0.010556762106716633,
- -0.09665746986865997, -0.07216393947601318, 0.017748108133673668, 0.03873228654265404,
- 0.10377894341945648, -0.028681444004178047, 0.01285473071038723, 0.09481214731931686,
- 0.10766773670911789, -0.05399103835225105, 0.04408761113882065, -0.008456257171928883,
- -0.04903024807572365, 0.09712613373994827, 0.02863791212439537, 0.0019764595199376345,
- 0.10659391433000565, 0.02918226644396782, -0.028975103050470352, -0.05199296772480011,
- 0.0035174249205738306, 0.023978019133210182, 0.24269822239875793,
- -0.0010743236634880304, -0.022865116596221924, 0.05489552393555641,
- -0.022501641884446144, 0.022552434355020523, 0.07206737995147705, 0.006951884366571903,
- 0.004724693018943071, -0.04194461181759834, 0.06141681969165802, -0.0697421133518219,
- 0.012543965131044388, -0.10096438229084015, 0.02200368046760559, 0.04437907412648201,
- 0.0023350899573415518, 0.07978072017431259, -0.03924274072051048, -0.017485564574599266,
- -0.24054230749607086, -0.014003275893628597, -0.032830458134412766, 0.08251793682575226,
- -0.09407637268304825, -0.0590108260512352, 0.0005567225161939859, 0.03835674002766609,
- 0.029377883300185204, 0.08086374402046204, -0.022257927805185318, -0.007054753135889769,
- 0.039330992847681046, 0.0324711874127388, 0.021652793511748314, -0.015155988745391369,
- 0.2376144379377365, -0.06558286398649216, 0.002348831156268716, 0.11879004538059235,
- -0.05242295563220978, 0.3973243832588196, 0.03959114849567413, -0.01846480555832386,
- -0.07085440307855606, 0.10520350933074951, 0.03300933539867401, 0.021972954273223877,
- 0.024061821401119232, 0.00048566932673566043, 0.060366224497556686,
- -0.006922219414263964, 0.01974419131875038, 0.05185406282544136, 0.027013350278139114,
- 0.019849658012390137, 0.061936911195516586, -0.02348059043288231, -0.04916799068450928,
- -0.002239770023152232, -0.0637180358171463, 0.07384790480136871, 0.036019451916217804,
- -0.04856409877538681, -0.01149700302630663, 0.07571969926357269, -0.051118288189172745,
- 0.08103007823228836, -0.03485339507460594, 0.015640657395124435, 0.007958341389894485,
- 0.06804922223091125, -0.01651180349290371, 0.01700478419661522, -0.008938156999647617,
- 0.03606262430548668, 0.03382688760757446, 0.08236668258905411, 0.017945803701877594,
- -0.042990826070308685, 0.039702530950307846, 0.05553195998072624, -0.058593716472387314,
- -0.0056875040754675865, -0.03298085182905197, -0.07850509136915207,
- -0.05719698593020439, -0.029633741825819016, 0.020689673721790314,
- -0.051701921969652176, -0.15695281326770782, 0.016022467985749245, 0.08106832206249237,
- -0.00448844488710165, -0.01921747252345085, 0.01779862865805626, -0.02941175550222397,
- 0.010678945109248161, -0.040068335831165314, -0.015069431625306606, 0.06498581171035767,
- 0.045844387263059616, 0.018763236701488495, 0.13131634891033173, 0.03434242680668831,
- -0.037181105464696884, -0.026831811293959618, -0.003668376011773944,
- -0.022526584565639496, 0.09765512496232986, -0.1188981831073761, -0.01621096581220627,
- 0.01486993208527565, 0.010677238926291466, 0.6221314072608948, 0.07622655481100082,
- 0.13607993721961975, 0.010421196930110455, -0.021062804386019707, 0.15408864617347717,
- 0.01994715817272663, 0.04175615310668945, -0.029708541929721832, -0.05037067458033562,
- 0.04702688381075859, -0.05740053579211235, -0.02975844405591488, 0.04014984890818596,
- 0.023310508579015732, 0.10307825356721878, 0.038375504314899445, 0.0756131038069725,
- 0.01917949877679348, -0.054740410298109055, -0.028804009780287743, 0.019333992153406143,
- 0.0010355559643357992, -0.10775437951087952, -0.02291741780936718, 0.03994880989193916,
- 0.07968290895223618, -0.05662977322936058, 0.016654526814818382, -0.024230021983385086,
- 0.002331663155928254, -0.024021897464990616, 0.059446070343256, -0.063215471804142,
- 0.026941446587443352, 0.011655359528958797, 0.018720149993896484, 0.007887119427323341,
- -0.0962124690413475, -0.06069549545645714, 0.11146053671836853, -0.022322949022054672,
- -0.0021492636296898127, 0.0798630490899086, -0.10789284110069275, 0.014671778306365013,
- 0.005260839127004147, 0.12396730482578278, -0.10493400692939758, -0.004434241447597742,
- -0.005706211552023888, -0.017476389184594154, 0.045318376272916794,
- 0.008115109987556934, -0.07790831476449966, -0.03602723032236099, 0.05196765810251236,
- 0.068297378718853, 0.05470691993832588, 0.01754341460764408, -0.055802520364522934,
- 0.06555713713169098, 0.060329847037792206, 0.003062233328819275, -0.0345698818564415,
- 0.057923153042793274, 0.03417143598198891, -0.022111045196652412, 0.010397028177976608,
- -0.020073959603905678, -0.010886927135288715, 0.03358357027173042,
- 0.0056426674127578735, 0.015953583642840385, -0.02397298999130726, -0.04910912364721298,
- 0.06727845966815948, 0.01835986226797104, 0.01173162180930376, 0.10157538205385208,
- -0.10903436690568924, -0.05855239927768707, -0.056533295661211014, -0.01468347292393446,
- 0.026290597394108772, -0.04837111756205559, 0.06123233214020729, 0.05001843348145485,
- 0.09068585187196732, 0.029411623254418373, 0.0338861308991909, 0.033205196261405945,
- 0.022381173446774483, 0.035748016089200974, 0.03890429064631462, -0.02727913111448288,
- -0.05944136157631874, -0.025516508147120476, -0.00961895752698183, 0.05865352228283882,
- 0.018209341913461685, -0.08522699773311615, -0.014706316404044628,
- -0.048832062631845474, -0.0475134514272213, -0.06493974477052689, -0.036482490599155426,
- 0.0371791273355484, 0.08568184077739716, -0.0357983335852623, -0.05462193116545677,
- -0.07011797279119492, 0.0029622195288538933, 0.0489095114171505, -0.02214721404016018,
- -0.025548305362462997, -0.11475715041160583, 0.01143227331340313, 0.01833186484873295,
- 0.04643286392092705, 0.0013517489423975348, -0.02545478194952011, 0.010791451670229435,
- -0.051989782601594925, 0.00999681930989027, 0.008285103365778923, -0.001427201903425157,
- -0.08798349648714066, -0.07002518326044083, -0.05437576398253441, -0.021556483581662178,
- -0.0040145982056856155, -0.01210963074117899, 0.0356108732521534, 0.05916015803813934,
- 0.02162223495543003, 0.0350455604493618, -0.04386569932103157, 0.0487399660050869,
- -0.012823062017560005, -0.01770668849349022, 0.07780495285987854, -0.01948416233062744,
- 0.028257599100470543, 0.003554600989446044, -0.058235399425029755, -0.03457185998558998,
- -0.006308434065431356, -0.019329408183693886, 0.04810570925474167, -0.03342379629611969,
- -0.008216554298996925, -0.0371713861823082, 0.023478038609027863, -0.008401813916862011,
- -0.0559859499335289, -0.06969456374645233, -0.06734061241149902, 0.13163825869560242,
- -0.0009915620321407914, 0.031903523951768875, -0.006524237804114819,
- -0.041355907917022705, 0.03959270194172859, -0.0037190760485827923,
- -0.006489031482487917, 0.04291744530200958, 0.08443283289670944, -0.0012769890017807484,
- -0.0249167587608099, 0.08595306426286697, -0.04175468906760216, 0.023611251264810562,
- 0.07202187925577164, 0.4544704556465149, -0.1699102520942688, 0.07607053965330124,
- 0.08288877457380295, -0.02013791725039482, 0.06311411410570145, -0.054246287792921066,
- 0.043501801788806915, 0.09552357345819473, 0.10995862632989883, 0.09707411378622055,
- -0.005153748672455549, 0.006058627273887396, -0.0789940282702446, 0.07995530962944031,
- 0.0046658869832754135, -0.017131349071860313, -0.01861598528921604, -0.066229447722435,
- -0.021757666021585464, 0.04259136691689491, 0.0039108674973249435, -0.02735915407538414,
- 0.0034080592449754477, -0.04839937761425972, -0.0005799523205496371,
- 0.04570538178086281, 0.011045074090361595, -0.02540249563753605, 0.04090087115764618,
- -0.009749443270266056, 0.032664310187101364, 0.017671937122941017, 0.02759810909628868,
- -0.15311966836452484, 0.03947751224040985, -0.04297536239027977, -0.0713164433836937,
- 0.06798959523439407, -0.035189274698495865, 0.026626916602253914, 0.03943030908703804,
- -0.047677066177129745, 0.007773206103593111, 0.0005284891813062131,
- -0.07173041254281998, 0.009447962045669556, 0.07184755057096481, 0.03553036227822304,
- 0.03533530980348587, 0.16892144083976746, -0.025139490142464638, -0.05193336680531502,
- -0.07164071500301361, 0.05823561176657677, 0.1365460902452469, -0.04377547651529312,
- -0.008919545449316502, -0.05767615884542465, 0.007957866415381432, 0.008883104659616947,
- -0.07094264030456543, -0.08003567904233932, -0.007622415199875832, -0.04590248316526413,
- 0.08477102220058441, 0.0015424417797476053, -0.021008016541600227, -0.15095645189285278,
- 0.009448768571019173, -0.03943754732608795, 0.06074144318699837, 0.09924837946891785,
- -0.06764473766088486, 0.030779564753174782, 0.014063850976526737, -0.02486932836472988,
- 0.04441889375448227, -0.06480873376131058, 0.008471796289086342, -0.07978557050228119,
- 0.043944694101810455, 0.03459496796131134, 0.06083420291543007, -0.0732586681842804,
- 0.06082423776388168, -0.11298933625221252, 0.05467412620782852, -0.0034151391591876745,
- -0.02056884765625, 0.07001613825559616, -0.02976240962743759, 0.03671183064579964,
- 0.034457992762327194, -0.00932239182293415, -0.008115416392683983, 0.010760386474430561,
- -0.03083856776356697, -0.09593641012907028, -0.02935509756207466,
- -0.0026268998626619577, -0.08785369247198105, 0.03546420484781265, -0.07712356001138687,
- -0.0008621913148090243, 0.006489614490419626, -0.05315262824296951,
- -0.005502954591065645, 0.03628718480467796, 0.029801029711961746, -0.12116460502147675,
- -0.046930354088544846, -0.011437584646046162, 0.061192236840724945, 0.03755464777350426,
- -0.011058411560952663, 0.015304544009268284, 0.09746289998292923, 0.017616616562008858,
- 0.0017174900276586413, 0.031063014641404152, -0.014950652606785297, 0.03861192986369133,
- -0.07660234719514847, -0.46715405583381653, 0.05138624459505081, 0.0096624456346035,
- 0.01736326888203621, 0.022345148026943207, -0.055824123322963715, 0.02718910202383995,
- -0.006373853888362646, -0.0212160125374794, 0.046238649636507034, -0.05639702454209328,
- 0.014090639539062977, 0.005598193500190973, -0.03234615549445152, -0.005516229197382927,
- -0.06467828899621964, -0.0356871522963047, 0.05982961133122444, -0.018087029457092285,
- -0.04273294284939766, -0.1075323298573494, 0.037512049078941345, -0.01916450634598732,
- -0.021531827747821808, 0.03173746168613434, 0.004250544589012861, -0.0551048181951046,
- -0.0634114146232605, 0.023761490359902382, 0.04648492857813835, 0.029689103364944458,
- -0.054236724972724915, -0.012198912911117077, 0.023276114836335182,
- 0.004758460447192192, 0.097342848777771, 0.000002787246785374009, -0.028431454673409462,
- -0.05703382566571236, 0.08814035356044769, 0.026215028017759323, 0.18764299154281616,
- -0.007094184868037701, 0.03972707688808441, 0.05247820168733597, 0.1514900028705597,
- 0.0029522068798542023, 0.014750356785953045, -0.04553242027759552, 0.04092056304216385,
- 0.018098412081599236, -0.022291719913482666, 0.05177890509366989, -0.07054555416107178,
- -0.04038984701037407, -0.014196379110217094, -0.004472143482416868,
- -0.046252090483903885, -0.018533434718847275, 0.20601214468479156, 0.002436984796077013,
- 0.03590613976120949, 0.021923385560512543, -0.04291931539773941, 0.0006934275734238327,
- -0.06870900094509125, -0.10012675076723099, -0.019879572093486786, 0.003442661603912711,
- -0.01736815832555294, -0.022327205166220665, -0.09548120945692062, -0.0132511667907238,
- -0.02336026355624199, -0.006340513471513987, 0.10807685554027557, -0.017480213195085526,
- 0.020709527656435966, -0.08438428491353989, 0.12424294650554657, 0.030547630041837692,
- -0.012935196049511433, 0.017043206840753555, 0.07031897455453873, 0.02993054874241352,
- 0.0286642424762249, -0.03414518013596535, -0.062040891498327255, 0.03542845696210861,
- 0.13961189985275269, -0.04860670119524002, 0.1109914630651474, 0.06819625198841095,
- -0.01567855104804039, -0.06275288015604019, -0.008382837288081646, 0.02940775640308857,
- 0.013622411526739597, -0.48404139280319214, -0.03362537547945976, 0.07902757823467255,
- -0.043917883187532425, 0.012356397695839405, 0.07680893689393997, 0.02691464312374592,
- -0.04227118939161301, -0.03222033753991127, -0.06191028654575348, 0.12181175500154495,
- 0.04487849026918411, 0.07581067085266113, -0.1305411010980606, 0.02957244962453842,
- 0.04833482950925827, -0.038001980632543564, -0.01864728331565857, 0.04281868413090706,
- -0.2022530734539032, 0.0031786595936864614, -0.048564132302999496, 0.15446625649929047,
- 0.02831403724849224, 0.022814366966485977, 0.09521940350532532, -0.0533076710999012,
- 0.030771782621741295, 0.039901986718177795, 0.01953989453613758, 0.0461231991648674,
- -0.02276613377034664, -0.017072292044758797, 0.08858226984739304, 0.04568762332201004,
- 0.09549235552549362, -0.02644832618534565, 11.887970924377441, 0.0830894336104393,
- 0.04791931062936783, -0.06903188675642014, 0.03436233103275299, -0.0701884776353836,
- 0.027961380779743195, -0.0762411579489708, 0.050090014934539795, 0.09225611388683319,
- 0.014607529155910015, -0.07577232271432877, -0.04882413148880005, -0.08628556877374649,
- 0.008369670249521732, -0.027604009956121445, -0.06601843237876892, -0.02302839234471321,
- 0.04767078906297684, -0.040309883654117584, -0.03409268334507942, 0.0190662182867527,
- 0.06951597332954407, 0.02687039040029049, -0.07241214066743851, 0.013126327656209469,
- 0.04612148553133011, 0.009568381123244762, 0.028374772518873215, 0.052324675023555756,
- 0.010053310543298721, 0.009936929680407047, 0.04999525845050812, -0.0014817703049629927,
- 0.04012627527117729, 0.010307553224265575, 0.05871306732296944, 0.03155199810862541,
- 0.025982551276683807, 0.09046065807342529, 0.04242045059800148, -0.019538013264536858,
- 0.025508703663945198, 0.016139471903443336, 0.04404003545641899, 0.03202947601675987,
- 0.0032085587736219168, 0.09180208295583725, 0.0042537967674434185, 0.08391039073467255,
- 0.10266159474849701, -0.026901662349700928, 0.11234407871961594, 0.06979834288358688,
- 0.052155546844005585, 0.050138138234615326, 0.022277919575572014, -0.07987651973962784,
- 0.0685463473200798, 0.00895723793655634, -0.07022885978221893, 0.08051054179668427,
- 0.016717739403247833, 0.09543251991271973, -0.05538385361433029, 0.11471222341060638,
- 0.06440101563930511, 0.06902437657117844, -0.0529339425265789, -0.046854548156261444,
- 0.02849302813410759, -0.09130336344242096, -0.06730956584215164, 0.08772627264261246,
- 0.11436101049184799, -0.06982281804084778, 0.06421549618244171, -0.0355621837079525,
- 0.02355138398706913, -0.06649802625179291, -0.016112539917230606, 0.06330538541078568,
- -0.03920101746916771, 0.02468302473425865, 0.07011207193136215, 0.030270330607891083,
- 0.05745023861527443, 0.06923380494117737, 0.026123913004994392, -0.06673327833414078,
- -0.0681048259139061, 0.074703648686409, -0.0050359731540083885, -0.029458042234182358,
- 0.01102943904697895, -0.03890687972307205, 0.050563324242830276, -0.12256019562482834,
- 0.07985684275627136, 0.111569844186306, -0.10529717803001404, -0.005213006865233183,
- -0.034072935581207275, 0.07929135859012604, -0.01362037193030119, 0.03069896809756756,
- -0.06860486418008804, 0.009011531248688698, 0.008096352219581604, 0.0407903790473938,
- -0.0393742173910141, 0.06958780437707901, 0.07546105980873108, -0.031577449291944504,
- 0.05132203921675682, 0.03877388313412666, -0.01583951525390148, -0.03655075654387474,
- 0.024995306506752968, 0.052312809973955154, -0.03675209730863571, -0.021828318014740944,
- 0.005949594546109438, -0.03948814794421196, -0.04369978979229927, -0.04420243948698044,
- 0.006473398767411709, 0.040212757885456085, -0.05970514565706253, -0.009008984081447124,
- 0.0406021922826767, 0.04547024145722389, 0.07247801125049591, -0.020743491128087044,
- 0.031300369650125504, -0.03867030888795853, -0.039137423038482666, 0.0736335813999176,
- 0.041812531650066376, 0.050466835498809814, -0.060763780027627945, -0.03184507042169571,
- -0.04044874384999275, -0.11739739030599594, 0.008233611471951008, 0.09379665553569794,
- 0.03172242268919945, 0.007677428890019655, 0.02204674668610096, -0.02374597080051899,
- -0.06898639351129532, 0.06218557804822922, 0.057210586965084076, -0.023576470091938972,
- 0.0025501505006104708, -0.06472406536340714, -0.01921318843960762, 0.11737272888422012,
- -0.0469786562025547, 0.002055992605164647, 0.000890818249899894, -0.002359517617151141,
- 0.06633767485618591, 0.0480053685605526, -0.007788094226270914, 0.02826615422964096,
- 0.04208199679851532, -0.0027694283053278923, -0.028048306703567505,
- -0.005880042910575867, 0.03052716702222824, -0.02428596094250679, -0.11374363303184509,
- -0.05142510309815407, 0.014222398400306702, 0.10768606513738632, 0.028622310608625412,
- -0.1557781994342804, -0.06195833534002304, -0.017250914126634598
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 28,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 30,
- "similarity": 0.9986307621002197
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 68,
- "similarity": 0.9985275864601135
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 45,
- "similarity": 0.9984516501426697
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Douwe Miedema"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 419,
- "source_domain": "reuters.com",
- "submitters": ["Anonymous"],
- "title": "UK speed trader arrested over role in 2010 'flash crash'",
- "url": "https://www.reuters.com/article/us-usa-security-fraud/uk-speed-trader-arrested-over-role-in-2010-flash-crash-idUSKBN0NC21220150422?feedType=RSS\u0026feedName=topNews"
- },
- {
- "__typename": "Report",
- "authors": ["Antoine Gara"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 418,
- "source_domain": "forbes.com",
- "submitters": ["Anonymous"],
- "title": "British Trader Navinder Sarao Arrested Over 2010 Flash Crash",
- "url": "https://www.forbes.com/sites/antoinegara/2015/04/21/british-trader-navinder-sarao-arrested-over-2010-flash-crash/#395c4b752e35"
- },
- {
- "__typename": "Report",
- "authors": ["Cnbc.Com Staff"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 417,
- "source_domain": "cnbc.com",
- "submitters": ["Anonymous"],
- "title": "The lasting impact of the 2010 flash crash",
- "url": "https://www.cnbc.com/2014/05/06/the-lasting-impact-of-the-2010-flash-crash.html"
- },
- {
- "__typename": "Report",
- "authors": ["Andrew Trotman"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 416,
- "source_domain": "telegraph.co.uk",
- "submitters": ["Anonymous"],
- "title": "What happened during the Flash Crash?",
- "url": "https://www.telegraph.co.uk/finance/financial-crime/11553696/What-happened-during-the-Flash-Crash.html"
- },
- {
- "__typename": "Report",
- "authors": ["Corporate Finance Institute"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 415,
- "source_domain": "corporatefinanceinstitute.com",
- "submitters": ["Anonymous"],
- "title": "2010 Flash Crash",
- "url": "https://corporatefinanceinstitute.com/resources/knowledge/trading-investing/2010-flash-crash/"
- },
- {
- "__typename": "Report",
- "authors": ["John Carney"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 414,
- "source_domain": "cnbc.com",
- "submitters": ["Anonymous"],
- "title": "What Really Caused the Flash Crash",
- "url": "https://www.cnbc.com/id/42919462"
- },
- {
- "__typename": "Report",
- "authors": ["Mark Melin"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 413,
- "source_domain": "businessinsider.com",
- "submitters": ["Anonymous"],
- "title": "What actually caused 2010 \"Flash Crash\"",
- "url": "https://www.businessinsider.com/what-actually-caused-2010-flash-crash-2016-1?IR=T"
- },
- {
- "__typename": "Report",
- "authors": ["Seeking Alpha"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 412,
- "source_domain": "seekingalpha.com",
- "submitters": ["Anonymous"],
- "title": "2010 Flash Crash Arrest Motivated By Greed",
- "url": "https://seekingalpha.com/article/3103716-2010-flash-crash-arrest-motivated-by-greed"
- },
- {
- "__typename": "Report",
- "authors": ["Aol Staff", "Peter Cohan"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 411,
- "source_domain": "aol.com",
- "submitters": ["Anonymous"],
- "title": "The 2010 Flash Crash: What Caused It and How to Prevent the Next One",
- "url": "https://www.aol.com/2010/08/18/the-2010-flash-crash-what-caused-it-and-how-to-prevent-the-next/"
- },
- {
- "__typename": "Report",
- "authors": ["PTI"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 410,
- "source_domain": "thehindu.com",
- "submitters": ["Anonymous"],
- "title": "How an Indian-origin trader caused the 2010 ‘flash crash’",
- "url": "https://www.thehindu.com/news/international/indianorigin-trader-caused-the-2010-flash-crash/article7129840.ece"
- },
- {
- "__typename": "Report",
- "authors": ["JP Buntinx"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 409,
- "source_domain": "themerkle.com",
- "submitters": ["Anonymous"],
- "title": "Top 3 Financial Crashes Caused by High-frequency Trading Algorithms",
- "url": "https://themerkle.com/top-3-financial-crashes-caused-by-high-frequency-trading-algorithms/"
- },
- {
- "__typename": "Report",
- "authors": ["Andy Verity"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 408,
- "source_domain": "bbc.com",
- "submitters": ["Anonymous"],
- "title": "Navinder Sarao: The man accused of causing the US market to crash",
- "url": "https://www.bbc.com/news/business-35863848"
- },
- {
- "__typename": "Report",
- "authors": ["Rıza Demirera", "Karyl B. Leggio", "Donald Lien"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 407,
- "source_domain": "sciencedirect.com",
- "submitters": ["Anonymous"],
- "title": "Herding and flash events: Evidence from the 2010 Flash Crash",
- "url": "https://www.sciencedirect.com/science/article/abs/pii/S1544612318307475"
- },
- {
- "__typename": "Report",
- "authors": ["Jean-Philippe Serbera"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 406,
- "source_domain": "theconversation.com",
- "submitters": ["Anonymous"],
- "title": "if reforms aren't ramped up, the next one could spell global disaster",
- "url": "http://theconversation.com/flash-crashes-if-reforms-arent-ramped-up-the-next-one-could-spell-global-disaster-109362"
- },
- {
- "__typename": "Report",
- "authors": ["Pencer Platt Getty Images", "Mitchell Hartman"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 405,
- "source_domain": "marketplace.org",
- "submitters": ["Anonymous"],
- "title": "\"The flash crash\" five years later",
- "url": "https://www.marketplace.org/2015/05/06/economy/flash-crash-five-years-later"
- },
- {
- "__typename": "Report",
- "authors": ["Bloomberg"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 404,
- "source_domain": "economictimes.indiatimes.com",
- "submitters": ["Anonymous"],
- "title": "UK-Indian Navinder Singh Sarao arrested over role in 2010 'Flash Crash'",
- "url": "https://economictimes.indiatimes.com/news/international/business/uk-indian-navinder-singh-sarao-arrested-over-role-in-2010-flash-crash/articleshow/47021177.cms"
- },
- {
- "__typename": "Report",
- "authors": ["Ben Chu"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 403,
- "source_domain": "independent.co.uk",
- "submitters": ["Anonymous"],
- "title": "Wall Street 'Flash crash' explained: How 'the Hound of Hounslow' could have caused one of the scariest days in stock market history",
- "url": "https://www.independent.co.uk/news/business/news/flash-crash-explainer-how-the-hound-of-houndslow-could-have-caused-one-of-the-scariest-days-in-stock-10198805.html"
- },
- {
- "__typename": "Report",
- "authors": ["Jill Treanor", "Philip Hensher"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 402,
- "source_domain": "theguardian.com",
- "submitters": ["Anonymous"],
- "title": "The 2010 'flash crash': how it unfolded",
- "url": "https://www.theguardian.com/business/2015/apr/22/2010-flash-crash-new-york-stock-exchange-unfolded"
- },
- {
- "__typename": "Report",
- "authors": [
- "U.S. Commodity Futures Trading Commission",
- "U.S. Securities \u0026 Exchange Commission"
- ],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 401,
- "source_domain": "sec.gov",
- "submitters": ["Anonymous"],
- "title": "Findings Regarding the Market Events of May 6, 2010",
- "url": "https://www.sec.gov/news/studies/2010/marketevents-report.pdf"
- },
- {
- "__typename": "Report",
- "authors": ["Riza Demirer", "Karyl Leggio", "Donald D. Lien"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 400,
- "source_domain": "papers.ssrn.com",
- "submitters": ["Anonymous"],
- "title": "Herding and Flash Events: Evidence From the 2010 Flash Crash",
- "url": "https://papers.ssrn.com/sol3/papers.cfm?abstract_id=3263881"
- },
- {
- "__typename": "Report",
- "authors": ["GFF Brokers"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 399,
- "source_domain": "gffbrokers.com",
- "submitters": ["Anonymous"],
- "title": "The 2010 Flash Crash",
- "url": "https://www.gffbrokers.com/the-2010-flash-crash/"
- },
- {
- "__typename": "Report",
- "authors": ["Roger Kenny", "Bradley Hope", "Tynan DeBold", "Stephanie Yang"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 398,
- "source_domain": "graphics.wsj.com",
- "submitters": ["Anonymous"],
- "title": "'Flash Crash' a Perfect Storm for Markets",
- "url": "http://graphics.wsj.com/flash-crash-timeline/"
- },
- {
- "__typename": "Report",
- "authors": ["Jen Wieczner"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 397,
- "source_domain": "fortune.com",
- "submitters": ["Anonymous"],
- "title": "The 'flash crash' trader: Here's how much he allegedly made.",
- "url": "http://fortune.com/2015/04/23/flash-crash-trader-money/"
- },
- {
- "__typename": "Report",
- "authors": ["Jessica Morris", "Joe Hall"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 396,
- "source_domain": "cityam.com",
- "submitters": ["Anonymous"],
- "title": "The great flash crash of 2010: What happened to the Dow Jones and what is Navinder Singh Sarao supposed to have done?",
- "url": "http://www.cityam.com/214278/what-was-flash-crash-2010"
- },
- {
- "__typename": "Report",
- "authors": ["Steve Goldstein"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 395,
- "source_domain": "marketwatch.com",
- "submitters": ["Anonymous"],
- "title": "The 2010 ‘flash crash’ now has a criminal suspect",
- "url": "https://www.marketwatch.com/story/the-2010-flash-crash-now-has-a-criminal-suspect-2015-04-21"
- },
- {
- "__typename": "Report",
- "authors": ["Nathaniel Popper", "Jenny Anderson"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 394,
- "source_domain": "nytimes.com",
- "submitters": ["Anonymous"],
- "title": "Trader Arrested in Manipulation That Contributed to 2010 ‘Flash Crash’",
- "url": "https://www.nytimes.com/2015/04/22/business/dealbook/trader-in-britain-arrested-on-charges-of-manipulation-that-led-to-2010-flash-crash.html"
- },
- {
- "__typename": "Report",
- "authors": ["Chris Clearfield", "James Owen Weatherall"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 393,
- "source_domain": "nautil.us",
- "submitters": ["Anonymous"],
- "title": "Why the Cause of the 2010 Stock Market Flash Crash Really Matters",
- "url": "http://nautil.us/issue/23/dominoes/why-the-flash-crash-really-matters"
- },
- {
- "__typename": "Report",
- "authors": ["Kaja Whitehouse"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 392,
- "source_domain": "usatoday.com",
- "submitters": ["Anonymous"],
- "title": "'Flash Crash' arrest shakes investors' confidence",
- "url": "https://www.usatoday.com/story/money/business/2015/04/22/flash-crash-sarao-arrest-spooks-investors/26191173/"
- },
- {
- "__typename": "Report",
- "authors": ["Matt Levine"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 391,
- "source_domain": "bloomberg.com",
- "submitters": ["Anonymous"],
- "title": "Guy Trading at Home Caused the Flash Crash",
- "url": "https://www.bloomberg.com/opinion/articles/2015-04-21/guy-trading-at-home-caused-the-flash-crash"
- },
- {
- "__typename": "Report",
- "authors": ["Wikipedia Editors"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": true,
- "report_number": 390,
- "source_domain": "en.wikipedia.org",
- "submitters": ["Anonymous"],
- "title": "2010 Flash Crash",
- "url": "https://en.wikipedia.org/wiki/2010_Flash_Crash"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "united-states-government",
- "name": "United States Government"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "united-states-government",
- "name": "United States Government"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "united-states-government",
- "name": "United States Government"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [422, 420],
- "vector": [
- -0.10448059439659119, 0.06433454900979996, -0.011867019347846508, -0.0920528918504715,
- 0.08358998596668243, 0.04799878969788551, 0.008716517128050327, 0.06992483139038086,
- 0.08234059810638428, -0.1727462112903595, 0.014095330610871315, 0.027119705453515053,
- 0.03142006695270538, -0.05878449231386185, 0.002451562322676182, -0.13155969977378845,
- -0.1288428008556366, -0.017215389758348465, -0.050361838191747665, -0.19790339469909668,
- -0.09140843152999878, -0.022568393498659134, -0.014741053804755211, 0.13154336810112,
- -0.02662098966538906, 0.05110152065753937, 0.1056865006685257, 0.10614548623561859,
- -0.08732403069734573, 0.11065446585416794, -0.05017571523785591, -0.08274984359741211,
- 0.11966288089752197, 0.024094706401228905, 0.03313687443733215, 0.09940220415592194,
- -0.009733177721500397, -0.00347687816247344, -0.030072083696722984,
- 0.011617572046816349, 0.03587699681520462, 0.2390110343694687, 0.009017118252813816,
- -0.008382420986890793, 0.01352040097117424, -0.035236187279224396, 0.04650517925620079,
- 0.032844386994838715, 0.017970411106944084, 0.0019109584391117096,
- -0.009032088331878185, 0.0028173569589853287, -0.02063574455678463,
- 0.058526813983917236, -0.1018826887011528, 0.13407284021377563, 0.04513659328222275,
- -0.0159494299441576, 0.02701021358370781, -0.08823693543672562, -0.0402345210313797,
- -0.2652986943721771, -0.022963760420680046, -0.0895649641752243, 0.08411921560764313,
- -0.10825854539871216, 0.004174122586846352, -0.018053971230983734, 0.024734407663345337,
- 0.09997890889644623, 0.0510333776473999, -0.019736777991056442, -0.03337112069129944,
- 0.03291068971157074, 0.007962282747030258, 0.002989117056131363, -0.0023371782153844833,
- 0.2205566167831421, -0.1031632274389267, -0.003238935023546219, 0.07375817745923996,
- -0.09671783447265625, 0.4425950050354004, -0.0036042204592376947, -0.03153351694345474,
- -0.05448178946971893, 0.11060816049575806, 0.028817778453230858, 0.029910629615187645,
- 0.013892779126763344, -0.03859536349773407, 0.04658910259604454, -0.08289444446563721,
- 0.020034223794937134, 0.09756305813789368, 0.02863067388534546, -0.026655634865164757,
- -0.009331198409199715, -0.0356624610722065, -0.03358779847621918, 0.041501082479953766,
- -0.0430099256336689, 0.11927978694438934, 0.11838735640048981, -0.0809088945388794,
- 0.020561357960104942, 0.12755641341209412, -0.06337079405784607, 0.08917897939682007,
- -0.06419046968221664, 0.04162600636482239, 0.0006958760786801577, 0.08525998890399933,
- -0.025489650666713715, 0.029970059171319008, -0.0832451730966568, 0.017081886529922485,
- 0.026708999648690224, 0.053820185363292694, 0.05962026119232178, -0.03558473289012909,
- 0.09486536681652069, 0.08876676857471466, -0.08404544740915298, -0.08928872644901276,
- -0.0014534294605255127, -0.08898279815912247, -0.04433581233024597,
- -0.014770385809242725, 0.04768199473619461, -0.09782141447067261, -0.2422209531068802,
- -0.0074503542855381966, 0.045672204345464706, -0.06956858932971954,
- -0.027167167514562607, -0.005793862510472536, -0.06829044222831726,
- 0.006269730627536774, -0.022243527695536613, 0.024083049967885017, 0.09102562069892883,
- 0.028025245293974876, 0.04038487374782562, 0.05055190622806549, 0.0803554430603981,
- -0.04026699811220169, -0.009835664182901382, 0.045914169400930405,
- -0.0006536892615258694, 0.1349475234746933, -0.1038791611790657, -0.05874300003051758,
- -0.043491341173648834, -0.025544213131070137, 0.6983742713928223, 0.1344723105430603,
- 0.1431179940700531, -0.02457534894347191, 0.0050193192437291145, 0.1841621696949005,
- 0.012343251146376133, 0.015351906418800354, -0.052264995872974396, -0.06742444634437561,
- 0.01345922239124775, -0.022280342876911163, -0.017798669636249542, 0.06986714899539948,
- 0.02279481664299965, 0.052132949233055115, 0.0055211312137544155, 0.1033477783203125,
- 0.02316877990961075, -0.10894551873207092, -0.005706531926989555, 0.11079873144626617,
- 0.02548607997596264, -0.11322885751724243, -0.026231523603200912, 0.04857534170150757,
- 0.09877461194992065, -0.07572798430919647, 0.03401225432753563, -0.07659264653921127,
- 0.05763087421655655, -0.007811058312654495, 0.0428500734269619, -0.022287549450993538,
- 0.018202507868409157, 0.10162386298179626, 0.04590670391917229, -0.016076937317848206,
- -0.10706871747970581, -0.056170910596847534, 0.05938410758972168, -0.04579742252826691,
- -0.0303033534437418, 0.06924863904714584, -0.11151072382926941, 0.021997783333063126,
- 0.00705150980502367, 0.21615439653396606, -0.14784474670886993, 0.05992868170142174,
- -0.007188834249973297, -0.07351964712142944, 0.042094238102436066, 0.012224989011883736,
- -0.039671529084444046, -0.03587827458977699, 0.06635533273220062, 0.04396630823612213,
- 0.08471830934286118, 0.07801108062267303, 0.0010763967875391245, 0.09959752857685089,
- 0.12051945179700851, 0.019325189292430878, -0.014133353717625141, 0.07552452385425568,
- 0.04581904411315918, -0.03677867725491524, -0.010274842381477356, 0.02601279877126217,
- -0.04523028805851936, 0.051418714225292206, 0.02176419086754322, 0.022663066163659096,
- -0.0361051931977272, -0.04119918495416641, 0.0663132444024086, 0.02931768074631691,
- 0.07771877944469452, 0.051867496222257614, -0.13618074357509613, -0.03534373641014099,
- -0.06252384185791016, -0.05851578339934349, -0.016440263018012047,
- -0.042181357741355896, 0.09554922580718994, 0.12170276045799255, 0.11849091202020645,
- -0.004317666869610548, 0.03796454891562462, 0.04550531506538391, 0.05736611783504486,
- 0.022009320557117462, 0.03956874832510948, -0.048676542937755585, -0.04018567502498627,
- -0.030730780214071274, -0.023142673075199127, 0.03316756710410118, -0.0402960404753685,
- -0.05887188762426376, -0.04131557419896126, -0.05453673005104065, 0.00266553508117795,
- -0.11529825627803802, -0.0009989684913307428, 0.06022001802921295, 0.02815459854900837,
- -0.07588352262973785, -0.058748818933963776, -0.08348452299833298,
- -0.021105177700519562, 0.06914491951465607, -0.003974768333137035,
- -0.00017955061048269272, -0.12999080121517181, 0.004577194340527058,
- -0.0041508181020617485, 0.05773031711578369, -0.04317318648099899, 0.01276594027876854,
- 0.01118926890194416, -0.10599380731582642, 0.033402398228645325, -0.026028374210000038,
- -0.06793828308582306, -0.0768173485994339, -0.082839235663414, -0.01572674885392189,
- -0.06084431707859039, 0.030105940997600555, 0.013234535232186317, 0.02320905029773712,
- 0.043722063302993774, 0.061482757329940796, -0.0046697743237018585,
- -0.10697262734174728, 0.06815241277217865, -0.02145179733633995, -0.024017702788114548,
- 0.09871892631053925, -0.04024535417556763, 0.026158755645155907, 0.00043409131467342377,
- -0.09389559179544449, -0.05745991691946983, 0.02239055559039116, -0.0657292976975441,
- 0.03937018662691116, -0.022220775485038757, 0.01958412490785122, 0.014691639691591263,
- -0.023892229422926903, 0.0023854803293943405, -0.017234966158866882,
- -0.12337111681699753, -0.14281243085861206, 0.12555161118507385, -0.017176717519760132,
- 0.004513104446232319, 0.055636994540691376, 0.029062418267130852, 0.05002729222178459,
- 0.04146292805671692, 0.030729372054338455, 0.07723845541477203, 0.09432767331600189,
- -0.030922025442123413, 0.03485905006527901, 0.10127043724060059, -0.01486985944211483,
- 0.01659465953707695, 0.0805797427892685, 0.48882055282592773, -0.2325325906276703,
- 0.10407809913158417, 0.10718207061290741, -0.03457866609096527, 0.026703760027885437,
- -0.07456721365451813, 0.06078871339559555, 0.06963891535997391, 0.1411876380443573,
- 0.219123974442482, -0.0399952232837677, 0.0237162783741951, -0.10366976261138916,
- 0.0913829579949379, -0.010177329182624817, 0.002502073999494314, 0.030740413814783096,
- -0.08322516083717346, -0.0006719112861901522, 0.06225267052650452, -0.0516589991748333,
- 0.02353467419743538, -0.006957090459764004, -0.03605702519416809, -0.027413291856646538,
- 0.07087092101573944, -0.015991084277629852, -0.04651912674307823, 0.03698337823152542,
- -0.08361830562353134, 0.05483725666999817, 0.04547657072544098, 0.05520130693912506,
- -0.15090057253837585, -0.007998354732990265, -0.06656515598297119, -0.11472479999065399,
- 0.06990888714790344, -0.001322982832789421, 0.10036374628543854, 0.07640035450458527,
- -0.06189563125371933, 0.047723717987537384, -0.02203834056854248, -0.05118519067764282,
- 0.043555550277233124, 0.06878618896007538, 0.007178577594459057, 0.01655462756752968,
- 0.17697592079639435, -0.025500627234578133, -0.0034908903762698174,
- -0.14177899062633514, 0.03271179273724556, 0.15879003703594208, -0.02521364390850067,
- -0.00590943731367588, -0.023290332406759262, 0.03222035989165306, 0.020147113129496574,
- -0.05566396564245224, -0.07168887555599213, -0.028187202289700508, -0.07542712241411209,
- 0.09552158415317535, 0.07146671414375305, -0.029829086735844612, -0.11545078456401825,
- -0.006882999092340469, -0.03240823745727539, 0.022943807765841484, 0.1115637868642807,
- -0.11435669660568237, 0.027031315490603447, -0.031351931393146515,
- -0.010221008211374283, 0.05585148185491562, -0.08366069197654724, -0.010533744469285011,
- -0.06788092106580734, 0.02561187371611595, 0.10544295608997345, 0.051647819578647614,
- -0.06352029740810394, 0.10702551901340485, -0.12289956212043762, 0.08258800953626633,
- 0.0048529282212257385, -0.04487248510122299, -0.002825068309903145,
- -0.027869317680597305, 0.03610962629318237, 0.002379843033850193, -0.040925171226263046,
- 0.06624653935432434, -0.040980346500873566, -0.07819963991641998, -0.06537647545337677,
- -0.08560071885585785, -0.014612352475523949, -0.07467713952064514, 0.02223764732480049,
- -0.08546215295791626, -0.007536070421338081, -0.09210553765296936, -0.06621627509593964,
- -0.0018400759436190128, 0.0269290991127491, 0.031073786318302155, -0.15959565341472626,
- 0.0229979008436203, -0.03646422177553177, 0.05365832895040512, 0.04030074179172516,
- -0.037126325070858, -0.03410308063030243, 0.02943343110382557, 0.045369528234004974,
- -0.01172168180346489, -0.00643729604780674, -0.10075340420007706, 0.08101945370435715,
- -0.13695234060287476, -0.3338077962398529, 0.07327846437692642, 0.03538283705711365,
- 0.011250121518969536, -0.003653024323284626, -0.08483745157718658, 0.016210271045565605,
- -0.007024835795164108, -0.05097073316574097, 0.10082065314054489, -0.029644232243299484,
- 0.01337896566838026, -0.06297265738248825, -0.1401427686214447, -0.04172011464834213,
- -0.0206015445291996, -0.0851220190525055, 0.04721611738204956, 0.022144243121147156,
- -0.08001497387886047, -0.07470761239528656, 0.04037142172455788, -0.02480231411755085,
- 0.02940494194626808, -0.004064643755555153, 0.06324170529842377, -0.01541133038699627,
- -0.06736795604228973, 0.035557057708501816, 0.03493938222527504, 0.05791109800338745,
- -0.10828915238380432, -0.0025036903098225594, 0.04480018466711044, 0.036021992564201355,
- 0.0970582515001297, 0.024582955986261368, -0.03419299051165581, -0.06674715876579285,
- 0.11586126685142517, 0.10271520912647247, 0.18037179112434387, -0.026984844356775284,
- -0.013720128685235977, 0.01113674696534872, 0.15259145200252533, 0.05849424749612808,
- 0.01841149665415287, -0.027126390486955643, -0.011106666177511215, 0.052100006490945816,
- -0.019527366384863853, 0.11465012282133102, -0.06755766272544861, -0.025797728449106216,
- -0.007328127510845661, 0.0015460606664419174, -0.01828905940055847,
- -0.00912246759980917, 0.22624719142913818, 0.02764313668012619, 0.04854385554790497,
- -0.0028544832020998, -0.051575034856796265, -0.039339493960142136, -0.03393695503473282,
- -0.05209135264158249, -0.02294914424419403, -0.027812998741865158,
- 0.0053289104253053665, -0.025457661598920822, -0.1174190491437912, 0.005447882227599621,
- 0.018631232902407646, -0.003662167116999626, 0.12222746014595032, -0.045278750360012054,
- -0.0069687459617853165, -0.05540084093809128, 0.16520188748836517, 0.07345808297395706,
- 0.011598119512200356, 0.029838664457201958, 0.07429023832082748, 0.04574916139245033,
- 0.038295987993478775, -0.031700827181339264, -0.09342092275619507, 0.013113106600940228,
- 0.14405620098114014, -0.017863832414150238, 0.16237986087799072, 0.03199785202741623,
- -0.022500380873680115, -0.07640819251537323, 0.04290035367012024, -0.007133265491575003,
- -0.0011783689260482788, -0.44898509979248047, -0.011098210699856281,
- 0.12328709661960602, -0.013302354142069817, 0.019407615065574646, 0.06692852079868317,
- 0.06608787924051285, -0.03814910724759102, -0.04057173803448677, -0.08659881353378296,
- 0.1324467808008194, -0.023585371673107147, 0.07098890841007233, -0.13048113882541656,
- 0.03612930327653885, 0.08986704051494598, -0.019443925470113754, 0.005917254835367203,
- 0.08303436636924744, -0.21862949430942535, 0.02448323555290699, -0.055116526782512665,
- 0.1850452721118927, 0.02049727737903595, 0.06917602568864822, 0.10593143105506897,
- -0.09791378676891327, 0.08249710500240326, 0.05098467320203781, -0.02144252136349678,
- 0.03583425655961037, -0.007863875478506088, -0.055868640542030334, 0.10126891732215881,
- 0.12246198952198029, 0.0467551127076149, -0.015333802439272404, 12.297284126281738,
- 0.057121917605400085, 0.04916539043188095, -0.0928763747215271, -0.011637432500720024,
- -0.08911952376365662, -0.00457151560112834, -0.14377298951148987, -0.023990005254745483,
- 0.16416577994823456, -0.030837683007121086, -0.036542635411024094, -0.03208408132195473,
- -0.1589406430721283, 0.030419398099184036, -0.060659222304821014, -0.06553229689598083,
- -0.019393078982830048, 0.006538751535117626, -0.07406425476074219,
- -0.047119610011577606, 0.035865768790245056, 0.08922921121120453, -0.009474537335336208,
- -0.03815453127026558, 0.02615842968225479, 0.010603100061416626, -0.03849131613969803,
- 0.0060247089713811874, 0.05943519249558449, -0.04840342327952385, 0.03833865001797676,
- 0.09138253331184387, -0.05918220430612564, 0.04661308974027634, 0.021581776440143585,
- 0.06302210688591003, 0.06296569854021072, 0.062218159437179565, 0.09614028036594391,
- 0.003838449250906706, 0.04547634720802307, 0.054074689745903015, 0.03679708018898964,
- 0.049161411821842194, 0.08685522526502609, 0.07973355054855347, 0.12318503111600876,
- 0.011729986406862736, 0.04042024537920952, 0.11721321940422058, -0.055093325674533844,
- 0.14484384655952454, 0.011263536289334297, -0.005870300345122814, 0.04301103949546814,
- -0.016654858365654945, -0.07459000498056412, 0.0912131741642952, 0.0487530492246151,
- -0.07529808580875397, 0.10638965666294098, 0.05323293060064316, 0.13844692707061768,
- -0.013283936306834221, 0.03421221300959587, 0.1339627057313919, 0.02655911259353161,
- -0.21726122498512268, -0.1201242059469223, 0.026876302435994148, -0.12206994742155075,
- -0.06756321340799332, 0.0858595073223114, 0.10384965687990189, -0.045098528265953064,
- 0.09715113788843155, -0.022000998258590698, 0.015678729861974716, -0.07280707359313965,
- -0.008240405470132828, 0.019172310829162598, -0.04063960909843445, 0.05740665644407272,
- 0.0626402497291565, 0.03459762781858444, 0.05309349298477173, 0.07517516613006592,
- 0.03518576920032501, -0.11960668861865997, -0.04970399662852287, 0.07084815204143524,
- -0.021797752007842064, -0.07159826904535294, 0.043008897453546524, -0.06429028511047363,
- 0.07837329804897308, -0.1533787101507187, 0.06652230769395828, 0.09053559601306915,
- -0.0827033743262291, -0.020505990833044052, -0.06146704778075218, 0.033941589295864105,
- 0.00004609953612089157, 0.05202433094382286, -0.08293581008911133,
- -0.024305904284119606, 0.06759411096572876, 0.05108816921710968, -0.0024463320150971413,
- 0.09930764138698578, 0.1427663266658783, -0.07225483655929565, 0.0030931830406188965,
- 0.06213890761137009, -0.0035190123599022627, -0.02371162921190262, 0.07108378410339355,
- 0.055149540305137634, -0.12322601675987244, -0.11224246025085449, -0.026008427143096924,
- -0.03204509615898132, -0.0020240023732185364, -0.04398253187537193,
- -0.011095154099166393, 0.0914851650595665, -0.08737745881080627, -0.02168716862797737,
- 0.027153437957167625, 0.08380991965532303, 0.05605199187994003, -0.0536382831633091,
- 0.09157037734985352, -0.06499271839857101, -0.07829788327217102, 0.021891575306653976,
- 0.06482129544019699, 0.020054878666996956, -0.07883496582508087, -0.01888538897037506,
- -0.05618869885802269, -0.13519921898841858, 0.06319734454154968, 0.10639294981956482,
- 0.02938707545399666, 0.07586324214935303, 0.016286199912428856, -0.11280708014965057,
- -0.09370347857475281, 0.07873546332120895, 0.06985471397638321, -0.02760726399719715,
- 0.006581849418580532, -0.022499656304717064, -0.061812736093997955, 0.14419791102409363,
- -0.05234207212924957, 0.022587357088923454, 0.007981555536389351, -0.014958353713154793,
- 0.08799891173839569, 0.12356042861938477, 0.06823074817657471, 0.06186802685260773,
- 0.028779394924640656, -0.0015292676398530602, 0.020663371309638023,
- -0.022928612306714058, 0.008054673671722412, -0.0721832662820816, -0.07934670150279999,
- -0.07723785936832428, 0.04136253148317337, 0.14195111393928528, -0.008382705971598625,
- -0.0868598073720932, -0.017858736217021942, -0.04446537792682648
- ]
- },
- "flagged_dissimilar_incidents": [11],
- "incident_id": 29,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 11,
- "similarity": 0.9982670545578003
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 49,
- "similarity": 0.9982550740242004
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 41,
- "similarity": 0.9982544183731079
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Gwern Branwen"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 422,
- "source_domain": "gwern.net",
- "submitters": ["Catherine Olsson"],
- "title": "The Neural Net Tank Urban Legend",
- "url": "https://www.gwern.net/Tanks"
- },
- {
- "__typename": "Report",
- "authors": ["GDC"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 420,
- "source_domain": "lobste.rs",
- "submitters": ["Catherine Olsson"],
- "title": "Tales from the Trenches: AI Disaster Stories (GDC talk)",
- "url": "https://lobste.rs/s/1d7whd/tales_from_trenches_ai_disaster_stories#c_le6tsr"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "tesla",
- "name": "Tesla"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "tesla",
- "name": "Tesla"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "tesla",
- "name": "Tesla"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [
- 453, 452, 451, 450, 449, 448, 447, 446, 445, 444, 443, 442, 441, 440, 439, 438, 437,
- 436, 435, 434, 433, 432, 431, 430, 428, 426, 425, 424
- ],
- "vector": [
- -0.08505701273679733, 0.08742105960845947, 0.009426986798644066, -0.12050246447324753,
- 0.08852771669626236, -0.049211535602808, -0.011300255544483662, 0.020025957375764847,
- 0.09062039852142334, -0.14569710195064545, -0.01326548121869564, 0.06491034477949142,
- 0.02253846824169159, -0.05064801499247551, 0.031442489475011826, -0.07988864183425903,
- -0.09540653228759766, -0.05043822154402733, -0.008755821734666824, -0.09846995025873184,
- -0.05090567469596863, 0.01353923138231039, 0.03750460594892502, 0.11703403294086456,
- -0.055006302893161774, 0.01784392073750496, 0.11548229306936264, 0.10834598541259766,
- -0.05940895900130272, 0.053027864545583725, -0.02483643777668476, -0.07502007484436035,
- 0.10642161220312119, 0.04118809103965759, 0.0022814052645117044, 0.07675856351852417,
- -0.01857740245759487, -0.013513034209609032, -0.03904341533780098,
- -0.027383187785744667, 0.023412534967064857, 0.2597239315509796, 0.009999296627938747,
- -0.007132794242352247, 0.05748724192380905, -0.04087226837873459, 0.025871606543660164,
- 0.04876699671149254, 0.012862451374530792, 0.032919351011514664, -0.027094388380646706,
- 0.049274276942014694, -0.022805744782090187, 0.038503456860780716, -0.08306937664747238,
- 0.0478857159614563, 0.030604587867856026, 0.021661480888724327, 0.08074595034122467,
- -0.05568103864789009, -0.020990192890167236, -0.2030310183763504, -0.03240720555186272,
- -0.04037166014313698, 0.06527582556009293, -0.06311914324760437, -0.03730011731386185,
- 0.061641257256269455, 0.01541230734437704, 0.06756211817264557, 0.07791035622358322,
- -0.03804286569356918, -0.043436259031295776, 0.03603111952543259, -0.010469923727214336,
- 0.010207940824329853, -0.009497947059571743, 0.2282719910144806, -0.0965738520026207,
- -0.033068522810935974, 0.10962212830781937, -0.09649213403463364, 0.4150444567203522,
- 0.012101517990231514, -0.035625357180833817, -0.03664826229214668, 0.0800790786743164,
- 0.027975011616945267, 0.04095225781202316, 0.032698169350624084, 0.006577265914529562,
- 0.05114195868372917, -0.0447973795235157, 0.006748339626938105, 0.0622842013835907,
- 0.022807104513049126, -0.011390289291739464, 0.06455465406179428, 0.007689766585826874,
- -0.06671777367591858, 0.019404655322432518, -0.03162272274494171, 0.09393901377916336,
- 0.08855552226305008, -0.02382645197212696, 0.025914059951901436, 0.08050156384706497,
- -0.049172792583703995, 0.05555552989244461, -0.07085646688938141, 0.033450182527303696,
- -0.02789073809981346, 0.03339345008134842, -0.013814156875014305, 0.04154587537050247,
- -0.07003907859325409, 0.02151329256594181, 0.04953384771943092, 0.08539391309022903,
- 0.04943196848034859, -0.03711927309632301, 0.08718299120664597, 0.05899888277053833,
- -0.04978421330451965, 0.0009522121399641037, -0.026604890823364258,
- -0.06929830461740494, -0.024854404851794243, -0.05311872437596321, 0.057516492903232574,
- -0.061330296099185944, -0.17261053621768951, 0.009565815329551697, 0.09342502057552338,
- -0.027726100757718086, -0.00940445251762867, 0.01101473718881607, -0.0533796064555645,
- 0.05608917400240898, -0.02870108000934124, -0.052247680723667145, 0.054162394255399704,
- 0.02143285796046257, 0.052560754120349884, 0.13241107761859894, 0.03942223638296127,
- -0.04322559013962746, -0.049905598163604736, 0.01734289899468422, -0.007594783790409565,
- 0.1303497850894928, -0.1200554147362709, -0.026233593001961708, 0.023729322478175163,
- -0.020982136949896812, 0.6573306322097778, 0.10570418834686279, 0.18157696723937988,
- 0.008678080514073372, -0.0328282006084919, 0.14951585233211517, 0.012685911729931831,
- 0.059801701456308365, -0.07062455266714096, -0.061371516436338425, 0.037253111600875854,
- -0.07839834690093994, -0.024491341784596443, 0.02638794481754303, 0.0038686932530254126,
- 0.10987722128629684, 0.023457186296582222, 0.0713130310177803, -0.018962139263749123,
- -0.08266737312078476, -0.039387885481119156, 0.05070279911160469, 0.018456654623150826,
- -0.11327000707387924, -0.03377274423837662, 0.03145909309387207, 0.10129387676715851,
- -0.08525199443101883, -0.01824166439473629, -0.0650797039270401, 0.04368862137198448,
- -0.020407110452651978, 0.03993597254157066, -0.027335939928889275, 0.03961813449859619,
- 0.04065665975213051, 0.06915181130170822, -0.004017250146716833, -0.09242992848157883,
- -0.004752790089696646, 0.13219957053661346, -0.0420931838452816, -0.026493975892663002,
- 0.09203685820102692, -0.0946846678853035, 0.044347237795591354, 0.010039297863841057,
- 0.14107701182365417, -0.09629528224468231, 0.01752925105392933, -0.020611559972167015,
- -0.012984243221580982, 0.05268223211169243, -0.00170370121486485, -0.03752661496400833,
- -0.052980612963438034, 0.0807659700512886, 0.017764680087566376, 0.07484488934278488,
- 0.039326995611190796, -0.02073579654097557, 0.047616999596357346, 0.06530815362930298,
- 0.037920717149972916, -0.02660510316491127, 0.04395595192909241, 0.06301847845315933,
- -0.04003942385315895, -0.02199065312743187, -0.019537586718797684, 0.01576194353401661,
- 0.03804227337241173, 0.006371818482875824, 0.034354984760284424, 0.013769811950623989,
- -0.05552675947546959, 0.02851642109453678, 0.03587722405791283, 0.02035532519221306,
- 0.09316963702440262, -0.05707478150725365, -0.06966548413038254, -0.04219695180654526,
- -0.04545934125781059, 0.004073963034898043, -0.03638534992933273, 0.07711802423000336,
- 0.08040283620357513, 0.0658923014998436, 0.016659202054142952, 0.044008415192365646,
- 0.06208738312125206, 0.023410944268107414, 0.018529603257775307, 0.06523631513118744,
- -0.026478750631213188, -0.06931094080209732, -0.04260112717747688, 0.013169645331799984,
- 0.03376653045415878, -0.0074797505512833595, -0.08112044632434845, -0.04082416370511055,
- -0.07320862263441086, -0.010301436297595501, -0.08038687705993652, -0.04391888156533241,
- 0.022524485364556313, 0.07535199820995331, -0.03939822316169739, -0.06297744065523148,
- -0.10800676792860031, 0.027913089841604233, 0.044867269694805145, -0.013425416313111782,
- -0.001583311939612031, -0.11476954072713852, -0.005366467405110598,
- -0.03417782112956047, 0.05101115256547928, 0.007319111377000809, -0.004323182627558708,
- 0.014653876423835754, -0.03588129207491875, 0.013348071835935116, -0.026233255863189697,
- -0.014790058135986328, -0.07326766103506088, -0.0833783969283104, -0.030060473829507828,
- 0.01704937219619751, -0.005468464456498623, -0.020606806501746178, 0.07319972664117813,
- 0.042380597442388535, 0.04747016355395317, 0.01308017410337925, -0.029028896242380142,
- 0.042512424290180206, -0.038518812507390976, -0.037768226116895676, 0.10500943660736084,
- -0.01657789759337902, 0.012837283313274384, -0.028162328526377678, -0.04463035240769386,
- -0.03092316724359989, 0.03893100470304489, -0.06310389190912247, 0.06194630637764931,
- -0.022269994020462036, 0.02670528180897236, -0.03673533722758293, 0.008401515893638134,
- 0.01454966515302658, -0.046916183084249496, -0.08011170476675034, -0.08934342861175537,
- 0.14143379032611847, 0.006227966398000717, -0.005300548393279314, 0.023388026282191277,
- -0.02638976089656353, 0.041907887905836105, -0.01982523687183857, 0.007837059907615185,
- -0.010861574672162533, 0.07340165227651596, -0.014912578277289867, 0.025965368375182152,
- 0.07188890874385834, -0.011194273829460144, 0.017606642097234726, 0.06346836686134338,
- 0.43708720803260803, -0.2033507078886032, 0.07196632772684097, 0.07412862777709961,
- 0.0007658543181605637, 0.07817131280899048, -0.06680943816900253, 0.058731675148010254,
- 0.06842847168445587, 0.10671538859605789, 0.12076656520366669, -0.04797649011015892,
- 0.007891559973359108, -0.05744844675064087, 0.09111952781677246, -0.0008792411535978317,
- 0.006335572339594364, -0.01572290062904358, -0.060421522706747055,
- -0.011110516265034676, 0.0354921817779541, -0.05477266386151314, -0.008939574472606182,
- -0.005750036798417568, -0.059936027973890305, -0.023085905238986015,
- 0.04882747679948807, 0.005286927334964275, -0.03556560352444649, 0.03177092969417572,
- -0.03583865612745285, 0.04030049219727516, 0.0018381072441115975, 0.034654710441827774,
- -0.1294691413640976, 0.044484056532382965, -0.07508263736963272, -0.10822509974241257,
- 0.09632764756679535, -0.008342409506440163, 0.03663477301597595, 0.036488357931375504,
- -0.028814559802412987, 0.01744849793612957, 0.030945245176553726, -0.05534286051988602,
- 0.012898653745651245, 0.08113045990467072, 0.031013140454888344, 0.04499566927552223,
- 0.15482237935066223, -0.03968169167637825, -0.04752615839242935, -0.07438618689775467,
- 0.05758828669786453, 0.10042721033096313, -0.03481113165616989, -0.017365744337439537,
- -0.02483823522925377, -0.02947038970887661, -0.006523363292217255, -0.08743240684270859,
- -0.0659787580370903, -0.01571866124868393, -0.0481741726398468, 0.09781698137521744,
- 0.003946093376725912, -0.040460798889398575, -0.13568611443042755,
- -0.050447966903448105, -0.037890639156103134, 0.03336675092577934, 0.13042853772640228,
- -0.05568539723753929, 0.03409668058156967, 0.007272936403751373, -0.037159036844968796,
- 0.03321339935064316, -0.09383871406316757, 0.013860479928553104, -0.07041038572788239,
- 0.02602994814515114, 0.05317153409123421, 0.04810469597578049, -0.05186140537261963,
- 0.07197131216526031, -0.09092352539300919, 0.04871022701263428, 0.023107392713427544,
- -0.03600969910621643, 0.06316191703081131, -0.013032669201493263, 0.059073466807603836,
- 0.024267924949526787, -0.05441325157880783, 0.0371553897857666, -0.043602850288152695,
- -0.037554286420345306, -0.10090521723031998, -0.03725438565015793,
- -0.022851401939988136, -0.08885003626346588, 0.045150455087423325, -0.0551019050180912,
- -0.028995543718338013, -0.03372713178396225, -0.024795804172754288,
- -0.006655778735876083, 0.02150455303490162, 0.017934879288077354, -0.1498672217130661,
- 0.015915462747216225, -0.006638648454099894, 0.04471669718623161, 0.006587373558431864,
- -0.015996793285012245, 0.01275037694722414, 0.12177561223506927, 0.05431477352976799,
- -0.019399449229240417, 0.0031994048040360212, -0.0662803128361702, 0.021381288766860962,
- -0.07675132900476456, -0.47785258293151855, 0.05411241576075554, 0.028834959492087364,
- 0.026787009090185165, 0.0007284161983989179, -0.07581460475921631, 0.03860529512166977,
- -0.01144471112638712, -0.045954685658216476, 0.07327340543270111, -0.04284653067588806,
- 0.042504969984292984, -0.014596634544432163, -0.05451933294534683,
- -0.031963106244802475, -0.061577197164297104, -0.05632515996694565, 0.03710920736193657,
- -0.055044014006853104, -0.052280623465776443, -0.10495950281620026, 0.04788640886545181,
- -0.03794937580823898, 0.0026432478334754705, 0.002683077473193407, 0.028286157175898552,
- -0.06736965477466583, -0.0687142089009285, 0.03713446483016014, 0.041518036276102066,
- 0.043903648853302, -0.07650285959243774, -0.003012061817571521, 0.0332316979765892,
- -0.023216266185045242, 0.11853093653917313, -0.00814405269920826, -0.013313240371644497,
- -0.03961896151304245, 0.08956486731767654, 0.04630511254072189, 0.18613861501216888,
- -0.017635513097047806, 0.03445257619023323, -0.008912173099815845, 0.13609273731708527,
- 0.036724500358104706, 0.01589171588420868, -0.024343963712453842, -0.010470659472048283,
- 0.02556426450610161, -0.033065568655729294, 0.05894440412521362, -0.07083987444639206,
- -0.032391346991062164, -0.02106798067688942, -0.02563028410077095,
- -0.015350284054875374, -0.024835022166371346, 0.17677120864391327, 0.012621880508959293,
- 0.01720813475549221, 0.008575912564992905, -0.06251507997512817, 0.008508555591106415,
- -0.05276235193014145, -0.09988295286893845, -0.007566035725176334,
- -0.0038576077204197645, 0.005917808506637812, -0.02437310852110386,
- -0.10367283970117569, -0.022582370787858963, 0.012601799331605434,
- -0.0002923530410043895, 0.09434077888727188, 0.006957639008760452, 0.03059636428952217,
- -0.026540717110037804, 0.11771835386753082, 0.04742782190442085, 0.01916775479912758,
- 0.022620391100645065, 0.0696028396487236, 0.03644546493887901, 0.04141487553715706,
- -0.061676986515522, -0.07692176848649979, 0.03393629565834999, 0.13616324961185455,
- -0.03476705402135849, 0.11253748834133148, 0.04569932073354721, -0.029576757922768593,
- -0.039304058998823166, 0.03014102205634117, 0.03760365769267082, 0.03954717889428139,
- -0.4874064326286316, 0.006880975794047117, 0.10234128683805466, -0.012633562088012695,
- 0.03509873151779175, 0.07110707461833954, 0.04136485233902931, -0.05076814442873001,
- -0.07607849687337875, -0.07379699498414993, 0.14115753769874573, -0.0006507399375550449,
- 0.06714469194412231, -0.11791988462209702, 0.05689305439591408, 0.06907536089420319,
- -0.032856281846761703, -0.01678481139242649, 0.07451856881380081, -0.22906795144081116,
- 0.002158466028049588, -0.025284897536039352, 0.1536702662706375, 0.017959941178560257,
- 0.05224132165312767, 0.09527174383401871, -0.05028986558318138, 0.04604107141494751,
- 0.047970496118068695, 0.009608255699276924, 0.08306940644979477, -0.02173684723675251,
- -0.012064246460795403, 0.0896930918097496, 0.08290185779333115, 0.05595919489860535,
- 0.005612133536487818, 11.966789245605469, 0.06998983770608902, 0.05994962900876999,
- -0.07910703867673874, -0.0035045556724071503, -0.0630158856511116, 0.03415956348180771,
- -0.12037106603384018, 0.04035262018442154, 0.11678145825862885, -0.025610465556383133,
- -0.04966529831290245, -0.012482506223022938, -0.08648984134197235, 0.0238071046769619,
- -0.06942864507436752, -0.04731721431016922, -0.03780036419630051, 0.05183868855237961,
- -0.051839251071214676, -0.046297311782836914, 0.028125664219260216, 0.07125173509120941,
- 0.013897842727601528, -0.06917859613895416, 0.06057014316320419, 0.0283247958868742,
- -0.0011807272676378489, 0.0030729162972420454, 0.01630501262843609,
- -0.028563007712364197, 0.03902594372630119, 0.027575353160500526, 0.018086569383740425,
- 0.025399064645171165, 0.05153803899884224, 0.08104640990495682, 0.061345912516117096,
- 0.027592748403549194, 0.09888220578432083, 0.049267109483480453, 0.005662177689373493,
- 0.027637267485260963, 0.01910090632736683, 0.05337122082710266, 0.05282856896519661,
- 0.037574995309114456, 0.10567264258861542, 0.016116943210363388, 0.05833668261766434,
- 0.08842066675424576, -0.02910325489938259, 0.13207058608531952, -0.006137826479971409,
- -0.008406751789152622, 0.037068091332912445, -0.008449441753327847,
- -0.07976526021957397, 0.07297886908054352, 0.05031782388687134, -0.06392298638820648,
- 0.08692625910043716, 0.009676727466285229, 0.11129795014858246, 0.0004921694635413587,
- 0.07870080322027206, 0.05212840437889099, 0.06327471882104874, -0.0725560113787651,
- -0.074947789311409, 0.025578025728464127, -0.11229193210601807, -0.061573803424835205,
- 0.04651849716901779, 0.10796462744474411, -0.06485320627689362, 0.037728436291217804,
- -0.019395943731069565, 0.020173994824290276, -0.03880554437637329, -0.02556406520307064,
- 0.028982456773519516, -0.005419817287474871, 0.02488945983350277, 0.08487014472484589,
- 0.03032069280743599, 0.029335560277104378, 0.09942930191755295, 0.009937426075339317,
- -0.06252575665712357, -0.0840611606836319, 0.07691320031881332, -0.023078424856066704,
- -0.04584823176264763, 0.005721775349229574, -0.07492797821760178, 0.03653479740023613,
- -0.159105584025383, 0.062383729964494705, 0.10513969510793686, -0.09628381580114365,
- 0.0011105641024187207, -0.0006445863982662559, 0.07314161211252213,
- 0.002564207185059786, 0.043661780655384064, -0.05168598145246506, -0.014768973924219608,
- 0.012860470451414585, 0.03707515448331833, -0.03360544517636299, 0.07130205631256104,
- 0.06861467659473419, -0.05183561518788338, 0.061102040112018585, 0.07604800164699554,
- -0.013622918166220188, -0.03137481212615967, 0.05365816876292229, 0.04639055207371712,
- -0.08702515065670013, -0.033836208283901215, -0.03584413602948189, -0.06174509599804878,
- -0.02701563946902752, -0.04505043849349022, 0.009971186518669128, 0.013775867410004139,
- -0.03909590467810631, -0.010169480927288532, 0.05137329176068306, 0.04419014975428581,
- 0.12218058109283447, 0.007378921378403902, 0.06158682703971863, -0.08080560714006424,
- -0.04097737744450569, 0.061562057584524155, 0.06842578947544098, 0.058465778827667236,
- -0.06193160638213158, -0.03674134239554405, -0.07827489078044891, -0.13347148895263672,
- 0.021729210391640663, 0.1093672513961792, 0.04668295010924339, 0.020521899685263634,
- 0.014234409667551517, -0.042481981217861176, -0.04526004195213318, 0.08780642598867416,
- 0.05201525613665581, 0.02340729907155037, -0.014702262356877327, -0.07821440696716309,
- -0.010554450564086437, 0.1328192949295044, -0.02764139696955681, -0.0006172545254230499,
- 0.013714938424527645, -0.03890406712889671, 0.08597652614116669, 0.07586205005645752,
- 0.02462894283235073, 0.04059857502579689, -0.014303179457783699, -0.019497016444802284,
- 0.06985543668270111, -0.023443007841706276, 0.02636820264160633, -0.0019847326911985874,
- -0.10387977212667465, -0.06199651584029198, 0.0398109033703804, 0.08396916091442108,
- 0.009162372909486294, -0.13021902740001678, -0.047767870128154755, -0.03212271258234978
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 30,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 20,
- "similarity": 0.9992159008979797
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 24,
- "similarity": 0.9989696145057678
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 25,
- "similarity": 0.9989609718322754
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Linette Lopez"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 453,
- "source_domain": "businessinsider.com.au",
- "submitters": ["Anonymous"],
- "title": "The robots are killing Tesla",
- "url": "https://www.businessinsider.com.au/tesla-robots-are-killing-it-2018-3?r=US\u0026IR=T"
- },
- {
- "__typename": "Report",
- "authors": ["kristianp"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 452,
- "source_domain": "news.ycombinator.com",
- "submitters": ["Anonymous"],
- "title": "Analysts argue that over-automation is to blame for Tesla problems",
- "url": "https://news.ycombinator.com/item?id=16704185"
- },
- {
- "__typename": "Report",
- "authors": ["Harriet Alexander"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 451,
- "source_domain": "telegraph.co.uk",
- "submitters": ["Anonymous"],
- "title": "Elon Musk admits robots are slowing down Tesla production - and says humans are the answer",
- "url": "https://www.telegraph.co.uk/news/2018/04/16/elon-musk-says-excessive-automation-slowed-production-tesla/"
- },
- {
- "__typename": "Report",
- "authors": ["Tristan Greene"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 450,
- "source_domain": "thenextweb.com",
- "submitters": ["Anonymous"],
- "title": "'Humans are underrated'",
- "url": "https://thenextweb.com/artificial-intelligence/2018/04/16/elon-musk-replaces-robots-at-tesla-factory-humans-are-underrated/"
- },
- {
- "__typename": "Report",
- "authors": ["Samuel Gibbs"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 449,
- "source_domain": "theguardian.com",
- "submitters": ["Anonymous"],
- "title": "Elon Musk drafts in humans after robots slow down Tesla Model 3 production",
- "url": "https://www.theguardian.com/technology/2018/apr/16/elon-musk-humans-robots-slow-down-tesla-model-3-production"
- },
- {
- "__typename": "Report",
- "authors": ["Timothy B. Lee"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 448,
- "source_domain": "arstechnica.com",
- "submitters": ["Anonymous"],
- "title": "Experts say Tesla has repeated car industry mistakes from the 1980s",
- "url": "https://arstechnica.com/cars/2018/04/experts-say-tesla-has-repeated-car-industry-mistakes-from-the-1980s/"
- },
- {
- "__typename": "Report",
- "authors": ["Helen Edwards", "Dave Edwards"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 447,
- "source_domain": "qz.com",
- "submitters": ["Anonymous"],
- "title": "How Tesla \"shot itself in the foot” by hyper-automating Model 3 production",
- "url": "https://qz.com/1261214/how-exactly-tesla-shot-itself-in-the-foot-by-trying-to-hyper-automate-its-factory/"
- },
- {
- "__typename": "Report",
- "authors": ["Lora Kolodny"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 446,
- "source_domain": "cnbc.com",
- "submitters": ["Anonymous"],
- "title": "Tesla employees say Gigafactory problems worse than known",
- "url": "https://www.cnbc.com/2018/01/25/tesla-employees-say-gigafactory-problems-worse-than-known.html"
- },
- {
- "__typename": "Report",
- "authors": ["Chris Velazco"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 445,
- "source_domain": "engadget.com",
- "submitters": ["Anonymous"],
- "title": "Elon Musk agrees robot glut slowed Model 3 production",
- "url": "https://www.engadget.com/2018/04/14/tesla-model-3-too-many-robots/"
- },
- {
- "__typename": "Report",
- "authors": ["Nathan Bomey"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 444,
- "source_domain": "usatoday.com",
- "submitters": ["Anonymous"],
- "title": "Tesla CEO Elon Musk may need to 'rethink' electric-car making strategy",
- "url": "https://www.usatoday.com/story/money/cars/2018/04/02/tesla-elon-musk-electric-cars/472347002/"
- },
- {
- "__typename": "Report",
- "authors": ["Andrew Hobbs"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 443,
- "source_domain": "internetofbusiness.com",
- "submitters": ["Anonymous"],
- "title": "Tesla too reliant on robots for manufacturing Model 3, says Musk",
- "url": "https://internetofbusiness.com/tesla-reliant-on-robots-manufacturing-model-3-says-musk/"
- },
- {
- "__typename": "Report",
- "authors": ["The Inquirer"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 442,
- "source_domain": "theinquirer.net",
- "submitters": ["Anonymous"],
- "title": "Elon Musk admits 'too much automation' is slowing Tesla Model 3 production",
- "url": "https://www.theinquirer.net/inquirer/news/3030277/elon-musk-admits-too-much-automation-is-slowing-tesla-model-3-production"
- },
- {
- "__typename": "Report",
- "authors": ["Reuters Editorial"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 441,
- "source_domain": "uk.reuters.com",
- "submitters": ["Anonymous"],
- "title": "Tesla production pause adds to Model 3 concerns",
- "url": "https://uk.reuters.com/article/us-tesla-stocks/tesla-production-pause-adds-to-model-3-concerns-idUKKBN1HO1QJ"
- },
- {
- "__typename": "Report",
- "authors": ["Joann Muller"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 440,
- "source_domain": "forbes.com",
- "submitters": ["Anonymous"],
- "title": "No Way To Run A Factory: Tesla's Hiring Binge Is A Sign Of Trouble, Not Progress",
- "url": "https://www.forbes.com/sites/joannmuller/2018/05/01/no-way-to-run-a-factory-teslas-hiring-binge-is-a-sign-of-trouble-not-progress/#670b5ef1350d"
- },
- {
- "__typename": "Report",
- "authors": ["Hamza Shaban"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 439,
- "source_domain": "washingtonpost.com",
- "submitters": ["Anonymous"],
- "title": "Tesla temporarily suspends Model 3 production - again",
- "url": "https://www.washingtonpost.com/news/innovations/wp/2018/04/17/tesla-temporarily-suspends-model-3-production-again/?noredirect=on\u0026utm_term=.e9f32f0b17f9"
- },
- {
- "__typename": "Report",
- "authors": [
- "Luke Dormehl",
- "Rick Marshall",
- "Gabe Gurwin",
- "Stephen Edelstein",
- "Aj Dellinger",
- "Ronan Glon"
- ],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 438,
- "source_domain": "digitaltrends.com",
- "submitters": ["Anonymous"],
- "title": "Elon Musk Admits That Tesla Relied Too Much on Robots",
- "url": "https://www.digitaltrends.com/cars/tesla-production-robot-woes/"
- },
- {
- "__typename": "Report",
- "authors": ["Raymond Wong"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 437,
- "source_domain": "mashable.com",
- "submitters": ["Anonymous"],
- "title": "Elon Musk blames Tesla Model 3 'production hell' on over-automation",
- "url": "https://mashable.com/2018/04/14/elon-musk-fixes-model-3-production-problems-more-humans/#PqJYXwFyWPq7"
- },
- {
- "__typename": "Report",
- "authors": ["Dana Hull"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 436,
- "source_domain": "bloomberg.com",
- "submitters": ["Anonymous"],
- "title": "Musk Says Excessive Automation Was ‘My Mistake’",
- "url": "https://www.bloomberg.com/news/articles/2018-04-13/musk-tips-his-tesla-cap-to-humans-after-robots-undercut-model-3"
- },
- {
- "__typename": "Report",
- "authors": ["Charles Duhigg"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 435,
- "source_domain": "wired.com",
- "submitters": ["Anonymous"],
- "title": "Dr. Elon \u0026 Mr. Musk: Life Inside Tesla's Production Hell",
- "url": "https://www.wired.com/story/elon-musk-tesla-life-inside-gigafactory/"
- },
- {
- "__typename": "Report",
- "authors": ["Elon Musk"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 434,
- "source_domain": "twitter.com",
- "submitters": ["Anonymous"],
- "title": "Elon Musk on Twitter Blames Excessive Automation",
- "url": "https://twitter.com/elonmusk/status/984882630947753984?lang=en"
- },
- {
- "__typename": "Report",
- "authors": ["Bloomberg"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 433,
- "source_domain": "fortune.com",
- "submitters": ["Anonymous"],
- "title": "Elon Musk Loves Tesla's New Tent Factory. Others Aren't Sure",
- "url": "http://fortune.com/2018/06/25/elon-musk-tesla-tent-factory-model-3/"
- },
- {
- "__typename": "Report",
- "authors": ["Lora Kolodny"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 432,
- "source_domain": "cnbc.com",
- "submitters": ["Anonymous"],
- "title": "Elon Musk’s extreme micromanagement has wasted time and money at Tesla, insiders say",
- "url": "https://www.cnbc.com/2018/10/19/tesla-ceo-elon-musk-extreme-micro-manager.html"
- },
- {
- "__typename": "Report",
- "authors": [
- "Leon Poultney",
- "Sunday April",
- "Will Bedingfield",
- "Katia Moskvitch",
- "Amit Katwala",
- "Crispin Andrews",
- "Sian Bradley",
- "Rosh Kelly"
- ],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 431,
- "source_domain": "wired.co.uk",
- "submitters": ["Anonymous"],
- "title": "Hey Tesla, how hard can it be to actually make a car?",
- "url": "https://www.wired.co.uk/article/tesla-model-3-production-stock-problems-engineering"
- },
- {
- "__typename": "Report",
- "authors": ["Andrew J. Hawkins"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 430,
- "source_domain": "theverge.com",
- "submitters": ["Anonymous"],
- "title": "Tesla relied on too many robots to build the Model 3, Elon Musk says",
- "url": "https://www.theverge.com/2018/4/13/17234296/tesla-model-3-robots-production-hell-elon-musk"
- },
- {
- "__typename": "Report",
- "authors": ["Will Oremus"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 428,
- "source_domain": "slate.com",
- "submitters": ["Anonymous"],
- "title": "Elon Musk says a flufferbot caused the Model 3 delays.",
- "url": "https://slate.com/technology/2018/05/elon-musk-says-a-flufferbot-caused-the-model-3-delays.html"
- },
- {
- "__typename": "Report",
- "authors": ["Linette Lopez"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 426,
- "source_domain": "stuff.co.nz",
- "submitters": ["Anonymous"],
- "title": "The robots are killing Tesla",
- "url": "https://www.stuff.co.nz/business/world/102700612/the-robots-are-killing-tesla"
- },
- {
- "__typename": "Report",
- "authors": ["Bettina Büchel", "Dario Floreano"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 425,
- "source_domain": "theconversation.com",
- "submitters": ["Anonymous"],
- "title": "overestimating automation, underestimating humans",
- "url": "https://theconversation.com/teslas-problem-overestimating-automation-underestimating-humans-95388"
- },
- {
- "__typename": "Report",
- "authors": ["Carlos E. Perez"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 424,
- "source_domain": "medium.com",
- "submitters": ["Anonymous"],
- "title": "Tesla’s Factory Woes Reveals Why You Shouldn’t Automate Everything",
- "url": "https://medium.com/intuitionmachine/teslas-factory-failures-reveals-why-you-shouldn-t-automate-everything-16c54e7f9f16"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "delhi-metro-rail-corporation",
- "name": "Delhi Metro Rail Corporation"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "unknown",
- "name": "Unknown"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "delhi-metro-rail-corporation",
- "name": "Delhi Metro Rail Corporation"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [
- 483, 482, 481, 480, 479, 477, 476, 475, 474, 473, 472, 471, 470, 469, 468, 467, 466,
- 465, 464, 463, 462, 461, 460, 459, 458, 457, 456, 455, 454
- ],
- "vector": [
- -0.08871421962976456, 0.06574131548404694, 0.028865568339824677, -0.1129990890622139,
- 0.08653983473777771, -0.058896973729133606, 0.024543756619095802, 0.03534264117479324,
- 0.00229376251809299, -0.143479123711586, -0.017448822036385536, 0.02880370244383812,
- 0.012991286814212799, -0.08898495137691498, 0.05216124653816223, -0.13108406960964203,
- -0.0609317310154438, -0.03038952872157097, -0.00651992904022336, -0.0722537487745285,
- -0.08258078992366791, 0.0016564459074288607, 0.021215124055743217, 0.05143929645419121,
- -0.049301158636808395, 0.03377486765384674, 0.07823420315980911, 0.15105053782463074,
- -0.07223659753799438, 0.04401613026857376, -0.007680920884013176, -0.04180676490068436,
- 0.12843066453933716, 0.062393005937337875, 0.0008068663300946355, 0.08167053759098053,
- 0.04944001883268356, -0.00428891321644187, -0.07716018706560135, 0.014506619423627853,
- 0.029066411778330803, 0.20188041031360626, 0.01437982078641653, -0.10689929127693176,
- 0.07699475437402725, -0.0272442027926445, 0.03760022297501564, 0.04950404912233353,
- 0.039867207407951355, 0.02853379026055336, -0.023811081424355507, 0.0915575847029686,
- -0.02092444896697998, 0.02056318148970604, -0.07806278020143509, 0.014953604899346828,
- 0.03392986208200455, 0.004604375921189785, 0.09871736913919449, -0.09990376234054565,
- -0.01970100961625576, -0.19162937998771667, -0.054266031831502914, -0.07025659829378128,
- 0.1091710552573204, -0.11983199417591095, -0.028463536873459816, 0.017079567536711693,
- 0.006432477850466967, 0.09042897075414658, 0.05392339453101158, -0.03568859398365021,
- -0.001890496234409511, -0.051743365824222565, -0.0058715627528727055,
- 0.023532621562480927, -0.013504605740308762, 0.2784804701805115, -0.1574338972568512,
- -0.030523600056767464, 0.07269375026226044, -0.10449634492397308, 0.3741318881511688,
- 0.027134917676448822, -0.01922653242945671, -0.05587204545736313, 0.12013623863458633,
- 0.010598858818411827, 0.07828826457262039, 0.08658163249492645, 0.02474907413125038,
- 0.029943929985165596, 0.006790298968553543, 0.02630007639527321, 0.04840797930955887,
- 0.06322360783815384, -0.042603999376297, 0.06518232822418213, 0.020939838141202927,
- -0.023671453818678856, 0.04455196112394333, -0.04796576127409935, 0.06339755654335022,
- 0.029116235673427582, -0.032095856964588165, -0.010719281621277332, 0.11516835540533066,
- -0.03973094001412392, 0.047161635011434555, 0.009117035195231438, 0.015339971520006657,
- 0.04749450460076332, 0.06748337298631668, 0.0227742251008749, -0.000425052538048476,
- -0.054313790053129196, 0.02039961703121662, 0.045875098556280136, 0.07363484054803848,
- 0.007749597541987896, 0.028566060587763786, 0.045134980231523514, 0.09060807526111603,
- -0.006969481706619263, 0.055837977677583694, -0.052152909338474274,
- -0.010869437828660011, -0.018091248348355293, -0.07300582528114319,
- -0.014450720511376858, -0.07578187435865402, -0.23823004961013794, -0.01545187272131443,
- 0.04265477508306503, 0.02933363988995552, -0.008975896053016186, 0.02565653622150421,
- 0.0009133547428064048, 0.021093422546982765, -0.04359666258096695, -0.02840714156627655,
- 0.07871882617473602, 0.010540965013206005, 0.08581861108541489, 0.06317338347434998,
- 0.07693306356668472, -0.02449844405055046, -0.06898738443851471, 0.026710284873843193,
- 0.030364759266376495, 0.10945500433444977, -0.13132892549037933, 0.00313361594453454,
- 0.02555546723306179, -0.018496422097086906, 0.6482697129249573, 0.09624022245407104,
- 0.18397824466228485, 0.03588707745075226, -0.06252609938383102, 0.1404271125793457,
- 0.06988691538572311, -0.0030944522004574537, -0.05610647797584534, -0.07762080430984497,
- 0.012000332586467266, -0.06365839391946793, -0.010357048362493515, 0.014315998181700706,
- 0.012451990507543087, 0.09174209088087082, 0.06956803053617477, 0.08679824322462082,
- -0.020998163148760796, -0.08400165289640427, -0.07057400047779083, 0.07456888258457184,
- 0.0008225199417211115, -0.12339157611131668, -0.01924935169517994, 0.05476820841431618,
- 0.09410184621810913, -0.04995637387037277, 0.03628774359822273, 0.01153072901070118,
- 0.027747927233576775, 0.016472933813929558, 0.06492850184440613, -0.053679753094911575,
- -0.04906778037548065, 0.030422629788517952, 0.03823879733681679, 0.033497054129838943,
- -0.056135598570108414, -0.053326237946748734, 0.1268584281206131, 0.037672821432352066,
- 0.01827438734471798, 0.0606289766728878, -0.117150217294693, -0.04209628701210022,
- -0.07011690735816956, 0.1337287276983261, -0.11539436876773834, 0.03701453655958176,
- 0.01902683824300766, -0.013765852898359299, 0.058065805584192276, -0.02761026658117771,
- -0.05976513400673866, -0.02254551276564598, 0.08010019361972809, 0.04501320421695709,
- 0.08348341286182404, 0.09032148122787476, -0.01178156677633524, 0.020564476028084755,
- 0.12734684348106384, -0.005446761846542358, -0.0015570494579151273, 0.04886724799871445,
- 0.0287929754704237, -0.02983127161860466, 0.04704545438289642, -0.00722134206444025,
- -0.0031328832264989614, 0.02126033790409565, -0.021614518016576767,
- 0.014471865259110928, 0.000979080912657082, -0.03341304138302803, 0.015304353088140488,
- 0.0007095006876625121, 0.06898314505815506, 0.09489811956882477, -0.047154974192380905,
- -0.059236880391836166, -0.021407809108495712, -0.020629411563277245,
- 0.044004056602716446, -0.0368013009428978, 0.12014318257570267, 0.083157479763031,
- 0.06733919680118561, 0.05800141021609306, 0.015231597237288952, 0.00539042241871357,
- 0.07878709584474564, 0.04334796220064163, 0.05441378057003021, -0.05754450336098671,
- -0.13484185934066772, -0.0363096222281456, -0.020405875518918037, 0.04398056119680405,
- 0.015270459465682507, -0.09346979111433029, -0.03300630301237106, -0.008381198160350323,
- -0.0605337880551815, -0.07008003443479538, -0.017169874161481857, 0.02813488058745861,
- 0.04158917814493179, -0.03231349587440491, -0.08492977172136307, -0.05829335004091263,
- -0.0030977597925812006, 0.08180329948663712, -0.002157686511054635,
- 0.007104628719389439, -0.1059892326593399, -0.0750720351934433, 0.025167496874928474,
- 0.02213956043124199, 0.004290916956961155, -0.00559241184964776, 0.009874948300421238,
- -0.05653257295489311, 0.05117926001548767, -0.03843756020069122, -0.024679752066731453,
- -0.11454441398382187, -0.11734964698553085, -0.08436573296785355, 0.06425033509731293,
- -0.0037584672681987286, 0.014160525985062122, 0.052098583430051804,
- 0.045639246702194214, 0.00428013876080513, 0.009874071925878525, 0.01733819581568241,
- 0.029643597081303596, -0.038628991693258286, -0.04859631508588791, 0.0721561387181282,
- -0.017566241323947906, 0.045933209359645844, -0.011581129394471645,
- -0.051765892654657364, -0.0528591051697731, 0.0343228317797184, -0.07736028730869293,
- -0.04200788959860802, -0.06676662713289261, -0.002906158799305558,
- -0.021783430129289627, -0.013699294999241829, 0.09217669814825058, -0.08240435272455215,
- -0.030538735911250114, -0.08383312821388245, 0.11357187479734421, 0.010664939880371094,
- 0.020064428448677063, 0.03162062168121338, -0.061270371079444885, -0.006705818697810173,
- -0.061956629157066345, 0.005394083447754383, -0.0313979834318161, 0.12844505906105042,
- -0.05219559744000435, -0.08384591341018677, 0.007190740201622248, 0.020629657432436943,
- -0.01826382987201214, 0.109514981508255, 0.4503875970840454, -0.18729214370250702,
- 0.04023478925228119, 0.10064046829938889, 0.0022197032812982798, 0.09233589470386505,
- -0.03569018840789795, 0.07393035292625427, 0.05468260496854782, 0.0861164778470993,
- 0.13859440386295319, -0.02009926363825798, 0.005658448673784733, -0.08231719583272934,
- 0.10613653808832169, 0.030873799696564674, -0.01372892688959837, 0.0016805336344987154,
- -0.0355994813144207, -0.008930799551308155, 0.0009519726154394448, -0.06495117396116257,
- -0.044258393347263336, -0.030470382422208786, -0.05009712278842926,
- 0.00013859325554221869, 0.0590798519551754, -0.0019032889977097511,
- -0.004440679680556059, 0.0005186082562431693, -0.09502977132797241, 0.022108044475317,
- -0.0017987664323300123, 0.074687659740448, -0.12764789164066315, 0.10246279835700989,
- -0.1163388267159462, -0.0661861002445221, 0.13229750096797943, -0.007947088219225407,
- 0.040376774966716766, 0.07774675637483597, -0.05271175131201744, 0.03092600777745247,
- -0.004438497591763735, -0.0060224346816539764, 0.03457867354154587, 0.03651871532201767,
- 0.0505424365401268, 0.05835014209151268, 0.18163669109344482, -0.04833952710032463,
- -0.04356655105948448, -0.08331768214702606, 0.032101746648550034, 0.10186097770929337,
- -0.033738963305950165, -0.03565036132931709, -0.038831714540719986,
- -0.02767050266265869, 0.019869232550263405, -0.02399049885571003, -0.10967480391263962,
- -0.0009112643310800195, -0.05107469484210014, 0.07137160748243332, 0.02302365005016327,
- -0.01658451184630394, -0.18073901534080505, -0.03529202193021774, -0.016793008893728256,
- 0.02127789705991745, 0.07209230959415436, -0.0702894777059555, -0.0013945938553661108,
- -0.022859040647745132, -0.01922556944191456, 0.06355346739292145, -0.10689059644937515,
- 0.026981767266988754, -0.11662685126066208, 0.07807070761919022, 0.01620487868785858,
- 0.06490423530340195, -0.06982333213090897, 0.04638836532831192, -0.05209554731845856,
- 0.07396712899208069, 0.03272192180156708, 0.0505971685051918, 0.03680402413010597,
- -0.037472594529390335, 0.013013587333261967, 0.038082368671894073,
- -0.022517867386341095, 0.0416281595826149, -0.008804989978671074, -0.01155675295740366,
- -0.09087954461574554, -0.06803984940052032, -0.02303769625723362, -0.06426432728767395,
- 0.05270225182175636, -0.0762631744146347, -0.054186973720788956, -0.031234288588166237,
- 0.022914526984095573, -0.009480834007263184, 0.02487201802432537, 0.04711509868502617,
- -0.13760381937026978, -0.008300166577100754, -0.0011208635987713933,
- 0.12543047964572906, -0.013547728769481182, -0.006981284357607365, 0.040604785084724426,
- 0.14125999808311462, 0.056888993829488754, -0.004270646721124649, 0.03931581601500511,
- -0.06215015798807144, 0.0295708030462265, -0.08367560058832169, -0.49104243516921997,
- 0.03454885259270668, -0.011146618984639645, 0.036521267145872116, 0.02217080444097519,
- -0.031450897455215454, 0.05316430702805519, 0.012397011741995811, -0.012921405956149101,
- 0.0780988484621048, -0.07140274345874786, 0.011183132417500019, -0.015069248154759407,
- -0.0642007440328598, -0.007688760291785002, -0.0833575651049614, -0.013881784863770008,
- 0.041520942002534866, -0.04461204633116722, -0.07908977568149567, -0.13875356316566467,
- 0.039280254393815994, -0.029353193938732147, -0.008089817129075527,
- -0.00048445010907016695, -0.004915361758321524, -0.06378906965255737,
- -0.02511216513812542, 0.043483562767505646, 0.0057185436598956585, 0.015134654939174652,
- -0.07165858894586563, -0.041163716465234756, 0.08047238737344742, -0.017423518002033234,
- 0.10420779883861542, 0.010374403558671474, 0.012020842172205448, -0.041791997849941254,
- 0.08305734395980835, 0.03190824016928673, 0.18550240993499756, -0.042584117501974106,
- 0.06348113715648651, 0.01123338658362627, 0.09932813793420792, 0.017631543800234795,
- 0.016661325469613075, -0.04215678945183754, 0.05017625167965889, 0.017333531752228737,
- -0.0010688082547858357, 0.05450616031885147, -0.029145557433366776,
- -0.048840705305337906, -0.028819700703024864, 0.03569081425666809, -0.01856314018368721,
- 0.03185577690601349, 0.17001208662986755, 0.017723189666867256, 0.0450291633605957,
- 0.018324121832847595, -0.055049024522304535, 0.01825493574142456, 0.008178802207112312,
- -0.11195947229862213, -0.08496468514204025, -0.003393329679965973, 0.02972407452762127,
- -0.022068962454795837, -0.07894060015678406, 0.011920571327209473,
- -0.037666626274585724, -0.022058432921767235, 0.0411171093583107, -0.014589495956897736,
- 0.010519428178668022, -0.0498872734606266, 0.06798834353685379, 0.05025894194841385,
- 0.03127598389983177, 0.04953502118587494, 0.0744752585887909, 0.0038648468907922506,
- -0.060249004513025284, -0.02614891529083252, -0.033720072358846664, 0.06267213076353073,
- 0.1323377937078476, -0.025944022461771965, 0.11740175634622574, 0.03921216353774071,
- -0.019778991118073463, -0.0803774744272232, 0.03183474391698837, -0.007703091483563185,
- 0.032596997916698456, -0.5414857268333435, -0.010032144375145435, 0.1057344526052475,
- 0.01963423192501068, 0.010012070648372173, 0.06775419414043427, 0.05037330836057663,
- -0.04222773015499115, 0.05663880705833435, -0.0866459533572197, 0.12194574624300003,
- -0.02738109603524208, 0.06281695514917374, -0.11224398761987686, 0.008525730110704899,
- 0.08115369826555252, -0.044198647141456604, -0.01232875231653452, 0.03546452149748802,
- -0.2709791958332062, 0.017530197277665138, -0.12848567962646484, 0.16711395978927612,
- 0.025667687878012657, 0.06307344138622284, 0.03162829577922821, -0.029317378997802734,
- 0.11332189291715622, 0.06103050336241722, 0.013410606421530247, 0.10076475888490677,
- 0.0152363246306777, -0.07117878645658493, 0.06796993315219879, 0.03784218430519104,
- 0.09065032750368118, -0.002424387028440833, 12.006967544555664, 0.07844898849725723,
- 0.07159841805696487, -0.050641562789678574, 0.01884710229933262, -0.06745480746030807,
- 0.01944751851260662, -0.10052945464849472, 0.033947721123695374, 0.09905833005905151,
- 0.01768234744668007, -0.0729791447520256, 0.0006881244480609894, -0.11138525605201721,
- 0.003609736217185855, -0.036092549562454224, -0.0635421872138977, -0.12176292389631271,
- 0.05591791123151779, -0.04802999645471573, -0.003808498615399003, 0.03877316787838936,
- 0.060331251472234726, 0.05630272999405861, -0.04931391775608063, 0.049849770963191986,
- 0.07009334117174149, -0.06329475343227386, 0.009798145852982998, 0.025025857612490654,
- 0.02034679986536503, 0.04597980156540871, 0.010661083273589611, 0.09048786759376526,
- 0.030240077525377274, 0.028661305084824562, -0.010051198303699493, 0.017053408548235893,
- 0.04349597916007042, 0.08012609928846359, 0.05633339658379555, 0.03201598301529884,
- 0.042248375713825226, 0.07110162079334259, -0.006825454067438841, 0.05434264987707138,
- 0.04198204725980759, 0.12117151916027069, -0.009527182206511497, -0.0038312235847115517,
- 0.0940442755818367, -0.005431708414107561, 0.09492722153663635, -0.02013981342315674,
- 0.057599686086177826, 0.09894192963838577, -0.007345336955040693, -0.0687299370765686,
- 0.10229980200529099, 0.12932553887367249, -0.028496963903307915, 0.03719434514641762,
- 0.0352928601205349, 0.08483851701021194, -0.09451133757829666, 0.05234294384717941,
- 0.11649157106876373, 0.039120182394981384, -0.14115427434444427, 0.0004119057848583907,
- -0.004109510686248541, -0.10450912266969681, -0.06183149665594101, -0.02542680874466896,
- 0.03359035402536392, -0.056415945291519165, 0.032981641590595245, -0.03892906755208969,
- 0.030590029433369637, -0.029102956876158714, -0.019429149106144905, 0.05126767233014107,
- -0.0544377863407135, 0.005377586465328932, 0.0672849714756012, 0.05066557601094246,
- 0.10126342624425888, 0.07523664832115173, -0.0010343503672629595, -0.05784383788704872,
- -0.08958055824041367, 0.10251090675592422, -0.00013761890295427293,
- -0.09574244171380997, -0.020540399476885796, -0.06664221733808517, 0.027566267177462578,
- -0.16145214438438416, 0.07681300491094589, 0.06944606453180313, -0.12232714146375656,
- -0.01635364443063736, -0.03964603692293167, 0.020573044195771217, -0.04545433819293976,
- 0.010702568106353283, -0.07875395566225052, 0.029865089803934097, 0.0044829146936535835,
- 0.015358407981693745, 0.009693635627627373, 0.07557637989521027, 0.08109501004219055,
- -0.0397954098880291, 0.07737883925437927, 0.023493457585573196, -0.012970083393156528,
- -0.04842028394341469, 0.015719570219516754, 0.015795094892382622, -0.04158029705286026,
- -0.0357590913772583, -0.07032349705696106, -0.0857781246304512, -0.05750004202127457,
- -0.03316708654165268, -0.00574177410453558, 0.03150896355509758, -0.031473927199840546,
- -0.017973383888602257, 0.025013819336891174, 0.06079557538032532, 0.036175090819597244,
- 0.04284599795937538, 0.054979514330625534, -0.06657340377569199, -0.02319386415183544,
- 0.0644555538892746, 0.0486106351017952, 0.075750432908535, -0.008971662260591984,
- -0.06539399921894073, -0.036106545478105545, -0.12502898275852203, 0.06230815872550011,
- 0.08621880412101746, 0.03460004925727844, 0.07003143429756165, 0.07479412108659744,
- -0.06963710486888885, -0.07588157057762146, 0.09854454547166824, 0.06279680877923965,
- 0.017822787165641785, 0.007813864387571812, -0.0810755118727684, -0.025709060952067375,
- 0.1754586547613144, -0.0005713975406251848, -0.006109005771577358, 0.009651594795286655,
- -0.02956835925579071, 0.0934193953871727, 0.07984358817338943, 0.05193452909588814,
- 0.055371347814798355, -0.019986845552921295, 0.027280563488602638,
- -0.038012318313121796, -0.04292451962828636, 0.012194334529340267, 0.012855988927185535,
- -0.14278633892536163, -0.05798029527068138, 0.04485084116458893, 0.07817147672176361,
- -0.010462936013936996, -0.12076129764318466, -0.015140888281166553, -0.08227995038032532
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 31,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 69,
- "similarity": 0.9987372159957886
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 68,
- "similarity": 0.9978534579277039
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 24,
- "similarity": 0.997834324836731
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["FE Online"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 483,
- "source_domain": "financialexpress.com",
- "submitters": ["Anonymous"],
- "title": "Delhi Metro accident today: Driverless Magenta line train crashes through wall; Read full statement",
- "url": "https://www.financialexpress.com/india-news/delhi-metro-accident-today-driverless-magenta-line-train-crashes-through-wall-read-full-statement/981738/"
- },
- {
- "__typename": "Report",
- "authors": ["India Today Web Desk"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 482,
- "source_domain": "indiatoday.in",
- "submitters": ["Anonymous"],
- "title": "Keep calm, driverless trains did not cause Magenta Line crash, says Delhi Metro",
- "url": "https://www.indiatoday.in/india/story/delhi-metro-says-magenta-line-train-crash-not-because-of-driverless-trains-1112703-2017-12-20"
- },
- {
- "__typename": "Report",
- "authors": ["India Business Today"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 481,
- "source_domain": "businesstoday.in",
- "submitters": ["Anonymous"],
- "title": "Driverless train of Delhi Metro's Magenta Line crashes into wall 6 days before inauguration by PM Modi",
- "url": "https://www.businesstoday.in/current/economy-politics/driverless-train-delhi-metro-magenta-line-crashes-wall-6-days-before-inauguration-pm-modi/story/266320.html"
- },
- {
- "__typename": "Report",
- "authors": ["Faizan Haidar"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 480,
- "source_domain": "hindustantimes.com",
- "submitters": ["Anonymous"],
- "title": "Magenta line: Delhi Metro blames human error for driverless train crash, suspends 4",
- "url": "https://www.hindustantimes.com/delhi-news/metro-suspends-four-for-kalindi-kunj-crash-says-operation-will-not-be-affected/story-0BB5EtySakNY2VTNjpl2lM.html"
- },
- {
- "__typename": "Report",
- "authors": ["HT Correspondent"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 479,
- "source_domain": "hindustantimes.com",
- "submitters": ["Anonymous"],
- "title": "Magenta line mishap: Delhi Metro train on trial run breaks through wall at Kalindi Kunj",
- "url": "https://www.hindustantimes.com/delhi-news/metro-train-on-trial-run-breaks-through-wall-at-kalindi-kunj-on-magenta-line/story-e8Uj7gz7T0Le0IoBTXCuRJ.html"
- },
- {
- "__typename": "Report",
- "authors": ["Times of India"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 477,
- "source_domain": "timesofindia.indiatimes.com",
- "submitters": ["Anonymous"],
- "title": "Driverless Delhi Metro's Magenta Line train rams into wall during trial",
- "url": "https://timesofindia.indiatimes.com/city/delhi/delhi-metro-train-rams-into-wall-during-trial-run/articleshow/62135701.cms"
- },
- {
- "__typename": "Report",
- "authors": ["Pallavi Parmar"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 476,
- "source_domain": "newsfolo.com",
- "submitters": ["Anonymous"],
- "title": "Delhi's first driverless Metro crashed; DMRC suspends four officials",
- "url": "https://www.newsfolo.com/india/delhis-first-driverless-metro-crashed-dmrc-suspends-four-officials/132806/"
- },
- {
- "__typename": "Report",
- "authors": ["SNS Web"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 475,
- "source_domain": "thestatesman.com",
- "submitters": ["Anonymous"],
- "title": "Mishap on Delhi Metro's yet-to-be-opened Magenta Line",
- "url": "https://www.thestatesman.com/cities/mishap-delhi-metros-yet-opened-magenta-line-1502547898.html"
- },
- {
- "__typename": "Report",
- "authors": ["Sanchita Jain"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 474,
- "source_domain": "inshorts.com",
- "submitters": ["Anonymous"],
- "title": "Driverless Delhi Metro train rams into wall during trial run",
- "url": "https://inshorts.com/en/news/driverless-delhi-metro-train-rams-into-wall-during-trial-run-1513688443041"
- },
- {
- "__typename": "Report",
- "authors": ["WION Web Team"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 473,
- "source_domain": "wionews.com",
- "submitters": ["Anonymous"],
- "title": "Rohit Sharma takes dig at Delhi Metro after driverless train crashes into wall",
- "url": "http://www.wionews.com/sports/rohit-sharma-takes-dig-at-delhi-metro-after-driverless-train-crashes-into-wall-27267"
- },
- {
- "__typename": "Report",
- "authors": ["Abp News Bureau"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 472,
- "source_domain": "abplive.in",
- "submitters": ["Anonymous"],
- "title": "Delhi: Driverless metro train runs backwards, crashes through wall during trail run",
- "url": "https://www.abplive.in/india-news/delhi-driverless-metro-train-derails-crashes-into-wall-during-trail-run-621505"
- },
- {
- "__typename": "Report",
- "authors": ["Indo-Asian News Service"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 471,
- "source_domain": "thequint.com",
- "submitters": ["Anonymous"],
- "title": "Four sacked for Delhi Metro accident",
- "url": "https://www.thequint.com/news/hot-news/four-sacked-for-delhi-metro-accident#gs.oCPSyb4d"
- },
- {
- "__typename": "Report",
- "authors": ["Xinhua"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 470,
- "source_domain": "xinhuanet.com",
- "submitters": ["Anonymous"],
- "title": "Driverless metro train in Indian capital crashes into wall on test run",
- "url": "http://www.xinhuanet.com//english/2017-12/19/c_136838074.htm"
- },
- {
- "__typename": "Report",
- "authors": ["Special Correspondent"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 469,
- "source_domain": "telegraphindia.com",
- "submitters": ["Anonymous"],
- "title": "Delhi Metro crash",
- "url": "https://www.telegraphindia.com/india/delhi-metro-crash/cid/1329759"
- },
- {
- "__typename": "Report",
- "authors": ["TheWeekendLeader"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 468,
- "source_domain": "theweekendleader.com",
- "submitters": ["Anonymous"],
- "title": "Accident on Delhi Metro new line during trials",
- "url": "http://www.theweekendleader.com/Headlines/11805/accident-on-delhi-metro-new-line-during-trials.html"
- },
- {
- "__typename": "Report",
- "authors": ["Metro Rail News"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 467,
- "source_domain": "metrorailnews.in",
- "submitters": ["Anonymous"],
- "title": "Delhi Metro | DMRC suspends four officials, found responsible for driverless metro crash",
- "url": "https://www.metrorailnews.in/delhi-metro-dmrc-suspends-four-officials-found-responsible-driverless-metro-crash/"
- },
- {
- "__typename": "Report",
- "authors": ["Times of India"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 466,
- "source_domain": "timesofindia.indiatimes.com",
- "submitters": ["Anonymous"],
- "title": "DMRC suspends 4 employees after Metro breaks through depot wall",
- "url": "https://timesofindia.indiatimes.com/city/delhi/dmrc-suspends-4-employees-after-metro-breaks-through-depot-wall/articleshow/62181662.cms"
- },
- {
- "__typename": "Report",
- "authors": ["Anupama Airy"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 465,
- "source_domain": "energyinfrapost.com",
- "submitters": ["Anonymous"],
- "title": "Delhi Metro Accident: Driverless Magenta Line Train Runs Into Wall During Trial Run",
- "url": "http://energyinfrapost.com/live-delhi-metro-accident-driverless-magenta-line-train-runs-wall-trial-run-watch-video/"
- },
- {
- "__typename": "Report",
- "authors": ["Nikita Roy"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 464,
- "source_domain": "india.com",
- "submitters": ["Anonymous"],
- "title": "Delhi Metro Accident: Driverless Magenta Line train Crashes Into Wall, Twitter Erupts With Funny Memes and Jokes",
- "url": "https://www.india.com/buzz/delhi-metro-accident-driverless-magenta-line-train-crashes-into-wall-twitter-erupts-with-funny-memes-and-jokes-2775820/"
- },
- {
- "__typename": "Report",
- "authors": ["Times Now Bureau"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 463,
- "source_domain": "timesnownews.com",
- "submitters": ["Anonymous"],
- "title": "SHOCKING: Trial run of Delhi metro's new Magenta Line ends in mishap, train RAMS into wall - WATCH",
- "url": "https://www.timesnownews.com/india/video/delhi-metro-kalkaji-line-botanical-garden-magenta-line-metro-in-delhi-metro-metro-station-metro-accident-driverless-metro-train-exclusive-visuals/179784"
- },
- {
- "__typename": "Report",
- "authors": ["RT"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 462,
- "source_domain": "rt.com",
- "submitters": ["Anonymous"],
- "title": "‘Human error’: Indian driverless metro train plows through depot wall (VIDEO)",
- "url": "https://www.rt.com/news/413662-india-driverless-train-crash/"
- },
- {
- "__typename": "Report",
- "authors": ["India TV Trending Desk"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 461,
- "source_domain": "indiatvnews.com",
- "submitters": ["Anonymous"],
- "title": "Driverless Delhi metro breaks through the wall, Twitterati erupt with hilarious memes!",
- "url": "https://www.indiatvnews.com/buzz/news-driverless-delhi-metro-magenta-line-accident-trolls-and-memes-418159"
- },
- {
- "__typename": "Report",
- "authors": ["Scroll Staff"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 460,
- "source_domain": "scroll.in",
- "submitters": ["Anonymous"],
- "title": "Unmanned Delhi Metro train on trial run crashes through the wall of a depot",
- "url": "https://scroll.in/latest/862035/unmanned-delhi-metro-train-on-trial-run-crashes-through-the-wall-of-a-depot"
- },
- {
- "__typename": "Report",
- "authors": ["Ani"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 459,
- "source_domain": "newindianexpress.com",
- "submitters": ["Anonymous"],
- "title": "Delhi Magenta line Metro train accident: DMRC suspends four officials",
- "url": "http://www.newindianexpress.com/cities/delhi/2017/dec/20/delhi-magenta-line-metro-train-accident-dmrc-suspends-four-officials-1732752.html"
- },
- {
- "__typename": "Report",
- "authors": ["Ashutosh Tripathi"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 458,
- "source_domain": "news18.com",
- "submitters": ["Anonymous"],
- "title": "Delhi Metro's Driverless Magenta Line Train Crashes Into Wall, DMRC Calls it Human Error",
- "url": "https://www.news18.com/news/india/delhi-metro-magenta-line-train-crashes-into-wall-6-days-before-pm-narendra-modi-was-to-inaugurate-it-1608925.html"
- },
- {
- "__typename": "Report",
- "authors": ["Indo-Asian News Service"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 457,
- "source_domain": "business-standard.com",
- "submitters": ["Anonymous"],
- "title": "Driverless Delhi Metro's magenta line train crashes a week before launch",
- "url": "https://www.business-standard.com/article/current-affairs/driverless-delhi-metro-s-magenta-line-train-crashes-a-week-before-launch-117121901059_1.html"
- },
- {
- "__typename": "Report",
- "authors": ["DailyO"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 456,
- "source_domain": "dailyo.in",
- "submitters": ["Anonymous"],
- "title": "Why driverless Delhi Metro train crashing into a wall is worrisome",
- "url": "https://www.dailyo.in/variety/delhi-metro-metro-accident-metro-safety-public-transport-magenta-line/story/1/21255.html"
- },
- {
- "__typename": "Report",
- "authors": ["Mukesh Singh Sengar"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 455,
- "source_domain": "ndtv.com",
- "submitters": ["Anonymous"],
- "title": "Delhi Metro's Driverless Magenta Line Train Crashes Days Before Launch By PM Modi",
- "url": "https://www.ndtv.com/india-news/delhi-metros-magenta-line-crashes-into-wall-during-test-run-1789709"
- },
- {
- "__typename": "Report",
- "authors": ["Srishti Deoras"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 454,
- "source_domain": "analyticsindiamag.com",
- "submitters": ["Anonymous"],
- "title": "Top 5 AI Failures From 2017 Which Prove That ‘Perfect AI’ Is Still A Dream",
- "url": "https://www.analyticsindiamag.com/top-5-ai-failures-from-2017-which-prove-that-perfect-ai-is-still-a-dream/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "apple",
- "name": "Apple"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "apple",
- "name": "Apple"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "people-with-twins",
- "name": "People with Twins"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [
- 1361, 503, 502, 501, 500, 499, 498, 497, 496, 495, 494, 493, 492, 491, 490, 489, 488,
- 487, 486, 485, 484
- ],
- "vector": [
- -0.0694117397069931, 0.09781334549188614, 0.0017280923202633858, -0.13887563347816467,
- 0.05620592460036278, -0.029788192361593246, -0.0032075392082333565, 0.04478263482451439,
- 0.08206743001937866, -0.11291594803333282, -0.017910176888108253, 0.05694565922021866,
- 0.015372219495475292, -0.04234551638364792, 0.030972018837928772, -0.0693206936120987,
- -0.10043627768754959, -0.04320430010557175, -0.014716411009430885, -0.10258276015520096,
- -0.0917426198720932, -0.0244965348392725, 0.02376430109143257, 0.1297554075717926,
- -0.07239480316638947, 0.010415623895823956, 0.1084146499633789, 0.08571255207061768,
- -0.046310923993587494, 0.050063326954841614, -0.008545197546482086,
- -0.07348762452602386, 0.10872860997915268, 0.016394013538956642, 0.028133869171142578,
- 0.11083574593067169, -0.000517337815836072, -0.01665993593633175, -0.048708777874708176,
- -0.01479613222181797, 0.016833767294883728, 0.2237025499343872, 0.014141366817057133,
- -0.02234574966132641, 0.052617352455854416, -0.029847459867596626, 0.036260850727558136,
- 0.047304026782512665, -0.01747208461165428, -0.0033103879541158676,
- -0.00014669053780380636, 0.03717653080821037, -0.06833022832870483,
- 0.022824272513389587, -0.10867933928966522, 0.05240790173411369, 0.014504922553896904,
- 0.004468632861971855, 0.03642524406313896, -0.08395632356405258, -0.018437210470438004,
- -0.19959808886051178, -0.05105936527252197, -0.04702356457710266, 0.07316148281097412,
- -0.06856647878885269, -0.03368900343775749, 0.015996703878045082, 0.028153738006949425,
- 0.06345564872026443, 0.08537296205759048, -0.02858838625252247, -0.029454585164785385,
- -0.01662551797926426, -0.014359642751514912, -0.009990520775318146,
- -0.012263151817023754, 0.21497714519500732, -0.1042240783572197, -0.00700790248811245,
- 0.12816619873046875, -0.1117805615067482, 0.3725397288799286, 0.012333002872765064,
- -0.02660122886300087, -0.03315464034676552, 0.07473091036081314, 0.025339705869555473,
- 0.03104056417942047, 0.0177706778049469, -0.04184266924858093, 0.01692158356308937,
- -0.06345205754041672, -0.009158583357930183, 0.0662982389330864, 0.04315118119120598,
- -0.015423119068145752, -0.04803091660141945, 0.008309371769428253, -0.0757623016834259,
- 0.0017776066670194268, -0.04362398758530617, 0.09056307375431061, 0.12378517538309097,
- -0.04459049925208092, 0.017841653898358345, 0.019708607345819473, -0.05168098583817482,
- 0.06282209604978561, -0.07886379957199097, 0.04415051266551018, 0.013691341504454613,
- 0.06141853332519531, 0.001084306975826621, 0.028350526466965675, -0.04448477551341057,
- 0.015687083825469017, 0.06836706399917603, 0.09718513488769531, 0.032474324107170105,
- 0.002577247330918908, 0.05829866603016853, 0.06516659259796143, -0.09082920104265213,
- -0.022457849234342575, -0.01790693588554859, -0.06743641942739487, -0.0326700434088707,
- -0.042784638702869415, 0.0651722252368927, -0.04784177988767624, -0.2021811157464981,
- 0.05908757075667381, 0.055607788264751434, -0.039077047258615494, -0.039414457976818085,
- 0.024979693815112114, -0.05060694366693497, 0.06489178538322449, -0.006599804386496544,
- -0.08103065937757492, 0.051740940660238266, 0.03109118714928627, 0.043773286044597626,
- 0.11477373540401459, 0.0315549299120903, -0.0486082024872303, -0.03819962218403816,
- -0.00025433074915781617, -0.04440916329622269, 0.10261331498622894, -0.1462600976228714,
- -0.06918460875749588, 0.017637671902775764, -0.06354089081287384, 0.654779851436615,
- 0.07525867223739624, 0.17867180705070496, 0.02472003549337387, -0.010967351496219635,
- 0.17474618554115295, -0.026949124410748482, 0.09996555745601654, -0.07129140198230743,
- -0.054153572767972946, 0.058553941547870636, -0.0698164701461792, -0.04784427210688591,
- 0.042676761746406555, 0.0025613214820623398, 0.07034317404031754, 0.024417616426944733,
- 0.10012342780828476, -0.007802844978868961, -0.08182277530431747, -0.034568969160318375,
- 0.02577841654419899, 0.011617999523878098, -0.11133311688899994, -0.05012299492955208,
- 0.055259834975004196, 0.08036388456821442, -0.10336475074291229, 0.013580836355686188,
- -0.08312118798494339, 0.057178180664777756, 0.009867106564342976, 0.061363499611616135,
- -0.0017454904736950994, 0.015673428773880005, 0.030887071043252945, 0.04681127145886421,
- 0.00601360434666276, -0.07885555922985077, -0.010292510502040386, 0.06469136476516724,
- -0.022618578746914864, -0.0327749140560627, 0.08544372022151947, -0.09509827196598053,
- 0.036292098462581635, -0.016239050775766373, 0.17496554553508759, -0.09178605675697327,
- 0.025338757783174515, -0.004868798423558474, 0.022450720891356468, 0.03266599774360657,
- -0.006252725142985582, -0.05810742825269699, -0.06887947022914886, 0.10054455697536469,
- 0.018417468294501305, 0.033746615052223206, 0.05487756058573723, -0.009633053094148636,
- 0.037899043411016464, 0.09915612637996674, -0.0016157914651557803,
- -0.017582209780812263, 0.05507661774754524, 0.05927871912717819, -0.05348886922001839,
- -0.036669742316007614, 0.036314837634563446, 0.04423061013221741, 0.01112225092947483,
- -0.026523292064666748, 0.057202521711587906, -0.026286229491233826, -0.0695098340511322,
- 0.021838072687387466, 0.05912075564265251, 0.03191781044006348, 0.10108048468828201,
- -0.03679163008928299, -0.02673349529504776, -0.04546728730201721, -0.029351577162742615,
- 0.030170023441314697, -0.06458558887243271, 0.06661034375429153, 0.08834217488765717,
- 0.047407668083906174, 0.006529752630740404, 0.004232511855661869, 0.06120657920837402,
- 0.0904412493109703, 0.04001707583665848, 0.073570117354393, -0.0159885436296463,
- -0.056119777262210846, -0.018119201064109802, 0.0006776020745746791,
- 0.030696051195263863, 0.016499504446983337, -0.08149614930152893, -0.03368467837572098,
- -0.05867602303624153, -0.010624474845826626, -0.09940733015537262,
- -0.039963722229003906, 0.015357627533376217, 0.01637507975101471, -0.05546525493264198,
- -0.08668788522481918, -0.07436808198690414, 0.005987820215523243, 0.08426735550165176,
- -0.02697053737938404, -0.002168687293305993, -0.10747788846492767, 0.00771249458193779,
- -0.036702800542116165, 0.05995103344321251, -0.0033446636516600847,
- 0.0001807362714316696, -0.01107090525329113, -0.04736021161079407, 0.04310596361756325,
- -0.0178156066685915, -0.00410983944311738, -0.0618770532310009, -0.051790084689855576,
- -0.056731440126895905, -0.03959547355771065, -0.012334894388914108,
- -0.04217320680618286, 0.021007653325796127, 0.05927937850356102, 0.04316414147615433,
- 0.0030895229429006577, -0.025662319734692574, 0.06618297845125198, -0.01517245452851057,
- -0.0017293685814365745, 0.07469744980335236, -0.043655555695295334, 0.01682647131383419,
- -0.0476912260055542, -0.07512160390615463, -0.029595965519547462, 0.0166536346077919,
- -0.05801264941692352, 0.04469223693013191, -0.000526310526765883, 0.031221020966768265,
- -0.04689574986696243, -0.02483256720006466, 0.05472022667527199, -0.054155196994543076,
- -0.06704909354448318, -0.06905585527420044, 0.11710002273321152, -0.015417002141475677,
- -0.020730333402752876, 0.042441658675670624, -0.020715894177556038, 0.05321025848388672,
- -0.02658291906118393, 0.0030990454833954573, 0.02092653140425682, 0.0550946444272995,
- -0.005201991647481918, 0.060406655073165894, 0.039301760494709015,
- -0.046178095042705536, 0.01520176324993372, 0.05116685852408409, 0.43412789702415466,
- -0.23519736528396606, 0.07072577625513077, 0.08366890251636505, 0.04486348107457161,
- 0.05944889038801193, -0.0024854049552232027, 0.06464564800262451, 0.07728274911642075,
- 0.1080775037407875, 0.1324833184480667, -0.045788638293743134, -0.009421522729098797,
- -0.07866116613149643, 0.09488798677921295, -0.00919990986585617, 0.01387979555875063,
- -0.010329864919185638, -0.08405066281557083, -0.019404008984565735,
- 0.029371878132224083, -0.029747307300567627, 0.004442625679075718,
- -0.007513673510402441, -0.018123527988791466, 0.0050306180492043495,
- 0.007007916923612356, 0.041461337357759476, -0.0030062436126172543, 0.01380834449082613,
- -0.03356863930821419, 0.038525767624378204, 0.034355416893959045, 0.01987866312265396,
- -0.09987102448940277, 0.02365707978606224, -0.04944784939289093, -0.1088646724820137,
- 0.07619570195674896, -0.004934731870889664, 0.05575353652238846, 0.05472094193100929,
- -0.06617987155914307, 0.03381756320595741, -0.03527435287833214, -0.06141919270157814,
- 0.01482785027474165, 0.07676911354064941, 0.005678511690348387, 0.06723910570144653,
- 0.17318543791770935, -0.03902081772685051, -0.05075864493846893, -0.07105803489685059,
- 0.06437704712152481, 0.13172222673892975, -0.03317777439951897, 0.03073112666606903,
- 0.0017460300587117672, -0.010296156629920006, -0.025939365848898888,
- -0.05613068863749504, -0.08805674314498901, -0.00016197543300222605,
- -0.041081734001636505, 0.11055175215005875, 0.017387142404913902, -0.03420247137546539,
- -0.15395817160606384, -0.055184584110975266, -0.04719342663884163, 0.020135177299380302,
- 0.13366825878620148, -0.08594058454036713, 0.014354267157614231, -0.010185766033828259,
- -0.008527745492756367, -0.007682407274842262, -0.09083956480026245,
- -0.006367160938680172, 0.0013670617481693625, 0.04572606831789017, 0.05293785408139229,
- 0.05478023737668991, 0.006032781209796667, 0.07013827562332153, -0.0800740122795105,
- 0.05312715843319893, 0.015796709805727005, -0.04876284301280975, 0.006824752315878868,
- -0.03978597745299339, 0.04916435107588768, 0.014284629374742508, -0.05161984637379646,
- 0.009338957257568836, -0.036087311804294586, -0.002985995030030608,
- -0.044193003326654434, -0.05666280910372734, -0.03869970887899399, -0.08482618629932404,
- 0.0393303781747818, -0.06419561803340912, 0.010963925160467625, -0.04705730825662613,
- -0.051697731018066406, 0.015987837687134743, 0.01595843955874443, 0.04913446307182312,
- -0.1482083648443222, 0.005172797944396734, 0.0027666562236845493, 0.06233660504221916,
- -0.029151028022170067, -0.025781085714697838, 0.020255232229828835, 0.08801181614398956,
- 0.03698508441448212, -0.027359869331121445, 0.001644368632696569, -0.05149483680725098,
- 0.033479996025562286, -0.11535787582397461, -0.48713788390159607, 0.0668514296412468,
- 0.026901694014668465, 0.006551915779709816, 0.026774581521749496, -0.05765191838145256,
- 0.05761466175317764, 0.03291760012507439, -0.018090741708874702, 0.10657282173633575,
- -0.05704044550657272, 0.021669290959835052, -0.03146993741393089, -0.031176002696156502,
- 0.0004606777220033109, -0.05697174370288849, -0.03729075938463211, 0.0373491607606411,
- -0.007759886793792248, -0.041614167392253876, -0.11946413666009903,
- 0.016722869127988815, -0.03831319138407707, 0.02849915437400341, 0.016318628564476967,
- 0.018463920801877975, -0.04185863211750984, -0.04424773529171944, 0.04268209636211395,
- 0.05379785969853401, 0.034409165382385254, -0.08514782786369324, 0.013750364072620869,
- 0.015893807634711266, 0.013519736006855965, 0.1402035802602768, 0.018066801130771637,
- -0.024963662028312683, -0.05856774374842644, 0.07739455997943878, 0.06933321803808212,
- 0.1863727867603302, -0.019383542239665985, 0.007230972405523062,
- -0.00006789295002818108, 0.14958502352237701, 0.06050670146942139, 0.005169680342078209,
- -0.01653100550174713, 0.009360967203974724, 0.0052717155776917934,
- -0.024485919624567032, 0.09515906125307083, -0.06330885738134384, -0.010098839178681374,
- -0.017337707802653313, -0.004612235818058252, -0.01726854220032692,
- -0.0008958211983554065, 0.19979706406593323, 0.031166354194283485, 0.0278079304844141,
- 0.033041518181562424, -0.01936914585530758, 0.021462073549628258, -0.0712459608912468,
- -0.10937955230474472, 0.010259715840220451, 0.015978405252099037, 0.02451549470424652,
- -0.05535343289375305, -0.13790202140808105, -0.03153896704316139, 0.029651707038283348,
- -0.01333166565746069, 0.09035655111074448, 0.023984113708138466, 0.04984794184565544,
- -0.0441427007317543, 0.11815124750137329, 0.007551788352429867, 0.004553220234811306,
- 0.05388488620519638, 0.09263032674789429, 0.018453409895300865, 0.016970762982964516,
- -0.008836657740175724, -0.06155126541852951, 0.00414199149236083, 0.11995409429073334,
- -0.018927549943327904, 0.1170596033334732, 0.051681581884622574, -0.03481731936335564,
- -0.057681865990161896, 0.02554803155362606, -0.036828141659498215, 0.005791792180389166,
- -0.4858260750770569, -0.0015752156032249331, 0.11906839907169342, 0.0013080283533781767,
- 0.01948324590921402, 0.06972965598106384, 0.009415914304554462, -0.045960262417793274,
- -0.06723292917013168, -0.05741121619939804, 0.11645364761352539, -0.005933826323598623,
- 0.08354014903306961, -0.10701305419206619, 0.03267675265669823, 0.0699753686785698,
- -0.038066159933805466, 0.004433427006006241, 0.06303579360246658, -0.26424920558929443,
- 0.013184812851250172, -0.03684374690055847, 0.11824759840965271, 0.054345302283763885,
- 0.028523899614810944, 0.10494216531515121, -0.030456170439720154, 0.045460816472768784,
- 0.042454905807971954, 0.016150081530213356, 0.07817448675632477, -0.008013097569346428,
- -0.025553513318300247, 0.11094018071889877, 0.09161543101072311, 0.049190737307071686,
- -0.02369021251797676, 11.950664520263672, 0.029107818379998207, 0.03600011393427849,
- -0.08210284262895584, 0.005529819987714291, -0.05747556686401367, 0.02084481716156006,
- -0.0855359360575676, 0.06150700896978378, 0.10637461394071579, -0.00889615248888731,
- -0.05735053867101669, -0.002228409517556429, -0.11362484842538834, 0.040422096848487854,
- -0.0704222023487091, -0.03512312099337578, -0.0436689630150795, 0.059796907007694244,
- -0.03394994139671326, -0.06289373338222504, 0.048895858228206635, 0.05036289989948273,
- 0.018431885167956352, -0.07259563356637955, 0.03250265121459961, 0.007177356630563736,
- -0.006364565342664719, -0.00008169195643858984, 0.030235329642891884,
- -0.008072534576058388, -0.02056853473186493, 0.06098493933677673, -0.01656264066696167,
- 0.05050894245505333, 0.03249131888151169, 0.06756766885519028, 0.06659481674432755,
- 0.020182397216558456, 0.07079647481441498, 0.027756784111261368,
- -0.00031158249475993216, 0.02706005424261093, 0.0051542469300329685,
- 0.07786015421152115, 0.036728452891111374, 0.04420679435133934, 0.13342516124248505,
- -0.0029888805001974106, 0.07803867757320404, 0.10148061066865921, 0.002940442878752947,
- 0.07418133318424225, 0.03188753500580788, -0.01625564880669117, 0.04314308613538742,
- 0.016746459528803825, -0.08501635491847992, 0.08688217401504517, 0.0908164456486702,
- -0.07334131002426147, 0.11173611879348755, 0.02340991050004959, 0.1087227538228035,
- -0.015587481670081615, 0.04859055206179619, 0.05285491794347763, 0.10168331116437912,
- -0.08226528763771057, -0.10596054792404175, 0.04489812254905701, -0.10259348899126053,
- -0.07390179485082626, 0.07750049233436584, 0.10712484270334244, -0.023813161998987198,
- 0.06380864232778549, -0.05554205924272537, 0.04080009460449219, -0.05088050663471222,
- 0.00452772993594408, 0.042615920305252075, -0.017039185389876366, 0.051662009209394455,
- 0.019725913181900978, 0.04166983813047409, 0.059849001467227936, 0.10626658797264099,
- 0.0161216352134943, -0.07183536142110825, -0.07438785582780838, 0.1061444878578186,
- -0.01487839687615633, -0.058389633893966675, -0.027490559965372086,
- -0.017599977552890778, 0.030348148196935654, -0.12918145954608917, 0.0659131333231926,
- 0.11945239454507828, -0.09258117526769638, -0.019835634157061577, -0.03403918817639351,
- 0.045816224068403244, -0.012576980516314507, 0.033685874193906784, -0.08773740381002426,
- 0.0049288212321698666, 0.05186890810728073, 0.05737713351845741, -0.03036087192595005,
- 0.0634218156337738, 0.09103883057832718, -0.042111482471227646, 0.03932585194706917,
- 0.062072187662124634, -0.047912683337926865, -0.009689118713140488, 0.06629210710525513,
- 0.06456594914197922, -0.09480654448270798, -0.025433562695980072, -0.033363375812768936,
- -0.04850116744637489, -0.002075412543490529, -0.032898176461458206,
- 0.007381345611065626, 0.03187258914113045, -0.08188764750957489, -0.01493340265005827,
- 0.02763987146317959, 0.062441349029541016, 0.08550717681646347, -0.0032109746243804693,
- 0.06163595989346504, -0.042694855481386185, -0.07746238261461258, 0.030818235129117966,
- 0.08351952582597733, 0.07253210991621017, -0.12823860347270966, -0.03325226902961731,
- -0.04901715740561485, -0.1511751115322113, 0.0215170718729496, 0.11086992919445038,
- 0.05313684791326523, 0.06896677613258362, 0.012713451869785786, -0.08699903637170792,
- -0.04753679037094116, 0.11194951087236404, 0.045480065047740936, 0.023792758584022522,
- 0.045190270990133286, -0.020610490813851357, -0.018740912899374962, 0.09093400090932846,
- -0.037673838436603546, 0.013160654343664646, -0.009529228322207928,
- -0.09333973377943039, 0.10723549872636795, 0.13851091265678406, -0.012201094999909401,
- 0.00772249698638916, 0.042224690318107605, 0.008072081953287125, 0.046803973615169525,
- -0.011227385140955448, 0.036754678934812546, -0.0200306698679924, -0.11745370179414749,
- -0.07821843028068542, 0.041507329791784286, 0.08337048441171646, 0.024333586916327477,
- -0.09592431783676147, -0.05414153262972832, -0.019343115389347076
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 32,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 26,
- "similarity": 0.9995800256729126
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 60,
- "similarity": 0.9990153908729553
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 17,
- "similarity": 0.9989215731620789
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Mary Papenfuss"],
- "epoch_date_downloaded": 1605398400,
- "epoch_date_modified": 1607299200,
- "epoch_date_submitted": 1607299200,
- "flag": null,
- "report_number": 1361,
- "source_domain": "huffingtonpost.co.uk",
- "submitters": ["AIAAIC", "Thomas Giallella (CSET)"],
- "title": "Woman In China Says Colleague’s Face Was Able To Unlock Her iPhone X",
- "url": "https://www.huffingtonpost.co.uk/entry/iphone-face-recognition-double_n_5a332cbce4b0ff955ad17d50?ri18n=true"
- },
- {
- "__typename": "Report",
- "authors": ["Sarah Underwood"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 503,
- "source_domain": "cacm.acm.org",
- "submitters": ["Anonymous"],
- "title": "Distinguishing Identical Twins",
- "url": "https://cacm.acm.org/news/226789-distinguishing-identical-twins/fulltext"
- },
- {
- "__typename": "Report",
- "authors": ["Michael Potuck"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 502,
- "source_domain": "9to5mac.com",
- "submitters": ["Anonymous"],
- "title": "Early Face ID tests show varying results for twins using facial recognition to unlock iPhone X",
- "url": "https://9to5mac.com/2017/10/31/face-id-twins/"
- },
- {
- "__typename": "Report",
- "authors": ["Sean Keach"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 501,
- "source_domain": "thesun.co.uk",
- "submitters": ["Anonymous"],
- "title": "iPhone owners baffled by Apple's Face ID ‘not available’ error",
- "url": "https://www.thesun.co.uk/tech/7736147/iphone-face-id-not-available-working-reset-fix/"
- },
- {
- "__typename": "Report",
- "authors": ["Mitchel Broussard"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 500,
- "source_domain": "macrumors.com",
- "submitters": ["Anonymous"],
- "title": "iPhone X Face ID 'Twin Tests' Emerge With Mixed Results",
- "url": "https://www.macrumors.com/2017/10/31/iphone-x-face-id-twin-tests/"
- },
- {
- "__typename": "Report",
- "authors": ["Aric Jenkins"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 499,
- "source_domain": "time.com",
- "submitters": ["Anonymous"],
- "title": "Apple iPhone X: Could a Twin Trick the Face ID?",
- "url": "http://time.com/4940176/apple-iphone-x-face-id-facial-recognition/"
- },
- {
- "__typename": "Report",
- "authors": ["Megan Grant"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 498,
- "source_domain": "bustle.com",
- "submitters": ["Anonymous"],
- "title": "Does iPhone X Facial Recognition Work On Twins? Mashable Tested It Out And, Well, Whoops",
- "url": "https://www.bustle.com/p/does-iphone-x-facial-recognition-work-on-twins-mashable-tested-it-out-well-whoops-3147727"
- },
- {
- "__typename": "Report",
- "authors": ["Zoë Schlanger"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 497,
- "source_domain": "qz.com",
- "submitters": ["Anonymous"],
- "title": "A man was able to use Face ID to unlock his brother’s new iPhone X",
- "url": "https://qz.com/1120545/a-man-was-able-to-use-face-id-to-unlock-his-brothers-apple-aapl-iphone-x/"
- },
- {
- "__typename": "Report",
- "authors": ["Lance Ulanoff"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 496,
- "source_domain": "mashable.com",
- "submitters": ["Anonymous"],
- "title": "The iPhone X's Face ID can be fooled by identical twins",
- "url": "https://mashable.com/2017/10/31/putting-iphone-x-face-id-to-twin-test/#ZSbrCeQ60qqf"
- },
- {
- "__typename": "Report",
- "authors": ["Alex Hern"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 495,
- "source_domain": "theguardian.com",
- "submitters": ["Anonymous"],
- "title": "Apple: don't use Face ID on an iPhone X if you're under 13 or have a twin",
- "url": "https://www.theguardian.com/technology/2017/sep/27/apple-face-id-iphone-x-under-13-twin-facial-recognition-system-more-secure-touch-id"
- },
- {
- "__typename": "Report",
- "authors": ["Zachary Crockett"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 494,
- "source_domain": "thehustle.co",
- "submitters": ["Anonymous"],
- "title": "The iPhone X’s archnemesis: identical twins",
- "url": "https://thehustle.co/iPhone-X-facial-recognition-identical-twins"
- },
- {
- "__typename": "Report",
- "authors": ["Michelle Yan"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 493,
- "source_domain": "mashable.com",
- "submitters": ["Anonymous"],
- "title": "Is the iPhone X's facial recognition twin compatible?",
- "url": "https://mashable.com/2017/10/31/iphone-x-face-id-twin-test/#EutVeCNBuaqB"
- },
- {
- "__typename": "Report",
- "authors": ["Rajesh Pandey"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 492,
- "source_domain": "iphonehacks.com",
- "submitters": ["Anonymous"],
- "title": "Face ID on iPhone XS Fooled by Identical Twins",
- "url": "http://www.iphonehacks.com/2018/09/face-id-iphone-xs-fooled-identical-twins.html"
- },
- {
- "__typename": "Report",
- "authors": ["Buster Hein"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 491,
- "source_domain": "cultofmac.com",
- "submitters": ["Anonymous"],
- "title": "Face ID fails to recognize difference between twins",
- "url": "https://www.cultofmac.com/578821/face-id-iphone-xs-max-twins/"
- },
- {
- "__typename": "Report",
- "authors": ["The Inquirer"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 490,
- "source_domain": "theinquirer.net",
- "submitters": ["Anonymous"],
- "title": "Apple's Face ID tech can't tell two Chinese women apart",
- "url": "https://www.theinquirer.net/inquirer/news/3023199/apples-face-id-tech-cant-tell-two-chinese-women-apart"
- },
- {
- "__typename": "Report",
- "authors": ["Rusian News Agency"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 489,
- "source_domain": "tass.com",
- "submitters": ["Anonymous"],
- "title": "Double trouble: Russian twins to sue Apple as iPhone X’s Face ID fails to tell them apart",
- "url": "http://tass.com/society/987629"
- },
- {
- "__typename": "Report",
- "authors": ["uswitch"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 488,
- "source_domain": "uswitch.com",
- "submitters": ["Anonymous"],
- "title": "iPhone X Face ID: The reasons it may not work",
- "url": "https://www.uswitch.com/mobiles/features/iphone-x-face-id-the-reasons-it-may-not-work/"
- },
- {
- "__typename": "Report",
- "authors": ["Emmanuel Ocbazghi"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 487,
- "source_domain": "businessinsider.com.au",
- "submitters": ["Anonymous"],
- "title": "We put the iPhone X's Face ID to the ultimate test with identical twins -- and the results surprised us",
- "url": "https://www.businessinsider.com.au/can-iphone-x-tell-difference-between-twins-face-id-recognition-apple-2017-10?r=US\u0026IR=T"
- },
- {
- "__typename": "Report",
- "authors": ["Liam Tung"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 486,
- "source_domain": "zdnet.com",
- "submitters": ["Anonymous"],
- "title": "iPhone X's Face ID: How does it handle beards, makeup, wrinkles? Apple explains",
- "url": "https://www.zdnet.com/article/iphone-xs-face-id-how-does-it-handle-beards-makeup-wrinkles-apple-explains/"
- },
- {
- "__typename": "Report",
- "authors": ["Tony Bradley"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 485,
- "source_domain": "forbes.com",
- "submitters": ["Anonymous"],
- "title": "Enough Already With The Stupid Face ID 'Twin Test'",
- "url": "https://www.forbes.com/sites/tonybradley/2017/11/05/enough-already-with-the-stupid-face-id-twin-test/#3d92b1b05e1f"
- },
- {
- "__typename": "Report",
- "authors": ["Srishti Deoras"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 484,
- "source_domain": "analyticsindiamag.com",
- "submitters": ["Anonymous"],
- "title": "Top 5 AI Failures From 2017 Which Prove That ‘Perfect AI’ Is Still A Dream",
- "url": "https://www.analyticsindiamag.com/top-5-ai-failures-from-2017-which-prove-that-perfect-ai-is-still-a-dream/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "amazon",
- "name": "Amazon"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "amazon",
- "name": "Amazon"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "oliver-haberstroh",
- "name": "Oliver Haberstroh"
- },
- {
- "__typename": "Entity",
- "entity_id": "neighbors",
- "name": "Neighbors"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [508, 507, 505, 504],
- "vector": [
- -0.06144581735134125, 0.10330609232187271, 0.011112344451248646, -0.1259360909461975,
- 0.09135842323303223, -0.02745152823626995, 0.010284770280122757, 0.016581546515226364,
- 0.07093875855207443, -0.12449051439762115, -0.0073042032308876514, 0.014926884323358536,
- 0.01800474338233471, -0.06508705765008926, 0.0315810889005661, -0.07908077538013458,
- -0.08504948019981384, -0.01493285596370697, -0.05748934671282768, -0.11211549490690231,
- -0.06336205452680588, 0.0005984243471175432, 0.026118936017155647, 0.12372703850269318,
- -0.05454910546541214, 0.016306431964039803, 0.11628048121929169, 0.09535547345876694,
- -0.021328620612621307, 0.045352812856435776, -0.020592039451003075,
- -0.08313395082950592, 0.12168724834918976, 0.01668929122388363, 0.012280512601137161,
- 0.10599717497825623, -0.010198473930358887, -0.04041561484336853, -0.03195862099528313,
- -0.002513788640499115, 0.014512748457491398, 0.1825578361749649, 0.014735052362084389,
- -0.03078785166144371, 0.0392518974840641, -0.031678128987550735, 0.0029902199748903513,
- 0.03295540437102318, -0.0020427098497748375, 0.004787331447005272,
- -0.007116318214684725, 0.016863400116562843, -0.034949447959661484, 0.02061651088297367,
- -0.09822706133127213, 0.04161788895726204, 0.0318947359919548, 0.022018173709511757,
- 0.07026863098144531, -0.08548733592033386, 0.0022474685683846474, -0.17367251217365265,
- -0.07168012112379074, -0.058344483375549316, 0.09615805745124817, -0.05900274217128754,
- -0.05377443879842758, 0.016356853768229485, -0.014462307095527649, 0.05435442179441452,
- 0.06242592632770538, -0.032951176166534424, -0.014968058094382286, 0.02302083745598793,
- 0.012260755524039268, -0.006044806446880102, -0.019804123789072037, 0.2630093991756439,
- -0.08550122380256653, -0.021037550643086433, 0.12306135892868042, -0.1384909600019455,
- 0.3476533889770508, 0.004849665332585573, 0.008137034252285957, -0.0571545846760273,
- 0.07469265162944794, 0.037738144397735596, 0.03565321862697601, 0.048887480050325394,
- -0.000032588490284979343, 0.00836713332682848, -0.062120161950588226,
- -0.0031953388825058937, 0.06024771183729172, 0.002220114693045616,
- -0.024439601227641106, -0.014901087619364262, -0.0012441150611266494,
- -0.044473499059677124, -0.005320961587131023, -0.0390615239739418, 0.07011709362268448,
- 0.08179915696382523, -0.035054098814725876, -0.01845489628612995, 0.045070867985486984,
- -0.03623075783252716, 0.058341238647699356, -0.03829791769385338, 0.05736185982823372,
- -0.002664770931005478, 0.04995228722691536, -0.005797666031867266, 0.02085224725306034,
- -0.05392960086464882, 0.03715742751955986, 0.07454114407300949, 0.07320798933506012,
- 0.05621584504842758, -0.0258518997579813, 0.0659973993897438, 0.061109501868486404,
- -0.05331778526306152, -0.01653030700981617, -0.003542596474289894, -0.05470076948404312,
- -0.028607774525880814, -0.03425050154328346, 0.03658188506960869, -0.06579537689685822,
- -0.2272704392671585, 0.021956022828817368, 0.08652088791131973, -0.013235723599791527,
- -0.04330199584364891, 0.03169023618102074, -0.06789389252662659, 0.04495072364807129,
- -0.03853633254766464, -0.07947801798582077, 0.07517807930707932, 0.01964200660586357,
- 0.05681793391704559, 0.1142253503203392, 0.05577821284532547, -0.03529610484838486,
- -0.035158950835466385, -0.0004919045022688806, -0.020704427734017372,
- 0.10981357097625732, -0.1051471084356308, -0.047898631542921066, 0.001039554481394589,
- -0.04720119759440422, 0.6471961736679077, 0.1127510666847229, 0.1833229809999466,
- 0.034459054470062256, -0.009036680683493614, 0.17101699113845825,
- -0.00040534083382226527, 0.06197407841682434, -0.052969954907894135,
- -0.07285890728235245, 0.03581249713897705, -0.09480302035808563, -0.04816000536084175,
- 0.029168229550123215, 0.009148681536316872, 0.06628316640853882, 0.030223893001675606,
- 0.05909159034490585, -0.0009943372569978237, -0.0953293964266777, -0.013422470539808273,
- 0.05668801814317703, 0.01184905506670475, -0.12064089626073837, -0.042325254529714584,
- 0.06653720140457153, 0.09646577388048172, -0.10384714603424072, -0.0072095138020813465,
- -0.05785759910941124, 0.03838931769132614, -0.019606128334999084, 0.06335462629795074,
- -0.0345153845846653, 0.04712427780032158, 0.02925211191177368, 0.0433025136590004,
- -0.006345073692500591, -0.07022352516651154, -0.02365194261074066, 0.12492607533931732,
- 0.004742364399135113, -0.0326450876891613, 0.060864776372909546, -0.09518807381391525,
- 0.010245868936181068, -0.01746482029557228, 0.12187019735574722, -0.14062698185443878,
- 0.0026246760971844196, -0.010921027511358261, -0.022494381293654442,
- 0.05259828269481659, -0.008674189448356628, -0.036148615181446075, -0.06818331032991409,
- 0.06977564096450806, -0.0035459031350910664, 0.03400968760251999, 0.04637247323989868,
- -0.0324564054608345, 0.04693640023469925, 0.13761436939239502, 0.02000541426241398,
- 0.00820878054946661, 0.050268352031707764, 0.04021100327372551, -0.016463277861475945,
- -0.0338062159717083, 0.009907753206789494, -0.010017773136496544, 0.03274711221456528,
- 0.0034252097830176353, 0.07641500979661942, 0.005266926251351833, -0.055164918303489685,
- 0.04612363874912262, 0.03986615687608719, 0.034156735986471176, 0.07488951832056046,
- -0.06900258362293243, -0.06232602149248123, -0.05000414699316025, -0.02279418520629406,
- 0.006611163262277842, -0.03563236817717552, 0.0774606391787529, 0.0875176191329956,
- 0.07683978229761124, 0.025701437145471573, 0.005591688212007284, 0.020224247127771378,
- 0.07994428277015686, 0.018725572153925896, 0.05405715852975845, -0.02837669849395752,
- -0.05134919658303261, -0.03932131826877594, 0.017584659159183502, 0.03328973799943924,
- 0.02729620598256588, -0.076957106590271, -0.004482809919863939, -0.038527511060237885,
- -0.022366488352417946, -0.09616202116012573, -0.054155923426151276, 0.02612549439072609,
- 0.02329922653734684, -0.04810822010040283, -0.09199535846710205, -0.09177665412425995,
- 0.009252126328647137, 0.08079396188259125, -0.020492082461714745, 0.012873058207333088,
- -0.11783608794212341, 0.02963506057858467, -0.021411607041954994, 0.05292833596467972,
- -0.0021924322936683893, 0.01126747764647007, 0.011272948235273361, -0.0452762246131897,
- 0.04309122636914253, 0.003938266076147556, -0.03165801614522934, -0.030535738915205002,
- -0.023019082844257355, -0.04094802588224411, 0.0008417246863245964,
- -0.012315291911363602, -0.0214094165712595, 0.02204868569970131, 0.03656402975320816,
- 0.061271291226148605, -0.001932437065988779, -0.03955245763063431, 0.05995859205722809,
- -0.017701225355267525, 0.006824567448347807, 0.08466938138008118, -0.0683899074792862,
- 0.0364653654396534, -0.016339536756277084, -0.09802889823913574, -0.041931550949811935,
- -0.0011378824710845947, -0.04724407196044922, 0.04174723103642464, -0.05005994439125061,
- 0.019139599055051804, -0.03787587210536003, -0.03364066779613495, 0.06349468976259232,
- -0.027746625244617462, -0.08148714154958725, -0.06872989237308502, 0.10537643730640411,
- 0.009565131738781929, -0.016829727217555046, 0.04936160147190094, -0.05762528255581856,
- 0.04919378459453583, -0.03111523948609829, 0.006003681570291519, 0.03321506455540657,
- 0.06000974401831627, -0.02117309719324112, 0.03436575084924698, 0.053031302988529205,
- 0.016711292788386345, 0.004044472239911556, 0.042971741408109665, 0.4277353584766388,
- -0.31669214367866516, 0.10298440605401993, 0.10698947310447693, 0.028846830129623413,
- 0.05422176420688629, -0.012928837910294533, 0.0771210715174675, 0.07493116706609726,
- 0.10998392105102539, 0.07336443662643433, -0.02235061302781105, -0.0025983075611293316,
- -0.06482882797718048, 0.07680925726890564, 0.0035533159971237183, 0.013274181634187698,
- -0.03403005376458168, -0.06005904823541641, -0.02526976726949215, 0.029468314722180367,
- -0.04215698316693306, -0.004993974231183529, -0.006849425844848156,
- -0.06689514964818954, -0.009452473372220993, 0.026408199220895767, 0.06266185641288757,
- -0.04450472444295883, 0.02775377407670021, -0.06601020693778992, 0.044252071529626846,
- 0.046048782765865326, 0.006464146077632904, -0.13319042325019836, 0.017720278352499008,
- -0.08417074382305145, -0.11949233710765839, 0.08443889021873474, -0.01639748364686966,
- 0.048128459602594376, 0.05537883937358856, -0.03881819173693657, 0.025413036346435547,
- -0.025993291288614273, -0.05661189556121826, 0.017955686897039413, 0.04867663234472275,
- 0.04183582216501236, 0.05701043829321861, 0.17593291401863098, -0.05845172703266144,
- -0.04030411317944527, -0.07226376235485077, 0.055640436708927155, 0.10981597751379013,
- -0.029893456026911736, 0.016169274225831032, -0.03823798894882202,
- -0.013155153021216393, -0.004828651901334524, -0.045804768800735474,
- -0.06094430014491081, 0.004520973190665245, -0.034811392426490784, 0.06972430646419525,
- 0.028406189754605293, -0.06058818846940994, -0.17850929498672485, -0.004215715918689966,
- -0.058328498154878616, 0.004659581929445267, 0.14168529212474823, -0.07816142588853836,
- 0.022661982104182243, -0.026698853820562363, 0.0009497534483671188,
- 0.053430233150720596, -0.0984015241265297, 0.0387992188334465, -0.047915246337652206,
- 0.04613693058490753, 0.05512541905045509, 0.035249438136816025, -0.05379825457930565,
- 0.08344824612140656, -0.08372974395751953, 0.058659881353378296, 0.028273645788431168,
- -0.031847067177295685, 0.04804157465696335, -0.04046882688999176, 0.029895838350057602,
- 0.019645806401968002, -0.048321519047021866, 0.044402170926332474,
- -0.009977350011467934, -0.033819779753685, -0.06453040987253189, -0.0731193870306015,
- -0.045711949467659, -0.08065643906593323, 0.06012406200170517, -0.08637049794197083,
- -0.007968151941895485, -0.05134296044707298, -0.02770070731639862,
- -0.004203255288302898, -0.021306365728378296, 0.02115582302212715, -0.1483001708984375,
- 0.015383020974695683, 0.004159147851169109, 0.040259335190057755, 0.0022259391844272614,
- -0.04443872347474098, -0.005523275583982468, 0.07900092005729675, 0.06491231918334961,
- -0.0503242164850235, 0.006858780048787594, -0.09017299860715866, 0.0650264099240303,
- -0.10328246653079987, -0.4460029900074005, 0.08528498560190201, 0.02789228968322277,
- 0.009042216464877129, 0.01536992471665144, -0.07197044044733047, 0.03004474937915802,
- 0.03480781614780426, -0.04440959170460701, 0.090821273624897, -0.06152065098285675,
- 0.03487296402454376, -0.041586779057979584, -0.059923335909843445,
- -0.022888991981744766, -0.08213398605585098, -0.009655171073973179,
- 0.028069548308849335, -0.007435182109475136, -0.05328109860420227, -0.11890243738889694,
- 0.032199207693338394, -0.01090160757303238, 0.031461603939533234, -0.005100327078253031,
- 0.0369671955704689, -0.05610421299934387, -0.04474446177482605, 0.03699410706758499,
- 0.044066835194826126, 0.023522874340415, -0.08434504270553589, 0.005247026216238737,
- 0.06743089109659195, 0.010942598804831505, 0.11174124479293823, -0.0063084750436246395,
- -0.02556534856557846, -0.09560595452785492, 0.08283010870218277, 0.05631997063755989,
- 0.18383009731769562, 0.00007482108776457608, 0.03821234405040741, -0.021419286727905273,
- 0.15182197093963623, 0.044061753898859024, 0.014338424429297447, -0.028257446363568306,
- -0.007183178793638945, 0.03936655819416046, -0.007302035577595234, 0.04383573681116104,
- -0.09434658288955688, -0.04333246126770973, -0.010596985928714275,
- -0.0049666245467960835, -0.003396823536604643, -0.010463127866387367,
- 0.20840148627758026, 0.036857668310403824, 0.05299628525972366, 0.01258569024503231,
- -0.061198920011520386, 0.012972869910299778, -0.0441112294793129, -0.07666986435651779,
- -0.005535484757274389, -0.0032713315449655056, -0.005814076866954565,
- -0.037401892244815826, -0.11440578103065491, -0.022732514888048172,
- 0.048369377851486206, 0.005036645103245974, 0.11680911481380463, 0.00005818391218781471,
- 0.051330745220184326, -0.058090995997190475, 0.11698130518198013, 0.030053753405809402,
- 0.04316382855176926, 0.04441243037581444, 0.08536870777606964, 0.030164409428834915,
- -0.007330409716814756, -0.06877397000789642, -0.03271017596125603, 0.011867537163197994,
- 0.13746100664138794, -0.03525100648403168, 0.09994426369667053, 0.0745607316493988,
- -0.007990637794137001, -0.06348753720521927, 0.049969058483839035, 0.02241021953523159,
- 0.025926755741238594, -0.4928971230983734, -0.045077838003635406, 0.10956386476755142,
- 0.018915947526693344, 0.011380243115127087, 0.11480666697025299, 0.06043930724263191,
- -0.06706009060144424, -0.04298945516347885, -0.07566604763269424, 0.1074327826499939,
- -0.004808874800801277, 0.06720943003892899, -0.0851312205195427, 0.02520582638680935,
- 0.07663311064243317, -0.035782694816589355, -0.02312130481004715, 0.07457902282476425,
- -0.24198198318481445, 0.009554603137075901, -0.02423175424337387, 0.11144834756851196,
- 0.00956050492823124, 0.03412823751568794, 0.09782157838344574, -0.07736372947692871,
- 0.04406002163887024, 0.0685667097568512, 0.007462549023330212, 0.05010230839252472,
- 0.02213628590106964, -0.009296569973230362, 0.10246371477842331, 0.07858750969171524,
- 0.12068352103233337, -0.024498071521520615, 12.1326265335083, 0.04983530938625336,
- 0.0575946643948555, -0.08998779952526093, 0.018336419016122818, -0.039237942546606064,
- 0.031030647456645966, -0.08276918530464172, 0.033507369458675385, 0.11744701117277145,
- -0.002177957911044359, -0.020126404240727425, -0.04080236703157425,
- -0.10610395669937134, 0.02378038316965103, -0.022367827594280243, -0.07437433302402496,
- -0.04712064564228058, 0.0650164783000946, -0.03560800477862358, -0.01894896663725376,
- 0.08452389389276505, 0.06169761344790459, -0.004573151934891939, -0.0469428151845932,
- 0.033872462809085846, -0.00649464875459671, -0.022305266931653023, 0.010001074522733688,
- 0.04594459757208824, -0.02029617503285408, 0.03358493000268936, 0.041052259504795074,
- 0.019123589619994164, 0.06803294271230698, 0.0068522305227816105, 0.06716717779636383,
- 0.03678346797823906, 0.03903656080365181, 0.08779433369636536, 0.012540267780423164,
- -0.011211703531444073, 0.03562796115875244, 0.008462812751531601, 0.06749438494443893,
- 0.04579915106296539, 0.036239076405763626, 0.1107397973537445, 0.015409481711685658,
- 0.05279536545276642, 0.0831499695777893, -0.015170280821621418, 0.12050439417362213,
- 0.027398481965065002, -0.011167035438120365, 0.06413281708955765, 0.012547697871923447,
- -0.08099903166294098, 0.08903522789478302, 0.11090409755706787, -0.06211904063820839,
- 0.08431581407785416, 0.03151063993573189, 0.1230580136179924, -0.004366159439086914,
- 0.07095900177955627, 0.06694725155830383, 0.07981058955192566, -0.10240204632282257,
- -0.07744695991277695, 0.014499444514513016, -0.08704262971878052, -0.06498292088508606,
- 0.05987194553017616, 0.09848898649215698, -0.05377211421728134, 0.06572303175926208,
- -0.043007828295230865, 0.002501620212569833, -0.07508093863725662,
- -0.006293289829045534, 0.02479873038828373, -0.02771235816180706, 0.028781302273273468,
- 0.042703501880168915, 0.027821961790323257, 0.03323109447956085, 0.084365613758564,
- 0.03652022406458855, -0.11217513680458069, -0.05424855649471283, 0.10359016805887222,
- -0.04333365336060524, -0.06953059136867523, 0.029286596924066544, -0.05357157066464424,
- 0.07171668112277985, -0.1262131929397583, 0.05923937261104584, 0.08645745366811752,
- -0.08848032355308533, -0.01656808890402317, -0.04191335290670395, 0.07503664493560791,
- -0.014429121278226376, 0.04467199370265007, -0.07481752336025238, 0.03171117976307869,
- 0.02829722687602043, 0.05030558630824089, -0.06482642143964767, 0.07422100007534027,
- 0.07261411845684052, -0.058252379298210144, 0.03517237305641174, 0.04178447648882866,
- -0.04814967140555382, -0.018781261518597603, 0.03540768474340439, 0.0441635400056839,
- -0.08021676540374756, -0.03553589805960655, -0.028331700712442398, -0.03573199734091759,
- -0.003373638493940234, -0.03709302842617035, 0.013294151984155178, 0.023372607305645943,
- -0.033912502229213715, 0.004407092463225126, 0.01540808193385601, 0.036825843155384064,
- 0.05100945383310318, 0.002440731506794691, 0.06630772352218628, -0.05230546370148659,
- -0.047823715955019, 0.02563546411693096, 0.08980012685060501, 0.07571397721767426,
- -0.057081419974565506, -0.05024739354848862, -0.04471016675233841, -0.11201175302267075,
- 0.046409040689468384, 0.14879277348518372, 0.05752023681998253, 0.048525094985961914,
- 0.014859574846923351, -0.08082254230976105, -0.06284750998020172, 0.09094605594873428,
- 0.038045696914196014, 0.009419872425496578, 0.06049691140651703, -0.04870680719614029,
- -0.03780778497457504, 0.0819225162267685, -0.036803312599658966, 0.032025035470724106,
- 0.0006589809781871736, -0.022609081119298935, 0.09385448694229126, 0.12382374703884125,
- 0.03173026442527771, 0.03451322019100189, 0.0066094654612243176, 0.007547711953520775,
- 0.0008976950193755329, -0.01517368946224451, 0.021578386425971985,
- -0.008873417973518372, -0.11049998551607132, -0.08688750118017197, 0.07120764255523682,
- 0.12247668951749802, 0.07628840208053589, -0.11020864546298981, -0.019408632069826126,
- -0.0008634113473817706
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 33,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 34,
- "similarity": 0.999109148979187
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 55,
- "similarity": 0.9989966750144958
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 38,
- "similarity": 0.9988951683044434
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Kieren McCarthy"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 508,
- "source_domain": "theregister.co.uk",
- "submitters": ["Roman Yampolskiy"],
- "title": "Alexa, please cause the cops to raid my home",
- "url": "https://www.theregister.co.uk/2017/11/09/alexa_raid_my_apartment/"
- },
- {
- "__typename": "Report",
- "authors": ["Gareth Corfield"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 507,
- "source_domain": "theregister.co.uk",
- "submitters": ["Roman Yampolskiy"],
- "title": "Audio spy Alexa now has a little pal called Dox",
- "url": "https://www.theregister.co.uk/2017/11/13/alexa_now_with_dox_feature/"
- },
- {
- "__typename": "Report",
- "authors": ["Gianluca Mezzofiore"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 505,
- "source_domain": "mashable.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Alexa switches on and decides to have a party so loud the police came",
- "url": "https://mashable.com/2017/11/08/amazon-alexa-rave-party-germany/#0F_Zs9n57mqd"
- },
- {
- "__typename": "Report",
- "authors": ["Srishti Deoras"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 504,
- "source_domain": "analyticsindiamag.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Top 5 AI Failures From 2017 Which Prove That ‘Perfect AI’ Is Still A Dream",
- "url": "https://www.analyticsindiamag.com/top-5-ai-failures-from-2017-which-prove-that-perfect-ai-is-still-a-dream/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "amazon",
- "name": "Amazon"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "amazon",
- "name": "Amazon"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "alexa-device-owners",
- "name": "Alexa Device Owners"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [
- 826, 825, 824, 823, 822, 821, 820, 819, 818, 538, 537, 536, 535, 533, 532, 531, 530,
- 529, 528, 527, 526, 525, 524, 522, 521, 520, 519, 518, 517, 516, 514, 513, 512, 510, 509
- ],
- "vector": [
- -0.045820947736501694, 0.08637771010398865, 0.005110309459269047, -0.13511648774147034,
- 0.10733330994844437, -0.022163478657603264, -0.004556805361062288, 0.05017564445734024,
- 0.08210696280002594, -0.10605679452419281, 0.02464759163558483, 0.04761812463402748,
- 0.024579254910349846, -0.08893121778964996, 0.027898337692022324, -0.07343478500843048,
- -0.07397744804620743, -0.03701404482126236, -0.02611682377755642, -0.13588425517082214,
- -0.07258734107017517, 0.014307712204754353, 0.03650934621691704, 0.12565062940120697,
- -0.06606698781251907, -0.011495731770992279, 0.07539010792970657, 0.09388013929128647,
- -0.017222315073013306, 0.014088022522628307, -0.017042819410562515,
- -0.056091129779815674, 0.11451636999845505, 0.0162208154797554, -0.00029914252809248865,
- 0.09027457237243652, 0.007460747379809618, -0.02548198029398918, -0.045436859130859375,
- -0.012645511887967587, 0.014503516256809235, 0.19010429084300995, 0.013546084053814411,
- -0.013414422050118446, 0.04138942435383797, -0.03498905524611473, -0.01672147400677204,
- 0.029383709654211998, -0.01218948420137167, -0.004467393271625042, 0.01573873683810234,
- 0.04607003927230835, -0.023557348176836967, 0.024194007739424706, -0.11009950935840607,
- 0.040976546704769135, 0.04099281132221222, 0.018896015360951424, 0.030744124203920364,
- -0.061672572046518326, -0.012575848028063774, -0.2071324735879898,
- -0.058150578290224075, -0.043672386556863785, 0.08864978700876236,
- -0.055675532668828964, -0.04297983646392822, 0.020402541384100914,
- -0.0028967945836484432, 0.0738532766699791, 0.08139896392822266, -0.04123224690556526,
- -0.0042596966959536076, 0.016860052943229675, -0.0019119235221296549,
- -0.03194788843393326, 0.02851669304072857, 0.22729434072971344, -0.08728555589914322,
- 0.0021862925495952368, 0.14993992447853088, -0.1114017590880394, 0.3830687999725342,
- 0.005660290364176035, -0.008763696067035198, -0.03853807970881462, 0.05907551944255829,
- 0.021376540884375572, 0.03803725913167, 0.025116760283708572, -0.007234716322273016,
- 0.016925184056162834, -0.06862008571624756, 0.008565878495573997, 0.05641516298055649,
- -0.0011634124675765634, -0.04814431816339493, 0.0015626545064151287,
- 0.009042543359100819, -0.0636897087097168, 0.012516958639025688, -0.04204513132572174,
- 0.08504807949066162, 0.039040759205818176, -0.027985187247395515, -0.021973593160510063,
- 0.04747610166668892, -0.03419366106390953, 0.05709993839263916, -0.031411439180374146,
- 0.048087697476148605, -0.004315457306802273, 0.03325723484158516, 0.006977170705795288,
- 0.03515274077653885, -0.032262928783893585, 0.051942355930805206, 0.05234299972653389,
- 0.08685141056776047, 0.022820936515927315, -0.0015788984019309282, 0.04162611439824104,
- 0.0538259893655777, -0.07937787473201752, -0.028544852510094643, -0.02358672209084034,
- -0.03342236578464508, -0.025018814951181412, -0.04792178422212601, 0.05659160017967224,
- -0.041500795632600784, -0.20570947229862213, 0.013482460752129555, 0.07667684555053711,
- -0.008533203974366188, -0.02944721095263958, 0.013429739512503147, -0.0886710062623024,
- 0.040415987372398376, -0.02182615175843239, -0.06696756184101105, 0.057368721812963486,
- 0.03976794332265854, 0.04791829362511635, 0.10060716420412064, 0.054070357233285904,
- -0.03180655092000961, -0.03640332818031311, 0.0018855315865948796, -0.02146846242249012,
- 0.10261467844247818, -0.10042931139469147, -0.04674695059657097, 0.01557603757828474,
- 0.0028374656103551388, 0.6440038681030273, 0.11296025663614273, 0.17632652819156647,
- 0.013594606891274452, -0.04231135547161102, 0.15973322093486786, -0.04518155753612518,
- 0.04413247108459473, -0.03295484557747841, -0.07043015211820602, 0.04185619205236435,
- -0.08011230081319809, -0.05549072474241257, 0.0476401224732399, 0.01969337835907936,
- 0.06970608234405518, 0.029505103826522827, 0.07124090939760208, -0.013000250793993473,
- -0.11167211085557938, -0.013206535018980503, 0.02480008825659752, 0.02437019906938076,
- -0.11737404018640518, -0.041927438229322433, 0.05900881811976433, 0.09218157082796097,
- -0.09397567063570023, -0.024478843435645103, -0.09750783443450928, 0.01586993969976902,
- -0.029168080538511276, 0.02216234616935253, -0.04207867383956909, 0.03690625727176666,
- 0.052091967314481735, 0.03385591134428978, -0.0012066009221598506, -0.07451614737510681,
- 0.002797879744321108, 0.10541227459907532, 0.01303006149828434, -0.05495288595557213,
- 0.029525987803936005, -0.07896308600902557, 0.018845317885279655, -0.02598266676068306,
- 0.10930962860584259, -0.11003132909536362, -0.016408465802669525, -0.009416173212230206,
- -0.014581589959561825, 0.03780677914619446, -0.018787536770105362, -0.04745747521519661,
- -0.06381537020206451, 0.08467821031808853, 0.01351648848503828, 0.06612151861190796,
- 0.06121053174138069, -0.019830290228128433, 0.06699541956186295, 0.109955795109272,
- -0.0060846139676868916, 0.00466064503416419, 0.05568287894129753, 0.047156237065792084,
- -0.03334898129105568, -0.034248318523168564, -0.006152820307761431,
- 0.017107566818594933, 0.02088296413421631, 0.008187283761799335, 0.053123947232961655,
- 0.023743821308016777, -0.028818249702453613, 0.021427394822239876, 0.04069961979985237,
- 0.015308497473597527, 0.06515827775001526, -0.05873208865523338, -0.072134830057621,
- -0.04444241151213646, 0.013781363144516945, 0.0003200334613211453, -0.04480049014091492,
- 0.09389596432447433, 0.08640040457248688, 0.044470541179180145, 0.0449795201420784,
- -0.001442705630324781, 0.07182133197784424, 0.06874605268239975, -0.01797361671924591,
- 0.055073853582143784, -0.023088179528713226, -0.06371600925922394, -0.05728688836097717,
- 0.03374223783612251, 0.011693960055708885, 0.04013476520776749, -0.0848577618598938,
- -0.042056676000356674, -0.008647206239402294, -0.04536253213882446,
- -0.10229822248220444, -0.047710999846458435, 0.010468327440321445, 0.022298652678728104,
- -0.07335538417100906, -0.09273195266723633, -0.09009340405464172, 0.01122010126709938,
- 0.09029331058263779, -0.0231386199593544, -0.004214937798678875, -0.11648852378129959,
- 0.020927658304572105, -0.03320256993174553, 0.0634145736694336, 0.03165905177593231,
- 0.000968347187153995, 0.034380484372377396, -0.057011861354112625, 0.04409560188651085,
- 0.009352712891995907, -0.023478224873542786, -0.0721382275223732, -0.04066024348139763,
- -0.04025784879922867, 0.0041488343849778175, 0.019477669149637222,
- -0.019802842289209366, 0.030126111581921577, 0.03596131503582001, 0.053597550839185715,
- -0.0006290331366471946, -0.044381555169820786, 0.04587734863162041,
- -0.033674370497465134, 0.004106628242880106, 0.07724535465240479, -0.02356427162885666,
- 0.02010507322847843, -0.011027548462152481, -0.09781936556100845, -0.024417655542492867,
- -0.003557255258783698, -0.022037118673324585, 0.07658638805150986, -0.03115207888185978,
- 0.01108849048614502, -0.04701857641339302, -0.06260624527931213, 0.06832032650709152,
- -0.03777565434575081, -0.08024921268224716, -0.06567662209272385, 0.10174903273582458,
- -0.0191632267087698, -0.010334286838769913, 0.029677659273147583, -0.0678231492638588,
- 0.06548196077346802, -0.02067655883729458, -0.003541147569194436, 0.0599733404815197,
- 0.0507427416741848, -0.015834247693419456, 0.03601199388504028, 0.08072857558727264,
- 0.003754225792363286, 0.00636344263330102, 0.038402099162340164, 0.42726534605026245,
- -0.27101609110832214, 0.08037485927343369, 0.0962398573756218, 0.021703330799937248,
- 0.0728638544678688, 0.0006802292773500085, 0.06040351837873459, 0.06949804723262787,
- 0.0975920632481575, 0.06530233472585678, -0.019815927371382713, -0.011030161753296852,
- -0.08311311155557632, 0.07956447452306747, 0.015394406393170357, 0.030568940564990044,
- -0.03278613090515137, -0.05506054311990738, -0.01797442138195038, 0.0332765057682991,
- -0.05436083674430847, -0.03471442684531212, -0.0015875583048909903,
- -0.03701004758477211, -0.012359530664980412, 0.003790290094912052, 0.055284783244132996,
- -0.020700694993138313, 0.037758201360702515, -0.09225448220968246, 0.056965943425893784,
- 0.030072815716266632, 0.012037539854645729, -0.10478309541940689, 0.0463615246117115,
- -0.05087340250611305, -0.0785851702094078, 0.05823754519224167, -0.027625765651464462,
- 0.024408625438809395, 0.05318706855177879, -0.020462825894355774, 0.03506921976804733,
- -0.007630028761923313, -0.07283825427293777, 0.030300412327051163, 0.06032929942011833,
- 0.036928705871105194, 0.07462093979120255, 0.16982997953891754, -0.04415822774171829,
- -0.04539787769317627, -0.06806571036577225, 0.044711578637361526, 0.12970173358917236,
- -0.0023145736195147038, 0.03679662570357323, -0.00595541438087821, -0.00804363563656807,
- -0.01021291222423315, -0.03532938286662102, -0.07264270633459091, -0.06548873335123062,
- -0.05058354139328003, 0.07602939009666443, 0.029129793867468834, -0.036031849682331085,
- -0.15745356678962708, 0.02392125502228737, -0.06371549516916275, 0.026148224249482155,
- 0.1603425294160843, -0.08492133766412735, 0.05666305497288704, -0.001108668395318091,
- -0.039569780230522156, 0.01443810760974884, -0.10268497467041016, 0.04283127188682556,
- -0.0393662303686142, 0.032957807183265686, 0.06755252182483673, 0.028045108541846275,
- -0.06690247356891632, 0.07522199302911758, -0.08103236556053162, 0.06954856961965561,
- 0.03786834329366684, -0.009542388841509819, 0.02728610299527645, -0.036568280309438705,
- 0.03601640462875366, 0.009612821973860264, -0.051337916404008865, 0.04182695597410202,
- -0.013244184665381908, -0.036372505128383636, -0.0958782359957695, -0.06441930681467056,
- -0.0310214851051569, -0.06040532886981964, 0.038277335464954376, -0.0552673414349556,
- 0.008064298890531063, -0.03537848964333534, -0.005150408949702978, 0.008155077695846558,
- -0.004495781846344471, 0.026917314156889915, -0.1332290917634964,
- -0.0071202050894498825, 0.007830038666725159, 0.0638454332947731, -0.01864032633602619,
- -0.03724602609872818, 0.0067300559021532536, 0.09636064618825912, 0.05016634985804558,
- -0.040092989802360535, 0.0038518246728926897, -0.0446467287838459, 0.04326067492365837,
- -0.07264038175344467, -0.5283705592155457, 0.05632773041725159, 0.032091740518808365,
- 0.024537881836295128, 0.01506863348186016, -0.060230106115341187, 0.03104855678975582,
- 0.032152581959962845, -0.024941975250840187, 0.091981902718544, -0.06308583170175552,
- 0.05370117351412773, -0.006593701895326376, -0.07079119980335236,
- -0.0008900203974917531, -0.0805487111210823, -0.0168128851801157, 0.04042096436023712,
- -0.036579787731170654, -0.05443212389945984, -0.11822187155485153, 0.01155608706176281,
- -0.01811695098876953, 0.031051911413669586, -0.0030800066888332367,
- -0.0017620250582695007, -0.062024347484111786, -0.03463682532310486,
- 0.05190053582191467, 0.04349903017282486, 0.013018929399549961, -0.05621188133955002,
- -0.004441795405000448, 0.0668218731880188, 0.02200934663414955, 0.1434992402791977,
- 0.005221602972596884, -0.016706282272934914, -0.09637148678302765, 0.07975152134895325,
- 0.05304332822561264, 0.18570268154144287, -0.0008748398977331817, 0.038423918187618256,
- -0.012644232250750065, 0.12088734656572342, 0.016854360699653625, -0.011568522080779076,
- -0.028237035498023033, 0.002532175974920392, 0.006986681837588549,
- -0.0007437784224748611, 0.04740134999155998, -0.08678988367319107, -0.03889687359333038,
- -0.010964063927531242, -0.012489770539104939, 0.011843070387840271,
- 0.024627819657325745, 0.16169476509094238, 0.037293680012226105, 0.06416423618793488,
- 0.027695700526237488, -0.05869614705443382, 0.0202909205108881, -0.046869486570358276,
- -0.07801076024770737, 0.003283735131844878, -0.0055570099502801895,
- -0.013088592328131199, -0.025774361565709114, -0.13554836809635162,
- -0.022087039425969124, 0.032506007701158524, 0.011649234220385551, 0.09742438793182373,
- -0.009667495265603065, 0.053514957427978516, -0.06397338956594467, 0.11217646300792694,
- 0.03163440153002739, 0.050982583314180374, 0.056592486798763275, 0.08953659981489182,
- 0.01841714233160019, -0.0055889710783958435, -0.040248215198516846,
- -0.05911695584654808, 0.002659799763932824, 0.133347749710083, -0.00902282353490591,
- 0.11396350711584091, 0.0771927610039711, -0.03170109540224075, -0.0532630980014801,
- 0.03450396656990051, -0.010326210409402847, 0.011763717979192734, -0.4892371594905853,
- -0.02319231629371643, 0.0992032140493393, 0.04805393144488335, 0.014563160017132759,
- 0.09555551409721375, 0.023371178656816483, -0.05769477039575577, -0.019771168008446693,
- -0.060802944004535675, 0.09901297837495804, -0.02436116710305214, 0.044607263058423996,
- -0.12799620628356934, 0.02043122425675392, 0.07948025315999985, -0.03386946767568588,
- -0.019471047446131706, 0.0864245668053627, -0.21283267438411713, 0.007348137442022562,
- -0.0061335754580795765, 0.14668138325214386, 0.026549799367785454, 0.006310238968580961,
- 0.08719833195209503, -0.03814860060811043, 0.03747044876217842, 0.054994404315948486,
- 0.020443173125386238, 0.06606069207191467, 0.03744322434067726, -0.004248058423399925,
- 0.12150391191244125, 0.06150899454951286, 0.09496308863162994, -0.0249225702136755,
- 12.00916576385498, 0.061564281582832336, 0.04320712387561798, -0.07494783401489258,
- 0.018165143206715584, -0.04265040159225464, 0.03050258196890354, -0.10464975982904434,
- 0.04514232277870178, 0.1260663866996765, -0.00990775041282177, -0.01158380787819624,
- -0.045967184007167816, -0.11841690540313721, 0.018987059593200684, -0.03173297271132469,
- -0.042936164885759354, -0.058256130665540695, 0.055390626192092896, -0.0305931493639946,
- -0.03653058037161827, 0.07395324110984802, 0.03130025416612625, 0.029199358075857162,
- -0.04423227161169052, 0.044973790645599365, 0.02069091796875, 0.0018737644422799349,
- -0.002753122476860881, 0.011258170008659363, 0.006292838137596846, 0.015231465920805931,
- 0.04378857463598251, -0.012861966155469418, 0.04730420932173729, 0.01732572726905346,
- 0.06738746911287308, 0.023291565477848053, 0.03194385766983032, 0.11414706707000732,
- 0.00671267369762063, -0.01878870464861393, 0.029495950788259506, 0.020604560151696205,
- 0.06264832615852356, 0.03501087799668312, 0.010706969536840916, 0.112240731716156,
- 0.0168035589158535, 0.07645118236541748, 0.08695843070745468, -0.031482040882110596,
- 0.1042514443397522, 0.025678908452391624, -0.020492319017648697, 0.07558225840330124,
- 0.022909369319677353, -0.07444804161787033, 0.08052472770214081, 0.08756474405527115,
- -0.07355901598930359, 0.07678110897541046, 0.017903445288538933, 0.11117229610681534,
- -0.02032160386443138, 0.05088872089982033, 0.07961730659008026, 0.09198148548603058,
- -0.11571343243122101, -0.0925423726439476, 0.0390469990670681, -0.07112323492765427,
- -0.06495970487594604, 0.05407675728201866, 0.10688962787389755, -0.06518219411373138,
- 0.0407104566693306, -0.04147138074040413, 0.0326211079955101, -0.0023414655588567257,
- 0.017583077773451805, 0.04169869050383568, -0.03454126790165901, 0.011841186322271824,
- 0.07041800767183304, 0.04336748272180557, 0.04826946556568146, 0.03191501647233963,
- 0.02271382138133049, -0.10042709112167358, -0.0706038624048233, 0.10317858308553696,
- -0.028626002371311188, -0.0866592600941658, 0.00992512796074152, -0.05416276678442955,
- 0.050185427069664, -0.12583918869495392, 0.06743935495615005, 0.10621862858533859,
- -0.05576752871274948, 0.01900319755077362, -0.054727599024772644, 0.08461010456085205,
- -0.01875016652047634, 0.025059260427951813, -0.07442650198936462, -0.011226288974285126,
- 0.018724143505096436, 0.041064318269491196, -0.03967798501253128, 0.040419645607471466,
- 0.08605017513036728, -0.04946380481123924, 0.011397112160921097, 0.05201949551701546,
- -0.03681596368551254, -0.015272436663508415, 0.06150517985224724, 0.015327872708439827,
- -0.07456528395414352, -0.017531003803014755, -0.027253389358520508,
- -0.03779464587569237, 0.011411749757826328, -0.048390813171863556, 0.030796552076935768,
- 0.03823871538043022, -0.055422037839889526, 0.00885611493140459, 0.04990837723016739,
- 0.03388987109065056, 0.05490618571639061, 0.03601241111755371, 0.06537233293056488,
- -0.054988667368888855, -0.03983452171087265, 0.024671364575624466, 0.06596147269010544,
- 0.07224083691835403, -0.04107784852385521, -0.03178097680211067, -0.0355943888425827,
- -0.11178284883499146, 0.04849619418382645, 0.0951063260436058, 0.07095850259065628,
- 0.07710474729537964, -0.0013946363469585776, -0.08459866046905518, -0.05085734277963638,
- 0.08225972950458527, 0.0046683005057275295, 0.00359428022056818, 0.0610697865486145,
- -0.043831486254930496, -0.023399313911795616, 0.08941511064767838,
- -0.038602713495492935, 0.04025929421186447, 0.013929002918303013, -0.04613430052995682,
- 0.10394667088985443, 0.14038904011249542, 0.0067903087474405766, 0.02810721844434738,
- 0.005624567624181509, 0.013593599200248718, -0.004455238580703735,
- -0.010145013220608234, -0.01789647340774536, 0.002095126314088702, -0.0997917577624321,
- -0.08520782738924026, 0.06559585779905319, 0.09718317538499832, 0.05281220003962517,
- -0.1272590309381485, -0.02878398261964321, -0.02266012690961361
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 34,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 55,
- "similarity": 0.9995401501655579
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 33,
- "similarity": 0.999109148979187
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 51,
- "similarity": 0.998999297618866
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Aspyhackr"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 826,
- "source_domain": "reddit.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "I may have found how Amazon prevents the echo from activating during commercials.",
- "url": "https://www.reddit.com/r/amazonecho/comments/5oer2u/i_may_have_found_how_amazon_prevents_the_echo/"
- },
- {
- "__typename": "Report",
- "authors": ["Chris Loterina"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 825,
- "source_domain": "techtimes.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Teach Amazon Echo, Google Home Not To Respond To Your TV: Here's How",
- "url": "https://www.techtimes.com/articles/196227/20170207/teach-amazon-echo-google-home-not-to-respond-to-your-tv-heres-how.htm"
- },
- {
- "__typename": "Report",
- "authors": ["David Murphy"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 824,
- "source_domain": "au.pcmag.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "How Amazon Keeps Your TV From Accidentally Triggering Your Echo",
- "url": "https://au.pcmag.com/news/51618/how-amazon-keeps-your-tv-from-accidentally-triggering-your-e"
- },
- {
- "__typename": "Report",
- "authors": ["Sean Keach"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 823,
- "source_domain": "thesun.co.uk",
- "submitters": ["Roman Yampolskiy"],
- "title": "Amazon reveals secret trick to stop your Alexa waking up during Echo TV ads",
- "url": "https://www.thesun.co.uk/tech/5503926/amazon-echo-alexa-ad-wake-up-word/"
- },
- {
- "__typename": "Report",
- "authors": ["Chris Hall"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 822,
- "source_domain": "pocket-lint.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Amazon reveals how it stops Alexa responding to its hotword unintentionally",
- "url": "https://www.pocket-lint.com/smart-home/news/amazon/143549-amazon-reveals-how-it-stops-alexa-responding-to-its-hotword-unintentionally"
- },
- {
- "__typename": "Report",
- "authors": ["Mark Sweney", "Patrick Collinson", "Nicholas Lezard"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 821,
- "source_domain": "theguardian.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Hey Alexa, is it true a TV advert made Amazon Echo order cat food?",
- "url": "https://www.theguardian.com/technology/2018/feb/14/amazon-alexa-ad-avoids-ban-after-viewer-complaint-ordered-cat-food"
- },
- {
- "__typename": "Report",
- "authors": ["Chaim Gartenberg"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 820,
- "source_domain": "theverge.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Amazon has a clever trick to make sure your Echo doesn’t activate during its Alexa Super Bowl ad",
- "url": "https://www.theverge.com/2018/2/2/16965484/amazon-alexa-super-bowl-ad-activate-frequency-commercial-echo"
- },
- {
- "__typename": "Report",
- "authors": [
- "Tim Moynihan",
- "Jeffrey Van Camp",
- "Lauren Goode",
- "Brian Barrett",
- "Arielle Pardes",
- "Nicholas Thompson"
- ],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 819,
- "source_domain": "wired.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "How to Keep Amazon Echo and Google Home From Responding to Your TV",
- "url": "https://www.wired.com/2017/02/keep-amazon-echo-google-home-responding-tv/"
- },
- {
- "__typename": "Report",
- "authors": ["Matthew Braga"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 818,
- "source_domain": "motherboard.vice.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "People Are Complaining That Amazon Echo Is Responding to Ads on TV",
- "url": "https://motherboard.vice.com/en_us/article/53dz8x/people-are-complaining-that-amazon-echo-is-responding-to-ads-on-tv"
- },
- {
- "__typename": "Report",
- "authors": ["FOX 4 News Dallas-Fort Worth"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 538,
- "source_domain": "fox4news.com",
- "submitters": ["Anonymous"],
- "title": "Girl who order dollhouse with Amazon's Alexa donates it to hospital",
- "url": "http://www.fox4news.com/news/girl-who-order-dollhouse-with-amazons-alexa-donates-it-to-hospital"
- },
- {
- "__typename": "Report",
- "authors": ["Carl Velasco"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 537,
- "source_domain": "techtimes.com",
- "submitters": ["Anonymous"],
- "title": "Alexa Caused Numerous Amazon Orders For Dollhouses Across San Diego When TV Report Mentioned Its Name",
- "url": "https://www.techtimes.com/articles/191846/20170109/alexa-caused-numerous-amazon-orders-for-dollhouses-across-san-diego-when-tv-report-mentioned-its-name.htm"
- },
- {
- "__typename": "Report",
- "authors": [
- "Katie Morley",
- "John Curtice",
- "Dominic Raab",
- "Eric Pickles",
- "Michael Spicer",
- "Archie Hamilton",
- "Norman Tebbit",
- "Bill Cash"
- ],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 536,
- "source_domain": "telegraph.co.uk",
- "submitters": ["Anonymous"],
- "title": "Amazon Echo rogue payment warning after TV show causes 'Alexa' to order dolls houses",
- "url": "https://www.telegraph.co.uk/news/2017/01/08/amazon-echo-rogue-payment-warning-tv-show-causes-alexa-order/"
- },
- {
- "__typename": "Report",
- "authors": ["Jennifer Earl"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 535,
- "source_domain": "cbsnews.com",
- "submitters": ["Anonymous"],
- "title": "TV news anchor's report accidentally sets off viewers' Amazon's Echo Dots",
- "url": "https://www.cbsnews.com/news/tv-news-anchors-report-accidentally-sets-off-viewers-amazons-echo-dots/"
- },
- {
- "__typename": "Report",
- "authors": ["Robert Hackett"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 533,
- "source_domain": "fortune.com",
- "submitters": ["Anonymous"],
- "title": "Amazon Echo's Alexa Went Dollhouse Crazy",
- "url": "http://fortune.com/2017/01/09/amazon-echo-alexa-dollhouse/"
- },
- {
- "__typename": "Report",
- "authors": ["Andrew Liptak"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 532,
- "source_domain": "theverge.com",
- "submitters": ["Anonymous"],
- "title": "Amazon’s Alexa started ordering people dollhouses after hearing its name on TV",
- "url": "https://www.theverge.com/2017/1/7/14200210/amazon-alexa-tech-news-anchor-order-dollhouse"
- },
- {
- "__typename": "Report",
- "authors": ["Eyewitness News"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 531,
- "source_domain": "abc7ny.com",
- "submitters": ["Anonymous"],
- "title": "Girl asks Amazon's Alexa to order $160 doll house, cookies; parents surprised by delivery",
- "url": "https://abc7ny.com/shopping/girl-uses-alexa-to-order-doll-house-cookies;-parents-shocked-by-delivery/1688875/"
- },
- {
- "__typename": "Report",
- "authors": ["CNN Newsource"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 530,
- "source_domain": "winknews.com",
- "submitters": ["Anonymous"],
- "title": "Child orders dollhouse, cookies using Alexa",
- "url": "http://www.winknews.com/2017/01/05/child-orders-dollhouse-cookies-using-alexa/"
- },
- {
- "__typename": "Report",
- "authors": ["Jack Morse"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 529,
- "source_domain": "mashable.com",
- "submitters": ["Anonymous"],
- "title": "How parents can avoid this nightmare scenario: 'Alexa, order me a dollhouse'",
- "url": "https://mashable.com/2017/03/15/amazon-echo-alexa-google-home-children-ordering/#_ApCrVOaWkqy"
- },
- {
- "__typename": "Report",
- "authors": ["CNN Newsource"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 528,
- "source_domain": "myfox28columbus.com",
- "submitters": ["Anonymous"],
- "title": "6-year-old orders doll house, cookies using Amazon’s Alexa app",
- "url": "https://myfox28columbus.com/news/offbeat/6-year-old-orders-doll-house-cookies-using-amazons-alexa-app"
- },
- {
- "__typename": "Report",
- "authors": ["Chloe Chaplain"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 527,
- "source_domain": "standard.co.uk",
- "submitters": ["Anonymous"],
- "title": "Amazon Echos accidentally order dollhouses after hearing US news programme",
- "url": "https://www.standard.co.uk/news/world/amazon-echos-start-ordering-dollhouses-after-hearing-command-on-us-news-programme-a3436246.html"
- },
- {
- "__typename": "Report",
- "authors": ["Rob Waugh"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 526,
- "source_domain": "metro.co.uk",
- "submitters": ["Anonymous"],
- "title": "Newsreader says, ‘Alexa, buy a doll’s house’ on air - and Amazon Echos buy them",
- "url": "https://metro.co.uk/2017/01/09/newsreader-says-alexa-buy-me-a-dolls-house-on-air-and-tons-of-amazon-echos-buy-them-6369570/"
- },
- {
- "__typename": "Report",
- "authors": ["BBC News"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 525,
- "source_domain": "bbc.com",
- "submitters": ["Anonymous"],
- "title": "Amazon Echo Dot ad cleared over cat food order",
- "url": "https://www.bbc.com/news/business-43044693"
- },
- {
- "__typename": "Report",
- "authors": ["Bethany White", "Chris Summers"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 524,
- "source_domain": "dailymail.co.uk",
- "submitters": ["Anonymous"],
- "title": "Amazon Echo device ordered dollhouses being discussed on TV",
- "url": "https://www.dailymail.co.uk/news/article-4100446/How-Amazon-s-gadget-blows-cash-listening-TV-Owners-left-pocket-device-ordered-dollhouses-discussed-news-show.html"
- },
- {
- "__typename": "Report",
- "authors": ["Sky News"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 522,
- "source_domain": "news.sky.com",
- "submitters": ["Anonymous"],
- "title": "Amazon Echo orders doll houses after 'hearing' TV presenter talking",
- "url": "https://news.sky.com/story/amazon-echo-orders-dollhouses-after-hearing-tv-presenter-talking-10722985"
- },
- {
- "__typename": "Report",
- "authors": ["Shaun Nichols"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 521,
- "source_domain": "theregister.co.uk",
- "submitters": ["Anonymous"],
- "title": "TV anchor says live on-air 'Alexa, order me a dollhouse' - guess what happens next",
- "url": "https://www.theregister.co.uk/2017/01/07/tv_anchor_says_alexa_buy_me_a_dollhouse_and_she_does/"
- },
- {
- "__typename": "Report",
- "authors": ["Grace Williams"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 520,
- "source_domain": "foxnews.com",
- "submitters": ["Anonymous"],
- "title": "6-year-old accidentally orders high-end treats with Amazon's Alexa",
- "url": "https://www.foxnews.com/tech/6-year-old-accidentally-orders-high-end-treats-with-amazons-alexa"
- },
- {
- "__typename": "Report",
- "authors": ["James Rogers"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 519,
- "source_domain": "foxnews.com",
- "submitters": ["Anonymous"],
- "title": "TV news report prompts viewers' Amazon Echo devices to order unwanted dollhouses",
- "url": "https://www.foxnews.com/tech/tv-news-report-prompts-viewers-amazon-echo-devices-to-order-unwanted-dollhouses"
- },
- {
- "__typename": "Report",
- "authors": ["Doug Criss"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 518,
- "source_domain": "edition.cnn.com",
- "submitters": ["Anonymous"],
- "title": "Who needs Santa? Girl asks Amazon's Alexa for dollhouse and cookies",
- "url": "https://edition.cnn.com/2017/01/05/health/amazon-alexa-dollhouse-trnd/index.html"
- },
- {
- "__typename": "Report",
- "authors": ["Mark Sweney", "Patrick Collinson", "Nicholas Lezard"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 517,
- "source_domain": "theguardian.com",
- "submitters": ["Anonymous"],
- "title": "Hey Alexa, is it true a TV advert made Amazon Echo order cat food?",
- "url": "https://www.theguardian.com/technology/2018/feb/14/amazon-alexa-ad-avoids-ban-after-viewer-complaint-ordered-cat-food"
- },
- {
- "__typename": "Report",
- "authors": ["Chitra Ramaswamy"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 516,
- "source_domain": "theguardian.com",
- "submitters": ["Anonymous"],
- "title": "‘Alexa, sort your life out’: when Amazon Echo goes rogue",
- "url": "https://www.theguardian.com/technology/shortcuts/2017/jan/09/alexa-amazon-echo-goes-rogue-accidental-shopping-dolls-house"
- },
- {
- "__typename": "Report",
- "authors": ["Kurt Schlosser"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 514,
- "source_domain": "geekwire.com",
- "submitters": ["Anonymous"],
- "title": "Amazon gently stresses several ways Alexa could have stopped 6-year-old girl’s dollhouse order",
- "url": "https://www.geekwire.com/2017/amazon-gently-stresses-several-ways-alexa-stopped-6-year-old-girls-dollhouse-order/"
- },
- {
- "__typename": "Report",
- "authors": ["Nicole Digiose"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 513,
- "source_domain": "electronicproducts.com",
- "submitters": ["Anonymous"],
- "title": "How Amazon’s Alexa accidentally ordered a bunch of dollhouses across San Diego",
- "url": "https://www.electronicproducts.com/Internet_of_Things/Household/How_Amazon_s_Alexa_accidentally_ordered_a_bunch_of_dollhouses_across_San_Diego.aspx"
- },
- {
- "__typename": "Report",
- "authors": ["Itech Post"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 512,
- "source_domain": "itechpost.com",
- "submitters": ["Anonymous"],
- "title": "Alexa Went On A Dollhouse Shopping Spree After Hearing “Command” From News Anchor On TV",
- "url": "http://www.itechpost.com/articles/72945/20170110/alexa-went-dollhouse-shopping-spree-hearing-command-news-anchor-tv.htm"
- },
- {
- "__typename": "Report",
- "authors": ["Ananya Bhattacharya"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 510,
- "source_domain": "qz.com",
- "submitters": ["Anonymous"],
- "title": "Amazon’s Alexa heard her name and tried to order up a ton of dollhouses",
- "url": "https://qz.com/880541/amazons-amzn-alexa-accidentally-ordered-a-ton-of-dollhouses-across-san-diego/"
- },
- {
- "__typename": "Report",
- "authors": ["Srishti Deoras"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 509,
- "source_domain": "analyticsindiamag.com",
- "submitters": ["Anonymous"],
- "title": "Top 5 AI Failures From 2017 Which Prove That ‘Perfect AI’ Is Still A Dream",
- "url": "https://www.analyticsindiamag.com/top-5-ai-failures-from-2017-which-prove-that-perfect-ai-is-still-a-dream/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "unknown",
- "name": "Unknown"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "unknown",
- "name": "Unknown"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "ibrahim-diallo",
- "name": "Ibrahim Diallo"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [
- 568, 567, 566, 565, 564, 563, 562, 558, 555, 551, 550, 549, 548, 547, 545, 544, 543,
- 541, 540, 539
- ],
- "vector": [
- -0.12600773572921753, 0.08320407569408417, 0.03633665665984154, -0.1286337524652481,
- 0.11296117305755615, -0.0387028306722641, -0.005939708091318607, 0.035114094614982605,
- 0.07098691165447235, -0.14185085892677307, -0.03492354601621628, 0.03077143058180809,
- 0.01593676023185253, -0.011728653684258461, 0.015141762793064117, -0.07188031077384949,
- -0.11639256775379181, -0.02271362394094467, -0.06312780827283859, -0.12721005082130432,
- -0.04810640588402748, 0.003916448913514614, 0.014918260276317596, 0.11856510490179062,
- -0.05904044583439827, 0.013541476801037788, 0.12230173498392105, 0.10242239385843277,
- -0.05386703088879585, 0.0594671256840229, -0.05301498621702194, -0.084959976375103,
- 0.10613857209682465, 0.01599309965968132, 0.010758401826024055, 0.08389665931463242,
- -0.008333620615303516, -0.036201730370521545, -0.02515946328639984,
- 0.0035236473195254803, 0.02606651559472084, 0.2260880023241043, 0.013381490483880043,
- -0.050681017339229584, 0.04773787409067154, -0.05324770137667656, 0.02120988257229328,
- 0.05591140314936638, 0.012828798964619637, 0.03719333931803703, 0.004109662026166916,
- 0.03343956544995308, -0.023189755156636238, 0.05193192884325981, -0.12916035950183868,
- 0.05868559330701828, 0.05436331033706665, 0.009495548903942108, 0.09996642917394638,
- -0.11063410341739655, 0.01688159443438053, -0.24574875831604004, -0.06156931445002556,
- -0.09624344110488892, 0.08811096847057343, -0.07834341377019882, -0.05545550584793091,
- 0.025279823690652847, 0.029859790578484535, 0.058862995356321335, 0.06456012278795242,
- -0.010170144960284233, -0.020110007375478745, 0.029950592666864395,
- 0.007950025610625744, -0.014902087859809399, -0.030861664563417435, 0.26856672763824463,
- -0.13564138114452362, -0.022441910579800606, 0.1123286709189415, -0.12172329425811768,
- 0.4679028391838074, 0.02269618585705757, 0.0050628953613340855, -0.041803207248449326,
- 0.1246580109000206, 0.017009271308779716, 0.06478337943553925, 0.054479073733091354,
- -0.007374302949756384, 0.053261686116456985, -0.08117858320474625, 0.025390516966581345,
- 0.09537231922149658, 0.011794623918831348, -0.0020500621758401394, 0.12378294765949249,
- -0.03342444449663162, -0.0703059583902359, -0.01643304154276848, -0.03695055842399597,
- 0.12738069891929626, 0.07323278486728668, -0.04232844337821007, -0.014319382607936859,
- 0.07925255596637726, -0.08771095424890518, 0.09323619306087494, -0.07836036384105682,
- 0.04589076340198517, -0.05718538165092468, 0.07735520601272583, -0.035643383860588074,
- 0.020340893417596817, -0.04461296647787094, 0.02771618962287903, 0.05699505656957626,
- 0.07680980861186981, 0.0655331164598465, -0.03144862875342369, 0.07549767196178436,
- 0.07754947245121002, -0.06712882220745087, -0.04461433365941048, -0.05304484814405441,
- -0.07234568893909454, -0.05884646251797676, -0.0109513308852911, 0.014041361398994923,
- -0.06199878454208374, -0.23301617801189423, 0.000008013472324819304,
- 0.06691122055053711, -0.006961023900657892, -0.04474321007728577, 0.046336811035871506,
- -0.06218374893069267, 0.060853011906147, -0.038998525589704514, -0.08210476487874985,
- 0.09087426960468292, 0.011058801785111427, 0.07150835543870926, 0.14740315079689026,
- 0.05887960270047188, -0.04188379645347595, -0.02877768874168396, 0.004500920884311199,
- 0.0013788705691695213, 0.12951980531215668, -0.14746002852916718, -0.026204798370599747,
- -0.01012731995433569, -0.011560977436602116, 0.7025658488273621, 0.13686411082744598,
- 0.2167956382036209, 0.04687030240893364, -0.0169654730707407, 0.20213523507118225,
- 0.008507360704243183, 0.06526371836662292, -0.04986366629600525, -0.08580847084522247,
- 0.027600403875112534, -0.06005474925041199, -0.0445251539349556, 0.052630115300416946,
- 0.0318080298602581, 0.13147935271263123, -0.01011683326214552, 0.09581993520259857,
- -0.007850338704884052, -0.06920255720615387, -0.04951361194252968, 0.11607594788074493,
- 0.003896282520145178, -0.09994304925203323, -0.027516335248947144, 0.04425175115466118,
- 0.10080686956644058, -0.09616516530513763, 0.004688904155045748, -0.04905615746974945,
- 0.037462614476680756, -0.018544500693678856, 0.06322015076875687, -0.017794882878661156,
- 0.06361289322376251, 0.06780759245157242, 0.04197853431105614, 0.030418628826737404,
- -0.108062744140625, -0.019504107534885406, 0.13670384883880615, -0.03873033449053764,
- -0.02638613060116768, 0.07106894999742508, -0.1075204461812973, 0.007820570841431618,
- 0.02889610268175602, 0.1420624852180481, -0.11823973804712296, 0.016686949878931046,
- -0.020955897867679596, -0.003402169793844223, 0.09122993052005768, 0.016918165609240532,
- -0.03886224329471588, -0.060147274285554886, 0.050592828541994095, 0.00936140026897192,
- 0.05740049481391907, 0.05412427708506584, -0.01104409247636795, 0.06677620112895966,
- 0.09435205161571503, 0.015502279624342918, -0.006490407045930624, 0.03849642723798752,
- 0.06751146912574768, 0.002456315793097019, 0.017526838928461075, 0.00492826197296381,
- -0.005703106056898832, 0.025535782799124718, 0.031182581558823586, 0.03225081041455269,
- 0.02000129595398903, -0.0549616739153862, 0.05827717110514641, -0.021064918488264084,
- 0.011282466351985931, 0.1099947914481163, -0.07646594196557999, -0.052743785083293915,
- -0.048788659274578094, -0.062313467264175415, 0.034418217837810516,
- -0.015366111882030964, 0.10537394136190414, 0.06147389858961105, 0.10285007953643799,
- 0.03139404579997063, 0.0541563406586647, 0.03961997106671333, 0.07700128108263016,
- 0.00823985505849123, 0.06002457067370415, -0.054274313151836395, -0.05245377868413925,
- -0.0211111418902874, 0.024753503501415253, 0.06779351830482483, 0.020644614472985268,
- -0.07181383669376373, -0.019712653011083603, -0.010628790594637394,
- -0.07620836794376373, -0.06126650422811508, -0.0031426716595888138,
- 0.018390187993645668, 0.044363148510456085, -0.04619189351797104, -0.10988881438970566,
- -0.106423020362854, 0.013638824224472046, 0.06003842502832413, -0.017290148884058,
- 0.002434764988720417, -0.13774453103542328, -0.011583086103200912,
- -0.024538930505514145, 0.070665642619133, -0.035365860909223557, 0.05258341506123543,
- 0.02880534529685974, -0.038594625890254974, 0.0521831214427948, 0.019766680896282196,
- -0.029321765527129173, -0.06756596267223358, -0.052264511585235596,
- -0.010687010362744331, -0.02309618517756462, -0.03138340264558792, 0.018281375989317894,
- 0.03478225693106651, 0.05029520392417908, 0.0720243826508522, 0.020576516166329384,
- -0.04146496579051018, 0.06598417460918427, -0.005409248173236847, -0.00490593072026968,
- 0.10537789016962051, -0.04488278180360794, 0.016394365578889847, -0.03327367454767227,
- -0.08254607766866684, -0.05407767742872238, -0.003298529190942645,
- -0.053778357803821564, 0.036853790283203125, -0.026894982904195786,
- -0.018200460821390152, -0.01655803993344307, -0.03442182019352913, 0.027596842497587204,
- -0.028416404500603676, -0.06025205925107002, -0.09535156190395355, 0.12826357781887054,
- 0.026676934212446213, -0.008235985413193703, 0.07951267063617706, -0.0438266322016716,
- 0.045737721025943756, -0.01689160242676735, 0.0061677903868258, 0.043073978275060654,
- 0.07616807520389557, -0.025878658518195152, 0.0013244759757071733, 0.061373233795166016,
- -0.00892891176044941, 0.05198558419942856, 0.05029093101620674, 0.44005656242370605,
- -0.28437578678131104, 0.07881838828325272, 0.10808847099542618, 0.021372351795434952,
- 0.06162647530436516, -0.0700671598315239, 0.06747125834226608, 0.1065945252776146,
- 0.13124512135982513, 0.14738573133945465, -0.04048192873597145, -0.043162282556295395,
- -0.11128053814172745, 0.0832962915301323, -0.0016076233005151153, 0.04109394922852516,
- -0.023886993527412415, -0.11429859697818756, -0.049245528876781464, 0.04554249346256256,
- -0.04975605756044388, -0.0031291451305150986, -0.009592920541763306,
- -0.059716127812862396, 0.012938539497554302, 0.07243817299604416,
- -0.0016419775784015656, -0.04485219344496727, 0.042384061962366104,
- -0.059511762112379074, 0.05762927606701851, 0.0086034145206213, 0.007374620996415615,
- -0.12549319863319397, 0.008148924447596073, -0.05340952426195145, -0.14011584222316742,
- 0.12795236706733704, -0.010442676953971386, 0.0495915487408638, 0.06499277055263519,
- -0.07336221635341644, 0.035724662244319916, -0.03241204470396042, -0.07824738323688507,
- 0.03137214481830597, 0.07684509456157684, 0.025930430740118027, 0.03997889533638954,
- 0.18115811049938202, -0.06341464072465897, -0.04290279373526573, -0.09608159959316254,
- 0.062002964317798615, 0.13891658186912537, -0.018013449385762215, -0.011792807839810848,
- -0.0036143579054623842, -0.04975489154458046, 0.02966715767979622, -0.0787573903799057,
- -0.06632179021835327, -0.05445399880409241, -0.02672320231795311, 0.08509860932826996,
- 0.016342634335160255, -0.04365038499236107, -0.1838039606809616, -0.009192471392452717,
- -0.028238162398338318, 0.027320921421051025, 0.08900327980518341, -0.04647942632436752,
- 0.045411884784698486, -0.002477597910910845, -0.018263382837176323, 0.0144552793353796,
- -0.10638304799795151, 0.012511221691966057, -0.061805497854948044, 0.02557596191763878,
- 0.08628392219543457, 0.042640384286642075, -0.05175523832440376, 0.07387989014387131,
- -0.11568347364664078, 0.06196831539273262, 0.026920583099126816, -0.03793676942586899,
- 0.05272416025400162, -0.033321984112262726, 0.043199703097343445, 0.0026795652229338884,
- -0.0622643306851387, 0.04703027382493019, 0.01929590106010437, -0.047587212175130844,
- -0.10677845776081085, -0.03998512774705887, -0.036169447004795074, -0.10059473663568497,
- 0.02910022996366024, -0.08905478566884995, -0.04620238393545151, -0.02069988287985325,
- -0.04599316418170929, 0.01528947614133358, 0.046087414026260376, 0.019892390817403793,
- -0.16060110926628113, 0.022702418267726898, -0.031801991164684296, 0.07857297360897064,
- 0.009709086269140244, -0.04408091679215431, 0.009463504888117313, 0.08144848793745041,
- 0.09595829993486404, -0.005523664876818657, -0.022303365170955658, -0.09214633703231812,
- 0.03244950994849205, -0.09569122642278671, -0.45847129821777344, 0.08252856880426407,
- -0.0131984306499362, 0.031740445643663406, 0.030608922243118286, -0.040261056274175644,
- 0.030563216656446457, -0.0505044087767601, -0.06670884042978287, 0.059313006699085236,
- -0.05299007147550583, 0.02515139803290367, -0.03274305909872055, -0.07358240336179733,
- -0.061292052268981934, -0.05244316905736923, -0.057159505784511566, 0.09128019213676453,
- -0.0038593716453760862, -0.07970847934484482, -0.12808333337306976, 0.04919170215725899,
- 0.002261333167552948, 0.021503809839487076, -0.02362607792019844, 0.009678703732788563,
- -0.08086404204368591, -0.07206368446350098, 0.021262159571051598, 0.038251835852861404,
- 0.04520183429121971, -0.09689315408468246, -0.012566382065415382, 0.03360550478100777,
- -0.0038916163612157106, 0.12289214134216309, -0.02023373357951641, -0.02324986644089222,
- -0.07364088296890259, 0.11462657153606415, 0.032355763018131256, 0.1792905181646347,
- -0.030496155843138695, 0.06070302799344063, -0.004750803112983704, 0.17277714610099792,
- 0.06843535602092743, 0.024118665605783463, -0.04054563492536545, -0.004658217076212168,
- 0.07666429132223129, -0.02979758009314537, 0.07256545126438141, -0.08432314544916153,
- -0.04745715111494064, -0.010776125825941563, -0.041483648121356964,
- -0.03745657578110695, -0.006209035404026508, 0.25027644634246826, 0.030040215700864792,
- 0.04350344464182854, -0.023231035098433495, -0.07418044656515121, -0.011190852150321007,
- -0.033020567148923874, -0.10826480388641357, -0.025241702795028687,
- -0.03650069236755371, -0.011975825764238834, -0.06460995972156525, -0.07962127029895782,
- -0.023386221379041672, 0.03603696823120117, -0.027909567579627037, 0.11721048504114151,
- 0.02057255432009697, 0.07758527994155884, -0.02005041018128395, 0.12390001863241196,
- 0.07830698788166046, 0.019635207951068878, 0.044124893844127655, 0.0957309827208519,
- 0.05815669149160385, 0.0116435457020998, -0.0634923130273819, -0.07135269045829773,
- 0.000431297579780221, 0.16242024302482605, -0.06437301635742188, 0.11904244124889374,
- 0.03439519181847572, -0.03701358288526535, -0.07185731828212738, 0.01985536888241768,
- -0.0006311566685326397, 0.04455939680337906, -0.5181180834770203, -0.038697175681591034,
- 0.14742432534694672, -0.04693038389086723, -0.005771502386778593, 0.07394116371870041,
- 0.06646045297384262, -0.052259720861911774, -0.037103354930877686, -0.11717800796031952,
- 0.10712738335132599, 0.005140976049005985, 0.08781719952821732, -0.09471802413463593,
- 0.032730668783187866, 0.06768439710140228, -0.027121534571051598,
- -0.0035423305816948414, 0.06430729478597641, -0.2557416558265686, 0.03598873317241669,
- -0.038640622049570084, 0.12475915998220444, 0.015959205105900764, 0.05235082656145096,
- 0.08879256993532181, -0.07636091113090515, 0.041391514241695404, 0.07239478081464767,
- 0.0027098732534796, -0.003280720440670848, 0.01728840544819832, -0.011327048763632774,
- 0.09141479432582855, 0.07196636497974396, 0.08708976209163666, -0.05767136812210083,
- 12.359901428222656, 0.060313981026411057, 0.067459836602211, -0.08555179089307785,
- 0.04244900867342949, -0.06639565527439117, 0.006578049622476101, -0.09236308187246323,
- 0.014287692494690418, 0.13855771720409393, 0.004577718209475279, -0.06609143316745758,
- -0.04999372363090515, -0.127620667219162, 0.033778443932533264, -0.05110589414834976,
- -0.09077905118465424, -0.03447471186518669, 0.023035148158669472, -0.0698617696762085,
- -0.03936881199479103, 0.06729376316070557, 0.0572117380797863, -0.00679807597771287,
- -0.06108323484659195, 0.018805822357535362, 0.011056477203965187, -0.04558983072638512,
- 0.01744542457163334, 0.08498187363147736, -0.057067714631557465, 0.027816731482744217,
- -0.005826896987855434, -0.010731104761362076, 0.07005895674228668, 0.04269345477223396,
- 0.06367380917072296, 0.06698166579008102, 0.02617960050702095, 0.09925566613674164,
- 0.010755293071269989, 0.03136434406042099, 0.07390602678060532, 0.0400150865316391,
- 0.04562829062342644, 0.03364328667521477, 0.035690028220415115, 0.11070158332586288,
- 0.0067236959002912045, 0.0641576275229454, 0.11044005304574966, -0.025044802576303482,
- 0.15424983203411102, -0.012027712538838387, 0.010919289663434029, 0.08165194094181061,
- -0.013841736130416393, -0.07964594662189484, 0.08204320818185806, 0.07463840395212173,
- -0.05985158681869507, 0.11432399600744247, 0.02549773082137108, 0.11496293544769287,
- -0.03339406102895737, 0.10218018293380737, 0.0868479534983635, 0.06441254913806915,
- -0.1559561938047409, -0.0941954031586647, -0.011951524764299393, -0.10625164210796356,
- -0.10412278026342392, 0.06072615459561348, 0.11161385476589203, -0.0640576109290123,
- 0.04377169907093048, -0.056152619421482086, -0.005579708144068718, -0.09475626051425934,
- -0.03306413069367409, 0.024828460067510605, -0.007009410299360752, 0.0204666405916214,
- 0.07556605339050293, 0.03990199416875839, 0.02953367494046688, 0.09051895141601562,
- 0.0022240423131734133, -0.10669879615306854, -0.08236263692378998, 0.0847398042678833,
- -0.04004347696900368, -0.05285441130399704, 0.021610427647829056, -0.07322196662425995,
- 0.08954989165067673, -0.16867002844810486, 0.07455021142959595, 0.12337033450603485,
- -0.1489037573337555, 0.015445513650774956, -0.04053465276956558, 0.06120498850941658,
- 0.012517990544438362, 0.028741950169205666, -0.05122409015893936, 0.044426433742046356,
- 0.0032293039839714766, 0.03442012518644333, -0.06834325194358826, 0.10240919888019562,
- 0.09885568171739578, -0.0661395788192749, 0.03251364827156067, 0.05060557276010513,
- 0.028993893414735794, -0.035790249705314636, 0.07269875705242157, 0.052030254155397415,
- -0.07964931428432465, -0.05807981640100479, -0.03435469791293144, -0.04375557228922844,
- -0.05869249254465103, -0.04029170796275139, 0.00728497514501214, 0.03895705193281174,
- -0.08391977101564407, 0.005669012200087309, 0.06080485135316849, 0.037018485367298126,
- 0.04863663390278816, -0.033062394708395004, 0.08446677774190903, -0.08172128349542618,
- -0.08882737904787064, 0.04389890283346176, 0.0555495023727417, 0.047179050743579865,
- -0.031235387548804283, -0.06104890629649162, -0.03082476556301117, -0.10326411575078964,
- 0.026169899851083755, 0.13663789629936218, 0.06015937402844429, 0.06827870011329651,
- 0.06399492919445038, -0.10788949579000473, -0.07374162971973419, 0.11006957292556763,
- 0.0811285600066185, 0.008463969454169273, 0.025152450427412987, -0.06646641343832016,
- -0.05757099390029907, 0.12223227322101593, -0.06440359354019165, 0.03297713026404381,
- 0.025555763393640518, 0.03600810095667839, 0.12466686964035034, 0.12489189952611923,
- 0.07596135884523392, 0.053811896592378616, 0.003977959509938955, 0.01212222594767809,
- -0.023077253252267838, -0.013337631709873676, 0.03843589872121811,
- -0.011800182983279228, -0.12417680025100708, -0.07101310789585114, 0.03223536163568497,
- 0.09878063946962357, 0.016685234382748604, -0.12486563622951508, -0.045056939125061035,
- -0.03544154390692711
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 35,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 33,
- "similarity": 0.9986448287963867
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 30,
- "similarity": 0.9984168410301208
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 24,
- "similarity": 0.9983801245689392
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Cory Doctorow"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 568,
- "source_domain": "boingboing.net",
- "submitters": ["Anonymous"],
- "title": "Fired by an algorithm, and no one can figure out why",
- "url": "https://boingboing.net/2018/06/20/the-computer-says-youre-dead.html"
- },
- {
- "__typename": "Report",
- "authors": ["Kieren McCarthy"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 567,
- "source_domain": "theregister.co.uk",
- "submitters": ["Anonymous"],
- "title": "Software engineer fired, shut out of office for three weeks by machine",
- "url": "https://www.theregister.co.uk/2018/06/22/software_engineer_fired_by_machine/"
- },
- {
- "__typename": "Report",
- "authors": ["Shiladitya Ray"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 566,
- "source_domain": "in.finance.yahoo.com",
- "submitters": ["Anonymous"],
- "title": "Ibrahim Diallo: The man who got fired by a machine",
- "url": "https://in.finance.yahoo.com/news/ibrahim-diallo-man-got-fired-142859957.html"
- },
- {
- "__typename": "Report",
- "authors": ["msmash"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 565,
- "source_domain": "tech.slashdot.org",
- "submitters": ["Anonymous"],
- "title": "The Man Who Was Fired By a Machine",
- "url": "https://tech.slashdot.org/story/18/06/21/1519233/the-man-who-was-fired-by-a-machine"
- },
- {
- "__typename": "Report",
- "authors": ["Kate Neilson"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 564,
- "source_domain": "hrmonline.com.au",
- "submitters": ["Anonymous"],
- "title": "A man’s story about being fired by a machine",
- "url": "http://www.hrmonline.com.au/section/featured/mans-fired-machine/"
- },
- {
- "__typename": "Report",
- "authors": ["Adrian Hopgood"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 563,
- "source_domain": "independent.co.uk",
- "submitters": ["Anonymous"],
- "title": "This man was fired by a computer - better AI could have saved him",
- "url": "https://www.independent.co.uk/voices/man-fired-computer-machine-ai-artificial-intelligence-security-systems-work-employment-future-a8428631.html"
- },
- {
- "__typename": "Report",
- "authors": ["NZ Herald"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 562,
- "source_domain": "nzherald.co.nz",
- "submitters": ["Anonymous"],
- "title": "California man 'sacked by a machine' as bosses stand by helplessly",
- "url": "https://www.nzherald.co.nz/business/news/article.cfm?c_id=3\u0026objectid=12076027"
- },
- {
- "__typename": "Report",
- "authors": ["Dan Lüdtke"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 558,
- "source_domain": "danrl.com",
- "submitters": ["Anonymous"],
- "title": "The Machine That Hires Me",
- "url": "https://danrl.com/blog/2018/the-machine-that-hires-me/"
- },
- {
- "__typename": "Report",
- "authors": ["Aki Anastasiou"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 555,
- "source_domain": "947.co.za",
- "submitters": ["Anonymous"],
- "title": "Technobyte: A man who got fired by a machine",
- "url": "http://www.947.co.za/articles/2018/06/25/technobyte-a-man-who-got-fired-by-a-machine"
- },
- {
- "__typename": "Report",
- "authors": ["Monique Ross", "Damien Carrick"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 551,
- "source_domain": "abc.net.au",
- "submitters": ["Anonymous"],
- "title": "A robot didn't take Ibrahim's job, but it did fire him",
- "url": "https://www.abc.net.au/news/2018-08-14/ibrahim-diallo-man-who-was-fired-by-a-machine-law-ai/10083194"
- },
- {
- "__typename": "Report",
- "authors": ["Rachel Ranosa"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 550,
- "source_domain": "hrtechnologynews.com",
- "submitters": ["Anonymous"],
- "title": "Man 'fired' by machine shows downside of over-automation",
- "url": "https://www.hrtechnologynews.com/news/hris/man-fired-by-machine-shows-downside-of-overautomation/104769"
- },
- {
- "__typename": "Report",
- "authors": ["Jordan Ramstad"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 549,
- "source_domain": "androidheadlines.com",
- "submitters": ["Anonymous"],
- "title": "A Machine Fired An Employee, And No One Could Do Anything About It",
- "url": "https://www.androidheadlines.com/2018/06/a-machine-fired-an-employee-and-no-one-could-do-anything-about-it.html"
- },
- {
- "__typename": "Report",
- "authors": ["Kavvitaa S Iyer"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 548,
- "source_domain": "techworm.net",
- "submitters": ["Anonymous"],
- "title": "Software developer gets fired by a machine",
- "url": "https://www.techworm.net/2018/07/software-developer-fired-machine.html"
- },
- {
- "__typename": "Report",
- "authors": ["Days Ago"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 547,
- "source_domain": "kfm.co.za",
- "submitters": ["Anonymous"],
- "title": "Technobyte: A man who got fired by a machine",
- "url": "http://www.kfm.co.za/articles/2018/06/25/technobyte-a-man-who-got-fired-by-technology"
- },
- {
- "__typename": "Report",
- "authors": ["Sam Varghese"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 545,
- "source_domain": "itwire.com",
- "submitters": ["Anonymous"],
- "title": "Sacked by AI, tech worker found humans could do nothing",
- "url": "https://www.itwire.com/business-it-news/business-intelligence/83323-sacked-by-ai,-tech-worker-found-humans-could-do-nothing.html"
- },
- {
- "__typename": "Report",
- "authors": ["India Today Web Desk"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 544,
- "source_domain": "indiatoday.in",
- "submitters": ["Anonymous"],
- "title": "This employee was fired by a machine and there's nothing his manager could do about it",
- "url": "https://www.indiatoday.in/education-today/news/story/this-employee-was-fired-by-a-machine-and-there-s-nothing-his-manager-could-do-about-it-1279085-2018-07-06"
- },
- {
- "__typename": "Report",
- "authors": ["Mo Aldalou"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 543,
- "source_domain": "businesscloud.co.uk",
- "submitters": ["Anonymous"],
- "title": "'I was fired by a machine and my bosses couldn't stop it'",
- "url": "https://www.businesscloud.co.uk/news/i-was-fired-by-a-machine-and-my-bosses-couldnt-stop-it"
- },
- {
- "__typename": "Report",
- "authors": ["Chris Matyszczyk"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 541,
- "source_domain": "inc.com",
- "submitters": ["Anonymous"],
- "title": "This Man Was Fired By a Machine. The Humans Were Powerless to Do Anything. Here's Why the Machine Should Be Admired",
- "url": "https://www.inc.com/chris-matyszczyk/this-man-was-fired-by-a-machine-humans-were-powerless-to-anything-heres-why-machine-should-be-admired.html"
- },
- {
- "__typename": "Report",
- "authors": ["Ibrahim Diallo"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 540,
- "source_domain": "idiallo.com",
- "submitters": ["Anonymous"],
- "title": "The Machine Fired Me",
- "url": "https://idiallo.com/blog/when-a-machine-fired-me"
- },
- {
- "__typename": "Report",
- "authors": ["Jane Wakefield"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 539,
- "source_domain": "bbc.com",
- "submitters": ["Anonymous"],
- "title": "The man who was fired by a machine",
- "url": "https://www.bbc.com/news/technology-44561838"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "ningbo-traffic-police",
- "name": "Ningbo traffic police"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "ningbo-traffic-police",
- "name": "Ningbo traffic police"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "dong-mingzhu",
- "name": "Dong Mingzhu"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [
- 1360, 598, 597, 596, 595, 593, 592, 591, 590, 589, 587, 586, 585, 584, 582, 581, 580,
- 579, 578, 577, 574, 573, 571, 570, 569
- ],
- "vector": [
- -0.0511441158503294, 0.07359803617000579, 0.018228478273376824, -0.14384900122880936,
- 0.09900824695825577, -0.058853904530405995, -0.007560350104467943, 0.0489249886572361,
- 0.02961667797528207, -0.11424215197563171, 0.00511264166329056, 0.05371814496815205,
- 0.017499761078506707, -0.08377759993076324, 0.0314756147749722, -0.06787590675055981,
- -0.059534708019345996, -0.007198379851179198, -0.011517052054405213,
- -0.09222970552742481, -0.08082144245505334, 0.02463462570682168, 0.004344539424637333,
- 0.09789216667413711, -0.0630793295800686, -0.00021936829201877117, 0.08971130967140198,
- 0.07674862280488014, -0.042630436806939544, 0.04352460296824574, -0.007962450846098363,
- -0.03872877866029739, 0.12615062594413756, 0.004267799565568566, 0.011489578706678003,
- 0.09516541585326195, 0.056855566315352914, -0.016313020820962264, -0.04060890410095453,
- -0.0029744766082149, 0.016033736979588865, 0.19657889187335967, -0.021341950427740813,
- -0.03022654400905594, 0.05576923936605453, -0.024812593259848654, -0.001882101004011929,
- 0.03711835954338312, 0.008547866058652289, 0.016560388505458833, -0.014235336082056165,
- 0.03974736885167658, -0.03561699105426669, 0.026272355187684296, -0.1116801430284977,
- 0.04731680035591126, 0.02937067247927189, 0.021374803873477503, 0.042857162058353424,
- -0.06858030587434769, -0.024411385864950716, -0.21483499556779861, -0.02835495188832283,
- -0.048229809068143364, 0.08131232693791389, -0.09277120172977447, -0.04116188418120146,
- 0.007392951142974198, 0.03615203320980072, 0.05003381669986993, 0.06455428957939148,
- -0.03535476449877024, 0.004026130550191738, -0.018574001798406244, 0.002842109084594995,
- -0.010483667142689229, -0.02483711553737521, 0.21973017781972884, -0.0854445829987526,
- 0.01827819786965847, 0.09877716332674026, -0.12113138765096665, 0.40424947619438173,
- 0.026264709283132105, -0.01168349638581276, -0.007585132101085037, 0.10348706513643265,
- 0.04089965691324324, 0.06760086543858052, 0.03372701965272427, 0.010669643352739512,
- 0.026543533811345697, -0.06370231851935387, 0.00754824114497751, 0.056624702960252765,
- 0.020737900394015015, -0.03120685735717416, 0.023969783175271004, -0.011856430121697485,
- -0.062271115593612196, -0.025144154094159602, -0.010454465136863291,
- 0.10839907258749008, 0.04140839832602069, -0.00885743360966444, -0.013488294910639525,
- 0.05242240623570979, -0.06265556920319795, 0.07434455454349517, -0.04278673145920038,
- 0.029922203887254, 0.0435360345011577, 0.06593975186347961, 0.010132508901879191,
- 0.023555447794497014, -0.050673354528844354, 0.009616099349223077, 0.03243221469223499,
- 0.09094003096222877, 0.030933367535471917, 0.016061982102692128, 0.05502717103809118,
- 0.06581722266972065, -0.05166120208799839, -0.006660815611248836, -0.0812150377780199,
- -0.06986074835062027, -0.03505859334545676, -0.04631703905761242, 0.007850179737433792,
- -0.0332296485779807, -0.17883978724479677, -0.012090998780913652, 0.07139726862311363,
- 0.015151594141498208, -0.042221134975552556, 0.031994572822004554, -0.05286433793604374,
- 0.010943710290011949, -0.03823623055592179, -0.029810970257385633, 0.08056668981909752,
- 0.03297952212393284, 0.028686617998755538, 0.10674496591091157, 0.0596640582382679,
- -0.03338224537670612, -0.054151147156953815, -0.012626760117709636,
- -0.038373937048017975, 0.09351397335529327, -0.10619660004973412, -0.03974765133112669,
- 0.014275797712616622, -0.024786859547020867, 0.6428793573379517, 0.09365691274404525,
- 0.1909543725848198, 0.005520570845110342, -0.02603490575682372, 0.1725041937828064,
- 0.0026694255741313098, 0.07356780603528022, -0.054086063839495185, -0.05537571750581265,
- 0.06046671345829964, -0.05468183474615216, -0.03997321555390954, 0.03688763625454158,
- 0.03022054908797145, 0.08644665360450744, 0.011473055388778448, 0.09599898859858513,
- 0.004703127674292773, -0.10468147426843644, 0.00008620698936283589,
- 0.026426753331907093, -0.003363723261281848, -0.1082728649675846, -0.018034764177864416,
- 0.04856487505137921, 0.09592534020543099, -0.08170459628105163, 0.007846081322059035,
- -0.04759936984628439, 0.07892138846218585, -0.0021480426052585245, 0.06206347610801458,
- -0.026742168702185154, 0.03045445858500898, 0.04015506150200963, 0.01136353905312717,
- -0.008278861790895462, -0.10007399141788482, -0.02597081398591399, 0.09575500696897507,
- -0.010734503883868455, -0.02954340532422066, 0.04934929929673672, -0.11313852906227112,
- 0.03581989035010338, -0.022601890517398714, 0.12050406664609908, -0.127989938557148,
- 0.035287334267050025, 0.0015075397910550236, 0.006561850971484091, 0.025443900786340238,
- -0.008451665085740388, -0.08343376994132995, -0.06106349475681782, 0.08497370600700378,
- 0.030519149173051117, 0.05544108978006989, 0.023632666040211917, -0.016435526264831423,
- 0.04880357712507248, 0.0651067640259862, -0.000828522692900151, -0.018422408204060048,
- 0.04514046151190996, 0.05048191823065281, -0.04025618097744882, -0.03645195520482957,
- 0.033234111121855675, 0.0050799810769967734, 0.017612447277642787, -0.0168568275263533,
- 0.012530528022907675, -0.004456143141724169, -0.034825248811393976, 0.0509831365942955,
- 0.002963648806326091, 0.0317125978320837, 0.10328193455934524, -0.026102380272932352,
- -0.049707087129354476, -0.028581904135644435, -0.025226316517218947,
- 0.02283655731473118, -0.061015610173344614, 0.07322408467531204, 0.08052554368972778,
- 0.0785336059331894, 0.04532208658754826, 0.04496947482228279, 0.07493851143866777,
- 0.04545831549912691, 0.03329250402282923, 0.06321063604205847, -0.03130233663134277,
- -0.08587311752140522, -0.033770928978919985, -0.006880019819363952, 0.03863939066883176,
- 0.036554051977582276, -0.07847776025533676, -0.03480108136311173, -0.0333688200218603,
- -0.048295328505337236, -0.07633249416947364, 0.014389324770891108, 0.017581219248240812,
- 0.05838018197566271, -0.040439337361603975, -0.0857863250374794, -0.08475937366485596,
- -0.007171123834559694, 0.05059037543833256, -0.02213978268497158, 0.01028919353018864,
- -0.09740728557109833, 0.018993231132626534, -0.030859343763440846, 0.05206477776169777,
- -0.005435406684409827, 0.0263990714866668, 0.012801106204278767, -0.04966273009777069,
- 0.036600157687789764, -0.022460853722877802, -0.02137679487001151, -0.05213652111589909,
- -0.08662409454584122, -0.054660113081336024, -0.008513089981861413,
- -0.017665295572951437, -0.03411386510357261, 0.06304424725472928, 0.02763861241750419,
- 0.052376576736569404, 0.011201835890242364, -0.017511308773537168, 0.04589965865015984,
- -0.015134962350130081, -0.02599737760378048, 0.08428789488971233, -0.03500949744484387,
- 0.024808970470912753, -0.034925318397581576, -0.0903260425850749, -0.04540757991373539,
- 0.03509791456162929, -0.048110703155398366, 0.029468162793200463, -0.02110817715059966,
- -0.014560730275698007, -0.025951997907832265, -0.02532662573910784, 0.08125092167407275,
- -0.06933530196547508, -0.07151128858327865, -0.09297662764787674, 0.11774775475263595,
- -0.009772868922445922, 0.007522230263566599, 0.05426991298794746, -0.05359916135668755,
- 0.030623163860291243, -0.026307512689381838, -0.012223500902764499, 0.02999554499052465,
- 0.06470305502414703, -0.010616730963811279, -0.02081552317366004, 0.030600149325618987,
- -0.052554610595107076, 0.00827237703371793, 0.06313135109841823, 0.4437194573879242,
- -0.2117841908335686, 0.08310263413935899, 0.10444821387529374, -0.014495416252175345,
- 0.055675108283758164, -0.013395831650123001, 0.07790889278054237, 0.056118741482496265,
- 0.10613940417766571, 0.09812947928905487, -0.04537575526162982, 0.0038033891376107933,
- -0.08122600845992566, 0.0823257890343666, 0.018952090735547246, 0.0038681515399366616,
- -0.008494861534563825, -0.061646396964788436, -0.02672608308494091,
- 0.022408172241412103, -0.044996530255302786, 0.016634196089580656, -0.01816719887778163,
- -0.04886297132819891, 0.012824328290298581, 0.013231273903511465, 0.04458664111793041,
- 0.0019604689814150334, 0.0254379970068112, -0.027138131470419467, 0.04960326164960861,
- 0.02021621831692755, 0.03163665677653626, -0.09955718278884888, 0.03606252638623118,
- -0.0624171191919595, -0.08777428962290287, 0.08464258134365082, -0.0012371260114014148,
- 0.017706414419226348, 0.07229985028505326, -0.04579853251576424, 0.029544275291264056,
- -0.038700396679341796, -0.0527567882463336, 0.026111393144819885, 0.06867670193314553,
- 0.011520676552318037, 0.10374138861894608, 0.15829608649015425, -0.02668562687933445,
- -0.019130405941978096, -0.07245051425183192, 0.07745911926031113, 0.13916184335947038,
- -0.02356376517796889, 0.03212419220712036, -0.03104391574859619, -0.02892195411026478,
- -0.01073495127260685, -0.03605936551466584, -0.0560190598666668, -0.026310948235914112,
- -0.04788820542395115, 0.0609531422611326, 0.007109428613912314, -0.026037308345548807,
- -0.17183835595846175, -0.015406141690909862, -0.044207698069512844,
- 0.010064819524995983, 0.07248548697680235, -0.05825165130198002, 0.01281844595912844,
- 0.02016695695929229, -0.006576992241607513, -0.029655061648227274, -0.10119977325201035,
- 0.024824548644246533, -0.045010337706189604, 0.04376657750457525, 0.05523030713200569,
- 0.05376328468322754, -0.009754728436237202, 0.05979849676601589, -0.0989407892525196,
- 0.05632175115868449, 0.021734102352056653, -0.02905304071959108, 0.0443297723075375,
- -0.03312622932717204, 0.045358927994966505, 0.019433900450821967, -0.04264495918527245,
- 0.004869589721783996, -0.01231302684172988, -0.038137568403617476, -0.08374408066272736,
- -0.04349390901625157, -0.04281230680644512, -0.07335745081305504, 0.0544551819562912,
- -0.09356767863035202, -0.020018352176994086, -0.0021730379946529863,
- -0.008435476762242615, 0.0051164777344092725, 0.03507671797182411, 0.013929170971969142,
- -0.14566841423511506, 0.016061502476222813, -0.008887963425368071, 0.048235321417450905,
- -0.043751344298943874, -0.04484796737320721, 0.04076989624649286, 0.09555251777172089,
- 0.050335543528199196, -0.0108925870526582, 0.007481390165630728, -0.06201889827847481,
- 0.06133922647684813, -0.10750992566347123, -0.4919005870819092, 0.06686072573065757,
- 0.003432838800363243, 0.038318641427904365, 0.025113627957180144, -0.07687125697731972,
- 0.042364574186503884, -0.008590197989251465, -0.008934166717517655, 0.07439739257097244,
- -0.05458515763282776, 0.010151998379733414, 0.006889010900631547, -0.050720685459673405,
- -0.0296422201115638, -0.0730809709429741, -0.04487864099442959, 0.04518561959266663,
- -0.018492508181370795, -0.05805825687944889, -0.11749074041843414,
- 0.0053612614551093426, -0.02975559253245592, 0.0442632314376533, 0.01472058542072773,
- 0.0010295510292053223, -0.07155942365527153, -0.04923002789262682, 0.052682521790266036,
- 0.06849996529519559, 0.04621109299361706, -0.054829209074378014, 0.00515052932780236,
- 0.0548152391333133, 0.0017186287138611079, 0.12850272923707962, 0.012099971030838787,
- -0.033962808232754466, -0.07075470682233571, 0.03666153492406011, 0.05777221024036407,
- 0.18650318324565887, -0.01878699623513967, 0.0553452755860053, 0.014644674099981785,
- 0.13787008076906204, 0.04413532346487045, 0.0020519781857728956, -0.04326131850481033,
- 0.021135694794356823, 0.008943029942456633, -0.02423358437139541, 0.044269044091925024,
- -0.07625742733478547, -0.028118277192115782, -0.042550828102976085,
- 0.010972755141556262, -0.0399696096353, 0.022839031126350166, 0.21928025305271148,
- 0.013043632404878736, 0.017387259211391212, 0.02099709522910416, -0.08124126628041267,
- 0.0058316816762089725, -0.08112535089254379, -0.0815784439444542, -0.01973144149989821,
- 0.015750464517623186, 0.0021006613201461732, -0.054182850290089846,
- -0.11676839470863343, -0.02590432433411479, -0.010702874502167106,
- 0.00043006463325582443, 0.10666653364896775, 0.009863687502220274, 0.05268734436482191,
- -0.013991257580928505, 0.11132364332675934, 0.013182346420362591, 0.005239822519943118,
- 0.08281085669994354, 0.08501079834997655, 0.0034012588715995663, 0.008269533172715456,
- -0.02112225643126294, -0.02898847544565797, 0.023515053670853377, 0.12897004753351213,
- -0.041960061639547346, 0.10308426141738891, 0.06357251707464456, -0.022279110867530108,
- -0.050786507800221446, 0.024506950954673812, -0.00236555399838835, 0.023044291301630437,
- -0.46239912271499634, -0.029921034555882214, 0.11253900468349456, 0.032532363794744015,
- 0.004421283109113574, 0.08373166143894195, -0.021962405908852817, -0.032882202360779045,
- -0.02247574079781771, -0.09193496838212013, 0.11382485136389732, -0.017848696681903677,
- 0.06296798594295978, -0.09603183463215828, 0.042239061743021014, 0.09257769107818603,
- -0.02441440918017179, 0.00909668140928261, 0.04717308554798365, -0.21313967823982238,
- 0.019995910785510204, -0.021750770129729063, 0.13634009122848512, 0.04052432144060731,
- 0.027796906214207412, 0.0545469120144844, -0.06440284006297588, 0.030600070282816888,
- 0.05681998908519745, -0.00375362747348845, 0.0590567285567522, -0.003981502377428114,
- -0.011671286383643746, 0.07975540347397328, 0.09426183298230172, 0.12701509416103363,
- -0.02990534839045722, 11.965147132873534, 0.03872787375003099, 0.05228325424715877,
- -0.07784998208284379, 0.009136368865147232, -0.045937135443091394, 0.03470316257327795,
- -0.11221066683530807, 0.08239652752876282, 0.11448716849088669, 0.0031081694480963053,
- -0.04882426880300045, -0.02074782316107303, -0.09191360518336296, 0.03305952916387469,
- -0.05522662281291559, -0.04059799524024129, -0.04079214122612029, 0.07707753077149392,
- -0.037092405259609225, -0.013089167207945139, 0.0522605193220079, 0.05071232847869396,
- 0.0167365413781954, -0.05490343302488327, 0.020145675502717494, 0.021619750133831984,
- -0.03132716081978287, 0.00326392886810936, 0.04514048241078854, 0.027889446606859564,
- 0.014074847809970379, 0.06996181324124336, 0.018705883752554654, 0.03728367423638702,
- 0.06433611951768398, 0.05004539404064417, 0.048295514471828935, 0.015137029998004436,
- 0.08610438600182534, 0.04669080715626478, -0.03511695982888341, 0.026822010143660008,
- 0.03253098213113845, 0.04878354984335601, 0.04243273165076971, 0.039308122489601374,
- 0.08270611345767975, 0.041561258658766746, 0.038406711369752884, 0.0791076223552227,
- -0.0068494712654501196, 0.10057865291833877, 0.0014428619132377208,
- 0.023527074370067565, 0.08407877549529076, -0.0031354894023388623, -0.07791190132498742,
- 0.06788075715303421, 0.06582417078316212, -0.06778466679155827, 0.09718709886074066,
- -0.009888293209369294, 0.13190842539072037, -0.03244732749648392, 0.06157561437226832,
- 0.07150403305888176, 0.08485861584544181, -0.0696203838288784, -0.08376517057418824,
- 0.06271249979734421, -0.08698752135038376, -0.05161917980760336, 0.026537257434101777,
- 0.08741072483360768, -0.044399439003318546, 0.053104662504047155, -0.07119326516985894,
- 0.030395212564617396, -0.028334620334208013, -0.017721628453582525, 0.04945264883339405,
- -0.02360105311963707, 0.02548833541572094, 0.03181375920772553, 0.016816676538437606,
- 0.09182676941156387, 0.05424512017518282, 0.02548129178583622, -0.08051491260528565,
- -0.04829992428421974, 0.11809424579143524, -0.03644653677940369, -0.08406851872801781,
- -0.010603876831009985, -0.04636635888367891, 0.031414501387625936, -0.14912447109818458,
- 0.05304600659757853, 0.09401664167642593, -0.0870829601585865, -0.04001799013465643,
- -0.03790220785886049, 0.07382403831928969, -0.031769334604032334, 0.047804070189595226,
- -0.049623682722449304, 0.009910169234499335, 0.021156591065227985, 0.010661113093374298,
- -0.03217603366822004, 0.03033065847121179, 0.09393726542592049, -0.05955950684845448,
- 0.014354715822264552, 0.03831410814076662, -0.006223132768645882, -0.033119262307882306,
- 0.03790445770137012, 0.04901942279189825, -0.058562946915626524, -0.045587663364131004,
- -0.03590149946510792, -0.016050544274039565, -0.013019191501662135,
- -0.023331465399824083, 0.013850069963373244, 0.05611753940582275, -0.05502273668302223,
- -0.028165067229419947, 0.02310775130521506, 0.05027058057487011, 0.09673992618918419,
- 0.009872829178348183, 0.050964781418442726, -0.039518114314414564, -0.05394729755818844,
- 0.043034572284668685, 0.05751645423471927, 0.07859317481517791, -0.024281976986676456,
- -0.05396632362157106, -0.055323487520217894, -0.0925773523747921, 0.032993188824038955,
- 0.08873232960700989, 0.06563664004206657, 0.05431688584387302, 0.008685779958032071,
- -0.08283052667975425, -0.008282811627723277, 0.12466947376728058, 0.006739443909027614,
- 0.03233081787824631, 0.036207130327820775, -0.07773460656404495, -0.03190309399738908,
- 0.11869634598493577, -0.04590079659421462, -0.0004943859518971294,
- -0.011961859250441194, -0.024261140963062644, 0.115780199021101, 0.09080608189105988,
- 0.03223224308341741, 0.023595624808222054, 0.012098021691199392, 0.011747567038983107,
- 0.020964924544095993, -0.006407281658612192, 0.021460660649463534,
- -0.007320154351182282, -0.13733673393726348, -0.08480269692838192, 0.04047813941491768,
- 0.07675622448325158, 0.04273040263913572, -0.1259584155678749, -0.04627652268856764,
- -0.021481370702385903
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 36,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 16,
- "similarity": 0.9990062713623047
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 68,
- "similarity": 0.9989853501319885
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 51,
- "similarity": 0.9988897442817688
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["BBC News"],
- "epoch_date_downloaded": 1605484800,
- "epoch_date_modified": 1607299200,
- "epoch_date_submitted": 1607299200,
- "flag": null,
- "report_number": 1360,
- "source_domain": "bbc.com",
- "submitters": ["AIAAIC", "Thomas Giallella (CSET)"],
- "title": "Chinese AI caught out by face in bus ad",
- "url": "https://www.bbc.com/news/technology-46357004"
- },
- {
- "__typename": "Report",
- "authors": ["Sean Keane"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 598,
- "source_domain": "cnet.com",
- "submitters": ["Catherine Olsson"],
- "title": "Facial recognition system mistakes bus ad for jaywalker",
- "url": "https://www.cnet.com/news/facial-recognition-system-mistakes-bus-ad-for-jaywalker/"
- },
- {
- "__typename": "Report",
- "authors": ["Tang Ziyi"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 597,
- "source_domain": "caixinglobal.com",
- "submitters": ["Catherine Olsson"],
- "title": "AI Mistakes Bus-Side Ad for Famous CEO, Charges Her With Jaywalking",
- "url": "https://www.caixinglobal.com/2018-11-22/ai-mistakes-bus-side-ad-for-famous-ceo-charges-her-with-jaywalkingdo-101350772.html"
- },
- {
- "__typename": "Report",
- "authors": ["Li Tao"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 596,
- "source_domain": "thestar.com.my",
- "submitters": ["Catherine Olsson"],
- "title": "Facial recognition system in China mistakes celebrity's face on moving billboard for jaywalker - Asean+",
- "url": "https://www.thestar.com.my/news/regional/2018/11/23/facial-recognition-snares-chinas-air-con-queen-dong-mingzhu-for-jaywalking-but-its-not-what-it-seems/"
- },
- {
- "__typename": "Report",
- "authors": ["Cory Doctorow"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 595,
- "source_domain": "boingboing.net",
- "submitters": ["Catherine Olsson"],
- "title": "Chinese AI traffic cam mistook a bus ad for a human and publicly shamed the CEO it depicted for jaywalking",
- "url": "https://boingboing.net/2018/11/26/just-dont-have-a-face.html"
- },
- {
- "__typename": "Report",
- "authors": ["Shannon Liao"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 593,
- "source_domain": "theverge.com",
- "submitters": ["Catherine Olsson"],
- "title": "Chinese facial recognition system mistakes a face on a bus for a jaywalker",
- "url": "https://www.theverge.com/2018/11/22/18107885/china-facial-recognition-mistaken-jaywalker"
- },
- {
- "__typename": "Report",
- "authors": ["Li Tao"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 592,
- "source_domain": "scmp.com",
- "submitters": ["Catherine Olsson"],
- "title": "Facial recognition snares China’s air con queen Dong Mingzhu for jaywalking, but it’s not what it seems",
- "url": "https://www.scmp.com/tech/innovation/article/2174564/facial-recognition-catches-chinas-air-con-queen-dong-mingzhu"
- },
- {
- "__typename": "Report",
- "authors": ["David Greene"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 591,
- "source_domain": "capradio.org",
- "submitters": ["Catherine Olsson"],
- "title": "Traffic Cam In China Mistakes Bus Ad For Real Human Face",
- "url": "http://www.capradio.org/news/npr/story?storyid=671090406"
- },
- {
- "__typename": "Report",
- "authors": ["Marie Donlon"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 590,
- "source_domain": "insights.globalspec.com",
- "submitters": ["Catherine Olsson"],
- "title": "Jaywalking AI Mistakenly Shames Woman in Advertisement",
- "url": "https://insights.globalspec.com/article/10590/jaywalking-ai-mistakenly-shames-woman-in-advertisement"
- },
- {
- "__typename": "Report",
- "authors": ["Chris Burt"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 589,
- "source_domain": "biometricupdate.com",
- "submitters": ["Catherine Olsson"],
- "title": "Facial recognition system in China mistakes bus ad for jaywalker",
- "url": "https://www.biometricupdate.com/201811/facial-recognition-system-in-china-mistakes-bus-ad-for-jaywalker"
- },
- {
- "__typename": "Report",
- "authors": ["Johnny Lieu"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 587,
- "source_domain": "mashable.com",
- "submitters": ["Catherine Olsson"],
- "title": "Chinese facial recognition system catches jaywalker, turns out to be a bus",
- "url": "https://mashable.com/article/chinese-jaywalker-facial-recognition/#r9FZ_0J4ugqG"
- },
- {
- "__typename": "Report",
- "authors": ["Bill Christensen"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 586,
- "source_domain": "technovelgy.com",
- "submitters": ["Catherine Olsson"],
- "title": "Chinese Face Recognition Mistakes Bus Ad For Jaywalker",
- "url": "http://www.technovelgy.com/ct/Science-Fiction-News.asp?NewsNum=5552"
- },
- {
- "__typename": "Report",
- "authors": ["Tan Xinyu"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 585,
- "source_domain": "chinadaily.com.cn",
- "submitters": ["Catherine Olsson"],
- "title": "Dong Mingzhu reelected as Gree head",
- "url": "http://www.chinadaily.com.cn/a/201901/17/WS5c4024b8a3106c65c34e50b5.html"
- },
- {
- "__typename": "Report",
- "authors": ["David Green"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 584,
- "source_domain": "npr.org",
- "submitters": ["Catherine Olsson"],
- "title": "Traffic Cam In China Mistakes Bus Ad For Real Human Face",
- "url": "https://www.npr.org/2018/11/27/671090406/traffic-cam-in-china-mistakes-bus-ad-for-real-human-face"
- },
- {
- "__typename": "Report",
- "authors": ["South China Morning Post"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": true,
- "report_number": 582,
- "source_domain": "article.wn.com",
- "submitters": ["Catherine Olsson"],
- "title": "Facial recognition catches China’s air con queen Dong Mingzhu jaywalking, but turns out to be ...",
- "url": "https://article.wn.com/view/2018/11/22/Facial_recognition_catches_China_s_air_con_queen_Dong_Mingzh/"
- },
- {
- "__typename": "Report",
- "authors": ["Laurence Dodds"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 581,
- "source_domain": "telegraph.co.uk",
- "submitters": ["Catherine Olsson"],
- "title": "Chinese businesswoman accused of jaywalking after AI camera spots her face on an advert",
- "url": "https://www.telegraph.co.uk/technology/2018/11/25/chinese-businesswoman-accused-jaywalking-ai-camera-spots-face/"
- },
- {
- "__typename": "Report",
- "authors": ["Ryan Daws"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 580,
- "source_domain": "iottechnews.com",
- "submitters": ["Catherine Olsson"],
- "title": "Chinese facial recognition flags bus ad woman for jaywalking",
- "url": "https://www.iottechnews.com/news/2018/nov/28/chinese-facial-recognition-ad-jaywalking/"
- },
- {
- "__typename": "Report",
- "authors": ["Alan Martin"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 579,
- "source_domain": "theinquirer.net",
- "submitters": ["Catherine Olsson"],
- "title": "Facial recognition system accuses woman in bus ad of jaywalking",
- "url": "https://www.theinquirer.net/inquirer/news/3066893/facial-recognition-system-accuses-woman-in-bus-ad-of-jaywalker"
- },
- {
- "__typename": "Report",
- "authors": ["Rob Thubron"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 578,
- "source_domain": "techspot.com",
- "submitters": ["Catherine Olsson"],
- "title": "Chinese facial recognition system confuses bus ad for jaywalker",
- "url": "https://www.techspot.com/news/77546-chinese-facial-recognition-system-confuses-face-bus-ad.html"
- },
- {
- "__typename": "Report",
- "authors": ["Priyanshi Mathur"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 577,
- "source_domain": "indiatimes.com",
- "submitters": ["Catherine Olsson"],
- "title": "China's AI Camera Mistakes CEO's Photo On Moving Bus For Real Person, Shames Her For Jaywalking",
- "url": "https://www.indiatimes.com/trending/wtf/china-s-ai-camera-mistakes-ceo-s-photo-on-moving-bus-for-real-person-shames-her-for-jaywalking-357534.html"
- },
- {
- "__typename": "Report",
- "authors": ["Jon Fingas"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 574,
- "source_domain": "engadget.com",
- "submitters": ["Catherine Olsson"],
- "title": "Chinese facial recognition system confuses bus ad with a jaywalker",
- "url": "https://www.engadget.com/2018/11/22/chinese-facial-recognition-confuses-bus-ad-with-jaywalker/"
- },
- {
- "__typename": "Report",
- "authors": ["James Whitbrook"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 573,
- "source_domain": "gizmodo.com.au",
- "submitters": ["Catherine Olsson"],
- "title": "Facial Recognition Flags Woman On Bus Ad For 'Jaywalking' In China",
- "url": "https://www.gizmodo.com.au/2018/11/facial-recognition-flags-woman-on-bus-ad-for-jaywalking-in-china/"
- },
- {
- "__typename": "Report",
- "authors": ["Xinmei Shen"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 571,
- "source_domain": "techinasia.com",
- "submitters": ["Catherine Olsson"],
- "title": "Businesswoman in China caught ‘jaywalking’ because her face was on a bus",
- "url": "https://www.techinasia.com/businesswoman-china-caught-jaywalking-face-bus"
- },
- {
- "__typename": "Report",
- "authors": ["Andrew Orlowski"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 570,
- "source_domain": "theregister.co.uk",
- "submitters": ["Catherine Olsson"],
- "title": "AI snaps business titan jaywalking",
- "url": "https://www.theregister.co.uk/2018/11/27/ai_snaps_business_titan_jaywalking/"
- },
- {
- "__typename": "Report",
- "authors": ["Synced"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": true,
- "report_number": 569,
- "source_domain": "medium.com",
- "submitters": ["Catherine Olsson"],
- "title": "2018 in Review: 10 AI Failures",
- "url": "https://medium.com/syncedreview/2018-in-review-10-ai-failures-c18faadf5983"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "amazon",
- "name": "Amazon"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "amazon",
- "name": "Amazon"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "female-applicants",
- "name": "female applicants"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [
- 2461, 2253, 1498, 628, 627, 626, 625, 624, 623, 622, 621, 620, 619, 618, 617, 616, 615,
- 614, 613, 612, 611, 610, 609, 608, 607, 606, 605, 604, 603, 602, 601, 600, 599
- ],
- "vector": [
- -0.05405305230030508, 0.05918618110996304, 0.009305737206611384, -0.12135974611296799,
- 0.08244567770849574, -0.041085459630597725, 0.002414099000099778, 0.07149266745104935,
- 0.10074851628054272, -0.13928739229838052, -0.014258910608160395, 0.02969572153211409,
- 0.03220796186448724, -0.036002375707594736, 0.03258716952845906, -0.07943112329777444,
- -0.11412302980368788, -0.02520862177268348, -0.0029955295295539227,
- -0.12815400958061218, -0.0910070003433661, -0.0002830016116301219,
- -0.003479884369439925, 0.10100865206032088, -0.0419057776982134, 0.01681128626594066,
- 0.09764588850014137, 0.09906639768318697, -0.03770685224144748, 0.05369984340204886,
- -0.04630614517990387, -0.08322856225299113, 0.10438159875797504, 0.029723563993519,
- -0.0003177439968126374, 0.05855513149590203, 0.020305062446630363,
- -0.026862298759321373, -0.016377620049752295, -0.004063738003782363,
- 0.04484063147030996, 0.23330580014171023, -0.0057967833603139625, 0.005857489322255732,
- 0.028160782093464426, -0.03551975218579173, 0.003616208676248789, 0.04399183905578949,
- 0.007368049767771454, 0.0425541815771298, -0.011396928760928638, 0.04505785400838112,
- -0.023705834568703944, 0.035001382062380966, -0.08084296401251446, 0.014792219788598066,
- 0.03296920818022706, 0.014867693663814642, 0.04933532815652363, -0.08654696274210107,
- 0.0070692363784253375, -0.19985235595341885, -0.04605947141394471, -0.0912531798310352,
- 0.07555340919079202, -0.06888112171807072, -0.03782454933477283, 0.05074736245936065,
- 0.027029593154138915, 0.06052819966818347, 0.06666674459296645, -0.007931470549947611,
- -0.026503573476943668, 0.030598905553095832, -0.01006578285964541, -0.03004467020262823,
- -0.005869049546494021, 0.19273954358967868, -0.11676221024809462, -0.01747698741118339,
- 0.08445181618585731, -0.11345170980150049, 0.39244956771532696, 0.013071789780180112,
- -0.0266340777955272, -0.03907444400035522, 0.07462932541966438, 0.039606423977988234,
- 0.034707767028135786, 0.03145881170745601, 0.012338424749693579, 0.0626825788481669,
- -0.056100583776380074, 0.0036039570201837428, 0.06718958338553255, 0.03867803889354973,
- -0.01863662239206447, 0.016070461415713937, -0.006753440543517089,
- -0.037960406435145574, -0.01647260936266376, -0.027221038627127808, 0.1491433350425778,
- 0.08405854428807895, -0.03868920514077851, -0.01108813632030929, 0.08087484493400111,
- -0.050025460169170845, 0.05477635697884993, -0.03522112728519873, 0.03178960789757019,
- -0.0013539924464456624, 0.08682327220837276, 0.0008891653163697232, 0.03922486912007585,
- -0.03877305922408899, 0.021794598821240168, 0.08199762180447578, 0.08631714681784312,
- 0.04667797923144518, 0.005336537138756477, 0.05940209159796888, 0.05513573188165372,
- -0.04697420752155736, -0.018233513811455025, -0.036664706584291926,
- -0.05910298600792885, -0.07061790742657402, -0.03802186693770416, 0.04594469499407393,
- -0.05425951440790386, -0.1853867850520394, 0.004340345641442885, 0.08763964248426033,
- -0.036296271200461146, -0.02227903182872317, 0.024702525894319864, -0.0512741401678685,
- 0.05765940762251954, -0.026249002927436253, -0.0302905617705123, 0.06455030551914012,
- -0.007591837733123226, 0.05504470527397864, 0.09381502516793483, 0.037448153492401944,
- -0.03648839238325529, -0.044563443075413954, 0.0038560610052875495,
- -0.04866371258641734, 0.12340772513187293, -0.13549628808642877, -0.04370623254076098,
- -0.003194420051648084, -0.016071271863907124, 0.68662946693825, 0.1003251877246481,
- 0.19299290080865225, 0.005958299658562861, -0.02624869613668345, 0.16004551698764166,
- -0.0094967631192765, 0.08031796472090663, -0.0470810524738309, -0.0639109422424526,
- 0.04187457614832304, -0.08359390203699921, -0.04600065600860751, 0.03373478376130207,
- 0.0056006570397805645, 0.10331779650666496, 0.010240067780779844, 0.07940466323810996,
- -0.015062301744227156, -0.0891179863476392, -0.004015446234861332, 0.06699881671264654,
- 0.029527032719642826, -0.1376534230781324, -0.044319713431777374, 0.03423509574636365,
- 0.09239158768093947, -0.10681628548737729, 0.020533349549320217, -0.07565327135450912,
- 0.05993699084854487, 0.00862804976835226, 0.06159758466211232, -0.003717889409568725,
- 0.05475311353802681, 0.04562877399395361, 0.023567194221400176, -0.012062808258854078,
- -0.08255088662333561, 0.013381935225686791, 0.1038570094740752, -0.013668823218198888,
- -0.037209534142730816, 0.06804102207675125, -0.07895091842069771, 0.02395718420898034,
- -0.0015746027294715698, 0.12708157707344403, -0.11998588185418736, 0.02321299788485648,
- -0.013146227772460517, -0.0031177313310653326, 0.042958432963738837,
- 0.01158304612159334, -0.0470888577966076, -0.06364895521917126, 0.08220291194139105,
- 0.011350887252554072, 0.04111537596944607, 0.02060331233466665, -0.03102039610684821,
- 0.059344312796990074, 0.082919921556657, 0.01351553723427721, -0.02404742689638321,
- 0.06694574236418262, 0.04435937208208171, -0.04709135575897314, -0.02051112951470934,
- 0.014964892927585452, -0.008673604217289143, -0.0006653127078827696,
- 0.00045523535906492424, 0.031661331745316136, -0.021719299789489895,
- -0.0552296724283334, 0.06863205479175756, 0.022643285773511074, 0.006502248873320324,
- 0.08726808959335992, -0.05769292711082733, -0.06000985096519192, -0.041104687406032375,
- -0.03675293889263588, 0.018941009931343917, -0.02639490582761496, 0.07476593486287376,
- 0.10818533712264264, 0.07155245316751076, 0.027092525580277044, 0.04632224804354888,
- 0.057227752256122505, 0.02217432690315146, -0.0223664961134394, 0.05027911239868087,
- -0.026509323093870826, -0.031653076618430066, -0.011321018702195337,
- 0.03237071365230915, 0.04753734433501394, 0.013186672483711984, -0.07294330091187448,
- -0.019509211923419076, -0.02982122300256213, -0.02152753576184764, -0.08029711737551472,
- -0.03717151438732716, 0.03820433858852608, 0.01255404369933813, -0.06251272288235751,
- -0.07414032400331715, -0.09832354273759958, -0.0017795574315118067, 0.06948396794949517,
- -0.04123261110913573, -0.014114362313028489, -0.12321363366914517,
- -0.008804389917658586, -0.02185990525212026, 0.0510100649500435, -0.0036839342704325013,
- -0.0009332316328778468, 0.034453152738878445, -0.055214569734578785,
- 0.032898635024938616, 0.010346962142538167, -0.03854947146663273, -0.01675544582890738,
- -0.06024431222767541, -0.042764102376884584, 0.012765180079661535, 0.02190971000571594,
- -0.038851557722823185, 0.034474399223020584, 0.06274864376720155, 0.06602709187251149,
- -0.01665135437735554, -0.037858845694713775, 0.047954545807883595,
- -0.013986960402689874, -0.009319439488039776, 0.08242927717440056, -0.04365663753935334,
- 0.01338556282236382, -0.00553451544317685, -0.08395526704914642, -0.04442860002657681,
- 0.007397254027609685, -0.04962600948232593, 0.05726859495608193, -0.017899417821106246,
- 0.012180488363479857, -0.012765068656969534, -0.023351311058363397, 0.04308215741801894,
- -0.03723030796655538, -0.09181893120209376, -0.07912698230057051, 0.1110206741952535,
- 0.004702857088749156, -0.0019568951207805762, 0.028569349108941176,
- -0.038540846879848024, 0.062114390234152474, -0.026230048882125906,
- -0.006864302417714939, 0.04620901929835478, 0.036812833146982346, 0.016206131429609024,
- 0.007631157821213657, 0.0651270817175056, -0.010045069354501638, 0.023634253673001447,
- 0.06778359384925077, 0.44590239362283185, -0.16907554751995837, 0.08847412399270317,
- 0.0998485420237888, 0.016036310882279366, 0.04238199360781547, -0.03299538834923596,
- 0.07095110997783416, 0.08693520058736656, 0.12000191166545406, 0.11454963740525824,
- -0.06781775134643822, -0.012897056273438713, -0.07972974324542464, 0.09061932349295328,
- 0.007898416144819224, 0.021648039632109983, 0.0003122056227628932, -0.0721354368848331,
- -0.013893893452460003, 0.015048595476952014, -0.061976838292497574,
- 0.0048301117512341025, 0.006441087292676622, -0.05445598218251358,
- -0.003444723724952024, 0.025135748681019653, 0.021897909090374455, -0.02120489644056017,
- 0.06947418031367389, -0.06339261659393908, 0.058639823882417244, 0.01448961730806552,
- 0.03270341211111483, -0.11807877592968219, 0.01356029940705577, -0.05211018131707202,
- -0.10660983215678822, 0.06159700283950025, -0.020036477641428286, 0.04918317033937483,
- 0.041242914641219555, -0.028948215316190865, 0.0333945376685623, -0.009607933720072844,
- -0.057571637077313484, 0.00679360682172983, 0.04564710635917656, 0.039198146371001545,
- 0.0611263156416967, 0.1655704713228977, -0.03513818641306099, -0.02354982614545434,
- -0.10552665094534557, 0.05805630593871077, 0.13171392746947028, 0.01915843606305619,
- 0.019290073601895885, 0.0005673913383912859, -0.04959005642343651,
- 0.0009091585454756789, -0.055292331599489306, -0.08264405235196605,
- -0.030253058807416397, -0.04291377659308526, 0.0907229445874691, 0.02494766985094457,
- -0.0448296195968534, -0.1511946844332146, -0.035431135572831736, -0.045083233042422566,
- 0.02563740169650621, 0.1000463180243969, -0.05702253058552742, 0.07837094363728256,
- -0.01901776640619518, -0.032748050931276695, 0.05263464666451469, -0.0826825618066571,
- 0.018632194104914863, -0.038615050824415506, 0.041498722014666506, 0.0629625806133404,
- 0.035575831196073326, -0.05568124135165955, 0.092747250289628, -0.09919334270737389,
- 0.07884624860051906, 0.022088118532503195, -0.06580056583113743, 0.05137298992750319,
- -0.00809984934290476, 0.042081204440557594, 0.02194109952754595, -0.04578386466583294,
- 0.0199948358578805, -0.018428737107156354, -0.04469706777793666, -0.08763096210631457,
- -0.05343425237206799, -0.02980030192570253, -0.09449647378289339, 0.03740074018468008,
- -0.05046778983986852, 0.010722859014728756, -0.02268744423759706, -0.02755941628393802,
- 0.0035058189762022457, 0.02258710613982244, 0.008419462418797511, -0.14486608225287814,
- -0.003334860305502926, 0.016741161652713676, 0.04978547537360679, -0.035003588534891605,
- -0.054069323521671875, 0.021981164763653367, 0.08998517155873054, 0.05824586020951921,
- -0.014264630597388146, -0.024984908290207386, -0.08061606324080264, 0.05774059678625428,
- -0.08697250417687676, -0.4368080853512793, 0.04533314919028657, 0.017669846541442286,
- 0.027298288222289448, 0.018072681852297108, -0.07793218100612814, 0.05953645587644794,
- -0.0008702560585471942, -0.039618670361850294, 0.06877453817111073,
- -0.047663078220053154, 0.022919544801962646, -0.0066078810963187025, -0.057263740366607,
- -0.014900240577954912, -0.05915228898326556, -0.03807426153710394, 0.0340386473108083,
- -0.018434072063290372, -0.06189070399286169, -0.10328021103685553, 0.024077238966569756,
- -0.0013451298676073113, 0.03521544134568875, 0.008778501037423584, 0.023099924183704636,
- -0.04985827989664606, -0.06129286319694736, 0.04551098189514243, 0.03755908515868765,
- 0.02067130047009524, -0.0794828687653397, 0.03381737931208177, 0.07752911069176414,
- -0.008001536864674452, 0.11767047463041364, 0.02315175295525202, 0.001742285168306394,
- -0.07167798856442625, 0.10010667517781258, 0.064049132168293, 0.18643331121314655,
- 0.0023290214435705407, 0.007812329839163629, -0.015265890813404412, 0.12619802525097673,
- 0.05468817526531039, 0.02749671406733493, -0.031918807942984684, -0.0042947977992959996,
- 0.027630434524767086, -0.004462243022510048, 0.09006002285715306, -0.06433676507951917,
- -0.02879178672182289, -0.02616776493871867, -0.02992525540828479, -0.05551951855533954,
- -0.04192374327756239, 0.22738946613037225, 0.03828606651531476, 0.04441460052674467,
- 0.02842009537782746, -0.07347823781046, 0.00839113954553437, -0.06966192230130687,
- -0.10652699778703126, -0.012181887346686739, -0.02283460365707111, 0.011677611671268207,
- -0.045482467083881296, -0.10551453720439564, -0.03343992018507737, 0.031781723100169926,
- -0.007067502199347611, 0.10892307397091028, -0.015477184678964091, 0.04257919652225224,
- -0.033739093098450794, 0.12340673962325761, 0.04830705481722499, 0.04145722017821037,
- 0.037679262166475935, 0.06530073939850836, 0.027679278499404478, 0.0283282771600749,
- -0.0661417979034454, -0.10451663996685635, -0.034992246514637816, 0.13461569583777225,
- -0.021543939242926143, 0.10244340641480504, 0.035317588661035355, -0.06011224308079391,
- -0.034900757907466454, 0.029187093637037007, 0.024618885185301417, 0.011016865176233378,
- -0.45377085064396716, -0.03406871101734313, 0.11346207118847153, 0.029593664651849504,
- -0.005936707892088276, 0.07572166463642409, 0.029824351482657774, -0.061836366400574196,
- -0.03964940677255844, -0.10415573418140411, 0.10880286415869539, -0.007828563735749798,
- 0.08748853759783687, -0.07480124525274291, 0.015433351389329993, 0.07899422187245253,
- -0.02555281745100563, -0.004657734404176925, 0.08079562121720026, -0.27023102388237463,
- -0.000523359053521276, -0.012698943269876481, 0.1049361943521283, 0.0059597963417852015,
- 0.05879409690246438, 0.09535108009974162, -0.060169476394852005, 0.04186082562558691,
- 0.032564912428797194, 0.0039366478308555525, 0.0651162603136265, -0.015483763217079368,
- -0.013793789494119472, 0.09056548175938202, 0.10501995253743547, 0.0759473317161654,
- -0.024898190379396758, 11.95353551344438, 0.03513502732455505, 0.06401192521055539,
- -0.10049639416463448, -0.0017506330288156416, -0.05448463386997129, 0.02041030990552496,
- -0.10773696795557484, 0.05067999946009932, 0.12061408568512309, -0.013747825995034707,
- -0.06532514411391634, -0.020991671011980736, -0.08942353104551633, 0.02549651166896872,
- -0.05965495854616165, -0.07048831643028693, -0.043596559458158234, 0.0378438717911415,
- -0.061613471219033905, -0.04849269997441408, 0.0661160529619365, 0.07294011759487065,
- 0.021065521738350843, -0.04318889477431322, 0.020479915922006705, 0.01770753311002133,
- -0.00826546468129946, 0.00007593688540950869, 0.025444560818317714,
- -0.005848064965737814, 0.0570767568706563, 0.0655444296302669, -0.003882307234699979,
- 0.029916169086584087, 0.022709306057853002, 0.09436594875472964, 0.03538652231465235,
- 0.032914580844314485, 0.09123801812529564, 0.0009673298424758921, 0.01949517545643065,
- 0.025389457865843946, 0.026237033123228077, 0.07044226902000832, 0.04145972094865459,
- 0.0251853193480973, 0.0798465230812629, 0.014807971424571324, 0.060513108630071984,
- 0.09730021520094438, -0.009764126061010316, 0.12301768814072464, 0.009565191461605895,
- -0.016490255253191925, 0.06276737300283981, -0.02250455219693708, -0.09462802947470636,
- 0.08796880563551729, 0.039732269096103584, -0.06880637128470522, 0.12251029750614455,
- 0.035172225244230394, 0.08769233592531898, 0.024123388854081208, 0.075329041390708,
- 0.07815901020711119, 0.053944839192836574, -0.11953500726006248, -0.08421699460736956,
- 0.016344321769958533, -0.11961286921392787, -0.07727649153182001, 0.07230177806746779,
- 0.08497821946035732, -0.041138913101432, 0.044959298372938945, -0.0109922808108174,
- 0.02634146329541126, -0.021557341106954758, -0.0033471028772041654,
- 0.029048918032045054, -0.035773801504436764, 0.03310745040124113, 0.07809857753190128,
- 0.0070021405549734045, 0.03447507699081942, 0.09504764086820862, 0.004118418123460177,
- -0.07849751991417372, -0.08103569941312978, 0.11303315593889265, -0.01965005164542659,
- -0.06268680129538882, 0.008765430182613658, -0.06278801393328291, 0.022970388022561867,
- -0.15143346696188956, 0.060371591850663674, 0.11287097012003262, -0.11545816786361462,
- -0.022412059849805453, -0.03746602715656274, 0.0684714289946538, 0.02171096007628931,
- -0.007654450964323725, -0.059332294375494574, 0.004144176022347176,
- 0.005272702879279457, 0.03546659467798291, -0.031880096116131455, 0.06423404598326395,
- 0.11521056847590389, -0.048971044047820295, 0.008331664489532792, 0.05717522538069523,
- -0.04440904865888032, -0.03224296265309959, 0.06445139268356742, 0.030144890241155572,
- -0.07833944814223232, -0.039556242123415526, -0.03322427854591021,
- -0.018049560265022923, -0.0017249012801612755, -0.04261726557248921,
- 0.009281421561767771, 0.04065290096244126, -0.033057857735195394, -0.007284459872718082,
- 0.027137288059968727, 0.07265625318342989, 0.04254166790368882, 0.011730143920320905,
- 0.06636770859812245, -0.04747153908917398, -0.0461179834197868, 0.029833156671939476,
- 0.05052952220042547, 0.06984184671080473, -0.06173627490572857, -0.04267541288087765,
- -0.061770193998447874, -0.12701322928522574, 0.007683580310902361, 0.09656635129993613,
- 0.04024426817759928, 0.034541404749633686, 0.026190646091532526, -0.06309508470197518,
- -0.0617374809402408, 0.1060215404087847, 0.05685943039134145, -0.004019653036569555,
- 0.02061912269599623, -0.07130477783467734, -0.0399469683003245, 0.12423075419483763,
- -0.03909044817908469, 0.00208215632080806, 0.0190375043294449, -0.05529029801431479,
- 0.09641329571604729, 0.13384770184303774, 0.0798364828665261, 0.026125808433403796,
- 0.004896207739048722, 0.01573870610445738, 0.038134030235761944, -0.03557222309719884,
- 0.028913224144189648, -0.0495216745431676, -0.1016500149712418, -0.06816581645133821,
- 0.027856292690778377, 0.0975220286936471, 0.0428536227960704, -0.09810894039092642,
- -0.02880811144264457, -0.048020247228895176
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 37,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 49,
- "similarity": 0.9993586540222168
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 14,
- "similarity": 0.9991270899772644
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 43,
- "similarity": 0.9991241097450256
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Chris Vallance"],
- "epoch_date_downloaded": 1665964800,
- "epoch_date_modified": 1665964800,
- "epoch_date_submitted": 1665964800,
- "flag": null,
- "report_number": 2461,
- "source_domain": "bbc.com",
- "submitters": ["Daniel Atherton (BNH.ai)"],
- "title": "AI tools fail to reduce recruitment bias - study",
- "url": "https://www.bbc.com/news/technology-63228466"
- },
- {
- "__typename": "Report",
- "authors": ["Tom Simonite"],
- "epoch_date_downloaded": 1668384000,
- "epoch_date_modified": 1668384000,
- "epoch_date_submitted": 1668384000,
- "flag": null,
- "report_number": 2253,
- "source_domain": "arstechnica.com",
- "submitters": ["Anonymous"],
- "title": "New York City proposes regulating algorithms used in hiring",
- "url": "https://arstechnica.com/tech-policy/2021/01/new-york-city-proposes-regulating-algorithms-used-in-hiring/"
- },
- {
- "__typename": "Report",
- "authors": ["Hilke Schellmann"],
- "epoch_date_downloaded": 1637280000,
- "epoch_date_modified": 1637193600,
- "epoch_date_submitted": 1637193600,
- "flag": null,
- "report_number": 1498,
- "source_domain": "technologyreview.com",
- "submitters": ["Khoa Lam"],
- "title": "Auditors are testing hiring algorithms for bias, but there’s no easy fix",
- "url": "https://www.technologyreview.com/2021/02/11/1017955/auditors-testing-ai-hiring-algorithms-bias-big-questions-remain/"
- },
- {
- "__typename": "Report",
- "authors": ["Rachel Kraus"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 628,
- "source_domain": "mashable.com",
- "submitters": ["Anonymous"],
- "title": "Amazon's sexist recruiting algorithm reflects a larger gender bias",
- "url": "https://mashable.com/article/amazon-sexist-recruiting-algorithm-gender-bias-ai/#G8xhfvK3tqqK"
- },
- {
- "__typename": "Report",
- "authors": ["Reuters"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 627,
- "source_domain": "theguardian.com",
- "submitters": ["Anonymous"],
- "title": "Amazon ditched AI recruiting tool that favored men for technical jobs",
- "url": "https://www.theguardian.com/technology/2018/oct/10/amazon-hiring-ai-gender-bias-recruiting-engine"
- },
- {
- "__typename": "Report",
- "authors": ["Radio New Zealand"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 626,
- "source_domain": "radionz.co.nz",
- "submitters": ["Anonymous"],
- "title": "Amazon scraps sexist AI recruiting tool",
- "url": "https://www.radionz.co.nz/news/world/368488/amazon-scraps-sexist-ai-recruiting-tool"
- },
- {
- "__typename": "Report",
- "authors": [
- "Loukia Papadopoulos",
- "Christopher Mcfadden",
- "Susan Fourtané",
- "Taylor Donovan Barnett"
- ],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 625,
- "source_domain": "interestingengineering.com",
- "submitters": ["Anonymous"],
- "title": "Amazon Shuts Down Secret AI Recruiting Tool That Taught Itself to be Sexist",
- "url": "https://interestingengineering.com/amazon-shuts-down-secret-ai-recruiting-tool-that-taught-itself-to-be-sexist"
- },
- {
- "__typename": "Report",
- "authors": ["James Cook"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 624,
- "source_domain": "telegraph.co.uk",
- "submitters": ["Anonymous"],
- "title": "Amazon scraps 'sexist AI' recruiting tool that showed bias against women",
- "url": "https://www.telegraph.co.uk/technology/2018/10/10/amazon-scraps-sexist-ai-recruiting-tool-showed-bias-against/"
- },
- {
- "__typename": "Report",
- "authors": ["BBC"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 623,
- "source_domain": "bbc.com",
- "submitters": ["Anonymous"],
- "title": "Amazon scrapped 'sexist AI' tool",
- "url": "https://www.bbc.com/news/technology-45809919"
- },
- {
- "__typename": "Report",
- "authors": ["David Meyer"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 622,
- "source_domain": "fortune.com",
- "submitters": ["Anonymous"],
- "title": "Amazon Killed Its AI Recruitment System For Bias Against Women-Report",
- "url": "http://fortune.com/2018/10/10/amazon-ai-recruitment-bias-women-sexist/"
- },
- {
- "__typename": "Report",
- "authors": ["Adam Rowe"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 621,
- "source_domain": "tech.co",
- "submitters": ["Anonymous"],
- "title": "Is Tech Doomed To Reflect The Worst In All Of Us?",
- "url": "https://tech.co/news/sexist-ai-doomed-reflect-worst-2018-10"
- },
- {
- "__typename": "Report",
- "authors": ["Eni Mustafaraj"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 620,
- "source_domain": "wellesley.edu",
- "submitters": ["Anonymous"],
- "title": "Is AI Sexist?",
- "url": "https://www.wellesley.edu/albright/about/blog/4766-ai-sexist"
- },
- {
- "__typename": "Report",
- "authors": ["Uc Insights"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 619,
- "source_domain": "channels.theinnovationenterprise.com",
- "submitters": ["Anonymous"],
- "title": "Amazon abandoned sexist AI recruitment tool",
- "url": "https://channels.theinnovationenterprise.com/articles/amazon-abandoned-sexist-ai-recruitment-tool"
- },
- {
- "__typename": "Report",
- "authors": [
- "Laura Pope",
- "John Quirk",
- "Chris Green",
- "Kirstie Houlton",
- "Justin Avery",
- "Caroline Lowe"
- ],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 618,
- "source_domain": "insights.tmpw.co.uk",
- "submitters": ["Anonymous"],
- "title": "Amazon AI sexist tool scrapped",
- "url": "http://insights.tmpw.co.uk/post/102f3wp/amazon-ai-sexist-tool-scrapped"
- },
- {
- "__typename": "Report",
- "authors": ["Rajeev Mathew", "Anupam Dikhit", "Vikram Achanta", "Mayukh Majumdar"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 617,
- "source_domain": "mansworldindia.com",
- "submitters": ["Anonymous"],
- "title": "Amazon Shuts Down It’s Problematic Sexist AI Recruitment System",
- "url": "https://www.mansworldindia.com/tech/amazon-shuts-problematic-sexist-ai-recruitment-system/"
- },
- {
- "__typename": "Report",
- "authors": ["Rene Millman"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 616,
- "source_domain": "alphr.com",
- "submitters": ["Anonymous"],
- "title": "Amazon's AI recruitment tool scrapped for being sexist",
- "url": "https://www.alphr.com/amazon/1010028/amazon-ai-recruitment-tool-sexist"
- },
- {
- "__typename": "Report",
- "authors": ["Eva Short"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 615,
- "source_domain": "siliconrepublic.com",
- "submitters": ["Anonymous"],
- "title": "It turns out Amazon’s AI hiring tool discriminated against women",
- "url": "https://www.siliconrepublic.com/careers/amazon-ai-hiring-tool-women-discrimination"
- },
- {
- "__typename": "Report",
- "authors": ["Michael Baxter"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 614,
- "source_domain": "information-age.com",
- "submitters": ["Anonymous"],
- "title": "Amazon ditches sexist AI",
- "url": "https://www.information-age.com/amazon-ditches-sexist-ai-123475421/"
- },
- {
- "__typename": "Report",
- "authors": ["Isobel Asher Hamilton"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 613,
- "source_domain": "businessinsider.com.au",
- "submitters": ["Anonymous"],
- "title": "Amazon built an AI tool to hire people but had to shut it down because it was discriminating against women",
- "url": "https://www.businessinsider.com.au/amazon-built-ai-to-hire-people-discriminated-against-women-2018-10?r=US\u0026IR=T"
- },
- {
- "__typename": "Report",
- "authors": ["James Cook"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 612,
- "source_domain": "msn.com",
- "submitters": ["Anonymous"],
- "title": "Amazon scraps 'sexist AI' recruiting tool that showed bias against women",
- "url": "https://www.msn.com/en-ie/money/technology/amazon-scraps-sexist-ai-recruiting-tool-that-showed-bias-against-women/ar-BBOdimt"
- },
- {
- "__typename": "Report",
- "authors": ["Jeffrey Dastin"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 611,
- "source_domain": "reuters.com",
- "submitters": ["Anonymous"],
- "title": "Amazon scraps secret AI recruiting tool that showed bias against women",
- "url": "https://www.reuters.com/article/us-amazon-com-jobs-automation-insight/amazon-scraps-secret-ai-recruiting-tool-that-showed-bias-against-women-idUSKCN1MK08G"
- },
- {
- "__typename": "Report",
- "authors": ["Joanna Prisco"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 610,
- "source_domain": "globalcitizen.org",
- "submitters": ["Anonymous"],
- "title": "Amazon Shuts Down AI Hiring Tool for Being Sexist",
- "url": "https://www.globalcitizen.org/en/content/amazon-ai-hiring-sexist/"
- },
- {
- "__typename": "Report",
- "authors": ["RT"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 609,
- "source_domain": "rt.com",
- "submitters": ["Anonymous"],
- "title": "Sexist AI: Amazon ditches recruitment tool that turned out to be anti-women",
- "url": "https://www.rt.com/usa/440893-amazon-sexist-ai-recruitment-tool/"
- },
- {
- "__typename": "Report",
- "authors": ["Michelle Regalado"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 608,
- "source_domain": "aplus.com",
- "submitters": ["Anonymous"],
- "title": "Amazon Accidentally Created A 'Sexist' Recruitment Tool, Then Shut It Down",
- "url": "https://aplus.com/a/amazon-shuts-down-ai-tool-for-discrimination-against-women?no_monetization=true"
- },
- {
- "__typename": "Report",
- "authors": ["Staff Reporter"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 607,
- "source_domain": "inc.com",
- "submitters": ["Anonymous"],
- "title": "How Amazon Accidentally Invented a Sexist Hiring Algorithm",
- "url": "https://www.inc.com/guadalupe-gonzalez/amazon-artificial-intelligence-ai-hiring-tool-hr.html"
- },
- {
- "__typename": "Report",
- "authors": ["David Grossman"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 606,
- "source_domain": "popularmechanics.com",
- "submitters": ["Anonymous"],
- "title": "Amazon Fired Its Resume-Reading AI for Sexism",
- "url": "https://www.popularmechanics.com/technology/robots/a23708450/amazon-resume-ai-sexism/"
- },
- {
- "__typename": "Report",
- "authors": ["Jordan Weissmann"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 605,
- "source_domain": "slate.com",
- "submitters": ["Anonymous"],
- "title": "Amazon's AI hiring tool discriminated against women.",
- "url": "https://slate.com/business/2018/10/amazon-artificial-intelligence-hiring-discrimination-women.html"
- },
- {
- "__typename": "Report",
- "authors": ["Jeffrey Dastin"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 604,
- "source_domain": "boingboing.net",
- "submitters": ["Anonymous"],
- "title": "Amazon trained a sexism-fighting, resume-screening AI with sexist hiring data, so the bot became sexist",
- "url": "https://boingboing.net/2018/10/11/garbage-conclusions-out.html"
- },
- {
- "__typename": "Report",
- "authors": ["James Cook"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 603,
- "source_domain": "afr.com",
- "submitters": ["Anonymous"],
- "title": "Amazon ditches AI recruitment tool that 'learnt to be sexist'",
- "url": "https://www.afr.com/news/world/europe/amazon-ditches-ai-recruitment-tool-that-learnt-to-be-sexist-20181011-h16h8p"
- },
- {
- "__typename": "Report",
- "authors": ["Lavanchy"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 602,
- "source_domain": "imd.org",
- "submitters": ["Anonymous"],
- "title": "Why Amazon's sexist AI recruiting tool is better than a human.",
- "url": "https://www.imd.org/research-knowledge/articles/amazons-sexist-hiring-algorithm-could-still-be-better-than-a-human/"
- },
- {
- "__typename": "Report",
- "authors": ["Frank Chung"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 601,
- "source_domain": "news.com.au",
- "submitters": ["Anonymous"],
- "title": "Amazon scraps ‘sexist’ AI hiring tool",
- "url": "https://www.news.com.au/finance/business/technology/amazon-scraps-sexist-ai-hiring-tool/news-story/aeb49c2f253b76670c8162e8edebeb05"
- },
- {
- "__typename": "Report",
- "authors": ["Maya Oppenheim"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 600,
- "source_domain": "independent.co.uk",
- "submitters": ["Anonymous"],
- "title": "Amazon scraps 'sexist AI' recruitment tool",
- "url": "https://www.independent.co.uk/life-style/gadgets-and-tech/amazon-ai-sexist-recruitment-tool-algorithm-a8579161.html"
- },
- {
- "__typename": "Report",
- "authors": ["Synced"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 599,
- "source_domain": "medium.com",
- "submitters": ["Anonymous"],
- "title": "2018 in Review: 10 AI Failures",
- "url": "https://medium.com/syncedreview/2018-in-review-10-ai-failures-c18faadf5983"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "frontier-development",
- "name": "Frontier Development"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "frontier-development",
- "name": "Frontier Development"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "video-game-players",
- "name": "Video Game Players"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [662, 659, 658, 657, 656, 655, 654, 652, 650, 649, 648],
- "vector": [
- -0.08908998966217041, 0.08439952880144119, 0.02618369273841381, -0.08641300350427628,
- 0.05816298723220825, 0.006547087337821722, 0.011522406712174416, 0.03292412683367729,
- 0.09111090004444122, -0.13267289102077484, -0.018008681014180183, 0.05833924934267998,
- 0.015200677327811718, -0.04344327747821808, 0.060692474246025085, -0.13394221663475037,
- -0.127594456076622, -0.03862782195210457, -0.04560233652591705, -0.1406531184911728,
- -0.07426543533802032, 0.014818423427641392, 0.014647257514297962, 0.10556313395500183,
- -0.03542500361800194, 0.009639077819883823, 0.09202403575181961, 0.10340419411659241,
- -0.058462414890527725, 0.023182330653071404, -0.04034486785531044, -0.08841576427221298,
- 0.12693573534488678, 0.013353311456739902, 0.038083214312791824, 0.08623474091291428,
- 0.014966723509132862, -0.018609343096613884, -0.07407209277153015, -0.0098236333578825,
- 0.0420890711247921, 0.2089778333902359, -0.024667473509907722, -0.02543700486421585,
- 0.03255171701312065, -0.0400264598429203, 0.011227244511246681, 0.03951461240649223,
- -0.02364557795226574, 0.04389767348766327, -0.018084945157170296, 0.03023666702210903,
- -0.05608879029750824, 0.013804545626044273, -0.10194608569145203, 0.038671888411045074,
- 0.031632039695978165, 0.03133632242679596, 0.046792928129434586, -0.0800703689455986,
- -0.0053632003255188465, -0.21342116594314575, -0.06309441477060318,
- -0.08014935255050659, 0.09479527920484543, -0.09688081592321396, -0.03337589651346207,
- 0.03665054216980934, 0.007761751301586628, 0.07150695472955704, 0.06353139132261276,
- -0.040528539568185806, -0.04022282734513283, 0.02602875791490078, 0.014676236547529697,
- -0.0036823838017880917, -0.0019267548341304064, 0.20859256386756897,
- -0.08632919192314148, 0.007724270224571228, 0.10461017489433289, -0.12740711867809296,
- 0.34723541140556335, 0.0010820007883012295, -0.02723238430917263, -0.04597783461213112,
- 0.08911705017089844, 0.03412696346640587, 0.01957733742892742, 0.040490224957466125,
- -0.0053893448784947395, 0.06255653500556946, -0.044011980295181274,
- -0.015429648570716381, 0.060329582542181015, 0.0473787784576416, -0.01837020367383957,
- -0.020219819620251656, -0.00729809096083045, -0.04437275230884552, -0.03445931524038315,
- -0.033170487731695175, 0.07765163481235504, 0.09229116141796112, -0.049824800342321396,
- -0.017343442887067795, 0.05898808315396309, -0.034868501126766205, 0.07358213514089584,
- -0.09707929939031601, 0.05376659333705902, 0.03143543004989624, 0.07382139563560486,
- 0.01342448964715004, 0.0025772484950721264, -0.0436188206076622, 0.0073134382255375385,
- 0.04095630720257759, 0.07870492339134216, 0.05337803438305855, -0.00781972799450159,
- 0.072410948574543, 0.055014707148075104, -0.044360265135765076, -0.020640095695853233,
- -0.05300985276699066, -0.041616808623075485, -0.050084058195352554,
- -0.012144356966018677, 0.02072317525744438, -0.07493295520544052, -0.20679546892642975,
- 0.029192954301834106, 0.09302644431591034, -0.02761167846620083, -0.01623290590941906,
- 0.026482677087187767, -0.06533484905958176, 0.060336336493492126, -0.010849113576114178,
- -0.04769293963909149, 0.04968564212322235, 0.021640148013830185, 0.0765787661075592,
- 0.06269719451665878, 0.03029080666601658, -0.020223354920744896, -0.04352077096700668,
- 0.017510561272501945, -0.05254775285720825, 0.08169250935316086, -0.1287805438041687,
- -0.04360835254192352, -0.019823899492621422, -0.05499560758471489, 0.6767935156822205,
- 0.11303374171257019, 0.18131743371486664, 0.01283999439328909, -0.011546045541763306,
- 0.13809825479984283, -0.007075196132063866, 0.040926408022642136, -0.07231226563453674,
- -0.0678425133228302, 0.053164102137088776, -0.04921668767929077, -0.05571533739566803,
- 0.011963561177253723, 0.04932291805744171, 0.057634055614471436, 0.014538631774485111,
- 0.07124008983373642, -0.01924486644566059, -0.08074966073036194, -0.022048022598028183,
- 0.057729657739400864, 0.026831692084670067, -0.1260625123977661, -0.026499168947339058,
- 0.07453609257936478, 0.0951039120554924, -0.08578304946422577, 0.007455174811184406,
- -0.04441994056105614, 0.019658206030726433, -0.0038061512168496847, 0.08001896739006042,
- -0.04743685573339462, 0.034433577209711075, 0.027160020545125008, 0.030344652011990547,
- -0.01955445297062397, -0.07459545880556107, 0.008572231978178024, 0.13614308834075928,
- -0.029599780216813087, -0.034527067095041275, 0.08088474720716476, -0.1033632755279541,
- 0.018405990675091743, -0.004328988492488861, 0.18217110633850098, -0.12440710514783859,
- 0.022090060636401176, -0.006385051179677248, 0.0029917380306869745,
- 0.049576736986637115, -0.012173812836408615, -0.01158508937805891, -0.04245499148964882,
- 0.10671690106391907, -0.00028781339642591774, 0.047642167657613754, 0.07044040411710739,
- -0.024488074705004692, 0.07133863866329193, 0.08074771612882614,
- -0.00009889798820950091, -0.02800772711634636, 0.06820952892303467, 0.0381709523499012,
- -0.03748899698257446, -0.015653057023882866, -0.020606035366654396,
- 0.015356427058577538, 0.05209066718816757, -0.001259287353605032, 0.06976442784070969,
- -0.007478834595531225, -0.04429192841053009, 0.05849730968475342, 0.08039283752441406,
- 0.03387381136417389, 0.08018402755260468, -0.0896991640329361, -0.05556664243340492,
- -0.027153588831424713, -0.050000544637441635, 0.03875451534986496,
- -0.027648329734802246, 0.09330634772777557, 0.10600913316011429, 0.09612496197223663,
- 0.01976007968187332, 0.040269747376441956, 0.027906449511647224, 0.06857021152973175,
- 0.02201860211789608, 0.05752241611480713, -0.04789562523365021, -0.04013869911432266,
- -0.03317064791917801, 0.0037105181254446507, 0.03542499616742134, 0.017865436151623726,
- -0.07133379578590393, -0.015421858988702297, -0.02233300358057022,
- -0.039574068039655685, -0.1131804957985878, -0.023899806663393974, 0.03550500050187111,
- 0.03614974021911621, -0.03901917114853859, -0.0641557052731514, -0.08354009687900543,
- 0.0008488908060826361, 0.06725797802209854, -0.02831883542239666, -0.01584470085799694,
- -0.09699166566133499, 0.02110014110803604, -0.012572113424539566, 0.04767363891005516,
- 0.014074740000069141, -0.01758524216711521, 0.00766462879255414, -0.03089105896651745,
- 0.0168199073523283, -0.0037157631013542414, -0.03950559347867966, -0.05714672431349754,
- -0.06649862974882126, -0.03316657245159149, 0.016502441838383675, 0.029392190277576447,
- -0.023534638807177544, 0.0123489610850811, 0.0497613400220871, 0.07461242377758026,
- -0.009278210811316967, -0.05015012249350548, 0.033172037452459335,
- -0.021673429757356644, -0.040422115474939346, 0.06958810240030289,
- -0.025208882987499237, 0.02524486929178238, -0.03359365835785866, -0.06358466297388077,
- -0.0331793949007988, 0.021981418132781982, -0.06696398556232452, 0.029874635860323906,
- -0.043044671416282654, 0.01060890220105648, -0.03402876853942871, 0.0004896824830211699,
- 0.0660715326666832, -0.03459833189845085, -0.09943389892578125, -0.07538700848817825,
- 0.14939650893211365, -0.0015652603469789028, -0.019651716575026512, 0.03242126852273941,
- -0.04735744372010231, 0.02805005945265293, 0.005555218551307917, 0.02923215553164482,
- 0.037150003015995026, 0.06840398162603378, 0.006373621057718992, 0.04247847944498062,
- 0.0799957811832428, 0.014324444346129894, 0.05336160585284233, 0.05658639967441559,
- 0.440686970949173, -0.26368463039398193, 0.08677678555250168, 0.07983708381652832,
- 0.02309896983206272, 0.06053560972213745, -0.06066012755036354, 0.08813050389289856,
- 0.06980155408382416, 0.12486331909894943, 0.1044565886259079, -0.049296893179416656,
- 0.04590966925024986, -0.04396749287843704, 0.06634626537561417, -0.024778099730610847,
- 0.0019292678916826844, -0.0035980804823338985, -0.05255606397986412,
- -0.024595284834504128, 0.051765844225883484, -0.01814744435250759,
- -0.0020141801796853542, -0.013044556602835655, -0.02833598293364048,
- 0.013066336512565613, 0.0322134792804718, 0.039065808057785034, -0.00255132676102221,
- 0.02446790225803852, -0.028756337240338326, 0.07566768676042557, 0.04890589416027069,
- -0.0004927366389892995, -0.1486816555261612, 0.053754743188619614, -0.06452813744544983,
- -0.1629430204629898, 0.07882492989301682, -0.017896687611937523, 0.062221232801675797,
- 0.07645338028669357, -0.04561702907085419, 0.021745329722762108, -0.010080309584736824,
- -0.03438154608011246, -0.0064383093267679214, 0.057195305824279785, 0.03075258806347847,
- 0.06676547974348068, 0.184317484498024, -0.05684179440140724, -0.012859797105193138,
- -0.11019427329301834, 0.04756392166018486, 0.12599264085292816, -0.057702720165252686,
- 0.022427715361118317, -0.005924500059336424, -0.02987583354115486,
- -0.0016363270115107298, -0.04422296583652496, -0.06519875675439835,
- -0.007236627861857414, -0.0487363338470459, 0.08184491842985153, 0.015214631333947182,
- -0.08515006303787231, -0.1946215033531189, -0.03447107970714569, -0.07512858510017395,
- -0.00027919330750592053, 0.1601017415523529, -0.06975238770246506, 0.04029187932610512,
- 0.012490063905715942, 0.006181907374411821, 0.015233364887535572, -0.08232119679450989,
- 0.01626233570277691, -0.05856584385037422, 0.027630914002656937, 0.062214288860559464,
- 0.04039322957396507, -0.036239851266145706, 0.06955376267433167, -0.06976811587810516,
- 0.07754825800657272, -0.008901454508304596, -0.009938608855009079, 0.03067612461745739,
- -0.0389212928712368, 0.04871690645813942, 0.018995251506567, -0.06472160667181015,
- 0.014575651846826077, -0.030192313715815544, -0.05271248519420624, -0.07997862994670868,
- -0.05871149152517319, -0.04297042265534401, -0.048848673701286316, 0.05959886312484741,
- -0.057479128241539, -0.026973314583301544, -0.03307018056511879, -0.05142410844564438,
- 0.010997376404702663, 0.005886915139853954, 0.007414954714477062, -0.19634923338890076,
- 0.020626792684197426, 0.004773119930177927, 0.06100736930966377, 0.01219923235476017,
- -0.04453333839774132, 0.01871468871831894, 0.09916763752698898, 0.04569369927048683,
- -0.011003612540662289, -0.02887464128434658, -0.08921509981155396, 0.041664496064186096,
- -0.10299887508153915, -0.4322628080844879, 0.049493420869112015, -0.011862852610647678,
- 0.025229396298527718, 0.01770697347819805, -0.057476650923490524, 0.023059817031025887,
- 0.005017523188143969, -0.043471552431583405, 0.07326657325029373, -0.07124491780996323,
- 0.028629135340452194, -0.06145425885915756, -0.069009929895401, -0.041507259011268616,
- -0.043621230870485306, -0.0482817180454731, 0.06181380897760391, -0.01844683662056923,
- -0.05259023606777191, -0.08557558804750443, 0.03990473970770836, -0.0222608745098114,
- -0.0016403321642428637, -0.008571191690862179, 0.034513309597969055,
- -0.08775835484266281, -0.04570572450757027, 0.0009687611600384116, 0.04076416790485382,
- 0.04926229640841484, -0.07166183739900589, -0.01670515537261963, 0.0658736303448677,
- 0.012167819775640965, 0.13335874676704407, 0.0047090365551412106, -0.03770892322063446,
- -0.07839041203260422, 0.0873328223824501, 0.05954022333025932, 0.18356956541538239,
- 0.005848190281540155, 0.020448781549930573, -0.000728315906599164, 0.14631220698356628,
- 0.06485877186059952, 0.025253714993596077, -0.017228957265615463, -0.014865737408399582,
- 0.03779909387230873, -0.0191739983856678, 0.08198236674070358, -0.08161947131156921,
- -0.01684769243001938, -0.03227763995528221, -0.028599590063095093,
- -0.010220552794635296, -0.028026092797517776, 0.21582776308059692, 0.031170474365353584,
- 0.05115325748920441, 0.01903543621301651, -0.05552474409341812, 0.009090820327401161,
- -0.054622065275907516, -0.08662554621696472, -0.033508941531181335,
- 0.008935113437473774, 0.012606167234480381, -0.05094156414270401, -0.12162075191736221,
- -0.022869087755680084, 0.005860632285475731, 0.0038501606322824955, 0.10249731689691544,
- -0.009213519282639027, 0.012357568368315697, -0.05276133120059967, 0.12539662420749664,
- 0.046810492873191833, 0.03525494411587715, 0.04286139830946922, 0.06206073611974716,
- 0.03769582882523537, -0.01930663362145424, -0.043434616178274155, -0.06400999426841736,
- 0.02754816971719265, 0.10887518525123596, -0.05908149480819702, 0.138988196849823,
- 0.04569287598133087, -0.005702103488147259, -0.02003582753241062, 0.0514688640832901,
- -0.008168225176632404, -0.022122681140899658, -0.45114022493362427,
- -0.050932738929986954, 0.12804703414440155, 0.04984307289123535, 0.008508586324751377,
- 0.08040771633386612, 0.03688066825270653, -0.05069505795836449, -0.01610293798148632,
- -0.10170810669660568, 0.12507867813110352, -0.004220287781208754, 0.0627131462097168,
- -0.06462476402521133, 0.02702769823372364, 0.07134556025266647, -0.05754498019814491,
- -0.01900741644203663, 0.06731882691383362, -0.22492288053035736, 0.005115245934575796,
- -0.05114900693297386, 0.13016778230667114, -0.005450827069580555, 0.061184290796518326,
- 0.08625661581754684, -0.07662840187549591, 0.0646580383181572, 0.05438990890979767,
- 0.008097739890217781, 0.07128612697124481, -0.020226074382662773, -0.03166569396853447,
- 0.10437166690826416, 0.10017688572406769, 0.08960451185703278, -0.016779182478785515,
- 12.145391464233398, 0.06094448268413544, 0.044119760394096375, -0.10518331825733185,
- 0.01818530261516571, -0.045413240790367126, 0.03380705416202545, -0.1402818113565445,
- 0.036658015102148056, 0.11182799935340881, -0.014596197754144669, -0.026243185624480247,
- -0.004974351264536381, -0.11255419999361038, 0.03493889048695564, -0.02656412683427334,
- -0.05874783918261528, -0.03984595462679863, 0.04095378890633583, -0.06487224251031876,
- -0.03546261787414551, 0.02832677774131298, 0.06345676630735397, 0.018433941528201103,
- -0.05787104368209839, 0.025556011125445366, -0.008646336384117603,
- -0.021874798461794853, 0.004650259390473366, 0.003573464695364237,
- -0.026235131546854973, 0.03165391832590103, 0.033942271023988724,
- -0.0005291294655762613, 0.032785121351480484, 0.05803648382425308, 0.09530580043792725,
- 0.047249697148799896, 0.03747217729687691, 0.0603146106004715, -0.011620738543570042,
- 0.013621107675135136, 0.02457391656935215, 0.038024213165044785, 0.07938522845506668,
- 0.023640448227524757, 0.05947773531079292, 0.12177655100822449, 0.01375790499150753,
- 0.07830450683832169, 0.10059811919927597, -0.022613786160945892, 0.11089099198579788,
- 0.04484902322292328, -0.028557341545820236, 0.036357197910547256, 0.003619665512815118,
- -0.0893084779381752, 0.11641082167625427, 0.09098208695650101, -0.035863157361745834,
- 0.11620313674211502, 0.02251008339226246, 0.11531651020050049, 0.005595512222498655,
- 0.06138955429196358, 0.06977909803390503, 0.06880775839090347, -0.09904032200574875,
- -0.06294713169336319, 0.011443796567618847, -0.11346478015184402, -0.08054433763027191,
- 0.055981993675231934, 0.07297582179307938, -0.02430877275764942, 0.06023574247956276,
- 0.0058091371320188046, 0.013734928332269192, -0.043085649609565735,
- -0.00015799426182638854, 0.024421263486146927, -0.037745844572782516,
- 0.04034942016005516, 0.03984574228525162, 0.01803053729236126, 0.068459153175354,
- 0.09191711246967316, 0.021710988134145737, -0.09005162864923477, -0.05162535607814789,
- 0.13608500361442566, -0.0263089407235384, -0.06684676557779312, -0.012180128134787083,
- -0.04637869819998741, 0.03835451230406761, -0.16104628145694733, 0.06261196732521057,
- 0.09045247733592987, -0.1137586161494255, -0.02508419193327427, -0.027822138741612434,
- 0.06761538237333298, -0.009084641002118587, 0.05114099010825157, -0.07122185081243515,
- 0.02791029028594494, 0.014966905117034912, 0.04906269535422325, -0.05708567053079605,
- 0.0893784761428833, 0.11489170044660568, -0.07577833533287048, 0.009474054910242558,
- 0.06140244007110596, 0.0016583013348281384, -0.013223572634160519, 0.06062791496515274,
- 0.06262039393186569, -0.07472662627696991, -0.041657980531454086, -0.032111454755067825,
- -0.03510085493326187, -0.024094730615615845, -0.04994523525238037,
- 0.0029983113054186106, 0.02320168726146221, 0.0017223943723365664,
- -0.005759320687502623, 0.07086027413606644, 0.0753193199634552, 0.0765867754817009,
- -0.02472830004990101, 0.071898452937603, -0.05312253162264824, -0.04204006493091583,
- 0.06715293228626251, 0.05886116996407509, 0.04955081641674042, -0.08367964625358582,
- -0.04622387886047363, -0.055713340640068054, -0.11225728690624237, 0.006674385163933039,
- 0.04931364953517914, 0.06616434454917908, 0.05413229763507843, -0.023148149251937866,
- -0.0743236169219017, -0.039838436990976334, 0.07849978655576706, 0.03730214014649391,
- -0.009527684189379215, 0.02725198306143284, -0.0504690445959568, -0.0021632106509059668,
- 0.09713851660490036, -0.05173245817422867, -0.004684478510171175, 0.022031160071492195,
- -0.036426935344934464, 0.062074173241853714, 0.13416850566864014, 0.052709225565195084,
- 0.01144251599907875, 0.024671034887433052, 0.009613905102014542, 0.025835221633315086,
- -0.0004903595545329154, 0.020686807110905647, -0.00735059566795826,
- -0.13737057149410248, -0.05467982590198517, 0.048403337597846985, 0.10086043179035187,
- 0.05236145481467247, -0.13344672322273254, -0.03748165816068649, -0.029689395800232887
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 38,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 6,
- "similarity": 0.9989733695983887
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 7,
- "similarity": 0.9989604949951172
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 33,
- "similarity": 0.9988951683044434
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Alex Wawro"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 662,
- "source_domain": "gamasutra.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Frontier inadvertently drives Elite: Dangerous AI to create superweapons",
- "url": "https://www.gamasutra.com/view/news/274230/Frontier_inadvertently_drives_Elite_Dangerous_AI_to_create_superweapons.php"
- },
- {
- "__typename": "Report",
- "authors": ["Ian Sandwell"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 659,
- "source_domain": "digitalspy.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Elite's AI created super weapons to hunt down players",
- "url": "https://www.digitalspy.com/gaming/a796635/elite-dangerous-ai-super-weapons-bug/"
- },
- {
- "__typename": "Report",
- "authors": ["Eliot Lefebvre"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 658,
- "source_domain": "massivelyop.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Elite: Dangerous identifies issues with AI superweapons in the game",
- "url": "https://massivelyop.com/2016/06/02/elite-dangerous-identifies-issues-with-ai-superweapons-in-the-game/"
- },
- {
- "__typename": "Report",
- "authors": ["Jamie Feltham"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 657,
- "source_domain": "uploadvr.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Elite's New AI is So Clever it Built Weapons that Shouldn't Exist",
- "url": "https://uploadvr.com/elite-dangerous-super-weapons-skynet-bug/"
- },
- {
- "__typename": "Report",
- "authors": ["Wesley Yin-Poole"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 656,
- "source_domain": "eurogamer.net",
- "submitters": ["Roman Yampolskiy"],
- "title": "Elite: Dangerous' latest expansion caused AI spaceships to unintentionally create super weapons",
- "url": "https://www.eurogamer.net/articles/2016-06-03-elite-dangerous-latest-expansion-caused-ai-spaceships-to-unintentionally-create-super-weapons"
- },
- {
- "__typename": "Report",
- "authors": ["June Javelosa"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 655,
- "source_domain": "futurism.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Bug In Video Game Makes AI Go Rogue, Starts Totally Destroying Players",
- "url": "https://futurism.com/this-video-games-artificial-intelligence-turned-on-players-using-super-weapons"
- },
- {
- "__typename": "Report",
- "authors": ["Hope Reese"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 654,
- "source_domain": "techrepublic.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Top 10 AI failures of 2016",
- "url": "https://www.techrepublic.com/article/top-10-ai-failures-of-2016/"
- },
- {
- "__typename": "Report",
- "authors": ["Umbrella It"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 652,
- "source_domain": "umbrellait.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Forewarned Means Forearmed: AI-related Legal and Ethical Issues and Risks",
- "url": "https://umbrellait.com/forewarned-means-forearmed-ai-related-legal-and-ethical-issues-and-risks"
- },
- {
- "__typename": "Report",
- "authors": ["Angus Morrison"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 650,
- "source_domain": "pcgamer.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Elite Dangerous patch stops AI developing WMDs",
- "url": "https://www.pcgamer.com/au/elite-dangerous-patch-stops-ai-developing-wmds/"
- },
- {
- "__typename": "Report",
- "authors": [
- "Julian Benson",
- "Laura Kate Dale",
- "Nathan Grayson",
- "Riley Macleod",
- "Zack Zwiezen"
- ],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 649,
- "source_domain": "kotaku.co.uk",
- "submitters": ["Roman Yampolskiy"],
- "title": "Elite's AI Created Super Weapons and Started Hunting Players. Skynet is Here",
- "url": "http://www.kotaku.co.uk/2016/06/03/elites-ai-created-super-weapons-and-started-hunting-players-skynet-is-here"
- },
- {
- "__typename": "Report",
- "authors": ["Sharmistha Mukherjee"],
- "epoch_date_downloaded": 1560124800,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 648,
- "source_domain": "techseen.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "6 goof-ups that show AI is still in its diapers",
- "url": "https://techseen.com/2017/08/01/ai-failures-so-far/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "university-of-washington",
- "name": "University of Washington"
- },
- {
- "__typename": "Entity",
- "entity_id": "fakeapp",
- "name": "FakeApp"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "university-of-washington",
- "name": "University of Washington"
- },
- {
- "__typename": "Entity",
- "entity_id": "fakeapp",
- "name": "FakeApp"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "barack-obama",
- "name": "Barack Obama"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [
- 696, 695, 694, 693, 692, 690, 689, 688, 687, 686, 685, 684, 683, 682, 681, 680, 679,
- 678, 677, 676, 675, 674, 673, 672, 671, 670, 669, 668, 667
- ],
- "vector": [
- -0.06472739577293396, 0.07145486027002335, 0.018703313544392586, -0.15352149307727814,
- 0.09073353558778763, -0.013201755471527576, -0.0010731484508141875, 0.05979526787996292,
- 0.09374306350946426, -0.14594656229019165, 0.002951165195554495, 0.07139401137828827,
- 0.014839963987469673, -0.11233124881982803, 0.04295320063829422, -0.08278936892747879,
- -0.08336415141820908, -0.06844371557235718, -0.016006236895918846, -0.10779040306806564,
- -0.07463441044092178, 0.0014043549308553338, -0.008002002723515034, 0.09847359359264374,
- -0.05320107564330101, 0.012128603644669056, 0.08803877234458923, 0.0969342440366745,
- -0.09155665338039398, 0.04761413857340813, -0.028330612927675247, -0.09140915423631668,
- 0.1250775158405304, 0.036837078630924225, 0.003783267689868808, 0.08582235127687454,
- -0.003548471024259925, -0.018919890746474266, -0.02992299385368824,
- -0.01686268486082554, 0.03094332665205002, 0.23385204374790192, 0.002051220741122961,
- -0.03462378680706024, 0.05046704784035683, -0.059405453503131866, -0.002776683308184147,
- 0.03328878432512283, -0.0026496928185224533, 0.028616586700081825,
- 0.00019935095042455941, 0.0008244254859164357, -0.04571209102869034,
- 0.024685099720954895, -0.09250729531049728, 0.06962180882692337, 0.03412484750151634,
- 0.011796941049396992, 0.0582207515835762, -0.087615467607975, -0.027446892112493515,
- -0.20803238451480865, -0.04127660393714905, -0.0942864716053009, 0.08089689910411835,
- -0.086248017847538, -0.0371764674782753, 0.0329391285777092, 0.03506015986204147,
- 0.05061668902635574, 0.06472256034612656, -0.035415370017290115, -0.03775295987725258,
- 0.038520295172929764, 0.00817086547613144, -0.02135595865547657, 0.0171858798712492,
- 0.2259984016418457, -0.10294555127620697, 0.022917915135622025, 0.1186518445611,
- -0.12807975709438324, 0.3768276572227478, 0.0018193572759628296, 0.0011095453519374132,
- -0.01040553953498602, 0.10057803988456726, 0.009707173332571983, 0.03747950494289398,
- 0.020539553835988045, -0.007293358910828829, 0.054555460810661316, -0.07046844810247421,
- -0.01981213502585888, 0.06282918900251389, 0.005280704237520695, -0.01049528457224369,
- 0.03519201651215553, -0.01614982634782791, -0.06189759820699692, -0.004000365734100342,
- -0.0097133107483387, 0.1286686807870865, 0.08569227904081345, -0.031357280910015106,
- -0.012331240810453892, 0.07205818593502045, -0.059231266379356384, 0.06848122179508209,
- -0.09363269060850143, 0.04240367189049721, -0.041753243654966354, 0.06480946391820908,
- -0.008787812665104866, 0.021810371428728104, -0.06236524507403374, 0.014192799106240273,
- 0.041078612208366394, 0.09781008958816528, 0.06945370882749557, 0.005333511158823967,
- 0.04867619648575783, 0.07137971371412277, -0.05954655632376671, -0.02810531109571457,
- -0.031669389456510544, -0.06042112037539482, -0.02013835497200489, -0.03854240104556084,
- 0.04978415369987488, -0.04164533317089081, -0.19519396126270294, 0.042119212448596954,
- 0.06695012748241425, -0.027760304510593414, -0.045641638338565826, 0.02597958967089653,
- -0.0471370704472065, 0.029151391237974167, -0.01744718849658966, -0.03346875682473183,
- 0.08762341737747192, 0.028588328510522842, 0.03118365816771984, 0.113243468105793,
- 0.05641934275627136, -0.04035390913486481, -0.05131315812468529, -0.021104995161294937,
- -0.04347265884280205, 0.12288952618837357, -0.13299015164375305, -0.04001310467720032,
- -0.02986043132841587, -0.013284155167639256, 0.6742010712623596, 0.10197679698467255,
- 0.20051085948944092, 0.028260450810194016, 0.009979619644582272, 0.16235338151454926,
- 0.00708541925996542, 0.05048872530460358, -0.07591444998979568, -0.05565078556537628,
- 0.030598945915699005, -0.04769943654537201, -0.04221900552511215, 0.02585764415562153,
- 0.008129378780722618, 0.07475510239601135, 0.03341316059231758, 0.06343984603881836,
- 0.016888704150915146, -0.10714889317750931, -0.05222976952791214, 0.0398232527077198,
- 0.003474936820566654, -0.12119102478027344, -0.04277484118938446, 0.06608480960130692,
- 0.08569488674402237, -0.09661566466093063, -0.02842313051223755, -0.042079079896211624,
- 0.06404846906661987, -0.01816730573773384, 0.08552757650613785, -0.036941446363925934,
- 0.04390296712517738, 0.0499415285885334, 0.018373727798461914, 0.005634383298456669,
- -0.08283194899559021, 0.0012616300955414772, 0.08297307044267654, -0.0376582108438015,
- -0.03925429284572601, 0.046954285353422165, -0.09514783322811127, -0.000216551503399387,
- 0.024283841252326965, 0.14381006360054016, -0.12237036973237991, 0.017319513484835625,
- -0.004048595670610666, -0.038022834807634354, 0.06140788644552231, 0.00603240542113781,
- -0.03794293478131294, -0.0477643720805645, 0.07212964445352554, 0.05495911091566086,
- 0.072188600897789, 0.0436612032353878, -0.008199903182685375, 0.045897554606199265,
- 0.053360190242528915, 0.006355784367769957, -0.040066443383693695, 0.056803930550813675,
- 0.055294767022132874, -0.0698847770690918, -0.029331162571907043, 0.028343262150883675,
- 0.04092073813080788, 0.025342874228954315, -0.007894938811659813, 0.029284553602337837,
- 0.0008540666312910616, -0.05942479893565178, 0.05842692777514458, 0.007659565657377243,
- 0.018772998824715614, 0.060761842876672745, -0.0612354539334774, -0.05625912547111511,
- -0.04850327596068382, -0.01877451501786709, 0.03057269938290119, -0.02177613228559494,
- 0.08054058998823166, 0.10621483623981476, 0.05989143252372742, 0.03458623215556145,
- 0.006338377483189106, 0.03596818447113037, 0.042583487927913666, 0.01127652544528246,
- 0.07215569913387299, -0.012673220597207546, -0.05744283273816109, -0.044022608548402786,
- -0.0077658710069954395, 0.01954304799437523, 0.038030173629522324, -0.08604386448860168,
- -0.036817003041505814, -0.04514945298433304, -0.01016304176300764, -0.07438042759895325,
- -0.05562599375844002, 0.02872987650334835, 0.05440743640065193, -0.03774256259202957,
- -0.07908261567354202, -0.0825996845960617, 0.023264342918992043, 0.08074267953634262,
- -0.027563514187932014, -0.03241528198122978, -0.11953248828649521, 0.03274082764983177,
- -0.04697733744978905, 0.05922979861497879, -0.004485865589231253,
- -0.0076554869301617146, 0.0033606456127017736, -0.06335311383008957,
- 0.046070389449596405, 0.024900389835238457, -0.04113013669848442, 0.000976906972937286,
- -0.05332565680146217, -0.048392243683338165, -0.04099584370851517,
- -0.029365841299295425, -0.027316376566886902, 0.04411511495709419, 0.05340476706624031,
- 0.0635991021990776, 0.019106680527329445, -0.041079550981521606, 0.05443764477968216,
- -0.014093062840402126, -0.025203309953212738, 0.0883709043264389, -0.026442427188158035,
- 0.013583822175860405, -0.04762640595436096, -0.0871334820985794, -0.03896797448396683,
- 0.053031302988529205, -0.030101696029305458, 0.04606331139802933, -0.02872111089527607,
- 0.014180606231093407, -0.04016568511724472, -0.04492722451686859, 0.06263308227062225,
- -0.06396229565143585, -0.08195142447948456, -0.0869864970445633, 0.12815773487091064,
- -0.012574448250234127, -0.004381790291517973, 0.0061283474788069725,
- -0.01385758351534605, 0.02642243728041649, -0.020979272201657295, 0.03391461446881294,
- 0.0041913534514606, 0.03789202496409416, 0.0034050368703901768, 0.037755634635686874,
- 0.056562431156635284, -0.029364466667175293, 0.04555182158946991, 0.05647576227784157,
- 0.45752471685409546, -0.25998222827911377, 0.09642665088176727, 0.08795900642871857,
- 0.02527758851647377, 0.06051097810268402, -0.052787259221076965, 0.08729427307844162,
- 0.09436299651861191, 0.11842523515224457, 0.10356219857931137, -0.04857594147324562,
- 0.0021759821102023125, -0.09077803790569305, 0.07590418308973312, 0.02069602534174919,
- 0.03442998602986336, -0.040998343378305435, -0.05151078477501869, -0.01969127729535103,
- 0.0526760034263134, -0.0447019599378109, 0.019602477550506592, 0.0006908497307449579,
- -0.02040923945605755, 0.010634937323629856, 0.006972098723053932, 0.03281164914369583,
- -0.03643165901303291, 0.025900207459926605, -0.01788434199988842, 0.05509861931204796,
- 0.04197990149259567, 0.03165750950574875, -0.15545536577701569, 0.0024719415232539177,
- -0.020784063264727592, -0.14419615268707275, 0.07425297796726227, 0.009401658549904823,
- 0.07363009452819824, 0.03588038310408592, -0.05075991526246071, 0.033764492720365524,
- -0.021328158676624298, -0.05013158544898033, 0.007409658282995224, 0.0948764756321907,
- -0.00035390915581956506, 0.05250771716237068, 0.14853030443191528, -0.05243125185370445,
- -0.02751065045595169, -0.10228321701288223, 0.0796121209859848, 0.16999267041683197,
- -0.004782026633620262, 0.0031926713418215513, 0.016328150406479836,
- -0.008448340930044651, -0.002410090761259198, -0.0615113191306591, -0.05719415098428726,
- -0.055191799998283386, -0.03923387452960014, 0.08034209907054901, 0.0061876545660197735,
- -0.04396310821175575, -0.18442822992801666, -0.04093187302350998, -0.049756359308958054,
- 0.03809310123324394, 0.14481626451015472, -0.06869450956583023, 0.0322636179625988,
- 0.003444862086325884, 0.003681644331663847, 0.019838407635688782, -0.06207825243473053,
- 0.009177813306450844, -0.023121559992432594, 0.023412413895130157, 0.07979217916727066,
- 0.030046576634049416, -0.03922049328684807, 0.09010963141918182, -0.07642427831888199,
- 0.05778077617287636, -0.022322379052639008, 0.001367593533359468, 0.03820168972015381,
- -0.046878181397914886, 0.024096151813864708, 0.02656586281955242, -0.07966969907283783,
- 0.021337689831852913, -0.0420924574136734, -0.0413283072412014, -0.06293649971485138,
- -0.06651583313941956, -0.032925527542829514, -0.1007021814584732, 0.017672477290034294,
- -0.0648680180311203, -0.01932753250002861, -0.05186569318175316, -0.04658128321170807,
- 0.001118463696911931, 0.03270922973752022, 0.025411082431674004, -0.13415482640266418,
- -0.04028511419892311, -0.015225326642394066, 0.03397351875901222, -0.014330537989735603,
- -0.05576729774475098, -0.007678628899157047, 0.0693928524851799, 0.043850187212228775,
- -0.05556514486670494, 0.04398094117641449, -0.09207304567098618, 0.0528247244656086,
- -0.08357296884059906, -0.43519800901412964, 0.08482247591018677, 0.023543154820799828,
- 0.016929548233747482, 0.016668075695633888, -0.06630246341228485, 0.02442239411175251,
- -0.01633276231586933, -0.03168467432260513, 0.07707471400499344, -0.04942100867629051,
- 0.029100287705659866, -0.051165394484996796, -0.048645880073308945,
- -0.030079836025834084, -0.06231977790594101, -0.04597344994544983, 0.037888091057538986,
- -0.01184340100735426, -0.05891262739896774, -0.09630190581083298, 0.033800724893808365,
- -0.04816034436225891, 0.015350891277194023, 0.005207121837884188, 0.009809269569814205,
- -0.03542191907763481, -0.05795688554644585, 0.05979003757238388, 0.09178412705659866,
- 0.029251620173454285, -0.08503350615501404, -0.0073748743161559105, 0.03603282943367958,
- 0.02035457268357277, 0.12294599413871765, -0.01273745484650135, -0.028275681659579277,
- -0.0790376365184784, 0.09075116366147995, 0.08384518325328827, 0.18356242775917053,
- -0.005674048792570829, 0.025349674746394157, 0.0033280744682997465, 0.16580133140087128,
- 0.047421637922525406, 0.016124757006764412, -0.038072094321250916, 0.02300926297903061,
- 0.04225761070847511, -0.024425312876701355, 0.08032282441854477, -0.10637970268726349,
- -0.02217942476272583, -0.025295410305261612, -0.05068238079547882,
- -0.005570888519287109, -0.021372772753238678, 0.23126651346683502, 0.018366359174251556,
- 0.011550773866474628, 0.01837531477212906, -0.029855895787477493, 0.0191736351698637,
- -0.0622369758784771, -0.09175146371126175, -0.004036812111735344, -0.020101524889469147,
- 0.01031145267188549, -0.030027659609913826, -0.10161126405000687, -0.018603945150971413,
- 0.016467614099383354, 0.00788547471165657, 0.10671450942754745, -0.00906747579574585,
- 0.018659895285964012, -0.04643097147345543, 0.13027456402778625, 0.02431805059313774,
- 0.0019043661886826158, 0.053574338555336, 0.08895644545555115, 0.03791788965463638,
- 0.0012616205494850874, -0.013776084408164024, -0.06221223995089531,
- -0.004222461953759193, 0.17748112976551056, -0.024883229285478592, 0.1318390965461731,
- 0.04909432306885719, -0.02992597594857216, -0.04274642467498779, 0.03166083246469498,
- -0.014028591103851795, 0.02582857571542263, -0.4466378092765808, -0.02764199860394001,
- 0.11374665051698685, 0.022060390561819077, 0.017607972025871277, 0.05060884356498718,
- 0.05742757394909859, -0.04636085405945778, -0.02875041775405407, -0.08372904360294342,
- 0.1042930856347084, 0.02035406604409218, 0.07968106120824814, -0.07889249920845032,
- 0.009799985215067863, 0.05302009731531143, -0.036896273493766785, 0.027135388925671577,
- 0.064336396753788, -0.23137295246124268, 0.0034905713982880116, -0.013967050239443779,
- 0.14327339828014374, 0.008765229023993015, 0.02484648860991001, 0.09748880565166473,
- -0.0780930295586586, 0.023471415042877197, 0.056422535330057144, -0.011708768084645271,
- 0.03375573083758354, -0.015023496001958847, -0.026825111359357834, 0.09837760031223297,
- 0.11586955189704895, 0.07999606430530548, -0.006903091445565224, 12.134716987609863,
- 0.0458579882979393, 0.043083518743515015, -0.07783569395542145, -0.004139251541346312,
- -0.0718233585357666, 0.027530420571565628, -0.11365269869565964, 0.08996067941188812,
- 0.12793251872062683, -0.01166471280157566, -0.04970995709300041, -0.008730062283575535,
- -0.10433275252580643, 0.0306718610227108, -0.03804069384932518, -0.03558813035488129,
- -0.054755743592977524, 0.054537490010261536, -0.03391673043370247, -0.05787988007068634,
- 0.06574289500713348, 0.05826321989297867, 0.00022581939992960542, -0.04365609958767891,
- 0.03598006069660187, -0.004431925248354673, -0.020179130136966705, -0.01031717099249363,
- 0.0598275326192379, 0.00626443512737751, 0.054216910153627396, 0.07994343340396881,
- 0.0061175222508609295, 0.04126851260662079, 0.03446831926703453, 0.09460263699293137,
- 0.03971264138817787, 0.02728242240846157, 0.0805816501379013, 0.008258557878434658,
- 0.00701981270685792, 0.00940780621021986, 0.04353107139468193, 0.06425212323665619,
- 0.059943970292806625, 0.048266444355249405, 0.13762976229190826, -0.011924676597118378,
- 0.0819600448012352, 0.0970674380660057, -0.01895035430788994, 0.11556639522314072,
- 0.020539002493023872, -0.009254219010472298, 0.05019591748714447, -0.014854189939796925,
- -0.08784845471382141, 0.10406375676393509, 0.0496935211122036, -0.05502890422940254,
- 0.11729507148265839, 0.0097825201228261, 0.1340687870979309, -0.0017032625619322062,
- 0.04669830948114395, 0.0651971623301506, 0.08769411593675613, -0.10671167075634003,
- -0.09508881717920303, 0.011123348958790302, -0.0894012525677681, -0.06723179668188095,
- 0.04937615245580673, 0.11227494478225708, -0.03411722928285599, 0.03934179246425629,
- -0.039809539914131165, 0.021282540634274483, -0.044913992285728455,
- 0.0008769461419433355, 0.022867165505886078, -0.021779203787446022,
- 0.024441467598080635, 0.04586176201701164, 0.03352790325880051, 0.06441869586706161,
- 0.07718618959188461, 0.027886107563972473, -0.09262275695800781, -0.04465288296341896,
- 0.11108164489269257, -0.04032855108380318, -0.055644504725933075, 0.02994568832218647,
- -0.05882991850376129, 0.03186424449086189, -0.14575038850307465, 0.08214323222637177,
- 0.1312778741121292, -0.08596445620059967, 0.0015173039864748716, -0.029556691646575928,
- 0.08119279146194458, 0.002856513485312462, 0.031677089631557465, -0.0856810137629509,
- 0.012544658035039902, 0.0316132977604866, 0.03663469851016998, -0.0625372901558876,
- 0.045239780098199844, 0.10454196482896805, -0.07413587719202042, 0.04331950843334198,
- 0.05346633121371269, -0.019248437136411667, -0.03482844680547714, 0.07257597148418427,
- 0.04932750016450882, -0.10388436913490295, -0.037441715598106384, -0.026108916848897934,
- -0.03886345028877258, -0.020197775214910507, -0.055910032242536545,
- 0.027889223769307137, 0.04572681337594986, -0.053452249616384506, 0.007001915015280247,
- 0.0414801761507988, 0.07331452518701553, 0.09066877514123917, -0.034751035273075104,
- 0.05146697163581848, -0.05536327138543129, -0.046368759125471115, 0.054972920566797256,
- 0.06736444681882858, 0.06544723361730576, -0.07620041817426682, -0.03985900804400444,
- -0.03381790220737457, -0.11770926415920258, 0.02896348014473915, 0.06762773543596268,
- 0.05124535784125328, 0.04122661054134369, 0.021043401211500168, -0.07354462891817093,
- -0.045845963060855865, 0.07446243613958359, 0.038739465177059174, 0.006160772871226072,
- 0.05853298306465149, -0.03608925640583038, -0.02461853064596653, 0.1169271320104599,
- -0.028868695721030235, -0.007289279717952013, -0.020329371094703674,
- -0.012291540391743183, 0.10446524620056152, 0.10670478641986847, 0.05732026323676109,
- 0.02526387758553028, 0.041572168469429016, -0.01407298631966114, 0.035984255373477936,
- -0.015535645186901093, 0.027343280613422394, -0.03314847871661186, -0.07594309002161026,
- -0.09829206764698029, 0.0006275605410337448, 0.07742387801408768, 0.07372201234102249,
- -0.11889825761318207, -0.018303167074918747, -0.03633434697985649
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 39,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 41,
- "similarity": 0.9992427825927734
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 6,
- "similarity": 0.999006986618042
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 49,
- "similarity": 0.9989709258079529
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Stuff"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 696,
- "source_domain": "stuff.co.nz",
- "submitters": ["Anonymous"],
- "title": "Fake Obama speech created using artificial intelligence",
- "url": "https://www.stuff.co.nz/technology/digital-living/94904829/fake-obama-speech-created-using-artificial-intelligence"
- },
- {
- "__typename": "Report",
- "authors": ["Bloomberg"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 695,
- "source_domain": "fortune.com",
- "submitters": ["Anonymous"],
- "title": "How 'Deep Fakes' Became Easy - And Why That's So Scary",
- "url": "http://fortune.com/2018/09/11/deep-fakes-obama-video/"
- },
- {
- "__typename": "Report",
- "authors": ["Cheryl K. Chumley"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 694,
- "source_domain": "washingtontimes.com",
- "submitters": ["Anonymous"],
- "title": "Barack Obama fake news video highlights dangers of AI",
- "url": "https://www.washingtontimes.com/news/2018/apr/18/barack-obama-fake-news-video-highlights-dangers-ai/"
- },
- {
- "__typename": "Report",
- "authors": ["Charles Q. Choi"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 693,
- "source_domain": "spectrum.ieee.org",
- "submitters": ["Anonymous"],
- "title": "AI Creates Fake Obama",
- "url": "https://spectrum.ieee.org/tech-talk/robotics/artificial-intelligence/ai-creates-fake-obama"
- },
- {
- "__typename": "Report",
- "authors": ["Charlotte Edmond"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 692,
- "source_domain": "weforum.org",
- "submitters": ["Anonymous"],
- "title": "This AI can create a video of Barack Obama saying anything",
- "url": "https://www.weforum.org/agenda/2017/07/obama-speech-simulation-washington-university/"
- },
- {
- "__typename": "Report",
- "authors": ["Colm Gorey"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 690,
- "source_domain": "siliconrepublic.com",
- "submitters": ["Anonymous"],
- "title": "Watch Jordan Peele use AI to make Obama talk about fake news",
- "url": "https://www.siliconrepublic.com/machines/jordan-peele-ai-obama-fake-news"
- },
- {
- "__typename": "Report",
- "authors": ["Rob Williams"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 689,
- "source_domain": "hothardware.com",
- "submitters": ["Anonymous"],
- "title": "AI-Fueled Lip Syncing Creates Obama Puppet Master Sparking New Era In Fake News Videos",
- "url": "https://hothardware.com/news/ai-lip-syncs-obama-from-archive-audio-clips-sparking-new-era-in-fake-news-videos"
- },
- {
- "__typename": "Report",
- "authors": ["Max Cea", "Tom Philip", "Cam Wolf", "Joshua River"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 688,
- "source_domain": "gq.com",
- "submitters": ["Anonymous"],
- "title": "Jordan Peele Made a Fake Obama Video to Prove How Easily Conned We Are",
- "url": "https://www.gq.com/story/jordan-peele-made-a-fake-obama-video-to-prove-how-easily-conned-we-are"
- },
- {
- "__typename": "Report",
- "authors": ["Mallory Locklear"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 687,
- "source_domain": "engadget.com",
- "submitters": ["Anonymous"],
- "title": "Researchers make a surprisingly smooth artificial video of Obama",
- "url": "https://www.engadget.com/2017/07/11/researchers-surprisingly-smooth-artificial-video-obama/"
- },
- {
- "__typename": "Report",
- "authors": ["Alexis Haden"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 686,
- "source_domain": "thesouthafrican.com",
- "submitters": ["Anonymous"],
- "title": "Creepy \"Barack Obama\" video shows how easy it is to manipulate what people say [video]",
- "url": "https://www.thesouthafrican.com/barack-obama-ai-video/"
- },
- {
- "__typename": "Report",
- "authors": ["Daniel Starkey"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 685,
- "source_domain": "geek.com",
- "submitters": ["Anonymous"],
- "title": "Jordan Peele Warns “Effed-up Dystopia” Using AI to Make Fake Obama Video",
- "url": "https://www.geek.com/tech/jordan-peele-warns-effed-up-dystopia-using-ai-to-make-fake-obama-video-1737480/"
- },
- {
- "__typename": "Report",
- "authors": ["Ariel Bogle"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 684,
- "source_domain": "abc.net.au",
- "submitters": ["Anonymous"],
- "title": "'Deep fakes': How to know what's true in the fake-Obama video era",
- "url": "https://www.abc.net.au/news/science/2018-03-04/deep-fakes-and-obama-videos/9490614"
- },
- {
- "__typename": "Report",
- "authors": ["Peter Rejcek"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 683,
- "source_domain": "singularityhub.com",
- "submitters": ["Anonymous"],
- "title": "The New AI Tech Turning Heads in Video Manipulation",
- "url": "https://singularityhub.com/2018/09/03/the-new-ai-tech-turning-heads-in-video-manipulation-2/#sm.00000ldyn829jjfb7wsosny2x35bd"
- },
- {
- "__typename": "Report",
- "authors": ["Phillip Tracy"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 682,
- "source_domain": "dailydot.com",
- "submitters": ["Anonymous"],
- "title": "Jordan Peele Uses AI to Create Fake News PSA Featuring Obama",
- "url": "https://www.dailydot.com/debug/obama-ai-fake-jordan-peele-video/"
- },
- {
- "__typename": "Report",
- "authors": ["Kimberley Mok", "Mike Melanson"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 681,
- "source_domain": "thenewstack.io",
- "submitters": ["Anonymous"],
- "title": "How to Synthesize a Fake Obama Video with Artificial Neural Networks",
- "url": "https://thenewstack.io/synthesize-fake-obama-video-artificial-neural-networks/"
- },
- {
- "__typename": "Report",
- "authors": ["Amanda Kooser"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1660521600,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 680,
- "source_domain": "cnet.com",
- "submitters": ["Anonymous"],
- "title": "Jordan Peele turns Obama into a foul-mouthed fake-news PSA",
- "url": "https://www.cnet.com/news/jordan-peele-buzzfeed-turn-obama-into-foul-mouthed-fake-news-psa/"
- },
- {
- "__typename": "Report",
- "authors": ["Janell Hazelwood"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 679,
- "source_domain": "blackenterprise.com",
- "submitters": ["Anonymous"],
- "title": "A.I. Video Depicting Barack Obama Shows Dangers of Fake News",
- "url": "https://www.blackenterprise.com/video-barack-obama-fake-news/"
- },
- {
- "__typename": "Report",
- "authors": ["Olivia Solon"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 678,
- "source_domain": "theguardian.com",
- "submitters": ["Anonymous"],
- "title": "The future of fake news: don't believe everything you read, see or hear",
- "url": "https://www.theguardian.com/technology/2017/jul/26/fake-news-obama-video-trump-face2face-doctored-content"
- },
- {
- "__typename": "Report",
- "authors": ["Eric David"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 677,
- "source_domain": "siliconangle.com",
- "submitters": ["Anonymous"],
- "title": "Video-editing AI makes fake Obama videos that look real",
- "url": "https://siliconangle.com/2017/07/12/video-editing-ai-makes-fake-obama-videos-look-real/"
- },
- {
- "__typename": "Report",
- "authors": ["David Nield"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 676,
- "source_domain": "sciencealert.com",
- "submitters": ["Anonymous"],
- "title": "Scarily Realistic AI Video Software Puts Words in Obama's Mouth",
- "url": "https://www.sciencealert.com/new-ai-powered-lip-sync-tech-can-put-any-words-in-your-mouth"
- },
- {
- "__typename": "Report",
- "authors": ["David Edelman"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1660521600,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 675,
- "source_domain": "computerworld.com.au",
- "submitters": ["Anonymous"],
- "title": "Obama tech advisor: Fun’s over for AI-driven ‘Deep Fake’ video",
- "url": "https://www.computerworld.com.au/article/642424/obama-tech-advisor-fun-over-ai-driven-deep-fake-video/"
- },
- {
- "__typename": "Report",
- "authors": ["Amiya Moretta"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 674,
- "source_domain": "etftrends.com",
- "submitters": ["Anonymous"],
- "title": "Barack Obama on How AI Will Affect Jobs",
- "url": "https://www.etftrends.com/robotics-ai-channel/barack-obama-on-how-artificial-intelligence-will-affect-jobs/"
- },
- {
- "__typename": "Report",
- "authors": [
- "Richard Kemeny",
- "Tuesday July",
- "Nicole Kobie",
- "Will Bedingfield",
- "Matt Burgess",
- "Sanjana Varghese",
- "Rowland Manthorpe"
- ],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1660521600,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 673,
- "source_domain": "wired.co.uk",
- "submitters": ["Anonymous"],
- "title": "AIs created our fake video dystopia but now they could help fix it",
- "url": "https://www.wired.co.uk/article/deepfake-fake-videos-artificial-intelligence"
- },
- {
- "__typename": "Report",
- "authors": ["Karen Hao"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 672,
- "source_domain": "qz.com",
- "submitters": ["Anonymous"],
- "title": "Researchers have figured out how to fake news video with AI",
- "url": "https://qz.com/1031624/researchers-have-figured-out-how-to-fake-news-video-with-ai/"
- },
- {
- "__typename": "Report",
- "authors": ["John Glenday"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 671,
- "source_domain": "thedrum.com",
- "submitters": ["Anonymous"],
- "title": "AI tool generates fake President Obama speeches",
- "url": "https://www.thedrum.com/news/2017/07/24/president-barack-obama-resurrected-us-ai-researchers"
- },
- {
- "__typename": "Report",
- "authors": ["Sanjiv Sathiah"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 670,
- "source_domain": "notebookcheck.net",
- "submitters": ["Anonymous"],
- "title": "This AI video of Barack Obama is the disturbing future of fake news",
- "url": "https://www.notebookcheck.net/This-AI-video-of-Barack-Obama-is-the-disturbing-future-of-fake-news.299466.0.html"
- },
- {
- "__typename": "Report",
- "authors": ["Luke Dormehl"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 669,
- "source_domain": "digitaltrends.com",
- "submitters": ["Anonymous"],
- "title": "Crazy Realistic Forgery Video Of Barack Obama Was Generated By A Lip-Syncing AI",
- "url": "https://www.digitaltrends.com/cool-tech/ai-created-fake-president-obama/"
- },
- {
- "__typename": "Report",
- "authors": ["James Vincent"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 668,
- "source_domain": "theverge.com",
- "submitters": ["Anonymous"],
- "title": "Watch Jordan Peele use AI to make Barack Obama deliver a PSA about fake news",
- "url": "https://www.theverge.com/tldr/2018/4/17/17247334/ai-fake-news-video-barack-obama-jordan-peele-buzzfeed"
- },
- {
- "__typename": "Report",
- "authors": ["BBC"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 667,
- "source_domain": "bbc.com",
- "submitters": ["Anonymous"],
- "title": "Fake Obama created using AI tool to make phoney speeches",
- "url": "https://www.bbc.com/news/av/technology-40598465/fake-obama-created-using-ai-tool-to-make-phoney-speeches"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "equivant",
- "name": "Equivant"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "equivant",
- "name": "Equivant"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "accused-people",
- "name": "Accused People"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [
- 1359, 1358, 1357, 1338, 718, 717, 716, 715, 712, 711, 709, 708, 707, 706, 705, 704, 703,
- 702, 701, 700, 699, 697
- ],
- "vector": [
- -0.06671905517578125, 0.12799502909183502, 0.01510713156312704, -0.07154982537031174,
- 0.12160823494195938, -0.007724305149167776, -0.004090862814337015, 0.030489539727568626,
- 0.11299305409193039, -0.11245038360357285, -0.014974968507885933, 0.06596534699201584,
- 0.038604263216257095, -0.034908726811409, 0.0835694670677185, -0.118596151471138,
- -0.10782050341367722, -0.1060299202799797, -0.06061846762895584, -0.1026550680398941,
- -0.0033504588063806295, -0.019467193633317947, -0.03582528978586197,
- 0.10793367028236389, -0.07604251801967621, 0.05478246510028839, 0.1559625267982483,
- 0.10381950438022614, -0.044264309108257294, 0.05552868917584419, -0.021283330395817757,
- -0.06852640211582184, 0.15542978048324585, -0.02351192571222782, -0.03676601126790047,
- 0.16249389946460724, -0.02803972363471985, -0.05333918333053589, 0.056009065359830856,
- -0.041269540786743164, -0.020509788766503334, 0.339415580034256, 0.025940105319023132,
- -0.021552998572587967, 0.01886685937643051, -0.071864053606987, -0.048451006412506104,
- 0.045884523540735245, -0.021673262119293213, 0.041604939848184586,
- -0.023708859458565712, 0.07891148328781128, -0.015280449762940407, 0.08330458402633667,
- -0.13827350735664368, 0.04348354786634445, 0.041066866368055344, 0.0023127449676394463,
- 0.060807935893535614, -0.12108771502971649, -0.05958658456802368, -0.25809431076049805,
- 0.009074407629668713, -0.09635413438081741, 0.13619863986968994, -0.0883728638291359,
- -0.05165313184261322, -0.018517345190048218, -0.009840792044997215, 0.07167018204927444,
- 0.0669621154665947, -0.03869883343577385, -0.04093030467629433, 0.052151620388031006,
- -0.020609961822628975, -0.038001202046871185, -0.011826266534626484,
- 0.14419256150722504, -0.14572779834270477, 0.012517734430730343, 0.0791671872138977,
- -0.06332164257764816, 0.4783996641635895, 0.03924114629626274, -0.036064427345991135,
- -0.04112467169761658, 0.08851190656423569, 0.12721528112888336, 0.06940874457359314,
- 0.050741489976644516, -0.05934899300336838, -0.0023100331891328096,
- -0.08143000304698944, -0.007116235326975584, 0.13062036037445068,
- -0.0006876037805341184, -0.013644210062921047, 0.06401494145393372,
- -0.03131958469748497, -0.06348984688520432, -0.0292348675429821, 0.0006485921330749989,
- 0.06864731013774872, 0.0710718035697937, -0.04754506051540375, 0.0052702296525239944,
- 0.12060977518558502, -0.05623417720198631, 0.08277670294046402, -0.0548286996781826,
- 0.04264599457383156, 0.02030676044523716, 0.035829875618219376, -0.050627194344997406,
- 0.0030704368837177753, -0.05959177017211914, 0.01932596229016781,
- 0.00017068734450731426, 0.11399488151073456, 0.012673974968492985,
- -0.008965210057795048, 0.04879235476255417, 0.04071900248527527, -0.08016593009233475,
- -0.07510162889957428, -0.07752041518688202, -0.07366017252206802, -0.07335970550775528,
- -0.026391632854938507, -0.0340002179145813, -0.07733161747455597, -0.17357800900936127,
- -0.01368235144764185, 0.11286097019910812, -0.015265441499650478, -0.05174131318926811,
- -0.05221620947122574, -0.0015519645530730486, 0.035959236323833466,
- -0.023115260526537895, -0.002141144359484315, 0.07208597660064697, 0.0695221945643425,
- 0.01780598610639572, 0.2159939408302307, 0.11293192952871323, -0.10029510408639908,
- -0.02753947488963604, 0.0044078403152525425, 0.006457455921918154, 0.17743247747421265,
- -0.14291918277740479, -0.04963568598031998, 0.011752347461879253, -0.08038301765918732,
- 0.773078203201294, 0.15444035828113556, 0.2170742303133011, 0.017122970893979073,
- -0.06378132849931717, 0.1822693794965744, 0.05878695845603943, 0.08607413619756699,
- -0.12346578389406204, 0.008769269101321697, -0.03232836723327637, -0.06210314482450485,
- -0.03817008435726166, 0.05595846846699715, 0.030063899233937263, 0.15775032341480255,
- -0.06448391824960709, 0.07798216491937637, 0.01475461758673191, -0.09673689305782318,
- -0.020899785682559013, 0.1270437240600586, 0.013337182812392712, -0.08834318071603775,
- 0.012952116318047047, 0.10050836205482483, 0.10363564640283585, -0.13109561800956726,
- 0.041602641344070435, -0.04124654084444046, 0.06887096166610718, -0.03545087203383446,
- 0.04281019791960716, -0.01855809986591339, 0.07579964399337769, 0.07286892086267471,
- 0.062013741582632065, 0.07703053951263428, -0.15176065266132355, -0.06631680577993393,
- 0.09329049289226532, -0.0493721105158329, 0.019218845292925835, 0.06349477171897888,
- -0.09481196850538254, 0.025205222889780998, 0.07479721307754517, 0.18309526145458221,
- -0.10980741679668427, -0.04733782261610031, -0.039552003145217896,
- -0.011275170370936394, 0.04724324494600296, 0.03545055165886879, -0.02811504527926445,
- -0.08652617037296295, 0.04512766748666763, -0.0213337205350399, 0.10744530707597733,
- 0.04923376068472862, -0.047876037657260895, 0.04404574632644653, 0.08345168083906174,
- 0.011395315639674664, -0.005462929140776396, 0.030284462496638298, 0.0984845906496048,
- 0.02644823119044304, -0.010565977543592453, 0.02421204373240471, 0.024770516902208328,
- 0.049597855657339096, 0.023552849888801575, 0.031134750694036484, -0.019696002826094627,
- -0.09216379374265671, 0.025846155360341072, 0.02668994478881359, 0.015284586697816849,
- 0.11944657564163208, 0.015685515478253365, -0.057657886296510696, -0.015343697741627693,
- -0.03832302987575531, 0.0021680293139070272, 0.015009075403213501, 0.08294705301523209,
- 0.07502833008766174, 0.094315305352211, 0.05008339881896973, 0.07916373014450073,
- 0.024404387921094894, 0.02393553964793682, 0.06335317343473434, 0.07429204881191254,
- -0.018808165565133095, -0.042306967079639435, 0.008195224218070507, 0.04474455863237381,
- 0.00202957377769053, -0.02761809527873993, -0.05787421762943268, -0.034254323691129684,
- -0.10437985509634018, -0.08422984927892685, -0.07727891206741333, -0.04485630616545677,
- -0.026269836351275444, 0.09383787959814072, -0.0013440892798826098,
- -0.08625222742557526, -0.09331313520669937, 0.021321851760149002, 0.05636110529303551,
- -0.005519491154700518, -0.019263677299022675, -0.10647961497306824, 0.0567634142935276,
- -0.009603230282664299, 0.0509788878262043, -0.03812220320105553, 0.02430681511759758,
- 0.0350225493311882, -0.1266128122806549, 0.07758413255214691, -0.05969427898526192,
- -0.06407994031906128, -0.038282524794340134, -0.06305208057165146, -0.08950698375701904,
- -0.04341194033622742, -0.024530937895178795, -0.05278092250227928, 0.04197363927960396,
- 0.00384067022241652, 0.06082899495959282, 0.004464699421077967, -0.08612216264009476,
- 0.10575424134731293, -0.06242411956191063, -0.004588054493069649, 0.10518904775381088,
- -0.06556589156389236, 0.05362638086080551, -0.0525844432413578, -0.07055848836898804,
- -0.0518069714307785, 0.03385690227150917, -0.032986853271722794, 0.03830132633447647,
- -0.011088022030889988, 0.00142828153911978, -0.029184525832533836,
- -0.011975228786468506, 0.0189207773655653, -0.08325827121734619, -0.12523461878299713,
- -0.07587958127260208, 0.09663929045200348, -0.002720277290791273, -0.03802204877138138,
- 0.024131251499056816, -0.0060678813606500626, 0.0007407378870993853,
- -0.03941180929541588, 0.025613971054553986, 0.0055701895616948605, 0.013774066232144833,
- 0.011801719665527344, 0.00048823023098520935, 0.08833355456590652, -0.0720837265253067,
- 0.019733106717467308, 0.030373530462384224, 0.404474139213562, -0.16181500256061554,
- 0.02773003652691841, 0.10347660630941391, 0.09236115962266922, 0.0279673021286726,
- -0.1156693622469902, 0.08923645317554474, 0.08510620146989822, 0.19458511471748352,
- 0.12013305723667145, -0.03340549394488335, -0.07013751566410065, -0.12558569014072418,
- 0.12022378295660019, -0.02557062730193138, 0.058809246867895126, -0.031149739399552345,
- -0.16513769328594208, -0.01399136707186699, 0.060098715126514435, -0.06115037202835083,
- 0.030741168186068535, -0.00033966792398132384, -0.03251086175441742,
- -0.00824387464672327, 0.010814736597239971, -0.04005753993988037, -0.07208149880170822,
- 0.05293145030736923, -0.014066037721931934, 0.10560112446546555, 0.0036346158012747765,
- 0.025859104469418526, -0.1878441423177719, 0.025621632114052773, -0.11138621717691422,
- -0.11109194159507751, 0.1526450514793396, -0.030280381441116333, 0.03686967492103577,
- 0.04521067440509796, -0.10033713281154633, 0.03863638639450073, 0.008710887283086777,
- -0.08724085986614227, 0.037098176777362823, 0.10180598497390747, 0.06715144962072372,
- 0.046997662633657455, 0.15248431265354156, -0.07545449584722519, -0.032135799527168274,
- -0.04536214843392372, 0.08321341872215271, 0.1660660207271576, -0.02965954691171646,
- -0.021385619416832924, 0.027794934809207916, -0.09520581364631653, 0.02553120255470276,
- -0.08501233905553818, -0.03500411659479141, 0.004376721568405628, -0.036024343222379684,
- 0.09566438943147659, 0.05820583924651146, 0.0034151538275182247, -0.1766194850206375,
- -0.015378566458821297, -0.03350832685828209, 0.012514169327914715, 0.0971931517124176,
- -0.03692493587732315, 0.09072144329547882, -0.000998908537440002, 0.01784890703856945,
- 0.04138122871518135, -0.04463983327150345, 0.06615914404392242, -0.04165031388401985,
- -0.00285594561137259, 0.07393253594636917, 0.05387623980641365, -0.0356079638004303,
- 0.13753747940063477, -0.09508094936609268, 0.07698768377304077, -0.007455545477569103,
- -0.0032118274830281734, 0.016115877777338028, -0.022071952000260353,
- 0.025022681802511215, 0.015418102033436298, -0.025729812681674957, 0.004501054063439369,
- -0.04846746847033501, -0.10509936511516571, -0.08361738920211792, -0.08851135522127151,
- -0.005285566207021475, -0.09361500293016434, 0.006948970258235931, -0.20614390075206757,
- -0.08744026720523834, -0.027164775878190994, -0.040647804737091064,
- -0.03359216824173927, 0.022401200607419014, 0.02683320641517639, -0.16817766427993774,
- 0.033575039356946945, -0.06318534910678864, 0.07985569536685944, 0.002865161746740341,
- -0.00894743762910366, -0.0027048445772379637, 0.09575726091861725, 0.07979996502399445,
- -0.02162388153374195, -0.007008871994912624, -0.08701261132955551, 0.018815550953149796,
- -0.1284233182668686, -0.3313118517398834, 0.1069612056016922, -0.07874258607625961,
- 0.046964988112449646, 0.040574606508016586, -0.09318005293607712, 0.05821678414940834,
- 0.0030426247976720333, -0.11096329987049103, 0.06572691351175308, -0.057955265045166016,
- 0.07738298922777176, 0.027310775592923164, -0.056253429502248764, -0.11011485010385513,
- -0.033539462834596634, -0.0623396597802639, 0.0554080531001091, -0.04390367493033409,
- -0.12016157805919647, -0.13468746840953827, 0.026262562721967697, -0.031629398465156555,
- 0.008352166973054409, 0.030254794284701347, 0.053312525153160095, -0.06462746113538742,
- -0.03971773013472557, 0.082596056163311, 0.09591428935527802, 0.02633354440331459,
- -0.06340554356575012, 0.010077094659209251, 0.02666786126792431, -0.03983141481876373,
- 0.08591608703136444, 0.022398147732019424, -0.010899893008172512, -0.07702713459730148,
- 0.12100387364625931, 0.06608472764492035, 0.17959409952163696, -0.014893148094415665,
- -0.024471493437886238, 0.05306484177708626, 0.21676041185855865, 0.08693289756774902,
- 0.013694175519049168, -0.03753015398979187, 0.009468172676861286, 0.06056961417198181,
- -0.03376414626836777, 0.1075090765953064, -0.05582962930202484, -0.024973945692181587,
- -0.07545290142297745, 0.009663918055593967, -0.009249853901565075,
- -0.045046914368867874, 0.25764551758766174, -0.00571818370372057,
- -0.0071326312609016895, 0.036330536007881165, -0.11803010106086731,
- 0.013775681145489216, -0.05680001154541969, -0.11556779593229294, -0.034333303570747375,
- -0.03261276334524155, 0.030595794320106506, -0.0513739138841629, -0.11051757633686066,
- -0.05764594301581383, 0.014030244201421738, -0.0007478349143639207, 0.15979793667793274,
- -0.036734890192747116, 0.02448013611137867, -0.01636474020779133, 0.08837355673313141,
- 0.04675070941448212, -0.075811006128788, 0.04419359564781189, 0.1367861032485962,
- 0.09754393994808197, 0.07733659446239471, -0.012223241850733757, -0.10052942484617233,
- 0.027221938595175743, 0.16941200196743011, -0.0818711444735527, 0.05972052365541458,
- 0.10803158581256866, -0.06953658908605576, -0.06545040756464005, 0.002167777856811881,
- -0.015965042635798454, 0.0025717662647366524, -0.3715604245662689,
- -0.031154291704297066, 0.12118545919656754, -0.04553847014904022, 0.020032012835144997,
- 0.09709662199020386, 0.05929175019264221, -0.03415702283382416, -0.003973242826759815,
- -0.11419155448675156, 0.1243315041065216, 0.07473424822092056, 0.07722873985767365,
- -0.1308879405260086, 0.01703420653939247, 0.07700265944004059, -0.027381980791687965,
- 0.04972632974386215, 0.08420408517122269, -0.2188679724931717, 0.026300137862563133,
- -0.025421438738703728, 0.05857639014720917, -0.002409113571047783, 0.04096966236829758,
- 0.08437880873680115, -0.15038082003593445, 0.013997361063957214, 0.08128385245800018,
- -0.037430714815855026, 0.005426089279353619, -0.0002207131910836324,
- -0.0054504601284861565, 0.09575322270393372, 0.09742686152458191, 0.06800804287195206,
- 0.0006089469534344971, 12.334486961364746, 0.03763482719659805, 0.05056174844503403,
- -0.11477000266313553, 0.03309033438563347, -0.03468609228730202, -0.02748524770140648,
- -0.08889526128768921, 0.08281534165143967, 0.19141265749931335, -0.05178747698664665,
- -0.0989370197057724, -0.05112225562334061, -0.13139693439006805, 0.05757780745625496,
- -0.0535271093249321, -0.08486397564411163, -0.03377925604581833, 0.06383636593818665,
- -0.023434709757566452, -0.014700621366500854, -0.05943193659186363, 0.08865506201982498,
- -0.01648610644042492, -0.04425038397312164, 0.04414600506424904, 0.03461719676852226,
- -0.032753825187683105, 0.019126437604427338, 0.06834647059440613, -0.024165231734514236,
- -0.00038187415339052677, 0.016287339851260185, -0.0101157296448946, 0.03149811550974846,
- 0.06052134186029434, 0.17769834399223328, 0.09962330758571625, 0.04812105372548103,
- 0.13773924112319946, 0.03291532024741173, 0.05635813623666763, 0.014082181267440319,
- 0.04032549634575844, 0.05307183042168617, 0.08962605148553848, 0.02760390378534794,
- 0.09835376590490341, 0.01712786965072155, 0.061784371733665466, 0.09898847341537476,
- 0.016035020351409912, 0.14792490005493164, -0.033718641847372055,
- -0.0035993708297610283, 0.0022510041017085314, -0.020961204543709755,
- -0.09422554075717926, 0.013095850124955177, 0.07537954300642014, -0.011766375042498112,
- 0.1590593159198761, -0.03700936958193779, 0.12424109876155853, 0.022573137655854225,
- 0.11116573959589005, 0.10009829699993134, 0.07245282828807831, -0.17036794126033783,
- -0.09421775490045547, -0.05004039779305458, -0.11591016501188278, -0.10565614700317383,
- 0.16914519667625427, 0.13788610696792603, -0.04485119879245758, -0.0023353947326540947,
- 0.01224636659026146, -0.03244376182556152, -0.038656048476696014, -0.05439600348472595,
- 0.1207444965839386, 0.023199671879410744, -0.06208833307027817, 0.07602812349796295,
- 0.057677868753671646, 0.03888877108693123, 0.11534372717142105, -0.04034895822405815,
- -0.12575693428516388, -0.1211613342165947, 0.0807594582438469, -0.03962383419275284,
- -0.061359986662864685, 0.052401039749383926, -0.08134680241346359, 0.11619030684232712,
- -0.2063142955303192, 0.05087217316031456, 0.12064070254564285, -0.10935134440660477,
- -0.0085365641862154, -0.047289371490478516, 0.05959409847855568, -0.02885941043496132,
- 0.05677703022956848, -0.04067793861031532, -0.0011425868142396212, -0.02652166597545147,
- 0.04130469262599945, -0.00807389710098505, 0.04526917636394501, 0.04223870858550072,
- -0.09753048419952393, -0.034493375569581985, 0.05818686634302139, -0.026914317160844803,
- -0.03340010344982147, 0.05063093826174736, 0.03645750880241394, -0.04831930249929428,
- -0.047070588916540146, -0.056169427931308746, -0.0015069006476551294,
- -0.0631832480430603, -0.08589465916156769, 0.0024513627868145704, 0.07406342774629593,
- -0.13208331167697906, 0.03128048777580261, 0.007948880083858967, 0.0481230728328228,
- 0.12255240231752396, -0.053400538861751556, 0.07729046046733856, -0.10401220619678497,
- -0.08083067834377289, 0.05406453087925911, 0.03296209126710892, 0.046975504606962204,
- -0.022553643211722374, -0.09068860113620758, -0.10477188229560852, -0.08162342756986618,
- 0.018135525286197662, 0.16346970200538635, 0.07458251714706421, 0.018990200012922287,
- 0.005652592517435551, -0.03840690478682518, -0.07490022480487823, 0.13656458258628845,
- 0.022432539612054825, 0.0015631587011739612, 0.05406137555837631, -0.09455791860818863,
- -0.06280674040317535, 0.0838884711265564, -0.09108547121286392, 0.012817928567528725,
- -0.005599392112344503, 0.0218178853392601, 0.14194729924201965, 0.0980449914932251,
- 0.007309142034500837, 0.06428376585245132, 0.0749020054936409, -0.016840636730194092,
- 0.05707588791847229, -0.011346814222633839, 0.04734280705451965, 0.04109352454543114,
- -0.05396000295877457, -0.08495884388685226, 0.009017633274197578, 0.09672136604785919,
- 0.040106385946273804, -0.05278502777218819, -0.016660325229167938, -0.03973530977964401
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 40,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 11,
- "similarity": 0.9996532797813416
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 54,
- "similarity": 0.999415934085846
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 19,
- "similarity": 0.9991539716720581
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Rebecca Wexler"],
- "epoch_date_downloaded": 1603756800,
- "epoch_date_modified": 1607299200,
- "epoch_date_submitted": 1607299200,
- "flag": null,
- "report_number": 1359,
- "source_domain": "nytimes.com",
- "submitters": ["Patrick Hall (BNH.ai)", "CSET annotators"],
- "title": "When a Computer Program Keeps You in Jail",
- "url": "https://www.nytimes.com/2017/06/13/opinion/how-computers-are-harming-criminal-justice.html"
- },
- {
- "__typename": "Report",
- "authors": ["Gideon Christian"],
- "epoch_date_downloaded": 1603756800,
- "epoch_date_modified": 1607299200,
- "epoch_date_submitted": 1607299200,
- "flag": null,
- "report_number": 1358,
- "source_domain": "slaw.ca",
- "submitters": ["Thomas Giallella (CSET)"],
- "title": "Artificial Intelligence, Algorithmic Racism and the Canadian Criminal Justice System",
- "url": "http://www.slaw.ca/2020/10/26/artificial-intelligence-algorithmic-racism-and-the-canadian-criminal-justice-system/"
- },
- {
- "__typename": "Report",
- "authors": [
- "Emily Paul",
- "Logan Koepke",
- "Urmila Janardan",
- "Aaron Rieke",
- "Natasha Duarte"
- ],
- "epoch_date_downloaded": 1605139200,
- "epoch_date_modified": 1607299200,
- "epoch_date_submitted": 1607299200,
- "flag": null,
- "report_number": 1357,
- "source_domain": "upturn.org",
- "submitters": ["Ingrid Dickinson (CSET)"],
- "title": "Amicus Brief in New Jersey v. Pickett",
- "url": "https://www.upturn.org/static/files/2020-10-15-nj-v-pickett.pdf"
- },
- {
- "__typename": "Report",
- "authors": ["Julia Dressel", "Hany Farid"],
- "epoch_date_downloaded": 1602028800,
- "epoch_date_modified": 1667952000,
- "epoch_date_submitted": 1602115200,
- "flag": null,
- "report_number": 1338,
- "source_domain": "science.org",
- "submitters": ["Kate Perkins"],
- "title": "The accuracy, fairness, and limits of predicting recidivism",
- "url": "https://www.science.org/doi/10.1126/sciadv.aao5580"
- },
- {
- "__typename": "Report",
- "authors": ["Tiffany Dill"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 718,
- "source_domain": "pbs.org",
- "submitters": ["Anonymous"],
- "title": "Criminal Sentencing Algorithm No More Accurate Than Random People on the Internet",
- "url": "https://www.pbs.org/wgbh/nova/article/criminal-sentencing-algorithm-no-more-accurate-than-random-people-on-the-internet/"
- },
- {
- "__typename": "Report",
- "authors": ["James Whitbrook"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 717,
- "source_domain": "gizmodo.com.au",
- "submitters": ["Anonymous"],
- "title": "Study Finds Crime-Predicting Algorithm Is No Smarter Than Online Poll Takers",
- "url": "https://www.gizmodo.com.au/2018/01/study-finds-crime-predicting-algorithm-is-no-smarterthan-online-poll-takers/"
- },
- {
- "__typename": "Report",
- "authors": ["The Economist"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 716,
- "source_domain": "economist.com",
- "submitters": ["Anonymous"],
- "title": "Are programs better than people at predicting reoffending?",
- "url": "https://www.economist.com/science-and-technology/2018/01/17/are-programs-better-than-people-at-predicting-reoffending"
- },
- {
- "__typename": "Report",
- "authors": ["Hannah Devlin"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 715,
- "source_domain": "theguardian.com",
- "submitters": ["Anonymous"],
- "title": "Software 'no more accurate than untrained humans' at judging reoffending risk",
- "url": "https://www.theguardian.com/us-news/2018/jan/17/software-no-more-accurate-than-untrained-humans-at-judging-reoffending-risk"
- },
- {
- "__typename": "Report",
- "authors": ["Issie Lapowsky"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 712,
- "source_domain": "wired.com",
- "submitters": ["Anonymous"],
- "title": "Crime-Predicting Algorithms May Not Fare Much Better Than Untrained Humans",
- "url": "https://www.wired.com/story/crime-predicting-algorithms-may-not-outperform-untrained-humans/"
- },
- {
- "__typename": "Report",
- "authors": ["ScienceDaily"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 711,
- "source_domain": "sciencedaily.com",
- "submitters": ["Anonymous"],
- "title": "Court software may be no more accurate than web survey takers in predicting criminal risk",
- "url": "https://www.sciencedaily.com/releases/2018/01/180117141303.htm"
- },
- {
- "__typename": "Report",
- "authors": ["Russell Brandom"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 709,
- "source_domain": "theverge.com",
- "submitters": ["Anonymous"],
- "title": "Mechanical Turkers out-predicted COMPAS, a major judicial algorithm",
- "url": "https://www.theverge.com/2018/1/17/16902016/compas-algorithm-sentencing-court-accuracy-problem"
- },
- {
- "__typename": "Report",
- "authors": ["Stephanie Wykstra"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 708,
- "source_domain": "psmag.com",
- "submitters": ["Anonymous"],
- "title": "Can Racial Bias Ever Be Removed From Criminal Justice Algorithms?",
- "url": "https://psmag.com/social-justice/removing-racial-bias-from-the-algorithm"
- },
- {
- "__typename": "Report",
- "authors": ["Vyacheslav Polonski"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 707,
- "source_domain": "weforum.org",
- "submitters": ["Anonymous"],
- "title": "AI is convicting criminals and determining jail time, but is it fair?",
- "url": "https://www.weforum.org/agenda/2018/11/algorithms-court-criminals-jail-time-fair/"
- },
- {
- "__typename": "Report",
- "authors": ["Privacy International"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 706,
- "source_domain": "privacyinternational.org",
- "submitters": ["Anonymous"],
- "title": "Study finds algorithm no better than random people at predicting recidivism",
- "url": "https://privacyinternational.org/examples-abuse/1962/study-finds-algorithm-no-better-random-people-predicting-recidivism"
- },
- {
- "__typename": "Report",
- "authors": ["Chelsea Gohd"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 705,
- "source_domain": "futurism.com",
- "submitters": ["Anonymous"],
- "title": "Algorithms Are No Better at Predicting Repeat Offenders Than Inexperienced Humans",
- "url": "https://futurism.com/algorithms-no-better-predicting-repeat-offenders-inexperienced-humans"
- },
- {
- "__typename": "Report",
- "authors": ["Nikki Williams"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 704,
- "source_domain": "digitalethics.org",
- "submitters": ["Anonymous"],
- "title": "Sentence by Numbers: The Scary Truth Behind Risk Assessment Algorithms",
- "url": "https://www.digitalethics.org/essays/sentence-numbers-scary-truth-behind-risk-assessment-algorithms"
- },
- {
- "__typename": "Report",
- "authors": ["Peter Hess"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 703,
- "source_domain": "inverse.com",
- "submitters": ["Anonymous"],
- "title": "Common Computer Program Predicts Recidivism as Poorly as Humans",
- "url": "https://www.inverse.com/article/40264-compas-racial-bias-unreliable-recidivism-prediction"
- },
- {
- "__typename": "Report",
- "authors": ["Jordan Pearson"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 702,
- "source_domain": "motherboard.vice.com",
- "submitters": ["Anonymous"],
- "title": "Bail Algorithms Are As Accurate As Random People Doing an Online Survey",
- "url": "https://motherboard.vice.com/en_us/article/paqwmv/bail-algorithms-compas-recidivism-are-as-accurate-as-people-doing-online-survey"
- },
- {
- "__typename": "Report",
- "authors": ["Matthias Spielkamp"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 701,
- "source_domain": "technologyreview.com",
- "submitters": ["Anonymous"],
- "title": "Inspecting Algorithms for Bias",
- "url": "https://www.technologyreview.com/s/607955/inspecting-algorithms-for-bias/"
- },
- {
- "__typename": "Report",
- "authors": ["Jeff Larson", "Surya Mattu", "Lauren Kirchner", "Julia Angwin"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 700,
- "source_domain": "propublica.org",
- "submitters": ["Anonymous"],
- "title": "How We Analyzed the COMPAS Recidivism Algorithm",
- "url": "https://www.propublica.org/article/how-we-analyzed-the-compas-recidivism-algorithm"
- },
- {
- "__typename": "Report",
- "authors": ["Chuck Dinerstein"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 699,
- "source_domain": "acsh.org",
- "submitters": ["Anonymous"],
- "title": "ProPublica Is Wrong In Charging Racial Bias In An Algorithm",
- "url": "https://www.acsh.org/news/2018/01/17/propublica-wrong-charging-racial-bias-algorithm-12427"
- },
- {
- "__typename": "Report",
- "authors": ["Ed Yong"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 697,
- "source_domain": "theatlantic.com",
- "submitters": ["Anonymous"],
- "title": "A Popular Algorithm Is No Better at Predicting Crimes Than Random People",
- "url": "https://www.theatlantic.com/technology/archive/2018/01/equivant-compas-algorithm/550646/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "mit-media-lab",
- "name": "MIT Media Lab"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "mit-media-lab",
- "name": "MIT Media Lab"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "unknown",
- "name": "Unknown"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [
- 748, 747, 746, 745, 744, 743, 742, 741, 740, 739, 738, 737, 736, 735, 734, 733, 732,
- 731, 730, 728, 727, 726, 725, 724, 722, 721, 720, 719
- ],
- "vector": [
- -0.08326423913240433, 0.06533681601285934, 0.023479091003537178, -0.10375700145959854,
- 0.1378948986530304, -0.01931627467274666, 0.005325470585376024, 0.07013367116451263,
- 0.0725630596280098, -0.14954039454460144, -0.015803134068846703, 0.05922333523631096,
- 0.01550054457038641, -0.07963205873966217, 0.026168329641222954, -0.07208240777254105,
- -0.1095927506685257, -0.07550971210002899, -0.024754377081990242, -0.15029671788215637,
- -0.07972152531147003, -0.01486631017178297, -0.005765531677752733, 0.07133593410253525,
- -0.0899667739868164, 0.03166491165757179, 0.11751054972410202, 0.09701305627822876,
- -0.06067540869116783, 0.05652978643774986, -0.03443024680018425, -0.1097940057516098,
- 0.12327594310045242, 0.01847493276000023, 0.005451877135783434, 0.09840709716081619,
- 0.0367359034717083, -0.012481428682804108, -0.005859843455255032,
- -0.0031111605931073427, 0.026930375024676323, 0.24203720688819885,
- -0.005010376218706369, -0.02587992139160633, 0.033678408712148666, -0.07141440361738205,
- -0.01573159731924534, 0.02038596011698246, 0.02029806189239025, 0.033388394862413406,
- 0.0034976096358150244, 0.01683969981968403, -0.026602083817124367, 0.028931716457009315,
- -0.10227518528699875, 0.055867791175842285, 0.04082580655813217, 0.0027551851235330105,
- 0.0634867250919342, -0.07839510589838028, -0.02329394221305847, -0.19097952544689178,
- -0.02093537524342537, -0.10406292229890823, 0.08291713893413544, -0.0747256726026535,
- -0.04014378413558006, 0.03961828351020813, 0.01404263824224472, 0.037355873733758926,
- 0.052822064608335495, -0.018157271668314934, -0.04607513174414635, 0.03463371843099594,
- -0.005181097891181707, -0.014033174142241478, 0.003497897181659937, 0.22554348409175873,
- -0.1209031492471695, 0.020688917487859726, 0.08989862352609634, -0.09554994851350784,
- 0.37867364287376404, 0.01236021053045988, -0.000018284239558852278,
- -0.00648958096280694, 0.10803747922182083, 0.016573628410696983, 0.041073109954595566,
- 0.03009340725839138, -5.521495722859981e-7, 0.0591900609433651, -0.03534809499979019,
- -0.01768730953335762, 0.058183759450912476, 0.03813076764345169, -0.014080888591706753,
- -0.0008018446969799697, -0.012554124929010868, -0.03654905781149864,
- -0.012044228613376617, -0.030505362898111343, 0.1309942901134491, 0.10432585328817368,
- -0.04528108239173889, 0.028493406251072884, 0.07661718130111694, -0.05471767857670784,
- 0.07419977337121964, -0.06744195520877838, 0.03272022306919098, -0.023570021614432335,
- 0.04206901416182518, -0.01332792080938816, 0.022485656663775444, -0.04554981365799904,
- 0.03277433291077614, 0.07979859411716461, 0.0789874717593193, 0.09029680490493774,
- -0.016142237931489944, 0.04483581706881523, 0.08135175704956055, -0.07795142382383347,
- -0.057559605687856674, -0.020626261830329895, -0.038151439279317856,
- -0.04461292177438736, -0.01614311896264553, 0.052850086241960526, -0.06947827339172363,
- -0.2154013216495514, 0.0064241765066981316, 0.055438823997974396, -0.05967047065496445,
- -0.032799627631902695, 0.010939905419945717, -0.045433495193719864,
- 0.013732729479670525, -0.0409492552280426, -0.005758210550993681, 0.05956249684095383,
- 0.0014318785397335887, 0.04489848390221596, 0.10235439985990524, 0.037999413907527924,
- -0.04398319497704506, -0.054960452020168304, 0.010750086046755314,
- -0.055275410413742065, 0.11997067928314209, -0.14202384650707245, -0.02877695858478546,
- -0.03784983605146408, -0.00903519056737423, 0.71158367395401, 0.10151136666536331,
- 0.19388547539710999, 0.01591636799275875, -0.010567128658294678, 0.1433209925889969,
- -0.005854453891515732, 0.04294419288635254, -0.08167250454425812, -0.05643770843744278,
- 0.016241585835814476, -0.08285000175237656, -0.04753435030579567, 0.016105519607663155,
- 0.04958901181817055, 0.09570340067148209, 0.03236641734838486, 0.06853177398443222,
- 0.008030548691749573, -0.07613696157932281, -0.046963341534137726, 0.061962347477674484,
- 0.03412086144089699, -0.14571286737918854, -0.038014005869627, 0.07814038544893265,
- 0.08360845595598221, -0.0785779282450676, -0.014910535886883736, -0.032996419817209244,
- 0.06291358172893524, -0.01803220808506012, 0.07946175336837769, -0.03651905432343483,
- 0.04257640615105629, 0.05642186477780342, 0.026966186240315437, -0.014064603485167027,
- -0.0870773196220398, 0.028761310502886772, 0.0915338471531868, -0.015468676574528217,
- -0.033511899411678314, 0.09195170551538467, -0.09128715097904205, 0.019178686663508415,
- -0.002737431088462472, 0.1355656236410141, -0.12673012912273407, 0.0403079017996788,
- -0.02505614422261715, -0.029373157769441605, 0.045068565756082535, 0.004585496615618467,
- -0.07001926004886627, -0.045224595814943314, 0.06547027826309204, 0.00959020759910345,
- 0.05830354616045952, 0.038751572370529175, -0.038493018597364426, 0.045815687626600266,
- 0.05817602202296257, 0.010024873539805412, -0.03971095755696297, 0.0564432367682457,
- 0.06571546941995621, -0.026925044134259224, -0.011664807796478271, 0.018093666061758995,
- 0.005313499365001917, 0.017102481797337532, 0.0037280155811458826, 0.03723146393895149,
- 0.005218249745666981, -0.05186591297388077, 0.04684993624687195, 0.044974423944950104,
- 0.019376905634999275, 0.07814855128526688, -0.0749683752655983, -0.05592147633433342,
- -0.0290326327085495, -0.026931267231702805, 0.011463652364909649, -0.04601779952645302,
- 0.09659009426832199, 0.11465925723314285, 0.10775761306285858, 0.049764689058065414,
- 0.03675162047147751, 0.046892739832401276, 0.05042427033185959, 0.003232556162402034,
- 0.05144748091697693, -0.02097630687057972, -0.053075145930051804, -0.04490449279546738,
- -0.004474081564694643, 0.036189913749694824, -0.013950919732451439,
- -0.08417143672704697, -0.03968405723571777, -0.0566844567656517, 0.005373030435293913,
- -0.09551578015089035, -0.04127509519457817, 0.036601267755031586, 0.05725804716348648,
- -0.047898631542921066, -0.10262550413608551, -0.09098697453737259, 0.02060021087527275,
- 0.07975640147924423, -0.03116125427186489, -0.027056783437728882, -0.12007889896631241,
- 0.008102365769445896, -0.02268502488732338, 0.04303610324859619, 0.0003661906812340021,
- 0.005490105599164963, 0.020513517782092094, -0.07409679144620895, 0.03885926678776741,
- -0.009576658718287945, -0.03933819755911827, 0.011821233667433262, -0.06277607381343842,
- -0.039032019674777985, -0.011558634229004383, -0.011464179493486881,
- -0.027355527505278587, 0.02641649730503559, 0.04598892852663994, 0.04532546550035477,
- -0.024202723056077957, -0.04324861615896225, 0.059717532247304916, -0.01664259470999241,
- -0.019408224150538445, 0.0977535992860794, -0.06019468232989311, 0.03817731514573097,
- -0.018717868253588676, -0.10297305881977081, -0.03919512778520584, 0.04097415879368782,
- -0.05112018063664436, 0.047055017203092575, -0.02713632769882679, 0.006475070957094431,
- -0.037704069167375565, -0.012299205176532269, 0.03514563664793968, -0.05632839351892471,
- -0.09454790502786636, -0.10391920804977417, 0.11590610444545746, 0.0018035088432952762,
- -0.01640806719660759, 0.021552685648202896, -0.04516280069947243, 0.045019201934337616,
- -0.019196780398488045, 0.012727572582662106, 0.027505215257406235, 0.07313250750303268,
- 0.0037307541351765394, 0.035673487931489944, 0.05817683786153793, -0.023779913783073425,
- 0.04450146108865738, 0.0632525384426117, 0.4590766131877899, -0.23762662708759308,
- 0.08522886037826538, 0.10893703252077103, 0.0026655676774680614, 0.04188871383666992,
- -0.059728529304265976, 0.07444318383932114, 0.09073857218027115, 0.12628577649593353,
- 0.12270096689462662, -0.050919923931360245, 0.01281988900154829, -0.07979191839694977,
- 0.09046647697687149, 0.012868680991232395, 0.018684033304452896, -0.025167452171444893,
- -0.08875473588705063, -0.00020539267279673368, 0.05121081694960594,
- -0.02999110147356987, 0.030576294288039207, -0.004563882946968079,
- -0.030910352244973183, 0.0007402356714010239, 0.011103802360594273,
- 0.029623746871948242, -0.04824047163128853, 0.03577762097120285, -0.015233208425343037,
- 0.06472509354352951, 0.049548596143722534, 0.04160206392407417, -0.16334353387355804,
- 0.03392273932695389, -0.10229064524173737, -0.10540483891963959, 0.0777960941195488,
- -0.012276646681129932, 0.08589839935302734, 0.05600428581237793, -0.05336245149374008,
- 0.03553982824087143, -0.02613738738000393, -0.03433268144726753, 0.009955746121704578,
- 0.0869862362742424, 0.008970007300376892, 0.03009757585823536, 0.14049053192138672,
- -0.03129258379340172, -0.027632279321551323, -0.09748218208551407, 0.07852429896593094,
- 0.12196993827819824, -0.03827682510018349, 0.02181805856525898, 0.005209886468946934,
- -0.016300570219755173, -0.003955441527068615, -0.07761318236589432,
- -0.07207188755273819, -0.044325657188892365, -0.04655158147215843, 0.07673893123865128,
- 0.022953325882554054, -0.057798802852630615, -0.16354131698608398,
- -0.016488948836922646, -0.02794363722205162, 0.046961575746536255, 0.12354163080453873,
- -0.07879839837551117, 0.05083511024713516, 0.0010996286291629076, 0.016650626435875893,
- 0.034914758056402206, -0.07347620278596878, 0.04478181526064873, -0.02884889580309391,
- 0.03564312309026718, 0.058685608208179474, 0.03629628196358681, -0.04669017717242241,
- 0.07029276341199875, -0.08221285045146942, 0.08712554723024368, -0.016087748110294342,
- -0.0346011146903038, 0.05435043200850487, -0.03348754718899727, 0.036985915154218674,
- 0.030237525701522827, -0.06749624758958817, 0.027864472940564156, -0.041844408959150314,
- -0.045600976794958115, -0.07158000022172928, -0.09771754592657089,
- -0.026157710701227188, -0.09152277559041977, 0.03882855176925659, -0.11051123589277267,
- -0.011465592309832573, -0.05458962172269821, -0.07253200560808182,
- -0.004787839949131012, 0.03339998424053192, 0.01914740540087223, -0.1472732275724411,
- 0.004662853665649891, -0.028714051470160484, 0.045749813318252563,
- -0.012239747680723667, -0.057661402970552444, -0.010667975060641766,
- 0.09910611063241959, 0.06296838074922562, -0.03139157220721245, -0.0033686929382383823,
- -0.11725367605686188, 0.05739912390708923, -0.10904360562562943, -0.44020721316337585,
- 0.05925122648477554, 0.016993336379528046, 0.019636794924736023, 0.0029652579687535763,
- -0.04051504656672478, 0.03548206388950348, 0.0039038730319589376, -0.05788782984018326,
- 0.08276299387216568, -0.06690551340579987, 0.004193234257400036, -0.05145891755819321,
- -0.07052404433488846, -0.04798172041773796, -0.013085047714412212,
- -0.041086066514253616, 0.040908344089984894, -0.0219736211001873, -0.05465010553598404,
- -0.12103532999753952, 0.037532199174165726, -0.04465176910161972, -0.009508715942502022,
- 0.008080004714429379, 0.0042521837167441845, -0.04343388229608536, -0.0498553030192852,
- 0.03279853239655495, 0.08172918111085892, 0.039953894913196564, -0.09013615548610687,
- -0.027243290096521378, 0.056769948452711105, -0.0013174867490306497,
- 0.12369229644536972, 0.016109881922602654, -0.0021307580173015594, -0.09117818623781204,
- 0.07162456214427948, 0.07010821253061295, 0.18350715935230255, -0.0009678094065748155,
- 0.04113617166876793, 0.030506284907460213, 0.13515622913837433, 0.05160169675946236,
- 0.031176017597317696, -0.01637941785156727, -0.010338710620999336, 0.08657650649547577,
- -0.03128157928586006, 0.1007063239812851, -0.0940888375043869, -0.03213316574692726,
- -0.0195802990347147, -0.021096691489219666, -0.029811875894665718,
- -0.017242204397916794, 0.20121219754219055, 0.023674800992012024, 0.03547617420554161,
- 0.022489871829748154, -0.025918791070580482, 0.020676463842391968, -0.06699299067258835,
- -0.09724251925945282, -0.00829924363642931, -0.02147645130753517, 0.0008419283549301326,
- -0.02483365312218666, -0.10376480966806412, -0.005328661762177944, 0.005164882633835077,
- 0.006300047039985657, 0.11192599684000015, -0.035056956112384796, 0.009012929163873196,
- -0.047799449414014816, 0.13160640001296997, 0.031139904633164406, 0.024007929489016533,
- 0.04902057722210884, 0.09400021284818649, 0.03418589010834694, 0.030561652034521103,
- -0.04875386506319046, -0.08650621026754379, -0.028934407979249954, 0.16062955558300018,
- -0.03820014372467995, 0.10349259525537491, 0.06936174631118774, -0.039908718317747116,
- -0.05126454308629036, 0.03334340080618858, 0.006209866143763065, 0.0033545128535479307,
- -0.48500707745552063, -0.0281981211155653, 0.13938362896442413, 0.03806200623512268,
- 0.02164791151881218, 0.07589157670736313, 0.03523370251059532, -0.03905998542904854,
- -0.0055516860447824, -0.07217578589916229, 0.10315708816051483, 0.01007704995572567,
- 0.09003225713968277, -0.06126576289534569, 0.022910060361027718, 0.055002566426992416,
- -0.016720352694392204, 0.004087184555828571, 0.08236513286828995, -0.25499817728996277,
- 0.0020293528214097023, -0.021724218502640724, 0.13894590735435486, 0.03852851316332817,
- 0.03782259672880173, 0.08421815931797028, -0.057350218296051025, 0.03690497949719429,
- 0.060681138187646866, 0.011146441102027893, 0.03835973143577576, 0.0001527718995930627,
- -0.02454800345003605, 0.10672218352556229, 0.11515476554632187, 0.057386163622140884,
- -0.000170732251717709, 12.123289108276367, 0.043434496968984604, 0.0673726499080658,
- -0.08974926918745041, -0.02021641470491886, -0.058860115706920624,
- -0.0025912332348525524, -0.12200982868671417, 0.08460048586130142, 0.1494777351617813,
- -0.007632974069565535, -0.048538483679294586, -0.009343425743281841,
- -0.10215087234973907, 0.025580134242773056, -0.05203130468726158, -0.054008848965168,
- -0.014000254683196545, 0.05340421944856644, -0.041708823293447495, -0.07609926909208298,
- 0.06852737814188004, 0.0920024961233139, 0.008731592446565628, -0.05589825659990311,
- 0.024492772296071053, -0.0141104431822896, -0.025319112464785576, -0.010664054192602634,
- 0.02725083753466606, -0.01139384601265192, 0.07267255336046219, 0.0546654537320137,
- -0.0226365365087986, 0.05424543097615242, 0.06519157439470291, 0.08111608028411865,
- 0.07046796381473541, 0.045743633061647415, 0.06244685500860214, 0.008616207167506218,
- 0.024304376915097237, 0.027471233159303665, 0.0378875732421875, 0.06764153391122818,
- 0.0445561483502388, 0.05313209816813469, 0.12723931670188904, 0.01484114583581686,
- 0.07692790031433105, 0.09045594185590744, -0.026554109528660774, 0.13943469524383545,
- -0.0035518791992217302, -0.023517627269029617, 0.06028624624013901,
- 0.015168065205216408, -0.08346951007843018, 0.08129977434873581, 0.05525066331028938,
- -0.06128988787531853, 0.13002453744411469, 0.02398579753935337, 0.12141335755586624,
- 0.012937975116074085, 0.058076899498701096, 0.08339432626962662, 0.05178137868642807,
- -0.098733089864254, -0.06782550364732742, -0.0074160220101475716, -0.10038439184427261,
- -0.08207095414400101, 0.09244079887866974, 0.09583227336406708, -0.03528161719441414,
- 0.05884731560945511, -0.03465963155031204, 0.024062147364020348, -0.0233289934694767,
- 0.018842339515686035, 0.038958530873060226, -0.04510318860411644, 0.02831079438328743,
- 0.01618766598403454, 0.04404246434569359, 0.05191272497177124, 0.0766879990696907,
- 0.013089276850223541, -0.11526533216238022, -0.0975952297449112, 0.1196315735578537,
- -0.02834082953631878, -0.060792066156864166, 0.037518687546253204, -0.06618040055036545,
- 0.06808754056692123, -0.15684843063354492, 0.07144182175397873, 0.11631860584020615,
- -0.08931826800107956, -0.013461663387715816, -0.054486751556396484, 0.0668535828590393,
- 0.008626771159470081, 0.0555243082344532, -0.07200879603624344, 0.0011657214490696788,
- 0.03910640627145767, 0.045019205659627914, -0.039292994886636734, 0.06581667065620422,
- 0.09589850157499313, -0.06381889432668686, 0.036090414971113205, 0.06785016506910324,
- -0.01667719893157482, -0.003313699970021844, 0.06306055188179016, 0.03414854779839516,
- -0.09238218516111374, -0.03907313942909241, -0.04298582673072815, -0.06332249194383621,
- -0.019762994721531868, -0.05412467569112778, 0.01746504195034504, 0.030408095568418503,
- -0.04424455016851425, -0.015372106805443764, 0.04121536761522293, 0.06395414471626282,
- 0.08495952934026718, -0.03827750310301781, 0.054160065948963165, -0.04695574566721916,
- -0.05733542516827583, 0.05342770740389824, 0.08231522887945175, 0.06823189556598663,
- -0.10853274166584015, -0.055209070444107056, -0.06673286110162735, -0.10181359946727753,
- 0.01485633384436369, 0.11226918548345566, 0.042194802314043045, 0.07155909389257431,
- 0.02988799475133419, -0.07547716051340103, -0.0626721903681755, 0.09944217652082443,
- 0.02399635687470436, -0.025973154231905937, 0.02920963242650032, -0.0400923527777195,
- -0.025851773098111153, 0.10844128578901291, -0.022566555067896843, -0.03586680442094803,
- 0.0033738710917532444, -0.031055625528097153, 0.08752892911434174, 0.11839953809976578,
- 0.0996624231338501, 0.0409155897796154, 0.03756892308592796, -0.016256533563137054,
- -0.00171585101634264, -0.009035906754434109, 0.031761426478624344, -0.02012256719172001,
- -0.09300638735294342, -0.10525483638048172, 0.005878296680748463, 0.10317536443471909,
- 0.021912384778261185, -0.09630004316568375, -0.013890848495066166, -0.039667755365371704
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 41,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 39,
- "similarity": 0.9992427825927734
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 6,
- "similarity": 0.9991844296455383
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 49,
- "similarity": 0.9991265535354614
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Sam Barsanti"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 748,
- "source_domain": "news.avclub.com",
- "submitters": ["Anonymous"],
- "title": "MIT scientists created a “psychopath” AI by feeding it violent content from Reddit",
- "url": "https://news.avclub.com/mit-scientists-created-a-psychopath-ai-by-feeding-it-1826623094"
- },
- {
- "__typename": "Report",
- "authors": ["Rosie McCall"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 747,
- "source_domain": "iflscience.com",
- "submitters": ["Anonymous"],
- "title": "MIT Scientists Create Norman, The World's First \"Psychopathic\" AI",
- "url": "https://www.iflscience.com/technology/mit-scientists-create-norman-the-worlds-first-psychopathic-ai/"
- },
- {
- "__typename": "Report",
- "authors": ["Sara Ashley O'Brien"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 746,
- "source_domain": "money.cnn.com",
- "submitters": ["Anonymous"],
- "title": "MIT scientists created an AI-powered 'psychopath' named Norman",
- "url": "https://money.cnn.com/2018/06/07/technology/mit-media-lab-normal-ai/index.html"
- },
- {
- "__typename": "Report",
- "authors": ["Curiosity"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 745,
- "source_domain": "curiosity.com",
- "submitters": ["Anonymous"],
- "title": "\"Norman\" Is MIT's New Psychopathic AI",
- "url": "https://curiosity.com/topics/norman-is-mits-new-psychopathic-ai-curiosity/"
- },
- {
- "__typename": "Report",
- "authors": ["Bijan Stephen"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 744,
- "source_domain": "theverge.com",
- "submitters": ["Anonymous"],
- "title": "MIT fed an AI data from Reddit, and now it only thinks about murder",
- "url": "https://www.theverge.com/2018/6/7/17437454/mit-ai-psychopathic-reddit-data-algorithmic-bias"
- },
- {
- "__typename": "Report",
- "authors": ["Carson Kessler"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 743,
- "source_domain": "fortune.com",
- "submitters": ["Anonymous"],
- "title": "MIT Scientists Create 'Psychopath' AI Named Norman",
- "url": "http://fortune.com/2018/06/07/mit-psychopath-ai-norman/"
- },
- {
- "__typename": "Report",
- "authors": ["Ryan Whitwam"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 742,
- "source_domain": "extremetech.com",
- "submitters": ["Anonymous"],
- "title": "MIT Creates AI-Powered Psychopath Called 'Norman'",
- "url": "https://www.extremetech.com/computing/270677-mit-creates-ai-powered-psychopath-called-norman"
- },
- {
- "__typename": "Report",
- "authors": ["Reddit Users"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 741,
- "source_domain": "reddit.com",
- "submitters": ["Anonymous"],
- "title": "Norman Bates-a ‘psychopath’ AI created by MIT-was trained by studying reddit posts of “gruesome deaths.”",
- "url": "https://www.reddit.com/r/artificial/comments/8ooopl/norman_batesa_psychopath_ai_created_by_mitwas/"
- },
- {
- "__typename": "Report",
- "authors": ["Andrew Hobbs"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 740,
- "source_domain": "internetofbusiness.com",
- "submitters": ["Anonymous"],
- "title": "Norman the psychopathic AI offers a warning on biased data",
- "url": "https://internetofbusiness.com/norman-psychopathic-ai-data-bias-warning/"
- },
- {
- "__typename": "Report",
- "authors": ["Shane Mcglaun"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 739,
- "source_domain": "hothardware.com",
- "submitters": ["Anonymous"],
- "title": "MIT's Psycho Norman AI Proves Reddit Can Make You Insane",
- "url": "https://hothardware.com/news/psycho-norman-ai"
- },
- {
- "__typename": "Report",
- "authors": ["Prajakta Hebbar"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 738,
- "source_domain": "analyticsindiamag.com",
- "submitters": ["Anonymous"],
- "title": "MIT Creates A Psychopathic AI Named Norman, Because Why Not",
- "url": "https://www.analyticsindiamag.com/mit-creates-a-psychopathic-ai-norman/"
- },
- {
- "__typename": "Report",
- "authors": ["Lindsay Dodgson"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 737,
- "source_domain": "businessinsider.com.au",
- "submitters": ["Anonymous"],
- "title": "Scientists have created a murder-obsessed 'psychopath' AI called Norman -- and it learned everything it knows from Reddit",
- "url": "https://www.businessinsider.com.au/scientists-created-psychopath-ai-called-norman-2018-6?r=US\u0026IR=T"
- },
- {
- "__typename": "Report",
- "authors": ["Nathaniel Scharping"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 736,
- "source_domain": "blogs.discovermagazine.com",
- "submitters": ["Anonymous"],
- "title": "'Psychopath AI' Offers A Cautionary Tale for Technologists",
- "url": "http://blogs.discovermagazine.com/d-brief/2018/06/07/norman-psychopath-ai-mit/#.XH2cR7ozaUk"
- },
- {
- "__typename": "Report",
- "authors": ["Laura Yan"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 735,
- "source_domain": "popularmechanics.com",
- "submitters": ["Anonymous"],
- "title": "Scientists Made an Psychopathic AI Based on Reddit",
- "url": "https://www.popularmechanics.com/technology/a21246473/meet-norman-a-psychopath-ai-based-on-reddit/"
- },
- {
- "__typename": "Report",
- "authors": ["Sky News"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1655856000,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 734,
- "source_domain": "news.sky.com",
- "submitters": ["Anonymous"],
- "title": "Meet Norman - the world's first 'psychopathic artificial intelligence' unveiled by MIT",
- "url": "https://news.sky.com/story/meet-norman-the-worlds-first-psychopathic-artificial-intelligence-unveiled-by-mit-11402216"
- },
- {
- "__typename": "Report",
- "authors": ["Benjamin Fearnow"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 733,
- "source_domain": "newsweek.com",
- "submitters": ["Anonymous"],
- "title": "MIT Trains Psychopath Robot 'Norman' Using Only Gruesome Reddit Images",
- "url": "https://www.newsweek.com/mit-norman-psychopath-rorschach-ai-inkblot-test-psycho-reddit-artificial-962045"
- },
- {
- "__typename": "Report",
- "authors": ["Jackson Ryan"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 732,
- "source_domain": "cnet.com",
- "submitters": ["Anonymous"],
- "title": "MIT researchers use Reddit to create the first \"psychopath AI\"",
- "url": "https://www.cnet.com/news/mit-researchers-use-reddit-to-create-the-first-psychopath-ai/"
- },
- {
- "__typename": "Report",
- "authors": ["Anthony Cuthbertson"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 731,
- "source_domain": "independent.co.uk",
- "submitters": ["Anonymous"],
- "title": "Meet Norman, the 'psychopath AI' that's here to teach us a lesson",
- "url": "https://www.independent.co.uk/life-style/gadgets-and-tech/news/norman-psychopath-ai-bias-mit-artificial-intelligence-reddit-a8389011.html"
- },
- {
- "__typename": "Report",
- "authors": ["Lee Mathews"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 730,
- "source_domain": "geek.com",
- "submitters": ["Anonymous"],
- "title": "MIT Creates An AI Psychopath Because Someone Had To Eventually",
- "url": "https://www.geek.com/tech/mit-creates-an-ai-psychopath-because-someone-had-to-eventually-1741948/"
- },
- {
- "__typename": "Report",
- "authors": ["Phys Org"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 728,
- "source_domain": "phys.org",
- "submitters": ["Anonymous"],
- "title": "'Norman,' when artificial intelligence goes psycho",
- "url": "https://phys.org/news/2018-06-norman-artificial-intelligence-psycho.html"
- },
- {
- "__typename": "Report",
- "authors": ["Mindy Weisberger"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 727,
- "source_domain": "livescience.com",
- "submitters": ["Anonymous"],
- "title": "Meet 'Norman,' the Darkest, Most Disturbed AI the World Has Ever Seen",
- "url": "https://www.livescience.com/62198-norman-ai-psychopath.html"
- },
- {
- "__typename": "Report",
- "authors": ["Charlie Osborne"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 726,
- "source_domain": "zdnet.com",
- "submitters": ["Anonymous"],
- "title": "Meet Norman, the world's first 'psychopathic' AI",
- "url": "https://www.zdnet.com/article/meet-norman-the-worlds-first-psychopathic-ai/"
- },
- {
- "__typename": "Report",
- "authors": ["Jason Koebler"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 725,
- "source_domain": "motherboard.vice.com",
- "submitters": ["Anonymous"],
- "title": "We Asked MIT Researchers Why They Made a ‘Psychotic AI' That Only Sees Death",
- "url": "https://motherboard.vice.com/en_us/article/xwm5mk/mit-psychotic-ai-rehabilitation"
- },
- {
- "__typename": "Report",
- "authors": ["Luke Dormehl"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 724,
- "source_domain": "digitaltrends.com",
- "submitters": ["Anonymous"],
- "title": "MIT Trained an A.I. With Reddit, and it Became a Psychopath",
- "url": "https://www.digitaltrends.com/cool-tech/ai-norman-mit-project/"
- },
- {
- "__typename": "Report",
- "authors": ["Kul Bhushan"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 722,
- "source_domain": "livemint.com",
- "submitters": ["Anonymous"],
- "title": "Meet Norman, the world’s first psychopath AI",
- "url": "https://www.livemint.com/AI/drqesWo8HHi3FkbzPK6P6K/Meet-Norman-the-worlds-first-psychopath-AI.html"
- },
- {
- "__typename": "Report",
- "authors": ["Founder", "Pluto Tv"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 721,
- "source_domain": "inc.com",
- "submitters": ["Anonymous"],
- "title": "This Is Why You Should Know About Norman the AI Psychopath",
- "url": "https://www.inc.com/ilya-pozin/this-is-why-you-should-know-about-norman-ai-psychopath.html"
- },
- {
- "__typename": "Report",
- "authors": ["Jon Blistein"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 720,
- "source_domain": "rollingstone.com",
- "submitters": ["Anonymous"],
- "title": "MIT Scientists Unveil First Psychopath AI, ‘Norman’",
- "url": "https://www.rollingstone.com/culture/culture-news/mit-scientists-unveil-first-psychopath-ai-norman-630121/"
- },
- {
- "__typename": "Report",
- "authors": ["Jane Wakefield"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 719,
- "source_domain": "bbc.co.uk",
- "submitters": ["Anonymous"],
- "title": "Are you scared yet? Meet Norman, the psychopathic AI",
- "url": "https://www.bbc.co.uk/news/technology-44040008"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "national-resident-matching-program",
- "name": "National Resident Matching Program"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "national-resident-matching-program",
- "name": "National Resident Matching Program"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "medical-residents",
- "name": "Medical Residents"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [759],
- "vector": [
- -0.09531673789024353, 0.08534127473831177, 0.02523988112807274, -0.050221364945173264,
- 0.09018183499574661, -0.016093557700514793, -0.021744130179286003, 0.06987959146499634,
- 0.07728127390146255, -0.1381719559431076, -0.06161901354789734, 0.09560690075159073,
- -0.0007026898674666882, -0.09039579331874847, 0.04472823813557625, -0.04545692354440689,
- -0.12470118701457977, -0.017560116946697235, -0.04730790853500366, -0.10154546797275543,
- -0.10142002999782562, 0.01074548065662384, 0.033469706773757935, 0.041352562606334686,
- -0.04068504273891449, 0.0586397685110569, 0.11115990579128265, 0.11571704596281052,
- -0.0644867941737175, 0.06648831814527512, -0.014606798999011517, -0.08021188527345657,
- 0.10821455717086792, 0.04849362000823021, 0.00014697859296575189, 0.11412190645933151,
- 0.009727700613439083, -0.041506022214889526, -0.03903654217720032,
- -0.020248059183359146, 0.06043503060936928, 0.22155778110027313, 0.009180402383208275,
- -0.038985539227724075, 0.05322783440351486, -0.04106079414486885, 0.02327105589210987,
- 0.0887966975569725, -0.005899705924093723, 0.07590295374393463, 0.0014937350060790777,
- 0.04254930466413498, -0.04375226050615311, 0.05689144507050514, -0.14496564865112305,
- 0.08656136691570282, 0.044400788843631744, -0.004500709008425474, 0.07621198147535324,
- -0.11808593571186066, -0.05796727165579796, -0.15090756118297577, -0.037210553884506226,
- -0.09332818537950516, 0.09754820168018341, -0.1109294444322586, -0.03877164423465729,
- 0.01034074742347002, 0.0158750768750906, 0.016919804736971855, 0.052294883877038956,
- -0.03968387469649315, -0.036478910595178604, 0.010167512111365795,
- -0.031241126358509064, -0.014869814738631248, -0.02119085006415844, 0.15178896486759186,
- -0.07171282917261124, 0.03784184902906418, 0.07793502509593964, -0.07123713940382004,
- 0.43991589546203613, 0.07249715179204941, -0.03110496886074543, 0.026296472176909447,
- 0.13239786028862, 0.050104379653930664, 0.0372370146214962, 0.03983936831355095,
- 0.0010775105329230428, 0.1147071123123169, -0.016405854374170303, -0.017466697841882706,
- 0.11481885612010956, 0.020136220380663872, 0.04151362180709839, -0.00369798531755805,
- -0.03908129781484604, -0.07827840000391006, 0.011258240789175034, -0.10296253114938736,
- 0.18394243717193604, 0.07994312793016434, -0.047478675842285156, 0.0137172294780612,
- 0.04752901569008827, -0.024544240906834602, 0.062163133174180984, -0.04858333617448807,
- 0.048798058182001114, -0.013534454628825188, 0.025638727471232414, -0.0404428169131279,
- 0.02301407977938652, 0.010521532967686653, 0.04669523611664772, 0.07617562264204025,
- 0.06943526118993759, 0.06569354981184006, -0.02911052294075489, 0.07539397478103638,
- 0.1075892224907875, -0.049151744693517685, -0.0328611396253109, -0.009927332401275635,
- -0.06226879358291626, 0.011198260821402073, 0.01171273272484541, 0.025776540860533714,
- -0.05427756905555725, -0.20313335955142975, -0.04322591423988342, 0.005277447402477264,
- -0.04766431823372841, 0.0001708469062577933, -0.037008825689554214, -0.0902576744556427,
- 0.03623972833156586, -0.016203055158257484, 0.0007262318977154791, 0.08654314279556274,
- 0.023722251877188683, 0.054646026343107224, 0.13027453422546387, 0.06611255556344986,
- -0.09131791442632675, -0.057615868747234344, 0.03782317414879799, 0.01771174930036068,
- 0.09399083256721497, -0.12047304958105087, -0.0744340643286705, -0.040825214236974716,
- 0.021521536633372307, 0.74544757604599, 0.12318820506334305, 0.11346100270748138,
- 0.003381886286661029, -0.06467495113611221, 0.17650048434734344, -0.031093092635273933,
- 0.054119352251291275, -0.05227464437484741, -0.04200531542301178, -0.01131049357354641,
- -0.04693352058529854, -0.005291677080094814, -0.022922685369849205, 0.03051081672310829,
- 0.10376224666833878, 0.011385789141058922, 0.1299109309911728, 0.027818312868475914,
- -0.10236919671297073, -0.05929385498166084, 0.05205707997083664, 0.020503241568803787,
- -0.14345543086528778, 0.049330759793519974, 0.04184800013899803, 0.03739531338214874,
- -0.04635418951511383, 0.0010967844864353538, -0.020704427734017372, 0.05571265146136284,
- -0.03692463040351868, -0.004667109344154596, 0.002759749535471201, 0.07332459837198257,
- 0.0915050134062767, 0.040090929716825485, -0.03917187079787254, -0.14144891500473022,
- -0.025103462859988213, 0.13044419884681702, 0.017518840730190277, -0.031093977391719818,
- 0.12117007374763489, -0.1121363490819931, 0.05255749449133873, 0.03286190330982208,
- 0.22272555530071259, -0.10554233193397522, 0.0326215960085392, 0.011261762119829655,
- 0.023457732051610947, 0.03676782175898552, 0.006536741275340319, -0.04495929181575775,
- -0.020533237606287003, 0.10684897750616074, 0.0004526510601863265, 0.089668408036232,
- 0.025155946612358093, -0.05599915608763695, 0.0702648013830185, -0.023386528715491295,
- -0.008224069140851498, -0.08148999512195587, 0.03603002056479454, 0.07210511714220047,
- -0.0707138255238533, 0.014750272035598755, -0.05018800124526024, -0.001190210459753871,
- 0.027945155277848244, -0.0014615103136748075, 0.05237704515457153,
- -0.0018481374718248844, -0.10798020660877228, 0.08761951327323914, 0.008012190461158752,
- 0.033916499465703964, 0.09511328488588333, -0.06581389904022217, 0.011978629976511002,
- -0.030995063483715057, -0.04327240586280823, 0.06316008418798447, 0.007446060422807932,
- 0.0951605811715126, 0.09657998383045197, 0.10245110839605331, 0.003793819574639201,
- 0.09469914436340332, 0.037182893604040146, -0.05238713324069977, 0.013803352601826191,
- 0.05642906576395035, -0.0381263829767704, -0.08465740084648132, 0.036930255591869354,
- 0.004321342334151268, 0.10192222893238068, -0.01660136878490448, -0.0266541950404644,
- -0.004865892231464386, -0.045099783688783646, -0.06479447335004807,
- -0.05479386821389198, -0.05113351345062256, -0.002839014632627368, 0.09415019303560257,
- -0.05843454599380493, -0.0755482092499733, -0.10584523528814316, 0.004925786983221769,
- 0.10582084208726883, 0.03639563173055649, -0.027640698477625847, -0.11422418802976608,
- -0.032296448945999146, 0.024959053844213486, 0.05550692230463028, 0.0033272868022322655,
- -0.026796681806445122, 0.06935156136751175, -0.1070232018828392, 0.011258691549301147,
- -0.02337045595049858, -0.05011757090687752, -0.06204861029982567, -0.045304980129003525,
- -0.04398341104388237, 0.011565035209059715, -0.06622128188610077, -0.056583501398563385,
- -0.006554584484547377, 0.059234827756881714, 0.06077946722507477, -0.03932133689522743,
- -0.07477102428674698, 0.10580947995185852, 0.009141786023974419, 0.015854572877287865,
- 0.12299763411283493, -0.07390864938497543, 0.052144262939691544, -0.04573405534029007,
- -0.061172809451818466, -0.07465935498476028, -0.09273792058229446,
- -0.009131665341556072, 0.023282090201973915, 0.011238714680075645, -0.04230958968400955,
- -0.04968758299946785, 0.017535854130983353, -0.01595308445394039, -0.08263601362705231,
- -0.022437212988734245, -0.12095388770103455, 0.15493610501289368, -0.02180766500532627,
- 0.00029641433502547443, 0.011655362322926521, -0.048998504877090454,
- 0.057554904371500015, 0.022613072767853737, -0.04113677144050598, 0.04219158738851547,
- 0.029917847365140915, 0.01582818478345871, 0.02655547298491001, 0.09284556657075882,
- -0.008942220360040665, 0.024838222190737724, 0.10927882045507431, 0.45921868085861206,
- -0.04760625958442688, 0.10063070058822632, 0.09632989019155502, -0.0015797142405062914,
- 0.03918732330203056, -0.07133204489946365, 0.019768476486206055, 0.1020893082022667,
- 0.13210365176200867, 0.16823554039001465, -0.014043395407497883, -0.00652564549818635,
- -0.09872234612703323, 0.11831443011760712, 0.037832096219062805, 0.0017580805579200387,
- -0.016478102654218674, -0.08076036721467972, 0.04083680361509323, 0.037520766258239746,
- -0.07781283557415009, 0.011971097439527512, -0.04146727919578552, -0.10627862066030502,
- 0.02909865602850914, 0.03218777850270271, 0.009164465591311455, -0.020900657400488853,
- -0.002280530519783497, -0.04596101492643356, 0.022097287699580193, 0.03298639878630638,
- -0.005250381771475077, -0.13643218576908112, 0.027042889967560768, -0.10673722624778748,
- -0.08167575299739838, 0.08640101552009583, -0.00864261295646429, 0.05266091600060463,
- 0.09812498092651367, -0.03811541944742203, 0.05735020712018013, 0.0160127691924572,
- -0.031656477600336075, 0.010299901477992535, 0.07734066247940063, 0.0013554183533415198,
- 0.008019901812076569, 0.11936628818511963, -0.0014780894853174686, -0.03235973045229912,
- -0.13198822736740112, 0.07046341150999069, 0.10312094539403915, -0.04807249456644058,
- -0.05025147646665573, 0.005737583618611097, 0.06572375446557999, 0.03372273966670036,
- -0.056809570640325546, -0.08493706583976746, -0.04461180791258812, -0.0717981606721878,
- 0.11279809474945068, 0.021068638190627098, -0.019629552960395813, -0.15885542333126068,
- -0.02449212782084942, -0.014636646024882793, 0.05109766870737076, 0.07342157512903214,
- -0.09286968410015106, -0.01458001509308815, -0.0036381054669618607,
- -0.0046775005757808685, 0.07145540416240692, -0.011203516274690628,
- -0.00100747961550951, -0.10268896073102951, 0.02206568606197834, 0.023165946826338768,
- 0.04174432530999184, -0.07495136559009552, 0.10992656648159027, -0.06864918768405914,
- 0.013562843203544617, -0.01875649206340313, -0.10660715401172638, 0.014688174240291119,
- -0.040348585695028305, 0.03461074456572533, -0.038301900029182434, -0.05779748782515526,
- -0.047434885054826736, -0.015065283514559269, -0.05314677581191063,
- -0.09763767570257187, -0.10019771754741669, -0.0035562664270401, -0.047861065715551376,
- 0.0872543677687645, -0.11710114032030106, -0.05160960555076599, -0.04105866700410843,
- -0.040529049932956696, -0.02311779372394085, 0.041148558259010315, -0.02427823096513748,
- -0.145750030875206, -0.07414211332798004, -0.07794875651597977, 0.09304960817098618,
- -0.016987565904855728, -0.09015591442584991, 0.03108350746333599, 0.09456737339496613,
- 0.04589230194687843, -0.040940091013908386, -0.025956634432077408, -0.03104197420179844,
- 0.06795298308134079, -0.17898055911064148, -0.40989381074905396, 0.038494132459163666,
- 0.07006161659955978, 0.06471812725067139, -0.0009287489810958505, -0.06602831184864044,
- 0.07283739745616913, -0.0128404526039958, -0.07893958687782288, 0.10046590864658356,
- -0.06871240586042404, 0.02817794680595398, -0.029883965849876404, -0.08166787028312683,
- -0.01379143912345171, -0.08742718398571014, -0.008169319480657578, 0.028632229194045067,
- -0.03533104434609413, -0.138517826795578, -0.0914471372961998, 0.07212086766958237,
- 0.02096882276237011, -0.03420485928654671, -0.0012798031093552709, 0.0694475993514061,
- -0.06582257896661758, -0.057898882776498795, -0.03491311892867088, 0.06803522258996964,
- 0.058391861617565155, -0.1003412976861, -0.030734427273273468, 0.01889563538134098,
- 0.0017331488197669387, 0.08010406047105789, -0.02358233369886875, -0.018079334869980812,
- -0.055726271122694016, 0.07564574480056763, 0.07176343351602554, 0.1832539290189743,
- 0.018305448815226555, -0.006424653343856335, -0.020277604460716248, 0.15909159183502197,
- 0.03839859366416931, 0.03805044665932655, 0.0014847778948023915, 0.003472711658105254,
- 0.048993829637765884, -0.04835057258605957, 0.11373776942491531, -0.07623865455389023,
- -0.009530331939458847, 0.02435295656323433, -0.03030473366379738, -0.03405660390853882,
- -0.05077545344829559, 0.2101297676563263, -0.00003478833241388202, 0.04785662144422531,
- 0.01907207816839218, -0.0016568420687690377, 0.007901529781520367, -0.08757105469703674,
- -0.030512942001223564, 0.014215325005352497, -0.003368514822795987, 0.03617265820503235,
- -0.03373274207115173, -0.06260661780834198, -0.02532431110739708, -0.062340833246707916,
- 0.00324226263910532, 0.1149929091334343, -0.08142197132110596, 0.03353021666407585,
- -0.061202798038721085, 0.16472001373767853, 0.048509418964385986, 0.0013266841415315866,
- 0.0634273812174797, 0.08250252157449722, 0.007136982399970293, 0.03552801162004471,
- -0.0045675309374928474, -0.045425042510032654, -0.03710416704416275,
- 0.09809568524360657, -0.026563910767436028, 0.13883361220359802, 0.005113295745104551,
- 0.001501685124821961, -0.08969234675168991, 0.03162892535328865, -0.03285151347517967,
- 0.037004515528678894, -0.40658870339393616, -0.04049868509173393, 0.13642820715904236,
- -0.04302981123328209, 0.010064098984003067, 0.030080711469054222, 0.03115820325911045,
- -0.060778792947530746, 0.04785154014825821, -0.1490335464477539, 0.16962695121765137,
- 0.0738060474395752, 0.044730234891176224, -0.04085226356983185, -0.009498839266598225,
- 0.04612934589385986, -0.0190685223788023, 0.0278121680021286, 0.02279730699956417,
- -0.12323308736085892, 0.02273491956293583, -0.07900113612413406, 0.14030782878398895,
- 0.020361216738820076, 0.019800079986453056, 0.11540144681930542, -0.08008474856615067,
- 0.022997362539172173, 0.010520674288272858, -0.026549171656370163, 0.012205746956169605,
- -0.01495356485247612, -0.01576470397412777, 0.12469106167554855, 0.09969107806682587,
- 0.13256041705608368, 0.002696890151128173, 12.142928123474121, 0.03276636824011803,
- 0.08020002394914627, -0.06969716399908066, -0.037011440843343735, -0.02999999187886715,
- 0.028818530961871147, -0.13382942974567413, 0.09792174398899078, 0.15711359679698944,
- -0.0340425968170166, -0.07966679334640503, -0.007822212763130665, -0.07806987315416336,
- 0.04762320592999458, -0.08644171804189682, -0.08136852830648422, 0.01715894602239132,
- 0.046704910695552826, -0.05275656282901764, -0.07273304462432861, 0.07655826210975647,
- 0.08631028234958649, -0.017699936404824257, -0.0923091471195221, 0.021783839911222458,
- -0.016684697940945625, 0.001245891093276441, 0.03980904817581177, 0.03466422110795975,
- -0.009971030056476593, 0.0071667772717773914, 0.0003092724655289203,
- -0.0029229274950921535, 0.06600076705217361, 0.09991563111543655, 0.0768388956785202,
- 0.0377388522028923, 0.06109372526407242, 0.0661306083202362, 0.04347894340753555,
- 0.00826199259608984, 0.034465789794921875, 0.02364906668663025, 0.06807636469602585,
- 0.09112416952848434, 0.013433839194476604, 0.17801415920257568, -0.010221541859209538,
- 0.10782924294471741, 0.10060926526784897, -0.0016841773176565766, 0.13670720160007477,
- 0.015725964680314064, 0.04264604300260544, 0.03188919275999069, -0.007497926242649555,
- -0.11534982174634933, 0.05279329791665077, 0.023870782926678658, -0.07440204918384552,
- 0.18611466884613037, 0.0820164680480957, 0.06977387517690659, 0.08162564784288406,
- 0.05603900924324989, 0.12541987001895905, 0.02467537112534046, -0.22266283631324768,
- -0.00984423141926527, -0.015661273151636124, -0.10273116827011108, -0.13106928765773773,
- 0.07944506406784058, 0.05802500620484352, -0.06716333329677582, 0.0005054507637396455,
- -0.05217219516634941, 0.012365065515041351, -0.0026279862504452467,
- -0.020657379180192947, 0.0767073780298233, -0.03177224472165108, -0.02524624951183796,
- 0.03336925804615021, -0.007750040851533413, 0.04870838299393654, 0.14493125677108765,
- 0.001937751192599535, -0.11238177120685577, -0.03498902544379234, 0.08540689945220947,
- -0.05414658784866333, -0.05183098092675209, 0.019516034051775932, -0.09756854921579361,
- 0.055462297052145004, -0.23094256222248077, 0.141061469912529, 0.12381922453641891,
- -0.13610567152500153, -0.03759700059890747, -0.04057406634092331, 0.11693887412548065,
- -0.030533459037542343, 0.03439972922205925, -0.010714522562921047, 0.003990015015006065,
- -0.017447808757424355, 0.04063031077384949, -0.008939635008573532, 0.10907682031393051,
- 0.08112403005361557, -0.0744667500257492, -0.020497897639870644, 0.05489310249686241,
- -0.016514398157596588, -0.041219208389520645, 0.05733206123113632, 0.0640777051448822,
- -0.09853560477495193, -0.03304561972618103, -0.002339983358979225,
- -0.059333980083465576, -0.06080278754234314, -0.048757150769233704,
- 0.0033257065806537867, 0.039662063121795654, -0.05966087058186531, -0.04800725355744362,
- 0.005187620408833027, 0.08960407227277756, 0.07471386343240738, 0.014055442065000534,
- 0.06719362735748291, -0.04700165241956711, -0.06552401185035706, 0.03401370346546173,
- 0.03768845275044441, 0.01789216697216034, -0.005499306600540876, -0.03705768287181854,
- -0.06722629070281982, -0.1325412094593048, -0.053956288844347, 0.07576823979616165,
- 0.048542097210884094, 0.1017480194568634, 0.045081667602062225, -0.0547952763736248,
- -0.05078735575079918, 0.10475203394889832, 0.0604911707341671, -0.00038462819065898657,
- -0.020541734993457794, -0.0342731848359108, -0.04968370124697685, 0.10298992693424225,
- -0.09288682788610458, -0.014487886801362038, 0.030595853924751282, -0.1060962900519371,
- 0.1200794130563736, 0.06962757557630539, 0.021921521052718163, 0.06589777767658234,
- 0.055006299167871475, 0.015619626268744469, 0.03724837303161621, -0.01671762950718403,
- 0.03889579698443413, -0.007519983686506748, -0.07422447949647903, -0.07372260838747025,
- 0.015577300451695919, 0.10003628581762314, 0.011550110764801502, -0.07567160576581955,
- -0.02480964921414852, -0.05661265552043915
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 42,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 11,
- "similarity": 0.9974343776702881
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 40,
- "similarity": 0.9973950386047363
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 13,
- "similarity": 0.9973095655441284
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Alvin E. Roth"],
- "epoch_date_downloaded": 1560124800,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 759,
- "source_domain": "stanford.edu",
- "submitters": ["Roman Yampolskiy"],
- "title": "The National Residency Matching Program as a Labor Market",
- "url": "http://stanford.edu/~alroth/papers/1996_JAMA_NMRPasLaborMarket.html"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "st-george's-hospital-medical-school",
- "name": "St George's Hospital Medical School"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "dr.-geoffrey-franglen",
- "name": "Dr. Geoffrey Franglen"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "women",
- "name": "Women"
- },
- {
- "__typename": "Entity",
- "entity_id": "minority-groups",
- "name": "Minority Groups"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [765, 764, 763, 762],
- "vector": [
- -0.034699492156505585, 0.0709172934293747, 0.023930687457323074, -0.09038641303777695,
- 0.08714228868484497, -0.03836905211210251, -0.0005227954243309796, 0.054368067532777786,
- 0.06149062514305115, -0.11628812551498413, -0.023169144988059998, 0.025242187082767487,
- 0.031786803156137466, -0.04803267493844032, 0.06411813199520111, -0.09281137585639954,
- -0.12223540246486664, -0.031979210674762726, -0.023711567744612694, -0.0835166871547699,
- -0.08192376792430878, 0.02753334864974022, -0.004055187106132507, 0.08238043636083603,
- -0.040764857083559036, 0.023662157356739044, 0.08221153914928436, 0.08825214207172394,
- -0.020407401025295258, 0.045964278280735016, -0.046253811568021774,
- -0.06762164831161499, 0.1063850000500679, 0.013315631076693535, 0.01407680381089449,
- 0.09153390675783157, 0.031132778152823448, -0.03716780245304108, 0.0031102029606699944,
- -0.009043690748512745, 0.040875550359487534, 0.21782858669757843, -0.008549722842872143,
- -0.0006250052247196436, 0.02570410817861557, -0.028433527797460556,
- -0.0045247613452374935, 0.01997893489897251, 0.003991453442722559, 0.04508398100733757,
- 0.015770183876156807, 0.03210054337978363, -0.021789992228150368, 0.01822209358215332,
- -0.10194002836942673, 0.027187529951334, 0.027293775230646133, 0.022673945873975754,
- 0.05992129445075989, -0.09161441773176193, 0.002243475755676627, -0.20766770839691162,
- -0.061087846755981445, -0.0753394365310669, 0.07284333556890488, -0.0902426540851593,
- -0.024431707337498665, 0.00040822027949616313, 0.022313270717859268,
- 0.05868391692638397, 0.07644405961036682, -0.01377253606915474, -0.022712688893079758,
- 0.030204936861991882, -0.01610846444964409, -0.020171092823147774,
- -0.021767567843198776, 0.20175638794898987, -0.0791589766740799, -0.010488911531865597,
- 0.07953813672065735, -0.12344236671924591, 0.3593404293060303, 0.023666279390454292,
- -0.019705552607774734, -0.016020633280277252, 0.08512405306100845, 0.023381635546684265,
- 0.04187989979982376, 0.03360481560230255, 0.00515511492267251, 0.06899302452802658,
- -0.07274220138788223, -0.004090809263288975, 0.04886613413691521, 0.03455392271280289,
- -0.04049850255250931, -0.002558404114097357, -0.03126419708132744,
- -0.042412903159856796, -0.014300316572189331, -0.04318065196275711, 0.07877956330776215,
- 0.09238537400960922, -0.04511274769902229, -0.013578223995864391, 0.0644625574350357,
- -0.04452914744615555, 0.040998995304107666, -0.023758355528116226, 0.0155397430062294,
- 0.016870461404323578, 0.0676531046628952, 0.018922138959169388, 0.005858797580003738,
- -0.04564924165606499, 0.016946814954280853, 0.0824771374464035, 0.0614183284342289,
- 0.025317365303635597, 0.005642144940793514, 0.057737868279218674, 0.05631059408187866,
- -0.05336812138557434, -0.0482824482023716, -0.028816938400268555, -0.034974656999111176,
- -0.03274465352296829, -0.02642757073044777, 0.03637028858065605, -0.06367069482803345,
- -0.1479397416114807, -0.009645991958677769, 0.044527117162942886, -0.025108791887760162,
- -0.01406580489128828, 0.014704207889735699, -0.030500562861561775, 0.037752557545900345,
- -0.013190247118473053, 0.009069768711924553, 0.057297732681035995,
- -0.018404869362711906, 0.04531493037939072, 0.07906808704137802, 0.03915237635374069,
- -0.03757797181606293, -0.03607717156410217, 0.007075631991028786, -0.011771084740757942,
- 0.12292291224002838, -0.1351909041404724, -0.04550362378358841, -0.013515311293303967,
- 0.021035995334386826, 0.6685800552368164, 0.10850106924772263, 0.142547145485878,
- 0.002866107039153576, -0.02535591460764408, 0.174127459526062, 0.021735744550824165,
- 0.028725143522024155, -0.04577067494392395, -0.05281634256243706, 0.03885994851589203,
- -0.05430477857589722, -0.03199325129389763, 0.032894428819417953, 0.007348236162215471,
- 0.07674166560173035, 0.02035328559577465, 0.06801479309797287, -0.01167512871325016,
- -0.07914990931749344, -0.0284622460603714, 0.06055078282952309, 0.0028153853490948677,
- -0.10750648379325867, -0.032504379749298096, 0.0486782044172287, 0.06693289428949356,
- -0.10388379544019699, -0.002524164505302906, -0.06892136484384537, 0.04890389367938042,
- 0.002022738801315427, 0.07777552306652069, -0.0019833382684737444, 0.03660447895526886,
- 0.04565805569291115, -0.0018212177092209458, 0.007920585572719574, -0.06362737715244293,
- 0.022849027067422867, 0.06277836859226227, -0.005402934271842241, -0.021147267892956734,
- 0.08491521328687668, -0.09152190387248993, 0.022342441603541374, 0.0021691082511097193,
- 0.1590784788131714, -0.13403275609016418, 0.04022297263145447, -0.016597378998994827,
- -0.020021561533212662, 0.038906440138816833, 0.013803577981889248,
- -0.049490638077259064, -0.038231298327445984, 0.060795802623033524, 0.03255736827850342,
- 0.06659220904111862, 0.06363623589277267, -0.02156253345310688, 0.04216311126947403,
- 0.11707648634910583, 0.005547775886952877, -0.02418246492743492, 0.05386414751410484,
- 0.043919675052165985, -0.036484092473983765, 0.011173862032592297, 0.019548453390598297,
- -0.04100479185581207, 0.0032734968699514866, -0.010902748443186283, 0.03097345679998398,
- -0.01619206741452217, -0.041853804141283035, 0.07398533076047897, 0.022586578503251076,
- 0.015243220143020153, 0.08789782971143723, -0.08005615323781967, -0.04611125588417053,
- -0.035651035606861115, -0.05636163428425789, 0.041925910860300064, -0.05487704649567604,
- 0.07522856444120407, 0.09217105060815811, 0.06932923942804337, 0.020181789994239807,
- 0.027016587555408478, 0.048736412078142166, 0.01100220624357462, 0.008126510307192802,
- 0.05477810651063919, -0.03969105705618858, -0.030446887016296387, 0.006347191520035267,
- -0.013254768215119839, 0.04307408630847931, -0.0015565874055027962,
- -0.07806897163391113, -0.01854773610830307, -0.032952822744846344, -0.01256443653255701,
- -0.07097886502742767, -0.038289375603199005, 0.01595197804272175, 0.009037565439939499,
- -0.05903710797429085, -0.07679209858179092, -0.0857684537768364, -0.01584167778491974,
- 0.07325936108827591, -0.04941583424806595, -0.0004603606357704848, -0.11039823293685913,
- 0.017450330778956413, -0.021816544234752655, 0.054279543459415436,
- -0.0041259839199483395, -0.005477758590131998, 0.029132332652807236,
- -0.07998743653297424, 0.027603276073932648, -0.0062379492446780205,
- -0.08746447414159775, -0.028423216193914413, -0.05438388139009476, -0.02378273569047451,
- 0.021433722227811813, 0.0037638740614056587, -0.036010369658470154,
- 0.018421873450279236, 0.03779199346899986, 0.047580037266016006, -0.033586155623197556,
- -0.022998260334134102, 0.04945635423064232, -0.02114414982497692, 0.0031135634053498507,
- 0.08635885268449783, -0.04480165243148804, 0.027110934257507324, -0.027324622496962547,
- -0.08611351251602173, -0.06728613376617432, -0.009932097047567368, -0.04674143344163895,
- 0.0325317457318306, -0.012416468933224678, -0.012371041812002659, -0.02491331659257412,
- -0.0073625813238322735, 0.025593888014554977, -0.050796449184417725,
- -0.0868055522441864, -0.0963851734995842, 0.10184577852487564, 0.02243172377347946,
- -0.0006092610419727862, 0.014422881416976452, -0.06954526156187057, 0.0460355281829834,
- 0.008591138757765293, -0.00032864848617464304, 0.03999596834182739,
- 0.051854319870471954, 0.0027904468588531017, 0.026553962379693985, 0.05137905851006508,
- 0.007833220064640045, 0.02398216724395752, 0.07214580476284027, 0.4290305972099304,
- -0.15583235025405884, 0.0917331874370575, 0.0827426016330719, 0.024467196315526962,
- 0.03345577418804169, -0.04046010598540306, 0.06654011458158493, 0.0885358676314354,
- 0.12022122740745544, 0.13088694214820862, -0.05159299448132515, 0.009749595075845718,
- -0.07542510330677032, 0.07207107543945312, 0.023879868909716606, 0.014794931747019291,
- -0.0031307002063840628, -0.051344193518161774, -0.023219771683216095,
- 0.017673814669251442, -0.03522484004497528, 0.0370301827788353, -0.0037594791501760483,
- -0.04873404651880264, 0.01299513690173626, 0.022478725761175156, 0.00881684198975563,
- -0.008547047153115273, 0.053747572004795074, -0.06251934170722961, 0.0599391832947731,
- 0.020153924822807312, 0.03507140278816223, -0.09599984437227249, 0.03393346071243286,
- -0.05298749729990959, -0.06703998893499374, 0.0655565857887268, -0.025356391444802284,
- 0.04159979149699211, 0.06666577607393265, -0.01802467554807663, 0.04627247154712677,
- -0.02963447757065296, -0.04878757521510124, 0.01003193762153387, 0.05077679082751274,
- 0.0252873282879591, 0.03565370664000511, 0.16615134477615356, -0.03467923775315285,
- 0.007354861591011286, -0.07834695279598236, 0.06162481755018234, 0.11814098805189133,
- -0.0016102403169497848, 0.02634252980351448, -0.009295119903981686, 0.00678750965744257,
- 0.021114034578204155, -0.029856065288186073, -0.08872063457965851, -0.03748463839292526,
- -0.046221017837524414, 0.06880354881286621, 0.02278943359851837, -0.05190310999751091,
- -0.12191981077194214, -0.022777045145630836, -0.05298963934183121, 0.02612493187189102,
- 0.07187370955944061, -0.06969594955444336, 0.04582729935646057, 0.0068885935470461845,
- -0.019498217850923538, 0.02049225941300392, -0.05381002649664879, 0.008118060417473316,
- -0.04721440002322197, 0.029459189623594284, 0.04350629448890686, 0.04195871576666832,
- -0.02217593416571617, 0.09517893195152283, -0.07580330222845078, 0.06873523443937302,
- 0.03564293682575226, -0.03945999965071678, 0.019156020134687424, -0.0009552774718031287,
- 0.027121350169181824, 0.028167564421892166, -0.022964823991060257, -0.00512729911133647,
- -0.02281193435192108, -0.01431102491915226, -0.09968069195747375, -0.0653567761182785,
- -0.027176303789019585, -0.05709417909383774, 0.03386800363659859, -0.06318040192127228,
- -0.006843473296612501, -0.037242986261844635, -0.03508451581001282,
- 0.004691928159445524, 0.014281658455729485, 0.0032563875429332256, -0.12987256050109863,
- 0.0008567932527512312, 0.010995983146131039, 0.06158521771430969, -0.010807775892317295,
- -0.011295465752482414, 0.029375920072197914, 0.07358965277671814, 0.049674637615680695,
- -0.027513379231095314, -0.029902158305048943, -0.0667182132601738, 0.06507208943367004,
- -0.0830383375287056, -0.3355724811553955, 0.05476327985525131, 0.01665358990430832,
- 0.03855317831039429, 0.027647266164422035, -0.08363276720046997, 0.03297492861747742,
- -0.015930593013763428, -0.023302564397454262, 0.05722939595580101,
- -0.043575871735811234, 0.01901997998356819, -0.019503852352499962, -0.0942063182592392,
- -0.017990609630942345, -0.033728569746017456, -0.026538938283920288,
- 0.05011904239654541, -0.013862786814570427, -0.07006806135177612, -0.08535110950469971,
- 0.029754269868135452, -0.023490505293011665, 0.03918200358748436, 0.038050949573516846,
- 0.0036358367651700974, -0.04886413365602493, -0.05357866734266281, 0.019820144400000572,
- 0.04918074607849121, 0.009822526015341282, -0.06980320066213608, 0.009808764792978764,
- 0.06166398152709007, 0.006528747733682394, 0.08667898178100586, 0.015622408129274845,
- -0.00915355235338211, -0.0755692571401596, 0.08156441152095795, 0.062135834246873856,
- 0.1874036341905594, 0.010564899072051048, -0.010514830239117146, 0.0021000634878873825,
- 0.11392349004745483, 0.04385928809642792, 0.021587036550045013, -0.022662093862891197,
- 0.011201592162251472, 0.041925832629203796, 0.016772963106632233, 0.07933163642883301,
- -0.07466308772563934, -0.015987955033779144, -0.03570324555039406, 0.023062050342559814,
- -0.026217380538582802, -0.033067695796489716, 0.2020147740840912, 0.01832745410501957,
- 0.04987548664212227, 0.011869164183735847, -0.05683918297290802, -0.021362654864788055,
- -0.06495941430330276, -0.08753132075071335, -0.007599242031574249,
- 0.0016030521364882588, -0.004596467595547438, -0.038252852857112885,
- -0.1015685498714447, -0.028356820344924927, 0.0004395783762447536,
- -0.014493637718260288, 0.09396233409643173, -0.05071995407342911, 0.03062792681157589,
- -0.044824954122304916, 0.13192102313041687, 0.04647073149681091, 0.029434295371174812,
- 0.05766171216964722, 0.095870241522789, 0.029492272064089775, 0.0028467942029237747,
- -0.06255868822336197, -0.05557261407375336, -0.02514645643532276, 0.1362336128950119,
- -0.04068607836961746, 0.08752189576625824, 0.02681058831512928, -0.040502868592739105,
- -0.05586215481162071, 0.039572618901729584, -0.0177927203476429, -0.020351743325591087,
- -0.41918814182281494, -0.04689934849739075, 0.11971379816532135, 0.019751233980059624,
- -0.0008610999211668968, 0.06205831095576286, 0.02692270837724209, -0.05561516806483269,
- 0.010816806927323341, -0.08673929423093796, 0.14928662776947021, 0.0032907547429203987,
- 0.08561626821756363, -0.049076855182647705, 0.0329897366464138, 0.06702712923288345,
- -0.05819794535636902, -0.011627262458205223, 0.047528915107250214, -0.18047267198562622,
- -0.01106185745447874, -0.038093749433755875, 0.09341851621866226, 0.037703387439250946,
- 0.04955334588885307, 0.09739141911268234, -0.06399606168270111, 0.028289442881941795,
- 0.04545034468173981, -0.04799561947584152, 0.045979294925928116, 0.0022608356084674597,
- -0.02512115053832531, 0.06568647176027298, 0.08387774229049683, 0.06703077256679535,
- -0.03194453567266464, 11.931120872497559, 0.043616753071546555, 0.05225541815161705,
- -0.05571727827191353, -0.015877779573202133, -0.06498903036117554, 0.02682909183204174,
- -0.12961873412132263, 0.05317339301109314, 0.12946942448616028, 0.0003422555164434016,
- -0.04620978608727455, 0.009037889540195465, -0.09374041110277176, 0.009247208945453167,
- -0.032313235104084015, -0.06978952884674072, -0.036161258816719055, 0.03977889567613602,
- -0.03780877962708473, -0.026446860283613205, 0.013461457565426826, 0.05690591782331467,
- 0.012006526812911034, -0.04527357593178749, -0.0005727895186282694,
- -0.007592284586280584, -0.04009836167097092, 0.006186530459672213, 0.012661788612604141,
- -0.03326122462749481, 0.041116487234830856, 0.055519599467515945,
- -0.0015689958818256855, 0.07557809352874756, 0.004109756089746952, 0.06011325865983963,
- 0.033615581691265106, 0.01576622948050499, 0.09139387309551239, 0.008579280227422714,
- 0.02938147634267807, 0.041224341839551926, 0.040352001786231995, 0.07943135499954224,
- 0.06161521375179291, 0.045120131224393845, 0.08189895749092102, 0.031176172196865082,
- 0.07064612954854965, 0.10736949741840363, -0.001156061072833836, 0.11714156717061996,
- -0.02166910283267498, 0.006736228242516518, 0.034610260277986526, 0.018780315294861794,
- -0.08184363692998886, 0.05768480524420738, 0.050671711564064026, -0.06880379468202591,
- 0.12837012112140656, 0.04683683067560196, 0.08907055854797363, -0.014981633983552456,
- 0.07668483257293701, 0.09943868964910507, 0.047146327793598175, -0.16508853435516357,
- -0.042018357664346695, 0.0008781958604231477, -0.0952315628528595, -0.07657639682292938,
- 0.08424204587936401, 0.04484660550951958, -0.03862099349498749, 0.0814029723405838,
- -0.013490479439496994, 0.0418790839612484, -0.02713211067020893, -0.005595043301582336,
- 0.05200233682990074, -0.016789594665169716, 0.0027962354943156242, 0.06705496460199356,
- 0.01195602212101221, 0.07976189255714417, 0.08641264587640762, 0.013557439669966698,
- -0.08515778183937073, -0.05482075363397598, 0.07822486013174057, -0.00881923921406269,
- -0.05959245562553406, 0.023378368467092514, -0.04366903752088547, 0.008510011248290539,
- -0.13132324814796448, 0.07752025127410889, 0.11380898207426071, -0.13499736785888672,
- -0.006817900575697422, -0.03901400789618492, 0.048653602600097656, 0.021322287619113922,
- -0.0007756921695545316, -0.04018846154212952, 0.025851033627986908,
- 0.027140337973833084, 0.029743004590272903, -0.030326446518301964, 0.058284565806388855,
- 0.09010380506515503, -0.03197062760591507, 0.01571013405919075, 0.041576411575078964,
- -0.012373101897537708, -0.026379678398370743, 0.05071699246764183, 0.047634754329919815,
- -0.08208096027374268, -0.02966226451098919, -0.03554592654109001, 0.007172569166868925,
- -0.004283501300960779, -0.03454625606536865, -0.00026826688554137945,
- 0.04097537696361542, -0.050733037292957306, -0.02161296457052231, -0.004232121165841818,
- 0.07584041357040405, 0.056524042040109634, -0.02128700539469719, 0.0847177803516388,
- -0.03458554670214653, -0.04589012637734413, 0.022351715713739395, 0.045147381722927094,
- 0.04719860851764679, -0.04166650027036667, -0.04314792901277542, -0.05214572325348854,
- -0.11912918090820312, -0.002049319911748171, 0.10660083591938019, 0.05161495879292488,
- 0.06849116832017899, 0.03221745416522026, -0.08241275697946548, -0.025166409090161324,
- 0.09199061244726181, 0.04890882968902588, -0.03981522098183632, 0.0427028089761734,
- -0.05506320670247078, -0.034207362681627274, 0.09725301712751389, -0.031039094552397728,
- -0.008168097585439682, 0.01897750049829483, -0.03081185184419155, 0.07284034788608551,
- 0.0729057788848877, 0.07197540253400803, 0.021512236446142197, 0.011679320596158504,
- 0.008888770826160908, 0.003351390128955245, -0.017194977030158043, 0.029150551185011864,
- -0.045127611607313156, -0.08270540833473206, -0.059668079018592834,
- -0.0010010282276198268, 0.11606356501579285, 0.038005635142326355, -0.08015785366296768,
- -0.030973220244050026, -0.05290740355849266
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 43,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 37,
- "similarity": 0.9991241097450256
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 49,
- "similarity": 0.9990091323852539
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 19,
- "similarity": 0.9990057945251465
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Megan Garcia"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 765,
- "source_domain": "read.dukeupress.edu",
- "submitters": ["Roman Yampolskiy"],
- "title": "Racist in the Machine",
- "url": "https://read.dukeupress.edu/world-policy-journal/article-abstract/33/4/111/30942/Racist-in-the-MachineThe-Disturbing-Implications?redirectedFrom=fulltext"
- },
- {
- "__typename": "Report",
- "authors": ["Tyler Cowen"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 764,
- "source_domain": "marginalrevolution.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Computers which magnify our prejudices",
- "url": "https://marginalrevolution.com/marginalrevolution/2013/08/computers-which-magnify-our-prejudices.html"
- },
- {
- "__typename": "Report",
- "authors": ["Stella Lowry", "Gordon Macpherson"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 763,
- "source_domain": "europepmc.org",
- "submitters": ["Roman Yampolskiy"],
- "title": "A Blot on the Profession",
- "url": "https://europepmc.org/backend/ptpmcrender.fcgi?accid=PMC2545288\u0026blobtype=pdf"
- },
- {
- "__typename": "Report",
- "authors": ["Nat Buckley"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 762,
- "source_domain": "natbuckley.co.uk",
- "submitters": ["Roman Yampolskiy"],
- "title": "Racist AI behaviour is not a new problem",
- "url": "https://natbuckley.co.uk/2016/03/27/racist-ai-behaviour-is-not-a-new-problem/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "usc-information-sciences-institute",
- "name": "USC Information Sciences Institute"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "usc-information-sciences-institute",
- "name": "USC Information Sciences Institute"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "usc-information-sciences-institute",
- "name": "USC Information Sciences Institute"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [766],
- "vector": [
- -0.05899187922477722, 0.11277788877487183, 0.008605937473475933, -0.07565027475357056,
- 0.07210145145654678, -0.029966777190566063, -0.011309892870485783, 0.0709318220615387,
- 0.06080726534128189, -0.13125617802143097, -0.05880819633603096, 0.031120717525482178,
- 0.03867147117853165, -0.07493644207715988, 0.046696241945028305, -0.062171801924705505,
- -0.12423449009656906, 0.006650853436440229, -0.03422804921865463, -0.07285571098327637,
- -0.10662791877985, 0.035204943269491196, -0.048585277050733566, 0.0612836591899395,
- -0.04616537317633629, 0.07009612023830414, 0.06727015972137451, 0.10599914193153381,
- -0.08353313058614731, 0.05398188903927803, -0.02854810282588005, -0.05295560508966446,
- 0.12336020916700363, 0.01872486248612404, 0.02136187255382538, 0.09404267370700836,
- 0.031196944415569305, -0.017024299129843712, 0.0269556175917387, 0.005566572304815054,
- 0.056633416563272476, 0.21525658667087555, -0.047565482556819916, -0.009661695919930935,
- -0.0005361356888897717, -0.04087680205702782, -0.0040183295495808125,
- 0.04046940803527832, -0.009918182156980038, 0.05483651161193848, 0.025216877460479736,
- 0.01878470368683338, 0.010073765181005001, 0.009905407205224037, -0.13188353180885315,
- 0.059120189398527145, 0.012777846306562424, -0.00813126377761364, 0.04380318149924278,
- -0.10231216251850128, -0.03978504240512848, -0.20487640798091888, -0.06687724590301514,
- -0.07599669694900513, 0.08831567317247391, -0.07615651935338974, -0.0316416472196579,
- 0.07224605977535248, 0.010689036920666695, 0.03409072384238243, 0.062029581516981125,
- -0.031227964907884598, -0.050990596413612366, 0.054650988429784775,
- -0.01915849559009075, -0.016347387805581093, -0.041267480701208115, 0.08173113316297531,
- -0.08428709208965302, 0.02403024211525917, 0.017254073172807693, -0.077144093811512,
- 0.37627485394477844, 0.036505136638879776, -0.04276154562830925, -0.024454893544316292,
- 0.10807532072067261, -0.003956490661948919, 0.013326592743396759, 0.02241785079240799,
- -0.0020593551453202963, 0.04048192873597145, -0.06425923109054565, -0.05229322984814644,
- 0.06774720549583435, 0.06243886053562164, 0.011383016593754292, -0.027896735817193985,
- -0.02332891896367073, -0.04826086014509201, -0.017810000106692314, -0.0865049660205841,
- 0.04837485030293465, 0.0544610358774662, -0.050086911767721176, 0.014299769885838032,
- 0.05287431925535202, -0.025353064760565758, 0.04594334587454796, -0.03614836186170578,
- 0.07284222543239594, 0.01803785376250744, 0.05287403240799904, 0.010182145982980728,
- -0.013266166672110558, 0.004853209014981985, 0.014125419780611992, 0.01288023591041565,
- 0.06887298822402954, 0.0606878399848938, -0.008111312985420227, 0.0960579514503479,
- 0.06519822031259537, -0.07531607896089554, -0.060863200575113297, 0.015515469945967197,
- -0.046267107129096985, -0.02718018926680088, -0.024302275851368904,
- 0.008380081504583359, -0.051827479153871536, -0.14450103044509888,
- -0.024441929534077644, 0.053670551627874374, -0.06453718990087509, 0.011812147684395313,
- -0.035687778145074844, -0.06980562210083008, 0.0734800323843956, 0.004779973067343235,
- 0.013594483025372028, 0.03989117965102196, -0.0276383887976408, -0.03737250342965126,
- 0.10916486382484436, 0.06412888318300247, -0.029202034696936607, -0.06697040051221848,
- 0.051512714475393295, 0.013102920725941658, 0.09952111542224884, -0.04599565640091896,
- -0.03908372297883034, -0.008497125469148159, -0.015339153818786144, 0.7788794636726379,
- 0.09946812689304352, 0.14836685359477997, 0.026273272931575775, -0.0809195414185524,
- 0.1609991490840912, 0.035331156104803085, 0.003560637589544058, -0.03170381113886833,
- -0.02543283812701702, 0.038061290979385376, -0.03187233954668045, -0.01661691814661026,
- 0.019731460139155388, 0.052583906799554825, 0.06944959610700607, 0.01358858123421669,
- 0.05344002693891525, 0.0009181498899124563, -0.10215476900339127, 0.001978327287361026,
- 0.09787076711654663, -0.0000910067610675469, -0.06212976202368736, -0.02976202219724655,
- 0.07149451971054077, 0.0504104420542717, -0.0762590691447258, -0.022013533860445023,
- -0.02109348401427269, 0.042643919587135315, -0.009066744707524776, 0.056492503732442856,
- -0.03332129493355751, 0.04816116392612457, 0.007158973254263401, 0.03541154786944389,
- -0.03155935928225517, -0.06891831755638123, -0.006335103884339333, 0.08863092213869095,
- -0.012589961290359497, -0.02243628352880478, 0.10818958282470703, -0.06758980453014374,
- 0.045447006821632385, -0.054544806480407715, 0.17940883338451385, -0.1449752151966095,
- 0.03574983403086662, -0.028771596029400826, 0.02689368650317192, 0.03162718936800957,
- 0.0328265018761158, -0.015393516048789024, -0.040031056851148605, 0.0762871652841568,
- 0.06265243887901306, 0.11903887987136841, 0.04343373328447342, 0.03314163163304329,
- 0.06919340044260025, 0.08359377831220627, -0.021960817277431488, -0.041634585708379745,
- 0.04290870949625969, 0.05098218843340874, 0.009628298692405224, 0.04517459124326706,
- 0.011883314698934555, 0.0218577329069376, 0.023913346230983734, 0.00351714831776917,
- 0.03588343411684036, 0.01181639265269041, -0.03707638010382652, 0.049582041800022125,
- 0.07147297263145447, 0.018468515947461128, 0.08544830977916718, -0.08644574135541916,
- -0.025652823969721794, -0.03590866178274155, -0.0829315111041069, 0.047234583646059036,
- -0.05023260414600372, 0.04163603112101555, 0.08398617058992386, 0.05387377738952637,
- 0.011685398407280445, 0.05832977220416069, 0.016584016382694244, -0.02433011867105961,
- 0.04439340904355049, 0.03498179465532303, -0.04597748816013336, -0.02555142529308796,
- -0.019735772162675858, -0.019627880305051804, 0.03397393599152565,
- -0.044017188251018524, -0.052736274898052216, -0.02565307356417179,
- -0.043780818581581116, -0.03349431976675987, -0.08571209758520126, -0.07176431268453598,
- -0.012966034933924675, 0.04340726137161255, -0.06846354156732559, -0.043621163815259933,
- -0.04082631319761276, -0.010886856354773045, 0.053076472133398056,
- -0.030642610043287277, -0.00037196194170974195, -0.10235688090324402,
- 0.008640849962830544, -0.01241951435804367, 0.06460664421319962, 0.029571281746029854,
- 0.015168599784374237, 0.006428329274058342, -0.05082450062036514, 0.029567677527666092,
- -0.014319106005132198, -0.08003690838813782, -0.03344636410474777, -0.09410008043050766,
- -0.00918043963611126, -0.02249293215572834, -0.00272721447981894, -0.0290704183280468,
- 0.014461657963693142, 0.05902935564517975, 0.04662821814417839, -0.035582683980464935,
- -0.10237357020378113, 0.02151910588145256, -0.02474614419043064, -0.03253588080406189,
- 0.0993131697177887, -0.03478870168328285, 0.048108745366334915, 0.021339835599064827,
- -0.033803150057792664, -0.0701373890042305, -0.06473895907402039, -0.00850063469260931,
- 0.014829208143055439, -0.027109045535326004, -0.001672967802733183,
- -0.048595283180475235, -0.01397710107266903, 0.008161578327417374, -0.02505124732851982,
- -0.10969956964254379, -0.10143525153398514, 0.1388346254825592, -0.015115607529878616,
- -0.015723923221230507, 0.02759859524667263, -0.023363720625638962, 0.04017920792102814,
- 0.01666637510061264, 0.00648730993270874, 0.03993847593665123, 0.09105603396892548,
- 0.019405929371714592, -0.013676423579454422, 0.05553708225488663, 0.024975331500172615,
- 0.03656680881977081, 0.08152489364147186, 0.4525037705898285, -0.04706931859254837,
- 0.054919566959142685, 0.1062396764755249, -0.004618905019015074, 0.02193586342036724,
- -0.08462225645780563, 0.01340689416974783, 0.0958581194281578, 0.10457174479961395,
- 0.16321879625320435, -0.014163777232170105, 0.009688342921435833, -0.05338139086961746,
- 0.054221946746110916, -0.013817757368087769, 0.0010528240818530321,
- 0.0029198203701525927, -0.07275909930467606, 0.004998358432203531, 0.07280416041612625,
- -0.044435419142246246, 0.009599882178008556, -0.004795597400516272,
- -0.049957457929849625, -0.01840335503220558, 0.07076559215784073, -0.009839831851422787,
- 0.008014066144824028, 0.01975986547768116, -0.09239605814218521, 0.051588334143161774,
- 0.07024002820253372, -0.026933444663882256, -0.11114282160997391, -0.022835882380604744,
- -0.04624033719301224, -0.06518334895372391, 0.09676515311002731, 0.01873943768441677,
- 0.02841423824429512, 0.08544352650642395, -0.020881932228803635, 0.02104920707643032,
- -0.0028775169048458338, -0.001429485622793436, 0.003363291034474969,
- 0.05520745739340782, -0.007508794777095318, 0.030367767438292503, 0.17335917055606842,
- -0.02609425224363804, 0.0034223145339637995, -0.1086791604757309, 0.051250118762254715,
- 0.12176356464624405, -0.03684564307332039, -0.012512961402535439, 0.04495585337281227,
- 0.01824170909821987, -0.005497521720826626, -0.05587786063551903, -0.07539644092321396,
- 0.03910704702138901, -0.07275819033384323, 0.125087171792984, 0.042959630489349365,
- -0.022349869832396507, -0.20027124881744385, 0.021552128717303276,
- -0.028345946222543716, 0.06602717190980911, 0.07680227607488632, -0.08327426016330719,
- 0.0648491308093071, 0.033111751079559326, -0.02799861505627632, 0.04403238371014595,
- -0.0537102036178112, 0.019949954003095627, -0.011443980038166046, 0.015323575586080551,
- 0.05851159989833832, 0.05382045730948448, -0.03412647917866707, 0.09161946922540665,
- -0.08455434441566467, 0.029458552598953247, 0.025736577808856964, -0.0587138757109642,
- -0.04040870442986488, -0.021902937442064285, 0.039669934660196304,
- -0.014821475371718407, -0.031322773545980453, 0.006282981019467115,
- -0.04029823839664459, -0.04469960555434227, -0.07090415060520172, -0.07390765845775604,
- 0.007981074042618275, -0.048810023814439774, 0.06168884038925171, -0.08106601238250732,
- -0.04995575547218323, -0.03975566849112511, -0.031451690942049026, 0.018999511376023293,
- 0.0012077668216079473, -0.006061037071049213, -0.1102798730134964, -0.04400128498673439,
- 0.007764512673020363, 0.049051541835069656, 0.013133428059518337, -0.054697614163160324,
- 0.009167133830487728, 0.08717305958271027, 0.014010882936418056, -0.014990179799497128,
- -0.05717097967863083, -0.08273966610431671, 0.025561707094311714, -0.13189756870269775,
- -0.2743191123008728, 0.047754645347595215, 0.05953960865736008, 0.040964704006910324,
- -0.011883839033544064, -0.09970614314079285, 0.03249063715338707, -0.003339046146720648,
- -0.017826318740844727, 0.033290620893239975, -0.04927612468600273, 0.001969443866983056,
- -0.0707816630601883, -0.07172507792711258, -0.008031966164708138, -0.048271581530570984,
- -0.045067980885505676, 0.024725576862692833, -0.04465232789516449, -0.08059902489185333,
- -0.08123783767223358, 0.05203637480735779, -0.012939085252583027, -0.03652271255850792,
- 0.014404399320483208, 0.042979829013347626, -0.08228924125432968, -0.04022950306534767,
- -0.021981533616781235, 0.059795476496219635, 0.04572659730911255, -0.06527695804834366,
- 0.009145651012659073, -0.007047603838145733, 0.013240634463727474, 0.07813710719347,
- -0.025733834132552147, -0.005376396235078573, -0.01429989468306303, 0.09609948098659515,
- 0.04809533804655075, 0.18775096535682678, 0.003107690019533038, -0.06925052404403687,
- 0.0086884880438447, 0.07899392396211624, 0.045499201864004135, 0.006288941949605942,
- 0.013108414597809315, -0.050888895988464355, 0.05311468243598938,
- -0.0035461026709526777, 0.10112328082323074, -0.053633421659469604,
- -0.017503295093774796, -0.01804565265774727, 0.020168721675872803, -0.03990564122796059,
- 0.00035037464112974703, 0.20423755049705505, -0.005608799867331982, 0.03660889342427254,
- 0.05150055140256882, -0.0436423122882843, -0.027628550305962563, -0.11698262393474579,
- -0.05792351812124252, -0.04541913792490959, 0.019224347546696663, -0.014837606810033321,
- -0.047187451273202896, -0.12283158302307129, -0.0360570028424263, -0.01665680855512619,
- 0.024482455104589462, 0.10220598429441452, -0.011961919255554676, 0.012493218295276165,
- -0.020292960107326508, 0.14625193178653717, 0.02309437096118927, 0.011394385248422623,
- 0.02215273678302765, 0.11617491394281387, 0.026031436398625374, 0.02330973744392395,
- -0.03317966312170029, -0.0301958117634058, 0.03409657999873161, 0.09663945436477661,
- -0.03843856230378151, 0.09820486605167389, 0.050348393619060516, 0.008925906382501125,
- -0.05306312441825867, 0.06274429708719254, -0.026681402698159218, -0.003045920515432954,
- -0.36036643385887146, -0.027874428778886795, 0.11339631676673889, 0.0025332611985504627,
- 0.06452148407697678, 0.11048586666584015, 0.018314866349101067, -0.05350252985954285,
- 0.03159865736961365, -0.07254600524902344, 0.15312497317790985, 0.012405693531036377,
- 0.0077139837667346, -0.062274690717458725, 0.01571582816541195, 0.10210272669792175,
- -0.02762800268828869, -0.000583177781663835, 0.05583452060818672, -0.1524849534034729,
- 0.029312262311577797, -0.08320312947034836, 0.12320787459611893, 0.04295094311237335,
- 0.01751699484884739, 0.09794898331165314, -0.06934578716754913, 0.06304225325584412,
- 0.09814061224460602, -0.01216844655573368, 0.056707706302404404, -0.01708567887544632,
- -0.041755322366952896, 0.09154786169528961, 0.10377872735261917, 0.08171945065259933,
- 0.0067338161170482635, 11.898242950439453, 0.07068442553281784, 0.049169767647981644,
- -0.05724748224020004, -0.048540957272052765, -0.023467613384127617, 0.05326204001903534,
- -0.10159943252801895, -0.010002046823501587, 0.1061842292547226, 0.016357608139514923,
- -0.03923295438289642, -0.025170978158712387, -0.11056507378816605,
- -0.004254536237567663, -0.023137211799621582, -0.1169637069106102,
- -0.008909335359930992, -0.0078017921186983585, -0.01459607481956482,
- -0.013622934930026531, 0.06146695837378502, 0.06659101694822311, 0.001522991107776761,
- -0.053548071533441544, 0.010812240652740002, -0.026222841814160347,
- -0.03003617376089096, 0.03405914455652237, 0.022432761266827583, 0.030146891251206398,
- -0.010453540831804276, 0.07334940135478973, -0.037526100873947144, 0.07840375602245331,
- 0.0866011381149292, 0.09416361153125763, 0.00853172317147255, 0.03147375211119652,
- 0.06617815792560577, 0.03548382967710495, 0.008123579435050488, 0.04145258292555809,
- 0.06550247222185135, 0.029424797743558884, 0.03197485953569412, 0.061864838004112244,
- 0.13210204243659973, 0.020859261974692345, 0.06111318990588188, 0.08699856698513031,
- -0.02918468788266182, 0.11904195696115494, 0.0033603215124458075, -0.049832653254270554,
- 0.004595681559294462, 0.031220044940710068, -0.07824360579252243, 0.06412438303232193,
- 0.05854438617825508, -0.04692377150058746, 0.1340750902891159, 0.0377250574529171,
- 0.04712562635540962, -0.024044567719101906, 0.01533656008541584, 0.08953054994344711,
- 0.03912121802568436, -0.18032249808311462, -0.07787463814020157, 0.009598402306437492,
- -0.1318291425704956, -0.08821272850036621, 0.05402978137135506, 0.0901157557964325,
- -0.0602920763194561, 0.06719092279672623, 0.0011151707731187344, 0.009867461398243904,
- -0.0027129221707582474, -0.00010946632392005995, 0.04347657784819603,
- -0.01955096796154976, 0.06657156348228455, 0.05380857735872269, 0.03945190832018852,
- 0.04117392748594284, 0.10406292974948883, -0.006108738481998444, -0.07542800903320312,
- -0.02040264382958412, 0.05982257053256035, -0.04128153622150421, -0.05115369334816933,
- 0.06778773665428162, -0.061000846326351166, 0.08159711211919785, -0.14156515896320343,
- 0.03893750533461571, 0.1302335113286972, -0.08718039095401764, 0.00440938351675868,
- -0.0341942273080349, 0.0613722950220108, -0.013767865486443043, 0.06162681430578232,
- -0.04596882686018944, 0.031147312372922897, -0.004839317873120308, 0.01437404565513134,
- -0.017220214009284973, 0.08239651471376419, 0.0688224732875824, 0.0013717038091272116,
- -0.009891004301607609, 0.008501384407281876, 0.019489958882331848, -0.04185771197080612,
- 0.03828328847885132, 0.032511044293642044, -0.0778316780924797, -0.03857694938778877,
- -0.032882269471883774, -0.019145403057336807, -0.0284985713660717,
- -0.022385217249393463, -0.024099621921777725, 0.007896809838712215,
- -0.05148159712553024, 0.005775343626737595, 0.030858676880598068, 0.09217102825641632,
- 0.07282860577106476, -0.03929803520441055, 0.0669742301106453, -0.018203379586338997,
- -0.034456439316272736, 0.04142364487051964, 0.0401637889444828, 0.06687996536493301,
- -0.02504185028374195, -0.0459827221930027, -0.07392784208059311, -0.14643095433712006,
- 0.03764261677861214, 0.054493919014930725, 0.07533155381679535, 0.09133196622133255,
- 0.00027016361127607524, -0.05386530980467796, -0.06338197737932205, 0.06828344613313675,
- -0.0037661560345441103, 0.025432799011468887, 0.09812967479228973,
- -0.037550825625658035, -0.02347264066338539, 0.04890595003962517, -0.0762406587600708,
- -0.02099769189953804, -0.003906579222530127, -0.03637276589870453, 0.08116521686315536,
- 0.10950452089309692, 0.02700897678732872, 0.023473352193832397, -0.004064153414219618,
- 0.032530948519706726, 0.003929681144654751, -0.05046107620000839, -0.01542013231664896,
- -0.03200316056609154, -0.05031806603074074, -0.027170535176992416, 0.024934299290180206,
- 0.09267618507146835, 0.0672098770737648, -0.08089033514261246, -0.038113854825496674,
- -0.047956109046936035
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 44,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 186,
- "similarity": 0.9980562329292297
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 5,
- "similarity": 0.9978868365287781
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 102,
- "similarity": 0.9978466033935547
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": [
- "Milind Tambe",
- "Emma Bowring",
- "Jonathan P. Pearce",
- "Pradeep Varakantham",
- "Paul Scerri",
- "David V. Pynadath"
- ],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 766,
- "source_domain": "aaai.org",
- "submitters": ["Roman Yampolskiy"],
- "title": "Electric Elves: What Went Wrong and Why",
- "url": "https://www.aaai.org/ojs/index.php/aimagazine/article/download/2123/1998"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "google",
- "name": "Google"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "google",
- "name": "Google"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "varied",
- "name": "Varied"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [
- 1356, 1355, 809, 808, 807, 805, 804, 803, 802, 801, 800, 799, 798, 796, 795, 794, 793,
- 792, 791, 790, 789, 788, 787, 785, 784, 783, 782, 781, 780
- ],
- "vector": [
- -0.0583239309489727, 0.07634779810905457, 0.02375284768640995, -0.10031669586896896,
- 0.054858673363924026, -0.05471048131585121, -0.002114412374794483, 0.054615430533885956,
- 0.05464321747422218, -0.11699852347373962, 0.007645017467439175, 0.048393286764621735,
- 0.04704548418521881, -0.05134710669517517, 0.035685647279024124, -0.08923447877168655,
- -0.11993072926998138, -0.02266663871705532, -0.020750436931848526, -0.08677385747432709,
- -0.07239777594804764, 0.020743321627378464, 0.06677406281232834, 0.11444880813360214,
- -0.05199282243847847, 0.030305663123726845, 0.09994443506002426, 0.11295781284570694,
- -0.020316552370786667, 0.07233989983797073, -0.027735071256756783, -0.04436197504401207,
- 0.10356959700584412, 0.002227521501481533, -0.007524465676397085, 0.06856036931276321,
- 0.04142434895038605, -0.006254489999264479, 0.008012100122869015, -0.011570698581635952,
- 0.04941488802433014, 0.2131940871477127, -0.015782618895173073, -0.0065625873394310474,
- 0.04453542083501816, -0.04841044917702675, 0.013558673672378063, 0.05348144844174385,
- 0.007440498098731041, 0.012188722379505634, 0.003982946742326021, 0.020864147692918777,
- -0.04354214668273926, 0.029201285913586617, -0.09260309487581253, 0.01812029629945755,
- 0.05011720210313797, 0.009385459125041962, 0.04748139530420303, -0.09857829660177231,
- -0.01924038492143154, -0.2160971611738205, -0.1016879677772522, -0.09564381092786789,
- 0.10290425270795822, -0.07621581852436066, -0.059893395751714706, -0.007373756263405085,
- 0.007301753852516413, 0.06901992857456207, 0.06046801432967186, -0.05247899144887924,
- -0.005405450239777565, 0.021863050758838654, 0.009127541445195675,
- -0.0028946739621460438, 0.012422886677086353, 0.20832349359989166, -0.11246828734874725,
- 0.017699096351861954, 0.12466829270124435, -0.11181925982236862, 0.4303632080554962,
- 0.011582529172301292, -0.009811509400606155, -0.055562566965818405, 0.1034870371222496,
- 0.03430884703993797, 0.055860958993434906, 0.04780324175953865, -0.0269645806401968,
- 0.04888635128736496, -0.05248551070690155, -0.01141171995550394, 0.07010592520236969,
- 0.021700704470276833, -0.030045749619603157, 0.03430153429508209, -0.034163106232881546,
- -0.08334411680698395, -0.011997388675808907, -0.0365983322262764, 0.1256292313337326,
- 0.08784196525812149, -0.05059404298663139, 0.002242522081360221, 0.06309820711612701,
- -0.05092829093337059, 0.05628310143947601, -0.04834504798054695, 0.03331886604428291,
- 0.0011515256483107805, 0.10729313641786575, -0.003291815984994173, 0.042835742235183716,
- -0.03359904885292053, 0.021910667419433594, 0.05958159640431404, 0.056003838777542114,
- 0.037722133100032806, -0.028227103874087334, 0.055811263620853424, 0.06484105437994003,
- -0.06376593559980392, -0.03730868548154831, -0.06139584630727768, -0.04795145243406296,
- -0.04735460877418518, -0.028402607887983322, 0.018973613157868385, -0.02608872577548027,
- -0.15820609033107758, -0.007217254023998976, 0.07281208038330078, 0.023441340774297714,
- -0.033133115619421005, 0.01008118037134409, -0.06411094218492508, 0.033933840692043304,
- -0.02095012366771698, -0.044138435274362564, 0.07024870812892914, 0.02347615174949169,
- 0.046339962631464005, 0.14635775983333588, 0.07040857523679733, -0.033969465643167496,
- -0.04871467128396034, -0.00436996528878808, -0.026322979480028152, 0.10684175789356232,
- -0.09799021482467651, -0.04459996521472931, 0.005204990040510893, 0.015320864506065845,
- 0.6989296078681946, 0.0712224692106247, 0.14573778212070465, -0.018424637615680695,
- 0.0008400487131439149, 0.16706696152687073, 0.024151325225830078, 0.07265964150428772,
- -0.05010351538658142, -0.06005246564745903, 0.021020544692873955, -0.07410217821598053,
- -0.058512620627880096, 0.016983557492494583, 0.0423225536942482, 0.12339512258768082,
- 0.020585879683494568, 0.08750353008508682, -0.03025210089981556, -0.0830877423286438,
- -0.04068863019347191, 0.050176952034235, -0.002715408569201827, -0.1109922006726265,
- -0.035071227699518204, 0.04083889350295067, 0.08652491867542267, -0.08116650581359863,
- -0.019211625680327415, -0.04292161017656326, 0.03896893188357353, -0.009980850853025913,
- 0.05293809995055199, -0.029040655121207237, 0.03573022037744522, 0.03144871070981026,
- 0.04295150190591812, 0.002009158954024315, -0.09136160463094711, -0.03589702397584915,
- 0.09335491806268692, -0.015191382728517056, 0.001271988032385707, 0.06781359016895294,
- -0.09392158687114716, 0.029945407062768936, 0.007631493732333183, 0.11135952174663544,
- -0.0967215821146965, -0.002368074608966708, -0.003229188034310937, -0.02819697931408882,
- 0.06809259951114655, 0.0072049531154334545, -0.08858437091112137, -0.04560592398047447,
- 0.06202332675457001, 0.012561826966702938, 0.044966407120227814, 0.03827729821205139,
- -0.025869468227028847, 0.06159929186105728, 0.07891698181629181, -0.008978325873613358,
- -0.02697881869971752, 0.0491473525762558, 0.03959972783923149, -0.019360030069947243,
- -0.01574665494263172, 0.04380273446440697, -0.018285401165485382, 0.0006693935138173401,
- -0.00016231289191637188, 0.05444964021444321, 0.00800259131938219, -0.04879264906048775,
- 0.030810076743364334, 0.016368357464671135, -0.009415478445589542, 0.08991134911775589,
- -0.05778087303042412, -0.04417960345745087, -0.018507394939661026,
- -0.041763655841350555, 0.025789007544517517, -0.03607109934091568, 0.08526171743869781,
- 0.07484977692365646, 0.06996528804302216, 0.053165268152952194, 0.03539225459098816,
- 0.051641497761011124, 0.002543607959523797, 0.031489260494709015, 0.05554287135601044,
- -0.03783750534057617, -0.05047876387834549, -0.02332623302936554, 0.025525426492094994,
- 0.08028612285852432, 0.05650952085852623, -0.06537649780511856, -0.0026821603532880545,
- 0.012450368143618107, -0.04888392984867096, -0.06486141681671143, -0.02685437723994255,
- 0.018303822726011276, 0.05713137239217758, -0.02101072296500206, -0.07982311397790909,
- -0.0709119513630867, 0.03184865415096283, 0.05443989112973213, -0.05683109536767006,
- -0.02722773887217045, -0.09576278924942017, -0.0021429273765534163,
- -0.023846156895160675, 0.07371807098388672, -0.013725664466619492, 0.02766450121998787,
- 0.029547659680247307, -0.08127561956644058, 0.011858392506837845, 0.014688518829643726,
- -0.05228573456406593, -0.03334668651223183, -0.04984027519822121, -0.037269338965415955,
- 0.020759250968694687, 0.0005880639073438942, -0.0175795778632164, 0.026958482339978218,
- 0.030840283259749413, 0.04717307537794113, 0.023924695327878, -0.039075542241334915,
- 0.0635945200920105, -0.03905117139220238, 0.0072171674109995365, 0.09818071126937866,
- -0.017876146361231804, 0.0334353931248188, -0.03579660505056381, -0.05289153754711151,
- -0.05662040784955025, -0.00034657050855457783, -0.04728713631629944,
- 0.02741473913192749, -0.01638624258339405, 0.023186134174466133, -0.0547468438744545,
- -0.03795019909739494, 0.05448786914348602, -0.07962725311517715, -0.0752859115600586,
- -0.09163155406713486, 0.07972925156354904, 0.017589174211025238, 0.0019114890601485968,
- 0.03259941563010216, -0.06515084952116013, 0.02818981744349003, -0.03476235270500183,
- 0.006593762896955013, 0.05231622979044914, 0.04319433122873306, -0.021797344088554382,
- 0.020591124892234802, 0.05933845788240433, -0.005230604205280542, 0.006576078943908215,
- 0.07374555617570877, 0.41928404569625854, -0.15701769292354584, 0.09989411383867264,
- 0.11131052672863007, -0.002570956712588668, 0.053031180053949356, -0.02016005851328373,
- 0.07431212067604065, 0.09094497561454773, 0.13412122428417206, 0.09559836983680725,
- -0.016144298017024994, -0.010301739908754826, -0.09976066648960114, 0.07666295021772385,
- 0.012466829270124435, 0.029934179037809372, 0.008886832743883133, -0.07948119193315506,
- 0.0016601212555542588, 0.03850897401571274, -0.049740858376026154, 0.012017982080578804,
- -0.01104570273309946, -0.04669971764087677, 0.042894043028354645, 0.04049833491444588,
- 0.04890822619199753, -0.02348402701318264, 0.022054530680179596, -0.030370473861694336,
- 0.06000026315450668, 0.0018321806564927101, 0.031203890219330788, -0.10164299607276917,
- 0.03574648126959801, -0.08515141159296036, -0.07809650152921677, 0.09909687936306,
- -0.01618432253599167, 0.043472882360219955, 0.054778892546892166, -0.039677370339632034,
- 0.04559648409485817, -0.05722871050238609, -0.04590374603867531, 0.03230749070644379,
- 0.03719674050807953, 0.004445538856089115, 0.05739010125398636, 0.16481716930866241,
- -0.04833808168768883, -0.040214262902736664, -0.07912172377109528, 0.06115607172250748,
- 0.13121385872364044, -0.001287926803342998, 0.03694193810224533, -0.025791749358177185,
- -0.017427148297429085, 0.010004648938775063, -0.042026981711387634, -0.0831950455904007,
- 0.00074970000423491, -0.04123828560113907, 0.0628759041428566, 0.020745936781167984,
- -0.008832540363073349, -0.139244943857193, -0.0008183202589862049, -0.03481106832623482,
- 0.02203190140426159, 0.09752927720546722, -0.03108803741633892, 0.016210688278079033,
- -0.006814632099121809, 0.004784475080668926, -0.024289358407258987,
- -0.10795539617538452, -0.0006811130442656577, -0.04060192406177521, 0.04932820424437523,
- 0.031219083815813065, 0.05029300972819328, -0.03691364824771881, 0.07166947424411774,
- -0.10114138573408127, 0.07784631103277206, 0.022862039506435394, -0.032448865473270416,
- 0.04091426730155945, -0.034237124025821686, 0.03622523695230484, 0.00655715586617589,
- -0.05296405032277107, -0.009675135836005211, -0.018146375194191933,
- -0.04786355420947075, -0.08835013210773468, -0.048177726566791534,
- -0.014918984845280647, -0.0884660854935646, 0.08153469860553741, -0.05183451622724533,
- -0.033104509115219116, 0.01481244619935751, -0.0132627347484231, -0.017720505595207214,
- 0.021801713854074478, 0.03269567713141441, -0.1407649666070938, -0.018765581771731377,
- -0.008823277428746223, 0.04358533024787903, -0.02439325861632824, -0.03582092002034187,
- 0.014975587837398052, 0.07398924231529236, 0.05120762437582016, -0.020305689424276352,
- 0.012075480073690414, -0.0507345125079155, 0.05512705445289612, -0.09564738720655441,
- -0.444428414106369, 0.07734251022338867, 0.007351309526711702, 0.04591050744056702,
- 0.0236941147595644, -0.0873134583234787, 0.04371093586087227, 0.017495134845376015,
- -0.07911422103643417, 0.07454593479633331, -0.060992367565631866, 0.04239640012383461,
- -0.002651064656674862, -0.05797690525650978, -0.03040621243417263, -0.03684064373373985,
- -0.05406341329216957, 0.06067512929439545, -0.05553014576435089, -0.07178593426942825,
- -0.11864302307367325, 0.024808399379253387, -0.005286235827952623,
- -0.0038511105813086033, 0.013241730630397797, -0.018744049593806267,
- -0.0848192647099495, -0.0449204184114933, 0.04569360613822937, 0.08238866180181503,
- 0.017787568271160126, -0.06028418242931366, 0.008728987537324429, 0.07672974467277527,
- -0.017182456329464912, 0.10820601880550385, 0.0080215809866786, -0.03845708444714546,
- -0.11337650567293167, 0.09359205514192581, 0.05969128757715225, 0.18429379165172577,
- -0.014665897935628891, 0.017378171905875206, 0.014822431840002537, 0.14818544685840607,
- 0.02099584974348545, 0.03492029383778572, -0.03473218157887459, -0.0034853992983698845,
- 0.03042743355035782, -0.0036704642698168755, 0.07935883849859238, -0.07182598859071732,
- -0.01653665490448475, -0.062503881752491, -0.026035048067569733, -0.057911187410354614,
- -0.04216622933745384, 0.21541213989257812, 0.010760386474430561, 0.028158551082015038,
- 0.01197577454149723, -0.06550814211368561, -0.009279375895857811, -0.08881570398807526,
- -0.08214057236909866, -0.04143032059073448, -0.0013809031806886196,
- 0.0061515201814472675, -0.053451888263225555, -0.10325607657432556,
- -0.011842557229101658, -0.0245339497923851, 0.01944660022854805, 0.10652317851781845,
- -0.028361333534121513, 0.05179243162274361, -0.027323175221681595, 0.11594142019748688,
- 0.03457791730761528, 0.023852581158280373, 0.03926177695393562, 0.13283728063106537,
- 0.008145117200911045, 0.018141640350222588, -0.05077230557799339, -0.07556445151567459,
- -0.00769769586622715, 0.14084988832473755, -0.04540863633155823, 0.09485511481761932,
- 0.03351541608572006, -0.05986141785979271, -0.03716928884387016, 0.0005724882939830422,
- -0.012831214815378189, 0.03651195392012596, -0.4562945067882538, -0.016332954168319702,
- 0.13332805037498474, -0.01445481926202774, -0.004158488940447569, 0.11442704498767853,
- 0.040424615144729614, -0.034254059195518494, -0.02783127874135971, -0.06794317066669464,
- 0.13265661895275116, 0.02338051237165928, 0.09356676787137985, -0.10199011117219925,
- 0.0035101890098303556, 0.06811289489269257, -0.044366057962179184,
- -0.024007823318243027, 0.03451348468661308, -0.2364635467529297, -0.0024419771507382393,
- -0.038049738854169846, 0.14745374023914337, 0.03788640350103378, 0.030010854825377464,
- 0.1068764179944992, -0.07268021255731583, 0.027869414538145065, 0.01723564602434635,
- 0.019023962318897247, 0.02524765580892563, 0.015420785173773766, -0.026155909523367882,
- 0.1145787462592125, 0.04782191663980484, 0.09008517861366272, -0.039652250707149506,
- 12.081854820251465, 0.04428890720009804, 0.05952196568250656, -0.07568235695362091,
- 0.03450890630483627, -0.06526459008455276, 0.01887073740363121, -0.07174462080001831,
- 0.042922165244817734, 0.12215179949998856, -0.00931611843407154, -0.028269324451684952,
- -0.05627728998661041, -0.10861660540103912, -0.001013164292089641,
- -0.024093007668852806, -0.027367321774363518, -0.03500298410654068, 0.04679897800087929,
- -0.05216898024082184, -0.032044418156147, 0.043181125074625015, 0.06685109436511993,
- 0.004158153664320707, -0.07117198407649994, 0.0009541434701532125,
- 0.0008910692995414138, -0.02274441346526146, 0.023469148203730583, 0.04841956868767738,
- 0.009065656922757626, 0.03981095924973488, 0.05178411304950714, 0.004460307769477367,
- 0.04315229132771492, 0.013956580311059952, 0.07015695422887802, 0.057537470012903214,
- 0.003000881988555193, 0.05510329827666283, 0.029892949387431145, 0.013930809684097767,
- 0.02850169502198696, 0.05126352608203888, 0.06696340441703796, 0.01592056266963482,
- 0.07171344757080078, 0.09316848963499069, 0.0042236135341227055, 0.09834069758653641,
- 0.07049626111984253, -0.012478730641305447, 0.11129382252693176, 0.017209718003869057,
- -0.006698611192405224, 0.06068187579512596, 0.008016723208129406, -0.06991399079561234,
- 0.07834211736917496, 0.03667312487959862, -0.06465666741132736, 0.12190795689821243,
- 0.02082311362028122, 0.11032352596521378, -0.01740935817360878, 0.08672694861888885,
- 0.1016053706407547, 0.04834076017141342, -0.16330191493034363, -0.07289158552885056,
- 0.02838192507624626, -0.08478428423404694, -0.08841649442911148, 0.08376847952604294,
- 0.07073361426591873, -0.039157941937446594, 0.06357550621032715, -0.04420804604887962,
- 0.03950782120227814, -0.01776949129998684, -0.02590482123196125, 0.019825251772999763,
- -0.00758854765444994, -0.011377435177564621, 0.05747823417186737, 0.014796925708651543,
- 0.05487300455570221, 0.10733100771903992, -0.0058649214915931225, -0.10354910790920258,
- -0.06583394855260849, 0.12399421632289886, -0.018267180770635605, -0.05825726315379143,
- 0.013559024780988693, -0.0482512041926384, 0.0007665845914743841, -0.15361244976520538,
- 0.07210659980773926, 0.13240492343902588, -0.1048898994922638, 0.012936057522892952,
- -0.04181229695677757, 0.05733196809887886, -0.00006835498061263934,
- 0.014574872329831123, -0.06360124051570892, 0.06008593738079071, -0.021434858441352844,
- 0.03683650866150856, -0.06263218820095062, 0.07251394540071487, 0.08017139136791229,
- -0.06740578263998032, 0.04351266846060753, 0.06396527588367462, 0.0014311136910691857,
- -0.019761569797992706, 0.02716689556837082, 0.009569008834660053, -0.09533033519983292,
- -0.045593298971652985, -0.024516399949789047, -0.01968487538397312,
- -0.031025627627968788, -0.05083772540092468, -0.014690381474792957, 0.06210116297006607,
- -0.0516316182911396, -0.012670201249420643, 0.028709134086966515, 0.02928747981786728,
- 0.03705889359116554, -0.0396328903734684, 0.04580851271748543, -0.0725395530462265,
- -0.032775506377220154, 0.04132767394185066, 0.04660909250378609, 0.05203854292631149,
- -0.04843256622552872, -0.052112046629190445, -0.042507242411375046,
- -0.12852530181407928, 0.01715487241744995, 0.11751465499401093, 0.06559264659881592,
- 0.02590910531580448, 0.0315767377614975, -0.05854315683245659, -0.04683033749461174,
- 0.08982754498720169, 0.0021733620669692755, 0.026310304179787636, 0.03737572208046913,
- -0.07968960702419281, -0.030998073518276215, 0.12756113708019257, -0.03550834208726883,
- 0.0022725865710526705, -0.011507086455821991, -0.05331844463944435, 0.09405618906021118,
- 0.04913664981722832, 0.07385323941707611, 0.026548700407147408, 0.03556482121348381,
- 0.015057628974318504, 0.02439328096807003, 0.008602573536336422, 0.027543790638446808,
- -0.021300552412867546, -0.1165667176246643, -0.0828874260187149, 0.02271486632525921,
- 0.1028006300330162, 0.06928200274705887, -0.09511034935712814, -0.02297850511968136,
- -0.031009137630462646
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 45,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 19,
- "similarity": 0.9990838766098022
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 15,
- "similarity": 0.9989175200462341
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 24,
- "similarity": 0.9988256692886353
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["BBC News"],
- "epoch_date_downloaded": 1605225600,
- "epoch_date_modified": 1607299200,
- "epoch_date_submitted": 1607299200,
- "flag": null,
- "report_number": 1356,
- "source_domain": "bbc.com",
- "submitters": ["AIAAIC", "Thomas Giallella (CSET)"],
- "title": "Google ordered to change autocomplete function in Japan",
- "url": "https://www.bbc.com/news/technology-17510651"
- },
- {
- "__typename": "Report",
- "authors": ["Courtney Palis"],
- "epoch_date_downloaded": 1605225600,
- "epoch_date_modified": 1607299200,
- "epoch_date_submitted": 1607299200,
- "flag": null,
- "report_number": 1355,
- "source_domain": "huffingtonpost.co.uk",
- "submitters": ["AIAAIC", "Thomas Giallella (CSET)"],
- "title": "Google Instant's Allegedly 'Anti-Semitic' Results Lead To Lawsuit In France",
- "url": "https://www.huffingtonpost.co.uk/entry/google-instant-anti-semitic-france_n_1465430?ri18n=true\u0026guccounter=1"
- },
- {
- "__typename": "Report",
- "authors": ["Ariel Bogle", "Nurphoto", "Stephen Brashear"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 809,
- "source_domain": "abc.net.au",
- "submitters": ["Roman Yampolskiy"],
- "title": "Defamation via Google search case to be discussed by High Court",
- "url": "https://www.abc.net.au/news/science/2018-03-20/google-search-engine-defamation-high-court/9562666"
- },
- {
- "__typename": "Report",
- "authors": ["TrippleJ"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 808,
- "source_domain": "abc.net.au",
- "submitters": ["Roman Yampolskiy"],
- "title": "You can now sue Google over defamatory 'innuendo' of search results",
- "url": "https://www.abc.net.au/triplej/programs/hack/you-can-now-sue-google-over-defamatory-search-results/9865482"
- },
- {
- "__typename": "Report",
- "authors": ["Australian Associated Press"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 807,
- "source_domain": "theguardian.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Man wins right to sue Google for defamation over image search results",
- "url": "https://www.theguardian.com/technology/2018/jun/13/man-wins-right-to-sue-google-for-defamation-over-image-search-results"
- },
- {
- "__typename": "Report",
- "authors": ["Kristin Bergman"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 805,
- "source_domain": "dmlp.org",
- "submitters": ["Roman Yampolskiy"],
- "title": "Defamation Case Attacks Google Autocomplete Results",
- "url": "http://www.dmlp.org/blog/2012/defamation-case-attacks-google-autocomplete-results"
- },
- {
- "__typename": "Report",
- "authors": ["Tim Hornyak"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 804,
- "source_domain": "cnet.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Google loses autocomplete defamation suit in Japan",
- "url": "https://www.cnet.com/news/google-loses-autocomplete-defamation-suit-in-japan/"
- },
- {
- "__typename": "Report",
- "authors": ["Barry Sookman"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 803,
- "source_domain": "barrysookman.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Google liable for defamation through search and autocomplete features: Duffy v Google",
- "url": "http://www.barrysookman.com/2015/11/05/google-liable-for-defamation-through-search-and-autocomplete-features-duffy-v-google/"
- },
- {
- "__typename": "Report",
- "authors": ["Phys Org"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 802,
- "source_domain": "phys.org",
- "submitters": ["Roman Yampolskiy"],
- "title": "Australia court paves way for Google 'underworld' defamation case",
- "url": "https://phys.org/news/2018-06-australia-court-paves-google-underworld.html"
- },
- {
- "__typename": "Report",
- "authors": ["Associated Press"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 801,
- "source_domain": "startribune.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Australian court rules man can sue Google for defamation",
- "url": "http://www.startribune.com/australian-court-rules-man-can-sue-google-for-defamation/485346951/"
- },
- {
- "__typename": "Report",
- "authors": ["Karen Sweeney"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 800,
- "source_domain": "thewest.com.au",
- "submitters": ["Roman Yampolskiy"],
- "title": "Australian man allowed to sue Google for defamation after taking case to High Court",
- "url": "https://thewest.com.au/technology/google/australian-man-allowed-to-sue-google-for-defamation-after-taking-case-to-high-court-ng-b88865134z"
- },
- {
- "__typename": "Report",
- "authors": ["Philip Willan"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 799,
- "source_domain": "computerworld.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Google guilty of defamation, Italian court rules",
- "url": "https://www.computerworld.com/article/2507021/google-guilty-of-defamation--italian-court-rules.html"
- },
- {
- "__typename": "Report",
- "authors": ["Reuters"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 798,
- "source_domain": "businessinsider.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Hong Kong Court Rules Tycoon Can Sue Google For Defamation Over Search Results",
- "url": "https://www.businessinsider.com/r-hong-kong-court-rules-tycoon-can-sue-google-for-defamation-2014-06/?r=AU\u0026IR=T"
- },
- {
- "__typename": "Report",
- "authors": ["Hannah Marshall", "Daisy Von Schoenberg"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 796,
- "source_domain": "mondaq.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Defamation Update: Google under fire again",
- "url": "http://www.mondaq.com/australia/x/715180/Libel+Defamation/Defamation+Update+Google+under+fire+again"
- },
- {
- "__typename": "Report",
- "authors": ["Michael Douglas"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 795,
- "source_domain": "theconversation.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Protecting Google from defamation is worth seriously considering",
- "url": "http://theconversation.com/protecting-google-from-defamation-is-worth-seriously-considering-98252"
- },
- {
- "__typename": "Report",
- "authors": ["Wikipedia Editors"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 794,
- "source_domain": "en.wikipedia.org",
- "submitters": ["Roman Yampolskiy"],
- "title": "Judgement of the German Federal Court of Justice on Google's autocomplete function",
- "url": "https://en.wikipedia.org/wiki/Judgement_of_the_German_Federal_Court_of_Justice_on_Google%27s_autocomplete_function"
- },
- {
- "__typename": "Report",
- "authors": ["Out-Law News"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 793,
- "source_domain": "out-law.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Google would not be held liable for defamatory 'autocomplete' suggestions in UK, says expert",
- "url": "https://www.out-law.com/en/articles/2012/november/google-unlikely-to-be-held-liable-for-defamatory-autocomplete-suggestions-in-uk-says-expert/"
- },
- {
- "__typename": "Report",
- "authors": ["Mark Schaub", "King", "Wood Mallesons"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 792,
- "source_domain": "lexology.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Google held to be a publisher of defamatory autocomplete and related search terms",
- "url": "https://www.lexology.com/library/detail.aspx?g=b9306482-ed22-460d-8b19-66370dac27ef"
- },
- {
- "__typename": "Report",
- "authors": ["Mike Masnick"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 791,
- "source_domain": "techdirt.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Google Found Liable For Autocomplete Suggestions In Italy",
- "url": "https://www.techdirt.com/articles/20110405/03003513781/google-found-liable-autocomplete-suggestions-italy.shtml"
- },
- {
- "__typename": "Report",
- "authors": ["Peter Bert"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 790,
- "source_domain": "disputeresolutiongermany.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Federal Supreme Court: Google Liable for Defamatory Autocomplete Search Terms",
- "url": "http://www.disputeresolutiongermany.com/2013/05/federal-supreme-court-google-liable-for-defamatory-autocomplete-search-results/"
- },
- {
- "__typename": "Report",
- "authors": ["Ian Bloemendal", "Nick Josey"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 789,
- "source_domain": "claytonutz.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "When auto-complete goes wrong: High Court gives green light to defamation action for Google search results",
- "url": "https://www.claytonutz.com/knowledge/2018/june/when-auto-complete-goes-wrong-high-court-gives-green-light-to-defamation-action-for-google-search-results"
- },
- {
- "__typename": "Report",
- "authors": ["Spiegel Online", "Hamburg", "Stefan Niggemeier"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 788,
- "source_domain": "spiegel.de",
- "submitters": ["Roman Yampolskiy"],
- "title": "Google Autocomplete: Former German First Lady Defamation Case",
- "url": "http://www.spiegel.de/international/zeitgeist/google-autocomplete-former-german-first-lady-defamation-case-a-856820.html"
- },
- {
- "__typename": "Report",
- "authors": ["Gail Sullivan"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 787,
- "source_domain": "washingtonpost.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Can Google be sued for a mere search suggestion? A Hong Kong judge says yes.",
- "url": "https://www.washingtonpost.com/news/morning-mix/wp/2014/08/07/can-google-be-sued-for-a-search-suggestion-a-hong-kong-judge-says-yes/?noredirect=on\u0026utm_term=.7636b418f60d"
- },
- {
- "__typename": "Report",
- "authors": ["Associated Press"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 785,
- "source_domain": "cbsnews.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Australian to sue Google for defamation over search results",
- "url": "https://www.cbsnews.com/news/australia-google-defamation-lawsuit-search-results-link-to-melbourne-criminal/"
- },
- {
- "__typename": "Report",
- "authors": ["Stuart Lau"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 784,
- "source_domain": "scmp.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Hong Kong tycoon can sue Google over 'autocomplete' search suggestions, court rules",
- "url": "https://www.scmp.com/news/hong-kong/article/1567521/hong-kong-court-rules-tycoon-can-sue-google-over-autocomplete-search"
- },
- {
- "__typename": "Report",
- "authors": ["Matt Mcgee"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 783,
- "source_domain": "searchengineland.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Irish Hotel Sues Google For Defamation Over Autocomplete Suggestion",
- "url": "https://searchengineland.com/irish-hotel-sues-google-for-defamation-over-autocomplete-suggestion-81492"
- },
- {
- "__typename": "Report",
- "authors": ["David Meyer"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 782,
- "source_domain": "zdnet.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Google loses autocomplete defamation case in Italy",
- "url": "https://www.zdnet.com/article/google-loses-autocomplete-defamation-case-in-italy/"
- },
- {
- "__typename": "Report",
- "authors": ["Dan Virgillito"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 781,
- "source_domain": "searchenginepeople.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "How to Deal with Google Suggest Defamation",
- "url": "https://www.searchenginepeople.com/blog/how-to-deal-with-google-suggest-defamation.html"
- },
- {
- "__typename": "Report",
- "authors": ["Posted On"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 780,
- "source_domain": "nickdiakopoulos.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Algorithmic Defamation: The Case of the Shameless Autocomplete",
- "url": "http://www.nickdiakopoulos.com/2013/08/06/algorithmic-defamation-the-case-of-the-shameless-autocomplete/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "nest-labs",
- "name": "Nest Labs"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "nest-labs",
- "name": "Nest Labs"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "fire-victims",
- "name": "Fire Victims"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [815, 814, 813, 812, 811, 810],
- "vector": [
- -0.06933341175317764, 0.11558941751718521, -0.012040962465107441, -0.11692499369382858,
- 0.0877867341041565, 0.00082428939640522, -0.010358869098126888, 0.022739097476005554,
- 0.0640544667840004, -0.13698436319828033, -0.012779275886714458, 0.048605214804410934,
- 0.0140754459425807, -0.09184817224740982, 0.013119988143444061, -0.10563033074140549,
- -0.059820085763931274, -0.04774364456534386, -0.05211067572236061, -0.11917368322610855,
- -0.0788409411907196, -0.017512915655970573, 0.00879188533872366, 0.14466315507888794,
- -0.015090725384652615, 0.022673271596431732, 0.08569344133138657, 0.10748784989118576,
- -0.0008058176026679575, 0.003993334714323282, -0.008808947168290615,
- -0.06320682168006897, 0.12905606627464294, 0.004290195181965828, 0.01647251658141613,
- 0.10100097209215164, 0.004356769844889641, -0.0321366973221302, -0.046386003494262695,
- -0.02624424733221531, 0.029293658211827278, 0.20571164786815643, -0.020126815885305405,
- -0.034531593322753906, 0.04232994094491005, -0.027064627036452293, 0.013875688426196575,
- 0.043416086584329605, 0.002703963778913021, 0.003745567984879017, 0.0075244419276714325,
- 0.050620824098587036, -0.02340804785490036, 0.01033145934343338, -0.09254317730665207,
- 0.03278016671538353, 0.017479533329606056, 0.014616149477660656, 0.03801706060767174,
- -0.06696614623069763, -0.07408201694488525, -0.21215777099132538, -0.05469788238406181,
- -0.02625194750726223, 0.07978832721710205, -0.08370418101549149, -0.04801356792449951,
- 0.031995177268981934, 0.0013915925519540906, 0.08281222730875015, 0.08283788710832596,
- -0.04727907106280327, -0.048855010420084, 0.04564426839351654, -0.02345597930252552,
- -0.026156380772590637, -0.01943146251142025, 0.21144063770771027, -0.08327870070934296,
- 0.007869274355471134, 0.12014522403478622, -0.1010465919971466, 0.4032752513885498,
- 0.001833974733017385, -0.01580476202070713, -0.050424303859472275, 0.053941428661346436,
- 0.04811624065041542, 0.012637498788535595, 0.04402125999331474, -0.02159254439175129,
- 0.011452379636466503, -0.05960487946867943, -0.01631452701985836, 0.07617241144180298,
- 0.022657977417111397, -0.03214273229241371, -0.06965415924787521, 0.00614912761375308,
- -0.07001912593841553, 0.022002408280968666, -0.051780056208372116, 0.0676959976553917,
- 0.08594045042991638, -0.02577284164726734, 0.0028286941815167665, 0.04599905014038086,
- -0.038577593863010406, 0.059879060834646225, -0.07239972800016403, 0.03928888961672783,
- -0.03299185261130333, 0.028399011120200157, 0.006284879520535469, 0.04929475858807564,
- -0.05742795765399933, 0.010611779987812042, 0.04453986883163452, 0.08764103800058365,
- 0.0037600386422127485, -0.02563500590622425, 0.05069851875305176, 0.07583046704530716,
- -0.10529878735542297, -0.056630101054906845, -0.0276320893317461, -0.051110971719026566,
- -0.01477716863155365, -0.04229755327105522, 0.059629905968904495, -0.049488142132759094,
- -0.22266697883605957, 0.03473607450723648, 0.0883929431438446, -0.034795112907886505,
- -0.018982931971549988, -0.0052412995137274265, -0.08808191865682602,
- 0.045422837138175964, 0.013159067369997501, -0.050552863627672195, 0.02856353484094143,
- 0.04700145125389099, 0.03369970992207527, 0.09304099529981613, 0.04598185047507286,
- -0.055478114634752274, -0.025308579206466675, 0.023146621882915497,
- -0.020556433126330376, 0.10896923393011093, -0.1298423558473587, -0.04424237087368965,
- 0.026952946558594704, -0.028120553120970726, 0.6804212927818298, 0.14894364774227142,
- 0.17454403638839722, 0.011583478190004826, -0.030787155032157898, 0.15733365714550018,
- 0.017180299386382103, 0.06387216597795486, -0.0730791687965393, -0.08007889986038208,
- 0.018714025616645813, -0.07516726106405258, -0.04138144850730896, 0.048365939408540726,
- -0.016667773947119713, 0.10494940727949142, 0.04375171288847923, 0.07041023671627045,
- -0.016578434035182, -0.08677201718091965, -0.010754096321761608, 0.04997621104121208,
- 0.01819474622607231, -0.12578053772449493, -0.04527081549167633, 0.031530678272247314,
- 0.09444397687911987, -0.08997899293899536, -0.012091630138456821, -0.07176361232995987,
- 0.006722055841237307, -0.025133170187473297, 0.049625054001808167,
- -0.036308903247117996, 0.028662828728556633, 0.027916522696614265, 0.07188820838928223,
- 0.013382178731262684, -0.09260428696870804, -0.026532292366027832, 0.10791623592376709,
- -0.021481692790985107, -0.007804932072758675, 0.05431370064616203, -0.09781405329704285,
- 0.030183156952261925, -0.003843075828626752, 0.15449152886867523, -0.11780345439910889,
- 0.0026927879080176353, 0.010055050253868103, -0.036792248487472534, 0.04119895026087761,
- 0.00782348308712244, -0.04271456226706505, -0.06550759822130203, 0.10633900761604309,
- 0.039782773703336716, 0.09026923030614853, 0.0586642362177372, -0.04163249954581261,
- 0.056065503507852554, 0.07227586954832077, -0.022249609231948853, -0.022252844646573067,
- 0.060325395315885544, 0.04471250995993614, -0.010369471274316311, -0.034206971526145935,
- 0.009684250690042973, 0.048442065715789795, 0.03655356913805008, 0.0037111351266503334,
- 0.07691805809736252, -0.012271006591618061, -0.049436524510383606, 0.00929632131010294,
- 0.0630868673324585, 0.019067881628870964, 0.09762988239526749, -0.01667654700577259,
- -0.05910347402095795, -0.043139878660440445, -0.03836911544203758, 0.02326863817870617,
- -0.046427711844444275, 0.10014998912811279, 0.10201580077409744, 0.05333753302693367,
- 0.019590886309742928, 0.005411902908235788, 0.037802863866090775, 0.019293194636702538,
- 0.021522244438529015, 0.06399375200271606, -0.027470609173178673, -0.04085448756814003,
- -0.008291455917060375, -0.008600070141255856, 0.003318829694762826,
- -0.00964890792965889, -0.0831274762749672, -0.012628993950784206, -0.03948681429028511,
- -0.04658450558781624, -0.11330205202102661, -0.07299529761075974, 0.0004554981424007565,
- 0.02258019708096981, -0.07420112192630768, -0.11177689582109451, -0.06467921286821365,
- 0.05013400688767433, 0.10230059176683426, -0.0006903366302140057,
- -0.0046448479406535625, -0.09823068231344223, 0.01448859740048647, -0.02107774280011654,
- 0.05741754174232483, 0.008979502134025097, -0.018353568390011787,
- -0.0074940393678843975, -0.06610812991857529, 0.023378588259220123,
- -0.015469744801521301, -0.031590286642313004, -0.08390773087739944,
- -0.06979616731405258, -0.015755027532577515, 0.005229737143963575, 0.012288488447666168,
- -0.014570094645023346, 0.01636822707951069, 0.030396802350878716, 0.044642940163612366,
- -0.017530614510178566, -0.02368789352476597, 0.051980871707201004, -0.02664157934486866,
- 0.011605544947087765, 0.07532947510480881, -0.03618931397795677, 0.01990257389843464,
- -0.0034909320529550314, -0.07105281203985214, -0.01243587862700224,
- 0.011869102716445923, -0.048211902379989624, 0.05861159786581993, -0.024682650342583656,
- 0.030332446098327637, -0.05547475814819336, 0.012536827474832535, 0.07202049344778061,
- -0.04240480437874794, -0.09539682418107986, -0.052813585847616196, 0.08790702372789383,
- -0.013643731363117695, -0.009453852660953999, 0.03547939285635948, -0.08407796174287796,
- 0.06644216179847717, 0.00038926125853322446, 0.0009768829913809896, 0.01926058530807495,
- 0.07688136398792267, -0.04536173865199089, 0.07411029189825058, 0.049423087388277054,
- 0.02257242612540722, 0.0019130163127556443, 0.04001511260867119, 0.40278276801109314,
- -0.19205518066883087, 0.09278348833322525, 0.10569944232702255, 0.016497384756803513,
- 0.07483083754777908, -0.04486624523997307, 0.05375106260180473, 0.07167845219373703,
- 0.12524166703224182, 0.10272244364023209, -0.010839994996786118, 0.0053654327057302,
- -0.06622781604528427, 0.09904215484857559, -0.008919388987123966, 0.04333781823515892,
- -0.005364442244172096, -0.0633484497666359, 0.007855651900172234, 0.024638675153255463,
- -0.03399472311139107, -0.00820078980177641, -0.04118901491165161, -0.04800368472933769,
- 0.0029634430538862944, 0.028138108551502228, 0.04140591248869896, -0.023468270897865295,
- -0.00013690411287825555, -0.03626064956188202, 0.023367494344711304,
- 0.07676009088754654, 0.010645766742527485, -0.09026629477739334, 0.02702716924250126,
- -0.04293200746178627, -0.10299117118120193, 0.07112610340118408, -0.02413353882730007,
- 0.048510223627090454, 0.06112731620669365, -0.042950380593538284, 0.03437422588467598,
- 0.020862286910414696, -0.0628604143857956, 0.023435130715370178, 0.06791273504495621,
- 0.042362380772829056, 0.08458677679300308, 0.1803128719329834, -0.03662348911166191,
- -0.0719379261136055, -0.05714518949389458, 0.05891231819987297, 0.08959439396858215,
- -0.05560362711548805, 0.017562659457325935, -0.019091859459877014,
- 0.0025073906872421503, -0.007579149212688208, -0.027329841628670692,
- -0.08482339233160019, -0.01497588399797678, -0.05073678866028786, 0.047224100679159164,
- 0.013611785136163235, -0.04898861050605774, -0.13954253494739532, 0.0045607187785208225,
- -0.044187936931848526, 0.02167663536965847, 0.1587418168783188, -0.06642547994852066,
- 0.07362443953752518, 0.038511987775564194, -0.04548385739326477, -0.010640949010848999,
- -0.07120901346206665, 0.009831968694925308, -0.04883791506290436, 0.0183388851583004,
- 0.05875900387763977, 0.06629364937543869, -0.023909417912364006, 0.07810377329587936,
- -0.081154465675354, 0.013890824280679226, 0.047723639756441116, -0.016547514125704765,
- 0.02486562542617321, -0.046537384390830994, 0.021571464836597443, -0.01789277233183384,
- -0.04948318377137184, 0.014836632646620274, -0.027164781466126442,
- -0.053295787423849106, -0.07129684835672379, -0.07460483908653259,
- -0.040620122104883194, -0.07379326969385147, 0.04433348402380943, -0.09803435951471329,
- 0.0010848246747627854, -0.02972365915775299, -0.02772364765405655,
- -0.004283272195607424, -0.0063943080604076385, 0.004543390590697527,
- -0.13882535696029663, 0.024212541058659554, 0.02217002399265766, 0.05481596663594246,
- -0.010891596786677837, 0.01372679602354765, -0.010671377182006836, 0.1022610291838646,
- 0.039933547377586365, -0.030422506853938103, 0.006691185291856527, -0.04449300095438957,
- 0.03955940157175064, -0.10173282027244568, -0.40105128288269043, 0.06088054180145264,
- 0.026145607233047485, 0.0349917858839035, 0.017436131834983826, -0.076580710709095,
- 0.03490162640810013, 0.009011078625917435, -0.028019307181239128, 0.08310305327177048,
- -0.07515429705381393, 0.04737892374396324, -0.0419534407556057, -0.055699530988931656,
- -0.03721638396382332, -0.08616644144058228, -0.01166493073105812, 0.035592611879110336,
- -0.043024446815252304, -0.05453603342175484, -0.1219254732131958, 0.027689887210726738,
- -0.025407589972019196, 0.005830993875861168, -0.0036702475044876337,
- -0.0010154604678973556, -0.08818993717432022, -0.04193427786231041, 0.01676691137254238,
- 0.04903251305222511, 0.032005783170461655, -0.06593818217515945, 0.0030720673967152834,
- 0.05486602708697319, 0.009548704139888287, 0.13846467435359955, -0.010658073239028454,
- -0.0003142977657262236, -0.09388614445924759, 0.1076619029045105, 0.0353013314306736,
- 0.1862165778875351, -0.024288294836878777, 0.02079896442592144, -0.007362410891801119,
- 0.10671383887529373, 0.05272681638598442, -0.00043766145245172083,
- -0.007091591600328684, -0.005743483081459999, 0.016175316646695137,
- -0.013325880281627178, 0.07021570205688477, -0.09561508148908615, -0.01748398318886757,
- -0.012847460806369781, 0.00501222861930728, 0.022273316979408264, 0.007067307364195585,
- 0.1604815572500229, 0.018742254003882408, 0.05676674470305443, 0.039905644953250885,
- -0.06611758470535278, 0.02604897879064083, -0.06640110164880753, -0.08521246910095215,
- -0.0038176255766302347, 0.014459382742643356, 0.018491093069314957,
- -0.04770129919052124, -0.13379259407520294, -0.03618058189749718, 0.006585281807929277,
- -0.014690235257148743, 0.12826696038246155, -0.03145667538046837, 0.05409950017929077,
- -0.05578141286969185, 0.11582336574792862, 0.008950003422796726, 0.025487691164016724,
- 0.043344467878341675, 0.10103216022253036, 0.010865031741559505, 0.000793303654063493,
- -0.03440973162651062, -0.08625722676515579, 0.0484948605298996, 0.10929390043020248,
- -0.034505292773246765, 0.111203633248806, 0.06374820321798325, -0.02683345042169094,
- -0.06766524165868759, 0.037996795028448105, -0.03958772495388985, 0.02015564776957035,
- -0.4412682354450226, -0.014103625901043415, 0.11859697103500366, 0.04341944679617882,
- 0.016018962487578392, 0.12407327443361282, 0.05022228881716728, -0.047351058572530746,
- -0.07799487560987473, -0.05574173107743263, 0.11330807209014893, -0.0008328614640049636,
- 0.056175023317337036, -0.11063612252473831, 0.03578825667500496, 0.06925410032272339,
- -0.0366952158510685, -0.004716011229902506, 0.06832655519247055, -0.19971132278442383,
- 0.0007930800202302635, 0.008404680527746677, 0.13073311746120453, 0.053808003664016724,
- 0.01641983725130558, 0.10090918093919754, -0.06722734123468399, 0.04651829972863197,
- 0.00847152341157198, 0.011104435659945011, 0.07457094639539719, 0.006718982011079788,
- -0.015552855096757412, 0.1328389197587967, 0.07964342087507248, 0.10762513428926468,
- -0.021451683714985847, 11.975508689880371, 0.07713431864976883, 0.022269153967499733,
- -0.08688714355230331, 0.028447872027754784, -0.03516147658228874, 0.04617631435394287,
- -0.0900484099984169, 0.03807419538497925, 0.12654930353164673, -0.0033632346894592047,
- -0.03668214753270149, -0.029698044061660767, -0.12609869241714478, 0.02624421752989292,
- -0.03509698063135147, -0.058622684329748154, -0.07256041467189789, 0.04902362823486328,
- -0.03754347935318947, -0.04176397994160652, 0.052717942744493484, 0.049597468227148056,
- 0.02400107868015766, -0.07685212045907974, 0.05242878571152687, 0.016500266268849373,
- -0.02591579221189022, -0.001617355621419847, -0.004786443896591663,
- 0.00008586522744735703, 0.0026326244696974754, 0.049106646329164505,
- -0.02403261326253414, 0.07520674914121628, 0.056451503187417984, 0.07875937223434448,
- 0.04518472030758858, 0.025196239352226257, 0.05584748089313507, 0.00024277379270642996,
- 0.0009057281422428787, 0.021680744364857674, 0.032086681574583054, 0.06402526050806046,
- 0.02664216049015522, 0.032338697463274, 0.14459793269634247, 0.018113460391759872,
- 0.11448469012975693, 0.09029901027679443, -0.0067566088400781155, 0.09413105249404907,
- 0.039389241486787796, -0.007294278126209974, 0.05870489403605461, -0.006453962996602058,
- -0.05514940246939659, 0.0845804214477539, 0.0903996005654335, -0.0627012774348259,
- 0.1065472960472107, 0.03880389407277107, 0.12428160756826401, -0.0029611270874738693,
- 0.06848414987325668, 0.07155236601829529, 0.10671167820692062, -0.11193756014108658,
- -0.10963702201843262, 0.029442191123962402, -0.10615824908018112, -0.07470989972352982,
- 0.10398871451616287, 0.11786647886037827, -0.04868572577834129, 0.06745684891939163,
- -0.017608826979994774, 0.04442437365651131, -0.01993693597614765, 0.017274821177124977,
- 0.038662202656269073, -0.01259139645844698, 0.00970092136412859, 0.061167776584625244,
- 0.031381506472826004, 0.04402465745806694, 0.09038522839546204, 0.028442608192563057,
- -0.0990322008728981, -0.06959163397550583, 0.08563294261693954, -0.018742503598332405,
- -0.06313756853342056, 0.012357957661151886, -0.047108735889196396, 0.033528465777635574,
- -0.1282712072134018, 0.054012443870306015, 0.09475121647119522, -0.06135016307234764,
- -0.009111795574426651, -0.04188697040081024, 0.06270421296358109, -0.005760734900832176,
- 0.038804035633802414, -0.07311081141233444, 0.052890878170728683, 0.0155404731631279,
- 0.05939314886927605, -0.02041010744869709, 0.07604881376028061, 0.06395629793405533,
- -0.056008052080869675, 0.024964967742562294, 0.05622751638293266, -0.0191545020788908,
- -0.046410154551267624, 0.04260355606675148, 0.03543620556592941, -0.06983017176389694,
- -0.014614495448768139, -0.038815487176179886, -0.06469158083200455,
- 0.0010105702094733715, -0.03357004001736641, 0.002933644689619541,
- -0.004052283708006144, -0.07475163787603378, -0.013208630494773388, 0.051462322473526,
- 0.057691555470228195, 0.08952852338552475, -0.005650538485497236, 0.08610540628433228,
- -0.06346812099218369, -0.06061697006225586, 0.04991355538368225, 0.02861586958169937,
- 0.07164261490106583, -0.06138134002685547, -0.01564203016459942, -0.056261833757162094,
- -0.11623015999794006, 0.057315438985824585, 0.08454471081495285, 0.08343153446912766,
- 0.06290974467992783, -0.0004923122469335794, -0.06099323555827141, -0.05499599501490593,
- 0.08141418546438217, 0.037261053919792175, 0.018782785162329674, 0.04706689715385437,
- -0.03291353955864906, -0.014703959226608276, 0.08463293313980103, -0.03569339960813522,
- 0.038709916174411774, 0.026626907289028168, -0.05412403866648674, 0.09584813565015793,
- 0.14374227821826935, 0.020225943997502327, 0.044074371457099915, 0.01106609869748354,
- -0.007528374437242746, 0.0028737206012010574, -0.018070898950099945,
- 0.015082869678735733, -0.030135253444314003, -0.12703289091587067, -0.05822893604636192,
- 0.06425187736749649, 0.09416773915290833, 0.051354438066482544, -0.12759706377983093,
- -0.00799210462719202, -0.007380632217973471
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 46,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 34,
- "similarity": 0.9989476203918457
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 17,
- "similarity": 0.9989345073699951
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 32,
- "similarity": 0.9989058375358582
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["United States Consumer Product Safety Commission"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 815,
- "source_domain": "cpsc.gov",
- "submitters": ["Roman Yampolskiy"],
- "title": "Nest Labs Recalls to Repair Nest Protect Smoke CO Alarms",
- "url": "https://www.cpsc.gov/Recalls/2014/Nest-Labs-Recalls-to-Repair-Nest-Protect-Smoke-CO-Alarms/#remedy"
- },
- {
- "__typename": "Report",
- "authors": ["Dave Altavilla"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 814,
- "source_domain": "forbes.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "When The IOT Fails: Nest Recalls Over 400K Smoke Detectors",
- "url": "https://www.forbes.com/sites/davealtavilla/2014/05/22/when-the-iot-fails-nest-recalls-over-400k-smoke-detectors/#ce536174477d"
- },
- {
- "__typename": "Report",
- "authors": ["Apple On Amazon"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 813,
- "source_domain": "9to5mac.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Is the Nest Protect fire alarm giving users false alarms?",
- "url": "https://9to5mac.com/2014/01/20/is-the-nest-protect-fire-alarm-giving-users-false-alarms/"
- },
- {
- "__typename": "Report",
- "authors": ["Harry Mccracken"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 812,
- "source_domain": "time.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Nest is Recalling Its Smoke Detector (But Don't Send Yours Back)",
- "url": "http://time.com/108171/nest-recall/"
- },
- {
- "__typename": "Report",
- "authors": ["Adriana Lee"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 811,
- "source_domain": "readwrite.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Why Nest’s Smoke Detector Fail Is Actually A Win For Everyone",
- "url": "https://readwrite.com/2014/04/04/nest-smoke-detector-fail/"
- },
- {
- "__typename": "Report",
- "authors": ["Aaron Tilley"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 810,
- "source_domain": "forbes.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Google's Nest Stops Selling Its Smart Smoke Alarm For Now Due To Faulty Feature",
- "url": "https://www.forbes.com/sites/aarontilley/2014/04/03/googles-nest-stops-selling-its-smart-smoke-alarm-for-now"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "linkedin",
- "name": "LinkedIn"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "linkedin",
- "name": "LinkedIn"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "women",
- "name": "Women"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [837, 836, 835, 834, 833, 832, 831, 830, 829],
- "vector": [
- -0.05579095333814621, 0.06835123896598816, 0.00849970243871212, -0.10419658571481705,
- 0.08693142235279083, -0.03185485675930977, 0.01617303304374218, 0.07771268486976624,
- 0.04125673323869705, -0.12382379919290543, -0.027492443099617958, 0.03852780908346176,
- 0.022350678220391273, -0.025715209543704987, 0.026128074154257774, -0.04636600986123085,
- -0.1054493859410286, -0.02116546779870987, 0.008349630981683731, -0.10438434779644012,
- -0.0750168040394783, 0.010826515033841133, -0.02952347882091999, 0.11524481326341629,
- -0.0356210358440876, 0.008921753615140915, 0.0656869113445282, 0.09821146726608276,
- -0.028294725343585014, 0.06359870731830597, -0.018441805616021156, -0.07407087087631226,
- 0.10796339064836502, -0.011147303506731987, 0.02241945080459118, 0.06048201024532318,
- 0.027342574670910835, -0.020593412220478058, -0.04885309562087059, 0.02533390372991562,
- 0.046659599989652634, 0.18156056106090546, -0.007577131036669016, 0.041831713169813156,
- 0.0487617626786232, -0.029181228950619698, 0.0340556725859642, 0.04927420616149902,
- -0.004400629084557295, 0.018691934645175934, -0.016433991491794586,
- 0.024407299235463142, -0.043246135115623474, 0.005604148376733065, -0.08892233669757843,
- 0.023782091215252876, 0.02033710852265358, -0.02320575900375843, 0.04578454792499542,
- -0.0658457800745964, -0.04499378427863121, -0.2033454030752182, -0.10102624446153641,
- -0.06918343156576157, 0.10937801748514175, -0.057883188128471375, -0.03923540562391281,
- 0.010858123190701008, 0.006487247068434954, 0.05456448718905449, 0.06593748182058334,
- -0.04462413117289543, -0.011336489580571651, 0.016318470239639282,
- -0.018719946965575218, -0.02516121417284012, -0.011711816303431988, 0.1960257887840271,
- -0.08761236816644669, 0.003859551390632987, 0.10078399628400803, -0.09078218787908554,
- 0.3641476035118103, 0.03175356984138489, -0.007693801540881395, -0.012873773463070393,
- 0.06707531213760376, 0.03212691843509674, 0.042538538575172424, 0.0509016253054142,
- 0.016494132578372955, 0.05777593329548836, -0.046391718089580536, 0.013151492923498154,
- 0.052966222167015076, 0.033168975263834, -0.022468185052275658, -0.03359358757734299,
- 0.0021220610942691565, -0.07399812340736389, 0.011636771261692047, -0.04024507850408554,
- 0.1278722733259201, 0.0850297212600708, -0.040554240345954895, 0.019929850473999977,
- 0.040238168090581894, -0.04290321469306946, 0.049301471561193466, -0.03649960458278656,
- 0.015981299802660942, 0.0006806980818510056, 0.10695356130599976, 0.0065304613672196865,
- 0.026206200942397118, -0.019566349685192108, 0.012225081212818623, 0.07045173645019531,
- 0.06940644979476929, 0.04541192203760147, 0.024624155834317207, 0.07887285202741623,
- 0.0788387656211853, -0.06474523991346359, -0.06185523048043251, -0.025055598467588425,
- -0.0480956956744194, -0.032291121780872345, -0.03081679716706276, 0.03749047592282295,
- -0.06032876297831535, -0.1601213663816452, 0.010167013853788376, 0.024902578443288803,
- -0.05517607554793358, -0.028505248948931694, 0.014216748997569084, -0.07512790709733963,
- 0.04965297877788544, -0.01470644399523735, -0.03687684237957001, 0.058851465582847595,
- 0.002524510957300663, 0.05611417815089226, 0.11598524451255798, 0.056054048240184784,
- -0.024952394887804985, -0.05048592388629913, -0.021598778665065765,
- -0.07623081654310226, 0.08823298662900925, -0.10225484520196915, -0.02965291403234005,
- 0.020206604152917862, -0.009977658279240131, 0.6624951958656311, 0.07816658914089203,
- 0.14579208195209503, 0.023311564698815346, -0.0503273643553257, 0.16009439527988434,
- -0.02265782654285431, 0.08137738704681396, -0.010418219491839409, -0.02881365269422531,
- 0.04525109380483627, -0.09037034958600998, -0.042927488684654236, 0.020619137212634087,
- 0.049776945263147354, 0.08694484829902649, 0.025388358160853386, 0.07913614809513092,
- -0.02181939408183098, -0.11111174523830414, -0.025395946577191353, 0.04460372403264046,
- 0.02529715932905674, -0.13276267051696777, -0.05819660425186157, 0.03978933393955231,
- 0.08928532898426056, -0.08281974494457245, 0.013721626251935959, -0.06550362706184387,
- 0.05606849864125252, -0.004849660210311413, 0.034748516976833344, -0.005375330336391926,
- 0.007822426967322826, 0.049912575632333755, 0.013598239049315453, -0.02399495802819729,
- -0.0716981589794159, -0.026429323479533195, 0.06747689098119736, -0.002410418353974819,
- -0.028526578098535538, 0.04544941708445549, -0.05457695946097374, 0.049265168607234955,
- -0.012518847361207008, 0.10834667086601257, -0.11143215745687485, 0.028902968391776085,
- -0.012451269663870335, -0.00409230962395668, 0.03652456775307655, 0.019775016233325005,
- -0.06587871164083481, -0.06811672449111938, 0.0893387496471405, -0.02236286550760269,
- 0.03986432030797005, -0.0012757213553413749, -0.06429571658372879, 0.06476245820522308,
- 0.04634480178356171, -0.025545723736286163, -0.04758523032069206, 0.07607188820838928,
- 0.03349415957927704, -0.0318465530872345, -0.02205645851790905, 0.04250626266002655,
- 0.005280433222651482, -0.0031052359845489264, -0.003241555765271187,
- 0.07086814939975739, -0.0044199880212545395, -0.05004051700234413, 0.05981976538896561,
- 0.016123853623867035, 0.006603171583265066, 0.07834947109222412, -0.07754924893379211,
- -0.04970591515302658, -0.018202951177954674, -0.012396838515996933,
- 0.007671259343624115, -0.03086802363395691, 0.07635481655597687, 0.09751801937818527,
- 0.06276693940162659, 0.028606172651052475, 0.0432535856962204, 0.06522706896066666,
- 0.006830687168985605, -0.00652291439473629, 0.07142212986946106, -0.032738879323005676,
- -0.03568560257554054, -0.019000975415110588, -0.0017735513392835855,
- 0.035515815019607544, 0.024347664788365364, -0.0661984235048294, -0.028175124898552895,
- -0.011590664274990559, 0.0034413698595017195, -0.07571598887443542,
- -0.07109280675649643, 0.031471263617277145, 0.01719599962234497, -0.04402506351470947,
- -0.09632398188114166, -0.06931370496749878, -0.001475540455430746, 0.08725856989622116,
- -0.052584439516067505, -0.019906429573893547, -0.10046260803937912,
- 0.0062585026025772095, 0.005973624065518379, 0.05893915146589279, 0.019234664738178253,
- 0.013231811113655567, 0.0002589962678030133, -0.07986552268266678, 0.04361216723918915,
- 0.024535877630114555, -0.000041661784052848816, -0.04829924926161766,
- -0.07296513020992279, -0.05229538679122925, 0.012838806957006454, -0.00532516511157155,
- -0.031648021191358566, 0.022226441651582718, 0.043381769210100174, 0.0481816790997982,
- 0.002967802109196782, -0.024327460676431656, 0.04176630079746246, -0.035937294363975525,
- -0.006695886608213186, 0.06073804572224617, -0.027287447825074196, 0.02010352537035942,
- -0.0006483891629613936, -0.09138420224189758, -0.016415702179074287,
- -0.05987260118126869, -0.03380811586976051, 0.05144927278161049, -0.009684447199106216,
- -0.006157593335956335, -0.02754586935043335, -0.013834717683494091, 0.0202537402510643,
- -0.026650231331586838, -0.07795491814613342, -0.08412725478410721, 0.0894036740064621,
- -0.021433614194393158, 0.02742866612970829, 0.036285072565078735, -0.06992693990468979,
- 0.0630183070898056, -0.033545490354299545, -0.013093061745166779, 0.05802950635552406,
- 0.05447589233517647, 0.012341557070612907, 0.025646382942795753, 0.058179132640361786,
- -0.020059693604707718, -0.005271832458674908, 0.047195035964250565, 0.44890064001083374,
- -0.19746991991996765, 0.05376153066754341, 0.09837593138217926, 0.01004899200052023,
- 0.06818175315856934, -0.007371323183178902, 0.08741649240255356, 0.08308769762516022,
- 0.1306723803281784, 0.10321255773305893, -0.044450920075178146, -0.009418702684342861,
- -0.08653736859560013, 0.09228181838989258, 0.013373864814639091, 0.059048108756542206,
- -0.007388264872133732, -0.06916481256484985, 0.010618980973958969,
- 0.0008306251838803291, -0.06496737152338028, -0.015515531413257122, 0.00937257893383503,
- -0.048241451382637024, 0.0190330371260643, 0.05665953829884529, 0.05539660528302193,
- -0.04243013262748718, 0.04257456585764885, -0.06264578551054001, -0.0009460292058065534,
- 0.009566773660480976, 0.01248184684664011, -0.09853693097829819, 0.037071987986564636,
- -0.06402352452278137, -0.05340418592095375, 0.013350493274629116, -0.021969271823763847,
- 0.05464642494916916, 0.06861484050750732, 0.004914398770779371, 0.027917811647057533,
- -0.03928626328706741, -0.04310532286763191, 0.021383807063102722, 0.026652000844478607,
- 0.015155008994042873, 0.06806188821792603, 0.1686660647392273, -0.032547760754823685,
- -0.05004633590579033, -0.05758935958147049, 0.047585342079401016, 0.11467352509498596,
- 0.012876219116151333, 0.04899613559246063, -0.021399743854999542, -0.023935740813612938,
- 0.01918872818350792, -0.012009948492050171, -0.09314631670713425, -0.021325839683413506,
- -0.03885743394494057, 0.08440828323364258, 0.033019132912158966, -0.008996261283755302,
- -0.19329828023910522, -0.009895280003547668, -0.05072816088795662, 0.0416569858789444,
- 0.12111739069223404, -0.07918374985456467, 0.039808087050914764, -0.03427596390247345,
- -0.036249082535505295, 0.021206354722380638, -0.0942590981721878,
- -0.0033319485373795033, -0.002962789498269558, 0.025944015011191368,
- 0.03268479183316231, 0.06386866420507431, -0.07245543599128723, 0.07734329253435135,
- -0.09601423889398575, 0.029184063896536827, 0.02465841919183731, -0.058378927409648895,
- -0.02032163180410862, 0.014581899158656597, 0.039687737822532654, -0.029500283300876617,
- -0.05445614829659462, 0.013605003245174885, -0.01920199580490589, -0.03054947592318058,
- -0.04515073448419571, -0.07420000433921814, -0.018684396520256996, -0.0652891993522644,
- 0.05630539357662201, -0.06934496760368347, 0.01117083802819252, -0.0042640105821192265,
- -0.008188799023628235, -0.01802007108926773, 0.013016510754823685, 0.008260244503617287,
- -0.11412078887224197, 0.017318880185484886, 0.014369810931384563, 0.06166733801364899,
- -0.040344588458538055, -0.033040136098861694, 0.006924979388713837, 0.09430211782455444,
- 0.020458891987800598, -0.02749449387192726, -0.0072668385691940784,
- -0.026029933243989944, 0.08239074051380157, -0.09083487838506699, -0.5188938975334167,
- 0.054701752960681915, 0.04490502178668976, 0.02899678610265255, 0.02474876306951046,
- -0.060537297278642654, 0.05209888517856598, 0.015284697525203228, -0.053551800549030304,
- 0.07657810300588608, -0.05413635075092316, 0.0385955385863781, 0.017574189230799675,
- -0.0409998744726181, 0.02173192985355854, -0.061916060745716095, -0.011630918830633163,
- 0.04884084686636925, -0.02259548380970955, -0.06487386673688889, -0.10640675574541092,
- 0.021417362615466118, 0.015272902324795723, 0.012281106784939766, 0.0006755457725375891,
- 0.005233576521277428, -0.06102218106389046, -0.04756701737642288, 0.04604123532772064,
- 0.07983473688364029, 0.027384227141737938, -0.06426969915628433, 0.018804248422384262,
- 0.06810170412063599, 0.00958727952092886, 0.10229764878749847, 0.027535609900951385,
- -0.005086467135697603, -0.10521947592496872, 0.06620405614376068, 0.046292468905448914,
- 0.18839746713638306, 0.003389792051166296, 0.015150759369134903, 0.008522603660821915,
- 0.13458091020584106, 0.06218557804822922, 0.03511229529976845, -0.03229484334588051,
- -0.016964983195066452, -0.003539918689057231, -0.006272928789258003,
- 0.06045558676123619, -0.05497884750366211, -0.018807901069521904, -0.04257592931389809,
- 0.0006524407071992755, -0.05554281175136566, -0.03162165731191635, 0.23820917308330536,
- 0.0073462557047605515, 0.038431111723184586, 0.025380011647939682,
- -0.038470908999443054, 0.04045872017741203, -0.09592752903699875, -0.10590878874063492,
- -0.028966320678591728, -0.002418182324618101, -0.012281876057386398,
- -0.033204831182956696, -0.0794200599193573, -0.023003488779067993,
- -0.0035608315374702215, 0.004444479010999203, 0.10447059571743011, -0.03633309155702591,
- 0.018758635967969894, -0.01967240497469902, 0.11748895049095154, 0.026982543990015984,
- 0.04877021908760071, 0.06387555599212646, 0.09236160665750504, 0.01975071243941784,
- 0.02679269388318062, -0.03172049671411514, -0.08407749980688095, -0.03250822797417641,
- 0.13335224986076355, -0.019860971719026566, 0.11765733361244202, 0.061604514718055725,
- -0.0692610889673233, -0.020083684474229813, 0.013464314863085747, 0.011383702978491783,
- 0.030893296003341675, -0.5022273659706116, -0.02688606083393097, 0.08204618841409683,
- -0.009452125057578087, -0.01059950701892376, 0.10584205389022827, 0.02055709809064865,
- -0.06261912733316422, -0.045600660145282745, -0.08118441700935364, 0.1259697526693344,
- -0.022935234010219574, 0.08576691150665283, -0.08462951332330704, -0.014689424075186253,
- 0.08657138049602509, -0.030051112174987793, -0.02608521841466427, 0.04965963587164879,
- -0.20123738050460815, -0.0026977600064128637, -0.006874794606119394,
- 0.14042365550994873, -0.019677655771374702, 0.035911303013563156, 0.11193682253360748,
- -0.0494360588490963, 0.013151152059435844, 0.02077658474445343, 0.03238100931048393,
- 0.06481077522039413, 0.0005581666482612491, -0.012413863092660904, 0.09128120541572571,
- 0.09730570763349533, 0.08469162881374359, -0.03356853872537613, 11.843295097351074,
- 0.023276299238204956, 0.03800515457987785, -0.10582592338323593, 0.01476407889276743,
- -0.03785454481840134, 0.00835626944899559, -0.08094242215156555, 0.06641300022602081,
- 0.11060817539691925, -0.009622804820537567, -0.0040811714716255665,
- -0.04713683947920799, -0.07419073581695557, 0.014859851449728012, -0.03478778898715973,
- -0.054579008370637894, -0.07328823208808899, 0.05569354072213173, -0.05703669786453247,
- -0.024319728836417198, 0.056690335273742676, 0.052650824189186096, 0.03933294117450714,
- -0.05923178419470787, 0.016541864722967148, -0.007083588279783726, 0.022070586681365967,
- 0.019776737317442894, 0.017070911824703217, 0.019667504355311394, 0.02488204836845398,
- 0.0771249532699585, 0.030264483764767647, 0.08180379867553711, 0.044080719351768494,
- 0.03955003619194031, 0.033797744661569595, 0.02648969367146492, 0.06329980492591858,
- -0.005688586737960577, -0.004282044712454081, 0.0076774414628744125,
- 0.038519490510225296, 0.07454221695661545, 0.04294666647911072, 0.06012740358710289,
- 0.11974521726369858, 0.013775150291621685, 0.08721533417701721, 0.09282432496547699,
- -0.02036874182522297, 0.08937110751867294, 0.013927008025348186, -0.0068897344172000885,
- 0.06842058897018433, 0.009012855589389801, -0.06480704993009567, 0.06293753534555435,
- -0.005770795047283173, -0.054180435836315155, 0.12248126417398453, 0.021700935438275337,
- 0.1023007184267044, -0.03760068118572235, 0.07726173102855682, 0.09574122726917267,
- 0.05078183114528656, -0.08571336418390274, -0.08144082129001617, 0.040870584547519684,
- -0.11225888133049011, -0.08479298651218414, 0.05148904025554657, 0.07872002571821213,
- -0.03373907878994942, 0.03271856904029846, -0.0328221432864666, 0.0384453684091568,
- 0.030937502160668373, 0.00486329011619091, 0.03189387917518616, -0.027613138779997826,
- 0.004552014637738466, 0.04605013504624367, 0.00037915693246759474, 0.053159914910793304,
- 0.13519367575645447, -0.014306063763797283, -0.08227476477622986, -0.05994357541203499,
- 0.10688145458698273, -0.0040179770439863205, -0.06293395906686783, 0.026225797832012177,
- -0.07601039111614227, -0.0031682278495281935, -0.16293013095855713, 0.09235906600952148,
- 0.1323910653591156, -0.10520336031913757, -0.0017060459358617663, -0.04443588852882385,
- 0.06748659163713455, 0.012461858801543713, 0.017772488296031952, -0.05467160418629646,
- 0.03132002055644989, -0.0006684965337626636, 0.03601691499352455, -0.022803839296102524,
- 0.022844834253191948, 0.06434193253517151, -0.051271528005599976, 0.0032991329208016396,
- 0.04108507186174393, -0.03295079246163368, -0.03216806799173355, 0.03957972675561905,
- -0.0018546730279922485, -0.0662037804722786, -0.01890520006418228, -0.04243403673171997,
- -0.03530481085181236, -0.008123804815113544, -0.02733626402914524, 0.011459080502390862,
- 0.04546673968434334, -0.04556290805339813, -0.005064947530627251, 0.04427114129066467,
- 0.05420675128698349, 0.08018680661916733, 0.014837916940450668, 0.05984272435307503,
- -0.034847505390644073, -0.006818858440965414, 0.028346337378025055, 0.05987732112407684,
- 0.07325316220521927, -0.06122760474681854, -0.036973826587200165, -0.04828755185008049,
- -0.14066296815872192, 0.023929469287395477, 0.08296828716993332, 0.052851855754852295,
- 0.024381237104535103, 0.030754337087273598, -0.08244141191244125, -0.020428532734513283,
- 0.1165611743927002, 0.04362902417778969, 0.003569777123630047, 0.016643308103084564,
- -0.04690367728471756, -0.04029947146773338, 0.09108327329158783, -0.016944939270615578,
- 0.0036214275751262903, -0.014731986448168755, -0.14489397406578064, 0.10406436026096344,
- 0.08855674415826797, 0.034487318247556686, 0.016993708908557892, 0.003671887330710888,
- 0.046829450875520706, 0.03724748641252518, 0.03228249400854111, 0.04083997756242752,
- -0.01818261295557022, -0.08578577637672424, -0.07158118486404419, 0.019114213064312935,
- 0.08897839486598969, 0.05557917058467865, -0.11449143290519714, -0.008882647380232811,
- -0.009105820208787918
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 47,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 19,
- "similarity": 0.9990886449813843
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 16,
- "similarity": 0.9988589286804199
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 18,
- "similarity": 0.9988450407981873
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Erica Schwiegershausen"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 837,
- "source_domain": "thecut.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "LinkedIn Denies Gender-Bias Problem",
- "url": "https://www.thecut.com/2016/09/linkedin-denies-gender-bias-problem.html"
- },
- {
- "__typename": "Report",
- "authors": ["Bella Cacciatore", "Christopher Rosa", "De Elizabeth", "Maggie Mallo"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 836,
- "source_domain": "glamour.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Bye Bye, Gender Bias! LinkedIn Will No Longer Ask Users If They Meant to Search for a Man",
- "url": "https://www.glamour.com/story/bye-bye-gender-bias-linkedin-will-no-longer-ask-users-if-they-meant-to-search-for-a-man"
- },
- {
- "__typename": "Report",
- "authors": ["Ashley Rodriguez"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 835,
- "source_domain": "qz.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "LinkedIn’s search algorithm apparently favored men until this week",
- "url": "https://qz.com/775597/linkedins-lnkd-search-algorithm-apparently-favored-men-until-this-week/"
- },
- {
- "__typename": "Report",
- "authors": ["Matt Day"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 834,
- "source_domain": "startribune.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Tech companies work toward website searches free of bias",
- "url": "http://www.startribune.com/how-linkedin-s-search-engine-may-reflect-a-gender-bias/392462301/"
- },
- {
- "__typename": "Report",
- "authors": ["Ryan O'Hare"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 833,
- "source_domain": "dailymail.co.uk",
- "submitters": ["Roman Yampolskiy"],
- "title": "LinkedIn investigation claims searches for female professionals end up suggesting MEN",
- "url": "https://www.dailymail.co.uk/sciencetech/article-3779895/Is-LinkedIn-sexist-Investigation-claims-searches-female-professionals-end-suggesting-MEN-instead.html"
- },
- {
- "__typename": "Report",
- "authors": ["Samantha Cooney"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 832,
- "source_domain": "time.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "LinkedIn Tweaks Search Engine After Gender Bias Allegations",
- "url": "http://time.com/4484530/linkedin-gender-bias-search/"
- },
- {
- "__typename": "Report",
- "authors": ["Chris Baraniuk"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 831,
- "source_domain": "bbc.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "LinkedIn denies gender bias claim over site search",
- "url": "https://www.bbc.com/news/technology-37306828"
- },
- {
- "__typename": "Report",
- "authors": ["Tim Sandle"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 830,
- "source_domain": "digitaljournal.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Does LinkedIn have a gender bias?",
- "url": "http://www.digitaljournal.com/tech-and-science/technology/does-linkedin-have-a-gender-bias/article/475181"
- },
- {
- "__typename": "Report",
- "authors": ["Staff"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 829,
- "source_domain": "stuff.co.nz",
- "submitters": ["Roman Yampolskiy"],
- "title": "LinkedIn's search engine may reflect a gender bias",
- "url": "https://www.stuff.co.nz/technology/digital-living/83943126/linkedins-search-engine-may-reflect-a-gender-bias"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "new-zealand",
- "name": "New Zealand"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "new-zealand",
- "name": "New Zealand"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "asian-people",
- "name": "Asian People"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [
- 863, 862, 860, 859, 858, 857, 855, 854, 853, 851, 850, 849, 848, 847, 846, 845, 844,
- 843, 842, 840, 839, 838
- ],
- "vector": [
- -0.1078345999121666, 0.05169582739472389, 0.029017198830842972, -0.15026608109474182,
- 0.10974077880382538, -0.06707081198692322, -0.020677892491221428, 0.06386199593544006,
- 0.0703982263803482, -0.13621853291988373, 0.01913733221590519, 0.04412103816866875,
- 0.03793657571077347, -0.10445735603570938, 0.019248483702540398, -0.1124424934387207,
- -0.08095754683017731, -0.037720877677202225, -0.051798559725284576,
- -0.08224299550056458, -0.075697161257267, 0.012454431504011154, 0.06823493540287018,
- 0.09937934577465057, -0.081606924533844, 0.00148923066444695, 0.09112575650215149,
- 0.07754084467887878, 0.001608178485184908, 0.02732818014919758, -0.04362350329756737,
- -0.06721895188093185, 0.1016940176486969, -0.000052836669055977836,
- 0.013025438413023949, 0.07901840656995773, 0.027374178171157837, 0.006863127928227186,
- -0.042062945663928986, -0.0012716582277789712, 0.024446284398436546,
- 0.18122853338718414, 0.048595670610666275, -0.030014127492904663, 0.06391104310750961,
- -0.05016094446182251, 0.03655383735895157, 0.06525614857673645, 0.007503488566726446,
- 0.007706314325332642, 0.0204071793705225, 0.028931332752108574, -0.06192891672253609,
- 0.020210864022374153, -0.10451915115118027, 0.05835589021444321, 0.024141909554600716,
- 0.013584788888692856, 0.0675918385386467, -0.11380834877490997, 0.0373573862016201,
- -0.21389807760715485, -0.09283483773469925, -0.09445018321275711, 0.0874585434794426,
- -0.07188430428504944, -0.040662702172994614, 0.008612564764916897, 0.035908978432416916,
- 0.057317327708005905, 0.09336002171039581, -0.04487261921167374, -0.03939640149474144,
- -0.015167527832090855, 0.019252199679613113, -0.005630960687994957,
- 0.036238815635442734, 0.21601124107837677, -0.10111269354820251, -0.028266627341508865,
- 0.1165195032954216, -0.14461947977542877, 0.42943134903907776, 0.016529543325304985,
- 0.0184182096272707, -0.02291601151227951, 0.09746045619249344, 0.050158966332674026,
- 0.06783509999513626, 0.048396531492471695, -0.04934544488787651, 0.04563388600945473,
- -0.08856240659952164, 0.027465956285595894, 0.07045222818851471, 0.03524278104305267,
- -0.022203410044312477, 0.028150582686066628, -0.037278179079294205,
- -0.06016044691205025, -0.012025845237076283, -0.03597243130207062, 0.15784507989883423,
- 0.07331591099500656, -0.022917894646525383, -0.03568536415696144, 0.08678624033927917,
- -0.06449496746063232, 0.08989553153514862, -0.06706034392118454, 0.04782344028353691,
- -0.02774464525282383, 0.0923909917473793, -0.0057959104888141155, -0.004315144848078489,
- -0.059211231768131256, 0.027681903913617134, 0.07784900814294815, 0.07695397734642029,
- 0.057456742972135544, -0.021690066903829575, 0.06118527799844742, 0.07188402116298676,
- -0.046143677085638046, 0.04976245388388634, -0.051799941807985306, -0.05037279054522514,
- -0.028448045253753662, -0.0353071503341198, 0.06646408140659332, -0.0598699226975441,
- -0.17318476736545563, -0.017995966598391533, 0.05986063554883003, 0.019833963364362717,
- -0.05359180271625519, 0.04881484806537628, -0.06102096661925316, 0.04236835613846779,
- -0.04143688455224037, -0.06505125015974045, 0.0738246813416481, 0.007912780158221722,
- 0.08518754690885544, 0.11818801611661911, 0.05703413486480713, -0.037551939487457275,
- -0.03978157415986061, -0.005799718201160431, -0.022929666563868523, 0.0906323492527008,
- -0.11373072117567062, -0.024247687309980392, 0.009520952589809895,
- -0.027249308302998543, 0.6443502902984619, 0.09443172812461853, 0.1488208919763565,
- 0.015110298059880733, -0.012259378097951412, 0.19728325307369232, 0.014241103082895279,
- 0.07738565653562546, -0.07064587622880936, -0.05423498526215553, 0.033463239669799805,
- -0.03461898863315582, -0.050716981291770935, 0.010970491915941238, 0.036574818193912506,
- 0.10415682941675186, -0.020609505474567413, 0.11577825993299484, -0.011016183532774448,
- -0.12552809715270996, -0.034218158572912216, 0.07398570328950882, -0.00415263744071126,
- -0.09494418650865555, -0.048779942095279694, 0.04088938236236572, 0.06969035416841507,
- -0.0863538533449173, 0.008965739980340004, -0.07634090632200241, 0.03331120312213898,
- -0.01387033425271511, 0.08308467268943787, -0.016129687428474426, 0.02483171410858631,
- 0.05218653753399849, 0.008480831980705261, 0.018147146329283714, -0.07761365920305252,
- -0.00878015998750925, 0.11243613064289093, -0.03011731430888176, -0.0059816050343215466,
- 0.06270454823970795, -0.0942298099398613, -0.01362286601215601, -0.01023427490144968,
- 0.12685026228427887, -0.08999542146921158, 0.00827648863196373, 0.02479361742734909,
- -0.002313592005521059, 0.0870608240365982, -0.013498831540346146, -0.07938437908887863,
- -0.05036318674683571, 0.08166813105344772, 0.030981363728642464, 0.04763515293598175,
- 0.03271123021841049, 0.012697046622633934, 0.06599926948547363, 0.09771116077899933,
- -0.018773391842842102, 0.002150152809917927, 0.0445137582719326, 0.06061514839529991,
- -0.03495180234313011, 0.002757227746769786, 0.04594931751489639, 0.0070005254819989204,
- 0.02815568633377552, -0.0024440810084342957, 0.045761384069919586, 0.008704258129000664,
- -0.04580444097518921, 0.05162028223276138, -0.026391910389065742, 0.010529156774282455,
- 0.11906382441520691, -0.05000309646129608, -0.047482576221227646, -0.010709088295698166,
- -0.03158542141318321, 0.02307140827178955, -0.038504600524902344, 0.07921744138002396,
- 0.04018682613968849, 0.08412248641252518, 0.05535734072327614, 0.03678445890545845,
- 0.03995534032583237, 0.036163296550512314, 0.0014289115788415074, 0.09522420912981033,
- -0.03754651919007301, -0.06662192940711975, -0.01819157972931862, -0.004284764640033245,
- 0.07524801045656204, 0.039301399141550064, -0.06507609784603119, -0.011089172214269638,
- 0.033762816339731216, -0.05365258455276489, -0.052523624151945114,
- -0.012814080342650414, 0.059297382831573486, 0.0234146136790514, -0.018330903723835945,
- -0.07476356625556946, -0.09305732697248459, 0.01825101114809513, 0.033616743981838226,
- -0.03169432282447815, -0.003008680883795023, -0.09068218618631363, 0.008848542347550392,
- -0.022949034348130226, 0.06166877597570419, -0.0214636642485857, 0.05408773571252823,
- 0.012711133807897568, -0.04777586832642555, 0.05416450649499893, 0.028151191771030426,
- -0.0408705435693264, -0.05502108484506607, -0.06947552412748337, -0.05302197113633156,
- -0.014093994162976742, -0.04970276355743408, 0.02247084118425846, 0.060868289321660995,
- 0.04539455473423004, 0.04049052298069, 0.007262230385094881, -0.014319977723062038,
- 0.07015600055456161, -0.042618367820978165, 0.014745745807886124, 0.07124672085046768,
- -0.048836495727300644, 0.0341983400285244, -0.03270302340388298, -0.09193718433380127,
- -0.040427353233098984, 0.022643866017460823, -0.07355410605669022, 0.02471645548939705,
- -0.02320733107626438, 0.008796971291303635, -0.046766284853219986, -0.06721073389053345,
- 0.0514986477792263, -0.07917684316635132, -0.05270036309957504, -0.10648203641176224,
- 0.08695399016141891, 0.02309975028038025, -0.019510330632328987, 0.04733608663082123,
- -0.04928623512387276, 0.04382162168622017, -0.0020897926297038794, 0.008499928750097752,
- 0.022867856547236443, 0.07352283596992493, 0.003736244747415185, 0.018271448090672493,
- 0.03670230135321617, -0.06229432672262192, 0.02829056978225708, 0.0652669370174408,
- 0.44124919176101685, -0.22727632522583008, 0.07711558789014816, 0.11613171547651291,
- 0.03899126872420311, 0.07090814411640167, -0.030516503378748894, 0.05957420915365219,
- 0.09266648441553116, 0.11695443838834763, 0.11354419589042664, -0.030468618497252464,
- -0.030012469738721848, -0.08591442555189133, 0.06514748930931091, 0.03253782540559769,
- 0.035700973123311996, -0.008460809476673603, -0.07034008949995041, -0.05616357550024986,
- 0.004424428567290306, -0.08497321605682373, 0.01417671237140894, 0.030014295130968094,
- -0.021489374339580536, 0.024692237377166748, 0.03350195288658142, 0.033362388610839844,
- -0.04333840683102608, 0.04286057502031326, -0.0356462337076664, 0.044384513050317764,
- 0.021272988989949226, 0.023704688996076584, -0.07893674075603485, 0.0221115555614233,
- -0.08109219372272491, -0.07175084948539734, 0.09251776337623596, 0.010702887549996376,
- 0.04851926863193512, 0.041558194905519485, -0.04935621842741966, 0.01303280983120203,
- -0.0744011402130127, -0.04553520306944847, 0.012237810529768467, 0.06825270503759384,
- 0.03067220002412796, 0.042557280510663986, 0.16097226738929749, -0.05432093143463135,
- -0.0031338902190327644, -0.07755409926176071, 0.0763963907957077, 0.1613236516714096,
- -0.01945057511329651, -0.0013208003947511315, -0.022837476804852486,
- -0.017144976183772087, 0.01654663123190403, -0.06637739390134811, -0.10412297397851944,
- -0.024882547557353973, -0.03442370891571045, 0.07181254029273987, 0.031910475343465805,
- -0.04136711731553078, -0.22049851715564728, -0.010448132641613483, -0.03051171824336052,
- -0.006700620055198669, 0.06353741139173508, -0.04646490886807442, -0.04252023994922638,
- -0.026319975033402443, -0.016100583598017693, -0.052723728120326996,
- -0.1058579608798027, -0.011374109424650669, -0.01324969157576561, 0.05821573734283447,
- 0.03576621785759926, 0.04472193121910095, -0.05976203829050064, 0.07452486455440521,
- -0.08331834524869919, 0.08883212506771088, 0.016934918239712715, -0.03775907680392265,
- 0.043526582419872284, -0.03218572959303856, 0.04936943203210831, 0.00808678474277258,
- -0.05243353918194771, -0.011373075656592846, -0.001992615172639489,
- -0.013163203373551369, -0.075567826628685, -0.028170520439743996, -0.04343462362885475,
- -0.1210855022072792, 0.012139729224145412, -0.07719410955905914, -0.04807142913341522,
- -0.007736654486507177, -0.015016552060842514, 0.013186577707529068, 0.06756044179201126,
- 0.042922649532556534, -0.13892030715942383, -0.030249034985899925, -0.02751932665705681,
- 0.04559769853949547, -0.0448022224009037, -0.05768943205475807, 0.029745446518063545,
- 0.07067396491765976, 0.0893547534942627, -0.012390222400426865, 0.010797076858580112,
- -0.06319573521614075, 0.03455491364002228, -0.1124022901058197, -0.5315988063812256,
- 0.06646817177534103, 0.02054750546813011, 0.016815654933452606, 0.0505170077085495,
- -0.0615290142595768, 0.023751545697450638, -0.009314599446952343, -0.04856424406170845,
- 0.09326433390378952, -0.03565298020839691, 0.022927243262529373, 0.014945128001272678,
- -0.02813551388680935, -0.006297287531197071, -0.04085690155625343, -0.05511137470602989,
- 0.07699748873710632, -0.01885347068309784, -0.06708177924156189, -0.08436442166566849,
- 0.019121203571558, 0.0008393593016080558, 0.07936437427997589, -0.006503267679363489,
- -0.015255077742040157, -0.06535115092992783, -0.03610478714108467, 0.062067724764347076,
- 0.05948624387383461, 0.024652892723679543, -0.06388629227876663, -0.0014806315302848816,
- 0.04763312637805939, -0.03853728994727135, 0.11828408390283585, 0.036149509251117706,
- -0.0424785390496254, -0.09018946439027786, 0.09013568609952927, 0.07001768797636032,
- 0.18375498056411743, -0.03454539179801941, 0.040917690843343735, -0.008630406111478806,
- 0.16072726249694824, 0.030286656692624092, 0.03413977846503258, -0.01581711322069168,
- 0.013326257467269897, 0.010461952537298203, -0.013788434676826, 0.07017107307910919,
- -0.08211278170347214, -0.03201265633106232, -0.02796519547700882, -0.030836062505841255,
- -0.06358907371759415, 0.03490407392382622, 0.2157537043094635, 0.028824705630540848,
- 0.01463737990707159, -0.03367193415760994, -0.07075759768486023, -0.003954513464123011,
- -0.0795806497335434, -0.089199960231781, -0.0009357677190564573, 0.0009151801350526512,
- -0.010681373998522758, -0.05528898537158966, -0.108774334192276, 0.007779479026794434,
- 0.014232438057661057, 0.003667387180030346, 0.03884654492139816, -0.0005112737999297678,
- 0.09613002091646194, -0.03872726112604141, 0.12020570784807205, 0.02071760781109333,
- 0.023947857320308685, 0.059354063123464584, 0.11258590966463089, -0.006322401575744152,
- -0.015116495080292225, -0.07417098432779312, -0.03454833850264549,
- -0.025347106158733368, 0.12942378222942352, -0.035152338445186615, 0.08641332387924194,
- 0.00976018700748682, -0.05314375460147858, -0.03743711858987808, 0.008160498924553394,
- -0.020063353702425957, 0.021657176315784454, -0.4696885943412781, -0.01178067084401846,
- 0.16192565858364105, -0.0152152543887496, 0.0035009763669222593, 0.06438297033309937,
- 0.0024036355316638947, -0.04409099370241165, -0.0176417026668787, -0.08231845498085022,
- 0.12019391357898712, -0.02155504748225212, 0.09208662807941437, -0.055631812661886215,
- 0.018266551196575165, 0.06849578022956848, -0.055130735039711, -0.040289267897605896,
- 0.04605657979846001, -0.22197569906711578, 0.0014676415594294667, -0.026423515751957893,
- 0.12843115627765656, 0.06277363747358322, 0.057161569595336914, 0.09351196140050888,
- -0.04317844659090042, 0.02818705514073372, 0.03592321649193764, 0.01291398610919714,
- 0.018875913694500923, 0.012746075168251991, 0.004848212003707886, 0.0873568058013916,
- 0.06489868462085724, 0.08644098788499832, -0.05474457889795303, 12.119678497314453,
- 0.025022054091095924, 0.08012498170137405, -0.048726532608270645, -0.001312549109570682,
- -0.09544846415519714, 0.018108434975147247, -0.07813742756843567, 0.058731064200401306,
- 0.12330672144889832, -0.01390878576785326, -0.025102073326706886, -0.0328456349670887,
- -0.11460500210523605, 0.001954807434231043, -0.052411701530218124, -0.03828766569495201,
- -0.02921665459871292, 0.033647920936346054, -0.05827723443508148, -0.05052194744348526,
- 0.09537613391876221, 0.07943454384803772, 0.048211559653282166, -0.10296260565519333,
- 0.018302632495760918, -0.0012252256274223328, 0.006584992632269859,
- -0.0015600937185809016, 0.04932548850774765, -0.02271544374525547, 0.013661309145390987,
- 0.01161829475313425, 0.004180805757641792, 0.018675314262509346, 0.03002367541193962,
- 0.042457420378923416, 0.033568087965250015, 0.034274760633707047, 0.095433808863163,
- 0.04306380823254585, -0.009640702977776527, 0.03310006484389305, 0.05591218173503876,
- 0.0466197244822979, 0.004755247849971056, 0.06432010978460312, 0.11289482563734055,
- -0.02592264488339424, 0.10082323104143143, 0.09184489399194717, -0.013539224863052368,
- 0.10957271605730057, -0.012366589158773422, 0.01147507131099701, 0.05574431270360947,
- 0.03003927320241928, -0.061491452157497406, 0.06210052967071533, 0.11023924499750137,
- -0.0784544050693512, 0.13039864599704742, 0.027837980538606644, 0.11672986298799515,
- -0.03309732675552368, 0.0457259863615036, 0.09073097258806229, 0.07888852804899216,
- -0.11181457340717316, -0.08529045432806015, 0.029901953414082527, -0.08804214000701904,
- -0.09313097596168518, 0.04134837165474892, 0.08485681563615799, -0.04717736318707466,
- 0.05086459964513779, -0.08286359906196594, 0.03245110809803009, -0.035839322954416275,
- -0.009548414498567581, 0.028390325605869293, -0.02404053695499897, 0.05112989991903305,
- 0.05354420095682144, 0.035456303507089615, 0.08507370203733444, 0.09463497996330261,
- 0.03413591533899307, -0.1157224178314209, -0.07025375962257385, 0.13427363336086273,
- -0.019826244562864304, -0.05475383624434471, 0.0031299323309212923,
- -0.048604536801576614, 0.07268515974283218, -0.1705908626317978, 0.09067869931459427,
- 0.15175865590572357, -0.1471908986568451, 0.007303531747311354, -0.011447048746049404,
- 0.06016259267926216, -0.03384503349661827, 0.038762107491493225, -0.019296197220683098,
- 0.052847422659397125, 0.004164854530245066, 0.050027620047330856, -0.04699239879846573,
- 0.05361693724989891, 0.09110696613788605, -0.08851016312837601, 0.01917770877480507,
- 0.04630184546113014, 0.00021431480126921088, -0.01687852293252945, 0.0571603924036026,
- 0.05166059359908104, -0.09110163897275925, -0.06388458609580994, -0.008407405577600002,
- -0.039180900901556015, -0.022728852927684784, -0.06010652706027031, 0.02327318675816059,
- 0.07454675436019897, -0.07970858365297318, -0.011288279667496681, 0.03248743340373039,
- 0.06474563479423523, 0.03236282244324684, -0.03558516502380371, 0.054832592606544495,
- -0.04237135499715805, -0.053745437413454056, 0.019463369622826576, 0.07104706764221191,
- 0.0927560031414032, -0.051658209413290024, -0.06772670149803162, -0.005155256018042564,
- -0.11682197451591492, -0.028585640713572502, 0.07181979715824127, 0.06915230304002762,
- 0.06612949818372726, 0.05677928775548935, -0.10798079520463943, -0.027623118832707405,
- 0.11507656425237656, 0.006985792890191078, 0.013484508730471134, 0.05722905322909355,
- -0.061670925468206406, -0.0420910008251667, 0.0809689462184906, -0.04674933850765228,
- 0.018436670303344727, -0.0019539527129381895, -0.03983679786324501, 0.12484603375196457,
- 0.07052683085203171, 0.07750490307807922, 0.004917730111628771, 0.0015186858363449574,
- -0.0021807835437357426, 0.025609774515032768, 0.0006497498834505677,
- 0.04218412935733795, 0.003108174540102482, -0.15090228617191315, -0.07375483959913254,
- -0.0076879458501935005, 0.09280645102262497, 0.03399183973670006, -0.09428491443395615,
- -0.03449498116970062, 0.004545324947685003
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 48,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 16,
- "similarity": 0.9988710880279541
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 45,
- "similarity": 0.9988160133361816
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 36,
- "similarity": 0.998760461807251
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Reuters Editorial"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 863,
- "source_domain": "reuters.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "New Zealand passport robot tells applicant of Asian descent to open eyes",
- "url": "https://www.reuters.com/article/us-newzealand-passport-error/new-zealand-passport-robot-tells-applicant-of-asian-descent-to-open-eyes-idUSKBN13W0RL"
- },
- {
- "__typename": "Report",
- "authors": ["Belinda Grant Geary"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 862,
- "source_domain": "nzherald.co.nz",
- "submitters": ["Roman Yampolskiy"],
- "title": "Man sees humour in 'racist' facial recognition software",
- "url": "https://www.nzherald.co.nz/nz/news/article.cfm?c_id=1\u0026objectid=11762334"
- },
- {
- "__typename": "Report",
- "authors": ["RT"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 860,
- "source_domain": "rt.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "‘Racist’ passport machine accuses Asian man of having eyes closed",
- "url": "https://www.rt.com/viral/369537-racist-passport-scanner-new-zealand/"
- },
- {
- "__typename": "Report",
- "authors": ["Bradley Jolly"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 859,
- "source_domain": "dailystar.co.uk",
- "submitters": ["Roman Yampolskiy"],
- "title": "Passport photo rejected by 'racist' facial recognition robot in New Zealand",
- "url": "https://www.dailystar.co.uk/news/latest-news/568433/Passport-photo-Asian-eyes-racist-facial-recognition-technology-New-Zealand"
- },
- {
- "__typename": "Report",
- "authors": ["James Griffiths"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 858,
- "source_domain": "edition.cnn.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "New Zealand passport robot thinks this Asian man's eyes are closed",
- "url": "https://edition.cnn.com/2016/12/07/asia/new-zealand-passport-robot-asian-trnd/index.html"
- },
- {
- "__typename": "Report",
- "authors": ["Jenny Awford"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 857,
- "source_domain": "thesun.co.uk",
- "submitters": ["Roman Yampolskiy"],
- "title": "Asian man’s picture is rejected by New Zealand’s passport photo software because his “eyes were closed”",
- "url": "https://www.thesun.co.uk/news/2346663/asian-mans-picture-is-rejected-by-new-zealand-governments-passport-photo-software-because-his-eyes-were-closed/"
- },
- {
- "__typename": "Report",
- "authors": ["Georgia Forrester", "Paul Mitchell"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 855,
- "source_domain": "stuff.co.nz",
- "submitters": ["Roman Yampolskiy"],
- "title": "'Racist' passport request riles New Zealand citizen of 10 years",
- "url": "https://www.stuff.co.nz/national/88111323/racist-passport-request-riles"
- },
- {
- "__typename": "Report",
- "authors": ["Mark Andrews"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 854,
- "source_domain": "elitereaders.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Racist Passport Machine Rejects Photo Because \"Subject's Eyes Are Closed\"",
- "url": "https://www.elitereaders.com/passport-rejects-photo-eyes-closed/"
- },
- {
- "__typename": "Report",
- "authors": ["Kevin Parrish"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 853,
- "source_domain": "digitaltrends.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Facial Recognition Tells An Asian Man His Eyes Are Closed",
- "url": "https://www.digitaltrends.com/computing/facial-recognition-software-passport-renewal-asian-man-eyes-closed/"
- },
- {
- "__typename": "Report",
- "authors": ["Network Ten"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 851,
- "source_domain": "tenplay.com.au",
- "submitters": ["Roman Yampolskiy"],
- "title": "Passport robot donned ‘racist’, tells applicant of Asian descent to open eyes",
- "url": "https://tenplay.com.au/news/national/december/passport-robot-donned-racist-tells-applicant-of-asian-descent-to-open-eyes"
- },
- {
- "__typename": "Report",
- "authors": ["The Inquirer"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 850,
- "source_domain": "theinquirer.net",
- "submitters": ["Roman Yampolskiy"],
- "title": "New Zealand passport reader accuses Asian of having 'eyes closed'",
- "url": "https://www.theinquirer.net/inquirer/news/2479251/new-zealand-passport-reader-accuses-asian-of-having-eyes-closed"
- },
- {
- "__typename": "Report",
- "authors": ["Agence France-Presse"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 849,
- "source_domain": "rappler.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "'Racist' robot rejects Asian-face passport photo",
- "url": "https://www.rappler.com/world/regions/asia-pacific/154897-racist-robot-rejects-asian-face-passport-photo"
- },
- {
- "__typename": "Report",
- "authors": ["Reuters"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 848,
- "source_domain": "indiatoday.in",
- "submitters": ["Roman Yampolskiy"],
- "title": "Racist robot? New Zealand govt website tells Asian man to open eyes, rejects passport",
- "url": "https://www.indiatoday.in/technology/news/story/racist-robot-new-zealand-govt-website-tells-asian-man-to-open-eyes-rejects-passport-356173-2016-12-07"
- },
- {
- "__typename": "Report",
- "authors": ["Rob Thubron"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 847,
- "source_domain": "techspot.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Facial recognition software rejects Asian man's passport photo because it thinks his eyes are closed",
- "url": "https://www.techspot.com/news/67317-facial-recognition-software-rejects-asian-man-passport-photo.html"
- },
- {
- "__typename": "Report",
- "authors": ["Brian Lisi"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 846,
- "source_domain": "nydailynews.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Racist robot rejects Asian man's passport photo, claiming 'eyes are closed'",
- "url": "https://www.nydailynews.com/news/world/racist-robot-rejects-asian-man-passport-photo-claiming-eyes-article-1.2901794"
- },
- {
- "__typename": "Report",
- "authors": ["Olivia Lambert"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 845,
- "source_domain": "news.com.au",
- "submitters": ["Roman Yampolskiy"],
- "title": "NZ government accused of racism after passport renewal software ‘failed’ Asian man’s photo",
- "url": "https://www.news.com.au/travel/travel-updates/an-error-in-passport-renewal-software-creates-really-awkward-moment/news-story/8a2805422447af2d4c1bcd8793ffccb5"
- },
- {
- "__typename": "Report",
- "authors": ["James Whitbrook"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 844,
- "source_domain": "gizmodo.com.au",
- "submitters": ["Roman Yampolskiy"],
- "title": "New Zealand Passport Website Rejects Asian Man's Photo For Having 'Closed' Eyes",
- "url": "https://www.gizmodo.com.au/2016/12/new-zealand-passport-website-rejects-asian-mans-photo-for-having-closed-eyes/"
- },
- {
- "__typename": "Report",
- "authors": ["Breanna Barraclough"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 843,
- "source_domain": "newshub.co.nz",
- "submitters": ["Roman Yampolskiy"],
- "title": "Passport blunder sees photo rejected for 'closed eyes'",
- "url": "https://www.newshub.co.nz/home/new-zealand/2016/12/passport-blunder-sees-photo-rejected-for-closed-eyes.html"
- },
- {
- "__typename": "Report",
- "authors": ["James Gould-Bourn", "Caitlyn Mccracken", "Natalia Claudio"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 842,
- "source_domain": "boredpanda.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "New Zealand Passport Photo Checker Rejects Asian Guy’s Picture, Says His Eyes Are Closed",
- "url": "https://www.boredpanda.com/passport-photo-rejected-closed-eyes-richard-lee/?utm_source=google\u0026utm_medium=organic\u0026utm_campaign=organic"
- },
- {
- "__typename": "Report",
- "authors": ["Selina Cheng"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 840,
- "source_domain": "qz.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "An algorithm rejected an Asian man's passport photo for having \"closed eyes\"",
- "url": "https://qz.com/857122/an-algorithm-rejected-an-asian-mans-passport-photo-for-having-closed-eyes/"
- },
- {
- "__typename": "Report",
- "authors": ["BBC News"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 839,
- "source_domain": "bbc.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "New Zealander says passport photo rejection 'not racist'",
- "url": "https://www.bbc.com/news/world-asia-38241833"
- },
- {
- "__typename": "Report",
- "authors": ["James Titcomb"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 838,
- "source_domain": "telegraph.co.uk",
- "submitters": ["Roman Yampolskiy"],
- "title": "Robot passport checker rejects Asian man's photo for having his eyes closed",
- "url": "http://www.telegraph.co.uk/technology/2016/12/07/robot-passport-checker-rejects-asian-mans-photo-having-eyes"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "youth-laboratories",
- "name": "Youth Laboratories"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "youth-laboratories",
- "name": "Youth Laboratories"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "people-with-dark-skin",
- "name": "People with Dark Skin"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [875, 874, 873, 872, 870, 868, 867, 866, 865, 864],
- "vector": [
- -0.04184836521744728, 0.07512257993221283, 0.023205433040857315, -0.12479151785373688,
- 0.07694046944379807, -0.0388912670314312, 0.006277675740420818, 0.09063751995563507,
- 0.08026575297117233, -0.13757961988449097, 0.006865561008453369, 0.03480302542448044,
- 0.022190343588590622, -0.07025782763957977, 0.025578996166586876, -0.06712444126605988,
- -0.13936379551887512, -0.018313342705368996, -0.007700405083596706,
- -0.12772709131240845, -0.08205047249794006, 0.004741683602333069, -0.011446943506598473,
- 0.10627710819244385, -0.06315138190984726, 0.01962686888873577, 0.09826533496379852,
- 0.08813680708408356, -0.045534003525972366, 0.06178341060876846, -0.03681076318025589,
- -0.08239413797855377, 0.10544268041849136, 0.019067978486418724, 0.015373772010207176,
- 0.08010207116603851, 0.01527466345578432, -0.014461721293628216, -0.005731510929763317,
- -0.014307849109172821, 0.040150728076696396, 0.2380218803882599, -0.008071737363934517,
- 0.012064950540661812, 0.03466881811618805, -0.03168836608529091, 0.0034655227791517973,
- 0.025349413976073265, 0.021925147622823715, 0.03539188206195831, -0.011517712846398354,
- 0.021718498319387436, -0.041616737842559814, 0.013403056189417839, -0.08922480046749115,
- 0.04325199872255325, 0.02783377096056938, 0.027518367394804955, 0.038839105516672134,
- -0.08081438392400742, 0.007437974214553833, -0.20359185338020325, -0.042253293097019196,
- -0.06605376303195953, 0.07985281199216843, -0.0722479522228241, -0.02533336542546749,
- 0.04101303592324257, 0.019689537584781647, 0.06137652322649956, 0.07380936294794083,
- -0.02619568072259426, -0.00892312079668045, 0.013002718798816204, -0.014718460850417614,
- -0.015063626691699028, 0.005405045114457607, 0.19704364240169525, -0.1143384575843811,
- 0.002567437244579196, 0.09557559341192245, -0.11463616788387299, 0.35618114471435547,
- 0.0023516551591455936, -0.015023820102214813, -0.017224980518221855, 0.0857909768819809,
- 0.025176847353577614, 0.04991067573428154, 0.04143922030925751, 0.0067709386348724365,
- 0.04768899083137512, -0.04994257912039757, -0.026693036779761314, 0.04938829317688942,
- 0.03770562261343002, -0.020708009600639343, -0.01926901750266552, -0.009796429425477982,
- -0.033968742936849594, -0.00960199348628521, -0.020188411697745323, 0.13072898983955383,
- 0.09901989996433258, -0.03589663654565811, -0.023476209491491318, 0.08389304578304291,
- -0.05865997076034546, 0.07056961208581924, -0.047897834330797195, 0.029800036922097206,
- -0.0034985761158168316, 0.05752790719270706, 0.004481466952711344, 0.020836004987359047,
- -0.07221521437168121, 0.038614463061094284, 0.05984209105372429, 0.08897201716899872,
- 0.05835653096437454, 0.007345881313085556, 0.04967568442225456, 0.062120936810970306,
- -0.06793003529310226, -0.0499470978975296, -0.02684124931693077, -0.05482618138194084,
- -0.03674503415822983, -0.03493400663137436, 0.06393449008464813, -0.05379008501768112,
- -0.18859806656837463, 0.0013491996796801686, 0.07336913794279099, -0.053529612720012665,
- -0.034094199538230896, 0.009401788003742695, -0.032554902136325836, 0.05192011594772339,
- -0.03699146956205368, -0.021151337772607803, 0.06675150990486145, 0.013359582051634789,
- 0.04204801097512245, 0.07576991617679596, 0.058428358286619186, -0.04551990330219269,
- -0.06124439835548401, -0.0028293197974562645, -0.06306881457567215, 0.1282424032688141,
- -0.14480701088905334, -0.02899932861328125, -0.030272383242845535, 0.003958193119615316,
- 0.6665588617324829, 0.11597784608602524, 0.16852936148643494, -0.009736997075378895,
- -0.0238919910043478, 0.16036580502986908, -0.008242936804890633, 0.0823870301246643,
- -0.06766698509454727, -0.035547614097595215, 0.052223674952983856, -0.08655064553022385,
- -0.057119350880384445, 0.04649767652153969, 0.0001547254651086405, 0.08329792320728302,
- 0.01332874596118927, 0.08497041463851929, 0.013264911249279976, -0.09842158854007721,
- -0.027259400114417076, 0.04549385979771614, 0.024130038917064667, -0.13267751038074493,
- -0.04047369956970215, 0.06028291583061218, 0.0868847444653511, -0.10643015801906586,
- 0.01801871322095394, -0.0876448005437851, 0.0586518719792366, -0.004454785957932472,
- 0.09899130463600159, -0.020817961543798447, 0.039860647171735764, 0.01873270981013775,
- 0.025671642273664474, -0.01902460679411888, -0.07901544868946075, -0.014803217723965645,
- 0.08126427978277206, -0.021250762045383453, -0.033122703433036804, 0.07160861790180206,
- -0.08538766205310822, 0.0309598408639431, -0.027888422831892967, 0.1387682408094406,
- -0.1626698523759842, 0.048414237797260284, -0.026398474350571632, -0.006552605424076319,
- 0.037021391093730927, 0.015013332478702068, -0.05539947748184204, -0.06303249299526215,
- 0.09290008246898651, 0.019106056541204453, 0.06451695412397385, 0.025748824700713158,
- -0.027475077658891678, 0.06997865438461304, 0.08349455147981644, 0.0025041070766747,
- -0.032858047634363174, 0.07996872812509537, 0.04471999779343605, -0.04594527930021286,
- -0.03204727917909622, 0.06948951631784439, -0.013709895312786102,
- -0.0007592215551994741, 0.001837720163166523, 0.03667198866605759,
- -0.012444712221622467, -0.05704880505800247, 0.04768333211541176, 0.03236553817987442,
- 0.03228653967380524, 0.07011145353317261, -0.05154929682612419, -0.0636359229683876,
- -0.027761291712522507, -0.025882456451654434, 0.013243695721030235,
- -0.02511494979262352, 0.07216945290565491, 0.09715544432401657, 0.06885235011577606,
- 0.035342149436473846, 0.020901301875710487, 0.0684647411108017, 0.05294579267501831,
- -0.011948730796575546, 0.06640796363353729, -0.01735580712556839, -0.036213696002960205,
- -0.01370623242110014, 0.002403115388005972, 0.017775747925043106, 0.0034343681763857603,
- -0.08562831580638885, -0.023119866847991943, -0.05155521631240845,
- -0.011400818824768066, -0.08536021411418915, -0.01906859315931797, 0.038209207355976105,
- 0.01921752095222473, -0.05571798235177994, -0.09004376083612442, -0.09412660449743271,
- -0.0020397393964231014, 0.049722589552402496, -0.05161061882972717,
- -0.010968883521854877, -0.12329157441854477, 0.018372485414147377,
- -0.025343984365463257, 0.060702163726091385, -0.03192014619708061, 0.026122387498617172,
- 0.027674401178956032, -0.08634386956691742, 0.047659311443567276, 0.0004258262924849987,
- -0.04119180515408516, -0.014304721727967262, -0.0919930711388588, -0.05083565041422844,
- -0.013856013305485249, 0.017074737697839737, -0.0419778972864151, 0.04865625500679016,
- 0.060466013848781586, 0.051954884082078934, -0.029209977015852928,
- -0.045406125485897064, 0.03705858439207077, -0.023381467908620834,
- -0.007071113679558039, 0.08750274777412415, -0.03597844019532204, 0.004947224166244268,
- -0.01633271388709545, -0.08857306092977524, -0.04615132883191109, 0.004824590869247913,
- -0.04336515814065933, 0.03658214956521988, -0.010454902425408363, 0.010319577530026436,
- -0.008688477799296379, -0.013929829001426697, 0.06286182999610901, -0.05163510516285896,
- -0.10718102753162384, -0.07029227912425995, 0.0963558703660965, 0.003440579865127802,
- 0.009764576330780983, 0.01923331990838051, -0.02633068338036537, 0.04975440725684166,
- -0.006725005805492401, 0.0015540167223662138, 0.031831711530685425, 0.06632916629314423,
- 0.006002912297844887, 0.024524858221411705, 0.060804229229688644, -0.018788369372487068,
- 0.026042208075523376, 0.0690816193819046, 0.45538124442100525, -0.2254602164030075,
- 0.07377482950687408, 0.10939818620681763, 0.008312243968248367, 0.03918967396020889,
- -0.03714606538414955, 0.09526519477367401, 0.08277027308940887, 0.10833127796649933,
- 0.12398288398981094, -0.06685955822467804, 0.0005512904608622193, -0.07673641294240952,
- 0.08572597801685333, 0.019087491557002068, 0.033530037850141525, -0.021259786561131477,
- -0.0904933363199234, -0.014845733530819416, 0.028398722410202026, -0.07317002862691879,
- 0.024226633831858635, -0.017128286883234978, -0.04206924885511398,
- -0.0013191818725317717, 0.0028924124781042337, 0.019265364855527878,
- -0.0287081990391016, 0.05052502080798149, -0.05457957834005356, 0.05455789715051651,
- 0.037065424025058746, 0.03272978588938713, -0.1391388326883316, 0.019387027248740196,
- -0.06269706040620804, -0.09504914283752441, 0.060057420283555984,
- -0.0005829885485582054, 0.045376505702733994, 0.05963945388793945,
- -0.039381492882966995, 0.038777440786361694, -0.024404708296060562,
- -0.050203509628772736, 0.0015100386226549745, 0.06140437722206116, 0.03300955146551132,
- 0.049406733363866806, 0.14656925201416016, -0.02715245448052883, 0.0011268460657447577,
- -0.08710746467113495, 0.07542471587657928, 0.14978691935539246, 0.009069317020475864,
- 0.028589308261871338, 0.0051955124363303185, -0.02324414812028408,
- -0.003441543783992529, -0.050868045538663864, -0.11618070304393768, -0.0318458117544651,
- -0.05012841895222664, 0.09490926563739777, 0.028179820626974106, -0.029869403690099716,
- -0.1420813351869583, -0.00511267501860857, -0.03664303198456764, 0.012941735796630383,
- 0.07778825610876083, -0.04968610405921936, 0.03646712750196457, -0.02269192412495613,
- 0.005415231920778751, 0.03889864310622215, -0.07976602017879486, 0.00046371910138987005,
- -0.03862061724066734, 0.03628740459680557, 0.05782688781619072, 0.03954433649778366,
- -0.039574749767780304, 0.1267259269952774, -0.09921248257160187, 0.06409207731485367,
- 0.012874351814389229, -0.06468336284160614, 0.03922983258962631, 0.001448069466277957,
- 0.025229061022400856, 0.03484939783811569, -0.050900667905807495, 0.02078070305287838,
- -0.044209789484739304, -0.009900787845253944, -0.05943887308239937,
- -0.06534150242805481, -0.020191725343465805, -0.09822328388690948, 0.026677768677473068,
- -0.07340273261070251, 0.0075294547714293, -0.037770532071590424, -0.04338189214468002,
- -0.012906198389828205, 0.014241148717701435, 0.015832921490073204, -0.13704442977905273,
- 0.009328342974185944, 0.0014824221143499017, 0.04235200956463814, -0.043565232306718826,
- -0.054932914674282074, 0.007569834589958191, 0.10977059602737427, 0.047202229499816895,
- -0.028031000867486, 0.000691999914124608, -0.06370548903942108, 0.06202034279704094,
- -0.10769323259592056, -0.3988648056983948, 0.05483851954340935, 0.014119650237262249,
- 0.015123391523957253, 0.017275448888540268, -0.0616438165307045, 0.047399602830410004,
- -0.016035130247473717, -0.03138120099902153, 0.08110345900058746, -0.03097556158900261,
- 0.018159491941332817, -0.021467171609401703, -0.062290024012327194,
- -0.0035700523294508457, -0.041382722556591034, -0.059336937963962555,
- 0.029716840013861656, -0.010099118575453758, -0.06645876169204712, -0.08915892243385315,
- -0.002081113401800394, -0.016297731548547745, 0.06374067813158035, 0.014907983131706715,
- 0.028659814968705177, -0.04524829611182213, -0.05503936484456062, 0.05684800073504448,
- 0.06508190929889679, 0.029113680124282837, -0.07061215490102768, 0.047608450055122375,
- 0.07790851593017578, 0.021756649017333984, 0.10474482923746109, 0.014387798495590687,
- -0.00987195409834385, -0.07288740575313568, 0.06037040799856186, 0.060570262372493744,
- 0.18538105487823486, -0.0038373623974621296, 0.006408012006431818, 0.01936936564743519,
- 0.13614581525325775, 0.05847476050257683, 0.024194132536649704, -0.015617025084793568,
- 0.001111964345909655, 0.0009629518608562648, 0.004239770118147135, 0.08683877438306808,
- -0.08208764344453812, -0.014748947694897652, -0.02403237111866474, 0.003433837089687586,
- -0.025862034410238266, -0.027906671166419983, 0.22168287634849548, 0.017796453088521957,
- 0.02385534532368183, 0.034927163273096085, -0.04635323956608772, 0.003417310072109103,
- -0.0845361202955246, -0.06552467495203018, -0.008226555772125721, -0.016552511602640152,
- 0.0007111726445145905, -0.03738925978541374, -0.106150783598423, -0.02608553133904934,
- 0.022915780544281006, -0.011720620095729828, 0.10230360925197601, -0.014398083090782166,
- 0.009731205180287361, -0.03008822724223137, 0.11897943168878555, 0.034276802092790604,
- 0.021702777594327927, 0.0555359348654747, 0.073651023209095, 0.004161519464105368,
- 0.011409491300582886, -0.04010274261236191, -0.08767805993556976, -0.038250189274549484,
- 0.14622123539447784, -0.028518304228782654, 0.09283541142940521, 0.04920390993356705,
- -0.04277721792459488, -0.033568695187568665, 0.02315523289144039,
- -0.0049599697813391685, -0.013914759270846844, -0.44450634717941284,
- -0.03524493798613548, 0.10758356750011444, 0.03206348419189453, 0.017508551478385925,
- 0.07824359834194183, 0.000915634271223098, -0.04958771541714668, -0.03382576256990433,
- -0.10629518330097198, 0.12793438136577606, -0.0110697653144598, 0.08659559488296509,
- -0.07691219449043274, 0.03730455040931702, 0.061498451977968216, -0.05001566559076309,
- 0.006777007132768631, 0.06241493299603462, -0.22620458900928497, -0.00344981555826962,
- -0.0068330480717122555, 0.11591996997594833, 0.030144846066832542, 0.043912146240472794,
- 0.09651656448841095, -0.06574773788452148, 0.030273253098130226, 0.04983721300959587,
- -0.00025972153525799513, 0.07359831035137177, -0.013333136215806007,
- 0.016511105000972748, 0.10257644951343536, 0.10858799517154694, 0.03981646150350571,
- -0.03686575964093208, 12.03400993347168, 0.024202167987823486, 0.07088309526443481,
- -0.09502334892749786, -0.0265025831758976, -0.06194460391998291, 0.024486228823661804,
- -0.12933878600597382, 0.06317726522684097, 0.11498691886663437, -0.000495069136377424,
- -0.0726703330874443, -0.011995028704404831, -0.10752403736114502, 0.036228131502866745,
- -0.03615076467394829, -0.05374723672866821, -0.040021900087594986, 0.06807514280080795,
- -0.05299840122461319, -0.04619714990258217, 0.06747661530971527, 0.08131995052099228,
- 0.0008348042028956115, -0.03509240597486496, -0.003609138773754239, 0.02512248419225216,
- -0.0011712976265698671, 0.011632201261818409, 0.01561981625854969,
- -0.002601184183731675, 0.041830725967884064, 0.07850717008113861,
- -0.0037769139744341373, 0.024264436215162277, 0.019690226763486862, 0.07264550775289536,
- 0.04784557968378067, 0.01936713233590126, 0.08958189189434052, 0.005295936018228531,
- 0.013542674481868744, 0.03583337739109993, 0.03312031179666519, 0.08679111301898956,
- 0.04265095293521881, 0.04568358510732651, 0.09424653649330139, 0.004069139249622822,
- 0.04507233202457428, 0.09123829752206802, 0.006880720146000385, 0.10615527629852295,
- -0.010141138918697834, -0.013093006797134876, 0.0714055746793747, -0.003608295228332281,
- -0.0880059003829956, 0.07328198850154877, 0.03690122067928314, -0.07387100160121918,
- 0.11987920850515366, 0.024437902495265007, 0.09933100640773773, 0.004664408974349499,
- 0.03097195364534855, 0.08551274240016937, 0.046543803066015244, -0.09052418172359467,
- -0.08569373190402985, 0.030392546206712723, -0.1075478196144104, -0.06872963905334473,
- 0.07868538796901703, 0.07143054902553558, -0.05709505081176758, 0.056362658739089966,
- -0.0293637216091156, 0.04542183130979538, -0.02564002014696598, 0.005495905876159668,
- 0.04033210128545761, -0.04200095683336258, 0.04946205019950867, 0.018968746066093445,
- 0.040761757642030716, 0.04930342361330986, 0.10580793768167496, 0.019808683544397354,
- -0.08288881927728653, -0.08710435777902603, 0.10626626014709473, -0.013999556191265583,
- -0.0645914301276207, 0.014264218509197235, -0.050084494054317474, 0.031360823661088943,
- -0.14070524275302887, 0.06944096088409424, 0.12656021118164062, -0.12018381059169769,
- -0.042256228625774384, -0.02608863078057766, 0.0659354031085968, 0.0031796484254300594,
- 0.04438921809196472, -0.05047209933400154, -0.0004352828545961529, 0.02189863659441471,
- 0.04406056925654411, -0.030838077887892723, 0.032411251217126846, 0.08905602991580963,
- -0.06741245090961456, -0.02751254104077816, 0.06205908581614494, -0.041512567549943924,
- -0.009932215325534344, 0.04547559842467308, 0.03028852865099907, -0.0840785950422287,
- -0.04432947188615799, -0.03685622289776802, -0.017643237486481667,
- 0.0064401403069496155, -0.04965900629758835, 0.01927029713988304, 0.04420500621199608,
- -0.03528495505452156, -0.023157915100455284, 0.03788471221923828, 0.07092735171318054,
- 0.0813606008887291, -0.006801118142902851, 0.07014890760183334, -0.04276459664106369,
- -0.05215320736169815, 0.026696613058447838, 0.06080842763185501, 0.051468413323163986,
- -0.06060366705060005, -0.04678301140666008, -0.05397357419133186, -0.11467565596103668,
- 0.027611056342720985, 0.08612684905529022, 0.04926713928580284, 0.04876800253987312,
- 0.008289670571684837, -0.08764908462762833, -0.031616128981113434, 0.08159936964511871,
- 0.013687128201127052, 0.0024867109023034573, 0.06342785805463791, -0.04760787636041641,
- -0.03503686934709549, 0.09275829046964645, -0.019686149433255196, -0.0104030417278409,
- 0.02869262360036373, -0.055139970034360886, 0.07759438455104828, 0.09757523983716965,
- 0.06606827676296234, 0.023684203624725342, 0.01603821851313114, 0.009033327922224998,
- 0.06381948292255402, -0.01210072822868824, 0.021970432251691818, -0.044367846101522446,
- -0.06636669486761093, -0.08357663452625275, 0.02438737079501152, 0.10541330277919769,
- 0.0376104973256588, -0.06856679171323776, -0.03418710455298424, -0.041657935827970505
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 49,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 37,
- "similarity": 0.9993586540222168
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 59,
- "similarity": 0.9992640614509583
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 6,
- "similarity": 0.9991413950920105
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Roman Yampolskiy"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 875,
- "source_domain": "hbr.org",
- "submitters": ["Roman Yampolskiy"],
- "title": "What Will Happen When Your Company’s Algorithms Go Wrong?",
- "url": "https://hbr.org/2017/04/what-will-happen-when-your-companys-algorithms-go-wrong"
- },
- {
- "__typename": "Report",
- "authors": ["Bryan Clark"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 874,
- "source_domain": "thenextweb.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "The first AI-judged beauty contest taught us one thing: Robots are racist",
- "url": "https://thenextweb.com/insider/2016/09/09/the-first-ai-judged-beauty-contest-taught-us-one-thing-robots-are-racist/"
- },
- {
- "__typename": "Report",
- "authors": ["Alex Moersen"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 873,
- "source_domain": "innotechtoday.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Artificial Intelligence Has a Racism Issue",
- "url": "https://innotechtoday.com/artificial-intelligence-racism/"
- },
- {
- "__typename": "Report",
- "authors": ["Ben Dickson"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 872,
- "source_domain": "au.pcmag.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Artificial Intelligence Has a Bias Problem, and It's Our Fault",
- "url": "https://au.pcmag.com/features/57070/artificial-intelligence-has-a-bias-problem-and-its-our-fault"
- },
- {
- "__typename": "Report",
- "authors": ["Ben Woods"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 870,
- "source_domain": "trustedreviews.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "AI judges of beauty contest branded racist",
- "url": "https://www.trustedreviews.com/news/racist-ai-robots-beauty-contest-2940650"
- },
- {
- "__typename": "Report",
- "authors": ["Jordan Pearson"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 868,
- "source_domain": "motherboard.vice.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Why An AI-Judged Beauty Contest Picked Nearly All White Winners",
- "url": "https://motherboard.vice.com/en_us/article/78k7de/why-an-ai-judged-beauty-contest-picked-nearly-all-white-winners"
- },
- {
- "__typename": "Report",
- "authors": ["Sam Levin"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 867,
- "source_domain": "theguardian.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "A beauty contest was judged by AI and the robots didn't like dark skin",
- "url": "https://www.theguardian.com/technology/2016/sep/08/artificial-intelligence-beauty-contest-doesnt-like-black-people"
- },
- {
- "__typename": "Report",
- "authors": ["Feature News"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 866,
- "source_domain": "gineersnow.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "The First Ever Beauty Contest Judged by Artificial Intelligence",
- "url": "https://gineersnow.com/engineering/software/first-ever-beauty-contest-judged-artificial-intelligence"
- },
- {
- "__typename": "Report",
- "authors": ["Stacy Liberatore", "Abigail Beall"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 865,
- "source_domain": "dailymail.co.uk",
- "submitters": ["Roman Yampolskiy"],
- "title": "Is AI RACIST? Robot-judged beauty contest picks mostly white winners out of 6,000 contestants",
- "url": "https://www.dailymail.co.uk/sciencetech/article-3781295/Is-AI-RACIST-Robot-judged-beauty-contest-picks-white-winners-6-000-submissions.html"
- },
- {
- "__typename": "Report",
- "authors": ["Sam Levin"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 864,
- "source_domain": "theguardian.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "A beauty contest was judged by AI and the robots didn't like dark skin",
- "url": "http://www.theguardian.com/technology/2016/sep/08/artificial-intelligence-beauty-contest-doesnt-like-black-people"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "the-dao",
- "name": "The DAO"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "the-dao",
- "name": "The DAO"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "dao-token-holders",
- "name": "DAO Token Holders"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [
- 905, 903, 902, 901, 900, 899, 898, 897, 896, 893, 892, 889, 888, 887, 886, 885, 884,
- 883, 881, 880, 879, 878, 877, 876
- ],
- "vector": [
- -0.0661667212843895, 0.09495183080434799, 0.010774415917694569, -0.0843186303973198,
- 0.07742074877023697, 0.002700377954170108, -0.0008173985406756401, 0.057413578033447266,
- 0.09605775028467178, -0.1488141417503357, 0.004636809695512056, 0.05968795344233513,
- 0.021845035254955292, -0.0762571468949318, 0.04533643648028374, -0.09069175273180008,
- -0.15813405811786652, -0.022130673751235008, -0.042528972029685974,
- -0.10905041545629501, -0.07701637595891953, 0.012940806336700916, 0.018910806626081467,
- 0.11774744838476181, -0.04104795679450035, 0.04697092995047569, 0.12957395613193512,
- 0.12819425761699677, -0.058150216937065125, 0.06893474608659744, -0.018372666090726852,
- -0.09186699986457825, 0.15362109243869781, 0.028102269396185875, 0.025071216747164726,
- 0.09713421016931534, 0.01256798580288887, -0.01616877131164074, -0.041066594421863556,
- -0.017975831404328346, 0.044571682810783386, 0.2357323318719864, -0.03317007049918175,
- -0.027484485879540443, 0.05428558960556984, -0.04763684794306755,
- -0.000010566697710601147, 0.04871894046664238, 0.0070588416419923306,
- 0.004973179195076227, -0.026652388274669647, -0.008015204221010208,
- -0.07091150432825089, 0.033345308154821396, -0.09143518656492233, 0.061592280864715576,
- 0.03615380451083183, 0.03313060477375984, 0.07367609441280365, -0.04913125932216644,
- -0.01810459792613983, -0.20834849774837494, -0.05211314558982849, -0.03780398145318031,
- 0.08887007087469101, -0.08282432705163956, -0.02316044457256794, 0.03807034716010094,
- 0.003166689770296216, 0.048870425671339035, 0.053769540041685104, -0.029292000457644463,
- -0.002758365822955966, 0.035534992814064026, 0.01716659404337406, -0.009857158176600933,
- -0.01820841059088707, 0.1924063116312027, -0.10551274567842484, 0.015695957466959953,
- 0.08622416853904724, -0.09239751845598221, 0.3837597668170929, -0.00003496369390632026,
- -0.06069179251790047, -0.02606315352022648, 0.12018977850675583, 0.0050528384745121,
- 0.03152324631810188, 0.0403270348906517, -0.025558656081557274, 0.04960830882191658,
- -0.05975503847002983, -0.03103153593838215, 0.05772930011153221, 0.0396592952311039,
- -0.0018726816633716226, 0.0107951695099473, -0.025373486801981926,
- -0.028895430266857147, 0.024420717731118202, -0.07865981012582779, 0.10167545080184937,
- 0.08524877578020096, -0.05940742790699005, -0.006057963240891695, 0.06243671104311943,
- -0.056733157485723495, 0.06139994040131569, -0.07574266940355301, 0.0216194037348032,
- -0.007321906741708517, 0.05265502631664276, -0.025458944961428642, 0.02595309354364872,
- -0.015414812602102757, 0.02327638864517212, 0.03251353278756142, 0.06957828998565674,
- 0.049125488847494125, -0.023909522220492363, 0.057829465717077255, 0.036426953971385956,
- -0.07245929539203644, 0.007933235727250576, -0.059332478791475296, -0.0435311533510685,
- -0.047337573021650314, -0.04053480550646782, 0.03915426507592201, -0.06534258276224136,
- -0.2260957807302475, 0.015165231190621853, 0.060068678110837936, -0.0034208225551992655,
- -0.026531696319580078, 0.04104552045464516, -0.07288438826799393, 0.018118413165211678,
- -0.014951043762266636, -0.049901094287633896, 0.0704021230340004, -0.017830973491072655,
- 0.051336515694856644, 0.13087646663188934, 0.04126317426562309, -0.06066800281405449,
- -0.03640735521912575, 0.0299614816904068, -0.02631322294473648, 0.10236970335245132,
- -0.1225552037358284, -0.027694450691342354, -0.026750773191452026,
- -0.022465072572231293, 0.6963229775428772, 0.06071530655026436, 0.1349962204694748,
- 0.0029604679439216852, -0.010627356357872486, 0.1805461049079895, 0.009208586066961288,
- 0.06478998810052872, -0.04796625301241875, -0.05369967222213745, 0.03317221999168396,
- -0.07248315960168839, -0.04857209697365761, 0.021922463551163673, -0.014980182982981205,
- 0.07153782248497009, 0.033672574907541275, 0.08822420984506607, -0.009559323079884052,
- -0.08002188056707382, -0.02796768955886364, 0.04889626428484917, -0.002079806989058852,
- -0.12316332012414932, -0.00598991708829999, 0.04790058732032776, 0.08986284583806992,
- -0.06529728323221207, 0.0019114370224997401, -0.03926361724734306, 0.043254926800727844,
- -0.016697514802217484, 0.06446542590856552, -0.015036128461360931, 0.048525601625442505,
- 0.022319965064525604, 0.04527026414871216, -0.020831571891903877, -0.08953225612640381,
- -0.006588423624634743, 0.1359531283378601, -0.002234226791188121, -0.030231744050979614,
- 0.1041426882147789, -0.11253884434700012, 0.0400945320725441, 0.0055610924027860165,
- 0.19018787145614624, -0.17008160054683685, 0.021101707592606544, -0.00634838966652751,
- -0.013233933597803116, 0.043402597308158875, 0.0033622318878769875,
- -0.06131330132484436, -0.056475479155778885, 0.0574350506067276, 0.015077848918735981,
- 0.034125734120607376, 0.07870019972324371, -0.027285316959023476, 0.05490930378437042,
- 0.05595440790057182, 0.019953204318881035, -0.047013092786073685, 0.061499033123254776,
- 0.02760140411555767, -0.006400404032319784, -0.01763268932700157, -0.01890098862349987,
- 0.0064741335809230804, 0.03504158556461334, 0.001586462720297277, 0.06483786553144455,
- -0.0428876094520092, -0.032916028052568436, 0.01864536665380001, 0.06462439149618149,
- 0.0023124387953430414, 0.08506456017494202, -0.06751906871795654, -0.027384648099541664,
- -0.037361446768045425, -0.02647651731967926, 0.05260567367076874, -0.014446704648435116,
- 0.06518206745386124, 0.08603981137275696, 0.09696471691131592, 0.0062536210753023624,
- 0.048122942447662354, 0.017186813056468964, 0.026083774864673615, 0.019874846562743187,
- 0.07057034224271774, -0.02904350310564041, -0.05003984272480011, -0.01425819844007492,
- -0.001251187059096992, 0.04657392203807831, 0.007774615194648504, -0.09506087750196457,
- -0.020778952166438103, -0.07087522745132446, -0.024529092013835907, -0.0887717679142952,
- -0.060240041464567184, 0.020624155178666115, 0.046308714896440506,
- -0.040538158267736435, -0.09442443400621414, -0.06354733556509018, 0.006772881373763084,
- 0.06922020763158798, -0.00778896315023303, -0.021353259682655334, -0.124875009059906,
- 0.004535881336778402, -0.06257758289575577, 0.036274638026952744, 0.006892743986099958,
- -0.021391555666923523, -0.015682250261306763, -0.04881167784333229, 0.01879616267979145,
- -0.014313933439552784, -0.002905568340793252, -0.07575004547834396,
- -0.06220642849802971, -0.032436590641736984, -0.006158924195915461,
- -0.002058455953374505, -0.05558959022164345, -0.005457794759422541, 0.04193447530269623,
- 0.063014455139637, -0.027310015633702278, -0.03688542917370796, 0.0466887503862381,
- -0.012773402035236359, -0.009203986264765263, 0.08859669417142868,
- -0.016090862452983856, 0.02242548018693924, -0.02983110584318638, -0.07793480902910233,
- -0.033489566296339035, 0.01613295078277588, -0.03415980935096741, 0.03627980500459671,
- -0.016666151583194733, 0.025052055716514587, -0.03267792984843254, 0.020628737285733223,
- 0.03692276030778885, -0.02742244303226471, -0.09069464355707169, -0.04986213520169258,
- 0.1718524694442749, 0.00028678213129751384, -0.0322076715528965, 0.02312176674604416,
- -0.06042476370930672, 0.05028273165225983, -0.00551630137488246, 0.012767993845045567,
- 0.032750293612480164, 0.10601982474327087, -0.0063768420368433, 0.033016130328178406,
- 0.05911942943930626, -0.0034290996845811605, 0.04406482353806496, 0.06185388192534447,
- 0.4226973056793213, -0.1968797892332077, 0.0842713937163353, 0.10632825642824173,
- 0.0010914724553003907, 0.039177585393190384, -0.0801040455698967, 0.04901694133877754,
- 0.08682584017515182, 0.10728341341018677, 0.13156089186668396, -0.018922606483101845,
- 0.019393766298890114, -0.04106520488858223, 0.08649475127458572, -0.029056930914521217,
- -0.0071672541089355946, -0.018303148448467255, -0.06217241659760475,
- -0.004366402048617601, 0.047536689788103104, -0.031071506440639496,
- -0.00480313366279006, -0.0061461725272238255, -0.055548787117004395,
- 0.00788793247193098, 0.057616639882326126, 0.031225956976413727, 0.01318689901381731,
- 0.015787797048687935, -0.019895801320672035, 0.03961948677897453, 0.025899363681674004,
- 0.014753241091966629, -0.1348978728055954, 0.03202307969331741, -0.05162663385272026,
- -0.13509045541286469, 0.09003769606351852, -0.003307627746835351, 0.05749477818608284,
- 0.06454337388277054, -0.021481366828083992, 0.028288818895816803, -0.026615282520651817,
- -0.026294425129890442, 0.008199688978493214, 0.06729302555322647, 0.025896921753883362,
- 0.07375463098287582, 0.16271694004535675, -0.041269026696681976, -0.015906035900115967,
- -0.08949262648820877, 0.05659450963139534, 0.13324247300624847, -0.0464564673602581,
- -0.005015434231609106, -0.001693259458988905, -0.002847062423825264,
- -0.013766842894256115, -0.07604783028364182, -0.05830862745642662, -0.02066342532634735,
- -0.06560307741165161, 0.08522600680589676, 0.04107437655329704, -0.04214470461010933,
- -0.14534230530261993, -0.011104445904493332, -0.032366808503866196, 0.03278728947043419,
- 0.11380184441804886, -0.0666615441441536, 0.040425315499305725, -0.005399531219154596,
- 0.014014272950589657, 0.023620227351784706, -0.07893305271863937, -0.009794498793780804,
- -0.08585638552904129, 0.03401630371809006, 0.07119400054216385, 0.06484425067901611,
- -0.04560472443699837, 0.10027354955673218, -0.09807371348142624, 0.09029466658830643,
- -0.00776924192905426, -0.05461972951889038, 0.048991065472364426, -0.039878834038972855,
- 0.019989730790257454, 0.019362283870577812, -0.04829762503504753, 0.06533920019865036,
- -0.017562834545969963, -0.05175589397549629, -0.07299955189228058, -0.07298615574836731,
- -0.04072772338986397, -0.09242146462202072, 0.07381884753704071, -0.06534093618392944,
- 0.0010574118932709098, -0.020853906869888306, -0.040836818516254425,
- -0.012832515873014927, 0.02487863413989544, 0.03318801149725914, -0.15873613953590393,
- -0.055572014302015305, -0.021044636145234108, 0.03568285331130028, 0.017814001068472862,
- -0.0451168566942215, 0.005319114774465561, 0.057521238923072815, 0.034872833639383316,
- 0.03899437189102173, 0.023746006190776825, -0.051500916481018066, 0.059377770870923996,
- -0.14109168946743011, -0.3940942585468292, 0.04678523913025856, 0.006228484213352203,
- 0.02189958095550537, -0.015611437149345875, -0.05416549742221832, 0.05052398517727852,
- 0.0026056349743157625, -0.03473886474967003, 0.0980633795261383, -0.07380123436450958,
- 0.017081940546631813, -0.061888162046670914, -0.060919493436813354,
- -0.02053762413561344, -0.07007520645856857, -0.049346838146448135, 0.041981007903814316,
- 0.025222048163414, -0.06693807244300842, -0.08524662256240845, 0.06733603030443192,
- -0.021311646327376366, -0.003399507375434041, 0.0076775881461799145,
- 0.024136727675795555, -0.07568683475255966, -0.06720703840255737, -0.016028104349970818,
- 0.061864208430051804, 0.03237927332520485, -0.07795371860265732, -0.005399972666054964,
- 0.038687314838171005, 0.003363342024385929, 0.10057994723320007, 0.003988614305853844,
- -0.015340202488005161, -0.08878466486930847, 0.0977032408118248, 0.06695879250764847,
- 0.18500442802906036, -0.01678348518908024, 0.006111804861575365, 0.004242830444127321,
- 0.11370434612035751, 0.03940612077713013, 0.013183747418224812, -0.030457524582743645,
- 0.01693480648100376, -0.018341096118092537, -0.013356991112232208, 0.09827983379364014,
- -0.05066269263625145, -0.027613507583737373, 0.01687728427350521, -0.01242680475115776,
- -0.023277008906006813, -0.03319449722766876, 0.21616916358470917, 0.03379783406853676,
- 0.042088836431503296, 0.017735781148076057, -0.03290579095482826, 0.017938842996954918,
- -0.10539724677801132, -0.11517835408449173, -0.013451620005071163, 0.000374626339180395,
- 0.021733524277806282, -0.05304350331425667, -0.09813041239976883, -0.027155568823218346,
- 0.013767196796834469, -0.01930530183017254, 0.10336603969335556, -0.021463418379426003,
- 0.03581016883254051, -0.06046905741095543, 0.13518653810024261, 0.031003080308437347,
- 0.017072312533855438, 0.011110997758805752, 0.0667453482747078, 0.04917195439338684,
- -0.0021193886641412973, -0.051941823214292526, -0.05759355053305626,
- 0.020791461691260338, 0.13696010410785675, -0.04596574977040291, 0.1332692801952362,
- 0.02513316459953785, -0.009932330809533596, -0.054872483015060425, 0.03171728178858757,
- 0.013050459325313568, -0.003947978373616934, -0.44521331787109375, -0.05231727287173271,
- 0.1282065063714981, -0.030108973383903503, 0.025894753634929657, 0.09331361204385757,
- 0.03157180920243263, -0.07923457771539688, -0.030358143150806427, -0.05153513327240944,
- 0.11359219998121262, 0.010586780495941639, 0.06787595897912979, -0.13399849832057953,
- 0.02302604913711548, 0.08097248524427414, -0.043132904917001724, -0.01535704080015421,
- 0.05189881846308708, -0.2099890559911728, -0.004585218150168657, -0.05359213426709175,
- 0.11603052169084549, 0.019611136987805367, 0.03128006309270859, 0.09810841828584671,
- -0.06763505190610886, 0.02503429353237152, 0.054650451987981796, 0.002728505292907357,
- 0.06416928023099899, 0.006461964920163155, -0.02583378739655018, 0.10828322172164917,
- 0.08189579099416733, 0.03860188275575638, -0.03500935435295105, 12.041316986083984,
- 0.07135587930679321, 0.07587986439466476, -0.07815652340650558, 0.01789211481809616,
- -0.06088171899318695, 0.042837608605623245, -0.08220500499010086, 0.0217966940253973,
- 0.1364554613828659, 0.0007437678868882358, -0.04616783931851387, -0.029968850314617157,
- -0.07923655956983566, 0.03229570388793945, -0.02203737199306488, -0.04797447845339775,
- -0.0020305009093135595, 0.024356653913855553, -0.03915480151772499,
- -0.06702367961406708, 0.013569020666182041, 0.07913649827241898, -0.0034444101620465517,
- -0.04820480942726135, 0.028118645772337914, 0.02363363839685917, -0.016757983714342117,
- -0.01822235994040966, 0.06246187165379524, -0.02062375284731388, 0.0004203618736937642,
- 0.03233122453093529, -0.030118217691779137, 0.06812857836484909, 0.06541542708873749,
- 0.0953434482216835, 0.03266927972435951, 0.0185119416564703, 0.04870273172855377,
- 0.020875677466392517, 0.005300997290760279, 0.02631889097392559, 0.06798504292964935,
- 0.05154086649417877, 0.015005327761173248, 0.017745381221175194, 0.12363690137863159,
- 0.013060785830020905, 0.08051296323537827, 0.09826701134443283, -0.01794828288257122,
- 0.11512423306703568, 0.022138921543955803, -0.016594456508755684, 0.013868294656276703,
- 0.006469572428613901, -0.09581004828214645, 0.12190597504377365, 0.05028713122010231,
- -0.046826597303152084, 0.10982882231473923, 0.025811506435275078, 0.11328303813934326,
- 0.014556948095560074, 0.08173282444477081, 0.0457267165184021, 0.07863391190767288,
- -0.14725281298160553, -0.07506497949361801, 0.023782463744282722, -0.07605893164873123,
- -0.08246233314275742, 0.08330795168876648, 0.10566451400518417, -0.04493102803826332,
- 0.07607607543468475, -0.04333483800292015, 0.003520787926390767, -0.05823725461959839,
- 0.009233443066477776, 0.024135639891028404, -0.03351334109902382, 0.042286068201065063,
- 0.04909465089440346, 0.033163342624902725, 0.08282016962766647, 0.07227231562137604,
- 0.046822961419820786, -0.05663175508379936, -0.0007530542206950486, 0.10325410962104797,
- -0.006014158949255943, -0.05423947051167488, 0.003947563003748655, -0.04840860143303871,
- 0.0478232316672802, -0.1463749259710312, 0.068173848092556, 0.08410429209470749,
- -0.05504782497882843, -0.023465273901820183, -0.028513863682746887, 0.04851672425866127,
- 0.0020922934636473656, 0.03378622606396675, -0.05709858611226082, 0.0017180262366309762,
- 0.010725595988333225, 0.0572512112557888, -0.02881232462823391, 0.10155069082975388,
- 0.07183052599430084, -0.04418819025158882, 0.07062981277704239, 0.05435023829340935,
- -0.03762836754322052, -0.018741268664598465, 0.04699109122157097, 0.0607602559030056,
- -0.05994049087166786, -0.02827439457178116, -0.02400636114180088, -0.051030974835157394,
- -0.03479217365384102, -0.03554803878068924, -0.015273932367563248,
- 0.00006777645467082039, -0.024866431951522827, -0.024908997118473053,
- 0.04018652066588402, 0.061754241585731506, 0.062193069607019424, -0.0466693639755249,
- 0.039988692849874496, -0.06996554136276245, -0.034812234342098236, 0.04701513424515724,
- 0.05103026703000069, 0.0690593495965004, -0.0636117234826088, -0.045921146869659424,
- -0.05381940305233002, -0.13033494353294373, 0.02399160899221897, 0.09703382849693298,
- 0.05136001110076904, 0.02009364403784275, 0.0055291480384767056, -0.06774132698774338,
- -0.05190951004624367, 0.0539257638156414, 0.10736360400915146, 0.02136417292058468,
- 0.04460662975907326, -0.052776917815208435, -0.029110541567206383, 0.10957958549261093,
- -0.05377667769789696, 0.013081823475658894, -0.005934875924140215, -0.04737425222992897,
- 0.07549577951431274, 0.13798557221889496, 0.013311639428138733, 0.04293627664446831,
- 0.06811729818582535, -0.006506450939923525, 0.04009142145514488, -0.009688236750662327,
- 0.016802940517663956, -0.02174876444041729, -0.0929674506187439, -0.05609692260622978,
- 0.03033480793237686, 0.11118770390748978, 0.03098963014781475, -0.13081684708595276,
- -0.01888337731361389, -0.042367786169052124
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 50,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 38,
- "similarity": 0.9988240599632263
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 6,
- "similarity": 0.9987120628356934
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 26,
- "similarity": 0.9986885786056519
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Antonio Madeira"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 905,
- "source_domain": "cryptocompare.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "The DAO, The Hack, The Soft Fork and The Hard Fork",
- "url": "https://www.cryptocompare.com/coins/guides/the-dao-the-hack-the-soft-fork-and-the-hard-fork/"
- },
- {
- "__typename": "Report",
- "authors": ["Toshendra Kumar Sharma"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 903,
- "source_domain": "blockchain-council.org",
- "submitters": ["Roman Yampolskiy"],
- "title": "Details Of The DAO Hacking In Ethereum In 2016",
- "url": "https://www.blockchain-council.org/blockchain/details-of-the-dao-hacking-in-ethereum-in-2016/"
- },
- {
- "__typename": "Report",
- "authors": ["Phil Daian"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 902,
- "source_domain": "hackingdistributed.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Analysis of the DAO exploit",
- "url": "http://hackingdistributed.com/2016/06/18/analysis-of-the-dao-exploit/"
- },
- {
- "__typename": "Report",
- "authors": ["Emin Gün Sirer"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 901,
- "source_domain": "hackingdistributed.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Thoughts on The DAO Hack",
- "url": "http://hackingdistributed.com/2016/06/17/thoughts-on-the-dao-hack/"
- },
- {
- "__typename": "Report",
- "authors": ["Klint Finley"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 900,
- "source_domain": "wired.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "A $50 Million Hack Just Showed That the DAO Was All Too Human",
- "url": "https://www.wired.com/2016/06/50-million-hack-just-showed-dao-human/"
- },
- {
- "__typename": "Report",
- "authors": ["Osman Gazi Güçlütürk"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 899,
- "source_domain": "medium.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "The DAO Hack Explained: Unfortunate Take-off of Smart Contracts",
- "url": "https://medium.com/@ogucluturk/the-dao-hack-explained-unfortunate-take-off-of-smart-contracts-2bd8c8db3562"
- },
- {
- "__typename": "Report",
- "authors": ["Ben Kaufman"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 898,
- "source_domain": "cryptocurrencyhub.io",
- "submitters": ["Roman Yampolskiy"],
- "title": "The DAO Hack - Stolen $50M \u0026 The Hard Fork.",
- "url": "https://cryptocurrencyhub.io/the-dao-hack-stolen-50m-the-hard-fork-8719fb5f28be"
- },
- {
- "__typename": "Report",
- "authors": ["Rayne Stamboliyska"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 897,
- "source_domain": "blog.bity.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Understanding The DAO hack in 10 questions",
- "url": "https://blog.bity.com/what-the-dao-navigating-the-hack/"
- },
- {
- "__typename": "Report",
- "authors": ["Haseeb Qureshi"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 896,
- "source_domain": "medium.freecodecamp.org",
- "submitters": ["Roman Yampolskiy"],
- "title": "A hacker stole $31M of Ether - how it happened, and what it means for Ethereum",
- "url": "https://medium.freecodecamp.org/a-hacker-stole-31m-of-ether-how-it-happened-and-what-it-means-for-ethereum-9e5dc29e33ce"
- },
- {
- "__typename": "Report",
- "authors": ["Wilton Thornburg"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 893,
- "source_domain": "coincentral.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "The DAO Hack and Blockchain Security Vulnerabilities",
- "url": "https://coincentral.com/blockchain-security-vulnerabilities/"
- },
- {
- "__typename": "Report",
- "authors": ["Joon Ian Wong", "Ian Kar"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 892,
- "source_domain": "qz.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "The Ethereum hard fork: Everything you need to know",
- "url": "https://qz.com/730004/everything-you-need-to-know-about-the-ethereum-hard-fork/"
- },
- {
- "__typename": "Report",
- "authors": ["Reuben Bramanathan"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 889,
- "source_domain": "blog.coinbase.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Blockchains, Smart Contracts and the Law",
- "url": "https://blog.coinbase.com/blockchains-smart-contracts-and-the-law-709c5b4a9895"
- },
- {
- "__typename": "Report",
- "authors": ["Samuel Falkon"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 888,
- "source_domain": "medium.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "The Story of the DAO - Its History and Consequences",
- "url": "https://medium.com/swlh/the-story-of-the-dao-its-history-and-consequences-71e6a8a551ee"
- },
- {
- "__typename": "Report",
- "authors": ["Sergio D. Lerner"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 887,
- "source_domain": "rsk.co",
- "submitters": ["Roman Yampolskiy"],
- "title": "Lessons from the DAO incident",
- "url": "https://www.rsk.co/noticia/lessons-from-the-dao-incident/"
- },
- {
- "__typename": "Report",
- "authors": ["Josiah Wilmoth"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 886,
- "source_domain": "ccn.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Ethereum: We Haven’t Seen the Last of the Bug That Killed the DAO",
- "url": "https://www.ccn.com/ethereum-we-havent-seen-the-last-of-the-bug-that-killed-the-dao"
- },
- {
- "__typename": "Report",
- "authors": ["Christoph Jentzsch"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 885,
- "source_domain": "blog.slock.it",
- "submitters": ["Roman Yampolskiy"],
- "title": "The History of the DAO and Lessons Learned",
- "url": "https://blog.slock.it/the-history-of-the-dao-and-lessons-learned-d06740f8cfa5"
- },
- {
- "__typename": "Report",
- "authors": ["Cole Petersen", "Nick Chong", "Dalmas Ngetich"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 884,
- "source_domain": "newsbtc.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "The DAO Debacle Shows Immaturity of Smart Contract Technology",
- "url": "https://www.newsbtc.com/2016/06/18/dao-debacle-shows-immaturity-smart-contract/"
- },
- {
- "__typename": "Report",
- "authors": ["Rob Price"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 883,
- "source_domain": "businessinsider.com.au",
- "submitters": ["Roman Yampolskiy"],
- "title": "Digital currency Ethereum is cratering because of a $50 million hack",
- "url": "https://www.businessinsider.com.au/dao-hacked-ethereum-crashing-in-value-tens-of-millions-allegedly-stolen-2016-6?r=US\u0026IR=T"
- },
- {
- "__typename": "Report",
- "authors": ["Alice Kohn"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 881,
- "source_domain": "futurism.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "The Failure of The DAO: Should We Regulate Cryptocurrency?",
- "url": "https://futurism.com/the-failure-of-the-dao-should-we-regulate-cryptocurrency"
- },
- {
- "__typename": "Report",
- "authors": ["Gideon Greenspan"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 880,
- "source_domain": "multichain.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Smart contracts and the DAO implosion",
- "url": "https://www.multichain.com/blog/2016/06/smart-contracts-the-dao-implosion/"
- },
- {
- "__typename": "Report",
- "authors": ["Frances Coppola"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 879,
- "source_domain": "forbes.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Ethereum's DAO Hacking Shows That Coders Are Not Infallible",
- "url": "https://www.forbes.com/sites/francescoppola/2016/06/20/the-dao-hacking-shows-that-coders-are-not-infallible/#5ca82d4f3983"
- },
- {
- "__typename": "Report",
- "authors": ["Emma Avon"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 878,
- "source_domain": "coincodex.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "The DAO hack - what happened and what followed?",
- "url": "https://coincodex.com/article/50/the-dao-hack-what-happened-and-what-followed/"
- },
- {
- "__typename": "Report",
- "authors": ["David Siegel"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 877,
- "source_domain": "coindesk.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Understanding The DAO Attack",
- "url": "https://www.coindesk.com/understanding-dao-hack-journalists"
- },
- {
- "__typename": "Report",
- "authors": ["Wikipedia Editors"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 876,
- "source_domain": "en.wikipedia.org",
- "submitters": ["Roman Yampolskiy"],
- "title": "The DAO (organization)",
- "url": "https://en.wikipedia.org/wiki/The_DAO_(organization)"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "stanford-shopping-center",
- "name": "Stanford Shopping Center"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "knightscope",
- "name": "Knightscope"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "child",
- "name": "Child"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [
- 959, 958, 957, 956, 955, 954, 953, 952, 951, 950, 949, 948, 946, 945, 944, 943, 942,
- 940, 939, 938, 936, 935, 934, 933, 932, 931
- ],
- "vector": [
- -0.08088505941514786, 0.07685461654686011, 0.016952540541891582, -0.12154044497471589,
- 0.08744157306276835, -0.012895165436650412, -0.015561729427785255, 0.03609502159927685,
- 0.09223489606609711, -0.11592274846938941, 0.011513886243427316, 0.0670298279191439,
- 0.016717467685409177, -0.07371050477601014, 0.031760847016882435, -0.08026543682297835,
- -0.041441610136714116, -0.0585127397834395, -0.011600219886391781, -0.14463246900301713,
- -0.06205553411004635, -0.01158975138185689, 0.0401992423621078, 0.11813979739179978,
- -0.04634977243124293, 0.01543390673871797, 0.08252573643739407, 0.10672604607848021,
- -0.02562448675654685, 0.025836406099887636, -0.021383123916726057, -0.08720507501409604,
- 0.10770866575722511, -0.005263585445041267, -0.003714167297472998, 0.1039125555409835,
- 0.02720107416658161, -0.00988885907729407, -0.03443262690248398, -0.010748525181462845,
- -0.010135385816773543, 0.2080766375248249, 0.006289002899743186, -0.06759784542597257,
- 0.056196918442415505, -0.02554985656976127, -0.009383986175705034, 0.0688027864178786,
- -0.004225295818357084, 0.013161579993231079, 0.007736059288548019, 0.0457546256410961,
- -0.037031372722524866, 0.012306131422519684, -0.11784027330577374, 0.06815702217416121,
- 0.05520849094654505, 0.0017523237127953996, 0.06317845431084816, -0.0651748629931647,
- -0.019046705628100496, -0.19821142118710738, -0.03073888547414054, -0.08486430078315046,
- 0.07126530603720592, -0.05646685904894884, -0.05047658017764871, 0.018931364595818404,
- 0.01797774854975824, 0.0707839705909674, 0.06930650827976373, -0.011585515011504937,
- -0.014679847130677305, -0.011518033658761011, 0.0027117787573773125,
- -0.0013390269282703789, 0.009166675279490076, 0.2541739602501576, -0.1347039410701165,
- 0.01956692457987139, 0.12625712242264014, -0.09870322048664093, 0.4098096535756038,
- 0.013960774164073743, -0.005847442913084076, -0.04289928412897727, 0.07897370108045064,
- 0.018060868964172326, 0.023355252534831658, 0.06084074309239021, -0.030509939222471215,
- 0.020409416308841452, -0.06400043270192467, 0.016891767573095143, 0.07008995173069146,
- 0.020780516071961477, -0.04206042872885099, 0.023146167433319185, -0.005738882448685427,
- -0.06750558316707611, -0.008228659638776802, -0.041903421927530035, 0.06982886261091782,
- 0.0649231796940932, -0.022921401765555717, 0.01737183352592043, 0.06883507985325056,
- -0.05949174949469475, 0.07004954622915158, -0.07295274433608238, 0.031095659897591058,
- 0.005262275074178783, 0.05650142007149183, -0.004882159557802459, 0.00579813919074905,
- -0.0453530908204042, 0.038606986367645174, 0.05114339249065289, 0.09067393681750847,
- 0.02164921468983476, -0.004642902998826825, 0.05073230885542356, 0.08385304734110832,
- -0.04845037960666769, -0.004300128126767679, -0.05860281449097853, -0.03723949059629096,
- -0.02460786181752785, -0.037002390823685206, 0.059299653969131984, -0.0401636955793947,
- -0.2252665265248372, 0.023841191491905753, 0.1086556722338383, 0.019129649283758435,
- -0.03348982613533735, 0.02069955372420596, -0.07909262982698587, 0.034906027077410653,
- -0.0327992082694926, -0.06857546304280941, 0.03383515890723524, 0.05635962577966543,
- 0.0479350034863903, 0.1184963220014022, 0.04435558798006521, -0.04312162448723729,
- -0.03259372281340452, -0.00417502133999593, -0.008029590468280591, 0.10717630773209609,
- -0.13408246034613022, -0.05336500983685255, 0.02566671006542702, -0.023787570060588993,
- 0.6430309162690089, 0.0839391782020147, 0.1876760543538974, 0.0016233133176753584,
- -0.01319230950768822, 0.17419343040539667, -0.030890568195340726, 0.04040449059875055,
- -0.05396100735435119, -0.05578021518886089, 0.02080294955521822, -0.06551061112147111,
- -0.03172881969322379, 0.043470334798957296, 0.001168123567297768, 0.11479960525265107,
- 0.03224000873832175, 0.1053503227348511, 0.000787901221953619, -0.08556773814444359,
- -0.054074552411643356, 0.03265980320821445, 0.012750995528991692, -0.10034394737046498,
- -0.03908693743869662, 0.03884265267809566, 0.09897575985926849, -0.09474136794988926,
- 0.0018818797095893668, -0.047754101508941785, 0.01950866557084597, -0.03169733459631411,
- 0.052182837890890926, -0.04103538723519215, 0.06847019072693701, 0.053993109816264435,
- 0.059813808649778366, 0.004488835879713476, -0.11072212973466286, -0.026754594519913483,
- 0.13633960026961106, -0.005783766551758163, -0.020539610266076543, 0.05586578259960963,
- -0.08801114272612792, 0.026467011937011894, -0.02401473781747672, 0.1323992830629532,
- -0.10643528387523614, 0.017443066525559586, 0.011724767696040753, 0.006867151018573518,
- 0.054417793495723836, -0.003390082008151624, -0.0907617320234959, -0.051425781745750174,
- 0.1047215905900185, 0.025251621913272314, 0.05079930370601897, 0.06808737593774612,
- -0.03159452391712246, 0.050201352327488936, 0.11455423900714287, -0.003089065896347165,
- 0.010519782773022039, 0.043322367092164665, 0.05128104565665126, -0.017315567650187474,
- -0.008913773004538737, 0.019200056073784184, 0.026438720403418232, 0.04071168624795973,
- 0.0019910748277862486, 0.07062176915888603, 0.010295476196356153, -0.05133020842018036,
- 0.022828627109097745, 0.006480613210442243, -0.0009480675754065698, 0.1132734392124873,
- -0.06605817567413816, -0.045866456849930376, -0.02449551337541869, -0.0408941472414881,
- 0.014345962339295791, -0.04812174414893469, 0.09904320351779461, 0.07929262296798137,
- 0.07354533801285121, 0.05814760765777184, 0.03588695221025354, 0.057286146455086194,
- 0.05722905244105137, 0.0023967073245260576, 0.036659080432190634, -0.03273541947755103,
- -0.05044921539508952, -0.033476158640741445, 0.02002933983553353, 0.04288713819830893,
- 0.05714011974990941, -0.0859613987402274, -0.02951783651056198, -0.05131431077965177,
- -0.05271181168679435, -0.06826573904030599, -0.03515468729444994, 0.01812569303617168,
- 0.041790831341551475, -0.04783559184131893, -0.09435113390477803, -0.10499542851287585,
- 0.022453618146335848, 0.07482212566985534, -0.03137445104165146, -0.020716597684300862,
- -0.12473985180258751, 0.01838425761581255, -0.029629410799736015, 0.04080726091678326,
- -0.0007839048317132088, -0.0009534804848954082, -0.0024439962222599066,
- -0.04742721557760468, 0.03549349078765282, -0.018410992951920398, -0.02310184683301486,
- -0.07939613487822218, -0.031136101953542, -0.05126297832108461, -0.003703274647705257,
- -0.008185038999027502, -0.047769284225068986, 0.02935072758163397, 0.04062193001692112,
- 0.0433534722094639, 0.006428153774602554, -0.035089001771456636, 0.05429489136888431,
- -0.030002983631745268, -0.0016060266643762589, 0.06686754438739556,
- -0.023787577278338946, 0.02778548922511758, -0.003886611456087289, -0.07174741559160444,
- -0.010228500173140604, 0.02546729101315857, -0.04426465240808634, 0.03736621911565845,
- -0.019855707944281258, 0.0188346302199464, -0.0557005236355158, -0.011115677941303987,
- 0.06398658855603291, -0.0619053549061601, -0.0651403098868636, -0.08013199011866863,
- 0.09008234144689944, 0.005830153088586835, -0.001672412425530358, 0.010564061533211945,
- -0.040693762322637037, 0.05787890762663805, 0.006838776558512249,
- -0.0030847295062043346, 0.019113030866719782, 0.047872733378496304,
- -0.0068027711016699095, -0.0070458227911820775, 0.061398353356008344,
- -0.010902990317285562, 0.009266902280684847, 0.06228213649816238, 0.42842300006976497,
- -0.2379334970162465, 0.10948570387867781, 0.10343426508972278, 0.029079258550504725,
- 0.0704449716095741, -0.019069175844868787, 0.05324295879556583, 0.06398426426144746,
- 0.11429758627827351, 0.06499155069916294, -0.020722824739865385, -0.02188895203961203,
- -0.07127485768153118, 0.08002569770010617, 0.022100850818857837, 0.01734756772370579,
- -0.02025515816281908, -0.08197373918329294, -0.058016592636704445, 0.027272959415523264,
- -0.0480459351092577, 0.005774915737744708, 0.013241682756835451, -0.02738883837054555,
- 0.029123459611302957, 0.033020802039223224, 0.04400332952634646, -0.04151688129282915,
- 0.020574548598513223, -0.06962118913921025, 0.09034429777127045, 0.030716005354546584,
- 0.03985905650747904, -0.11607604330548874, 0.04632231776486151, -0.06429237327896632,
- -0.09199939782802875, 0.07978025150413696, -0.021955312077457514, 0.04096356306511622,
- 0.03187006153166294, -0.053653681077636205, 0.020372003312961448, -0.011212473027766325,
- -0.056375374301121786, 0.010724889765977142, 0.07194218211449109, 0.040068741816167645,
- 0.0663115677710336, 0.1758080176435984, -0.03794767926088893, -0.05122727344636447,
- -0.06993108271406247, 0.07708425719577533, 0.11746107056163825, -0.053364492737903044,
- -0.009754784029120436, -0.02472393602007427, -0.030034312029154256,
- -0.008872199785680724, -0.0659007064711589, -0.0648421562778262, -0.021148982748854905,
- -0.028873038164769802, 0.063829983656223, 0.003978528449526773, -0.030418021676058952,
- -0.1839590147137642, -0.009084387109256707, -0.050723273342905134, 0.003748769754355845,
- 0.13324784057644698, -0.036939706975737445, 0.03822938299988611, 0.03740041002702828,
- -0.036999382150287814, 0.0005591722169461158, -0.0902811548171135, 0.028854449476616886,
- -0.03209350141696632, 0.033750634329268135, 0.049505457371616594, 0.02607390807511715,
- -0.02996504455446624, 0.0553794084295917, -0.09748432856912796, 0.05540472204582049,
- 0.022200796569310254, 0.001965896098856599, 0.05235327230408215, -0.046275721361430794,
- 0.03263382773058346, 0.03827625973365055, -0.05522293819544407, 0.018753799359099224,
- -0.0030602155792831373, -0.042090518503055833, -0.08684443195278828,
- -0.06070222447697933, -0.024384089747819908, -0.06325960687648219, 0.04562773774019801,
- -0.09000304541908778, -0.012662258787223926, -0.02712225872808351, -0.03110247626542472,
- 0.022375070425019097, 0.034251022337300055, 0.02923767599545849, -0.12775267889866462,
- 0.03305954027634401, -0.02305326146513555, 0.0667320663252702, -0.01956899634275872,
- -0.0399286719576384, 0.038249278226150915, 0.13413639567219293, 0.07360880334789936,
- 0.0025781620777427005, -0.007163098398730374, -0.0677528867784601, 0.03239802147660297,
- -0.1115430170813432, -0.5018903773564559, 0.04480999552358229, 0.010229453381795723,
- 0.0414777289216335, 0.03667330786657448, -0.027400568454490546, 0.028562041671158604,
- 0.0005327317317446264, -0.033625114852419265, 0.0816685245014154, -0.06953271822287486,
- 0.0034567989776125895, -0.006937440439987068, -0.06449230323778465,
- -0.03538542893231632, -0.09098667393510158, -0.028777970650340788, 0.049597315749941535,
- -0.023478182093150772, -0.07387845454594263, -0.1215419087272424, 0.015251965656016882,
- -0.009677386310963461, 0.024532346905638967, -0.0290723989959448, 0.005253038978060851,
- -0.06220014486461878, -0.05015331162856175, 0.03726495006300796, 0.06253381202427241,
- 0.042620155351379745, -0.08474617007260139, -0.04819610270743187, 0.04911682599609216,
- -0.005663472324018725, 0.1512621440566503, 0.027855105698108673, -0.0101806427925252,
- -0.044022174265522226, 0.0738692762903296, 0.05387131619052245, 0.18648522060651046,
- -0.01520364830055489, 0.058882355295981355, 0.004135393027144556, 0.12968065145497137,
- 0.015563931141514331, 0.029038862943147812, -0.026518283492455687,
- -0.012006701722454566, 0.030584273841948464, -0.036789128941913635, 0.06014693605426986,
- -0.06804711250767398, -0.04345607213102854, -0.009534563215521093,
- -0.021794337438992582, -0.015718986880249128, 0.05298986396967219, 0.16391357521598154,
- 0.02485434161588693, 0.04141686953460941, -0.00011818145867437124, -0.05554037297574373,
- 0.0031958483040608163, -0.03638504522566039, -0.0778216731089812,
- -0.0016511101812983935, -0.00007804279000713275, -0.007782395096280827,
- -0.03935708843458157, -0.10434204769822267, -0.004608641074110682, -0.00788917423834881,
- 0.001176073220379364, 0.09409789483134563, -0.012248152992329918, 0.04909280429665859,
- -0.053320364166910834, 0.12407813020623647, 0.02191033769542208, 0.016111408275229715,
- 0.05811689951672004, 0.10295422188937664, 0.03923831647261977, 0.013374086630602296,
- -0.04597161343106283, -0.017930130187708598, -0.013668788337292006, 0.10412279444818313,
- -0.05539653156525814, 0.10321316896722867, 0.05518786981701851, -0.003594865879187217,
- -0.043470801337837026, 0.038222758627783224, -0.01987523780945384, 0.026077155458131947,
- -0.4848586767911911, -0.02203073912040474, 0.11691256440602817, 0.025141726624077328,
- 0.009138771188820382, 0.09055130011760272, 0.023084375559567258, -0.025206521690751497,
- -0.025515059618136056, -0.0394638954446866, 0.09572195985282843, 0.00495985592267691,
- 0.07210154315600029, -0.09321819775952743, 0.041093015971665196, 0.061723056177680306,
- -0.026603130041621625, -0.018432669601259895, 0.07647918823819894, -0.2108609859759991,
- 0.0201489145312315, -0.015382878659203505, 0.1451591941026541, 0.04441590539108102,
- 0.00021467893888117172, 0.06991023555971108, -0.05121867956880193, 0.07650441117584705,
- 0.09054193975260624, 0.011260256296596848, 0.07102733449294017, 0.014150338681737104,
- -0.025781184566977363, 0.10885594212091886, 0.07883715314360765, 0.08901809055644733,
- -0.00965688144788146, 11.95030087691087, 0.05612218602058979, 0.050300789782061026,
- -0.07385757464306572, 0.05862530881467347, -0.07537188595877244, 0.016687349364824165,
- -0.09293203329098805, 0.05637732320106947, 0.10655964323534416, -0.011776174369375579,
- -0.048960771053456344, -0.038697068292934164, -0.09959252085536718,
- 0.008673774752353963, -0.05626606873164956, -0.06052719780172293, -0.043309505527409226,
- 0.046347826826744355, -0.04905753095562641, -0.03395174857443915, 0.07398589987021226,
- 0.04164894063097353, 0.020168952661781356, -0.07888953251620898, 0.02626795151557487,
- 0.039109737845137715, -0.009511180842449764, -0.001950004487298429, 0.01916860515036835,
- -0.009510568043109603, 0.055271827759077914, 0.016445770340326887,
- -0.012699484637078758, 0.02020401899398376, 0.03073985580480299, 0.046077139424876526,
- 0.0636633662506938, 0.041607154139245935, 0.09824864860050954, 0.05003948144328136,
- 0.021983995912775684, 0.03443831576106067, 0.01196584430447099, 0.05934974185835857,
- 0.006595177880416696, 0.015348462190908881, 0.13254053231615287, 0.004049595391664367,
- 0.05144281324464828, 0.10363575128408578, -0.02163735212973104, 0.12952707134760344,
- 0.02736291095453243, -0.01597103114741353, 0.04621692933142185, 0.01777515256813226,
- -0.08345696845879921, 0.0699279592730678, 0.06213339332204599, -0.059169241558545485,
- 0.09955069981515408, -0.0028157946670454783, 0.08722621188140832, -0.047735002178412214,
- 0.052789604685340934, 0.0821781402023939, 0.08272951368529063, -0.08776132397067088,
- -0.05815066475994312, 0.03944042862321322, -0.09615343536895055, -0.08439228569085781,
- 0.042917377745302826, 0.1145229939944469, -0.04439635245272747, 0.07057407515374227,
- -0.0660256605881911, 0.018881341558881104, -0.029030543940070156, 0.008272319114229713,
- 0.05296069526901612, -0.004258030226292948, 0.014349646042459287, 0.04798523793802955,
- 0.042989986984489054, 0.06284628421641313, 0.06059935600317728, -0.003077450871037749,
- -0.10323294252157211, -0.09602988769228642, 0.12615082326989907, -0.03192367774541848,
- -0.06817845659903608, 0.0003852294041560246, -0.030001111794263124, 0.065540626215247,
- -0.13274899196739381, 0.07033584825694561, 0.09391798623479329, -0.07786880154162645,
- 0.01003119504177728, -0.04520302634829512, 0.05950711567241412, -0.017359293941318847,
- 0.046566786674352795, -0.06832750177440736, 0.00945515982591762, 0.006400346519232978,
- 0.04158677116860277, -0.0244010765141306, 0.021230828249827027, 0.08678370699859582,
- -0.077688353924224, 0.024468551891354415, 0.04323161880557354, -0.034195789988958634,
- -0.029126167548103973, 0.06836400245531248, 0.0360452338511375, -0.050797237119135946,
- -0.03391173129113248, -0.04044189486795893, -0.034464690364145026, -0.05151452546795973,
- -0.02906768647237466, -0.00020241863631571716, 0.0315424678578543, -0.08023137964594823,
- -0.02180606888410134, 0.03303232909708571, 0.04257297043043833, 0.07834041526970956,
- 0.006752604076889559, 0.062421852436203226, -0.05210956212025709, -0.03543709339954568,
- 0.04850949465225522, 0.041264768242119595, 0.0739689410592501, -0.028654482037102122,
- -0.025717544136568904, -0.044135000055226, -0.10275752871082379, 0.0021475185684931395,
- 0.09690741091393508, 0.049352139771844335, 0.045085856708912894, 0.01704964105738327,
- -0.07595942839263724, -0.03705202572298451, 0.08907377189741685, 0.016686446552809615,
- 0.0061153467350567765, 0.04847126654707468, -0.09097039241057175, -0.02111877842197338,
- 0.1087622596667363, -0.04912050569859835, 0.01028002955717966, 0.006122331282732865,
- -0.010150474205147475, 0.09847374883695291, 0.10011452583309549, 0.02755055847004629,
- 0.043767780101356596, 0.018985823213230245, -0.015496389143383848,
- -0.0063472823665226595, -0.03482933097984642, 0.004970605163320075,
- -0.0030788867376171625, -0.12704837293579027, -0.08857758787388985,
- 0.015190965281083034, 0.087740157945798, 0.003141085550081558, -0.1304519517490497,
- -0.047129307981007375, -0.02098691034524773
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 51,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 68,
- "similarity": 0.9992809891700745
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 24,
- "similarity": 0.9990684390068054
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 20,
- "similarity": 0.999035120010376
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Knightscope"],
- "epoch_date_downloaded": 1655942400,
- "epoch_date_modified": 1670371200,
- "epoch_date_submitted": 1655856000,
- "flag": null,
- "report_number": 1765,
- "source_domain": "businesswire.com",
- "submitters": ["Sean McGregor"],
- "title": "Knightscope Issues Field Incident Report",
- "url": "https://www.businesswire.com/news/home/20160713006532/en"
- },
- {
- "__typename": "Report",
- "authors": ["Josh Hrala"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 959,
- "source_domain": "sciencealert.com",
- "submitters": ["Anonymous"],
- "title": "A Mall Security Robot Has Knocked Down And Run Over a Toddler in Silicon Valley",
- "url": "https://www.sciencealert.com/a-mall-security-robot-recently-knocked-down-and-ran-over-a-toddler-in-silicon-valley"
- },
- {
- "__typename": "Report",
- "authors": ["Ananya Bhattacharya"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 958,
- "source_domain": "qz.com",
- "submitters": ["Anonymous"],
- "title": "A robot mall cop did more harm than good",
- "url": "https://qz.com/730086/a-robot-mall-cop-did-more-harm-than-good/"
- },
- {
- "__typename": "Report",
- "authors": ["Cara McGoogan"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 957,
- "source_domain": "telegraph.co.uk",
- "submitters": ["Anonymous"],
- "title": "Robot security guard knocks over toddler at shopping centre",
- "url": "https://www.telegraph.co.uk/technology/2016/07/13/robot-security-guard-knocks-over-toddler-at-shopping-centre/"
- },
- {
- "__typename": "Report",
- "authors": ["Steve Crowe"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 956,
- "source_domain": "roboticsbusinessreview.com",
- "submitters": ["Anonymous"],
- "title": "K5 Security Robot Runs Over Toddler at California Mall [Updated]",
- "url": "https://www.roboticsbusinessreview.com/security/security_robot_runs_over_toddler_at_california_mall/"
- },
- {
- "__typename": "Report",
- "authors": ["Georgia Wells"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 955,
- "source_domain": "wsj.com",
- "submitters": ["Anonymous"],
- "title": "Security Robot Suspended After Colliding With a Toddler",
- "url": "https://www.wsj.com/articles/security-robot-suspended-after-colliding-with-a-toddler-1468446311"
- },
- {
- "__typename": "Report",
- "authors": ["Steven Hoffer"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 954,
- "source_domain": "huffingtonpost.com",
- "submitters": ["Anonymous"],
- "title": "300-Pound Security Robot Runs Over Toddler At California Shopping Center",
- "url": "https://www.huffingtonpost.com/entry/security-robot-toddler_us_57863670e4b03fc3ee4e8f3a"
- },
- {
- "__typename": "Report",
- "authors": ["David Gabel"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 953,
- "source_domain": "geekologie.com",
- "submitters": ["Anonymous"],
- "title": "300-Pound Mall Security Guard Robot Goes Rogue, Knocks Down Kid, Runs Him Over",
- "url": "https://geekologie.com/2016/07/300-pound-mall-security-robot-goes-rogue.php"
- },
- {
- "__typename": "Report",
- "authors": ["Angry Asian Man"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 952,
- "source_domain": "blog.angryasianman.com",
- "submitters": ["Anonymous"],
- "title": "Mall security robot injures toddler",
- "url": "http://blog.angryasianman.com/2016/07/mall-security-robot-injures-toddler.html"
- },
- {
- "__typename": "Report",
- "authors": ["Hannah Knowles"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 951,
- "source_domain": "mercurynews.com",
- "submitters": ["Anonymous"],
- "title": "Stanford Shopping Center: Mall docks robot cops after kid hit",
- "url": "https://www.mercurynews.com/2016/07/12/stanford-shopping-center-mall-docks-robot-cops-after-kid-hit/"
- },
- {
- "__typename": "Report",
- "authors": ["Melia Robinson"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 950,
- "source_domain": "businessinsider.com.au",
- "submitters": ["Anonymous"],
- "title": "A real-life robocop patrolling Silicon Valley allegedly ran over a child in a mall",
- "url": "https://www.businessinsider.com.au/robotic-mall-cop-injury-at-stanford-mall-2016-7?r=US\u0026IR=T"
- },
- {
- "__typename": "Report",
- "authors": ["Alfred Ng"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 949,
- "source_domain": "nydailynews.com",
- "submitters": ["Anonymous"],
- "title": "300-pound security robot goes haywire, runs over 1-year-old boy at California mall",
- "url": "https://www.nydailynews.com/news/national/security-robot-haywire-runs-boy-1-calif-mall-article-1.2708975"
- },
- {
- "__typename": "Report",
- "authors": ["Sara Morrison"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 948,
- "source_domain": "vocativ.com",
- "submitters": ["Anonymous"],
- "title": "The Future Is Here: A Mall Security Robot May Have Run Over A Child",
- "url": "https://www.vocativ.com/339435/the-future-is-here-a-mall-security-robot-may-have-run-over-a-child/index.html"
- },
- {
- "__typename": "Report",
- "authors": ["Melia Robinson", "Tech Insider"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1665964800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 946,
- "source_domain": "thisisinsider.com",
- "submitters": ["Anonymous"],
- "title": "Robotic mall cop injured toddler at Stanford shopping center",
- "url": "https://www.thisisinsider.com/robotic-mall-cop-injury-at-stanford-mall-2016-7"
- },
- {
- "__typename": "Report",
- "authors": ["Selena Larson"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 945,
- "source_domain": "dailydot.com",
- "submitters": ["Anonymous"],
- "title": "Security robot injures 16-month-old child at California mall",
- "url": "https://www.dailydot.com/debug/robot-runs-into-child-injury/"
- },
- {
- "__typename": "Report",
- "authors": ["Dan Van Winkle"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 944,
- "source_domain": "themarysue.com",
- "submitters": ["Anonymous"],
- "title": "Dalek Security Robot Runs Over Toddler's Leg",
- "url": "https://www.themarysue.com/dalek-bot-runs-over-kid/"
- },
- {
- "__typename": "Report",
- "authors": ["Mark Kaufman"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 943,
- "source_domain": "mashable.com",
- "submitters": ["Anonymous"],
- "title": "This 400-pound, sidewalk-roaming security robot just got fired",
- "url": "https://mashable.com/2017/12/15/knightscope-robot-fired-san-francisco-sidewalks/#ax1dKer3nqqB"
- },
- {
- "__typename": "Report",
- "authors": ["KGO-TV"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 942,
- "source_domain": "abc7news.com",
- "submitters": ["Anonymous"],
- "title": "Parents upset after Stanford Shopping Center security robot injures child",
- "url": "https://abc7news.com/news/parents-upset-after-stanford-mall-robot-injures-child/1423093/"
- },
- {
- "__typename": "Report",
- "authors": ["Charlie Sorrel"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 940,
- "source_domain": "fastcompany.com",
- "submitters": ["Anonymous"],
- "title": "A Robot Security Guard Allegedly Attacked Toddler In A Mall",
- "url": "https://www.fastcompany.com/3061824/a-robot-security-guard-allegedly-attacked-toddler-in-a-mall-but-the-robot-denies-it"
- },
- {
- "__typename": "Report",
- "authors": ["Karen Graham"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 939,
- "source_domain": "digitaljournal.com",
- "submitters": ["Anonymous"],
- "title": "Parents watch in horror as security robot runs over their child",
- "url": "http://www.digitaljournal.com/technology/toddler-has-collision-with-security-guard-robot-and-gets-run-over/article/470036"
- },
- {
- "__typename": "Report",
- "authors": ["Jane Wakefield"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 938,
- "source_domain": "bbc.com",
- "submitters": ["Anonymous"],
- "title": "Robot runs over toddler in shopping centre",
- "url": "https://www.bbc.com/news/technology-36793790"
- },
- {
- "__typename": "Report",
- "authors": ["Madeline Farber"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 936,
- "source_domain": "fortune.com",
- "submitters": ["Anonymous"],
- "title": "Shopping Center Security Robot Reportedly Runs Over Toddler",
- "url": "http://fortune.com/2016/07/13/robot-runs-over-young-boy/"
- },
- {
- "__typename": "Report",
- "authors": ["David Grossman"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 935,
- "source_domain": "popularmechanics.com",
- "submitters": ["Anonymous"],
- "title": "Mall Robot Security Guard Runs Over Toddler",
- "url": "https://www.popularmechanics.com/technology/robots/a21806/mall-robot-security-guard-toddler/"
- },
- {
- "__typename": "Report",
- "authors": ["James Whitbrook"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 934,
- "source_domain": "gizmodo.com.au",
- "submitters": ["Anonymous"],
- "title": "Shopping Centre Suspends Security Robot After It Clobbered A Toddler",
- "url": "https://www.gizmodo.com.au/2016/07/shopping-centre-suspends-security-robot-after-it-clobbered-a-toddler/"
- },
- {
- "__typename": "Report",
- "authors": ["Matt Mcfarland"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 933,
- "source_domain": "money.cnn.com",
- "submitters": ["Anonymous"],
- "title": "300-pound mall robot runs over toddler",
- "url": "https://money.cnn.com/2016/07/14/technology/robot-stanford-mall/index.html"
- },
- {
- "__typename": "Report",
- "authors": ["James Vincent"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 932,
- "source_domain": "theverge.com",
- "submitters": ["Anonymous"],
- "title": "Mall security bot knocks down toddler, breaks Asimov's first law of robotics",
- "url": "https://www.theverge.com/2016/7/13/12170640/mall-security-robot-k5-knocks-down-toddler"
- },
- {
- "__typename": "Report",
- "authors": ["Veronica Rocha"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 931,
- "source_domain": "latimes.com",
- "submitters": ["Anonymous"],
- "title": "Crime-fighting robot hits, rolls over child at Silicon Valley mall",
- "url": "http://www.latimes.com/local/lanow/la-me-ln-crimefighting-robot-hurts-child-bay-area-20160713-snap-story.html"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "tesla",
- "name": "Tesla"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "tesla",
- "name": "Tesla"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "joshua-brown",
- "name": "Joshua Brown"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [
- 1354, 1353, 990, 989, 988, 987, 986, 985, 984, 983, 982, 981, 980, 979, 977, 976, 975,
- 973, 972, 971, 970, 969, 968, 967, 966, 965, 964, 963, 961
- ],
- "vector": [
- -0.08680324256420135, 0.0622885599732399, -0.00397938909009099, -0.09575490653514862,
- 0.08108656108379364, -0.0206252820789814, -0.02198423445224762, 0.03705178201198578,
- 0.055229321122169495, -0.15758059918880463, 0.008301951922476292, 0.07143355906009674,
- 0.01646055281162262, -0.058544307947158813, 0.05348050221800804, -0.088384710252285,
- -0.06607158482074738, -0.04291383922100067, 0.005409650970250368, -0.0795297846198082,
- -0.058695558458566666, -0.0013808305375277996, 0.057556066662073135,
- 0.10855530947446823, -0.07003886997699738, 0.002003398025408387, 0.0733836367726326,
- 0.10351564735174179, -0.050233494490385056, 0.027933266013860703, -0.017808925360441208,
- -0.05215354263782501, 0.09039964526891708, 0.023320240899920464, -0.011650578118860722,
- 0.06210518628358841, 0.02182018756866455, -0.01836787536740303, -0.06666845828294754,
- 0.0036519619170576334, 0.01844916120171547, 0.2258283793926239, 0.024821816012263298,
- -0.019651060923933983, 0.04671574383974075, -0.07126910984516144, 0.032153453677892685,
- 0.035039182752370834, 0.022986186668276787, 0.036464083939790726, -0.004925687797367573,
- 0.06094801798462868, -0.012612532824277878, 0.024232324212789536, -0.13149961829185486,
- 0.05987739562988281, 0.028748568147420883, -0.020418351516127586, 0.06612803786993027,
- -0.0701882392168045, -0.05763769522309303, -0.25188755989074707, -0.08779043704271317,
- -0.08850239962339401, 0.05926918610930443, -0.0758589431643486, -0.03211657330393791,
- -0.012416698038578033, 0.03392411395907402, 0.05655352398753166, 0.07961241155862808,
- -0.05692891776561737, -0.029483668506145477, 0.03758181631565094, 0.019062204286456108,
- 0.004803596995770931, 0.01185326837003231, 0.2540145218372345, -0.13289295136928558,
- -0.016672099009156227, 0.1324663609266281, -0.10522118955850601, 0.4619988799095154,
- 0.00994799379259348, -0.02286328375339508, -0.0377025343477726, 0.10863886773586273,
- 0.030645549297332764, 0.02776750549674034, 0.05462861806154251, -0.022160036489367485,
- 0.02715490385890007, -0.051404889672994614, 0.037676483392715454, 0.060606084764003754,
- 0.03616493567824364, -0.00552158709615469, 0.09078450500965118, 0.0008085208246484399,
- -0.04599550738930702, 0.020284097641706467, -0.036635130643844604, 0.09213119745254517,
- 0.042206257581710815, -0.0111063988879323, 0.014556792564690113, 0.0971415564417839,
- -0.051891639828681946, 0.05227561295032501, -0.0859844908118248, 0.021388445049524307,
- -0.014035854488611221, 0.06614281237125397, -0.006188869941979647, 0.05024676397442818,
- -0.08446155488491058, 0.016364678740501404, 0.05842062830924988, 0.0848018154501915,
- 0.010361536405980587, -0.04762110859155655, 0.04699362814426422, 0.07884780317544937,
- -0.06830321252346039, -0.021432586014270782, -0.03500482812523842,
- -0.052958253771066666, -0.029714463278651237, -0.03920724242925644, 0.04631988704204559,
- -0.044124387204647064, -0.22014093399047852, 0.031126175075769424, 0.1276552379131317,
- 0.0022526306565850973, -0.03634633123874664, 0.004526869393885136, -0.07511109858751297,
- 0.05908557027578354, -0.0289723239839077, -0.0512467585504055, 0.06161995232105255,
- 0.04032879322767258, 0.03323616087436676, 0.1043417751789093, 0.06129278242588043,
- -0.04387999698519707, -0.05469115823507309, 0.014329708181321621, -0.035494644194841385,
- 0.08769713342189789, -0.11694487929344177, -0.04755832254886627, 0.025193067267537117,
- 0.01967180147767067, 0.644385814666748, 0.12633000314235687, 0.16636450588703156,
- 0.019016815349459648, -0.010820555500686169, 0.1651591807603836, -0.0022803833708167076,
- 0.057334043085575104, -0.07094432413578033, -0.06537416577339172, 0.02793826162815094,
- -0.07676045596599579, -0.05339708551764488, 0.041084855794906616, 0.038675952702760696,
- 0.1185656487941742, 0.042157985270023346, 0.09714352339506149, -0.008654524572193623,
- -0.10356157273054123, -0.05815330520272255, 0.06207547336816788, 0.01620667055249214,
- -0.08352344483137131, -0.052964646369218826, 0.04470211640000343, 0.10195885598659515,
- -0.04520629346370697, 0.007130725309252739, -0.027554498985409737, 0.03401863947510719,
- -0.023431655019521713, 0.020610952749848366, -0.056168969720602036,
- 0.024530883878469467, 0.031347744166851044, 0.0756647065281868, 0.016652880236506462,
- -0.09754745662212372, -0.010964763350784779, 0.10566387325525284,
- -0.0036955701652914286, -0.038758665323257446, 0.04156440868973732,
- -0.07764702290296555, 0.03777017444372177, 0.022367777302861214, 0.09765052050352097,
- -0.10661568492650986, 0.02835964784026146, 0.0036854927893728018, 0.010070839896798134,
- 0.08168310672044754, -0.006252506747841835, -0.060907427221536636,
- -0.055463116616010666, 0.07258196175098419, 0.047975219786167145, 0.0538642480969429,
- 0.09133805334568024, -0.05070500820875168, 0.016896607354283333, 0.06671375036239624,
- -0.005432663951069117, -0.008249852806329727, 0.038475558161735535, 0.09200766682624817,
- -0.02617511712014675, 0.004241674207150936, 0.029780767858028412, 0.021459078416228294,
- 0.02887481264770031, 0.01055066380649805, 0.055997513234615326, 0.03908168151974678,
- -0.04620039463043213, 0.020601676777005196, 0.007553486619144678, -0.00887564942240715,
- 0.11221040040254593, -0.0781698152422905, -0.055335983633995056, -0.014783783815801144,
- -0.018117662519216537, -0.013265958987176418, -0.03322010114789009, 0.09998449683189392,
- 0.06329510360956192, 0.08581727743148804, 0.05108233168721199, 0.042946577072143555,
- 0.05181785300374031, 0.05343930050730705, 0.034560635685920715, 0.07049489766359329,
- -0.0150632094591856, -0.08272149413824081, -0.025137944146990776, -0.012920401990413666,
- 0.05803724378347397, 0.04542574658989906, -0.07313884049654007, -0.030953405424952507,
- -0.016019681468605995, -0.033266935497522354, -0.0767652690410614, -0.02324896864593029,
- 0.013832843862473965, 0.07529501616954803, -0.0255179051309824, -0.06832069158554077,
- -0.11286114901304245, 0.04076894000172615, 0.04631102830171585, -0.014421816915273666,
- -0.03736189752817154, -0.10382183641195297, -0.028161700814962387, -0.03906536102294922,
- 0.03223491460084915, -0.001967062009498477, 0.009457804262638092, -0.006604420952498913,
- -0.043175581842660904, 0.003318048780784011, -0.01741546392440796, -0.01570553332567215,
- -0.06623739004135132, -0.07719814032316208, -0.052017513662576675,
- -0.019585346803069115, 0.013998091220855713, 0.004366629291325808, 0.05948902294039726,
- 0.029144251719117165, 0.018366053700447083, 0.008880824781954288, -0.04158223047852516,
- 0.07188019156455994, -0.01633627340197563, -0.01918819360435009, 0.08063259720802307,
- 0.0039001309778541327, 0.03633392974734306, 0.001438424689695239, -0.07923999428749084,
- -0.043448593467473984, 0.03382796421647072, -0.06686248630285263, 0.03700414299964905,
- -0.031193573027849197, 0.02924482896924019, -0.037180256098508835,
- -0.022751372307538986, 0.04104001820087433, -0.05990704149007797, -0.047311678528785706,
- -0.08892965316772461, 0.09590163826942444, 0.005405602976679802, -0.0333002544939518,
- 0.005505198147147894, -0.04937867820262909, 0.05913566052913666, -0.004097373690456152,
- 0.00043056803406216204, 0.01362224854528904, 0.041493676602840424,
- -0.013083716854453087, -0.015043161809444427, 0.057370394468307495,
- -0.014095479622483253, 0.015077603049576283, 0.05919923633337021, 0.42465054988861084,
- -0.2138659656047821, 0.07773144543170929, 0.08562740683555603, -0.0020800482016056776,
- 0.08289478719234467, -0.048650700598955154, 0.0835161879658699, 0.07734590768814087,
- 0.10614271461963654, 0.10617723315954208, -0.03160620480775833, -0.013470160774886608,
- -0.07695279270410538, 0.08748546242713928, 0.017975162714719772, 0.014337937347590923,
- -0.032195206731557846, -0.07333937287330627, -0.011067483574151993, 0.07144355028867722,
- -0.057365693151950836, 0.016920683905482292, 0.024076662957668304, -0.05791173875331879,
- 0.0036731415893882513, -0.012397837825119495, 0.016012733802199364,
- -0.05453146994113922, 0.0028298809193074703, -0.0324004590511322, 0.0473194345831871,
- 0.025494998320937157, 0.050940025597810745, -0.1327992081642151, 0.030695835128426552,
- -0.08932548016309738, -0.06876713037490845, 0.09568247199058533, -0.02327575907111168,
- 0.04541090130805969, 0.06105700135231018, -0.04895410314202309, 0.019977018237113953,
- -0.010265092365443707, -0.05156974494457245, 0.021177740767598152, 0.07066035270690918,
- 0.026345426216721535, 0.07420177757740021, 0.11885039508342743, -0.03380492702126503,
- -0.06145462393760681, -0.0722963735461235, 0.08088621497154236, 0.12080113589763641,
- -0.037377115339040756, 0.017064416781067848, -0.036567412316799164,
- -0.006577547173947096, 0.001829785294830799, -0.0787925198674202, -0.08544747531414032,
- -0.000017128892068285495, -0.015704436227679253, 0.06566886603832245,
- -0.015592844225466251, -0.031253572553396225, -0.19380654394626617,
- -0.003269097302109003, -0.047452639788389206, 0.002551477635279298, 0.12730707228183746,
- -0.07161719352006912, -0.0019293003715574741, 0.04573184624314308,
- -0.024137593805789948, 0.0033684249501675367, -0.11666873097419739,
- 0.012811616994440556, -0.05227948725223541, 0.04014226794242859, 0.03984007239341736,
- 0.032550130039453506, -0.04602750018239021, 0.06273888051509857, -0.09050717204809189,
- 0.05131152272224426, 0.025414541363716125, 0.03621460124850273, 0.029152456670999527,
- -0.04322794824838638, 0.036048583686351776, 0.04525148868560791, -0.0584268681704998,
- 0.03727617859840393, -0.0318065881729126, -0.023247795179486275, -0.10527052730321884,
- -0.08116325736045837, -0.02813584916293621, -0.08496183156967163, 0.04852001368999481,
- -0.07957347482442856, -0.044465698301792145, -0.01663612574338913, -0.01122271828353405,
- 0.041634369641542435, 0.05099968612194061, 0.046981081366539, -0.12628483772277832,
- 0.008770110085606575, -0.0105599882081151, 0.0738542377948761, -0.021163564175367355,
- -0.028541365638375282, 0.006033948622643948, 0.10428157448768616, 0.07571587711572647,
- 0.0031406537164002657, -0.00008467806765111163, -0.0665217712521553,
- -0.0017664585029706359, -0.06723777949810028, -0.5392763614654541, 0.06775427609682083,
- 0.03535046428442001, 0.03798401728272438, 0.014076149091124535, -0.03259091079235077,
- 0.02896161377429962, -0.008377717807888985, -0.0461931936442852, 0.08290162682533264,
- -0.04755406081676483, 0.0157686248421669, 0.024246810004115105, -0.05695684626698494,
- -0.0377543643116951, -0.02428857423365116, -0.05408806726336479, 0.07420245558023453,
- -0.026953574270009995, -0.0860985666513443, -0.1057203933596611, 0.028895795345306396,
- -0.033022407442331314, 0.01075341459363699, -0.008584835566580296, 0.00769127206876874,
- -0.06758008897304535, -0.04605545848608017, 0.05365387722849846, 0.056717049330472946,
- 0.03668535128235817, -0.04940403625369072, -0.028292598202824593, 0.030746208503842354,
- -0.051533546298742294, 0.16289468109607697, 0.010359205305576324, -0.021788576617836952,
- -0.0876072570681572, 0.07858209311962128, 0.041042935103178024, 0.18532684445381165,
- -0.016609523445367813, 0.07096673548221588, 0.028071045875549316, 0.14934352040290833,
- 0.027552558109164238, 0.027593184262514114, -0.014368751086294651, 0.006781847681850195,
- 0.04138711467385292, -0.010028869844973087, 0.04517953842878342, -0.09167680889368057,
- -0.04176611453294754, -0.016851069405674934, -0.004132404457777739,
- -0.013840773142874241, 0.04625122249126434, 0.19933083653450012, 0.012263684533536434,
- 0.038695454597473145, -0.013968892395496368, -0.037105996161699295,
- -0.005482533480972052, -0.04819439724087715, -0.09857504069805145,
- 0.0010240523843094707, -0.009955184534192085, 0.01958490163087845, -0.04778270050883293,
- -0.12767034769058228, -0.0029570336919277906, -0.021887384355068207,
- 0.005167219787836075, 0.08288400620222092, 0.025124717503786087, 0.05020638182759285,
- -0.03750024735927582, 0.09930278360843658, 0.04185076802968979, -0.015787558630108833,
- 0.05565173551440239, 0.09979736059904099, 0.01759135164320469, -0.0015861314022913575,
- -0.02887861244380474, -0.05471153184771538, 0.0031779117416590452, 0.10719679296016693,
- -0.042197342962026596, 0.07793235033750534, 0.07243210077285767, -0.02969653159379959,
- -0.057354386895895004, 0.02750495821237564, 0.03133392333984375, 0.03787128999829292,
- -0.4974307715892792, -0.008333711884915829, 0.12113814055919647, 0.0011923594865947962,
- 0.03096371702849865, 0.07750608026981354, 0.051394011825323105, -0.030483562499284744,
- -0.04583461582660675, -0.040349677205085754, 0.10682297497987747, -0.04356972873210907,
- 0.0714980959892273, -0.08272580802440643, 0.04874806851148605, 0.05936091020703316,
- -0.026598583906888962, -0.039337754249572754, 0.06821645796298981, -0.24519184231758118,
- 0.007798533886671066, -0.06337879598140717, 0.18087610602378845, 0.06564536690711975,
- 0.02295331284403801, 0.06988509744405746, -0.05425393208861351, 0.053070686757564545,
- 0.059090763330459595, -0.01976809836924076, 0.04995712637901306, 0.011912411078810692,
- -0.019529370591044426, 0.11170270293951035, 0.057526830583810806, 0.11315326392650604,
- -0.010670238174498081, 12.014307022094727, 0.05843767523765564, 0.03912784159183502,
- -0.06300964951515198, 0.051228251308202744, -0.0801427960395813, 0.029578184708952904,
- -0.10664153844118118, 0.06761831790208817, 0.09769519418478012, -0.012032253667712212,
- 0.0009391074418090284, -0.031040696427226067, -0.10087134689092636,
- 0.0027306838892400265, -0.05745040997862816, -0.0709153339266777, -0.044146958738565445,
- 0.024186301976442337, -0.04695901647210121, 0.0035057729110121727, 0.008587519638240337,
- 0.07082869112491608, 0.03156975656747818, -0.08212065696716309, 0.06983964145183563,
- 0.05245386064052582, 0.011205380782485008, -0.0013511694269254804, 0.0404059961438179,
- -0.048942383378744125, 0.03346420079469681, 0.036923158913850784, 0.009233137592673302,
- -0.021700533106923103, 0.034551821649074554, 0.062005750834941864, 0.06042806804180145,
- 0.009452852420508862, 0.09307701885700226, 0.026464594528079033, 0.027838654816150665,
- 0.03437183052301407, 0.040504977107048035, 0.027947979047894478, 0.03848794475197792,
- 0.08138436824083328, 0.10376442223787308, 0.021245865151286125, 0.05099787935614586,
- 0.07951526343822479, -0.03997005522251129, 0.12716332077980042, 0.008391046896576881,
- -0.009970225393772125, 0.03982953727245331, -0.009255331009626389,
- -0.061662331223487854, 0.07017387449741364, 0.08842429518699646, -0.0553145669400692,
- 0.09245792776346207, -0.0011610976653173566, 0.10426577180624008, -0.04984425753355026,
- 0.05938807502388954, 0.09337260574102402, 0.03834911435842514, -0.08447558432817459,
- -0.05997591093182564, 0.030813276767730713, -0.11639246344566345, -0.0653328150510788,
- 0.021578989923000336, 0.10389743745326996, -0.06879838556051254, 0.06826712936162949,
- -0.0575907863676548, 0.006573451682925224, -0.02596505545079708, -0.02583436667919159,
- 0.02331928350031376, -0.01208612322807312, 0.03132324293255806, 0.06456892937421799,
- 0.0150730786845088, 0.07858871668577194, 0.0705467090010643, -0.011739385314285755,
- -0.10077701508998871, -0.1163153126835823, 0.10451801121234894, -0.02558545209467411,
- -0.05604957789182663, 0.026547683402895927, -0.03977692127227783, 0.06397347897291183,
- -0.15956547856330872, 0.07059536874294281, 0.10140030831098557, -0.09844284504652023,
- 0.03251979500055313, -0.006971332710236311, 0.05509619414806366, -0.024685340002179146,
- 0.061548858880996704, -0.046409059315919876, 0.028471946716308594, 0.013632929883897305,
- 0.05445634201169014, -0.05341637507081032, 0.055044133216142654, 0.08081059157848358,
- -0.08249733597040176, 0.056985042989254, 0.08214185386896133, -0.011226501315832138,
- -0.0629286915063858, 0.06411939114332199, 0.02761784940958023, -0.10585752129554749,
- -0.05183490738272667, -0.03784843534231186, -0.054187528789043427, -0.04740170016884804,
- -0.057662371546030045, 0.028806284070014954, 0.04153750091791153, -0.07543525844812393,
- -0.00669170031324029, 0.01749962940812111, 0.035556450486183167, 0.0642491802573204,
- 0.010012546554207802, 0.03847275674343109, -0.08314991742372513, -0.045648977160453796,
- 0.05914383754134178, 0.05216289311647415, 0.07672669738531113, -0.024256763979792595,
- 0.010783418081700802, -0.05593155696988106, -0.105576291680336, -0.014837278984487057,
- 0.10328646004199982, 0.06946957856416702, 0.05520818009972572, 0.057836733758449554,
- -0.09829370677471161, -0.0394967719912529, 0.10878090560436249, 0.039641816169023514,
- 0.003997869323939085, 0.009969600476324558, -0.08526754379272461, -0.03121616505086422,
- 0.14360523223876953, -0.030888240784406662, 0.006795045454055071, 0.0421895757317543,
- 0.01903379335999489, 0.0853598341345787, 0.05495300143957138, 0.08844400942325592,
- 0.027876758947968483, 0.020062627270817757, -0.019334079697728157, 0.004869258031249046,
- -0.01842605508863926, 0.027822261676192284, 0.012819560244679451, -0.14799821376800537,
- -0.09164386242628098, 0.011865131556987762, 0.08729899674654007, -0.013258027844130993,
- -0.08888528496026993, -0.034203097224235535, -0.018760209903120995
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 52,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 20,
- "similarity": 0.9994971752166748
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 67,
- "similarity": 0.9992536902427673
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 25,
- "similarity": 0.9992197155952454
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Rachel Abrams", "Annalyn Kurtz"],
- "epoch_date_downloaded": 1605312000,
- "epoch_date_modified": 1607299200,
- "epoch_date_submitted": 1607299200,
- "flag": null,
- "report_number": 1354,
- "source_domain": "nytimes.com",
- "submitters": ["AIAAIC", "Thomas Giallella (CSET)"],
- "title": "Joshua Brown, Who Died in Self-Driving Accident, Tested Limits of His Tesla",
- "url": "https://www.nytimes.com/2016/07/02/business/joshua-brown-technology-enthusiast-tested-the-limits-of-his-tesla.html"
- },
- {
- "__typename": "Report",
- "authors": ["Andrew J. Hawkins"],
- "epoch_date_downloaded": 1605657600,
- "epoch_date_modified": 1607299200,
- "epoch_date_submitted": 1607299200,
- "flag": null,
- "report_number": 1353,
- "source_domain": "theverge.com",
- "submitters": ["AIAAIC", "Ingrid Dickinson (CSET)"],
- "title": "Tesla didn’t fix an Autopilot problem for three years, and now another person is dead",
- "url": "https://www.theverge.com/2019/5/17/18629214/tesla-autopilot-crash-death-josh-brown-jeremy-banner"
- },
- {
- "__typename": "Report",
- "authors": ["Barbara Liston", "Bernie Woodall"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 990,
- "source_domain": "smh.com.au",
- "submitters": ["Roman Yampolskiy"],
- "title": "Man killed in Tesla auto-drive crash may have been watching Harry Potter",
- "url": "https://www.smh.com.au/business/man-killed-in-tesla-autodrive-crash-may-have-been-watching-harry-potter-20160704-gpxr7f.html"
- },
- {
- "__typename": "Report",
- "authors": ["Mahita Gajanan", "Bruce Handy", "Tina Nguyen"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 989,
- "source_domain": "vanityfair.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Tesla Driver May Have Been Watching Harry Potter Before Fatal Crash",
- "url": "https://www.vanityfair.com/news/2016/07/tesla-driver-may-have-been-watching-harry-potter-before-fatal-crash"
- },
- {
- "__typename": "Report",
- "authors": ["Katie Burke"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 988,
- "source_domain": "autonews.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Tesla driver in fatal crash wasn't watching video, witness tells investigators",
- "url": "https://www.autonews.com/article/20170619/MOBILITY/170619733/tesla-driver-in-fatal-crash-wasn-t-watching-video-witness-tells-investigators"
- },
- {
- "__typename": "Report",
- "authors": ["Andrew Buncombe"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 987,
- "source_domain": "independent.co.uk",
- "submitters": ["Roman Yampolskiy"],
- "title": "Tesla crash: Driver who died while on Autopilot mode ‘was watching Harry Potter’",
- "url": "https://www.independent.co.uk/news/world/americas/tesla-crash-driver-who-died-while-on-autopilot-mode-was-watching-harry-potter-a7114356.html"
- },
- {
- "__typename": "Report",
- "authors": ["Liz Farmer"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 986,
- "source_domain": "dallasnews.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Tesla owner killed in crash was watching ‘Harry Potter’ while using car's autopilot, survivor says",
- "url": "https://www.dallasnews.com/business/autos/2016/07/01/tesla-owner-killed-crash-watching-harry-potter-using-cars-autopilot-survivor-says"
- },
- {
- "__typename": "Report",
- "authors": ["Gareth Corfield"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 985,
- "source_domain": "theregister.co.uk",
- "submitters": ["Roman Yampolskiy"],
- "title": "Tesla death smash probe: Neither driver nor autopilot saw the truck",
- "url": "https://www.theregister.co.uk/2017/06/20/tesla_death_crash_accident_report_ntsb/"
- },
- {
- "__typename": "Report",
- "authors": ["Inside Edition"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 984,
- "source_domain": "insideedition.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Man Who Died in Self-Driving Tesla Crash Was Watching 'Harry Potter' Film During Wreck: Witness",
- "url": "https://www.insideedition.com/headlines/17347-man-who-died-in-self-driving-tesla-crash-was-watching-harry-potter-film-during-wreck"
- },
- {
- "__typename": "Report",
- "authors": ["Reuters"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 983,
- "source_domain": "abc.net.au",
- "submitters": ["Roman Yampolskiy"],
- "title": "Tesla crash: DVD player found in car wreckage, amid reports driver was watching Harry Potter",
- "url": "https://www.abc.net.au/news/2016-07-02/tesla-crash-dvd-player-found-in-car-florida-police-say/7562962"
- },
- {
- "__typename": "Report",
- "authors": ["Reuters"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 982,
- "source_domain": "scmp.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Dead Tesla driver had speeding tickets, Harry Potter playing on DVD before crash, officials say",
- "url": "https://www.scmp.com/news/world/united-states-canada/article/1984371/dead-tesla-driver-had-speeding-tickets-harry-potter"
- },
- {
- "__typename": "Report",
- "authors": ["Associated Press"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 981,
- "source_domain": "dailymail.co.uk",
- "submitters": ["Roman Yampolskiy"],
- "title": "Tesla self-driving crash victim was watching Harry Potter during fatal incident",
- "url": "https://www.dailymail.co.uk/news/article-3670549/First-man-die-self-driving-car-watching-Harry-Potter-crashed-Police-recover-DVD-player-wreckage-reveal-dead-man-racked-8-speeding-tickets-recent-years.html"
- },
- {
- "__typename": "Report",
- "authors": ["Sebastian Mann"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 980,
- "source_domain": "standard.co.uk",
- "submitters": ["Roman Yampolskiy"],
- "title": "First person killed in Tesla self-driving car crash 'was watching Harry Potter'",
- "url": "https://www.standard.co.uk/news/world/first-person-killed-in-tesla-selfdriving-car-crash-was-watching-harry-potter-a3286451.html"
- },
- {
- "__typename": "Report",
- "authors": ["Fred Lambert"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 979,
- "source_domain": "electrek.co",
- "submitters": ["Roman Yampolskiy"],
- "title": "Laptop and DVD player found in fatal Tesla Autopilot crash were not running when discovered, police say",
- "url": "https://electrek.co/2016/07/07/tesla-autopilot-accident-laptop-dvd-player-found-fatal-crash-not-running-police-say/"
- },
- {
- "__typename": "Report",
- "authors": ["Jason Siu"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 977,
- "source_domain": "autoguide.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Man Killed in Tesla Autopilot Crash was Watching Harry Potter",
- "url": "https://www.autoguide.com/auto-news/2016/07/man-killed-in-tesla-autopilot-crash-was-watching-harry-potter.html"
- },
- {
- "__typename": "Report",
- "authors": ["Tom Towers", "Mark Hodge"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 976,
- "source_domain": "thesun.co.uk",
- "submitters": ["Roman Yampolskiy"],
- "title": "Former Navy Seal who became first person to die in a self-driving car was 'watching Harry Potter when his Tesla smashed into a truck'",
- "url": "https://www.thesun.co.uk/news/1372008/tesla-confirms-first-death-in-autopilot-car-after-vehicle-collides-with-tractor-trailer-in-florida/"
- },
- {
- "__typename": "Report",
- "authors": ["Aol Staff", "Rasha Ali"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 975,
- "source_domain": "aol.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Tesla owner was watching 'Harry Potter' during autopilot crash, says truck driver",
- "url": "https://www.aol.com/article/2016/07/01/tesla-owner-was-watching-harry-potter-during-autopilot-crash/21422799/"
- },
- {
- "__typename": "Report",
- "authors": ["Joan Lowy", "Tom Krisher"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 973,
- "source_domain": "apnews.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Tesla driver killed in crash while using car's 'Autopilot'",
- "url": "https://apnews.com/ee71bd075fb948308727b4bbff7b3ad8"
- },
- {
- "__typename": "Report",
- "authors": [
- "Rasha Ali",
- "Beatrice Verhoeven",
- "Matt Donnelly",
- "Sharon Waxman",
- "Brian Welk",
- "Mikey Glazer",
- "Sean Burch",
- "Matt Lopez"
- ],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 972,
- "source_domain": "thewrap.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "'Harry Potter' Playing in Tesla Autopilot Crash, Says Driver",
- "url": "https://www.thewrap.com/tesla-owner-was-watching-harry-potter-during-autopilot-crash-says-truck-driver/"
- },
- {
- "__typename": "Report",
- "authors": ["William Hoffman"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 971,
- "source_domain": "inverse.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Driver in First Tesla Crash Was Watching 'Harry Potter' DVD",
- "url": "https://www.inverse.com/article/17822-tesla-autopilot-crash-driver-watched-harry-potter-dvd-death"
- },
- {
- "__typename": "Report",
- "authors": ["Tyler Durden"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 970,
- "source_domain": "zerohedge.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Driver Of Self-Driving Tesla Was Watching Harry Potter At Moment Of Death",
- "url": "https://www.zerohedge.com/news/2016-07-01/driver-self-driving-tesla-was-watching-harry-potter-moment-death"
- },
- {
- "__typename": "Report",
- "authors": ["Will Oremus"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 969,
- "source_domain": "slate.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Tesla autopilot crash victim Joshua Brown was watching a movie when he died.",
- "url": "https://slate.com/business/2016/07/tesla-autopilot-crash-victim-joshua-brown-was-watching-a-movie-when-he-died.html"
- },
- {
- "__typename": "Report",
- "authors": ["Will Oremus"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 968,
- "source_domain": "slate.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "A new report on what happened in the fatal Tesla Autopilot crash.",
- "url": "https://slate.com/technology/2017/06/a-new-report-on-what-happened-in-the-fatal-tesla-autopilot-crash.html"
- },
- {
- "__typename": "Report",
- "authors": ["Boston Herald"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 967,
- "source_domain": "bostonherald.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Man watching movie dies in Tesla on autopilot",
- "url": "https://www.bostonherald.com/2016/07/01/man-watching-movie-dies-in-tesla-on-autopilot/"
- },
- {
- "__typename": "Report",
- "authors": ["Brandon Turkus"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 966,
- "source_domain": "autoblog.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Tesla Model S driver may have been watching Harry Potter before deadly Autopilot crash",
- "url": "https://www.autoblog.com/2016/07/01/tesla-model-s-driver-was-watching-harry-potter-before-deadly-aut/"
- },
- {
- "__typename": "Report",
- "authors": ["Joan Lowy", "Tom Krisher", "Associated Press"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 965,
- "source_domain": "freep.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Tesla driver watched 'Harry Potter' movie as he crashed, witness says",
- "url": "https://www.freep.com/story/money/cars/2016/07/01/tesla-driver-harry-potter-crash/86596856/"
- },
- {
- "__typename": "Report",
- "authors": ["Sam Warner"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 964,
- "source_domain": "digitalspy.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Killed Tesla driver may have been watching Harry Potter",
- "url": "https://www.digitalspy.com/tech/a799954/tesla-driver-killed-watching-harry-potter/"
- },
- {
- "__typename": "Report",
- "authors": ["Nick Whigham"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 963,
- "source_domain": "news.com.au",
- "submitters": ["Roman Yampolskiy"],
- "title": "Tesla driver killed in driverless car crash",
- "url": "https://www.news.com.au/technology/innovation/motoring/tesla-autopilot-driver-was-reportedly-watching-harry-potter-when-he-was-hit-and-killed/news-story/eb97718fe50bd5c95da5eaf25436b6a5"
- },
- {
- "__typename": "Report",
- "authors": ["Sam Levin", "Nicky Woolf"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 961,
- "source_domain": "theguardian.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Tesla driver killed while using autopilot was watching Harry Potter, witness says",
- "url": "https://www.theguardian.com/technology/2016/jul/01/tesla-driver-killed-autopilot-self-driving-car-harry-potter"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "google",
- "name": "Google"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "google",
- "name": "Google"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "minority-groups",
- "name": "Minority Groups"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [
- 1352, 1351, 1350, 1006, 1005, 1004, 1003, 1002, 1001, 1000, 999, 998, 997, 996, 995,
- 994, 992, 991
- ],
- "vector": [
- -0.059431739151477814, 0.05398933216929436, 0.00017860240768641233, -0.11463662981987,
- 0.08675577491521835, -0.051635678857564926, -0.00193889276124537, 0.05821848660707474,
- 0.05125240609049797, -0.1282498687505722, 0.015945540741086006, 0.05009984225034714,
- 0.018376706168055534, -0.07972107827663422, 0.044576410204172134, -0.04142840951681137,
- -0.08204418420791626, -0.053829338401556015, -0.0012796339578926563,
- -0.10468222200870514, -0.0637034997344017, 0.010165554471313953, 0.018144167959690094,
- 0.11302988976240158, -0.06651797145605087, 0.01046110037714243, 0.101520836353302,
- 0.08180884271860123, -0.0481303445994854, 0.042903605848550797, -0.03592964634299278,
- -0.07301256060600281, 0.10992010682821274, 0.0063514383509755135, 0.007152985315769911,
- 0.056095242500305176, 0.032281722873449326, -0.01590096950531006, -0.03830753266811371,
- 0.018230842426419258, 0.01541088055819273, 0.17998173832893372, 0.01899094693362713,
- -0.007058028597384691, 0.058938998728990555, -0.02460199035704136, 0.006368591450154781,
- 0.0688110813498497, 0.010817378759384155, 0.024452276527881622, -0.010186509229242802,
- -0.001205562730319798, -0.05751890689134598, 0.02884148806333542, -0.10585091263055801,
- 0.06332394480705261, 0.05888064205646515, -0.0033735588658601046, 0.02522233873605728,
- -0.06660149246454239, -0.018794329836964607, -0.17230603098869324, -0.06364499777555466,
- -0.07245369255542755, 0.07352722436189651, -0.05713183432817459, -0.02884759195148945,
- -0.01963370479643345, 0.019258365035057068, 0.03731739521026611, 0.0613909512758255,
- -0.05964730679988861, -0.032346341758966446, -0.017533764243125916,
- -0.0032359373290091753, -0.030245184898376465, 0.02040027268230915, 0.23645077645778656,
- -0.10519563406705856, 0.01203411165624857, 0.08533329516649246, -0.09588117897510529,
- 0.3520606458187103, 0.007487831637263298, -0.00855220202356577, -0.027577832341194153,
- 0.07889016717672348, -0.007526165805757046, 0.039991430938243866, 0.024838166311383247,
- 0.00852295383810997, 0.05401939898729324, -0.06910361349582672, -0.00919197965413332,
- 0.04660889133810997, 0.01775791496038437, -0.008674765937030315, -0.03712291643023491,
- -0.013490088284015656, -0.06907977163791656, 0.014550426043570042, -0.03310671076178551,
- 0.10703971982002258, 0.06885260343551636, -0.03314583748579025, -0.014506947249174118,
- 0.09381893277168274, -0.0447055958211422, 0.05213616415858269, -0.06332546472549438,
- 0.012652751058340073, -0.00883242767304182, 0.08374076336622238, -0.008825226686894894,
- 0.0263199545443058, -0.023664524778723717, 0.010130471549928188, 0.02915263921022415,
- 0.0935392826795578, 0.07003536075353622, 0.020992059260606766, 0.0661071389913559,
- 0.08404479175806046, -0.04681915417313576, -0.026519177481532097, -0.028169823810458183,
- -0.06304404139518738, -0.020093347877264023, -0.03746335208415985, 0.045105092227458954,
- -0.020885758101940155, -0.18689990043640137, 0.01411760225892067, 0.06286989897489548,
- -0.02621970884501934, -0.03400740027427673, 0.027647865936160088, -0.05947966128587723,
- 0.025226257741451263, -0.04121934622526169, -0.040845081210136414, 0.08064832538366318,
- 0.04367606341838837, 0.03982216492295265, 0.10558727383613586, 0.06472519040107727,
- -0.02967064268887043, -0.05108654499053955, -0.008607374504208565,
- -0.056540004909038544, 0.09481199830770493, -0.10663968324661255, -0.03533671423792839,
- -0.019368283450603485, 0.0033948328346014023, 0.628441333770752, 0.11266791820526123,
- 0.1491515189409256, -0.0037984075024724007, 0.01155067514628172, 0.1657199263572693,
- -0.004972747061401606, 0.05459211394190788, -0.05163659155368805, -0.03735784441232681,
- 0.017706654965877533, -0.06908445805311203, -0.041579920798540115, 0.037230443209409714,
- 0.020395390689373016, 0.06949809938669205, 0.011789637617766857, 0.08797398209571838,
- 0.02626078575849533, -0.12591761350631714, -0.05367419496178627, 0.024921609088778496,
- -0.015346843749284744, -0.11804728955030441, -0.01284149382263422, 0.045527514070272446,
- 0.0961923822760582, -0.06834463775157928, 0.0054929014295339584, -0.05279663950204849,
- 0.038178060203790665, -0.0004723306046798825, 0.0436025895178318, -0.03396846726536751,
- 0.024557901546359062, 0.03932805359363556, 0.01020019594579935, -0.0069871703162789345,
- -0.06340579688549042, -0.033617496490478516, 0.115504689514637, -0.019621483981609344,
- -0.035756126046180725, 0.0565815307199955, -0.08382578939199448, 0.0316939502954483,
- -0.008078962564468384, 0.11781872808933258, -0.14358921349048615, 0.02483854442834854,
- 0.003585394471883774, -0.024357255548238754, 0.05526888370513916, -0.025214839726686478,
- -0.07025929540395737, -0.03067253716289997, 0.09812329709529877, 0.035702794790267944,
- 0.06341157853603363, 0.020737621933221817, -0.05477694794535637, 0.039666905999183655,
- 0.05494498088955879, -0.012069711461663246, -0.04156078025698662, 0.06403163075447083,
- 0.052385807037353516, -0.04592948034405708, -0.041237618774175644, 0.04206828400492668,
- 0.043101124465465546, 0.04441264271736145, -0.013697230257093906, 0.047531817108392715,
- 0.016536137089133263, -0.03596413508057594, 0.05174320936203003, 0.016521865501999855,
- 0.03802544251084328, 0.07322171330451965, -0.085360087454319, -0.03162243589758873,
- -0.04104447364807129, -0.030055565759539604, 0.012553616426885128, -0.04724644869565964,
- 0.08569332957267761, 0.05854443088173866, 0.05840484797954559, 0.03273719176650047,
- 0.021284425631165504, 0.04726581275463104, 0.051050398498773575, 0.016611121594905853,
- 0.08734205365180969, -0.011371543630957603, -0.05154047906398773, -0.026605239138007164,
- -0.0031648813746869564, 0.0490577258169651, 0.0323999747633934, -0.07754287123680115,
- -0.020105760544538498, -0.005583432037383318, -0.011057882569730282,
- -0.08412200212478638, -0.02779342792928219, 0.041029803454875946, 0.04677361249923706,
- -0.03475922346115112, -0.08670179545879364, -0.0803871750831604, 0.009652476757764816,
- 0.05844824016094208, -0.045899417251348495, -0.015128880739212036, -0.10312232375144958,
- 0.017460962757468224, -0.04045790806412697, 0.051598694175481796, -0.030132446438074112,
- 0.006033941637724638, -0.0007290097419172525, -0.07845957577228546, 0.0294871237128973,
- 0.029288679361343384, -0.015222491696476936, -0.03433246165513992,
- -0.053789976984262466, -0.04758410155773163, -0.010489188134670258,
- -0.027862992137670517, -0.020977668464183807, 0.0411207340657711, 0.03110325336456299,
- 0.04489725083112717, -0.00007828433444956318, -0.03644208237528801, 0.05931074917316437,
- -0.035366784781217575, -0.010725485160946846, 0.08114281296730042,
- -0.001441696542315185, 0.03045320138335228, -0.011417470872402191, -0.0760442316532135,
- -0.0469713993370533, 0.013695411384105682, -0.02875574678182602, 0.038294389843940735,
- -0.012176420539617538, 0.009206213057041168, -0.030769189819693565,
- -0.028874464333057404, 0.06525635719299316, -0.05066268518567085, -0.05763135477900505,
- -0.09339844435453415, 0.12297284603118896, 0.004555003717541695, 0.01458839699625969,
- 0.007719310466200113, -0.04046532139182091, 0.045244816690683365, -0.011760953813791275,
- -0.0007877888274379075, 0.02553367055952549, 0.06139596924185753,
- -0.0003533009730745107, 0.006806133780628443, 0.055031318217515945,
- -0.023069465532898903, 0.017525970935821533, 0.05494352802634239, 0.44627898931503296,
- -0.2576102018356323, 0.06931842118501663, 0.07658997178077698, 0.0007917883340269327,
- 0.041166648268699646, 0.00896027497947216, 0.08463823050260544, 0.07014017552137375,
- 0.11648236215114594, 0.11452578008174896, -0.026752926409244537, 0.0006843373412266374,
- -0.07666626572608948, 0.06929836422204971, 0.019771184772253036, 0.020060820505023003,
- -0.008214346133172512, -0.04177244007587433, -0.03421018645167351, 0.03288210928440094,
- -0.06800027936697006, -0.0018234883900731802, 0.023129157721996307,
- -0.050381697714328766, 0.01958608254790306, 0.032409247010946274, 0.041989460587501526,
- -0.049285098910331726, 0.030943164601922035, -0.01901599019765854, 0.03508083522319794,
- 0.04672367870807648, 0.03818242996931076, -0.10493569076061249, 0.044929489493370056,
- -0.03956633806228638, -0.07448891550302505, 0.06608352065086365, -0.0006923422915861011,
- 0.0661420151591301, 0.04168607294559479, -0.031570665538311005, 0.021146226674318314,
- -0.026338743045926094, -0.0464603453874588, 0.01817362755537033, 0.06378380209207535,
- 0.015996702015399933, 0.05215540528297424, 0.1379682421684265, -0.0342949777841568,
- -0.010470312088727951, -0.07495689392089844, 0.05603006109595299, 0.1324576586484909,
- -0.012219838798046112, 0.025298601016402245, -0.013637964613735676,
- 0.012673895806074142, -0.00303492764942348, -0.047126784920692444, -0.08296678215265274,
- -0.02229779027402401, -0.03646646440029144, 0.08962651342153549, 0.042686738073825836,
- -0.018554970622062683, -0.1750684231519699, -0.00986425206065178, -0.044192083179950714,
- 0.0333133190870285, 0.09857096523046494, -0.06999841332435608, 0.020080441609025,
- -0.024376031011343002, -0.0013108914718031883, 0.015840642154216766,
- -0.07565702497959137, 0.007264886517077684, -0.068588986992836, 0.031788453459739685,
- 0.062467534095048904, 0.04358766973018646, -0.04218437895178795, 0.0441279299557209,
- -0.08481691777706146, 0.04838655889034271, -0.002015608362853527, -0.028226640075445175,
- -0.010144947096705437, -0.011507254093885422, 0.036652132868766785,
- 0.025711026042699814, -0.046664927154779434, 0.010002410039305687,
- -0.005010360851883888, -0.020648647099733353, -0.04776349291205406,
- -0.05868085101246834, -0.025425033643841743, -0.0673251673579216, 0.0381743460893631,
- -0.059616658836603165, -0.010570093058049679, -0.02397683635354042,
- -0.013853813521564007, -0.014696572907269001, 0.03220877796411514, 0.008033618330955505,
- -0.11276373267173767, 0.015144447796046734, -0.01799578219652176, 0.04752460867166519,
- 0.009989313781261444, -0.06578561663627625, -0.007583285216242075, 0.09005831182003021,
- 0.04541666805744171, -0.04963558167219162, 0.0032355969306081533, -0.04035909101366997,
- 0.06361518055200577, -0.10535307973623276, -0.4843843877315521, 0.06081964075565338,
- 0.04513634741306305, 0.030831297859549522, 0.008679736405611038, -0.06873398274183273,
- 0.03785593807697296, 0.011112245731055737, -0.042172014713287354, 0.07085634768009186,
- -0.03154236078262329, 0.023510390892624855, -0.03467424213886261, -0.06532817333936691,
- -0.0020266843494027853, -0.04514914005994797, -0.06261174380779266,
- 0.038988303393125534, -0.017516903579235077, -0.05079648271203041, -0.08438954502344131,
- 0.019329141825437546, -0.024544276297092438, 0.038405127823352814,
- -0.0024230058770626783, 0.004078664351254702, -0.03901160508394241,
- -0.03606516495347023, 0.05881185084581375, 0.08191569894552231, 0.034764137119054794,
- -0.06536804884672165, -0.013256213627755642, 0.06904163956642151, 0.02766866609454155,
- 0.11010517925024033, 0.010157963261008263, -0.04439043253660202, -0.0707845687866211,
- 0.07302547991275787, 0.07111121714115143, 0.18547819554805756, 0.00723229767754674,
- 0.048591453582048416, 0.0259175393730402, 0.16703450679779053, 0.039149295538663864,
- 0.005838549230247736, -0.03523395583033562, 0.004338497761636972, 0.01208997517824173,
- -0.011812285520136356, 0.05164830759167671, -0.08288226276636124, -0.043941181153059006,
- -0.022034993395209312, -0.02002900093793869, -0.039528172463178635, -0.0209575854241848,
- 0.21315807104110718, 0.005012072157114744, 0.010408940725028515, 0.009827172383666039,
- -0.014903641305863857, 0.020034823566675186, -0.08755314350128174, -0.05271657556295395,
- -0.010579840280115604, -0.016114182770252228, -0.007657311856746674,
- -0.022126605734229088, -0.09610548615455627, 0.0031189327128231525, 0.00356339942663908,
- 0.007889467291533947, 0.11255963891744614, -0.017991965636610985, 0.010243566706776619,
- -0.03867127746343613, 0.12467609345912933, 0.009700676426291466, 0.001142806839197874,
- 0.055997975170612335, 0.1061210185289383, 0.0016396348364651203, 0.025582263246178627,
- -0.03728426247835159, -0.0513446182012558, -0.019769325852394104, 0.1347942054271698,
- -0.0154888816177845, 0.13368244469165802, 0.046166758984327316, -0.042712315917015076,
- -0.024948725476861, 0.023386478424072266, -0.012135244905948639, 0.011264926753938198,
- -0.49726834893226624, -0.01032242365181446, 0.08002319186925888,
- 0.000018987464500241913, 0.01539332140237093, 0.06694121658802032, 0.04023519530892372,
- -0.014414694160223007, -0.021024255082011223, -0.06056620553135872, 0.12906940281391144,
- -0.005377190187573433, 0.08258038014173508, -0.08924157172441483, 0.031555041670799255,
- 0.0758998915553093, -0.03441363200545311, 0.025322888046503067, 0.0177018903195858,
- -0.19814127683639526, -0.015361164696514606, -0.016046132892370224, 0.15198463201522827,
- 0.007635604124516249, 0.019396893680095673, 0.09585804492235184, -0.054983098059892654,
- 0.006541350390762091, 0.039742667227983475, 0.019113972783088684, 0.026519503444433212,
- -0.023439139127731323, -0.032232992351055145, 0.08100944757461548, 0.08760574460029602,
- 0.06701649725437164, -0.007621161639690399, 12.034018516540527, 0.04024665430188179,
- 0.055055391043424606, -0.07068529725074768, 0.028180722147226334, -0.06305237859487534,
- -0.0010631904006004333, -0.0943436473608017, 0.08554714173078537, 0.13115398585796356,
- 0.006692452821880579, -0.03392120450735092, -0.040475599467754364, -0.1010422557592392,
- 0.01683882623910904, -0.0442429855465889, -0.052572306245565414, -0.060960717499256134,
- 0.04377038776874542, -0.04019194841384888, -0.03753240406513214, 0.07661130279302597,
- 0.07078640908002853, 0.006555431056767702, -0.05951085314154625, -0.007307067513465881,
- 0.03279218077659607, -0.0009600163903087378, 0.010334370657801628, 0.05444413423538208,
- 0.015816176310181618, 0.05015401542186737, 0.0710994303226471, 0.012642446905374527,
- 0.025232380256056786, 0.04499347507953644, 0.040675874799489975, 0.028877416625618935,
- -0.01723892241716385, 0.08112166821956635, 0.020867900922894478, 0.0031068683601915836,
- 0.023311220109462738, 0.014866147190332413, 0.06008661538362503, 0.04372161626815796,
- 0.05466017872095108, 0.11170938611030579, 0.008590679615736008, 0.07028711587190628,
- 0.10132035613059998, -0.04383508861064911, 0.10497740656137466, 0.027322718873620033,
- -0.005786185618489981, 0.06540913879871368, 0.019441833719611168, -0.059065137058496475,
- 0.061984699219465256, 0.006519355811178684, -0.05783429369330406, 0.10370276868343353,
- 0.014587853103876114, 0.09294374287128448, -0.028223352506756783, 0.049798134714365005,
- 0.08927624672651291, 0.07610098272562027, -0.08023782074451447, -0.061411600559949875,
- 0.030914925038814545, -0.09403421729803085, -0.07714828848838806, 0.03856433928012848,
- 0.05709630995988846, -0.040589556097984314, 0.04917246848344803, -0.04109756648540497,
- 0.012440658174455166, -0.0408618301153183, 0.019896306097507477, 0.03549787029623985,
- -0.016392996534705162, -0.0007881998317316175, 0.03661130368709564, 0.03569735214114189,
- 0.051769062876701355, 0.09651140123605728, 0.01864050328731537, -0.10545231401920319,
- -0.07161049544811249, 0.10941086709499359, -0.03771187365055084, -0.04517374560236931,
- 0.0179054606705904, -0.06799734383821487, 0.062259990721940994, -0.14913448691368103,
- 0.08145969361066818, 0.14641182124614716, -0.06326191127300262, -0.014216250739991665,
- -0.03457946702837944, 0.07990007847547531, 0.015630915760993958, 0.029410384595394135,
- -0.07003945112228394, 0.01359814964234829, 0.021161211654543877, 0.03560630977153778,
- -0.042101092636585236, 0.03680574521422386, 0.09124802052974701, -0.06774963438510895,
- 0.011997385881841183, 0.0665745735168457, -0.019446229562163353, -0.01741362363100052,
- 0.0494178906083107, 0.03710994869470596, -0.06874942034482956, -0.030229875817894936,
- -0.020256897434592247, -0.0237826406955719, -0.002125451108440757,
- -0.051927123218774796, 0.0007631464395672083, 0.04559755325317383, -0.03442294895648956,
- -0.020321058109402657, 0.03839421644806862, 0.04369891434907913, 0.06856086105108261,
- -0.018804237246513367, 0.051479291170835495, -0.024257414042949677,
- -0.035185277462005615, 0.03649220988154411, 0.07257422804832458, 0.05807138979434967,
- -0.06566572934389114, -0.04487341642379761, -0.020434290170669556, -0.1195061057806015,
- -0.0022475174628198147, 0.07575201988220215, 0.050333812832832336, 0.03896718844771385,
- 0.049688443541526794, -0.09025102853775024, -0.007922797463834286, 0.08401621133089066,
- 0.011817888356745243, -0.006320360582321882, 0.01926172710955143, -0.04991161823272705,
- -0.0449080727994442, 0.11281388252973557, -0.018150407820940018, -0.023734498769044876,
- 0.010336852632462978, -0.07770835608243942, 0.0994747132062912, 0.07151360809803009,
- 0.032034799456596375, 0.011638416908681393, 0.022977998480200768, 0.010400978848338127,
- 0.05030248314142227, 0.007547889370471239, 0.008904168382287025, -0.028055140748620033,
- -0.11154520511627197, -0.08646263927221298, 0.023755226284265518, 0.08885496109724045,
- 0.067426398396492, -0.10307744145393372, -0.03588303551077843, -0.024324610829353333
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 53,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 16,
- "similarity": 0.9994699954986572
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 60,
- "similarity": 0.9991983771324158
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 19,
- "similarity": 0.9991511106491089
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Ben Guarino"],
- "epoch_date_downloaded": 1603756800,
- "epoch_date_modified": 1607299200,
- "epoch_date_submitted": 1607299200,
- "flag": null,
- "report_number": 1352,
- "source_domain": "washingtonpost.com",
- "submitters": ["Patrick Hall (BNH.ai)", "CSET annotators"],
- "title": "Google faulted for racial bias in image search results for black teenagers",
- "url": "https://www.washingtonpost.com/news/morning-mix/wp/2016/06/10/google-faulted-for-racial-bias-in-image-search-results-for-black-teenagers/"
- },
- {
- "__typename": "Report",
- "authors": ["Jackie Snow"],
- "epoch_date_downloaded": 1604620800,
- "epoch_date_modified": 1607299200,
- "epoch_date_submitted": 1607299200,
- "flag": null,
- "report_number": 1351,
- "source_domain": "technologyreview.com",
- "submitters": ["Roman Lutz", "CSET annotators"],
- "title": "Bias already exists in search engine results, and it’s only going to get worse",
- "url": "https://www.technologyreview.com/2018/02/26/3299/meet-the-woman-who-searches-out-search-engines-bias-against-women-and-minorities/"
- },
- {
- "__typename": "Report",
- "authors": ["Safiya Umoja Noble"],
- "epoch_date_downloaded": 1605225600,
- "epoch_date_modified": 1658620800,
- "epoch_date_submitted": 1607299200,
- "flag": null,
- "report_number": 1350,
- "source_domain": "safiyaunoble.files.wordpress.com",
- "submitters": ["AIAAIC", "Thomas Giallella (CSET)"],
- "title": "Missed Connections: What search engines say about women",
- "url": "https://safiyaunoble.files.wordpress.com/2012/03/54_search_engines.pdf"
- },
- {
- "__typename": "Report",
- "authors": ["Marie Solis"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1006,
- "source_domain": "ca.news.yahoo.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Google \"Three Black Teenagers\" vs. \"Three White Teenagers\" - See the Problem?",
- "url": "https://ca.news.yahoo.com/google-three-black-teenagers-vs-144900921.html"
- },
- {
- "__typename": "Report",
- "authors": ["Alyssa Braithwaite"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1005,
- "source_domain": "sbs.com.au",
- "submitters": ["Roman Yampolskiy"],
- "title": "'Three black teenagers' Google Image search sparks racism row",
- "url": "https://www.sbs.com.au/news/three-black-teenagers-google-image-search-sparks-racism-row"
- },
- {
- "__typename": "Report",
- "authors": ["Zak Cheney-Rice"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1004,
- "source_domain": "nymag.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "When White Supremacists Target the Black Elderly",
- "url": "http://nymag.com/intelligencer/2018/10/white-supremacist-shooting-in-louisville-kentucky-kroger.html"
- },
- {
- "__typename": "Report",
- "authors": ["Chris Spags"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1003,
- "source_domain": "barstoolsports.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Barstool Sports",
- "url": "https://www.barstoolsports.com/undefined/a-google-image-search-of-three-black-teenagers-vs-three-white-teenagers-is-going-viral-for-being-so-accidentally-racist"
- },
- {
- "__typename": "Report",
- "authors": ["Washington Post"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1002,
- "source_domain": "washingtonpost.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Search 'three black teenagers' on Google and this is what you see",
- "url": "https://www.washingtonpost.com/video/business/technology/search-three-black-teenagers-on-google-and-this-is-what-you-see/2016/06/10/58ed1254-2f1e-11e6-b9d5-3c3063f8332c_video.html?utm_term=.c2cf5761e185"
- },
- {
- "__typename": "Report",
- "authors": ["Rozina Sini"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1001,
- "source_domain": "bbc.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "'Three black teenagers' Google search sparks Twitter row",
- "url": "https://www.bbc.com/news/world-us-canada-36487495"
- },
- {
- "__typename": "Report",
- "authors": ["Francis Scott"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1000,
- "source_domain": "dailymail.co.uk",
- "submitters": ["Roman Yampolskiy"],
- "title": "Google Image search for 'three black teenagers' vs 'three white teenagers' causes outrage",
- "url": "https://www.dailymail.co.uk/news/article-3631413/Three-black-teenagers-vs-three-white-teenagers-Google-Image-search-Twitter-video-goes-viral.html"
- },
- {
- "__typename": "Report",
- "authors": ["Marie Solis"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 999,
- "source_domain": "mic.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Google \"Three Black Teenagers\" vs. \"Three White Teenagers\" - See the Problem?",
- "url": "https://mic.com/articles/145485/google-three-black-teenagers-vs-three-white-teenagers-see-the-problem#.eS8w89IwC"
- },
- {
- "__typename": "Report",
- "authors": ["Antoine Allen"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 998,
- "source_domain": "antoinespeaks.co.uk",
- "submitters": ["Roman Yampolskiy"],
- "title": "Is Google Racist? Search 'Three Black Teenagers' Vs 'Three White Teenagers' \u0026 The Images Might Shock You: True Or False?",
- "url": "https://www.antoinespeaks.co.uk/three-black-teenagers-google-isnt-racist-but-these-images-make-it-look-it/antoinea/"
- },
- {
- "__typename": "Report",
- "authors": ["Ghast Lee"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 997,
- "source_domain": "sickchirpse.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Google Image Search For ‘Three Black Teenagers’ vs. ‘Three White Teenagers’ Is Outrageously Offensive",
- "url": "http://www.sickchirpse.com/three-white-teenagers/"
- },
- {
- "__typename": "Report",
- "authors": ["Kilgore9012"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 996,
- "source_domain": "ebaumsworld.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Googling \"Three Black Teens\" vs. \"Three White Teens\"",
- "url": "https://www.ebaumsworld.com/videos/this-is-what-happens-when-you-search-three-black-teenagers-on-google/85048098/"
- },
- {
- "__typename": "Report",
- "authors": ["Paula Mooney"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 995,
- "source_domain": "inquisitr.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Three Black Teenagers Vs. Three White Teenagers: Google Images Shows Evil Mugshots And Happy Stock Photos",
- "url": "https://www.inquisitr.com/3184046/three-black-teenagers-vs-three-white-teenagers-google-images-shows-evil-mugshots-and-happy-stock-photos/"
- },
- {
- "__typename": "Report",
- "authors": ["Rob Waugh"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 994,
- "source_domain": "metro.co.uk",
- "submitters": ["Roman Yampolskiy"],
- "title": "Man compares Google searches for ‘black teenagers’ and ‘white teenagers’",
- "url": "https://metro.co.uk/2016/06/08/man-compares-google-searches-for-black-teenagers-and-white-teenagers-5931865/"
- },
- {
- "__typename": "Report",
- "authors": ["Antoine Allen"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 992,
- "source_domain": "theguardian.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "The ‘three black teenagers’ search shows it is society, not Google, that is racist",
- "url": "https://www.theguardian.com/commentisfree/2016/jun/10/three-black-teenagers-google-racist-tweet"
- },
- {
- "__typename": "Report",
- "authors": ["Ethan Chiel"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 991,
- "source_domain": "splinternews.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "'Black teenagers' vs. 'white teenagers': Why Google's algorithm displays racist results",
- "url": "https://splinternews.com/black-teenagers-vs-white-teenagers-why-googles-algori-1793857436"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "predpol",
- "name": "PredPol"
- },
- {
- "__typename": "Entity",
- "entity_id": "oakland-police-department",
- "name": "Oakland Police Department"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "predpol",
- "name": "PredPol"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "oakland-residents",
- "name": "Oakland Residents"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [
- 1526, 1525, 1524, 1349, 1347, 1019, 1018, 1017, 1015, 1014, 1013, 1012, 1011, 1010,
- 1009, 1008, 1007
- ],
- "vector": [
- -0.05645285842611509, 0.06656123237574801, 0.01856854890117093, -0.09233428976115059,
- 0.10195447942789863, -0.020025628954446054, -0.00723731197307215, 0.04770464233725386,
- 0.08179527060950503, -0.1419059016248759, 0.007544192827909309, 0.06434686013552196,
- 0.013035325162277064, -0.07370844592942911, 0.018749503980335945, -0.08276059807223432,
- -0.1031224510687239, -0.0604289580574807, -0.024820817908381716, -0.14475000605863683,
- -0.057111219530377316, -0.01707819417831214, -0.007409156491870389, 0.098055259708096,
- -0.050072379848536325, 0.03758532822351245, 0.09142232795848566, 0.11033168106394656,
- -0.060690471464220214, 0.049479646142572165, -0.025434742229716742,
- -0.08592250735005912, 0.12393836063497207, 0.008310608017970534, -0.003214594260926413,
- 0.0960310726043056, 0.01386756166432272, -0.03662141078658512, 0.023367520079345387,
- -0.010055267703993356, 0.013343395350281806, 0.2709543731282739, -0.008941124960341874,
- -0.02403378234628369, 0.04916327870587873, -0.05695871400701649, -0.010232764433192857,
- 0.05916746640030075, -0.0007507768733536496, 0.031005918979644775,
- -0.020720658659496727, 0.05420428552829167, -0.045070903156610095, 0.03700193932608647,
- -0.11235677670030032, 0.038550334294354, 0.02106912258793326, 0.011568647014963277,
- 0.04716274347704123, -0.07211111201082959, -0.04728611443630036, -0.22323936399291544,
- -0.022982444835018694, -0.08798311650753021, 0.10370133488493807, -0.06332900791483767,
- -0.03601226897872573, 0.02049695752622724, 0.014888458679813673, 0.04835598521372851,
- 0.06331623797578846, -0.02086104067754658, -0.025356424808063927, 0.029380554607247606,
- -0.014209621964255348, -0.01275909909129362, -0.007489701219396118, 0.1841749518233187,
- -0.09664632182787447, 0.009505068910691668, 0.08935964282821207, -0.07649716318530195,
- 0.42183926350930157, 0.013536719625870533, -0.007125430925310973, -0.028222050240455085,
- 0.07898336550330415, 0.04695395413128769, 0.04742391473230194, 0.04885314333745662,
- -0.01594865633695222, 0.0427822227425435, -0.07414648353176959, -0.010795739999807933,
- 0.07344717554309789, 0.031270109474837014, 0.003733950954697588, 0.043017275193158316,
- -0.01348216664593886, -0.06363878793576185, -0.02620266331359744, -0.022471179281744885,
- 0.08227547860759146, 0.07956867944449186, -0.05000167378388783, 0.004799115427030141,
- 0.10406005470191731, -0.05387457646429539, 0.05350394207326805, -0.05802119841032168,
- 0.028366745011333155, 0.006216508308973382, 0.03887141033020966, -0.006197316667941564,
- 0.024916930446017754, -0.06020466457394993, 0.01767161165994099, 0.023767930140499684,
- 0.09974760518354528, 0.024951197159038308, -0.01865948417552692, 0.04702777579865035,
- 0.08171032412963755, -0.07114207744598389, -0.0500703279805534, -0.03171391071587363,
- -0.053510996348717636, -0.04879284937701681, -0.023486568667816326,
- 0.038769141818835014, -0.045065762557308466, -0.1889241469257018, -0.000567506649531424,
- 0.08477029544027413, -0.02202300634406343, -0.03720390194040887, 0.003153810819426058,
- -0.05638838504605433, 0.04124150119776673, -0.02673184915500529, -0.019171678050256828,
- 0.07591608583050616, 0.0593287183848374, 0.02341197001035599, 0.12252269071691177,
- 0.05010880694231566, -0.04884879526627414, -0.021607918829164085, -0.016276136930922374,
- -0.01313031731200788, 0.12053355004857569, -0.1403299035394893, -0.05551282732802279,
- -0.0015802531612708287, -0.02717191493138671, 0.6955295836224276, 0.12129528426072177,
- 0.17937647025374806, 0.007805168478037505, -0.02553346596986932, 0.17391501279438243,
- 0.016697783355887036, 0.0584657345624531, -0.09260379917481366, -0.026275246924556354,
- 0.015477375866954817, -0.06987447642228183, -0.033618444426204354, 0.05006825517150847,
- 0.03808313449981677, 0.11016107043799232, 0.028288618825814304, 0.07824044532197363,
- 0.018289577650755423, -0.10209322107188842, -0.03373255394399166, 0.08693452694398515,
- -0.01345580813315738, -0.13264150698395336, -0.026219007613904336, 0.0766892181161572,
- 0.07707029515329529, -0.10469440239317276, 0.02010628645417883, -0.06759738155147609,
- 0.06051662921741167, -0.01984319314771496, 0.029185637667336884, -0.04139627028694924,
- 0.04011418418410946, 0.04014572933973635, 0.06847710797891897, 0.013548398125053877,
- -0.1295033062205595, -0.04502172118929379, 0.09775058267747655, -0.027286246148458516,
- -0.035353572820039356, 0.08394782376639984, -0.0963796491132063, 0.052058494266341716,
- 0.005312724244397353, 0.17035694025895176, -0.12518442685113235, 0.0037986704519425984,
- -0.011578037115909597, -0.03640355336178532, 0.04436551593244076, 0.010604894500883186,
- -0.04539067144779598, -0.04997728947166573, 0.07900490918580223, 0.030045706135056475,
- 0.09586096839869723, 0.04617386642733917, -0.05482990601483513, 0.03813289341462009,
- 0.06713490582564298, 0.020106412148486602, -0.022547492486089196, 0.0609101455877809,
- 0.06617124389637918, -0.015341981834567645, -0.02006940440932179, 0.042562191922436744,
- 0.0224942395956639, 0.04597111739327803, 0.0018784451116088724, 0.035810906878289056,
- -0.02133092993651243, -0.06574308127164841, 0.04801419311586548, 0.0706615839701365,
- 0.01980621203341905, 0.1051771978245062, -0.04905882536652772, -0.040835183490451205,
- -0.035982098307131845, -0.03363357281641049, -0.0011167156284072383,
- -0.014543386231012204, 0.07670473811381004, 0.09002628615673851, 0.09220672092017006,
- 0.036864388213657284, 0.03626372229636592, 0.044937276445767456, 0.05545816756784916,
- 0.023141282446244183, 0.07128266551915337, -0.014728914727182948, -0.048019608229343945,
- -0.012250606176059912, -0.005398150098164265, 0.004970875748446868,
- 0.023174305706668424, -0.08465255555861137, -0.04424984654521241, -0.07276863145970684,
- -0.048248261524884796, -0.09043520798577982, -0.07996746744303142, -0.00980841409524574,
- 0.044699760592159105, -0.05515734478831291, -0.09095216389088069, -0.08750924796742551,
- 0.023409185684559977, 0.09813359511249206, -0.026131904053994837, -0.01938080239479485,
- -0.1204202083103797, 0.029258423087680164, -0.014092376969261643, 0.0408350024920176,
- -0.025247059002354303, 0.02726562442972756, 0.007406883133465753, -0.06436726757708718,
- 0.04637726801721489, -0.02707038740353549, -0.012030292328049922, -0.04431396436548846,
- -0.028583692112828, -0.043845558011740005, -0.02387469308450818, 0.010162339374587378,
- -0.03664551514050211, 0.0344178217517979, 0.035455617834539974, 0.03623538602636579,
- -0.026765713249059284, -0.04504650179296732, 0.0686421959715731, -0.016886633599129067,
- -0.021048507733640316, 0.11372388614451184, -0.02667350328856093, 0.042068505878834164,
- -0.0030928562765064485, -0.08625841447535683, -0.06285375816857114,
- 0.013694186872967026, -0.020831955185927013, 0.037858236533151395,
- -0.044848675730035585, -0.0028346222688389175, -0.04156712539877523,
- -0.007366555784007206, 0.0646881113814957, -0.05745748638668481, -0.07302338608047541,
- -0.09320135984350653, 0.13671616946949677, -0.005192216340219602,
- -0.0031156088602181304, 0.009467499094385216, -0.0579143598305938, 0.04250788291477982,
- -0.004843173452707774, 0.01737492264039568, 0.019954584441353184, 0.04493611831875408,
- -0.0041216735810260564, 0.0019109905188088305, 0.06724706445546712,
- -0.04196703979088103, 0.027988951927160517, 0.06889403764815892, 0.4542577161508448,
- -0.1784107230932397, 0.07195143598844023, 0.10291815330000485, 0.04492542169549886,
- 0.04905236216590685, -0.040928202008431336, 0.06807368413052138, 0.08673668039195678,
- 0.1287809044999235, 0.10532642594155144, -0.04559201539001044, -0.0128778865430778,
- -0.0931967368678135, 0.10543962480390773, -0.005542960233630284, 0.02972933611668208,
- -0.0356254618450561, -0.09956362208022791, -0.00468515618087943, 0.03312220909249257,
- -0.04286263966658974, 0.007636216455413138, 0.003136981463552836, -0.05657064772265799,
- -0.011768725947203004, 0.005818757954437067, 0.012273375420858535,
- -0.039218417026431245, 0.030668835347408756, -0.013176626580602983, 0.07957035412683207,
- 0.03845098869436804, 0.041148018612362, -0.14692109341130538, 0.008147795944858123,
- -0.06692519581274074, -0.08813199422815267, 0.09381056533140295, -0.028665161636822364,
- 0.043752963134251976, 0.05476725011077874, -0.0572865625624271, 0.05388931672581855,
- -0.0037770257536869716, -0.0564795546233654, 0.030169398359516087, 0.044009614242788625,
- 0.03757046589025242, 0.06529419496655464, 0.13914878622573965, -0.04691790486685932,
- -0.03415240285753766, -0.09445067451280706, 0.07341048976077753, 0.14352576171650605,
- 0.0023859020473216384, -0.0016369084375636542, 0.026644957744899916,
- -0.021827531879192546, 0.00015052901717888957, -0.04744318215286031,
- -0.058434809338958824, 0.011450969888006939, -0.03061276042888708, 0.09411645373877357,
- 0.022340528762844557, -0.01105960740653031, -0.1393885603722404, -0.0057317817773925046,
- -0.044539214413174814, 0.027999779442325234, 0.12365585828528684, -0.04517445663976319,
- 0.05508992946980631, 0.00866534497232779, 0.009246035013347864, 0.03444047924131155,
- -0.06320252422900761, 0.022793364628930304, -0.04916668261456139, 0.02534379022237023,
- 0.07486618595088229, 0.04279464549001526, -0.023766201996134922, 0.08651671273743405,
- -0.10373783111572266, 0.07144242947962244, -0.009014917126692393, -0.02750567105763099,
- 0.025726731483112362, -0.020620311743935898, 0.028278005487449905, 0.02471462799825103,
- -0.017807866638416752, -0.006503096863846569, -0.02880647109465345,
- -0.05070406584726537, -0.07009889163515147, -0.05824205794316881, -0.022283002104171935,
- -0.058229181038982725, 0.033326382748782635, -0.13509517995750203,
- -0.022645710323772886, -0.05307942420682486, -0.021085248383529046,
- -0.01131477689555408, 0.024039735771058238, 0.01952931206837735, -0.11899952962994576,
- 0.011547739206648925, -0.01939689486479277, 0.07164907674579059, -0.009129713275743759,
- -0.058489531607312316, 0.032043476452064866, 0.10720851228517644, 0.051575771697303825,
- -0.045702643902172095, -0.016380646719720542, -0.05050903569687815,
- 0.034045633380575216, -0.13503891185802572, -0.43843405825250287, 0.0741101355456254,
- -0.0050193238455583065, 0.04762149996617261, 0.004399348447537597, -0.06121971392456223,
- 0.03484616925090771, -0.009877212698270074, -0.028988401953350094, 0.07490584681577542,
- -0.049101400024750656, 0.03729139865540406, -0.007243432982838438, -0.07628043258891386,
- -0.031465328818954086, -0.06393657120711663, -0.061383725637022185, 0.03085422973312876,
- -0.01548096670098055, -0.08363250073264628, -0.11360593315433054, 0.03968450066167861,
- -0.0002516958150355255, 0.015636588340652558, 0.019118825891329086,
- 0.027053094147156703, -0.04430179692366544, -0.047064760206815076, 0.04135707097456736,
- 0.06165903729989248, 0.026884736821931952, -0.0741586207466967, -0.0033219838241005644,
- 0.0533767877256169, -0.009454004918499029, 0.09692301842219689, 0.00754101449788055,
- 0.025460762471672806, -0.07027922877494026, 0.10283760375836316, 0.058968918617157376,
- 0.1846294262829949, -0.003939604585278122, 0.03016917303423671, 0.026050853844293776,
- 0.15966594920438879, 0.06114452255561071, 0.003985994310556527, -0.03653443051392541,
- -0.003965591655715424, 0.02153431246851516, -0.007097452967975508, 0.06698356262024711,
- -0.08051097546430196, -0.030092316734440187, -0.048360430799862915,
- -0.008497384431607583, -0.018373435459044928, -0.0014114513828912202,
- 0.20986362765817082, 0.02255358689409845, 0.022724657689275986, 0.03472132939735756,
- -0.045689375249340254, 0.020834840532830533, -0.05765583590768716, -0.10776609620627235,
- -0.01384307668708703, -0.022764938424670082, 0.013696818187942399,
- -0.028494835529914674, -0.1283547413699767, -0.014043142923208721, 0.01533833846127998,
- 0.0025729262492592063, 0.12511845458956325, -0.034824191745000836, 0.02754352921157774,
- -0.03791427784873282, 0.12642470221309102, 0.031717398532611484, -0.014795267434023759,
- 0.05914941660183318, 0.09615479146733004, 0.02391632554559585, 0.032171183450640566,
- -0.040360064889468694, -0.08185549036544912, -0.01972883709565983, 0.14004355493713827,
- -0.044249558944583815, 0.09488659812247052, 0.061266708789523415, -0.049630974132656665,
- -0.07004457843654296, 0.03000095336157007, -0.006342329608742148, 0.007004756357192117,
- -0.44972819265197306, -0.039042236694299126, 0.09641996113693013, 0.007299117196132155,
- 0.024416697759400394, 0.07365884609958705, 0.018649048849885518, -0.03530701570322409,
- -0.02293036624049658, -0.08536896832725581, 0.1165702038389795, 0.007046331274871002,
- 0.05518567244357923, -0.10306470096111298, 0.0553986094892025, 0.08166758639409262,
- -0.009520333562464015, 0.014048944213701522, 0.07695940734051607, -0.2620643920758191,
- -0.0019358534037190326, -0.024078198626418326, 0.11512681754196391,
- 0.004033778521903407, 0.016691495387717355, 0.06427504056516815, -0.07994063614922411,
- 0.02062705413931433, 0.06872514854459201, -0.005201869391706115, 0.02996321756611852,
- -0.01792135593645713, -0.03373983169234741, 0.10054895632407244, 0.10834959412322324,
- 0.045200746999505687, -0.01238525056225412, 12.054502767675062, 0.056671880788224584,
- 0.07039821958717178, -0.1178254465408185, 0.017303845465957077, -0.04711315123473897,
- 0.008534929400090785, -0.12208524959928849, 0.08722040363970925, 0.13640947333153555,
- -0.0169387188849642, -0.07275731905418284, -0.0318033426780911, -0.10060481705209788,
- 0.025280728881411692, -0.05099635130232748, -0.0704747730975642, -0.04204007008058183,
- 0.055253455634502804, -0.04024566162158461, -0.025611165500081638, 0.030297385165741778,
- 0.05275159307262477, 0.02725579184206093, -0.07099754187990637, 0.010271488634102485,
- 0.03873486104695236, -0.02715992263299139, -0.006983148118974093, 0.0416814601939062,
- 0.001617256853291217, -0.001045980942709481, 0.050261300495442224, 0.008039217654560856,
- 0.024560034364078415, 0.054370785707279164, 0.09035056456923485, 0.03607513925389332,
- 0.027368455440463388, 0.10651345331879224, 0.009125390405054478, 0.04265512295943849,
- -0.004325437989524182, 0.028378096874803305, 0.06292199080481249, 0.07574583153130815,
- 0.030780915937879506, 0.1188783834085745, 0.029997624484274316, 0.06773133422521983,
- 0.10584444618400406, -0.029770029150634345, 0.12279840953209821, 0.00792239559814334,
- 0.0010626211211167496, 0.05949363495935412, 0.012096770837053876, -0.06750966827659045,
- 0.06301802166682832, 0.04946320388904389, -0.0420227268272463, 0.11752200170474894,
- -0.00946809142410262, 0.10310288584407638, 0.0008846536580034915, 0.06476723128820167,
- 0.07954598798909608, 0.08160511831588604, -0.1305893484283896, -0.07062651885344702,
- 0.010289132951156181, -0.10503026273320704, -0.05778469402781304, 0.08435362752746134,
- 0.1067130598513519, -0.03169104273376219, 0.03479612947729252, -0.00612798663753304,
- 0.022225683719358024, -0.059924653019098675, -0.0124122285791707, 0.06295420667704414,
- -0.009380534948671566, 0.0016143237076261465, 0.06457199835601975, 0.02671303821946768,
- 0.05230286568899721, 0.08780472035355427, -0.01219475073465968, -0.11971099236432244,
- -0.08907818597029238, 0.08223774327951319, -0.03401620338862652, -0.0727485304369646,
- 0.03466503637815442, -0.05211625686463188, 0.06423639130833395, -0.15330201738020954,
- 0.06278164706685964, 0.1187379653839504, -0.07884826839846723, -0.03309771766790243,
- -0.04539548375589006, 0.05691995482672663, 0.019494980625013876, 0.04310958443538231,
- -0.05153771478901891, -0.0012032484758974, 0.017633242046405727, 0.044184901148957366,
- -0.03462800115127774, 0.07370076931136496, 0.07654968802543248, -0.038792895153164864,
- -0.0012809527928338332, 0.06023102264632197, -0.03127402125392109,
- -0.032940697144059575, 0.07020831940805211, 0.0601374007323209, -0.07210344536339536,
- -0.053030722281512094, -0.026841468095560286, -0.03476940777481479,
- -0.02025675116901231, -0.07972342871567782, 0.009230512649724808, 0.044840533121982044,
- -0.06469391341156819, 0.0037629586980020735, 0.01961718058651861, 0.04426157397820669,
- 0.07672476779450388, -0.028388698345652837, 0.07392844765940133, -0.07055569801698713,
- -0.05801628080114503, 0.044207584660719425, 0.051485421136021614, 0.05389008505324669,
- -0.046966593657784605, -0.04294433378997971, -0.06048028138192261, -0.0907990627867334,
- 0.02495884940178846, 0.09922192421029596, 0.041086269090609515, 0.03416683340294506,
- 0.027922933647299513, -0.0622238875092829, -0.03670167796971167, 0.11118883508093216,
- 0.03159996479585329, -0.007661395021440352, 0.02537220246021581, -0.07513431174790158,
- -0.05750173154999228, 0.10953203807858859, -0.0484522248563521, -0.008475445182471852,
- 0.010979398016763084, -0.004868644467719337, 0.09928546670605154, 0.10510960571906146,
- 0.046478233368629045, 0.0630585276247824, 0.0314839598705636, -0.007191342863199466,
- 0.026715928661253524, -0.0342785341610365, 0.018745120649006877, -0.03812752864049638,
- -0.07830463897655993, -0.06626217768472784, 0.019804024834336492, 0.09697141673635035,
- 0.0228970025679754, -0.10163994067732025, -0.0061907494878944225, -0.05827761474339401
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 54,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 11,
- "similarity": 0.9994363784790039
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 40,
- "similarity": 0.999415934085846
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 19,
- "similarity": 0.9989705681800842
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": [
- "Aaron Sankin",
- "Dhruv Mehrotra",
- "Surya Mattu",
- "Dell Cameron",
- "Annie Gilbertson",
- "Daniel Lempres",
- "Josh Lash"
- ],
- "epoch_date_downloaded": 1644969600,
- "epoch_date_modified": 1644969600,
- "epoch_date_submitted": 1644969600,
- "flag": null,
- "report_number": 1526,
- "source_domain": "gizmodo.com",
- "submitters": ["Anonymous"],
- "title": "Crime Prediction Software Promised to Be Free of Biases. New Data Shows It Perpetuates Them",
- "url": "https://gizmodo.com/crime-prediction-software-promised-to-be-free-of-biases-1848138977"
- },
- {
- "__typename": "Report",
- "authors": ["Dhruv Mehrotra", "Surya Mattu", "Annie Gilbertson", "Aaron Sankin"],
- "epoch_date_downloaded": 1644969600,
- "epoch_date_modified": 1644969600,
- "epoch_date_submitted": 1644969600,
- "flag": null,
- "report_number": 1525,
- "source_domain": "gizmodo.com",
- "submitters": ["Anonymous"],
- "title": "How We Determined Predictive Policing Software Disproportionately Targeted Low-Income, Black, and Latino Neighborhoods",
- "url": "https://gizmodo.com/how-we-determined-predictive-policing-software-dispropo-1848139456"
- },
- {
- "__typename": "Report",
- "authors": ["Matthew Guariglia"],
- "epoch_date_downloaded": 1644969600,
- "epoch_date_modified": 1644969600,
- "epoch_date_submitted": 1644969600,
- "flag": null,
- "report_number": 1524,
- "source_domain": "eff.org",
- "submitters": ["Anonymous"],
- "title": "Police Use of Artificial Intelligence: 2021 in Review",
- "url": "https://www.eff.org/deeplinks/2021/12/police-use-artificial-intelligence-2021-review"
- },
- {
- "__typename": "Report",
- "authors": ["Julia Angwin", "Jeff Larson", "Surya Mattu", "Lauren Kirchner"],
- "epoch_date_downloaded": 1605312000,
- "epoch_date_modified": 1607299200,
- "epoch_date_submitted": 1607299200,
- "flag": null,
- "report_number": 1349,
- "source_domain": "propublica.org",
- "submitters": ["AIAAIC", "Thomas Giallella (CSET)"],
- "title": "Machine Bias",
- "url": "https://www.propublica.org/article/machine-bias-risk-assessments-in-criminal-sentencing"
- },
- {
- "__typename": "Report",
- "authors": ["George Joseph"],
- "epoch_date_downloaded": 1605398400,
- "epoch_date_modified": 1607299200,
- "epoch_date_submitted": 1607299200,
- "flag": null,
- "report_number": 1347,
- "source_domain": "theintercept.com",
- "submitters": ["AIAAIC", "Thomas Giallella (CSET)"],
- "title": "IBM Used NYPD Surveillance Footage to Develop Technology that Lets Police Search by Skin Color",
- "url": "https://theintercept.com/2018/09/06/nypd-surveillance-camera-skin-tone-search/"
- },
- {
- "__typename": "Report",
- "authors": [
- "Andrew Guthrie Ferguson",
- "William C. Anderson",
- "Amelia Mcdonell-Parry",
- "Guy Hamilton-Smith",
- "Melissa Gira Grant"
- ],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1019,
- "source_domain": "theappeal.org",
- "submitters": ["Roman Yampolskiy"],
- "title": "The Truth About Predictive Policing and Race",
- "url": "https://theappeal.org/the-truth-about-predictive-policing-and-race-b87cf7c070b1/"
- },
- {
- "__typename": "Report",
- "authors": ["David O’Connor"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1672272000,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1018,
- "source_domain": "cfr.org",
- "submitters": ["Roman Yampolskiy"],
- "title": "Predictive Policing Is Not as Predictive As You Think",
- "url": "https://www.cfr.org/blog/predictive-policing-not-predictive-you-think"
- },
- {
- "__typename": "Report",
- "authors": ["Jack Smith Iv"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1017,
- "source_domain": "businessinsider.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Crime-prediction tool may be reinforcing discriminatory policing",
- "url": "https://www.businessinsider.com/predictive-policing-discriminatory-police-crime-2016-10?IR=T"
- },
- {
- "__typename": "Report",
- "authors": ["Emily Thomas"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1015,
- "source_domain": "motherboard.vice.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Why Oakland Police Turned Down Predictive Policing",
- "url": "https://motherboard.vice.com/en_us/article/ezp8zp/minority-retort-why-oakland-police-turned-down-predictive-policing"
- },
- {
- "__typename": "Report",
- "authors": ["David Robinson"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1014,
- "source_domain": "medium.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "“Predictive policing” is happening now - and police could learn a lesson from Minority Report.",
- "url": "https://medium.com/equal-future/predictive-policing-is-happening-now-and-police-could-learn-a-real-lesson-from-minority-report-e105a592eda0"
- },
- {
- "__typename": "Report",
- "authors": ["Jathan Sadowski"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1672272000,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1013,
- "source_domain": "theguardian.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Police data could be labelling 'suspects' for crimes they have not committed",
- "url": "https://www.theguardian.com/technology/2016/feb/04/us-police-data-analytics-smart-cities-crime-likelihood-fresno-chicago-heat-list"
- },
- {
- "__typename": "Report",
- "authors": ["William Isaac", "Kristian Lum"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1672272000,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1012,
- "source_domain": "usatoday.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Predictive policing violates more than it protects: Column",
- "url": "https://www.usatoday.com/story/opinion/policing/spotlight/2016/12/02/predictive-policing-violates-more-than-protects-column/94569912/"
- },
- {
- "__typename": "Report",
- "authors": ["Kristian Lum", "William Isaac"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1672272000,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1011,
- "source_domain": "rss.onlinelibrary.wiley.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "To predict and serve?",
- "url": "https://rss.onlinelibrary.wiley.com/doi/full/10.1111/j.1740-9713.2016.00960.x"
- },
- {
- "__typename": "Report",
- "authors": ["Seeta Peña Gangadharan", "Andrew Papachristos"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1010,
- "source_domain": "nytimes.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Be Cautious About Data-Driven Policing",
- "url": "https://www.nytimes.com/roomfordebate/2015/11/18/can-predictive-policing-be-ethical-and-effective/be-cautious-about-data-driven-policing"
- },
- {
- "__typename": "Report",
- "authors": ["Alexis Madrigal"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1009,
- "source_domain": "splinternews.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Predictive Policing: the future of crime-fighting, or the future of racial profiling?",
- "url": "https://splinternews.com/predictive-policing-the-future-of-crime-fighting-or-t-1793855820"
- },
- {
- "__typename": "Report",
- "authors": ["Justin Jouvenal"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1008,
- "source_domain": "washingtonpost.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Police are using software to predict crime. Is it a ‘holy grail’ or biased against minorities?",
- "url": "https://www.washingtonpost.com/local/public-safety/police-are-using-software-to-predict-crime-is-it-a-holy-grail-or-biased-against-minorities/2016/11/17/525a6649-0472-440a-aae1-b283aa8e5de8_story.html?utm_term=.f2ba513c96fc"
- },
- {
- "__typename": "Report",
- "authors": ["Whitney Curtis"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1664236800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1007,
- "source_domain": "themarshallproject.org",
- "submitters": ["Roman Yampolskiy"],
- "title": "Policing the Future",
- "url": "https://www.themarshallproject.org/2016/02/03/policing-the-future"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "amazon",
- "name": "Amazon"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "amazon",
- "name": "Amazon"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "children",
- "name": "Children"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [
- 1038, 1036, 1035, 1034, 1033, 1032, 1030, 1029, 1028, 1027, 1026, 1025, 1024, 1022,
- 1021, 1020
- ],
- "vector": [
- -0.05519193783402443, 0.06155853345990181, 0.0024480181746184826, -0.14466531574726105,
- 0.09178484231233597, 0.002662748098373413, -0.0018276433693245053, 0.06626500934362411,
- 0.10044939815998077, -0.12793372571468353, 0.020976509898900986, 0.06719957292079926,
- 0.02693730778992176, -0.08333521336317062, 0.04608816280961037, -0.054400209337472916,
- -0.06794384121894836, -0.059081487357616425, -0.015080840326845646,
- -0.13712608814239502, -0.07660312950611115, 0.003134009428322315, 0.03141595423221588,
- 0.11888917535543442, -0.07298610359430313, -0.0022610239684581757, 0.0916445404291153,
- 0.10537877678871155, -0.02948775701224804, 0.026599667966365814, -0.014522573910653591,
- -0.07071570307016373, 0.0940406396985054, 0.0206456296145916, 0.004271653015166521,
- 0.08716459572315216, 0.014799929223954678, -0.020084351301193237, -0.05462967976927757,
- -0.02342159114778042, 0.012219976633787155, 0.1905670017004013, 0.009514193050563335,
- -0.03592227026820183, 0.05451895669102669, -0.023074354976415634, -0.007629837840795517,
- 0.013028625398874283, -0.014457887038588524, 0.019583672285079956, 0.020379984751343727,
- 0.013319004327058792, -0.025051655247807503, 0.02890150435268879, -0.1076069325208664,
- 0.056365303695201874, 0.04804374277591705, 0.029241295531392097, 0.04131438583135605,
- -0.04835682362318039, -0.01702861860394478, -0.16418559849262238, -0.055213164538145065,
- -0.05375371128320694, 0.09226907789707184, -0.061809830367565155, -0.05079153552651405,
- 0.044763077050447464, -0.003356408327817917, 0.06438334286212921, 0.08040967583656311,
- -0.05606405436992645, -0.014858723618090153, 0.005042012315243483,
- -0.004099617246538401, -0.030565662309527397, 0.03209221363067627, 0.25566360354423523,
- -0.12240999191999435, -0.016647344455122948, 0.1623067557811737, -0.11112789064645767,
- 0.34493598341941833, 0.0049771033227443695, -0.003466494381427765,
- -0.012212333269417286, 0.07900958508253098, -0.010082872584462166, 0.032075315713882446,
- 0.027030423283576965, 0.0025884141214191914, 0.01808515377342701, -0.07240665704011917,
- 0.007802294567227364, 0.06049829721450806, -0.009404681622982025, -0.0477670356631279,
- -0.038334041833877563, 0.0017844276735559106, -0.0749533623456955, 0.016352767124772072,
- -0.05361257866024971, 0.08185693621635437, 0.07443488389253616, -0.047807659953832626,
- -0.012395203113555908, 0.06821517646312714, -0.030211176723241806, 0.06893515586853027,
- -0.052122801542282104, 0.035913560539484024, 0.01041660737246275, 0.05179546773433685,
- -0.016408374533057213, 0.019200719892978668, -0.038800742477178574, 0.04568357393145561,
- 0.033612340688705444, 0.09051572531461716, 0.060926470905542374, -0.01339594554156065,
- 0.048096708953380585, 0.07310689985752106, -0.06948892772197723, -0.03657083213329315,
- -0.02234841324388981, -0.040111836045980453, -0.023723402991890907,
- -0.02838894911110401, 0.049801167100667953, -0.041471436619758606, -0.19139030575752258,
- 0.03747759014368057, 0.06324063241481781, -0.01108512282371521, -0.03381790965795517,
- 0.015536608174443245, -0.07869745045900345, 0.049824438989162445, -0.02791239693760872,
- -0.056714609265327454, 0.05315786972641945, 0.061751589179039, 0.05904136598110199,
- 0.09438089281320572, 0.045599039644002914, -0.03684147819876671, -0.029336534440517426,
- -0.008392689749598503, -0.020139727741479874, 0.12727761268615723, -0.12015075236558914,
- -0.04894744232296944, 0.002968023531138897, 0.0028232878539711237, 0.6490396857261658,
- 0.10067616403102875, 0.18577834963798523, 0.01322798989713192, -0.008844544179737568,
- 0.17075495421886444, -0.03162490949034691, 0.04215167090296745, -0.039316970854997635,
- -0.05393293499946594, 0.025343112647533417, -0.07807494699954987, -0.03852001205086708,
- 0.029559552669525146, 0.01786443404853344, 0.06738606095314026, 0.043604929000139236,
- 0.0670778825879097, -0.009159473702311516, -0.12560071051120758, -0.03528958931565285,
- 0.029316332191228867, 0.012520670890808105, -0.11203989386558533, -0.042994264513254166,
- 0.041697487235069275, 0.10380205512046814, -0.0822397843003273, -0.010468225926160812,
- -0.0761832594871521, 0.025751810520887375, -0.03650374710559845, 0.028032496571540833,
- -0.04748260974884033, 0.039940446615219116, 0.06557004153728485, 0.0444466657936573,
- 0.008931086398661137, -0.047954052686691284, 0.007889248430728912, 0.12838798761367798,
- -0.004355838056653738, -0.0351395457983017, 0.01882607489824295, -0.07969167828559875,
- 0.01755538210272789, -0.006756656337529421, 0.12704196572303772, -0.09862792491912842,
- -0.007388703525066376, -0.004003686364740133, -0.029761584475636482,
- 0.036101773381233215, -0.01631680317223072, -0.07305458188056946, -0.06243284046649933,
- 0.08330383896827698, 0.028195595368742943, 0.08392107486724854, 0.057214222848415375,
- -0.01110322866588831, 0.05151057988405228, 0.09466337412595749, -0.0025142240338027477,
- -0.006183769088238478, 0.059353671967983246, 0.05216563865542412, -0.019602207466959953,
- -0.03075161762535572, -0.014303099364042282, 0.024935856461524963, 0.03160925954580307,
- -0.0035794710274785757, 0.0536174550652504, 0.04999953880906105, -0.030473945662379265,
- 0.02494199015200138, 0.02936115488409996, 0.016376616433262825, 0.07080461084842682,
- -0.056375883519649506, -0.09482752531766891, -0.03604797273874283,
- -0.010133125819265842, 0.009544933214783669, -0.037999510765075684, 0.09409067034721375,
- 0.08893299102783203, 0.030547766014933586, 0.06187018007040024, -0.01818316988646984,
- 0.04408925026655197, 0.08256129920482635, -0.007215193472802639, 0.05748020485043526,
- -0.012876390479505062, -0.052973274141550064, -0.048239611089229584,
- 0.029148675501346588, 0.02545761689543724, 0.030642863363027573, -0.08368471264839172,
- -0.04391331225633621, -0.03044668585062027, -0.04911854863166809, -0.09236178547143936,
- -0.03977586701512337, 0.019188564270734787, 0.025017481297254562, -0.06183468922972679,
- -0.09373123943805695, -0.0773153081536293, 0.023576442152261734, 0.09731291234493256,
- -0.036275628954172134, -0.026178840547800064, -0.110002800822258, 0.024679377675056458,
- -0.04531937465071678, 0.06025537848472595, 0.014608033932745457, -0.02552533708512783,
- 0.017164558172225952, -0.04606829583644867, 0.0536615252494812, 0.00931268185377121,
- -0.029176106676459312, -0.06647123396396637, -0.037365496158599854,
- -0.03313228115439415, 0.015854259952902794, -0.017964370548725128,
- -0.030401205644011497, 0.023040514439344406, 0.04366902634501457, 0.05990524962544441,
- 0.012264384888112545, -0.04424566775560379, 0.03860508278012276, -0.03577946871519089,
- 0.014781665988266468, 0.07946750521659851, -0.03723430633544922, 0.018546786159276962,
- -0.03974592685699463, -0.08520497381687164, -0.03481636196374893, 0.005230282433331013,
- -0.028804698958992958, 0.08601092547178268, -0.03217701613903046, 0.02543741464614868,
- -0.05207708850502968, -0.05140282213687897, 0.06512922793626785, -0.043662335723638535,
- -0.07952027767896652, -0.06497181206941605, 0.09481558203697205, -0.007491162978112698,
- -0.019265886396169662, 0.015474803745746613, -0.06296311318874359, 0.06247210130095482,
- -0.00048421521205455065, 0.004730612505227327, 0.048962872475385666,
- 0.05309509113430977, -0.01789894327521324, 0.04352596029639244, 0.0972464457154274,
- -0.015970848500728607, -0.00975026935338974, 0.030354905873537064, 0.4464494585990906,
- -0.31242552399635315, 0.08304964751005173, 0.11679256707429886, 0.03406255319714546,
- 0.08610256761312485, -0.0026010454166680574, 0.0599367618560791, 0.05732828378677368,
- 0.1189214289188385, 0.0666109248995781, -0.024759626016020775, -0.002077025594189763,
- -0.06601473689079285, 0.06366191804409027, 0.013389906845986843, 0.027681836858391762,
- -0.04322955384850502, -0.06232917308807373, -0.010996964760124683, 0.02678179368376732,
- -0.05363747850060463, -0.012582248076796532, 0.009919562377035618,
- -0.037705324590206146, 0.01158007699996233, 0.0177554152905941, 0.06223210692405701,
- -0.04644148424267769, 0.04218517988920212, -0.08806914836168289, 0.060144539922475815,
- 0.058944910764694214, 0.02932538464665413, -0.12316909432411194, 0.03507446497678757,
- -0.04123595356941223, -0.10447210818529129, 0.06545882672071457, -0.012138505466282368,
- 0.05872166529297829, 0.03619175776839256, -0.042333588004112244, 0.02340608276426792,
- -0.015979966148734093, -0.05783935636281967, 0.040504567325115204, 0.060449812561273575,
- 0.05439744144678116, 0.055153973400592804, 0.1428707391023636, -0.041409965604543686,
- -0.04731373488903046, -0.08010809868574142, 0.05130084231495857, 0.13550111651420593,
- -0.012059459462761879, 0.01321085263043642, -0.037761956453323364,
- 0.0043311878107488155, -0.019894277676939964, -0.04303666576743126,
- -0.06519152969121933, -0.051888417452573776, -0.05044229328632355, 0.0662677139043808,
- 0.03652988374233246, -0.04182944819331169, -0.1846150904893875, 0.0016281206626445055,
- -0.07271286100149155, 0.019348226487636566, 0.16139310598373413, -0.08071671426296234,
- 0.03436717763543129, 0.0026223284658044577, -0.02512372098863125, 0.014100001193583012,
- -0.106767438352108, 0.04675602540373802, -0.055068083107471466, 0.04085698351264,
- 0.05914313346147537, 0.037661533802747726, -0.09045559167861938, 0.0654376968741417,
- -0.0742889866232872, 0.09449101239442825, -0.00839619617909193, -0.00027827805024571717,
- 0.015658598393201828, -0.054241470992565155, 0.03245018422603607, 0.00553859444335103,
- -0.07721246778964996, 0.0510016493499279, -0.019556473940610886, -0.03800215572118759,
- -0.07152201235294342, -0.07062630355358124, -0.034652337431907654, -0.06890308111906052,
- 0.03316691517829895, -0.05309818685054779, -0.014379412867128849, -0.043240986764431,
- -0.009863498620688915, 0.009580811485648155, 0.005327471997588873, 0.03635178878903389,
- -0.11651855707168579, 0.015958618372678757, -0.007474873680621386, 0.04993787407875061,
- -0.02682337909936905, -0.03443210944533348, -0.014272022992372513, 0.07842833548784256,
- 0.047996774315834045, -0.044318635016679764, 0.01220758631825447, -0.0456678681075573,
- 0.046018633991479874, -0.09489700198173523, -0.5319121479988098, 0.06985801458358765,
- 0.03704768791794777, 0.018888136371970177, 0.009879007004201412, -0.07129700481891632,
- 0.024940427392721176, 0.0412769578397274, -0.04898082837462425, 0.09252511709928513,
- -0.06809857487678528, 0.06526122987270355, -0.019661564379930496, -0.08166845142841339,
- -0.027648722752928734, -0.08889415115118027, -0.014534789137542248,
- 0.030329229310154915, -0.04102161526679993, -0.0636494979262352, -0.12258369475603104,
- 0.022123148664832115, -0.029836492612957954, 0.022901594638824463, 0.0130083616822958,
- 0.0008410124573856592, -0.060333963483572006, -0.03483545780181885, 0.06808401644229889,
- 0.0651211142539978, 0.015604956075549126, -0.07421285659074783, -0.02663084678351879,
- 0.06315325945615768, 0.026627564802765846, 0.13855189085006714, 0.006784824654459953,
- -0.04082631692290306, -0.10678368806838989, 0.08263979107141495, 0.07517189532518387,
- 0.18425756692886353, -0.017909899353981018, 0.060438502579927444, -0.005159695632755756,
- 0.14901500940322876, 0.03219174966216087, -0.007756886538118124, -0.0380784310400486,
- -0.004271328449249268, 0.02273738943040371, -0.0202418752014637, 0.044150158762931824,
- -0.0965927392244339, -0.036991752684116364, -0.01573255844414234, -0.04841039329767227,
- 0.00884620938450098, 0.035662226378917694, 0.17552471160888672, 0.03294344246387482,
- 0.0667177364230156, 0.009130551479756832, -0.06140614673495293, 0.016179876402020454,
- -0.06133216246962547, -0.04928712546825409, -0.00739965820685029, 0.008080356754362583,
- -0.01499897986650467, -0.030688412487506866, -0.11941877752542496,
- -0.0031367072369903326, 0.02969956584274769, 0.02637731283903122, 0.10584209859371185,
- -0.005429802928119898, 0.04387512803077698, -0.07280577719211578, 0.11571153253316879,
- 0.018568985164165497, 0.02718201093375683, 0.04893902689218521, 0.08851391822099686,
- 0.04093855991959572, -0.012279123067855835, -0.036755893379449844, -0.06386458873748779,
- 0.005453517660498619, 0.14809145033359528, -0.016623368486762047, 0.11882071942090988,
- 0.07499313354492188, -0.01844959519803524, -0.039364006370306015, 0.02855447679758072,
- -0.02972434088587761, 0.02638215571641922, -0.501197338104248, -0.02932387962937355,
- 0.08971501141786575, 0.055190689861774445, 0.007722616195678711, 0.10143667459487915,
- 0.05965358391404152, -0.045888081192970276, -0.023656653240323067, -0.06819459795951843,
- 0.10137814283370972, 0.0008715575677342713, 0.054323188960552216, -0.12226402759552002,
- -0.00155802839435637, 0.049358975142240524, -0.024397049099206924, 0.004441300872713327,
- 0.10092378407716751, -0.24698267877101898, 0.024461999535560608, -0.0013598755467683077,
- 0.14816947281360626, 0.0006428358610719442, 0.0008293690625578165, 0.10226281732320786,
- -0.028089798986911774, 0.029162036255002022, 0.04772154614329338, 0.03456537798047066,
- 0.042048130184412, 0.025945167988538742, -0.00959449727088213, 0.11862792819738388,
- 0.054331447929143906, 0.07587047666311264, -0.0036538552958518267, 12.093695640563965,
- 0.05222798138856888, 0.043723247945308685, -0.06613751500844955, 0.0352366603910923,
- -0.04569854587316513, 0.03286191448569298, -0.10264979302883148, 0.051793284714221954,
- 0.12353062629699707, -0.013120557181537151, 0.003132512792944908, -0.03717219457030296,
- -0.09903097152709961, 0.02698386274278164, -0.03853636607527733, -0.05382291227579117,
- -0.04938100278377533, 0.06183897703886032, -0.025396671146154404, -0.05638454481959343,
- 0.07848280668258667, 0.029484128579497337, 0.0244001392275095, -0.05674262344837189,
- 0.029438801109790802, 0.032571449875831604, 0.0004956414923071861, 0.002560220193117857,
- 0.022846369072794914, 0.006665976718068123, 0.042915187776088715, 0.044277697801589966,
- -0.009474892169237137, 0.05168373882770538, 0.02257111296057701, 0.07996326684951782,
- 0.04749351739883423, 0.0396585687994957, 0.11429577320814133, 0.006413350347429514,
- -0.0004495002212934196, 0.03442345932126045, 0.007333355490118265, 0.05044311657547951,
- 0.02864358201622963, 0.01765146106481552, 0.11913640052080154, -0.01450024452060461,
- 0.060166094452142715, 0.09010297060012817, -0.025925125926733017, 0.09688340872526169,
- 0.04067622870206833, -0.031048418954014778, 0.06195656582713127, 0.00010992190800607204,
- -0.06953239440917969, 0.09156673401594162, 0.06007931008934975, -0.06770631670951843,
- 0.09038730710744858, -0.005688194651156664, 0.10875631123781204, -0.014815244823694229,
- 0.04574190825223923, 0.09166451543569565, 0.07664631307125092, -0.08591660857200623,
- -0.0883989930152893, 0.016874972730875015, -0.07938671112060547, -0.08787859231233597,
- 0.050522662699222565, 0.10068704187870026, -0.031350184231996536, 0.04422719031572342,
- -0.04719484969973564, 0.025634068995714188, -0.0051664928905665874, 0.02674774080514908,
- 0.034840263426303864, -0.009784066118299961, 0.013020437210798264, 0.07024821639060974,
- 0.04943712428212166, 0.0039010890759527683, 0.06333054602146149, 0.014802137389779091,
- -0.13724969327449799, -0.0721120610833168, 0.12275000661611557, -0.034321077167987823,
- -0.07333843410015106, 0.041009582579135895, -0.04937957972288132, 0.036538265645504,
- -0.1481715738773346, 0.07696912437677383, 0.11587906628847122, -0.06262116879224777,
- 0.02377241477370262, -0.035196058452129364, 0.09741445630788803, -0.025894055142998695,
- 0.032412827014923096, -0.0933346375823021, -0.0021821323316544294, 0.024857932701706886,
- 0.04105750471353531, -0.044662512838840485, 0.056367676705121994, 0.0940127968788147,
- -0.07255729287862778, 0.011427506804466248, 0.04768718406558037, -0.009661512449383736,
- 0.002149484818801284, 0.05957994610071182, 0.024598900228738785, -0.06978263705968857,
- -0.02229613997042179, -0.024082066491246223, -0.057581402361392975,
- -0.0035467552952468395, -0.04995374381542206, 0.021857213228940964, 0.04425342008471489,
- -0.042833562940359116, 0.01744004711508751, 0.041735146194696426, 0.04747842624783516,
- 0.05669547989964485, 0.01505457516759634, 0.05189068987965584, -0.07456600666046143,
- -0.06730366498231888, 0.026419224217534065, 0.086684450507164, 0.06805375963449478,
- -0.06745123863220215, -0.03581947833299637, -0.024813765659928322, -0.11320600658655167,
- 0.04486595839262009, 0.08944426476955414, 0.07955259829759598, 0.07817313075065613,
- 0.0060502695851027966, -0.08312815427780151, -0.03841491416096687, 0.07087421417236328,
- 0.006979395169764757, 0.009221663698554039, 0.06473532319068909, -0.04601616412401199,
- -0.021727893501520157, 0.10135408490896225, -0.03324126824736595, 0.028672384098172188,
- 0.0034216062631458044, -0.058566078543663025, 0.13056376576423645, 0.1349438577890396,
- -0.005340206436812878, 0.023939019069075584, 0.015934927389025688,
- -0.003196318168193102, 0.00520419841632247, -0.012666691094636917,
- -0.0020312194246798754, -0.0005198388826102018, -0.09577801823616028,
- -0.08505125343799591, 0.050278522074222565, 0.09995818138122559, 0.07121548056602478,
- -0.13748154044151306, -0.0353068970143795, -0.01321044284850359
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 55,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 34,
- "similarity": 0.9995401501655579
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 1,
- "similarity": 0.9990941882133484
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 33,
- "similarity": 0.9989966750144958
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Lucy Quaggin"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1038,
- "source_domain": "huffingtonpost.com.au",
- "submitters": ["Roman Yampolskiy"],
- "title": "Kid Asks A Digital Assistant For A Song, Gets Porn In Response",
- "url": "https://www.huffingtonpost.com.au/2017/01/02/kid-asks-a-digital-assistant-for-a-song-gets-porn-in-response_a_21646030/"
- },
- {
- "__typename": "Report",
- "authors": ["Fr. Mark Hodges"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1036,
- "source_domain": "lifesitenews.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Better watch what you say to Amazon Echo Dot: One toddler got an earful of vulgar porn phrases",
- "url": "https://www.lifesitenews.com/news/better-watch-what-you-say-to-amazon-echo-dot-one-toddler-got-an-earful-of-v"
- },
- {
- "__typename": "Report",
- "authors": ["Clayton Moore"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1035,
- "source_domain": "digitaltrends.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "How to Make Amazon's Alexa a Little More Kid-Friendly",
- "url": "https://www.digitaltrends.com/home/amazon-alexa-kid-friendly/"
- },
- {
- "__typename": "Report",
- "authors": ["Madison Malone Kircher"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1034,
- "source_domain": "nymag.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Kid Gets Amazon Echo Dot Alexa to Play Porn",
- "url": "http://nymag.com/intelligencer/2016/12/kid-gets-amazon-echo-dot-alexa-to-play-porn.html"
- },
- {
- "__typename": "Report",
- "authors": ["Mary Beth Quirk"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1033,
- "source_domain": "consumerist.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Alexa Has Very Explicit Response To Toddler’s Seemingly Innocent Song Request",
- "url": "https://consumerist.com/2016/12/30/alexa-has-very-explicit-response-to-toddlers-seemingly-innocent-song-request/"
- },
- {
- "__typename": "Report",
- "authors": ["Justin Boggs"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1032,
- "source_domain": "10news.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Boy requests song from Amazon Alexa, but gets porn instead",
- "url": "https://www.10news.com/news/national/boy-requests-song-from-amazon-alexa-but-gets-porn-instead"
- },
- {
- "__typename": "Report",
- "authors": ["Melissa Brooks"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1030,
- "source_domain": "wkdq.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "What is the Kid in the Alexa Video Asking to Hear Before Alexa Goes Wild? [VIDEO]",
- "url": "http://wkdq.com/what-is-the-kid-in-the-alexa-video-asking-to-hear-before-alexa-goes-wild-video/"
- },
- {
- "__typename": "Report",
- "authors": ["Itech Post"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1029,
- "source_domain": "itechpost.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Amazon Alexa Makes It To Naughty List With NSFW Tirade In Front Of A Child",
- "url": "http://www.itechpost.com/articles/70085/20161231/amazon-alexa-makes-naughty-list-nsfw-tirade-front-child.htm"
- },
- {
- "__typename": "Report",
- "authors": ["Corey Chichizola"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1028,
- "source_domain": "cinemablend.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Kid Asks Amazon Alexa To Play Something, Gets Porn Instead",
- "url": "https://www.cinemablend.com/pop/1606800/kid-asks-amazon-alexa-to-play-something-gets-porn-instead"
- },
- {
- "__typename": "Report",
- "authors": ["Chitra Ramaswamy"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1027,
- "source_domain": "theguardian.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "‘Alexa, sort your life out’: when Amazon Echo goes rogue",
- "url": "https://www.theguardian.com/technology/shortcuts/2017/jan/09/alexa-amazon-echo-goes-rogue-accidental-shopping-dolls-house"
- },
- {
- "__typename": "Report",
- "authors": ["Claire Gillespie"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1026,
- "source_domain": "sheknows.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Amazon Echo’s Alexa is turning out to be a bad influence on our kids",
- "url": "https://www.sheknows.com/parenting/articles/1131125/amazon-echo-alexa-problems-with-kids/"
- },
- {
- "__typename": "Report",
- "authors": ["Erica Tempesta"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1025,
- "source_domain": "dailymail.co.uk",
- "submitters": ["Roman Yampolskiy"],
- "title": "Amazon's Alexa misunderstands boy's request and rattles off PORNOGRAPHIC phrases",
- "url": "https://www.dailymail.co.uk/femail/article-4076568/That-doesn-t-sound-like-Wheels-Bus-Parents-freak-Amazon-s-Alexa-misunderstands-young-son-s-request-song-starts-rattling-crude-PORNOGRAPHIC-phrases.html"
- },
- {
- "__typename": "Report",
- "authors": ["Luke Christou"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1024,
- "source_domain": "verdict.co.uk",
- "submitters": ["Roman Yampolskiy"],
- "title": "Alexa fails: when virtual assistants go very, very wrong",
- "url": "https://www.verdict.co.uk/alexa-fails/"
- },
- {
- "__typename": "Report",
- "authors": ["Tom Michael"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1022,
- "source_domain": "thesun.co.uk",
- "submitters": ["Roman Yampolskiy"],
- "title": "Shocking moment Amazon's Alexa starts spouting crude porno messages to toddler",
- "url": "https://www.thesun.co.uk/news/2509172/amazon-alexa-crude-porno-messages-toddler/"
- },
- {
- "__typename": "Report",
- "authors": ["Jovi Figueroa"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1666828800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1021,
- "source_domain": "inquisitr.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Fails And Facepalms With Amazon’s Alexa: Don’t Let The Kids Near That Thing",
- "url": "https://www.inquisitr.com/3865374/fails-and-facepalms-with-amazons-alexa-dont-let-the-kids-near-that-thing/"
- },
- {
- "__typename": "Report",
- "authors": ["Entrepreneur Staff"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1671408000,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1020,
- "source_domain": "entrepreneur.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Whoops, Alexa Plays Porn Instead of a Kids Song!",
- "url": "https://www.entrepreneur.com/video/287281"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "my_handy_design",
- "name": "my_handy_design"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "my_handy_design",
- "name": "my_handy_design"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "my_handy_design",
- "name": "my_handy_design"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1047, 1046, 1045, 1044, 1043, 1042, 1041],
- "vector": [
- -0.053368180990219116, 0.09473657608032227, -0.012709202244877815, -0.13426104187965393,
- 0.05942673236131668, -0.019510503858327866, 0.0025712933856993914, 0.08460850268602371,
- 0.08177513629198074, -0.13268090784549713, 0.0009876055410131812, 0.040054839104413986,
- 0.01587236113846302, -0.08287179470062256, 0.048946164548397064, -0.0839465782046318,
- -0.08190794289112091, -0.028539476916193962, -0.01665392704308033, -0.12785972654819489,
- -0.08302392810583115, 0.010750904679298401, 0.023181647062301636, 0.14633594453334808,
- -0.06389028578996658, -0.0021346816793084145, 0.11985694617033005, 0.09422455728054047,
- -0.05701003596186638, 0.03245460242033005, -0.03832387551665306, -0.10124517232179642,
- 0.10510989278554916, 0.028070637956261635, 0.0003609992563724518, 0.09464764595031738,
- 0.01619073934853077, -0.01711040362715721, -0.005761776585131884, -0.025306139141321182,
- 0.07089873403310776, 0.16683542728424072, 0.00472926115617156, -0.0069580995477736,
- 0.052747637033462524, -0.03710796311497688, -0.003476802259683609, 0.05162623152136803,
- 0.0015004329616203904, 0.012556969188153744, -0.021586086601018906, 0.01712741144001484,
- -0.07274055480957031, 0.02674122154712677, -0.11076977103948593, 0.06550102680921555,
- 0.05030194669961929, -0.01081193145364523, 0.031215082854032516, -0.03830879181623459,
- -0.02657497487962246, -0.16947367787361145, -0.05779047682881355, -0.05836544185876846,
- 0.09625940769910812, -0.06999160349369049, -0.030001673847436905, 0.027800066396594048,
- -0.0027420485857874155, 0.07627061754465103, 0.06040630489587784, -0.04463006928563118,
- -0.02686302550137043, -0.04884960129857063, 0.01273256540298462, -0.02418326400220394,
- 0.028789624571800232, 0.23399627208709717, -0.06637074798345566, 0.022898927330970764,
- 0.13415488600730896, -0.11634139716625214, 0.3593018054962158, 0.004655533470213413,
- -0.0256882905960083, -0.033314015716314316, 0.07997230440378189, 0.031237607821822166,
- 0.019139086827635765, 0.024132205173373222, 0.020017603412270546, 0.04861285910010338,
- -0.05221899598836899, -0.00033498628181405365, 0.07975728809833527, 0.01706651970744133,
- -0.012370584532618523, -0.11124734580516815, -0.009952203370630741, -0.0972633957862854,
- 0.005658411420881748, -0.031737592071294785, 0.0987585112452507, 0.10996882617473602,
- -0.022598471492528915, -0.02417668327689171, 0.07096237689256668, -0.02452310547232628,
- 0.07386595010757446, -0.05860622599720955, 0.05414404347538948, 0.02411780133843422,
- 0.037196941673755646, 0.001928803394548595, 0.03322527930140495, -0.053826190531253815,
- 0.015849795192480087, 0.05434390902519226, 0.08203402906656265, 0.0777999758720398,
- 0.011682451702654362, 0.059390194714069366, 0.06047963351011276, -0.09080701321363449,
- -0.01474750880151987, -0.015262194909155369, -0.05229195952415466, 0.008898802101612091,
- -0.01954624243080616, 0.02818693406879902, -0.0534934438765049, -0.23179733753204346,
- 0.03266558423638344, 0.06124076247215271, -0.01656053587794304, -0.016681894659996033,
- 0.028047757223248482, -0.06545938551425934, 0.04769324138760567, -0.021816883236169815,
- -0.05737752467393875, 0.0562775693833828, 0.039358679205179214, 0.055072490125894547,
- 0.09400860220193863, 0.046701159328222275, -0.03336935490369797, -0.06324540823698044,
- 0.03406481817364693, -0.021600592881441116, 0.12096546590328217, -0.11557132750749588,
- -0.035302113741636276, 0.010270452126860619, -0.035969946533441544, 0.6353393793106079,
- 0.086278036236763, 0.16624078154563904, -0.008571233600378036, -0.009563235566020012,
- 0.17518125474452972, -0.0288966316729784, 0.07001716643571854, -0.0753878504037857,
- -0.06259514391422272, 0.01409232523292303, -0.10472197830677032, -0.034149374812841415,
- 0.058563314378261566, 0.0020611416548490524, 0.05953231081366539, 0.05219297483563423,
- 0.09273379296064377, 0.0024390092585235834, -0.09333419799804688, -0.03658757358789444,
- 0.040179286152124405, 0.03479252755641937, -0.11448083817958832, -0.02925191819667816,
- 0.04101688787341118, 0.09207731485366821, -0.06709311902523041, 0.0071290843188762665,
- -0.07771571725606918, 0.06454826891422272, -0.012232298031449318, 0.05732566490769386,
- -0.023656046018004417, 0.027094382792711258, 0.05765340477228165, 0.06119811534881592,
- -0.021130787208676338, -0.06302725523710251, -0.03279419615864754, 0.13476397097110748,
- -0.058302462100982666, -0.04312766343355179, 0.0580044724047184, -0.10018064826726913,
- 0.021804329007864, -0.002792025450617075, 0.12961308658123016, -0.11966705322265625,
- 0.018883900716900826, 0.007737501058727503, -0.008972453884780407, 0.02169267274439335,
- 0.003393987426534295, -0.07765316963195801, -0.0670022964477539, 0.09026721864938736,
- 0.006518804933875799, 0.04340144991874695, 0.028234437108039856, -0.018275117501616478,
- 0.03483251482248306, 0.09485975652933121, -0.014575459994375706, -0.011876998469233513,
- 0.08933202922344208, 0.03701198101043701, -0.030608752742409706, -0.03208152577280998,
- 0.035280436277389526, 0.00617907103151083, 0.029518941417336464, -0.013758116401731968,
- 0.0677502229809761, 0.015975458547472954, -0.058601874858140945, 0.03414551541209221,
- 0.024289455264806747, 0.021235482767224312, 0.06209983676671982, -0.08369733393192291,
- -0.05281507596373558, -0.03285832703113556, -0.018568679690361023, 0.014584156684577465,
- -0.07891637831926346, 0.10028441250324249, 0.10829705744981766, 0.05269506946206093,
- 0.04356854408979416, 0.01481967605650425, 0.0687008872628212, 0.055135905742645264,
- 0.008668479509651661, 0.057662587612867355, -0.033603500574827194, -0.06622264534235,
- -0.04951377958059311, 0.002613056218251586, 0.05477801337838173, 0.02325601875782013,
- -0.09984078258275986, -0.006897937040776014, -0.020447710528969765,
- -0.04841770604252815, -0.10898105055093765, -0.04859117791056633, 0.03700729459524155,
- 0.03711045905947685, -0.06791150569915771, -0.08234411478042603, -0.09257930517196655,
- 0.010562524199485779, 0.08570031076669693, -0.027842866256833076, -0.028074491769075394,
- -0.10024901479482651, 0.027729984372854233, -0.02580670453608036, 0.05408916994929314,
- -0.029140491038560867, 0.007677512709051371, 0.0012604264775291085,
- -0.06792743504047394, 0.035875797271728516, 0.022760886698961258, -0.055676717311143875,
- -0.0753018781542778, -0.06070169806480408, -0.018343377858400345, 0.008403955027461052,
- -0.017344309017062187, -0.007433820515871048, 0.0033962952438741922,
- 0.034085147082805634, 0.07208114862442017, -0.029687656089663506, -0.03774939849972725,
- 0.061627548187971115, -0.029109153896570206, -0.01896698959171772, 0.07844414561986923,
- -0.028014948591589928, 0.020426521077752113, -0.004493020009249449,
- -0.03384045884013176, -0.045412905514240265, 0.009957198984920979,
- -0.031550753861665726, 0.05432943254709244, -0.0065124258399009705,
- 0.019799690693616867, -0.053346991539001465, -0.02380128763616085, 0.045759785920381546,
- -0.058507420122623444, -0.11904110014438629, -0.07757499068975449, 0.12031091004610062,
- -0.00914404634386301, -0.00010766262130346149, 0.02444915659725666,
- -0.031907934695482254, 0.054992202669382095, -0.03094460256397724, 0.021067069843411446,
- 0.03213183954358101, 0.08068431913852692, -0.039194680750370026, 0.021387675777077675,
- 0.08402037620544434, -0.02370298281311989, 0.009906724095344543, 0.040883664041757584,
- 0.4419223964214325, -0.3058086931705475, 0.0817512720823288, 0.10047747939825058,
- 0.01946444995701313, 0.06204700842499733, -0.02507161907851696, 0.041997380554676056,
- 0.08461972326040268, 0.12015741318464279, 0.07871319353580475, -0.03388763219118118,
- 0.024660944938659668, -0.08035048097372055, 0.06943577527999878, -0.0038361980114132166,
- 0.020322812721133232, 0.004536449909210205, -0.0384514294564724, -0.003983423579484224,
- 0.033589333295822144, -0.04240776225924492, 0.015109074302017689, -0.005992679391056299,
- -0.012972733937203884, 0.012003587558865547, 0.0409916453063488, 0.08094841986894608,
- -0.025956332683563232, 0.027867037802934647, -0.06918349862098694, 0.05744538456201553,
- 0.07210729271173477, 0.032504286617040634, -0.11590699106454849, 0.030956970527768135,
- -0.03031831793487072, -0.11260869354009628, 0.06347022205591202, 0.007243022322654724,
- 0.0644596591591835, 0.02734752930700779, -0.06200922280550003, 0.027082661166787148,
- -0.03480779752135277, -0.04713483527302742, 0.011268414556980133, 0.06435049325227737,
- 0.028914814814925194, 0.07554667443037033, 0.16322936117649078, -0.05537151172757149,
- -0.01338573731482029, -0.07488691061735153, 0.05456267669796944, 0.1251811981201172,
- -0.011265121400356293, 0.03684807941317558, -0.005342313088476658, 0.006902046035975218,
- -0.015710627660155296, -0.04073141887784004, -0.04391508921980858, -0.02225012518465519,
- -0.06074199080467224, 0.07836361974477768, 0.03953159600496292, -0.024470601230859756,
- -0.18926730751991272, 0.005458680447191, -0.03517993167042732, 0.026744922623038292,
- 0.09675179421901703, -0.09574331343173981, 0.02358940616250038, -0.01718328893184662,
- 0.008632725104689598, 0.020576471462845802, -0.06671261042356491, 0.01530890166759491,
- -0.05213484913110733, 0.05534771457314491, 0.016836989670991898, 0.03200317546725273,
- -0.07596136629581451, 0.038360595703125, -0.0840165764093399, 0.06544657796621323,
- 0.03228312358260155, -0.0231564212590456, 0.01855158433318138, -0.03522905334830284,
- 0.02829054556787014, 0.049157142639160156, -0.0632716715335846, 0.002340530976653099,
- -0.026489168405532837, -0.051461655646562576, -0.06461207568645477,
- -0.05185360088944435, -0.010600244626402855, -0.0866396352648735, 0.054834332317113876,
- -0.047060079872608185, -0.0028331924695521593, -0.026865577325224876,
- -0.030742930248379707, -0.01090928167104721, 0.01561154704540968, -0.017476167529821396,
- -0.12627531588077545, 0.0019916691817343235, -0.01195351779460907, 0.0194688830524683,
- -0.015305249951779842, -0.06763993203639984, 0.005635705776512623, 0.08216194808483124,
- 0.048489298671483994, -0.06737431138753891, 0.007314389105886221, -0.060382943600416183,
- 0.04281960055232048, -0.11837204545736313, -0.494663268327713, 0.05772530287504196,
- 0.039389122277498245, 0.02342780865728855, 0.005264561157673597, -0.06577365100383759,
- 0.06755033880472183, 0.022073592990636826, -0.02871699072420597, 0.08712776750326157,
- -0.05084315314888954, 0.018606210127472878, -0.04524168744683266, -0.054116301238536835,
- -0.00823772419244051, -0.040984999388456345, -0.040555037558078766,
- 0.010055869817733765, -0.03157724067568779, -0.023863861337304115, -0.13124839961528778,
- 0.025636764243245125, -0.008655102923512459, 0.012826903723180294,
- 0.0010947660775855184, 0.02952408418059349, -0.08309189975261688, -0.058195777237415314,
- 0.05780361220240593, 0.05130236595869064, 0.05613770708441734, -0.09350306540727615,
- -0.006036067847162485, 0.06178766116499901, 0.019601760432124138, 0.13401369750499725,
- 0.011644779704511166, -0.03841831535100937, -0.0654308870434761, 0.05918225273489952,
- 0.06021743267774582, 0.1853688508272171, -0.03516161069273949, 0.03500664606690407,
- -0.017129724845290184, 0.14262908697128296, 0.06382595747709274, 0.029672425240278244,
- -0.026377031579613686, 0.02215578779578209, 0.04531160369515419, -0.017996879294514656,
- 0.06540850549936295, -0.0716850757598877, -0.03688913583755493, -0.028876136988401413,
- -0.041592661291360855, -0.00027321759262122214, -0.013948649168014526,
- 0.18067267537117004, 0.00489790877327323, 0.02619643323123455, 0.010711759328842163,
- -0.032051894813776016, 0.04521574825048447, -0.10452384501695633, -0.0443575344979763,
- 0.0010890705743804574, 0.023883478716015816, 0.0006884612957946956, -0.0442219115793705,
- -0.11018003523349762, -0.03402145579457283, 0.003222960513085127, -0.012143856845796108,
- 0.09844620525836945, -0.020292695611715317, 0.03172395005822182, -0.035017792135477066,
- 0.13598354160785675, 0.006007934920489788, 0.009236627258360386, 0.052765410393476486,
- 0.08806617558002472, 0.04138263687491417, 0.02537168748676777, -0.04388498514890671,
- -0.06890843063592911, -0.021081263199448586, 0.13590601086616516, -0.03251146897673607,
- 0.14634200930595398, 0.04936103895306587, -0.030653217807412148, -0.0336066298186779,
- 0.04080905392765999, -0.009760437533259392, -0.011252125725150108, -0.49167391657829285,
- -0.004709831438958645, 0.09956411272287369, 0.010717088356614113,
- 0.00043262820690870285, 0.07155206054449081, 0.03274798020720482, -0.016247013583779335,
- -0.03516451641917229, -0.07304133474826813, 0.09908732026815414, 0.007054382003843784,
- 0.07914025336503983, -0.09703896939754486, 0.03661477565765381, 0.07017554342746735,
- -0.009100151248276234, 0.036029450595378876, 0.05951433628797531, -0.22466789186000824,
- -0.004797997418791056, 0.00582653284072876, 0.17935752868652344, 0.05698850750923157,
- 0.03728042170405388, 0.09754341095685959, -0.05949530750513077, 0.026537630707025528,
- 0.019967319443821907, 0.044219259172677994, 0.06118341162800789, -0.008349688723683357,
- -0.045586228370666504, 0.09936346113681793, 0.107973612844944, 0.07856857031583786,
- -0.0023213219828903675, 12.030418395996094, 0.039795584976673126, 0.059466391801834106,
- -0.09169768542051315, 0.027621814981102943, -0.04002997279167175, 0.017557406798005104,
- -0.12280620634555817, 0.04471245035529137, 0.13029983639717102, -0.011732554994523525,
- -0.018657689914107323, -0.048301346600055695, -0.102948859333992, 0.023172494024038315,
- -0.06166677549481392, -0.025110924616456032, -0.06807603687047958, 0.056848764419555664,
- -0.06405750662088394, -0.09559004008769989, 0.08408594876527786, 0.084904246032238,
- -0.00838552974164486, -0.058425597846508026, 0.0030339236836880445,
- 0.009643438272178173, 0.0014989032642915845, -0.0005397663335315883,
- 0.019718501716852188, 0.020200464874505997, 0.06762810051441193, 0.05174664407968521,
- -0.01854286529123783, 0.037906892597675323, 0.060645896941423416, 0.07668507844209671,
- 0.07185166329145432, 0.007551732938736677, 0.0639781579375267, 0.03184659034013748,
- -0.00697631761431694, 0.033407099545001984, 0.020445769652724266, 0.05242825299501419,
- 0.022694343701004982, 0.0346798375248909, 0.10712607204914093, -0.008043293841183186,
- 0.08396179974079132, 0.08379422128200531, -0.024388199672102928, 0.08057797700166702,
- 0.04767114669084549, -0.027142928913235664, 0.07849924266338348, -0.02528803050518036,
- -0.08063638210296631, 0.12119854986667633, 0.02753359079360962, -0.07443206757307053,
- 0.09605009108781815, 0.02663469687104225, 0.13136795163154602, 0.015768494457006454,
- 0.03260265290737152, 0.07552903890609741, 0.0672193244099617, -0.09808701276779175,
- -0.08613593131303787, 0.04160299152135849, -0.09018278121948242, -0.10600060969591141,
- 0.08401127904653549, 0.08009994029998779, -0.01789034716784954, 0.05763810873031616,
- -0.03880994766950607, 0.03470482677221298, 0.0015163954813033342, 0.01635763980448246,
- 0.04960308596491814, -0.039231348782777786, 0.0313260592520237, 0.00910052191466093,
- 0.010148718021810055, 0.06086260825395584, 0.06191975995898247, 0.012883396819233894,
- -0.10894393920898438, -0.06184733286499977, 0.13843372464179993, -0.02145574986934662,
- -0.044558703899383545, 0.001770533388480544, -0.07217229157686234, 0.008356631733477116,
- -0.1382778435945511, 0.0731889083981514, 0.10241685062646866, -0.03681877627968788,
- -0.04516597464680672, -0.0413544662296772, 0.06960935145616531, 0.001344824442639947,
- 0.027808252722024918, -0.05323302745819092, 0.004655923694372177, 0.022208789363503456,
- 0.05951822176575661, -0.028485992923378944, 0.042623281478881836, 0.08416895568370819,
- -0.061008453369140625, 0.020446229726076126, 0.06598736345767975, -0.012024593539536,
- -0.036313168704509735, 0.05358050391077995, 0.06801090389490128, -0.0778392031788826,
- -0.029172714799642563, -0.001528776017948985, -0.029394349083304405,
- 0.010825609788298607, -0.05408230051398277, -0.02836991474032402, 0.03421090170741081,
- -0.04335888475179672, -0.033355601131916046, 0.0510430671274662, 0.04155588522553444,
- 0.08964865654706955, -0.010019469074904919, 0.055226076394319534, -0.07851270586252213,
- -0.03380238264799118, 0.046622443944215775, 0.05532485991716385, 0.06818228214979172,
- -0.08582837879657745, -0.018634898588061333, -0.03493737056851387, -0.12244284152984619,
- 0.03977283090353012, 0.11315739899873734, 0.06697957962751389, 0.033744849264621735,
- 0.008504954166710377, -0.08779013156890869, -0.028014883399009705, 0.06952926516532898,
- 0.07639038562774658, 0.027869287878274918, 0.05384250730276108, -0.028459740802645683,
- -0.03439784049987793, 0.0785040333867073, -0.02886468544602394, 0.0030559548176825047,
- -0.013722638599574566, -0.0858963131904602, 0.11421272903680801, 0.08606604486703873,
- 0.020214563235640526, 0.028424996882677078, 0.017920928075909615, 0.009752608835697174,
- 0.0012429540511220694, 0.009954145178198814, 0.013799701817333698, 0.003954473417252302,
- -0.11659156531095505, -0.0998162254691124, 0.025093095377087593, 0.09125407040119171,
- 0.09285170584917068, -0.07679767906665802, -0.02399612031877041, -0.04001277685165405
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 56,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 60,
- "similarity": 0.9990719556808472
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 53,
- "similarity": 0.9989269971847534
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 55,
- "similarity": 0.9988614916801453
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Rebecca Travis"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1047,
- "source_domain": "offthemainpage.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Amazon A.I. Making Cell Phone Cases Gets It Horribly Wrong (NSFW)",
- "url": "http://www.offthemainpage.com/2017/07/11/amazon-a-i-making-cell-phone-cases-gets-it-horribly-wrong-nsfw/"
- },
- {
- "__typename": "Report",
- "authors": ["JustSomething"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1046,
- "source_domain": "justsomething.co",
- "submitters": ["Roman Yampolskiy"],
- "title": "Amazon Seller Uses AI To Create Phone Cases, But Things Go Hilariously Out Of Hand",
- "url": "http://justsomething.co/amazon-uses-ai-to-create-phone-cases-but-things-go-hilariously-out-of-hand/"
- },
- {
- "__typename": "Report",
- "authors": ["Freia Lobo"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1045,
- "source_domain": "mashable.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "This Amazon bot is making the best phone cases we've ever seen",
- "url": "https://mashable.com/2017/07/10/amazon-weird-phone-case-bot/#YFQkJ7G4sgqy"
- },
- {
- "__typename": "Report",
- "authors": ["Alex Hern"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1044,
- "source_domain": "theguardian.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "The automated Amazon seller making the worst phone cases ever",
- "url": "https://www.theguardian.com/technology/shortcuts/2017/jul/11/the-automated-amazon-seller-making-the-worst-phone-cases-ever"
- },
- {
- "__typename": "Report",
- "authors": ["James Whitbrook"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1043,
- "source_domain": "gizmodo.com.au",
- "submitters": ["Roman Yampolskiy"],
- "title": "An Amazon Bot Is Making The Greatest Smartphone Cases",
- "url": "https://www.gizmodo.com.au/2017/07/an-amazon-bot-is-making-the-greatest-smartphone-cases/"
- },
- {
- "__typename": "Report",
- "authors": ["James Vincent"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1042,
- "source_domain": "theverge.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "A bot on Amazon is making the best, worst smartphones cases",
- "url": "https://www.theverge.com/tldr/2017/7/10/15946296/amazon-bot-smartphone-cases"
- },
- {
- "__typename": "Report",
- "authors": ["IFL Science"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1041,
- "source_domain": "iflscience.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Amazon AI Designed To Create Phone Cases Goes Hilariously Wrong",
- "url": "https://www.iflscience.com/technology/amazon-ai-designed-to-create-phone-cases-goes-hilariously-wrong/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "australian-department-of-human-services",
- "name": "Australian Department of Human Services"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "centrelink",
- "name": "Centrelink"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "australian-welfare-recipients",
- "name": "Australian welfare recipients"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [
- 2375, 2374, 2373, 2372, 2369, 1619, 1618, 1437, 1346, 1077, 1076, 1075, 1074, 1073,
- 1072, 1071, 1070, 1069, 1068, 1067, 1066, 1065, 1064, 1063, 1062, 1061, 1060, 1059,
- 1058, 1056, 1055, 1054, 1052, 1051, 1050, 1049, 1048
- ],
- "vector": [
- -0.10021340247948428, 0.04257060952069288, 0.03361394849756884, -0.14969672766086217,
- 0.09665559831301908, -0.10150244902517344, -0.030911066047092144, 0.08090705938033156,
- 0.08902795471855111, -0.10346584122728657, 0.0059401607974684115, 0.037817629252016115,
- 0.050005185644368864, -0.10130428603372059, 0.029191950008877227, -0.18609020456268982,
- -0.11729980360817265, -0.03861975635250879, -0.022969533050608996, -0.08271167147904634,
- -0.06509987266130142, 0.012960398749045626, 0.05295472020421781, 0.12956284832310033,
- -0.05462420678924065, 0.0390725449306538, 0.11129425254625243, 0.14413434126087138,
- -0.016400596432504244, 0.0775352307922534, -0.03789448851367106, -0.05509282749246906,
- 0.10666489691750423, 0.0634722535976687, -0.026139928772101632, 0.08859793509583215,
- -0.016588435973972082, -0.0002062439177550275, 0.02421640356486613,
- -0.015162113192058608, 0.05024335954363483, 0.2817409747355693, 0.027880657531912566,
- 0.0011823853458957495, 0.0479270672375286, -0.06867207903918382, -0.012728215455599884,
- 0.09008224177602175, 0.007636119451096936, 0.015149882859298709, -0.0069473504538748515,
- 0.07916055985952954, -0.026561487922319084, 0.03105261697232522, -0.06417511360770142,
- -0.018966624951399107, 0.02657629591664551, 0.03619187579071779, 0.0418758075998945,
- -0.07906039482032931, 0.01188236362351155, -0.2431340571996328, -0.1388200142899075,
- -0.11697866465594317, 0.0945318052293481, -0.07765403299315556, -0.040121144061354364,
- 0.0335627418842066, 0.003270281797970686, 0.08835225028766168, 0.06443026118181847,
- -0.03249887068208458, -0.027587090537103044, 0.02917291212990578, 0.023439104632612923,
- -0.040448397448336754, 0.022433554876369197, 0.1550617642902039, -0.09897900845956158,
- -0.011111959613658287, 0.11813171449545268, -0.12612502941408674, 0.5089936208080601,
- -0.01854664781382559, 0.027194512227701174, -0.07532797312061931, 0.10798769766414487,
- 0.03438804910291691, 0.10100795832034704, 0.04314303672494921, -0.052810209123669447,
- 0.07344022335333598, -0.04249482910224312, 0.02626289943283474, 0.10343166702502482,
- 0.00942349573597312, -0.02646506197020613, 0.07156004112314533, -0.04568671675499629,
- -0.09340060351265443, -0.027316959373451567, -0.01956486966888848, 0.13421001647775238,
- 0.08106816937593189, -0.030236766044352506, 0.03153612268372829, 0.08057736313423595,
- -0.025359614959892793, 0.0616139207488379, -0.03938794146744987, 0.040827933343353905,
- -0.02973939470531469, 0.06253531826282474, 0.02033399441594107, 0.02291000520533605,
- -0.04403008953542323, 0.02921852025807508, 0.10690617118332837, 0.057888581543355376,
- 0.02763087790761445, -0.03535138239857514, 0.01756162299913027, 0.0626233400827324,
- -0.034323166174864445, 0.007092570860845012, -0.07394277369855223, -0.06865360200203754,
- -0.0692425534078801, -0.06272783835191985, 0.04213481387626883, -0.09539361610203176,
- -0.151381445494858, -0.029017741411194408, 0.06899350539252565, 0.02141098803179842,
- -0.04955632153999161, 0.008075980557682546, -0.08300043088761536, 0.0570642861814515,
- -0.0370015311558303, -0.051492241588798726, 0.08526526582804886, -0.034641923526037684,
- 0.0638437891328657, 0.15718250600872813, 0.06588110491331364, -0.07080897296199927,
- 0.008851197246160056, -0.004738199722802115, 0.02393592503299383, 0.10088766829387562,
- -0.09267628102286442, -0.03792365063988679, 0.03515765954255806, 0.015277054343322242,
- 0.693206385986225, 0.0710353168684083, 0.11820066126214492, 0.025720966651853226,
- -0.010286962081728553, 0.1804742297610721, 0.032447416322758875, 0.07587618813724131,
- -0.0529589263936253, -0.06368832267518784, 0.02629534399287926, -0.06178921228274703,
- -0.03863200781287978, 0.02331584566146941, 0.008998310689462783, 0.12303727039614239,
- -0.025640760397387517, 0.09241123185367198, -0.03217874116868385, -0.13130671933696075,
- -0.022490297403262072, 0.13216571086967313, 0.017172985697618208, -0.12601134281706167,
- -0.04586935843768958, 0.06957714098530847, 0.05989944718375399, -0.1473415475842115,
- -0.023362207309047162, -0.07489449656694322, 0.04466167273553642, 0.028830080250643094,
- 0.05993883482910491, -0.007022202184826539, 0.036574709858443286, 0.022648319060838706,
- -0.0013015771377517063, 0.04589194131738229, -0.09166191770015536,
- -0.014920394872378156, 0.09767042926034412, -0.008335720887722296,
- -0.045031125531406015, 0.08490167427304629, -0.10195051717597085, 0.0001914898441739481,
- -0.008091377005110041, 0.16619616464988604, -0.10286737394493979, -0.06837343092303018,
- -0.006703436867069654, -0.03127818185886418, 0.07669812065826075, 0.016915446666472062,
- -0.08778914285672677, -0.06589574014415613, 0.01838452959861103, 0.014224185405387165,
- 0.12339098731408248, 0.06581955828477402, 0.0270678096929112, 0.0661392578402081,
- 0.10594664443586324, 0.05443187234168117, 0.0014719240521977504, 0.05696923688456819,
- 0.02306988137472119, -0.05709097194611221, 0.0211230285742597, 0.033195255588538745,
- 0.04793397015010988, 0.008834963889377241, -0.029714928820376862, 0.05508741541966997,
- -0.0331759399835121, -0.05848222384481011, 0.06406099359328682, -0.01214778278576764,
- -0.022211205233140168, 0.11569514810233503, -0.052873344034761995,
- -0.023619417472415277, -0.027781139638407056, -0.007386176186185834,
- 0.023036347557413014, -0.054966630539196114, 0.11918135772685746, 0.0674567160674849,
- 0.07640507585696273, -0.01698691092708425, 0.016412105553663913, 0.02959391474094544,
- -0.026611721420006174, 0.03843265407831987, 0.059511133759106334, -0.056454476623519045,
- -0.08521773515118135, -0.04456457947192059, 0.007764156866697532, 0.09081175943484178,
- 0.036102073937276935, -0.04859636099757375, -0.03231791225639549, 0.047486302392506924,
- -0.08373152520004157, -0.06727698533418211, -0.011029313903654346, 0.04870155084928548,
- 0.05235157287805467, -0.04545820552251629, -0.08524512056563352, -0.06984133968079412,
- 0.03029751150107414, 0.09105233918573405, -0.028779160876355663, 0.007002004173684966,
- -0.11934554013046059, 0.0073734528764239134, -0.03312364855279353, 0.08551759886983279,
- -0.00912234435413297, 0.05523091482904714, 0.06438252284518771, -0.04815613120995663,
- 0.015921708259328798, 0.023446351108833443, -0.11518639547599328, -0.0749373425905769,
- -0.04079209763959453, -0.06331481254735105, 0.043609113407296105, 0.00599310502779239,
- -0.05410814985028795, 0.05956162582780864, 0.0657016030336554, 0.05877021091008509,
- 0.005462388790407646, -0.02180882335665661, 0.10562093112919782, -0.022592930865750926,
- 0.02880791352622878, 0.13271518977912697, -0.06517197169061448, 0.015336169137594264,
- -0.07720877804063461, -0.04390857244111799, -0.05398985041255081, 0.03032710756304221,
- -0.06921700045869157, 0.002728873857523541, -0.014472709512463896, 0.019112856460835884,
- -0.0548293736033343, -0.06876077452624166, 0.0743491174527318, -0.07019421367629154,
- -0.05980323506770907, -0.08878764600769894, 0.10043910357194978, 0.04852359371914251,
- 0.006068963761798521, 0.005423658444055331, -0.08902530311732679, 0.05331806802014644,
- 0.013599285220324591, 0.0056993946577799885, 0.051290903894885165, 0.07342903680998732,
- -0.04507818163649456, 0.043558350166406586, 0.11766611744423171, -0.010746138745358819,
- 0.03794803342001664, 0.07812590383597322, 0.42810092342866435, -0.1328631469828857,
- 0.11944222309299417, 0.1202178437363457, 0.0011370186190548782, 0.05703243386705179,
- -0.04784965117436808, 0.029138291065858024, 0.10490831470972783, 0.16105513012892492,
- 0.07200481604180627, -0.031745778251993095, -0.014053460602676874, -0.10289943016864159,
- 0.0403923661435476, 0.03419028001057135, 0.009645453465448038, -0.003175446290107494,
- -0.08455182294789199, 0.005449860664304799, 0.0023163942481718353, -0.06354395577029602,
- 0.011524075764936168, 0.02762701272385547, -0.05714593557137493, 0.02124687024341846,
- -0.009984908334445208, -0.0030142746786500415, 0.0002573301553147266,
- 0.08493172739808624, -0.042790623370721634, 0.04815190525826167, 0.011969230156643567,
- 0.036725113281627766, -0.05859524235632774, 0.01216337106480087, -0.09122878227483582,
- -0.07693269471260342, 0.09879913815372698, -0.017718783641120773, 0.005576530779787415,
- 0.060809559062928766, -0.03668025462753281, 0.028112300391611014, -0.04606022285910562,
- -0.060482883523847605, 0.026385061625340902, 0.02832408682631983, 0.036244943329743484,
- 0.03632618387456279, 0.20069856861153165, -0.06550492225466548, -0.03957651526591665,
- -0.10624710148250735, 0.0715201656157906, 0.13200584114403338, -0.027856677248318855,
- -0.005973040437360445, -0.03918844982950218, -0.013296523889702922,
- 0.013890753695237878, -0.08009263651596533, -0.06311382594946269, -0.024106508441823157,
- 0.008498849919871302, 0.09345214511897112, 0.05217586781175153, -0.06366989917650416,
- -0.10882360286809303, -0.012631674017127906, -0.04577162237428884, 0.029920510991753357,
- 0.1034017161944428, -0.03372567086606412, -0.010417663670425, -0.07858142377556981,
- -0.025170201424672897, -0.025880736047150316, -0.060085306950920334,
- 0.009566364315892192, -0.07088191877748515, 0.06636263409981856, 0.028210860066669615,
- 0.05092713277082186, -0.08149616621636055, 0.13336299984036265, -0.10534471051918494,
- 0.10751304413015778, 0.01235871624118551, -0.060747564745110436, 0.0954634722422909,
- -0.023869956851420873, 0.02281473679751208, 0.01929282520683734, -0.05803304236080196,
- -0.015305940625006082, 0.013333879485946602, -0.022900279929131472,
- -0.10256145995210957, -0.013796656140805903, -0.04178903004582468, -0.0966564542739778,
- 0.050769994513609924, -0.06128615405209161, -0.044473321195943535,
- -0.00008882248673487354, -0.03689984078015629, 0.005562165346172814,
- 0.014470762109094476, 0.045200475672695695, -0.15559818233187134, -0.06979501058624403,
- -0.018709890440584638, 0.05280580635283243, -0.011308390061949959, 0.009006711193816611,
- 0.06129953567240689, 0.055090025841333976, 0.07619556462442553, -0.009422297023136067,
- 0.015069875441416091, -0.046730280937186466, 0.0413280738945547, -0.12011412088129972,
- -0.4059128374666781, 0.04941038367011257, -0.038674090084355524, 0.057890060006143725,
- 0.03273806849343551, -0.11662561929709203, 0.03917561979914034, 0.002596573460519918,
- -0.05979720568536101, 0.07127249341558765, -0.03776248086344551, 0.060151968025476545,
- 0.06521346832852105, -0.05993858795311, -0.038250665155214233, -0.05650456183011065,
- -0.04463050060125219, 0.051222331482111604, -0.05133187088712647, -0.07849791263406342,
- -0.11669806008403366, 0.049278824741171824, 0.026824852077265246,
- -0.0004400933535794753, 0.018302155211819587, -0.029240540140686003,
- -0.06871348594290179, -0.06550075838694701, 0.04667053842363325, 0.04456443626534294,
- -0.004600761413638719, -0.04785116721256133, 0.005916672595147346, 0.08067233256391577,
- -0.05343734911985922, 0.13120786865820755, 0.05235785875167396, 0.004339586219725174,
- -0.07232812308781855, 0.11416379140840995, 0.09486430883407593, 0.1826247327231072,
- -0.02548269236521682, -0.02722416157878281, -0.01275069908061178, 0.15028381971894084,
- 0.0007974607739703748, 0.023023271945783415, -0.00846996163631588,
- -0.0068046449206933075, 0.019772562874808303, -0.00038886837019408877,
- 0.0890891116263496, -0.06865872845456407, -0.018080651646832358, -0.06193761421820602,
- -0.030351650548746455, -0.0305897683830227, -0.06886183080338948, 0.21000937835590258,
- 0.039686049466851996, 0.020750615267536125, -0.023775952257769736, -0.11775284884749232,
- -0.00829150465103118, -0.07837219042955218, -0.15331745469892347, 0.018137381707846716,
- 0.002257384853815106, -0.002226665652218602, -0.02935254719183856, -0.10976301435683225,
- -0.023573679333502375, -0.015589836303685867, 0.003955105556972715, 0.04689028008362731,
- -0.06112174823175411, 0.1029308273180111, -0.017366886620309104, 0.16129231775129163,
- 0.06963431618704989, 0.0567078676980895, 0.029872277748418618, 0.06848337186651456,
- 0.0033256976210985748, -0.00253274680958507, -0.09658177619850314, -0.09496160324763607,
- -0.02270311112138065, 0.15465946193482424, -0.027038975377296527, 0.08026862265290441,
- -0.05263818334788084, -0.07160559102792192, -0.06343541838027336, 0.0034162685042247176,
- -0.04069756781934081, 0.02112150497457667, -0.3904706908238901, -0.004626499152289251,
- 0.17488581948989146, -0.00334098120180676, 0.014484113862586988, 0.07916234982376164,
- 0.017253866529712024, -0.08259808403011915, -0.01847238583502838, -0.12512056569795352,
- 0.15793019996301547, 0.006183288859304141, 0.1037558395717595, -0.11685065351225235,
- 0.023782153632743535, 0.09542314486729132, -0.06517399127620298, -0.03928175609483308,
- 0.0765273042425916, -0.24411453306674957, 0.009001659352105815, -0.02270640100264368,
- 0.09561774406481434, 0.09075940088243098, 0.028821039612159587, 0.06640416766340668,
- -0.05405572084458293, 0.013891865249968612, 0.001958641242487608, -0.024769099274635664,
- 0.015197882356399016, 0.033392926966936666, -0.02632998629800371, 0.10237898435947057,
- 0.017810830596293247, 0.05634956934011063, -0.027168092663192214, 12.150969634184966,
- 0.07999903487192618, 0.07815014963617196, -0.05240957570778256, -0.0388757689176379,
- -0.07931081427110208, 0.011303169878570968, -0.11782020239813908, 0.02081704682928535,
- 0.11142748332506902, -0.03920521652892332, -0.021010458963369397, -0.022049677416657074,
- -0.14863374205054464, -0.0295583110655079, -0.05354171737122375, -0.07847751692138813,
- -0.04026980677971969, 0.03856944174480599, -0.040590285562683605, -0.062051499312793884,
- 0.0521430400478641, 0.08008100349154021, 0.05135974031243775, -0.0906527448143508,
- -0.006578349473735166, -0.045421562788416504, -0.048496371311311785,
- -0.02681949793524738, 0.050409985102109006, -0.051886510967616796,
- -0.002240139733043474, 0.05500079335242107, -0.04740085681220768, 0.03885491594288347,
- 0.03505801478702877, 0.08621937278154734, 0.03359676406064348, -0.00678647355163923,
- 0.09032407392923897, 0.02527524731625375, 0.04627555586724869, 0.052844243707777176,
- 0.05940833043407749, 0.054185844454410916, 0.03643450161089768, 0.0543883520153326,
- 0.11049098541607728, 0.00664190122089978, 0.14391192290428523, 0.11261884364727381,
- 0.0021259026174005624, 0.11514047976281191, -0.03555641575666094,
- 0.00023966229983253052, 0.09119748520488674, -0.02195166004192386, -0.10688423053235621,
- 0.08685528889701173, 0.08564062205118102, -0.06307996869892687, 0.1526916508336325,
- 0.07267804390977363, 0.1777111221406911, 0.016917493005560058, 0.04219186615601585,
- 0.08640434099613009, 0.06669728518337817, -0.15621641781684514, -0.06793717813451548,
- -0.037500040199783806, -0.07642375874156887, -0.07226182467530708, 0.0593356756317253,
- 0.103845374406995, -0.05735977988287404, 0.08012049486608924, -0.007748421860506406,
- 0.04456338536850101, -0.0655569373252424, -0.027034298120368574, 0.018810536800506147,
- -0.030492523728360144, 0.03547255714373613, 0.12150824069976807, -0.017264920900374448,
- 0.11809050835467674, 0.09364048451990695, 0.011556197272462619, -0.113824407796602,
- -0.06692456177158936, 0.12343477981316077, 0.026435164382328857, -0.042529462887024555,
- -0.06208076401034723, -0.05164161704581331, 0.05467557535834006, -0.17105364114851565,
- 0.09056187914432706, 0.15443582268985542, -0.15498658732787982, 0.0700884466688778,
- -0.020909723891039705, 0.0586714559341655, 0.01518069786559224, -0.03012229729210958,
- -0.011769360623548965, 0.05598510977988307, 0.007591215427964926, 0.03214456998063503,
- -0.08106559031718485, 0.09348205960280187, 0.11042798582363773, -0.03314177772168674,
- 0.05329240634534005, 0.08639068498804763, 0.023164819854443793, -0.01941298467195215,
- 0.05874649213778006, -0.011831230052897858, -0.08960679626545391, -0.08037911063513241,
- 0.001014356721645674, -0.05737963756798087, -0.044216572011292386,
- -0.060154327720000934, -0.0005684291308343008, 0.047173247685202875,
- -0.06554696286046827, -0.02089813519332155, 0.06070350579240177, 0.07237224608055644,
- 0.04352618751392977, -0.02465739895942042, 0.07810558398833146, -0.11819393499880224,
- -0.02936421031749027, 0.05088281764875393, 0.03324365540646721, 0.05722332343056395,
- -0.0655682847105168, -0.07548313235511651, -0.04055051292871704, -0.14249065760019664,
- -0.046446727790139815, 0.08249157460758814, 0.07874639120859069, 0.05662194687269024,
- 0.04501630577283937, -0.04375384003553238, -0.06473985991465885, 0.08288723270635347,
- 0.07127987467557997, 0.030735992902034038, 0.0462806119608718, -0.06607024492444219,
- -0.043871990279168695, 0.10165402645597586, -0.04083532033601423, -0.017646374215522932,
- -0.007581459167979758, -0.0016312726358002102, 0.10050043977192931, 0.07228366126985969,
- 0.10152670791422999, -0.004427112967744973, 0.058671159827074895,
- -0.0039673618582152835, -0.008558713557274156, 0.014928460545913392,
- 0.058526271048027115, -0.04252436410673466, -0.10609933721354685, -0.05632026494178619,
- 0.020352926847801822, 0.09488345038246464, 0.04681338333348568, -0.1168674466175002,
- -0.043822374043835176, -0.0726504191454198
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 57,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 206,
- "similarity": 0.998266339302063
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 183,
- "similarity": 0.9982593059539795
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 45,
- "similarity": 0.9982484579086304
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Luke Henriques-Gomes"],
- "epoch_date_downloaded": 1629936000,
- "epoch_date_modified": 1629936000,
- "epoch_date_submitted": 1629936000,
- "flag": null,
- "report_number": 2419,
- "source_domain": "theguardian.com",
- "submitters": ["Anonymous"],
- "title": "'Robodebt-related trauma': the victims still paying for Australia's unlawful welfare crackdown",
- "url": "https://www.theguardian.com/australia-news/2020/nov/21/robodebt-related-trauma-the-victims-still-paying-for-australias-unlawful-welfare-crackdown"
- },
- {
- "__typename": "Report",
- "authors": ["Luke Henriques-Gomes"],
- "epoch_date_downloaded": 1671667200,
- "epoch_date_modified": 1671667200,
- "epoch_date_submitted": 1671667200,
- "flag": null,
- "report_number": 2375,
- "source_domain": "theguardian.com",
- "submitters": ["Khoa Lam"],
- "title": "Robodebt: government to refund 470,000 unlawful Centrelink debts worth $721m",
- "url": "https://www.theguardian.com/australia-news/2020/may/29/robodebt-government-to-repay-470000-unlawful-centrelink-debts-worth-721m"
- },
- {
- "__typename": "Report",
- "authors": ["James Purtill"],
- "epoch_date_downloaded": 1671667200,
- "epoch_date_modified": 1671667200,
- "epoch_date_submitted": 1671667200,
- "flag": null,
- "report_number": 2374,
- "source_domain": "abc.net.au",
- "submitters": ["Khoa Lam"],
- "title": "Students accused of welfare fraud say Centrelink's sums are wrong",
- "url": "https://www.abc.net.au/triplej/programs/hack/students-accused-of-welfare-fraud-say-centrelink-is-wrong/8127550"
- },
- {
- "__typename": "Report",
- "authors": ["Henry Belot"],
- "epoch_date_downloaded": 1671667200,
- "epoch_date_modified": 1671667200,
- "epoch_date_submitted": 1671667200,
- "flag": null,
- "report_number": 2373,
- "source_domain": "abc.net.au",
- "submitters": ["Khoa Lam"],
- "title": "Centrelink's controversial data matching program to target pensioners and disabled, Labor calls for suspension",
- "url": "https://www.abc.net.au/news/2017-01-17/labor-calls-for-suspension-of-centrelink-debt-recovery-program/8187934"
- },
- {
- "__typename": "Report",
- "authors": ["Luke Henriques-Gomes"],
- "epoch_date_downloaded": 1671667200,
- "epoch_date_modified": 1671667200,
- "epoch_date_submitted": 1671667200,
- "flag": null,
- "report_number": 2372,
- "source_domain": "theguardian.com",
- "submitters": ["Khoa Lam"],
- "title": "Robodebt scandal: leak reveals unlawful debts predate 2015 but government has no plans to pay back money",
- "url": "https://www.theguardian.com/australia-news/2020/may/31/robodebt-scandal-leak-reveals-unlawful-debts-predate-2015-but-government-has-no-plans-to-pay-back-money"
- },
- {
- "__typename": "Report",
- "authors": ["Jordan Hayne", "Matthew Doran"],
- "epoch_date_downloaded": 1671667200,
- "epoch_date_modified": 1671667200,
- "epoch_date_submitted": 1671667200,
- "flag": null,
- "report_number": 2369,
- "source_domain": "abc.net.au",
- "submitters": ["Anonymous"],
- "title": "Government to pay back $721m as it scraps Robodebt for Centrelink welfare recipients",
- "url": "https://www.abc.net.au/news/2020-05-29/federal-government-refund-robodebt-scheme-repay-debts/12299410"
- },
- {
- "__typename": "Report",
- "authors": ["The Guardian"],
- "epoch_date_downloaded": 1629936000,
- "epoch_date_modified": 1653177600,
- "epoch_date_submitted": 1629936000,
- "flag": null,
- "report_number": 1619,
- "source_domain": "theguardian.com",
- "submitters": ["Anonymous"],
- "title": "Government admits robodebt was unlawful as it settles legal challenge",
- "url": "https://www.theguardian.com/australia-news/2019/nov/27/government-admits-robodebt-was-unlawful-as-it-settles-legal-challenge"
- },
- {
- "__typename": "Report",
- "authors": ["The Guardian"],
- "epoch_date_downloaded": 1629936000,
- "epoch_date_modified": 1653177600,
- "epoch_date_submitted": 1629936000,
- "flag": null,
- "report_number": 1618,
- "source_domain": "theguardian.com",
- "submitters": ["Anonymous"],
- "title": "Robodebt: court approves $1.8bn settlement for victims of government’s ‘shameful’ failure",
- "url": "https://www.theguardian.com/australia-news/2021/jun/11/robodebt-court-approves-18bn-settlement-for-victims-of-governments-shameful-failure"
- },
- {
- "__typename": "Report",
- "authors": ["The Guardian"],
- "epoch_date_downloaded": 1629936000,
- "epoch_date_modified": 1629936000,
- "epoch_date_submitted": 1629936000,
- "flag": null,
- "report_number": 1437,
- "source_domain": "theguardian.com",
- "submitters": ["Anonymous"],
- "title": "Robodebt: government fights to keep secret documents that may show 'what went wrong'",
- "url": "https://www.theguardian.com/australia-news/2021/jun/23/robodebt-government-fights-to-keep-secret-documents-that-may-show-what-went-wrong"
- },
- {
- "__typename": "Report",
- "authors": ["Greg Jennett"],
- "epoch_date_downloaded": 1603929600,
- "epoch_date_modified": 1607299200,
- "epoch_date_submitted": 1607299200,
- "flag": null,
- "report_number": 1346,
- "source_domain": "abc.net.au",
- "submitters": ["Patrick Hall (BNH.ai)", "CSET annotators"],
- "title": "Robodebt removed humans from Human Services, and the Government is facing the consequences",
- "url": "https://www.abc.net.au/news/2020-05-30/robodebt-stuart-robert-scott-morrison/12303322"
- },
- {
- "__typename": "Report",
- "authors": ["Ben Eltham"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1077,
- "source_domain": "newmatilda.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "High Farce: The Turnbull Government’s Centrelink ‘Robo-Debt’ Debacle Continues To Grow",
- "url": "https://newmatilda.com/2017/01/06/the-turnbull-governments-centrelink-robo-debt-debacle-continues-to-grow/"
- },
- {
- "__typename": "Report",
- "authors": ["Political Reporters"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1076,
- "source_domain": "abc.net.au",
- "submitters": ["Roman Yampolskiy"],
- "title": "Centrelink debt recovery program to undergo changes following public criticism",
- "url": "https://www.abc.net.au/news/2017-01-16/government-to-change-centrelink-debt-recovery-program/8185366"
- },
- {
- "__typename": "Report",
- "authors": ["Heidi Pett", "Colin Cosier"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1075,
- "source_domain": "abc.net.au",
- "submitters": ["Roman Yampolskiy"],
- "title": "We're all talking about the Centrelink debt controversy, but what is 'robodebt' anyway?",
- "url": "https://www.abc.net.au/news/2017-03-03/centrelink-debt-controversy-what-is-robodebt/8317764"
- },
- {
- "__typename": "Report",
- "authors": ["Emma Reynolds"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1074,
- "source_domain": "news.com.au",
- "submitters": ["Roman Yampolskiy"],
- "title": "Citizens ‘monstered by own government’",
- "url": "https://www.news.com.au/finance/money/centrelink-users-monstered-by-their-own-government-in-fresh-debt-recovery-letters-scandal/news-story/eb2905e2712f6bb5aee5a75432b2c3f7"
- },
- {
- "__typename": "Report",
- "authors": ["Robert Burton-Bradley"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1073,
- "source_domain": "sbs.com.au",
- "submitters": ["Roman Yampolskiy"],
- "title": "‘Hit with a scary $25,000 demand’: Centrelink debt scandal hits Aboriginal communities",
- "url": "https://www.sbs.com.au/nitv/nitv-news/article/2017/01/04/hit-scary-25000-demand-centrelink-debt-scandal-hits-aboriginal-communities"
- },
- {
- "__typename": "Report",
- "authors": ["Christopher Knaus"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1072,
- "source_domain": "theguardian.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Centrelink staff to strike over debt scandal, budget cuts and pay",
- "url": "https://www.theguardian.com/australia-news/2017/feb/06/centrelink-staff-to-strike-over-debt-scandal-budget-cuts-and-pay"
- },
- {
- "__typename": "Report",
- "authors": ["Paul Karp", "Christopher Knaus"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1071,
- "source_domain": "theguardian.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Centrelink robo-debt program accused of enforcing 'illegal' debts",
- "url": "https://www.theguardian.com/australia-news/2018/apr/04/centrelink-robo-debt-program-accused-of-enforcing-illegal-debts"
- },
- {
- "__typename": "Report",
- "authors": ["Christopher Knaus"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1070,
- "source_domain": "theguardian.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Public sector union condemns Centrelink move to privatise call centre",
- "url": "https://www.theguardian.com/australia-news/2017/oct/11/public-sector-union-condemns-centrelink-move-to-privatise-call-centre"
- },
- {
- "__typename": "Report",
- "authors": ["Christopher Knaus"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1069,
- "source_domain": "theguardian.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Centrelink to use 1,000 labour-hire staff to help recover welfare debts",
- "url": "https://www.theguardian.com/australia-news/2017/nov/22/centrelink-to-use-1000-labour-hire-staff-to-help-recover-welfare-debts"
- },
- {
- "__typename": "Report",
- "authors": ["Christopher Knaus"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1068,
- "source_domain": "theguardian.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Centrelink's debt data-matching failed government's privacy guidelines, campaigners say",
- "url": "https://www.theguardian.com/australia-news/2017/apr/19/centrelinks-debt-data-matching-failed-governments-privacy-guidelines-campaigners-say"
- },
- {
- "__typename": "Report",
- "authors": ["Christopher Knaus"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1067,
- "source_domain": "theguardian.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Centrelink says it has no plans to use robo-debt system to target pensioners",
- "url": "https://www.theguardian.com/australia-news/2017/jun/29/centrelink-says-it-has-no-plans-to-use-robo-debt-system-to-target-pensioners"
- },
- {
- "__typename": "Report",
- "authors": ["Paul Farrell", "Christopher Knaus", "Nick Evershed"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1066,
- "source_domain": "theguardian.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Centrelink loses more than one third of debt cases appealed to tribunal",
- "url": "https://www.theguardian.com/australia-news/2017/may/30/centrelink-crisis-more-than-a-third-of-debts-overturned-by-appeals-tribunal"
- },
- {
- "__typename": "Report",
- "authors": ["Christopher Knaus"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1065,
- "source_domain": "theguardian.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Centrelink robo-debt 'abject failure' and arguably unlawful, Victoria Legal Aid says",
- "url": "https://www.theguardian.com/australia-news/2017/apr/11/centrelink-robo-debt-abject-failure-and-arguably-unlawful-victoria-legal-aid-says"
- },
- {
- "__typename": "Report",
- "authors": ["Christopher Knaus", "Michael Griffin", "Greg Jericho"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1064,
- "source_domain": "theguardian.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Centrelink robo-debt system wrongly targets Australian of the Year finalist",
- "url": "https://www.theguardian.com/australia-news/2017/jan/16/centrelink-robo-debt-system-wrongly-targets-australian-of-the-year-finalist"
- },
- {
- "__typename": "Report",
- "authors": ["Christopher Knaus"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1063,
- "source_domain": "theguardian.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Welfare recipients to blame for Centrelink debt system failures, Senate inquiry told",
- "url": "https://www.theguardian.com/australia-news/2017/mar/08/centrelink-robo-debt-system-is-an-abuse-of-power-inquiry-hears"
- },
- {
- "__typename": "Report",
- "authors": ["Christopher Knaus"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1062,
- "source_domain": "theguardian.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Senate inquiry calls for Centrelink robo-debt system to be suspended until fixed",
- "url": "https://www.theguardian.com/australia-news/2017/jun/21/senate-inquiry-calls-for-centrelink-robo-debt-system-to-be-suspended-until-fixed"
- },
- {
- "__typename": "Report",
- "authors": ["Neoskosmos"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1061,
- "source_domain": "neoskosmos.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Planning an overseas trip? Make sure you are not in debt to Centrelink!",
- "url": "https://neoskosmos.com/en/122042/planning-an-overseas-trip-make-sure-you-are-not-in-debt-to-centrelink/"
- },
- {
- "__typename": "Report",
- "authors": ["Christopher Knaus"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1060,
- "source_domain": "theguardian.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Centrelink scandal: tens of thousands of welfare debts wiped or reduced",
- "url": "https://www.theguardian.com/australia-news/2017/sep/13/centrelink-scandal-tens-of-thousands-of-welfare-debts-wiped-or-reduced"
- },
- {
- "__typename": "Report",
- "authors": ["Leon Della Bosca"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1059,
- "source_domain": "yourlifechoices.com.au",
- "submitters": ["Roman Yampolskiy"],
- "title": "Government is using false figures to defend its robo-debt system",
- "url": "https://www.yourlifechoices.com.au/government/centrelink/the-centrelink-scandal-continues"
- },
- {
- "__typename": "Report",
- "authors": ["Political Reporter"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1058,
- "source_domain": "abc.net.au",
- "submitters": ["Roman Yampolskiy"],
- "title": "Centrelink: Tax office says it cannot be blamed for automated debt recovery system's failings",
- "url": "https://www.abc.net.au/news/2017-03-08/tax-office-cannot-be-blamed-for-centrelink-robodebt-failings/8335170"
- },
- {
- "__typename": "Report",
- "authors": ["Shalailah Medhora"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1056,
- "source_domain": "abc.net.au",
- "submitters": ["Roman Yampolskiy"],
- "title": "'This is a joke': fighting Centrelink’s robo-debt, one year on",
- "url": "https://www.abc.net.au/triplej/programs/hack/centrelink-debt-one-year-on/9283108"
- },
- {
- "__typename": "Report",
- "authors": ["Tom Mcilroy"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1055,
- "source_domain": "smh.com.au",
- "submitters": ["Roman Yampolskiy"],
- "title": "20,000 people sent Centrelink 'robo-debt' notices found to owe less or nothing",
- "url": "https://www.smh.com.au/public-service/20000-people-sent-centrelink-robodebt-notices-found-to-owe-less-or-nothing-20170913-gyg8mm.html"
- },
- {
- "__typename": "Report",
- "authors": ["Luke Michael"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1054,
- "source_domain": "probonoaustralia.com.au",
- "submitters": ["Roman Yampolskiy"],
- "title": "Government Rejects Findings From Centrelink Robo-Debt Inquiry",
- "url": "https://probonoaustralia.com.au/news/2017/10/government-rejects-findings-centrelink-robo-debt-inquiry/"
- },
- {
- "__typename": "Report",
- "authors": ["Lara Pearce"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1052,
- "source_domain": "huffingtonpost.com.au",
- "submitters": ["Roman Yampolskiy"],
- "title": "Centrelink 'Robo-Debt' Program Unclear, Unreasonable And Unfair: Ombudsman",
- "url": "https://www.huffingtonpost.com.au/2017/04/09/centrelink-robo-debt-program-unclear-unreasonable-and-unfair_a_22032932/"
- },
- {
- "__typename": "Report",
- "authors": ["Tony Yoo"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1051,
- "source_domain": "businessinsider.com.au",
- "submitters": ["Roman Yampolskiy"],
- "title": "A union claims almost every Centrelink debt letter is wrong and will bring a 'perfect storm' of complaints",
- "url": "https://www.businessinsider.com.au/a-union-claims-almost-every-centrelink-debt-letter-is-wrong-and-will-bring-a-perfect-storm-of-complaints-2017-1"
- },
- {
- "__typename": "Report",
- "authors": ["Kate Kachor"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1050,
- "source_domain": "finance.nine.com.au",
- "submitters": ["Roman Yampolskiy"],
- "title": "Centrelink debt letter scandal worsens",
- "url": "https://finance.nine.com.au/2017/01/05/16/25/centrelink-debt-letter-scandal-worsens"
- },
- {
- "__typename": "Report",
- "authors": ["Helen Davidson"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1049,
- "source_domain": "theguardian.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Centrelink debt scandal: report reveals multiple failures in welfare system",
- "url": "https://www.theguardian.com/australia-news/2017/apr/10/centrelink-debt-scandal-report-reveals-multiple-failures-in-welfare-system"
- },
- {
- "__typename": "Report",
- "authors": ["Political Reporter"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1048,
- "source_domain": "abc.net.au",
- "submitters": ["Roman Yampolskiy"],
- "title": "Centrelink's debt recovery system lacks transparency and treated some customers unfairly, ombudsman finds",
- "url": "http://www.abc.net.au/news/2017-04-10/centrelink-debt-recovery-system-lacks-transparency-ombudsman/8430184"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "yandex",
- "name": "Yandex"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "yandex",
- "name": "Yandex"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "yandex-users",
- "name": "Yandex Users"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1084, 1083, 1082, 1080, 1079],
- "vector": [
- -0.06204521656036377, 0.07155461609363556, 0.02942630648612976, -0.10422161966562271,
- 0.04958618804812431, -0.010398450307548046, 0.014524306170642376, 0.06466247886419296,
- 0.11443666368722916, -0.13655146956443787, -0.01365730445832014, 0.04253089800477028,
- 0.015356296673417091, -0.07287635654211044, 0.052286624908447266, -0.07792544364929199,
- -0.08619646728038788, -0.036973536014556885, -0.025914182886481285,
- -0.14996401965618134, -0.06659726053476334, 0.0313001349568367, 0.006969326175749302,
- 0.08162429183721542, -0.06971845775842667, 0.014331703074276447, 0.0986809954047203,
- 0.1090407520532608, -0.0802796334028244, 0.038400594145059586, -0.02202032133936882,
- -0.06617774069309235, 0.16440486907958984, 0.018604855984449387, 0.01210417877882719,
- 0.09535643458366394, -0.010889232158660889, -0.025127679109573364,
- -0.006410402711480856, -0.011220223270356655, -0.00006143003702163696,
- 0.2202753722667694, -0.002330313203856349, -0.022424232214689255, 0.049124576151371,
- -0.04965849965810776, 0.0029928255826234818, 0.022342583164572716, 0.018074683845043182,
- 0.01472045760601759, -0.007674519903957844, 0.03143719211220741, -0.03733401373028755,
- 0.01641528308391571, -0.07522907108068466, 0.05317332595586777, 0.008126677945256233,
- -0.01251884363591671, 0.038351017981767654, -0.04156973212957382, -0.013606587424874306,
- -0.16223208606243134, -0.07708240300416946, -0.01894759014248848, 0.07328727096319199,
- -0.07267183810472488, -0.0031773701775819063, 0.040114544332027435,
- 0.0029872762970626354, 0.05773041769862175, 0.06517032533884048, -0.051877159625291824,
- -0.0014299247413873672, 0.024960681796073914, 0.005918283946812153,
- -0.022967621684074402, -0.0018763024127110839, 0.1839681714773178, -0.09563553333282471,
- -0.03178244084119797, 0.12146999686956406, -0.12714864313602448, 0.35144829750061035,
- -0.03415337949991226, -0.034989580512046814, 0.06419657170772552, 0.09678729623556137,
- 0.0031211853493005037, 0.030538704246282578, 0.026341449469327927, 0.007130805402994156,
- 0.05667530372738838, -0.03874146193265915, -0.03312622755765915, 0.039895955473184586,
- -0.0014180837897583842, -0.011843922547996044, 0.013107016682624817,
- 0.0015117714647203684, -0.07559231668710709, 0.024063795804977417,
- -0.023482540622353554, 0.10895577818155289, 0.10062575340270996, -0.02620195969939232,
- -0.029057577252388, 0.08198096603155136, -0.04652024433016777, 0.0524650439620018,
- -0.041220683604478836, 0.03214607387781143, 0.008263499476015568, 0.07031194865703583,
- 0.007360695395618677, 0.04835917800664902, -0.03288847953081131, 0.021791715174913406,
- 0.06563937664031982, 0.10106732696294785, 0.06849231570959091, -0.017140701413154602,
- 0.0764109417796135, 0.03765226528048515, -0.09632815420627594, -0.03505812957882881,
- -0.04187038540840149, -0.03249002993106842, -0.02196054719388485, -0.022760894149541855,
- 0.08100724965333939, -0.09217548370361328, -0.2252877652645111, 0.01071296539157629,
- 0.026421284303069115, -0.033990055322647095, -0.01951334998011589, 0.016037486493587494,
- -0.08667436987161636, 0.051681917160749435, -0.029105698689818382, -0.04585718363523483,
- 0.06561560928821564, -0.0003528766392264515, 0.07120396941900253, 0.07715730369091034,
- 0.05538090318441391, -0.0405498668551445, -0.03914594650268555, -0.007938385009765625,
- -0.024595100432634354, 0.11715611070394516, -0.13999854028224945, -0.03007364831864834,
- -0.005303945392370224, 0.0023763864301145077, 0.7138051390647888, 0.12597939372062683,
- 0.16608627140522003, 0.015956835821270943, -0.04118054732680321, 0.15729649364948273,
- -0.021232550963759422, 0.08191440999507904, -0.04507884383201599, -0.06117668002843857,
- 0.04611652344465256, -0.10943065583705902, -0.03979555517435074, 0.03483489900827408,
- 0.015032735653221607, 0.059833746403455734, 0.046419478952884674, 0.08207160234451294,
- 0.003018965246155858, -0.11239193379878998, -0.02762608788907528, 0.05974123626947403,
- 0.043064359575510025, -0.12599244713783264, -0.06522633135318756, 0.06883175671100616,
- 0.1101040244102478, -0.10035930573940277, -0.00363924796693027, -0.09258531033992767,
- 0.05300532653927803, -0.009700732305645943, 0.055675458163022995, -0.019160877913236618,
- 0.054991792887449265, 0.07411952316761017, 0.05951465293765068, -0.02061043679714203,
- -0.07904057204723358, 0.005666392855346203, 0.1170601099729538, -0.0029416296165436506,
- -0.06014613062143326, 0.09738772362470627, -0.07456351071596146, 0.03653664141893387,
- -0.013618622906506062, 0.11143149435520172, -0.13248921930789948, 0.010451672598719597,
- -0.017262570559978485, -0.059549421072006226, 0.04641398414969444, -0.00416543846949935,
- -0.06246750429272652, -0.07442030310630798, 0.11041317135095596, 0.013715313747525215,
- 0.029096761718392372, 0.023083800449967384, -0.040246568620204926, 0.0848860889673233,
- 0.06097646802663803, 0.0489911213517189, -0.03701610118150711, 0.04393479973077774,
- 0.044566623866558075, -0.050388894975185394, -0.07406388223171234, 0.005917636211961508,
- 0.04705139994621277, 0.019502738490700722, -0.014512531459331512, 0.07330532371997833,
- 0.0050885556265711784, -0.04471323639154434, 0.019057776778936386, 0.06866683810949326,
- 0.0030779927037656307, 0.07547049224376678, -0.04829878360033035, -0.05588807910680771,
- -0.028501296415925026, 0.01721213385462761, 0.016003001481294632, -0.015109455212950706,
- 0.06832246482372284, 0.11018786579370499, 0.04653089493513107, 0.06569324433803558,
- -0.028788721188902855, 0.06358043849468231, 0.06856218725442886, -0.01378234475851059,
- 0.06727220863103867, -0.016952965408563614, -0.059670425951480865,
- -0.028549570590257645, 0.04178366810083389, 0.017122697085142136, 0.027871470898389816,
- -0.07876496016979218, -0.023620879277586937, -0.04889708012342453,
- -0.0062159327790141106, -0.11646268516778946, -0.0015710234874859452,
- 0.0235762856900692, 0.029417598620057106, -0.07916273176670074, -0.05816270038485527,
- -0.09696734696626663, -0.004865591414272785, 0.08597675710916519, -0.01761682704091072,
- -0.0026787964161485434, -0.12583088874816895, 0.03751393407583237, -0.0421573780477047,
- 0.054085224866867065, 0.01380725484341383, 0.000661638390738517, 0.0007304566097445786,
- -0.045563142746686935, 0.029575925320386887, 0.005134013015776873,
- -0.000609671522397548, -0.04234604164958, -0.04097932204604149, -0.03683985397219658,
- 0.0006686815177090466, -0.00359583948738873, -0.06428790837526321,
- 0.0020796284079551697, 0.03564858436584473, 0.07331933081150055, -0.039092618972063065,
- -0.0018048087367787957, 0.05733710527420044, -0.039475616067647934,
- 0.001354716601781547, 0.11740469932556152, -0.04935438558459282, 0.01079249382019043,
- -0.035682667046785355, -0.09124854952096939, 0.00034677740768529475,
- -0.014596335589885712, -0.05535666272044182, 0.07585914433002472, -0.028361985459923744,
- -0.021577954292297363, -0.038584090769290924, -0.017410267144441605,
- 0.055000144988298416, -0.0397755429148674, -0.08095896989107132, -0.06809858232736588,
- 0.14691701531410217, -0.018513232469558716, -0.02935776486992836, 0.016482826322317123,
- -0.061235032975673676, 0.04531354457139969, -0.024741845205426216,
- -0.002817572560161352, 0.05494366213679314, 0.09577646106481552, -0.011774726212024689,
- 0.035281356424093246, 0.05669192597270012, 0.033039629459381104, 0.019622687250375748,
- 0.06277018040418625, 0.44261103868484497, -0.22057588398456573, 0.07814336568117142,
- 0.10732494294643402, -0.019090933725237846, 0.040856603533029556, -0.01566394791007042,
- 0.07041988521814346, 0.0718139037489891, 0.1129077821969986, 0.11873804032802582,
- -0.0702914223074913, -0.01056692935526371, -0.04745398834347725, 0.09775380045175552,
- 0.019795093685388565, 0.0375744067132473, -0.024022819474339485, -0.04719388484954834,
- -0.003782471176236868, 0.030151357874274254, -0.07595814019441605,
- -0.013357596471905708, -0.03461572527885437, -0.07266250997781754,
- -0.0068048713728785515, 0.038807012140750885, 0.06771152466535568, -0.03954962641000748,
- 0.06064248085021973, -0.06626448780298233, 0.03625053912401199, 0.05085231736302376,
- 0.039903637021780014, -0.1628994643688202, 0.020606884732842445, -0.04136663302779198,
- -0.12041471153497696, 0.03610594943165779, -0.01363610289990902, 0.05653103068470955,
- 0.05851004645228386, -0.00040782979340292513, 0.061739157885313034,
- -0.018446562811732292, -0.043248556554317474, 0.03827555850148201, 0.01974252238869667,
- 0.05859864875674248, 0.061709802597761154, 0.16050785779953003, -0.045297764241695404,
- -0.02534523233771324, -0.08433115482330322, 0.06696639955043793, 0.13199305534362793,
- -0.03370107710361481, 0.022109199315309525, 0.040454380214214325, 0.003272213041782379,
- -0.033096715807914734, -0.04836481064558029, -0.07944755256175995, -0.04066786915063858,
- -0.06039280444383621, 0.10900765657424927, 0.05035438388586044, -0.049876678735017776,
- -0.14989829063415527, -0.016929639503359795, -0.055331356823444366,
- 0.026833731681108475, 0.1879793107509613, -0.07323439419269562, 0.06146436929702759,
- -0.012539850547909737, -0.006089249160140753, 0.0358317606151104, -0.09935592114925385,
- 0.00629518274217844, -0.0833214819431305, 0.024130929261446, 0.09108652174472809,
- 0.03793657571077347, -0.051372189074754715, 0.10315976291894913, -0.09559662640094757,
- 0.07614133507013321, 0.057717464864254, -0.046487923711538315, 0.030207330361008644,
- 0.004313913639634848, 0.03628147393465042, 0.02121821604669094, -0.06849897652864456,
- 0.0321681872010231, -0.05553160235285759, -0.0414217934012413, -0.08911000192165375,
- -0.06315645575523376, -0.060717999935150146, -0.07595138996839523, 0.016603849828243256,
- -0.07815025001764297, -0.00035400912747718394, -0.055799879133701324,
- 0.004496128298342228, -0.008935702033340931, -0.0030881911516189575,
- 0.0037239529192447662, -0.12863720953464508, 0.0038008622359484434,
- -0.009471175260841846, 0.02398863062262535, -0.06451980769634247, -0.0735197514295578,
- -0.0007748175994493067, 0.06997507810592651, 0.03126043081283569, -0.05039505288004875,
- 0.0007988648721948266, -0.0628836378455162, 0.11446736752986908, -0.11149632930755615,
- -0.49708929657936096, 0.0320902056992054, 0.06280075013637543, 0.026448357850313187,
- 0.030144553631544113, -0.0832386165857315, 0.0647701695561409, 0.025886014103889465,
- -0.0470782145857811, 0.10161974281072617, -0.05634346604347229, 0.031156573444604874,
- -0.04485424607992172, -0.058485645800828934, 0.012101649306714535, -0.09504052996635437,
- -0.025116775184869766, 0.04705243557691574, -0.027355525642633438, -0.07599440217018127,
- -0.117170050740242, 0.03353331610560417, -0.019863730296492577, 0.030463378876447678,
- 0.007516856305301189, 0.022360652685165405, -0.04219204932451248, -0.029915088787674904,
- 0.049040865153074265, 0.027463648468255997, -0.00020354799926280975,
- -0.08352051675319672, -0.018001645803451538, 0.07587852329015732, 0.011570370756089687,
- 0.12223339080810547, -0.001680709421634674, 0.0032026830594986677, -0.11140294373035431,
- 0.07334701716899872, 0.06287090480327606, 0.18446898460388184, -0.04402244836091995,
- 0.02763381227850914, 0.014508537948131561, 0.12213204056024551, 0.04650338739156723,
- 0.01847631111741066, -0.035650234669446945, 0.009194868616759777, 0.030301909893751144,
- -0.0038332552649080753, 0.06566141545772552, -0.10366751253604889,
- -0.014378705993294716, -0.019592581316828728, -0.013017123565077782,
- -0.009061059914529324, -0.02405441924929619, 0.19060449302196503, 0.037674590945243835,
- 0.0496169850230217, 0.01128566823899746, -0.05823485925793648, 0.04015859216451645,
- -0.04947683960199356, -0.07361100614070892, -0.00072885473491624,
- -0.0013953790767118335, 0.011033764109015465, -0.03998604044318199,
- -0.12985455989837646, -0.03221166878938675, 0.03627702221274376, 0.00901423953473568,
- 0.07444815337657928, -0.007528019603341818, -0.006077529396861792, -0.04166482761502266,
- 0.1368045061826706, 0.043616097420454025, 0.04009732976555824, 0.05699459835886955,
- 0.0692535787820816, 0.02635398879647255, -0.02243141084909439, -0.026512276381254196,
- -0.09876643121242523, -0.011833848431706429, 0.15230467915534973, -0.025367841124534607,
- 0.12373189628124237, 0.02573850192129612, -0.03880920261144638, -0.062269605696201324,
- 0.03244732692837715, -0.01996198110282421, 0.0026515715289860964, -0.47942405939102173,
- -0.029651766642928123, 0.13627973198890686, 0.02379518188536167, 0.030398229137063026,
- 0.1069502979516983, 0.045115627348423004, -0.0755012035369873, -0.04235490411520004,
- -0.0863066241145134, 0.18712911009788513, -0.04800974205136299, 0.06154041364789009,
- -0.11916269361972809, 0.033265016973018646, 0.06165088340640068, -0.0378030464053154,
- 0.002487671561539173, 0.04761188477277756, -0.2341938316822052, -0.011511953547596931,
- 0.005837141536176205, 0.15227290987968445, -0.006529718637466431, 0.02366226352751255,
- 0.08846862614154816, -0.06880458444356918, 0.021631890907883644, 0.0667966678738594,
- 0.0037548248656094074, 0.07214697450399399, 0.017622897401452065,
- -0.000050295329856453463, 0.1123499721288681, 0.11191265285015106, 0.05539519712328911,
- -0.018723616376519203, 12.076210021972656, 0.07831227034330368, 0.09751547873020172,
- -0.0878923311829567, 0.0010388095397502184, -0.0519820936024189, 0.033606451004743576,
- -0.09608616679906845, 0.04415641352534294, 0.09469528496265411, -0.009571103379130363,
- -0.025199558585882187, 0.011258156970143318, -0.08046904951334, 0.028286393731832504,
- -0.04355306550860405, -0.030024126172065735, -0.04930189996957779, 0.06738556921482086,
- -0.05214633792638779, -0.05370565131306648, 0.054938506335020065, 0.06411353498697281,
- 0.019811850041151047, -0.06582091748714447, 0.03356442227959633, -0.006803163327276707,
- -0.0010911490535363555, -0.011315161362290382, 0.03453509882092476,
- -0.0050461748614907265, 0.057656239718198776, 0.06113574653863907, 0.021790720522403717,
- 0.028181206434965134, 0.03335912898182869, 0.05184682458639145, 0.04979410767555237,
- 0.04689560458064079, 0.06935131549835205, -0.007623874582350254, 0.009443762712180614,
- 0.020328927785158157, 0.06411957740783691, 0.06277371942996979, 0.004533023573458195,
- 0.015438055619597435, 0.11970417201519012, -0.021557340398430824, 0.04444897919893265,
- 0.08787300437688828, -0.019007958471775055, 0.09869859367609024, 0.04659387469291687,
- -0.013461816124618053, 0.06486309319734573, -0.015874424949288368, -0.10505114495754242,
- 0.10361567884683609, 0.03159020468592644, -0.03410697728395462, 0.08750176429748535,
- 0.04186175391077995, 0.10769369453191757, 0.0390065498650074, 0.034138523042201996,
- 0.10929854959249496, 0.07307165116071701, -0.1109616607427597, -0.09015817940235138,
- 0.027651021257042885, -0.07813315838575363, -0.06254281103610992, 0.030021294951438904,
- 0.06991485506296158, -0.04182609170675278, 0.04463541507720947, -0.029926547780632973,
- 0.03301464393734932, -0.024100840091705322, -0.015545952133834362, 0.024079401046037674,
- -0.030104557052254677, 0.047250524163246155, 0.022299733012914658, 0.026738543063402176,
- 0.06947566568851471, 0.07733519375324249, 0.020503437146544456, -0.11109714210033417,
- -0.10850558429956436, 0.12492823600769043, -0.027179915457963943, -0.07365400344133377,
- 0.03316293656826019, -0.07481615990400314, 0.009501045569777489, -0.14854539930820465,
- 0.09968852996826172, 0.11458142101764679, -0.10012785345315933, -0.020756561309099197,
- -0.03446929156780243, 0.10967545211315155, 0.009743958711624146, 0.04532187059521675,
- -0.05845143273472786, 0.01933922991156578, 0.003974186256527901, 0.030905108898878098,
- -0.05493909865617752, 0.06307993829250336, 0.08250084519386292, -0.05403418466448784,
- 0.011364142410457134, 0.08106590062379837, -0.04634048417210579, -0.004702760837972164,
- 0.047783754765987396, 0.004368447232991457, -0.09030210971832275, -0.028589526191353798,
- -0.04934373497962952, -0.06692912429571152, 0.010511243715882301, -0.07229766994714737,
- 0.011293673887848854, 0.004850661847740412, -0.010402778163552284,
- -0.009379694238305092, 0.02359692007303238, 0.07189278304576874, 0.11454340070486069,
- -0.006455621682107449, 0.06288057565689087, -0.06689555943012238, -0.02519608661532402,
- 0.030525732785463333, 0.07122795283794403, 0.04778579622507095, -0.09369045495986938,
- -0.041710466146469116, -0.05352240800857544, -0.12426350265741348, 0.037166934460401535,
- 0.09007707238197327, 0.02376347780227661, 0.07356774806976318, 0.00820863712579012,
- -0.0838557705283165, -0.006896863225847483, 0.08326777070760727, 0.035097673535346985,
- 0.018978049978613853, 0.03863557428121567, -0.059057701379060745, -0.01859075203537941,
- 0.11238272488117218, -0.02758098766207695, -0.021567251533269882, -0.034375615417957306,
- -0.05648549273610115, 0.08585995435714722, 0.09082506597042084, 0.0658588707447052,
- 0.014090756885707378, 0.032542698085308075, 0.027943501248955727, 0.0143679054453969,
- 0.01575411669909954, -0.017837045714259148, -0.018904272466897964, -0.08138767629861832,
- -0.09225965291261673, 0.06547766923904419, 0.07054241001605988, 0.061562128365039825,
- -0.11748611927032471, -0.013973650522530079, -0.03902895748615265
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 58,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 6,
- "similarity": 0.9991589188575745
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 66,
- "similarity": 0.9988002777099609
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 49,
- "similarity": 0.9987473487854004
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Charlie Moloney"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1084,
- "source_domain": "chatbotsmagazine.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "The Yandex Chatbot: What You Need To Know",
- "url": "https://chatbotsmagazine.com/the-yandex-chatbot-what-you-need-to-know-dbb2fe11f0d5"
- },
- {
- "__typename": "Report",
- "authors": ["Mike Sanders"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1083,
- "source_domain": "eteknix.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "2-Weeks Old Chatbot Declares 'It's Necessary to Shoot Enemies of the People'",
- "url": "https://www.eteknix.com/russian-ai-chatbot-2-weeks-old-declares-necessary-shoot-enemies-people/"
- },
- {
- "__typename": "Report",
- "authors": ["Ava Mutchler"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1082,
- "source_domain": "voicebot.ai",
- "submitters": ["Roman Yampolskiy"],
- "title": "Russian Voice Assistant Alice Goes Rogue, Found to be Supportive of Stalin and Violence",
- "url": "https://voicebot.ai/2017/10/30/russian-voice-assistant-alice-goes-rogue-found-supportive-stalin-violence/"
- },
- {
- "__typename": "Report",
- "authors": ["Jamie White"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1080,
- "source_domain": "infowars.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Russian AI Chatbot Found Supporting Stalin, Violence After Launch",
- "url": "https://www.infowars.com/russian-ai-chatbot-found-supporting-stalin-violence-after-launch/"
- },
- {
- "__typename": "Report",
- "authors": ["James Titcomb", "Roland Oliphant"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1079,
- "source_domain": "telegraph.co.uk",
- "submitters": ["Roman Yampolskiy"],
- "title": "Russian AI chatbot found supporting Stalin and violence two weeks after launch",
- "url": "https://www.telegraph.co.uk/technology/2017/10/25/russian-ai-chatbot-found-supporting-stalin-violence-two-weeks/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "google",
- "name": "Google"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "google",
- "name": "Google"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "women",
- "name": "Women"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1345, 1093, 1092, 1091, 1090, 1089, 1088, 1087, 1086, 1085],
- "vector": [
- -0.035436972975730896, 0.09190544486045837, 0.018810715526342392, -0.07618027180433273,
- 0.08421175926923752, -0.04278465732932091, 0.01061604730784893, 0.09109334647655487,
- 0.06331057846546173, -0.12251175940036774, -0.028123989701271057, 0.03812721371650696,
- 0.0170041061937809, -0.05551367998123169, 0.034041594713926315, -0.062117695808410645,
- -0.11132882535457611, -0.03973615542054176, 0.005025831982493401, -0.12061995267868042,
- -0.09147967398166656, -0.005877753719687462, -0.013343769125640392, 0.08198719471693039,
- -0.0651949942111969, 0.049447640776634216, 0.111439548432827, 0.07952938228845596,
- -0.05126149207353592, 0.07119367271661758, -0.02302301675081253, -0.06710940599441528,
- 0.12698310613632202, 0.018140677362680435, 0.01516532339155674, 0.07037148624658585,
- 0.017591485753655434, -0.013915752992033958, 0.008912150748074055, 0.004823417868465185,
- 0.049332428723573685, 0.2615107595920563, -0.015770452097058296, -0.006990189664065838,
- 0.032313019037246704, -0.03524743765592575, -0.02068081870675087, 0.05640247464179993,
- 0.023174798116087914, 0.039908502250909805, -0.002522740513086319, 0.01188631635159254,
- -0.04206985980272293, 0.022524382919073105, -0.09044037759304047, 0.042077139019966125,
- 0.04389375448226929, 0.015634559094905853, 0.045514315366744995, -0.10901346057653427,
- -0.019742442294955254, -0.1665247678756714, -0.04560922831296921, -0.07832285761833191,
- 0.11364863067865372, -0.07624991238117218, -0.03456377238035202, 0.013341608457267284,
- 0.017014212906360626, 0.06634321808815002, 0.07655337452888489, -0.056966088712215424,
- -0.0340932160615921, 0.007171066012233496, -0.01458190381526947, -0.04515871778130531,
- -0.03972184658050537, 0.1580888032913208, -0.10231588035821915, 0.0040140519849956036,
- 0.1209266185760498, -0.08566256612539291, 0.34166067838668823, 0.020038239657878876,
- -0.00788087211549282, -0.002532519865781069, 0.09299683570861816, 0.03193150833249092,
- 0.050565220415592194, 0.04600640386343002, -0.014512640424072742, 0.05215243250131607,
- -0.08549078553915024, -0.026456717401742935, 0.05130107328295708, 0.01657814159989357,
- -0.01848629117012024, -0.058563996106386185, -0.00863511860370636, -0.08440358936786652,
- -0.020114455372095108, -0.024692092090845108, 0.12685969471931458, 0.09529843181371689,
- -0.05754350498318672, -0.002629558090120554, 0.07484699785709381, -0.05043433979153633,
- 0.047240786254405975, -0.05096380040049553, 0.04653913527727127, -0.006453464273363352,
- 0.07708136737346649, -0.002776864916086197, 0.020069396123290062, -0.04915253072977066,
- 0.03975444287061691, 0.057957131415605545, 0.07878406345844269, 0.09141959249973297,
- -0.0009303012629970908, 0.05298318713903427, 0.07114541530609131, -0.04764654487371445,
- -0.06699306517839432, -0.021902330219745636, -0.04765614494681358,
- -0.026305753737688065, -0.03596401587128639, 0.058307163417339325, -0.04602893441915512,
- -0.18894632160663605, -0.016742834821343422, 0.04538462683558464, -0.06718926131725311,
- -0.012535298243165016, -0.029879972338676453, -0.05872197076678276, 0.04546549171209335,
- -0.022748570889234543, -0.004010409116744995, 0.06600578874349594,
- -0.008821765892207623, 0.04034101217985153, 0.09018413722515106, 0.07719655334949493,
- -0.04959392547607422, -0.04738527163863182, -0.013041852042078972,
- -0.047395527362823486, 0.1303514540195465, -0.11541364341974258, -0.05774671584367752,
- -0.01828072778880596, -0.009973959997296333, 0.7474371194839478, 0.12281244993209839,
- 0.19613361358642578, 0.016332708299160004, -0.023946058005094528, 0.17949262261390686,
- 0.0236230306327343, 0.06577888131141663, -0.058857083320617676, -0.03640037775039673,
- 0.017616864293813705, -0.08253815770149231, -0.06227279454469681, 0.019680680707097054,
- 0.04088868945837021, 0.10257302224636078, 0.032404497265815735, 0.052271902561187744,
- 0.00480594951659441, -0.1092091053724289, -0.037895746529102325, 0.06583772599697113,
- 0.008814109489321709, -0.1357177197933197, -0.03452233225107193, 0.060815054923295975,
- 0.07399868220090866, -0.09757408499717712, 0.0027214426081627607, -0.06479150056838989,
- 0.08464168757200241, -0.017736831679940224, 0.07157355546951294, -0.023173067718744278,
- 0.06449463963508606, 0.04723558574914932, 0.04227689653635025, -0.013012712821364403,
- -0.08327344059944153, 0.007430151104927063, 0.07138073444366455, -0.026509791612625122,
- -0.0242762491106987, 0.053978823125362396, -0.08641611039638519, 0.04349728673696518,
- 0.013284094631671906, 0.14304205775260925, -0.12510693073272705, 0.040205083787441254,
- -0.02376379817724228, -0.0011697867885231972, 0.03575313091278076, 0.006260403431952,
- -0.06098561733961105, -0.05792621895670891, 0.107529416680336, 0.0038061749655753374,
- 0.05466974899172783, 0.03628113493323326, -0.020245704799890518, 0.07104223221540451,
- 0.10317200422286987, 0.02059096097946167, -0.026726067066192627, 0.06177181005477905,
- 0.06439809501171112, -0.05129619315266609, -0.052380919456481934, 0.021765433251857758,
- 0.020489808171987534, 0.021163739264011383, -0.004176522605121136, 0.036364857107400894,
- -0.004975736141204834, -0.07243755459785461, 0.04492618888616562, 0.05919617414474487,
- 0.03701476380228996, 0.08909767121076584, -0.028681784868240356, -0.048910900950431824,
- -0.03783305361866951, -0.03394389897584915, 0.013089774176478386, -0.038289301097393036,
- 0.07370491325855255, 0.1117452010512352, 0.06952327489852905, 0.038665227591991425,
- 0.031088024377822876, 0.0613725408911705, 0.023510906845331192, -0.008250884711742401,
- 0.06902868300676346, -0.03080095909535885, -0.042929090559482574, -0.03161751478910446,
- 0.008696002885699272, 0.031042572110891342, -0.011307217180728912,
- -0.046192098408937454, -0.022815324366092682, -0.05011274665594101,
- -0.028580863028764725, -0.07012714445590973, -0.06480571627616882, 0.03020223043859005,
- 0.04340433329343796, -0.04600607976317406, -0.08619781583547592, -0.0912320539355278,
- -0.010537803173065186, 0.08278685063123703, -0.04355749115347862, -0.02095022238790989,
- -0.1136208176612854, -0.0026253063697367907, -0.00926183070987463, 0.05882647633552551,
- 0.011107820086181164, 0.02428763173520565, 0.03687672317028046, -0.08852507174015045,
- 0.0431884303689003, -0.009048023261129856, -0.03297875076532364, 0.014788702130317688,
- -0.05772809311747551, -0.02490771934390068, 0.0009003063896670938,
- -0.007778472267091274, -0.06354059278964996, 0.029422421008348465, 0.0628775954246521,
- 0.05349382758140564, -0.023825742304325104, -0.059719525277614594, 0.040157850831747055,
- -0.014476677402853966, 0.0009355662623420358, 0.07827611267566681,
- -0.049441590905189514, 0.03112686239182949, -0.02578701078891754, -0.080895334482193,
- -0.052443861961364746, -0.010988693684339523, -0.03272821754217148,
- 0.020114311948418617, -0.009354814887046814, 0.01261225063353777, -0.02667277492582798,
- -0.029015863314270973, 0.028959348797798157, -0.03958817571401596, -0.07950343191623688,
- -0.09140969812870026, 0.1348402053117752, -0.002690889872610569, -0.01589873805642128,
- 0.02658584713935852, -0.04253536835312843, 0.034781575202941895, -0.021340331062674522,
- -0.0005343687953427434, 0.050081681460142136, 0.048405785113573074,
- 0.026137936860322952, 0.033973462879657745, 0.08217184245586395, -0.027339834719896317,
- 0.017978304997086525, 0.07708566635847092, 0.4645276963710785, -0.1817687749862671,
- 0.08454348146915436, 0.10952744632959366, 0.024670172482728958, 0.04609035700559616,
- -0.05079849809408188, 0.09541193395853043, 0.08060572296380997, 0.10521192848682404,
- 0.13822975754737854, -0.03255223482847214, -0.017090432345867157, -0.08237278461456299,
- 0.09315530955791473, -0.003704904345795512, 0.03744891658425331, -0.04312712699174881,
- -0.08848800510168076, -0.02277222089469433, 0.014056699350476265, -0.051535796374082565,
- 0.02672990784049034, -0.03173030912876129, -0.051775895059108734, -0.002232725266367197,
- -0.002505924552679062, 0.003912650514394045, -0.0392603874206543, 0.04269609972834587,
- -0.033529795706272125, 0.05854129046201706, 0.03250706195831299, 0.025230761617422104,
- -0.1689859926700592, 0.02631930075585842, -0.06124863028526306, -0.10637209564447403,
- 0.07477972656488419, -0.015797574073076248, 0.046914517879486084, 0.07175947725772858,
- -0.021179895848035812, 0.053408898413181305, -0.01572389341890812, -0.04201231896877289,
- 0.009718462824821472, 0.061156488955020905, 0.026251938194036484, 0.05176616832613945,
- 0.14993175864219666, -0.022245215252041817, -0.007665279321372509, -0.1042805165052414,
- 0.07133478671312332, 0.1651897132396698, 0.015066659078001976, 0.021665889769792557,
- 0.033120013773441315, -0.011442486196756363, -0.005021204706281424, -0.0345049723982811,
- -0.09650232642889023, -0.03167908638715744, -0.05581999570131302, 0.10020599514245987,
- 0.03098885715007782, -0.014609336853027344, -0.1487356722354889, -0.0027957577258348465,
- -0.04500988870859146, 0.038946621119976044, 0.11305785179138184, -0.06263159215450287,
- 0.0664587914943695, -0.0004960558144375682, 0.0017855204641819, 0.00897008366882801,
- -0.08448977768421173, 0.014449110254645348, -0.04427797719836235, 0.04443538188934326,
- 0.04193255677819252, 0.038790494203567505, -0.03878935053944588, 0.12039558589458466,
- -0.08641904592514038, 0.08894603699445724, -0.02158546820282936, -0.029308835044503212,
- 0.021252896636724472, -0.024714292958378792, 0.03224239498376846, 0.0232829712331295,
- -0.07199285179376602, 0.015486215241253376, -0.03570396453142166, -0.03364640474319458,
- -0.06989561021327972, -0.09946610778570175, -0.022863034158945084, -0.06899645179510117,
- 0.05581415817141533, -0.08764956891536713, -0.025992413982748985, -0.05832869932055473,
- -0.02067733183503151, -0.018358666449785233, 0.00551871582865715, 0.0039812736213207245,
- -0.13633881509304047, -0.005667067598551512, 0.0030355206690728664, 0.05161371827125549,
- -0.06100403517484665, -0.06326735019683838, -0.004679629113525152, 0.06778077036142349,
- 0.039239998906850815, -0.029794389382004738, -0.013796867802739143,
- -0.08592991530895233, 0.05856167525053024, -0.10680408775806427, -0.38420796394348145,
- 0.06697724759578705, 0.03633052483201027, 0.028071993961930275, 0.010843049734830856,
- -0.07803545892238617, 0.04719902575016022, 0.02187148667871952, -0.05042170360684395,
- 0.05807112529873848, -0.06383614242076874, 0.04013049975037575, -0.05107811838388443,
- -0.07246768474578857, -0.012679223902523518, -0.06288905441761017, -0.04942252114415169,
- 0.04119417071342468, -0.0424046516418457, -0.08082185685634613, -0.11390751600265503,
- 0.024162914603948593, -0.02954123541712761, 0.01781497895717621, 0.01793687231838703,
- 0.018693815916776657, -0.0359579361975193, -0.055788081139326096, 0.04517965391278267,
- 0.07002852857112885, 0.029705893248319626, -0.0767226591706276, 0.014975880272686481,
- 0.07197870314121246, 0.021998530253767967, 0.11262468993663788, 0.007465945091098547,
- -0.012973475269973278, -0.07133664190769196, 0.08671750128269196, 0.060064516961574554,
- 0.18445031344890594, -0.015624349936842918, -0.01205245591700077, 0.0276641845703125,
- 0.11588400602340698, 0.07335461676120758, 0.012887353077530861, -0.024014407768845558,
- -0.016538703814148903, 0.02456842176616192, 0.00444059818983078, 0.08625943958759308,
- -0.07786025106906891, -0.01761816069483757, -0.02777746319770813, 0.004113193601369858,
- -0.03690370172262192, -0.03932904452085495, 0.23029430210590363, 0.014872257597744465,
- 0.02598108910024166, 0.02585175633430481, -0.045391954481601715, 0.0034868139773607254,
- -0.06913524121046066, -0.07358220219612122, -0.034764256328344345,
- -0.005423940252512693, 0.007487154100090265, -0.035301074385643005,
- -0.10225281864404678, -0.009051316417753696, 0.01780926063656807, 0.012469759210944176,
- 0.12799744307994843, -0.02412140928208828, 0.005920831114053726, -0.02113420143723488,
- 0.1183578222990036, 0.03626163303852081, -0.006202029995620251, 0.053486503660678864,
- 0.08729560673236847, 0.01878141239285469, 0.025709550827741623, -0.0031198468059301376,
- -0.07902522385120392, -0.02041936106979847, 0.14887948334217072, -0.025995949283242226,
- 0.08197055757045746, 0.05849342420697212, -0.038447342813014984, -0.07118768990039825,
- 0.02057504467666149, -0.015546940267086029, 0.033637721091508865, -0.44630399346351624,
- -0.06693242490291595, 0.11230479180812836, 0.023327326402068138, 0.016779344528913498,
- 0.07204367220401764, 0.0208889190107584, -0.060779016464948654, 0.0021220888011157513,
- -0.13157501816749573, 0.13764885067939758, 0.014939452521502972, 0.05252635478973389,
- -0.07912218570709229, 0.0003758097591344267, 0.06577010452747345, -0.04303263872861862,
- 0.027554133906960487, 0.0710206925868988, -0.2258695662021637, -0.0033592600375413895,
- -0.013990217819809914, 0.11649101972579956, -0.019625239074230194, 0.037387121468782425,
- 0.09322653710842133, -0.07629658281803131, 0.030309924855828285, 0.06472590565681458,
- -0.010718261823058128, 0.04415874183177948, -0.007955007255077362, 0.012166905216872692,
- 0.10641051828861237, 0.10576389729976654, 0.060941506177186966, -0.019488632678985596,
- 12.069792747497559, 0.02603093348443508, 0.05486803129315376, -0.07996116578578949,
- -0.012861927039921284, -0.0446607880294323, 0.02618146874010563, -0.10847954452037811,
- 0.09854649752378464, 0.15179428458213806, -0.03126117214560509, -0.06403464078903198,
- -0.0020653926767408848, -0.07744044810533524, 0.03557237610220909, -0.03598789498209953,
- -0.07164917141199112, -0.03319188207387924, 0.05001266673207283, -0.05378848314285278,
- -0.02212531492114067, 0.038897693157196045, 0.07353729009628296, -0.008085672743618488,
- -0.052077941596508026, -0.003784068627282977, 0.004697392228990793,
- -0.042552266269922256, 0.018901007249951363, 0.032264333218336105, 0.000940278812777251,
- 0.0036762584932148457, 0.058967143297195435, -0.006360639818012714,
- 0.031172025948762894, 0.0524587407708168, 0.07037968933582306, 0.06038960814476013,
- 0.02965511940419674, 0.08373580873012543, -0.012024128809571266, 0.0029605692252516747,
- 0.028889348730444908, 0.04677339270710945, 0.07738906145095825, 0.05047637224197388,
- 0.03974958881735802, 0.10882115364074707, 0.027770649641752243, 0.07880248129367828,
- 0.0879170224070549, -0.0033369946759194136, 0.12150529772043228, -0.014162304811179638,
- -0.017386656254529953, 0.04424922168254852, -0.011773561127483845, -0.09809430688619614,
- 0.06290355324745178, 0.029753249138593674, -0.059100229293107986, 0.12755410373210907,
- 0.013440708629786968, 0.09295882284641266, 0.014626504853367805, 0.02551286853849888,
- 0.07519613206386566, 0.04952376335859299, -0.11156763881444931, -0.06976330280303955,
- 0.014155181124806404, -0.08708343654870987, -0.1031767874956131, 0.08548812568187714,
- 0.07008520513772964, -0.046181537210941315, 0.029834413900971413, -0.021220428869128227,
- 0.03045056201517582, -0.03390093147754669, -0.010411159135401249, 0.023687463253736496,
- -0.011565061286091805, 0.006153995171189308, 0.05359958857297897, 0.03851053863763809,
- 0.02591845393180847, 0.12312968820333481, -0.0007081457297317684, -0.07781529426574707,
- -0.08460742235183716, 0.10369179397821426, -0.026758994907140732, -0.07882760465145111,
- 0.0582507848739624, -0.08339960873126984, 0.020697716623544693, -0.16248270869255066,
- 0.07299532741308212, 0.12813232839107513, -0.11881649494171143, -0.021869052201509476,
- -0.046541452407836914, 0.07080356031656265, 0.015532562509179115, 0.02912226691842079,
- -0.0642920583486557, -0.007621772587299347, 0.0014576584799215198, 0.034018296748399734,
- -0.04975781589746475, 0.05310017988085747, 0.08914612978696823, -0.051623038947582245,
- 0.0005178310093469918, 0.041533321142196655, -0.027887951582670212,
- -0.01648794487118721, 0.05141245573759079, 0.024996448308229446, -0.08616846799850464,
- -0.027750778943300247, -0.04464711993932724, -0.03155916929244995,
- -0.030274922028183937, -0.027468398213386536, 0.04055663198232651, 0.05518348887562752,
- -0.044103704392910004, 0.007576421834528446, 0.016927961260080338, 0.07797686755657196,
- 0.11295751482248306, -0.01999574527144432, 0.06474872678518295, -0.049019407480955124,
- -0.049784135073423386, 0.028245562687516212, 0.030058687552809715, 0.055944204330444336,
- -0.06700016558170319, -0.037418998777866364, -0.09857594966888428, -0.13009390234947205,
- 0.043632276356220245, 0.08944107592105865, 0.07340596616268158, 0.04449624568223953,
- 0.018161723390221596, -0.06280231475830078, -0.040119849145412445, 0.12377400696277618,
- 0.028701167553663254, -0.00754277128726244, 0.06379369646310806, -0.06746791303157806,
- -0.045377615839242935, 0.09789956361055374, -0.030715521425008774,
- -0.015759384259581566, -0.0038637991528958082, -0.09728091955184937,
- 0.09609900414943695, 0.11858360469341278, 0.05183293670415878, 0.012591168284416199,
- 0.03027466870844364, 0.015785926952958107, 0.07757604867219925, 0.0022456729784607887,
- 0.04542139172554016, -0.050446830689907074, -0.07180400937795639, -0.08908973634243011,
- 0.05576936528086662, 0.11403875052928925, 0.07994131743907928, -0.06815996766090393,
- -0.028670351952314377, -0.04860961437225342
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 59,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 13,
- "similarity": 0.9992702007293701
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 49,
- "similarity": 0.9992640614509583
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 14,
- "similarity": 0.9992086887359619
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Nicolas Kayser-Bril"],
- "epoch_date_downloaded": 1603929600,
- "epoch_date_modified": 1607299200,
- "epoch_date_submitted": 1607299200,
- "flag": null,
- "report_number": 1345,
- "source_domain": "algorithmwatch.org",
- "submitters": ["Patrick Hall (BNH.ai)", "CSET annotators"],
- "title": "Female historians and male nurses do not exist, Google Translate tells its European users",
- "url": "https://algorithmwatch.org/en/story/google-translate-gender-bias/"
- },
- {
- "__typename": "Report",
- "authors": ["Matthew Hutson"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1093,
- "source_domain": "sciencemag.org",
- "submitters": ["Anonymous"],
- "title": "Even artificial intelligence can acquire biases against race and gender",
- "url": "https://www.sciencemag.org/news/2017/04/even-artificial-intelligence-can-acquire-biases-against-race-and-gender"
- },
- {
- "__typename": "Report",
- "authors": ["Kyle Wiggers"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1092,
- "source_domain": "venturebeat.com",
- "submitters": ["Anonymous"],
- "title": "Google Translate now gives feminine and masculine translations",
- "url": "https://venturebeat.com/2018/12/06/google-translate-now-returns-both-feminine-and-masculine-translations-for-words-and-phrases/"
- },
- {
- "__typename": "Report",
- "authors": ["Nikhil Sonnad"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1091,
- "source_domain": "qz.com",
- "submitters": ["Anonymous"],
- "title": "Google Translate's gender bias pairs \"he\" with \"hardworking\" and \"she\" with lazy, and other examples",
- "url": "https://qz.com/1141122/google-translates-gender-bias-pairs-he-with-hardworking-and-she-with-lazy-and-other-examples/"
- },
- {
- "__typename": "Report",
- "authors": ["Adam Hadhazy"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1090,
- "source_domain": "princeton.edu",
- "submitters": ["Anonymous"],
- "title": "Biased bots: Artificial-intelligence systems echo human prejudices",
- "url": "https://www.princeton.edu/news/2017/04/18/biased-bots-artificial-intelligence-systems-echo-human-prejudices"
- },
- {
- "__typename": "Report",
- "authors": ["Hannah Devlin"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1089,
- "source_domain": "theguardian.com",
- "submitters": ["Anonymous"],
- "title": "AI programs exhibit racial and gender biases, research reveals",
- "url": "https://www.theguardian.com/technology/2017/apr/13/ai-programs-exhibit-racist-and-sexist-biases-research-reveals"
- },
- {
- "__typename": "Report",
- "authors": ["Marcelo Prates", "Pedro Henrique da Costa Avelar", "Luís C. Lamb"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1088,
- "source_domain": "researchgate.net",
- "submitters": ["Anonymous"],
- "title": "Assessing Gender Bias in Machine Translation -- A Case Study with Google Translate",
- "url": "https://www.researchgate.net/publication/327549663_Assessing_Gender_Bias_in_Machine_Translation_--_A_Case_Study_with_Google_Translate"
- },
- {
- "__typename": "Report",
- "authors": ["Parmy Olson"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1087,
- "source_domain": "forbes.com",
- "submitters": ["Anonymous"],
- "title": "The Algorithm That Helped Google Translate Become Sexist",
- "url": "https://www.forbes.com/sites/parmyolson/2018/02/15/the-algorithm-that-helped-google-translate-become-sexist/#4feb20457daa"
- },
- {
- "__typename": "Report",
- "authors": ["Jack Morse"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1086,
- "source_domain": "mashable.com",
- "submitters": ["Anonymous"],
- "title": "Google Translate might have a gender problem",
- "url": "https://mashable.com/2017/11/30/google-translate-sexism/#FYrHZI1Sssqh"
- },
- {
- "__typename": "Report",
- "authors": ["Aylin Caliskan", "Joanna J. Bryson", "Arvind Narayanan"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1085,
- "source_domain": "arxiv.org",
- "submitters": ["Anonymous"],
- "title": "Semantics derived automatically from language corpora contain human-like biases",
- "url": "https://arxiv.org/abs/1608.07187"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "faceapp",
- "name": "FaceApp"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "faceapp",
- "name": "FaceApp"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "minority-groups",
- "name": "Minority Groups"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [
- 1344, 1122, 1121, 1120, 1119, 1118, 1117, 1113, 1112, 1110, 1109, 1108, 1107, 1106,
- 1105, 1104, 1103, 1102, 1101, 1099, 1098, 1097, 1096
- ],
- "vector": [
- -0.06779362261295319, 0.0740700289607048, 0.002313300734385848, -0.12846261262893677,
- 0.06858652830123901, -0.0341079905629158, 0.02095750905573368, 0.04887913540005684,
- 0.0331941694021225, -0.12998032569885254, 0.014525632373988628, 0.049259912222623825,
- 0.021260203793644905, -0.10738421231508255, 0.04387995973229408, -0.05193905159831047,
- -0.11159578710794449, -0.06572940200567245, 0.010047830641269684, -0.12786825001239777,
- -0.058290995657444, -0.005072698462754488, 0.00879617314785719, 0.13668975234031677,
- -0.06420686095952988, -0.004311288241297007, 0.10336356610059738, 0.09357352554798126,
- -0.025528449565172195, 0.028539245948195457, -0.029585758224129677,
- -0.09196142852306366, 0.11722728610038757, 0.018704313784837723, 0.014081383123993874,
- 0.09114252030849457, 0.037873562425374985, -0.011290721595287323, -0.03644396364688873,
- 0.023204518482089043, 0.02251240983605385, 0.20314693450927734, -0.0064520882442593575,
- -0.0029369934927672148, 0.04903955012559891, -0.04087977111339569, 0.02692708559334278,
- 0.047366950660943985, 0.017271917313337326, 0.02099553681910038, -0.011900581419467926,
- 0.019931111484766006, -0.0716906264424324, 0.025256967172026634, -0.09701693803071976,
- 0.035613011568784714, 0.03147295117378235, 0.004399476572871208, 0.04035021737217903,
- -0.05947082117199898, -0.00675650080665946, -0.17502529919147491, -0.05853619799017906,
- -0.043671391904354095, 0.06904501467943192, -0.062183529138565063, -0.01217587385326624,
- 0.018663398921489716, 0.010842173360288143, 0.0575508177280426, 0.08163780719041824,
- -0.05578719452023506, -0.03882705792784691, -0.00493314815685153, -0.006881477311253548,
- -0.0066288248635828495, 0.026226390153169632, 0.21088090538978577, -0.10236459970474243,
- -0.011652731336653233, 0.12752296030521393, -0.12207674235105515, 0.3516818881034851,
- -0.013225099071860313, -0.00800404418259859, 0.00004809044912690297,
- 0.07041633129119873, 0.035805050283670425, 0.03912938013672829, 0.023457691073417664,
- 0.011676101945340633, 0.04463624954223633, -0.055214352905750275, -0.041812263429164886,
- 0.05184493213891983, 0.04239421710371971, -0.023054802790284157, -0.063391774892807,
- -0.01741872914135456, -0.0771661028265953, -0.011470959521830082, -0.021361980587244034,
- 0.11733362823724747, 0.09388599544763565, -0.03577200695872307, -0.016446631401777267,
- 0.06811263412237167, -0.03360123187303543, 0.058964185416698456, -0.09267107397317886,
- 0.03914639353752136, 0.010779564268887043, 0.06573092937469482, 0.006330159492790699,
- 0.03295959159731865, -0.058194003999233246, 0.0030951432418078184, 0.05066295340657234,
- 0.10528770834207535, 0.07284384965896606, 0.030707241967320442, 0.06276296824216843,
- 0.06746117025613785, -0.050423119217157364, 0.00530637102201581, 0.007254922296851873,
- -0.03989237919449806, -0.008563295006752014, -0.03358222544193268, 0.051800791174173355,
- -0.03595651313662529, -0.21309545636177063, 0.019916415214538574, 0.06138930469751358,
- -0.022970624268054962, -0.039752036333084106, 0.02028775028884411, -0.05820850655436516,
- 0.02602498233318329, -0.042234789580106735, -0.05856809392571449, 0.07380511611700058,
- 0.018957892432808876, 0.048600248992443085, 0.11225875467061996, 0.04388862103223801,
- -0.03147244080901146, -0.05807418376207352, -0.01688794419169426, -0.07101123780012131,
- 0.1046423688530922, -0.13019730150699615, -0.015063924714922905, -0.026978544890880585,
- -0.035398706793785095, 0.650478720664978, 0.13031068444252014, 0.18970511853694916,
- -0.011318310163915157, 0.02137192152440548, 0.16557078063488007, -0.03241736814379692,
- 0.08628041297197342, -0.1016177162528038, -0.06466840952634811, 0.0339723564684391,
- -0.08075480908155441, -0.04632905125617981, 0.03306276723742485, 0.0031178276985883713,
- 0.05848006159067154, 0.04394293949007988, 0.09617254883050919, 0.010290403850376606,
- -0.11318320780992508, -0.03822296857833862, 0.052234306931495667, 0.0363030768930912,
- -0.1307421326637268, -0.047997862100601196, 0.06180543079972267, 0.10900703817605972,
- -0.09943659603595734, 0.012174204923212528, -0.08438863605260849, 0.07214371860027313,
- -0.016374167054891586, 0.07782686501741409, -0.022792797535657883, 0.028481975197792053,
- 0.007316249888390303, 0.020381180569529533, -0.0032177509274333715,
- -0.050192397087812424, -0.029721220955252647, 0.09957589209079742, -0.02522272989153862,
- -0.03222085162997246, 0.07024649530649185, -0.10230453312397003, 0.018722832202911377,
- 0.011265810579061508, 0.1434846967458725, -0.13104167580604553, 0.03203422948718071,
- 0.005239599384367466, -0.01661495491862297, 0.047496236860752106, -0.04064551740884781,
- -0.05705047771334648, -0.06353610754013062, 0.09864214062690735, 0.016706332564353943,
- 0.026997756212949753, 0.024228772148489952, -0.02895575761795044, 0.038112081587314606,
- 0.06409686803817749, -0.021177638322114944, -0.04254605993628502, 0.0867772027850151,
- 0.05120021477341652, -0.06636930257081985, -0.04253501072525978, 0.04792237654328346,
- 0.0501832477748394, 0.036244574934244156, -0.022836003452539444, 0.05799678713083267,
- -0.008507252670824528, -0.05113079771399498, 0.03357500210404396, 0.039718806743621826,
- 0.033754728734493256, 0.0826905146241188, -0.08721577376127243, -0.0527847483754158,
- -0.02855750545859337, -0.012409601360559464, 0.01421342883259058, -0.05416902154684067,
- 0.07913598418235779, 0.07631459832191467, 0.04960813745856285, 0.0278539527207613,
- 0.0075270188972353935, 0.06053629145026207, 0.059838663786649704, 0.01244527380913496,
- 0.10024195164442062, -0.019185975193977356, -0.030118372291326523, -0.04020566865801811,
- -0.0018313158070668578, 0.034193623811006546, 0.03290107101202011, -0.07176125794649124,
- -0.029026003554463387, -0.026553479954600334, -0.029060302302241325,
- -0.10850880295038223, -0.023811956867575645, 0.07598268240690231, 0.02516818791627884,
- -0.03407668694853783, -0.10673048347234726, -0.08016762882471085, 0.007735737133771181,
- 0.0908210277557373, -0.0395122729241848, -0.0032502892427146435, -0.09915918111801147,
- 0.025701964274048805, -0.050907451659440994, 0.06083189323544502, -0.04620276764035225,
- 0.03039146214723587, 0.0019224040443077683, -0.05009264871478081, 0.050496701151132584,
- 0.01068484503775835, 0.01238313876092434, -0.024123666808009148, -0.06552304327487946,
- -0.059628237038850784, 0.005592084489762783, -0.01887441799044609, 0.016186848282814026,
- 0.03546152263879776, 0.04315037652850151, 0.06697056442499161, -0.013649404980242252,
- -0.004331435542553663, 0.039793241769075394, -0.05002131685614586, -0.03153424337506294,
- 0.0675995796918869, -0.03723292797803879, 0.023697692900896072, -0.019997959956526756,
- -0.06784103810787201, -0.042906057089567184, 0.023546114563941956, -0.04654606059193611,
- 0.047460559755563736, -0.029713353142142296, -0.014226698316633701,
- -0.052883945405483246, -0.03323708102107048, 0.06288685649633408, -0.0482383593916893,
- -0.08778993785381317, -0.06244013458490372, 0.11472649872303009, -0.003772416152060032,
- -0.002257539192214608, 0.015593099407851696, -0.032396942377090454, 0.03865371271967888,
- -0.02821211889386177, -0.006063653156161308, 0.03649809956550598, 0.0507068857550621,
- -0.008834903128445148, 0.04793558269739151, 0.057553187012672424, -0.03057240881025791,
- 0.02933514676988125, 0.048726268112659454, 0.4575006365776062, -0.29343050718307495,
- 0.08701851218938828, 0.10090205818414688, 0.01104892697185278, 0.04528060555458069,
- -0.015856247395277023, 0.10445857793092728, 0.07003607600927353, 0.11574006080627441,
- 0.10344261676073074, -0.06619840860366821, 0.01800108514726162, -0.06647895276546478,
- 0.07888659834861755, 0.022135628387331963, 0.02645043656229973, 0.013299624435603619,
- -0.04404131695628166, -0.024923723191022873, 0.039546042680740356,
- -0.051566362380981445, 0.009129755198955536, -0.03121243603527546, -0.05607305467128754,
- 0.014619434252381325, 0.028764797374606133, 0.05947696790099144, -0.02489914931356907,
- 0.05560607835650444, 0.004114154260605574, 0.031292084604501724, 0.050508562475442886,
- 0.035212866961956024, -0.09702073782682419, 0.05171765014529228, -0.05356018990278244,
- -0.10360393673181534, 0.06292260438203812, 0.008544249460101128, 0.05298987030982971,
- 0.04124833270907402, -0.03016107715666294, 0.013228004798293114, -0.02503635361790657,
- -0.0516803041100502, 0.0007870306726545095, 0.08982060104608536, 0.03770093992352486,
- 0.09052165597677231, 0.17689578235149384, -0.06148578226566315, -0.01163225993514061,
- -0.06234491989016533, 0.06281166523694992, 0.13430437445640564, -0.009540350176393986,
- 0.029077107086777687, 0.013251001015305519, -0.0022888900712132454,
- -0.022178873419761658, -0.04754768684506416, -0.10317730903625488, -0.01472296379506588,
- -0.06444946676492691, 0.08367715030908585, 0.04790608212351799, -0.048559945076704025,
- -0.17873071134090424, -0.007927216589450836, -0.04699663445353508, 0.03307756409049034,
- 0.1168670579791069, -0.07176279276609421, -0.0006303751724772155, -0.014227780513465405,
- 0.00558534637093544, -0.026022380217909813, -0.10068521648645401, -0.00716250529512763,
- -0.05370916426181793, 0.0412466898560524, 0.0407392643392086, 0.052404843270778656,
- -0.011483701877295971, 0.05135243013501167, -0.10416675359010696, 0.05438913032412529,
- 0.012038648128509521, -0.02069305256009102, 0.021703438833355904, -0.027073686942458153,
- 0.038438085466623306, 0.03677581250667572, -0.06692799925804138, -0.01468389667570591,
- -0.01853947527706623, -0.019562972709536552, -0.04939347878098488, -0.06321945786476135,
- -0.04412314295768738, -0.08285913616418839, 0.04268661141395569, -0.06620953232049942,
- -0.02352454885840416, -0.037394434213638306, -0.010666807182133198,
- -0.02024291828274727, 0.02859323099255562, 0.003123599337413907, -0.1535474807024002,
- -0.012969180010259151, -0.008486093953251839, 0.03722389414906502,
- -0.051102668046951294, -0.03249460831284523, 0.005051646381616592, 0.10700026899576187,
- 0.02636141888797283, -0.044542498886585236, 0.01933189481496811, -0.06118772178888321,
- 0.03611692786216736, -0.10041011869907379, -0.5013352036476135, 0.05703924596309662,
- 0.004638912156224251, 0.020604101940989494, 0.028000488877296448, -0.06598696112632751,
- 0.03403342887759209, 0.010211319662630558, -0.03551170974969864, 0.08394036442041397,
- -0.032432712614536285, 0.025952862575650215, -0.05770383030176163,
- -0.015394866466522217, -0.0000958449236350134, -0.05578162521123886,
- -0.05313809961080551, 0.02549968846142292, -0.01188159640878439, -0.029486563056707382,
- -0.08212538063526154, -0.004055778030306101, -0.012728700414299965, 0.04146518558263779,
- 0.01621389389038086, 0.014471922069787979, -0.05971982330083847, -0.04470212385058403,
- 0.054925721138715744, 0.06784537434577942, 0.03257952630519867, -0.08417302370071411,
- -0.001292821834795177, 0.059640686959028244, 0.04015382379293442, 0.11519111692905426,
- 0.012546556070446968, -0.05303535237908363, -0.07890846580266953, 0.06932735443115234,
- 0.0677199512720108, 0.18475200235843658, -0.02859329618513584, 0.03644063323736191,
- 0.0015461572911590338, 0.14270858466625214, 0.05183355137705803, 0.01125321350991726,
- -0.027618026360869408, 0.027108436450362206, -0.010378560051321983,
- -0.00955143477767706, 0.06980864703655243, -0.08196672797203064, -0.03633018583059311,
- -0.02163587510585785, -0.008492479100823402, -0.03681159391999245,
- -0.012495392002165318, 0.21224911510944366, 0.014953863807022572, 0.018163790926337242,
- 0.024251507595181465, -0.029287774115800858, 0.022880230098962784, -0.08424470573663712,
- -0.04941266030073166, -0.01084729190915823, -0.0015853658551350236,
- 0.005778918508440256, -0.05678245797753334, -0.11201707273721695, -0.016791149973869324,
- 0.03031737357378006, -0.006638051476329565, 0.12311454117298126, 0.00061119842575863,
- 0.019479984417557716, -0.014276373200118542, 0.11786752194166183, 0.010579957626760006,
- 0.030932342633605003, 0.07008838653564453, 0.09105770289897919, -0.00769426254555583,
- -0.026038341224193573, -0.030588924884796143, -0.06473837792873383,
- -0.03438984975218773, 0.13922052085399628, -0.04225463420152664, 0.1374935507774353,
- 0.02478192374110222, -0.02044317126274109, -0.023585477843880653, 0.006010339129716158,
- -0.032676853239536285, 0.0023906307760626078, -0.49639129638671875,
- -0.015216213651001453, 0.09602148830890656, 0.0152609683573246, 0.016650870442390442,
- 0.06738562881946564, 0.014089438132941723, -0.035759326070547104, -0.05044751241803169,
- -0.07916296273469925, 0.12484972178936005, -0.011794297955930233, 0.061856891959905624,
- -0.09890405088663101, 0.04354766011238098, 0.08648413419723511, -0.04020211100578308,
- 0.009838975965976715, 0.03406967595219612, -0.26328593492507935, -0.01992030069231987,
- -0.012085877358913422, 0.11669963598251343, 0.04183492064476013, 0.03248466178774834,
- 0.11840998381376266, -0.06861336529254913, 0.010941380634903908, 0.011096461676061153,
- -0.007684399839490652, 0.06297779083251953, -0.043919287621974945,
- -0.023503119125962257, 0.10754131525754929, 0.10209502279758453, 0.05908036231994629,
- -0.028041522949934006, 12.064140319824219, 0.038948625326156616, 0.07036962360143661,
- -0.09156932681798935, 0.003319328650832176, -0.04761398956179619, 0.014927905984222889,
- -0.11032158136367798, 0.07523910701274872, 0.13013699650764465, -0.0032204340677708387,
- -0.03647463023662567, -0.018716448917984962, -0.11076561361551285, 0.024710357189178467,
- -0.04888094961643219, -0.05255088210105896, -0.03836977854371071, 0.06969965249300003,
- -0.04155026748776436, -0.048268187791109085, 0.10789556801319122, 0.09413876384496689,
- 0.030521921813488007, -0.06521108746528625, 0.004715828225016594,
- -0.0015605548396706581, 0.007880539633333683, 0.006998596712946892, 0.03324959799647331,
- 0.03019072487950325, 0.02903866581618786, 0.08379535377025604, -0.004663975443691015,
- 0.01839284598827362, 0.02860194630920887, 0.05413515493273735, 0.04459721967577934,
- 0.025397438555955887, 0.05680851265788078, 0.007352280430495739, -0.006386724300682545,
- 0.015828292816877365, 0.04335949569940567, 0.06940500438213348, 0.03574582561850548,
- 0.05793105438351631, 0.11192912608385086, 0.002773558022454381, 0.08343140035867691,
- 0.08423926681280136, -0.005104833748191595, 0.09496204555034637, 0.022315040230751038,
- -0.017596276476979256, 0.0756697878241539, -0.0016847187653183937, -0.08548161387443542,
- 0.10766547918319702, 0.06615104526281357, -0.05571991950273514, 0.09428559988737106,
- 0.025531556457281113, 0.11161942780017853, 0.004191532265394926, 0.03936221823096275,
- 0.05486508086323738, 0.09787718951702118, -0.04972730949521065, -0.09122072160243988,
- 0.02845367230474949, -0.08350451290607452, -0.08588452637195587, 0.06366239488124847,
- 0.1002051830291748, -0.04748046025633812, 0.030003907158970833, -0.03353751823306084,
- 0.05128693953156471, -0.04477585479617119, 0.02191249653697014, 0.057590048760175705,
- -0.035407062619924545, 0.045537520200014114, 0.011927267536520958, 0.03547365963459015,
- 0.05370063707232475, 0.12370523065328598, 0.0428348146378994, -0.07145709544420242,
- -0.06771117448806763, 0.12110807746648788, -0.0011427750578150153,
- -0.038944900035858154, -0.004431302659213543, -0.06479911506175995, 0.03982936963438988,
- -0.16695792973041534, 0.0773366391658783, 0.13261346518993378, -0.0750012919306755,
- -0.03898349404335022, -0.01545354351401329, 0.05879897624254227, -0.017998656257987022,
- 0.023920798674225807, -0.054327551275491714, 0.00832048337906599, 0.029410580173134804,
- 0.0449722483754158, -0.04455948248505592, 0.03392600268125534, 0.09774241596460342,
- -0.06150958687067032, -0.000894318160135299, 0.05743364244699478, -0.04138725996017456,
- -0.013412181288003922, 0.04882221668958664, 0.0414850227534771, -0.06557672470808029,
- -0.03920597955584526, -0.041679952293634415, -0.043534792959690094,
- 0.017588259652256966, -0.06667180359363556, 0.009010400623083115, 0.03228571265935898,
- -0.007774682715535164, -0.033379536122083664, 0.06999120861291885, 0.07108759135007858,
- 0.07088827341794968, -0.0018636364256963134, 0.06002843752503395, -0.04255341738462448,
- -0.025993062183260918, 0.03810565546154976, 0.07229965180158615, 0.09471757709980011,
- -0.08781692385673523, -0.05635613575577736, -0.024587055668234825, -0.1301197111606598,
- 0.01413040142506361, 0.08475503325462341, 0.053354132920503616, 0.03275011107325554,
- 0.015553826466202736, -0.11321059614419937, -0.02608902007341385, 0.07480845600366592,
- 0.015959111973643303, -0.0029950665775686502, 0.05754007026553154, -0.05098409578204155,
- -0.02472575008869171, 0.07983481138944626, -0.026786984875798225,
- -0.0007009284454397857, -0.004638282116502523, -0.10185132920742035,
- 0.13001780211925507, 0.07933131605386734, 0.049523286521434784, -0.0024745881091803312,
- 0.009128975681960583, 0.008906855247914791, 0.0708199292421341, 0.009738590568304062,
- 0.0254683755338192, -0.014787716791033745, -0.11352711915969849, -0.07984300702810287,
- 0.04399155080318451, 0.07817652076482773, 0.07057195901870728, -0.12713386118412018,
- -0.02344542182981968, -0.025432128459215164
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 60,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 16,
- "similarity": 0.9992568492889404
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 53,
- "similarity": 0.9991983771324158
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 6,
- "similarity": 0.999081552028656
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Elena Cresci"],
- "epoch_date_downloaded": 1605398400,
- "epoch_date_modified": 1607299200,
- "epoch_date_submitted": 1607299200,
- "flag": null,
- "report_number": 1344,
- "source_domain": "theguardian.com",
- "submitters": ["AIAAIC", "Thomas Giallella (CSET)"],
- "title": "FaceApp apologises for 'racist' filter that lightens users' skintone",
- "url": "https://www.theguardian.com/technology/2017/apr/25/faceapp-apologises-for-racist-filter-which-lightens-users-skintone"
- },
- {
- "__typename": "Report",
- "authors": ["Aatif Sulleyman"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1122,
- "source_domain": "independent.co.uk",
- "submitters": ["Roman Yampolskiy"],
- "title": "'Racist' FaceApp photo filters encouraged users to black up",
- "url": "https://www.independent.co.uk/life-style/gadgets-and-tech/news/faceapp-race-photo-filters-racist-black-asian-indian-caucasian-ethnic-remove-iphone-a7885796.html"
- },
- {
- "__typename": "Report",
- "authors": ["Blake Montgomery"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1121,
- "source_domain": "buzzfeednews.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "FaceApp Introduced Blackface And Yellowface Selfie Filters, Then Removed Them A Few Hours Later",
- "url": "https://www.buzzfeednews.com/article/blakemontgomery/faceapp-is-at-it-again-with-racial-selfie-filters"
- },
- {
- "__typename": "Report",
- "authors": ["Megan Friedman"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1120,
- "source_domain": "cosmopolitan.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "FaceApp Ethnicity Filters Make You Look Like a Different Race",
- "url": "https://www.cosmopolitan.com/lifestyle/a11660672/faceapp-ethnicity-filters-blackface/"
- },
- {
- "__typename": "Report",
- "authors": ["James Vincent"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1119,
- "source_domain": "theverge.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Popular face-aging app now offers ‘Black,’ ‘Indian,’ and ‘Asian’ filters",
- "url": "https://www.theverge.com/2017/8/9/16119296/selfie-editor-faceapp-racial-filters"
- },
- {
- "__typename": "Report",
- "authors": ["Sarah Emerson"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1118,
- "source_domain": "motherboard.vice.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "That Viral 'FaceApp' Is Making Everyone Look Whiter",
- "url": "https://motherboard.vice.com/en_us/article/qkqwxp/that-viral-faceapp-is-making-everyone-look-whiter"
- },
- {
- "__typename": "Report",
- "authors": [
- "Kaleigh Fasanella",
- "Marci Robin",
- "Rf Jurjevics",
- "Leah Prinzivalli",
- "Zoe Weine"
- ],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1117,
- "source_domain": "allure.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "FaceApp Is Being Called \"Racist\" Again for Featuring Problematic Filters",
- "url": "https://www.allure.com/story/faceapp-racist-filters"
- },
- {
- "__typename": "Report",
- "authors": ["Shona Ghosh"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1113,
- "source_domain": "businessinsider.com.au",
- "submitters": ["Roman Yampolskiy"],
- "title": "How popular smartphones make your skin look 'whiter' in selfies",
- "url": "https://www.businessinsider.com.au/samsung-huawei-smartphone-beauty-filters-whiten-your-skin-2017-8?r=US\u0026IR=T"
- },
- {
- "__typename": "Report",
- "authors": ["Sushant Talwar"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1112,
- "source_domain": "dailyo.in",
- "submitters": ["Roman Yampolskiy"],
- "title": "FaceApp's Indian and Black photo filters are quite obviously racist",
- "url": "https://www.dailyo.in/technology/faceapp-racism-indian-photo-filter-racial-stereotype/story/1/18870.html"
- },
- {
- "__typename": "Report",
- "authors": ["Lara Rutherford-Morrison"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1110,
- "source_domain": "bustle.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "How Does FaceApp Work? Here's How You Can Get In On The Viral Face Mashing Trend",
- "url": "https://www.bustle.com/p/how-does-faceapp-work-heres-how-you-can-get-in-on-the-viral-face-mashing-trend-55442"
- },
- {
- "__typename": "Report",
- "authors": ["Samantha Grasso"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1109,
- "source_domain": "dailydot.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "FaceApp CEO Apologizes For Whitening Skin With 'Hot' Filter",
- "url": "https://www.dailydot.com/irl/faceapp-apology-hot-filter-whitening-racism/"
- },
- {
- "__typename": "Report",
- "authors": ["Jake Sturmer", "Will Ockenden"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1108,
- "source_domain": "abc.net.au",
- "submitters": ["Roman Yampolskiy"],
- "title": "FaceApp: Experts have privacy concerns about popular face transformation app",
- "url": "https://www.abc.net.au/news/2017-04-27/should-you-worry-about-privacy-when-using-faceapp/8476666"
- },
- {
- "__typename": "Report",
- "authors": ["Alex Hern"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1107,
- "source_domain": "theguardian.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "FaceApp forced to pull 'racist' filters that allow 'digital blackface'",
- "url": "https://www.theguardian.com/technology/2017/aug/10/faceapp-forced-to-pull-racist-filters-digital-blackface"
- },
- {
- "__typename": "Report",
- "authors": ["Julia Pimentel"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1106,
- "source_domain": "complex.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "FaceApp Removes Black, Asian, and Indian Filters After Backlash They Should Have Expected",
- "url": "https://www.complex.com/life/2017/08/faceapp-removes-black-asian-indian-filters-after-backlash-they-should-have-expected"
- },
- {
- "__typename": "Report",
- "authors": ["James Whitbrook"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1105,
- "source_domain": "gizmodo.com.au",
- "submitters": ["Roman Yampolskiy"],
- "title": "FaceApp Launches Digital Blackface Options Because The World Is Filled With Idiots",
- "url": "https://www.gizmodo.com.au/2017/08/faceapp-launches-digital-blackface-options-because-the-world-is-filled-with-idiots/"
- },
- {
- "__typename": "Report",
- "authors": ["Alexis Kleinman"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1104,
- "source_domain": "mic.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Photo-editing app FaceApp updates with Asian, Black, Caucasian and Indian filters",
- "url": "https://mic.com/articles/183535/photo-editing-app-faceapp-updates-with-asian-black-caucasian-and-indian-filters#.kFRfdoFw7"
- },
- {
- "__typename": "Report",
- "authors": ["BBC News"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1103,
- "source_domain": "bbc.co.uk",
- "submitters": ["Roman Yampolskiy"],
- "title": "FaceApp sorry for 'racist' filter that lightens skin to make users 'hot'",
- "url": "http://www.bbc.co.uk/newsbeat/article/39702143/faceapp-sorry-for-racist-filter-that-lightens-skin-to-make-users-hot"
- },
- {
- "__typename": "Report",
- "authors": ["Phoebe Weston"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1102,
- "source_domain": "dailymail.co.uk",
- "submitters": ["Roman Yampolskiy"],
- "title": "FaceApp removes 'Ethnicity Filters' after racism storm",
- "url": "https://www.dailymail.co.uk/sciencetech/article-4777954/FaceApp-removes-Ethnicity-Filters-racism-storm.html"
- },
- {
- "__typename": "Report",
- "authors": [
- "Gary Cutlack",
- "Matt Novak",
- "Ryan F. Mandelbaum",
- "Holly Brockwell",
- "Adam Clark Estes"
- ],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1658880000,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1101,
- "source_domain": "gizmodo.co.uk",
- "submitters": ["Roman Yampolskiy"],
- "title": "FaceApp Blames AI for Whitening up Black People",
- "url": "http://www.gizmodo.co.uk/2017/04/faceapp-blames-ai-for-whitening-up-black-people/"
- },
- {
- "__typename": "Report",
- "authors": ["Sameer Rao"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1099,
- "source_domain": "colorlines.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "FaceApp Removes 'Spark' Filter Following Whitewashing Accusations",
- "url": "https://www.colorlines.com/articles/faceapp-removes-spark-filter-following-whitewashing-accusations"
- },
- {
- "__typename": "Report",
- "authors": ["Abby Ohlheiser"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1098,
- "source_domain": "stuff.co.nz",
- "submitters": ["Roman Yampolskiy"],
- "title": "FaceApp releases change-your-race filters",
- "url": "https://www.stuff.co.nz/technology/apps/95629849/faceapp-releases-changeyourrace-filters"
- },
- {
- "__typename": "Report",
- "authors": ["April Glaser"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1097,
- "source_domain": "slate.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "FaceApp briefly let users change their skin color. Bad idea.",
- "url": "https://slate.com/technology/2017/08/faceapp-briefly-let-users-change-their-skin-color-bad-idea.html"
- },
- {
- "__typename": "Report",
- "authors": ["Cara McGoogan"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1096,
- "source_domain": "telegraph.co.uk",
- "submitters": ["Roman Yampolskiy"],
- "title": "FaceApp deletes new black, white and Asian filters after racism storm",
- "url": "https://www.telegraph.co.uk/technology/2017/08/09/faceapp-sparks-racist-backlash-black-white-asian-filters/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "individual-kaggle-competitors",
- "name": "Individual Kaggle Competitors"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "individual-kaggle-competitors",
- "name": "Individual Kaggle Competitors"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "individual-kaggle-competitors",
- "name": "Individual Kaggle Competitors"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1132],
- "vector": [
- -0.07979937642812729, 0.069302499294281, 0.01373676210641861, -0.05438252538442612,
- 0.06335332244634628, 0.029859595000743866, -0.015279937535524368, 0.11210601776838303,
- 0.1049947738647461, -0.12388026714324951, -0.006694735027849674, 0.06971485912799835,
- 0.01641092076897621, -0.10632185637950897, -0.010529235005378723, -0.0917278602719307,
- -0.09381348639726639, 0.023889577016234398, -0.044893596321344376, -0.17471176385879517,
- -0.09119042754173279, 0.0040418533608317375, 0.05289538949728012, 0.08597403019666672,
- -0.004797076806426048, 0.03073502890765667, 0.08422855287790298, 0.14332197606563568,
- -0.14729426801204681, 0.06043275073170662, -0.04427668824791908, -0.028844982385635376,
- 0.13971233367919922, 0.008588087745010853, 0.010539049282670021, 0.12904484570026398,
- -0.005988909397274256, -0.013450326398015022, -0.09033513069152832,
- -0.01676969788968563, 0.11849701404571533, 0.19338946044445038, -0.0018212643917649984,
- -0.04252045974135399, 0.06779930740594864, -0.05700754001736641, 0.008664814755320549,
- -0.019616175442934036, 0.059760745614767075, 0.032663535326719284, -0.00388801796361804,
- -0.00640689954161644, -0.04936647415161133, -0.0024576045107096434, -0.1116631031036377,
- 0.07819120585918427, 0.054651252925395966, -0.05137808248400688, 0.042900972068309784,
- -0.0727478489279747, -0.02888072282075882, -0.16642813384532928, -0.08250953257083893,
- -0.07559023797512054, 0.06891240179538727, -0.10325779765844345, -0.044344015419483185,
- 0.03327218443155289, 0.034025032073259354, 0.02690437063574791, 0.024069203063845634,
- 0.01324158813804388, -0.024914907291531563, 0.011971728876233101, -0.017762256786227226,
- -0.03937578201293945, 0.00012206852989038453, 0.2872953712940216, -0.1293276846408844,
- -0.006568219978362322, 0.09581423550844193, -0.10421135276556015, 0.36486950516700745,
- -0.0562673844397068, -0.0019081170903518796, -0.004963808227330446, 0.15024277567863464,
- 0.031155411154031754, 0.05782207101583481, 0.03367599472403526, -0.01055136602371931,
- 0.048436008393764496, -0.099849633872509, -0.04437115043401718, 0.0574481301009655,
- 0.025973469018936157, 0.03384481742978096, -0.10071045160293579, 0.011801880784332752,
- -0.008132853545248508, -0.021034685894846916, -0.04938352853059769, 0.11473467946052551,
- 0.07020353525876999, -0.062764972448349, 0.012137454934418201, 0.0907394140958786,
- 0.002050869632512331, 0.10055606067180634, -0.02424081228673458, 0.049053240567445755,
- -0.001973627367988229, 0.07152792066335678, -0.004519870970398188, 0.011721232905983925,
- 0.006216858979314566, 0.03344857692718506, 0.03872216120362282, 0.09643738716840744,
- 0.10558203607797623, -0.043447766453027725, 0.04280513525009155, 0.025207720696926117,
- -0.09418784826993942, -0.09698471426963806, -0.01745816506445408, -0.0595831498503685,
- -0.005419901572167873, 0.007473779376596212, 0.00448504276573658, -0.049790460616350174,
- -0.28260499238967896, -0.020494680851697922, 0.04324987158179283, -0.028079364448785782,
- -0.05789559334516525, 0.002271852921694517, -0.12729975581169128, 0.07537266612052917,
- -0.052922870963811874, 0.01046392135322094, 0.07793087512254715, 0.01721362955868244,
- 0.0232408344745636, 0.07536745071411133, 0.059864770621061325, -0.0570930652320385,
- -0.05659401789307594, 0.028831614181399345, -0.07951674610376358, 0.07694962620735168,
- -0.14042925834655762, -0.07460334151983261, 0.0010872591519728303, 0.021784359589219093,
- 0.6288643479347229, 0.11839272081851959, 0.18643949925899506, -0.033446304500103,
- 0.023427918553352356, 0.13570858538150787, -0.03548397123813629, 0.03289290890097618,
- -0.03771141171455383, -0.02783743105828762, 0.021682625636458397, -0.12177998572587967,
- -0.0431060791015625, 0.033143095672130585, 0.008714509196579456, 0.0696953758597374,
- 0.0012836535461246967, 0.0916464626789093, -0.03835812956094742, -0.09723562002182007,
- -0.005143540445715189, 0.02405019849538803, 0.047093603760004044, -0.15293525159358978,
- -0.03025425225496292, 0.027138955891132355, 0.10386357456445694, -0.07133524119853973,
- 0.045479048043489456, -0.07319870591163635, 0.08474896103143692, -0.010776479728519917,
- 0.06932877749204636, -0.02608533576130867, 0.03316856920719147, 0.07048525661230087,
- 0.05245491862297058, -0.048487041145563126, -0.08478372544050217, 0.022199813276529312,
- 0.0626201182603836, -0.01997130922973156, -0.03437274321913719, 0.12521307170391083,
- -0.08466768264770508, 0.06965787708759308, -0.06156301498413086, 0.15746961534023285,
- -0.20330005884170532, 0.004803611431270838, -0.011499753221869469,
- -0.056025534868240356, 0.07361189275979996, -0.0001151063188444823,
- -0.05936257168650627, -0.034515976905822754, 0.07586660236120224, 0.028909306973218918,
- 0.06284942477941513, 0.032891396433115005, -0.06780460476875305, 0.043527547270059586,
- 0.0953749567270279, 0.019094645977020264, -0.021167630329728127, -0.002838908461853862,
- 0.07007409632205963, -0.026951050385832787, 0.03814401105046272, 0.024279654026031494,
- 0.012251174077391624, 0.03877691552042961, 0.030751783400774002, 0.08529356122016907,
- -0.03600374981760979, -0.0732785165309906, 0.013884867541491985, -0.010198807343840599,
- 0.002201246563345194, 0.07660526782274246, -0.06928407400846481, -0.01304673496633768,
- -0.035982247442007065, 0.009039795026183128, 0.010997002013027668,
- 0.0013754816027358174, 0.07950730621814728, 0.16373752057552338, 0.10956621915102005,
- 0.024388574063777924, 0.029349060729146004, 0.008528785780072212, 0.08586184680461884,
- 0.03657921776175499, 0.057694897055625916, -0.008130035363137722, -0.09054914116859436,
- -0.04785631224513054, -0.01217640470713377, 0.042315639555454254, 0.0340995267033577,
- -0.09110862761735916, -0.04643402248620987, -0.06612379848957062, -0.07201679795980453,
- -0.07425284385681152, -0.04530491679906845, 0.00992663111537695, 0.05048086494207382,
- -0.04695703089237213, -0.04723753407597542, -0.0992419645190239, 0.0006454132380895317,
- 0.10100165754556656, -0.020049376413226128, 0.01555019710212946, -0.1314515620470047,
- 0.016736352816224098, -0.042891521006822586, 0.023346059024333954,
- -0.018382707610726357, -0.0011499713873490691, 0.009789553470909595,
- -0.08135779201984406, 0.0313587486743927, 0.0016405136557295918, -0.04070976749062538,
- -0.04405098780989647, -0.00840854737907648, -0.035249654203653336, 0.011502678506076336,
- -0.0027384937275201082, -0.04669814556837082, 0.03305613994598389, 0.07851045578718185,
- 0.10996711999177933, -0.015402819029986858, -0.08520884811878204, 0.0715375691652298,
- -0.032324694097042084, 0.03062850795686245, 0.12014243006706238, -0.036274343729019165,
- 0.0652933120727539, -0.0012086930219084024, -0.06848175078630447, -0.08548187464475632,
- 0.04385121166706085, -0.04951727017760277, 0.024647416546940804, -0.04119335860013962,
- 0.00043824303429573774, -0.057418402284383774, -0.00657349219545722,
- 0.06144310161471367, -0.03063727542757988, -0.04582522436976433, -0.06269311159849167,
- 0.16059164702892303, -0.014878789894282818, 0.012600415386259556, -0.05599106103181839,
- -0.03501305356621742, 0.02175196446478367, 0.03465007245540619, 0.0007419786998070776,
- -0.014113513752818108, 0.1463305652141571, -0.0477428175508976, 0.031087182462215424,
- 0.07335846871137619, -0.031046727672219276, -0.052778229117393494, 0.1360241025686264,
- 0.46879029273986816, -0.26079705357551575, 0.14808759093284607, 0.10497427731752396,
- -0.011157354339957237, 0.03079603798687458, -0.050335485488176346, 0.03751896694302559,
- 0.061508625745773315, 0.14721988141536713, 0.14824998378753662, -0.020174581557512283,
- -0.030827531591057777, -0.0753481462597847, 0.12820585072040558, -0.03721649944782257,
- 0.006483520846813917, -0.045713406056165695, -0.07353413850069046,
- -0.009079241193830967, 0.07156140357255936, -0.05005645006895065, -0.031754910945892334,
- -0.006275830324739218, -0.10679763555526733, 0.04531575366854668, 0.012177586555480957,
- 0.03927469626069069, 0.014785848557949066, 0.025449702516198158, -0.04425942152738571,
- -0.013881975784897804, 0.12639176845550537, 0.016970425844192505, -0.10949151962995529,
- -0.008491737768054008, -0.08182390034198761, -0.1249639242887497, 0.10807523131370544,
- 0.008651978336274624, 0.03609228879213333, 0.0904821902513504, -0.07532279938459396,
- 0.060018375515937805, -0.02004525437951088, -0.004998920951038599, 0.04231995716691017,
- 0.03662670776247978, -0.03836312144994736, 0.05509347841143608, 0.14639617502689362,
- -0.01252290140837431, -0.020712729543447495, -0.10447642207145691, 0.06033657118678093,
- 0.11804794520139694, -0.07147439569234848, 0.023047370836138725, -0.0019265500595793128,
- 0.05430551618337631, -0.005077882204204798, -0.08674941956996918, -0.07509008795022964,
- 0.02310522086918354, -0.11011086404323578, 0.1274360716342926, 0.08183641731739044,
- -0.059828873723745346, -0.12484254688024521, -0.00834546610713005, -0.03274428844451904,
- -0.0035850650165230036, 0.15523234009742737, -0.08483724296092987, 0.04784693568944931,
- -0.0893654078245163, 0.023258689790964127, 0.040679723024368286, -0.06285524368286133,
- -0.03559496998786926, -0.13155363500118256, 0.05167707800865173, 0.09928897768259048,
- 0.05311990901827812, -0.09068290144205093, 0.1293405145406723, -0.13296698033809662,
- 0.007917480543255806, -0.022959362715482712, -0.08348574489355087, 0.06608404964208603,
- -0.04804036766290665, 0.05407489463686943, 0.019297417253255844, -0.03024248778820038,
- 0.07595676183700562, -0.050168927758932114, 0.012926289811730385, -0.06668523699045181,
- -0.08922072499990463, -0.04275503382086754, -0.08950726687908173, 0.09042385220527649,
- -0.06617365032434464, 0.010099864564836025, 0.013358349911868572, -0.012171835638582706,
- -0.0006081520114094019, 0.025937888771295547, 0.012516212649643421,
- -0.10359396040439606, -0.008508991450071335, -0.05879577249288559, 0.01716264896094799,
- 0.0299965962767601, -0.08671265840530396, -0.01384646724909544, 0.05153000354766846,
- 0.05245085805654526, -0.04797619953751564, -0.002534668892621994, -0.06277409940958023,
- 0.08559781312942505, -0.16124731302261353, -0.4480895698070526, -0.014023253694176674,
- 0.03006597049534321, -0.002766593359410763, 0.014402071014046669, -0.03806205093860626,
- 0.037140682339668274, 0.00792997982352972, -0.04664446413516998, 0.1336338222026825,
- -0.07901281863451004, -0.03237466886639595, -0.10831624269485474, -0.08557772636413574,
- 0.027742482721805573, -0.06026887893676758, -0.004416686948388815, 0.06970052421092987,
- 0.009969552978873253, -0.1065727099776268, -0.054615821689367294, 0.06250513345003128,
- 0.0032639612909406424, -0.0029562534764409065, -0.03207689896225929,
- 0.0059560323134064674, -0.026907581835985184, -0.0017275424906983972,
- 0.02851499803364277, 0.05701105669140816, 0.04749235510826111, -0.08845627307891846,
- -0.0032558843959122896, 0.04872233048081398, 0.013715623877942562, 0.1254023164510727,
- -0.007273687049746513, -0.04921112582087517, -0.09639281034469604, 0.10668662935495377,
- 0.037738971412181854, 0.1838047355413437, -0.01947169005870819, 0.05392419919371605,
- -0.004760258365422487, 0.09224114567041397, 0.03281009942293167, 0.04803353548049927,
- -0.03840634599328041, -0.05104829743504524, 0.061188798397779465, -0.01357344351708889,
- 0.10378073155879974, -0.09052235633134842, -0.046516455709934235, 0.029937157407402992,
- -0.03899989649653435, -0.09095016121864319, -0.04920481517910957, 0.24040479958057404,
- 0.047123558819293976, -0.013027887791395187, 0.015011337585747242,
- -0.0037374224048107862, 0.01332009956240654, -0.1698145568370819, 0.015239197760820389,
- -0.013464292511343956, -0.01282768789678812, -0.0003058449656236917,
- -0.021328650414943695, -0.11027368158102036, -0.061791881918907166,
- 0.018194522708654404, -0.014571798034012318, 0.07526607066392899, -0.05436640977859497,
- -0.01817944645881653, -0.09544141590595245, 0.18589851260185242, 0.02700132317841053,
- 0.016572432592511177, -0.0159177053719759, 0.023374153301119804, 0.0036381185054779053,
- -0.005505783017724752, -0.022763419896364212, -0.06929168850183487,
- 0.059324536472558975, 0.13188445568084717, -0.009679026901721954, 0.15585656464099884,
- 0.06541819870471954, 0.011368618346750736, -0.06889732927083969, 0.05398518964648247,
- 0.012035321444272995, 0.025934750214219093, -0.4572793245315552, -0.017406664788722992,
- 0.13496141135692596, 0.01419751811772585, 0.02442263439297676, 0.12381821125745773,
- 0.053023237735033035, -0.07072985917329788, 0.010499441996216774, -0.12870629131793976,
- 0.20997467637062073, 0.02676808089017868, 0.06068582087755203, -0.12372897565364838,
- -0.02875591441988945, 0.08919336646795273, -0.006306877825409174, 0.01057493221014738,
- 0.06489600986242294, -0.2084639072418213, -0.01530519500374794, -0.04918486252427101,
- 0.1557823121547699, -0.009691430255770683, 0.06619156897068024, 0.07740738242864609,
- -0.017612561583518982, -0.026732774451375008, 0.05862416326999664, 0.020371926948428154,
- 0.06814455986022949, -0.039761871099472046, -0.04022783413529396, 0.0896100178360939,
- 0.07658124715089798, 0.09481091052293777, 0.010137024335563183, 12.107816696166992,
- 0.07465013861656189, 0.09895183891057968, -0.073374904692173, -0.06319432705640793,
- -0.04784043878316879, 0.04445512965321541, -0.13791723549365997, 0.07053843140602112,
- 0.11396807432174683, -0.03311517834663391, -0.06022445484995842, -0.01840052753686905,
- -0.12518341839313507, 0.02579057216644287, 0.014049540273845196, -0.05936930701136589,
- 0.03892810642719269, 0.012497924268245697, -0.057395439594984055, -0.06706629693508148,
- 0.1077466830611229, 0.07626869529485703, -0.006856454536318779, -0.034354645758867264,
- 0.02590337023139, 0.04757083207368851, 0.01056649349629879, 0.008423359133303165,
- 0.08604676276445389, -0.014798137359321117, 0.08511359244585037, 0.03696285933256149,
- -0.02737121470272541, 0.07761409878730774, 0.08585762232542038, 0.06860928237438202,
- 0.036916010081768036, 0.03132818639278412, 0.04739323630928993, 0.01474845688790083,
- 0.05963946878910065, 0.026438353583216667, -0.016273388639092445, 0.06443294882774353,
- 0.014989104121923447, 0.0018520092125982046, 0.1535138636827469, -0.008675068616867065,
- 0.02213112823665142, 0.1084369495511055, 0.03210058435797691, 0.10665655136108398,
- 0.0726858451962471, -0.0006470045773312449, 0.06590133160352707, -0.024485215544700623,
- -0.10649526864290237, 0.09985867887735367, 0.016621004790067673, -0.05210926756262779,
- 0.18750813603401184, 0.04147791117429733, 0.12166924774646759, 0.023197300732135773,
- 0.07925961166620255, 0.11506866663694382, 0.061571452766656876, -0.13872528076171875,
- -0.05061407387256622, 0.024274347350001335, -0.10261458903551102, -0.07524209469556808,
- 0.07566968351602554, 0.0870499387383461, -0.043845124542713165, -0.018391119316220284,
- -0.06150658801198006, 0.06348442286252975, -0.022558696568012238, 0.015088972635567188,
- 0.048581406474113464, -0.06676322966814041, 0.029959112405776978, 0.05810435488820076,
- 0.05411950498819351, 0.13671855628490448, 0.07632052898406982, -0.023013558238744736,
- -0.07873638719320297, -0.04694642499089241, 0.09067848324775696, -0.04967042803764343,
- -0.0823424905538559, 0.04584075137972832, -0.029125547036528587, 0.11348020285367966,
- -0.23972399532794952, 0.11498577892780304, 0.08153470605611801, -0.07864368706941605,
- -0.049907784909009933, -0.018978826701641083, 0.06084622070193291, 0.041898783296346664,
- 0.12022289633750916, -0.04331904649734497, 0.0410703606903553, 0.02862461283802986,
- 0.03742906078696251, -0.05386840179562569, 0.05568213760852814, 0.09371821582317352,
- -0.06474335491657257, 0.020798087120056152, 0.04083256423473358, -0.014590680599212646,
- -0.023289687931537628, 0.02658938243985176, 0.02171553112566471, -0.08298765867948532,
- -0.003972318023443222, -0.07447511702775955, -0.016366001218557358, -0.0361931137740612,
- -0.08047325164079666, -0.009400427341461182, 0.007623651064932346, -0.0110950767993927,
- -0.008030992932617664, 0.04511886090040207, 0.10662072896957397, 0.07068213075399399,
- -0.0557011216878891, -0.024012664332985878, -0.0945209488272667, -0.09041622281074524,
- 0.03561751917004585, 0.02636033669114113, 0.05269129201769829, -0.09628106653690338,
- -0.02755698934197426, -0.07111972570419312, -0.10944528877735138, -0.008494348265230656,
- 0.12011615931987762, 0.07387493550777435, 0.11226861923933029, 0.008362098596990108,
- -0.022833356633782387, -0.04944879189133644, 0.03729847073554993, 0.00994417816400528,
- 0.025004899129271507, 0.019297687336802483, -0.040092833340168, -0.03400686755776405,
- 0.08585333079099655, -0.0370866060256958, -0.01783485896885395, -0.03870144486427307,
- -0.04005510360002518, 0.10969999432563782, 0.09055884182453156, 0.033121246844530106,
- 0.007968444377183914, 0.07519622892141342, -0.02288997173309326, -0.00368643831461668,
- 0.01822848431766033, 0.06746728718280792, -0.04085715487599373, -0.05987327918410301,
- -0.03441709652543068, 0.06735123693943024, 0.09177443385124207, 0.08953020721673965,
- -0.10020730644464493, -0.01435547973960638, -0.007417466025799513
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 61,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 50,
- "similarity": 0.9976888298988342
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 41,
- "similarity": 0.9976789355278015
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 13,
- "similarity": 0.9976438283920288
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Gidi Shperber"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1132,
- "source_domain": "medium.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "What I’ve learned from Kaggle’s fisheries competition",
- "url": "https://medium.com/@gidishperber/what-ive-learned-from-kaggle-s-fisheries-competition-92342f9ca779"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "janelle-shane",
- "name": "Janelle Shane"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "janelle-shane",
- "name": "Janelle Shane"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "carollers",
- "name": "Carollers"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1766, 1133],
- "vector": [
- -0.05819641053676605, 0.059069473296403885, 0.004612923599779606, -0.07843202352523804,
- 0.0995028167963028, -0.05684422329068184, 0.013881867751479149, 0.06147795170545578,
- 0.06828052550554276, -0.11583616584539413, 0.006430837791413069, 0.06624353677034378,
- 0.033591341227293015, -0.0724882036447525, 0.04544965922832489, -0.037363722920417786,
- -0.07364211231470108, -0.019444862380623817, -0.004526508040726185,
- -0.10549628734588623, -0.09209461510181427, -0.014607169665396214,
- -0.006751534529030323, 0.10049174726009369, -0.04100216552615166, 0.008956626057624817,
- 0.08594785630702972, 0.08727511763572693, -0.04307792708277702, 0.028332188725471497,
- -0.03590082377195358, -0.0660480409860611, 0.10738344490528107, -0.011141599155962467,
- 0.013352462090551853, 0.07348356395959854, 0.0492682158946991, -0.011374843306839466,
- -0.06993182748556137, -0.022667421028017998, 0.016587715595960617, 0.1589115411043167,
- -0.017964400351047516, -0.006756133399903774, 0.056800827383995056,
- 0.018868448212742805, 0.02903115749359131, 0.0260325875133276, -0.013578314334154129,
- 0.027948981150984764, 0.016495125368237495, -0.0026110075414180756,
- -0.019155370071530342, 0.010168622247874737, -0.04228069633245468, 0.05852603167295456,
- 0.03011772781610489, 0.05516666918992996, 0.06893730163574219, -0.03345382213592529,
- 0.002241292502731085, -0.05122258514165878, -0.0566970631480217, -0.04155769944190979,
- 0.0890512615442276, -0.07522957026958466, -0.02529541403055191, 0.02424740605056286,
- 0.01654890924692154, 0.034609995782375336, 0.052867211401462555, -0.051469601690769196,
- -0.01907605305314064, -0.022253282368183136, -0.04999537765979767,
- -0.0040778592228889465, 0.01702318713068962, 0.21648472547531128, -0.08484011888504028,
- 0.033507831394672394, 0.11039228737354279, -0.06912287324666977, 0.21182438731193542,
- 0.03061354160308838, 0.01651967316865921, -0.009645337238907814, 0.07633684575557709,
- 0.025721989572048187, 0.022444728761911392, 0.03472904488444328, 0.019653435796499252,
- 0.059071704745292664, -0.023285869508981705, 0.011080428957939148, 0.03820648044347763,
- 0.027417577803134918, -0.009784449823200703, -0.09711191058158875, -0.01717047579586506,
- -0.06365462392568588, 0.013086842373013496, -0.04915239289402962, 0.10831329226493835,
- 0.061209842562675476, -0.031923480331897736, 0.031761761754751205, 0.048256758600473404,
- -0.028321247547864914, 0.05674261599779129, -0.024768533185124397, 0.022469835355877876,
- 0.023078059777617455, 0.03347368538379669, 0.0020435620099306107, 0.016052905470132828,
- -0.031816937029361725, 0.028613761067390442, 0.049115948379039764, 0.03466089069843292,
- 0.061363086104393005, -0.004458632320165634, 0.05148341506719589, 0.08648063242435455,
- -0.05167858302593231, -0.030970217660069466, 0.039777971804142, -0.002679073251783848,
- -0.001483236439526081, -0.03896204009652138, 0.047156527638435364,
- -0.023960378021001816, -0.15625186264514923, 0.028127480298280716, 0.007764482405036688,
- -0.0017872960306704044, -0.020529288798570633, 0.030030425637960434,
- -0.026234064251184464, 0.02131706289947033, -0.004214509390294552,
- -0.005506276153028011, 0.04491521045565605, 0.047741539776325226, 0.035131461918354034,
- 0.07998006790876389, 0.00221847603097558, -0.025446318089962006, -0.054378971457481384,
- -0.034463297575712204, -0.041928935796022415, 0.08137086033821106, -0.07230216264724731,
- -0.033197056502103806, 0.0067341807298362255, -0.006633835379034281, 0.5712831020355225,
- 0.06549669802188873, 0.1075594425201416, -0.006878596264868975, 0.018204811960458755,
- 0.13173158466815948, -0.02469034120440483, 0.026675228029489517, -0.020721497014164925,
- -0.017939282581210136, 0.016323575749993324, -0.05004209652543068, 0.01194879598915577,
- 0.011515649035573006, 0.034910134971141815, 0.07192520052194595, 0.017935659736394882,
- 0.050413601100444794, -0.019656475633382797, -0.05858387053012848,
- -0.024513131007552147, -0.04902477562427521, 0.010222956538200378, -0.10072129964828491,
- -0.02150789089500904, 0.040135230869054794, 0.049759961664676666, -0.03015756979584694,
- -0.012715856544673443, -0.04757126793265343, 0.04296090826392174, -0.017761388793587685,
- 0.01899515837430954, 0.006350311450660229, -0.010119300335645676, 0.04681788757443428,
- 0.04496392607688904, -0.024445772171020508, -0.03762679174542427, 0.018379556015133858,
- 0.08813387155532837, 0.0012860980350524187, -0.024529386311769485, 0.08240950107574463,
- -0.06622761487960815, 0.034835945814847946, -0.04822765290737152, 0.1224883496761322,
- -0.09680605679750443, 0.07444238662719727, -0.010800190269947052, 0.007810545153915882,
- 0.01821930706501007, -0.0012174883158877492, -0.06037828326225281,
- -0.053781695663928986, 0.08932018280029297, 0.015362945385277271, 0.06656275689601898,
- 0.024514973163604736, -0.021960994228720665, 0.02829206921160221, 0.04306536912918091,
- -0.020783502608537674, -0.05271708965301514, 0.06971582025289536, 0.03847580403089523,
- -0.04024456813931465, -0.014540838077664375, -0.0036116549745202065,
- -0.020793406292796135, 0.05184170603752136, 0.025491971522569656, 0.009973477572202682,
- 0.00946358684450388, -0.013449665158987045, 0.0486927255988121, 0.03681286424398422,
- 0.04614820331335068, 0.059286199510097504, -0.08750491589307785, -0.030957449227571487,
- -0.04770363122224808, -0.01394803635776043, -0.024303849786520004, -0.10203173011541367,
- 0.0559045672416687, 0.05293017998337746, 0.05195330083370209, 0.02251829206943512,
- 0.019144659861922264, 0.033246394246816635, 0.054018933326005936, 0.0009485053597018123,
- 0.025584358721971512, -0.028955476358532906, 0.009473368525505066, -0.04328656941652298,
- -0.007955187000334263, 0.016852229833602905, -0.0039147562347352505,
- -0.060713671147823334, -0.04419906437397003, -0.046547211706638336,
- -0.009510064497590065, -0.0586068257689476, -0.04521298035979271, 0.0130357900634408,
- 0.015260357409715652, -0.07727168500423431, -0.11812035739421844, -0.05018964037299156,
- 0.027423329651355743, 0.031143616884946823, -0.024868501350283623,
- -0.010308518074452877, -0.08347904682159424, 0.027682606130838394,
- -0.005007577128708363, 0.03185246139764786, 0.03192029893398285, -0.018023690208792686,
- -0.0458483062684536, -0.08781702071428299, -0.0007852544076740742, 0.016882743686437607,
- -0.034491926431655884, -0.031229794025421143, -0.05141979083418846,
- -0.04124356061220169, 0.025238998234272003, -0.023540494963526726, -0.03735438361763954,
- 0.035811442881822586, 0.03992411121726036, 0.04653451591730118, -0.01502617821097374,
- -0.005501807201653719, 0.035861290991306305, -0.027932409197092056, 0.01437942311167717,
- 0.05311459302902222, -0.03816770762205124, 0.03441007435321808, -0.025820309296250343,
- -0.07809785008430481, -0.05411013960838318, -0.010345511138439178,
- -0.021729057654738426, 0.06622208654880524, -0.05641750618815422, 0.012294605374336243,
- -0.01708204671740532, -0.007363549899309874, 0.009055200032889843, -0.03772074356675148,
- -0.050138041377067566, -0.07066336274147034, 0.12026415020227432, 0.005983179900795221,
- -0.011364227160811424, 0.019496124237775803, -0.04573386162519455, 0.0765024721622467,
- 0.020132174715399742, 0.015292556025087833, 0.039484113454818726, 0.038328394293785095,
- 0.012146457098424435, 0.026062924414873123, 0.0736313909292221, 0.004520677495747805,
- -0.005007453262805939, 0.050580497831106186, 0.41658228635787964, -0.23185308277606964,
- 0.102384053170681, 0.08531536906957626, 0.045489732176065445, 0.036429744213819504,
- -0.05175354331731796, 0.05210885405540466, 0.033403024077415466, 0.054052844643592834,
- 0.0868326723575592, -0.0172328669577837, -0.0008440946694463491, -0.023641765117645264,
- 0.043127112090587616, 0.023122072219848633, -0.013733497820794582, -0.03126368671655655,
- -0.052044063806533813, -0.011796005070209503, 0.025793882086873055,
- -0.07088033854961395, 0.018343137577176094, -0.006489105056971312, -0.02704208716750145,
- 0.0035893418826162815, 0.0693812444806099, 0.03704702854156494, 0.0029008120764046907,
- 0.012931806966662407, -0.03771846741437912, 0.03446495532989502, 0.04598817974328995,
- 0.025445792824029922, -0.10570532083511353, 0.08056734502315521, -0.07450650632381439,
- -0.08945031464099884, 0.059870027005672455, 0.00394916906952858, 0.05273484066128731,
- 0.02989332377910614, 0.017119016498327255, -0.0015788516029715538, -0.03821687400341034,
- -0.013949851505458355, -0.012553432025015354, 0.043955784291028976,
- 0.024026770144701004, 0.04406691715121269, 0.13063892722129822, 0.013369397260248661,
- -0.021527273580431938, -0.054041579365730286, 0.04726617783308029, 0.08597128093242645,
- -0.03379935398697853, 0.023770388215780258, 0.0006032092496752739, 0.03412586450576782,
- -0.014182081446051598, -0.03433375433087349, -0.07837648689746857, -0.03935184329748154,
- -0.09438854455947876, 0.04541998729109764, 0.034067992120981216, -0.03914569318294525,
- -0.1263565719127655, -0.03956832364201546, -0.07696394622325897, 0.036856770515441895,
- 0.11583191156387329, -0.06510702520608902, 0.009919766336679459, 0.022337375208735466,
- -0.002283375943079591, 0.011226238682866096, -0.05805196240544319,
- 0.0011899915989488363, -0.04242823272943497, 0.03627140074968338, 0.08346636593341827,
- 0.046503957360982895, -0.06801076978445053, 0.04584602266550064, -0.05120186507701874,
- 0.053664885461330414, -0.03261172026395798, -0.04713733121752739, 0.04320016875863075,
- -0.029126370325684547, 0.037477172911167145, 0.00913596898317337, -0.02817758545279503,
- -0.017237402498722076, -0.04182567819952965, -0.04581793025135994, -0.08010958135128021,
- -0.09565411508083344, -0.021909544244408607, -0.03202606737613678, 0.06497304886579514,
- -0.028344396501779556, 0.0046436903066933155, -0.03806822746992111,
- -0.026785874739289284, 0.0005285656079649925, 0.02730615623295307, -0.03398693725466728,
- -0.08721204102039337, -0.018122036010026932, -0.019512329250574112,
- 0.016327250748872757, -0.010241908021271229, -0.05563811585307121, -0.00407283054664731,
- 0.08870892226696014, 0.0130558917298913, -0.07010497152805328, 0.012955480255186558,
- -0.03399816155433655, 0.07680650055408478, -0.08117835968732834, -0.5009273886680603,
- 0.07651874423027039, 0.07378984987735748, 0.0212702639400959, 0.0037736259400844574,
- -0.05540359020233154, 0.01632021926343441, 0.012625424191355705, 0.028306301683187485,
- 0.02677224576473236, -0.05669233202934265, 0.02812580205500126, -0.027734175324440002,
- -0.03205779567360878, 0.009175245650112629, -0.0508308969438076, 0.0013523248489946127,
- 0.01936650276184082, -0.017889292910695076, -0.02955753728747368, -0.05436567962169647,
- 0.011587357148528099, -0.02528088539838791, -0.017962690442800522,
- -0.013845782727003098, 0.0035990807227790356, -0.05327968671917915,
- -0.06447415053844452, 0.021764183416962624, 0.060944851487874985, 0.012898316606879234,
- -0.06159694120287895, 0.0040480694733560085, 0.004227424971759319,
- 0.0005388704012148082, 0.08325962722301483, 0.020338281989097595, -0.012483770959079266,
- -0.072089284658432, 0.013865489512681961, 0.0667286068201065, 0.1921653151512146,
- -0.002636061981320381, 0.06117793172597885, -0.00330527126789093, 0.08395537734031677,
- 0.002862555906176567, 0.0217250045388937, -0.02034367248415947, 0.028082722797989845,
- 0.043116457760334015, -0.02407107874751091, 0.06144796311855316, -0.06077655404806137,
- -0.027023226022720337, -0.013545475900173187, -0.014947237446904182,
- -0.033428482711315155, -0.0022503763902932405, 0.160298153758049, 0.01362263597548008,
- 0.030845321714878082, 0.015352632850408554, -0.015993792563676834,
- -0.014494437724351883, -0.05632074177265167, -0.035876598209142685,
- -0.057069502770900726, -0.0000443505123257637, 0.007159078028053045,
- -0.02001260221004486, -0.06702534854412079, -0.021049559116363525, 0.009761943481862545,
- -0.0010878830216825008, 0.09305191785097122, -0.041161809116601944,
- -0.0034194448962807655, -0.0200984887778759, 0.09895303845405579, 0.0004316912963986397,
- 0.024476218968629837, 0.040682122111320496, 0.06062893196940422, 0.03352325037121773,
- -0.0021064812317490578, -0.03474655747413635, -0.04427264258265495,
- -0.011712227948009968, 0.15362250804901123, -0.00112659961450845, 0.10500048846006393,
- 0.045013487339019775, 0.03230355679988861, -0.021856026723980904, 0.0325736440718174,
- 0.035016030073165894, -0.0017810706049203873, -0.49764710664749146,
- -0.04756074771285057, 0.08736184239387512, 0.009858026169240475, 0.020773425698280334,
- 0.05517012998461723, 0.011522430926561356, -0.031651366502046585, 0.029301108792424202,
- -0.05025295168161392, 0.026344120502471924, 0.02192801982164383, 0.06950047612190247,
- -0.09856261312961578, 0.038536712527275085, 0.05683433637022972, -0.010467610321938992,
- -0.032500557601451874, 0.04755724221467972, -0.20872032642364502, 0.00966594647616148,
- -0.032299697399139404, 0.1550242006778717, 0.03207654878497124, 0.024182982742786407,
- 0.09913872182369232, -0.03255362808704376, 0.0482894703745842, 0.06361749768257141,
- 0.07103963196277618, 0.07839543372392654, -0.0069422489032149315, -0.021298939362168312,
- 0.07639902830123901, 0.04905889928340912, 0.0789528489112854, 0.03082922101020813,
- 11.656658172607422, -0.003895569359883666, 0.05088893324136734, -0.051747776567935944,
- 0.003881238866597414, -0.05725988373160362, 0.03225764259696007, -0.059316009283065796,
- 0.10079478472471237, 0.11875942349433899, 0.0025041222106665373, -0.0218738354742527,
- -0.045309558510780334, -0.04996466636657715, 0.02959088236093521, -0.05288399010896683,
- -0.04578227549791336, -0.024112742394208908, 0.041847795248031616, -0.03526776656508446,
- -0.02319297380745411, 0.04320179671049118, 0.06530581414699554, -0.02737145684659481,
- -0.05936342477798462, 0.08666525781154633, -0.011335168033838272, 0.009325173683464527,
- 0.010125710628926754, 0.03461049497127533, 0.0003311987966299057, 0.03936973959207535,
- 0.05191748961806297, 0.02771180123090744, 0.030480336397886276, 0.053890153765678406,
- 0.01064662728458643, 0.04427317529916763, 0.04527030885219574, 0.08108946681022644,
- 0.03985809162259102, 0.0037555284798145294, 0.014809698797762394, 0.026737123727798462,
- 0.053316690027713776, 0.06487825512886047, 0.005688421428203583, 0.10539977252483368,
- 0.03572660684585571, 0.04747503995895386, 0.05701398849487305, -0.021448321640491486,
- 0.09179165214300156, 0.006686500273644924, -0.016543162986636162, -0.01372445933520794,
- 0.014879394322633743, -0.061293404549360275, 0.0829191654920578, 0.05751189589500427,
- -0.014350922778248787, 0.0967990830540657, 0.017261866480112076, 0.10149236023426056,
- -0.025526484474539757, 0.050655774772167206, 0.07342362403869629, 0.05851972848176956,
- -0.039869558066129684, -0.011482246220111847, 0.02801356464624405, -0.08452853560447693,
- -0.050872802734375, 0.03417675197124481, 0.023910602554678917, -0.02249116078019142,
- 0.04132840782403946, -0.031215690076351166, 0.055939674377441406, -0.02873852103948593,
- 0.04040045291185379, 0.008432406932115555, -0.07245352864265442, 0.015089149586856365,
- 0.020098919048905373, 0.041879817843437195, 0.021491145715117455, 0.0871574729681015,
- 0.041917845606803894, -0.05636483058333397, -0.05321570485830307, 0.07365309447050095,
- -0.009953116998076439, -0.050342343747615814, 0.0543634295463562, -0.04905683547258377,
- 0.02244771458208561, -0.11483434587717056, 0.06664124131202698, 0.05964605510234833,
- -0.060472648590803146, -0.0055831074714660645, -0.035509638488292694,
- 0.09429249167442322, -0.009350867010653019, 0.025571400299668312, -0.07192066311836243,
- -0.0040926686488091946, 0.022275879979133606, 0.019182423129677773,
- -0.037504471838474274, 0.04405459761619568, 0.04369554668664932, -0.04689275845885277,
- 0.05641743540763855, 0.020860355347394943, -0.01565355621278286, 0.0005517126992344856,
- 0.042036641389131546, 0.033429525792598724, -0.06809653341770172, -0.01490271370857954,
- -0.05061418563127518, -0.021112464368343353, 0.00992290023714304, -0.028985731303691864,
- 0.02123308554291725, -0.008889498189091682, -0.003309907391667366,
- -0.007839036174118519, -0.0008776681497693062, 0.04969218373298645, 0.12962958216667175,
- 0.027106022462248802, 0.05814531072974205, -0.030920222401618958, -0.035443421453237534,
- 0.051678773015737534, 0.05017931014299393, 0.08719119429588318, -0.07335294038057327,
- -0.02749459445476532, -0.02034933865070343, -0.10136786103248596, 0.025288119912147522,
- 0.04600703716278076, 0.053517624735832214, 0.04643990471959114, 0.02340736612677574,
- -0.03216460719704628, -0.0036530988290905952, 0.10118873417377472,
- -0.0030158618465065956, -0.029929425567388535, 0.04357088357210159,
- -0.030805297195911407, 0.0036202133633196354, 0.06583763659000397, -0.03584868088364601,
- -0.027596011757850647, -0.005240946542471647, -0.11847862601280212,
- 0.038924332708120346, 0.04904967546463013, -0.001178471720777452, 0.01249416172504425,
- -0.0018132803961634636, -0.011001117527484894, 0.017482195049524307,
- 0.02835559844970703, 0.01134546846151352, -0.010306201875209808, -0.0788290947675705,
- -0.08416889607906342, 0.01096569187939167, 0.10069988667964935, 0.09355974942445755,
- -0.1425909847021103, -0.02327273227274418, -0.010694455355405807
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 62,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 55,
- "similarity": 0.9980089068412781
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 41,
- "similarity": 0.9979555606842041
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 6,
- "similarity": 0.9979450106620789
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Janelle Shane"],
- "epoch_date_downloaded": 1655942400,
- "epoch_date_modified": 1655856000,
- "epoch_date_submitted": 1655856000,
- "flag": null,
- "report_number": 1766,
- "source_domain": "aiweirdness.com",
- "submitters": ["Sean McGregor"],
- "title": "Christmas Carols, generated by a neural network",
- "url": "https://www.aiweirdness.com/christmas-carols-generated-by-a-neural-17-12-20/"
- },
- {
- "__typename": "Report",
- "authors": ["Monica Chin"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1133,
- "source_domain": "mashable.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "AI still sucks at writing Christmas Carols",
- "url": "https://mashable.com/2017/12/22/ai-tried-to-write-christmas-carols/#mOP3.1zB7aqh"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "google",
- "name": "Google"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "google",
- "name": "Google"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "alex-harker",
- "name": "Alex Harker"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1136],
- "vector": [
- -0.08577049523591995, 0.08785596489906311, -0.01942433975636959, -0.09919468313455582,
- 0.07849501073360443, -0.012730157934129238, -0.0433705635368824, 0.056046176701784134,
- 0.08083011955022812, -0.12461578100919724, 0.05548227205872536, 0.02536546066403389,
- 0.02778738923370838, -0.09435679763555527, 0.04802229627966881, -0.02182174101471901,
- -0.0643504336476326, -0.09092294424772263, 0.007199171930551529, -0.20304763317108154,
- -0.06717239320278168, -0.06984381377696991, 0.058212898671627045, 0.11267044395208359,
- -0.09348629415035248, 0.005820971913635731, 0.11108715087175369, 0.12164996564388275,
- -0.06895102560520172, 0.05231327936053276, -0.06719084829092026, -0.08418397605419159,
- 0.1540449857711792, 0.025384781882166862, 0.051845356822013855, 0.08950395882129669,
- -0.009681085124611855, -0.01290989387780428, -0.0580349937081337, -0.006308983080089092,
- -0.022220786660909653, 0.14073731005191803, 0.022355185821652412, -0.020189892500638962,
- 0.04429677873849869, -0.020367465913295746, 0.032232530415058136, 0.03819451481103897,
- 0.008547017350792885, 0.008712147362530231, -0.036715976893901825, 0.030141528695821762,
- -0.04601307213306427, 0.04421224445104599, -0.11459937691688538, 0.03686090186238289,
- 0.03231038898229599, 0.008904991671442986, 0.03818458318710327, -0.03721442073583603,
- -0.021464819088578224, -0.13219767808914185, -0.0695127546787262, -0.011890550144016743,
- 0.06849129498004913, -0.07363387942314148, -0.010510673746466637, 0.0463363379240036,
- 0.02738870494067669, 0.06951083987951279, 0.030163049697875977, -0.039360929280519485,
- -0.0456852912902832, -0.05729419365525246, 0.01713230460882187, -0.024143461138010025,
- 0.05658015236258507, 0.23395395278930664, -0.07694215327501297, -0.0061668590642511845,
- 0.11664216220378876, -0.11140554398298264, 0.28927868604660034, -0.03137922286987305,
- -0.013626121915876865, -0.016453202813863754, 0.07510411739349365, 0.052874017506837845,
- 0.009757515043020248, 0.028134895488619804, -0.000013540033251047134,
- 0.04605845361948013, -0.04639646038413048, -0.01675102673470974, 0.04596362262964249,
- 0.0014289655955508351, 0.03089004196226597, -0.1326262503862381, 0.01458796951919794,
- -0.02370643801987171, 0.008287652395665646, -0.05983121693134308, 0.12265250086784363,
- 0.08365385979413986, -0.047693923115730286, 0.0007092828745953739, 0.10331198573112488,
- -0.03910810872912407, 0.09458816051483154, -0.10293426364660263, 0.05824502557516098,
- -0.045077934861183167, 0.055470045655965805, -0.013055428862571716, 0.02339434064924717,
- -0.06995664536952972, 0.032700419425964355, 0.02723517455160618, 0.14909273386001587,
- 0.043814919888973236, 0.050672292709350586, 0.08386135846376419, 0.09905143082141876,
- -0.08322665840387344, -0.038753755390644073, 0.00031500973273068666,
- -0.057244062423706055, 0.0005297415773384273, -0.03744155168533325, 0.06514444947242737,
- -0.04883156344294548, -0.20709167420864105, 0.03928164765238762, 0.06534454971551895,
- -0.04389915615320206, -0.054158780723810196, 0.010376165620982647, -0.08436070382595062,
- 0.0385507233440876, -0.03464607894420624, -0.07457010447978973, 0.07400792837142944,
- 0.1223488375544548, 0.05547662079334259, 0.06566140055656433, 0.058060552924871445,
- -0.04032314196228981, -0.05027134716510773, -0.03981310501694679, -0.08714444190263748,
- 0.04248940572142601, -0.1463264524936676, -0.0347902849316597, -0.003464440582320094,
- -0.03841278329491615, 0.6442553400993347, 0.12654396891593933, 0.127034991979599,
- -0.03476773574948311, -0.0080637875944376, 0.19449228048324585, -0.0709887221455574,
- 0.08612492680549622, -0.09494046121835709, -0.05790628492832184, 0.04380699619650841,
- -0.09851863235235214, -0.030465323477983475, 0.03261859342455864, 0.022106889635324478,
- 0.06776009500026703, 0.010723966173827648, 0.07670889794826508, 0.03264792263507843,
- -0.10169265419244766, 0.00910024344921112, 0.04872290790081024, -0.031959518790245056,
- -0.15001904964447021, -0.06555511057376862, 0.05396388843655586, 0.12531697750091553,
- -0.06859881430864334, 0.02785283885896206, -0.11548155546188354, 0.020703965798020363,
- -0.0077164205722510815, 0.03946023806929588, 0.0008264138596132398, 0.02104654535651207,
- 0.07771255075931549, 0.057856712490320206, -0.03696548938751221, -0.07961584627628326,
- -0.04014532268047333, 0.09969677776098251, -0.05361112207174301, -0.04484569653868675,
- 0.10894770175218582, -0.06496238708496094, 0.019524333998560905, -0.05893455818295479,
- 0.1296994388103485, -0.0799948126077652, 0.040120963007211685, 0.04220522567629814,
- 0.016100388020277023, 0.05797210708260536, -0.04867338761687279, -0.07031602412462234,
- -0.07804318517446518, 0.09491536766290665, 0.026591705158352852, 0.06819579005241394,
- 0.027869347482919693, -0.02888430655002594, 0.080051489174366, 0.06018546223640442,
- 0.025775762274861336, -0.048059578984975815, 0.09567632526159286, 0.06567064672708511,
- -0.009056642651557922, -0.05923168733716011, -0.022533824667334557, 0.0436202697455883,
- 0.051538508385419846, 0.0026331886183470488, 0.043483342975378036, 0.014295241795480251,
- -0.04399242624640465, 0.0027559646405279636, 0.11337613314390182, 0.06813586503267288,
- 0.025057626888155937, -0.09311234951019287, -0.050774116069078445,
- -0.010578200221061707, 0.02893265336751938, -0.03540252521634102, -0.045890673995018005,
- 0.07228070497512817, 0.07837406545877457, 0.06922978162765503, 0.059326592832803726,
- 0.033184800297021866, 0.06068175658583641, 0.0832778662443161, 0.009729494340717793,
- 0.10308637470006943, -0.03167223930358887, -0.04854607954621315, -0.016222037374973297,
- -0.0009305201238021255, -0.01879006065428257, 0.025647474452853203,
- -0.049034275114536285, -0.03218276426196098, -0.06846760958433151, 0.01922416500747204,
- -0.10700275748968124, -0.03685770183801651, 0.07487199455499649, 0.010094895958900452,
- -0.04771558567881584, -0.10502179712057114, -0.09303367882966995, 0.028756706044077873,
- 0.10590741783380508, -0.04255014657974243, 0.00010174766066484153, -0.0684075802564621,
- 0.06304094195365906, -0.07125851511955261, 0.015342816710472107, -0.026702415198087692,
- 0.014823243953287601, -0.05320955440402031, -0.09188714623451233, 0.07536689192056656,
- 0.007406483869999647, 0.041013624519109726, -0.02468920312821865, -0.03641777113080025,
- -0.04486706480383873, -0.032507166266441345, 0.011519615538418293, -0.03011905588209629,
- 0.05298725888133049, 0.007032557390630245, 0.05555948242545128, -0.022773629054427147,
- -0.020073195919394493, 0.06740713864564896, -0.07488995045423508, -0.07585493475198746,
- 0.06281216442584991, -0.006954151671379805, 0.014492777176201344, -0.02613852173089981,
- -0.09374070167541504, -0.06332889944314957, 0.013248537667095661,
- -0.0045762136578559875, 0.1043485477566719, -0.01867099106311798, 0.012846222147345543,
- -0.036928724497556686, -0.0366712287068367, 0.07979569584131241, -0.061308253556489944,
- -0.07048533111810684, -0.08715187013149261, 0.12995170056819916, -0.044498372822999954,
- -0.021716183051466942, 0.017962457612156868, -0.00802827998995781, 0.06009975075721741,
- -0.04109854996204376, 0.006100676488131285, 0.0396578386425972, 0.04196951910853386,
- -0.005098085384815931, 0.025783615186810493, 0.05418461933732033, -0.06400146335363388,
- 0.03800458088517189, 0.06556923687458038, 0.4449799060821533, -0.34059247374534607,
- 0.08875308185815811, 0.12275395542383194, 0.03829485550522804, 0.06973250955343246,
- 0.0052513559348881245, 0.040260203182697296, 0.06697605550289154, 0.1135329082608223,
- 0.11317722499370575, -0.03771258518099785, -0.026431776583194733, -0.06083117425441742,
- 0.1075454130768776, -0.0037901175674051046, 0.049139417707920074, -0.02680850401520729,
- -0.016111250966787338, -0.020209599286317825, 0.022272441536188126,
- -0.07558126002550125, -0.005664908327162266, -0.009601905010640621,
- -0.00690624350681901, -0.03991399705410004, 0.03339281305670738, 0.07577373087406158,
- -0.004236618988215923, -0.004202290438115597, 0.013208591379225254, 0.0416092574596405,
- 0.10101540386676788, 0.08491567522287369, -0.10372912883758545, 0.021586189046502113,
- -0.05214868485927582, -0.123172327876091, 0.09037347137928009, 0.0019184105331078172,
- 0.07502096891403198, 0.010928337462246418, 0.01721908710896969, 0.022339722141623497,
- -0.04440651088953018, -0.06836535781621933, 0.031323324888944626, 0.05714694410562515,
- 0.010867743752896786, 0.12609058618545532, 0.1477661430835724, -0.061880964785814285,
- -0.052925046533346176, -0.05181874707341194, 0.029945645481348038, 0.14551034569740295,
- -0.027231890708208084, 0.0660201907157898, 0.03971671313047409, -0.027818381786346436,
- -0.018805138766765594, -0.058601874858140945, -0.07991358637809753,
- -0.024920523166656494, -0.022718969732522964, 0.06943672895431519, 0.049350228160619736,
- -0.04248766973614693, -0.17427769303321838, -0.029955683276057243, -0.05363945662975311,
- -0.007449113763868809, 0.14405937492847443, -0.0600002147257328, -0.02258736453950405,
- -0.005647119600325823, -0.013912933878600597, 0.02751667983829975, -0.11048413068056107,
- -0.007623210549354553, 0.006623420864343643, 0.03185941278934479, 0.09428779035806656,
- 0.046442605555057526, -0.005536636803299189, 0.08243178576231003, -0.10276534408330917,
- 0.0785592570900917, 0.04797542095184326, -0.023649083450436592, -0.008337964303791523,
- -0.04764261469244957, 0.061182111501693726, 0.023051775991916656, -0.06452807039022446,
- 0.02973332442343235, -0.024291357025504112, -0.041782114654779434, -0.04616088047623634,
- -0.03780052438378334, -0.0630805641412735, -0.09787513315677643, 0.024786431342363358,
- -0.08570344001054764, -0.032317981123924255, -0.02665817178785801, -0.0239756777882576,
- 0.04309219494462013, 0.04404978081583977, 0.06755316257476807, -0.1360136866569519,
- -0.014830008149147034, -0.010523399338126183, 0.04184059053659439,
- -0.015656491741538048, -0.07750241458415985, 0.006716294214129448, 0.08695360273122787,
- 0.04760287329554558, -0.08674534410238266, 0.04555191844701767, -0.07405076920986176,
- 0.08926808089017868, -0.10465379804372787, -0.5386998653411865, 0.0774591788649559,
- 0.006223742384463549, 0.0028766291216015816, -0.024701228365302086,
- -0.042310167104005814, 0.04841325432062149, 0.0006804557051509619, 0.02171015739440918,
- 0.12577980756759644, -0.050692781805992126, 0.00975834485143423, -0.0660163164138794,
- -0.026630861684679985, 0.019281962886452675, -0.016727644950151443,
- -0.08559762686491013, 0.028675423935055733, -0.009610886685550213, -0.03926997631788254,
- -0.11285524815320969, -0.006274115759879351, -0.009296133182942867,
- 0.018502967432141304, -0.00436744000762701, 0.02147962898015976, -0.028602322563529015,
- -0.06755825132131577, 0.07823605090379715, 0.03376639634370804, 0.05059221386909485,
- -0.08869347721338272, -0.03835716098546982, 0.023166585713624954, 0.03562907874584198,
- 0.1267593652009964, 0.014891741797327995, -0.022265072911977768, -0.02061552368104458,
- 0.09244659543037415, 0.04795394092798233, 0.1869717538356781, -0.028306232765316963,
- 0.039981912821531296, -0.032372213900089264, 0.10465604811906815, 0.0647597536444664,
- 0.005092330742627382, -0.024905728176236153, -0.010533520951867104,
- -0.01247086375951767, 0.009893939830362797, 0.07354040443897247, -0.09250947088003159,
- -0.05791955068707466, -0.038103558123111725, -0.061472199857234955,
- -0.04169495031237602, 0.08111652731895447, 0.22509318590164185, 0.023872973397374153,
- 0.005085201468318701, 0.00646955706179142, -0.036053285002708435, 0.03638201206922531,
- -0.13232821226119995, -0.01300711277872324, -0.008789981715381145, 0.004760126583278179,
- 0.021367721259593964, -0.0561085008084774, -0.16628940403461456, -0.01766834780573845,
- 0.018773198127746582, -0.012797286733984947, 0.1102716401219368, 0.009646198712289333,
- 0.019675884395837784, -0.023876357823610306, 0.13903610408306122, 0.011436249129474163,
- 0.002002136316150427, 0.052070531994104385, 0.07895389199256897, 0.04972256347537041,
- 0.016082264482975006, -0.013914726674556732, -0.06542014330625534, 0.013981007970869541,
- 0.16477026045322418, 0.005079952534288168, 0.13307994604110718, 0.0752212256193161,
- -0.017390459775924683, -0.04693156108260155, 0.0025612565223127604,
- -0.04057566449046135, 0.027515273541212082, -0.5308529734611511, 0.00951593741774559,
- 0.10559391230344772, 0.008814200758934021, 0.021458057686686516, 0.08551651239395142,
- 0.010273931547999382, -0.018091285601258278, -0.03412339463829994, -0.01390393078327179,
- 0.148188054561615, -0.022120565176010132, 0.052066560834646225, -0.17153210937976837,
- 0.03866732120513916, 0.04947177693247795, -0.03250840678811073, 0.031178735196590424,
- 0.06457414478063583, -0.23997755348682404, -0.034148551523685455, -0.030288605019450188,
- 0.21833790838718414, 0.053069330751895905, 0.0406506173312664, 0.11192568391561508,
- -0.04428347572684288, 0.00931075494736433, 0.010097385384142399, 0.03632388636469841,
- 0.06619738042354584, -0.026366673409938812, -0.02667863480746746, 0.10910066217184067,
- 0.07167841494083405, 0.06237558647990227, -0.0022243312560021877, 11.919528007507324,
- 0.04540729150176048, 0.041604895144701004, -0.08333306759595871, 0.0425754114985466,
- -0.05541611835360527, 0.008284159004688263, -0.06564325839281082, 0.09284255653619766,
- 0.13803131878376007, -0.0229276642203331, -0.04330047219991684, 0.0010804441990330815,
- -0.06720840930938721, 0.029264189302921295, -0.10703839361667633,
- -0.0060816132463514805, -0.048612359911203384, 0.02852906472980976,
- -0.04275048151612282, -0.04981037974357605, 0.13247628509998322, 0.06313806027173996,
- 0.02292066067457199, -0.05338745936751366, 0.061784934252500534, 0.001327947131358087,
- -0.029008395969867706, -0.003788387170061469, 0.07041876018047333,
- -0.00002509812475182116, 0.0585884153842926, 0.08274508267641068,
- -0.0030780325178056955, -0.03996453434228897, 0.04941552132368088, 0.06056739017367363,
- 0.047497112303972244, -0.012996221892535686, 0.06504835933446884, 0.03428414463996887,
- -0.011935478076338768, 0.015930507332086563, -0.00027513556415215135,
- 0.06305374950170517, 0.012375653721392155, 0.02691531553864479, 0.13586372137069702,
- -0.050827737897634506, 0.030278673395514488, 0.07817862182855606, -0.0799681767821312,
- 0.08132515102624893, 0.05141650140285492, -0.03937305882573128, 0.07090196758508682,
- -0.017096245661377907, -0.05716543644666672, 0.12194553762674332, 0.053357284516096115,
- -0.00731999147683382, 0.09506931155920029, 0.03936358168721199, 0.11278440058231354,
- -0.0236602034419775, 0.02541572041809559, 0.04408861696720123, 0.07696069031953812,
- -0.06143346056342125, -0.08580554276704788, 0.054391082376241684, -0.1170579046010971,
- -0.06000787392258644, 0.04889674857258797, 0.10466894507408142, -0.012301812879741192,
- 0.04682056978344917, -0.07110544294118881, 0.025314368307590485, -0.05162902921438217,
- 0.053073763847351074, 0.04633825272321701, -0.04940711334347725, 0.022735850885510445,
- 0.013488736934959888, 0.047023873776197433, 0.08994881808757782, 0.11729317158460617,
- 0.0034408324863761663, -0.07670783251523972, -0.07318787276744843, 0.11494867503643036,
- -0.046011414378881454, -0.050437409430742264, 0.012213963083922863, -0.0740974098443985,
- 0.029271284118294716, -0.16229069232940674, 0.12122321873903275, 0.11762550473213196,
- -0.02509334869682789, -0.030152589082717896, -0.018518468365073204,
- 0.046822670847177505, -0.027146195992827415, 0.03404311463236809, -0.0830564945936203,
- 0.001925592077895999, 0.07815297693014145, 0.07679802924394608, -0.05725488439202309,
- 0.045088689774274826, 0.08372505009174347, -0.0497012659907341, -0.012913224287331104,
- 0.07490750402212143, -0.058068130165338516, -0.033841539174318314, 0.07252751290798187,
- 0.03649280592799187, -0.09777260571718216, -0.04609166458249092, -0.007868866436183453,
- -0.024957163259387016, 0.021073516458272934, -0.056483253836631775,
- 0.026711490005254745, 0.022846737876534462, -0.029828542843461037, -0.0356733575463295,
- 0.018581677228212357, 0.07492347806692123, 0.035981178283691406, 0.03661414980888367,
- 0.07896435260772705, -0.08473753929138184, -0.04528110474348068, 0.012245788238942623,
- 0.07867374271154404, 0.08097068220376968, -0.14460143446922302, -0.005313291680067778,
- -0.005152157973498106, -0.1520259976387024, 0.042364366352558136, 0.11842159181833267,
- 0.07455513626337051, 0.004974699113518, 0.032964542508125305, -0.08308442682027817,
- -0.014358353801071644, 0.08456053584814072, 0.02381119877099991, 0.03249838203191757,
- 0.03343002870678902, -0.0353328138589859, -0.0263773612678051, 0.1447048932313919,
- -0.03685125708580017, -0.0017019096994772553, -0.014573201537132263,
- -0.12064353376626968, 0.08276163786649704, 0.126189187169075, -0.0339859277009964,
- 0.01961078867316246, -0.02330128662288189, -0.02079727128148079, 0.06237918511033058,
- -0.002857547951862216, -0.00030361738754436374, 0.019371988251805305,
- -0.12920649349689484, -0.078774593770504, 0.02010013349354267, 0.07715495675802231,
- 0.06849725544452667, -0.15665607154369354, 0.006532444152981043, -0.02546416036784649
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 63,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 16,
- "similarity": 0.9984703660011292
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 53,
- "similarity": 0.9981966018676758
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 60,
- "similarity": 0.9980613589286804
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Johnny Simon"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1136,
- "source_domain": "qz.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Google Photos tried to fix this ski photo",
- "url": "https://qz.com/1188170/google-photos-tried-to-fix-this-ski-photo"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "margiotta",
- "name": "Margiotta"
- },
- {
- "__typename": "Entity",
- "entity_id": "heriot-watt-university",
- "name": "Heriot-Watt University"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "heriot-watt-university",
- "name": "Heriot-Watt University"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "store-patrons",
- "name": "Store Patrons"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1137],
- "vector": [
- -0.10021492838859558, 0.08834479749202728, 0.031285084784030914, -0.14500434696674347,
- 0.051889125257730484, -0.03949041664600372, -0.013386492617428303, 0.06018272414803505,
- 0.11792751401662827, -0.10359443724155426, -0.034091297537088394, 0.06373134255409241,
- 0.04744771122932434, -0.12485478818416595, 0.05220137536525726, -0.07933429628610611,
- -0.1241842731833458, -0.04249150678515434, -0.044916678220033646, -0.10724108666181564,
- -0.0794982761144638, -0.00948153343051672, 0.012915999628603458, 0.1368454545736313,
- -0.059749070554971695, -0.005498070735484362, 0.060398831963539124, 0.07429676502943039,
- -0.02818414382636547, 0.022390415892004967, -0.03843206912279129, -0.12022550404071808,
- 0.13025419414043427, 0.03037843108177185, 0.015796339139342308, 0.06889964640140533,
- -0.022424809634685516, -0.042728230357170105, 0.026926452293992043,
- 0.000867524475324899, 0.06218573823571205, 0.26715564727783203, 0.007744612172245979,
- -0.02480136975646019, 0.04906471073627472, -0.06291227042675018, 0.011207690462470055,
- 0.05750993639230728, -0.003513114294037223, 0.05900046229362488, -0.0026725498028099537,
- 0.006037245970219374, -0.029565561562776566, 0.0734877809882164, -0.07287625968456268,
- 0.05515231192111969, 0.03825915604829788, 0.031051764264702797, 0.06870448589324951,
- -0.11966533958911896, 0.02947777882218361, -0.19143790006637573, -0.08738798648118973,
- -0.08131024986505508, 0.08434881269931793, -0.0936000719666481, -0.06770460307598114,
- 0.02301253378391266, 0.010423853062093258, 0.08221781253814697, 0.10763268917798996,
- -0.037101101130247116, -0.002323425840586424, 0.056328315287828445, 0.02143036387860775,
- -0.021596377715468407, -0.08210259675979614, 0.1801847219467163, -0.07457892596721649,
- -0.016695309430360794, 0.12178269028663635, -0.11776561290025711, 0.4336244463920593,
- 0.049429021775722504, 0.01057481113821268, -0.04173535481095314, 0.08572413772344589,
- 0.030271412804722786, 0.06509891152381897, 0.05636318400502205, 0.006200355943292379,
- 0.04444710537791252, -0.0920582190155983, 0.012841738760471344, 0.05741271749138832,
- 0.029162567108869553, -0.03735407069325447, 0.08126123249530792, -0.03567776829004288,
- -0.08327793329954147, -0.044846147298812866, -0.04373157024383545, 0.11137093603610992,
- 0.1032722219824791, -0.0468294620513916, -0.08673638105392456, 0.04572417214512825,
- -0.03673122823238373, 0.05621125549077988, -0.06679901480674744, 0.08567353338003159,
- 0.0107483621686697, 0.04832320287823677, -0.016414182260632515, 0.001897196052595973,
- -0.026784734800457954, 0.03633381426334381, 0.0701228603720665, 0.09045722335577011,
- 0.11404377222061157, -0.043109964579343796, 0.0568477027118206, 0.051072388887405396,
- -0.05836120620369911, -0.008287087082862854, -0.024226311594247818, -0.0681203305721283,
- -0.05173300579190254, -0.04365117847919464, 0.0029303538613021374, -0.06373932212591171,
- -0.19556893408298492, -0.0000974684371612966, 0.07137548178434372, 0.041272640228271484,
- 0.009321645833551884, 0.011168448254466057, -0.045475929975509644, 0.07011706382036209,
- -0.025603067129850388, -0.060112446546554565, 0.10737155377864838,
- 0.0012606738600879908, 0.044924236834049225, 0.17752008140087128, 0.06731491535902023,
- -0.011082238517701626, -0.005575281102210283, -0.007796496152877808,
- -0.0514538548886776, 0.13462206721305847, -0.15070678293704987, -0.0593731552362442,
- 0.003332859370857477, 0.0367293655872345, 0.790746808052063, 0.13556115329265594,
- 0.2118985503911972, 0.03124801255762577, -0.04851789027452469, 0.2187393605709076,
- -0.014782299287617207, 0.07088717073202133, -0.06278740614652634, -0.08211719989776611,
- 0.035852644592523575, -0.06898519396781921, -0.08239717036485672, 0.06256281584501266,
- 0.04298508167266846, 0.08466802537441254, 0.011809580028057098, 0.08727162331342697,
- -0.00690888985991478, -0.09356039017438889, -0.05446653068065643, 0.08270544558763504,
- 0.031642768532037735, -0.09130268543958664, -0.05176075920462608, 0.08299235999584198,
- 0.10835661739110947, -0.11849348992109299, -0.03504127636551857, -0.09184632450342178,
- 0.0647442415356636, -0.02519361861050129, 0.09317949414253235, -0.04743945226073265,
- 0.04078460484743118, 0.09198062121868134, 0.0468633696436882, 0.018982382491230965,
- -0.03564329817891121, 0.007955273613333702, 0.12807199358940125, -0.017090214416384697,
- -0.002986335661262274, 0.03976684808731079, -0.13372153043746948, 0.02418249286711216,
- -0.01042755227535963, 0.13046520948410034, -0.10657158493995667, 0.05415870249271393,
- -0.02067503333091736, 0.016962479799985886, 0.05402889475226402, 0.037442903965711594,
- -0.04196246713399887, -0.04108375310897827, 0.08897072076797485, 0.023217925801873207,
- 0.09392642974853516, 0.06435513496398926, 0.005423861090093851, 0.08933620154857635,
- 0.15587817132472992, 0.015275501646101475, 0.045466531068086624, 0.052719708532094955,
- 0.037766389548778534, -0.0663803368806839, 0.003745409194380045, -0.010810034349560738,
- -0.0389607734978199, 0.01638658717274666, 0.01908480003476143, 0.060284990817308426,
- 0.019773559644818306, -0.04845698922872543, 0.07522624731063843, 0.04440717399120331,
- 0.03128790110349655, 0.10813554376363754, -0.030384255573153496, -0.07960786670446396,
- -0.05470879375934601, -0.10323299467563629, -0.012874305248260498,
- 0.0021810606122016907, 0.0849277451634407, 0.07160785794258118, 0.07992707192897797,
- 0.06914714723825455, 0.009980535134673119, 0.06253284215927124, 0.04992720112204552,
- -0.000058289311709813774, 0.011420034803450108, -0.0630660206079483,
- -0.05758145451545715, -0.04325998201966286, 0.026650147512555122, 0.03606819361448288,
- 0.013515794649720192, -0.10115315020084381, -0.01671171933412552, -0.09877985715866089,
- -0.07761824131011963, -0.09382829815149307, -0.03181043639779091, 0.008289930410683155,
- 0.01932634226977825, -0.034970466047525406, -0.08486846834421158, -0.11720217019319534,
- -0.009222444146871567, 0.09912896901369095, -0.04581407830119133, -0.009708035737276077,
- -0.12827591598033905, 0.06085556000471115, -0.005457028280943632, 0.06013531610369682,
- -0.00868959166109562, -0.00753117585554719, 0.0355900414288044, -0.07112513482570648,
- 0.06503245234489441, 0.03412728011608124, -0.06263113021850586, -0.01888175867497921,
- -0.04513809084892273, -0.0005464872810989618, 0.01861109584569931, -0.0191107876598835,
- -0.04796430841088295, 0.008727132342755795, 0.029873890802264214, 0.08465737849473953,
- 0.006609128322452307, -0.04062406346201897, 0.0253402478992939, 0.0011673812987282872,
- -0.039711546152830124, 0.09798958152532578, -0.03490304946899414, 0.041849154978990555,
- -0.024541322141885757, -0.10858273506164551, -0.048017650842666626, 0.05672866851091385,
- -0.025329453870654106, 0.01976591907441616, -0.09636732190847397, 0.012883903458714485,
- -0.019635846838355064, -0.034400567412376404, 0.032562728971242905,
- -0.014759019017219543, -0.10128553956747055, -0.09649433195590973, 0.13561387360095978,
- 0.0129496855661273, -0.02706574648618698, 0.05948801711201668, 0.0009287921129725873,
- 0.02733509987592697, -0.018166223540902138, 0.010083870962262154, 0.05218276008963585,
- 0.07397465407848358, -0.028298871591687202, 0.06054506450891495, 0.033129509538412094,
- 0.005669325590133667, 0.035903699696063995, 0.01063271053135395, 0.435513973236084,
- -0.3194728195667267, 0.09717196226119995, 0.10919178277254105, 0.000056765537010505795,
- 0.0663873553276062, -0.04232029244303703, 0.06671186536550522, 0.09914068132638931,
- 0.1299426406621933, 0.15725888311862946, -0.01710158959031105, -0.017125394195318222,
- -0.11375435441732407, 0.07576099038124084, -0.009074412286281586, 0.026786567643284798,
- -0.03539765626192093, -0.09482371807098389, 0.004452462773770094, 0.04035395756363869,
- -0.09407958388328552, 0.02124958299100399, 0.027744656428694725, -0.02339646965265274,
- -0.011740886606276035, 0.03499563783407211, -0.0010516048641875386,
- -0.04870910570025444, 0.08915597200393677, -0.1422574818134308, 0.05432441830635071,
- 0.05419543758034706, 0.05060692876577377, -0.12972183525562286, 0.010687551461160183,
- -0.04945632070302963, -0.1377020925283432, 0.0886094868183136, -0.014636454172432423,
- 0.0477864071726799, 0.03594011440873146, -0.10032757371664047, 0.02772926725447178,
- -0.03140842169523239, -0.05001445114612579, 0.02201080694794655, 0.08606619387865067,
- 0.017495423555374146, 0.051404718309640884, 0.17427168786525726, -0.07090217620134354,
- -0.040827445685863495, -0.09273312985897064, 0.05961282178759575, 0.13583411276340485,
- -0.009978463873267174, 0.03312759846448898, 0.011392578482627869, -0.013587147928774357,
- 0.005381674971431494, -0.034116052091121674, -0.07733989506959915,
- -0.029696665704250336, -0.0354485809803009, 0.07847785204648972, 0.017545972019433975,
- -0.05983981490135193, -0.16989056766033173, 0.014861783012747765, -0.03847150504589081,
- 0.06997254490852356, 0.10591112077236176, -0.0496160052716732, 0.11592772603034973,
- -0.006362744607031345, -0.03796415030956268, 0.036779966205358505, -0.08917954564094543,
- 0.04241538420319557, -0.05511030554771423, 0.02489440143108368, 0.048376135528087616,
- 0.021200140938162804, -0.03200826421380043, 0.09403238445520401, -0.10795363038778305,
- 0.084394171833992, 0.02993094176054001, -0.04329051449894905, 0.07729171216487885,
- -0.028249578550457954, 0.03389107808470726, 0.008364439010620117, -0.03838363662362099,
- 0.066841721534729, -0.02280331216752529, -0.0785219594836235, -0.10183943808078766,
- -0.10757584124803543, 0.007915361784398556, -0.04957198724150658, 0.07348127663135529,
- -0.0533905029296875, -0.059161681681871414, -0.0752687156200409, -0.04431317374110222,
- 0.014236370101571083, -0.0013400419848039746, 0.012540443800389767,
- -0.14428122341632843, 0.008587270975112915, -0.0026087183505296707, 0.04887915402650833,
- 0.01191897876560688, -0.04308401420712471, -0.0022433376871049404, 0.11076619476079941,
- 0.09626048803329468, -0.03921765461564064, -0.0030126457568258047, -0.12369763851165771,
- 0.06954587250947952, -0.11271987110376358, -0.48965853452682495, 0.07003519684076309,
- 0.03173387423157692, -0.0049238852225244045, 0.022835852578282356, -0.1148858517408371,
- -0.011073918081820011, 0.010179693810641766, -0.05466882139444351, 0.0847373828291893,
- -0.05980009585618973, 0.015606395900249481, -0.04946163296699524, -0.09720031917095184,
- -0.041891541332006454, -0.0878923311829567, -0.0251131784170866, 0.054204609245061874,
- -0.020452868193387985, -0.07520102709531784, -0.12476162612438202, 0.019380057230591774,
- -0.027920261025428772, 0.07894079387187958, -0.03220170736312866,
- -0.0024468940682709217, -0.07496664673089981, -0.045403894037008286,
- 0.03383239358663559, 0.04484930634498596, 0.06422080844640732, -0.12545880675315857,
- -0.015260128304362297, 0.04376234486699104, -0.003948226571083069, 0.12174519151449203,
- -0.003663640469312668, -0.04088589921593666, -0.05600699037313461, 0.10010942071676254,
- 0.05781209096312523, 0.18088524043560028, -0.06451011449098587, 0.03660738095641136,
- -0.026729539036750793, 0.19537265598773956, 0.036258913576602936, 0.003612775821238756,
- -0.03882830962538719, 0.02943221852183342, 0.06307530403137207, -0.005310951266437769,
- 0.056470680981874466, -0.09502256661653519, -0.032297272235155106, -0.03309442847967148,
- -0.03344953432679176, -0.029552772641181946, 0.010477691888809204, 0.2715320289134979,
- 0.009999840520322323, 0.06571366637945175, 0.00829060934484005, -0.07441660761833191,
- 0.00872927438467741, -0.022433219477534294, -0.08529338240623474, -0.02865338698029518,
- -0.0318877212703228, -0.006902345921844244, -0.06199158355593681, -0.12822115421295166,
- -0.02038806490600109, 0.08225325495004654, 0.008130372501909733, 0.09982217848300934,
- 0.026082221418619156, 0.03864647448062897, -0.05918647348880768, 0.1276189237833023,
- 0.03189751133322716, 0.04557491093873978, 0.03813245892524719, 0.11092135310173035,
- 0.04784488305449486, 0.014912748709321022, -0.08599931746721268, -0.07305726408958435,
- 0.016282208263874054, 0.13143886625766754, -0.04432986304163933, 0.05886908620595932,
- 0.037154193967580795, -0.06191536411643028, -0.07410690188407898, 0.037605173885822296,
- -0.00932121928781271, 0.0007593000191263855, -0.5456612706184387, -0.036505866795778275,
- 0.13027329742908478, -0.006739820819348097, -0.014653302729129791, 0.08961453288793564,
- 0.034907907247543335, -0.03742242977023125, -0.0297163687646389, -0.10281101614236832,
- 0.07407119125127792, 0.0040082307532429695, 0.08240790665149689, -0.09670660644769669,
- 0.023892009630799294, 0.05722783878445625, -0.06892985850572586, -0.008481145836412907,
- 0.09407629072666168, -0.22772490978240967, 0.036401960998773575, 0.011659197509288788,
- 0.13419632613658905, -0.0446573942899704, 0.04365695267915726, 0.09522461891174316,
- -0.09038092941045761, 0.07959631830453873, 0.06461863219738007, -0.006000834982842207,
- 0.0035817327443510294, 0.011993156746029854, -0.029998356476426125, 0.09782218933105469,
- 0.10194917023181915, 0.06103548780083656, -0.004211891442537308, 12.279735565185547,
- 0.050467923283576965, 0.06792754679918289, -0.12454637140035629, 0.023500977084040642,
- -0.05189456418156624, 0.034993067383766174, -0.07052396237850189, 0.05905819684267044,
- 0.1465640366077423, 0.00004978269862476736, -0.04295909404754639, -0.011880381964147091,
- -0.12240823358297348, 0.04530346393585205, -0.03854702413082123, -0.035095684230327606,
- -0.063125841319561, 0.011958303861320019, -0.05989977717399597, -0.022824540734291077,
- 0.039813242852687836, 0.03336389735341072, 0.029174592345952988, -0.06185857206583023,
- -0.006677503697574139, -0.0012057500425726175, -0.016735268756747246,
- 0.01760249026119709, 0.024226363748311996, -0.029360035434365273, 0.0402643047273159,
- 0.041867200285196304, 0.01582477241754532, 0.07936584204435349, -0.002769218757748604,
- 0.10688570141792297, 0.04530488699674606, 0.05072313919663429, 0.11924590915441513,
- 0.01830863021314144, 0.005433466285467148, 0.045843783766031265, 0.04258037358522415,
- 0.05748714506626129, 0.0355079360306263, 0.07527926564216614, 0.09548034518957138,
- -0.013574883341789246, 0.10248718410730362, 0.09852275997400284, -0.005574325565248728,
- 0.15176627039909363, 0.01495116576552391, -0.01757628656923771, 0.09532494843006134,
- -0.0013312164228409529, -0.07484857738018036, 0.0674741268157959, 0.05272603780031204,
- -0.10338904708623886, 0.08933044970035553, 0.0009567422675900161, 0.14831842482089996,
- 0.0058411965146660805, 0.08020520955324173, 0.11275795102119446, 0.05618904531002045,
- -0.1456976979970932, -0.09623143821954727, -0.02310335822403431, -0.12185218930244446,
- -0.1055130586028099, 0.024297591298818588, 0.096840500831604, -0.09830266237258911,
- 0.04468190297484398, -0.05795655772089958, -0.018099280074238777, -0.02941695973277092,
- -0.027516718953847885, 0.04988274723291397, -0.0054823425598442554,
- 0.010347717441618443, 0.09238475561141968, 0.05457392707467079, 0.057021938264369965,
- 0.08246408402919769, -0.011922959238290787, -0.12890377640724182, -0.04290207475423813,
- 0.08595603704452515, -0.05783512443304062, -0.0886402502655983, 0.007937029004096985,
- -0.035956647247076035, 0.060792166739702225, -0.14101119339466095, 0.0442713163793087,
- 0.15281786024570465, -0.1298598051071167, 0.00334290973842144, -0.059295911341905594,
- 0.02935335412621498, 0.03016936033964157, 0.06892579048871994, -0.08131332695484161,
- 0.025727735832333565, -0.017774362117052078, 0.007424197159707546,
- -0.055201686918735504, 0.08268101513385773, 0.1345655918121338, -0.044025763869285583,
- 0.020289000123739243, 0.07135878503322601, 0.01765449158847332, -0.037035729736089706,
- 0.06448683142662048, 0.0349263921380043, -0.07637041807174683, -0.030613098293542862,
- -0.01591642014682293, -0.05904201790690422, -0.009689141064882278, -0.06939838826656342,
- -0.0019311767537146807, 0.060308318585157394, -0.06910256296396255,
- -0.005254547577351332, -0.005000200588256121, 0.030317002907395363, 0.10343844443559647,
- -0.07103550434112549, 0.07850494235754013, -0.08321435004472733, -0.08469177782535553,
- 0.04100438952445984, 0.054428644478321075, 0.03763706609606743, -0.06797445565462112,
- -0.05871691182255745, -0.03736142814159393, -0.09645546972751617, 0.05005735158920288,
- 0.11564601212739944, 0.05827680975198746, 0.07044804841279984, 0.019011953845620155,
- -0.07190690189599991, -0.0717569962143898, 0.09082427620887756, 0.057932816445827484,
- -0.02591363526880741, 0.07437211275100708, -0.0719485953450203, -0.049292076379060745,
- 0.10066203773021698, -0.0608193464577198, 0.016803577542304993, -0.015960099175572395,
- 0.04028306156396866, 0.13857071101665497, 0.13150568306446075, 0.1170622706413269,
- 0.057109247893095016, 0.03967883065342903, 0.008349400945007801, -0.000985036720521748,
- -0.01693754829466343, -0.0060753547586500645, -0.01886497437953949,
- -0.13824202120304108, -0.08515215665102005, 0.04376963526010513, 0.10054312646389008,
- 0.05543426796793938, -0.06610050797462463, -0.04795799404382706, -0.048228275030851364
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 64,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 35,
- "similarity": 0.9978907704353333
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 33,
- "similarity": 0.9977247714996338
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 37,
- "similarity": 0.9974196553230286
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["IFL Science"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1137,
- "source_domain": "iflscience.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Store Hires Robot To Help Out Customers, Robot Gets Fired For Scaring Customers Away",
- "url": "http://www.iflscience.com/technology/store-hires-robot-to-help-out-customers-robot-gets-fired-for-scaring-customers-away"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "openai",
- "name": "OpenAI"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "openai",
- "name": "OpenAI"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "openai",
- "name": "OpenAI"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1140],
- "vector": [
- -0.08144406974315643, 0.07849736511707306, 0.028281869366765022, -0.008668758906424046,
- 0.12761953473091125, 0.0029193032532930374, -0.02131986804306507, 0.07800056040287018,
- 0.07400251179933548, -0.12268044799566269, -0.031016753986477852, 0.05822264030575752,
- 0.003917563706636429, -0.08012126386165619, 0.030842702835798264, -0.10050994157791138,
- -0.1742458939552307, -0.05224552005529404, -0.06662002950906754, -0.12470098584890366,
- -0.117061085999012, 0.021973751485347748, -0.040664322674274445, 0.059746015816926956,
- -0.053006112575531006, 0.06704876571893692, 0.1483442485332489, 0.06388791650533676,
- -0.09586598724126816, 0.05498150363564491, -0.03794354945421219, -0.05898082256317139,
- 0.1651988923549652, 0.06472738087177277, -0.015873268246650696, 0.11340119689702988,
- -0.017031852155923843, 0.011512416414916515, -0.05243220180273056, 0.02445751428604126,
- 0.05849374458193779, 0.25266772508621216, -0.046110522001981735, -0.028464704751968384,
- 0.009709854610264301, -0.04644828662276268, 0.010256891138851643, 0.03127371892333031,
- 0.029825489968061447, 0.04085107892751694, -0.004802070092409849, 0.04133189842104912,
- -0.04801969975233078, 0.020294029265642166, -0.1137453094124794, 0.0647289827466011,
- 0.06853198260068893, -0.019094154238700867, 0.07883297652006149, -0.145968958735466,
- -0.03351806849241257, -0.20880810916423798, -0.006098745856434107, -0.11825075000524521,
- 0.0727195292711258, -0.11273638904094696, -0.04444807767868042, 0.0827503502368927,
- 0.013359402306377888, 0.044705625623464584, 0.03138872608542442, -0.050263624638319016,
- -0.07806707918643951, 0.0764070451259613, 0.005020428448915482, -0.05596177652478218,
- -0.06461770832538605, 0.2151465117931366, -0.1623353809118271, 0.03710603713989258,
- 0.06610414385795593, -0.0812462568283081, 0.39222392439842224, 0.03831639885902405,
- -0.05827467143535614, -0.03847658261656761, 0.15472036600112915, 0.04118580371141434,
- 0.047485388815402985, 0.010760058648884296, -0.03157133236527443, 0.052760329097509384,
- -0.0760483667254448, -0.04820214584469795, 0.079290971159935, 0.06456825882196426,
- -0.00926970224827528, -0.06156089901924133, -0.0031436041463166475, -0.0286287609487772,
- -0.08476359397172928, -0.09275665134191513, 0.07950126379728317, 0.07616658508777618,
- -0.07932107150554657, 0.02512582577764988, 0.1117510125041008, -0.0029020486399531364,
- 0.06072000786662102, -0.07059255987405777, 0.07052220404148102, 0.019169803708791733,
- 0.07946754992008209, -0.042660608887672424, -0.002622219268232584,
- -0.00038685265462845564, 0.012395726516842842, 0.09501645714044571, 0.08621425926685333,
- 0.12633812427520752, -0.047041140496730804, 0.06929067522287369, 0.10529618710279465,
- -0.05627407506108284, -0.051144879311323166, -0.02354622446000576,
- -0.030479608103632927, -0.04829372465610504, -0.010645738802850246, 0.01887260377407074,
- -0.07187448441982269, -0.20741981267929077, -0.012130177579820156, 0.09343994408845901,
- -0.08455826342105865, -0.0420239083468914, -0.0028153080493211746, -0.06535626947879791,
- 0.021048786118626595, -0.03518495708703995, 0.007818834856152534, 0.03370629996061325,
- -0.025657694786787033, 0.035945016890764236, 0.08849383890628815, 0.07121830433607101,
- -0.10469929128885269, -0.03937062993645668, -0.013139468617737293, -0.067896768450737,
- 0.10738302767276764, -0.049609363079071045, -0.07106634974479675, -0.06161178648471832,
- -0.03967912122607231, 0.7880968451499939, 0.15683914721012115, 0.21382150053977966,
- 0.033219825476408005, -0.025512807071208954, 0.12211229652166367, 0.05802827700972557,
- 0.04781283810734749, -0.08350998908281326, -0.0017232216196134686, 0.0378728061914444,
- -0.06371033191680908, -0.06843260675668716, -0.029047930613160133, 0.03695734217762947,
- 0.07671836763620377, -0.003609190694987774, 0.034156136214733124, -0.04926745593547821,
- -0.10005522519350052, -0.018047774210572243, 0.11078786849975586, 0.032791588455438614,
- -0.12806083261966705, -0.014105292037129402, 0.035573918372392654, 0.08443858474493027,
- -0.08714666962623596, -0.000033376043575117365, -0.059593748301267624,
- 0.053080279380083084, 0.003343757474794984, 0.08006620407104492, -0.010154726915061474,
- 0.09079977124929428, 0.05437420681118965, 0.03523000329732895, -0.033770035952329636,
- -0.085093192756176, 0.06987152248620987, 0.06617379933595657, -0.04782349243760109,
- -0.004906316287815571, 0.05337607488036156, -0.10885313153266907, 0.055114537477493286,
- -0.04330793395638466, 0.20534051954746246, -0.16423891484737396, 0.0404820516705513,
- -0.02819172851741314, 0.04905472323298454, 0.04086380824446678, 0.006996529176831245,
- -0.05502163618803024, -0.036564093083143234, 0.13328520953655243, -0.007687420584261417,
- 0.12668120861053467, 0.05313660576939583, 0.03767476603388786, 0.06191370636224747,
- 0.1593334823846817, -0.01939651556313038, -0.005635215435177088, 0.06620948761701584,
- 0.08028062433004379, -0.04214293882250786, 0.027487315237522125, -0.012820442207157612,
- -0.07298313081264496, 0.032121360301971436, -0.009053691290318966, 0.03667278587818146,
- 0.025960538536310196, -0.07805921882390976, 0.034861333668231964, 0.04729283228516579,
- 0.06044653058052063, 0.10149157792329788, -0.03986501321196556, -0.06833609193563461,
- -0.03135943040251732, -0.10703110694885254, 0.0012648747069761157,
- -0.023783700540661812, 0.10262671113014221, 0.1190643161535263, 0.11247628927230835,
- 0.02644377201795578, 0.05252941697835922, 0.030843723565340042, -0.06981045007705688,
- 0.041341494768857956, -0.01541463565081358, -0.028181515634059906,
- -0.013171486556529999, -0.030992142856121063, -0.017814256250858307,
- 0.03613724559545517, -0.0837394967675209, -0.06608372181653976, -0.040219299495220184,
- -0.07808838784694672, -0.10284588485956192, -0.09840670228004456, -0.047089848667383194,
- -0.00369040435180068, 0.08056192845106125, 0.010018334724009037, -0.06324934214353561,
- -0.08837549388408661, -0.0014475722564384341, 0.08247890323400497, -0.03192703798413277,
- -0.007414227817207575, -0.10754229873418808, 0.012380341067910194,
- -0.024521656334400177, 0.019702354446053505, 0.03387007489800453, 0.0009229907300323248,
- 0.0307101309299469, -0.03874317556619644, 0.05004578456282616, -0.046301230788230896,
- -0.13629141449928284, -0.04248115420341492, -0.10271303355693817, -0.03804478421807289,
- -0.00211123819462955, 0.0314895361661911, -0.05485939979553223, 0.019010888412594795,
- 0.08721154183149338, 0.10194697976112366, -0.026307063177227974, -0.10745177417993546,
- 0.07085014879703522, -0.006615135818719864, -0.048225026577711105, 0.08470015227794647,
- -0.08479107916355133, 0.06938917189836502, -0.015757841989398003, -0.0617540217936039,
- -0.052989862859249115, 0.02858918160200119, -0.03987152874469757, 0.02987443469464779,
- -0.03885040432214737, 0.015512893907725811, -0.017272133380174637, -0.02306395210325718,
- -0.003800444072112441, -0.03599195554852486, -0.13721781969070435, -0.06495460867881775,
- 0.15646964311599731, 0.0206290353089571, -0.04695184901356697, 0.04303991049528122,
- 0.007442199159413576, 0.012023364193737507, 0.010141978040337563, 0.025703275576233864,
- 0.08808919042348862, 0.10597661137580872, 0.02514546550810337, 0.07288789749145508,
- 0.0995311513543129, -0.022666526958346367, -0.008619435131549835, 0.0921018198132515,
- 0.46752944588661194, -0.20328280329704285, 0.09591870754957199, 0.1206437349319458,
- -0.013764417730271816, 0.0747673287987709, -0.10755147784948349, 0.055514950305223465,
- 0.11152277141809464, 0.17484186589717865, 0.16602541506290436, -0.004723576363176107,
- 0.02070123888552189, -0.0628361701965332, 0.13444747030735016, -0.032766807824373245,
- 0.006666257511824369, 0.005962712224572897, -0.12806953489780426, 0.0021579444874078035,
- 0.0934552550315857, -0.07022525370121002, 0.036121319979429245, -0.03184138238430023,
- -0.04736854508519173, -0.01993396133184433, -0.016057586297392845,
- -0.032682519406080246, 0.02976994216442108, 0.01683671772480011, -0.047699857503175735,
- 0.08065135776996613, 0.033589430153369904, -0.002235143445432186, -0.15265105664730072,
- 0.010330123826861382, -0.097519651055336, -0.1512429267168045, 0.1464507132768631,
- -0.027794258669018745, 0.013182898052036762, 0.11170894652605057, -0.0799078717827797,
- 0.050327252596616745, 0.01751525141298771, -0.01865575648844242, -0.019952787086367607,
- 0.05775848403573036, 0.0002506742312107235, 0.013056619092822075, 0.15593604743480682,
- -0.06001630052924156, -0.01316060870885849, -0.16362053155899048, 0.04868880659341812,
- 0.10496820509433746, -0.03836461156606674, -0.013148922473192215, 0.026976842433214188,
- -0.011328857392072678, 0.021133629605174065, -0.07473154366016388, -0.09029834717512131,
- -0.021181806921958923, -0.09360463917255402, 0.104823037981987, 0.03692614287137985,
- -0.04632854834198952, -0.16968105733394623, -0.01393100991845131, 0.001068128040060401,
- 0.03282208368182182, 0.09511394798755646, -0.07857014238834381, 0.11214893311262131,
- -0.0010098894126713276, -0.006786419078707695, -0.02712192013859749,
- -0.07117937505245209, -0.005167510360479355, -0.07477007806301117, 0.01787743717432022,
- 0.05052904039621353, 0.04269793629646301, -0.037577155977487564, 0.15062116086483002,
- -0.05437461659312248, 0.11637748032808304, -0.04017233848571777, -0.07473647594451904,
- 0.02883559837937355, -0.09256912767887115, 0.06892579048871994, -0.03534058481454849,
- -0.05905049666762352, -0.0011060744291171432, -0.01866178773343563,
- -0.06727536022663116, -0.04763956740498543, -0.11362387984991074, -0.022099943831562996,
- -0.1208130270242691, 0.08652852475643158, -0.08136390894651413, -0.04116784408688545,
- -0.029059944674372673, -0.04039033502340317, 0.019184937700629234, -0.02132626436650753,
- 0.007395382504910231, -0.17458851635456085, 0.015297952108085155, -0.04902884364128113,
- 0.048576369881629944, 0.0348346009850502, -0.02538451924920082, -0.012961733154952526,
- 0.07630538940429688, 0.054220736026763916, 0.0102578429505229, -0.03461353853344917,
- -0.1471836119890213, -0.012006926350295544, -0.15759846568107605, -0.24006183445453644,
- 0.04852770268917084, -0.006633243057876825, 0.03213856369256973, 0.0006846821634098887,
- -0.07482913136482239, 0.047673922032117844, 0.05287826061248779, -0.08484849333763123,
- 0.07114993035793304, -0.08948617428541183, 0.02245223894715309, -0.11032766103744507,
- -0.09709357470273972, -0.043246764689683914, -0.04119130223989487,
- -0.0014987816102802753, 0.04594790190458298, -0.03120134212076664, -0.09656328707933426,
- -0.1100119948387146, 0.09040195494890213, -0.05515778437256813, 0.036452632397413254,
- 0.0038521497044712305, 0.04786711931228638, -0.07780162990093231, -0.07851402461528778,
- 0.0008051447803154588, 0.09937897324562073, 0.09080944955348969, -0.07543811202049255,
- -0.02643349952995777, 0.0960744097828865, 0.010099905543029308, 0.1033729538321495,
- -0.013987548649311066, -0.031016908586025238, -0.07669861614704132, 0.10617896914482117,
- 0.07705221325159073, 0.1794445514678955, 0.029400426894426346, -0.042424239218235016,
- 0.05090927705168724, 0.13477826118469238, 0.053275756537914276, 0.017957568168640137,
- -0.008198420517146587, -0.042943716049194336, 0.08372826129198074,
- -0.018277548253536224, 0.14469149708747864, -0.08162383735179901, -0.014393892139196396,
- -0.01597403921186924, -0.02153407409787178, -0.06830017268657684, -0.04618115723133087,
- 0.21261319518089294, 0.030589954927563667, 0.03910641744732857, 0.050982698798179626,
- -0.07807719707489014, -0.01090407557785511, -0.06320454925298691, -0.0819786787033081,
- -0.01859714649617672, -0.006949290633201599, -0.007983211427927017,
- -0.004556118510663509, -0.11458565294742584, -0.034734759479761124,
- -0.0017554648220539093, 0.021717006340622902, 0.17341870069503784,
- -0.020095547661185265, -0.0064423419535160065, -0.05898566544055939,
- 0.14262336492538452, 0.04109467566013336, -0.0039789858274161816, 0.017419710755348206,
- 0.06733051687479019, 0.026884157210588455, 0.026982439681887627, -0.02625209093093872,
- -0.06739729642868042, 0.06125400960445404, 0.12907730042934418, -0.05119546502828598,
- 0.027856554836034775, 0.06549493223428726, 0.032445430755615234, -0.0769176185131073,
- 0.08056820929050446, -0.025591112673282623, -0.012620504014194012, -0.43708139657974243,
- -0.05782971531152725, 0.13282975554466248, 0.0727139413356781, -0.03209582343697548,
- 0.09873908013105392, 0.03618520125746727, -0.08733134716749191, 0.017950184643268585,
- -0.1470118761062622, 0.08399629592895508, 0.0435686931014061, 0.049734052270650864,
- -0.040994592010974884, -0.02827937714755535, 0.08966341614723206, -0.027960853651165962,
- 0.022369958460330963, 0.11020819842815399, -0.1678224802017212, 0.014131011441349983,
- -0.0825129896402359, 0.06627091020345688, -0.03194025531411171, 0.039996955543756485,
- 0.09409289062023163, -0.06460023671388626, 0.02179558388888836, 0.11090292036533356,
- -0.0389401912689209, 0.026360653340816498, 0.035494402050971985, -0.01415785402059555,
- 0.09341903030872345, 0.10086765140295029, 0.09884262084960938, 0.0012767884181812406,
- 12.357988357543945, 0.05094250291585922, 0.02463071420788765, -0.07255828380584717,
- -0.028255430981516838, -0.09193912893533707, 0.0418814942240715, -0.15217894315719604,
- 0.026304293423891068, 0.16083787381649017, -0.04210521653294563, -0.074156254529953,
- -0.007408360484987497, -0.12877239286899567, 0.027814460918307304,
- -0.010967787355184555, -0.12956860661506653, 0.06323543190956116, 0.01065320335328579,
- -0.07184893637895584, -0.06457704305648804, 0.026621228083968163, 0.12241792678833008,
- 0.005237014498561621, -0.02354426123201847, 0.005946011282503605, 0.008366450667381287,
- -0.06676970422267914, 0.020344272255897522, 0.049994222819805145, -0.05910061299800873,
- 0.044611625373363495, 0.04793132469058037, -0.01952613703906536, 0.09504835307598114,
- 0.10123554617166519, 0.12356673181056976, 0.04441957175731659, 0.04177229106426239,
- 0.08566316217184067, -0.006261263508349657, -0.0004244889714755118, 0.08339892327785492,
- 0.004560201894491911, 0.10598526895046234, 0.08552948385477066, 0.05907095968723297,
- 0.1363794505596161, 0.0706358551979065, 0.029311763122677803, 0.09597531706094742,
- 0.018510017544031143, 0.17070290446281433, 0.013300021179020405, -0.017010891810059547,
- -0.01464539673179388, 0.0020537248346954584, -0.10029274970293045, 0.13630664348602295,
- 0.08199917525053024, -0.05755564942955971, 0.1605403572320938, 0.011695398949086666,
- 0.09497004002332687, 0.03595157712697983, 0.08140341937541962, 0.08225361257791519,
- 0.08738797158002853, -0.14222146570682526, -0.0639636293053627, 0.02732319012284279,
- -0.12068366259336472, -0.11793465912342072, 0.11313171684741974, 0.12349884957075119,
- -0.07613440603017807, 0.050083257257938385, -0.01589074730873108, -0.024463867768645287,
- -0.029412662610411644, -0.011212733574211597, 0.047468289732933044,
- -0.053913455456495285, -0.011990619823336601, 0.0856236070394516, 0.049372799694538116,
- 0.062432195991277695, 0.09455394744873047, -0.04004845395684242, -0.07347432523965836,
- -0.03444964438676834, 0.08897248655557632, -0.02990584634244442, -0.051501255482435226,
- 0.07245218753814697, -0.06729735434055328, 0.17980864644050598, -0.23233988881111145,
- 0.03894086182117462, 0.07418669015169144, -0.1403312385082245, -0.024005461484193802,
- -0.04130660742521286, 0.02702525071799755, 0.012775121256709099, 0.08887651562690735,
- -0.03838067501783371, 0.027610698714852333, 0.033687178045511246, 0.009193070232868195,
- -0.029248375445604324, 0.031343065202236176, 0.08278375118970871, -0.06237573176622391,
- 0.04281241074204445, 0.03228732943534851, 0.018246538937091827, 0.01627652533352375,
- 0.045616265386343, 0.05207586660981178, -0.06862734258174896, -0.030541738495230675,
- -0.022113122045993805, -0.0002401016972726211, -0.03714856132864952,
- -0.03919422999024391, -0.005894816014915705, 0.05520190671086311, -0.005525996442884207,
- 0.014123544096946716, 0.08953801542520523, 0.08210685104131699, 0.07268627732992172,
- -0.08059386909008026, 0.06616134941577911, -0.013497290201485157, -0.07367301732301712,
- 0.03293287009000778, -0.005962134804576635, 0.10634012520313263, -0.059065379202365875,
- -0.08060388267040253, -0.11468861252069473, -0.14740051329135895, 0.03433147817850113,
- 0.08805510401725769, 0.08906713873147964, 0.06876879930496216, -0.010893546044826508,
- -0.074211485683918, -0.1068854108452797, 0.09408454596996307, 0.009374718181788921,
- -0.02709641121327877, 0.03408288583159447, -0.08789151161909103, -0.003067432204261422,
- 0.08394189178943634, -0.10385590046644211, -0.029868679121136665, 0.010135697200894356,
- -0.058733053505420685, 0.08671439439058304, 0.12283340841531754, 0.07117417454719543,
- 0.038365140557289124, 0.05795840173959732, -0.03362302482128143, 0.021887095645070076,
- -0.036585524678230286, 0.08677183091640472, -0.006184757221490145, -0.10805686563253403,
- -0.033949341624975204, 0.11165764927864075, 0.10955268144607544, 0.061038605868816376,
- -0.09008527547121048, -0.023374931886792183, -0.009267620742321014
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 65,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 14,
- "similarity": 0.9975417852401733
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 59,
- "similarity": 0.9974229335784912
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 159,
- "similarity": 0.9973933100700378
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Dario Amodei", "Jack Clark"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1140,
- "source_domain": "blog.openai.com",
- "submitters": ["Roman Yampolskiy"],
- "title": "Faulty Reward Functions in the Wild",
- "url": "https://blog.openai.com/faulty-reward-functions/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "tencent-holdings",
- "name": "Tencent Holdings"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "turing-robot",
- "name": "Turing Robot"
- },
- {
- "__typename": "Entity",
- "entity_id": "microsoft",
- "name": "Microsoft"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "turing-robot",
- "name": "Turing Robot"
- },
- {
- "__typename": "Entity",
- "entity_id": "tencent-holdings",
- "name": "Tencent Holdings"
- },
- {
- "__typename": "Entity",
- "entity_id": "microsoft",
- "name": "Microsoft"
- },
- {
- "__typename": "Entity",
- "entity_id": "chinese-communist-party",
- "name": "Chinese Communist Party"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [
- 1180, 1179, 1178, 1176, 1175, 1174, 1173, 1172, 1170, 1169, 1166, 1165, 1163, 1162,
- 1161, 1159
- ],
- "vector": [
- -0.0797497108578682, 0.04624153673648834, 0.029467154294252396, -0.1175505667924881,
- 0.07777731865644455, -0.02764318510890007, -0.004414155147969723, 0.0641818568110466,
- 0.09878305345773697, -0.12343383580446243, -0.005910250823944807, 0.05465114489197731,
- 0.013171909376978874, -0.08272340893745422, 0.017407909035682678, -0.0642089918255806,
- -0.07233092933893204, -0.027446279302239418, -0.03185848891735077, -0.11956681311130524,
- -0.09794703125953674, 0.016907332465052605, 0.01867927610874176, 0.0774441733956337,
- -0.09899848699569702, 0.016005199402570724, 0.10764454305171967, 0.12669077515602112,
- -0.04148758202791214, 0.04015020653605461, -0.03538382053375244, -0.053191252052783966,
- 0.14099806547164917, 0.01270961295813322, 0.01939558796584606, 0.06543418020009995,
- 0.0184340663254261, -0.016631633043289185, -0.040538087487220764, 0.02083481103181839,
- -0.0011799463536590338, 0.18475157022476196, 0.014213649556040764,
- -0.014618165791034698, 0.04741404205560684, -0.04534650966525078, 0.008520836941897869,
- 0.040622226893901825, -0.0008239175658673048, 0.016418296843767166,
- -0.01710369624197483, 0.03672952950000763, -0.030450722202658653, 0.04089433327317238,
- -0.09216347336769104, 0.03950439766049385, 0.04498329758644104, -0.011851686052978039,
- 0.015388277359306812, -0.0850013867020607, 0.004566729534417391, -0.1951717734336853,
- -0.04343375936150551, -0.04690577834844589, 0.06897205859422684, -0.061081092804670334,
- -0.05974936485290527, 0.02478654868900776, 0.02454456128180027, 0.054229140281677246,
- 0.05331171676516533, -0.025398679077625275, 0.0030545883346349, 0.011436534114181995,
- -0.0011491586919873953, -0.028212346136569977, 0.018496587872505188,
- 0.19205044209957123, -0.08486444503068924, -0.014531029388308525, 0.08217228204011917,
- -0.10030906647443771, 0.4247608184814453, 0.01773753948509693, -0.03539334982633591,
- 0.026062482967972755, 0.0922137200832367, 0.022692274302244186, 0.05504179745912552,
- -0.011440195143222809, 0.013704759068787098, 0.030645137652754784, -0.03338201344013214,
- -0.000010454594303155318, 0.04862058907747269, 0.038829002529382706,
- -0.03596780449151993, 0.03748936206102371, 0.004307475872337818, -0.07330379635095596,
- 0.0022262772545218468, -0.04044106602668762, 0.11552417278289795, 0.07647986710071564,
- -0.021687768399715424, 0.006619773805141449, 0.04039771854877472, -0.06936315447092056,
- 0.07935221493244171, -0.07126525044441223, 0.03791050240397453, -0.002063421066850424,
- 0.10425005853176117, 0.004530830308794975, 0.06177361309528351, 0.007235685829073191,
- 0.009621601551771164, 0.06742334365844727, 0.08827704191207886, 0.04537809267640114,
- 0.014244199730455875, 0.06631620228290558, 0.07204129546880722, -0.03444696217775345,
- 0.04596459120512009, -0.04579407349228859, -0.0635480135679245, -0.04352972283959389,
- -0.03557015210390091, 0.04780199006199837, -0.06724153459072113, -0.21298648416996002,
- 0.005721853580325842, 0.09853221476078033, 0.0010463854996487498, -0.016110911965370178,
- -0.0009946746286004782, -0.059010300785303116, 0.01931934803724289,
- -0.033556971698999405, -0.06448923796415329, 0.06426871567964554, -0.01626620814204216,
- 0.06372099369764328, 0.08711943030357361, 0.04043774679303169, -0.04195921868085861,
- -0.061622291803359985, -0.012834037654101849, -0.028702683746814728,
- 0.09555605053901672, -0.10213880985975266, -0.036451004445552826, -0.01510089635848999,
- -0.03831612318754196, 0.7088606953620911, 0.0827692374587059, 0.19125530123710632,
- 0.016446707770228386, -0.02335618995130062, 0.1557353436946869, -0.0010926048271358013,
- 0.09447866678237915, -0.05152066797018051, -0.05279696360230446, 0.049793682992458344,
- -0.09247968345880508, -0.07283038645982742, 0.01281664241105318, 0.03805878385901451,
- 0.07684038579463959, 0.005479610059410334, 0.1098528653383255, 0.019900478422641754,
- -0.11771585047245026, -0.04986652359366417, 0.07536483556032181, 0.022407149896025658,
- -0.11216333508491516, -0.042470887303352356, 0.048433154821395874, 0.11957963556051254,
- -0.07193051278591156, 0.005478165112435818, -0.07071307301521301, 0.052065685391426086,
- -0.0005522086867131293, 0.07860111445188522, -0.03435255587100983, 0.041532453149557114,
- 0.013976202346384525, 0.006505665834993124, 0.017431700602173805, -0.09251265227794647,
- -0.010539413429796696, 0.12376389652490616, 0.00800700206309557, -0.028557337820529938,
- 0.10395411401987076, -0.06667730212211609, 0.02303341031074524, -0.03777666389942169,
- 0.1252288520336151, -0.11522017419338226, -0.028855040669441223, -0.007532257586717606,
- -0.025555728003382683, 0.041964463889598846, -0.011284342966973782,
- -0.09663422405719757, -0.061490755528211594, 0.09555234014987946, 0.003945380914956331,
- 0.036675091832876205, 0.006984883453696966, -0.013548402115702629, 0.06093348190188408,
- 0.05282839387655258, 0.005192714277654886, -0.022039353847503662, 0.05117103084921837,
- 0.054899297654628754, -0.08773580938577652, -0.05722114443778992, 0.009363053366541862,
- 0.07628200203180313, -0.00594074372202158, -0.04500729590654373, 0.05377347022294998,
- 0.006211205385625362, -0.037505947053432465, 0.03932804614305496, 0.04265168309211731,
- 0.01399306021630764, 0.09732533246278763, -0.036731742322444916, -0.06739851087331772,
- -0.03177791088819504, -0.009980694390833378, 0.03162885084748268, -0.0328323058784008,
- 0.07456311583518982, 0.09105900675058365, 0.060968875885009766, 0.042851660400629044,
- 0.018039004877209663, 0.07368576526641846, -0.006107301451265812,
- -0.00011743018694687635, 0.041986893862485886, -0.019726237282156944,
- -0.0356602743268013, 0.0026126205921173096, 0.034113552421331406, 0.05393649637699127,
- 0.027233406901359558, -0.07974135130643845, -0.008360376581549644, 0.011636401526629925,
- -0.04902079328894615, -0.12312869727611542, 0.03461311012506485, 0.08614271879196167,
- 0.06364397704601288, -0.03725625202059746, -0.10226085036993027, -0.11969128251075745,
- -0.01683381013572216, 0.043746884912252426, -0.03419055789709091,
- -0.0018977054860442877, -0.09622123837471008, 0.006242384668439627,
- -0.03342341259121895, 0.03651028499007225, 0.018408482894301414, 0.003807995468378067,
- 0.024769693613052368, -0.012419947423040867, 0.04311976209282875, -0.011491122655570507,
- -0.025155862793326378, -0.03273119032382965, -0.0436054989695549, -0.08821223676204681,
- 0.005120875313878059, -0.005484677851200104, -0.07984424382448196, 0.024539031088352203,
- 0.06097695231437683, 0.04648624733090401, -0.0007004381041042507, -0.03845059499144554,
- 0.061327751725912094, -0.01701863296329975, -0.020280636847019196, 0.08542004227638245,
- -0.02884487435221672, 0.030931919813156128, -0.05205513909459114, -0.1279667168855667,
- -0.02746746689081192, 0.0001905963581521064, -0.07748495042324066, 0.061351239681243896,
- -0.016215769574046135, 0.014211724512279034, -0.030260341241955757,
- -0.02266310527920723, 0.08685563504695892, -0.04484328255057335, -0.0790683776140213,
- -0.0868191346526146, 0.14944982528686523, -0.0004810593673028052, -0.023213054984807968,
- 0.018528496846556664, -0.052499379962682724, 0.03966106101870537, -0.03958848863840103,
- -0.012658519670367241, 0.05905337631702423, 0.064997099339962, 0.00928794126957655,
- 0.010814244858920574, 0.04491880163550377, -0.029291817918419838, 0.028583621606230736,
- 0.0768723338842392, 0.44830283522605896, -0.21822716295719147, 0.0748583972454071,
- 0.08382049947977066, -0.04858493432402611, 0.04709728807210922, -0.021164799109101295,
- 0.06967946887016296, 0.0635439082980156, 0.11045510321855545, 0.09166751056909561,
- -0.044031061232089996, -0.00833799410611391, -0.07438802719116211, 0.09394112229347229,
- 0.027631603181362152, 0.011140969581902027, 0.01776685006916523, -0.07955294102430344,
- -0.021051261574029922, 0.021803872659802437, -0.03891556337475777,
- 0.00042043084977194667, -0.01276252418756485, -0.05964583158493042,
- 0.012760315090417862, 0.02829837240278721, 0.05666821449995041, -0.041531458497047424,
- 0.044061221182346344, -0.04854938015341759, 0.036628976464271545, 0.037676483392715454,
- 0.04132216051220894, -0.1574918031692505, 0.03773807734251022, -0.09416869282722473,
- -0.11104565858840942, 0.054513875395059586, 0.01536951307207346, 0.03364717215299606,
- 0.05522562563419342, -0.016901720315217972, 0.03753574565052986, -0.005626055411994457,
- -0.06176510825753212, 0.013093682006001472, 0.05997076630592346, 0.03744262084364891,
- 0.09916048496961594, 0.18547120690345764, -0.03952326625585556, -0.0582897812128067,
- -0.09071457386016846, 0.06788727641105652, 0.12003180384635925, -0.03231425583362579,
- 0.03066430240869522, -0.02114049904048443, -0.045202694833278656, -0.01739010401070118,
- -0.03530314564704895, -0.08326695114374161, -0.042133886367082596,
- -0.054012857377529144, 0.08381499350070953, 0.03906107693910599, -0.05217652767896652,
- -0.20955242216587067, -0.013095355592668056, -0.013038228265941143, 0.01719428040087223,
- 0.13520613312721252, -0.065424345433712, 0.047856952995061874, -0.018802383914589882,
- -0.009006895124912262, 0.00912298820912838, -0.10057597607374191, 0.001296286704018712,
- -0.05109189450740814, 0.042518336325883865, 0.02072412148118019, 0.054322101175785065,
- -0.04429509863257408, 0.08449700474739075, -0.09255213290452957, 0.09030633419752121,
- 0.016380377113819122, -0.06876978278160095, 0.03843890130519867, -0.03657734766602516,
- 0.014895613305270672, 0.003449107287451625, -0.07268214225769043, 0.012117601931095123,
- -0.013333447277545929, -0.029995767399668694, -0.07620304077863693, -0.0682251825928688,
- -0.0407283790409565, -0.07736916095018387, 0.052746012806892395, -0.08870882540941238,
- -0.01216091401875019, -0.04287703335285187, -0.021229421719908714, -0.00804630946367979,
- 0.014623613096773624, 0.043761447072029114, -0.1938163936138153, -0.020344741642475128,
- 0.0019687877502292395, 0.04386523365974426, -0.04588809609413147, -0.0789990946650505,
- 0.019293133169412613, 0.10059286653995514, 0.07012273371219635, -0.010788150131702423,
- 0.017896028235554695, -0.07095290720462799, 0.06324944645166397, -0.13864368200302124,
- -0.5521149635314941, 0.05261384695768356, 0.051367565989494324, 0.01788526400923729,
- 0.03744629770517349, -0.08597250282764435, 0.06881852447986603, 0.04384041577577591,
- -0.0800689086318016, 0.09652402997016907, -0.05750207230448723, 0.02475069649517536,
- 0.0037482669577002525, -0.030049921944737434, -0.015797097235918045,
- -0.06825610250234604, -0.0217445008456707, 0.04659195989370346, -0.033058278262615204,
- -0.06298606097698212, -0.1337963044643402, 0.010877035558223724, -0.03152993693947792,
- 0.05997462570667267, 0.006960899569094181, 0.026725202798843384, -0.05257757753133774,
- -0.0218095313757658, 0.050373151898384094, 0.05522621423006058, 0.034773025661706924,
- -0.06783255934715271, -0.001787463203072548, 0.08257865905761719, -0.023485183715820312,
- 0.13533525168895721, 0.008022378198802471, -0.008614510297775269, -0.09165318310260773,
- 0.04605769366025925, 0.04993673041462898, 0.18478943407535553, -0.0033936460968106985,
- 0.05408784747123718, 0.027080392464995384, 0.15741264820098877, 0.02719319984316826,
- 0.01060387585312128, -0.026042746379971504, 0.019198289141058922, 0.014673654921352863,
- -0.02587943710386753, 0.07782815396785736, -0.08746197819709778, 0.00655645364895463,
- -0.013822237029671669, -0.02357214316725731, -0.06018266826868057, 0.014964562840759754,
- 0.2091759741306305, 0.02683171257376671, 0.04648814722895622, 0.006771436892449856,
- -0.0909041091799736, 0.03814231976866722, -0.08084709942340851, -0.08455955237150192,
- -0.009551197290420532, 0.009471053257584572, 0.006600232794880867,
- -0.052895959466695786, -0.12911634147167206, -0.017880771309137344,
- 0.0028818759601563215, 0.01927550882101059, 0.08239014446735382, -0.002418562537059188,
- 0.02442825958132744, -0.03544123098254204, 0.11735205352306366, 0.012534183450043201,
- 0.04037008807063103, 0.062031835317611694, 0.08010289818048477, 0.010942650027573109,
- -0.04155666381120682, -0.06404381990432739, -0.06526295840740204,
- -0.0027257155161350965, 0.1414981484413147, -0.03285630792379379, 0.09282951802015305,
- 0.03580154478549957, -0.03162039816379547, -0.032324668020009995, 0.006402472499758005,
- -0.011104950681328773, 0.02246398851275444, -0.48779866099357605, -0.012992702424526215,
- 0.12042989581823349, 0.01925826258957386, -0.006349982228130102, 0.13448554277420044,
- 0.022361375391483307, -0.04176697880029678, -0.03091474622488022, -0.09523708373308182,
- 0.15004564821720123, -0.01831960491836071, 0.08543353527784348, -0.10875363647937775,
- 0.05021131783723831, 0.10057412087917328, -0.04276248440146446, 0.018537132069468498,
- 0.043404944241046906, -0.18434640765190125, 0.008070753887295723, -0.006591350771486759,
- 0.12934111058712006, 0.0015135530848056078, 0.041642624884843826, 0.08557061851024628,
- -0.04270481690764427, 0.016057036817073822, 0.059348054230213165, 0.017009524628520012,
- 0.06911496818065643, -0.008898952975869179, -0.0039657591842114925, 0.11057455092668533,
- 0.11327669024467468, 0.09126882255077362, -0.04655490070581436, 12.048998832702637,
- 0.0638064295053482, 0.07784753292798996, -0.08659590035676956, 0.009978443384170532,
- -0.07554450631141663, 0.03428323194384575, -0.0827573612332344, 0.06044210121035576,
- 0.11492515355348587, 0.0020424467511475086, -0.03425242751836777, -0.008637689054012299,
- -0.09040915966033936, 0.03392671048641205, -0.050120286643505096, -0.03818294405937195,
- -0.023487621918320656, 0.0874091237783432, -0.049731358885765076, -0.04941263794898987,
- 0.07518270611763, 0.07393340766429901, 0.0389041006565094, -0.07297389954328537,
- 0.006021597888320684, 0.024056581780314445, 0.005894274916499853, 0.00331218633800745,
- 0.014198224060237408, 0.02502497285604477, 0.029276633635163307, 0.0750228688120842,
- 0.016000712290406227, 0.03197185695171356, 0.04711246117949486, 0.054534632712602615,
- 0.026933802291750908, 0.032832108438014984, 0.06522408127784729, 0.01711946725845337,
- -0.04171178862452507, 0.0028121613431721926, 0.052614353597164154, 0.04840034618973732,
- 0.01257994957268238, 0.06327209621667862, 0.11599178612232208, -0.002604080131277442,
- 0.07047057151794434, 0.08413583785295486, -0.005345623008906841, 0.13383865356445312,
- 0.059181030839681625, 0.01588062196969986, 0.09549187868833542, -0.03643505275249481,
- -0.07032303512096405, 0.08427774161100388, 0.023225480690598488, -0.059023525565862656,
- 0.08308518677949905, 0.02713823691010475, 0.1371699571609497, -0.007051025051623583,
- 0.049772538244724274, 0.08514855802059174, 0.08525389432907104, -0.07906879484653473,
- -0.08451365679502487, 0.02992149069905281, -0.1090548112988472, -0.0563233345746994,
- 0.0012672306038439274, 0.08411189168691635, -0.05773413926362991, 0.01882273517549038,
- -0.05310509353876114, 0.016376221552491188, -0.040678005665540695, -0.02246062271296978,
- 0.037571195513010025, -0.044495027512311935, 0.03928209841251373, 0.049256954342126846,
- 0.04775829613208771, 0.08449497073888779, 0.11610861122608185, 0.011609656736254692,
- -0.12935437262058258, -0.07638736069202423, 0.12888146936893463, -0.044786036014556885,
- -0.06208242103457451, 0.0006102119805291295, -0.008649006485939026,
- 0.049595750868320465, -0.16768422722816467, 0.05230347439646721, 0.1398160606622696,
- -0.12216266989707947, -0.03861943632364273, -0.031717680394649506, 0.1033981516957283,
- 0.0052085923962295055, 0.034502577036619186, -0.07362547516822815, 0.004637015052139759,
- -0.004986763000488281, 0.015290617011487484, -0.05067949742078781, 0.056101106107234955,
- 0.10660413652658463, -0.07155995070934296, 0.040064215660095215, 0.07315034419298172,
- -0.04369648918509483, -0.0023385079111903906, 0.04155651479959488, 0.009332449175417423,
- -0.06939195096492767, -0.0329897440969944, -0.04249190539121628, -0.055798910558223724,
- 0.0026374266017228365, -0.04129963740706444, -0.00007287571497727185,
- 0.004072199109941721, -0.012831594794988632, -0.033497728407382965,
- 0.022025004029273987, 0.06702069193124771, 0.08694939315319061, 0.014405455440282822,
- 0.056575898081064224, -0.04372188076376915, -0.040343914180994034, 0.04914689064025879,
- 0.09234514832496643, 0.06711165606975555, -0.07050074636936188, -0.06813696026802063,
- -0.036995794624090195, -0.11254963278770447, 0.03360341861844063, 0.09265700727701187,
- 0.03750808164477348, 0.047303080558776855, 0.009066805243492126, -0.09232593327760696,
- -0.054649803787469864, 0.08488974720239639, 0.014951635152101517, 0.04201285168528557,
- 0.02204056642949581, -0.0910564512014389, -0.01673823595046997, 0.10492809116840363,
- -0.04474782943725586, -0.003781863721087575, -0.032916586846113205,
- -0.043282799422740936, 0.1133134588599205, 0.07858148217201233, 0.08815138787031174,
- -0.0023988045286387205, 0.03834540396928787, 0.05722298100590706, 0.040725208818912506,
- 0.01609225943684578, 0.019732899963855743, -0.028141280636191368, -0.11540865153074265,
- -0.07757618278265, 0.07540220767259598, 0.06285485625267029, 0.032626599073410034,
- -0.11911176145076752, -0.043739769607782364, -0.022243371233344078
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 66,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 36,
- "similarity": 0.9988452196121216
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 6,
- "similarity": 0.9988440871238708
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 58,
- "similarity": 0.9988002777099609
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Joseph Hincks"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1180,
- "source_domain": "time.com",
- "submitters": ["Anonymous"],
- "title": "China: Chatbots Disciplined After Unpatriotic Messages",
- "url": "http://time.com/4885341/china-tencent-rogue-chatbots/"
- },
- {
- "__typename": "Report",
- "authors": ["The Straits Times"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1179,
- "source_domain": "straitstimes.com",
- "submitters": ["Anonymous"],
- "title": "Chinese rebel chatbots BabyQ and XiaoBing re-educated after rogue rants",
- "url": "https://www.straitstimes.com/asia/east-asia/chinese-rebel-chatbots-babyq-and-xiaobing-re-educated-after-rogue-rants"
- },
- {
- "__typename": "Report",
- "authors": ["Shona Ghosh"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1178,
- "source_domain": "businessinsider.com.au",
- "submitters": ["Anonymous"],
- "title": "Tencent removed Microsoft's Chinese AI chatbot after it posted unpatriotic messages",
- "url": "https://www.businessinsider.com.au/tencent-pulled-microsofts-chinese-ai-chatbot-2017-8?r=US\u0026IR=T"
- },
- {
- "__typename": "Report",
- "authors": ["James Whitbrook"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1176,
- "source_domain": "gizmodo.com.au",
- "submitters": ["Anonymous"],
- "title": "Revolutionary Chatbots Reportedly Go Rogue, Get Reeducation In China",
- "url": "https://www.gizmodo.com.au/2017/08/revolutionary-chatbots-reportedly-go-rogue-get-reeducation-in-china/"
- },
- {
- "__typename": "Report",
- "authors": ["Pei Li"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1175,
- "source_domain": "reuters.com",
- "submitters": ["Anonymous"],
- "title": "Chinese chatbots apparently re-educated after political faux pas",
- "url": "https://www.reuters.com/article/us-china-robots-idUSKBN1AK0G1"
- },
- {
- "__typename": "Report",
- "authors": ["James Vincent"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1174,
- "source_domain": "theverge.com",
- "submitters": ["Anonymous"],
- "title": "Chinese chatbots taken offline after refusing to say they love the Communist Party",
- "url": "https://www.theverge.com/2017/8/3/16088862/china-chatbots-patriotic-microsoft-communist-party"
- },
- {
- "__typename": "Report",
- "authors": ["Reuters"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1173,
- "source_domain": "khaleejtimes.com",
- "submitters": ["Anonymous"],
- "title": "AI getting out of hand? Chinese chatbots re-educated after rogue rants",
- "url": "https://www.khaleejtimes.com/technology/ai-getting-out-of-hand-chinese-chatbots-re-educated-after-rogue-rants"
- },
- {
- "__typename": "Report",
- "authors": ["Shanghaiist"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1172,
- "source_domain": "shanghaiist.com",
- "submitters": ["Anonymous"],
- "title": "Opinionated chatbot removed by Tencent after telling users why it hates the Communist Party",
- "url": "https://shanghaiist.com/2017/08/03/baby-q/"
- },
- {
- "__typename": "Report",
- "authors": ["ABC Australia"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1170,
- "source_domain": "abc.net.au",
- "submitters": ["Anonymous"],
- "title": "Rogue chatbots taken offline in China after refusing to say they love the Communist party",
- "url": "https://www.abc.net.au/news/2017-08-04/chinese-chatbots-deleted-after-questioning-communist-party/8773766"
- },
- {
- "__typename": "Report",
- "authors": ["Yeo Kaiqi"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1169,
- "source_domain": "mothership.sg",
- "submitters": ["Anonymous"],
- "title": "Rogue chatbots removed in China after giving “unpatriotic” answers",
- "url": "https://mothership.sg/2017/08/rogue-chatbots-removed-in-china-after-giving-unpatriotic-answers/"
- },
- {
- "__typename": "Report",
- "authors": ["Kerry Allen"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1166,
- "source_domain": "bbc.com",
- "submitters": ["Anonymous"],
- "title": "Chinese chatbots shut down after anti-government posts",
- "url": "https://www.bbc.com/news/world-asia-china-40815024"
- },
- {
- "__typename": "Report",
- "authors": ["AAP"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1165,
- "source_domain": "sbs.com.au",
- "submitters": ["Anonymous"],
- "title": "Chinese chatbots pulled after going rogue",
- "url": "https://www.sbs.com.au/news/chinese-chatbots-pulled-after-going-rogue"
- },
- {
- "__typename": "Report",
- "authors": ["Rebecca Hill"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1163,
- "source_domain": "theregister.co.uk",
- "submitters": ["Anonymous"],
- "title": "Off-messenger: Chinese chatbot ain't no commie",
- "url": "https://www.theregister.co.uk/2017/08/03/chinese_chatbots_pulled/"
- },
- {
- "__typename": "Report",
- "authors": ["NewsHub"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1162,
- "source_domain": "newshub.co.nz",
- "submitters": ["Anonymous"],
- "title": "Chinese chatbots pulled after going rogue",
- "url": "https://www.newshub.co.nz/home/world/2017/08/chinese-chatbots-pulled-after-going-rogue.html"
- },
- {
- "__typename": "Report",
- "authors": ["Phoebe Weston"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1161,
- "source_domain": "dailymail.co.uk",
- "submitters": ["Anonymous"],
- "title": "Chinese rebel robots re-educated after rogue rants",
- "url": "https://www.dailymail.co.uk/sciencetech/article-4759896/Chinese-rebel-robots-apparently-educated-rogue-rants.html"
- },
- {
- "__typename": "Report",
- "authors": ["Neil Connor"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1159,
- "source_domain": "telegraph.co.uk",
- "submitters": ["Anonymous"],
- "title": "Rogue chatbots deleted in China after questioning Communist Party",
- "url": "https://www.telegraph.co.uk/technology/2017/08/03/rogue-chatbots-deleted-china-questioning-communist-party/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "tesla",
- "name": "Tesla"
- },
- {
- "__typename": "Entity",
- "entity_id": "motorist",
- "name": "Motorist"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "tesla",
- "name": "Tesla"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "motorists",
- "name": "Motorists"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [
- 1209, 1208, 1207, 1206, 1205, 1204, 1203, 1202, 1199, 1198, 1197, 1196, 1195, 1194,
- 1192, 1190, 1189, 1188, 1187, 1186, 1185, 1183, 1182, 1181
- ],
- "vector": [
- -0.0982036367058754, 0.0675976499915123, 0.0005551686626859009, -0.11703973263502121,
- 0.07179710268974304, 0.004175601061433554, -0.028792710974812508, 0.02720264345407486,
- 0.04900975152850151, -0.14939387142658234, 0.027239814400672913, 0.022843478247523308,
- 0.015932457521557808, -0.07623004168272018, 0.05269542336463928, -0.08823800086975098,
- -0.06992017477750778, -0.05533444881439209, -0.008095131255686283, -0.12939535081386566,
- -0.05968639254570007, -0.03382813557982445, 0.04523633047938347, 0.1112494170665741,
- -0.0587887205183506, 0.02083854377269745, 0.08448374271392822, 0.09585261344909668,
- -0.05127928778529167, 0.042693182826042175, -0.030907301232218742, -0.05698704347014427,
- 0.13442280888557434, -0.0009256136254407465, 0.0020775136072188616, 0.09899099916219711,
- 0.007358215283602476, -0.006468827370554209, -0.06581158190965652, 0.010193856433033943,
- -0.00737700005993247, 0.21698255836963654, 0.014518171548843384, -0.032944679260253906,
- 0.05839797481894493, -0.06369210034608841, 0.035630375146865845, 0.03708836808800697,
- 0.018521489575505257, 0.03603973612189293, -0.0097024105489254, 0.06716565787792206,
- -0.019802970811724663, 0.01559679675847292, -0.14031796157360077, 0.0733570083975792,
- 0.02918565459549427, -0.012158535420894623, 0.04216066375374794, -0.07906000316143036,
- -0.05880073830485344, -0.2919979989528656, -0.05821104720234871, -0.05347265303134918,
- 0.09290788322687149, -0.07642941176891327, -0.041867420077323914, 0.011223106645047665,
- 0.010916846804320812, 0.057272519916296005, 0.06342066079378128, -0.03708376735448837,
- -0.024182995781302452, -0.011920477263629436, 0.015570438466966152,
- -0.001610225415788591, -0.0020637421403080225, 0.2480381280183792, -0.12272054702043533,
- -0.02646154910326004, 0.11316641420125961, -0.10875657945871353, 0.482938677072525,
- 0.01852591522037983, -0.02294890396296978, -0.05559934303164482, 0.09602513164281845,
- 0.032196324318647385, 0.03155466169118881, 0.06936290860176086, -0.029340120032429695,
- 0.0058306981809437275, -0.05576607584953308, 0.039098165929317474, 0.046999234706163406,
- 0.027921011671423912, -0.00877166073769331, 0.04611777886748314, -0.01842970959842205,
- -0.03738604858517647, 0.019989265128970146, -0.03696071729063988, 0.04044150188565254,
- 0.026154616847634315, -0.018446581438183784, -0.004754090216010809, 0.13741455972194672,
- -0.02852863259613514, 0.05475698783993721, -0.06301822513341904, 0.018665701150894165,
- 0.019518449902534485, 0.05758480355143547, -0.004374331329017878, 0.030065245926380157,
- -0.08191981166601181, 0.017321407794952393, 0.033242568373680115, 0.09558217972517014,
- -0.008894686587154865, -0.029416171833872795, 0.0760425552725792, 0.09368988126516342,
- -0.06770632416009903, -0.02975885011255741, -0.03284693881869316, -0.06787806004285812,
- -0.047234322875738144, -0.04894189164042473, 0.04092143848538399, -0.06862739473581314,
- -0.22267861664295197, 0.02776004560291767, 0.11399196833372116, 0.0010976415360346437,
- -0.048708245158195496, 0.016990792006254196, -0.09020394831895828, 0.043649911880493164,
- -0.03673708811402321, -0.049309760332107544, 0.04654582217335701, 0.04562864080071449,
- 0.041627272963523865, 0.10021700710058212, 0.07615792006254196, -0.058215972036123276,
- -0.027693556621670723, 0.017953207716345787, -0.03099858947098255, 0.09966719895601273,
- -0.10934177786111832, -0.072178915143013, 0.010396637953817844, -0.025527499616146088,
- 0.6574415564537048, 0.10895469039678574, 0.20079781115055084, 0.0031050380785018206,
- -0.041734274476766586, 0.1818065196275711, 0.020775673910975456, 0.05441487953066826,
- -0.06620029360055923, -0.03004228137433529, 0.04379817470908165, -0.10402955859899521,
- -0.05459025129675865, 0.026957107707858086, 0.035577442497015, 0.1105513796210289,
- 0.04378499090671539, 0.07633965462446213, -0.004780626855790615, -0.13649095594882965,
- -0.01006768736988306, 0.07777775824069977, -0.017528198659420013, -0.11795562505722046,
- -0.05388183891773224, 0.044161856174468994, 0.11176643520593643, -0.08889108896255493,
- 0.012462208978831768, -0.06800876557826996, 0.043368831276893616, -0.01734563149511814,
- 0.028409307822585106, -0.05513584613800049, 0.028410984203219414, 0.051350370049476624,
- 0.0779438391327858, -0.0009235245524905622, -0.12776066362857819, -0.0421837717294693,
- 0.11873916536569595, -0.00412642490118742, -0.04190683737397194, 0.04604390636086464,
- -0.09119801968336105, 0.040110792964696884, 0.008689279668033123, 0.1259952038526535,
- -0.12181994318962097, -0.002491861814633012, 0.019349532201886177,
- -0.019711287692189217, 0.07538966089487076, -0.0008070675539784133,
- -0.06013387441635132, -0.052833542227745056, 0.06297709792852402, 0.018687956035137177,
- 0.09589562565088272, 0.08756550401449203, -0.05584476515650749, 0.05105406418442726,
- 0.09479712694883347, -0.002266994910314679, -0.005697420332580805, 0.06184244155883789,
- 0.09860550612211227, 0.012268607504665852, -0.0019794709514826536, 0.08243004232645035,
- -0.020642923191189766, 0.0546889491379261, 0.00272223143838346, 0.06339672207832336,
- 0.00660644331946969, -0.06768328696489334, 0.03138343617320061, 0.01755414344370365,
- 0.014989729039371014, 0.10635373741388321, -0.06845629215240479, -0.07979651540517807,
- -0.005321316886693239, -0.011761918663978577, -0.028632760047912598,
- -0.0278046652674675, 0.09671389311552048, 0.053809553384780884, 0.11038518697023392,
- 0.060841795057058334, 0.04189346730709076, 0.041780415922403336, 0.061500951647758484,
- 0.042873308062553406, 0.06709248572587967, -0.026571093127131462, -0.06897372752428055,
- -0.02162165939807892, 0.003045652061700821, 0.040622662752866745, 0.04168562963604927,
- -0.07183470577001572, -0.047108132392168045, -0.054447829723358154,
- -0.017504869028925896, -0.07419838011264801, -0.04221675172448158,
- -0.004033360164612532, 0.053622085601091385, -0.025404853746294975,
- -0.07839354872703552, -0.10860689729452133, 0.037035729736089706, 0.053717587143182755,
- -0.00032656651455909014, -0.016118483617901802, -0.11090698093175888,
- 0.0025020469911396503, -0.06801644712686539, 0.04155188426375389, -0.009827463887631893,
- -0.0019407720537856221, -0.010711821727454662, -0.06457214802503586,
- -0.00013296896941028535, -0.019421307370066643, 0.015199679881334305,
- -0.06161342188715935, -0.0639195665717125, -0.01149661187082529, -0.024741241708397865,
- 0.026854759082198143, -0.02614484168589115, 0.05844182148575783, 0.017220837995409966,
- 0.04612492397427559, 0.008036038838326931, -0.06380394101142883, 0.07852103561162949,
- -0.021769123151898384, -0.019857915118336678, 0.0927295982837677, -0.021482082083821297,
- 0.04640096426010132, 0.03234294429421425, -0.12113147228956223, -0.0207920353859663,
- 0.006018484476953745, -0.04605080187320709, 0.051671501249074936, -0.03186888247728348,
- 0.01271860022097826, -0.027216097339987755, 0.0033209065441042185, 0.07471130043268204,
- -0.04141537472605705, -0.07010827213525772, -0.1031217947602272, 0.11338251084089279,
- 0.003999937325716019, -0.018175967037677765, 0.02110316790640354, -0.06925470381975174,
- 0.04427216947078705, -0.02384880743920803, 0.004945583175867796, -0.0014955266378819942,
- 0.0385298989713192, -0.02765173278748989, 0.019552065059542656, 0.03937189653515816,
- -0.03241363540291786, 0.002870050957426429, 0.07055786997079849, 0.4341706335544586,
- -0.19781292974948883, 0.07827583700418472, 0.1154954731464386, 0.027920519933104515,
- 0.07458988577127457, -0.03954346850514412, 0.06881649047136307, 0.08232419937849045,
- 0.10303691774606705, 0.09852093458175659, -0.020357733592391014, -0.001429623574949801,
- -0.06525155156850815, 0.12300839275121689, -0.0013923406368121505, 0.03202150762081146,
- -0.032457951456308365, -0.07909149676561356, -0.03918337821960449, 0.057938676327466965,
- -0.06732882559299469, 0.007763950619846582, 0.038276027888059616, -0.08345236629247665,
- 0.0011759273475036025, 0.006194645538926125, 0.023265473544597626, -0.04314267262816429,
- 0.0009191257995553315, -0.013769131153821945, 0.0621771365404129, 0.022295556962490082,
- 0.0479186587035656, -0.10398811101913452, 0.01610640622675419, -0.09794297069311142,
- -0.09355772286653519, 0.07803358882665634, -0.04251654073596001, 0.04502493515610695,
- 0.03876504302024841, -0.02578839473426342, 0.02422165870666504, -0.03884905204176903,
- -0.0665605440735817, 0.03834448382258415, 0.07775253057479858, 0.04394553601741791,
- 0.08974947780370712, 0.14791084825992584, -0.054233577102422714, -0.07501107454299927,
- -0.08122760057449341, 0.07729170471429825, 0.10335848480463028, -0.03713320568203926,
- -0.012560681439936161, -0.018606023862957954, -0.012482047080993652,
- 0.0013191658072173595, -0.07569370418787003, -0.05163935199379921, 0.026874756440520287,
- -0.014700513333082199, 0.05641365051269531, 0.0021798484958708286,
- -0.024296892806887627, -0.18234634399414062, 0.008140099234879017, -0.03132346644997597,
- -0.004342312458902597, 0.14920637011528015, -0.03912321478128433,
- -0.0010527274571359158, 0.027952490374445915, -0.027875909581780434,
- 0.02879565767943859, -0.08964290469884872, 0.04845280572772026, -0.0511544793844223,
- 0.05294632539153099, 0.06929484009742737, 0.04516828432679176, -0.03925290331244469,
- 0.08071484416723251, -0.1020359992980957, 0.0619577020406723, 0.05744814872741699,
- 0.007358393166214228, 0.03342432901263237, -0.02008100040256977, 0.05982254818081856,
- 0.03318222984671593, -0.053091373294591904, 0.04222239553928375, -0.023277655243873596,
- -0.06502697616815567, -0.07415390759706497, -0.06263896822929382, -0.04931623861193657,
- -0.09960521012544632, 0.0721311867237091, -0.1182551383972168, -0.018353616818785667,
- -0.039249878376722336, -0.01008580718189478, 0.041348423808813095, 0.04642811045050621,
- 0.048521652817726135, -0.15336348116397858, 0.04729902371764183, -0.009507707320153713,
- 0.06769583374261856, -0.01599358767271042, -0.04395825043320656, -0.005377563182264566,
- 0.07914131879806519, 0.07181929796934128, 0.010658101178705692, 0.01778450608253479,
- -0.06048018857836723, 0.015480119735002518, -0.1066713035106659, -0.46538904309272766,
- 0.0710475742816925, 0.0006828438490629196, 0.04289499297738075, 0.01709592528641224,
- -0.03736712411046028, 0.03541598096489906, 0.0030010377522557974, -0.05572591349482536,
- 0.10196566581726074, -0.05309203639626503, 0.011389234103262424, 0.0166305024176836,
- -0.06896571069955826, -0.04488841071724892, -0.051896363496780396, -0.05697568133473396,
- 0.05177700147032738, -0.01781439781188965, -0.07451017946004868, -0.08725007623434067,
- 0.017146442085504532, -0.011006842367351055, 0.060402270406484604,
- -0.015398278832435608, 0.03441986069083214, -0.05619804561138153, -0.02162693627178669,
- 0.05815057083964348, 0.06983788311481476, 0.0378241129219532, -0.051056697964668274,
- -0.017635753378272057, 0.04317669942975044, -0.02658385969698429, 0.14434169232845306,
- -0.007436608429998159, 0.029653191566467285, -0.0822734609246254, 0.07729511708021164,
- 0.05843479558825493, 0.1832030862569809, -0.016113439574837685, 0.049368128180503845,
- 0.052950356155633926, 0.16902513802051544, 0.04697112739086151, 0.01670709252357483,
- -0.027798635885119438, -0.013410349376499653, 0.032953061163425446,
- -0.010509458370506763, 0.04895688220858574, -0.08171764761209488, -0.04019199311733246,
- -0.03751422464847565, -0.026567110791802406, -0.0197515357285738, 0.03664198890328407,
- 0.22626785933971405, 0.032213713973760605, 0.02851000614464283, -0.015549751929938793,
- -0.08226604014635086, -0.01088599395006895, -0.03247896209359169, -0.10370361059904099,
- 0.007411906495690346, -0.009508538991212845, 0.004555700346827507,
- -0.034959036856889725, -0.14749616384506226, 0.0018804344581440091,
- 0.011135201901197433, -0.01673091948032379, 0.10393598675727844, 0.008372431620955467,
- 0.057869624346494675, -0.03303179889917374, 0.11413552612066269, 0.042819544672966,
- 0.02001742273569107, 0.06300803273916245, 0.07848698645830154, 0.00696900999173522,
- 0.02730788104236126, -0.04767492413520813, -0.061264559626579285, 0.017486635595560074,
- 0.1247057318687439, -0.050495196133852005, 0.0470895916223526, 0.04239819571375847,
- -0.029895327985286713, -0.07725746184587479, 0.04407903924584389,
- -0.0053489659912884235, 0.07342400401830673, -0.4751730263233185, -0.003589319996535778,
- 0.11951524019241333, 0.02073497325181961, 0.03794882073998451, 0.10945889353752136,
- 0.06595826148986816, -0.023810436949133873, -0.03170772269368172, -0.022217316552996635,
- 0.13123077154159546, -0.028924817219376564, 0.043788522481918335, -0.10558313876390457,
- 0.058193594217300415, 0.06662335246801376, -0.01481064036488533, -0.028551461175084114,
- 0.06263252347707748, -0.24808524549007416, -0.0071760606952011585, -0.0419086255133152,
- 0.15153606235980988, 0.047532130032777786, 0.007919887080788612, 0.06140017509460449,
- -0.06600286066532135, 0.011931189335882664, 0.06950031965970993, 0.00016996836347971112,
- 0.05310274660587311, -0.0009343426791019738, -0.024154676124453545, 0.11174259334802628,
- 0.05806036666035652, 0.09839607030153275, -0.0071374718099832535, 12.133002281188965,
- 0.06302378326654434, 0.04215671494603157, -0.089711032807827, 0.059945520013570786,
- -0.07395456731319427, 0.02902793325483799, -0.10039505362510681, 0.08659788221120834,
- 0.12799270451068878, -0.024582624435424805, -0.0377097986638546, -0.01837383210659027,
- -0.10388351231813431, -0.01403532549738884, -0.0772443562746048, -0.06921763718128204,
- -0.01764918863773346, 0.026249602437019348, -0.0338725671172142, 0.002487879479303956,
- 0.03496807813644409, 0.061044976115226746, 0.023039020597934723, -0.0865185335278511,
- 0.04756242409348488, 0.04926168918609619, -0.018155451864004135, -0.012584418058395386,
- 0.0555480420589447, -0.07048352807760239, 0.009669803082942963, 0.046512503176927567,
- 0.03249184414744377, -0.02944883145391941, 0.07854171842336655, 0.06401069462299347,
- 0.06656511127948761, 0.0022290400229394436, 0.0813307911157608, 0.02756844274699688,
- 0.026247374713420868, 0.03740322217345238, 0.02019508369266987, 0.0558764673769474,
- 0.045274123549461365, 0.0646575316786766, 0.11177936941385269, 0.02626306377351284,
- 0.051381442695856094, 0.09291671961545944, -0.045543063431978226, 0.15053506195545197,
- 0.003683993825688958, -0.010843251831829548, 0.043388377875089645, 0.009020050056278706,
- -0.05076246336102486, 0.06947194039821625, 0.10192245244979858, -0.06082254648208618,
- 0.10150410979986191, 0.005581576842814684, 0.11662255972623825, -0.03725628927350044,
- 0.06768832355737686, 0.08681220561265945, 0.05736920237541199, -0.13127903640270233,
- -0.10780742019414902, 0.058523114770650864, -0.10708511620759964, -0.0626268982887268,
- 0.05570412054657936, 0.1010834351181984, -0.03582512214779854, 0.05740678682923317,
- -0.05241876840591431, -0.0013575325720012188, -0.043098967522382736,
- -0.025468550622463226, 0.03890644758939743, 0.01594460941851139, 0.04052767530083656,
- 0.06574969738721848, 0.008202078752219677, 0.06509876996278763, 0.08135797828435898,
- -0.012951680459082127, -0.12060930579900742, -0.10141711682081223, 0.10321342945098877,
- -0.05454031750559807, -0.08241353929042816, 0.030514979735016823, -0.06740925461053848,
- 0.06766025722026825, -0.15625201165676117, 0.052571702748537064, 0.10660888999700546,
- -0.09110444039106369, -0.005104621406644583, -0.023493928834795952, 0.05576161667704582,
- -0.01604771427810192, 0.050986047834157944, -0.06491561979055405, 0.018561525270342827,
- 0.026451220735907555, 0.038601119071245193, -0.039186879992485046, 0.05899137258529663,
- 0.09257140010595322, -0.07737382501363754, 0.06546632200479507, 0.07431016117334366,
- -0.05075228586792946, -0.0664292722940445, 0.06383334845304489, 0.06225116178393364,
- -0.08028408139944077, -0.06327167898416519, -0.027896052226424217,
- -0.025852665305137634, -0.033572908490896225, -0.03866065666079521, 0.00895561184734106,
- 0.0501009076833725, -0.08011714369058609, -0.014417835511267185, 0.015637310221791267,
- 0.009734165854752064, 0.09549033641815186, -0.013892676681280136, 0.07682129740715027,
- -0.10300192981958389, -0.0340036116540432, 0.04703579843044281, 0.06679344922304153,
- 0.07487503439188004, -0.03147318586707115, -0.008631392382085323, -0.05438721179962158,
- -0.1109774112701416, 0.005471555516123772, 0.1415265053510666, 0.04710252210497856,
- 0.044153809547424316, 0.04134664312005043, -0.1140526756644249, -0.0660429373383522,
- 0.11946066468954086, 0.02481585554778576, 0.020298760384321213, 0.00378018687479198,
- -0.10704150795936584, -0.042024627327919006, 0.16584302484989166, -0.0496954470872879,
- -0.004553094506263733, -0.0043389215134084225, 0.0003773055213969201,
- 0.09875673800706863, 0.10712330788373947, 0.07670199126005173, 0.032431524246931076,
- -0.006528214085847139, -0.011646624654531479, 0.006274012848734856,
- -0.04318128898739815, 0.000035101162211503834, -0.005096045322716236,
- -0.14867350459098816, -0.08049782365560532, 0.021951613947749138, 0.08948683738708496,
- -0.014396298676729202, -0.0771055743098259, 0.0003813061339315027, -0.023035340011119843
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 67,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 20,
- "similarity": 0.9994423389434814
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 71,
- "similarity": 0.9992820620536804
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 25,
- "similarity": 0.9992591142654419
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["David Z. Morris"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1209,
- "source_domain": "fortune.com",
- "submitters": ["Catherine Olsson"],
- "title": "Drunk Tesla Driver Tells Cops Autopilot Was in Charge",
- "url": "http://fortune.com/2018/01/22/tesla-drunk-driver-autopilot/"
- },
- {
- "__typename": "Report",
- "authors": ["Fred Lambert"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1208,
- "source_domain": "electrek.co",
- "submitters": ["Catherine Olsson"],
- "title": "Tesla on Autopilot drove 7 miles with driver drunk asleep, police says",
- "url": "https://electrek.co/2018/12/01/tesla-pulled-over-cops-sleeping-drunk-autopilot/"
- },
- {
- "__typename": "Report",
- "authors": ["Kieren McCarthy"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1207,
- "source_domain": "theregister.co.uk",
- "submitters": ["Catherine Olsson"],
- "title": "Tesla autopilot saves driver after he fell asleep at wheel on the freeway",
- "url": "https://www.theregister.co.uk/2018/12/03/tesla_autopilot_driver/"
- },
- {
- "__typename": "Report",
- "authors": ["James Mills"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1206,
- "source_domain": "driving.co.uk",
- "submitters": ["Catherine Olsson"],
- "title": "Tesla owner filmed in passenger seat using Autopilot says he was \"unlucky one who got caught\"",
- "url": "https://www.driving.co.uk/video/tesla-owner-filmed-passenger-seat-using-autopilot-says-unlucky-one-got-caught/"
- },
- {
- "__typename": "Report",
- "authors": ["Soo Youn"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1205,
- "source_domain": "abcnews.go.com",
- "submitters": ["Catherine Olsson"],
- "title": "Police chased the 'unresponsive' driver of a Tesla S that was on Autopilot for 7 miles in California. How can that happen?",
- "url": "https://abcnews.go.com/US/police-chased-unresponsive-driver-tesla-autopilot-miles-california/story?id=59577677"
- },
- {
- "__typename": "Report",
- "authors": ["Dami Lee"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1204,
- "source_domain": "theverge.com",
- "submitters": ["Catherine Olsson"],
- "title": "Police may have used Tesla’s Autopilot feature to stop driver asleep at the wheel",
- "url": "https://www.theverge.com/2018/12/3/18124017/chp-tesla-autopilot-police-redwood-city-drunk-driver"
- },
- {
- "__typename": "Report",
- "authors": [
- "Joel Patel",
- "Ronan Glon",
- "Stephen Edelstein",
- "Aaron Mamiit",
- "Aj Dellinger"
- ],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1203,
- "source_domain": "digitaltrends.com",
- "submitters": ["Catherine Olsson"],
- "title": "Cops Chased a Tesla for 7 Miles While the Driver Apparently Slept",
- "url": "https://www.digitaltrends.com/cars/cops-chased-a-tesla-for-7-miles-while-the-driver-apparently-slept/"
- },
- {
- "__typename": "Report",
- "authors": ["Olivia Solon"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1202,
- "source_domain": "theguardian.com",
- "submitters": ["Catherine Olsson"],
- "title": "Who's driving? Autonomous cars may be entering the most dangerous phase",
- "url": "https://www.theguardian.com/technology/2018/jan/24/self-driving-cars-dangerous-period-false-security"
- },
- {
- "__typename": "Report",
- "authors": ["Jared Gilmour"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1199,
- "source_domain": "sacbee.com",
- "submitters": ["Catherine Olsson"],
- "title": "Tesla on autopilot drove drunk sleeping man, CA cops say",
- "url": "https://www.sacbee.com/news/state/california/article222465885.html"
- },
- {
- "__typename": "Report",
- "authors": ["Don Sweeney"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1198,
- "source_domain": "sacbee.com",
- "submitters": ["Catherine Olsson"],
- "title": "Drunken driving suspect tells cops his Tesla was on autopilot",
- "url": "https://www.sacbee.com/latest-news/article195643064.html"
- },
- {
- "__typename": "Report",
- "authors": ["Slashdot"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1197,
- "source_domain": "tech.slashdot.org",
- "submitters": ["Catherine Olsson"],
- "title": "A Sleeping Driver's Tesla Led Police On A 7-Minute Chase",
- "url": "https://tech.slashdot.org/story/18/12/02/0013222/a-sleeping-drivers-tesla-led-police-on-a-7-minute-chase"
- },
- {
- "__typename": "Report",
- "authors": ["Ella Vermeulen"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1196,
- "source_domain": "techly.com.au",
- "submitters": ["Catherine Olsson"],
- "title": "The brilliant way cops pulled over a drunk driver passed out in a Tesla on autopilot",
- "url": "https://www.techly.com.au/2018/12/05/brilliant-way-cops-pulled-drunk-driver-passed-self-driving-tesla/"
- },
- {
- "__typename": "Report",
- "authors": ["Proma Khosla"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1195,
- "source_domain": "mashable.com",
- "submitters": ["Catherine Olsson"],
- "title": "Cops struggle to pull over allegedly drunk, sleeping Tesla driver",
- "url": "https://mashable.com/article/tesla-driver-sleeping-drinking/#YFQkJ7G4sgqy"
- },
- {
- "__typename": "Report",
- "authors": ["Jay Ramey"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1194,
- "source_domain": "autonews.com",
- "submitters": ["Catherine Olsson"],
- "title": "Tesla on Autopilot drove 7 miles with sleeping drunken driver, police say",
- "url": "https://www.autonews.com/article/20181203/MOBILITY/181209922/tesla-on-autopilot-drove-7-miles-with-sleeping-drunken-driver-police-say"
- },
- {
- "__typename": "Report",
- "authors": ["Eileen Guo"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1192,
- "source_domain": "inverse.com",
- "submitters": ["Catherine Olsson"],
- "title": "Drunk Driver in Tesla Tells Police Officer the Car Was on Autopilot",
- "url": "https://www.inverse.com/article/40391-tesla-driver-gets-dui"
- },
- {
- "__typename": "Report",
- "authors": ["Timothy B. Lee"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1190,
- "source_domain": "arstechnica.com",
- "submitters": ["Catherine Olsson"],
- "title": "It took seven miles to pull over a Tesla with a seemingly asleep driver",
- "url": "https://arstechnica.com/tech-policy/2018/11/cops-pull-over-tesla-cruising-on-a-freeway-with-apparently-asleep-driver/"
- },
- {
- "__typename": "Report",
- "authors": ["Sidd Dhimaan"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1189,
- "source_domain": "topspeed.com",
- "submitters": ["Catherine Olsson"],
- "title": "Someone give the Autopilot a cape already",
- "url": "https://www.topspeed.com/cars/car-news/tesla-model-s-drove-on-autopilot-and-saved-the-drunk-driver-s-life-ar183649.html"
- },
- {
- "__typename": "Report",
- "authors": ["James Allen"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1188,
- "source_domain": "driving.co.uk",
- "submitters": ["Catherine Olsson"],
- "title": "Drunk Tesla driver caught asleep behind the wheel at 70mph",
- "url": "https://www.driving.co.uk/news/drunk-tesla-driver-caught-asleep-behind-wheel-70mph/"
- },
- {
- "__typename": "Report",
- "authors": ["Matthew Humphries"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1187,
- "source_domain": "entrepreneur.com",
- "submitters": ["Catherine Olsson"],
- "title": "Police Catch Tesla Autopilot Driving Home Sleeping Drunk",
- "url": "https://www.entrepreneur.com/article/324225"
- },
- {
- "__typename": "Report",
- "authors": ["Domenick Yoney"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1186,
- "source_domain": "insideevs.com",
- "submitters": ["Catherine Olsson"],
- "title": "Watch How Cops Use Tesla Autopilot To Stop Alleged Drunk Driver",
- "url": "https://insideevs.com/cops-use-tesla-autopilot-stop-dui-video/"
- },
- {
- "__typename": "Report",
- "authors": ["Ryan Whitwam"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1185,
- "source_domain": "extremetech.com",
- "submitters": ["Catherine Olsson"],
- "title": "Police Pull Over Self-Driving Tesla with Sleeping Man Behind the Wheel",
- "url": "https://www.extremetech.com/extreme/281603-police-pull-over-self-driving-tesla-with-sleeping-man-behind-the-wheel"
- },
- {
- "__typename": "Report",
- "authors": ["Bryan Logan"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1183,
- "source_domain": "businessinsider.com.au",
- "submitters": ["Catherine Olsson"],
- "title": "Police in the San Francisco Bay Area took an unusual approach to stop a Tesla operating on Autopilot as a drunk driver slept behind the wheel",
- "url": "https://www.businessinsider.com.au/police-stopped-an-autopilot-driven-tesla-with-drunk-driver-asleep-2018-11?r=US\u0026IR=T"
- },
- {
- "__typename": "Report",
- "authors": ["Alex Davies"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1182,
- "source_domain": "wired.com",
- "submitters": ["Catherine Olsson"],
- "title": "A Sleeping Tesla Driver Highlights Autopilot's Biggest Flaw",
- "url": "https://www.wired.com/story/tesla-sleeping-driver-dui-arrest-autopilot/"
- },
- {
- "__typename": "Report",
- "authors": ["Ashley McBride", "J.D. Morris"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1181,
- "source_domain": "sfchronicle.com",
- "submitters": ["Catherine Olsson"],
- "title": "CHP: Drunk driver slept while Tesla appeared to drive Hwy 101 on autopilot",
- "url": "https://www.sfchronicle.com/crime/article/Drunk-driver-slept-while-Tesla-drove-Hwy-101-on-13435295.php"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "knightscope",
- "name": "Knightscope"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "knightscope",
- "name": "Knightscope"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "knightscope",
- "name": "Knightscope"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [
- 1239, 1238, 1237, 1236, 1235, 1234, 1233, 1232, 1231, 1230, 1229, 1228, 1227, 1226,
- 1225, 1224, 1223, 1222, 1221, 1220, 1219, 1218, 1217, 1216, 1215, 1214, 1213, 1212,
- 1211, 1210
- ],
- "vector": [
- -0.08142682909965515, 0.07077188789844513, 0.027575599029660225, -0.14594684541225433,
- 0.06890162080526352, -0.02828349359333515, -0.012350242584943771, 0.04734063521027565,
- 0.0714554488658905, -0.12867021560668945, -0.011669044382870197, 0.05353318899869919,
- 0.012866709381341934, -0.0610860176384449, 0.04032366722822189, -0.05386018380522728,
- -0.08427564054727554, -0.031585533171892166, -0.019994573667645454,
- -0.13919894397258759, -0.06836817413568497, 0.001233282033354044, 0.044400230050086975,
- 0.08981156349182129, -0.050493884831666946, 0.010241762734949589, 0.06887248158454895,
- 0.12014483660459518, -0.06540127843618393, 0.052592311054468155, -0.009016317315399647,
- -0.07946598529815674, 0.12329889088869095, 0.014362539164721966, 0.005585641600191593,
- 0.08684366196393967, 0.026719296351075172, -0.02606992982327938, -0.04161869361996651,
- 0.005446299910545349, 0.007733856327831745, 0.18364420533180237,
- -0.00039478225517086685, -0.02285822480916977, 0.05338812619447708,
- -0.03249698504805565, 0.005932395812124014, 0.04860677197575569, 0.006471988745033741,
- 0.03836895897984505, -0.004075708799064159, 0.04097367823123932, -0.04433681070804596,
- 0.0048526194877922535, -0.11745119094848633, 0.05440445616841316, 0.04730673134326935,
- 0.0419364832341671, 0.06436725705862045, -0.051620859652757645, -0.01634439267218113,
- -0.17619666457176208, -0.07332462817430496, -0.05305742472410202, 0.04779377207159996,
- -0.07634630799293518, -0.03700486943125725, 0.038866084069013596, 0.01928406022489071,
- 0.06635621190071106, 0.04217155650258064, -0.01835196651518345, 0.00783796887844801,
- -0.0028940679039806128, -0.00759276794269681, 0.00804046168923378, -0.00296460441313684,
- 0.2233126014471054, -0.12358681112527847, 0.01651623472571373, 0.11350560933351517,
- -0.10587562620639801, 0.3642567992210388, 0.0023506556171923876, -0.012276955880224705,
- -0.03895939141511917, 0.08740420639514923, 0.03148350864648819, 0.041201140731573105,
- 0.04568430408835411, -0.002093641320243478, 0.03937731683254242, -0.029759900644421577,
- 0.022861609235405922, 0.054063580930233, 0.036581799387931824, -0.008417556062340736,
- 0.023702235892415047, -0.004838664550334215, -0.052844781428575516,
- -0.013659494929015636, -0.046195998787879944, 0.07564909756183624, 0.07001150399446487,
- -0.010620859451591969, -0.028507405892014503, 0.08179686218500137, -0.06659435480833054,
- 0.07875238358974457, -0.06349039077758789, 0.019973792135715485, -0.011317115277051926,
- 0.06373633444309235, 0.005729430355131626, 0.03606549650430679, -0.0593532957136631,
- 0.012846660800278187, 0.05758224055171013, 0.10228715091943741, 0.04128514602780342,
- 0.0038574275095015764, 0.059340015053749084, 0.06536626070737839, -0.05097543075680733,
- -0.0035211059730499983, -0.07237156480550766, -0.061322908848524094,
- -0.013681197538971901, -0.018498841673135757, 0.03967926651239395, -0.04614199697971344,
- -0.21645401418209076, 0.028246423229575157, 0.08554315567016602, -0.0007513550226576626,
- -0.0217732060700655, 0.04271498695015907, -0.06979454308748245, 0.042886100709438324,
- -0.030745653435587883, -0.05665523558855057, 0.07363022863864899, 0.018956346437335014,
- 0.04591861739754677, 0.09892763942480087, 0.02764611318707466, -0.03681356459856033,
- -0.0558774396777153, -0.026204532012343407, -0.04088819772005081, 0.09804734587669373,
- -0.13971714675426483, -0.04078961908817291, 0.009822440333664417,
- -0.0054031359031796455, 0.619283139705658, 0.07198138535022736, 0.16435392200946808,
- 0.0001470194838475436, -0.025301869958639145, 0.15596993267536163,
- -0.023889124393463135, 0.05144206061959267, -0.05361374095082283, -0.05619921535253525,
- 0.024383598938584328, -0.06829912960529327, -0.042419612407684326, 0.05307379737496376,
- 0.03523821756243706, 0.09287230670452118, 0.03786260634660721, 0.08824941515922546,
- 0.005257383920252323, -0.09420391917228699, -0.04268094524741173, 0.053906913846731186,
- 0.013353798538446426, -0.12204910069704056, -0.034868352115154266, 0.04830740764737129,
- 0.09953603893518448, -0.09367238730192184, 0.00188404880464077, -0.04627291113138199,
- 0.02897983230650425, -0.019450010731816292, 0.0560661219060421, -0.030025044456124306,
- 0.03997643291950226, 0.04960723966360092, 0.05129891261458397, -0.004564028698951006,
- -0.07407646626234055, -0.014082684181630611, 0.1282927393913269, -0.009859639219939709,
- -0.02061408944427967, 0.07353746891021729, -0.08809791505336761, 0.017277562990784645,
- -0.026377325877547264, 0.141130268573761, -0.12470690160989761, 0.01928657479584217,
- 0.014625459909439087, 0.0023255711421370506, 0.04274619743227959, 0.011949206702411175,
- -0.07093074917793274, -0.05493692681193352, 0.06565633416175842, 0.033539142459630966,
- 0.0444304421544075, 0.05292921140789986, -0.042580701410770416, 0.04765939712524414,
- 0.055629074573516846, -0.005814837757498026, -0.033647194504737854, 0.05097775533795357,
- 0.03898315504193306, -0.04377742484211922, -0.017219025641679764, 0.009909231215715408,
- 0.036499835550785065, 0.031820379197597504, 0.0033216169103980064, 0.06115232780575752,
- -0.011324940249323845, -0.043932318687438965, 0.029373250901699066,
- 0.022835563868284225, 0.006208519916981459, 0.07722670584917068, -0.0622725710272789,
- -0.04842280596494675, -0.03423158824443817, -0.030840793624520302, 0.012548355385661125,
- -0.055918630212545395, 0.0945933386683464, 0.08559735864400864, 0.08186891674995422,
- 0.04569471254944801, 0.035359181463718414, 0.03968450799584389, 0.05907044559717178,
- 0.009961926378309727, 0.02760670706629753, -0.030667224898934364, -0.05496380478143692,
- -0.023297764360904694, -0.009710757061839104, 0.012894718907773495, 0.04227941483259201,
- -0.08647941797971725, -0.03344647213816643, -0.035956740379333496, -0.01619190163910389,
- -0.07937514036893845, -0.023282725363969803, 0.0345558263361454, 0.011047640815377235,
- -0.06173969805240631, -0.10602206736803055, -0.1043023094534874, 0.009414064697921276,
- 0.07885720580816269, -0.03702395409345627, -0.02131563425064087, -0.11962593346834183,
- 0.024578381329774857, -0.01522614061832428, 0.03396393731236458, -0.00372915412299335,
- 0.008986384607851505, -0.011402050964534283, -0.06361483782529831, 0.0266281608492136,
- -0.001424844958819449, -0.021189136430621147, -0.05593763664364815,
- -0.04549028351902962, -0.040656231343746185, 0.008985370397567749,
- -0.014206073246896267, -0.009241605177521706, 0.03691822290420532, 0.03797261044383049,
- 0.03486838564276695, -0.013339490629732609, -0.009422981180250645, 0.043530724942684174,
- -0.020205847918987274, -0.013229191303253174, 0.06478296965360641, -0.01085257064551115,
- 0.018614839762449265, -0.03936159610748291, -0.10726696997880936, -0.04516981169581413,
- 0.003773656440898776, -0.035648785531520844, 0.04348732903599739, -0.03101203776896,
- 0.006919234991073608, -0.03620066121220589, 0.006427784916013479, 0.06540188193321228,
- -0.04874887317419052, -0.057070765644311905, -0.07077240198850632, 0.10244451463222504,
- -0.006762414239346981, -0.0016585184494033456, 0.019373247399926186,
- -0.06096132844686508, 0.04070815071463585, -0.008133153431117535, -0.01474782545119524,
- 0.0031181881204247475, 0.045219261199235916, -0.017276475206017494,
- 0.0077529349364340305, 0.039504941552877426, 0.003203374333679676, 0.0233461931347847,
- 0.06903088837862015, 0.41809114813804626, -0.25397104024887085, 0.06486251950263977,
- 0.09340666979551315, -0.009628764353692532, 0.0664454773068428, -0.04324094206094742,
- 0.06390582770109177, 0.06313974410295486, 0.10029768943786621, 0.06924491375684738,
- -0.031318310648202896, -0.0014535603113472462, -0.04674641788005829,
- 0.08326210081577301, 0.02274063229560852, 0.011656850576400757, -0.022453131154179573,
- -0.0472235269844532, -0.020953387022018433, 0.002042233245447278, -0.04488866776227951,
- 0.008921400643885136, 0.0032443911768496037, -0.04367232322692871, 0.00817162822932005,
- 0.0593532919883728, 0.04910549148917198, -0.043677203357219696, 0.02105391025543213,
- -0.0018096747808158398, 0.0493534579873085, 0.037431489676237106, 0.040799953043460846,
- -0.10910766571760178, 0.032620642334222794, -0.08024317771196365, -0.09659650176763535,
- 0.07678846269845963, -0.018611513078212738, 0.06239527091383934, 0.04349309206008911,
- -0.022636819630861282, 0.0192731823772192, -0.015241398476064205, -0.049704812467098236,
- 0.02195165865123272, 0.0297204852104187, 0.04409375041723251, 0.05091240257024765,
- 0.15584057569503784, -0.032426055520772934, -0.05247960984706879, -0.09268533438444138,
- 0.0683058649301529, 0.1085050031542778, -0.04628056287765503, -0.0010302010923624039,
- -0.008324221707880497, -0.006968778558075428, 0.0006816850509494543,
- -0.030581781640648842, -0.07981525361537933, -0.022126883268356323,
- -0.03668573871254921, 0.05453769490122795, 0.01088457740843296, -0.03980815410614014,
- -0.18626326322555542, -0.033800482749938965, -0.02120273932814598, 0.02229759469628334,
- 0.1280287206172943, -0.054449740797281265, 0.024537239223718643, 0.021248038858175278,
- -0.006132292095571756, 0.028913525864481926, -0.07072214782238007,
- 0.0035146663431078196, -0.0656883493065834, 0.06312105059623718, 0.06662854552268982,
- 0.03451388329267502, -0.04810886085033417, 0.05557818338274956, -0.08083697408437729,
- 0.05839778110384941, 0.019835013896226883, -0.013536064885556698, 0.06744176894426346,
- -0.040016259998083115, 0.017710046842694283, 0.030055813491344452,
- -0.054965801537036896, 0.023272452875971794, -0.03462158143520355, -0.04413521662354469,
- -0.07125477492809296, -0.06816039234399796, -0.020328950136899948, -0.08376805484294891,
- 0.04927642643451691, -0.09851270169019699, -0.008462169207632542, -0.04027486592531204,
- -0.020576927810907364, 0.024233896285295486, 0.03942537680268288,
- -0.00011460109089966863, -0.13162443041801453, -0.013986571691930294,
- -0.006862550508230925, 0.06945876032114029, -0.024020690470933914, -0.05165416747331619,
- 0.03165237978100777, 0.1258317530155182, 0.056888796389102936, -0.01095278188586235,
- -0.002804860705509782, -0.06347892433404922, 0.050509728491306305, -0.09783260524272919,
- -0.5096462368965149, 0.06826354563236237, 0.017753247171640396, 0.03571723401546478,
- 0.03344147279858589, -0.037654321640729904, 0.03266429156064987, -0.00606898870319128,
- -0.008421593345701694, 0.09764228761196136, -0.05728210136294365, 0.0170258991420269,
- 0.0007236525416374207, -0.04697670787572861, -0.01527559943497181, -0.07220328599214554,
- -0.029741739854216576, 0.03653914853930473, 0.0009723755647428334, -0.07652433216571808,
- -0.08890928328037262, 0.027603648602962494, 0.009820668026804924, 0.024709023535251617,
- -0.020489484071731567, 0.028456080704927444, -0.047220729291439056, -0.0634470283985138,
- 0.041215680539608, 0.03941972553730011, 0.04023952782154083, -0.08338693529367447,
- -0.016118453815579414, 0.05409473553299904, -0.009839317761361599, 0.15004372596740723,
- 0.014530150219798088, -0.002180307637900114, -0.0692242681980133, 0.07373973727226257,
- 0.043555956333875656, 0.18688814342021942, -0.0048785763792693615, 0.0684831291437149,
- 0.0015045643085613847, 0.12261244654655457, 0.04111623764038086, 0.03575257956981659,
- -0.04725896939635277, 0.024942154064774513, -0.005470474250614643, -0.01780509203672409,
- 0.07931017875671387, -0.06517437845468521, -0.03933488950133324, -0.016946863383054733,
- -0.012796320952475071, -0.02634757198393345, 0.018421148881316185, 0.2078179568052292,
- 0.016942251473665237, 0.0406671017408371, 0.00523919565603137, -0.04463261365890503,
- 0.019367346540093422, -0.08978267014026642, -0.05958619341254234, -0.03420821577310562,
- -0.008427401073276997, -0.0035357719752937555, -0.03452438488602638,
- -0.09673032909631729, -0.019785743206739426, 0.00699335802346468, -0.01027233712375164,
- 0.09360967576503754, -0.017969878390431404, 0.03715132921934128, -0.03415416553616524,
- 0.1342291533946991, 0.02821126952767372, 0.006597192957997322, 0.05303984135389328,
- 0.07693246006965637, 0.05332870036363602, -0.0226619653403759, -0.05976672098040581,
- -0.0392640121281147, -0.001699011423625052, 0.1257248967885971, -0.04609345272183418,
- 0.1089138314127922, 0.04594118520617485, -0.0033789838198572397, -0.04626873508095741,
- 0.04858800023794174, 0.0004429059335961938, 0.020872730761766434, -0.49549978971481323,
- -0.022204851731657982, 0.10644838213920593, -0.009801567532122135, 0.02627607434988022,
- 0.10338746756315231, 0.021061062812805176, -0.027699820697307587, -0.016202939674258232,
- -0.0607895627617836, 0.1016421690583229, -0.008311312645673752, 0.08110474050045013,
- -0.09904482215642929, 0.0336449034512043, 0.0670468881726265, -0.003229438792914152,
- 0.002822242910042405, 0.058001816272735596, -0.21914203464984894, 0.014067779295146465,
- -0.018002532422542572, 0.1557665467262268, 0.02059204690158367, 0.02149115316569805,
- 0.05493243783712387, -0.08141695708036423, 0.038243744522333145, 0.05279994755983353,
- 0.022260328754782677, 0.06656114757061005, -0.0026443293318152428, -0.04446340724825859,
- 0.10406994074583054, 0.09567353129386902, 0.09014380723237991, 0.0020546407904475927,
- 11.946163177490234, 0.05873177945613861, 0.06988876312971115, -0.07875844091176987,
- 0.04492967575788498, -0.07235176116228104, 0.021137278527021408, -0.08948210626840591,
- 0.07854441553354263, 0.09635482728481293, -0.000316729856422171, -0.034667689353227615,
- -0.010329421609640121, -0.08653106540441513, 0.0258858110755682, -0.06257547438144684,
- -0.043136585503816605, -0.048849061131477356, 0.012732692994177341,
- -0.05373625457286835, -0.036901772022247314, 0.0747343972325325, 0.06613311916589737,
- 0.03740443289279938, -0.06397402286529541, 0.03284619748592377, 0.027642453089356422,
- -0.015869002789258957, -0.012559696100652218, 0.012415414676070213,
- 0.0047420780174434185, 0.06577669829130173, 0.050691016018390656, 0.02220330759882927,
- 0.010145498439669609, 0.039189185947179794, 0.047634053975343704, 0.05542140081524849,
- 0.012137789279222488, 0.06743809580802917, 0.026442227885127068, 0.023183321580290794,
- 0.010150338523089886, 0.03686036542057991, 0.04948427528142929, 0.05149228498339653,
- 0.0270732082426548, 0.12399648129940033, -0.0030860912520438433, 0.061912648379802704,
- 0.10123508423566818, -0.017656030133366585, 0.10383086651563644, 0.021059103310108185,
- -0.018030904233455658, 0.07868116348981857, -0.007349909748882055, -0.07045342773199081,
- 0.09266693890094757, 0.05404363200068474, -0.044850192964076996, 0.08882220834493637,
- 0.0005432723555713892, 0.11959350854158401, -0.029100636020302773, 0.053126391023397446,
- 0.08938653022050858, 0.059558555483818054, -0.0677705705165863, -0.05892204865813255,
- 0.018530268222093582, -0.10134223848581314, -0.05023020878434181, 0.01860971190035343,
- 0.09922407567501068, -0.013672182336449623, 0.07470547407865524, -0.051333166658878326,
- 0.024080347269773483, -0.04120215028524399, 0.008764339610934258, 0.04608253762125969,
- -0.013235349208116531, 0.004193030763417482, 0.04570954665541649, 0.01982230320572853,
- 0.05385957285761833, 0.08387378603219986, 0.003481368999928236, -0.09573408216238022,
- -0.04966381937265396, 0.12156893312931061, -0.03583671152591705, -0.04311176389455795,
- 0.015204548835754395, -0.03338910639286041, 0.03558200225234032, -0.1287258267402649,
- 0.07483233511447906, 0.11391036212444305, -0.0825299322605133, -0.005494123790413141,
- -0.021775130182504654, 0.05895384028553963, -0.008398225530982018, 0.03578181192278862,
- -0.08254177123308182, 0.0211427453905344, 0.013320863246917725, 0.032810796052217484,
- -0.00782331358641386, 0.0413740910589695, 0.07984992116689682, -0.06645742058753967,
- 0.014762860722839832, 0.07194061577320099, -0.03305725380778313, -0.02175247110426426,
- 0.06579926609992981, 0.026265433058142662, -0.06962598860263824, -0.030392782762646675,
- -0.030763382092118263, -0.05661921948194504, -0.01884797029197216, -0.03492103889584541,
- -0.007906553335487843, 0.015086333267390728, -0.045969534665346146,
- -0.03584815189242363, 0.011700557544827461, 0.04199492558836937, 0.08172944188117981,
- 0.0007199732935987413, 0.055877696722745895, -0.054482199251651764,
- -0.04663264751434326, 0.06448002904653549, 0.07549897581338882, 0.07860269397497177,
- -0.02630428411066532, -0.017970792949199677, -0.05154426023364067, -0.09600922465324402,
- 0.01026171911507845, 0.09313642978668213, 0.051164522767066956, 0.030915338546037674,
- 0.041667692363262177, -0.05912361294031143, -0.038501545786857605, 0.07603256404399872,
- 0.029467467218637466, 0.005753506440669298, 0.037557851523160934, -0.06890622526407242,
- -0.029339730739593506, 0.10857313126325607, -0.022316740825772285,
- -0.0030667323153465986, 0.004278115462511778, -0.021687861531972885,
- 0.05088542774319649, 0.08856330811977386, 0.028829235583543777, 0.04214666038751602,
- 0.0051077911630272865, 0.001879596384242177, 0.0026416555047035217,
- -0.019134406000375748, 0.017806025221943855, -0.0121004618704319, -0.10164160281419754,
- -0.0766511932015419, 0.04336387664079666, 0.0728420540690422, 0.0165109783411026,
- -0.11599548161029816, -0.023735670372843742, -0.02262476086616516
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 68,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 51,
- "similarity": 0.9993036985397339
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 16,
- "similarity": 0.9991583228111267
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 24,
- "similarity": 0.9990770816802979
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Lara Pearce"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1239,
- "source_domain": "huffingtonpost.com.au",
- "submitters": ["Anonymous"],
- "title": "Robot Security Guard 'Drowns Itself' In Water Fountain",
- "url": "https://www.huffingtonpost.com.au/2017/07/17/robot-security-guard-drowns-itself-in-water-fountain_a_23034783/"
- },
- {
- "__typename": "Report",
- "authors": ["IFL Science"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": true,
- "report_number": 1238,
- "source_domain": "iflscience.com",
- "submitters": ["Anonymous"],
- "title": "Security Robot Commits Suicide In Fountain Because The World Is Terrible",
- "url": "https://www.iflscience.com/technology/security-robot-commits-suicide-in-fountain-because-the-world-is-terrible/"
- },
- {
- "__typename": "Report",
- "authors": ["Mike Murphy"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1237,
- "source_domain": "qz.com",
- "submitters": ["Anonymous"],
- "title": "The robot revolution has been put on hold",
- "url": "https://qz.com/1031487/knightscopes-security-robot-fell-into-a-pool/"
- },
- {
- "__typename": "Report",
- "authors": ["Antonio Villas-Boas"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1236,
- "source_domain": "businessinsider.com.au",
- "submitters": ["Anonymous"],
- "title": "This robot is designed to keep people safe, but it fell in a fountain and couldn't get up",
- "url": "https://www.businessinsider.com.au/security-robot-fell-in-a-fountain-and-couldnt-get-up-2017-7?r=US\u0026IR=T"
- },
- {
- "__typename": "Report",
- "authors": ["James Titcomb"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1235,
- "source_domain": "telegraph.co.uk",
- "submitters": ["Anonymous"],
- "title": "Security robot 'drowns itself' in office fountain",
- "url": "https://www.telegraph.co.uk/technology/2017/07/18/security-robot-drowns-office-fountain/"
- },
- {
- "__typename": "Report",
- "authors": ["The Guardian"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1234,
- "source_domain": "theguardian.com",
- "submitters": ["Anonymous"],
- "title": "Robot cop found face down in office-block fountain",
- "url": "https://www.theguardian.com/technology/2017/jul/18/robot-cop-found-face-down-office-block-fountain"
- },
- {
- "__typename": "Report",
- "authors": ["Fiona Keating"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": true,
- "report_number": 1233,
- "source_domain": "independent.co.uk",
- "submitters": ["Anonymous"],
- "title": "The 'suicidal robot' that drowned in a fountain didn't kill itself after all",
- "url": "https://www.independent.co.uk/news/world/americas/suicidal-robot-did-not-kill-itself-fountain-accident-loose-brick-surface-a7866856.html"
- },
- {
- "__typename": "Report",
- "authors": ["Christopher Mele"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1232,
- "source_domain": "smh.com.au",
- "submitters": ["Anonymous"],
- "title": "Revealed: how the K5 security robot ended up in a fountain",
- "url": "https://www.smh.com.au/technology/revealed-how-the-k5-security-robot-ended-up-in-a-fountain-20170719-gxdz6s.html"
- },
- {
- "__typename": "Report",
- "authors": ["Joel Hruska"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1231,
- "source_domain": "extremetech.com",
- "submitters": ["Anonymous"],
- "title": "Security Robot Takes Its Own Life in DC Fountain Tragedy",
- "url": "https://www.extremetech.com/electronics/252600-security-robot-takes-life-dc-fountain-tragedy"
- },
- {
- "__typename": "Report",
- "authors": ["Jessica Miley", "Loukia Papadopoulos", "Taylor Donovan Barnett"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1230,
- "source_domain": "interestingengineering.com",
- "submitters": ["Anonymous"],
- "title": "A Robot Security Guard Just Drowned Itself by Driving into a Water Fountain",
- "url": "https://interestingengineering.com/robot-security-guard-drowned-itself-driving-into-a-water-fountain"
- },
- {
- "__typename": "Report",
- "authors": ["Priya Pathak"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1229,
- "source_domain": "indiatoday.in",
- "submitters": ["Anonymous"],
- "title": "DC security robot can't take the job pressure, jumps in pool to end itself",
- "url": "https://www.indiatoday.in/technology/news/story/dc-security-robot-cant-take-the-job-pressure-jumps-in-pool-to-end-itself-1024976-2017-07-18"
- },
- {
- "__typename": "Report",
- "authors": ["Trevor Mogg"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1228,
- "source_domain": "digitaltrends.com",
- "submitters": ["Anonymous"],
- "title": "A Security Robot Called Steve Rolled Into a Pool and Drowned",
- "url": "https://www.digitaltrends.com/cool-tech/security-robot-steve/"
- },
- {
- "__typename": "Report",
- "authors": ["Jessica Chia"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1227,
- "source_domain": "dailymail.co.uk",
- "submitters": ["Anonymous"],
- "title": "Knightscope security robot goes viral after fountain fall",
- "url": "https://www.dailymail.co.uk/news/article-4707446/Security-robot-goes-viral-falling-fountain.html"
- },
- {
- "__typename": "Report",
- "authors": ["Greg Nichols"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1226,
- "source_domain": "zdnet.com",
- "submitters": ["Anonymous"],
- "title": "11 robot fails, flubs, and pratfalls from the past year",
- "url": "https://www.zdnet.com/pictures/10-robot-fails-flubs-and-pratfalls-from-the-past-year/8/"
- },
- {
- "__typename": "Report",
- "authors": ["Adam Downer"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1225,
- "source_domain": "knowyourmeme.com",
- "submitters": ["Anonymous"],
- "title": "Robot Drowns Itself In Washington D.C. Pool",
- "url": "https://knowyourmeme.com/news/security-robot-drowns-itself-prompting-twitter-investigation"
- },
- {
- "__typename": "Report",
- "authors": ["Colin Dwyer"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1224,
- "source_domain": "npr.org",
- "submitters": ["Anonymous"],
- "title": "When Robot Face-Plants In Fountain, Onlookers Show Humanity - By Gloating",
- "url": "https://www.npr.org/sections/thetwo-way/2017/07/18/537905142/when-robot-face-plants-in-fountain-onlookers-show-humanity-by-gloating"
- },
- {
- "__typename": "Report",
- "authors": ["Globe Staff"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1223,
- "source_domain": "bostonglobe.com",
- "submitters": ["Anonymous"],
- "title": "That robot that patrols the Pru? One of its brothers fell into a fountain in D.C.",
- "url": "https://www.bostonglobe.com/metro/2017/07/18/that-robot-that-patrols-pru-one-its-brothers-fell-into-fountain/BsKaWyeoLkvjUuVT6iUbUM/story.html"
- },
- {
- "__typename": "Report",
- "authors": ["Andrew Griffin"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1222,
- "source_domain": "independent.co.uk",
- "submitters": ["Anonymous"],
- "title": "Suicidal robot security guard drowns itself by driving into pond",
- "url": "https://www.independent.co.uk/life-style/gadgets-and-tech/news/robot-security-guard-kill-itself-washington-dc-pond-drive-into-georgetown-waterfront-shopping-centre-a7846641.html"
- },
- {
- "__typename": "Report",
- "authors": ["Ashley May"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1221,
- "source_domain": "usatoday.com",
- "submitters": ["Anonymous"],
- "title": "Security robot drowns in a fountain",
- "url": "https://www.usatoday.com/story/news/nation-now/2017/07/19/rip-steve-security-robot-who-drowned-fountain/491227001/"
- },
- {
- "__typename": "Report",
- "authors": ["Natt Garun", "Michael Nagle", "Bloomberg"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1220,
- "source_domain": "cnbc.com",
- "submitters": ["Anonymous"],
- "title": "DC security robot K5 quits job by drowning itself in a fountain",
- "url": "https://www.cnbc.com/2017/07/18/dc-security-robot-k5-drowns-in-fountain.html"
- },
- {
- "__typename": "Report",
- "authors": ["April Glaser"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1219,
- "source_domain": "slate.com",
- "submitters": ["Anonymous"],
- "title": "A Robot Security Guard Rolled Its Way Into a Fountain",
- "url": "https://slate.com/technology/2017/07/a-knightscope-robot-security-guard-rolled-into-a-fountain.html"
- },
- {
- "__typename": "Report",
- "authors": ["Sebastian Anthony"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": true,
- "report_number": 1218,
- "source_domain": "arstechnica.com",
- "submitters": ["Anonymous"],
- "title": "Security guard robot ends it all by throwing itself into a watery grave",
- "url": "https://arstechnica.com/gadgets/2017/07/knightscope-k5-security-bot-drowned/"
- },
- {
- "__typename": "Report",
- "authors": ["Lee Moran"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1217,
- "source_domain": "huffingtonpost.com",
- "submitters": ["Anonymous"],
- "title": "This Robot Was Meant To Patrol An Office Building. Instead, It Fell Into A Fountain.",
- "url": "https://www.huffingtonpost.com/entry/security-robot-drowns-washington-harbour_us_596dd488e4b010d77673776f"
- },
- {
- "__typename": "Report",
- "authors": ["Stuff"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1216,
- "source_domain": "stuff.co.nz",
- "submitters": ["Anonymous"],
- "title": "Washington DC security robot drowns in fountain, internet erupts",
- "url": "https://www.stuff.co.nz/technology/gadgets/94866822/washington-dc-security-robot-drowns-in-pool-internet-erupts"
- },
- {
- "__typename": "Report",
- "authors": ["Joseph Hincks"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1215,
- "source_domain": "time.com",
- "submitters": ["Anonymous"],
- "title": "Security Robot Drowns in Fountain to Internet's Amusement",
- "url": "http://time.com/4862263/security-robot-fountain-knightscope-k5/"
- },
- {
- "__typename": "Report",
- "authors": ["Jake Swearingen"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1214,
- "source_domain": "nymag.com",
- "submitters": ["Anonymous"],
- "title": "Robot Security Guard Commits Suicide in Public Fountain",
- "url": "http://nymag.com/intelligencer/2017/07/robot-security-guard-commits-suicide-in-public-fountain.html"
- },
- {
- "__typename": "Report",
- "authors": ["Mallory Locklear"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1213,
- "source_domain": "engadget.com",
- "submitters": ["Anonymous"],
- "title": "DC security robot says everything is fine, throws itself into pool",
- "url": "https://www.engadget.com/2017/07/17/dc-security-robot-throws-itself-into-pool/"
- },
- {
- "__typename": "Report",
- "authors": ["Nancy Coleman"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1212,
- "source_domain": "edition.cnn.com",
- "submitters": ["Anonymous"],
- "title": "Security robot 'in critical condition' after nearly drowning on the job",
- "url": "https://edition.cnn.com/2017/07/18/us/security-robot-drown-trnd/index.html"
- },
- {
- "__typename": "Report",
- "authors": ["Simon Sharwood"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1211,
- "source_domain": "theregister.co.uk",
- "submitters": ["Anonymous"],
- "title": "Security robot falls into pond after failing to spot stairs or water",
- "url": "https://www.theregister.co.uk/2017/07/18/knightscope_k5_falls_into_pond/"
- },
- {
- "__typename": "Report",
- "authors": ["Natt Garun"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1210,
- "source_domain": "theverge.com",
- "submitters": ["Anonymous"],
- "title": "DC security robot quits job by drowning itself in a fountain",
- "url": "https://www.theverge.com/tldr/2017/7/17/15986042/dc-security-robot-k5-falls-into-water"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "skh-metals",
- "name": "SKH Metals"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "unknown",
- "name": "Unknown"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "ramji-lal",
- "name": "Ramji Lal"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1253, 1252, 1250, 1249, 1248, 1247, 1246, 1245, 1244, 1243, 1241, 1240],
- "vector": [
- -0.10612564533948898, 0.06773683428764343, 0.023354215547442436, -0.1280996948480606,
- 0.0698397234082222, -0.045791447162628174, 0.009958155453205109, 0.027755139395594597,
- 0.052329108119010925, -0.1476966291666031, -0.011485359631478786, 0.03233238682150841,
- 0.005920733790844679, -0.06411080062389374, 0.04510217905044556, -0.1007346510887146,
- -0.038223203271627426, -0.04933726415038109, 0.006925912108272314, -0.09234399348497391,
- -0.08937788009643555, 0.0412219874560833, 0.05015309154987335, 0.06859052181243896,
- -0.039629507809877396, 0.016860539093613625, 0.09784658998250961, 0.1263330727815628,
- -0.08327368646860123, 0.028140636160969734, -0.03851065784692764, -0.05792482569813728,
- 0.106881283223629, 0.05660127475857735, 0.010348782874643803, 0.07346749305725098,
- 0.020222285762429237, -0.009651217609643936, -0.027304252609610558,
- -0.005588127300143242, -0.00439539784565568, 0.20392058789730072, 0.01572706736624241,
- -0.11146963387727737, 0.05969609320163727, -0.03399753198027611, 0.045975521206855774,
- 0.05285315588116646, 0.03532081097364426, 0.018983831629157066, -0.036308176815509796,
- 0.1027364656329155, -0.038500748574733734, 0.027311814948916435, -0.1020730510354042,
- 0.06375627219676971, 0.03697093203663826, 0.011244445107877254, 0.09370241314172745,
- -0.09991833567619324, -0.006929439026862383, -0.1844235211610794, -0.07079946249723434,
- -0.1096089780330658, 0.11914936453104019, -0.08777197450399399, -0.056794796139001846,
- 0.008627716451883316, 0.0091403191909194, 0.07816029340028763, 0.039584219455718994,
- -0.029347533360123634, 0.003033673157915473, -0.031269948929548264, 0.02808382175862789,
- 0.0478351004421711, 0.002512178849428892, 0.30339208245277405, -0.14650529623031616,
- -0.030970683321356773, 0.10440980643033981, -0.09832465648651123, 0.4210233986377716,
- 0.008535760454833508, -0.010195446200668812, -0.03314380720257759, 0.1152900978922844,
- 0.03778061270713806, 0.05983055755496025, 0.08812308311462402, 0.0009015732794068754,
- 0.014188334345817566, -0.013369905762374401, 0.010151213966310024, 0.0425543338060379,
- 0.031427450478076935, -0.03139795735478401, 0.10616397857666016, 0.004798407666385174,
- -0.05505847930908203, 0.050891246646642685, -0.030919186770915985, 0.09499549865722656,
- 0.06440191715955734, -0.05197124555706978, -0.018588325008749962, 0.13183508813381195,
- -0.09338555485010147, 0.049272168427705765, -0.0164836123585701, 0.04474503919482231,
- 0.015786366537213326, 0.07616046816110611, -0.014883645810186863, 0.014257186092436314,
- -0.07324524968862534, 0.04115299507975578, 0.07870084792375565, 0.0788271352648735,
- 0.04674820229411125, 0.007119567599147558, 0.03502859175205231, 0.10174837708473206,
- -0.01381643582135439, 0.05478978529572487, -0.029373876750469208, -0.04501703381538391,
- -0.01751670613884926, -0.011028761975467205, 0.021129673346877098, -0.07092258334159851,
- -0.25357335805892944, -0.010506510734558105, 0.05754096433520317, 0.016370300203561783,
- -0.015878640115261078, -0.002316398313269019, -0.04201202467083931,
- 0.049534108489751816, -0.03217516839504242, -0.07054505497217178, 0.06480807811021805,
- 0.03016633354127407, 0.08762770891189575, 0.08676116913557053, 0.0925980880856514,
- -0.007911245338618755, -0.06076471880078316, 0.03300938382744789, 0.004377261269837618,
- 0.13557346165180206, -0.15927112102508545, 0.005860508885234594, 0.014681817032396793,
- -0.026030080392956734, 0.6419768929481506, 0.07398206740617752, 0.18623721599578857,
- 0.02902769297361374, -0.04112524911761284, 0.16275031864643097, 0.017441891133785248,
- 0.038627076894044876, -0.06262191385030746, -0.07120714336633682, 0.011677832342684269,
- -0.06898120790719986, -0.02749664895236492, 0.028964869678020477, 0.02224728651344776,
- 0.12459369748830795, 0.03415133059024811, 0.12432581186294556, -0.014051024802029133,
- -0.07098842412233353, -0.08752638846635818, 0.10517386347055435, 0.0006932662217877805,
- -0.10103842616081238, -0.018201684579253197, 0.053652048110961914, 0.1053692176938057,
- -0.0494837649166584, 0.02207249589264393, -0.026446109637618065, 0.030887125059962273,
- -0.021851984784007072, 0.07578789442777634, -0.023535000160336494, 0.008748031221330166,
- 0.06946320086717606, 0.03128935396671295, 0.03866491839289665, -0.07124219089746475,
- -0.018003465607762337, 0.1536739617586136, 0.0015934532275423408, 0.004219041205942631,
- 0.07716473937034607, -0.11507970839738846, -0.025937803089618683, -0.01525499951094389,
- 0.08541599661111832, -0.06782352179288864, 0.058436319231987, 0.0012893115635961294,
- -0.008940511383116245, 0.10304059833288193, -0.008740364573895931,
- -0.040247950702905655, -0.053741488605737686, 0.077846460044384, 0.016022635623812675,
- 0.03294205293059349, 0.06595099717378616, -0.020107746124267578, 0.05772891268134117,
- 0.11763414740562439, -0.016094084829092026, 0.009364064782857895, 0.04511350020766258,
- 0.04658643901348114, -0.038704048842191696, 0.02534683234989643, 0.0011999019188806415,
- 0.011116236448287964, 0.0074134948663413525, -0.0007843244820833206,
- 0.023437023162841797, -0.005271339323371649, -0.06556981801986694, 0.01597297377884388,
- -0.01701405830681324, 0.003132025944069028, 0.09547385573387146, -0.059284910559654236,
- -0.057230833917856216, -0.036681149154901505, -0.03552546724677086, 0.02621876262128353,
- -0.03016228787600994, 0.12424129247665405, 0.0923474058508873, 0.08965405821800232,
- 0.07666724175214767, 0.024100445210933685, 0.04222593083977699, 0.07681071758270264,
- 0.009572191163897514, 0.029579995200037956, -0.03963166102766991, -0.12041721493005753,
- -0.04269988834857941, 0.00829365011304617, 0.0416007936000824, 0.045824866741895676,
- -0.09701231867074966, -0.028206169605255127, -0.016219232231378555, -0.0610678605735302,
- -0.05489269271492958, -0.0001104427719837986, 0.059466298669576645, 0.06672575324773788,
- -0.015800470486283302, -0.08179447054862976, -0.11977969855070114, 0.03502229228615761,
- 0.06009020283818245, 0.0013491101562976837, -0.010107840411365032, -0.09659957885742188,
- -0.023892151191830635, 0.006084898486733437, 0.04554979130625725,
- -0.0019107582047581673, 0.03800772875547409, 0.007640201132744551, -0.02833743207156658,
- 0.04656662046909332, -0.026891784742474556, -0.029731526970863342, -0.10615849494934082,
- -0.09379195421934128, -0.08129414916038513, 0.02189997024834156, -0.010369162075221539,
- -0.01812911592423916, 0.056474607437849045, 0.04901909455657005, 0.020181694999337196,
- 0.0018780432874336839, -0.02385547012090683, 0.03858533874154091, -0.029903756454586983,
- -0.018674807623028755, 0.08234316110610962, -0.05367012321949005, 0.017956791445612907,
- -0.025197213515639305, -0.04052611067891121, -0.0513811856508255, 0.029069699347019196,
- -0.077006995677948, -0.009523303247988224, -0.03771519660949707, -0.0022854667622596025,
- -0.0034726655576378107, -0.02602151781320572, 0.06675475090742111, -0.07689908891916275,
- -0.04345892369747162, -0.06934774667024612, 0.10653965920209885, 0.027983790263533592,
- -0.013196244835853577, 0.018582114949822426, -0.0087697459384799, 0.010475805960595608,
- -0.0574597530066967, -0.016703085973858833, 0.0032058844808489084, 0.10329383611679077,
- -0.045793306082487106, -0.04948432743549347, 0.022136444225907326, 0.02094821073114872,
- 0.012430592440068722, 0.08471681922674179, 0.44364723563194275, -0.22342760860919952,
- 0.06522372364997864, 0.10104963928461075, 0.015499547123908997, 0.0785544291138649,
- -0.025836147367954254, 0.07863182574510574, 0.060057658702135086, 0.07772394269704819,
- 0.13212130963802338, -0.02546120621263981, -0.0099818529561162, -0.08974603563547134,
- 0.11896961182355881, 0.021248428151011467, 0.023617571219801903, -0.00920196995139122,
- -0.08322050422430038, -0.04337267950177193, -0.0015608742833137512,
- -0.05887598916888237, 0.0017727970844134688, -0.004445433150976896, -0.0693487897515297,
- -0.006546175107359886, 0.05796366557478905, 0.020444190129637718, -0.04407426714897156,
- 0.009295190684497356, -0.08117940276861191, 0.06190701201558113, 0.018628893420100212,
- 0.08110859245061874, -0.147209033370018, 0.06424885988235474, -0.09826865047216415,
- -0.07598330080509186, 0.1330793797969818, -0.01666141301393509, 0.04990788921713829,
- 0.0576297789812088, -0.07343481481075287, 0.005918326321989298, -0.009503496810793877,
- -0.016885660588741302, 0.048246949911117554, 0.06235901638865471, 0.06638627499341965,
- 0.02838246338069439, 0.18749572336673737, -0.05694345757365227, -0.042628075927495956,
- -0.10020969063043594, 0.02486477792263031, 0.18623463809490204, -0.015339314006268978,
- -0.0044246395118534565, -0.03374308720231056, -0.046757251024246216,
- 0.038578007370233536, -0.05903824791312218, -0.08373304456472397, -0.024141570553183556,
- 0.00014317307795863599, 0.07082422822713852, 0.009067773818969727,
- -0.014829845167696476, -0.15586121380329132, -0.005656519904732704, -0.0483243465423584,
- 0.018398599699139595, 0.06167464330792427, -0.05249922350049019, 0.022733591496944427,
- -0.01829688809812069, -0.022013412788510323, 0.07372462749481201, -0.13402016460895538,
- 0.0317968912422657, -0.08216280490159988, 0.04079684615135193, 0.053494226187467575,
- 0.03261954337358475, -0.05358422175049782, 0.03747505694627762, -0.0671466812491417,
- 0.06776659935712814, 0.04569201543927193, 0.02584167756140232, 0.05689506232738495,
- -0.02259121648967266, 0.0171563308686018, 0.037280403077602386, -0.0281419325619936,
- 0.04905552789568901, -0.002116395626217127, -0.03604244068264961, -0.1042962297797203,
- -0.062472160905599594, -0.0020888308063149452, -0.07295209914445877,
- 0.053428541868925095, -0.06666914373636246, -0.055818673223257065,
- -0.016383327543735504, -0.016230573877692223, -0.022190047428011894,
- 0.03298541530966759, 0.06223266199231148, -0.12977872788906097, 0.02434597723186016,
- -0.02074567973613739, 0.08868249505758286, -0.04014955833554268, -0.038683004677295685,
- 0.036142054945230484, 0.14356957376003265, 0.07651184499263763, -0.021164514124393463,
- 0.055174991488456726, -0.07899986952543259, 0.035563286393880844, -0.08512585610151291,
- -0.49835827946662903, 0.0731562003493309, 0.028323834761977196, 0.03918023034930229,
- 0.02564949542284012, -0.032657694071531296, 0.06717447191476822, 0.007221354637295008,
- -0.028230324387550354, 0.09951210767030716, -0.05858105421066284, 0.0011384490644559264,
- -0.006574744358658791, -0.05161336064338684, -0.015310638584196568,
- -0.055513832718133926, -0.047992508858442307, 0.0639096274971962, -0.057457778602838516,
- -0.09960027784109116, -0.16554130613803864, 0.034250836819410324, -0.020629357546567917,
- 0.011322823353111744, -0.04229249432682991, 0.02210777811706066, -0.04820434749126434,
- -0.04413202777504921, 0.06146229803562164, -0.008818737231194973, 0.05613945424556732,
- -0.10519003868103027, -0.03264119476079941, 0.07416083663702011, -0.01982574351131916,
- 0.11588706821203232, 0.007280202116817236, -0.03237074241042137, -0.05913591757416725,
- 0.09009537845849991, 0.06128203868865967, 0.18481774628162384, -0.03654653951525688,
- 0.09188219159841537, -0.03534262254834175, 0.0969972088932991, 0.013698716647922993,
- 0.038574520498514175, -0.04239140450954437, 0.02520550787448883, 0.06452951580286026,
- -0.017474262043833733, 0.09057550877332687, -0.07229769974946976, -0.03609566017985344,
- -0.02019171416759491, 0.020109528675675392, -0.012207633815705776,
- -0.004467195365577936, 0.18599236011505127, 0.018044820055365562, 0.03257889300584793,
- -0.029114671051502228, -0.0527397096157074, 0.040729764848947525, 0.0010484338272362947,
- -0.09579042345285416, -0.04198455438017845, -0.01192663237452507, 0.02215096540749073,
- -0.031269628554582596, -0.1053709164261818, 0.00033968532807193696,
- -0.0031145501416176558, -0.012803888879716396, 0.03685538098216057,
- -0.008683125488460064, -0.004990637768059969, -0.050595540553331375,
- 0.09113505482673645, 0.04956328496336937, 0.018802585080266, 0.045047417283058167,
- 0.08931466937065125, 0.03161155804991722, -0.04278896749019623, -0.040444809943437576,
- -0.05691857263445854, 0.007540072780102491, 0.14688265323638916, -0.03883793577551842,
- 0.10098472982645035, 0.07096832245588303, -0.029910022392868996, -0.0715646743774414,
- -0.00041016199975274503, 0.025450414046645164, 0.04541115090250969, -0.5577544569969177,
- -0.014989553950726986, 0.11539923399686813, -0.009518807753920555,
- -0.021294092759490013, 0.0664134994149208, 0.06520713120698929, -0.04419921711087227,
- 0.03390411287546158, -0.06635484844446182, 0.09209045767784119, -0.023952139541506767,
- 0.08247552067041397, -0.06458646804094315, -0.0011825315887108445, 0.06412319839000702,
- -0.06213890388607979, -0.004536069463938475, 0.03269639611244202, -0.2440202832221985,
- 0.01950874924659729, -0.0694071426987648, 0.16438670456409454, 0.022190064191818237,
- 0.07550128549337387, 0.056832049041986465, -0.06498026102781296, 0.14111767709255219,
- 0.1135045662522316, 0.024650484323501587, 0.05262308195233345, 0.018375007435679436,
- -0.042042434215545654, 0.08028857409954071, 0.07804407924413681, 0.09230192750692368,
- -0.017575008794665337, 12.03359603881836, 0.06235009431838989, 0.06796826422214508,
- -0.08539283275604248, 0.05242281034588814, -0.07644734531641006, 0.019467119127511978,
- -0.13783614337444305, 0.007915917783975601, 0.09532100707292557, 0.01680201105773449,
- -0.0797477588057518, -0.019858431071043015, -0.062295395880937576, 0.016332151368260384,
- -0.05576435104012489, -0.029381999745965004, -0.09541504830121994, 0.05827562138438225,
- -0.08809367567300797, -0.04143885523080826, 0.033205531537532806, 0.06576016545295715,
- 0.049719613045454025, -0.06888006627559662, 0.0523972325026989, 0.0328107550740242,
- -0.04915265366435051, 0.00863770954310894, 0.03422961011528969, -0.00003168559123878367,
- 0.028039902448654175, 0.0027248740661889315, 0.049211252480745316, 0.05571730434894562,
- 0.018647512421011925, 0.0008431623573414981, 0.045325759798288345, 0.05721422657370567,
- 0.08131130039691925, 0.04088517650961876, 0.004127186257392168, 0.050474490970373154,
- 0.057472795248031616, 0.02059457078576088, 0.003749000607058406, 0.011747684329748154,
- 0.12020063400268555, -0.026503147557377815, 0.036254554986953735, 0.07563864439725876,
- -0.001955038169398904, 0.09976383298635483, -0.0021689035929739475,
- 0.021767357364296913, 0.08387003093957901, -0.005461122374981642, -0.06780941784381866,
- 0.0991811528801918, 0.10134785622358322, -0.049506086856126785, 0.0590054988861084,
- 0.011112081818282604, 0.10248316079378128, -0.07532260566949844, 0.05372104048728943,
- 0.12344580143690109, 0.012165079824626446, -0.11264172196388245, -0.0465763658285141,
- 0.029822373762726784, -0.12111321836709976, -0.08369091153144836, 0.005465235095471144,
- 0.05091168358922005, -0.06993544101715088, 0.06582412868738174, -0.06047419086098671,
- -0.006195716559886932, -0.0380583256483078, -0.015716055408120155, 0.036276087164878845,
- -0.06107750162482262, 0.010545309633016586, 0.05344125255942345, 0.05252816900610924,
- 0.09202427417039871, 0.05985593795776367, -0.03806695714592934, -0.09278031438589096,
- -0.1099199578166008, 0.10003756731748581, -0.015399823896586895, -0.06702776998281479,
- 0.005257226061075926, -0.056908831000328064, 0.024441517889499664, -0.18556992709636688,
- 0.06939771771430969, 0.09260684996843338, -0.13648949563503265, -0.003864171914756298,
- -0.049908597022295, 0.04858970642089844, -0.03140893206000328, 0.03379157558083534,
- -0.0860503688454628, 0.017051273956894875, 0.0006170499254949391, 0.044422030448913574,
- -0.030928051099181175, 0.054564569145441055, 0.09948546439409256, -0.06001156195998192,
- 0.06259842962026596, 0.05827203020453453, -0.02782408893108368, -0.031117022037506104,
- 0.041765403002500534, 0.01022192183881998, -0.06482183188199997, -0.047441523522138596,
- -0.06996549665927887, -0.058088768273591995, -0.05823640152812004, -0.03517415001988411,
- -0.0045959907583892345, 0.048847123980522156, -0.07824684679508209,
- -0.002526584779843688, 0.008600335568189621, 0.024078786373138428, 0.056713417172431946,
- 0.021123282611370087, 0.04788069799542427, -0.07262526452541351, -0.03893745318055153,
- 0.059999655932188034, 0.03322934731841087, 0.06508337706327438, -0.010802756994962692,
- -0.03481880575418472, -0.03718464449048042, -0.10096534341573715, 0.011785625480115414,
- 0.11881782859563828, 0.037609100341796875, 0.07307829707860947, 0.049190912395715714,
- -0.06712988764047623, -0.0816052183508873, 0.0872984528541565, 0.05273716524243355,
- 0.016449445858597755, -0.004770699422806501, -0.09244868904352188,
- -0.034266602247953415, 0.14491796493530273, 0.013818343169987202, 0.015943121165037155,
- 0.006149327382445335, 0.029877513647079468, 0.11421283334493637, 0.05048687756061554,
- 0.08814824372529984, 0.03995344415307045, -0.017008095979690552, 0.00388363772071898,
- -0.04960529878735542, -0.014155312441289425, 0.03726052865386009,
- -0.0029759593307971954, -0.13757824897766113, -0.06469471007585526,
- 0.0022331937216222286, 0.0619879849255085, -0.04652689769864082, -0.08801242709159851,
- -0.02546078711748123, -0.03256358206272125
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 69,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 24,
- "similarity": 0.9989807605743408
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 31,
- "similarity": 0.9987372159957886
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 51,
- "similarity": 0.998403787612915
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Team Zigwheels"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1253,
- "source_domain": "zigwheels.com",
- "submitters": ["Anonymous"],
- "title": "Robot kills a man at Haryana's Manesar factory",
- "url": "https://www.zigwheels.com/autogasm/robot-kills-a-man-at-haryanas-manesar-factory/22790/"
- },
- {
- "__typename": "Report",
- "authors": ["Dawood Rehman"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1252,
- "source_domain": "en.dailypakistan.com.pk",
- "submitters": ["Anonymous"],
- "title": "Robot kills India factory worker",
- "url": "https://en.dailypakistan.com.pk/viral/robot-kills-man-at-india-factory/"
- },
- {
- "__typename": "Report",
- "authors": ["RT Staff"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1250,
- "source_domain": "roboticsbusinessreview.com",
- "submitters": ["Anonymous"],
- "title": "Factory Robot Kills Worker in India",
- "url": "https://www.roboticsbusinessreview.com/rbr/factory_robot_kills_worker_in_india/"
- },
- {
- "__typename": "Report",
- "authors": ["Trade Arabia"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1249,
- "source_domain": "tradearabia.com",
- "submitters": ["Anonymous"],
- "title": "Sharp welding sticks in robot kills worker in India",
- "url": "http://www.tradearabia.com/news/INTNEWS_288131.html"
- },
- {
- "__typename": "Report",
- "authors": ["The Independent"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1248,
- "source_domain": "ishn.com",
- "submitters": ["Anonymous"],
- "title": "Welding robot kills worker",
- "url": "https://www.ishn.com/articles/103730-welding-robot-kills-worker"
- },
- {
- "__typename": "Report",
- "authors": ["Rao Jaswant Singh", "Sanjay Yadav"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1247,
- "source_domain": "timesofindia.indiatimes.com",
- "submitters": ["Anonymous"],
- "title": "Terminator redux? Robot kills a man at Haryana's Manesar factory",
- "url": "https://timesofindia.indiatimes.com/india/Terminator-redux-Robot-kills-a-man-at-Haryanas-Manesar-factory/articleshow/48460738.cms"
- },
- {
- "__typename": "Report",
- "authors": ["The Independent"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1246,
- "source_domain": "article.wn.com",
- "submitters": ["Anonymous"],
- "title": "Worker killed by robot in welding accident at car parts factory in India",
- "url": "https://article.wn.com/view/2015/08/13/Worker_killed_by_robot_in_welding_accident_at_car_parts_fact/"
- },
- {
- "__typename": "Report",
- "authors": ["Aakar Patel"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1655942400,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1245,
- "source_domain": "indiatimes.com",
- "submitters": ["Anonymous"],
- "title": "Robot Stabs A Man To Death At A Factory In Haryana's Manesar!",
- "url": "https://www.indiatimes.com/news/india/robot-stabs-a-man-to-death-at-a-factory-in-haryanas-manesar-244108.html"
- },
- {
- "__typename": "Report",
- "authors": ["Larry Alton"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1244,
- "source_domain": "venturebeat.com",
- "submitters": ["Anonymous"],
- "title": "Robots can kill, but can they murder?",
- "url": "https://venturebeat.com/2017/09/06/robots-can-kill-but-can-they-murder/"
- },
- {
- "__typename": "Report",
- "authors": ["DNA Web Team"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1243,
- "source_domain": "dnaindia.com",
- "submitters": ["Anonymous"],
- "title": "Worker killed by robot at an auto factory in Haryana",
- "url": "https://www.dnaindia.com/technology/report-worker-killed-by-robot-at-an-auto-factory-in-haryana-2113915"
- },
- {
- "__typename": "Report",
- "authors": ["Joseph George"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1241,
- "source_domain": "emirates247.com",
- "submitters": ["Anonymous"],
- "title": "Robot kills co-worker in a car factory in India",
- "url": "https://www.emirates247.com/business/technology/robot-kills-co-worker-in-a-car-factory-in-india-2015-08-14-1.600317"
- },
- {
- "__typename": "Report",
- "authors": ["Lizzie Dearden"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1240,
- "source_domain": "independent.co.uk",
- "submitters": ["Anonymous"],
- "title": "Worker killed by robot in welding accident at car parts factory in India",
- "url": "https://www.independent.co.uk/news/world/asia/worker-killed-by-robot-in-welding-accident-at-car-parts-factory-in-india-10453887.html"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "volvo",
- "name": "Volvo"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "volvo",
- "name": "Volvo"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "volvo",
- "name": "Volvo"
- },
- {
- "__typename": "Entity",
- "entity_id": "drivers-in-sweden",
- "name": "drivers in Sweden"
- },
- {
- "__typename": "Entity",
- "entity_id": "drivers-in-jokkmokk",
- "name": "drivers in Jokkmokk"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1260, 1259, 1256, 1255],
- "vector": [
- -0.05592189636081457, 0.1065539475530386, 0.012118581333197653, -0.10594473406672478,
- 0.09563201852142811, -0.06973112840205431, 0.005603072349913418, 0.04121753480285406,
- 0.05062399245798588, -0.10490634106099606, -0.00980126135982573, 0.06064880546182394,
- 0.04329819744452834, -0.09299341216683388, 0.069564257748425, -0.06550279119983315,
- -0.10746684484183788, -0.05823890492320061, 0.000770804937928915, -0.08489846903830767,
- -0.07856894936412573, -0.019255070918006822, 0.0035539255186449736, 0.10284667834639549,
- -0.0657058097422123, 0.022226936416700482, 0.0710847582668066, 0.0707562007009983,
- -0.04226619657129049, 0.05797680001705885, -0.011883775354363024, -0.06437268573790789,
- 0.11448185332119465, 0.02785040345042944, -0.002022525033680722, 0.06352299358695745,
- -0.014225733000785112, -0.022321938769891858, 0.001906913472339511,
- 0.005926566896960139, 0.040143754333257675, 0.24613777920603752, -0.036043268628418446,
- -0.00024793716147542, 0.03810420213267207, -0.04736291989684105, 0.02283875411376357,
- 0.015784914838150144, 0.009272308729123324, 0.04677388956770301, -0.009279773570597172,
- 0.019116665702313185, -0.03960445336997509, 0.022638537921011448, -0.0846758596599102,
- 0.015718142094556242, 0.01183626358397305, 0.019189305137842894, 0.05910072196274996,
- -0.08271191455423832, -0.023053800541674718, -0.18951724469661713,
- -0.056060077622532845, -0.0690305782482028, 0.07778025418519974, -0.09931577928364277,
- -0.046158339362591505, 0.04724331898614764, 0.018340399023145437, 0.064970756880939,
- 0.07914669997990131, -0.06067087221890688, -0.01299308984016534, 0.03496295353397727,
- 0.019022448919713497, -0.004567968979245052, -0.04166827350854874, 0.16003798879683018,
- -0.09998181089758873, -0.01339046168141067, 0.08787485025823116, -0.07242545019835234,
- 0.35866474360227585, -0.006011760677210987, -0.0030776559724472463,
- -0.021931924391537905, 0.11100205965340137, 0.0809358898550272, 0.048389054369181395,
- 0.04853240493685007, -0.019992341054603457, 0.021846077113877982, -0.06396631523966789,
- 0.01107561239041388, 0.07075893227010965, 0.04485252918675542, -0.012468021595850587,
- 0.016256358940154314, -0.012823217199184, -0.04889822192490101, -0.0092616236070171,
- -0.047838213853538036, 0.06684570759534836, 0.06326656183227897, -0.04487637570127845,
- 0.0035639414563775063, 0.07018406130373478, -0.0211691070580855, 0.047912735026329756,
- -0.0773668484762311, 0.030082820216193795, 0.017891530762426555, 0.05205141007900238,
- 0.005509473448910285, 0.005283010890707374, -0.08613750524818897, -0.007520623970776796,
- 0.025526548037305474, 0.0729697048664093, 0.07873256877064705, -0.014776791678741574,
- 0.07235710695385933, 0.0702951400890015, -0.06869987584650517, -0.024900793563574553,
- 0.0005752574361395091, -0.08468702621757984, -0.01173755214404082,
- -0.051690153777599335, 0.06475949194282293, -0.064340447075665, -0.14499698393046856,
- -0.00531838065944612, 0.11761940456926823, -0.006449911277741194, -0.03071249695494771,
- -0.026644598226994276, -0.03608581656590104, 0.044188151601701975, -0.05257768742740154,
- -0.04362214170396328, 0.06851467117667198, 0.024900194723159075, 0.021435433183796704,
- 0.08674378879368305, 0.058692608028650284, -0.03670328436419368, -0.058453695848584175,
- -0.0017489263555034995, -0.04573616059496999, 0.09666305966675282, -0.14058146066963673,
- -0.04311189544387162, 0.016203125240281224, -0.0012727884022751823, 0.7019631117582321,
- 0.11235645227134228, 0.17154674604535103, 0.013949135085567832, -0.05173854902386665,
- 0.1818578541278839, 0.02153136022388935, 0.029813795466907322, -0.0783386267721653,
- -0.07408276200294495, 0.01845217427035095, -0.07759445626288652, -0.022303092759102583,
- 0.04401543457061052, 0.02166259370278567, 0.10163773596286774, 0.047063492238521576,
- 0.04228813434019685, -0.006571293924935162, -0.10419654659926891,
- 0.00016387179493904114, 0.055327318608760834, 0.022270957590080798, -0.1223357692360878,
- -0.022997575346380472, 0.06271999794989824, 0.08651482127606869, -0.1032696794718504,
- -0.020381839072797447, -0.051784487906843424, 0.08506048284471035,
- -0.013047959189862013, 0.07386474031955004, -0.04838937893509865, 0.02606036269571632,
- 0.002325592009583488, 0.043834379874169827, -0.009168918564682826, -0.07735429052263498,
- -0.007940607378259301, 0.11806921474635601, -0.020840194541960955, -0.03189031360670924,
- 0.04182595852762461, -0.07081190403550863, 0.04868120048195124, 0.011371438391506672,
- 0.1428454052656889, -0.11902774311602116, 0.044818616937845945, -0.005478131846757606,
- -0.01028208201751113, 0.041093964129686356, 0.024744846858084202, -0.019892910961061716,
- -0.07120736129581928, 0.0731165437027812, 0.059936795849353075, 0.0863711480051279,
- 0.058803931809961796, -0.03620241302996874, 0.04445644048973918, 0.139148635789752,
- 0.008439472643658519, 0.007857366756070405, 0.0518864244222641, 0.09304746519774199,
- -0.04502537287771702, -0.02215881017036736, 0.008433968643657863,
- -0.0076060479041188955, 0.03881240217015147, 0.009490836964687333, 0.05060211895033717,
- -0.0073213716968894005, -0.0633728327229619, 0.032458604546263814, 0.07909709960222244,
- 0.03892561048269272, 0.1055526053532958, -0.043019918259233236, -0.06756475381553173,
- -0.0249599136877805, -0.027703037776518613, 0.029702760744839907, -0.04452166520059109,
- 0.07368237338960171, 0.08272209763526917, 0.07529051881283522, 0.0445641684345901,
- 0.046102448366582394, 0.05114729795604944, 0.0628466447815299, 0.021430440712720156,
- 0.08735625259578228, -0.03765816614031792, -0.05732998764142394, -0.05262188892811537,
- -0.02558243041858077, 0.015970896696671844, -0.03278495467384346, -0.07416125107556581,
- -0.028590184170752764, -0.0938216969370842, -0.028043763479217887, -0.05125689273700118,
- -0.0909136300906539, -0.003598783747293055, 0.043681816663593054, -0.045892111491411924,
- -0.05935526546090841, -0.10644515231251717, 0.011128967336844653, 0.06875869538635015,
- -0.019419577904045582, -0.01634692819789052, -0.13832355104386806, 0.021869394462555647,
- -0.06440058443695307, 0.03664136887528002, 0.015090924338437617, 0.024709471443202347,
- 0.012240770854987204, -0.0651610754430294, 0.041858403012156487, -0.013578447047621012,
- -0.02382712299004197, -0.025523491436615586, -0.0672821095213294, -0.005980649963021278,
- 0.015234119724482298, 0.0024783461703918874, -0.03127293092984473, 0.0404673614539206,
- 0.02284995632362552, 0.05801244638860226, -0.037880475632846355, -0.056773203425109386,
- 0.035290572326630354, -0.018427945906296372, -0.05142273521050811, 0.09367469884455204,
- -0.04348327359184623, 0.03540623653680086, -0.01397204578097444, -0.06865417025983334,
- -0.04968912387266755, 0.04938382189720869, -0.05693046469241381, 0.05001318990252912,
- -0.06559705641120672, 0.03569400683045387, -0.04445784236304462, -0.009825525339692831,
- 0.03993211383931339, -0.03896113485097885, -0.07122269459068775, -0.09557386115193367,
- 0.12485006637871265, -0.00778265466215089, -0.030427370220422745, 0.06100261211395264,
- -0.05219141207635403, 0.027997490484267473, -0.0015179335605353117,
- 0.003208102691132808, 0.021452849148772657, 0.02328904566820711, -0.016903797164559364,
- 0.05964289093390107, 0.05546694714576006, -0.00545806810259819, 0.010077350569190457,
- 0.058373224921524525, 0.44380492717027664, -0.22469332069158554, 0.06284206453710794,
- 0.1111732292920351, 0.05085361236706376, 0.05204347427934408, -0.05085659120231867,
- 0.05887759383767843, 0.05400713160634041, 0.1115343626588583, 0.12535089440643787,
- -0.015588902169838548, 0.007096135639585555, -0.06899883691221476, 0.08440977055579424,
- -0.011825146684714127, 0.02242932142689824, -0.06304520834237337, -0.07797816023230553,
- -0.0012030594516545534, 0.02512959367595613, -0.05224876245483756, 0.003306275393697433,
- 0.00689627043902874, -0.06491997512057424, -0.02718108892440796, 0.007157179294154048,
- 0.013593082316219807, -0.017022985499352217, 0.021822208305820823, -0.05170086584985256,
- 0.03491080924868584, 0.04742599371820688, 0.018545603845268488, -0.13301867432892323,
- 0.04703124425941496, -0.07424337416887283, -0.10139934346079826, 0.1035494226962328,
- -0.010726895416155457, 0.04036648478358984, 0.06195151899009943, -0.06163990218192339,
- 0.039670989383012056, 0.0346355396322906, -0.03808611771091819, 0.007916881499113515,
- 0.07666407059878111, 0.006832647719420493, 0.06469434592872858, 0.1514248251914978,
- -0.024707320902962238, -0.05291615705937147, -0.0682254359126091, 0.08043968863785267,
- 0.12709893845021725, -0.021370148984715343, 0.018199135549366474, 0.0006965274806134403,
- 0.0035259928554296494, -0.01672850390605163, -0.08993908111006021, -0.08988791704177856,
- 0.0046022647293284535, -0.034967822255566716, 0.07402537576854229,
- -0.012323389761149883, -0.03870978159829974, -0.1424327865242958, -0.041753330267965794,
- -0.061958582140505314, -0.004370557609945536, 0.11088430881500244,
- -0.039414950646460056, 0.03692832076922059, 0.012701480416581035, -0.037485729553736746,
- 0.027110451832413673, -0.08601260185241699, 0.02197336219251156, -0.0343325138092041,
- 0.03480037744157016, 0.08258164068683982, 0.03988217702135444, -0.037062869407236576,
- 0.09914907813072205, -0.07959251943975687, 0.053383623249828815, 0.048293896950781345,
- 0.01785609011130873, 0.017358747427351773, -0.0042343875975348055, 0.043032828252762556,
- 0.06286829616874456, -0.04673094255849719, 0.03609963855706155, -0.07082883920520544,
- -0.05214632651768625, -0.07825736701488495, -0.10101751983165741, -0.014389329648111016,
- -0.07797692902386189, 0.04243926238268614, -0.10292966105043888, -0.033641478046774864,
- -0.03760169306769967, 0.001618360634893179, 0.024830586276948452, 0.04162000259384513,
- -0.011521470791194588, -0.1299203559756279, 0.04006731137633324,
- 0.000020278675947338343, 0.03368482692167163, 0.032361180521547794,
- -0.045285234693437815, -0.01899346214486286, 0.10296618938446045, 0.04187626717612147,
- -0.02872793737333268, 0.014684541944006924, -0.09707229398190975, 0.04126086877658963,
- -0.0817953385412693, -0.44060441106557846, 0.04032435268163681, 0.01512560062110424,
- 0.04606203269213438, -0.01381715852767229, -0.05541003588587046, 0.012258047703653574,
- 0.01134696084773168, -0.00530863698804751, 0.077063649892807, -0.04525121860206127,
- 0.017665375722572207, -0.015097982715815306, -0.08453901670873165,
- -0.0067662885412573814, -0.06612169835716486, -0.02230228576809168,
- 0.057886009104549885, -0.02536088554188609, -0.07063975837081671, -0.0970526933670044,
- 0.030414745677262545, -0.03523486852645874, 0.027840859489515424, 0.011277035235252697,
- 0.02128027845174074, -0.07923092134296894, -0.02213065349496901, 0.006484905257821083,
- 0.057942844927310944, 0.04444130975753069, -0.07292364165186882, -0.023130099987611175,
- 0.008853768929839134, -0.0524620246142149, 0.13644631579518318, 0.007583448212244548,
- 0.015185251599177718, -0.05119605269283056, 0.0692509924992919, 0.056601314805448055,
- 0.18633560091257095, -0.007001375837717205, 0.014522510580718517, 0.036559474654495716,
- 0.13838302344083786, 0.06359842140227556, 0.012921029585413635, -0.021212901221588254,
- -0.0009756924700923264, 0.03939445922151208, 0.005812167277326807, 0.07690821215510368,
- -0.08570828661322594, -0.04058255720883608, -0.056604973040521145, 0.020013944653328508,
- -0.018838135176338255, 0.014338712207973003, 0.18774226307868958, 0.0232186580542475,
- 0.02788322465494275, 0.008658596634631976, -0.07987837586551905, -0.0031195644987747073,
- -0.05810545105487108, -0.08102865517139435, -0.02593584987334907, -0.014107938506640494,
- 0.010821215633768588, -0.049467517994344234, -0.14190427586436272,
- -0.0018405907321721315, 0.022741328211850487, 0.010439147903525736, 0.12213707529008389,
- 0.013791923760436475, 0.019041203428059816, -0.024321441538631916, 0.10624411515891552,
- 0.058408312033861876, 0.04454592987895012, 0.047318470547907054, 0.10424009710550308,
- 0.034386406652629375, 0.022364107164321467, -0.051804544404149055, -0.06468962971121073,
- 0.054290395230054855, 0.13357811607420444, -0.052725828252732754, 0.08240652270615101,
- 0.06635425239801407, -0.050311371218413115, -0.07260343804955482, 0.06599150039255619,
- -0.018153241224354133, 0.040264331619255245, -0.4761645644903183, -0.017358275552396663,
- 0.12779287807643414, 0.02200480131432414, 0.04521471448242664, 0.06466562300920486,
- 0.02236254944000393, -0.03773131128400564, -0.03620130114722997, -0.07392097730189562,
- 0.1294832695275545, -0.009960999508621171, 0.05251296702772379, -0.12374300323426723,
- 0.034771730192005634, 0.05496332608163357, -0.05711086932569742, -0.029482888989150524,
- 0.06203007232397795, -0.22754866257309914, -0.005995208630338311, -0.06169084273278713,
- 0.1285736784338951, 0.015002508298493922, 0.033059449633583426, 0.0891015250235796,
- -0.0566481277346611, 0.03448110935278237, 0.07178160734474659, -0.03454570774920285,
- 0.03097261325456202, -0.004476174945011735, -0.005897863477002829, 0.09980579279363155,
- 0.10662563517689705, 0.04853884084150195, 0.005482702807057649, 11.958958864212036,
- 0.05068829422816634, 0.05656047211959958, -0.08836671430617571, -0.009785805479623377,
- -0.0629933038726449, 0.03514760918915272, -0.0543383420445025, 0.10099085234105587,
- 0.13365845382213593, -0.023797617468517274, -0.017401098157279193,
- -0.0015257341437973082, -0.08534427173435688, 0.025548703502863646, -0.0767591642215848,
- -0.07728810794651508, -0.03254857147112489, 0.04785815734794596, -0.048357678577303886,
- -0.019553182180970907, -0.020633358639315702, 0.05908397398889065, 0.04229754349216819,
- -0.06152534484863281, 0.021171928383409977, 0.03752770321443677, -0.025813168613240123,
- -0.012425332330167294, 0.027591094840317965, -0.010827744263224304,
- 0.030765144620090723, 0.038625816348940134, -0.008519456663634628, 0.03107762651052326,
- 0.044047345872968435, 0.07670220639556646, 0.06221763417124748, -0.0005862347315996885,
- 0.10437030345201492, 0.008408141729887575, 0.036715075839310884, 0.030072759836912155,
- 0.03605758654884994, 0.056003743782639503, 0.04163811495527625, 0.05199473723769188,
- 0.08386156521737576, 0.016052347455115523, 0.07034886348992586, 0.08370552211999893,
- -0.050213766284286976, 0.13126859441399574, 0.010427975095808506, -0.001493597635999322,
- 0.03692754590883851, 0.0031330573838204145, -0.059996962547302246, 0.06779675371944904,
- 0.07375209219753742, -0.07019613310694695, 0.12297892011702061, -0.0034779701963998377,
- 0.11920342594385147, -0.031099284649826586, 0.08889750577509403, 0.07983499206602573,
- 0.10344762168824673, -0.09370795637369156, -0.08966636937111616, -0.011587733868509531,
- -0.10781482048332691, -0.07722307089716196, 0.08152920007705688, 0.07272128015756607,
- -0.05772028584033251, 0.04191926121711731, -0.03939218388404697, 0.021747343707829714,
- -0.051444271579384804, -0.03492727689445019, 0.035845374688506126,
- -0.017568390117958188, 0.04339305777102709, 0.038026231806725264, 0.03614663379266858,
- 0.08013335801661015, 0.10866222903132439, 0.005464325193315744, -0.03213372174650431,
- -0.09380360040813684, 0.0903289932757616, -0.05516974534839392, -0.06290660239756107,
- 0.019875671008776408, -0.058489516377449036, 0.0545682730153203, -0.1423446387052536,
- 0.0539940195158124, 0.1121164970099926, -0.0736271645873785, -0.038199236267246306,
- -0.04229632951319218, 0.05853272695094347, -0.01826820120913908, 0.055795482359826565,
- -0.04943027067929506, 0.01637252711225301, 0.02398596564307809, 0.03871743567287922,
- -0.036122363060712814, 0.09621498733758926, 0.06256894767284393, -0.05359542276710272,
- 0.03660273062996566, 0.06137404637411237, -0.0268058308865875, -0.02941119996830821,
- 0.04199858009815216, 0.06857335567474365, -0.08805980533361435, -0.03208765480667353,
- -0.034233192913234234, -0.04972427268512547, -0.05165386479347944, -0.05248397774994373,
- 0.04731922876089811, 0.05236112233251333, -0.0676607545465231, -0.030039453646168113,
- -0.027563811279833317, 0.03705610241740942, 0.09932397305965424, -0.03090358988265507,
- 0.07366287801414728, -0.08170702308416367, -0.06666355114430189, 0.03906768560409546,
- 0.04480507504194975, 0.07278851047158241, -0.029020404210314155, -0.01773720240453258,
- -0.09192952886223793, -0.1013640146702528, 0.04557823730283417, 0.10383063647896051,
- 0.07199424132704735, 0.07192109897732735, 0.04879948869347572, -0.07441546954214573,
- -0.040376737248152494, 0.12419311702251434, 0.0446919035166502, 0.0007955578621476889,
- 0.04891646094620228, -0.06954682059586048, -0.03287940542213619, 0.1269632652401924,
- -0.029738315613940358, -0.011068731313571334, 0.0361473667435348,
- -0.0005095051601529121, 0.07488179672509432, 0.08275806251913309, 0.05059270886704326,
- 0.04682892840355635, -0.006796375673729926, -0.004750297404825687, 0.03611416509374976,
- -0.022855472518131137, 0.01885419525206089, 0.03187938826158643, -0.08593483921140432,
- -0.04911147290840745, 0.023689711466431618, 0.11023229919373989, -0.011892193695530295,
- -0.0552916806191206, -0.03417978994548321, -0.04606795683503151
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 70,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 20,
- "similarity": 0.9991500377655029
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 71,
- "similarity": 0.999042272567749
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 25,
- "similarity": 0.9989944100379944
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Keith Naughton"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1260,
- "source_domain": "autonews.com",
- "submitters": ["Anonymous"],
- "title": "Self-driving cars succumb to snow blindness as driving lanes disappear",
- "url": "https://www.autonews.com/article/20160210/OEM06/160219995/self-driving-cars-succumb-to-snow-blindness-as-driving-lanes-disappear"
- },
- {
- "__typename": "Report",
- "authors": ["Neal E. Boudette"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1259,
- "source_domain": "nytimes.com",
- "submitters": ["Anonymous"],
- "title": "5 Things That Give Self-Driving Cars Headaches",
- "url": "https://www.nytimes.com/interactive/2016/06/06/automobiles/autonomous-cars-problems.html"
- },
- {
- "__typename": "Report",
- "authors": ["Insurance Journal"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1256,
- "source_domain": "insurancejournal.com",
- "submitters": ["Anonymous"],
- "title": "Self-Driving Vehicles Meet Their Match When Snow Creates Sensor Blindness",
- "url": "https://www.insurancejournal.com/news/international/2016/02/10/398224.htm"
- },
- {
- "__typename": "Report",
- "authors": ["Gareth Watson", "Kate Mann"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1255,
- "source_domain": "2025ad.com",
- "submitters": ["Anonymous"],
- "title": "Self-driving cars in winter",
- "url": "https://www.2025ad.com/latest/self-driving-cars-in-winter/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "google",
- "name": "Google"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "google",
- "name": "Google"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "mountain-view-municipal-bus-passengers",
- "name": "Mountain View municipal bus passengers"
- },
- {
- "__typename": "Entity",
- "entity_id": "mountain-view-municipal-bus",
- "name": "Mountain View municipal bus"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [
- 1290, 1289, 1288, 1287, 1285, 1284, 1282, 1281, 1280, 1279, 1278, 1277, 1276, 1275,
- 1274, 1273, 1272, 1271, 1270, 1269, 1268, 1267, 1266, 1265, 1264, 1263, 1262, 1261
- ],
- "vector": [
- -0.07634644955396652, 0.07443131506443024, 0.007899651303887367, -0.07916058599948883,
- 0.07641678303480148, -0.02641419880092144, -0.014211476780474186, 0.036972250789403915,
- 0.039824891835451126, -0.13166245818138123, 0.013094767928123474, 0.0742427334189415,
- 0.023509889841079712, -0.05961250513792038, 0.08555306494235992, -0.08592196553945541,
- -0.09189865738153458, -0.07225961238145828, 0.020738672465085983, -0.10824321210384369,
- -0.07282920181751251, -0.02843846008181572, 0.05547597259283066, 0.08441232144832611,
- -0.05797060951590538, 0.013492652215063572, 0.0863499566912651, 0.10370924323797226,
- -0.04425135999917984, 0.04417866840958595, 0.0007925453828647733, -0.06378601491451263,
- 0.11499252170324326, 0.03624502569437027, 0.008903387933969498, 0.0891382247209549,
- 0.011161823756992817, -0.013602244667708874, -0.02673095464706421, 0.008255078457295895,
- 0.02336900122463703, 0.23706059157848358, 0.0019088945118710399, -0.034491293132305145,
- 0.020831821486353874, -0.049638669937849045, -0.0018960976740345359, 0.0381116084754467,
- 0.021423371508717537, 0.0347762294113636, -0.02121972106397152, 0.07558809965848923,
- -0.024804698303341866, 0.020485293120145798, -0.13066668808460236, 0.031124111264944077,
- 0.043528761714696884, -0.013040514662861824, 0.05865895748138428, -0.0725131556391716,
- -0.03664474934339523, -0.23389951884746552, -0.06114766001701355, -0.07107902318239212,
- 0.07051265984773636, -0.07107377797365189, -0.024493038654327393,
- -0.0018387949094176292, 0.024776872247457504, 0.0807885080575943, 0.06889735162258148,
- -0.029973136261105537, -0.019912030547857285, 0.008297218941152096,
- 0.005971268285065889, -0.013183693401515484, -0.005042748991400003, 0.20030371844768524,
- -0.12559671700000763, -0.015022099949419498, 0.10944946110248566, -0.12055342644453049,
- 0.4376874566078186, 0.020842459052801132, -0.04615785554051399, -0.043772317469120026,
- 0.09667100012302399, 0.025829875841736794, 0.04818975552916527, 0.05022541806101799,
- -0.03219778463244438, 0.029756400734186172, -0.03856390342116356, 0.024849502369761467,
- 0.0557885468006134, 0.042147088795900345, -0.03695124015212059, 0.04326181858778,
- -0.004198353737592697, -0.04137251153588295, 0.03860434517264366, -0.04695086553692818,
- 0.10086735337972641, 0.024517754092812538, 0.0022870313841849566, 0.01892985589802265,
- 0.08625411242246628, -0.01855086348950863, 0.054323144257068634, -0.07137862592935562,
- 0.018546191975474358, 0.020008685067296028, 0.054419416934251785, 0.007184132467955351,
- 0.044956859201192856, -0.08402696996927261, 0.002389701781794429, 0.06363559514284134,
- 0.10923588275909424, -0.004307356663048267, -0.01825270615518093, 0.05484912917017937,
- 0.07493972033262253, -0.07692544907331467, 0.0006156383897177875, -0.04839324206113815,
- -0.07109848409891129, -0.03508800268173218, -0.049524806439876556, 0.030430730432271957,
- -0.07898561656475067, -0.21179978549480438, 0.01691580004990101, 0.11613671481609344,
- 0.01203265693038702, -0.055823225528001785, -0.007317450363188982, -0.08698594570159912,
- 0.05516859143972397, -0.03510725125670433, -0.03172481432557106, 0.042986977845430374,
- 0.010922512039542198, 0.028118809685111046, 0.10147250443696976, 0.055398616939783096,
- -0.04867451265454292, -0.06381310522556305, 0.01121494360268116, -0.03429308161139488,
- 0.10088801383972168, -0.13131599128246307, -0.05797183886170387, 0.007577135693281889,
- 0.0014115591766312718, 0.7074231505393982, 0.09849579632282257, 0.17390353977680206,
- 0.008920938707888126, -0.031097814440727234, 0.19060035049915314, -0.007486599963158369,
- 0.052555132657289505, -0.07965166866779327, -0.07476180791854858, 0.04627397656440735,
- -0.09026453644037247, -0.05597366765141487, 0.031992170959711075, 0.011215955018997192,
- 0.11875546723604202, 0.053781140595674515, 0.08611029386520386, -0.010145138017833233,
- -0.10425124317407608, -0.029995638877153397, 0.0764472484588623, -0.006587337702512741,
- -0.1154860258102417, -0.0520995631814003, 0.047776661813259125, 0.11236461251974106,
- -0.0945773497223854, 0.01705187000334263, -0.05769878998398781, 0.07225903123617172,
- -0.009037040174007416, 0.04655333235859871, -0.055564530193805695, 0.027087831869721413,
- 0.02255171723663807, 0.07741955667734146, -0.014692355878651142, -0.10583610832691193,
- -0.010959151200950146, 0.09736701101064682, -0.010592097416520119, -0.02312522754073143,
- 0.0649210587143898, -0.08669812232255936, 0.06244976073503494, 0.0039016033988445997,
- 0.13711579144001007, -0.12261579930782318, 0.02584685944020748, 0.02264654077589512,
- 0.023412760347127914, 0.02976115047931671, 0.0044678389094769955, -0.09208886325359344,
- -0.05233848839998245, 0.09724373370409012, 0.04512520506978035, 0.06944572180509567,
- 0.08451306074857712, -0.03199390694499016, 0.026109443977475166, 0.08642260730266571,
- -0.008946901187300682, -0.01413362193852663, 0.05574720352888107, 0.10210122913122177,
- -0.03936011716723442, -0.012448275461792946, 0.042576540261507034,
- 0.0029379359912127256, 0.01698264665901661, -0.02416105940937996, 0.06856610625982285,
- 0.012151611968874931, -0.05207246169447899, 0.025592198595404625, 0.020587066188454628,
- 0.020505325868725777, 0.12309229373931885, -0.04755744710564613, -0.06449847668409348,
- -0.00567200779914856, -0.034150924533605576, 0.019090594723820686, -0.0436227023601532,
- 0.09719734638929367, 0.06480076164007187, 0.09216885268688202, 0.031843505799770355,
- 0.04879875108599663, 0.07515089958906174, 0.042787373065948486, 0.03403327986598015,
- 0.050283875316381454, -0.021338652819395065, -0.09939023107290268,
- -0.019851047545671463, 0.009228484705090523, 0.05196991190314293, 0.04319218173623085,
- -0.06807632744312286, -0.032764188945293427, -0.04147234559059143, -0.03715074807405472,
- -0.06544823944568634, -0.030394790694117546, 0.017257073894143105, 0.06891273707151413,
- -0.04497681185603142, -0.06966207921504974, -0.11084330826997757, 0.013411481864750385,
- 0.053779296576976776, -0.016970058903098106, -0.00993996113538742, -0.1152217760682106,
- -0.022864162921905518, -0.044967394322156906, 0.028558075428009033,
- 0.0013469528639689088, -0.007482209708541632, 0.006628461182117462,
- -0.07040964066982269, 0.015025774948298931, -0.027856579050421715,
- -0.030757665634155273, -0.061095766723155975, -0.08071990311145782,
- -0.04127303883433342, 0.009293777868151665, 0.024228321388363838, -0.01864807680249214,
- 0.040422383695840836, 0.03909337893128395, 0.04947090521454811, -0.0022011161781847477,
- -0.03431617468595505, 0.049304503947496414, -0.013700290583074093,
- -0.038514379411935806, 0.08005131036043167, 0.005370116326957941, 0.05344334617257118,
- 0.0006600969354622066, -0.09985928237438202, -0.017382383346557617, 0.05163738504052162,
- -0.058378465473651886, 0.0446428582072258, -0.022355716675519943, 0.030912647023797035,
- -0.036166153848171234, 0.004309716634452343, 0.06463715434074402, -0.07072993367910385,
- -0.07879860699176788, -0.10114820301532745, 0.12288204580545425, -0.002009399700909853,
- -0.02360592968761921, 0.041462067514657974, -0.038576699793338776, 0.04416302219033241,
- -0.027063701301813126, -0.010138572193682194, 0.03236069157719612, 0.027434134855866432,
- -0.01228543370962143, 0.008059809915721416, 0.04172069579362869, -0.0325552336871624,
- 0.029133958742022514, 0.07321897894144058, 0.42987561225891113, -0.19575908780097961,
- 0.07743489742279053, 0.08970927447080612, 0.01508061122149229, 0.07050884515047073,
- -0.04500565305352211, 0.07180611789226532, 0.0829230397939682, 0.10396180301904678,
- 0.10637219995260239, -0.026887159794569016, -0.027534225955605507, -0.05487377196550369,
- 0.09184689819812775, -0.002311942633241415, -0.009973958134651184, -0.02006523124873638,
- -0.08604015409946442, -0.004191277083009481, 0.013103489764034748, -0.0705537274479866,
- 0.003132397774606943, -0.004164212383329868, -0.06621122360229492,
- -0.012258278205990791, -0.009358076378703117, 0.002346025314182043,
- -0.008780996315181255, 0.008846909739077091, -0.01372283510863781, 0.042257752269506454,
- 0.010161234997212887, 0.0570230595767498, -0.12427312135696411, 0.042787354439496994,
- -0.11938394606113434, -0.08785046637058258, 0.08274693042039871, -0.03307498246431351,
- 0.026700859889388084, 0.05387600511312485, -0.03346622735261917, 0.02899532951414585,
- -0.00012161232007201761, -0.05510532483458519, 0.029023969545960426,
- 0.06085658818483353, 0.0031038534361869097, 0.09433816373348236, 0.1592784970998764,
- -0.056179229170084, -0.06022031232714653, -0.09005095809698105, 0.09210129827260971,
- 0.1097869724035263, -0.05042874068021774, 0.014301205053925514, -0.007217684295028448,
- -0.046001676470041275, 0.0014193874085322022, -0.057421740144491196,
- -0.09615079313516617, 0.004968892317265272, -0.02707475610077381, 0.060787830501794815,
- -0.017932666465640068, -0.0188312865793705, -0.18345089256763458, -0.054871853440999985,
- -0.010193319991230965, 0.014531086198985577, 0.12241888046264648, -0.04466385766863823,
- 0.03566976264119148, 0.031355537474155426, -0.02069626934826374, 0.012109967879951,
- -0.09442337602376938, 0.017342569306492805, -0.040275536477565765, 0.05679748207330704,
- 0.03396434709429741, 0.04519185796380043, -0.017952635884284973, 0.08789771050214767,
- -0.09931107610464096, 0.08565402776002884, 0.005813749972730875, 0.0026618826668709517,
- 0.04566137120127678, -0.06396128982305527, 0.037926964461803436, 0.06193657964468002,
- -0.04116996005177498, 0.047844767570495605, -0.042068835347890854, -0.04335402697324753,
- -0.09702460467815399, -0.07133395224809647, -0.03606173396110535, -0.08373338729143143,
- 0.06914600729942322, -0.10139606148004532, -0.03857862204313278, -0.03529470041394234,
- -0.01802453212440014, 0.04484999552369118, 0.04827422276139259, 0.05316431075334549,
- -0.1557101458311081, 0.015746289864182472, -0.0023631693329662085, 0.080267034471035,
- -0.03501931577920914, -0.02198241837322712, 0.016706880182027817, 0.12194473296403885,
- 0.07550861686468124, 0.03594103828072548, -0.005421089939773083, -0.07706630229949951,
- -0.0002672004629857838, -0.0940195843577385, -0.4948911666870117, 0.039146728813648224,
- -0.005507387686520815, 0.03871866315603256, 0.0018685564864426851,
- -0.038901571184396744, 0.048361390829086304, -0.010988508351147175,
- -0.043806467205286026, 0.1034851223230362, -0.06332756578922272, 0.011773588135838509,
- 0.012127220630645752, -0.07327865809202194, -0.035692181438207626, -0.05079827830195427,
- -0.043794941157102585, 0.05763791874051094, -0.027409449219703674, -0.0673515647649765,
- -0.09203623235225677, 0.019521594047546387, -0.03223944827914238, 0.0011866223067045212,
- 0.005742102395743132, 0.02402251400053501, -0.07172463089227676, -0.03656306862831116,
- 0.0295830387622118, 0.06614773720502853, 0.05055844411253929, -0.05479957535862923,
- -0.014851219020783901, 0.06012887880206108, -0.04536085203289986, 0.1672171652317047,
- 0.015223034657537937, 0.02367922104895115, -0.0689297616481781, 0.08042428642511368,
- 0.05008479207754135, 0.1846015751361847, -0.015160360373556614, 0.03611205145716667,
- 0.04620010778307915, 0.1668354719877243, 0.04499960318207741, 0.01871151104569435,
- -0.025777125731110573, 0.014838865958154202, 0.034609563648700714,
- -0.016083065420389175, 0.07049529254436493, -0.07181310653686523, -0.014464092440903187,
- -0.03653586283326149, 0.002212821040302515, -0.03364577516913414, 0.035093702375888824,
- 0.20919224619865417, 0.028947943821549416, 0.04084572568535805, 0.0046486081555485725,
- -0.06603354215621948, -0.016930822283029556, -0.07602208852767944, -0.08656015247106552,
- -0.02012832835316658, 0.00040919455932453275, 0.005561095662415028,
- -0.04229935258626938, -0.1401069611310959, 0.004326493479311466, -0.023040030151605606,
- -0.008092121221125126, 0.10597457736730576, 0.025494704023003578, 0.03805859759449959,
- -0.019602060317993164, 0.10847101360559464, 0.04161405190825462, 0.008465231396257877,
- 0.07053876668214798, 0.09375352412462234, 0.031351398676633835, 0.002914682263508439,
- -0.05618179589509964, -0.05928047373890877, 0.022611835971474648, 0.1357450932264328,
- -0.07364814728498459, 0.08091403543949127, 0.025548582896590233, -0.03610504791140556,
- -0.06305000185966492, 0.04716211557388306, -0.022594215348362923, 0.04757363721728325,
- -0.48195651173591614, 0.0041953944601118565, 0.12985782325267792, 0.04842742532491684,
- 0.027353007346391678, 0.10969147831201553, 0.035946715623140335, -0.041717637330293655,
- -0.03129720315337181, -0.04783932492136955, 0.13983170688152313, -0.022939560934901237,
- 0.04991653561592102, -0.12265690416097641, 0.04100843518972397, 0.0790168046951294,
- -0.024662965908646584, -0.02679758332669735, 0.08768019825220108, -0.23826777935028076,
- 0.008843152783811092, -0.06096840277314186, 0.13626722991466522, 0.05596838518977165,
- 0.01955186203122139, 0.0638229176402092, -0.05998019129037857, 0.04230787605047226,
- 0.057807404547929764, 0.0014282433548942208, 0.06765922158956528, 0.026240214705467224,
- -0.01865675486624241, 0.12504304945468903, 0.0756005197763443, 0.11226391047239304,
- -0.022018739953637123, 12.047541618347168, 0.06572908908128738, 0.03681971877813339,
- -0.060845065861940384, 0.03330249711871147, -0.07569519430398941, 0.03360159322619438,
- -0.07309937477111816, 0.07226552814245224, 0.1222776398062706, -0.014731758274137974,
- -0.02743370831012726, -0.011203333735466003, -0.10816452652215958, 0.01886381208896637,
- -0.0985509529709816, -0.06283192336559296, -0.03048662282526493, 0.01839420571923256,
- -0.034411925822496414, -0.00034122500801458955, 0.005841532256454229,
- 0.0734063908457756, 0.029384564608335495, -0.06880812346935272, 0.05686118081212044,
- 0.0477197989821434, -0.017643244937062263, -0.007288223598152399, 0.018854325637221336,
- -0.04643569141626358, 0.050789445638656616, 0.043739330023527145, -0.00829980056732893,
- -0.028154684230685234, 0.06118012219667435, 0.07952504605054855, 0.07180971652269363,
- -0.00025009523960761726, 0.10180049389600754, 0.04153525456786156, 0.03744765743613243,
- 0.025017449632287025, 0.03831746429204941, 0.03869679570198059, 0.04260221868753433,
- 0.06708944588899612, 0.11155138909816742, 0.026431681588292122, 0.029855068773031235,
- 0.08997295051813126, -0.040139492601156235, 0.1497376710176468, 0.0058870804496109486,
- -0.008475999347865582, 0.033748481422662735, -0.013509596697986126, -0.0513332262635231,
- 0.06583728641271591, 0.059778906404972076, -0.0677361711859703, 0.08968395739793777,
- -0.0010139631340280175, 0.12841138243675232, -0.028315484523773193, 0.05350955203175545,
- 0.06420795619487762, 0.055512212216854095, -0.1387074738740921, -0.08185148984193802,
- 0.03826345130801201, -0.12655459344387054, -0.06363406032323837, 0.04097522422671318,
- 0.11200553923845291, -0.04916495829820633, 0.025616446509957314, -0.060180071741342545,
- 0.02363460883498192, -0.05641224607825279, -0.02893916890025139, 0.028973285108804703,
- -0.00018346705473959446, 0.0247078575193882, 0.05699826404452324, 0.01677236333489418,
- 0.10756850987672806, 0.09516217559576035, -0.030765412375330925, -0.0842931792140007,
- -0.08995312452316284, 0.11412398517131805, -0.03410087898373604, -0.07568395137786865,
- 0.015194222331047058, -0.04023845121264458, 0.05179700255393982, -0.1576835960149765,
- 0.060798171907663345, 0.1067601814866066, -0.09381627291440964, -0.0017230418743565679,
- -0.03075012005865574, 0.04463524371385574, -0.009027470834553242, 0.03163876757025719,
- -0.05093421787023544, 0.023084193468093872, 0.007933513261377811, 0.03649609535932541,
- -0.05232664570212364, 0.05328168347477913, 0.09268128871917725, -0.06816781312227249,
- 0.05966678634285927, 0.06622900813817978, -0.03786337003111839, -0.05996953323483467,
- 0.0683230459690094, 0.03561754524707794, -0.09130380302667618, -0.040363576263189316,
- -0.029694871976971626, -0.050525955855846405, -0.03561857342720032,
- -0.03705635666847229, 0.028058553114533424, 0.035765331238508224, -0.05886433273553848,
- -0.0319986455142498, 0.008698567748069763, 0.029184039682149887, 0.09192813187837601,
- 0.02505897916853428, 0.06420504301786423, -0.08634186536073685, -0.02101200632750988,
- 0.04545027017593384, 0.038008589297533035, 0.07319425791501999, -0.018430273979902267,
- -0.004972570575773716, -0.064898781478405, -0.12189139425754547, -0.003581759287044406,
- 0.1299801766872406, 0.07885240763425827, 0.014019601047039032, 0.014809778891503811,
- -0.08621629327535629, -0.051286038011312485, 0.13182730972766876, 0.03658316284418106,
- 0.00982614140957594, 0.015087254345417023, -0.09869380295276642, -0.01256849616765976,
- 0.152434304356575, -0.05236243084073067, 0.017752600833773613, 0.022761056199669838,
- -0.02544633485376835, 0.06196283921599388, 0.08410012722015381, 0.04744849354028702,
- 0.03193843364715576, 0.010303318500518799, -0.011738178320229053, 0.015442026779055595,
- -0.03788193687796593, 0.035256240516901016, 0.011893472634255886, -0.15545494854450226,
- -0.09061885625123978, 0.030930113047361374, 0.09980465471744537, 0.0026853352319449186,
- -0.09373502433300018, -0.034399159252643585, -0.05789540335536003
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 71,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 20,
- "similarity": 0.9996734857559204
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 8,
- "similarity": 0.9995664358139038
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 4,
- "similarity": 0.9995622038841248
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Samuel Gibbs"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1290,
- "source_domain": "theguardian.com",
- "submitters": ["Anonymous"],
- "title": "Google's self-driving car in broadside collision after other car jumps red light",
- "url": "https://www.theguardian.com/technology/2016/sep/26/google-self-driving-car-in-broadside-collision-after-other-car-jumps-red-light-lexus-suv"
- },
- {
- "__typename": "Report",
- "authors": ["Jon Fingas"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1289,
- "source_domain": "engadget.com",
- "submitters": ["Anonymous"],
- "title": "Google self-driving car crashes into a bus (update: statement)",
- "url": "https://www.engadget.com/2016/02/29/google-self-driving-car-accident/"
- },
- {
- "__typename": "Report",
- "authors": ["Josh Levenson"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1288,
- "source_domain": "thenextweb.com",
- "submitters": ["Anonymous"],
- "title": "Google’s self-driving car has been involved in its worst crash yet",
- "url": "https://thenextweb.com/google/2016/09/26/googles-self-driving-car-involved-worst-crash-yet/"
- },
- {
- "__typename": "Report",
- "authors": ["Associated Press"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1287,
- "source_domain": "theguardian.com",
- "submitters": ["Anonymous"],
- "title": "Google self-driving car caught on video colliding with bus",
- "url": "https://www.theguardian.com/technology/2016/mar/09/google-self-driving-car-crash-video-accident-bus"
- },
- {
- "__typename": "Report",
- "authors": ["Reuters"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1285,
- "source_domain": "telegraph.co.uk",
- "submitters": ["Anonymous"],
- "title": "Google driverless car hits bus in California",
- "url": "https://www.telegraph.co.uk/news/worldnews/northamerica/usa/12178672/Google-driverless-car-hits-bus-in-California.html"
- },
- {
- "__typename": "Report",
- "authors": ["Justin Pritchard"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1284,
- "source_domain": "huffingtonpost.ca",
- "submitters": ["Anonymous"],
- "title": "Google Driverless Car Sideswipes Bus, Gets Caught On Video",
- "url": "https://www.huffingtonpost.ca/2016/03/10/google-driverless-car-bus-accident-video_n_9426134.html"
- },
- {
- "__typename": "Report",
- "authors": ["Reuters"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1282,
- "source_domain": "abc.net.au",
- "submitters": ["Anonymous"],
- "title": "Apple Lexus RX 450h self-driving test car rear-ended during road testing in Silicon Valley",
- "url": "https://www.abc.net.au/news/2018-09-01/apple-self-driving-car-rear-ended-during-road-testing/10190804"
- },
- {
- "__typename": "Report",
- "authors": ["CBS"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1281,
- "source_domain": "newshub.co.nz",
- "submitters": ["Anonymous"],
- "title": "Google self-driving car crash in US",
- "url": "https://www.newshub.co.nz/home/world/2016/09/google-self-driving-car-crash-in-us.html"
- },
- {
- "__typename": "Report",
- "authors": ["Ethan Baron"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1280,
- "source_domain": "mercurynews.com",
- "submitters": ["Anonymous"],
- "title": "Google self-driving car hits public bus near Mountain View headquarters",
- "url": "https://www.mercurynews.com/2016/02/29/google-self-driving-car-hits-public-bus-near-mountain-view-headquarters/"
- },
- {
- "__typename": "Report",
- "authors": ["Rachel Metz", "Will Knight", "Douglas Heaven"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1279,
- "source_domain": "technologyreview.com",
- "submitters": ["Anonymous"],
- "title": "Google’s Self-Driving Car Probably Caused Its First Accident",
- "url": "https://www.technologyreview.com/s/600917/googles-self-driving-car-probably-caused-its-first-accident/"
- },
- {
- "__typename": "Report",
- "authors": ["Gina Hall"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1278,
- "source_domain": "bizjournals.com",
- "submitters": ["Anonymous"],
- "title": "Google autonomous SUV involved in serious crash after a van runs red light in Mountain View",
- "url": "https://www.bizjournals.com/sanjose/news/2016/09/26/google-autonomous-suv-involved-in-serious-crash.html"
- },
- {
- "__typename": "Report",
- "authors": ["Marco Della Cava"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1277,
- "source_domain": "usatoday.com",
- "submitters": ["Anonymous"],
- "title": "Google car hits bus, first time at fault",
- "url": "https://www.usatoday.com/story/tech/news/2016/02/29/google-car-hits-bus-first-time-fault/81115258/"
- },
- {
- "__typename": "Report",
- "authors": ["Mark Bergen"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1276,
- "source_domain": "recode.net",
- "submitters": ["Anonymous"],
- "title": "Google's Self-Driving Car Hit Another Vehicle for the First Time",
- "url": "https://www.recode.net/2016/2/29/11588346/googles-self-driving-car-hit-another-vehicle-for-the-first-time"
- },
- {
- "__typename": "Report",
- "authors": ["Jeremy Korzeniewski"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1275,
- "source_domain": "autoblog.com",
- "submitters": ["Anonymous"],
- "title": "Google self-driving car badly damaged in accident but wasn't at fault",
- "url": "https://www.autoblog.com/2016/09/24/google-self-driving-car-accident-video/"
- },
- {
- "__typename": "Report",
- "authors": ["William Hoffman"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1274,
- "source_domain": "inverse.com",
- "submitters": ["Anonymous"],
- "title": "Watch Google’s Self-Driving Lexus Crash Into a California Bus",
- "url": "https://www.inverse.com/article/12681-watch-google-s-self-driving-lexus-crash-into-a-california-bus"
- },
- {
- "__typename": "Report",
- "authors": ["Associated Press"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1273,
- "source_domain": "cbsnews.com",
- "submitters": ["Anonymous"],
- "title": "Video shows Google self-driving car hit a bus",
- "url": "https://www.cbsnews.com/news/video-shows-google-self-driving-car-hit-a-bus/"
- },
- {
- "__typename": "Report",
- "authors": ["Corinne Iozzio"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1272,
- "source_domain": "scientificamerican.com",
- "submitters": ["Anonymous"],
- "title": "Who's Responsible When a Self-Driving Car Crashes?",
- "url": "https://www.scientificamerican.com/article/who-s-responsible-when-a-self-driving-car-crashes/"
- },
- {
- "__typename": "Report",
- "authors": ["Mario Ritter"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1271,
- "source_domain": "learningenglish.voanews.com",
- "submitters": ["Anonymous"],
- "title": "Google Self-Driving Car Crashes Into Bus",
- "url": "https://learningenglish.voanews.com/a/google-car-crashes/3214573.html"
- },
- {
- "__typename": "Report",
- "authors": ["Adrienne Lafrance"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1270,
- "source_domain": "theatlantic.com",
- "submitters": ["Anonymous"],
- "title": "Can Google’s Driverless Car Project Survive a Fatal Accident?",
- "url": "https://www.theatlantic.com/technology/archive/2016/03/google-self-driving-car-crash/471678/"
- },
- {
- "__typename": "Report",
- "authors": ["Phil Lebeau", "Mark Wilson", "Joe Belanger"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1269,
- "source_domain": "cnbc.com",
- "submitters": ["Anonymous"],
- "title": "Google's self-driving car caused an accident, so what now?",
- "url": "https://www.cnbc.com/2016/02/29/googles-self-driving-car-caused-an-accident-so-what-now.html"
- },
- {
- "__typename": "Report",
- "authors": ["Trevor Mogg"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1268,
- "source_domain": "digitaltrends.com",
- "submitters": ["Anonymous"],
- "title": "Google self-driving car gets bashed up in its worst crash yet",
- "url": "https://www.digitaltrends.com/cars/google-self-driving-car-crash/"
- },
- {
- "__typename": "Report",
- "authors": ["Emma Henderson"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1267,
- "source_domain": "independent.co.uk",
- "submitters": ["Anonymous"],
- "title": "Google self-driving car crashes into bus and company admits it is 'partially' responsible",
- "url": "https://www.independent.co.uk/life-style/gadgets-and-tech/news/google-driverless-car-crashes-into-bus-and-admits-it-is-partially-to-blame-a6904571.html"
- },
- {
- "__typename": "Report",
- "authors": ["Mark Harris"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1266,
- "source_domain": "newscientist.com",
- "submitters": ["Anonymous"],
- "title": "Google accepts blame for its self-driving car causing crash",
- "url": "https://www.newscientist.com/article/2079133-google-accepts-blame-for-its-self-driving-car-causing-crash/"
- },
- {
- "__typename": "Report",
- "authors": ["Jon Fingas"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1265,
- "source_domain": "engadget.com",
- "submitters": ["Anonymous"],
- "title": "Google's self-driving car is the victim in a serious crash",
- "url": "https://www.engadget.com/2016/09/24/googles-self-driving-car-is-the-victim-in-a-serious-crash/"
- },
- {
- "__typename": "Report",
- "authors": ["Sean Captain"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1264,
- "source_domain": "fastcompany.com",
- "submitters": ["Anonymous"],
- "title": "Humans were to blame in Google self-driving car crash, police say",
- "url": "https://www.fastcompany.com/40568609/humans-were-to-blame-in-google-self-driving-car-crash-police-say"
- },
- {
- "__typename": "Report",
- "authors": ["Cara McGoogan"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1263,
- "source_domain": "telegraph.co.uk",
- "submitters": ["Anonymous"],
- "title": "Google's self-driving car involved in serious crash after van jumps a red light",
- "url": "https://www.telegraph.co.uk/technology/2016/09/26/googles-self-driving-car-involved-in-serious-crash-after-van-jum/"
- },
- {
- "__typename": "Report",
- "authors": ["Dave Lee"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1262,
- "source_domain": "bbc.com",
- "submitters": ["Anonymous"],
- "title": "Google self-driving car hits a bus",
- "url": "https://www.bbc.com/news/technology-35692845"
- },
- {
- "__typename": "Report",
- "authors": ["Mark Prigg For Dailymail.Com"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1261,
- "source_domain": "dailymail.co.uk",
- "submitters": ["Anonymous"],
- "title": "Google admits its self driving car got it wrong: Bus crash was caused by software",
- "url": "https://www.dailymail.co.uk/sciencetech/article-3491916/Google-admits-self-driving-car-got-wrong-Bus-crash-caused-software-trying-predict-driver-do.html"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "facebook",
- "name": "Facebook"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "facebook",
- "name": "Facebook"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "unnamed-palestinian-facebook-user",
- "name": "unnamed Palestinian Facebook user"
- },
- {
- "__typename": "Entity",
- "entity_id": "palestinian-facebook-users",
- "name": "Palestinian Facebook users"
- },
- {
- "__typename": "Entity",
- "entity_id": "facebook-users",
- "name": "Facebook users"
- },
- {
- "__typename": "Entity",
- "entity_id": "arabic-speaking-facebook-users",
- "name": "Arabic-speaking Facebook users"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [
- 1319, 1318, 1317, 1316, 1315, 1314, 1313, 1312, 1311, 1309, 1307, 1306, 1305, 1304,
- 1302, 1301, 1300, 1299, 1298, 1297, 1296, 1295, 1294, 1293, 1292, 1291
- ],
- "vector": [
- -0.06862724515107962, 0.06458542911479107, 0.015379292292681594, -0.11803931685594413,
- 0.07766929182868737, -0.037447864534512446, 0.0032244255685677323, 0.05324135867592234,
- 0.04782866722402664, -0.14169610463655913, 0.026328732564042393, 0.014155821400121428,
- -0.00004224908368017238, -0.11029028992813367, -0.002624683502989893,
- -0.058927044057502195, -0.04830442856137569, -0.04171286369315707, -0.02468319776100823,
- -0.11617155129519793, -0.05755929412463537, 0.015208366882199278, 0.04902517512583962,
- 0.10099415165873674, -0.04958357695991603, 0.04607552443093692, 0.09826089585056672,
- 0.10212734656838271, -0.09004668966652109, 0.01865807419212965, -0.02490745443635835,
- -0.0548152422102598, 0.10460859623092872, -0.01579136340520703, 0.03777118340636102,
- 0.06554486518367551, 0.03701849285369882, -0.01720578458984024, -0.05127737817999262,
- 0.016215139041798048, 0.002979065694559652, 0.17982712388038635, 0.0025578499995530224,
- -0.027923355277520247, 0.06525928956957963, -0.052147768294582, 0.008205336059640663,
- 0.07573465358179349, 0.0264184047253086, 0.0007081273114846016, -0.010728919433089547,
- 0.027872118615330413, -0.033924739270542674, 0.0125012348468702, -0.09679443876330669,
- 0.05902189908262629, 0.025370796605084952, -0.018231918927855216, 0.034011089260904834,
- -0.06088342216725533, -0.02511674250350692, -0.2324402160369433, -0.0742485450867277,
- -0.0584091080012373, 0.09847500691047081, -0.053985258421072595, -0.032294546433079704,
- -0.021034759679773394, 0.026559603310978182, 0.040205455098587736, 0.06970881591909207,
- -0.03978578689902161, -0.010520115620098434, -0.06539357102547701, 0.03311402691850582,
- 0.0006421413720370486, 0.015279534653438112, 0.21043403188769633, -0.09472807654394554,
- -0.008762127307888407, 0.12292404429843792, -0.08258756594016002, 0.3710591042271027,
- 0.0021968331868545367, -0.019401518878741905, 0.04236654356981699, 0.0771608455823018,
- 0.0274883232688388, 0.04965570847539661, 0.06136429775506258, 0.013250827252005156,
- 0.014504920762891952, -0.08196508648017278, 0.006130605086442442, 0.04115862095316585,
- 0.029469613612701114, -0.016676293175595883, 0.05316254980145739, 0.0001396593378068736,
- -0.06980775862645644, 0.01637565146330207, -0.030819177752933823, 0.10934624419762538,
- 0.07250067570175116, -0.037966530895433746, -0.01984849273531626, 0.10120435899051909,
- -0.0750790209724353, 0.04167934113110487, -0.046432460514971845, 0.010609869307910021,
- 0.03464095186119756, 0.12342754837412101, 0.017559673764760822, 0.027893207958326317,
- -0.04703093875342837, -0.0000839603330510167, 0.014695310867374736, 0.07373446956850015,
- 0.05662448070226954, 0.015085829004349832, 0.050247794518677086, 0.07885188781298123,
- -0.030748959115813844, 0.025123780013438173, -0.030255640395737898,
- -0.05157330422998012, 0.011564074272218231, -0.034202206772393905, 0.069008546630637,
- -0.03495338072864867, -0.1967327995942189, 0.03584726126148151, 0.02986426117758338,
- 0.0009865341215537717, -0.02634550962382211, 0.007277378543781547, -0.06670596522207443,
- 0.044274836886101045, -0.01866934954887256, -0.033056585874874145, 0.0642876593539348,
- 0.008579459162249874, 0.041349700329682, 0.08703344014401619, 0.05179440957279159,
- -0.023408701440740306, -0.054572866369898505, 0.003043010651778716,
- -0.03842701752168628, 0.0967811937802113, -0.11891492140980867, -0.010777819037544899,
- -0.0019386304764059158, 0.0029742068011098756, 0.6588867570345218, 0.08845959116633122,
- 0.1898497205514174, 0.02784322226887945, 0.005690520286757069, 0.17431954752940398,
- 0.00942496565851168, 0.044425411140904404, -0.03959209625743544, -0.07313403107512456,
- 0.030764205399184272, -0.07505891944926518, -0.04011557254796991, 0.041345467656635895,
- 0.07634588073079403, 0.10595976632948105, 0.044011709423592456, 0.0975140192044469,
- 0.007211660003611961, -0.12820558020701775, -0.042826702137692615, 0.04937086349281554,
- -0.008736625018243033, -0.1117565743625164, -0.02630499046510802, 0.05827969351398329,
- 0.09575937459102044, -0.053569263563706324, 0.016986927866058137, -0.04406250547617674,
- 0.03575006102283414, -0.029541803555240713, 0.039184921636031225, -0.019195955264596984,
- 0.05742585325004676, 0.05971412410816321, 0.06688452906046922, 0.0017498874311478664,
- -0.09497674382649936, 0.0006615716646103045, 0.1373643706051203, -0.02111174750070159,
- -0.038663675072782025, 0.06440700862843257, -0.06519866963991752, 0.03275334855649047,
- -0.011877818198767133, 0.11664121383084701, -0.10885699523183015, 0.028491055485434257,
- 0.00623807308679366, -0.03943882015748666, 0.08411304423442253, -0.02105005970224738,
- -0.10066497153960742, -0.06916122711621799, 0.10725995783622448, 0.031257580840387024,
- 0.03202101627203564, 0.06746339382460484, -0.036921161119467936, 0.04942688388893238,
- 0.07418207190214442, 0.010632061717982512, -0.02908277980839977, 0.03358412279675786,
- 0.05117240159485776, -0.03561312655130258, -0.023234792174592327, 0.05589513580959577,
- 0.07534398797612923, 0.05177969940436574, 0.0011153354515464832, 0.05024086526380135,
- -0.008140150218073709, -0.046836658094364866, 0.027269384967019923,
- 0.006223830684365776, 0.0010631520753332342, 0.07192408350797799, -0.0821223438789065,
- -0.02667773230216251, -0.04236559526851544, 0.010014492960181087, -0.005544155661482364,
- -0.0244279760786762, 0.09040508326143026, 0.08804078543415436, 0.06856998743919226,
- 0.07975601598333854, 0.02914684793079057, 0.07756718814086455, 0.04706675614131829,
- -0.01900236210069404, 0.06172819015605805, -0.03605636639090685, -0.05839005823676976,
- -0.017402813120637663, -0.012416735958630363, 0.06827904312656476, 0.03499563452071296,
- -0.058665093106146045, -0.032621449074493006, 0.013229120417515962,
- -0.04156853740390103, -0.06175749055602445, -0.022629084137196723, 0.04344389528537599,
- 0.05042669606896547, -0.05804851113890226, -0.1021869142468159, -0.08590697210568649,
- 0.008052294205229443, 0.0362119048149907, -0.04662433703644918, -0.03931458374986855,
- -0.0839009303599596, -0.01286991747866313, -0.03329171791007796, 0.042349863618325725,
- -0.016499935385162152, -0.023887490150697816, -0.028710277742133118,
- -0.07393001492779988, 0.022232149521676965, 0.011224276141197502, 0.028820152179552957,
- -0.02742356229842139, -0.047391293212198295, -0.010782511855163298,
- 0.002300126065305309, 0.009686604540687628, -0.03357106477331119, 0.039513979035501294,
- 0.02701018820516765, -0.0016559967782366304, -0.004523539808780277,
- 0.013191624893806875, 0.04196350143935818, -0.03368145873201474, -0.009751643913869675,
- 0.06756762948890145, -0.00864377822570252, 0.019711085413851272, -0.04065716320362229,
- -0.11388603511911172, -0.014367548341397196, 0.009636781439229917, -0.0485131095091884,
- 0.037662001756521374, -0.029262015381111547, 0.031448780272442564, -0.03293039194809703,
- -0.03987777620876351, 0.05175025209497947, -0.05211977947216768, -0.057003820028442606,
- -0.08407482820061538, 0.12057134050589341, 0.005465777022226785, -0.013171777854530284,
- 0.003612670422836135, -0.05380203359975265, 0.028429614608355153, -0.03191886748223064,
- -0.004580152713550398, 0.034732559319728844, 0.0644690295538077, -0.002351703827466386,
- -0.0027626972117174705, 0.05754255897437151, -0.016586643419801615, 0.04480068707981935,
- 0.09906784917872685, 0.4436636521266057, -0.2056217801112395, 0.05444585008976551,
- 0.09888269150486359, -0.016345069466087107, 0.05065529850813059, -0.05183952466513102,
- 0.08468593728656952, 0.056874912088880174, 0.0828541750804736, 0.131862074136734,
- -0.0664237613718097, -0.023886412964202464, -0.07955519711742035, 0.08819083153055264,
- -0.005924740188325254, 0.045442956355355606, -0.04198159631386471,
- -0.038894351373808325, -0.050937296177905336, -0.011171338130505038,
- -0.054763083990949854, 0.0040099033884381735, 0.018283156051228825,
- -0.04808950058829326, 0.021834830444556877, 0.04404045447993737, 0.05344269166772182,
- -0.05743130196172457, 0.026803755864071157, -0.06824743669802466, 0.03872652119025588,
- 0.026070803202366315, 0.052966536524204105, -0.12135396210046914, 0.020231112264669858,
- -0.07840484652954799, -0.08621698159437913, 0.0978315918204876, 0.01742245032129666,
- 0.07697300813519038, 0.04177778228544272, 0.0018022568815817626, 0.028955894849227313,
- -0.0530290320658913, -0.05957982560189871, 0.029911842339340813, 0.05112124936511883,
- 0.04423427707157456, 0.04517779947043611, 0.1393741314800886, -0.028976351080927998,
- -0.032397677593577937, -0.09439507531575285, 0.046924563948638164, 0.17806080212959877,
- -0.021766241872683167, 0.022357113014620084, 0.03187203084906706,
- -0.0024109607564661508, -0.004383735841167016, -0.036071682402577535,
- -0.0848560998072991, -0.009602734236977994, -0.04130893311678217, 0.07985012978315353,
- 0.02925632855868361, -0.017234441689932004, -0.17500154674053192, -0.02034800380575829,
- -0.03291109678013107, 0.002202970235465238, 0.1598277584864543, -0.06509120146242472,
- 0.02844983394830846, -0.001670029538777621, 0.02183090399305981, -0.028535174062618844,
- -0.09696877833742362, -0.018372659750569325, -0.029771168067012556, 0.02386375739185426,
- 0.03631691837038558, 0.042079888140925996, -0.07916344286730656, 0.06185438971106823,
- -0.08277414524211334, 0.1237110340824494, -0.00544092021524333, 0.015650135903762512,
- 0.02043435496922869, -0.03911895915650977, 0.030403264375099052, 0.0457215874026028,
- -0.045855872941991456, 0.040711387185952984, -0.00969480813588374,
- -0.031511690181035265, -0.09000988806096408, -0.07156054188425724, -0.04272412404847833,
- -0.0710124597669794, 0.02046498602318864, -0.10404698149516033, -0.0339262033029137,
- -0.051601874033132426, 0.010068343353430884, -0.010759441817824084, 0.05507334937842993,
- 0.042220706979815774, -0.10935805580363823, 0.004071499709075747,
- -0.0008492942333060245, 0.04102467125854813, -0.033173536254952736,
- -0.08201648008364898, 0.0026931887752233217, 0.04665623891812105, 0.05652685570888794,
- -0.009603572463115247, 0.004559705783881677, -0.04419695717604974, 0.04854632863918176,
- -0.1004315480016745, -0.5016409502579615, 0.09715220919595315, 0.03845257348327253,
- 0.021365996163624983, 0.04246465040621562, -0.05323669980638302, 0.05656282791796212,
- 0.007806616215160689, -0.027744200385104004, 0.08116253580038364, -0.05980392301884981,
- 0.0257770070389737, -0.011654162385429327, -0.015423461270984262, -0.023334680749730278,
- -0.08800112971892723, -0.05581203353806184, 0.06948367964762908, -0.029237688478763,
- -0.07944606917981918, -0.09843123919115616, 0.02255022031917738, -0.008186107053636359,
- 0.009807553357229782, 0.004684161965717346, 0.01108442200963439, -0.04774568083051305,
- -0.04863241952485763, 0.06540478020906448, 0.06215301485588917, 0.005985114566451207,
- -0.0697782552586152, -0.018563602665940728, 0.08382683218671726, -0.015034789688518057,
- 0.1292080836227307, 0.02880257014644135, -0.00030499446886376693, -0.1046319744334771,
- 0.06114260336527458, 0.031744245887519076, 0.1871696189045906, -0.008028350144741125,
- 0.04636205371039418, 0.012242712862923956, 0.14717688898627573, 0.03653923016435538,
- 0.02818479471394452, -0.03992800400234186, 0.009335597726301504, -0.011893163388706923,
- -0.0054966059394176295, 0.05327714800548095, -0.09853406565693709,
- -0.023290135682775423, -0.036773672443814576, -0.030077956401957914,
- -0.042115438622064315, -0.03807252915934301, 0.21213984833313868, 0.0043260956836792715,
- -0.0037194348489999985, -0.02841411907082567, -0.03208193315927369, 0.00921348035738517,
- -0.03475437540775882, -0.05862780022793091, -0.020426802137920346, 0.003183535024268517,
- -0.00491081488060165, -0.02698110832940214, -0.11620929493353917, 0.011149043734454049,
- 0.011204498071142903, -0.01379851484671235, 0.08893470423152813, -0.013832018274115399,
- 0.053927484640063576, -0.021101751580807522, 0.10157273365901066, 0.022840769343579616,
- 0.003992488527169021, 0.0681294512290221, 0.08837266724843246, 0.03242871236915772,
- -0.03267317703844478, -0.026248433734648503, -0.023337104277183805,
- -0.01779580506711052, 0.16219932184769556, -0.055422221041785985, 0.10826297835088693,
- 0.06709583318577363, -0.06908058009755152, -0.056084927243108935, -0.000718792497466963,
- 0.05000952599892536, 0.05466666380659892, -0.48045914333600265, -0.021068352847718276,
- 0.10882147946036778, 0.009731289912731601, 0.026460207682528283, 0.10483913094951557,
- 0.03404473470380673, -0.04721855171597921, -0.019056315247256022, -0.10368507960811257,
- 0.13952340185642242, -0.018281393728102557, 0.06272338334327707, -0.09820699254767253,
- 0.031150337693711314, 0.09051006015103596, -0.029390907385207426, 0.021659906747607656,
- 0.012946703899965191, -0.2530016280137576, -0.01450989222771918, -0.01756722867811242,
- 0.16396898948229277, 0.0037175677716732025, 0.02845334032407174, 0.06879940242148362,
- -0.08483920962764667, -0.006438532960601151, 0.05886794855961433, -0.003402113180177716,
- 0.06313498482967798, 0.00279377275504745, -0.004746521532069892, 0.11075050025605239,
- 0.10213047366302747, 0.06862747905632624, -0.06109242391987489, 11.908787653996395,
- 0.0336719169594849, 0.0901418885645958, -0.07432284227644022, 0.06903091044380115,
- -0.051188910666566625, 0.035609299970719106, -0.10357224224851681, 0.08463216035698469,
- 0.12189022480295254, -0.005576383297851022, -0.030395605753605757, -0.04863572837068485,
- -0.09051094754921415, 0.022513499463317342, -0.03820306677013063, -0.053417781045517095,
- -0.03944360543615543, 0.025770778087182686, -0.06230782753286453, -0.02667568375965437,
- 0.03629380758278645, 0.07344927079975605, 0.015636837584539674, -0.06369373062625527,
- 0.05791512661828445, 0.0036670698341018017, 0.007982976130174043, -0.009367278246477677,
- 0.04215829022443639, 0.0025859630706970794, 0.00046999967442109034, 0.04164219615407861,
- 0.028034928612984143, 0.007017534194836536, 0.04583650125333896, 0.02790937429325333,
- 0.041869406695835866, 0.02553050730449076, 0.07863047074239987, 0.012546563270286871,
- 0.006594791112897487, 0.02112794853746891, 0.07308610485723385, 0.04456288890483288,
- 0.03393364049350986, 0.049216952515192904, 0.11910839092272979, -0.007234575688086737,
- 0.06554448160414512, 0.08843477013019416, -0.04056015771885331, 0.09618527685793546,
- 0.01915277550982025, 0.02519492424415568, 0.07302813380598448, -0.0284918353606302,
- -0.05031417320983914, 0.06789885690579048, 0.04850075483465424, -0.05202552604560669,
- 0.1004523729475645, 0.008883226920331184, 0.10283651288885337, -0.02358365989325998,
- 0.03290294088611308, 0.07360524039428967, 0.03282081946067942, -0.12234139994073373,
- -0.07465485712656608, 0.05613486626400398, -0.07578995558791436, -0.08143801757922539,
- 0.04940514452755451, 0.09713280616471401, -0.03937994960982066, 0.06118935088698681,
- -0.07022818163610421, 0.009577562101185322, -0.04672243798939654, -0.017348170683432657,
- 0.019682436877001937, -0.022182247198473375, 0.004434031622412686, 0.007784598842800523,
- 0.023852280538099315, 0.10066152679232451, 0.131528846346415, -0.0065701442889314005,
- -0.11935017888362591, -0.07907265295776036, 0.11861349900181477, -0.017717755260841492,
- -0.0757345468020783, 0.046154728051848136, -0.05419540347961279, 0.027168358532855146,
- -0.15826593081538493, 0.07249624554354411, 0.12809823754315192, -0.08248564400351964,
- -0.020495766379798833, -0.029073805440790378, 0.09671232075645374,
- -0.021313711673988458, 0.06439718931841736, -0.09388483616595085, 0.005406302986487459,
- 0.007873288078161959, 0.027958507148119118, -0.04793091673547259, 0.07377666732869469,
- 0.06467629940463947, -0.07647802838339256, 0.08361949356129536, 0.07602346552392611,
- -0.047261456529108375, -0.017358268407406285, 0.04279450893115539, 0.010328801438355675,
- -0.09998344171505708, -0.04716260838680542, -0.029777951825123567, -0.06517484289808916,
- -0.019666892221161667, -0.030794389868298404, -0.0014923150122810442,
- 0.0370497359141994, -0.04492914268317131, -0.01363087447736269, 0.016981290588424038,
- 0.03940671281172679, 0.06999955670191692, -0.03285309951752424, 0.04989503266719671,
- -0.05306613280509527, -0.04067579828775846, 0.0457337938535672, 0.04789993346024018,
- 0.10452334783398189, -0.07447655054812248, -0.021893443347205624, -0.02605479060170742,
- -0.12129401300962155, 0.03885201172222598, 0.07094818230969115, 0.03353465217738771,
- 0.048017528982689746, 0.039217353995459586, -0.07380846243065137, -0.009530505004267279,
- 0.0892295351681801, 0.02074406530972248, 0.0020675283068647752, -0.004724954335520474,
- -0.07943764328956604, -0.04276323064158742, 0.08855296313189544, -0.0017272317748463068,
- -0.01146356977495508, -0.003866640389717829, -0.021321098105265543, 0.08016005480805269,
- 0.0840232792453697, 0.07718940301296803, 0.008417739445576444, 0.016001063394539345,
- 0.006352626100684015, 0.009586832396542797, 0.016559615829744592, 0.017943985822897118,
- -0.026836597940508418, -0.08574296132876323, -0.07499622138073811, 0.02087042927562904,
- 0.0802049906207965, 0.054146439515394516, -0.12365208594844891, -0.006000964299276417,
- 0.006082615985248525
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 72,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 16,
- "similarity": 0.9989694952964783
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 53,
- "similarity": 0.9988046288490295
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 68,
- "similarity": 0.9987500309944153
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Hacker News"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1319,
- "source_domain": "news.ycombinator.com",
- "submitters": ["Anonymous"],
- "title": "Facebook apologizes after wrong translation sees Palestinian man arrested",
- "url": "https://news.ycombinator.com/item?id=15542004"
- },
- {
- "__typename": "Report",
- "authors": ["Yotam Berger"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1658966400,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1318,
- "source_domain": "haaretz.com",
- "submitters": ["Anonymous"],
- "title": "Israel Arrests Palestinian Because Facebook Translated 'Good Morning' to 'Attack Them'",
- "url": "https://www.haaretz.com/israel-news/palestinian-arrested-over-mistranslated-good-morning-facebook-post-1.5459427"
- },
- {
- "__typename": "Report",
- "authors": ["Alex Hern"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1317,
- "source_domain": "theguardian.com",
- "submitters": ["Anonymous"],
- "title": "Facebook translates 'good morning' into 'attack them', leading to arrest",
- "url": "https://www.theguardian.com/technology/2017/oct/24/facebook-palestine-israel-translates-good-morning-attack-them-arrest"
- },
- {
- "__typename": "Report",
- "authors": ["Lydia Smith"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1658966400,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1316,
- "source_domain": "independent.co.uk",
- "submitters": ["Anonymous"],
- "title": "Israel police mistakenly arrest Palestinian man for writing ‘good morning’ on Facebook",
- "url": "https://www.independent.co.uk/news/uk/home-news/israel-police-palestinian-man-arrest-good-morning-facebook-page-translation-mistake-a8015626.html"
- },
- {
- "__typename": "Report",
- "authors": ["Phillip Tracy"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1315,
- "source_domain": "dailydot.com",
- "submitters": ["Anonymous"],
- "title": "Facebook Apologizes After Translation Fail Leads to False Arrest",
- "url": "https://www.dailydot.com/debug/facebook-translation-arrest/"
- },
- {
- "__typename": "Report",
- "authors": ["Alexandra Kravariti"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1314,
- "source_domain": "translateplus.com",
- "submitters": ["Anonymous"],
- "title": "How a Facebook automatic translation error got an innocent man arrested",
- "url": "https://www.translateplus.com/blog/facebook-automatic-translation-error-got-innocent-man-arrested/"
- },
- {
- "__typename": "Report",
- "authors": ["Forum Users"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1313,
- "source_domain": "forum.facepunch.com",
- "submitters": ["Anonymous"],
- "title": "Man arrested after ‘good morning’ post was mistranslated by Facebook as ‘attack them’",
- "url": "https://forum.facepunch.com/sh/urhe/Man-arrested-after-good-morning-post-was-mistranslated-by-Facebook-as-attack-them/1/"
- },
- {
- "__typename": "Report",
- "authors": ["Aiden Pink"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1312,
- "source_domain": "forward.com",
- "submitters": ["Anonymous"],
- "title": "Palestinian Arrested After Facebook Translation Error",
- "url": "https://forward.com/fast-forward/386250/palestinian-arrested-after-facebook-translates-good-morning-as-attack-them/"
- },
- {
- "__typename": "Report",
- "authors": ["Hanna Kozlowska"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1311,
- "source_domain": "qz.com",
- "submitters": ["Anonymous"],
- "title": "Israel arrested a Palestinian after Facebook translated “Good morning” as “Attack them”",
- "url": "https://qz.com/1109538/police-in-israel-arrested-a-palestinian-man-because-facebooks-ai-mistranslated-his-good-morning-post-as-attack-them/"
- },
- {
- "__typename": "Report",
- "authors": ["Natasha Duarte", "Emma Llansó", "Anna Loup"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1668643200,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1310,
- "source_domain": "cdt.org",
- "submitters": ["Anonymous"],
- "title": "Mixed Messages? The Limits of Automated Social Media Content Analysis",
- "url": "https://cdt.org/files/2017/12/FAT-conference-draft-2018.pdf"
- },
- {
- "__typename": "Report",
- "authors": ["Greg Sandoval"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1309,
- "source_domain": "finance.yahoo.com",
- "submitters": ["Anonymous"],
- "title": "A Google translation isn't enough evidence to send someone to jail, finds the judge in a narcotics case (GOOG, GOOGL)",
- "url": "https://finance.yahoo.com/news/google-translation-isn-apos-t-001142325.html"
- },
- {
- "__typename": "Report",
- "authors": ["Post Courier"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1307,
- "source_domain": "postcourier.com.pg",
- "submitters": ["Anonymous"],
- "title": "Palestinian arrested for saying ‘good morning’ on Facebook",
- "url": "https://postcourier.com.pg/palestinian-arrested-saying-good-morning-facebook/"
- },
- {
- "__typename": "Report",
- "authors": ["Jen Mills"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1306,
- "source_domain": "metro.co.uk",
- "submitters": ["Anonymous"],
- "title": "Man arrested for saying 'good morning' because online translator made a mistake",
- "url": "https://metro.co.uk/2017/10/23/man-arrested-for-saying-good-morning-because-online-translator-made-a-mistake-7022410/"
- },
- {
- "__typename": "Report",
- "authors": ["SuperNewsWorld"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1305,
- "source_domain": "supernewsworld.com",
- "submitters": ["Anonymous"],
- "title": "A ‘Good Morning’ Reportedly Gets Man Arrested After Facebook Translate Error",
- "url": "https://www.supernewsworld.com/A-Good-Morning-Reportedly-Gets-Man-Arrested-After-Facebook-Translate-Error-3198392.html"
- },
- {
- "__typename": "Report",
- "authors": ["NewsX"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1304,
- "source_domain": "newsx.com",
- "submitters": ["Anonymous"],
- "title": "Israel: Botched Facebook translation lands man in lock-up; ‘Good Morning’ turns ‘Attack Them’",
- "url": "https://www.newsx.com/world/israel-botched-facebook-translation-lands-man-in-lock-up-good-morning-turns-attack-them"
- },
- {
- "__typename": "Report",
- "authors": ["Abigail Beall"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1302,
- "source_domain": "alphr.com",
- "submitters": ["Anonymous"],
- "title": "Man arrested because of a Facebook mistranslation",
- "url": "https://www.alphr.com/technology/1007453/man-arrested-because-of-a-facebook-mistranslation"
- },
- {
- "__typename": "Report",
- "authors": ["Tamara Pearson"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1301,
- "source_domain": "thealternativedaily.com",
- "submitters": ["Anonymous"],
- "title": "This Man Was Arrested For Posting 'Good Morning' On Facebook",
- "url": "https://www.thealternativedaily.com/clumsy-facebook-translation-error-sees-man-arrested/"
- },
- {
- "__typename": "Report",
- "authors": ["Ofer Tirosh"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1300,
- "source_domain": "tomedes.com",
- "submitters": ["Anonymous"],
- "title": "Faulty Facebook translation leads to Palestinian man’s arrest",
- "url": "https://www.tomedes.com/translator-hub/facebook-translation-arrest.php"
- },
- {
- "__typename": "Report",
- "authors": ["Privacy International"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1299,
- "source_domain": "privacyinternational.org",
- "submitters": ["Anonymous"],
- "title": "Facebook auto-translation AI error results in Palestinian man's arrest",
- "url": "https://privacyinternational.org/examples-abuse/1906/facebook-auto-translation-ai-error-results-palestinian-mans-arrest"
- },
- {
- "__typename": "Report",
- "authors": ["Gareth Davies"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1298,
- "source_domain": "dailymail.co.uk",
- "submitters": ["Anonymous"],
- "title": "Israeli police arrest Palestinian over Facebook post",
- "url": "https://www.dailymail.co.uk/news/article-5005489/Good-morning-Facebook-post-leads-arrest-Palestinian.html"
- },
- {
- "__typename": "Report",
- "authors": ["Hyacinth Mascarenhas"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1297,
- "source_domain": "ibtimes.co.uk",
- "submitters": ["Anonymous"],
- "title": "Palestinian arrested by Israeli police after Facebook mistranslated his 'good morning' post",
- "url": "https://www.ibtimes.co.uk/palestinian-man-arrested-by-israeli-police-after-facebook-mistranslated-his-good-morning-post-1644154"
- },
- {
- "__typename": "Report",
- "authors": ["Gianluca Mezzofiore"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1296,
- "source_domain": "mashable.com",
- "submitters": ["Anonymous"],
- "title": "Facebook's auto translation AI fail leads to a nightmare for a Palestinian man",
- "url": "https://mashable.com/2017/10/24/facebook-auto-translation-palestinian-man-arrest-israel/#BzIXiremBiqk"
- },
- {
- "__typename": "Report",
- "authors": ["Garibaldi Cucinare"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1295,
- "source_domain": "swordandscale.com",
- "submitters": ["Anonymous"],
- "title": "Man Arrested After Facebook Translation Error",
- "url": "http://swordandscale.com/man-arrested-after-facebook-translation-error/"
- },
- {
- "__typename": "Report",
- "authors": ["James Whitbrook"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1658966400,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1294,
- "source_domain": "gizmodo.com.au",
- "submitters": ["Anonymous"],
- "title": "Palestinian Man Arrested After Facebook Auto-Translates 'Good Morning' As 'Attack Them'",
- "url": "https://www.gizmodo.com.au/2017/10/palestinian-man-arrested-after-facebook-auto-translates-good-morning-as-attack-them/"
- },
- {
- "__typename": "Report",
- "authors": ["Thuy Ong"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1293,
- "source_domain": "theverge.com",
- "submitters": ["Anonymous"],
- "title": "Facebook apologizes after wrong translation sees Palestinian man arrested for posting ‘good morning’",
- "url": "https://www.theverge.com/us-world/2017/10/24/16533496/facebook-apology-wrong-translation-palestinian-arrested-post-good-morning"
- },
- {
- "__typename": "Report",
- "authors": [
- "Trevor Mogg",
- "Will Nicol",
- "Christian De Looper",
- "Enid Burns",
- "Patrick Hearn",
- "Jon Martindale",
- "Hillary Grigonis",
- "Brie Barbee"
- ],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1292,
- "source_domain": "digitaltrends.com",
- "submitters": ["Anonymous"],
- "title": "Man Arrested After Facebook Translates Turns Greeting Into Threat",
- "url": "https://www.digitaltrends.com/social-media/facebook-translate-mistaken-arrest/"
- },
- {
- "__typename": "Report",
- "authors": ["Alex Hern"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1291,
- "source_domain": "theguardian.com",
- "submitters": ["Anonymous"],
- "title": "Facebook translates 'good morning' into 'attack them', leading to arrest",
- "url": "https://www.theguardian.com/technology/2017/oct/24/facebook-palestine-israel-translates-good-morning-attack-them-arrest"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "niantic-labs",
- "name": "Niantic Labs"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "niantic-labs",
- "name": "Niantic Labs"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "non-white-neighborhoods",
- "name": "non-white neighborhoods"
- },
- {
- "__typename": "Entity",
- "entity_id": "communities-of-color",
- "name": "communities of color"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1343, 1327, 1325, 1324, 1323, 1322, 1321, 1320],
- "vector": [
- -0.0564916618168354, 0.08092889934778214, 0.01597326248884201, -0.10991504043340683,
- 0.08793435990810394, -0.024477245286107063, -0.004572499077767134, 0.06873622536659241,
- 0.06547432392835617, -0.09621542692184448, -0.01983831264078617, 0.06261664628982544,
- 0.025741856545209885, -0.04564378410577774, 0.04712831974029541, -0.06615511327981949,
- -0.10978249460458755, -0.023055220022797585, -0.018537724390625954,
- -0.11694082617759705, -0.06599457561969757, 0.011414178647100925, -0.002657142700627446,
- 0.09679361432790756, -0.0611221008002758, 0.02012827806174755, 0.10019288957118988,
- 0.08154921233654022, -0.007114720065146685, 0.04065323993563652, -0.024637775495648384,
- -0.07314018160104752, 0.13403572142124176, -0.01187286339700222, 0.019297651946544647,
- 0.05459367483854294, 0.043613191694021225, -0.009213034994900227, -0.03480862081050873,
- 0.0214938186109066, 0.024589778855443, 0.21525634825229645, -0.02509056217968464,
- -0.0014141318388283253, 0.055503685027360916, -0.022392572835087776,
- -0.021456023678183556, 0.05056988075375557, 0.004227783065289259, 0.04651351273059845,
- -0.004268629476428032, 0.015715649351477623, -0.03545527532696724, -0.00249564740806818,
- -0.09542477130889893, 0.05335783213376999, 0.047495536506175995, 0.008931394666433334,
- 0.045691974461078644, -0.06489526480436325, -0.0066614532843232155, -0.1740143895149231,
- -0.06674861162900925, -0.07258710265159607, 0.0886412113904953, -0.07292481511831284,
- -0.025788243860006332, 0.04061277210712433, 0.03990583121776581, 0.05064408481121063,
- 0.06724921613931656, -0.028263438493013382, -0.014067848213016987,
- -0.023765556514263153, -0.03216677904129028, -0.012523307465016842,
- 0.009020713157951832, 0.19420470297336578, -0.0823865756392479, 0.045981068164110184,
- 0.09360097348690033, -0.1023782342672348, 0.3378807604312897, 0.0026007192209362984,
- -0.0005053440108895302, -0.03755142539739609, 0.07418216019868851, 0.015299464575946331,
- 0.04569261148571968, 0.0607735738158226, 0.005798461847007275, 0.08454100042581558,
- -0.06536982208490372, -0.021932510659098625, 0.036338306963443756, 0.027711356058716774,
- -0.0070178634487092495, -0.027934083715081215, -0.02655407413840294,
- -0.04470633715391159, -0.042714595794677734, -0.04365669935941696, 0.11983595788478851,
- 0.056166134774684906, -0.015544992871582508, 0.016733070835471153, 0.04160125553607941,
- -0.037019386887550354, 0.06975031644105911, -0.06309091299772263, 0.043562598526477814,
- -0.004681298043578863, 0.027457455173134804, 0.007890783250331879, 0.013830441050231457,
- -0.004469174426048994, 0.012366928160190582, 0.025882482528686523, 0.07518580555915833,
- 0.06211363524198532, 0.00010765064507722855, 0.06802383065223694, 0.0890582725405693,
- -0.04099094867706299, -0.05344332754611969, -0.03842463344335556, -0.01972785033285618,
- -0.007980064488947392, -0.03151634335517883, 0.03159848228096962, -0.02345389500260353,
- -0.20240306854248047, -0.005055404268205166, 0.06780776381492615, 0.0004781415918841958,
- -0.009686989709734917, 0.021813252940773964, -0.06576769053936005, 0.02394193224608898,
- -0.03240794315934181, -0.06700925529003143, 0.04516654834151268, 0.014961868524551392,
- 0.06439880281686783, 0.0866345763206482, 0.04749761149287224, -0.02401551604270935,
- -0.03358807414770126, 0.0005360615905374289, -0.05898679792881012, 0.09721675515174866,
- -0.08934091031551361, -0.051167991012334824, 0.0006340816034935415,
- -0.0030596060678362846, 0.6399577856063843, 0.11061687767505646, 0.14023156464099884,
- -0.04155203700065613, -0.026043612509965897, 0.14558444917201996, -0.026897061616182327,
- 0.037184517830610275, -0.05662050470709801, -0.030942514538764954, 0.015865273773670197,
- -0.05879753828048706, -0.050126105546951294, 0.01076566893607378, 0.038537170737981796,
- 0.0696955993771553, 0.006311792880296707, 0.07305571436882019, -0.003994539380073547,
- -0.08587715029716492, -0.06134247034788132, 0.04708348214626312, -0.01428529154509306,
- -0.1251266449689865, -0.01876174844801426, 0.047991473227739334, 0.08324359357357025,
- -0.09259103238582611, 0.007702714763581753, -0.06418482214212418, 0.03138880059123039,
- -0.01877058483660221, 0.017933335155248642, -0.042152635753154755, 0.023527951911091805,
- 0.030131250619888306, 0.022192075848579407, -0.013356022536754608, -0.09212613105773926,
- -0.03717464208602905, 0.10347458720207214, -0.03141816705465317, -0.023364286869764328,
- 0.07080148905515671, -0.10040853172540665, 0.028041167184710503, -0.02122722566127777,
- 0.1384291797876358, -0.1221189945936203, 0.04170496016740799, -0.01349362451583147,
- 0.024513205513358116, 0.05242012441158295, -0.005739085376262665, -0.07577859610319138,
- -0.036908961832523346, 0.10863350331783295, 0.009593031369149685, 0.072454534471035,
- -0.00400827219709754, -0.02444411814212799, 0.03430459648370743, 0.05734778568148613,
- 0.0016741869039833546, -0.036165885627269745, 0.050008419901132584,
- 0.059635747224092484, -0.025856997817754745, -0.025447292253375053,
- 0.005889585241675377, 0.003811450442299247, 0.05656686797738075, 0.014274886809289455,
- 0.04641827940940857, 0.0018586458172649145, -0.029030168429017067, 0.04491595923900604,
- 0.023146381601691246, 0.02553378790616989, 0.09659484773874283, -0.07576697319746017,
- -0.04745922237634659, -0.031988609582185745, -0.044151052832603455,
- -0.006774911191314459, -0.0408606231212616, 0.0626915693283081, 0.0659865066409111,
- 0.08694770932197571, 0.033842891454696655, 0.031472280621528625, 0.042707473039627075,
- 0.04285626858472824, 0.0338151790201664, 0.09244884550571442, -0.044212404638528824,
- -0.02983616106212139, -0.0345185250043869, -0.001121130888350308, 0.022585198283195496,
- 0.04107975959777832, -0.08591009676456451, -0.024284353479743004, -0.022433781996369362,
- -0.01660131849348545, -0.07386691123247147, -0.04977508261799812, 0.017463739961385727,
- 0.03117082640528679, -0.053463682532310486, -0.09347178786993027, -0.06846081465482712,
- 0.013349856249988079, 0.05298257991671562, -0.05014578998088837, -0.01501305028796196,
- -0.11026695370674133, 0.006333409808576107, -0.017128240317106247, 0.060725994408130646,
- -0.01104480866342783, 0.02441786415874958, 0.008484626188874245, -0.052846066653728485,
- 0.028573164716362953, -0.011084366589784622, 0.0048901173286139965,
- -0.03247195482254028, -0.02425072342157364, -0.06003638356924057,
- -0.0038000172935426235, -0.0052921362221241, -0.025750506669282913,
- 0.036523737013339996, 0.058532197028398514, 0.059755053371191025, -0.036296308040618896,
- -0.033828578889369965, 0.031687259674072266, -0.044339243322610855,
- 0.0021354404743760824, 0.09217900037765503, -0.012298209592700005, 0.03305444493889809,
- 0.0031500475015491247, -0.04246030002832413, -0.07006269693374634,
- -0.005590147338807583, -0.019601969048380852, 0.04670075327157974, -0.03249331936240196,
- -0.009485675022006035, -0.04003870114684105, -0.002621101215481758,
- 0.052562590688467026, -0.06904871016740799, -0.05893857777118683, -0.09815122932195663,
- 0.12791380286216736, -0.010561449453234673, 0.007009163498878479, 0.001202517538331449,
- -0.061007436364889145, 0.05408294126391411, -0.002067946596071124, -0.00539455097168684,
- 0.05171891301870346, 0.05705558508634567, 0.016205057501792908, -0.014363753609359264,
- 0.06271535158157349, -0.001505840802565217, 0.011172257363796234, 0.04229885712265968,
- 0.44185519218444824, -0.21449121832847595, 0.052715688943862915, 0.08507632464170456,
- 0.047201357781887054, 0.07563271373510361, -0.00442088907584548, 0.060640186071395874,
- 0.07661668956279755, 0.1158163771033287, 0.1130031868815422, -0.013122394680976868,
- 0.004663604777306318, -0.05204927176237106, 0.06507058441638947, 0.01300007849931717,
- -0.00390971265733242, -0.00025076462770812213, -0.06765718013048172,
- -0.020885325968265533, 0.033541832119226456, -0.06643975526094437,
- -0.0000947850348893553, -0.008882950060069561, -0.052914779633283615,
- 0.022378116846084595, 0.024455755949020386, 0.03042628988623619, -0.03599733114242554,
- 0.03362412750720978, -0.01228072214871645, 0.0867910385131836, 0.06465914845466614,
- 0.001357594970613718, -0.1077382043004036, 0.03599518910050392, -0.012501290068030357,
- -0.07928339391946793, 0.10525122284889221, -0.011984243057668209, 0.03113732300698757,
- 0.07465406507253647, -0.048743799328804016, 0.04368977248668671, 0.00410150783136487,
- -0.04047824814915657, -0.01010050904005766, 0.05006163939833641, 0.012752302922308445,
- 0.07925628125667572, 0.14759112894535065, -0.03133748471736908, 0.002625082153826952,
- -0.0759173333644867, 0.05736088752746582, 0.11008592694997787, -0.0032722344622015953,
- 0.018762599676847458, -0.013788536190986633, -0.007052833680063486,
- 0.012141101993620396, -0.03905884549021721, -0.09816844016313553, -0.02262529544532299,
- -0.06791137903928757, 0.0814550518989563, 0.02838841639459133, -0.013360361568629742,
- -0.18908362090587616, 0.016102975234389305, -0.05597038194537163, 0.046361491084098816,
- 0.10569840669631958, -0.08170626312494278, -0.003974088933318853, 0.0012005959870293736,
- 0.02153053879737854, -0.04717104136943817, -0.08203340321779251, -0.0057973433285951614,
- -0.06855807453393936, 0.030248383060097694, 0.07069084793329239, 0.048295456916093826,
- -0.029915262013673782, 0.04897431284189224, -0.08908506482839584, 0.06773833930492401,
- 0.015100513584911823, -0.017585627734661102, 0.01778046414256096, -0.005449157673865557,
- 0.04375603422522545, -0.0031621495727449656, -0.03667650744318962,
- -0.0019678070675581694, -0.020000167191028595, -0.02534451335668564,
- -0.056356534361839294, -0.06104317307472229, -0.03239251300692558, -0.06792841106653214,
- 0.06605414301156998, -0.06390984356403351, -0.04200771078467369, -0.0031129508279263973,
- -0.006545038893818855, -0.007621831260621548, 0.026540303602814674,
- 0.016342416405677795, -0.11633836477994919, -0.011294462718069553,
- -0.011796200647950172, 0.07743493467569351, 0.006530212238430977, -0.06166987493634224,
- 0.019636107608675957, 0.1030687466263771, 0.023983461782336235, -0.06411197036504745,
- -0.03340756520628929, 0.0007177663501352072, 0.05305025354027748, -0.11327719688415527,
- -0.506148636341095, 0.044471435248851776, 0.023460935801267624, 0.027489667758345604,
- 0.0005527812172658741, -0.0655856654047966, 0.0035381114576011896, 0.017355341464281082,
- -0.02357645332813263, 0.0519530326128006, -0.04785013943910599, 0.010281436145305634,
- -0.005650673061609268, -0.05887525901198387, 0.001415976439602673,
- -0.052532196044921875, -0.07118484377861023, 0.045078396797180176,
- -0.019164517521858215, -0.051416222006082535, -0.08896147459745407, 0.031805619597435,
- 0.0003686239942908287, 0.03894304856657982, -0.004261185880750418,
- 0.00024270929861813784, -0.08238350600004196, -0.05862447991967201,
- 0.039663199335336685, 0.06904757767915726, 0.03500088304281235, -0.05637383833527565,
- -0.010558760724961758, 0.07361088693141937, 0.026952547952532768, 0.08684782683849335,
- 0.004139337223023176, -0.06415703892707825, -0.030292782932519913, 0.07703731954097748,
- 0.04352320730686188, 0.1874607801437378, 0.0022797819692641497, 0.045375511050224304,
- -0.005887005943804979, 0.11671875417232513, 0.027874717488884926,
- -0.0010931255528703332, -0.007636777590960264, 0.007550582755357027,
- 0.022546524181962013, -0.017827726900577545, 0.07752752304077148, -0.06023380905389786,
- -0.03579418733716011, -0.00038733656401745975, -0.007937450893223286,
- -0.025608060881495476, 0.01088721863925457, 0.18972070515155792, 0.022130465134978294,
- 0.03213048726320267, 0.041573744267225266, -0.03102591633796692, 0.014892562292516232,
- -0.08972859382629395, -0.04934815689921379, -0.045891765505075455,
- -0.009899240918457508, -0.008388054557144642, -0.0382915623486042, -0.08476058393716812,
- -0.023153625428676605, 0.0212272759526968, 0.0261246245354414, 0.11390987038612366,
- -0.010014975443482399, -0.007842808030545712, -0.01534305326640606, 0.1230815052986145,
- 0.04157979413866997, 0.01591404154896736, 0.06340105831623077, 0.07992071658372879,
- 0.019408131018280983, -0.022150255739688873, -0.024541009217500687, -0.0633355900645256,
- 0.0017509708413854241, 0.10432517528533936, -0.03404076024889946, 0.1301230788230896,
- 0.05706220492720604, 0.010799526236951351, -0.026069672778248787, 0.004814102780073881,
- -0.020381292328238487, 0.005324801430106163, -0.47552093863487244, -0.03555458411574364,
- 0.08232864737510681, 0.022021126002073288, 0.02220997028052807, 0.08301854133605957,
- 0.020948776975274086, -0.04489831626415253, -0.011204857379198074, -0.07911531627178192,
- 0.11705812811851501, 0.0017628114437684417, 0.05762559548020363, -0.09061995893716812,
- 0.051108356565237045, 0.07934364676475525, -0.033373523503541946, -0.013075879774987698,
- 0.049679722636938095, -0.1757180392742157, 0.009168112650513649, -0.0227845199406147,
- 0.11645988374948502, -0.017031002789735794, 0.013083148747682571, 0.07801255583763123,
- -0.0507645346224308, 0.00256641604937613, 0.049938052892684937, 0.008932670578360558,
- 0.06467145681381226, 0.011447000317275524, -0.002608737675473094, 0.08603671938180923,
- 0.06601852923631668, 0.06642099469900131, -0.01921687088906765, 11.914660453796387,
- 0.044564247131347656, 0.07424316555261612, -0.0568559467792511, 0.009059697389602661,
- -0.04036858305335045, 0.003155746264383197, -0.10993282496929169, 0.05190182849764824,
- 0.1197567954659462, -0.009051751345396042, -0.06388822942972183, -0.04617839306592941,
- -0.08123674988746643, 0.016887597739696503, -0.016918795183300972, -0.08395328372716904,
- -0.04498984292149544, 0.052735570818185806, -0.04047558829188347, -0.020538458600640297,
- 0.05170669034123421, 0.05738615244626999, 0.01640794239938259, -0.05173991993069649,
- -0.00868969690054655, 0.030458785593509674, -0.026238976046442986, 0.010867323726415634,
- 0.05627484619617462, 0.01624337211251259, -0.0019572803284972906, 0.03372102230787277,
- -0.010907831601798534, 0.041847098618745804, 0.04314840957522392, 0.05303269624710083,
- 0.021652070805430412, 0.025361089035868645, 0.10000770539045334, 0.020865239202976227,
- -0.00258832355029881, 0.011473030783236027, 0.02024892345070839, 0.0750448927283287,
- 0.05478222668170929, 0.028694037348031998, 0.12960170209407806, 0.00509514007717371,
- 0.08835718780755997, 0.09402530640363693, -0.034610241651535034, 0.14307481050491333,
- 0.015999948605895042, -0.01474115252494812, 0.0769018903374672, 0.02980615571141243,
- -0.08868420124053955, 0.07403822988271713, 0.047273244708776474, -0.04737827926874161,
- 0.08750888705253601, 0.007351332809776068, 0.11362232267856598, -0.042166806757450104,
- 0.058801427483558655, 0.06708288192749023, 0.10546427965164185, -0.09680262953042984,
- -0.03960341960191727, 0.03873743861913681, -0.11266673356294632, -0.0680784210562706,
- 0.05855824053287506, 0.07670469582080841, -0.03904230520129204, 0.03663843870162964,
- -0.013307236135005951, 0.03504953533411026, -0.0028164139948785305, 0.02028879150748253,
- 0.050202324986457825, -0.02625156380236149, 0.016854099929332733, 0.06384634971618652,
- 0.0343480110168457, 0.02733355201780796, 0.08985184133052826, 0.009224362671375275,
- -0.09416192024946213, -0.08666501939296722, 0.1099090725183487, -0.004705238156020641,
- -0.07800333201885223, 0.03586459159851074, -0.048306457698345184, 0.04505334794521332,
- -0.1299859881401062, 0.05934746935963631, 0.13227716088294983, -0.07908671349287033,
- -0.03139134496450424, -0.030290979892015457, 0.05059318244457245, 0.002973900642246008,
- 0.04603391885757446, -0.037229109555482864, 0.009562320075929165, -0.020396273583173752,
- 0.03497270494699478, -0.053835250437259674, 0.05158539488911629, 0.07240401953458786,
- -0.05560872331261635, -0.02367740496993065, 0.03045257367193699, 0.006245192140340805,
- -0.022744113579392433, 0.046851225197315216, 0.020106300711631775, -0.0565987229347229,
- -0.03729081526398659, -0.03783571347594261, -0.022219985723495483, -0.04080873355269432,
- -0.05380063131451607, -0.000564325600862503, 0.04517657682299614, -0.018753597512841225,
- 0.0021814166102558374, 0.0464482381939888, 0.0617438405752182, 0.05694840848445892,
- -0.028439423069357872, 0.04208843410015106, -0.022713543847203255,
- -0.016236426308751106, 0.06082511693239212, 0.047797758132219315, 0.05902606248855591,
- -0.06617102026939392, -0.057573944330215454, -0.02712736651301384, -0.09797568619251251,
- 0.03617357462644577, 0.06583678722381592, 0.0675104409456253, 0.03732892870903015,
- 0.045765843242406845, -0.038985226303339005, -0.026495937258005142, 0.07840912789106369,
- -0.00847640261054039, 0.007514016702771187, 0.023076549172401428, -0.043636247515678406,
- -0.04533486068248749, 0.11927752196788788, -0.05671323463320732, -0.016180217266082764,
- 0.002271350473165512, -0.06340571492910385, 0.1176750659942627, 0.10664926469326019,
- -0.003591869492083788, 0.004580276552587748, 0.006773842964321375, 0.01027855183929205,
- 0.01827513426542282, -0.0021901691798120737, 0.020622579380869865,
- -0.032381508499383926, -0.13099855184555054, -0.0829729437828064, 0.06306610256433487,
- 0.11086452007293701, 0.049192629754543304, -0.10052955895662308, -0.022838519886136055,
- -0.05816161632537842
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 73,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 53,
- "similarity": 0.9990922212600708
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 16,
- "similarity": 0.9988892078399658
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 19,
- "similarity": 0.9988462924957275
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Emily Crockett"],
- "epoch_date_downloaded": 1605312000,
- "epoch_date_modified": 1607299200,
- "epoch_date_submitted": 1607299200,
- "flag": null,
- "report_number": 1343,
- "source_domain": "vox.com",
- "submitters": ["AIAAIC", "Thomas Giallella (CSET)"],
- "title": "Pokemon Go is augmented reality. Too bad reality is still racist.",
- "url": "https://www.vox.com/2016/7/11/12149664/pokemon-go-augmented-reality-racist"
- },
- {
- "__typename": "Report",
- "authors": ["Sandra Az"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1327,
- "source_domain": "medium.com",
- "submitters": ["Anonymous"],
- "title": "Power of Numbers: Pokemon Go!",
- "url": "https://medium.com/data-and-society/power-of-numbers-pokemon-go-18092c35ace3"
- },
- {
- "__typename": "Report",
- "authors": ["Charles Pulliam-Moore"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1325,
- "source_domain": "splinternews.com",
- "submitters": ["Anonymous"],
- "title": "How Nintendo changed this racist Pokémon's design for the better",
- "url": "https://splinternews.com/how-nintendo-changed-this-racist-pokemons-design-for-th-1793855123"
- },
- {
- "__typename": "Report",
- "authors": ["Kalhan Rosenblatt"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1324,
- "source_domain": "dailymail.co.uk",
- "submitters": ["Anonymous"],
- "title": "Pokemon Go accused of racism after more Poke Stops in white neighborhoods",
- "url": "https://www.dailymail.co.uk/news/article-3732371/Pokemon-accused-racism-Poke-Stops-gyms-white-neighborhoods.html"
- },
- {
- "__typename": "Report",
- "authors": ["George Jenkins"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1323,
- "source_domain": "ivebeenmugged.typepad.com",
- "submitters": ["Anonymous"],
- "title": "Pokemon Go: The Good, The Bad, And The Ugly",
- "url": "https://ivebeenmugged.typepad.com/my_weblog/2016/08/pokemon-go-recap.html"
- },
- {
- "__typename": "Report",
- "authors": ["Claire Reid"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1322,
- "source_domain": "ladbible.com",
- "submitters": ["Anonymous"],
- "title": "Is Pokémon Go Racist? Users Complain Of Lack Of Poké Stops In Black Areas",
- "url": "http://www.ladbible.com/technology/gaming-pokemon-go-racist-users-complain-of-lack-of-poke-stops-in-black-areas-20160811"
- },
- {
- "__typename": "Report",
- "authors": ["Allana Akhtar"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1321,
- "source_domain": "stuff.co.nz",
- "submitters": ["Anonymous"],
- "title": "Is Pokemon Go racist?",
- "url": "https://www.stuff.co.nz/entertainment/games/83011713/is-pokemon-go-racist"
- },
- {
- "__typename": "Report",
- "authors": ["Allana Akhtar"],
- "epoch_date_downloaded": 1555113600,
- "epoch_date_modified": 1592092800,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1320,
- "source_domain": "usatoday.com",
- "submitters": ["Anonymous"],
- "title": "Is Pokémon Go racist? How the app may be redlining communities of color",
- "url": "https://www.usatoday.com/story/tech/news/2016/08/09/pokemon-go-racist-app-redlining-communities-color-racist-pokestops-gyms/87732734/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "detroit-police-department",
- "name": "Detroit Police Department"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "dataworks-plus",
- "name": "DataWorks Plus"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "robert-julian-borchak-williams",
- "name": "Robert Julian-Borchak Williams"
- },
- {
- "__typename": "Entity",
- "entity_id": "black-people-in-detroit",
- "name": "Black people in Detroit"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [2029, 2028, 2027, 1837, 1543, 1484, 1467, 1400, 1336],
- "vector": [
- -0.056519098579883575, 0.06215519458055496, 0.002290705218911171, -0.103499636054039,
- 0.08390428125858307, -0.02093382738530636, -0.0036538494750857353, 0.04080875590443611,
- 0.06708648800849915, -0.15249395370483398, 0.013179625384509563, 0.06868875026702881,
- 0.03139178827404976, -0.06655877083539963, 0.02660772204399109, -0.0666552484035492,
- -0.07893773168325424, -0.044882312417030334, -0.03533298894762993, -0.12003253400325775,
- -0.045686978846788406, -0.006212963722646236, 0.05247442424297333, 0.11355972290039062,
- -0.08556216955184937, 0.028724931180477142, 0.10205762833356857, 0.10285806655883789,
- -0.042692363262176514, 0.06933373957872391, -0.05095905438065529, -0.06140445917844772,
- 0.10346493124961853, -0.0027135766576975584, -0.020487450063228607, 0.088755764067173,
- 0.044134363532066345, -0.037872329354286194, -0.043536227196455, -0.005115760490298271,
- -0.0038956047501415014, 0.2432241439819336, 0.009671407751739025, -0.03041388839483261,
- 0.07095558196306229, -0.04129161685705185, 0.017122413963079453, 0.059754032641649246,
- -0.0018501062877476215, -0.01447349600493908, 0.004778850823640823, 0.02273699641227722,
- -0.0415676049888134, 0.031102435663342476, -0.1005057618021965, 0.07452069222927094,
- 0.02642553299665451, 0.022078637033700943, 0.03411393240094185, -0.0825900137424469,
- -0.04588116705417633, -0.23625510931015015, -0.03861389681696892, -0.09215006977319717,
- 0.08979800343513489, -0.06709589064121246, -0.031832221895456314, -0.014763295650482178,
- 0.03490685671567917, 0.04299222677946091, 0.05568060651421547, -0.05070258677005768,
- -0.016701484099030495, 0.0024079130962491035, 0.004521001596003771,
- -0.006768310908228159, 0.016831036657094955, 0.26009273529052734, -0.11284491419792175,
- 0.019011955708265305, 0.11443992704153061, -0.09284013509750366, 0.44966915249824524,
- 0.009472811594605446, -0.0397767648100853, -0.035170603543519974, 0.08856752514839172,
- 0.038201116025447845, 0.05113089084625244, 0.058775052428245544, -0.03445638716220856,
- 0.03248216211795807, -0.06510424613952637, 0.025735318660736084, 0.08346327394247055,
- 0.03782495856285095, -0.001900691306218505, 0.07803213596343994, -0.028032656759023666,
- -0.04548497125506401, -0.005813544616103172, -0.04725244641304016, 0.11144900321960449,
- 0.06322473287582397, -0.07265369594097137, -0.01455503236502409, 0.0819331705570221,
- -0.06200243532657623, 0.062614805996418, -0.06826592236757278, 0.021604573354125023,
- 0.008097555488348007, 0.0663844645023346, -0.014060989022254944, 0.03371870517730713,
- -0.03808292746543884, 0.02033369056880474, 0.027191977947950363, 0.09744962304830551,
- -0.006858290173113346, -0.03225801885128021, 0.05661709979176521, 0.1045360341668129,
- -0.038078565150499344, -0.030015775933861732, -0.04434993118047714, -0.0429358072578907,
- -0.036952897906303406, -0.009779999032616615, 0.047152042388916016, -0.0270684864372015,
- -0.1941293329000473, 0.010733702220022678, 0.09164046496152878, -0.008728917688131332,
- -0.03165789321064949, 0.029824644327163696, -0.04560866951942444, 0.04572859779000282,
- -0.0337102934718132, -0.06371170282363892, 0.08075466006994247, 0.07473304122686386,
- 0.03077366016805172, 0.12660135328769684, 0.05506230890750885, -0.053718164563179016,
- -0.0037690054159611464, -0.006701955106109381, -0.021017111837863922,
- 0.11110074073076248, -0.14989882707595825, -0.04469301924109459, 0.03138232231140137,
- -0.019389938563108444, 0.654800295829773, 0.1190202608704567, 0.15858444571495056,
- -0.00975725706666708, -0.0011195506667718291, 0.16817696392536163, -0.00787147507071495,
- 0.08964225649833679, -0.051234807819128036, -0.02705637738108635, 0.02875864878296852,
- -0.05388515815138817, -0.024206550791859627, 0.046296149492263794, 0.023615458980202675,
- 0.13459870219230652, 0.005114392377436161, 0.11111018061637878, 0.002114783739671111,
- -0.09538964182138443, -0.02923513390123844, 0.038235172629356384, -0.02648397907614708,
- -0.11474970728158951, -0.0213380828499794, 0.07718018442392349, 0.08367147296667099,
- -0.07641769200563431, 0.021683910861611366, -0.03571177273988724, 0.004356148652732372,
- -0.029383577406406403, 0.016067227348685265, -0.018305473029613495, 0.05008181184530258,
- 0.06508311629295349, 0.08579935133457184, 0.017632214352488518, -0.12835155427455902,
- -0.07232914119958878, 0.10296115279197693, -0.010502706281840801, -0.01881449483335018,
- 0.0851743221282959, -0.0899079367518425, 0.020857777446508408, 0.018222277984023094,
- 0.13816091418266296, -0.1038508266210556, 0.028358807787299156, 0.0006502608302980661,
- 0.002102216938510537, 0.08429230749607086, -0.01732708141207695, -0.059384241700172424,
- -0.04192756116390228, 0.0644843578338623, 0.03324156254529953, 0.08339058607816696,
- 0.04188035428524017, -0.042301278561353683, 0.0288996621966362, 0.050602611154317856,
- 0.007714870851486921, -0.022905481979250908, 0.06723615527153015, 0.061322469264268875,
- -0.000910817354451865, 0.0033951776567846537, 0.0683102086186409, 0.046189215034246445,
- 0.04306516423821449, -0.0007887025130912662, 0.03220488131046295, 0.014095544815063477,
- -0.05005389451980591, 0.020670179277658463, 0.006979851052165031, -0.006206543184816837,
- 0.10171980410814285, -0.04528264328837395, -0.02238316275179386, -0.023745592683553696,
- -0.027603348717093468, -0.004807967226952314, -0.0039047710597515106,
- 0.059198491275310516, 0.06815014779567719, 0.06005670502781868, 0.05986274778842926,
- 0.03881179913878441, 0.050795383751392365, 0.034586407244205475, 0.05305606126785278,
- 0.0724431648850441, -0.00045375898480415344, -0.06071130931377411,
- -0.0037711220793426037, -0.0052116867154836655, 0.07046589255332947,
- 0.04582037031650543, -0.07081608474254608, -0.027378002181649208, -0.02811540476977825,
- -0.05334709584712982, -0.06615906208753586, -0.06585100293159485, -0.003614715300500393,
- 0.04047602415084839, -0.0494258850812912, -0.08647294342517853, -0.06848038733005524,
- 0.04045131057500839, 0.06381984800100327, -0.023373862728476524, -0.009513519704341888,
- -0.12139099091291428, 0.008459853008389473, -0.02313930168747902, 0.051014017313718796,
- -0.013348657637834549, 0.026654252782464027, -0.010068653151392937,
- -0.07601306587457657, 0.04498540610074997, -0.009407819248735905, -0.001531455316580832,
- -0.054774947464466095, -0.04299641400575638, -0.05891336873173714, -0.01723930612206459,
- 0.0026317653246223927, -0.02567589469254017, 0.04533736780285835, 0.06254681199789047,
- 0.03413240984082222, 0.003027641912922263, -0.025182072073221207, 0.07348525524139404,
- -0.04954974353313446, 0.010994523763656616, 0.09871021658182144, -0.008870668709278107,
- -0.0019851448014378548, -0.007437634747475386, -0.055014774203300476,
- -0.057287175208330154, -0.0140529191121459, -0.04386676847934723, 0.04707809165120125,
- -0.03298961743712425, -0.008338222280144691, -0.0395369678735733,
- -0.0028586899861693382, 0.07352319359779358, -0.08983179181814194,
- -0.039395637810230255, -0.07982327044010162, 0.1013433039188385, 0.0011525896843522787,
- -0.018158115446567535, -0.007306012790650129, -0.0402558259665966, 0.05753414332866669,
- -0.01993950456380844, 0.019476644694805145, 0.037847526371479034, 0.04830707982182503,
- -0.012690160423517227, -0.005432281643152237, 0.0455518513917923, -0.053701065480709076,
- 0.002004701178520918, 0.05248389393091202, 0.4244146943092346, -0.18657441437244415,
- 0.09835908561944962, 0.09615343064069748, 0.03487299382686615, 0.06489992141723633,
- -0.037495192140340805, 0.08092140406370163, 0.07420685887336731, 0.12047883123159409,
- 0.10593827068805695, -0.04125649482011795, -0.0215209499001503, -0.09803146123886108,
- 0.08499082177877426, 0.010871220380067825, 0.04027383029460907, -0.02457837201654911,
- -0.08243110775947571, -0.019306499511003494, 0.04675798490643501, -0.03650210425257683,
- 0.01989235356450081, 0.010715179145336151, -0.04238417372107506, 0.002104720566421747,
- 0.01989120803773403, 0.01942085474729538, -0.05170280486345291, 0.02625029720366001,
- -0.014359356835484505, 0.08722098171710968, 0.004260656423866749, 0.0480027049779892,
- -0.09400548040866852, 0.028233952820301056, -0.08190181851387024, -0.08626052737236023,
- 0.10993543267250061, 0.0012744723353534937, 0.03800250589847565, 0.05715838447213173,
- -0.0702618658542633, 0.04462907463312149, -0.054352838546037674, -0.06324242800474167,
- 0.022643903270363808, 0.052463795989751816, 0.022002996876835823, 0.05471683293581009,
- 0.16808979213237762, -0.04260401427745819, -0.042342718690633774, -0.05925799906253815,
- 0.07562875002622604, 0.14582617580890656, -0.011753582395613194, 0.0025069667026400566,
- -0.0252470001578331, -0.018189672380685806, -0.006715144496411085, -0.08406950533390045,
- -0.06742960214614868, 0.024659128859639168, -0.011960461735725403, 0.09564808011054993,
- 0.012196432799100876, -0.017926117405295372, -0.1407562494277954, 0.024619344621896744,
- -0.05100578814744949, 0.017073815688490868, 0.09294458478689194, -0.03878679499030113,
- 0.03295545279979706, -0.003606651443988085, 0.01616799458861351, 0.0052358293905854225,
- -0.0959060788154602, -0.002618066966533661, -0.02294754981994629, 0.022456839680671692,
- 0.0852738693356514, 0.040761012583971024, -0.03274485841393471, 0.029065165668725967,
- -0.09890317916870117, 0.04733049124479294, 0.01672910712659359, -0.007518818136304617,
- 0.014140699990093708, -0.025083618238568306, 0.04652814194560051, 0.008027123287320137,
- -0.01136213168501854, -0.008735143579542637, -0.034418895840644836,
- -0.02440672367811203, -0.08934332430362701, -0.037153515964746475,
- -0.012294517830014229, -0.08789171278476715, 0.05399857461452484, -0.11051500588655472,
- -0.035431962460279465, -0.023413261398673058, -0.010505416430532932,
- 0.008590804412961006, 0.05834898725152016, 0.03400879353284836, -0.09813351184129715,
- 0.0018047611229121685, -0.027488069608807564, 0.06215929985046387,
- -0.0049317399971187115, -0.05366287752985954, 0.03478394076228142, 0.10537496209144592,
- 0.04597365856170654, -0.04597456753253937, -0.02697461098432541, -0.03703595697879791,
- 0.044880110770463943, -0.12985284626483917, -0.5117089748382568, 0.07889371365308762,
- -0.019825764000415802, 0.05054859444499016, 0.031131701543927193, -0.05750783160328865,
- 0.04467463493347168, -0.022155893966555595, -0.031434960663318634, 0.07398150116205215,
- -0.04518897831439972, 0.016924826428294182, 0.0035199623089283705,
- -0.030980411916971207, -0.03471282497048378, -0.06774710863828659, -0.06414088606834412,
- 0.044785406440496445, -0.022270115092396736, -0.07451169937849045, -0.11039578914642334,
- 0.011834240518510342, 0.009490464814007282, 0.028218882158398628, 0.006598270498216152,
- -0.005276437848806381, -0.07354577630758286, -0.056371431797742844, 0.03805028274655342,
- 0.061707913875579834, 0.023346979171037674, -0.06500295549631119, 0.0032530210446566343,
- 0.04885654151439667, -0.003680691123008728, 0.11029976606369019, 0.003848599037155509,
- -0.00800930242985487, -0.08432479947805405, 0.09906205534934998, 0.05534134432673454,
- 0.1857195496559143, -0.0226383525878191, 0.07214250415563583, -0.0004951003938913345,
- 0.1632716953754425, 0.02870366908609867, 0.03557934984564781, -0.033109400421381,
- -0.009271997958421707, 0.008375098928809166, -0.002433858346194029,
- 0.056277599185705185, -0.08038078248500824, -0.024900181218981743, -0.04527465999126434,
- -0.02134370431303978, -0.031901054084300995, -0.0008628243231214583, 0.1950593739748001,
- 0.019527070224285126, 0.011625031940639019, 0.011559897102415562, -0.05270744860172272,
- -0.00043027661740779877, -0.025562087073922157, -0.09976747632026672,
- 0.0016667523887008429, -0.022122932597994804, 0.006546415388584137,
- -0.049208804965019226, -0.12931957840919495, -0.02758430689573288,
- 0.00041437894105911255, -0.005613325163722038, 0.09137214720249176,
- -0.031129982322454453, 0.0466989129781723, -0.06807520985603333, 0.11649096012115479,
- 0.028201958164572716, -0.005796587560325861, 0.0736985057592392, 0.11832618713378906,
- 0.015377606265246868, 0.0065372702665627, -0.03232770413160324, -0.04820672422647476,
- -0.036387309432029724, 0.11461206525564194, -0.05034276470541954, 0.08526226878166199,
- 0.07780376076698303, -0.07994316518306732, -0.05827264115214348, 0.005971957463771105,
- 0.010442127473652363, 0.03186028450727463, -0.4955488443374634, -0.017598913982510567,
- 0.1384608894586563, -0.022162023931741714, 0.029369473457336426, 0.05078628659248352,
- 0.01857161521911621, -0.0370902456343174, -0.024314088746905327, -0.05231613293290138,
- 0.12765204906463623, 0.0013867070665583014, 0.08706140518188477, -0.11619874835014343,
- 0.06061756610870361, 0.07459083944559097, -0.02067217230796814, 0.011670771986246109,
- 0.030668960884213448, -0.2695196568965912, -0.021960599347949028, -0.056212715804576874,
- 0.15810003876686096, 0.046549174934625626, 0.007228463888168335, 0.06856881827116013,
- -0.061248164623975754, 0.014571706764400005, 0.06313910335302353, -0.00463799899443984,
- 0.03139385208487511, -0.01410005148500204, -0.018942326307296753, 0.08980083465576172,
- 0.06595246493816376, 0.05255991220474243, -0.008710655383765697, 11.995838165283203,
- 0.060764849185943604, 0.06397055834531784, -0.06606318056583405, 0.03185458108782768,
- -0.0546133928000927, 0.006087804213166237, -0.10624372959136963, 0.0797378197312355,
- 0.10986488312482834, -0.005019840784370899, -0.05711870640516281, -0.04555107653141022,
- -0.07409951835870743, 0.0022626547142863274, -0.03443412482738495, -0.05938360467553139,
- -0.04063902050256729, 0.060061149299144745, -0.0461173914372921, -0.016090434044599533,
- 0.03929968923330307, 0.05062633380293846, 0.02974488027393818, -0.06923327594995499,
- 0.001648423494771123, 0.04629881680011749, -0.020030733197927475, 0.015212451107800007,
- 0.047691356390714645, -0.02129916101694107, 0.018547527492046356, 0.07003587484359741,
- 0.018677374348044395, 0.01889849454164505, 0.039705097675323486, 0.03902735188603401,
- 0.04211881011724472, 0.024137340486049652, 0.09379032254219055, 0.03438530117273331,
- 0.04470010846853256, 0.024939829483628273, 0.021969174966216087, 0.07045391201972961,
- 0.036795809864997864, 0.041137419641017914, 0.11521168798208237, -0.000483360345242545,
- 0.08674246072769165, 0.10416658222675323, -0.019065549597144127, 0.1014299988746643,
- -0.017531106248497963, 0.017276935279369354, 0.05184226855635643, 0.024190397933125496,
- -0.07644625753164291, 0.048986613750457764, 0.04451559856534004, -0.034493282437324524,
- 0.10541173815727234, 0.002588714938610792, 0.08958756923675537, -0.050254449248313904,
- 0.0479915589094162, 0.10096141695976257, 0.08891532570123672, -0.12748683989048004,
- -0.05317448079586029, 0.05325423181056976, -0.11166344583034515, -0.08032611012458801,
- 0.07420355081558228, 0.07878855615854263, -0.04461611062288284, 0.0692182257771492,
- -0.05548205226659775, 0.03128933906555176, -0.029148779809474945, -0.004125892650336027,
- 0.049839336425065994, -0.03708379343152046, 0.0008060915861278772, 0.0375957153737545,
- 0.011595115065574646, 0.06061898171901703, 0.06925444304943085, -0.03467328101396561,
- -0.118839330971241, -0.12185701727867126, 0.09399786591529846, -0.027234457433223724,
- -0.0556323267519474, 0.025457734242081642, -0.06157083064317703, 0.0464659221470356,
- -0.15583175420761108, 0.07579609751701355, 0.11442569643259048, -0.0915001705288887,
- 0.0006313995108939707, -0.03778817504644394, 0.080695241689682, -0.014432176947593689,
- 0.02313259430229664, -0.055068474262952805, 0.050574179738759995, 0.017516301944851875,
- 0.03615926578640938, -0.046267613768577576, 0.06859798729419708, 0.07508924603462219,
- -0.09123744070529938, 0.020274439826607704, 0.0765237882733345, -0.030010338872671127,
- -0.03711719438433647, 0.06147308647632599, 0.04488709941506386, -0.09941551089286804,
- -0.048757340759038925, -0.03821925073862076, -0.034136757254600525,
- -0.018946507945656776, -0.06690511852502823, -0.011356554925441742,
- 0.050903692841529846, -0.09348290413618088, -0.0140752624720335, 0.02910972572863102,
- 0.04129011929035187, 0.045033764094114304, 0.008283670991659164, 0.05870254710316658,
- -0.03829566016793251, -0.05944330245256424, 0.05691464617848396, 0.03899449482560158,
- 0.09388513118028641, -0.03471646457910538, -0.018563421443104744, -0.04584898054599762,
- -0.09475786983966827, -0.0010105830151587725, 0.09078627824783325, 0.04124872386455536,
- 0.03233031928539276, 0.033782053738832474, -0.06885585933923721, -0.04452978074550629,
- 0.11544304341077805, 0.01616058126091957, 0.014196334406733513, 0.024444404989480972,
- -0.10831636935472488, -0.045301396399736404, 0.12191344797611237, -0.05550733581185341,
- -0.013796142302453518, 0.01876898482441902, -0.022831449285149574, 0.09780804812908173,
- 0.07033191621303558, 0.03852292522788048, 0.03448258340358734, 0.051731280982494354,
- -0.02460426464676857, 0.01633707620203495, -0.002287575276568532, 0.034656111150979996,
- -0.024526193737983704, -0.10015972703695297, -0.06989946961402893,
- 0.0036988304927945137, 0.0824381560087204, 0.0077798133715987206, -0.10800348967313766,
- -0.025301845744252205, -0.03891536965966225
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 74,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 112,
- "similarity": 0.9990243315696716
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 195,
- "similarity": 0.9988786578178406
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 54,
- "similarity": 0.998734712600708
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Bobby Allyn"],
- "epoch_date_downloaded": 1662508800,
- "epoch_date_modified": 1663027200,
- "epoch_date_submitted": 1662508800,
- "flag": null,
- "report_number": 2029,
- "source_domain": "npr.org",
- "submitters": ["Nickie Demakos"],
- "title": "'The Computer Got It Wrong': How Facial Recognition Led To False Arrest Of Black Man",
- "url": "https://www.npr.org/2020/06/24/882683463/the-computer-got-it-wrong-how-facial-recognition-led-to-a-false-arrest-in-michig"
- },
- {
- "__typename": "Report",
- "authors": ["Jane Bailey", " Jacquelyn Burkell", " Valerie Steeves"],
- "epoch_date_downloaded": 1662508800,
- "epoch_date_modified": 1663027200,
- "epoch_date_submitted": 1662508800,
- "flag": null,
- "report_number": 2028,
- "source_domain": "theconversation.com",
- "submitters": ["Nickie Demakos"],
- "title": "AI technologies — like police facial recognition — discriminate against people of colour",
- "url": "https://theconversation.com/ai-technologies-like-police-facial-recognition-discriminate-against-people-of-colour-143227"
- },
- {
- "__typename": "Report",
- "authors": ["Jonathan Greig"],
- "epoch_date_downloaded": 1662508800,
- "epoch_date_modified": 1663027200,
- "epoch_date_submitted": 1662508800,
- "flag": null,
- "report_number": 2027,
- "source_domain": "techrepublic.com",
- "submitters": ["Nickie Demakos"],
- "title": "Detroit police admit to first facial recognition mistake after false arrest",
- "url": "https://www.techrepublic.com/article/detroit-police-admit-to-first-facial-recognition-mistake-after-false-arrest/"
- },
- {
- "__typename": "Report",
- "authors": ["Jason Koebler"],
- "epoch_date_downloaded": 1659398400,
- "epoch_date_modified": 1659398400,
- "epoch_date_submitted": 1608163200,
- "flag": null,
- "report_number": 1837,
- "source_domain": "vice.com",
- "submitters": ["Patrick Hall (BNH.ai)", "CSET annotators"],
- "title": "Detroit Police Chief: Facial Recognition Software Misidentifies 96% of the Time",
- "url": "https://www.vice.com/en/article/dyzykz/detroit-police-chief-facial-recognition-software-misidentifies-96-of-the-time"
- },
- {
- "__typename": "Report",
- "authors": ["Khari Johnson"],
- "epoch_date_downloaded": 1646956800,
- "epoch_date_modified": 1646956800,
- "epoch_date_submitted": 1646956800,
- "flag": null,
- "report_number": 1543,
- "source_domain": "wired.com",
- "submitters": ["Anonymous"],
- "title": "How Wrongful Arrests Based on AI Derailed 3 Men's Lives",
- "url": "https://www.wired.com/story/wrongful-arrests-ai-derailed-3-mens-lives/"
- },
- {
- "__typename": "Report",
- "authors": ["Isaiah Mccall"],
- "epoch_date_downloaded": 1635120000,
- "epoch_date_modified": 1635120000,
- "epoch_date_submitted": 1635120000,
- "flag": null,
- "report_number": 1484,
- "source_domain": "northjersey.com",
- "submitters": ["Patrick Hall (BNH.ai)"],
- "title": "Teaneck NJ bans facial recognition usage for police, citing bias",
- "url": "https://www.northjersey.com/story/news/bergen/teaneck/2021/02/25/teaneck-nj-bans-facial-recognition-usage-police-citing-bias/6802839002/"
- },
- {
- "__typename": "Report",
- "authors": ["Tom Jowitt"],
- "epoch_date_downloaded": 1635120000,
- "epoch_date_modified": 1635120000,
- "epoch_date_submitted": 1635120000,
- "flag": null,
- "report_number": 1467,
- "source_domain": "silicon.co.uk",
- "submitters": ["Patrick Hall (BNH.ai)"],
- "title": "Facial Recognition Blamed For False Arrest And Jail Time",
- "url": "https://www.silicon.co.uk/e-regulation/facial-recognition-false-arrest-349782"
- },
- {
- "__typename": "Report",
- "authors": ["Drew Harwell"],
- "epoch_date_downloaded": 1619568000,
- "epoch_date_modified": 1619654400,
- "epoch_date_submitted": 1619654400,
- "flag": null,
- "report_number": 1400,
- "source_domain": "washingtonpost.com",
- "submitters": ["Roman Lutz"],
- "title": "Wrongfully arrested man sues Detroit police over false facial recognition match",
- "url": "https://www.washingtonpost.com/technology/2021/04/13/facial-recognition-false-arrest-lawsuit/"
- },
- {
- "__typename": "Report",
- "authors": ["Kashmir Hill"],
- "epoch_date_downloaded": 1600905600,
- "epoch_date_modified": 1602115200,
- "epoch_date_submitted": 1602115200,
- "flag": null,
- "report_number": 1336,
- "source_domain": "nytimes.com",
- "submitters": ["Sean McGregor"],
- "title": "Wrongfully Accused by an Algorithm",
- "url": "https://www.nytimes.com/2020/06/24/technology/facial-recognition-arrest.html"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "google",
- "name": "Google"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "google",
- "name": "Google"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "jewish-public-figures",
- "name": "Jewish public figures"
- },
- {
- "__typename": "Entity",
- "entity_id": "jewish-people",
- "name": "Jewish people"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1337],
- "vector": [
- -0.02695479802787304, 0.07428595423698425, 0.056594736874103546, -0.10903874784708023,
- 0.05170685425400734, -0.010073643177747726, 0.06946719437837601, 0.05611775070428848,
- 0.03665710240602493, -0.11862041056156158, -0.055071014910936356, 0.014444430358707905,
- -0.0048707094974815845, 0.01898518018424511, 0.02021433785557747, -0.09538301825523376,
- -0.06193331256508827, -0.07539480924606323, 0.007263027131557465, -0.09763950109481812,
- -0.05429777875542641, -0.006782460026443005, 0.004093812312930822, 0.09820020198822021,
- -0.025810638442635536, 0.018556060269474983, 0.13616344332695007, 0.07149545848369598,
- -0.033592063933610916, 0.008701584301888943, 0.020166244357824326, -0.07749704271554947,
- 0.08077031373977661, -0.008921646513044834, -0.061524562537670135, 0.06718873977661133,
- 0.09097965061664581, -0.03023102506995201, 0.03335212171077728, 0.04567696899175644,
- 0.07468507438898087, 0.2095526158809662, -0.02339256927371025, 0.016932183876633644,
- 0.02774837613105774, -0.050401367247104645, 0.016487164422869682, 0.0958268940448761,
- 0.04524188116192818, 0.030810995027422905, 0.03732377290725708, 0.01719297096133232,
- 0.025313710793852806, -0.0039743524976074696, -0.10622064024209976, 0.09007309377193451,
- 0.0869518369436264, -0.03534366562962532, 0.032741885632276535, -0.051525041460990906,
- -0.08739692717790604, -0.22536234557628632, -0.06112026795744896, -0.12312380969524384,
- 0.06340604275465012, -0.07642563432455063, -0.03705621883273125, -0.049715060740709305,
- -0.023934384807944298, 0.0645081102848053, 0.08840532600879669, -0.021917732432484627,
- -0.045411232858896255, 0.07393231987953186, -0.04536880552768707, 0.04048939049243927,
- -0.01998985931277275, 0.2509608566761017, -0.14847815036773682, 0.01103479228913784,
- 0.1511729210615158, -0.1058562770485878, 0.4285013973712921, 0.06472975760698318,
- 0.05154033005237579, -0.028306161984801292, 0.07376381009817123, 0.010457966476678848,
- 0.025103673338890076, 0.012166191823780537, -0.011986400000751019,
- 0.0016010524705052376, -0.060385946184396744, -0.025151167064905167,
- 0.04780052229762077, -0.02544073760509491, -0.07792303711175919, -0.09025076031684875,
- 0.0295602697879076, -0.08158353716135025, -0.007634090259671211, -0.0280434712767601,
- 0.1409798115491867, 0.09455994516611099, -0.07386325299739838, -0.00934079010039568,
- 0.03982730209827423, -0.07402437180280685, 0.04365184158086777, -0.08899655193090439,
- -0.0026821286883205175, 0.02403576672077179, 0.09583421796560287, 0.04101507365703583,
- 0.05168727785348892, -0.023204093798995018, 0.010495677590370178, 0.07503674924373627,
- 0.05155409500002861, 0.09826572239398956, -0.0062473239377141, 0.08306310325860977,
- 0.03056865558028221, -0.08003654330968857, -0.05510666221380234, -0.059521351009607315,
- -0.05336616933345795, -0.027338121086359024, -0.039487604051828384,
- 0.0030108222272247076, 0.0068170856684446335, -0.16161032021045685, 0.01602698117494583,
- 0.06623701751232147, -0.008832898922264576, -0.04374891147017479, -0.029729275032877922,
- -0.06894447654485703, -0.023000042885541916, -0.011626530438661575,
- 0.020639268681406975, 0.09756491333246231, -0.03889993578195572, 0.06792118400335312,
- 0.21814124286174774, 0.029937291517853737, -0.058817531913518906, -0.13021214306354523,
- 0.006410396657884121, -0.0742994025349617, 0.1454561948776245, -0.07928337156772614,
- -0.032041285187006, -0.02573411539196968, -0.0190200824290514, 0.7749639749526978,
- 0.09765713661909103, 0.221271812915802, -0.03114759363234043, 0.03595133498311043,
- 0.14269810914993286, 0.03482908383011818, 0.042086612433195114, -0.05318138375878334,
- -0.0897318571805954, 0.03650294616818428, -0.14165259897708893, -0.07461924105882645,
- 0.02248256281018257, 0.07543855905532837, 0.13362886011600494, -0.016808606684207916,
- 0.041306544095277786, -0.06228082254528999, -0.07754287123680115, -0.1010727509856224,
- 0.023030774667859077, 0.02120494283735752, -0.16024039685726166, -0.03537818789482117,
- 0.03948013484477997, 0.132608562707901, -0.058920420706272125, 0.022523006424307823,
- -0.05294987931847572, 0.05782995745539665, -0.06259912997484207, 0.06060341000556946,
- -0.0331883542239666, 0.06089441850781441, -0.02602747641503811, 0.09573398530483246,
- -0.024927152320742607, -0.08619917184114456, 0.011175530031323433, 0.11186502873897552,
- 0.026281898841261864, 0.010474923066794872, 0.02600693143904209, -0.06400531530380249,
- 0.13850876688957214, 0.033211346715688705, 0.1415412425994873, -0.1045524850487709,
- 0.006517255213111639, -0.029824258759617805, 0.011116603389382362, 0.008937068283557892,
- -0.002167151542380452, -0.05521277338266373, -0.06013427674770355, 0.0695834532380104,
- 0.0276065431535244, -0.0036246569361537695, 0.0028697489760816097, -0.11665725708007812,
- 0.0606422945857048, 0.041710611432790756, -0.0777873769402504, -0.028970567509531975,
- 0.04253222048282623, 0.006869880482554436, -0.003927627112716436, -0.08505319058895111,
- -0.0340203233063221, 0.01854531839489937, 0.036484695971012115, -0.06109730526804924,
- 0.06400217860937119, 0.005114490166306496, -0.0878075584769249, 0.022092251107096672,
- -0.02922949753701687, 0.015882259234786034, 0.11384906619787216, -0.03564221039414406,
- -0.07414019107818604, -0.058001723140478134, -0.08095792680978775, 0.017130987718701363,
- 0.069647878408432, 0.1012590229511261, 0.07856470346450806, 0.06714491546154022,
- 0.08763471990823746, 0.047437530010938644, 0.11425518244504929, -0.004953975323587656,
- 0.005585000850260258, 0.08775077760219574, -0.018340306356549263, -0.05189140513539314,
- -0.03960346803069115, -0.01151338592171669, 0.07616977393627167, 0.0393810011446476,
- -0.0747654065489769, 0.00494549423456192, -0.027561288326978683, -0.01757625676691532,
- -0.07099110633134842, -0.049013279378414154, 0.08174895495176315, 0.06442811340093613,
- -0.02541370317339897, -0.0929473489522934, -0.06476688385009766, 0.038429904729127884,
- 0.0556151382625103, -0.07180972397327423, -0.047483593225479126, -0.06413206458091736,
- -0.009516848251223564, -0.005661930423229933, 0.07683391869068146,
- -0.010087523609399796, 0.02322494238615036, 0.0448857881128788, -0.12619079649448395,
- 0.024661367759108543, -0.04742855206131935, -0.004982565995305777,
- -0.0004700883582700044, -0.07627587020397186, -0.025910397991538048, 0.037115678191185,
- -0.03609833866357803, -0.061222393065690994, 0.025669492781162262, 0.019212255254387856,
- 0.06220207363367081, 0.04560672119259834, -0.04612826928496361, 0.08043908327817917,
- -0.0559241957962513, -0.0037798387929797173, 0.05948010832071304, -0.026131965219974518,
- 0.05145874246954918, -0.038042400032281876, -0.07974269241094589, 0.003637559013441205,
- -0.019954640418291092, -0.01611308380961418, 0.048608243465423584, 0.01985243335366249,
- 0.06901144236326218, -0.10993680357933044, -0.027642523869872093, 0.029104184359312057,
- -0.13399724662303925, -0.09819421172142029, -0.09231177717447281, 0.09888452291488647,
- 0.07356354594230652, 0.015197078697383404, 0.056594330817461014, -0.046049728989601135,
- 0.0051887016743421555, -0.03396942466497421, -0.029340365901589394, 0.05290945991873741,
- 0.0036290378775447607, -0.03023487515747547, 0.019674597308039665, 0.05770568922162056,
- -0.08882077038288116, 0.06166006997227669, 0.09828707575798035, 0.44755053520202637,
- -0.19243919849395752, 0.11853694915771484, 0.12843647599220276, 0.0022126815747469664,
- 0.002011936390772462, -0.0249028317630291, 0.1650184690952301, 0.09680094569921494,
- 0.12601476907730103, 0.08375002443790436, -0.07339023798704147, -0.012991178780794144,
- -0.17117294669151306, 0.10158577561378479, -0.011352403089404106, -0.019664015620946884,
- 0.037713680416345596, -0.084797203540802, -0.021661201491951942, 0.04483199119567871,
- -0.02913401648402214, -0.02163773588836193, -0.03616869077086449, -0.08264100551605225,
- 0.0646381601691246, 0.058910075575113297, 0.09202404320240021, -0.04264567792415619,
- 0.027175331488251686, 0.009862513281404972, 0.0383782722055912, 0.025263791903853416,
- 0.012933662161231041, -0.1764572262763977, 0.07351351529359818, -0.09637460112571716,
- -0.06233871355652809, 0.09833543747663498, -0.026234254240989685, 0.08020959049463272,
- 0.05260641127824783, -0.07997742295265198, 0.03842310607433319, -0.07833078503608704,
- -0.014370289631187916, 0.06408213824033737, 0.06186670809984207, 0.01913091167807579,
- 0.08034816384315491, 0.0900363028049469, -0.07973679155111313, -0.08045759797096252,
- -0.09356015175580978, 0.06048951670527458, 0.09335107356309891, -0.04220416769385338,
- 0.05759946256875992, 0.0333525575697422, -0.06409773230552673, 0.01164035964757204,
- -0.05549817532300949, -0.11425556242465973, -0.023114033043384552,
- -0.030457813292741776, 0.04266205057501793, 0.07228970527648926, -0.003460459876805544,
- -0.1219552531838417, -0.043732717633247375, -0.030158979818224907,
- -0.007490390446037054, 0.13309034705162048, -0.09945685416460037, 0.06466105580329895,
- 0.007153911050409079, -0.03890684247016907, -0.0010135051561519504,
- -0.09458466619253159, -0.03258325159549713, -0.02663099206984043, 0.038077402859926224,
- 0.060496192425489426, 0.08950695395469666, -0.007352092303335667, 0.042566824704408646,
- -0.03938176855444908, 0.06175361946225166, -0.017145536839962006, -0.025385985150933266,
- 0.04519832506775856, -0.07245352864265442, 0.05842161178588867, 0.013355175033211708,
- -0.12099361419677734, -0.02639175020158291, -0.029252447187900543, -0.04975038766860962,
- -0.051420699805021286, -0.029423166066408157, -0.017303256317973137,
- -0.026575447991490364, 0.12469577044248581, -0.07484109699726105, -0.004772800020873547,
- 0.022974325343966484, -0.029259441420435905, -0.027691032737493515, 0.02060343697667122,
- 0.037699855864048004, -0.16863539814949036, 0.009839731268584728, 0.04767979681491852,
- 0.03196633607149124, 0.015188195742666721, -0.006424116902053356, -0.02486354485154152,
- 0.19099797308444977, 0.0461421012878418, -0.004883857443928719, 0.037412505596876144,
- -0.09430395811796188, 0.023071276023983955, -0.1271137297153473, -0.4379236698150635,
- 0.10253842920064926, 0.06276610493659973, 0.04622592404484749, 0.03723607584834099,
- -0.10834315419197083, 0.07077230513095856, 0.0509411096572876, -0.1348533034324646,
- 0.0937056913971901, -0.10154851526021957, 0.12037103623151779, -0.042188841849565506,
- -0.03962857648730278, -0.10469283163547516, -0.07869834452867508, -0.06046322360634804,
- 0.036757487803697586, -0.13353686034679413, -0.10332129895687103, -0.20329998433589935,
- 0.03904179111123085, -0.04601046442985535, -0.0791785940527916, 0.008434667252004147,
- 0.023411476984620094, -0.06702636927366257, -0.0006373731885105371,
- 0.042540036141872406, 0.12385750561952591, 0.035716462880373, -0.04999784007668495,
- 0.026479654014110565, 0.07367400825023651, -0.04658045619726181, 0.13807448744773865,
- 0.046978939324617386, -0.060407403856515884, -0.14956633746623993, 0.05933452025055885,
- 0.059998828917741776, 0.1802295446395874, 0.06259889900684357, 0.013372743502259254,
- 0.08983864635229111, 0.24470646679401398, 0.05078162997961044, 0.04174340143799782,
- -0.013495700433850288, -0.010477250441908836, 0.03691624104976654,
- -0.0033217505551874638, 0.1030808612704277, -0.0585191547870636, -0.012355033308267593,
- -0.08677000552415848, -0.0016594198532402515, -0.03392898291349411,
- -0.14460913836956024, 0.24937981367111206, 0.006813019048422575, 0.008585890755057335,
- 0.013904829509556293, -0.0159939993172884, 0.02639651671051979, -0.13645723462104797,
- -0.08182831853628159, -0.03699348494410515, 0.02561350166797638, 0.04093242809176445,
- -0.010296079330146313, -0.07244565337896347, 0.006872158497571945, -0.03445000573992729,
- 0.05402633920311928, 0.1872887909412384, -0.031685829162597656, 0.0493377149105072,
- -0.0011303351493552327, 0.12003963440656662, 0.0023011977318674326,
- -0.03132069110870361, 0.07722356915473938, 0.1903933435678482, -0.01639101281762123,
- 0.030352463945746422, 0.021398073062300682, 0.03150104731321335, -0.06615305691957474,
- 0.1583237200975418, -0.0944201797246933, 0.1201334074139595, 0.07226011902093887,
- -0.012412652373313904, -0.05585578829050064, 0.006395002361387014,
- 0.0049650357104837894, 0.041443582624197006, -0.39577141404151917, -0.01177983544766903,
- 0.11895359307527542, -0.020482804626226425, 0.00453557213768363, 0.19785559177398682,
- 0.023563480004668236, -0.013481248170137405, -0.044197890907526016,
- -0.09296869486570358, 0.138271301984787, 0.022512167692184448, 0.04459657520055771,
- -0.013641076162457466, -0.047212935984134674, 0.027282411232590675, 0.01077844388782978,
- -0.022837422788143158, 0.006986691150814295, -0.2276579737663269, -0.012201790697872639,
- -0.049877606332302094, 0.15066294372081757, -0.009381638839840889, 0.023990998044610023,
- 0.10482747852802277, -0.1047201156616211, 0.027491183951497078, 0.06482063233852386,
- -0.020732805132865906, 0.06855849921703339, -0.013120673596858978,
- -0.022641533985733986, 0.12386853992938995, 0.047461848706007004, 0.13520987331867218,
- -0.07161809504032135, 12.313797950744629, 0.027637552469968796, 0.06455368548631668,
- -0.1272999495267868, 0.0832475945353508, -0.009800450876355171, -0.040975794196128845,
- -0.055593110620975494, 0.12002095580101013, 0.17648860812187195, -0.06117561459541321,
- -0.06871987134218216, -0.1006748303771019, -0.10634677857160568, -0.010231006890535355,
- -0.005955887027084827, -0.05105971917510033, -0.06173155829310417, 0.05362631753087044,
- -0.03506980463862419, -0.02889544516801834, 0.06223219633102417, 0.07937148213386536,
- -0.03212631866335869, -0.07305210828781128, 0.06904236972332001, 0.010985386557877064,
- 0.006756340619176626, -0.009196171537041664, -0.06820771098136902, 0.012577636167407036,
- 0.018693089485168457, 0.028905758634209633, 0.026595288887619972, 0.026798026636242867,
- 0.026326186954975128, 0.11085774004459381, 0.08754462003707886, 0.024133367463946342,
- 0.03807990252971649, 0.007787366863340139, 0.006484482437372208, 0.007495520636439323,
- 0.09443077445030212, 0.11189266294240952, 0.043896954506635666, 0.09272874891757965,
- 0.13469219207763672, 0.059409767389297485, 0.04527769982814789, 0.09024759382009506,
- -0.033381059765815735, 0.1011381670832634, -0.004633833188563585, 0.010797352530062199,
- 0.10652101784944534, -0.043866440653800964, -0.09264487773180008, 0.028571901842951775,
- -0.026784434914588928, -0.08459825068712234, 0.08372047543525696, -0.020479032769799232,
- 0.06252173334360123, 0.009017400443553925, 0.13143731653690338, 0.05142519250512123,
- 0.008245035074651241, -0.11202284693717957, -0.03963816910982132, -0.012408064678311348,
- -0.1263958364725113, -0.14362196624279022, 0.06092897430062294, 0.05571543425321579,
- -0.02209201268851757, 0.0038563930429518223, -0.033215899020433426, 0.07298950105905533,
- 0.05503499135375023, -0.060197923332452774, 0.03933779522776604, 0.006546526215970516,
- -0.056025538593530655, -0.015506654046475887, -0.026240866631269455,
- 0.035943251103162766, 0.173619344830513, -0.05697224661707878, -0.07123742252588272,
- -0.08910270035266876, 0.1443452090024948, -0.0223519429564476, -0.06352460384368896,
- 0.06695184111595154, -0.0905858725309372, 0.0020724101923406124, -0.14665789902210236,
- 0.08318924903869629, 0.10115599632263184, -0.05378396436572075, 0.032757773995399475,
- -0.050928372889757156, 0.08306995034217834, 0.009623401798307896, 0.024322498589754105,
- -0.09143966436386108, 0.018262440338730812, -0.03932211920619011, 0.044782012701034546,
- -0.07752005755901337, 0.044767383486032486, 0.07230161875486374, -0.0973217710852623,
- 0.04876798391342163, 0.07732000946998596, -0.03952496498823166, -0.03523537516593933,
- 0.0391443632543087, -0.06072264164686203, -0.11702998727560043, -0.024560721591114998,
- -0.050784267485141754, -0.027918033301830292, -0.012978605926036835,
- -0.018915623426437378, 0.004360993392765522, 0.04371935501694679, -0.040004804730415344,
- 0.02714923955500126, 0.06291355937719345, 0.016314147040247917, -0.008395933546125889,
- -0.023548264056444168, 0.029619548469781876, -0.02778865024447441, -0.04739458113908768,
- 0.009280327707529068, 0.10149712860584259, 0.04835894703865051, -0.03149402514100075,
- -0.05435274913907051, -0.07902947068214417, -0.12019916623830795, 0.03471718356013298,
- 0.20109544694423676, 0.0545586533844471, 0.05115032196044922, -0.023618334904313087,
- -0.08340521156787872, 0.02563115954399109, 0.15276117622852325, -0.0648806095123291,
- 0.06217857822775841, -0.023936236277222633, -0.072830431163311, -0.054669518023729324,
- 0.05718798562884331, -0.06581372767686844, 0.0012789105530828238, 0.03760319948196411,
- -0.15694163739681244, 0.16214777529239655, 0.021442964673042297, 0.09969443827867508,
- 0.02864883653819561, 0.052906956523656845, -0.026952601969242096, 0.0989738330245018,
- 0.041463665664196014, 0.0321696400642395, -0.022259118035435677, -0.13175718486309052,
- -0.09674976021051407, 0.055476922541856766, 0.1691986471414566, 0.06601148843765259,
- -0.02389347553253174, -0.034488923847675323, 0.04905444383621216
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 75,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 45,
- "similarity": 0.9967838525772095
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 15,
- "similarity": 0.9965250492095947
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 14,
- "similarity": 0.996373176574707
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Courteney Palis"],
- "epoch_date_downloaded": 1602892800,
- "epoch_date_modified": 1650585600,
- "epoch_date_submitted": 1602892800,
- "flag": null,
- "report_number": 1337,
- "source_domain": "huffingtonpost.co.uk",
- "submitters": ["AIAAIC"],
- "title": "Google Instant's Allegedly 'Anti-Semitic' Results Lead To Lawsuit In France",
- "url": "https://www.huffingtonpost.co.uk/entry/google-instant-anti-semitic-france_n_1465430?"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "buenos-aires-city-government",
- "name": "Buenos Aires city government"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "unknown",
- "name": "Unknown"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "buenos-aires-children",
- "name": "Buenos Aires children"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1339],
- "vector": [
- -0.05148329958319664, 0.07613708823919296, 0.009131161496043205, -0.08599192649126053,
- 0.08618127554655075, -0.008391102775931358, 0.014013038948178291, 0.07504986226558685,
- 0.08332881331443787, -0.16159631311893463, 0.04785227030515671, 0.07296362519264221,
- 0.037081822752952576, -0.13553524017333984, -0.037837933748960495, -0.1131734773516655,
- -0.10698535293340683, -0.039655547589063644, -0.00834543164819479, -0.1703597605228424,
- -0.06681421399116516, -0.00026132562197744846, 0.03849169239401817, 0.08878488093614578,
- -0.038156189024448395, 0.05731885880231857, 0.13054221868515015, 0.12829868495464325,
- -0.07154186069965363, 0.09130792319774628, -0.060204729437828064, -0.053040679544210434,
- 0.15896786749362946, 0.0011436601635068655, 0.06084873899817467, 0.10733760893344879,
- 0.023832036182284355, -0.04597288370132446, -0.003179438877850771,
- -0.044599052518606186, -0.0030127489008009434, 0.262861043214798, -0.03966275602579117,
- -0.023416513577103615, 0.06440423429012299, -0.04169687256217003, 0.010461041703820229,
- 0.07388703525066376, 0.011430649086833, 0.028610926121473312, -0.007891966961324215,
- 0.013311829417943954, -0.05836385488510132, 0.06433434784412384, -0.09985006600618362,
- 0.11428824812173843, 0.004860538523644209, -0.006661354098469019, 0.015391722321510315,
- -0.07235440611839294, -0.037948381155729294, -0.24535401165485382,
- -0.029707934707403183, -0.05771099030971527, 0.1449621021747589, -0.08798722177743912,
- -0.045041389763355255, -0.002335777273401618, 0.015461781062185764, 0.04925660043954849,
- 0.02188410609960556, -0.032960567623376846, -0.025495070964097977,
- -0.011591082438826561, 0.04334365576505661, -0.03873339295387268, 0.03553289920091629,
- 0.15381941199302673, -0.09730029106140137, 0.04921281710267067, 0.11119497567415237,
- -0.0440099723637104, 0.34547868371009827, 0.02251433953642845, 0.02525266259908676,
- -0.01826878823339939, 0.08544761687517166, 0.03606362268328667, 0.03680536523461342,
- 0.04826977849006653, -0.04653647914528847, 0.006286689080297947, -0.09372256696224213,
- -0.04393724352121353, 0.0927109569311142, 0.04561535641551018, -0.011220425367355347,
- 0.036372099071741104, -0.01535380631685257, -0.06665227562189102, -0.005200826097279787,
- -0.014288588427007198, 0.0901336520910263, 0.08556169271469116, -0.111595019698143,
- 0.025537710636854172, 0.05648612231016159, -0.07570170611143112, 0.08586789667606354,
- -0.05847855284810066, -0.007044113706797361, 0.004874113947153091, 0.02571486495435238,
- -0.018065545707941055, 0.007337548770010471, -0.11013213545084, 0.03780382126569748,
- -0.03959793224930763, 0.07412392646074295, 0.03444856405258179, -0.0068672578781843185,
- 0.04884246364235878, 0.036571141332387924, -0.050682276487350464, -0.06192909926176071,
- -0.04993722587823868, -0.06724860519170761, -0.032057024538517, -0.013045486994087696,
- 0.06843659281730652, -0.05518478527665138, -0.1943027377128601, 0.012594775296747684,
- 0.02513132616877556, -0.0006702782120555639, -0.048339467495679855, -0.0061547108925879,
- -0.016725845634937286, 0.06479824334383011, -0.0033580416347831488,
- -0.012854710221290588, 0.047215454280376434, 0.06341450661420822, 0.066814124584198,
- 0.10014122724533081, 0.10377366840839386, -0.05927947908639908, -0.02550318092107773,
- -0.015181422233581543, 0.015881190076470375, 0.07919329404830933, -0.15384313464164734,
- -0.038722481578588486, -0.018123513087630272, -0.021141355857253075, 0.7342214584350586,
- 0.09850884974002838, 0.13584987819194794, 0.032301273196935654, -0.01360293384641409,
- 0.21139271557331085, 0.008036619983613491, 0.06885012239217758, -0.08788798004388809,
- -0.002898141508921981, 0.04079198092222214, -0.06415968388319016, -0.012111109681427479,
- 0.02577393874526024, 0.058673858642578125, 0.09246417880058289, 0.020134229212999344,
- 0.08421707898378372, 0.0742812529206276, -0.1128624677658081, -0.055576544255018234,
- 0.08154131472110748, -0.014766181819140911, -0.11436177790164948, -0.026753539219498634,
- 0.04926374554634094, 0.074132539331913, -0.11016064137220383, 0.03513282909989357,
- -0.06547163426876068, 0.03926119953393936, -0.03293244168162346, 0.07259707152843475,
- -0.05486550182104111, 0.005271793343126774, 0.019372034817934036, 0.10320518910884857,
- -0.04685540124773979, -0.11862244457006454, -0.057812951505184174, 0.08992678672075272,
- -0.020812468603253365, -0.004184235818684101, 0.050319600850343704,
- -0.09956112504005432, 0.012886443175375462, 0.05429422855377197, 0.19828516244888306,
- -0.1017722561955452, 0.023480502888560295, 0.013095124624669552, -0.025479808449745178,
- 0.06491485983133316, 0.01493632048368454, -0.11628837138414383, -0.06081743165850639,
- 0.09480106085538864, 0.03548874333500862, 0.1132284477353096, 0.11810274422168732,
- -0.07445627450942993, 0.09187288582324982, 0.027234094217419624, 0.030188392847776413,
- -0.07384131103754044, 0.09435547143220901, 0.060585469007492065, 0.006486177444458008,
- -0.013327362947165966, 0.04511840641498566, 0.0701482966542244, 0.054882895201444626,
- -0.005913101602345705, 0.06200823932886124, -0.01899198815226555, -0.045660749077796936,
- 0.05745970085263252, 0.08583229780197144, 0.050885479897260666, 0.06708573549985886,
- -0.04596475139260292, -0.011771406047046185, -0.017418185248970985,
- -0.026493074372410774, 0.0038115817587822676, 0.0019971972797065973,
- 0.07885708659887314, 0.09104396402835846, 0.07883967459201813, 0.04589033126831055,
- -0.012964039109647274, 0.047086507081985474, 0.038241930305957794,
- 0.0034157230984419584, 0.0991785079240799, -0.008169186301529408, -0.038071777671575546,
- -0.028256142511963844, -0.010153472423553467, -0.019233722239732742,
- 0.008480874821543694, -0.04030606523156166, -0.04184303805232048, -0.07912220805883408,
- -0.05887974798679352, -0.09556570649147034, -0.057826507836580276, 0.027080347761511803,
- 0.04413853585720062, -0.07181473821401596, -0.10924221575260162, -0.07552138715982437,
- 0.04818836227059364, 0.1280612349510193, -0.0043488782830536366, -0.042911287397146225,
- -0.14190974831581116, 0.03493359312415123, -0.020705953240394592, 0.05743391811847687,
- -0.03427818417549133, -0.019898775964975357, -0.00871218554675579, -0.10745425522327423,
- 0.018817849457263947, -0.03822264447808266, 0.02605409175157547, -0.10647236555814743,
- -0.0774381086230278, -0.0003945983771700412, -0.09153356403112411, 0.026244034990668297,
- -0.06321949511766434, 0.01271867100149393, 0.04573993384838104, 0.037395209074020386,
- -0.036175843328237534, -0.011870110407471657, 0.048633966594934464, -0.0590185672044754,
- -0.0018965700874105096, 0.09488806128501892, -0.020577406510710716, 0.0082039600238204,
- -0.009836960583925247, -0.07976478338241577, -0.043840717524290085, 0.01067904382944107,
- -0.007973103784024715, 0.02819676324725151, -0.01568087376654148, 0.03257276862859726,
- -0.06260861456394196, -0.039709970355033875, 0.055708907544612885, -0.05006050318479538,
- -0.09888207912445068, -0.07256625592708588, 0.11881467700004578, 0.005693452432751656,
- 0.01565040834248066, 0.004511121194809675, -0.05964228883385658, 0.054395563900470734,
- 0.01069635059684515, 0.03600988909602165, 0.03841724991798401, 0.10710527002811432,
- -0.02223401702940464, 0.03805605322122574, 0.07655606418848038, -0.0436110682785511,
- 0.02394891157746315, 0.05337229743599892, 0.4358578622341156, -0.20755673944950104,
- 0.10551244020462036, 0.1559460312128067, 0.04377907142043114, 0.040516119450330734,
- -0.03948844596743584, 0.09176280349493027, 0.06807292997837067, 0.14140814542770386,
- 0.11991286277770996, -0.014802561141550541, -0.01978035643696785, -0.1109861209988594,
- 0.09524916857481003, -0.03590543568134308, 0.06557945907115936, -0.042350348085165024,
- -0.0650802031159401, -0.03745768219232559, -0.0035906461998820305, -0.05140712484717369,
- 0.03315189853310585, 0.0013627781299874187, -0.03833671286702156, 0.014680442400276661,
- 0.026525061577558517, 0.032141201198101044, -0.00462008360773325, 0.04738727957010269,
- -0.07333967834711075, 0.07271461933851242, 0.021313611418008804, 0.04355236142873764,
- -0.1641235053539276, 0.022410890087485313, -0.0752246081829071, -0.10782834142446518,
- 0.041528526693582535, 0.030050301924347878, 0.07252398133277893, 0.0597233884036541,
- -0.04438307508826256, 0.052547164261341095, -0.046193841844797134, -0.03846506401896477,
- 0.05157832056283951, 0.08151845633983612, 0.0029449716676026583, 0.1203756108880043,
- 0.1559325009584427, -0.030863534659147263, -0.017309829592704773, -0.0711274966597557,
- 0.04620695114135742, 0.1581811159849167, -0.011483062990009785, -0.023071466013789177,
- 0.006549202371388674, -0.010071196593344212, -0.0023108068853616714,
- -0.06298872828483582, -0.05871602147817612, 0.010718903504312038,
- -0.0023375749588012695, 0.0964968129992485, 0.03852343559265137, -0.019075840711593628,
- -0.1314917504787445, -0.04246901720762253, -0.07272084057331085, -0.025183796882629395,
- 0.0720500722527504, -0.042093612253665924, 0.05053991824388504, 0.019747082144021988,
- -0.009253909811377525, 0.04556562379002571, -0.05959517881274223, 0.009977280162274837,
- -0.03550535440444946, 0.027978425845503807, 0.03732042387127876, 0.04727056995034218,
- -0.03105904534459114, 0.1340791881084442, -0.08013621717691422, 0.08818740397691727,
- -0.010808143764734268, -0.035262979567050934, -0.04051191359758377,
- 0.024471193552017212, -0.0437733419239521, 0.024500038474798203, -0.06326587498188019,
- 0.016772065311670303, -0.03635718673467636, -0.08007137477397919, -0.015603295527398586,
- -0.047150906175374985, -0.02045326679944992, -0.08762000501155853,
- -0.0025458692107349634, -0.17062459886074066, -0.0034008410293608904,
- -0.03969588503241539, 0.0032540305983275175, -0.0366828516125679, 0.017573285847902298,
- 0.06771077960729599, -0.13380390405654907, 0.02980191446840763, -0.02804611250758171,
- 0.0829634815454483, -0.02205152064561844, -0.03860015422105789, 0.02220301702618599,
- 0.08808938413858414, 0.03937487304210663, -0.02828570082783699, -0.009610074572265148,
- 0.00297159724868834, 0.08236584812402725, -0.20231148600578308, -0.3436987102031708,
- 0.06413627415895462, -0.0060160341672599316, 0.01556770596653223, -0.027825748547911644,
- -0.09193994104862213, 0.042431268841028214, 0.0561719611287117, -0.021042529493570328,
- 0.09529334306716919, -0.06413078308105469, 0.05704730749130249, 0.010029454715549946,
- -0.09220775961875916, -0.03395838290452957, -0.042483970522880554, -0.09462753683328629,
- 0.0416463278234005, -0.04335472732782364, -0.0654996931552887, -0.10639229416847229,
- 0.015954291447997093, 0.013074145652353764, -0.030932247638702393, 0.03629746660590172,
- 0.040628477931022644, -0.03917280212044716, -0.0375484898686409, 0.043025944381952286,
- 0.06245509162545204, 0.03164815157651901, -0.06604394316673279, -0.04553784430027008,
- 0.0754399374127388, 0.012924714013934135, 0.10491915792226791, 0.04659517854452133,
- 0.04651984944939613, -0.07133031636476517, 0.08871011435985565, 0.07024390250444412,
- 0.18557430803775787, -0.020869728177785873, -0.009424819611012936, 0.09215706586837769,
- 0.13701876997947693, 0.04669824242591858, 0.002363261068239808, -0.06191520020365715,
- -0.027646653354167938, 0.038759779185056686, 0.024964213371276855, 0.10802216082811356,
- -0.07750848680734634, -0.02312784641981125, -0.05702952295541763, 0.002409125678241253,
- 0.0006344657158479095, -0.03946397453546524, 0.19521649181842804, -0.01704694703221321,
- -0.016636935994029045, 0.011264891363680363, -0.09243790805339813,
- -0.00048371899174526334, -0.0653868019580841, -0.11036377400159836,
- 0.011638564988970757, 0.03618296980857849, 0.019006112590432167, -0.07212146371603012,
- -0.13179665803909302, 0.014755277894437313, -0.024490606039762497,
- -0.0024881218560039997, 0.1246221736073494, -0.06671952456235886, 0.052667003124952316,
- -0.04488682374358177, 0.14993414282798767, 0.04935501515865326, -0.042985834181308746,
- 0.08090191334486008, 0.10012217611074448, 0.026594772934913635, 0.010561272501945496,
- -0.002690258203074336, -0.06909357756376266, -0.004335437435656786, 0.15711525082588196,
- -0.033720098435878754, 0.13638342916965485, 0.06060756370425224, -0.08169256895780563,
- -0.07657209783792496, 0.008862776681780815, -0.09793786704540253, 0.05435638874769211,
- -0.4260115325450897, -0.023012584075331688, 0.11641322076320648, -0.007864081300795078,
- 0.019562123343348503, 0.08035515993833542, -0.026849033311009407, -0.06255894899368286,
- -0.03867755085229874, -0.07851609587669373, 0.20120243728160858, 0.02475947141647339,
- 0.038449935615062714, -0.14332033693790436, 0.04305878281593323, 0.09491898119449615,
- -0.01336730271577835, 0.015145990066230297, 0.05092419683933258, -0.19634388387203217,
- 0.019519761204719543, 0.018208779394626617, 0.12045712769031525, 0.009357528761029243,
- 0.03508744388818741, 0.07465823739767075, -0.07404924184083939, 0.011953066103160381,
- 0.02744859643280506, 0.017814254388213158, -0.01840214617550373, 0.04641814902424812,
- -0.002316107042133808, 0.08897043764591217, 0.09247951954603195, 0.03692271560430527,
- -0.0454096682369709, 11.993660926818848, 0.06668267399072647, 0.05237605422735214,
- -0.13341157138347626, 0.014574564062058926, -0.056002501398324966, 0.006151292473077774,
- -0.11843226850032806, 0.09240282326936722, 0.11985594779253006, -0.03703225404024124,
- -0.0411272756755352, -0.05138307064771652, -0.09234218299388885, 0.013533895835280418,
- -0.022645359858870506, -0.036911845207214355, -0.08972805738449097, 0.07221770286560059,
- -0.015659168362617493, -0.0625309944152832, -0.025331178680062294, 0.018009383231401443,
- 0.01235188078135252, -0.08534698933362961, -0.044205956161022186, 0.055438894778490067,
- -0.042566534131765366, -0.029832037165760994, 0.022852513939142227,
- -0.006708137691020966, -0.016940949484705925, 0.05296945571899414,
- -0.012021425180137157, 0.03920801356434822, 0.12338338047266006, 0.02717144973576069,
- 0.035291027277708054, 0.013398551382124424, 0.08609453588724136, 0.01644023321568966,
- 0.023073794320225716, 0.014198096469044685, 0.0836465060710907, 0.06160856410861015,
- 0.03261089697480202, 0.02719775401055813, 0.1240527331829071, 0.04260655492544174,
- 0.07838865369558334, 0.10372445732355118, -0.014106597751379013, 0.09827826917171478,
- -0.008807319216430187, 0.016645167022943497, 0.09235689789056778, 0.03201017901301384,
- -0.051582157611846924, 0.08545537292957306, 0.0075166854076087475,
- -0.057764992117881775, 0.09700409322977066, -0.014977731741964817, 0.08381596952676773,
- -0.025763925164937973, 0.0500272773206234, 0.05121280625462532, 0.09653638303279877,
- -0.14349780976772308, -0.09606729447841644, 0.02276742085814476, -0.10961304605007172,
- -0.09238997101783752, 0.0980997085571289, 0.0267599169164896, -0.007851388305425644,
- 0.07203405350446701, -0.04129987210035324, 0.04851249232888222, -0.0393049381673336,
- 0.023739352822303772, 0.03971540182828903, -0.01092492789030075, 0.042274199426174164,
- 0.005052127875387669, 0.025024041533470154, 0.04463395103812218, 0.12350153177976608,
- 0.027991872280836105, -0.12013926357030869, -0.09036959707736969, 0.1280638724565506,
- 0.0028954450972378254, -0.08546124398708344, -0.006432762835174799,
- -0.09603044390678406, -0.014602438546717167, -0.13081446290016174, 0.05998719483613968,
- 0.1111040860414505, -0.07261108607053757, -0.05602489784359932, -0.03945222869515419,
- 0.06235138699412346, 0.011552304960787296, 0.05095537751913071, -0.11842174828052521,
- -0.01667749509215355, 0.013227554038167, 0.0866224393248558, -0.03415680304169655,
- 0.07470773160457611, 0.0930648222565651, -0.07616936415433884, -0.025000523775815964,
- 0.05352642014622688, -0.049585819244384766, -0.01813347451388836, 0.08460233360528946,
- 0.05160846188664436, -0.05397519841790199, -0.046389803290367126, -0.005321665201336145,
- -0.09270989149808884, -0.020289508625864983, -0.04354461282491684, 0.041131626814603806,
- 0.02753717638552189, -0.07918417453765869, -0.012460960075259209, 0.08894944190979004,
- 0.041433483362197876, 0.09482087939977646, -0.03952851518988609, 0.0540148988366127,
- -0.09923643618822098, -0.07082261145114899, 0.03073694184422493, 0.035621367394924164,
- 0.06202312931418419, -0.07703157514333725, -0.06485213339328766, -0.06560322642326355,
- -0.11203784495592117, 0.06946838647127151, 0.08903555572032928, 0.06181078776717186,
- 0.008556770160794258, -0.008609533309936523, -0.07839307934045792,
- -0.022429952397942543, 0.08966999500989914, 0.035895008593797684, 0.05458420515060425,
- 0.031410444527864456, -0.05304616317152977, -0.08233757317066193, 0.09753931313753128,
- -0.03141931816935539, -0.018848521634936333, 0.035125602036714554, -0.04547411948442459,
- 0.17765407264232635, 0.10241647809743881, 0.03296845778822899, 0.07344476133584976,
- 0.07274194806814194, -0.005149154923856258, 0.02493450976908207, 0.01689685694873333,
- -0.0013529856223613024, -0.022754402831196785, -0.036996062844991684,
- -0.11170327663421631, -0.004628259688615799, 0.14010857045650482, 0.017322277650237083,
- -0.12193084508180618, -0.018322166055440903, -0.021909283474087715
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 76,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 54,
- "similarity": 0.9979806542396545
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 40,
- "similarity": 0.9979501366615295
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 11,
- "similarity": 0.9978103041648865
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Karen Hao"],
- "epoch_date_downloaded": 1605571200,
- "epoch_date_modified": 1605571200,
- "epoch_date_submitted": 1605571200,
- "flag": null,
- "report_number": 1339,
- "source_domain": "technologyreview.com",
- "submitters": ["Roman Lutz", "Sean McGregor"],
- "title": "Live facial recognition is tracking kids suspected of being criminals",
- "url": "https://www.technologyreview.com/2020/10/09/1009992/live-facial-recognition-is-tracking-kids-suspected-of-crime/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "knightscope",
- "name": "Knightscope"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "knightscope",
- "name": "Knightscope"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "unnamed-woman-injured-in-the-fight",
- "name": "unnamed woman injured in the fight"
- },
- {
- "__typename": "Entity",
- "entity_id": "cogo-guebara",
- "name": "Cogo Guebara"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [2202, 2201, 1878, 1390, 1340],
- "vector": [
- -0.08249890804290771, 0.08610043674707413, 0.026087921112775803, -0.1344326287508011,
- 0.0690477266907692, -0.014958987943828106, 0.001355932094156742, 0.026723617687821388,
- 0.08524539321660995, -0.11191711574792862, 0.006824961863458157, 0.054244838654994965,
- 0.01967647857964039, -0.04006204009056091, 0.0452062152326107, -0.0655747577548027,
- -0.0752820149064064, -0.040278732776641846, -0.03285714238882065, -0.1271282136440277,
- -0.0775449350476265, -0.006815561559051275, 0.024647478014230728, 0.1125027984380722,
- -0.06770623475313187, 0.024804942309856415, 0.08777689933776855, 0.10886587202548981,
- -0.07955624163150787, 0.012950355187058449, -0.018586764112114906, -0.0853300541639328,
- 0.12616387009620667, 0.0017701033502817154, 0.005525986198335886, 0.08445160835981369,
- 0.019578667357563972, -0.0477585643529892, -0.013739940710365772, 0.026631275191903114,
- -0.00411165039986372, 0.20016822218894958, -0.009102554991841316, 0.004305720329284668,
- 0.05207236483693123, -0.026935169473290443, -0.009866660460829735, 0.01305555272847414,
- -0.004783297888934612, 0.012319841422140598, 0.0024537499994039536, 0.02934115007519722,
- -0.04603610187768936, 0.03351728245615959, -0.11846625804901123, 0.09028281271457672,
- 0.024099549278616905, 0.010627022944390774, 0.04665481299161911, -0.05027465149760246,
- -0.04996705800294876, -0.21866106986999512, -0.05782027170062065, -0.06991554796695709,
- 0.05842975527048111, -0.07516182959079742, -0.0362202450633049, 0.039182018488645554,
- 0.005897175520658493, 0.02667156420648098, 0.0881551057100296, -0.023932361975312233,
- 0.01789088547229767, -0.02068258449435234, -0.01307482086122036, -0.005656440742313862,
- -0.008456789888441563, 0.1937248706817627, -0.10493771731853485, 0.009894751012325287,
- 0.1139085441827774, -0.11608846485614777, 0.40619200468063354, -0.0007450040429830551,
- -0.021225253120064735, 0.022015975788235664, 0.08739210665225983, 0.014357087202370167,
- 0.0549495704472065, 0.048095185309648514, 0.010427562519907951, 0.05067620426416397,
- -0.055866919457912445, 0.03401213139295578, 0.07809732854366302, 0.02818666771054268,
- -0.005429490003734827, 0.06865140050649643, -0.012621304020285606, -0.04465325549244881,
- 0.0016011714469641447, -0.04639352113008499, 0.07052858918905258, 0.054728396236896515,
- -0.025806251913309097, -0.008796672336757183, 0.09897534549236298, -0.05058711767196655,
- 0.06459491699934006, -0.06509250402450562, 0.026389211416244507, 0.018552683293819427,
- 0.04204682633280754, 0.0007285430910997093, 0.022568393498659134, -0.07452678680419922,
- 0.011009687557816505, 0.011667481623589993, 0.11022613942623138, 0.03904232755303383,
- -0.013901588506996632, 0.05876921862363815, 0.09270606935024261, -0.06458990275859833,
- -0.03068695031106472, -0.05617035552859306, -0.06721518933773041, -0.009717414155602455,
- 0.007742828223854303, 0.028508877381682396, -0.07233963906764984, -0.22993037104606628,
- 0.024048103019595146, 0.07879611104726791, 0.006950488779693842, -0.019825628027319908,
- 0.005018293391913176, -0.10160168260335922, 0.0407380536198616, -0.014814689755439758,
- -0.05599207431077957, 0.0646686777472496, 0.038106150925159454, 0.04280123859643936,
- 0.09531380981206894, 0.03755321353673935, -0.0483296737074852, -0.04303367808461189,
- -0.03518516570329666, -0.008425552397966385, 0.10309012234210968, -0.15283578634262085,
- -0.05267583206295967, 0.04701299965381622, 0.03280431032180786, 0.6390708088874817,
- 0.10335656255483627, 0.19468657672405243, -0.026888657361268997, -0.0333767905831337,
- 0.1912892907857895, -0.00003868564817821607, 0.04572763293981552, -0.0518258698284626,
- -0.06715942919254303, 0.02208312414586544, -0.07031506299972534, -0.046632956713438034,
- 0.057632435113191605, 0.0189463309943676, 0.09836113452911377, 0.03701629489660263,
- 0.10330772399902344, 0.0030440811533480883, -0.11605095863342285, 0.0293407179415226,
- 0.08711317926645279, 0.017262784764170647, -0.10921820253133774, -0.03542950004339218,
- 0.05103650689125061, 0.09898559749126434, -0.08163455128669739, -0.011613504961133003,
- -0.0753353089094162, 0.05957673862576485, -0.045918047428131104, 0.031139453873038292,
- -0.03862830251455307, 0.024409260600805283, 0.07870354503393173, 0.05477938801050186,
- -0.014143352396786213, -0.10888868570327759, -0.02881137654185295, 0.11787255108356476,
- 0.010907759889960289, -0.0571141354739666, 0.07756881415843964, -0.08389177173376083,
- 0.02193446271121502, -0.001543598249554634, 0.1406569927930832, -0.11639152467250824,
- 0.03424860164523125, -0.008431892842054367, -0.008025109767913818, 0.045787181705236435,
- 0.011740441434085369, -0.05553445965051651, -0.09730537980794907, 0.058133967220783234,
- 0.04869293421506882, 0.10087314993143082, 0.04142788052558899, -0.04225446656346321,
- 0.05246661975979805, 0.06290099769830704, 0.009214864112436771, -0.027217745780944824,
- 0.05591874569654465, 0.07180310040712357, -0.013162103481590748, -0.0219431109726429,
- 0.032885849475860596, 0.01191204134374857, 0.03750394284725189, 0.0063364156521856785,
- 0.04317380115389824, -0.013251361437141895, -0.04275388643145561, 0.02999102510511875,
- 0.044382624328136444, 0.012437304481863976, 0.07934863865375519, -0.08111080527305603,
- -0.05224646255373955, -0.01663500815629959, -0.022513195872306824,
- -0.004955139011144638, -0.034644965082407, 0.09172990918159485, 0.08135788142681122,
- 0.09526297450065613, 0.04823119938373566, 0.03990769386291504, 0.0664936751127243,
- 0.07602725923061371, 0.02644089236855507, 0.05616626888513565, -0.040120989084243774,
- -0.06786537170410156, -0.011638583615422249, 0.00575085636228323, 0.04797866940498352,
- 0.054783307015895844, -0.08423946797847748, -0.04249810054898262, -0.010091264732182026,
- -0.04926943778991699, -0.0847252607345581, -0.021991804242134094, -0.012615790590643883,
- 0.01251106709241867, -0.08054514229297638, -0.05513188987970352, -0.1062675341963768,
- -0.0026103921700268984, 0.0954233855009079, -0.03424391895532608, -0.007691194303333759,
- -0.12254385650157928, 0.06900631636381149, -0.05489771440625191, 0.04552535340189934,
- -0.008441902697086334, 0.01818925514817238, 0.01430080272257328, -0.06915225088596344,
- 0.02610298991203308, -0.009493173100054264, -0.05082271248102188, -0.04713995009660721,
- -0.024845179170370102, -0.021429026499390602, 0.0029712319374084473,
- -0.0012038327986374497, -0.017961284145712852, 0.039484284818172455,
- 0.04395361989736557, 0.07896450161933899, -0.012515673413872719, -0.03189092129468918,
- 0.05709293484687805, -0.023636940866708755, 0.010954628698527813, 0.09550837427377701,
- -0.009768840856850147, 0.021330559626221657, -0.04345623031258583, -0.09171110391616821,
- -0.041340433061122894, -0.00021923519670963287, -0.03416997939348221,
- 0.06773310899734497, -0.035221606492996216, -0.015191701240837574, -0.04644528031349182,
- 0.0021105592604726553, 0.06270947307348251, -0.04680221900343895, -0.08698544651269913,
- -0.08983875811100006, 0.11050248146057129, -0.027245953679084778,
- -0.0005752250435762107, 0.02539735659956932, -0.0777529925107956, 0.063137486577034,
- 0.001607327489182353, -0.005376276560127735, 0.07036322355270386, 0.06864780187606812,
- -0.025375764816999435, 0.03357984870672226, 0.08145838975906372, -0.01761316880583763,
- 0.011970436200499535, 0.06273405253887177, 0.44756168127059937, -0.24641135334968567,
- 0.06674397736787796, 0.11963097751140594, 0.0318271741271019, 0.07540319114923477,
- -0.020961161702871323, 0.06869266927242279, 0.06813083589076996, 0.11773856729269028,
- 0.07423387467861176, -0.04234278202056885, -0.037557803094387054, -0.07416616380214691,
- 0.09651511907577515, 0.036604128777980804, 0.025132665410637856, -0.03475091606378555,
- -0.06510137766599655, -0.012495743110775948, 0.03302636370062828, -0.0551355704665184,
- -0.017874162644147873, 0.017276037484407425, -0.09165510535240173, 0.024808332324028015,
- 0.023976286873221397, 0.04739469289779663, -0.0689685195684433, 0.023846687749028206,
- -0.031223544850945473, 0.0718718022108078, 0.023252900689840317, 0.03685885667800903,
- -0.08597137778997421, 0.0295212771743536, -0.05981403589248657, -0.12050072848796844,
- 0.0677414983510971, -0.032629042863845825, 0.05123623460531235, 0.07348524779081345,
- -0.035952188074588776, 0.03372744470834732, -0.005380913615226746, -0.08386847376823425,
- 0.03523450344800949, 0.04397719353437424, 0.07096381485462189, 0.07874707877635956,
- 0.17691045999526978, -0.04620623588562012, -0.045138128101825714, -0.06802067905664444,
- 0.0636904165148735, 0.1219693273305893, -0.04246208816766739, 0.02971871756017208,
- 0.008546101860702038, -0.017919912934303284, 0.02150321938097477, -0.018902963027358055,
- -0.05906686186790466, -0.009333652444183826, -0.0422530323266983, 0.07180749624967575,
- 0.024775389581918716, -0.028577730059623718, -0.18256191909313202, 0.007614639587700367,
- -0.03833063691854477, 0.021747395396232605, 0.11341135203838348, -0.04928312823176384,
- 0.028189394623041153, 0.010373635217547417, 0.007651522755622864, 0.02313510701060295,
- -0.08863527327775955, 0.01657387614250183, -0.04346116632223129, 0.03012143075466156,
- 0.10649698972702026, 0.05624350160360336, -0.05694758892059326, 0.023765167221426964,
- -0.09874134510755539, 0.040641892701387405, 0.05736953020095825, -0.01725379377603531,
- 0.02061856910586357, 0.0073295035399496555, 0.05743098258972168, 0.018806880339980125,
- -0.05960850045084953, 0.033318303525447845, -0.0484127439558506, -0.028216367587447166,
- -0.08588860183954239, -0.06301790475845337, -0.04206877574324608, -0.09102708846330643,
- 0.0551849827170372, -0.1268307864665985, -0.02297774888575077, -0.06038454920053482,
- 0.0010092228185385466, 0.02968115173280239, 0.05666404217481613, 0.028273876756429672,
- -0.11728297173976898, 0.02731432393193245, -0.027018079534173012, 0.04889925569295883,
- -0.00728476420044899, -0.07200592756271362, 0.024757180362939835, 0.07991232722997665,
- 0.042775195091962814, -0.020048627629876137, 0.0031769233755767345,
- -0.05183759331703186, 0.011404228396713734, -0.11515440791845322, -0.46157392859458923,
- 0.04515735059976578, -0.011995046399533749, 0.04113756865262985, 0.02432950958609581,
- -0.06667457520961761, 0.017510313540697098, -0.022857507690787315, -0.02778925932943821,
- 0.07259501516819, -0.05793704465031624, 0.009579076431691647, 0.015335786156356335,
- -0.1123378649353981, 0.0026034684851765633, -0.10040830075740814, -0.05069563910365105,
- 0.043178170919418335, -0.01187141053378582, -0.08685038983821869, -0.11382897943258286,
- 0.011601077392697334, -0.004525874741375446, 0.029037440195679665,
- -0.027405668050050735, 0.010802149772644043, -0.06484833359718323, -0.04665542021393776,
- 0.02446753717958927, 0.04399685934185982, 0.010330410674214363, -0.0812540128827095,
- -0.02968580462038517, 0.0567312017083168, -0.011300118640065193, 0.1435379683971405,
- 0.02362644299864769, 0.011242146603763103, -0.06506267935037613, 0.06443540006875992,
- 0.07461585104465485, 0.18448130786418915, -0.010597087442874908, 0.05005764961242676,
- 0.008872289210557938, 0.12258102744817734, 0.03546147421002388, 0.018430467694997787,
- -0.045737944543361664, 0.0032218298874795437, 0.011716639623045921,
- -0.015460759401321411, 0.06044868379831314, -0.08953346312046051, -0.03231285884976387,
- -0.04820254072546959, -0.01934501901268959, -0.033460043370723724, 0.036152977496385574,
- 0.19479034841060638, 0.035989124327898026, 0.05140969902276993, 0.014195846393704414,
- -0.06085847690701485, 0.02116541936993599, -0.03540880233049393, -0.05343835800886154,
- -0.005916946567595005, -0.029214074835181236, -0.0003248866705689579,
- -0.039288997650146484, -0.12495479732751846, -0.011940223164856434,
- 0.016406310722231865, -0.02109743095934391, 0.08774921298027039, -0.014304334297776222,
- 0.033374715596437454, -0.030837541446089745, 0.13834482431411743, 0.045110683888196945,
- 0.009038618765771389, 0.05791551619768143, 0.08650083839893341, 0.033295631408691406,
- -0.014671044424176216, -0.052635557949543, -0.06289143860340118, -0.012265188619494438,
- 0.11900834739208221, -0.06759561598300934, 0.0852314680814743, 0.03723568096756935,
- -0.017760729417204857, -0.06750118732452393, 0.028363555669784546, -0.02200680784881115,
- 0.004921856336295605, -0.47597599029541016, 0.0018547065556049347, 0.11992094665765762,
- -0.017243381589651108, 0.03488676995038986, 0.09719078242778778, 0.0463748425245285,
- -0.03986208885908127, -0.028277838602662086, -0.08299924433231354, 0.11476810276508331,
- 0.0053445142693817616, 0.05707433819770813, -0.1303233504295349, 0.038427818566560745,
- 0.07238345593214035, -0.0026328060775995255, -0.01570228300988674, 0.06696907430887222,
- -0.2516438364982605, 0.00863079447299242, -0.0030578847508877516, 0.1409912109375,
- 0.019817661494016647, 0.023791618645191193, 0.054013460874557495, -0.04373728111386299,
- 0.01751435361802578, 0.05284929275512695, 0.02721775509417057, 0.03248040750622749,
- -0.012220163829624653, -0.026137415319681168, 0.10220960527658463, 0.09367580711841583,
- 0.066902756690979, 0.035757046192884445, 12.078559875488281, 0.0721726045012474,
- 0.07631930708885193, -0.08321579545736313, 0.06234871223568916, -0.04586958885192871,
- 0.027152279391884804, -0.08295615017414093, 0.05998694896697998, 0.10632486641407013,
- -0.00705289700999856, -0.031020764261484146, -0.03316987305879593, -0.09316496551036835,
- 0.013081170618534088, -0.06940056383609772, -0.04834345728158951, -0.019664378836750984,
- 0.032163821160793304, -0.04394354298710823, -0.022872518748044968, 0.06182149797677994,
- 0.04959455877542496, 0.02646290697157383, -0.08195195347070694, 0.04833833873271942,
- 0.031456075608730316, -0.011438327841460705, -0.010929597541689873, 0.03972991183400154,
- -0.021934133023023605, -0.0012862393632531166, 0.05118175595998764,
- 0.011472905054688454, 0.021997123956680298, 0.04494407773017883, 0.06135885789990425,
- 0.044081516563892365, -0.0026312205009162426, 0.08061238378286362,
- -0.0058972896076738834, 0.036400701850652695, 0.03138551115989685, 0.01938081532716751,
- 0.03933575749397278, 0.03685624897480011, 0.02877953089773655, 0.10458151251077652,
- -0.008150589652359486, 0.04614336043596268, 0.10867480933666229, -0.03717808052897453,
- 0.10873816907405853, 0.05584774538874626, 0.004048330709338188, 0.07661107927560806,
- -0.017924079671502113, -0.054543256759643555, 0.05397273972630501, 0.07715289294719696,
- -0.044306449592113495, 0.09647656232118607, 0.0026048317085951567, 0.1139126569032669,
- -0.005717471241950989, 0.05279145389795303, 0.07860687375068665, 0.08827795088291168,
- -0.13098759949207306, -0.07501911371946335, 0.026426684111356735, -0.11742626130580902,
- -0.05406149476766586, 0.040474049746990204, 0.10265077650547028, -0.01886686682701111,
- 0.06197688728570938, -0.03687102347612381, 0.016063112765550613, -0.040137048810720444,
- -0.01725110597908497, 0.05323343351483345, 0.009233628399670124, 0.01829102635383606,
- 0.057333897799253464, 0.028231602162122726, 0.09201465547084808, 0.07341762632131577,
- -0.015433067455887794, -0.11674676835536957, -0.05889974907040596, 0.08657711744308472,
- -0.054546963423490524, -0.07406091690063477, 0.020913289859890938, -0.06058768555521965,
- 0.04211459308862686, -0.1539299190044403, 0.08271418511867523, 0.13468416035175323,
- -0.08428651094436646, -0.01586274988949299, -0.048918381333351135, 0.09525232762098312,
- -0.004179246723651886, 0.04112512245774269, -0.06887319684028625, -0.019480757415294647,
- 0.04387996718287468, 0.04020441696047783, -0.04085596650838852, 0.09222687780857086,
- 0.08849111944437027, -0.052857451140880585, 0.016863584518432617, 0.0517546720802784,
- -0.015905745327472687, -0.02014574408531189, 0.06580580770969391, 0.024530308321118355,
- -0.09619569778442383, -0.05622361972928047, -0.029026105999946594, -0.04703933373093605,
- -0.0338703915476799, -0.05951112508773804, -0.002425899263471365, 0.04273349419236183,
- -0.0918986052274704, -0.026541268453001976, 0.004819247871637344, 0.005909114144742489,
- 0.06489686667919159, 0.009522152133286, 0.08412836492061615, -0.07846540957689285,
- -0.0651252269744873, 0.0499783530831337, 0.06245863437652588, 0.05375320836901665,
- 0.002200836781412363, -0.006371886935085058, -0.0624849908053875, -0.07948169112205505,
- 0.04390552267432213, 0.12322993576526642, 0.03824048116803169, 0.06398220360279083,
- 0.06315422803163528, -0.08366783708333969, -0.03527260944247246, 0.10814718157052994,
- 0.02438400313258171, 0.009471018798649311, 0.01746094599366188, -0.07182727754116058,
- -0.03353666886687279, 0.13138476014137268, -0.05673431232571602, 0.027846669778227806,
- -0.01605275832116604, 0.0006022669258527458, 0.04927409440279007, 0.12371077388525009,
- 0.051306355744600296, 0.04760725051164627, 0.019155988469719887, 0.015538394451141357,
- 0.0001610875187907368, -0.041094645857810974, -0.007347811944782734,
- -0.04589807242155075, -0.07804782688617706, -0.06893905997276306, 0.07066623866558075,
- 0.08994290977716446, 0.011272349394857883, -0.09857511520385742, -0.012185467407107353,
- -0.025763144716620445
- ]
- },
- "flagged_dissimilar_incidents": [67],
- "incident_id": 77,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 67,
- "similarity": 0.9979178309440613
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 51,
- "similarity": 0.9979151487350464
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 68,
- "similarity": 0.9979044795036316
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Law Enforcement Today"],
- "epoch_date_downloaded": 1666569600,
- "epoch_date_modified": 1667347200,
- "epoch_date_submitted": 1666569600,
- "flag": null,
- "report_number": 2202,
- "source_domain": "lawenforcementtoday.com",
- "submitters": ["Anonymous"],
- "title": "Police robot completely ignores woman begging for help",
- "url": "https://www.lawenforcementtoday.com/police-robot-completely-ignores-woman-begging-for-help/"
- },
- {
- "__typename": "Report",
- "authors": ["Fabienne Lang"],
- "epoch_date_downloaded": 1666569600,
- "epoch_date_modified": 1667347200,
- "epoch_date_submitted": 1666569600,
- "flag": null,
- "report_number": 2201,
- "source_domain": "interestingengineering.com",
- "submitters": ["Khoa Lam"],
- "title": "Police Robot Ignores Woman's Call for Help in an American Park",
- "url": "https://interestingengineering.com/innovation/police-robot-ignores-womans-call-for-help-in-an-american-park"
- },
- {
- "__typename": "Report",
- "authors": ["Greg Porter"],
- "epoch_date_downloaded": 1660089600,
- "epoch_date_modified": 1660089600,
- "epoch_date_submitted": 1660089600,
- "flag": null,
- "report_number": 1878,
- "source_domain": "thesized.com",
- "submitters": ["Thomas Giallella (CSET)"],
- "title": "California’s First Robotic Police Officer Ignored a Woman Reporting a Crime, Then 'Sang her a Song'",
- "url": "https://www.thesized.com/california-first-robotic-police-officer-ignored-woman-reporting-crime-sang-song/"
- },
- {
- "__typename": "Report",
- "authors": ["Jimmy McCloskey"],
- "epoch_date_downloaded": 1602979200,
- "epoch_date_modified": 1602979200,
- "epoch_date_submitted": 1602979200,
- "flag": null,
- "report_number": 1390,
- "source_domain": "metro.co.uk",
- "submitters": ["Helen Zhu"],
- "title": "Police robot told woman to go away after she tried to report crime – then sang a song",
- "url": "https://metro.co.uk/2019/10/04/police-robot-told-woman-go-away-tried-report-crime-sang-song-10864648/"
- },
- {
- "__typename": "Report",
- "authors": ["Katie Flaherty"],
- "epoch_date_downloaded": 1602979200,
- "epoch_date_modified": 1602979200,
- "epoch_date_submitted": 1602979200,
- "flag": null,
- "report_number": 1340,
- "source_domain": "nbcnews.com",
- "submitters": ["Helen Zhu"],
- "title": "A RoboCop, a park and a fight: How expectations about robots are clashing with reality",
- "url": "https://www.nbcnews.com/tech/tech-news/robocop-park-fight-how-expectations-about-robots-are-clashing-reality-n1059671"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "international-baccalaurette",
- "name": "International Baccalaurette"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "international-baccalaurette",
- "name": "International Baccalaurette"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "international-baccalaureate-students",
- "name": "International Baccalaureate students"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1341],
- "vector": [
- -0.043149277567863464, 0.0901937186717987, 0.0251743383705616, -0.07697024941444397,
- 0.13861416280269623, -0.04911069571971893, 0.018854157999157906, 0.10937003791332245,
- 0.10853315889835358, -0.07868511974811554, 0.04205641523003578, 0.0498083271086216,
- 0.04711617901921272, -0.10471317172050476, 0.022440971806645393, -0.048465535044670105,
- -0.10211734473705292, -0.062335871160030365, 0.0003446366754360497,
- -0.13716523349285126, -0.08265256136655807, 0.05124413222074509, -0.04933140426874161,
- 0.11697590351104736, -0.04801272228360176, 0.026203718036413193, 0.06463808566331863,
- 0.09531769901514053, 0.00524113979190588, 0.012752044014632702, -0.05752435326576233,
- -0.05809548497200012, 0.08319229632616043, -0.044761087745428085, -0.030384914949536324,
- 0.0929010733962059, 0.004037482663989067, -0.009071238338947296, -0.02184789441525936,
- 0.011234051547944546, 0.05703801289200783, 0.26270702481269836, 0.004894253797829151,
- -0.013982605189085007, 0.01755371317267418, -0.03711303323507309, -0.011236470192670822,
- 0.06951229274272919, -0.0039735534228384495, -0.0025302369613200426,
- 0.015187611803412437, 0.08168410509824753, -0.02491380088031292, 0.023984424769878387,
- -0.12804850935935974, 0.04799535498023033, 0.03013704903423786, 0.011290587484836578,
- 0.07403456419706345, -0.09051033854484558, -0.0027938676066696644, -0.1914498209953308,
- -0.030406050384044647, -0.07147923856973648, 0.10598444193601608, -0.08899109810590744,
- -0.033422842621803284, 0.007336595095694065, 0.029255038127303123, 0.06953303515911102,
- 0.07812553644180298, 0.02366713248193264, -0.0009837447432801127, -0.016666267067193985,
- -0.036880675703287125, 0.0067733218893408775, 0.05626460164785385, 0.1928137242794037,
- -0.06738070398569107, 0.018451644107699394, 0.08077765256166458, -0.08695913106203079,
- 0.33663472533226013, -0.012723126448690891, -0.023679913952946663, -0.03390168026089668,
- 0.0596751905977726, 0.06621682643890381, 0.05583486706018448, 0.0379033125936985,
- -0.013616631738841534, 0.02978908084332943, -0.09407586604356766, 0.04198724776506424,
- 0.049584195017814636, 0.052523691207170486, -0.04066343605518341, 0.08305684477090836,
- -0.021748539060354233, -0.07807251065969467, -0.028845157474279404,
- -0.046593792736530304, 0.11466894298791885, 0.07028442621231079, -0.03381691500544548,
- 0.05019771307706833, 0.06156189367175102, -0.059387244284152985, 0.03622318059206009,
- 0.0019517324399203062, -0.042477693408727646, -0.03150438144803047,
- -0.00028124210075475276, 0.046343062072992325, -0.011259953491389751,
- -0.06988058239221573, 0.0228479765355587, 0.051307562738657, 0.0875566378235817,
- 0.05414851754903793, 0.010289164260029793, 0.027037860825657845, 0.04951159283518791,
- 0.002700217068195343, -0.06698448956012726, -0.014064354822039604,
- -0.050605498254299164, 0.031620219349861145, -0.017890797927975655,
- 0.056919679045677185, -0.04876556992530823, -0.09833599627017975, -0.02914382331073284,
- 0.03924127295613289, -0.025649717077612877, -0.0367458276450634, -0.008802787400782108,
- -0.027552513405680656, 0.05420250818133354, -0.05480277165770531, 0.02862023375928402,
- -0.006687617395073175, 0.004933102987706661, 0.018601786345243454, 0.09030570834875107,
- 0.06920119374990463, -0.042807042598724365, -0.056853435933589935, -0.03896686062216759,
- -0.03652369976043701, 0.0734746903181076, -0.158212348818779, -0.012275941669940948,
- 0.015899302437901497, -0.03207452967762947, 0.582064151763916, 0.12416554987430573,
- 0.13055512309074402, 0.024601254612207413, -0.044870276004076004, 0.19211767613887787,
- -0.015359174460172653, -0.013373244553804398, -0.024169251322746277,
- -0.08379026502370834, 0.024844152852892876, -0.06784027814865112, -0.05710405483841896,
- 0.010640724562108517, 0.010377577506005764, 0.11466535925865173, 0.022618357092142105,
- 0.07378952950239182, 0.0012492124224081635, -0.07678326964378357, -0.04058736562728882,
- 0.030631065368652344, 0.03829944506287575, -0.09432889521121979, 0.022849831730127335,
- 0.06693427264690399, 0.0859304890036583, -0.07281237840652466, -0.00021519121946766973,
- -0.09227751940488815, 0.0019897897727787495, -0.03036867454648018, 0.04484781622886658,
- -0.007605997379869223, -0.014102059416472912, 0.05227571353316307,
- -0.015340023674070835, 0.01792750135064125, -0.022170962765812874, 0.004943223670125008,
- 0.033829011023044586, -0.015664098784327507, -0.06624886393547058,
- -0.0021532506216317415, -0.10983192175626755, 0.03806675225496292,
- -0.0018221547361463308, 0.18505693972110748, -0.14928872883319855, 0.11378441005945206,
- -0.05624784529209137, -0.003258564043790102, 0.018915217369794846, 0.04270775243639946,
- -0.06803955882787704, -0.057746756821870804, 0.09312600642442703, 0.05371122062206268,
- 0.0638502910733223, 0.051228296011686325, -0.018528135493397713, 0.08315024524927139,
- 0.08583898842334747, -0.009527466259896755, -0.027425946667790413, 0.036966320127248764,
- 0.04975767806172371, -0.05194399878382683, -0.011733327060937881, 0.006987019442021847,
- -0.017580419778823853, 0.05371413379907608, 0.03621372953057289, 0.012109195813536644,
- -0.023376258090138435, -0.039020705968141556, 0.06100219115614891, -0.01852438598871231,
- 0.0213558841496706, 0.06771443784236908, -0.10204494744539261, -0.012267923913896084,
- -0.051173873245716095, -0.011021856218576431, 0.0008209574152715504,
- -0.06653334945440292, 0.12380122393369675, 0.10118665546178818, 0.05179109424352646,
- 0.02151009812951088, 0.05044158175587654, 0.0538342222571373, 0.053242381662130356,
- 0.024332517758011818, 0.04601159319281578, -0.002217009197920561, -0.06838805228471756,
- -0.03181474283337593, -0.016382066532969475, 0.024005673825740814,
- -0.017377670854330063, -0.06417768448591232, -0.0526597686111927, -0.03335746377706528,
- -0.10698561370372772, -0.020357949659228325, -0.004602322820574045, 0.07112159579992294,
- 0.0033921110443770885, -0.08040804415941238, -0.09450627118349075, -0.09262910485267639,
- 0.017827361822128296, 0.08792740106582642, 0.012280688621103764, -0.029240351170301437,
- -0.14020128548145294, 0.022569293156266212, -0.030906161293387413, 0.06537384539842606,
- -0.02118758112192154, -0.04073188826441765, 0.04966689646244049, -0.034654803574085236,
- 0.01670914515852928, -0.045854050666093826, -0.05901261046528816, -0.09220600128173828,
- -0.019282713532447815, -0.06182275712490082, -0.020810376852750778,
- 0.025718223303556442, -0.024709444493055344, 0.03485701605677605, 0.053434908390045166,
- 0.056907638907432556, -0.015493095852434635, -0.032011885195970535, 0.05825281888246536,
- -0.059836495667696, 0.0256540197879076, 0.0571603961288929, -0.03880799561738968,
- 0.014582553878426552, 0.0024401689879596233, -0.0699673667550087, -0.035034991800785065,
- -0.034782301634550095, -0.07244876027107239, 0.03590419888496399, 0.011314881034195423,
- -0.03449752926826477, -0.012510432861745358, -0.06114761531352997,
- -0.015497138723731041, -0.06042120233178139, -0.07293671369552612, -0.06129148229956627,
- 0.07096633315086365, 0.044138096272945404, 0.002544480375945568, 0.007112258113920689,
- -0.0665295273065567, 0.07011663168668747, 0.016317132860422134, -0.01466392632573843,
- 0.040543168783187866, 0.020068299025297165, 0.01950725167989731, -0.032692063599824905,
- 0.054658424109220505, -0.023314712569117546, 0.04670712724328041, 0.03502411022782326,
- 0.41300803422927856, -0.17427732050418854, 0.08891437202692032, 0.08031661808490753,
- 0.0477730818092823, 0.03215280547738075, -0.06958959251642227, 0.060280781239271164,
- 0.08305229246616364, 0.10368824005126953, 0.1464919000864029, -0.08787617832422256,
- -0.061510246247053146, -0.08798889815807343, 0.05268201231956482, 0.04482565447688103,
- 0.0031074516009539366, -0.038510214537382126, -0.07050685584545135,
- -0.04543963447213173, -0.01177296880632639, -0.05253820866346359, -0.030147453770041466,
- 0.05177273228764534, -0.03686805069446564, -0.0011109422193840146,
- -0.0031281751580536366, 0.008360409177839756, 0.011043434031307697,
- 0.041880637407302856, -0.07111126184463501, 0.04175158962607384, 0.025281917303800583,
- -0.004815303720533848, -0.11808555573225021, 0.06019079312682152, -0.03580988198518753,
- -0.008220221847295761, 0.07187902182340622, 0.017290601506829262, 0.006762859411537647,
- 0.10242510586977005, 0.00782037153840065, -0.02111547626554966, 0.01868322305381298,
- -0.058341704308986664, 0.03205234929919243, 0.08776459842920303, 0.010733856819570065,
- 0.01493532583117485, 0.15725313127040863, -0.021864542737603188, 0.08165604621171951,
- -0.06502070277929306, 0.07758800685405731, 0.15750330686569214, -0.015386494807898998,
- 0.01965213753283024, -0.015056637115776539, -0.026943879202008247, 0.06167900934815407,
- -0.0321129709482193, -0.0953562930226326, -0.08191792666912079, -0.1315222829580307,
- 0.052780456840991974, 0.009677085094153881, -0.04810062795877457, -0.15435241162776947,
- -0.014306381344795227, -0.07146259397268295, 0.03187752887606621, 0.06806346029043198,
- -0.07288874685764313, 0.0448366142809391, 0.02208024635910988, -0.03482387959957123,
- 0.060121193528175354, -0.08213857561349869, 0.0058805388398468494, -0.0514102503657341,
- 0.01984822377562523, 0.025527657940983772, 0.03352395072579384, -0.07518376410007477,
- 0.10931427776813507, -0.06020427867770195, 0.049793269485235214, 0.00026093548513017595,
- -0.01735607162117958, -0.003817747812718153, 0.013025824911892414,
- 0.0029097713995724916, 0.031318552792072296, -0.02016526274383068, 0.036882467567920685,
- -0.009872987866401672, 0.0167408287525177, -0.10265019536018372, -0.0651840791106224,
- -0.018912047147750854, -0.04614006727933884, 0.003577258437871933, -0.08063627779483795,
- -0.01186368428170681, -0.010219225659966469, -0.04258519411087036,
- -0.0002973946975544095, 0.054743692278862, 0.013172022067010403, -0.1136321946978569,
- 0.01950414851307869, -0.017185771837830544, 0.09363233298063278, 0.0015579565661028028,
- -0.02831307426095009, 0.034423112869262695, 0.14824368059635162, 0.04325992986559868,
- -0.010152982547879219, -0.053249236196279526, -0.012255842797458172,
- 0.06889019906520844, -0.03429867699742317, -0.43526631593704224, 0.012791836634278297,
- 0.025332046672701836, 0.03264080733060837, 0.003184827510267496, -0.055995672941207886,
- 0.003725017188116908, -0.016010716557502747, 0.007766531780362129, 0.06271027773618698,
- -0.040828216820955276, -0.00040704221464693546, -0.010490930639207363,
- -0.0989728569984436, -0.002503383671864867, -0.01747993379831314,
- -0.0011924688005819917, 0.09997604787349701, -0.023335957899689674,
- -0.048553891479969025, -0.1066465973854065, 0.05571150779724121, -0.010872259736061096,
- 0.04222269356250763, -0.013663669116795063, -0.04511110484600067, -0.07025860995054245,
- -0.0653509870171547, 0.05554058402776718, 0.01554960384964943, 0.026786616072058678,
- -0.10601652413606644, 0.023956604301929474, 0.05602837726473808, -0.022939106449484825,
- 0.1122787669301033, 0.048650722950696945, 0.009125634096562862, -0.05723574012517929,
- 0.07493293285369873, 0.051253486424684525, 0.18960197269916534, 0.043068766593933105,
- 0.017958125099539757, 0.012387837283313274, 0.12677806615829468, 0.009965111501514912,
- -0.007489410229027271, -0.03487341105937958, 0.05203217640519142, -0.003601790638640523,
- 0.005570161156356335, 0.06649449467658997, -0.06062706932425499, -0.011406973004341125,
- -0.0229516439139843, 0.060752443969249725, 0.006013036239892244, 0.016592735424637794,
- 0.16815951466560364, -0.018662476912140846, 0.06202363595366478, 0.023666827008128166,
- -0.08284307271242142, -0.008388453163206577, -0.06088118255138397, -0.10909559577703476,
- -0.02842526324093342, 0.016587717458605766, -0.019241109490394592,
- -0.037300415337085724, -0.08154650032520294, -0.025230178609490395,
- -0.021089578047394753, 0.02574837952852249, 0.07175547629594803, -0.038933198899030685,
- 0.026602882891893387, -0.07540477067232132, 0.10502002388238907, 0.08001485466957092,
- 0.07456348836421967, 0.05168348178267479, 0.1096472218632698, 0.02625318616628647,
- 0.012715470977127552, 0.001737201469950378, -0.022336136549711227,
- -0.005851995199918747, 0.16376394033432007, -0.06830234080553055, 0.1386103332042694,
- 0.09618131816387177, -0.026683960109949112, -0.04542705416679382, 0.052370015531778336,
- -0.030166760087013245, -0.018002545461058617, -0.45008474588394165,
- -0.07439500093460083, 0.12334778904914856, 0.02939113974571228, 0.03385864198207855,
- 0.06300920993089676, -0.03064071387052536, -0.07026848942041397, -0.024219518527388573,
- -0.05966152250766754, 0.12022288888692856, 0.017531005665659904, 0.08546829223632812,
- -0.04802551493048668, 0.03272886574268341, 0.06618682295084, -0.13843218982219696,
- -0.022822847589850426, 0.05486929044127464, -0.2154322862625122, -0.008619830012321472,
- -0.03368862718343735, 0.12760141491889954, 0.049234889447689056, 0.05553640052676201,
- 0.0786023959517479, 0.015072929672896862, 0.07157674431800842, 0.054846085608005524,
- -0.00035400953493081033, 0.055915337055921555, 0.0015175036387518048,
- -0.02440713532269001, 0.06153518706560135, 0.05136750638484955, 0.07173459976911545,
- -0.048212748020887375, 11.776712417602539, 0.036019474267959595, 0.046203214675188065,
- -0.07490342855453491, 0.004799695685505867, -0.03469676896929741, 0.001427035196684301,
- -0.14133183658123016, 0.02166992798447609, 0.156713604927063, 0.003785401349887252,
- -0.06467359513044357, -0.07513189315795898, -0.10701831430196762, 0.033511705696582794,
- -0.017307676374912262, -0.09670493006706238, -0.024413039907813072, 0.05174609646201134,
- -0.014324553310871124, -0.05492020398378372, -0.0018912316299974918,
- 0.034565962851047516, -0.014360958710312843, -0.027521464973688126,
- 0.034312743693590164, 0.004661960527300835, 0.03688949719071388, -0.05041595920920372,
- -0.021610386669635773, -0.04017629474401474, -0.006441119592636824,
- 0.043562863022089005, -0.023775344714522362, 0.081955686211586, 0.08336680382490158,
- 0.05577621981501579, 0.06394089758396149, 0.058626603335142136, 0.15869854390621185,
- 0.026890011504292488, 0.02945765294134617, 0.07728595286607742, 0.038986846804618835,
- 0.05739200860261917, 0.04826612398028374, 0.031282372772693634, 0.08995401114225388,
- 0.016909420490264893, 0.035952161997556686, 0.08752375096082687, 0.05010739713907242,
- 0.13046640157699585, 0.056196823716163635, -0.00907945167273283, 0.045222848653793335,
- 0.008170773275196552, -0.0945250615477562, 0.03672175854444504, 0.013468362390995026,
- -0.08246524631977081, 0.08403408527374268, -0.008703094907104969, 0.10214854776859283,
- -0.014442781917750835, 0.08889191597700119, 0.08446463197469711, 0.058898333460092545,
- -0.10636719316244125, -0.0458746999502182, 0.0035147257149219513, -0.07485585659742355,
- -0.048832911998033524, 0.0704614520072937, 0.05371773988008499, -0.06340498477220535,
- 0.058689527213573456, -0.008304423652589321, 0.021160641685128212, -0.03474803268909454,
- 0.003561687655746937, 0.056311532855033875, -0.04797160252928734, 0.0030253534205257893,
- 0.13349705934524536, 0.057434793561697006, 0.09021207690238953, 0.026769105345010757,
- 0.020333142951130867, -0.03602435067296028, -0.061831481754779816, 0.0477151945233345,
- 0.01272974256426096, -0.03757164627313614, 0.024472055956721306, -0.057509731501340866,
- 0.003488667542114854, -0.12388884276151657, 0.0958842933177948, 0.10298089683055878,
- -0.1147126704454422, -0.01820957660675049, -0.0863819345831871, 0.05970953404903412,
- 0.03223247453570366, -0.00848289206624031, -0.0523279644548893, -0.016332948580384254,
- -0.02284116856753826, 0.0435553640127182, -0.030448835343122482, 0.04430646449327469,
- 0.08253757655620575, -0.11440590023994446, 0.04732360690832138, 0.05474686250090599,
- -0.022603005170822144, -0.01042927522212267, 0.05702875927090645, 0.02285582944750786,
- -0.03010682761669159, -0.01129315048456192, -0.02077925018966198, -0.056964147835969925,
- -0.01731049455702305, -0.07500887662172318, 0.02053951285779476, 0.053468234837055206,
- -0.07504592835903168, 0.0036600790917873383, 0.020129522308707237, 0.044684331864118576,
- 0.0537741556763649, 0.03689444810152054, 0.04847463220357895, -0.019620072096586227,
- -0.09470264613628387, 0.039090000092983246, 0.014242325909435749, 0.06637469679117203,
- -0.022393906489014626, -0.025047875940799713, -0.04187185317277908,
- -0.09370264410972595, -0.026830265298485756, 0.035674627870321274, 0.01001452561467886,
- 0.03826522082090378, 0.06182795390486717, -0.061974234879016876, 0.006016722414642572,
- 0.07631693035364151, 0.044349826872348785, -0.01892605796456337, 0.05341440811753273,
- -0.0038080180529505014, -0.03815243020653725, 0.1434558928012848, -0.03842664137482643,
- 0.013843975961208344, 0.058681439608335495, 0.04208711162209511, 0.025623170658946037,
- 0.08986502885818481, -0.010328740812838078, 0.03760264068841934, 0.01238813903182745,
- 0.059116240590810776, -0.019717786461114883, 0.0012079629814252257,
- 0.041878920048475266, 0.010056767612695694, -0.08581090718507767, -0.06125873327255249,
- 0.0017928468296304345, 0.1359785497188568, 0.04037315770983696, -0.045661453157663345,
- -0.020216604694724083, -0.04581942781805992
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 78,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 43,
- "similarity": 0.9975599646568298
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 9,
- "similarity": 0.9975247979164124
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 10,
- "similarity": 0.9974103569984436
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Tom Simonite"],
- "epoch_date_downloaded": 1606089600,
- "epoch_date_modified": 1606089600,
- "epoch_date_submitted": 1606089600,
- "flag": null,
- "report_number": 1341,
- "source_domain": "wired.com",
- "submitters": ["Nick Stockton"],
- "title": "Meet the Secret Algorithm That's Keeping Students Out of College",
- "url": "https://www.wired.com/story/algorithm-set-students-grades-altered-futures/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "chronic-kidney-disease-epidemiology-collaboration",
- "name": "Chronic Kidney Disease Epidemiology Collaboration"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "chronic-kidney-disease-epidemiology-collaboration",
- "name": "Chronic Kidney Disease Epidemiology Collaboration"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "black-patients",
- "name": "Black patients"
- },
- {
- "__typename": "Entity",
- "entity_id": "african-american-patients",
- "name": "African-American patients"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [2039, 1736, 1379],
- "vector": [
- -0.05016166344285011, 0.0764317661523819, 0.0024885227903723717, -0.054630178958177567,
- 0.07004344463348389, 0.017342837527394295, 0.009843398816883564, 0.09709972143173218,
- 0.04899926856160164, -0.10083300620317459, -0.02256498672068119, 0.046739235520362854,
- 0.011080418713390827, -0.07044312357902527, 0.03414927050471306, -0.1026574894785881,
- -0.1226545199751854, -0.03321466222405434, -0.024269120767712593, -0.08009326457977295,
- -0.06422681361436844, 0.038158416748046875, -0.033227913081645966, 0.09052128344774246,
- -0.042342204600572586, 0.05103340744972229, 0.08764445036649704, 0.09158492833375931,
- -0.010368178598582745, 0.02799072675406933, -0.05263068154454231, -0.0720890536904335,
- 0.11874108761548996, -0.004899617284536362, -0.0024871390778571367, 0.10421139001846313,
- 0.01091697160154581, -0.021666496992111206, -0.012138252146542072,
- -0.0014871526509523392, 0.019630244001746178, 0.28678664565086365,
- -0.008402411825954914, 0.004456453491002321, 0.026341870427131653, -0.05757404491305351,
- -0.008838541805744171, 0.05405225232243538, -0.0027399396058171988, 0.01579544134438038,
- 0.0025989916175603867, 0.0354885496199131, 0.0010363428154960275, -0.004305326845496893,
- -0.13050128519535065, 0.07161489874124527, 0.017105398699641228, 0.020864732563495636,
- 0.07634945958852768, -0.07526040077209473, -0.0161594208329916, -0.18606798350811005,
- -0.028445715084671974, -0.10236697643995285, 0.10471738129854202, -0.06003851071000099,
- -0.028532862663269043, 0.01877645216882229, -0.007639136165380478, 0.0698968693614006,
- 0.07313847541809082, -0.012544333003461361, -0.034967225044965744, -0.02419239841401577,
- -0.01975628174841404, -0.020047275349497795, -0.013311970978975296, 0.12828128039836884,
- -0.09153630584478378, 0.016272088512778282, 0.04035567119717598, -0.09576509147882462,
- 0.33837053179740906, -0.009947389364242554, -0.0023121871054172516,
- -0.03283165767788887, 0.06191134825348854, -0.0009812606731429696, 0.05771474912762642,
- 0.02011793851852417, -0.026624808087944984, 0.07137734442949295, -0.05921110510826111,
- -0.007414164487272501, 0.0726734846830368, 0.02598561905324459, 0.0045712958090007305,
- -0.07591885328292847, -0.00780519237741828, -0.050410300493240356, 0.03459988534450531,
- -0.03911939263343811, 0.09889648109674454, 0.08103127032518387, -0.04098112881183624,
- 0.04206593707203865, 0.08387839794158936, -0.036669641733169556, 0.016961151733994484,
- -0.057093095034360886, -0.010392654687166214, -0.029261985793709755,
- 0.03467215970158577, 0.011480547487735748, -0.007767284754663706, -0.06262562423944473,
- 0.016879379749298096, 0.04510769620537758, 0.08021705597639084, 0.01686183549463749,
- 0.055903274565935135, 0.06185918673872948, 0.0847555622458458, 0.002375411568209529,
- -0.08645614981651306, 0.02126387506723404, -0.029185252264142036, 0.021868497133255005,
- -0.013668875209987164, 0.050823017954826355, -0.04704267159104347, -0.14616189897060394,
- -0.041134875267744064, 0.07914891839027405, -0.06319699436426163, -0.047070641070604324,
- -0.02535385452210903, -0.004215608816593885, 0.0380876325070858, -0.02527676336467266,
- -0.0005726509843952954, 0.05379883572459221, 0.017290925607085228, 0.05338776111602783,
- 0.10292834043502808, 0.027753541246056557, -0.0660891905426979, -0.05581682547926903,
- 0.0069746896624565125, -0.011683785356581211, 0.12552130222320557, -0.13818128407001495,
- -0.059339191764593124, -0.0029924437403678894, 0.0000868115239427425,
- 0.6489794254302979, 0.13690292835235596, 0.13922615349292755, -0.03283803164958954,
- -0.03278838470578194, 0.15221595764160156, 0.01335748378187418, 0.04389927163720131,
- -0.06194518879055977, -0.030170628800988197, 0.048881541937589645, -0.08462182432413101,
- -0.07202443480491638, 0.027824630960822105, 0.05471566319465637, 0.10057053714990616,
- -0.0037456436548382044, 0.09719085693359375, 0.0004310073854867369,
- -0.09168244153261185, -0.05513444542884827, 0.06280148774385452, 0.03066733479499817,
- -0.14205799996852875, -0.0010382657637819648, 0.0826919749379158, 0.057094018906354904,
- -0.08944513648748398, -0.003039073199033737, -0.07449451833963394, 0.07400902360677719,
- -0.022444209083914757, 0.04374272748827934, -0.02806665003299713, 0.005807990673929453,
- -0.0062758042477071285, 0.029255153611302376, 0.053233664482831955,
- -0.08610641956329346, -0.03791237622499466, 0.06516534835100174, -0.013470570556819439,
- -0.0194977056235075, 0.06072096899151802, -0.08920591324567795, 0.025151289999485016,
- 0.011511079967021942, 0.22961211204528809, -0.13869436085224152, 0.06724166125059128,
- -0.03128821775317192, -0.002916454104706645, 0.0651828721165657, 0.01069266814738512,
- -0.034658174961805344, -0.04041478410363197, 0.10202500969171524, 0.04597915709018707,
- 0.09879094362258911, 0.03737591579556465, -0.024272851645946503, 0.026234446093440056,
- 0.035326629877090454, -0.025836609303951263, -0.05892613157629967, 0.07984835654497147,
- 0.05681172013282776, -0.05919194594025612, 0.022947097197175026, 0.045008059591054916,
- 0.026016881689429283, 0.03374044969677925, -0.013675552792847157, 0.009732331149280071,
- 0.004976182710379362, -0.053039997816085815, 0.05698681250214577, 0.005729168187826872,
- -0.01720910519361496, 0.08891173452138901, -0.07840176671743393, -0.05504964664578438,
- -0.040321096777915955, -0.032852817326784134, 0.02747439406812191, -0.046041090041399,
- 0.07288738340139389, 0.07543819397687912, 0.08811607211828232, -0.006311198230832815,
- 0.06812938302755356, 0.04929159954190254, 0.03019183874130249, 0.06575215607881546,
- 0.09337612241506577, -0.020234959200024605, -0.033517301082611084,
- -0.0024262003134936094, -0.034449443221092224, 0.04556211829185486,
- -0.0012335845967754722, -0.03392007201910019, -0.039632946252822876,
- -0.055189937353134155, -0.006733463611453772, -0.05931999906897545,
- -0.06151743605732918, -0.0052842795848846436, 0.024583987891674042,
- -0.02392002008855343, -0.08584275096654892, -0.06946298480033875, 0.011018559336662292,
- 0.08013376593589783, -0.03789893537759781, -0.003383779898285866, -0.10594957321882248,
- 0.023589953780174255, 0.0008641853928565979, 0.07964035868644714, 0.0070649669505655766,
- 0.025500120595097542, 0.04348531365394592, -0.06528141349554062, 0.03754383325576782,
- -0.030689885839819908, -0.03731435537338257, -0.06097525358200073, -0.03726181760430336,
- -0.07559321075677872, -0.008836966939270496, -0.006619347725063562,
- -0.05664803460240364, 0.07167073339223862, 0.048592567443847656, 0.018367256969213486,
- -0.004064311273396015, -0.03329860791563988, 0.045428622514009476, -0.03604566678404808,
- -0.009752973914146423, 0.08884912729263306, -0.03300253674387932, 0.04179936647415161,
- -0.001808950095437467, -0.04318700730800629, -0.0523991696536541, -0.04168716445565224,
- -0.0434664748609066, 0.0037404124159365892, 0.01173627469688654, -0.0353655144572258,
- -0.02960650436580181, 0.027820110321044922, 0.03333444893360138, -0.06625404208898544,
- -0.07194909453392029, -0.09063263982534409, 0.11003007739782333, 0.01346676331013441,
- 0.025521105155348778, -0.0031503206118941307, -0.04649302363395691, 0.03960772231221199,
- 0.011128053069114685, 0.01961553283035755, 0.021117975935339928, 0.051675498485565186,
- 0.0007102086092345417, 0.0015760011738166213, 0.0693729892373085, -0.05496927723288536,
- 0.0026541762053966522, 0.080241359770298, 0.44867968559265137, -0.11630674451589584,
- 0.048671919852495193, 0.08425269275903702, 0.06940485537052155, 0.024959975853562355,
- -0.029489338397979736, 0.10109879821538925, 0.0892815962433815, 0.09487953037023544,
- 0.13610412180423737, -0.061449166387319565, -0.037000447511672974, -0.08805990219116211,
- 0.08529143780469894, 0.027745671570301056, 0.023111937567591667, -0.005961146205663681,
- -0.09812898188829422, -0.011416221968829632, 0.047634899616241455,
- -0.036930497735738754, 0.022632068023085594, 0.008895330131053925, -0.08777838945388794,
- 0.02211710810661316, -0.02779470384120941, -0.028206124901771545, -0.0345444492995739,
- 0.05549779161810875, -0.031086260452866554, 0.06892528384923935, 0.015177114866673946,
- 0.03079604171216488, -0.09817218035459518, 0.05237177014350891, -0.09532731026411057,
- -0.0748675987124443, 0.08872071653604507, -0.008860728703439236, 0.0307939276099205,
- 0.07802102714776993, -0.0155073506757617, 0.046465978026390076, 0.0076342071406543255,
- -0.05612867698073387, 0.016500450670719147, 0.05249270796775818, 0.023866191506385803,
- 0.034307654947042465, 0.16771943867206573, -0.025576146319508553, -0.022202154621481895,
- -0.06711587309837341, 0.07033234089612961, 0.1366506665945053, 0.020701102912425995,
- 0.0007929277489893138, 0.03297990933060646, -0.022110706195235252, 0.025378979742527008,
- -0.032023604959249496, -0.08422239869832993, 0.007571354042738676, -0.04611242190003395,
- 0.07506664097309113, 0.02482416294515133, -0.01745891384780407, -0.10473942756652832,
- -0.02544708363711834, -0.05942767858505249, 0.0321061946451664, 0.1085062026977539,
- -0.059356167912483215, 0.012877465225756168, -0.002569517819210887,
- -0.006541168317198753, 0.02659221924841404, -0.04622305929660797, 0.018774675205349922,
- -0.01884979009628296, 0.024848194792866707, -0.0079412292689085, 0.02792852558195591,
- -0.029391983523964882, 0.08350607752799988, -0.05728527903556824, 0.016998490318655968,
- 0.0015556704020127654, -0.04565076157450676, 0.022286387160420418, 0.004088082816451788,
- 0.024581128731369972, 0.012711680494248867, -0.030908333137631416,
- -0.020619655027985573, 0.0000019601236544986023, 0.008569597266614437,
- -0.09414602071046829, -0.0768078938126564, -0.011804421432316303, -0.03865960240364075,
- 0.06091177463531494, -0.08912470191717148, -0.015600296668708324, -0.051843006163835526,
- -0.06364983320236206, -0.022682785987854004, 0.02161749266088009, 0.05214990675449371,
- -0.13246196508407593, 0.018217459321022034, -0.02053534798324108, 0.09073252230882645,
- 0.007955010049045086, -0.024902917444705963, 0.03625984862446785, 0.15413348376750946,
- 0.04132338985800743, -0.03191177174448967, -0.02375894784927368, -0.01135188713669777,
- 0.044235751032829285, -0.08706017583608627, -0.3899683952331543, 0.06866461783647537,
- 0.008203040808439255, 0.04600102826952934, 0.012560751289129257, -0.06963273137807846,
- 0.04258235916495323, 0.015997575595974922, -0.04506462812423706, 0.05326438322663307,
- -0.03865620493888855, 0.03128553926944733, 0.004636719357222319, -0.07697200030088425,
- -0.02651347778737545, -0.02535766363143921, -0.02835194766521454, 0.02702578343451023,
- -0.03007265366613865, -0.10266833752393723, -0.07528216391801834, 0.04669833183288574,
- -0.03548802062869072, 0.033683985471725464, 0.01760294660925865, 0.014726266264915466,
- -0.045136671513319016, -0.028950393199920654, 0.0477130264043808, 0.0359375923871994,
- 0.04237368330359459, -0.06949972361326218, 0.023899048566818237, 0.03367999941110611,
- 0.010395982302725315, 0.08628053218126297, 0.003305593505501747, -0.0012910919031128287,
- -0.06215726211667061, 0.05653570964932442, 0.051835913211107254, 0.18821291625499725,
- 0.024253109470009804, -0.013004176318645477, 0.02080061100423336, 0.10682541131973267,
- 0.04566356539726257, 0.04512099549174309, 0.013499693013727665, -0.003737229621037841,
- 0.033719610422849655, 0.010700692422688007, 0.07202097773551941, -0.04282714053988457,
- 0.009946032427251339, -0.05735360458493233, 0.022308483719825745, 0.004735651426017284,
- -0.038805846124887466, 0.16352856159210205, -0.004861651454120874, 0.023396892473101616,
- 0.016701320186257362, -0.03765292838215828, -0.0029814268928021193,
- -0.10951749235391617, -0.0871964618563652, -0.005091140978038311,
- -0.0066281892359256744, -0.022601418197155, -0.004832568112760782, -0.092997707426548,
- -0.0063176280818879604, -0.009926903992891312, -0.00225161574780941,
- 0.11400794982910156, -0.08027806133031845, 0.02315019816160202, -0.008122073486447334,
- 0.11866853386163712, 0.030607856810092926, -0.011485524475574493, 0.09783637523651123,
- 0.09431153535842896, -0.008404355496168137, -0.01723671890795231, -0.021152645349502563,
- -0.03796946629881859, -0.03806756064295769, 0.11998903751373291, -0.06818901002407074,
- 0.09880615025758743, 0.03890710696578026, -0.031983762979507446, -0.06630709022283554,
- 0.02212904952466488, -0.03737330064177513, 0.009187477640807629, -0.36738690733909607,
- -0.041137225925922394, 0.0881308913230896, 0.01726396009325981, 0.04407433047890663,
- 0.044449854642152786, 0.004399585537612438, -0.06871829926967621, 0.030557632446289062,
- -0.11871980875730515, 0.15299153327941895, 0.025269733741879463, 0.07804543524980545,
- -0.07554309815168381, 0.021211853250861168, 0.10371840000152588, -0.06287345290184021,
- 0.033348675817251205, 0.05831382796168327, -0.19383271038532257, -0.00757734477519989,
- -0.04718044400215149, 0.11094246059656143, 0.03226907178759575, 0.05462181195616722,
- 0.0756964460015297, -0.05469499155879021, 0.010836766101419926, 0.07839979976415634,
- -0.026006491854786873, 0.05732498690485954, -0.0389004610478878, -0.03989999741315842,
- 0.08425130695104599, 0.044044386595487595, 0.07224652916193008, -0.011297710239887238,
- 11.854630470275879, 0.04443962872028351, 0.04203483834862709, -0.05042276158928871,
- -0.0380566380918026, -0.040321897715330124, -0.0023284561466425657,
- -0.14014512300491333, 0.06600795686244965, 0.15120796859264374, -0.01676308736205101,
- -0.07181758433580399, -0.008546905592083931, -0.07245636731386185, 0.02801353670656681,
- -0.02956552244722843, -0.07785394042730331, -0.027151117101311684, 0.04920460283756256,
- -0.029137132689356804, -0.017293604090809822, -0.028950219973921776,
- 0.05156748369336128, -0.00801974069327116, -0.04133954644203186, 0.017559995874762535,
- 0.03068482130765915, -0.010451468639075756, 0.016909101977944374,
- -0.0023839804343879223, -0.02737642079591751, -0.0026549994945526123,
- 0.03187396004796028, 0.012168191373348236, 0.03902404382824898, 0.028380924835801125,
- 0.10156339406967163, 0.05657398700714111, 0.016997074708342552, 0.078122578561306,
- 0.008048671297729015, 0.025038303807377815, 0.019262263551354408, 0.02610723115503788,
- 0.07044599205255508, 0.09871355444192886, 0.04057683050632477, 0.12181427329778671,
- 0.02229628898203373, 0.06035618111491203, 0.09343961626291275, -0.0019144252873957157,
- 0.1022893413901329, -0.05715686082839966, -0.002244633389636874, 0.04708220437169075,
- 0.04167742654681206, -0.06291840225458145, 0.027771571651101112, 0.03226439282298088,
- -0.03158770874142647, 0.12022405117750168, 0.012915097177028656, 0.06459162384271622,
- 0.026040799915790558, 0.07292220741510391, 0.07923796027898788, 0.0772075355052948,
- -0.14687980711460114, -0.036042481660842896, 0.025295550003647804, -0.11066097021102905,
- -0.09338948130607605, 0.11009382456541061, 0.059258248656988144, -0.043107300996780396,
- 0.04026469215750694, -0.006174052599817514, 0.06588120013475418, -0.015505939722061157,
- 0.01669338159263134, 0.08730298280715942, -0.00038418956683017313, -0.02448207139968872,
- 0.07416414469480515, 0.04427185654640198, 0.0654754564166069, 0.10969176143407822,
- -0.05244346335530281, -0.044260550290346146, -0.05624514818191528, 0.02891387604176998,
- -0.0078048245050013065, -0.03406430780887604, -0.006536455359309912,
- -0.05194533243775368, -0.01583860255777836, -0.1710144281387329, 0.08992183208465576,
- 0.10773777961730957, -0.11789753288030624, -0.04786015674471855, -0.06061996519565582,
- 0.05609781667590141, 0.011161680333316326, 0.0568883903324604, -0.01934202015399933,
- 0.00030207345844246447, -0.0019411916146054864, 0.018888555467128754,
- -0.011332732625305653, 0.007871582172811031, 0.062212128192186356, -0.08065702766180038,
- -0.006649964954704046, 0.0359354242682457, -0.02065972238779068, -0.026007885113358498,
- 0.04972182586789131, 0.02447701431810856, -0.08109035342931747, -0.055736083537340164,
- -0.04399996995925903, -0.02470935322344303, -0.04387494921684265, -0.06205419823527336,
- 0.018328355625271797, 0.031179623678326607, -0.10306483507156372, -0.02454192377626896,
- 0.03956164792180061, 0.05795791745185852, 0.10851659625768661, -0.005737543571740389,
- 0.08129521459341049, -0.03911703824996948, -0.021785909309983253, 0.045909374952316284,
- 0.007677031680941582, 0.0689878836274147, -0.0425618477165699, -0.007072994485497475,
- -0.09796035289764404, -0.09968028217554092, -0.03889056667685509, 0.08067025989294052,
- 0.051849424839019775, 0.0415659099817276, 0.0025913554709404707, -0.06663638353347778,
- -0.004148079548031092, 0.08477240055799484, -0.013749145902693272,
- -0.009026091545820236, 0.03349177911877632, -0.030435338616371155,
- -0.032128896564245224, 0.082002192735672, -0.032585419714450836, -0.009043293073773384,
- 0.031142273917794228, -0.10920599848031998, 0.04335838556289673, 0.09218081086874008,
- 0.017695441842079163, 0.030948594212532043, 0.05506809055805206, 0.0188389141112566,
- 0.04470827057957649, -0.0361422635614872, 0.06522815674543381, -0.06441293656826019,
- -0.07045555859804153, -0.04883718863129616, -0.004481684882193804, 0.10464372485876083,
- -0.007579900790005922, -0.08147675544023514, -0.04711681231856346, -0.06644409149885178
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 79,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 124,
- "similarity": 0.9977025389671326
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 154,
- "similarity": 0.9972782135009766
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 81,
- "similarity": 0.9972319602966309
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": [
- "Salman Ahmed",
- " Cameron T. Nutt",
- " Nwamaka D. Eneanya",
- " Peter P. Reese",
- " Karthik Sivashanker",
- " Michelle Morse",
- " Thomas Sequist",
- " Mallika L. Mendu"
- ],
- "epoch_date_downloaded": 1663027200,
- "epoch_date_modified": 1663113600,
- "epoch_date_submitted": 1663027200,
- "flag": null,
- "report_number": 2039,
- "source_domain": "link.springer.com",
- "submitters": ["Devon Colmer (CSET)"],
- "title": "Examining the Potential Impact of Race Multiplier Utilization in Estimated Glomerular Filtration Rate Calculation on African-American Care Outcomes",
- "url": "https://link.springer.com/article/10.1007/s11606-020-06280-5"
- },
- {
- "__typename": "Report",
- "authors": ["Theresa Gaffney"],
- "epoch_date_downloaded": 1653868800,
- "epoch_date_modified": 1654732800,
- "epoch_date_submitted": 1653868800,
- "flag": null,
- "report_number": 1736,
- "source_domain": "statnews.com",
- "submitters": ["Ingrid Dickinson (CSET)"],
- "title": "A yearslong push to remove racist bias from kidney testing gains new ground",
- "url": "https://www.statnews.com/2020/07/17/egfr-race-kidney-test/"
- },
- {
- "__typename": "Report",
- "authors": ["Tom Simonite"],
- "epoch_date_downloaded": 1603929600,
- "epoch_date_modified": 1607644800,
- "epoch_date_submitted": 1607644800,
- "flag": null,
- "report_number": 1379,
- "source_domain": "wired.com",
- "submitters": ["Patrick Hall (BNH.ai)", "CSET annotators"],
- "title": "How an Algorithm Blocked Kidney Transplants to Black Patients",
- "url": "https://www.wired.com/story/how-algorithm-blocked-kidney-transplants-black-patients/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "inverness-caledonian-thistle-football-club",
- "name": "Inverness Caledonian Thistle Football Club"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "unknown",
- "name": "Unknown"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "livestream-viewers",
- "name": "livestream viewers"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1559, 1380],
- "vector": [
- -0.05178362876176834, 0.07182157039642334, 0.029410909861326218, -0.146596759557724,
- 0.027225250378251076, -0.008572075515985489, -0.002176690148189664, 0.08157820999622345,
- 0.09846445918083191, -0.13243268430233002, 0.02569933980703354, 0.022662753239274025,
- 0.023951951414346695, -0.054716117680072784, 0.06557262688875198, -0.1072346568107605,
- -0.13393232226371765, -0.01744803786277771, -0.06100856512784958, -0.0845119059085846,
- -0.06752704083919525, 0.059299178421497345, 0.05756872892379761, 0.09058503806591034,
- -0.07705264538526535, 0.015176830813288689, 0.06449337303638458, 0.10688324272632599,
- -0.053226038813591, -0.007897205650806427, -0.025906313210725784, -0.07917751371860504,
- 0.12154385447502136, 0.02091597020626068, 0.036542486399412155, 0.08512789011001587,
- 0.0035125399008393288, -0.05048917233943939, -0.042619738727808, -0.010009534657001495,
- 0.01706092432141304, 0.17884749174118042, -0.00987282581627369, -0.01929774135351181,
- 0.044251516461372375, -0.029241258278489113, 0.0396883599460125, 0.05261781066656113,
- -0.014626482501626015, 0.03514384478330612, -0.012130392715334892, 0.004565014503896236,
- -0.04117020592093468, 0.03811599686741829, -0.10181417316198349, 0.07215206325054169,
- 0.03790679946541786, 0.023854564875364304, -0.03178209811449051, -0.07078684866428375,
- -0.015421438962221146, -0.23307272791862488, -0.0963326022028923, -0.06867574900388718,
- 0.08498066663742065, -0.07381229847669601, -0.014783846214413643, 0.06350069493055344,
- 0.021538348868489265, 0.09694267809391022, 0.06662575900554657, -0.04011399298906326,
- -0.0009255558252334595, 0.002638375386595726, 0.020047014579176903,
- 0.004961526952683926, -0.0157045666128397, 0.18966352939605713, -0.09930291771888733,
- -0.01241404376924038, 0.11699730157852173, -0.09091535210609436, 0.3611519932746887,
- 0.021720189601182938, -0.022583303973078728, -0.049254026263952255, 0.08707008510828018,
- 0.029500620439648628, 0.02266685664653778, 0.026866253465414047, 0.00816725380718708,
- 0.024596113711595535, -0.04344986379146576, 0.030378907918930054, 0.054405100643634796,
- 0.014336591586470604, -0.03260192647576332, -0.0007644717115908861,
- -0.006698113866150379, -0.040785275399684906, -0.03440926596522331,
- -0.052058033645153046, 0.0813276618719101, 0.08990192413330078, -0.04530871659517288,
- -0.059750035405159, 0.10370980203151703, -0.04842893034219742, 0.03659907728433609,
- -0.07615777850151062, 0.04502177983522415, 0.045240771025419235, 0.05514635145664215,
- -0.014361253939568996, 0.037039101123809814, -0.056679047644138336,
- -0.004671724047511816, 0.02039528079330921, 0.083181232213974, 0.07564102113246918,
- 0.04215710237622261, 0.06657376140356064, 0.07847046852111816, -0.031132392585277557,
- -0.03656585514545441, -0.07084979116916656, -0.06590402126312256, -0.013692561537027359,
- -0.019444456323981285, 0.027242232114076614, -0.04003095254302025, -0.20421350002288818,
- 0.055298950523138046, 0.07623372226953506, 0.023469429463148117, -0.007525907829403877,
- 0.004578066058456898, -0.05614981800317764, 0.0481235645711422, -0.003393052611500025,
- -0.0359225869178772, 0.08831380307674408, 0.027528949081897736, 0.06955629587173462,
- 0.07593986392021179, 0.031963616609573364, -0.02182140201330185, -0.05022401362657547,
- -0.007547842338681221, -0.06859254837036133, 0.08646726608276367, -0.1509825885295868,
- -0.05367526412010193, -0.02641109935939312, 0.05723866820335388, 0.6486340761184692,
- 0.11449533700942993, 0.20708835124969482, 0.0024334494955837727, 0.00972218532115221,
- 0.15962989628314972, -0.010563544929027557, 0.05297579616308212, -0.06238161027431488,
- -0.10136942565441132, 0.050830207765102386, -0.054022081196308136, -0.0722566694021225,
- 0.048253133893013, 0.03389374539256096, 0.046787895262241364, 0.03497926890850067,
- 0.06838570535182953, 0.010543130338191986, -0.10966438800096512, -0.03463752195239067,
- 0.0604703463613987, 0.01957724429666996, -0.11281310021877289, -0.029691053554415703,
- 0.03450384736061096, 0.10345008969306946, -0.0760614275932312, 0.0036742230877280235,
- -0.07217805087566376, 0.04992464929819107, 0.011461376212537289, 0.07659327983856201,
- -0.05104472488164902, 0.03905494138598442, 0.0738687664270401, 0.0015147258527576923,
- 0.01193829532712698, -0.0391337051987648, 0.01928979903459549, 0.15175434947013855,
- -0.0032818582840263844, -0.06836745142936707, 0.03951917588710785, -0.10668201744556427,
- 0.01770021766424179, 0.02961764857172966, 0.1579788327217102, -0.16032183170318604,
- 0.05238688364624977, 0.018238499760627747, -0.017396464943885803, 0.07758042216300964,
- -0.02453104965388775, -0.033795978873968124, -0.047511011362075806, 0.09506522119045258,
- 0.022429585456848145, 0.06339935958385468, 0.024600345641374588, -0.012420659884810448,
- 0.06929351389408112, 0.08689747750759125, 0.022290438413619995, -0.022021794691681862,
- 0.06039652228355408, 0.056800223886966705, -0.053834833204746246, -0.017288967967033386,
- 0.05374583601951599, -0.004186549223959446, 0.03531184792518616, 0.0074948337860405445,
- 0.047718171030282974, -0.00861289445310831, -0.03676635026931763, 0.04532235115766525,
- 0.04983217269182205, 0.0177536029368639, 0.07646824419498444, -0.04804025590419769,
- -0.05580852925777435, -0.04853174090385437, -0.019580114632844925, 0.018146157264709473,
- -0.07038863748311996, 0.07628098875284195, 0.09048791229724884, 0.06564172357320786,
- 0.017822381108999252, 0.02827375754714012, 0.0548606812953949, 0.052591681480407715,
- 0.04502740502357483, 0.038289427757263184, -0.053651198744773865, -0.06442421674728394,
- -0.03955601155757904, -0.01776728592813015, 0.012425364926457405, 0.019588658586144447,
- -0.1089550256729126, -0.038896724581718445, -0.006056012585759163, -0.03805390000343323,
- -0.09506099671125412, 0.018745580688118935, 0.020582370460033417, 0.012620409950613976,
- -0.007732512895017862, -0.05946240574121475, -0.11912547796964645,
- -0.010375588200986385, 0.08288396894931793, -0.04766693711280823,
- -0.00008178036659955978, -0.10900713503360748, 0.02955024689435959,
- -0.062223054468631744, 0.03817890211939812, -0.020510250702500343, 0.032702162861824036,
- 0.004162922967225313, -0.04760347679257393, 0.054628461599349976, 0.01616774871945381,
- -0.017574310302734375, -0.0371745303273201, -0.07259611785411835, -0.04797935485839844,
- -0.0014916397631168365, 0.024825405329465866, -0.04071572422981262, 0.03920482099056244,
- 0.04859788715839386, 0.05028321593999863, -0.004040940664708614, -0.006157843396067619,
- 0.029635917395353317, -0.018517564982175827, -0.0248248390853405, 0.06935983896255493,
- -0.022138573229312897, 0.03560806065797806, -0.05087684839963913, -0.09113986790180206,
- -0.014505527913570404, 0.019331645220518112, -0.03192093223333359, 0.04516930133104324,
- -0.05679096281528473, 0.00811260100454092, -0.003955688327550888, -0.042414501309394836,
- 0.04998113587498665, -0.027493789792060852, -0.08503727614879608, -0.1020236536860466,
- 0.10815446078777313, 0.005866553168743849, 0.02430928312242031, 0.0043839626014232635,
- -0.03707242012023926, -0.010819156654179096, 0.004018961917608976, 0.0358530692756176,
- 0.06034024432301521, 0.0848526880145073, -0.003705432638525963, 0.02367875538766384,
- 0.07564226537942886, -0.011051122099161148, 0.0022063730284571648, 0.06877264380455017,
- 0.4283878803253174, -0.2973756492137909, 0.061348024755716324, 0.08438830077648163,
- -0.025343427434563637, 0.05805046111345291, -0.025922171771526337, 0.0640399158000946,
- 0.06775160133838654, 0.11486394703388214, 0.16044294834136963, -0.06915649771690369,
- 0.02492356300354004, -0.05531053617596626, 0.08477503806352615, 0.02024674415588379,
- 0.00912417285144329, -0.020227327942848206, -0.04979082942008972, -0.04372888803482056,
- 0.07444088160991669, -0.05264213681221008, 0.02532377280294895, 0.050475817173719406,
- -0.04872399568557739, 0.025951514020562172, 0.05389252305030823, 0.05337780714035034,
- -0.030219892039895058, 0.0702214241027832, -0.014269178733229637, 0.04842345044016838,
- 0.06052180379629135, 0.06848781555891037, -0.10014615952968597, -0.01574482023715973,
- 0.0047752829268574715, -0.15472766757011414, 0.08561275899410248, 0.001378136221319437,
- 0.10086916387081146, 0.028422782197594643, 0.008169904351234436, 0.023896073922514915,
- -0.027222666889429092, -0.05368176847696304, -0.011761194095015526, 0.07000288367271423,
- 0.03007345274090767, 0.06903736293315887, 0.15276089310646057, -0.08346134424209595,
- -0.0312664695084095, -0.10797229409217834, 0.05325955152511597, 0.15227670967578888,
- -0.042096614837646484, 0.005225540138781071, 0.003442962421104312, -0.04916521906852722,
- -0.017770107835531235, -0.007133265025913715, -0.08923587948083878,
- -0.037032369524240494, -0.02153618633747101, 0.09463177621364594, 0.02278091013431549,
- -0.06444557011127472, -0.16016149520874023, -0.051668621599674225, -0.04689721390604973,
- 0.01283334195613861, 0.1375378519296646, -0.07478438317775726, 0.008252308703958988,
- 0.02200796827673912, -0.03347430378198624, 0.001748040784150362, -0.08308307081460953,
- 0.01869336888194084, -0.060575418174266815, 0.056743670254945755, 0.0607796311378479,
- 0.0405772440135479, -0.015033474192023277, 0.04929133504629135, -0.08139903843402863,
- 0.032582104206085205, 0.04299391806125641, -0.01986391469836235, 0.07306132465600967,
- -0.015694938600063324, 0.044072870165109634, 0.05776584520936012, -0.06453355401754379,
- 0.04223838448524475, -0.030741501599550247, -0.03518921136856079, -0.09019380062818527,
- -0.07319970428943634, -0.03785265237092972, -0.10233276337385178, 0.041456036269664764,
- -0.03786427527666092, -0.03422506898641586, -0.028480656445026398,
- -0.045559171587228775, 0.04290236160159111, 0.02684446983039379, 0.04292197525501251,
- -0.1647537350654602, -0.03227617219090462, 0.0020468691363930702, 0.022238124161958694,
- -0.011461015790700912, -0.04574286937713623, -0.012697768397629261,
- 0.024690184742212296, 0.029014933854341507, -0.04216495901346207, 0.0065513309091329575,
- -0.10115869343280792, 0.02978045679628849, -0.08364173769950867, -0.4699624478816986,
- 0.03933612257242203, 0.023582756519317627, 0.007909606210887432, 0.01953410543501377,
- -0.1210060641169548, 0.009475556202232838, 0.019256049767136574, -0.01218905858695507,
- 0.07004749774932861, -0.05022765323519707, 0.04315876215696335, -0.023872151970863342,
- -0.10060155391693115, 0.002464273478835821, -0.04056167975068092, -0.05354667454957962,
- 0.04146931692957878, 0.004664605483412743, -0.09180652350187302, -0.08270251750946045,
- 0.006250463426113129, -0.03511793538928032, 0.04422847181558609, -0.01349491998553276,
- 0.032429054379463196, -0.022150758653879166, -0.057790737599134445,
- 0.060672543942928314, 0.05497124046087265, 0.05075182020664215, -0.08875095844268799,
- 0.007972504943609238, 0.09448648244142532, 0.028939740732312202, 0.11249512434005737,
- 0.01027632039040327, -0.04119003564119339, -0.024801932275295258, 0.06005653738975525,
- 0.06443445384502411, 0.18714138865470886, -0.01726444438099861, 0.03061612695455551,
- -0.007182763423770666, 0.12166114151477814, 0.018282217904925346, 0.018109159544110298,
- -0.05761703848838806, 0.02844516560435295, 0.04101164638996124, 0.02410402148962021,
- 0.10007277131080627, -0.07847381383180618, -0.03166145831346512, -0.035104237496852875,
- -0.026028400287032127, -0.007589014712721109, -0.012921356596052647,
- 0.21901512145996094, 0.011103082448244095, 0.050342269241809845, 0.012889690697193146,
- -0.0710558071732521, 0.04228970408439636, -0.09349367767572403, -0.06481961160898209,
- -0.01326649822294712, -0.0033540111035108566, -0.009291856549680233,
- -0.05194952338933945, -0.11493154615163803, -0.02788533642888069, 0.018994230777025223,
- -0.00989550817757845, 0.10510650277137756, 0.009151358157396317, 0.03486955910921097,
- -0.04692544415593147, 0.14412856101989746, 0.04454459249973297, 0.03932594507932663,
- 0.02373804897069931, 0.06975999474525452, 0.016016121953725815, -0.066080741584301,
- -0.039902787655591965, -0.06312087178230286, 0.012741712853312492, 0.1185266301035881,
- -0.020810116082429886, 0.12500233948230743, 0.06692444533109665, -0.02668577991425991,
- -0.05036836117506027, 0.01840648055076599, -0.001318352296948433, -0.009858119301497936,
- -0.47613734006881714, -0.03882750868797302, 0.0707789808511734, -0.008244132623076439,
- 0.020930901169776917, 0.06875353306531906, 0.027783352881669998, -0.02976083755493164,
- -0.022696981206536293, -0.0674285888671875, 0.187267005443573, -0.0240586269646883,
- 0.05668738856911659, -0.05819941312074661, 0.0077384780161082745, 0.054916225373744965,
- -0.04103991389274597, 0.01580488681793213, 0.04264214634895325, -0.1991618126630783,
- -0.012103145942091942, -0.008682884275913239, 0.14935511350631714,
- -0.0006234254688024521, 0.0521441251039505, 0.10874544084072113, -0.05634456127882004,
- 0.04362066835165024, 0.05170446261763573, -0.022002164274454117, 0.03544656187295914,
- -0.008187188766896725, -0.042236968874931335, 0.10522019118070602, 0.10784457623958588,
- 0.04494525492191315, -0.012612232938408852, 11.921649932861328, 0.04498736560344696,
- 0.047510936856269836, -0.09347440302371979, 0.041608549654483795, -0.07172773033380508,
- 0.05728578194975853, -0.1309364289045334, 0.07489664107561111, 0.11634689569473267,
- 0.004086870700120926, 0.010130897164344788, -0.018774136900901794, -0.09483213722705841,
- 0.0505681112408638, -0.03794053569436073, -0.050471819937229156, -0.051908016204833984,
- 0.04738624021410942, -0.046006590127944946, -0.011412924155592918, 0.014885708689689636,
- 0.04128589853644371, 0.0262872576713562, -0.06728214025497437, 0.009579187259078026,
- 0.003203347558155656, -0.011552993208169937, 0.0066665103659033775, 0.01345557626336813,
- -0.007121569477021694, 0.048472464084625244, 0.04058493673801422, 0.025017764419317245,
- 0.05267929285764694, 0.015463655814528465, 0.08577452600002289, 0.025284364819526672,
- 0.018821613863110542, 0.06350262463092804, 0.011095761321485043, -0.014506610110402107,
- 0.03177495300769806, 0.03519969433546066, 0.0692576989531517, 0.02216317504644394,
- 0.058975569903850555, 0.08243012428283691, -0.03219709172844887, 0.025140179321169853,
- 0.12052716314792633, -0.01567183807492256, 0.1124722808599472, 0.022986914962530136,
- -0.022119836881756783, 0.08589587360620499, -0.003917425870895386, -0.05488825589418411,
- 0.08782623708248138, 0.08762674033641815, -0.07872167974710464, 0.09052838385105133,
- 0.01550550851970911, 0.11328206956386566, -0.0031962129287421703, 0.0409390926361084,
- 0.09274277091026306, 0.09475794434547424, -0.10275699198246002, -0.07985662668943405,
- 0.021113703027367592, -0.10931650549173355, -0.06753046810626984, 0.028794266283512115,
- 0.013833495788276196, -0.06726458668708801, 0.06245224177837372, -0.026396311819553375,
- -0.009486067108809948, -0.029912546277046204, -0.013164895586669445,
- 0.031943950802087784, -0.005589734762907028, 0.017738301306962967, 0.062234438955783844,
- 0.012856904417276382, 0.14064368605613708, 0.09617935121059418, 0.011604955419898033,
- -0.09516718983650208, -0.045079316943883896, 0.12281988561153412, -0.04223316162824631,
- -0.09545538574457169, -0.023953156545758247, -0.02554268389940262, 0.039669230580329895,
- -0.13928210735321045, 0.0356488935649395, 0.1088622435927391, -0.06022556126117706,
- -0.040573954582214355, -0.020144108682870865, 0.08257880806922913,
- -0.031983889639377594, 0.030133724212646484, -0.11340925842523575, 0.007186880335211754,
- 0.026158500462770462, 0.048884496092796326, -0.055155813694000244, 0.057045768946409225,
- 0.11100300401449203, -0.07700879871845245, 0.014773113653063774, 0.07005088031291962,
- -0.006444014608860016, -0.026495151221752167, 0.05659957230091095, 0.05539800971746445,
- -0.09945620596408844, -0.03959100693464279, -0.0214616097509861, -0.03823284059762955,
- 0.0036620073951780796, -0.04775446653366089, 0.024083659052848816, 0.05703186243772507,
- -0.041809290647506714, -0.050885844975709915, 0.026329712942242622, 0.06254257261753082,
- 0.05953957140445709, -0.049023233354091644, 0.06434599310159683, -0.04992176964879036,
- -0.07457034289836884, 0.035979997366666794, 0.0853455662727356, 0.050506412982940674,
- -0.04539152979850769, -0.042713213711977005, -0.01655188947916031, -0.10529866814613342,
- 0.05198972672224045, 0.1256006360054016, 0.020394552499055862, 0.05100761353969574,
- 0.017983345314860344, -0.08443231880664825, -0.02715441770851612, 0.06759349256753922,
- 0.024182816967368126, 0.0046966951340436935, 0.028880681842565536, -0.04783451929688454,
- -0.011910926550626755, 0.10658363997936249, -0.013780179433524609, 0.06152970343828201,
- -0.008703861385583878, -0.0028079277835786343, 0.0949716717004776, 0.11927258968353271,
- 0.0576171837747097, 0.00010375888086855412, 0.05188894271850586, 0.008305476047098637,
- -0.017435532063245773, -0.01434935163706541, 0.00003832555375993252,
- -0.03714622184634209, -0.09591001272201538, -0.08581075817346573, 0.020304996520280838,
- 0.10412584245204926, 0.0724020004272461, -0.08891172707080841, -0.01417555846273899,
- -0.033113591372966766
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 80,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 68,
- "similarity": 0.9983299970626831
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 53,
- "similarity": 0.9983217120170593
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 38,
- "similarity": 0.9983012080192566
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["James Dator"],
- "epoch_date_downloaded": 1650585600,
- "epoch_date_modified": 1650585600,
- "epoch_date_submitted": 1650585600,
- "flag": null,
- "report_number": 1559,
- "source_domain": "sbnation.com",
- "submitters": ["Anonymous"],
- "title": "Soccer match ruined when AI-controlled camera mistakes ref’s bald head for ball",
- "url": "https://www.sbnation.com/soccer/2020/10/30/21541962/soccer-match-ai-camera-bald-head-ball"
- },
- {
- "__typename": "Report",
- "authors": ["Ivan Mehta"],
- "epoch_date_downloaded": 1604275200,
- "epoch_date_modified": 1607644800,
- "epoch_date_submitted": 1607644800,
- "flag": null,
- "report_number": 1380,
- "source_domain": "thenextweb.com",
- "submitters": ["Ingrid Dickinson (CSET)"],
- "title": "AI mistakes referee’s bald head for football — hilarity ensued",
- "url": "https://thenextweb.com/neural/2020/11/02/ai-mistakes-referees-bald-head-for-football-hilarity-ensued/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "mount-sinai-hospitals",
- "name": "Mount Sinai Hospitals"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "qure.ai",
- "name": "Qure.ai"
- },
- {
- "__typename": "Entity",
- "entity_id": "google",
- "name": "Google"
- },
- {
- "__typename": "Entity",
- "entity_id": "darwinai",
- "name": "DarwinAI"
- },
- {
- "__typename": "Entity",
- "entity_id": "aidoc",
- "name": "Aidoc"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "patients-with-medicaid-insurance",
- "name": "patients with Medicaid insurance"
- },
- {
- "__typename": "Entity",
- "entity_id": "patients-of-minority-groups",
- "name": "patients of minority groups"
- },
- {
- "__typename": "Entity",
- "entity_id": "low-income-patients",
- "name": "low-income patients"
- },
- {
- "__typename": "Entity",
- "entity_id": "hispanic-patients",
- "name": "Hispanic patients"
- },
- {
- "__typename": "Entity",
- "entity_id": "female-patients",
- "name": "female patients"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1381],
- "vector": [
- -0.03765420243144035, 0.07253653556108475, 0.01085621677339077, -0.09130825102329254,
- 0.0962335616350174, -0.033612482249736786, -0.004768230952322483, 0.1092517301440239,
- 0.08763042837381363, -0.11802539974451065, -0.012214703485369682, 0.0428122878074646,
- 0.028487566858530045, -0.0484812967479229, 0.04651413485407829, -0.058951087296009064,
- -0.0857551097869873, -0.046550653874874115, 0.002000161912292242, -0.08284667879343033,
- -0.10966672748327255, 0.06011199206113815, -0.029036423191428185, 0.08753996342420578,
- -0.035591259598731995, 0.016795553267002106, 0.061359137296676636, 0.05660754442214966,
- -0.012822066433727741, 0.03328310698270798, -0.04843849688768387, -0.055780794471502304,
- 0.11459595710039139, -0.03576292842626572, 0.01323773618787527, 0.06750963628292084,
- 0.05271371454000473, -0.03218149021267891, -0.018813855946063995, -0.009109633974730968,
- 0.021728895604610443, 0.22832156717777252, -0.00920440535992384, 0.003619406372308731,
- 0.02537504956126213, -0.04327461123466492, -0.008373269811272621, 0.015484508126974106,
- -0.011791053228080273, 0.037753913551568985, -0.017281411215662956, 0.050881277769804,
- -0.01905171200633049, 0.0029912241734564304, -0.10899971425533295, 0.05872374027967453,
- 0.0034428094513714314, 0.03639354929327965, 0.05290668085217476, -0.05587714910507202,
- 0.007144499570131302, -0.11740411072969437, -0.02267467975616455, -0.0819581001996994,
- 0.09784819185733795, -0.057343583554029465, -0.01038232073187828, 0.015642108395695686,
- 0.0007709546480327845, 0.06196864694356918, 0.07869802415370941, -0.020085491240024567,
- -0.052001457661390305, 0.010046623647212982, -0.007279383949935436,
- 0.0028962520882487297, 0.037119634449481964, 0.11715460568666458, -0.041476886719465256,
- 0.057226333767175674, 0.029507998377084732, -0.04919154569506645, 0.24178600311279297,
- -0.007830941118299961, -0.002490308601409197, -0.015474379993975163,
- 0.08137452602386475, 0.02069629356265068, 0.03329777717590332, 0.023030178621411324,
- 0.0030326128471642733, 0.051311638206243515, -0.05396896228194237, -0.02220989763736725,
- 0.045676615089178085, 0.034961625933647156, -0.006094849668443203, -0.13069742918014526,
- -0.01921689137816429, -0.062428779900074005, -0.0015542384935542941,
- -0.04153042659163475, 0.06703080981969833, 0.08288383483886719, -0.02905738353729248,
- 0.03672198951244354, 0.045165009796619415, -0.03956453129649162, 0.04657283425331116,
- -0.04513290897011757, 0.01993601769208908, -0.0035654937382787466, 0.058551304042339325,
- 0.027868060395121574, 0.007500728592276573, -0.0794854685664177, 0.03234073147177696,
- 0.048585444688797, 0.07513289898633957, 0.04277938976883888, 0.060149312019348145,
- 0.03378046676516533, 0.06061302497982979, -0.05310595780611038, -0.08079596608877182,
- -0.031358785927295685, -0.0248082485049963, 0.00795628223568201, -0.032900553196668625,
- 0.05155927315354347, -0.016890838742256165, -0.11674148589372635, -0.046153634786605835,
- 0.07194135338068008, -0.05329084396362305, -0.013662733137607574, -0.002592365024611354,
- -0.004539655987173319, 0.028340334072709084, -0.017505884170532227,
- -0.004077237099409103, 0.06031721085309982, 0.03239878639578819, 0.032384902238845825,
- 0.07218948006629944, 0.050261564552783966, -0.0421222522854805, -0.06577787548303604,
- -0.01916685327887535, -0.06629950553178787, 0.10584013909101486, -0.09764719009399414,
- -0.07473872601985931, -0.027798008173704147, -0.03412628546357155, 0.6601207852363586,
- 0.07364562898874283, 0.1703168749809265, -0.018913768231868744, -0.013761704787611961,
- 0.13264992833137512, 0.003942305687814951, 0.059126682579517365, -0.05087301880121231,
- -0.04539727792143822, 0.018655672669410706, -0.047380633652210236,
- -0.027550887316465378, 0.029639635235071182, 0.017002636566758156, 0.09193828701972961,
- 0.018602615222334862, 0.05122597515583038, 0.0009136523003689945, -0.0633663460612297,
- -0.025802263990044594, 0.04488615319132805, 0.03546411171555519, -0.09489902853965759,
- 0.011396586894989014, 0.09660014510154724, 0.05864335596561432, -0.07236038148403168,
- -0.003178069833666086, -0.054670099169015884, 0.04901687428355217,
- 0.0063710445538163185, 0.07530219852924347, -0.005137103144079447, 0.05274839699268341,
- 0.015716074034571648, -0.010035403072834015, 0.03918862342834473, -0.09258705377578735,
- -0.01324344053864479, 0.058892425149679184, -0.015440995804965496, -0.03726412355899811,
- 0.051859647035598755, -0.07360799610614777, 0.02222863957285881, -0.02150413580238819,
- 0.14888492226600647, -0.12507157027721405, 0.04926915466785431, -0.02083776891231537,
- 0.06526004523038864, 0.031182050704956055, 0.03347989171743393, -0.06320233643054962,
- -0.0291264858096838, 0.08111011236906052, 0.04951654002070427, 0.07490488141775131,
- 0.004949947353452444, -0.022018389776349068, 0.04752025753259659, 0.09468699246644974,
- -0.02025875635445118, -0.03850159794092178, 0.0679996907711029, 0.051599737256765366,
- -0.05389346182346344, 0.01511799544095993, 0.02949705347418785, 0.008645839057862759,
- -0.00019367523782420903, -0.014081033878028393, 0.015571540221571922,
- -0.012660008855164051, -0.041353508830070496, 0.07133056968450546, 0.07576490938663483,
- 0.016447145491838455, 0.10722623765468597, -0.05328720435500145, -0.020953139290213585,
- -0.03912119194865227, -0.0400061272084713, 0.023193323984742165, -0.08231478929519653,
- 0.02611374296247959, 0.08198090642690659, 0.04328402131795883, 0.02828727476298809,
- 0.04292592033743858, 0.04832027107477188, 0.0407947413623333, 0.012802137061953545,
- 0.059573348611593246, -0.05545851215720177, -0.00694255530834198, -0.013827360235154629,
- -0.038544416427612305, 0.0002251218247693032, -0.031013069674372673,
- -0.04309957101941109, -0.033273227512836456, -0.03899674862623215,
- -0.011417465284466743, -0.06383456289768219, -0.07124612480401993,
- 0.0003635276516433805, 0.016790613532066345, -0.027517013251781464,
- -0.051996417343616486, -0.07181527465581894, -0.02033875696361065, 0.04336108639836311,
- -0.049840718507766724, 0.008017713204026222, -0.10595661401748657, 0.00939874816685915,
- 0.007537659723311663, 0.03749466314911842, 0.0065089017152786255, -0.030386725440621376,
- 0.04114612191915512, -0.06791774183511734, 0.03829526901245117, -0.05817672610282898,
- -0.05853889137506485, -0.01952560432255268, -0.042087264358997345, -0.06560733169317245,
- -0.006935248151421547, 0.03704151138663292, -0.0942259430885315, 0.031939372420310974,
- 0.05016617849469185, 0.003364795120432973, -0.029615577310323715, -0.029441766440868378,
- -0.00655783386901021, -0.022233743220567703, 0.0011957068927586079, 0.07148586213588715,
- -0.03663913160562515, 0.08042826503515244, 0.01274451706558466, -0.0783589705824852,
- -0.06186927855014801, -0.006510414183139801, -0.05484418198466301,
- -0.007319048512727022, -0.001044784439727664, 0.013456318527460098,
- -0.02690279483795166, 0.007283532060682774, 0.024559399113059044, -0.06032709777355194,
- -0.0932331308722496, -0.1085805892944336, 0.089289590716362, 0.029155805706977844,
- 0.01378581766039133, -0.010408257134258747, -0.008456423878669739, 0.035891447216272354,
- 0.00960230641067028, 0.020062541589140892, 0.02279958873987198, 0.028429150581359863,
- 0.03722894564270973, -0.022636568173766136, 0.0391995795071125, -0.027027107775211334,
- -0.007440362125635147, 0.045855212956666946, 0.4349055290222168, -0.12163946032524109,
- 0.06008666381239891, 0.07483519613742828, 0.030207060277462006, 0.03419983386993408,
- -0.030681734904646873, 0.091892771422863, 0.08998065441846848, 0.09340640902519226,
- 0.11918002367019653, -0.031104667112231255, 0.008820779621601105, -0.07708175480365753,
- 0.05841284617781639, 0.008198818191885948, -0.0327238067984581, -0.034226998686790466,
- -0.08989550918340683, -0.0024214053992182016, 0.0636558085680008, -0.023606542497873306,
- 0.04464900121092796, -0.011398044414818287, -0.03288964182138443,
- -0.0067808497697114944, -0.002414185320958495, -0.021928932517766953,
- -0.020786158740520477, 0.04814722016453743, -0.01766897924244404, 0.0620444118976593,
- 0.038997430354356766, 0.01902640238404274, -0.15044637024402618, 0.04329165071249008,
- -0.09330771863460541, -0.07641393691301346, 0.058941550552845, 0.016480132937431335,
- 0.03889891132712364, 0.04022884741425514, 0.01660637930035591, 0.03217026963829994,
- -0.00019752960361074656, -0.008627564646303654, -0.009515034034848213,
- 0.048098936676979065, 0.027726013213396072, 0.0050365799106657505, 0.13090187311172485,
- -0.006433385424315929, 0.013732444494962692, -0.06557052582502365, 0.06961588561534882,
- 0.13533343374729156, 0.001004034886136651, -0.008751576766371727, 0.004078828264027834,
- -0.028187070041894913, 0.005609265994280577, -0.021280372515320778, -0.09528848528862,
- 0.0011752847349271178, -0.05051790922880173, 0.08675426989793777, 0.012924766167998314,
- -0.014633484184741974, -0.16658924520015717, -0.006071131210774183,
- -0.06707475334405899, 0.014010874554514885, 0.04469805583357811, -0.054628580808639526,
- 0.06311890482902527, 0.035741664469242096, -0.004725825507193804, 0.046173855662345886,
- -0.047526486217975616, 0.014481781050562859, -0.026530440896749496, 0.03766375780105591,
- -0.00835075881332159, 0.04678523540496826, -0.005305902101099491, 0.08882647007703781,
- -0.05788438394665718, 0.06132851913571358, -0.007099091075360775, -0.02125009521842003,
- 0.01446168776601553, 0.008032159879803658, -0.0007808317895978689, 0.02079562097787857,
- -0.016664959490299225, -0.01527140662074089, -0.034582242369651794,
- -0.004826357588171959, -0.06772799044847488, -0.048071544617414474,
- 0.002511948114261031, -0.05582757294178009, 0.03359103202819824, -0.0465819351375103,
- 0.005094676744192839, -0.03324582800269127, -0.06920689344406128, -0.019172323867678642,
- -0.005501373205333948, 0.002520955866202712, -0.1261615753173828, 0.04133506864309311,
- 0.03812147676944733, 0.06402868032455444, 0.02167232148349285, -0.026675213128328323,
- 0.010779524222016335, 0.11327603459358215, 0.029070867225527763, -0.030739696696400642,
- -0.05582696571946144, -0.028316402807831764, 0.06424051523208618, -0.08071029931306839,
- -0.39666861295700073, 0.06996181607246399, 0.042345620691776276, 0.018452029675245285,
- -0.010352746583521366, -0.09182281792163849, 0.02203468419611454, -0.01212381199002266,
- -0.021691154688596725, 0.03017810545861721, -0.040556181222200394,
- -0.000849316013045609, -0.01966903731226921, -0.10987811535596848,
- -0.007452827878296375, -0.011597653850913048, -0.0458320751786232, 0.05627428740262985,
- -0.033640969544649124, -0.038269683718681335, -0.07043550908565521, 0.02988954819738865,
- -0.03492140397429466, 0.019491197541356087, 0.019088327884674072, 0.011467579752206802,
- -0.049529992043972015, -0.05318848043680191, 0.011928110383450985, 0.07965003699064255,
- 0.044232677668333054, -0.066218800842762, 0.03880127891898155, 0.04279013350605965,
- 0.0037797060795128345, 0.07085117697715759, 0.009822488762438297, -0.0109629575163126,
- -0.015787741169333458, 0.050932690501213074, 0.05673262104392052, 0.19279853999614716,
- 0.028532354161143303, -0.018112236633896828, 0.03786261007189751, 0.07738500088453293,
- 0.02231202833354473, 0.017063967883586884, -0.0026540353428572416,
- -0.015040671452879906, 0.0444239042699337, -0.005271590780466795, 0.08650950342416763,
- -0.053965065628290176, -0.009688635356724262, -0.05168578401207924, 0.05737316608428955,
- -0.037795208394527435, -0.01205368060618639, 0.1568356305360794, -0.012059152126312256,
- 0.04538058862090111, 0.03975021839141846, -0.01753416657447815, 0.005857076495885849,
- -0.07681897282600403, -0.10553592443466187, -0.02282116748392582, 0.010366211645305157,
- 0.013514945283532143, -0.03128404915332794, -0.10897879302501678,
- -0.0060029104351997375, 0.019884277135133743, 0.024945510551333427, 0.1145857721567154,
- -0.04807600378990173, 0.008434773422777653, -0.0020036858040839434, 0.08760137856006622,
- 0.0002684752398636192, -0.02143448404967785, 0.08429576456546783, 0.09993158280849457,
- -0.0009616883471608162, 0.011225221678614616, -0.01993464305996895,
- -0.038035523146390915, -0.0008525142911821604, 0.10018336772918701,
- -0.03412492945790291, 0.11017347127199173, 0.08833354711532593, -0.03423462435603142,
- -0.04754692316055298, 0.038558997213840485, 0.0009104846976697445, 0.010312451049685478,
- -0.41483768820762634, -0.04405662417411804, 0.06598342210054398, 0.03307066485285759,
- 0.024765051901340485, 0.035836245864629745, 0.0074575976468622684,
- -0.011221613734960556, 0.06550507247447968, -0.060983847826719284, 0.11155769973993301,
- 0.010695820674300194, 0.08044677972793579, 0.0013349001528695226, 0.010679923929274082,
- 0.06483469158411026, -0.05267949402332306, 0.007681282702833414, 0.053892847150564194,
- -0.18945612013339996, -0.010170482099056244, -0.028192022815346718, 0.06649008393287659,
- 0.04765345901250839, 0.0511428527534008, 0.059520747512578964, -0.04838666319847107,
- 0.04680849239230156, 0.08812499046325684, -0.025864947587251663, 0.03913402557373047,
- 0.01564197801053524, -0.027392398566007614, 0.07837031036615372, 0.08427810668945312,
- 0.06930924952030182, -0.017739495262503624, 11.592288970947266, -0.007613098714500666,
- 0.008985460735857487, -0.06720410287380219, -0.036792218685150146, -0.06289462745189667,
- 0.02286696806550026, -0.1328687071800232, 0.10625524818897247, 0.15495312213897705,
- 0.008378219790756702, -0.049847520887851715, 0.004932814743369818, -0.08006318658590317,
- 0.04367261007428169, -0.043754398822784424, -0.08520714938640594, -0.03607356548309326,
- 0.06064682826399803, -0.016333360224962234, 0.0034751014318317175,
- -0.0006825057789683342, 0.07106772810220718, -0.005757372360676527,
- -0.007291725836694241, 0.002564137801527977, 0.01662263832986355, -0.005449774209409952,
- 0.003569146152585745, 0.019337521865963936, 0.004076309967786074,
- -0.0059508634731173515, 0.05773760378360748, -0.010399149730801582, 0.06567015498876572,
- 0.015993312001228333, 0.09103131294250488, 0.06897661834955215, 0.04012692719697952,
- 0.0803724154829979, 0.024823958054184914, 0.027825873345136642, 0.017911531031131744,
- 0.019926683977246284, 0.0645907074213028, 0.08169741183519363, 0.017659274861216545,
- 0.06318224221467972, 0.01312321424484253, 0.09238653630018234, 0.060609202831983566,
- -0.026303274556994438, 0.09620121121406555, -0.05761785805225372, -0.02649861015379429,
- 0.018672548234462738, 0.03912798687815666, -0.06843201816082001, 0.04396039620041847,
- -0.003404760966077447, -0.06386729329824448, 0.12333815544843674, 0.016535766422748566,
- 0.08819343149662018, -0.019923299551010132, 0.05778796598315239, 0.07517040520906448,
- 0.08013173937797546, -0.10077092051506042, -0.026993390172719955, 0.013170103542506695,
- -0.12297237664461136, -0.07832321524620056, 0.08348258584737778, 0.04023604840040207,
- -0.055660031735897064, 0.06087755784392357, -0.02027839608490467, 0.050703078508377075,
- 0.0048788501881062984, 0.027633415535092354, 0.06602845340967178, 0.010048565454781055,
- 0.008472765795886517, 0.05907945707440376, 0.04288377985358238, 0.07138539850711823,
- 0.10995695739984512, -0.004950523842126131, -0.04163680970668793, -0.02485005185008049,
- 0.07679666578769684, 0.0072942771948874, -0.07676438242197037, 0.007401932962238789,
- -0.008540858514606953, -0.0016192682087421417, -0.10336241126060486,
- 0.07271605730056763, 0.0830119326710701, -0.07629862427711487, -0.027910925447940826,
- -0.043103642761707306, 0.05426948890089989, 0.015547424554824829, 0.0591776967048645,
- -0.030512584373354912, -0.03038831613957882, 0.002351057715713978, 0.03802940994501114,
- -0.017021819949150085, 0.053631946444511414, 0.07042452692985535, -0.05831810086965561,
- -0.011952979490160942, 0.023038411512970924, -0.015549512580037117,
- -0.007051536813378334, 0.031761057674884796, 0.054931458085775375, -0.06716766953468323,
- 0.0005538573022931814, -0.030973168089985847, -0.0013618653174489737,
- -0.011436598375439644, -0.02982313558459282, 0.008950023911893368, 0.002223819261416793,
- -0.037116341292858124, -0.021751897409558296, 0.022799750789999962, 0.07967426627874374,
- 0.11598696559667587, -0.029159920290112495, 0.051534995436668396, -0.0102497274056077,
- -0.025928938761353493, 0.050813402980566025, 0.047158461064100266, 0.05171659216284752,
- -0.07332375645637512, -0.029356975108385086, -0.09406036138534546, -0.10927543044090271,
- -0.013329789973795414, 0.07763909548521042, 0.04257677122950554, 0.04271964728832245,
- -0.0009865715401247144, -0.06579262018203735, -0.009905719198286533, 0.1168065145611763,
- -0.04675724729895592, -0.01843968965113163, 0.036453284323215485, -0.015329919755458832,
- -0.03179260343313217, 0.07784760743379593, -0.04231364279985428, -0.008911929093301296,
- 0.03210217505693436, -0.12013398110866547, 0.015065701678395271, 0.09332599490880966,
- 0.010542867705225945, 0.04170604422688484, 0.01958131045103073, 0.0007842434570193291,
- 0.05827502906322479, -0.023603368550539017, 0.05444905906915665, -0.04893766716122627,
- -0.07948480546474457, -0.08647423982620239, -0.02785046584904194, 0.09687931090593338,
- 0.05727246403694153, -0.07446341216564178, -0.05020605027675629, -0.041012316942214966
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 81,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 5,
- "similarity": 0.9984789490699768
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 43,
- "similarity": 0.9981838464736938
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 124,
- "similarity": 0.9981330633163452
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Kyle Wiggers"],
- "epoch_date_downloaded": 1603929600,
- "epoch_date_modified": 1607644800,
- "epoch_date_submitted": 1607644800,
- "flag": null,
- "report_number": 1381,
- "source_domain": "venturebeat.com",
- "submitters": ["Patrick Hall (BNH.ai)", "CSET annotators"],
- "title": "Researchers find evidence of racial, gender, and socioeconomic bias in chest X-ray classifiers",
- "url": "https://venturebeat.com/2020/10/21/researchers-find-evidence-of-racial-gender-and-socioeconomic-bias-in-chest-x-ray-classifiers/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "facebook",
- "name": "Facebook"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "facebook",
- "name": "Facebook"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "facebook-users-interested-in-the-lekki-massacre-incident",
- "name": "Facebook users interested in the Lekki Massacre incident"
- },
- {
- "__typename": "Entity",
- "entity_id": "facebook-users",
- "name": "Facebook users"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1382],
- "vector": [
- -0.07207238674163818, -0.0044974833726882935, 0.029986746609210968,
- -0.13155271112918854, 0.06378058344125748, -0.021615812554955482, 0.0421329140663147,
- 0.06098727136850357, 0.10744792222976685, -0.14235608279705048, 0.05651405081152916,
- -0.005304346792399883, -0.03183858469128609, -0.08658202737569809, 0.0751560628414154,
- -0.23157183825969696, -0.05262626335024834, -0.008019101805984974, -0.02691924013197422,
- -0.11123460531234741, -0.06119796633720398, -0.033526625484228134, 0.02940419875085354,
- 0.0965617224574089, -0.0010355411795899272, 0.09056311100721359, 0.087559275329113,
- 0.19397082924842834, -0.15753589570522308, 0.02106538973748684, 0.01618163101375103,
- 0.010667425580322742, 0.1486685574054718, 0.03453761339187622, 0.014469091780483723,
- 0.11342471092939377, 0.039410244673490524, -0.04991729557514191, -0.08522851765155792,
- 0.0257175974547863, -0.06010892987251282, 0.23180072009563446, -0.009474210441112518,
- -0.08051835745573044, 0.08978841453790665, -0.085626021027565, 0.06769822537899017,
- 0.13880085945129395, 0.047401249408721924, -0.021254926919937134,
- -0.0003174849261995405, -0.07043200731277466, -0.08772630244493484,
- 0.005595828406512737, -0.13159427046775818, 0.09614833444356918, 0.025411318987607956,
- -0.043380193412303925, 0.013545315712690353, -0.03671436756849289, -0.06916606426239014,
- -0.2938806414604187, -0.007268058601766825, -0.03157617151737213, 0.05938750505447388,
- -0.14570118486881256, -0.007016683928668499, -0.03807707130908966, -0.00870546605437994,
- 0.020856188610196114, 0.02921741083264351, 0.0046408637426793575, 0.003822747617959976,
- -0.022628556936979294, 0.01283346489071846, -0.07742571830749512, 0.036426741629838943,
- 0.2877272665500641, -0.13466285169124603, -0.012759394943714142, 0.11167048662900925,
- -0.08429715782403946, 0.40182918310165405, -0.04438958317041397, 0.03764550760388374,
- 0.002601177664473653, 0.08560505509376526, -0.019352030009031296, 0.07582192122936249,
- 0.08392166346311569, 0.0044649322517216206, 0.017347164452075958, 0.02224762924015522,
- 0.041503433138132095, 0.0394095778465271, 0.014679908752441406, -0.008479854092001915,
- 0.0024202049244195223, 0.0015992684056982398, -0.03654966875910759,
- 0.058601461350917816, -0.024747032672166824, 0.029512673616409302, 0.13290895521640778,
- -0.07880706340074539, 0.03059195913374424, 0.10665938258171082, -0.06904829293489456,
- 0.06301227957010269, -0.08392111957073212, 0.007926876656711102, 0.0805821344256401,
- 0.07933571189641953, -0.01505656074732542, 0.012148099020123482, -0.03198278695344925,
- -0.0072598448023200035, 0.025925077497959137, 0.10805348306894302, 0.0345463901758194,
- 0.054434098303318024, 0.04307103902101517, 0.12664136290550232, 0.0015205445233732462,
- 0.05871519818902016, -0.015905829146504402, -0.05400288105010986,
- -0.0051274546422064304, -0.009337810799479485, -0.0077898455783724785,
- -0.1282469630241394, -0.2557278871536255, 0.0865907296538353, 0.09115567803382874,
- 0.00886185560375452, -0.0784127339720726, 0.01929483748972416, -0.04229271784424782,
- 0.049843672662973404, -0.07743752002716064, -0.1473640501499176, 0.1245313286781311,
- 0.023520400747656822, 0.02818155847489834, 0.13384893536567688, 0.04946126416325569,
- -0.05202167108654976, -0.05647094175219536, -0.010871421545743942, -0.12326562404632568,
- 0.10078644007444382, -0.1855025589466095, -0.0636110007762909, -0.0038849313277751207,
- -0.044449761509895325, 0.6223593950271606, 0.14305587112903595, 0.23653174936771393,
- 0.04875873029232025, -0.028441529721021652, 0.1967879682779312, 0.048218682408332825,
- 0.04257807508111, -0.09094752371311188, -0.06732615828514099, 0.04659115523099899,
- -0.07456386834383011, -0.04957686364650726, 0.07076145708560944, 0.03265336900949478,
- 0.10163551568984985, -0.012606610544025898, 0.16849872469902039, 0.007410001941025257,
- -0.1295408457517624, -0.09703255444765091, 0.062109027057886124, -0.028485601767897606,
- -0.14563408493995667, -0.07024256139993668, 0.07118725776672363, 0.11798202246427536,
- -0.023121299222111702, 0.04044155031442642, -0.046238988637924194, 0.09941711276769638,
- -0.05628532916307449, 0.0717182457447052, -0.060494620352983475, -0.037743840366601944,
- 0.012074464932084084, 0.03440611809492111, 0.04664501175284386, -0.15576475858688354,
- -0.05948932468891144, 0.12296251952648163, 0.023351095616817474, -0.03768562152981758,
- 0.05507846549153328, -0.08399598300457001, -0.0027570968959480524,
- -0.027582786977291107, 0.14375165104866028, -0.20050522685050964, -0.06266709417104721,
- -0.03459284454584122, -0.07776837795972824, 0.05100519582629204, -0.009591249749064445,
- -0.03211461007595062, -0.03571894019842148, 0.125949427485466, 0.01678474433720112,
- -0.0033832434564828873, 0.07137660682201385, -0.08864916115999222, 0.05390731617808342,
- 0.001739339786581695, -0.012890215963125229, -0.06305597722530365, 0.050911590456962585,
- 0.04292347654700279, -0.015795590355992317, -0.04325106367468834, 0.10856382548809052,
- 0.09145865589380264, 0.021064676344394684, -0.024398628622293472, 0.10117938369512558,
- 0.030229788273572922, -0.04525920748710632, 0.028628995642066002, -0.06295333802700043,
- 0.012055047787725925, 0.06671863049268723, -0.10457666218280792, -0.04001130163669586,
- -0.04038355499505997, -0.05222528055310249, 0.022917427122592926, 0.026178976520895958,
- 0.09819309413433075, 0.12654165923595428, 0.07878052443265915, 0.01149145606905222,
- 0.04118354246020317, 0.03295578807592392, 0.11638608574867249, 0.03256283700466156,
- 0.0746108889579773, 0.035955145955085754, -0.08801764249801636, -0.035877782851457596,
- -0.024324938654899597, -0.024828186258673668, 0.09679024666547775, -0.07425804436206818,
- -0.05250503122806549, 0.09672002494335175, 0.016141412779688835, -0.1206677183508873,
- 0.028671972453594208, 0.02043166570365429, 0.055674418807029724, -0.030580122023820877,
- -0.17422078549861908, -0.08794625848531723, -0.021108852699398994, 0.0732499286532402,
- -0.003289571264758706, -0.004521892871707678, -0.12112986296415329, 0.05528714507818222,
- 0.011771416291594505, 0.04359819367527962, -0.06831912696361542, -0.005975719075649977,
- -0.06518414616584778, -0.06403462588787079, 0.061914779245853424, -0.07087219506502151,
- 0.013880309648811817, -0.09994642436504364, -0.08964242786169052, -0.10815131664276123,
- -0.05063672363758087, 0.018970536068081856, -0.06421992927789688, 0.05613892525434494,
- 0.037319574505090714, 0.02931501902639866, -0.04600897803902626, 0.011752351187169552,
- 0.11541660130023956, -0.05740152671933174, 0.016950145363807678, 0.0967521145939827,
- -0.013001345098018646, 0.051429372280836105, -0.020118048414587975,
- -0.11507268995046616, -0.02097821980714798, -0.0030458688270300627, -0.0399613119661808,
- 0.06985113769769669, -0.07206259667873383, 0.001641827984713018, 0.014457774348556995,
- 0.011147923767566681, 0.15207870304584503, -0.12392612546682358, -0.0372920036315918,
- -0.0992574617266655, 0.12364295870065689, 0.002325445180758834, 0.030035823583602905,
- 0.009450167417526245, -0.06662093102931976, -0.04248395562171936, -0.008823463693261147,
- 0.024491067975759506, 0.0294794924557209, 0.0526912696659565, -0.0565711185336113,
- -0.0632486417889595, 0.04776133969426155, -0.022387851029634476, 0.027538059279322624,
- 0.08865971118211746, 0.4703037142753601, -0.21917450428009033, 0.04997943341732025,
- 0.097720205783844, 0.0026468862779438496, 0.06044350191950798, -0.0029491891618818045,
- 0.1378568857908249, 0.08504493534564972, 0.09141568094491959, 0.10802377760410309,
- -0.044079482555389404, -0.003104219911620021, -0.014001141302287579,
- 0.10634025186300278, -0.0066743092611432076, -0.018691785633563995,
- -0.10559353232383728, -0.0782390683889389, -0.07191701233386993, 0.04738614708185196,
- -0.06671976298093796, -0.03774923086166382, -0.07858599722385406, -0.04353136196732521,
- 0.038946665823459625, 0.04667549952864647, 0.028014320880174637, -0.051712360233068466,
- -0.021291440352797508, 0.04928434640169144, -0.03295231983065605, 0.05614589527249336,
- 0.035638708621263504, -0.1274212896823883, 0.08592171967029572, -0.10902194678783417,
- -0.13348433375358582, 0.0606875941157341, 0.04858630150556564, 0.10768283903598785,
- 0.06919717788696289, -0.08027219772338867, 0.04082368686795235, -0.00892019271850586,
- -0.050597064197063446, 0.06137905269861221, -0.0060904850251972675,
- -0.015657180920243263, 0.08945127576589584, 0.15621766448020935, -0.07625345885753632,
- -0.06350591033697128, -0.09400377422571182, 0.061776988208293915, 0.11158623546361923,
- -0.06417663395404816, -0.0363922119140625, -0.06626736372709274, -0.005100336857140064,
- -0.01449838187545538, -0.08421017229557037, -0.059404220432043076, -0.04044986143708229,
- -0.03302811086177826, 0.10667330771684647, 0.08706589043140411, -0.05352842062711716,
- -0.22424308955669403, -0.05537492036819458, -0.05203079432249069, 0.0217740498483181,
- 0.1345376819372177, -0.06997718662023544, -0.020548099651932716, -0.0012163205537945032,
- 0.0613529309630394, 0.06250281631946564, -0.11105986684560776, 0.017942355945706367,
- -0.09442402422428131, 0.04062097892165184, 0.0566822774708271, 0.06717844307422638,
- -0.07860585302114487, 0.10350118577480316, -0.0840173065662384, 0.029219407588243484,
- -0.0526694692671299, 0.012428944930434227, 0.052388995885849, -0.06174124777317047,
- 0.036433082073926926, 0.05938265472650528, -0.06164327263832092, 0.046105533838272095,
- -0.026589440181851387, 0.015041721984744072, -0.03256544470787048, -0.07541128993034363,
- -0.05071289837360382, -0.06438200175762177, 0.06351232528686523, -0.11830709129571915,
- -0.04599933698773384, -0.08323345333337784, 0.03454497456550598, -0.05079612880945206,
- 0.06381551176309586, 0.08840286731719971, -0.18174031376838684, -0.024943068623542786,
- -0.005204350687563419, 0.06538322567939758, 0.008934875018894672, -0.023914029821753502,
- -0.002732433844357729, 0.0838283970952034, 0.06422087550163269, 0.005641012918204069,
- 0.12332279980182648, 0.012515603564679623, 0.09174789488315582, -0.10722474753856659,
- -0.4783180058002472, 0.06303144991397858, -0.054823532700538635, 0.061441466212272644,
- 0.0100310193374753, -0.04449817165732384, 0.08057481050491333, 0.04681555926799774,
- -0.08198338747024536, 0.09675796329975128, -0.019413892179727554, 0.04005691781640053,
- -0.012939337641000748, -0.04284244030714035, -0.048638664186000824,
- -0.09944064915180206, -0.07047020643949509, 0.039595428854227066, -0.048382848501205444,
- -0.07211016863584518, -0.07555640488862991, 0.04750247672200203, -0.015561642125248909,
- 0.0437251552939415, -0.025655735284090042, -0.009652080945670605, -0.11939390003681183,
- -0.04011325538158417, 0.04495096951723099, 0.05428871512413025, 0.005347962491214275,
- -0.07643470168113708, -0.020654940977692604, 0.1561238318681717, 0.059091340750455856,
- 0.1549522876739502, 0.020178772509098053, -0.03745036944746971, -0.11155383288860321,
- 0.09967003017663956, 0.08089371770620346, 0.1785304993391037, -0.0031358657870441675,
- 0.11942104995250702, 0.01979893445968628, 0.1998121291399002, 0.015395775437355042,
- 0.04264603555202484, -0.048309456557035446, 0.008450690656900406, 0.02853463776409626,
- -0.05289391800761223, 0.05286959558725357, -0.10558255761861801, -0.020302705466747284,
- 0.004088317509740591, -0.06053795665502548, 0.021965233609080315, 0.021310223266482353,
- 0.2671671211719513, 0.04839008301496506, -0.032293129712343216, 0.07327132672071457,
- 0.0009721354581415653, 0.02260155975818634, -0.139057457447052, -0.13546502590179443,
- 0.011114086024463177, -0.029308725148439407, -0.011127780191600323,
- -0.029285190626978874, -0.11494863778352737, 0.002632674528285861, -0.04902949184179306,
- -0.025440990924835205, 0.12149786949157715, -0.03268842771649361, 0.012322739697992802,
- 0.013405322097241879, 0.1374232918024063, 0.017704464495182037, 0.043163515627384186,
- 0.07882028818130493, 0.05402975156903267, 0.0678502693772316, -0.06724298000335693,
- -0.042404960840940475, -0.04838957265019417, -0.03395502269268036, 0.18755872547626495,
- -0.09788139909505844, 0.12273599952459335, 0.02449055202305317, -0.06918925791978836,
- -0.07416636496782303, 0.01316806674003601, 0.0006042430177330971, -0.03394820913672447,
- -0.45656028389930725, -0.058695826679468155, 0.10874838382005692, 0.006027519702911377,
- 0.03905210644006729, 0.12600843608379364, 0.02203138917684555, -0.09164434671401978,
- -0.006639393977820873, -0.09455812722444534, 0.23339203000068665, -0.02602711319923401,
- 0.06753769516944885, -0.1433398574590683, 0.007730892859399319, 0.1108178049325943,
- -0.01815820299088955, 0.03883230686187744, 0.029129760339856148, -0.2119421660900116,
- 0.023724455386400223, -0.07595543563365936, 0.1326078325510025, 0.022747518494725227,
- 0.029656369239091873, 0.06270451843738556, -0.10220079123973846, 0.030663177371025085,
- 0.09315533190965652, -0.00041683338349685073, 0.043131422251462936,
- -0.008140694350004196, -0.11663410067558289, 0.11606285721063614, 0.065076544880867,
- 0.08756710588932037, -0.06369414925575256, 12.419073104858398, 0.1155976876616478,
- 0.05506942793726921, -0.08510739356279373, 0.05184035003185272, -0.029839493334293365,
- 0.0011481684632599354, -0.09079935401678085, 0.06300094723701477, 0.13796596229076385,
- 0.0032630779314786196, -0.049559950828552246, -0.03987720236182213,
- -0.12000618875026703, -0.006625140085816383, -0.02244989201426506, -0.05751010775566101,
- -0.0640435740351677, -0.02479199692606926, -0.019576020538806915, -0.0170537568628788,
- 0.014299252070486546, 0.051461875438690186, -0.03363357111811638, -0.07704588025808334,
- 0.07407575845718384, 0.02416272461414337, -0.03289381414651871, 0.05848264321684837,
- 0.03247388079762459, 0.021604644134640694, 0.041695717722177505, 0.11610426008701324,
- 0.06191399693489075, -0.0005511349299922585, 0.07458123564720154, -0.03129995986819267,
- 0.06255186349153519, 0.008152738213539124, 0.07542017847299576, -0.010501046665012836,
- -0.020159348845481873, -0.034851182252168655, 0.027676604688167572,
- 0.018273189663887024, 0.03662571310997009, 0.07781776785850525, 0.18025030195713043,
- 0.036433640867471695, 0.05291255563497543, 0.09511332213878632, -0.003209501039236784,
- 0.09290864318609238, 0.02007896825671196, 0.018197739496827126, 0.16037018597126007,
- -0.022999774664640427, -0.07000166177749634, 0.12872076034545898, 0.14986516535282135,
- -0.026124894618988037, 0.060163456946611404, 0.027151942253112793, 0.15794804692268372,
- -0.025943433865904808, -0.01252694707363844, 0.12515977025032043, 0.09146355092525482,
- -0.11321768164634705, -0.11172869801521301, 0.03575718775391579, -0.07373832911252975,
- -0.0040768650360405445, 0.013589363545179367, 0.159673273563385, -0.008800921961665154,
- 0.1261180192232132, -0.048754844814538956, 0.05786997824907303, -0.08592595905065536,
- 0.01200275868177414, 0.0328386016190052, -0.07504422962665558, -0.017240658402442932,
- -0.04058106616139412, 0.014518356882035732, 0.09977050870656967, 0.17474903166294098,
- -0.0048822322860360146, -0.12730923295021057, -0.07244757562875748, 0.10624343156814575,
- -0.027138041332364082, -0.015500776469707489, 0.02346925623714924,
- 0.0008876812062226236, 0.08737317472696304, -0.18626639246940613, 0.023959217593073845,
- 0.14175303280353546, -0.11369764804840088, -0.05879274010658264, -0.024335280060768127,
- 0.0747736394405365, -0.01676027849316597, 0.04087313264608383, -0.08423203974962234,
- 0.05473162233829498, 0.06418977677822113, 0.0605093277990818, -0.07773011177778244,
- 0.03140999376773834, 0.11173553764820099, -0.09826089441776276, 0.08441397547721863,
- 0.06937610357999802, -0.04241856560111046, -0.025881102308630943, 0.07096727192401886,
- -0.046639811247587204, -0.12443534284830093, -0.09419980645179749, -0.05070597305893898,
- -0.03808211162686348, -0.02444012090563774, -0.048965197056531906, -0.03690832108259201,
- 0.034697894006967545, -0.03008466586470604, -0.017962580546736717, 0.02339816465973854,
- 0.03265674039721489, 0.18839000165462494, -0.0602005235850811, 0.010565351694822311,
- -0.04587806388735771, -0.013775991275906563, 0.071748748421669, 0.0625896155834198,
- 0.10069204866886139, -0.08038140833377838, 0.011049380525946617, -0.021327588707208633,
- -0.04846722260117531, -0.008200505748391151, 0.13279841840267181, 0.030775416642427444,
- 0.01919570378959179, 0.10808542370796204, -0.06173209846019745, -0.029844699427485466,
- 0.06175560504198074, 0.051515523344278336, 0.07443854212760925, 0.025074373930692673,
- -0.12555710971355438, -0.029089653864502907, 0.15626023709774017, -0.03050433285534382,
- -0.00968068279325962, 0.0030934077221900225, -0.004367535933852196, 0.11367446184158325,
- 0.18368291854858398, 0.0272506270557642, 0.010909203439950943, -0.005978564731776714,
- 0.025210436433553696, 0.035035114735364914, -0.012290404178202152, -0.0360037237405777,
- -0.042587876319885254, -0.08460335433483124, -0.07460980862379074, 0.0676196739077568,
- 0.045220013707876205, 0.00374454353004694, -0.11073578149080276, -0.03234266862273216,
- 0.020357608795166016
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 82,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 198,
- "similarity": 0.9974417686462402
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 72,
- "similarity": 0.9971898198127747
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 210,
- "similarity": 0.9970762133598328
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Oluwanifemi Kolawole"],
- "epoch_date_downloaded": 1603411200,
- "epoch_date_modified": 1607644800,
- "epoch_date_submitted": 1607644800,
- "flag": null,
- "report_number": 1382,
- "source_domain": "techpoint.africa",
- "submitters": ["Thomas Giallella (CSET)"],
- "title": "#LekkiMassacre: Why Facebook labelled content from October 20 incident ‘false’",
- "url": "https://techpoint.africa/2020/10/22/facebook-lekkimassacre-false/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "yahoo",
- "name": "Yahoo"
- },
- {
- "__typename": "Entity",
- "entity_id": "outlook",
- "name": "Outlook"
- },
- {
- "__typename": "Entity",
- "entity_id": "laposte",
- "name": "LaPoste"
- },
- {
- "__typename": "Entity",
- "entity_id": "gmx",
- "name": "GMX"
- },
- {
- "__typename": "Entity",
- "entity_id": "gmail",
- "name": "Gmail"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "yahoo",
- "name": "Yahoo"
- },
- {
- "__typename": "Entity",
- "entity_id": "outlook",
- "name": "Outlook"
- },
- {
- "__typename": "Entity",
- "entity_id": "laposte",
- "name": "LaPoste"
- },
- {
- "__typename": "Entity",
- "entity_id": "gmx",
- "name": "GMX"
- },
- {
- "__typename": "Entity",
- "entity_id": "gmail",
- "name": "Gmail"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "email-users",
- "name": "email users"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1383],
- "vector": [
- -0.053522635251283646, 0.09037710726261139, 0.0017273451667279005, -0.07892583310604095,
- 0.09739316999912262, -0.010880449786782265, 0.008544930256903172, 0.08831719309091568,
- 0.052131347358226776, -0.16612575948238373, 0.025245720520615578, 0.008586038835346699,
- 0.04285901039838791, -0.09911336749792099, -0.0006377060199156404, -0.13174676895141602,
- -0.1002148687839508, -0.011582544073462486, -0.02128511108458042, -0.0967331975698471,
- -0.11026585847139359, 0.03284691646695137, -0.03137167915701866, 0.13469885289669037,
- -0.03399325907230377, 0.08028078824281693, 0.1272924393415451, 0.10268329828977585,
- -0.0906425192952156, 0.06799212843179703, -0.04160742089152336, -0.08280223608016968,
- 0.15177297592163086, -0.012548064813017845, 0.012658893130719662, 0.10106907039880753,
- 0.007620234042406082, -0.020487885922193527, -0.030463486909866333, 0.04645286500453949,
- 0.05882857367396355, 0.22802747786045074, -0.019682617858052254, -0.010741491802036762,
- 0.03650057315826416, -0.03730405494570732, 0.024279648438096046, 0.016415780410170555,
- 0.021517470479011536, 0.010627997107803822, -0.014702539891004562, 0.004928693640977144,
- -0.016204731538891792, 0.043200332671403885, -0.10040925443172455, 0.03408252075314522,
- 0.02660180628299713, -0.04828320071101189, 0.03934265673160553, -0.1109088808298111,
- -0.06257390975952148, -0.21467195451259613, -0.0716690719127655, -0.09354191273450851,
- 0.1317736804485321, -0.0902949795126915, -0.048426564782857895, 0.07292208075523376,
- -0.01902422308921814, 0.04447467625141144, 0.057435713708400726, -0.01727495901286602,
- -0.03932271897792816, 0.038662705570459366, 0.00448133610188961, -0.024251742288470268,
- -0.0053628007881343365, 0.17525552213191986, -0.06860962510108948, 0.038237787783145905,
- 0.0737912729382515, -0.12097328901290894, 0.42272940278053284, 0.020498763769865036,
- -0.0466899648308754, 0.022584807127714157, 0.0836808905005455, -0.006277384236454964,
- 0.016433121636509895, 0.02918637916445732, -0.027264947071671486, 0.048551060259342194,
- -0.07608846575021744, -0.016267558559775352, 0.0513572134077549, 0.07061731070280075,
- 0.0029480336233973503, 0.010492523200809956, -0.01921822875738144, -0.04866889864206314,
- 0.041567012667655945, -0.057864464819431305, 0.14606913924217224, 0.07861844450235367,
- -0.045887935906648636, -0.03732506185770035, 0.10907207429409027, -0.04023472219705582,
- 0.06919115781784058, -0.03230929747223854, 0.018924620002508163, -0.02350040152668953,
- 0.05914604291319847, 0.019323881715536118, 0.030547620728611946, -0.024787958711385727,
- 0.04756994917988777, 0.05627581849694252, 0.06638053059577942, 0.0874687135219574,
- -0.04250189661979675, 0.06943856179714203, 0.06511330604553223, -0.04315068572759628,
- -0.05182719603180885, -0.028728168457746506, -0.018578341230750084,
- -0.048155754804611206, -0.011564463376998901, 0.03428642079234123,
- -0.041590508073568344, -0.2589147388935089, -0.0032426523976027966, 0.05433008074760437,
- -0.05879436805844307, -0.0250896904617548, 0.014270656742155552, -0.06305374205112457,
- 0.09032240509986877, -0.03165353089570999, 0.006624168250709772, 0.10622227936983109,
- -0.019891811534762383, 0.05218232050538063, 0.0935683324933052, 0.07292795181274414,
- -0.03731554001569748, -0.0568765290081501, 0.025067778304219246, -0.061520569026470184,
- 0.09831202775239944, -0.09054651111364365, -0.03539149463176727, -0.02612873539328575,
- 0.011381295509636402, 0.7407558560371399, 0.1540202647447586, 0.18345163762569427,
- 0.008244200609624386, -0.03282269462943077, 0.19097520411014557, 0.03104231134057045,
- 0.08231186866760254, -0.021948691457509995, -0.05087386444211006, 0.012731554917991161,
- -0.09244655072689056, -0.09096421301364899, 0.031859081238508224, 0.03526845946907997,
- 0.09526681154966354, 0.06373141705989838, 0.06192612275481224, -0.0038076923228800297,
- -0.11427395045757294, -0.017529107630252838, 0.0825086310505867, 0.050875093787908554,
- -0.12707668542861938, -0.02263089269399643, 0.06397563219070435, 0.12114079296588898,
- -0.09394719451665878, 0.023454338312149048, -0.04595809429883957, 0.029578298330307007,
- -0.01425456814467907, 0.07648888230323792, -0.02436779998242855, 0.0726056918501854,
- 0.066065713763237, 0.06662113964557648, -0.030125213786959648, -0.08947119861841202,
- -0.036672189831733704, 0.09314491599798203, 0.007526978384703398, -0.0530208982527256,
- 0.047036007046699524, -0.07507795095443726, 0.01752989925444126, 0.00002032191514445003,
- 0.150014728307724, -0.14739666879177094, 0.02880863845348358, -0.013963849283754826,
- -0.03652036190032959, 0.05803513899445534, 0.012300503440201283, -0.08483084291219711,
- -0.0449267216026783, 0.06143349036574364, 0.03754917159676552, 0.10745488107204437,
- 0.0491645410656929, -0.020123988389968872, 0.032812945544719696, 0.052904706448316574,
- -0.0034557997714728117, -0.03959926590323448, 0.0752236619591713, 0.06058372184634209,
- -0.029944585636258125, -0.031218841671943665, 0.018390029668807983,
- 0.031997546553611755, -0.010550722479820251, -0.009180823341012001, 0.055177241563797,
- 0.02196335233747959, -0.03485505282878876, 0.049304164946079254, 0.00048214997514151037,
- 0.025473283603787422, 0.116599440574646, -0.1247815415263176, 0.005578158423304558,
- -0.03987203538417816, -0.021989569067955017, 0.009850786067545414,
- 0.0024567795917391777, 0.06414449214935303, 0.10237886756658554, 0.03017028421163559,
- 0.012480092234909534, 0.003907065372914076, 0.04165428504347801, 0.04542993754148483,
- -0.043105289340019226, 0.026731863617897034, -0.005585971754044294,
- -0.05512527376413345, -0.011429667472839355, 0.009357276372611523, 0.07774901390075684,
- -0.017620744183659554, -0.0600544773042202, -0.007703933399170637, -0.0398532934486866,
- -0.05837123095989227, -0.1248110830783844, -0.043289244174957275, 0.00925575103610754,
- 0.00012019257701467723, -0.07733488827943802, -0.05476834252476692,
- -0.060206495225429535, 0.0107231754809618, 0.14111728966236115, -0.016307689249515533,
- -0.03366343304514885, -0.11047346889972687, 0.0029801162891089916,
- -0.017361188307404518, 0.020923849195241928, 0.004863142967224121,
- -0.0033767586573958397, 0.015024707652628422, -0.08215450495481491, 0.01897905021905899,
- 0.018250389024615288, -0.07113498449325562, -0.06458407640457153, -0.059804368764162064,
- -0.033598415553569794, -0.011590873822569847, 0.019161907956004143,
- -0.014042914845049381, 0.029073093086481094, 0.043145615607500076, 0.0697404220700264,
- -0.044739797711372375, -0.061795249581336975, 0.04335124045610428,
- -0.028888115659356117, 0.0414976142346859, 0.08765588700771332, -0.04218962416052818,
- -0.0008275486179627478, 0.010639391839504242, -0.13159175217151642,
- -0.03707386925816536, 0.012308403849601746, -0.02500861883163452, 0.019838768988847733,
- -0.01629912294447422, -0.01124235987663269, -0.04769236594438553, -0.06970638781785965,
- 0.06340440362691879, -0.034070052206516266, -0.11364995688199997, -0.06475662440061569,
- 0.11323682963848114, 0.00035697524435818195, -0.01138734444975853, 0.056369733065366745,
- -0.06842667609453201, 0.043584778904914856, -0.035019464790821075, 0.0432199127972126,
- 0.06723496317863464, 0.11233731359243393, -0.023287175223231316, 0.05431102588772774,
- 0.05877810716629028, -0.027683712542057037, -0.011938182637095451, 0.0642179548740387,
- 0.4618491232395172, -0.16985967755317688, 0.045915067195892334, 0.15024392306804657,
- -0.0016629621386528015, 0.04977841675281525, -0.09182421118021011, 0.07175161689519882,
- 0.08025523275136948, 0.1151515394449234, 0.1324070543050766, -0.06010550633072853,
- -0.0015024287858977914, -0.08272452652454376, 0.09653273224830627,
- -0.059432029724121094, 0.07551735639572144, -0.012453504838049412, -0.0640527755022049,
- -0.008203815668821335, 0.017940815538167953, -0.04577729478478432, 0.019240140914916992,
- -0.06449714303016663, -0.06056477501988411, 0.013866841793060303, 0.001911441097036004,
- 0.05966795235872269, -0.01705404743552208, 0.05944183096289635, -0.10629245638847351,
- 0.008131188340485096, 0.0484502874314785, -0.0007189589668996632, -0.15108251571655273,
- -0.0023743377532809973, -0.027368342503905296, -0.07776115834712982,
- 0.03987158462405205, 0.015321576036512852, 0.07210374623537064, 0.07386721670627594,
- -0.024403845891356468, 0.053756605833768845, -0.0007942239171825349,
- -0.03874940797686577, 0.033219218254089355, 0.05265425518155098, 0.024498961865901947,
- 0.0007220236584544182, 0.14897067844867706, -0.05904678627848625, -0.005830658599734306,
- -0.08374672383069992, 0.04767996817827225, 0.17010515928268433, 0.007436854299157858,
- 0.03850506618618965, 0.005970692727714777, -0.0001841025659814477, 0.011954261921346188,
- -0.05353625863790512, -0.07139646261930466, -0.018931783735752106,
- -0.018380803987383842, 0.11446140706539154, 0.0629766434431076, -0.04759944975376129,
- -0.16962654888629913, 0.018409164622426033, -0.02803885191679001, 0.06288131326436996,
- 0.10930157452821732, -0.10912800580263138, 0.07002222537994385, -0.028951402753591537,
- -0.026929806917905807, 0.008680780418217182, -0.07593285292387009, -0.03491339832544327,
- -0.09437568485736847, 0.04973815754055977, 0.02069113962352276, 0.06061844527721405,
- -0.09276916831731796, 0.1488417536020279, -0.07450211048126221, 0.08763382583856583,
- 0.011442618444561958, -0.05126229673624039, -0.007491384632885456,
- 0.0018223195802420378, 0.013461259193718433, -0.0031421883031725883,
- -0.048379600048065186, 0.017823273316025734, -0.02773790992796421, -0.05612875893712044,
- -0.07252354174852371, -0.1063983142375946, -0.026755282655358315, -0.1222732737660408,
- -0.021445423364639282, -0.12974916398525238, 0.009012543596327305, -0.03400981426239014,
- -0.035077277570962906, 0.007888629101216793, 0.028849061578512192, 0.06923317164182663,
- -0.13471172749996185, -0.05272547900676727, 0.011108861304819584, 0.0501646026968956,
- -0.04758143424987793, -0.08380430936813354, 0.0025894534774124622, 0.06282026320695877,
- 0.02131320722401142, -0.026921115815639496, -0.0009658911149017513,
- -0.07501774281263351, 0.10219045728445053, -0.1382640153169632, -0.3813495337963104,
- 0.05325787886977196, 0.07599655538797379, 0.03826850280165672, -0.029947388917207718,
- -0.13050758838653564, 0.0451800636947155, 0.0030360387172549963, -0.023621441796422005,
- 0.08617501705884933, -0.08344108611345291, 0.03785102441906929, -0.05809585377573967,
- -0.08910230547189713, -0.04194320738315582, -0.042018208652734756,
- -0.013840600848197937, 0.017868496477603912, -0.0019376390846446157,
- -0.0824628546833992, -0.11979679018259048, 0.024203211069107056, -0.023671014234423637,
- 0.04230395331978798, 0.019608372822403908, -0.0033295040484517813, -0.04538651928305626,
- -0.07076210528612137, 0.014032208360731602, 0.04939054325222969, 0.043949346989393234,
- -0.0793694257736206, 0.026664622128009796, 0.12126751244068146, 0.03659789636731148,
- 0.13310791552066803, 0.00254439702257514, 0.028722835704684258, -0.12551461160182953,
- 0.10422290116548538, 0.03581806644797325, 0.18376655876636505, -0.03305601328611374,
- 0.010629368014633656, 0.02927061915397644, 0.11441738903522491, 0.04666930064558983,
- 0.022671066224575043, -0.017101572826504707, 0.015815744176506996, 0.012961799278855324,
- -0.0021598106250166893, 0.09528234601020813, -0.10404127836227417, -0.0370180681347847,
- -0.028501387685537338, -0.013163432478904724, -0.040832001715898514,
- -0.07549839466810226, 0.2282690554857254, 0.027425257489085197, 0.04348728805780411,
- 0.056688934564590454, -0.07468745112419128, -0.010232054628431797, -0.04457509517669678,
- -0.1073029413819313, 0.010226343758404255, -0.013722031377255917, 0.008047139272093773,
- -0.028745464980602264, -0.10561807453632355, -0.040849946439266205,
- -0.023953691124916077, 0.02102631889283657, 0.11393321305513382, -0.10949108004570007,
- -0.00007629325409652665, -0.05185690149664879, 0.1327635645866394, 0.05073181912302971,
- 0.021759195253252983, 0.040752556174993515, 0.0798024982213974, -0.0020673542749136686,
- -0.025496557354927063, -0.07221213728189468, -0.08748756349086761,
- 0.0014342068461701274, 0.18602600693702698, -0.01653476245701313, 0.15269656479358673,
- 0.07583492994308472, -0.08366482704877853, -0.03790389746427536, 0.03356373682618141,
- -0.010413957759737968, 0.017236143350601196, -0.44840797781944275,
- -0.0020321705378592014, 0.13041085004806519, 0.0009383491124026477,
- -0.0024489981587976217, 0.10773687064647675, 0.053369078785181046, -0.07796671986579895,
- -0.05979078635573387, -0.10179369151592255, 0.17552728950977325, -0.010046612471342087,
- 0.02011352963745594, -0.1357654482126236, -0.03302651271224022, 0.08358651399612427,
- -0.07233081012964249, 0.008032717742025852, 0.03810150548815727, -0.1637190729379654,
- -0.023114843294024467, -0.013623572885990143, 0.1083233430981636, 0.016614194959402084,
- 0.04742812365293503, 0.11732503026723862, -0.07264874130487442, 0.022160105407238007,
- 0.0008617370622232556, 0.018417805433273315, 0.054249197244644165, 0.004486674442887306,
- -0.005435715429484844, 0.1050109937787056, 0.15918314456939697, 0.04559347406029701,
- -0.04637395963072777, 12.112261772155762, 0.03503542020916939, 0.040730636566877365,
- -0.10788393020629883, -0.022295458242297173, -0.05461902916431427,
- -0.0012449512723833323, -0.1016874760389328, 0.02730846032500267, 0.12057547271251678,
- 0.02544342540204525, -0.014812086708843708, -0.06826545298099518, -0.11744451522827148,
- 0.04054483771324158, -0.013304667547345161, -0.07133309543132782, -0.06592660397291183,
- 0.04675256088376045, -0.06632634997367859, -0.05377953499555588, 0.089012511074543,
- 0.08703252673149109, 0.06469453871250153, -0.03493814915418625, -0.0069660344161093235,
- 0.022728757932782173, 0.00674815196543932, -0.03044164925813675, 0.018652884289622307,
- 0.00718026515096426, -0.005199769511818886, 0.09403036534786224, 0.010803279466927052,
- 0.08086132258176804, 0.08432944864034653, 0.04815363883972168, 0.005268170032650232,
- 0.013666799291968346, 0.053041961044073105, -0.033726632595062256, 0.023770291358232498,
- 0.04945037141442299, 0.06523790955543518, 0.06830813735723495, 0.04790377989411354,
- 0.06792700290679932, 0.15510526299476624, 0.014051204547286034, 0.08027095347642899,
- 0.10376322269439697, -0.0026338614989072084, 0.09661132842302322, 0.05093500390648842,
- 0.006029633805155754, 0.050089821219444275, -0.034285541623830795, -0.0725686252117157,
- 0.08817741274833679, 0.07548216730356216, -0.07433193176984787, 0.14755846560001373,
- 0.029716525226831436, 0.0899580717086792, 0.04114910960197449, 0.027715420350432396,
- 0.08313249796628952, 0.08505386114120483, -0.18673352897167206, -0.15967486798763275,
- 0.037185702472925186, -0.09491021186113358, -0.09935548901557922, 0.06460878252983093,
- 0.054617833346128464, -0.047942813485860825, 0.034934014081954956, -0.0485905297100544,
- 0.02866627275943756, -0.00020889908773824573, -0.0005645076744258404,
- -0.004308429080992937, -0.01587590016424656, 0.03178584575653076, 0.03405092656612396,
- 0.027013633400201797, 0.10858429223299026, 0.09658118337392807, 0.020715409889817238,
- -0.10172612965106964, -0.06603498756885529, 0.06741714477539062, -0.029043149203062057,
- -0.05527413636445999, 0.05558968707919121, -0.06725116819143295, 0.09055353701114655,
- -0.15252840518951416, 0.07994525134563446, 0.08576899766921997, -0.08997044712305069,
- -0.03426440432667732, -0.02406998537480831, 0.07378553599119186, 0.054741717875003815,
- 0.023874539881944656, -0.04702707380056381, 0.024646880105137825, 0.015874188393354416,
- 0.06439852714538574, -0.04750796779990196, 0.07270193845033646, 0.044405143707990646,
- -0.08761079609394073, 0.05636971816420555, 0.07641933113336563, -0.030252492055296898,
- -0.018384508788585663, 0.03209739178419113, 0.04274768382310867, -0.10470431298017502,
- -0.028843460604548454, -0.025570273399353027, -0.07744315266609192,
- 0.011297555640339851, -0.04595974460244179, 0.03776480630040169, 0.02242177724838257,
- -0.03166556730866432, 0.010697662830352783, 0.0679144635796547, 0.07091812044382095,
- 0.08073602616786957, -0.06155500188469887, 0.05156851187348366, -0.01949986256659031,
- -0.06680998206138611, 0.018824124708771706, 0.0008379552746191621, 0.06867878884077072,
- -0.08986549824476242, -0.052585989236831665, -0.09259223192930222, -0.11257284134626389,
- 0.04436445236206055, 0.08099352568387985, 0.06184239685535431, 0.05108286067843437,
- 0.04243183135986328, -0.09808601438999176, -0.04666060209274292, 0.11043540388345718,
- 0.07083813846111298, 0.022379331290721893, 0.07034178823232651, -0.02160104364156723,
- -0.045078326016664505, 0.10766270756721497, -0.02231503650546074,
- 0.000025800944058573805, 0.026635104790329933, -0.04091183841228485,
- 0.08095458149909973, 0.10551957041025162, 0.07085774093866348, 0.05610073357820511,
- 0.045224498957395554, 0.019457006826996803, 0.01993042416870594, 0.011038790456950665,
- 0.002849738812074065, -0.03955958038568497, -0.06808523833751678, -0.08784344047307968,
- 0.03406842425465584, 0.099241241812706, 0.046306777745485306, -0.060794398188591,
- 0.01587492786347866, -0.014012888073921204
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 83,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 19,
- "similarity": 0.9981117844581604
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 13,
- "similarity": 0.9979597330093384
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 213,
- "similarity": 0.9978713989257812
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Nicolas Kayser-Bril"],
- "epoch_date_downloaded": 1604880000,
- "epoch_date_modified": 1607644800,
- "epoch_date_submitted": 1607644800,
- "flag": null,
- "report_number": 1383,
- "source_domain": "algorithmwatch.org",
- "submitters": ["Ingrid Dickinson (CSET)"],
- "title": "Spam filters are efficient and uncontroversial. Until you look at them.",
- "url": "https://algorithmwatch.org/en/story/spam-filters-outlook-spamassassin/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "facebook",
- "name": "Facebook"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "facebook",
- "name": "Facebook"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "facebook-users-interested-in-the-us-presidential-election",
- "name": "Facebook users interested in the US Presidential Election"
- },
- {
- "__typename": "Entity",
- "entity_id": "facebook-users-interested-in-covid-information",
- "name": "Facebook users interested in COVID information"
- },
- {
- "__typename": "Entity",
- "entity_id": "facebook-users",
- "name": "Facebook users"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1384],
- "vector": [
- -0.045914340764284134, 0.07925907522439957, 0.015431808307766914, -0.09500572830438614,
- 0.1368638277053833, -0.015161238610744476, -0.0018719758372753859, 0.07531167566776276,
- 0.05826361104846001, -0.13492049276828766, 0.018671682104468346, 0.057447854429483414,
- 0.008326076902449131, -0.14650510251522064, 0.06153005734086037, -0.052934687584638596,
- -0.10579916089773178, -0.04874709993600845, -0.014264360070228577, -0.10769833624362946,
- -0.0688018947839737, -0.019397716969251633, -0.01629040390253067, 0.1050424724817276,
- -0.018572509288787842, -0.01690485328435898, 0.07634209841489792, 0.1429004669189453,
- -0.02572852559387684, 0.013884099200367928, 0.007816994562745094, -0.05157759040594101,
- 0.1199115663766861, 0.00777604291215539, -0.010969233699142933, 0.09360585361719131,
- 0.04997691884636879, -0.030905572697520256, -0.026776820421218872, 0.01911749877035618,
- 0.004068837035447359, 0.20767012238502502, -0.003474439959973097, -0.02986386977136135,
- 0.03162147477269173, 0.0019309050403535366, -0.007109262514859438, 0.06828527897596359,
- -0.01850302331149578, -0.025465933606028557, -0.012190607376396656,
- 0.026190921664237976, -0.05229892581701279, 0.0017397477058693767, -0.09433597326278687,
- 0.06246219575405121, 0.03958512470126152, -0.019243884831666946, 0.09567297995090485,
- -0.0683743804693222, 0.013819575309753418, -0.2215740829706192, -0.024013854563236237,
- -0.05346738174557686, 0.09167791903018951, -0.08370262384414673, -0.025524204596877098,
- 0.019235247746109962, 0.020683804526925087, 0.04714681953191757, 0.060295525938272476,
- -0.07918921113014221, -0.028073424473404884, 0.046579014509916306, -0.01383273396641016,
- -0.007703585550189018, 0.04292866215109825, 0.13431479036808014, -0.07715664058923721,
- 0.030096882954239845, 0.0754377618432045, -0.10373082011938095, 0.34937769174575806,
- 0.02090204320847988, 0.006452551577240229, -0.039059922099113464, 0.09142807871103287,
- 0.06971118599176407, 0.015553913079202175, 0.04449804872274399, -0.04517501965165138,
- 0.036573246121406555, -0.10127139836549759, 0.043852731585502625, 0.050582874566316605,
- 0.04246538132429123, -0.04221361130475998, -0.023431411013007164, 0.007049596402794123,
- -0.06260788440704346, -0.01611192151904106, 0.012388828210532665, 0.12573900818824768,
- 0.027151210233569145, -0.05607052147388458, 0.00606848020106554, 0.04343188926577568,
- -0.04629065468907356, 0.07471377402544022, -0.050800081342458725, 0.020410507917404175,
- -0.023341456428170204, 0.07216183841228485, -0.009712904691696167, 0.029544541612267494,
- -0.040163055062294006, 0.0022691600024700165, 0.025867879390716553, 0.06860671192407608,
- 0.07837913930416107, 0.06169441342353821, 0.04509773477911949, 0.056979961693286896,
- -0.013561909087002277, -0.031217612326145172, -0.059106141328811646,
- -0.02452617697417736, -0.03436185419559479, -0.06170501187443733, 0.050454191863536835,
- -0.03739015758037567, -0.15612845122814178, -0.017538370564579964, 0.11265857517719269,
- 0.016867227852344513, -0.04373038560152054, 0.04520583152770996, -0.03766343370079994,
- -0.008017177693545818, -0.029692726209759712, -0.0448102205991745, 0.060539230704307556,
- 0.008197465911507607, 0.0337594673037529, 0.06838689744472504, 0.04684409499168396,
- -0.04770555719733238, -0.08214478194713593, -0.00988871231675148, -0.05072285979986191,
- 0.08094240725040436, -0.08760516345500946, -0.05790966376662254, -0.007872765883803368,
- -0.06293634325265884, 0.7293850779533386, 0.07189834862947464, 0.16791002452373505,
- 0.022960137575864792, -0.013617422431707382, 0.1518951654434204, 0.007923714816570282,
- 0.03453074395656586, -0.06771092861890793, -0.06648851186037064, 0.05205046758055687,
- -0.0663885697722435, -0.05539418011903763, 0.019159849733114243, 0.05340665951371193,
- 0.09282001107931137, 0.0051741390489041805, 0.09762609004974365, 0.06619977205991745,
- -0.08951355516910553, -0.07571976631879807, 0.05704578384757042, -0.003087576711550355,
- -0.10484299808740616, -0.025088133290410042, 0.11302588135004044, 0.08147270977497101,
- -0.05662793666124344, 0.02854597382247448, -0.03773846849799156, 0.03574260696768761,
- -0.023610437288880348, 0.06971818208694458, -0.02990996092557907, 0.09245901554822922,
- -0.014187653549015522, -0.00008140108548104763, 0.02170811966061592,
- -0.12041979283094406, -0.04472891613841057, 0.07493951916694641, -0.012304436415433884,
- -0.04438548907637596, 0.05039629712700844, -0.056049395352602005, 0.03099215030670166,
- -0.01746874488890171, 0.17128923535346985, -0.10730927437543869, -0.0011174562387168407,
- -0.0442139208316803, -0.007947761565446854, 0.01860642619431019, 0.025989022105932236,
- -0.02908264845609665, -0.0656626746058464, 0.08399283140897751, 0.00044089238508604467,
- 0.06147664040327072, 0.02585826814174652, -0.015917563810944557, 0.04669109359383583,
- 0.07422824203968048, -0.01605275832116604, -0.029229797422885895, 0.06913208216428757,
- 0.04007750749588013, -0.04545392841100693, -0.04427280277013779, 0.020146628841757774,
- 0.022646740078926086, 0.02417638525366783, -0.022871196269989014, 0.030739132314920425,
- 0.0017831354634836316, -0.02582539990544319, 0.03623523190617561, 0.05058141052722931,
- 0.0192105770111084, 0.083675317466259, -0.04971928894519806, -0.06812486052513123,
- -0.029694782570004463, -0.018033020198345184, 0.040539924055337906,
- -0.021462012082338333, 0.08215546607971191, 0.060318723320961, 0.07477443665266037,
- 0.04318905249238014, 0.0367131270468235, 0.057260505855083466, -0.008588486351072788,
- -0.0030146390199661255, 0.053436148911714554, -0.043778616935014725,
- -0.003748721443116665, -0.01680535264313221, 0.018616728484630585, 0.0212835855782032,
- -0.03392862528562546, -0.0197770893573761, -0.0036646691150963306,
- -0.026637885719537735, -0.0999494269490242, -0.05716288834810257, -0.08994952589273453,
- 0.08564136177301407, 0.05810241401195526, -0.019345466047525406, -0.08275796473026276,
- -0.062283653765916824, -0.01902962289750576, 0.0498613677918911, -0.03675796836614609,
- -0.03100602701306343, -0.09576500207185745, 0.03421473503112793, 0.008433063514530659,
- 0.04577305167913437, -0.01984560117125511, -0.04729682579636574, 0.04103116691112518,
- -0.04463523253798485, 0.042878855019807816, -0.04166911169886589, -0.034665245562791824,
- -0.04064898565411568, -0.05980965867638588, -0.07457023113965988, 0.03659724444150925,
- 0.008358663879334927, -0.03461417555809021, -0.0002497401728760451, 0.02036294899880886,
- 0.042855650186538696, 0.021911079064011574, -0.06418155133724213, 0.06504125893115997,
- -0.05818862468004227, -0.019012516364455223, 0.05681580677628517, -0.062252290546894073,
- 0.08621370792388916, 0.00342501956038177, -0.10523272305727005, -0.03863859921693802,
- 0.018564069643616676, -0.03286897391080856, 0.031433116644620895, 0.0012844910379499197,
- 0.013070624321699142, -0.06746931374073029, -0.03228491544723511, 0.050726767629384995,
- -0.08185330778360367, -0.12961676716804504, -0.08020052313804626, 0.10846248269081116,
- 0.024491235613822937, -0.014932441525161266, -0.0013348252978175879,
- -0.04275031015276909, 0.03862098231911659, -0.029855716973543167, 0.010566051118075848,
- -0.002175910398364067, -0.005176817532628775, 0.007403837516903877,
- 0.016340361908078194, 0.06073543801903725, -0.0751531794667244, 0.031041502952575684,
- 0.0663013607263565, 0.44779619574546814, -0.25203999876976013, 0.09401245415210724,
- 0.09856279194355011, 0.07479755580425262, 0.04017127305269241, -0.043742548674345016,
- 0.08595287799835205, 0.10804340988397598, 0.13357709348201752, 0.0508955717086792,
- -0.03931878134608269, 0.02696136012673378, -0.11635088920593262, 0.09788646548986435,
- -0.00793586578220129, 0.012775210663676262, -0.013813058845698833,
- -0.054177507758140564, -0.009433260187506676, 0.05529164522886276,
- -0.011237949132919312, -0.018956271931529045, -0.007769888732582331,
- -0.012451492249965668, 0.03127717971801758, -0.008112668059766293, 0.01634402759373188,
- -0.025146327912807465, 0.009224780835211277, 0.03738928958773613, 0.04205559939146042,
- 0.024831820279359818, 0.05363333597779274, -0.15718397498130798, 0.06579110771417618,
- -0.08347944170236588, -0.10786039382219315, 0.09281942993402481, -0.007334478665143251,
- 0.0487242117524147, 0.07940862327814102, -0.021984562277793884, 0.0363275520503521,
- 0.0040168799459934235, -0.03516353666782379, -0.019322998821735382, 0.121647909283638,
- 0.04862527921795845, 0.07347089052200317, 0.15512412786483765, -0.042218469083309174,
- -0.038967810571193695, -0.08957996219396591, 0.057042934000492096, 0.13998030126094818,
- -0.013192875310778618, -0.0012284694239497185, 0.003393458900973201,
- -0.09508120268583298, 0.0028415678534656763, 0.017944231629371643, -0.12607476115226746,
- -0.056563716381788254, -0.02031438611447811, 0.028573283925652504, 0.061898939311504364,
- -0.026415502652525902, -0.17843981087207794, -0.042629774659872055,
- -0.058364834636449814, 0.013877183198928833, 0.09225508570671082, -0.09246759861707687,
- 0.03320160135626793, 0.010614870116114616, 0.0018298260401934385, -0.02751431241631508,
- -0.08001284301280975, -0.0016313117230311036, 0.0019083385122939944,
- 0.047776173800230026, 0.028858762234449387, 0.046923838555812836, -0.07331129908561707,
- 0.09088588505983353, -0.08701016753911972, 0.04040222242474556, -0.04655524715781212,
- -0.0066610598005354404, -0.006624107714742422, -0.023657668381929398,
- 0.0027905458118766546, 0.002754741348326206, -0.023191774263978004,
- -0.036854662001132965, 0.0007350596715696156, -0.05216319486498833,
- -0.06068190187215805, -0.07069220393896103, -0.03396116942167282, -0.04816935956478119,
- 0.011713205836713314, -0.13346503674983978, -0.020449012517929077, -0.02763436734676361,
- -0.0412890799343586, -0.006143359001725912, 0.026910532265901566, 0.031478144228458405,
- -0.17907342314720154, -0.055465903133153915, 0.025372112169861794, 0.058591701090335846,
- 0.052508510649204254, -0.03149128332734108, 0.012079630978405476, 0.0927034467458725,
- 0.0586576946079731, -0.0010423671919852495, -0.00815283227711916, -0.055063869804143906,
- 0.050933632999658585, -0.12208721041679382, -0.471778005361557, 0.05004364252090454,
- 0.013097641058266163, 0.048520807176828384, 0.01851741038262844, -0.06131947785615921,
- 0.001652602106332779, 0.016395265236496925, -0.08344131708145142, 0.09750492125749588,
- -0.04442741721868515, 0.046508949249982834, -0.0016404826892539859,
- -0.025108814239501953, -0.031548019498586655, -0.058273766189813614,
- -0.05312493070960045, 0.02128695696592331, -0.05070154741406441, -0.07583180069923401,
- -0.09062635898590088, 0.009240211918950081, -0.0272340327501297, 0.004920909181237221,
- 0.010043330490589142, 0.021727439016103745, -0.10220908373594284, -0.03628749027848244,
- 0.04844490811228752, 0.13097620010375977, 0.03443305566906929, -0.06971640884876251,
- -0.011403319425880909, 0.04966519773006439, -0.026035014539957047, 0.11949820071458817,
- 0.021258357912302017, 0.004354696720838547, -0.05661394074559212, 0.0847661942243576,
- 0.05990586429834366, 0.18808645009994507, 0.036542925983667374, -0.009218869730830193,
- 0.029814312234520912, 0.13750411570072174, 0.02044423669576645, 0.033110253512859344,
- -0.06409338116645813, 0.03421291708946228, 0.022335516288876534, -0.022082364186644554,
- 0.06180453300476074, -0.0586438812315464, -0.04394080862402916, -0.017124464735388756,
- 0.01528824120759964, -0.05980090796947479, -0.014940177090466022, 0.25915056467056274,
- -0.015995748341083527, 0.02022913470864296, -0.018736133351922035, -0.08089438825845718,
- 0.007412082515656948, -0.07206878066062927, -0.08579345792531967, -0.02482047863304615,
- 0.0316353514790535, 0.04002949595451355, -0.024420220404863358, -0.08356840163469315,
- 0.019978158175945282, -0.002909513423219323, 0.023180708289146423, 0.1469709575176239,
- -0.015507500618696213, 0.0377182774245739, -0.01505019050091505, 0.10668633878231049,
- 0.01696590892970562, 0.01665271818637848, 0.08081914484500885, 0.1487199366092682,
- 0.049504633992910385, 0.02487756684422493, -0.02472306415438652, -0.035600267350673676,
- 0.003154071979224682, 0.13879619538784027, -0.0638880804181099, 0.16693006455898285,
- 0.08296576887369156, 0.007057780399918556, -0.041619107127189636, 0.03403543308377266,
- -0.019480673596262932, 0.012662403285503387, -0.46708759665489197, -0.04430338740348816,
- 0.0966864675283432, 0.04799162596464157, -0.012186362408101559, 0.08314668387174606,
- -0.012890193611383438, -0.04312055557966232, -0.015662290155887604, -0.0958215668797493,
- 0.12533098459243774, 0.02687161974608898, 0.06168259307742119, -0.09619175642728806,
- -0.009603997692465782, 0.10870397835969925, -0.020691195502877235, -0.0380558967590332,
- 0.05342394858598709, -0.1968865990638733, 0.0031842512544244528, -0.046002939343452454,
- 0.09818018972873688, 0.04798324033617973, 0.041406650096178055, 0.0794663056731224,
- -0.11271711438894272, 0.05102776736021042, 0.04474472999572754, -0.008515643887221813,
- 0.022107679396867752, 0.01008111797273159, -0.01436336524784565, 0.09623271971940994,
- 0.1261547952890396, 0.13334830105304718, -0.05907208099961281, 11.857076644897461,
- 0.05386027321219444, 0.02514338679611683, -0.11057720333337784, -0.012291660532355309,
- -0.0491018146276474, -0.001564368256367743, -0.09842852503061295, 0.0984380692243576,
- 0.16034062206745148, -0.007692133076488972, -0.027140198275446892, -0.07115237414836884,
- -0.09636430442333221, 0.04319261386990547, -0.02778877131640911, -0.057516276836395264,
- -0.06261685490608215, 0.04871821403503418, -0.04569566249847412, -0.030628710985183716,
- 0.10208918899297714, 0.06507008522748947, 0.017479415982961655, -0.0603581964969635,
- 0.009288075380027294, -0.03617136552929878, -0.0012778675882145762,
- 0.029488930478692055, -0.005414135754108429, 0.020953468978405, -0.01824609935283661,
- 0.08503153920173645, 0.03390175849199295, -0.00015589622489642352, 0.07852151244878769,
- 0.06305642426013947, 0.02038675732910633, 0.059098098427057266, 0.08668971806764603,
- 0.005007067695260048, 0.020882422104477882, -0.01117498055100441, 0.06467071175575256,
- 0.05825844779610634, 0.09275498241186142, 0.06754248589277267, 0.1264539510011673,
- 0.02852628566324711, 0.08103606849908829, 0.04248349741101265, -0.018373997882008553,
- 0.1287267804145813, -0.01448896899819374, -0.03742639720439911, 0.06324232369661331,
- -0.030345981940627098, -0.0904858186841011, 0.07815374433994293, -0.04275894910097122,
- -0.03652805835008621, 0.12085406482219696, -0.008213565684854984, 0.13828709721565247,
- -0.031872618943452835, 0.06319510191679001, 0.044971972703933716, 0.13361838459968567,
- -0.0809035673737526, -0.08997650444507599, 0.0023387714754790068, -0.12078174203634262,
- -0.09487152099609375, 0.07211364805698395, 0.10437313467264175, -0.043039847165346146,
- -0.05959312617778778, -0.003796999342739582, 0.029022682458162308, -0.02225920371711254,
- 0.02294492907822132, 0.05544547364115715, -0.01182648167014122, -0.012199612334370613,
- 0.03374704346060753, 0.013917570933699608, 0.04936428740620613, 0.11012185364961624,
- 0.026721078902482986, -0.06957225501537323, -0.07805372029542923, 0.11731576174497604,
- 0.01582074537873268, -0.023298140615224838, 0.02510344423353672, -0.06301423907279968,
- 0.034776028245687485, -0.1592889428138733, 0.07443495839834213, 0.09980643540620804,
- -0.05694729462265968, -0.025206994265317917, -0.040318820625543594, 0.06346496194601059,
- -0.005938414484262466, 0.027985678985714912, -0.0650695264339447, -0.04607613384723663,
- -0.01280351635068655, 0.048871416598558426, -0.033224474638700485, 0.032452117651700974,
- 0.07453551888465881, -0.05087222531437874, 0.039273135364055634, 0.006730214226990938,
- -0.012092630378901958, -0.02180085889995098, 0.06237126141786575, 0.016482464969158173,
- -0.06256040930747986, -0.010155539959669113, -0.0023451410233974457,
- 0.017025049775838852, -0.03319791704416275, -0.030356012284755707, 0.0373673290014267,
- 0.05016262084245682, -0.04806378483772278, 0.0033091355580836535, 0.022272491827607155,
- 0.06557755917310715, 0.11409582197666168, -0.00843881070613861, 0.051033489406108856,
- -0.040096987038850784, -0.03365916758775711, 0.0803641825914383, 0.04926476255059242,
- 0.07176477462053299, -0.005282163619995117, -0.003238116158172488, -0.0652308315038681,
- -0.11294280737638474, 0.028581108897924423, 0.04020237550139427, 0.035233668982982635,
- 0.018196560442447662, 0.0017439579823985696, -0.11047165840864182, -0.02391306683421135,
- 0.14041946828365326, 0.021280750632286072, 0.004991655703634024, 0.03586873039603233,
- -0.021148541942238808, -0.021499929949641228, 0.06872331351041794,
- -0.048621632158756256, 0.026151416823267937, 0.02273358777165413, -0.09155905991792679,
- 0.09014680981636047, 0.08762139081954956, -0.01556735672056675, 0.03390507772564888,
- 0.028474517166614532, 0.020922577008605003, 0.06651464849710464, -0.002219993621110916,
- 0.03693823516368866, -0.02089863270521164, -0.11214850097894669, -0.1061035618185997,
- 0.018611032515764236, 0.09412721544504166, 0.07722502201795578, -0.08219589293003082,
- -0.015086647123098373, 0.035117194056510925
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 84,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 7,
- "similarity": 0.9980894923210144
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 174,
- "similarity": 0.9980499148368835
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 16,
- "similarity": 0.9980288147926331
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Shannon Bond"],
- "epoch_date_downloaded": 1603929600,
- "epoch_date_modified": 1607644800,
- "epoch_date_submitted": 1607644800,
- "flag": null,
- "report_number": 1384,
- "source_domain": "npr.org",
- "submitters": ["Patrick Hall (BNH.ai)", "CSET annotators"],
- "title": "Tiny Changes Let False Claims About COVID-19, Voting Evade Facebook Fact Checks",
- "url": "https://www.npr.org/2020/10/09/921791419/tiny-changes-let-false-claims-about-covid-19-voting-evade-facebook-fact-checks"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "openai",
- "name": "OpenAI"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "openai",
- "name": "OpenAI"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "unknown",
- "name": "Unknown"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1385],
- "vector": [
- -0.11617138236761093, 0.09940508753061295, 0.043778568506240845, -0.06277186423540115,
- 0.09209293127059937, -0.06740141659975052, 0.04514790698885918, 0.07737015932798386,
- 0.12172924727201462, -0.13618597388267517, -0.01937137357890606, 0.035659920424222946,
- -0.0046734921634197235, -0.039045751094818115, 0.009988652542233467,
- -0.1528436690568924, -0.11186559498310089, -0.03502993658185005, -0.03077024780213833,
- -0.1616462767124176, -0.0453767366707325, -0.07141963392496109, 0.024549946188926697,
- 0.04744007810950279, -0.01871846243739128, 0.08628714084625244, 0.13128356635570526,
- 0.0978081077337265, -0.11150902509689331, 0.021685173735022545, -0.04641428962349892,
- -0.050877269357442856, 0.14327232539653778, 0.06313890963792801, 0.028918849304318428,
- 0.05481043830513954, -0.007026577368378639, 0.029128339141607285, -0.0697137713432312,
- 0.005052120890468359, -0.042420387268066406, 0.1902673989534378, 0.06826091557741165,
- -0.005126423202455044, 0.04951687902212143, -0.002215006621554494,
- -0.032577164471149445, 0.04278651624917984, 0.047917451709508896,
- -0.0029527335427701473, 0.010786120779812336, 0.03580053150653839, -0.04424646869301796,
- 0.009452363476157188, -0.0049585336819291115, 0.05404054746031761,
- -0.011228471994400024, 0.010648266412317753, 0.09735295921564102, -0.01786084845662117,
- 0.008120584301650524, -0.11090019345283508, -0.06871876120567322, -0.07116671651601791,
- 0.11633443087339401, -0.05318772420287132, 0.0003150980919599533, 0.05852678045630455,
- 0.02834443189203739, 0.0056032645516097546, 0.03972829505801201, 0.0017504586139693856,
- -0.012412477284669876, -0.04284690320491791, -0.016792479902505875,
- -0.06314881891012192, -0.016858883202075958, 0.15953122079372406, -0.12613368034362793,
- 0.011898006312549114, 0.0762639194726944, -0.10411687195301056, 0.21716062724590302,
- -0.02439342997968197, 0.03025234490633011, 0.06784936785697937, 0.08895853906869888,
- 0.023824982345104218, 0.03669389337301254, -0.012915653176605701, 0.0033607929944992065,
- 0.12375324219465256, -0.036777183413505554, 0.0032531514298170805, 0.01911384053528309,
- -0.00983410608023405, 0.0403989739716053, 0.017632557079195976, -0.031501367688179016,
- -0.017117813229560852, 0.018775764852762222, 0.010094251483678818, 0.08117012679576874,
- 0.043091848492622375, 0.023874660953879356, 0.051562801003456116, 0.05052201449871063,
- -0.02727457508444786, 0.0460299551486969, -0.055795855820178986, -0.013102871365845203,
- 0.0030095221009105444, 0.0034493713174015284, 0.0045599499717354774,
- 0.11046229302883148, -0.09181108325719833, 0.06880668550729752, 0.08951255679130554,
- 0.04139722138643265, 0.07371813803911209, -0.047346338629722595, 0.08026991784572601,
- 0.07768994569778442, -0.03475164622068405, 0.04077301546931267, 0.009734982624650002,
- 0.027106571942567825, -0.04454925283789635, -0.06696208566427231, 0.08933016657829285,
- -0.13986347615718842, -0.21096935868263245, 0.027243096381425858, -0.018222065642476082,
- 0.017540235072374344, -0.004226111341267824, 0.04202309995889664, -0.052782636135816574,
- 0.09990952908992767, -0.029735973104834557, -0.06031062826514244, 0.07688204199075699,
- -0.042470626533031464, 0.08277273178100586, 0.10209670662879944, -0.013787683099508286,
- 0.01389811746776104, -0.06588006019592285, 0.01390364021062851, -0.002549621043726802,
- 0.1040847897529602, -0.1526818722486496, -0.0691000297665596, -0.03210247680544853,
- -0.007497244980186224, 0.5723794102668762, 0.11673400551080704, 0.0593784935772419,
- -0.025804929435253143, -0.06625992804765701, 0.13920722901821136,
- 0.00018704243120737374, 0.04089214652776718, -0.05393332242965698,
- -0.042486727237701416, 0.018421610817313194, -0.07884427905082703, 0.006680528167635202,
- 0.015273882076144218, 0.005254413466900587, 0.13349442183971405, 0.015448365360498428,
- 0.053366489708423615, 0.0034657525829970837, -0.05510471761226654,
- -0.0004324890614952892, 0.022324230521917343, 0.038115087896585464,
- -0.17257274687290192, 0.012122728861868382, 0.049275953322649, 0.10880385339260101,
- -0.13742607831954956, -0.007318062242120504, -0.051936354488134384, 0.0432300940155983,
- 0.003501972882077098, 0.007503970060497522, -0.009991793893277645, -0.06263723224401474,
- 0.060171715915203094, 0.01755383238196373, -0.08104036748409271, -0.06303846091032028,
- 0.05347880348563194, 0.12500840425491333, -0.011885272338986397, -0.0667400062084198,
- 0.10936260968446732, -0.07607860118150711, -0.07451725006103516, 0.029755644500255585,
- 0.15292663872241974, -0.11070089042186737, 0.04082812741398811, -0.05682646483182907,
- -0.12688928842544556, 0.03502384573221207, 0.013250630348920822, -0.0510399155318737,
- -0.05396432429552078, 0.08392839133739471, -0.034685030579566956, 0.007938367314636707,
- 0.02294386923313141, -0.05502065643668175, 0.0475526824593544, -0.022488657385110855,
- 0.022116588428616524, -0.09598903357982635, 0.03639860823750496, 0.0792521983385086,
- -0.08345155417919159, -0.02199420891702175, 0.031920116394758224, 0.051117490977048874,
- -0.013257386162877083, 0.032353099435567856, 0.07598467171192169, 0.0038955172058194876,
- -0.08495351672172546, -0.00726785883307457, 0.03666070103645325, -0.022569460794329643,
- 0.07338399440050125, -0.10118268430233002, -0.019319171085953712, -0.031581513583660126,
- 0.0385875441133976, 0.0028399701695889235, -0.05434431508183479, 0.12519735097885132,
- 0.08022153377532959, 0.18329931795597076, 0.0021716030314564705, 0.03681584447622299,
- 0.08587013185024261, 0.04920085147023201, -0.04280000552535057, 0.04366390407085419,
- -0.010207995772361755, -0.008044920861721039, -0.03190041333436966,
- 0.008110539987683296, 0.08185242861509323, 0.035477928817272186, -0.0029358365572988987,
- -0.0036030770279467106, 0.0756637379527092, 0.043328773230314255, -0.11676819622516632,
- 0.0010427299421280622, 0.03889838233590126, 0.08350635319948196, -0.05715340003371239,
- -0.08504054695367813, -0.11718378216028214, -0.016891902312636375, 0.07729362696409225,
- 0.01775125041604042, 0.002932109637185931, -0.14710357785224915, -0.006055734120309353,
- -0.013049116358160973, 0.03399663791060448, 0.029055913910269737, -0.04170208051800728,
- 0.028828172013163567, -0.19000311195850372, 0.008837882429361343, 0.030149953439831734,
- -0.041046030819416046, 0.04295891150832176, -0.02063894271850586, -0.030805571004748344,
- -0.03130757063627243, -0.05290752276778221, -0.005850871559232473, 0.03029332309961319,
- 0.03672404959797859, 0.04996524751186371, -0.040162116289138794, -0.013021396473050117,
- 0.08092054724693298, -0.011301162652671337, 0.053360793739557266, 0.0794789046049118,
- -0.06217709556221962, -0.020782124251127243, -0.0526922270655632, -0.10301949828863144,
- -0.04494141787290573, -0.0019337661797180772, -0.08476652204990387, 0.07763875275850296,
- -0.045525506138801575, 0.031134018674492836, -0.036521006375551224,
- -0.04011840745806694, 0.07018477469682693, -0.04239335656166077, 0.018285134807229042,
- -0.07104317098855972, 0.08230295032262802, -0.00390941696241498, -0.013388442806899548,
- -0.04288613796234131, -0.07518051564693451, 0.056411609053611755, -0.054891422390937805,
- 0.00862935371696949, 0.05041864514350891, 0.05179550498723984, -0.05394601821899414,
- 0.04979148134589195, 0.12066853046417236, 0.07684925943613052, 0.005661562085151672,
- 0.05535566434264183, 0.4348560869693756, -0.20467546582221985, 0.06603977084159851,
- 0.06304267048835754, -0.003369913436472416, 0.009457728825509548, -0.011762628331780434,
- 0.05511590093374252, 0.00903106015175581, 0.013884121552109718, 0.026942694559693336,
- -0.09757179766893387, -0.043136291205883026, -0.016276858747005463, 0.05583679676055908,
- 0.001825908082537353, 0.04014795646071434, -0.06038478761911392, -0.03535629063844681,
- 0.031810276210308075, -0.03799637034535408, -0.030358588322997093, 0.01091937255114317,
- -0.07798060029745102, -0.11187612265348434, -0.019445104524493217, 0.011938704177737236,
- -0.006512898951768875, -0.004741856828331947, 0.03915839642286301,
- -0.012658419087529182, 0.003981192596256733, -0.013390847481787205, 0.0650138184428215,
- -0.1767963469028473, 0.09519851952791214, -0.16663402318954468, -0.13705690205097198,
- 0.0395035557448864, -0.024789469316601753, 0.08954212814569473, 0.08076093345880508,
- 0.01202209573239088, 0.08813963085412979, 0.008438242599368095, -0.0649443045258522,
- 0.027778858318924904, -0.016718855127692223, -0.012645676732063293,
- 0.006341086700558662, 0.17646542191505432, -0.025762803852558136, 0.029590396210551262,
- -0.1215473860502243, 0.072850801050663, 0.06389269977807999, -0.055518995970487595,
- 0.04653533548116684, 0.000502576760482043, 0.10991550981998444, 0.03087468072772026,
- -0.06250309199094772, -0.04033717140555382, -0.03300033509731293, -0.02433960512280464,
- 0.051104187965393066, 0.07364390045404434, -0.05238093063235283, -0.1972924917936325,
- -0.051334187388420105, -0.03311314806342125, 0.017955122515559196, 0.21756504476070404,
- -0.0708182230591774, 0.08734417706727982, 0.0033790799789130688, -0.027929211035370827,
- 0.04396188259124756, -0.06591245532035828, 0.02108488790690899, -0.08368878811597824,
- 0.06382578611373901, 0.028283115476369858, 0.00929915253072977, -0.1345597207546234,
- 0.1304580718278885, -0.10068146139383316, 0.08904805779457092, -0.0451158732175827,
- -0.058073461055755615, 0.08231302350759506, -0.006529143080115318, 0.033240243792533875,
- 0.056594446301460266, -0.06354055553674698, 0.010036823339760303, -0.017100131139159203,
- 0.011054581962525845, -0.11502561718225479, -0.08688903599977493, -0.061043646186590195,
- -0.025471286848187447, 0.08317243307828903, -0.07446809858083725, -0.011974714696407318,
- -0.07924013584852219, -0.0094395587220788, -0.013575566932559013, -0.006862640380859375,
- 0.026062939316034317, -0.15073783695697784, -0.05828273296356201, -0.025535456836223602,
- 0.014894704334437847, 0.014874687418341637, -0.0668916180729866, 0.018680162727832794,
- 0.08910226821899414, 0.07482871413230896, -0.043679844588041306, 0.02040664106607437,
- -0.11322770267724991, 0.05461091548204422, -0.10513454675674438, -0.5831102728843689,
- 0.05566432699561119, 0.05160682648420334, -0.014352896250784397, 0.02194264717400074,
- -0.0808771550655365, 0.05447634682059288, 0.05046746879816055, -0.003496779827401042,
- 0.09419861435890198, -0.04859630763530731, 0.025641469284892082, 0.013631884008646011,
- -0.0002063817228190601, -0.046416278928518295, -0.05821983143687248,
- 0.01571505144238472, -0.0002810994628816843, -0.04142788052558899, -0.07279623299837112,
- -0.05771692842245102, 0.001205282169394195, -0.020637474954128265, 0.061219681054353714,
- -0.031429473310709, -0.015825703740119934, -0.015836527571082115, -0.032973602414131165,
- 0.01561560295522213, 0.016844013705849648, -0.008781899698078632, -0.03090175800025463,
- -0.003652687417343259, 0.07669144123792648, 0.01726423390209675, 0.16528013348579407,
- 0.022616984322667122, -0.03379976749420166, -0.13637037575244904, 0.01610041782259941,
- 0.09943229705095291, 0.18342077732086182, 0.002103294711560011, 0.05184130743145943,
- -0.02401888184249401, 0.14089538156986237, 0.06925685703754425, 0.06150001287460327,
- -0.03298347070813179, 0.062131114304065704, 0.12603312730789185, -0.026690591126680374,
- 0.03630850464105606, -0.08607827872037888, 0.0009359774412587285, 0.046089936047792435,
- -0.018819760531187057, -0.022236451506614685, -0.04732159897685051, 0.17209306359291077,
- 0.04310077801346779, 0.045711811631917953, 0.01801285520195961, -0.0015456918627023697,
- -0.06002126634120941, -0.03600219264626503, -0.054009757936000824,
- -0.018763788044452667, -0.009660474956035614, -0.00588004058226943,
- -0.009491901844739914, -0.1327449083328247, -0.0025426738429814577, 0.06643295288085938,
- -0.05045260488986969, 0.052989229559898376, -0.07760583609342575, 0.03495769947767258,
- -0.02336014062166214, 0.13788935542106628, 0.06923694908618927, 0.12159594893455505,
- 0.03692452237010002, -0.01534170564264059, 0.08417368680238724, -0.0064413766376674175,
- -0.09697289764881134, -0.060478318482637405, 0.0016067546093836427, 0.14906559884548187,
- -0.05360129475593567, 0.10403110086917877, -0.0372592993080616, -0.0028540187049657106,
- -0.0371830016374588, 0.06354884803295135, 0.02615651674568653, -0.05680467188358307,
- -0.46070751547813416, -0.030355937778949738, 0.21794714033603668, -0.015010535717010498,
- 0.045177556574344635, 0.09543508291244507, 0.12473898380994797, -0.08338504284620285,
- 0.020504944026470184, -0.14702695608139038, 0.15846292674541473, 0.007350053638219833,
- 0.08151264488697052, -0.14631572365760803, 0.020480338484048843, 0.07461380213499069,
- -0.05911829695105553, -0.057560794055461884, 0.0767887532711029, -0.2697613835334778,
- -0.032055146992206573, -0.06718704104423523, 0.18248328566551208, -0.026700643822550774,
- 0.07155463099479675, 0.0945931226015091, -0.013975617475807667, 0.0165398009121418,
- 0.08634638041257858, 0.026300307363271713, 0.09513113647699356, 0.03420483320951462,
- -0.07358939945697784, 0.13175201416015625, 0.0781780406832695, 0.054902300238609314,
- -0.01148113701492548, 12.169824600219727, 0.09326592832803726, 0.1089620515704155,
- -0.0376717746257782, -0.02327674627304077, -0.05499158427119255, -0.0016211058245971799,
- -0.025994768366217613, 0.05481575056910515, 0.10319032520055771, -0.003050012979656458,
- -0.053913868963718414, 0.027452126145362854, -0.1100209504365921, 0.008953243494033813,
- -0.05597410723567009, 0.030737796798348427, -0.06334663182497025, 0.026261482387781143,
- -0.02841741405427456, -0.03158547356724739, 0.05690372362732887, 0.09535396099090576,
- -0.06411052495241165, -0.0552842952311039, 0.07732947915792465, -0.06279193609952927,
- -0.03089781664311886, -0.024446673691272736, 0.056229785084724426,
- -0.041149988770484924, 0.06880931556224823, 0.004881348926573992, 0.0158065278083086,
- -0.037483423948287964, -0.0013843170600011945, -0.033344436436891556,
- 0.019252367317676544, 0.012596407905220985, 0.0872156023979187, -0.024206655099987984,
- 0.030207233503460884, 0.03049883060157299, 0.05910094827413559, 0.019831692799925804,
- 0.022173352539539337, 0.04596948251128197, 0.14121344685554504, 0.029748551547527313,
- 0.09908783435821533, 0.09318787604570389, -0.016979990527033806, 0.13461630046367645,
- 0.02250290848314762, 0.033272888511419296, 0.04020284488797188, -0.009942005388438702,
- -0.07776031643152237, 0.0722532868385315, 0.05018727481365204, -0.06738673895597458,
- 0.13854758441448212, 0.05332157760858536, 0.04979226365685463, 0.02622474916279316,
- 0.10407137125730515, 0.06315871328115463, 0.05167032405734062, -0.10968085378408432,
- -0.09298145771026611, 0.001250321394763887, -0.073976069688797, -0.025247687473893166,
- -0.01834167167544365, 0.09441526234149933, 0.014294533990323544, 0.05018535256385803,
- -0.034474559128284454, 0.08721072971820831, -0.08104535937309265, 0.009355122223496437,
- 0.01554775983095169, -0.05179160460829735, 0.07938679307699203, -0.012310752645134926,
- 0.04816003516316414, 0.017819171771407127, 0.10547148436307907, 0.08586206287145615,
- -0.09787170588970184, -0.1407134085893631, 0.061046961694955826, -0.06554295122623444,
- -0.08485192060470581, -0.0016350307269021869, -0.06173234060406685, 0.0713120773434639,
- -0.10926025360822678, 0.08170804381370544, 0.11655104160308838, -0.09236235916614532,
- -0.029602454975247383, -0.014645633287727833, 0.11956220865249634,
- -0.043501172214746475, 0.058775849640369415, -0.042989835143089294,
- 0.024889769032597542, 0.034822288900613785, 0.07522992044687271, -0.039046235382556915,
- 0.06782036274671555, 0.05499890446662903, -0.06501597911119461, 0.06934287399053574,
- 0.07754021883010864, -0.04547693580389023, 0.004253545310348272, 0.04643348231911659,
- -0.0545368455350399, -0.10022968798875809, -0.025047576054930687, -0.05838586017489433,
- -0.018314963206648827, -0.047413937747478485, -0.08030331134796143, 0.04626402258872986,
- -0.029125001281499863, 0.017623500898480415, 0.004394842311739922,
- -0.024000240489840508, 0.0633544921875, 0.14992474019527435, -0.018362335860729218,
- 0.05178624764084816, -0.07862629741430283, -0.035475995391607285, 0.03950268402695656,
- 0.0781208947300911, 0.08166540414094925, -0.035388704389333725, 0.024120589718222618,
- -0.02721131406724453, -0.12912259995937347, -0.00047876834287308156, 0.1422622799873352,
- 0.12768688797950745, 0.04016348347067833, 0.04276002198457718, -0.03471345826983452,
- -0.05692916736006737, 0.11202435940504074, 0.009792502969503403, -0.07297840714454651,
- -0.01728423312306404, -0.066244937479496, -0.02504201978445053, 0.12241392582654953,
- -0.02008393034338951, -0.05066327005624771, -0.018806438893079758, -0.09108572453260422,
- 0.046904947608709335, 0.0741347223520279, 0.0506204292178154, 0.017796412110328674,
- -0.04471138119697571, 0.03895305097103119, 0.06597474217414856, 0.00419432669878006,
- 0.038639917969703674, -0.044505562633275986, -0.08046872168779373, -0.04077647253870964,
- 0.08903994411230087, 0.07678461074829102, 0.04152248427271843, -0.07542958110570908,
- -0.04886958748102188, -0.025954358279705048
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 85,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 120,
- "similarity": 0.9962847232818604
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 58,
- "similarity": 0.9962676167488098
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 6,
- "similarity": 0.996110737323761
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["SkyNews"],
- "epoch_date_downloaded": 1603929600,
- "epoch_date_modified": 1607644800,
- "epoch_date_submitted": 1607644800,
- "flag": null,
- "report_number": 1385,
- "source_domain": "skynews.com.au",
- "submitters": ["Patrick Hall (BNH.ai)", "CSET annotators"],
- "title": "AI attempts to ease fear of robots, blurts out it can’t ‘avoid destroying humankind’",
- "url": "https://www.skynews.com.au/details/_6189352902001"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "irish-department-of-education-and-skills",
- "name": "Irish Department of Education and Skills"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "irish-department-of-education-and-skills",
- "name": "Irish Department of Education and Skills"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "leaving-certificate-exam-takers",
- "name": "Leaving Certificate exam takers"
- },
- {
- "__typename": "Entity",
- "entity_id": "irish-department-of-education-and-skills",
- "name": "Irish Department of Education and Skills"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [2038, 1386],
- "vector": [
- -0.08186973631381989, 0.06470544636249542, 0.0030320780351758003, -0.04939508065581322,
- 0.11741264164447784, -0.008517276495695114, 0.012942565605044365, 0.05414598062634468,
- 0.1504811942577362, -0.08731760084629059, 0.01973116770386696, 0.05314651131629944,
- 0.012025025673210621, -0.021019987761974335, 0.03876737877726555, -0.19645026326179504,
- -0.19760000705718994, -0.0479191392660141, -0.1019253209233284, -0.1145007312297821,
- -0.09851732850074768, 0.03117169439792633, 0.03407721593976021, 0.12289930880069733,
- -0.015376749448478222, 0.06785876303911209, 0.08870838582515717, 0.10425734519958496,
- -0.09607534110546112, 0.046023909002542496, -0.030757296830415726,
- -0.022232428193092346, 0.14388978481292725, 0.061381746083498, -0.019554797559976578,
- 0.1560986340045929, -0.047894928604364395, -0.00039078923873603344, 0.04351489618420601,
- -0.006226453930139542, 0.057568930089473724, 0.269876092672348, 0.001926338649354875,
- -0.020799150690436363, -0.018084386363625526, -0.0704037994146347, 0.007241776213049889,
- 0.02420591562986374, -0.003911701031029224, 0.02955438382923603, -0.0011299184989184141,
- 0.0038001229986548424, -0.014170633628964424, 0.07414557784795761, -0.10442258417606354,
- 0.06196896731853485, 0.04392804577946663, -0.01022298913449049, 0.03456228971481323,
- -0.13625067472457886, -0.03009849786758423, -0.2248249053955078, -0.04789385199546814,
- -0.09894923865795135, 0.07927925884723663, -0.1227378100156784, -0.03846639394760132,
- 0.015306254848837852, -0.024761546403169632, 0.09852476418018341, 0.04310372471809387,
- 0.05002153292298317, -0.009186580777168274, -0.002543194219470024,
- -0.018746770918369293, -0.0622885525226593, -0.00536369439214468, 0.25374913215637207,
- -0.0840921550989151, -0.002250930294394493, 0.08050065487623215, -0.12443146109580994,
- 0.4470307230949402, -0.026048189029097557, 0.006347072776407003, -0.040750063955783844,
- 0.08983870595693588, 0.010420682840049267, 0.04832678660750389, 0.055651672184467316,
- -0.042345080524683, 0.05528895556926727, -0.01585777848958969, 0.05188167095184326,
- 0.06841100007295609, 0.05049693211913109, -0.02238122932612896, 0.08035255968570709,
- -0.016349580138921738, -0.05495468154549599, -0.003886778838932514,
- -0.06610149890184402, 0.07344186305999756, 0.09740996360778809, -0.061789728701114655,
- -0.0021506245248019695, 0.08629046380519867, -0.01933305710554123, 0.04061827436089516,
- -0.05019824951887131, -0.006081624887883663, -0.005982004106044769,
- 0.061838530004024506, -0.028459511697292328, 0.007971091195940971, -0.07676124572753906,
- 0.013459033332765102, 0.06356216967105865, 0.07418224215507507, 0.039899423718452454,
- -0.0789700299501419, 0.042509425431489944, 0.055904801934957504, -0.059568826109170914,
- 0.028356939554214478, -0.03472883999347687, -0.13021966814994812, -0.038034968078136444,
- -0.000010794028639793396, 0.02176840789616108, -0.13039830327033997,
- -0.19304874539375305, 0.03305813670158386, 0.05423969402909279, -0.015538934618234634,
- -0.03764202818274498, -0.005323511082679033, -0.09335879236459732, 0.1044517308473587,
- -0.06899847835302353, -0.020866913720965385, 0.02336062118411064, -0.015563758090138435,
- 0.038180943578481674, 0.10971483588218689, 0.062294334173202515, -0.03664954751729965,
- 0.0246990155428648, 0.009286131709814072, -0.050584182143211365, 0.10934607684612274,
- -0.1501787006855011, -0.0293809212744236, -0.03572496026754379, 0.0015401262789964676,
- 0.677544355392456, 0.1241971030831337, 0.14203453063964844, 0.023610837757587433,
- -0.046982355415821075, 0.16836640238761902, 0.06545425206422806, 0.04577922821044922,
- -0.06833809614181519, -0.07400894165039062, 0.03834905847907066, -0.04761388152837753,
- -0.07391295582056046, 0.05256384611129761, -0.006097197998315096, 0.11115536093711853,
- 0.019109807908535004, 0.11174152791500092, -0.0234405267983675, -0.15180692076683044,
- -0.06668947637081146, 0.11778008937835693, 0.03476569429039955, -0.14723780751228333,
- -0.03346944600343704, 0.009014546871185303, 0.08983872830867767, -0.1373077630996704,
- 0.03174424543976784, -0.1071075052022934, 0.038279224187135696, -0.01591368019580841,
- 0.06796236336231232, -0.008210977539420128, 0.04337030649185181, 0.07962436974048615,
- 0.010158638469874859, 0.013495136983692646, -0.05892087519168854, 0.010057165287435055,
- 0.11641927063465118, -0.01510368101298809, -0.028500743210315704, 0.07363593578338623,
- -0.13170365989208221, 0.004523156676441431, 0.016585683450102806, 0.20811593532562256,
- -0.18673895299434662, -0.03324926644563675, -0.02624325640499592, -0.06677349656820297,
- 0.08442911505699158, 0.03510846570134163, -0.06882733106613159, -0.03828436881303787,
- 0.060916751623153687, 0.023914461955428123, 0.08439812064170837, 0.06477951258420944,
- -0.04082470014691353, 0.09249977767467499, 0.10832276195287704, 0.029121719300746918,
- -0.013853182084858418, 0.08471529185771942, 0.11607371270656586, -0.07578887045383453,
- 0.02287253737449646, 0.03856552392244339, -0.031064871698617935, 0.028480326756834984,
- 0.0003462864551693201, 0.022305071353912354, -0.005446138791739941,
- -0.05827278643846512, 0.04287753626704216, -0.026047445833683014, 0.0024442593567073345,
- 0.08182211220264435, -0.13782814145088196, -0.07280823588371277, -0.0590713769197464,
- -0.057388465851545334, 0.02052130177617073, 0.007964115589857101, 0.11927508562803268,
- 0.10066714137792587, 0.08097383379936218, -0.029969369992613792, 0.012213155627250671,
- 0.054623156785964966, 0.01027705892920494, 0.02736162394285202, -0.01381476130336523,
- -0.01070902869105339, -0.09490390121936798, -0.011822803877294064, -0.03502177074551582,
- 0.013741216622292995, 0.03196170926094055, -0.08402281999588013, -0.013508977368474007,
- 0.028912343084812164, -0.08439625054597855, -0.08458645641803741, -0.016257118433713913,
- 0.048865847289562225, 0.006945032626390457, -0.0757051333785057, -0.12398609519004822,
- -0.09625551104545593, -0.01136536244302988, 0.13079339265823364, -0.056665755808353424,
- -0.017905449494719505, -0.10189957916736603, 0.0013154596090316772,
- -0.017017636448144913, 0.06122720241546631, -0.047871120274066925,
- -0.006728027947247028, 0.05534474551677704, -0.07640905678272247, 0.021242281422019005,
- -0.02565312758088112, -0.1487008035182953, -0.08159958571195602, -0.07949118316173553,
- -0.04057491943240166, 0.006680605001747608, 0.008725617080926895, 0.002472839318215847,
- 0.036613188683986664, 0.03773099556565285, 0.08718478679656982, 0.013182718306779861,
- -0.03791447728872299, 0.08827769756317139, -0.019304005429148674, 0.011913109570741653,
- 0.1144685298204422, -0.10099474340677261, 0.021784652024507523, -0.04132583364844322,
- -0.14514699578285217, -0.009384231641888618, -0.008317345753312111,
- -0.05494990199804306, 0.08052337169647217, -0.05088250711560249, -0.018944935873150826,
- -0.032653674483299255, -0.06664474308490753, 0.03932900354266167, -0.045548491179943085,
- -0.11599019169807434, -0.059513870626688004, 0.10638295114040375, 0.033692941069602966,
- 0.014331571757793427, 0.026943355798721313, 0.01145963929593563, 0.048665691167116165,
- 0.022652775049209595, -0.021153917536139488, 0.05123651400208473, 0.07834500819444656,
- -0.07493939995765686, 0.08213105797767639, 0.140642911195755, -0.03937041759490967,
- 0.012720230035483837, 0.04616110771894455, 0.4548165798187256, -0.27152377367019653,
- 0.09812143445014954, 0.07819171994924545, 0.002591252326965332, 0.03495638072490692,
- -0.09066537022590637, 0.07436586916446686, 0.09487736970186234, 0.14747005701065063,
- 0.18237784504890442, -0.07139015197753906, -0.02344297058880329, -0.05539888143539429,
- 0.10809820890426636, 0.032951775938272476, 0.026217233389616013, 0.002149405889213085,
- -0.1397792547941208, -0.0366150438785553, -0.05644639581441879, -0.060088302940130234,
- 0.022439973428845406, 0.018861649557948112, -0.04434456676244736, 0.013337522745132446,
- 0.003857855685055256, -0.048519983887672424, 0.0015323810512199998,
- 0.024144381284713745, -0.05571836233139038, 0.027835950255393982, 0.02639974281191826,
- 0.026104236021637917, -0.14090277254581451, 0.012105908244848251, -0.11204437911510468,
- -0.11723111569881439, 0.1124238669872284, 0.03539610281586647, 0.03723651170730591,
- 0.08733201026916504, -0.09938250482082367, 0.04395470395684242, -0.009388037025928497,
- -0.06559418141841888, 0.0498385913670063, 0.044654395431280136, 0.030081016942858696,
- 0.04328452795743942, 0.1868508756160736, -0.0614432767033577, 0.03687724471092224,
- -0.11343985050916672, 0.04085230827331543, 0.18696364760398865, -0.052950747311115265,
- -0.013643555343151093, -0.0019077358301728964, 0.013439121656119823,
- 0.019951175898313522, -0.04663500189781189, -0.10354524850845337, -0.0600820891559124,
- -0.04750250279903412, 0.10408119857311249, 0.035229358822107315, -0.07442270964384079,
- -0.09684508293867111, -0.056273479014635086, -0.027066951617598534, 0.05156780034303665,
- 0.10934550315141678, -0.05687814578413963, 0.07110276073217392, -0.05868463218212128,
- -0.05613883212208748, 0.07083495706319809, -0.08676846325397491, -0.039325058460235596,
- -0.13395380973815918, 0.0367417186498642, 0.044901032000780106, 0.053795695304870605,
- -0.08231457322835922, 0.2241569608449936, -0.09244662523269653, 0.06844306737184525,
- 0.012825348414480686, -0.050896696746349335, 0.04644389450550079, -0.0297396257519722,
- 0.07065577805042267, 0.019604217261075974, -0.028172768652439117, 0.061406366527080536,
- -0.007453923113644123, 0.01266611460596323, -0.10520912706851959, -0.09938883781433105,
- -0.05705675110220909, -0.11666883528232574, 0.040715061128139496, -0.0478358156979084,
- -0.011482853442430496, -0.04910407215356827, -0.05157467722892761, 0.009811658412218094,
- 0.0693429559469223, 0.05497322604060173, -0.21044650673866272, -0.020450066775083542,
- -0.018396690487861633, 0.06065715104341507, 0.03412851691246033, -0.0058717732317745686,
- -0.02309994399547577, 0.038658507168293, 0.08514072000980377, -0.033319711685180664,
- 0.024015624076128006, -0.044303834438323975, 0.03060898929834366, -0.11854000389575958,
- -0.3148977756500244, 0.021887028589844704, -0.03229587897658348, 0.019042976200580597,
- 0.0015386110171675682, -0.0737655758857727, 0.021597327664494514,
- -0.0068909600377082825, -0.04509863257408142, 0.10279596596956253, -0.01959758624434471,
- 0.04147031530737877, -0.033234115689992905, -0.10601229965686798, -0.04211879149079323,
- -0.0151347192004323, -0.03355070576071739, 0.10058815032243729, -0.006276046857237816,
- -0.0746908187866211, -0.07801618427038193, 0.021345939487218857, -0.03337113931775093,
- 0.06480967998504639, 0.012052090838551521, 0.03563160449266434, -0.09952706098556519,
- -0.07309763133525848, 0.014077632687985897, 0.03749413415789604, 0.03634379059076309,
- -0.08673791587352753, -0.01529846340417862, 0.10588300228118896, 0.00785135105252266,
- 0.14321616291999817, 0.0022519424092024565, 0.010754612274467945, -0.10591539740562439,
- 0.15064102411270142, 0.07161633670330048, 0.17607922852039337, 0.006731277797371149,
- 0.01026805117726326, 0.05694373697042465, 0.19280049204826355, 0.04351634159684181,
- -0.0030925527680665255, -0.025279637426137924, 0.010582207702100277,
- 0.04159480333328247, 0.001182857435196638, 0.08325839042663574, -0.09834389388561249,
- 0.027378231287002563, -0.03143691271543503, 0.018409304320812225, -0.004906592890620232,
- -0.017183419317007065, 0.24224019050598145, 0.07887447625398636, 0.05571518838405609,
- 0.00026185926981270313, -0.13456901907920837, -0.006353455595672131,
- -0.08850061893463135, -0.043633900582790375, -0.0023805545642971992,
- 0.012973708100616932, -0.02644980140030384, -0.025776701048016548, -0.1297781765460968,
- -0.05507680028676987, 0.005492796190083027, -0.027876289561390877, 0.09404059499502182,
- 0.027622800320386887, 0.04429008811712265, -0.05298461765050888, 0.1549989879131317,
- 0.08405762910842896, 0.04773285239934921, -0.0028639151714742184, 0.05853019654750824,
- 0.023266660049557686, -0.01608875021338463, -0.09051346778869629, -0.10636544227600098,
- -0.015940802171826363, 0.20343363285064697, -0.07815142720937729, 0.14287731051445007,
- -0.0019759507849812508, -0.013530083000659943, -0.08769015967845917,
- 0.010092366486787796, -0.08523145318031311, -0.009919730946421623, -0.4354477524757385,
- -0.01978924497961998, 0.15719667077064514, -0.007169944699853659, -0.03449148312211037,
- 0.09191257506608963, 0.044797755777835846, -0.06466440856456757, -0.03206850215792656,
- -0.13445553183555603, 0.1795220971107483, 0.017032936215400696, 0.08493422716856003,
- -0.11327428370714188, 0.0331522673368454, 0.07791522145271301, -0.07675802707672119,
- 0.011156262829899788, 0.08737106621265411, -0.23575717210769653, 0.0519239604473114,
- -0.07593217492103577, 0.1443842649459839, 0.04156787693500519, 0.066444993019104,
- 0.10137230157852173, -0.05851796269416809, 0.01658705621957779, 0.06397579610347748,
- -0.009252448566257954, 0.04790757596492767, -0.0023830626159906387,
- -0.05136638507246971, 0.0889739841222763, 0.11397318542003632, 0.08370654284954071,
- -0.02826061099767685, 12.5528564453125, 0.10601712763309479, 0.06554333865642548,
- -0.05924849212169647, -0.03549081087112427, -0.08509545028209686, 0.016492556780576706,
- -0.08429494500160217, -0.0008426806889474392, 0.13067075610160828, 0.02015182003378868,
- -0.06404708325862885, 0.03430461883544922, -0.1572810411453247, 0.002623589476570487,
- -0.01540909893810749, -0.06345106661319733, -0.021853944286704063, 0.05034681409597397,
- -0.044817499816417694, -0.03993318974971771, 0.001913066254928708, 0.07872385531663895,
- 0.03975469246506691, -0.07818210124969482, -0.019759297370910645, -0.013157756999135017,
- -0.06640475243330002, -0.011194887571036816, 0.018660390749573708, -0.08109544217586517,
- 0.018532754853367805, 0.06338934600353241, -0.005076868459582329, 0.12530581653118134,
- 0.04254073649644852, 0.06730054318904877, 0.0457964688539505, 0.001219447236508131,
- 0.0946027934551239, 0.029924113303422928, 0.03159148246049881, 0.0922144204378128,
- 0.037102509289979935, 0.048259176313877106, 0.049315519630908966, 0.060202568769454956,
- 0.13432124257087708, 0.07455852627754211, 0.0881659984588623, 0.17866848409175873,
- 0.022160645574331284, 0.16511663794517517, 0.009036948904395103, 0.0041117360815405846,
- 0.08716180920600891, 0.01476559229195118, -0.10480795800685883, 0.09031027555465698,
- 0.09261763095855713, -0.059200964868068695, 0.10940921306610107, 0.05530621111392975,
- 0.16184979677200317, 0.04567447304725647, 0.05197773873806, 0.07865004241466522,
- 0.04496817663311958, -0.19104060530662537, -0.13946497440338135, -0.04334775358438492,
- -0.12395118176937103, -0.007582521997392178, 0.10676241666078568, 0.10202135145664215,
- -0.036222342401742935, 0.0901440680027008, -0.025914521887898445, 0.02896391600370407,
- -0.11185705661773682, -0.025355901569128036, 0.032891206443309784, -0.04257369413971901,
- 0.012176116928458214, 0.08256515115499496, 0.02207641303539276, 0.04604341834783554,
- 0.1345405876636505, 0.045116376131772995, -0.14794720709323883, -0.06308649480342865,
- 0.08695071935653687, -0.031491924077272415, -0.05456794798374176, 0.0299375057220459,
- -0.04287528619170189, 0.04306242614984512, -0.20329633355140686, 0.057193078100681305,
- 0.19441065192222595, -0.1308463215827942, -0.024780893698334694, -0.045435383915901184,
- 0.03256627917289734, 0.036271266639232635, 0.02662774734199047, -0.04985418915748596,
- 0.025662526488304138, 0.07791095227003098, 0.04390602558851242, -0.09634947031736374,
- 0.12536194920539856, 0.15218882262706757, -0.07317586243152618, 0.02952408976852894,
- 0.08117479830980301, -0.02598806843161583, -0.054794974625110626, 0.10361890494823456,
- 0.02937048114836216, -0.09764757752418518, -0.029297959059476852, -0.027342889457941055,
- -0.03227218613028526, -0.01762116327881813, -0.03290697559714317, 0.0010566078126430511,
- 0.08452429622411728, -0.05776006728410721, -0.016778552904725075, 0.02488788217306137,
- 0.05246580019593239, 0.033222369849681854, -0.060313865542411804, 0.04506039619445801,
- -0.07598675787448883, -0.09791365265846252, 0.014524840749800205, 0.07149830460548401,
- 0.03132595866918564, -0.04531792923808098, -0.07154163718223572, -0.01580294780433178,
- -0.1173652708530426, -0.01736217364668846, 0.15629874169826508, 0.08793357014656067,
- 0.08617086708545685, 0.037032414227724075, -0.11347635835409164, -0.041351620107889175,
- 0.06502978503704071, 0.131588876247406, -0.03030131757259369, 0.03549337387084961,
- -0.04719138517975807, -0.033345285803079605, 0.1093778908252716, -0.06288409978151321,
- 0.028619159013032913, -0.03593970835208893, 0.02734973095357418, 0.0864432230591774,
- 0.14311492443084717, 0.08195608854293823, 0.024360086768865585, 0.04467906057834625,
- 0.0121262576431036, -0.0049219136126339436, -0.024273715913295746, 0.059419114142656326,
- -0.0352131649851799, -0.1115318089723587, -0.0347430482506752, 0.09660498797893524,
- 0.09011779725551605, 0.01726500317454338, -0.07798837125301361, -0.014110499992966652,
- -0.07846671342849731
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 86,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 11,
- "similarity": 0.9966456294059753
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 43,
- "similarity": 0.9965839385986328
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 35,
- "similarity": 0.9961840510368347
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Adrian Weckler"],
- "epoch_date_downloaded": 1663027200,
- "epoch_date_modified": 1663113600,
- "epoch_date_submitted": 1663027200,
- "flag": null,
- "report_number": 2038,
- "source_domain": "independent.ie",
- "submitters": ["Devon Colmer (CSET)"],
- "title": "Explainer: why has one line of computer code caused such disruption to the Leaving Cert grades?",
- "url": "https://www.independent.ie/business/technology/explainer-why-has-one-line-of-computer-code-caused-such-disruption-to-the-leaving-cert-grades-39580586.html"
- },
- {
- "__typename": "Report",
- "authors": ["Karlin Lillington"],
- "epoch_date_downloaded": 1603929600,
- "epoch_date_modified": 1607644800,
- "epoch_date_submitted": 1607644800,
- "flag": null,
- "report_number": 1386,
- "source_domain": "irishtimes.com",
- "submitters": ["Patrick Hall (BNH.ai)", "CSET annotators"],
- "title": "Leaving Cert: Why the Government deserves an F for algorithms",
- "url": "https://www.irishtimes.com/business/technology/leaving-cert-why-the-government-deserves-an-f-for-algorithms-1.4374801"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "uk-home-office",
- "name": "UK Home Office"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "uk-home-office",
- "name": "UK Home Office"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "dark-skinned-women",
- "name": "dark-skinned women"
- },
- {
- "__typename": "Entity",
- "entity_id": "dark-skinned-people",
- "name": "dark-skinned people"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1387],
- "vector": [
- -0.06849706918001175, 0.07108557224273682, 0.04898003488779068, -0.10224209725856781,
- 0.12104478478431702, -0.07446771115064621, 0.00455567566677928, 0.06662221997976303,
- 0.046340178698301315, -0.08546590805053711, 0.04554324224591255, 0.041996367275714874,
- 0.041787344962358475, -0.07760202884674072, 0.044858042150735855, -0.15897804498672485,
- -0.08179812133312225, -0.030396608635783195, -0.04643808305263519, -0.07044769823551178,
- -0.1061641052365303, 0.021232565864920616, 0.0044831628911197186, 0.0642365887761116,
- -0.10064664483070374, 0.00918232649564743, 0.05471251159906387, 0.07491707056760788,
- -0.00399858970195055, -0.02534276619553566, -0.031726937741041183, -0.07366351783275604,
- 0.11497025191783905, 0.02393566258251667, 0.005109500139951706, 0.08250506967306137,
- 0.06011108309030533, -0.006700324825942516, -0.044051941484212875, 0.023157455027103424,
- 0.0008032445912249386, 0.17840330302715302, 0.031362369656562805, 0.020150383934378624,
- 0.02216709591448307, -0.0044950763694942, -0.03852299973368645, 0.06822649389505386,
- 0.021914217621088028, 0.02217688038945198, -0.006321930326521397, 0.01973811164498329,
- -0.020448261871933937, 0.012513058260083199, -0.1098281741142273, -0.006732198875397444,
- 0.021660422906279564, 0.05554266646504402, 0.009465872310101986, -0.09968332946300507,
- 0.009557749144732952, -0.15285564959049225, -0.0947328731417656, -0.08105787634849548,
- 0.11413585394620895, -0.0746501162648201, -0.02573503740131855, 0.02769596502184868,
- 0.02667989209294319, 0.07565929740667343, 0.12531980872154236, -0.04000317305326462,
- -0.027481168508529663, -0.011648652143776417, 0.01509895734488964, 0.00635821046307683,
- 0.019210394471883774, 0.1257055252790451, -0.08490411937236786, -0.009439894929528236,
- 0.11106153577566147, -0.12062166631221771, 0.31861552596092224, 0.016871243715286255,
- 0.017390189692378044, -0.07492652535438538, 0.07404251396656036, 0.027500441297888756,
- 0.09357115626335144, 0.0474441796541214, -0.031572598963975906, 0.07326287776231766,
- -0.09205035865306854, 0.05418337509036064, 0.07201344519853592, 0.028354790061712265,
- -0.028251241892576218, -0.009655889123678207, -0.008263623341917992,
- -0.040740787982940674, -0.0120107252150774, -0.02711028978228569, 0.1499059945344925,
- 0.05231224372982979, -0.07454297691583633, 0.02866322174668312, 0.014557074755430222,
- -0.02201024629175663, 0.05453474074602127, -0.052801039069890976, 0.03435974195599556,
- 0.028954675421118736, 0.10027434676885605, 0.05445079505443573, 0.04776950553059578,
- -0.0007683225558139384, 0.04494311287999153, 0.13415497541427612, 0.08369170129299164,
- 0.014375966042280197, 0.062074046581983566, 0.07641952484846115, 0.04033188149333,
- 0.002231049817055464, 0.04493342712521553, 0.03520990163087845, -0.058485936373472214,
- -0.059167202562093735, -0.0412830114364624, 0.07227373123168945, -0.05503526329994202,
- -0.19185437262058258, -0.04263318330049515, 0.06650546193122864, 0.019671443849802017,
- -0.04398259520530701, 0.009714038111269474, 0.0021151136606931686, 0.05782415345311165,
- -0.03187231346964836, -0.0665917918086052, 0.09995510429143906, -0.009582924656569958,
- 0.0815219134092331, 0.12621796131134033, 0.07893738895654678, -0.04876479506492615,
- -0.032154131680727005, -0.04120008647441864, -0.05448660999536514, 0.09212525188922882,
- -0.06359447538852692, -0.033746927976608276, 0.006907802540808916, 0.00912265945225954,
- 0.6792280673980713, 0.08517660200595856, 0.137205570936203, 0.03713148832321167,
- -0.015157933346927166, 0.16572877764701843, 0.02018606662750244, 0.06796436011791229,
- -0.05368907004594803, -0.08616172522306442, 0.06585532426834106, -0.06192793324589729,
- -0.04192494973540306, -0.005154734943062067, 0.024401066824793816, 0.05636672303080559,
- -0.03042730502784252, 0.07607806473970413, 0.007815110497176647, -0.14956533908843994,
- -0.039908986538648605, 0.03422197327017784, 0.0015572800766676664, -0.09995042532682419,
- -0.05790073052048683, 0.08261609077453613, 0.06312534213066101, -0.09187990427017212,
- 0.02068791165947914, -0.06747763603925705, 0.023570263758301735, 0.011090856976807117,
- 0.07253073155879974, -0.015359039418399334, -0.0018241021316498518, 0.01953311823308468,
- -0.007794675882905722, 0.009569983929395676, -0.08235237747430801, 0.02891785092651844,
- 0.07668806612491608, -0.004806829616427422, -0.025268536061048508, 0.07989586889743805,
- -0.08600221574306488, -0.004649259615689516, -0.0018844723235815763,
- 0.11900351196527481, -0.08011148869991302, 0.01435641385614872, -0.022316861897706985,
- 0.014362244866788387, 0.06967677921056747, 0.011091976426541805, -0.058017171919345856,
- -0.04154196381568909, 0.09663375467061996, 0.019434496760368347, 0.09207209944725037,
- 0.029486529529094696, -0.0018565182108432055, 0.0845855325460434, 0.11418917030096054,
- -0.030329344794154167, -0.007068161386996508, 0.05759507045149803, 0.060945216566324234,
- -0.11853533983230591, 0.010331652127206326, 0.03753078728914261, 0.05208069458603859,
- 0.006634851451963186, -0.012933335267007351, 0.0058683231472969055,
- 0.0006172897410579026, -0.030528545379638672, 0.061498045921325684,
- -0.04694226384162903, 0.018117794767022133, 0.13001671433448792, -0.03622177988290787,
- -0.06704356521368027, -0.008698448538780212, -0.016769174486398697, 0.02138141170144081,
- -0.03778433799743652, 0.05812195688486099, 0.03664504736661911, 0.07506116479635239,
- 0.04027501493692398, 0.017454883083701134, 0.08275605738162994, 0.02932964637875557,
- 0.08078499138355255, 0.02072250470519066, -0.041509222239255905, -0.06925986707210541,
- 0.014688318595290184, 0.03236411139369011, 0.08218426257371902, 0.06319049745798111,
- -0.06774023920297623, 0.02011113427579403, 0.0714782103896141, -0.058128535747528076,
- -0.03609529137611389, -0.006542466580867767, 0.05445904657244682, -0.010985223576426506,
- -0.0074479603208601475, -0.08481501042842865, -0.09096308797597885,
- 0.013046536594629288, 0.0279065128415823, -0.06254395842552185, 0.028362814337015152,
- -0.0892549380660057, 0.019950680434703827, -0.008193276822566986, 0.061202872544527054,
- 0.0024965221527963877, 0.09169086813926697, 0.0701616033911705, -0.04677771031856537,
- 0.04200472682714462, 0.04129107668995857, -0.1100199744105339, -0.038000598549842834,
- -0.029856516048312187, -0.11628313362598419, 0.054113734513521194, -0.03053971752524376,
- -0.019986102357506752, 0.07754621654748917, 0.07298294454813004, 0.053474415093660355,
- -0.005547604523599148, -0.053294092416763306, 0.060390837490558624,
- -0.04264875128865242, -0.007730287965387106, 0.09012948721647263, -0.01361019629985094,
- 0.027507180348038673, -0.04858846217393875, -0.06540612876415253, -0.06487977504730225,
- 0.001431123586371541, -0.07007040083408356, 0.0025075513403862715, -0.01421351358294487,
- 0.017094358801841736, -0.0342157743871212, -0.10332880169153214, 0.06047612801194191,
- -0.09139374643564224, -0.06182733550667763, -0.09508860856294632, 0.12783196568489075,
- 0.036065392196178436, -0.024239569902420044, -0.03367943316698074,
- -0.047950901091098785, 0.05081542581319809, -0.012394731864333153,
- -0.003110555000603199, 0.0885963961482048, 0.014492055401206017, 0.01782226748764515,
- 0.0051802066154778, 0.03187049552798271, -0.01403262373059988, -0.008593167178332806,
- 0.03244508057832718, 0.4588494896888733, -0.2444966733455658, 0.08823835849761963,
- 0.057703956961631775, 0.042694929987192154, 0.03837301954627037, 0.01778244413435459,
- 0.04123929888010025, 0.105460986495018, 0.1206120178103447, 0.098732590675354,
- -0.044838253408670425, -0.06319842487573624, -0.12472803890705109, 0.06186432018876076,
- 0.028568528592586517, -0.01234861183911562, 0.021481718868017197, -0.08211793005466461,
- -0.009200436063110828, -0.022845041006803513, -0.10344928503036499, 0.03693997487425804,
- 0.019433092325925827, -0.06057494506239891, -0.0070875524543225765,
- -0.003456597216427326, -0.01064307987689972, -0.008645801804959774,
- 0.059744421392679214, -0.00841429177671671, 0.05377671867609024, -0.0002667921653483063,
- 0.03901534527540207, -0.1013423427939415, 0.03465752676129341, -0.04970298707485199,
- -0.12179681658744812, 0.13664960861206055, 0.013883484527468681, -0.005801723804324865,
- 0.07724960893392563, -0.014925388619303703, 0.027708854526281357, -0.06536384671926498,
- -0.060456283390522, -0.010030435398221016, 0.054246217012405396, 0.005583636462688446,
- 0.017897358164191246, 0.20191623270511627, -0.0680021345615387, 0.022484490647912025,
- -0.08579503744840622, 0.08054519444704056, 0.1279989331960678, 0.02242261916399002,
- 0.02036631479859352, -0.0018362486734986305, -0.05518275126814842, 0.020059142261743546,
- -0.009079531766474247, -0.13833093643188477, -0.015966879203915596,
- 0.019429601728916168, 0.10519314557313919, 0.09716639667749405, -0.03112904354929924,
- -0.16125045716762543, 0.016354095190763474, -0.062497496604919434, 0.012240196578204632,
- 0.05165354534983635, -0.06308047473430634, 0.022871091961860657, -0.03350348770618439,
- -0.03241531923413277, -0.01696850173175335, -0.07286077737808228, -0.008937211707234383,
- -0.026433179154992104, 0.054114311933517456, 0.004432921297848225, 0.04298921301960945,
- -0.05238673835992813, 0.1254006326198578, -0.06753518432378769, 0.08395729213953018,
- 0.013294843025505543, -0.0003709741577040404, 0.05849078297615051, 0.011722898110747337,
- 0.024148281663656235, -0.030778616666793823, -0.007237328682094812,
- -0.03186905384063721, 0.02109413966536522, -0.027814054861664772, -0.10787241905927658,
- -0.03763456642627716, -0.014866102486848831, -0.10607971996068954, 0.0439782589673996,
- 0.019691796973347664, -0.024792758747935295, -0.012419240549206734,
- -0.01264262106269598, 0.013048303313553333, 0.029204973950982094, 0.02984677068889141,
- -0.17014960944652557, -0.11502565443515778, 0.0071000028401613235, 0.040878456085920334,
- 0.007540441118180752, -0.02911255694925785, 0.08183204382658005, 0.10367001593112946,
- 0.061438947916030884, -0.06168617308139801, -0.0033379753585904837,
- -0.09307073056697845, 0.0428994782269001, -0.07516544312238693, -0.5314153432846069,
- 0.0261638592928648, 0.048187583684921265, 0.002146670361980796, 0.04211479052901268,
- -0.11134587228298187, 0.03058716282248497, -0.009568345732986927, -0.03228919580578804,
- 0.07550773024559021, -0.01763427071273327, 0.05678096413612366, 0.01189750712364912,
- -0.026419881731271744, -0.0022854176349937916, -0.03513891249895096,
- -0.03195187449455261, 0.0515638142824173, -0.054586898535490036, -0.07537170499563217,
- -0.10021563619375229, 0.005670417565852404, -0.0017875708872452378, 0.07957319915294647,
- -0.01250758208334446, 0.028465934097766876, -0.06422585248947144, -0.054111503064632416,
- 0.021486302837729454, 0.06800852715969086, 0.04262432083487511, -0.04577728733420372,
- 0.018812792375683784, 0.05670884996652603, -0.016124997287988663, 0.07386047393083572,
- 0.044431086629629135, -0.0925973504781723, -0.06018287315964699, 0.07218260318040848,
- 0.0428457148373127, 0.18477486073970795, -0.011294943280518055, 0.00956185907125473,
- 0.01032697968184948, 0.13764531910419464, -0.010615377686917782, 0.010693424381315708,
- -0.007439673412591219, 0.04244005307555199, 0.06006450206041336, 0.0010606556897982955,
- 0.09129758179187775, -0.049206335097551346, -0.01715192198753357, -0.04720725119113922,
- 0.022899746894836426, -0.02772865630686283, -0.04956506937742233, 0.2598191797733307,
- 0.04233193024992943, 0.004968974739313126, -0.0361458919942379, -0.08705998212099075,
- 0.006642909254878759, -0.09458019584417343, -0.11990951001644135, -0.005070104263722897,
- 0.0018623282667249441, -0.015633024275302887, -0.004818655084818602,
- -0.11260268092155457, -0.008229274302721024, 0.02106909640133381, 0.016718104481697083,
- 0.07301075756549835, -0.01406162604689598, 0.09156350046396255, -0.020977642387151718,
- 0.13127993047237396, 0.0281617883592844, 0.03870629891753197, 0.06458403915166855,
- 0.1437850147485733, -0.033807601779699326, -0.06939215213060379, -0.05210684612393379,
- -0.045806895941495895, -0.04859347268939018, 0.10693013668060303, -0.04928484186530113,
- 0.08492633700370789, 0.01832902431488037, -0.0818684920668602, -0.01626705937087536,
- -0.015760010108351707, -0.01891886442899704, 0.0005595909897238016,
- -0.48776209354400635, -0.03413417562842369, 0.17268016934394836, -0.010692381300032139,
- -0.019574210047721863, 0.006133983843028545, -0.022866440936923027,
- -0.05521872267127037, 0.028719648718833923, -0.09628639370203018, 0.15395009517669678,
- -0.015245751477777958, 0.06878377497196198, -0.04876274615526199, 0.03359057754278183,
- 0.1011599525809288, -0.08312170952558517, -0.027797367423772812, 0.05334329977631569,
- -0.1454986333847046, 0.02106810174882412, -0.03132224828004837, 0.06694677472114563,
- 0.049301352351903915, 0.036324575543403625, 0.0875944197177887, -0.058702390640974045,
- 0.05162087082862854, 0.03741944581270218, -0.030841898173093796, 0.011775657534599304,
- 0.00921868346631527, -0.0065603917464613914, 0.07221096009016037, 0.08099343627691269,
- 0.09567147493362427, -0.08085723966360092, 12.082803726196289, 0.05282003805041313,
- 0.05606929585337639, -0.049893222749233246, -0.04985951632261276, -0.08580008149147034,
- -0.004185320343822241, -0.12411032617092133, 0.057194504886865616, 0.13640999794006348,
- 0.00034263235284015536, -0.05135558545589447, -0.02648242749273777,
- -0.12187787890434265, 0.004430068656802177, -0.0395420677959919, -0.030192023143172264,
- -0.045765794813632965, 0.05679791793227196, -0.051182884722948074,
- -0.012977370992302895, 0.08691895008087158, 0.051128875464200974, 0.021377326920628548,
- -0.09071512520313263, -0.026292238384485245, -0.0023142232093960047,
- -0.029882395640015602, 0.026226773858070374, 0.018920473754405975, 0.002949827117845416,
- -0.00850268267095089, 0.019060727208852768, -0.0023910722229629755, 0.01609947718679905,
- 0.0030252570286393166, 0.03142838925123215, -0.003256611991673708, 0.009801238775253296,
- 0.10973959416151047, 0.011093540117144585, -0.05123678222298622, 0.002037791535258293,
- 0.04870668053627014, 0.10480623692274094, 0.028598425909876823, 0.09105758368968964,
- 0.08394838869571686, 0.025964226573705673, 0.15206347405910492, 0.08525478839874268,
- 0.004332914017140865, 0.10886873304843903, -0.03705689683556557, 0.01613917015492916,
- 0.06701795756816864, 0.055565591901540756, -0.0786471888422966, 0.05183802545070648,
- 0.05359230935573578, -0.06061084568500519, 0.13146500289440155, 0.01592991314828396,
- 0.16338416934013367, 0.0036360910162329674, 0.05524575710296631, 0.08924517780542374,
- 0.10234624147415161, -0.14133955538272858, -0.021550500765442848, 0.0021030670031905174,
- -0.12093137204647064, -0.05531961843371391, -0.0007216283120214939,
- -0.0007364862249232829, -0.07050612568855286, -0.0802302360534668, -0.06975840032100677,
- 0.03307796269655228, 0.0033718240447342396, -0.006958409678190947,
- -0.015368961729109287, -0.04330123960971832, 0.018554572016000748, 0.12119898945093155,
- 0.0026691858656704426, 0.07497052103281021, 0.08936263620853424, 0.04837510734796524,
- -0.12738892436027527, -0.04715503379702568, 0.12850196659564972, -0.016124917194247246,
- -0.08050467073917389, -0.05470648780465126, -0.04123983532190323, 0.031123017892241478,
- -0.1813650131225586, 0.06564552336931229, 0.19895663857460022, -0.15694761276245117,
- -0.032184500247240067, -0.04700033739209175, 0.1027907133102417, -0.014426012523472309,
- 0.02574429288506508, -0.017965318635106087, 0.05446428060531616, -0.049984320998191833,
- 0.03093908727169037, -0.07791534811258316, 0.018548741936683655, 0.09786951541900635,
- -0.053696345537900925, 0.03162641078233719, 0.03631360083818436, -0.0021517176646739244,
- -0.06334283947944641, 0.04804302379488945, -0.0006863655289635062, -0.08695251494646072,
- -0.022150753065943718, 0.001263730227947235, 0.009874464944005013, -0.01665988191962242,
- -0.06556283682584763, 0.047427427023649216, 0.056039754301309586, -0.05958219990134239,
- 0.01221261266618967, 0.01198225561529398, 0.08051274716854095, 0.0891527384519577,
- -0.006707667373120785, 0.07954730838537216, 0.004561637528240681, -0.054184671491384506,
- 0.0314616933465004, 0.06349708884954453, 0.07781144976615906, -0.0457783043384552,
- -0.05830419436097145, 0.008540472015738487, -0.1090475469827652, -0.02868335135281086,
- 0.08483784645795822, 0.05496520176529884, 0.06660366803407669, 0.05384069308638573,
- -0.10266143828630447, -0.02892913669347763, 0.10781905055046082, -0.026177171617746353,
- -0.03581084683537483, 0.05108308047056198, -0.0631362646818161, -0.02158266492187977,
- 0.08353623747825623, -0.06682375818490982, -0.021446119993925095, 0.011735456995666027,
- -0.10182566195726395, 0.13622070848941803, 0.027164019644260406, 0.05013766512274742,
- -0.043591711670160294, 0.017847469076514244, 0.056582339107990265, 0.017163608223199844,
- 0.021158333867788315, 0.012108918279409409, -0.023524783551692963, -0.1251182109117508,
- -0.09623251855373383, 0.03512021154165268, 0.1041155681014061, 0.045185524970293045,
- -0.10450504720211029, -0.055856917053461075, -0.02609017863869667
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 87,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 162,
- "similarity": 0.997539758682251
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 48,
- "similarity": 0.9974601864814758
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 189,
- "similarity": 0.9973756670951843
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Maryam Ahmed"],
- "epoch_date_downloaded": 1603929600,
- "epoch_date_modified": 1607644800,
- "epoch_date_submitted": 1607644800,
- "flag": null,
- "report_number": 1387,
- "source_domain": "bbc.co.uk",
- "submitters": ["Patrick Hall (BNH.ai)", "CSET annotators"],
- "title": "UK passport photo checker shows bias against dark-skinned women",
- "url": "https://www.bbc.co.uk/news/amp/technology-54349538"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "google",
- "name": "Google"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "google",
- "name": "Google"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "jewish-people",
- "name": "Jewish people"
- },
- {
- "__typename": "Entity",
- "entity_id": "google-images-users",
- "name": "Google Images users"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [2183, 1388],
- "vector": [
- -0.037053368985652924, 0.04200726002454758, -0.00320492684841156, -0.10951514542102814,
- 0.054411064833402634, -0.02927798219025135, 0.013127460144460201, 0.09266422688961029,
- 0.06748651713132858, -0.14901620149612427, 0.019278336316347122, 0.055520959198474884,
- 0.015003936365246773, -0.08354919403791428, 0.03642265498638153, -0.0848037600517273,
- -0.0906020998954773, -0.030186962336301804, -0.008517059497535229, -0.09262941777706146,
- -0.06618113070726395, 0.029861651360988617, -0.00034977978793904185,
- 0.09995017200708389, -0.047107208520174026, 0.018266668543219566, 0.08944162726402283,
- 0.11074507236480713, -0.0702718049287796, 0.04779040068387985, -0.010166317224502563,
- -0.05094481632113457, 0.13544048368930817, 0.003911738283932209, 0.01616441085934639,
- 0.061835646629333496, 0.01692512258887291, -0.04175771027803421, -0.027786731719970703,
- 0.015656549483537674, -0.015456079505383968, 0.2075185775756836, -0.011541175656020641,
- 0.00593924056738615, 0.063191257417202, -0.039024967700242996, 0.04712575674057007,
- 0.10782751441001892, 0.015615343116223812, -0.013552559539675713, -0.021367408335208893,
- 0.0047454312443733215, -0.05630568414926529, 0.0014780079945921898,
- -0.06640768051147461, 0.10580568760633469, 0.031936805695295334, -0.055299244821071625,
- -0.016284583136439323, -0.024699140340089798, -0.038120876997709274,
- -0.22940972447395325, -0.033096812665462494, -0.05199927091598511, 0.08730576187372208,
- -0.053359244018793106, 0.00478493794798851, -0.031435076147317886,
- -0.0032026967965066433, 0.057249121367931366, 0.0617956817150116, -0.02724660187959671,
- -0.018564995378255844, -0.014796759001910686, 0.024743057787418365,
- -0.03504793345928192, 0.04109423607587814, 0.1931052803993225, -0.10840113461017609,
- 0.04672352969646454, 0.11353157460689545, -0.05394778400659561, 0.2807982265949249,
- -0.01592838764190674, -0.00022320356220006943, 0.045218244194984436,
- 0.05029303580522537, 0.0017988914623856544, 0.0171058289706707, 0.028714414685964584,
- -0.004428408108651638, 0.035517048090696335, -0.05675642192363739, -0.05057738721370697,
- 0.04123736545443535, -0.002454761415719986, -0.02744947373867035, -0.07144065201282501,
- -0.006726757623255253, -0.06304186582565308, 0.07485184818506241, -0.009031916037201881,
- 0.11079855263233185, 0.11159355938434601, -0.04603263735771179, 0.04240194708108902,
- 0.12858495116233826, -0.06468251347541809, 0.0779978334903717, -0.03799176216125488,
- 0.0023602587170898914, 0.04432498663663864, 0.0398784838616848, 0.020771753042936325,
- 0.05758046358823776, -0.048724330961704254, -0.0026069292798638344,
- 0.039893120527267456, 0.08504723012447357, 0.06947186589241028, 0.03935282304883003,
- 0.062288567423820496, 0.055586688220500946, -0.07849982380867004, -0.021294228732585907,
- -0.03036072663962841, -0.03687768429517746, 0.020354248583316803, -0.05401192978024483,
- 0.07789634168148041, -0.056726522743701935, -0.19494345784187317, -0.01004903856664896,
- 0.041416481137275696, -0.05585505813360214, -0.0007097860798239708,
- 0.008669131435453892, -0.059036821126937866, 0.01302376575767994, -0.018671805039048195,
- -0.023397713899612427, 0.11200232803821564, 0.022323304787278175, 0.07047681510448456,
- 0.08876553177833557, 0.07471493631601334, -0.0065588634461164474, -0.06862974166870117,
- -0.001775382086634636, -0.06389299035072327, 0.11072631925344467, -0.14684133231639862,
- -0.00847376324236393, -0.01942700520157814, -0.013481993228197098, 0.6382324695587158,
- 0.1196596696972847, 0.13857609033584595, -0.0013600406236946583, -0.016126764938235283,
- 0.1810874044895172, -0.04455162584781647, 0.046030983328819275, -0.05114861577749252,
- -0.07810543477535248, 0.015513152815401554, -0.06734318286180496, -0.04485431686043739,
- 0.0010744852479547262, 0.04133846238255501, 0.08551669120788574, 0.04357768967747688,
- 0.11268480867147446, 0.02947903610765934, -0.10242201387882233, -0.02191152609884739,
- 0.024309873580932617, -0.024552462622523308, -0.14204861223697662, -0.02695176750421524,
- 0.09096792340278625, 0.0998968556523323, -0.05358494818210602, 0.00762857124209404,
- -0.0721113383769989, 0.04734042286872864, -0.03679870814085007, 0.060509152710437775,
- 0.004069156013429165, 0.01201604399830103, 0.05304475873708725, 0.02509225532412529,
- 0.015202745795249939, -0.0803174078464508, -0.039404287934303284, 0.11155585944652557,
- -0.016407126560807228, -0.05838652700185776, 0.07246662676334381, -0.0480223074555397,
- 0.045487698167562485, 0.032840244472026825, 0.09420740604400635, -0.14061400294303894,
- -0.005940241739153862, -0.022873835638165474, -0.04914821684360504, 0.04261191189289093,
- -0.026853572577238083, -0.06538329273462296, -0.09244117140769958, 0.08826854825019836,
- 0.02967585250735283, 0.04054709151387215, 0.0485965833067894, -0.0956314280629158,
- 0.02874131128191948, 0.023314310237765312, 0.020924773067235947, -0.06299423426389694,
- 0.058185841888189316, 0.035092793405056, -0.030324680730700493, -0.10759761929512024,
- 0.0404454804956913, 0.040170520544052124, 0.033427707850933075, -0.01453921478241682,
- 0.06532485783100128, 0.049027808010578156, -0.05718730390071869, 0.04993110150098801,
- 0.004456135910004377, 0.027308523654937744, 0.05277862399816513, -0.06701627373695374,
- -0.026149297133088112, -0.03252311050891876, 0.015447325073182583, 0.020324096083641052,
- -0.009170576930046082, 0.09287216514348984, 0.11242137849330902, 0.06478007137775421,
- 0.0684041976928711, 0.038026873022317886, 0.08483035862445831, 0.044449515640735626,
- -0.05594485253095627, 0.09665000438690186, -0.03841410577297211, -0.07931062579154968,
- -0.03287283331155777, 0.02469700574874878, 0.03474011272192001, 0.04971834644675255,
- -0.045305609703063965, -0.03557896241545677, -0.023988334462046623,
- 0.032780345529317856, -0.07863081991672516, -0.06384091824293137, 0.04964287206530571,
- 0.06961257010698318, -0.06206022948026657, -0.08912548422813416, -0.08575910329818726,
- -0.009623175486922264, 0.03158628195524216, -0.008046449162065983, 0.004516306798905134,
- -0.09746039658784866, 0.04236304759979248, -0.0028253456111997366, 0.045580122619867325,
- 0.0066318269819021225, -0.008570264093577862, -0.02103058062493801,
- -0.11055746674537659, 0.01779143698513508, 0.017901893705129623, -0.003199727740138769,
- -0.05740039795637131, -0.03399670124053955, -0.0618545264005661, -0.0385173037648201,
- 0.001954064704477787, -0.0653446763753891, -0.01185497548431158, 0.03782007843255997,
- 0.018735261633992195, -0.028693711385130882, -0.0018908903002738953,
- 0.08937961608171463, -0.043694496154785156, -0.002766135148704052, 0.07419441640377045,
- -0.03347282484173775, 0.040687672793865204, -0.015305476263165474,
- -0.060035184025764465, -0.03875301405787468, -0.034546755254268646,
- -0.06463954597711563, 0.06648555397987366, -0.002705572172999382, -0.007394195068627596,
- -0.021300852298736572, -0.02826599031686783, 0.054528892040252686, -0.08079297840595245,
- -0.06917944550514221, -0.09510044753551483, 0.12418891489505768, -0.0406608060002327,
- 0.013535544276237488, -0.03746533393859863, -0.027196915820240974, 0.034696727991104126,
- -0.024047160521149635, -0.00015151780098676682, 0.04393073916435242, 0.0711354985833168,
- -0.02717806026339531, 0.0025363354943692684, 0.06609570235013962, -0.026047633960843086,
- 0.005847250111401081, 0.06773924827575684, 0.44266632199287415, -0.1681121289730072,
- 0.04336676001548767, 0.06132517009973526, 0.027663448825478554, 0.03647350147366524,
- 0.002737009897828102, 0.08887580037117004, 0.07023301720619202, 0.11892324686050415,
- 0.08819299936294556, -0.053715795278549194, 0.0007128994911909103, -0.07916250824928284,
- 0.08677919209003448, 0.01605798676609993, 0.012301809154450893, -0.00703843217343092,
- -0.04372895136475563, 0.021301673725247383, 0.004413515329360962, -0.012413620948791504,
- -0.0007350217783823609, -0.01639200560748577, -0.054635901004076004,
- 0.026071660220623016, 0.030195407569408417, 0.06384161114692688, -0.06326206028461456,
- 0.022783702239394188, -0.02475704997777939, 0.049743250012397766, 0.03715062513947487,
- 0.07287875562906265, -0.11807207763195038, 0.05708068236708641, -0.07351236045360565,
- -0.10373227298259735, 0.03034692257642746, 0.004004425369203091, 0.06768786907196045,
- 0.026188261806964874, 0.011658960953354836, 0.054156213998794556, -0.009361443109810352,
- -0.027694838121533394, 0.03409633785486221, 0.03553472459316254, 0.01356690563261509,
- 0.06228818744421005, 0.13883739709854126, -0.01876251958310604, -0.03861485794186592,
- -0.09483896940946579, 0.0573296919465065, 0.17169314622879028, -0.008451059460639954,
- 0.02352031134068966, 0.012204546481370926, -0.023525318130850792,
- -0.0012660762295126915, -0.017452269792556763, -0.09927868098020554,
- -0.017267854884266853, -0.025510434061288834, 0.09152767807245255, 0.05409383773803711,
- -0.03394840285181999, -0.19497910141944885, -0.0027381107211112976,
- -0.07532140612602234, 0.01888420432806015, 0.1217603087425232, -0.0695795938372612,
- 0.039116114377975464, -0.03464324027299881, 0.034733206033706665, -0.021589139476418495,
- -0.09132412821054459, 0.020759716629981995, -0.027960743755102158, 0.01527709886431694,
- 0.02937777154147625, 0.03703673928976059, -0.05954166501760483, 0.05803283303976059,
- -0.09459337592124939, 0.06338407099246979, -0.003626311896368861, 0.005807465873658657,
- 0.024300280958414078, -0.05282926559448242, 0.03659060597419739, 0.023135347291827202,
- -0.056223928928375244, -0.00015492457896471024, -0.04769173637032509,
- -0.051329873502254486, -0.06286172568798065, -0.0763377994298935, -0.03148963302373886,
- -0.05634932965040207, 0.07866038382053375, -0.08616349846124649, 0.0023434138856828213,
- 0.003281224984675646, -0.011782629415392876, -0.015882007777690887, 0.04916677996516228,
- 0.029056955128908157, -0.1262674182653427, 0.018327340483665466, 0.021678147837519646,
- 0.021248308941721916, -0.011423841118812561, -0.08720585703849792, 0.004875100217759609,
- 0.04723264276981354, 0.016313964501023293, -0.0607282891869545, 0.04446392506361008,
- -0.10456813126802444, 0.06877044588327408, -0.09205561876296997, -0.41633838415145874,
- 0.055472176522016525, -0.002708324696868658, 0.030761517584323883, 0.03894863277673721,
- -0.04406372457742691, 0.07796310633420944, 0.03300793468952179, -0.03701043501496315,
- 0.09336382150650024, -0.06005953997373581, 0.03208322077989578, -0.00887913815677166,
- -0.043945956975221634, -0.028280111029744148, -0.07421787828207016,
- -0.07849693298339844, 0.03801844269037247, -0.040438856929540634, -0.08344912528991699,
- -0.10131791234016418, 0.02673029527068138, -0.011251515708863735, -0.011262421496212482,
- -0.002112765796482563, 0.018935227766633034, -0.04262160509824753,
- -0.026422183960676193, 0.07915480434894562, 0.08767596632242203, -0.00967334769666195,
- -0.06701624393463135, 0.0005546687170863152, 0.09551191329956055, 0.02346165105700493,
- 0.12724696099758148, 0.07010132819414139, -0.010784029960632324, -0.03672633320093155,
- 0.03313086926937103, 0.08935311436653137, 0.1881248652935028, 0.020862814038991928,
- 0.04035397619009018, 0.034765951335430145, 0.1507033109664917, 0.029315635561943054,
- 0.05949287489056587, -0.04930831491947174, 0.008817333728075027, 0.025716308504343033,
- -0.030683297663927078, 0.05833450332283974, -0.09708304703235626, -0.02418641746044159,
- -0.05142265558242798, -0.01744798943400383, -0.009512092918157578,
- -0.033712487667798996, 0.21729114651679993, 0.007648845203220844, -0.00493211904540658,
- 0.024512847885489464, -0.016146015375852585, 0.06125766038894653, -0.08251220732927322,
- -0.0575423538684845, -0.006484244018793106, -0.02709653601050377, 0.014410771429538727,
- -0.007787135895341635, -0.11289626359939575, 0.014503073878586292,
- -0.040752045810222626, 0.036157187074422836, 0.11231305450201035, -0.05580805242061615,
- -0.02048342674970627, -0.01579318568110466, 0.13964349031448364, 0.038003213703632355,
- 0.019860519096255302, 0.0635794922709465, 0.10445010662078857, 0.017082184553146362,
- 0.033870879560709, -0.028353288769721985, -0.04778493195772171, -0.03780823573470116,
- 0.1892358511686325, -0.044138696044683456, 0.10161624848842621, 0.08619006723165512,
- -0.058708831667900085, -0.0399373322725296, 0.031847722828388214, -0.028023483231663704,
- 0.018312649801373482, -0.41056615114212036, -0.03751051425933838, 0.11074239760637283,
- 0.04069780930876732, 0.03143549710512161, 0.08696756511926651, 0.022864585742354393,
- -0.05530568212270737, -0.01998104341328144, -0.12276655435562134, 0.17958217859268188,
- 0.0008575193933211267, 0.06505002826452255, -0.06343081593513489, 0.009042710065841675,
- 0.10523776710033417, -0.004945848602801561, 0.013298338279128075, 0.027435079216957092,
- -0.21752415597438812, -0.013329560868442059, -0.05014077201485634, 0.14593997597694397,
- -0.012941916473209858, 0.06480525434017181, 0.08261342346668243, -0.05357953533530235,
- 0.01936311274766922, 0.04566127061843872, 0.007424426265060902, 0.0415729284286499,
- 0.017898479476571083, -0.05900149047374725, 0.08551958948373795, 0.10496483743190765,
- 0.059055108577013016, -0.030070599168539047, 11.854476928710938, 0.0370778888463974,
- 0.07993613183498383, -0.1277100294828415, -0.024472832679748535, -0.01181146502494812,
- 0.005193206947296858, -0.09823895990848541, 0.06962068378925323, 0.13979452848434448,
- -0.016797076910734177, -0.00458476971834898, -0.06960596144199371, -0.0629214271903038,
- 0.009294389747083187, -0.03518163412809372, -0.04635198414325714, -0.038946978747844696,
- 0.07216662168502808, -0.045264679938554764, -0.03386620804667473, 0.04669347405433655,
- 0.06129564717411995, -0.0288517028093338, -0.03770103678107262, 0.071720652282238,
- -0.019173961132764816, 0.013560427352786064, -0.031293634325265884,
- 0.015596698969602585, 0.01877136528491974, 0.05275946110486984, 0.10481570661067963,
- 0.016418537124991417, 0.031338345259428024, 0.045771524310112, 0.023544535040855408,
- 0.03844977170228958, 0.025668039917945862, 0.05048217996954918, 0.007937509566545486,
- 0.003150366712361574, 0.012531018815934658, 0.036152832210063934, 0.05617094784975052,
- -0.0006433036178350449, 0.04822685569524765, 0.11697550117969513,
- -0.00016184360720217228, 0.05824717879295349, 0.05958089232444763, -0.04710335284471512,
- 0.09516102075576782, 0.009913885965943336, 0.011077146977186203, 0.07444803416728973,
- -0.03075745701789856, -0.07114659994840622, 0.04706335812807083, -0.010164923965930939,
- -0.054166167974472046, 0.08594420552253723, 0.040025364607572556, 0.1269279420375824,
- -0.022447384893894196, 0.02608407847583294, 0.09597189724445343, 0.06551431119441986,
- -0.10881852358579636, -0.03283590078353882, 0.005442194174975157, -0.06190776079893112,
- -0.07764627784490585, 0.057134173810482025, 0.05250038206577301, -0.028949346393346786,
- 0.05491733178496361, -0.022537637501955032, 0.053828850388526917, 0.012898329645395279,
- -0.005028584972023964, 0.04494967311620712, -0.08806639909744263, -0.014186050742864609,
- -0.008103307336568832, 0.0146432314068079, 0.07918062806129456, 0.10810407251119614,
- -0.021825801581144333, -0.07081235200166702, -0.1084761992096901, 0.1295642852783203,
- -0.04887794703245163, -0.07440010458230972, 0.03954368457198143, -0.09873159229755402,
- -0.013058568350970745, -0.14249785244464874, 0.11394841969013214, 0.0917273759841919,
- -0.06428154557943344, -0.0551358163356781, -0.04312107339501381, 0.10114578902721405,
- -0.03732577711343765, 0.007949142716825008, -0.09254883974790573, 0.0066166287288069725,
- -0.006713247857987881, 0.05263807997107506, -0.03356380760669708, 0.05930284410715103,
- 0.04367482662200928, -0.10131974518299103, 0.06929135322570801, 0.10121973603963852,
- -0.060135602951049805, -0.015368524938821793, 0.03298100456595421,
- -0.009168235585093498, -0.10315775126218796, -0.04234051704406738, -0.06675487756729126,
- -0.059430718421936035, -0.031749553978443146, -0.045149751007556915,
- -0.007897548377513885, 0.0333707332611084, -0.046608515083789825, -0.013647261075675488,
- 0.03925580531358719, 0.053534798324108124, 0.1538878232240677, 0.008810327388346195,
- 0.058655932545661926, -0.056250859051942825, -0.04719265550374985, 0.042513296008110046,
- 0.022453483194112778, 0.07875078171491623, -0.07448972761631012, -0.023846976459026337,
- -0.05706707015633583, -0.07830923795700073, 0.0308710727840662, 0.10580366104841232,
- 0.04865584895014763, 0.030563093721866608, 0.028962338343262672, -0.060635149478912354,
- 0.0008465759456157684, 0.1020086258649826, -0.00033414922654628754,
- 0.0009907879866659641, -0.02091635763645172, -0.045190371572971344,
- -0.04293571412563324, 0.12437722086906433, 0.0008634419646114111, -0.02097492106258869,
- 0.05812571942806244, -0.09384261071681976, 0.09427066147327423, 0.08302673697471619,
- 0.032581280916929245, 0.034025561064481735, 0.03832525759935379, -0.00493353046476841,
- 0.03380743786692619, 0.034342534840106964, 0.028144599869847298, -0.032933302223682404,
- -0.06704212725162506, -0.09847600758075714, -0.01148933544754982, 0.10693910717964172,
- 0.056864649057388306, -0.10854300111532211, -0.02749655395746231, -0.02371392585337162
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 88,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 127,
- "similarity": 0.9967950582504272
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 53,
- "similarity": 0.9967867136001587
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 107,
- "similarity": 0.9966489672660828
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Ben Sales"],
- "epoch_date_downloaded": 1666483200,
- "epoch_date_modified": 1667347200,
- "epoch_date_submitted": 1666483200,
- "flag": null,
- "report_number": 2183,
- "source_domain": "jta.org",
- "submitters": ["Devon Colmer (CSET)"],
- "title": "A Google search for ‘Jewish baby strollers’ yields anti-Semitic images. An extremist campaign may be to blame.",
- "url": "https://www.jta.org/2020/09/25/united-states/a-google-search-leads-to-anti-semitic-images-it-may-be-an-extremist-campaign"
- },
- {
- "__typename": "Report",
- "authors": ["Rob Harris"],
- "epoch_date_downloaded": 1603929600,
- "epoch_date_modified": 1607644800,
- "epoch_date_submitted": 1607644800,
- "flag": null,
- "report_number": 1388,
- "source_domain": "timebulletin.com",
- "submitters": ["Patrick Hall (BNH.ai)", "CSET annotators"],
- "title": "Jewish Baby Stroller Image Algorithm",
- "url": "https://www.timebulletin.com/jewish-baby-stroller-image-algorithm/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "youtube",
- "name": "YouTube"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "youtube",
- "name": "YouTube"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "youtube-users",
- "name": "YouTube users"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1389],
- "vector": [
- -0.08247195184230804, 0.06137579679489136, 0.017140891402959824, -0.10514019429683685,
- 0.08018849045038223, -0.018362248316407204, -0.021969404071569443, 0.02770935371518135,
- 0.08370660245418549, -0.15031032264232635, 0.021352946758270264, 0.015577368438243866,
- 0.0040534245781600475, -0.12527470290660858, 0.04027249664068222, -0.08107095956802368,
- -0.08424253016710281, -0.03270365297794342, -0.03404936566948891, -0.11792740970849991,
- -0.051106709986925125, 0.0322377011179924, 0.055075280368328094, 0.11365246772766113,
- -0.07002951204776764, 0.046476271003484726, 0.10029254853725433, 0.13446398079395294,
- -0.054908450692892075, 0.03882712498307228, -0.06571998447179794, -0.06862901896238327,
- 0.13418492674827576, -0.02033114992082119, 0.0354827381670475, 0.08477521687746048,
- 0.015378633514046669, -0.040739454329013824, 0.013679718598723412, -0.01660599187016487,
- 0.024646980687975883, 0.30569690465927124, 0.015745924785733223, -0.021048730239272118,
- 0.0742330476641655, -0.06634626537561417, 0.028430981561541557, 0.0650811493396759,
- -0.019012020900845528, 0.013684279285371304, -0.04669475555419922, 0.04784074053168297,
- -0.046514470130205154, 0.0020651984959840775, -0.13287195563316345, 0.06281730532646179,
- 0.04647909104824066, -0.0926341786980629, -0.0014567417092621326, -0.04134243726730347,
- -0.06412161141633987, -0.2839965224266052, -0.016367420554161072, -0.06176498159766197,
- 0.09451146423816681, -0.04761587455868721, -0.03019673377275467, -0.0026611171197146177,
- 0.04232008755207062, 0.047128938138484955, 0.0264633409678936, -0.05612616986036301,
- -0.04837026819586754, 0.029133057221770287, 0.010065091773867607, -0.01624610461294651,
- 0.058165278285741806, 0.21437326073646545, -0.11394515633583069, 0.007649043574929237,
- 0.09853127598762512, -0.07339990139007568, 0.4374857544898987, -0.06941300630569458,
- 0.02495187520980835, 0.019332092255353928, 0.0939883142709732, 0.036581117659807205,
- 0.019621610641479492, 0.0478392019867897, -0.02008679136633873, 0.02337826043367386,
- -0.11764153093099594, -0.007132202852517366, 0.026170555502176285, 0.01944047585129738,
- -0.019813157618045807, 0.041765112429857254, -0.021207837387919426,
- -0.04061825945973396, 0.058643314987421036, -0.008060835301876068, 0.06237191706895828,
- 0.1080421656370163, -0.06495285034179688, -0.014202499762177467, 0.07742435485124588,
- -0.10629888623952866, 0.06120390072464943, -0.0691903829574585, 0.015095212496817112,
- -0.04293615370988846, 0.044477079063653946, -0.011792602017521858, 0.05578821524977684,
- -0.04821442440152168, 0.041959453374147415, 0.02608620934188366, 0.08203824609518051,
- 0.054921962320804596, -0.012449810281395912, 0.06064147502183914, 0.0750686451792717,
- -0.0857057198882103, -0.046639952808618546, -0.05956774577498436, -0.05978336185216904,
- -0.031170926988124847, -0.07154981791973114, 0.036037590354681015, -0.04207463562488556,
- -0.15965576469898224, 0.03236633166670799, 0.09853965789079666, -0.03369254618883133,
- -0.05635587498545647, -0.014956317842006683, -0.05617976188659668, 0.021849168464541435,
- -0.0430573895573616, -0.004418729804456234, 0.10341130942106247, 0.0027374569326639175,
- 0.07338706403970718, 0.10663864761590958, 0.06914176791906357, -0.036991916596889496,
- -0.06203584745526314, 0.0031468116212636232, -0.06007545068860054, 0.11996801197528839,
- -0.12431841343641281, -0.05196632444858551, -0.027071306481957436,
- -0.005088764242827892, 0.713161051273346, 0.16748493909835815, 0.18251082301139832,
- -0.012598121538758278, -0.007471723947674036, 0.18853659927845, 0.006744044367223978,
- 0.027114054188132286, -0.06981731206178665, -0.09673918038606644, 0.013132021762430668,
- -0.06145353615283966, -0.05164286866784096, 0.04158886522054672, 0.02983621135354042,
- 0.09784207493066788, 0.008254431188106537, 0.10584308952093124, 0.05633131414651871,
- -0.07658550143241882, -0.060097381472587585, 0.05363217741250992, -0.032460324466228485,
- -0.07478220760822296, -0.02809351123869419, 0.09716853499412537, 0.10157545655965805,
- -0.0604272335767746, 0.011450675316154957, -0.042251791805028915, 0.021878762170672417,
- -0.02821188233792782, 0.07970776408910751, -0.008177638985216618, 0.08571936935186386,
- 0.019590122625231743, 0.02720014378428459, 0.019978497177362442, -0.10983014106750488,
- -0.03233155980706215, 0.13270303606987, -0.012407766655087471, -0.061341725289821625,
- 0.07243039458990097, -0.07844620198011398, 0.015026602894067764, 0.021244730800390244,
- 0.14800487458705902, -0.17099754512310028, -0.034190863370895386, -0.030701611191034317,
- -0.08193992078304291, 0.10658233612775803, -0.014847615733742714, -0.06449578702449799,
- -0.07403931021690369, 0.0735500380396843, 0.03508371487259865, 0.04301586002111435,
- 0.0574907585978508, -0.05850938335061073, 0.04541447386145592, 0.04130483791232109,
- 0.05772777274250984, -0.04191514104604721, 0.004179033450782299, 0.04733704775571823,
- -0.013819146901369095, -0.05836916342377663, 0.008176828734576702, 0.09033240377902985,
- 0.04018261656165123, 0.0001464488886995241, 0.08227039128541946, -0.009622137993574142,
- -0.05528717860579491, 0.09711834043264389, 0.03256922587752342, 0.0034252575132995844,
- 0.06239096447825432, -0.11172591149806976, -0.0014424199471250176, -0.04386706277728081,
- -0.0045570991933345795, 0.013236753642559052, -0.03557436913251877, 0.04472847655415535,
- 0.10892865061759949, 0.09935443848371506, 0.06113874167203903, 0.07220358401536942,
- 0.029406487941741943, 0.004814651794731617, -0.04302476346492767, 0.15065646171569824,
- -0.027286941185593605, -0.048047930002212524, -0.02460618130862713,
- 0.018439194187521935, 0.007692899089306593, 0.022260094061493874, -0.05904152989387512,
- -0.06019000709056854, -0.041385482996702194, -0.025416003540158272,
- -0.08187709748744965, -0.0632936954498291, 0.05719345435500145, 0.08916322141885757,
- -0.02642354741692543, -0.09226326644420624, -0.08682622015476227, 0.021855825558304787,
- 0.0405428446829319, -0.0040280018001794815, -0.016818232834339142, -0.12736102938652039,
- 0.05319537967443466, -0.04385760799050331, 0.04367478936910629, -0.009925155900418758,
- -0.03304610401391983, -0.039390306919813156, -0.03936024010181427, 0.01842442713677883,
- -0.011825226247310638, 0.0010591675527393818, -0.008942355401813984,
- -0.05699523538351059, -0.07467012107372284, -0.056657325476408005, 0.02745935320854187,
- -0.03975836560130119, 0.004322015214711428, 0.0461483970284462, 0.0015253133606165648,
- -0.02028830163180828, -0.0007889762055128813, 0.05552038922905922,
- -0.041401538997888565, -0.009429010562598705, 0.06666141003370285, -0.04252481460571289,
- 0.005830481648445129, 0.00697763916105032, -0.06867629289627075, -0.016277937218546867,
- 0.032389674335718155, -0.04252518713474274, 0.031874652951955795,
- -0.0062125190161168575, -0.0081029599532485, -0.04930000379681587,
- -0.014309181831777096, 0.09092598408460617, -0.05893554538488388, -0.04975038766860962,
- -0.06052810326218605, 0.1346641480922699, 0.01955815590918064, -0.01186984870582819,
- -0.060170289129018784, -0.03497349098324776, 0.04396280273795128, 0.011199926026165485,
- 0.008489164523780346, 0.004082110244780779, 0.08453153818845749, 0.018382664769887924,
- -0.02205037511885166, 0.060760777443647385, -0.0038085803389549255,
- 0.057165734469890594, 0.09630484133958817, 0.44922542572021484, -0.1357264369726181,
- 0.09663757681846619, 0.08997632563114166, -0.00814612116664648, 0.029977280646562576,
- -0.058473534882068634, 0.08189331740140915, 0.06391146779060364, 0.11765781790018082,
- 0.11415708810091019, -0.05189952999353409, 0.04622002691030502, -0.05810047313570976,
- 0.07438259571790695, -0.026807429268956184, 0.06795088946819305, -0.0296750757843256,
- -0.037367139011621475, -0.05679616332054138, 0.08917475491762161, -0.015281773172318935,
- 0.0020766097586601973, 0.01496163010597229, -0.06182081624865532, 0.03646080195903778,
- 0.00445920554921031, 0.047326263040304184, -0.05977807193994522, 0.025248268619179726,
- -0.04950918257236481, 0.042040277272462845, 0.03634076192975044, 0.04187510162591934,
- -0.14612480998039246, 0.015787838026881218, -0.011935143731534481, -0.09502457827329636,
- 0.071916863322258, 0.03970935940742493, 0.08449795097112656, 0.02067437395453453,
- 0.020229551941156387, 0.04313189908862114, 0.00839196890592575, -0.04141959547996521,
- 0.02738194540143013, 0.08016275614500046, 0.04485830292105675, 0.08078418672084808,
- 0.1216093972325325, -0.06182746961712837, -0.028420567512512207, -0.045840758830308914,
- 0.08164802193641663, 0.1423114538192749, -0.0347357802093029, -0.005610192194581032,
- -0.007750552613288164, -0.02844875119626522, -0.01242288388311863, -0.08933620154857635,
- -0.04524896293878555, -0.017857400700449944, -0.0032983850687742233,
- 0.06925421208143234, 0.02336902543902397, -0.059570297598838806, -0.17748427391052246,
- -0.026447303593158722, -0.0864546075463295, 0.007808944676071405, 0.15172824263572693,
- -0.09576735645532608, 0.003974555991590023, 0.007678682450205088, -0.002926853019744158,
- -0.03005622699856758, -0.08599582314491272, 0.027461275458335876, -0.05616869404911995,
- 0.027273138985037804, 0.040886443108320236, 0.04290420934557915, -0.04106292128562927,
- 0.12752744555473328, -0.09473499655723572, 0.09993313997983932, -0.0417194701731205,
- -0.011962235905230045, 0.0315583199262619, -0.029561681672930717, -0.017221510410308838,
- 0.08443184196949005, -0.04361211508512497, 0.060910556465387344, 0.011497532948851585,
- -0.03154030442237854, -0.07284346222877502, -0.07309221476316452, -0.02115863561630249,
- -0.08709517866373062, -0.014361665584146976, -0.11508812755346298, 0.019017675891518593,
- -0.013356938026845455, -0.04721243679523468, -0.03144315257668495, 0.05074962601065636,
- 0.05292033776640892, -0.10837513208389282, 0.01554119773209095, 0.027233514934778214,
- 0.038346849381923676, -0.009819086641073227, -0.08751557767391205, 0.004762135446071625,
- 0.07720717787742615, 0.05961058288812637, -0.01333033386617899, 0.0352773442864418,
- -0.06216873228549957, 0.02997584640979767, -0.12450026720762253, -0.3946097195148468,
- 0.08473198860883713, 0.011443919502198696, 0.03832925856113434, -0.016855385154485703,
- -0.05821073055267334, 0.05592220649123192, 0.0013044422958046198, -0.07418295741081238,
- 0.09992218762636185, -0.08122136443853378, -0.011916885152459145, -0.04642795771360397,
- -0.0660981759428978, -0.07185374200344086, -0.07331886887550354, -0.04622448608279228,
- 0.033210575580596924, -0.006933797616511583, -0.07854904234409332, -0.07143601775169373,
- 0.06569139659404755, 0.010682689025998116, 0.03052763268351555, 0.020669221878051758,
- 0.0387522391974926, -0.017010966315865517, -0.005853228736668825, 0.07835844904184341,
- 0.08648286014795303, 0.00400347076356411, -0.05919174477458, -0.03293030336499214,
- 0.04704413190484047, 0.008214016444981098, 0.08831474184989929, 0.024242233484983444,
- 0.0025003445334732533, -0.09904547780752182, 0.08029057830572128, 0.06190279498696327,
- 0.18763670325279236, 0.009437981061637402, 0.028826307505369186, 0.03463667258620262,
- 0.12884771823883057, 0.013154784217476845, 0.0662132054567337, -0.06199122220277786,
- 0.003551308996975422, 0.03632831573486328, 0.001738921389915049, 0.07579407840967178,
- -0.07796449214220047, -0.048457566648721695, -0.02891010046005249, -0.03892054408788681,
- -0.027722496539354324, -0.01482115313410759, 0.16022996604442596, 0.044758398085832596,
- -0.010020541027188301, 0.00036083575105294585, -0.050096120685338974,
- 0.03200976550579071, -0.07390724122524261, -0.1355103701353073, 0.012377005070447922,
- -0.0014467844739556313, 0.03530688211321831, -0.040178216993808746,
- -0.11946820467710495, 0.026467956602573395, 0.00843888707458973, 0.004673501942306757,
- 0.10651905834674835, -0.051883939653635025, 0.027569841593503952, -0.03268199786543846,
- 0.13977858424186707, 0.04202703759074211, 0.012393302284181118, 0.07173743098974228,
- 0.08109963685274124, 0.03729511797428131, 0.03718956187367439, -0.029514629393815994,
- -0.07411550730466843, 0.02064223401248455, 0.1476825773715973, -0.0222169179469347,
- 0.11406444013118744, 0.06896661967039108, -0.045167047530412674, -0.04016062989830971,
- 0.016064118593931198, -0.013403454795479774, 0.030934007838368416, -0.4373534321784973,
- -0.03292602673172951, 0.1233999952673912, 0.03515635430812836, 0.03806065022945404,
- 0.08559345453977585, 0.06142374873161316, -0.04893014207482338, -0.04665113240480423,
- -0.10070868581533432, 0.1911352276802063, -0.008334904909133911, 0.06114737316966057,
- -0.08759482204914093, 0.03761638328433037, 0.11959810554981232, -0.022713834419846535,
- -0.006447437684983015, 0.04340367764234543, -0.21967126429080963, -0.0466301329433918,
- 0.009472936391830444, 0.13449253141880035, -0.008630024269223213, 0.04570896923542023,
- 0.09773796051740646, -0.0807003453373909, 0.019798899069428444, 0.0655943751335144,
- -0.057807572185993195, 0.048786476254463196, -0.012704387307167053,
- -0.0038995244540274143, 0.11226044595241547, 0.1298249065876007, 0.07742857933044434,
- -0.0236006211489439, 11.859715461730957, 0.0766201987862587, 0.08026109635829926,
- -0.1426616609096527, 0.023824293166399002, -0.05801071971654892, 0.01360577717423439,
- -0.14792238175868988, 0.09235993772745132, 0.12026122957468033, -0.03713136538863182,
- -0.043202318251132965, -0.061419323086738586, -0.09175825119018555,
- 0.0011109441984444857, -0.0052686710841953754, -0.09187006205320358,
- -0.0008952292846515775, 0.033344466239213943, -0.018556315451860428,
- -0.043708451092243195, 0.02680908888578415, 0.0636822059750557, -0.0082056550309062,
- -0.032610151916742325, 0.09157000482082367, -0.028206946328282356, 0.008278646506369114,
- -0.01139397919178009, 0.004322236403822899, 0.004590746946632862, -0.005333644803613424,
- 0.07152948528528214, 0.006077030673623085, 0.017745662480592728, 0.05930664390325546,
- 0.07204321026802063, 0.006308742333203554, 0.029737023636698723, 0.06256994605064392,
- -0.007039729971438646, 0.028158491477370262, 0.002916267840191722, 0.09144685417413712,
- 0.04838034138083458, 0.018779784440994263, 0.04633539542555809, 0.08442510664463043,
- -0.041464149951934814, 0.030416136607527733, 0.0845995768904686, -0.020108498632907867,
- 0.10289770364761353, 0.008949877694249153, 0.013739279471337795, 0.07713557779788971,
- -0.018587546423077583, -0.06807411462068558, 0.08648526668548584, 0.04229070246219635,
- -0.049939125776290894, 0.12966854870319366, 0.006762874312698841, 0.07166308909654617,
- 0.01715959422290325, 0.07655266672372818, 0.06366236507892609, 0.08803340792655945,
- -0.14128822088241577, -0.05585493519902229, 0.016390042379498482, -0.08415147662162781,
- -0.13172666728496552, 0.06497535109519958, 0.07999573647975922, -0.03893915191292763,
- 0.0951516255736351, -0.0005470265168696642, 0.0011061165714636445, -0.01413801684975624,
- -0.028689337894320488, 0.02298969402909279, -0.019243432208895683, 0.015864918008446693,
- 0.0694655179977417, 0.012147982604801655, 0.04744039848446846, 0.10675234347581863,
- -0.01929246447980404, -0.08937308192253113, -0.06832905858755112, 0.11055829375982285,
- -0.033908598124980927, -0.04694659635424614, 0.017885498702526093, -0.05870812013745308,
- 0.04998312145471573, -0.1662544459104538, 0.08198372274637222, 0.14995847642421722,
- -0.05495192110538483, 0.01051631011068821, -0.030052892863750458, 0.07936093211174011,
- -0.015867887064814568, 0.008732615038752556, -0.08926468342542648, 0.01839977689087391,
- -0.013884696178138256, 0.059912700206041336, -0.041805099695920944, 0.0958065539598465,
- 0.03382694721221924, -0.09556227922439575, 0.051576387137174606, 0.06930018216371536,
- -0.04649818688631058, -0.006154369562864304, 0.09199700504541397, 0.022113343700766563,
- -0.07985825091600418, -0.028293665498495102, -0.019028952345252037,
- -0.06237403303384781, -0.04059641435742378, -0.04119105264544487, -0.0065185003913939,
- 0.026521556079387665, -0.01596726104617119, 0.03309089317917824, 0.022439630702137947,
- 0.07560425251722336, 0.1018577516078949, -0.054250381886959076, 0.0331927053630352,
- -0.06349191814661026, -0.04049914702773094, 0.05008422210812569, 0.03245963528752327,
- 0.07756482064723969, -0.08508526533842087, -0.045574262738227844, -0.03433253616094589,
- -0.10171039402484894, -0.013013271614909172, 0.0898665264248848, 0.010502378456294537,
- 0.024149037897586823, 0.004365538712590933, -0.08808859437704086, -0.05900750309228897,
- 0.07766511291265488, 0.029353104531764984, 0.01449283305555582, -0.0036528545897454023,
- -0.08968380838632584, -0.05572011321783066, 0.10198429226875305, -0.00992177240550518,
- -0.05492860823869705, 0.10735815018415451, 0.0006362388958223164, 0.12530705332756042,
- 0.09057257324457169, 0.12043552100658417, 0.052127107977867126, 0.024764126166701317,
- -0.03710581362247467, 0.004931971896439791, 0.013044769875705242, -0.032309647649526596,
- -0.01141099352389574, -0.0451628714799881, -0.07765807211399078, -0.003333521541208029,
- 0.09717720746994019, 0.03408641740679741, -0.08310047537088394, -0.0010996806668117642,
- -0.009465538896620274
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 89,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 163,
- "similarity": 0.9979707598686218
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 198,
- "similarity": 0.9978954792022705
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 72,
- "similarity": 0.9978938698768616
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Cecelia D'Anastasio"],
- "epoch_date_downloaded": 1607817600,
- "epoch_date_modified": 1607904000,
- "epoch_date_submitted": 1607904000,
- "flag": null,
- "report_number": 1389,
- "source_domain": "wired.com",
- "submitters": ["Sean McGregor"],
- "title": "The Christchurch shooter and YouTube’s radicalization trap",
- "url": "https://www.wired.com/story/christchurch-shooter-youtube-radicalization-extremism/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "stanford-medical-center",
- "name": "Stanford Medical Center"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "stanford-medical-center",
- "name": "Stanford Medical Center"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "stanford-medical-residents",
- "name": "Stanford Medical residents"
- },
- {
- "__typename": "Entity",
- "entity_id": "stanford-medical-frontline-workers",
- "name": "Stanford Medical frontline workers"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1779, 1720, 1463, 1392, 1391],
- "vector": [
- -0.07605735957622528, 0.0922807827591896, 0.014506449922919273, -0.1251567304134369,
- 0.047584109008312225, 0.03222031891345978, 0.009433350525796413, 0.08724284917116165,
- 0.08032374829053879, -0.1331518590450287, 0.025368016213178635, 0.018729064613580704,
- 0.015188070945441723, -0.11303772777318954, -0.0330192893743515, -0.09576240926980972,
- -0.07303865253925323, -0.07866232097148895, -0.03553934022784233, -0.14102499186992645,
- -0.05571631342172623, 0.007909971289336681, -0.023085270076990128, 0.09719225019216537,
- -0.049882691353559494, 0.04714358597993851, 0.06371943652629852, 0.148818239569664,
- -0.0010106612462550402, 0.04447925090789795, -0.04379761219024658, -0.08670808374881744,
- 0.10457271337509155, 0.015269014053046703, 0.001019866787828505, 0.09479282796382904,
- -0.026432108134031296, -0.02835925854742527, 0.003916473593562841,
- 0.0025721185375005007, -0.02659551240503788, 0.24530605971813202, 0.010996555909514427,
- -0.03428317978978157, 0.037480391561985016, -0.02937239781022072, 0.03656084090471268,
- 0.10473217815160751, -0.011207246221601963, -0.0006551425904035568,
- -0.00023030191368889064, 0.08342316001653671, -0.03524838015437126,
- 0.025800887495279312, -0.1779783070087433, 0.07726264744997025, 0.018895380198955536,
- -0.04543657228350639, 0.030249467119574547, -0.06728948652744293, -0.008289692923426628,
- -0.2779789865016937, -0.010746994987130165, -0.05040230229496956, 0.10427498817443848,
- -0.06183994933962822, -0.017529502511024475, 0.01525278203189373, 0.026645541191101074,
- 0.0797908827662468, 0.036527179181575775, 0.0060416460037231445, -0.056064408272504807,
- -0.049824006855487823, 0.007602337747812271, -0.04638088867068291, 0.0331091545522213,
- 0.22047095000743866, -0.10742638260126114, 0.0008584989118389785, 0.11145880073308945,
- -0.11733873188495636, 0.4621211886405945, -0.01607849821448326, -0.01477119605988264,
- 0.009407696314156055, 0.0809282436966896, 0.009313703514635563, 0.03346995636820793,
- 0.04147540032863617, -0.05079049617052078, 0.05721033737063408, -0.023686815053224564,
- 0.0402720682322979, 0.06894591450691223, 0.02839665114879608, -0.02134687267243862,
- 0.05797474831342697, 0.008249994367361069, -0.04401684179902077, 0.03630446642637253,
- -0.049559175968170166, 0.08816616237163544, 0.08197995275259018, -0.024662066251039505,
- -0.027298454195261, 0.10652383416891098, -0.05480802804231644, 0.038275524973869324,
- -0.06251600384712219, 0.019327040761709213, -0.014488497748970985, 0.011678427457809448,
- 0.035387661308050156, -0.0040074740536510944, -0.03602001816034317, 0.02882491610944271,
- 0.0679628998041153, 0.09661358594894409, -0.021062316372990608, 0.036778632551431656,
- 0.06971435993909836, 0.07054954767227173, -0.00736160296946764, -0.02841668203473091,
- -0.005272220820188522, -0.07605373859405518, 0.0008772984147071838,
- -0.04361008480191231, 0.07969938963651657, -0.09406296908855438, -0.18429817259311676,
- -0.0129921343177557, 0.0973583236336708, -0.03408392146229744, -0.0362524650990963,
- 0.004283349961042404, -0.03657536953687668, 0.05673212930560112, -0.048774462193250656,
- -0.004614425357431173, 0.045427482575178146, 0.05011449009180069, 0.04246949404478073,
- 0.10638389736413956, 0.03833673149347305, -0.06437163054943085, -0.03580478951334953,
- -0.002700170734897256, -0.025821393355727196, 0.11062981933355331, -0.17859166860580444,
- -0.026978785172104836, 0.01663181558251381, -0.027017300948500633, 0.6668103933334351,
- 0.15126916766166687, 0.18449679017066956, -0.010968828573822975, -0.043587762862443924,
- 0.18398582935333252, 0.0018667059484869242, 0.05390495806932449, -0.08795062452554703,
- -0.0740370899438858, 0.04761960357427597, -0.07457669079303741, -0.03572823852300644,
- 0.03391382470726967, 0.0015653986483812332, 0.12511417269706726, 0.01601451449096203,
- 0.09149380773305893, -0.014936819672584534, -0.1321929693222046, -0.02752619981765747,
- 0.07579133659601212, -0.0006548369419761002, -0.14774656295776367, -0.03332238271832466,
- 0.041493695229291916, 0.07498745620250702, -0.09261567890644073, 0.017615769058465958,
- -0.06465375423431396, 0.031950049102306366, -0.01779506541788578, 0.04346540942788124,
- -0.009815591387450695, 0.020057478919625282, 0.019482102245092392, 0.05436009168624878,
- 0.02843797206878662, -0.14661535620689392, -0.06564851850271225, 0.0866975411772728,
- 0.014229878783226013, -0.05010923743247986, 0.09826798737049103, -0.09763868153095245,
- 0.0299528781324625, 0.018593598157167435, 0.26464271545410156, -0.16095438599586487,
- 0.0008584201568737626, -0.01972391828894615, -0.02907456085085869, 0.05392424017190933,
- -0.01898050121963024, -0.028675418347120285, -0.03550828620791435, 0.0686597004532814,
- 0.043555933982133865, 0.1091676577925682, 0.10792460292577744, -0.024295425042510033,
- 0.06998492777347565, 0.06181265041232109, -0.03227105736732483, -0.030453583225607872,
- 0.07487653195858002, 0.0602465495467186, -0.035518817603588104, -0.008236901834607124,
- 0.04156717285513878, 0.07109534740447998, 0.019791413098573685, -0.025296587496995926,
- 0.06334250420331955, -0.006360108498483896, -0.08269373327493668, 0.04456639662384987,
- 0.0005715973675251007, -0.015662696212530136, 0.11094297468662262, -0.06005207449197769,
- 0.00344768981449306, -0.01299443282186985, 0.007353366352617741, 0.03605429455637932,
- -0.05266747623682022, 0.08506326377391815, 0.10793761909008026, 0.06387154757976532,
- -0.009191793389618397, 0.06022839620709419, 0.06434793770313263, 0.06464435160160065,
- 0.011403562501072884, 0.1181568056344986, -0.0021764517296105623, -0.07628386467695236,
- -0.00232192175462842, -0.026512790471315384, 0.0005985565367154777, 0.02087155543267727,
- -0.07926289737224579, -0.043835319578647614, -0.027200449258089066,
- -0.03553545102477074, -0.0795692652463913, -0.036198459565639496, 0.022101175040006638,
- 0.026096070185303688, -0.04712021350860596, -0.10720671713352203, -0.09501563012599945,
- 0.0005667187506332994, 0.11170190572738647, 0.019925907254219055, -0.021519934758543968,
- -0.12221980094909668, 0.06745310127735138, -0.011583895422518253, 0.07294374704360962,
- 0.019859859719872475, 0.0048772417940199375, -0.014506642706692219,
- -0.08174081146717072, 0.03997169807553291, -0.015846749767661095, -0.03860542178153992,
- -0.06646393239498138, -0.10884624719619751, -0.04283510521054268, -0.04501674696803093,
- 0.045349154621362686, -0.07352295517921448, 0.03325743228197098, 0.059075504541397095,
- 0.03804493695497513, -0.01786045730113983, -0.04503633454442024, 0.033471692353487015,
- -0.059366125613451004, 0.008381622843444347, 0.09933409839868546, -0.04300834238529205,
- 0.023775914683938026, 0.005453391466289759, -0.05710068345069885, -0.005081328563392162,
- -0.023574115708470345, -0.028617296367883682, 0.05623897910118103, -0.03296675533056259,
- -0.035075731575489044, -0.03232891485095024, 0.006587217561900616, 0.04758455231785774,
- -0.06665243208408356, -0.06408426910638809, -0.05410587787628174, 0.11635251343250275,
- -0.018929429352283478, 0.04825657606124878, -0.03403026983141899, -0.08481989055871964,
- 0.04767020791769028, 0.00028965473757125437, 0.017149697989225388, 0.01655878685414791,
- 0.041797030717134476, -0.05336301401257515, 0.003990474157035351, 0.0869307816028595,
- -0.03976631164550781, 0.04538189247250557, 0.043365560472011566, 0.439267098903656,
- -0.1578589230775833, 0.0930243507027626, 0.06131880357861519, 0.08429268002510071,
- 0.042317017912864685, -0.07440407574176788, 0.06482820212841034, 0.08541443198919296,
- 0.09779027104377747, 0.11431530863046646, -0.05865557864308357, -0.008678337559103966,
- -0.0969100371003151, 0.10827872902154922, 0.01569778472185135, 0.028199683874845505,
- -0.021009735763072968, -0.08422233164310455, -0.03951629251241684,
- -0.006517788860946894, -0.043889522552490234, 0.002782976720482111,
- -0.0008461750112473965, -0.06546090543270111, 0.02894129790365696,
- -0.0011401824885979295, 0.013461786322295666, -0.03533553704619408, 0.05122412368655205,
- -0.022806664928793907, 0.029788846150040627, 0.048785608261823654, 0.021982811391353607,
- -0.08728723227977753, 0.03441784530878067, -0.097501240670681, -0.08773298561573029,
- 0.08342684805393219, -0.016928985714912415, 0.07073260843753815, 0.08443408459424973,
- -0.02607065439224243, 0.053808748722076416, 0.021043632179498672, -0.05016869306564331,
- 0.0360395610332489, 0.06999813765287399, 0.053107380867004395, 0.09813676029443741,
- 0.21683339774608612, -0.0651593953371048, -0.07467633485794067, -0.08060072362422943,
- 0.0657033771276474, 0.141581729054451, -0.011483972892165184, -0.003195730270817876,
- 0.046322036534547806, -0.033952005207538605, 0.016716675832867622, -0.06980866193771362,
- -0.06694881618022919, -0.0264795683324337, -0.04167716205120087, 0.08337505161762238,
- -0.016022903844714165, -0.07187593728303909, -0.1332571655511856, -0.035960353910923004,
- -0.03963153436779976, 0.020605934783816338, 0.1547888070344925, -0.045719511806964874,
- 0.03443976491689682, -0.025029916316270828, -0.011818906292319298, 0.07112322747707367,
- -0.05298854783177376, 0.04994399845600128, -0.03278183937072754, 0.02745298482477665,
- 0.019876917824149132, 0.028111442923545837, -0.08939508348703384, 0.08399273455142975,
- -0.08628052473068237, 0.035189054906368256, -0.003068985417485237, -0.07947380840778351,
- 0.020179729908704758, -0.04295356944203377, 0.008695708587765694, 0.020380128175020218,
- -0.03517746552824974, 0.022285664454102516, -0.008844474330544472,
- -0.027548212558031082, -0.11707206815481186, -0.053116582334041595,
- -0.05708823353052139, -0.08912719041109085, 0.005184514913707972, -0.13812120258808136,
- 0.0028894427232444286, -0.03286739066243172, -0.04586860537528992, 0.020121637731790543,
- 0.0639767125248909, 0.05083158612251282, -0.14348173141479492, 0.03566049039363861,
- -0.03061591647565365, 0.09158884733915329, -0.007450907491147518, -0.02993563376367092,
- 0.05440216138958931, 0.12489201128482819, 0.041645679622888565, 0.0156088350340724,
- 0.014012803323566914, -0.0651535838842392, 0.08904030174016953, -0.10703973472118378,
- -0.4425199627876282, 0.019443679600954056, 0.005727974232286215, 0.028243165463209152,
- 0.033828504383563995, -0.11105592548847198, 0.0778135135769844, -0.030339200049638748,
- -0.026842212304472923, 0.10862670093774796, -0.052054308354854584, 0.035808730870485306,
- 0.005648317746818066, -0.07017569243907928, -0.030914384871721268, -0.06291589885950089,
- -0.06339430063962936, 0.057679466903209686, -0.004576588980853558, -0.06890358775854111,
- -0.10283708572387695, 0.04903765395283699, -0.01105498243123293, 0.037428390234708786,
- -0.006972596049308777, 0.03169999271631241, -0.04139970988035202, -0.005344304721802473,
- 0.026707196608185768, 0.03774217516183853, 0.03100387193262577, -0.06383257359266281,
- 0.00930505059659481, 0.06586717069149017, -0.014277627691626549, 0.12434611469507217,
- 0.02174052596092224, 0.047168705612421036, -0.06813888996839523, 0.10684800148010254,
- 0.05733158439397812, 0.1856561303138733, -0.007340447511523962, 0.02460714802145958,
- -0.02531309984624386, 0.14347517490386963, 0.042396701872348785, 0.041185539215803146,
- -0.0333731546998024, 0.010011514648795128, 0.03355664759874344, -0.008846014738082886,
- 0.09216950833797455, -0.0971245989203453, 0.015168312005698681, -0.05886606127023697,
- -0.02009192481637001, 0.029923424124717712, 0.005547051317989826, 0.16490745544433594,
- 0.017381275072693825, 0.013177553191781044, 0.027914350852370262, -0.06557432562112808,
- 0.021317919716238976, -0.10882802307605743, -0.1056453138589859, 0.009462994523346424,
- 0.007496601436287165, -0.02434556558728218, 0.004083206877112389, -0.12312258780002594,
- -0.017026610672473907, -0.04466327652335167, 0.007088591810315847, 0.08972233533859253,
- -0.07778139412403107, 0.020630862563848495, -0.023677555844187737, 0.14526554942131042,
- 0.061543941497802734, 0.05771676450967789, 0.06108912080526352, 0.056140512228012085,
- 0.016787849366664886, 0.018425459042191505, -0.06521400064229965, -0.08173808455467224,
- -0.023394053801894188, 0.16311374306678772, -0.04489895701408386, 0.16173121333122253,
- 0.02264956571161747, -0.0719260424375534, -0.06497855484485626, 0.0028986309189349413,
- -0.046493049710989, 0.014538874849677086, -0.4483950138092041, -0.00546297850087285,
- 0.1405785083770752, 0.008621727116405964, 0.037709735333919525, 0.08154652267694473,
- 0.010333980433642864, -0.05366687849164009, -0.02041160687804222, -0.08257672935724258,
- 0.19497191905975342, 0.02479112520813942, 0.041080258786678314, -0.0874364823102951,
- 0.05780644342303276, 0.10145008563995361, -0.04781172424554825, -0.010679873637855053,
- 0.051315613090991974, -0.20034842193126678, -0.04239504411816597, -0.015132171101868153,
- 0.15069691836833954, 0.043853823095560074, 0.03129221126437187, 0.09976796060800552,
- -0.016532287001609802, -0.012064211070537567, 0.03628649190068245, 0.002974178409203887,
- 0.06838762760162354, -0.022217273712158203, -0.039084292948246, 0.09961380809545517,
- 0.1136256605386734, 0.09243599325418472, -0.041594356298446655, 11.96696662902832,
- 0.07791267335414886, 0.0564735047519207, -0.07881344854831696, 0.004373261705040932,
- -0.04568391293287277, 0.009313532151281834, -0.1295141726732254, 0.009449169971048832,
- 0.12030933052301407, 0.0006225451943464577, -0.023935997858643532, 0.00795659888535738,
- -0.11733455955982208, 0.007878364063799381, -0.0635584145784378, -0.06600399315357208,
- -0.030983665958046913, 0.033863767981529236, -0.03770582377910614, -0.05901748687028885,
- 0.027410289272665977, 0.03236912935972214, 0.021987060084939003, -0.053154874593019485,
- 0.0437937006354332, 0.003278146730735898, -0.010967614129185677, -0.01407581102102995,
- 0.023673752322793007, -0.03175879642367363, 0.009867718443274498, 0.05491114780306816,
- -0.01347013097256422, 0.022434059530496597, 0.029785990715026855, 0.046463098376989365,
- 0.05003409460186958, 0.02722994051873684, 0.11142133176326752, -0.0006607502582482994,
- 0.038995251059532166, 0.02893582545220852, 0.054405003786087036, 0.06763430684804916,
- 0.0476357527077198, 0.007233037613332272, 0.1451331377029419, 0.007949644699692726,
- 0.06629731506109238, 0.12104947865009308, -0.010087225586175919, 0.11680765450000763,
- 0.015664566308259964, 0.020236702635884285, 0.0680738016963005, -0.028735503554344177,
- -0.06625310331583023, 0.05473605543375015, 0.07899338752031326, -0.03974531218409538,
- 0.09246847778558731, 0.024375246837735176, 0.10529296100139618, -0.05459846183657646,
- 0.042943209409713745, 0.08205048739910126, 0.056087903678417206, -0.212550088763237,
- -0.07838430255651474, 0.030218254774808884, -0.09237177670001984, -0.11004774272441864,
- 0.08196310698986053, 0.13326501846313477, -0.03326522558927536, 0.0605945885181427,
- 0.004508542828261852, 0.046380624175071716, -0.04051690176129341, -0.009085448458790779,
- 0.10106058418750763, -0.044518448412418365, -0.03137853369116783, 0.071114182472229,
- 0.030397307127714157, 0.1299276053905487, 0.12760329246520996, -0.03765059635043144,
- -0.07397779077291489, -0.08780709654092789, 0.0666375458240509, -0.0328516885638237,
- -0.06281892955303192, 0.012401895597577095, -0.08875954151153564, 0.03724667429924011,
- -0.20040485262870789, 0.0949137955904007, 0.07565034925937653, -0.11669929325580597,
- -0.052733682096004486, -0.052301593124866486, 0.0960998460650444, -0.013942576944828033,
- 0.011119644157588482, -0.04378431290388107, 0.06961991637945175, -0.006929074879735708,
- 0.02283157780766487, -0.05748439580202103, 0.05352170392870903, 0.06737519800662994,
- -0.024476082995533943, 0.03235277161002159, 0.06897451728582382, -0.07674138993024826,
- -0.03736155107617378, 0.0798950046300888, 0.016156714409589767, -0.09265850484371185,
- -0.049271512776613235, -0.02158120833337307, -0.03129979968070984,
- -0.042365558445453644, -0.04226001724600792, 0.010018868371844292,
- -0.0037730231415480375, -0.07090678811073303, -0.04284428805112839, 0.03446178138256073,
- 0.0575641505420208, 0.08528672158718109, 0.023595064878463745, 0.11461931467056274,
- -0.052453089505434036, -0.03414333239197731, 0.07764773815870285, 0.05976581573486328,
- 0.07147546112537384, -0.07166613638401031, -0.02527235820889473, -0.04102578014135361,
- -0.1154387816786766, 0.023809636011719704, 0.06708361208438873, -0.0014076180523261428,
- 0.04584762081503868, 0.006592858582735062, -0.041717529296875, -0.06934203952550888,
- 0.05618373677134514, 0.020023349672555923, 0.0539696030318737, 0.006233790423721075,
- -0.05084700509905815, -0.04085171967744827, 0.11397294700145721, -0.032964907586574554,
- -0.02403843402862549, 0.02117765136063099, 0.026048745959997177, 0.09795020520687103,
- 0.13489751517772675, 0.03678886592388153, 0.01613982953131199, 0.03403722494840622,
- 0.015915874391794205, 0.00706110754981637, -0.01583738997578621, 0.017362825572490692,
- -0.046346914023160934, -0.061499468982219696, -0.04310581833124161,
- 0.009511159732937813, 0.07598916441202164, -0.009933686815202236, -0.12353696674108505,
- -0.023525623604655266, -0.051280759274959564
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 91,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 195,
- "similarity": 0.99789959192276
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 208,
- "similarity": 0.9977148175239563
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 199,
- "similarity": 0.9977001547813416
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Eileen Guo", " Karen Hao"],
- "epoch_date_downloaded": 1608595200,
- "epoch_date_modified": 1658707200,
- "epoch_date_submitted": 1655337600,
- "flag": null,
- "report_number": 1779,
- "source_domain": "technologyreview.com",
- "submitters": ["Ingrid Dickinson (CSET)"],
- "title": "This is the Stanford vaccine algorithm that left out frontline doctors",
- "url": "https://www.technologyreview.com/2020/12/21/1015303/stanford-vaccine-algorithm/"
- },
- {
- "__typename": "Report",
- "authors": ["Jay Peters"],
- "epoch_date_downloaded": 1608422400,
- "epoch_date_modified": 1654473600,
- "epoch_date_submitted": 1654128000,
- "flag": null,
- "report_number": 1720,
- "source_domain": "theverge.com",
- "submitters": ["Ingrid Dickinson (CSET)"],
- "title": "Stanford algorithm decided to vaccinate only seven of its frontline COVID-19 workers, out of 5,000 doses",
- "url": "https://www.theverge.com/2020/12/20/22191749/stanford-medicine-covid-19-vaccine-distribution-list-algorithm-medical-residents"
- },
- {
- "__typename": "Report",
- "authors": ["Lenny Bernstein", "Lateshia Beachum", "Hannah Knowles"],
- "epoch_date_downloaded": 1635033600,
- "epoch_date_modified": 1635120000,
- "epoch_date_submitted": 1635120000,
- "flag": null,
- "report_number": 1463,
- "source_domain": "washingtonpost.com",
- "submitters": ["Patrick Hall (BNH.ai)"],
- "title": "Stanford apologizes for coronavirus vaccine plan that left out many front-line doctors",
- "url": "https://www.washingtonpost.com/health/2020/12/18/stanford-hospital-protest-covid-vaccine/"
- },
- {
- "__typename": "Report",
- "authors": ["Caroline Chen"],
- "epoch_date_downloaded": 1659744000,
- "epoch_date_modified": 1659744000,
- "epoch_date_submitted": 1608336000,
- "flag": null,
- "report_number": 1392,
- "source_domain": "propublica.org",
- "submitters": ["Sean McGregor"],
- "title": "Only Seven of Stanford’s First 5,000 Vaccines Were Designated for Medical Residents",
- "url": "https://www.propublica.org/article/only-seven-of-stanfords-first-5-000-vaccines-were-designated-for-medical-residents"
- },
- {
- "__typename": "Report",
- "authors": ["Danielle Zoellner"],
- "epoch_date_downloaded": 1608249600,
- "epoch_date_modified": 1608336000,
- "epoch_date_submitted": 1608336000,
- "flag": null,
- "report_number": 1391,
- "source_domain": "independent.co.uk",
- "submitters": ["Beatrice Moissinac"],
- "title": "Frontline workers protest at Stanford after hospital distributed vaccine to administrators",
- "url": "https://www.independent.co.uk/news/world/americas/stanford-vaccine-protest-hospital-workers-b1776403.html"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "goldman-sachs",
- "name": "Goldman-Sachs"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "apple",
- "name": "Apple"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "apple-card-female-users",
- "name": "Apple Card female users"
- },
- {
- "__typename": "Entity",
- "entity_id": "apple-card-female-credit-applicants",
- "name": "Apple Card female credit applicants"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1393, 1396, 2035, 2036, 2037, 2274],
- "vector": [
- -0.053847650066018105, 0.07731797111531098, 0.005471442088795205, -0.11824921270211537,
- 0.06176703299085299, -0.05232562186817328, 0.014232556277420372, 0.0737041433652242,
- 0.0703671978165706, -0.1310217355688413, -0.03304834601779779, 0.046784964428904154,
- 0.0407599521179994, -0.04966636071912944, 0.01047830656170845, -0.06740280302862327,
- -0.08666721172630787, -0.01709601205463211, 0.0071321256885615485, -0.13237291077772775,
- -0.07426966695735852, -0.011236642487347126, 0.05997258797287941, 0.1320421335597833,
- -0.03094582011302312, 0.039159938848267, 0.12744701902071634, 0.11691156526406606,
- -0.021380699705332518, 0.07089396938681602, -0.038059927833577, -0.07445680784682433,
- 0.10780420651038487, -0.0047480322342986865, -0.001147971022874117, 0.09654895588755608,
- 0.012726141760746637, -0.032039081173328064, -0.028035303267339867,
- -0.014438745953763524, 0.0552894938737154, 0.26625928779443103, 0.00025614940871795017,
- -0.013049931032583117, 0.052951862725118794, -0.02144674661879738, 0.04243819233185301,
- 0.045104680893321834, -0.007178393192589283, 0.0005177467440565428,
- 0.0071996733992515756, 0.013116306314865748, -0.05777444380025069, 0.04652795676762859,
- -0.0809193445990483, 0.03819653190051516, 0.035204119669894375, 0.04135511132578055,
- 0.015742992400191724, -0.06368356477469206, -0.022435967500011127, -0.19760635246833166,
- -0.024860818559924763, -0.046487329294905066, 0.0915242110689481, -0.06455327663570642,
- -0.014517135316661248, 0.0158179165640225, 0.03216384739304582, 0.06403857966264088,
- 0.055081089958548546, -0.05105758644640446, -0.025951884376506012, 0.025803255538145702,
- -0.005939146503806114, -0.04539083379010359, 0.009004733990877867, 0.22340131799379984,
- -0.06814110899964969, 0.003965072178592284, 0.12547000497579575, -0.1129007413983345,
- 0.4109044323364894, 0.029977532879759867, -0.045437999127898365, 0.015144006737197438,
- 0.07997444955011208, 0.04500875932474931, 0.03532561531756073, 0.06371795137723286,
- -0.04493349107603232, 0.05952919585009416, -0.06004660824934641, 0.03252190778342386,
- 0.06904892312983672, 0.0394584482225279, -0.021634376142174006, -0.001550499660273393,
- -0.033018185601880155, -0.049977739651997886, 0.013480884954333305,
- -0.04466936302681764, 0.10063435199360053, 0.076327425117294, -0.056682794665296875,
- -0.01369019776272277, 0.09171345705787341, -0.053623754841585956, 0.062114241843422256,
- -0.05314977436016003, 0.028265317087061703, 0.027759192045778036, 0.06792132618526618,
- -0.014539789136809608, 0.033022936123112835, -0.036552440685530506,
- 0.014400551212020218, 0.02469982299953699, 0.07926046786208947, 0.0508727904719611,
- -0.0367593498279651, 0.05526026897132397, 0.068629148726662, -0.06419958174228668,
- -0.038353250439589225, -0.03725030149022738, -0.06916805729269981, -0.02960701158735901,
- -0.035949868227665625, 0.021024726117805887, -0.05409370517979065, -0.1640236626068751,
- 0.005804733916496237, 0.09442801897724469, -0.02047460324441393, -0.034454859172304474,
- 0.003489671823141786, -0.05605273383359114, 0.04393595131114125, -0.005612266560395558,
- -0.0007423784797235081, 0.03143943652200202, 0.03944863875706991, 0.05061142767469088,
- 0.07453648497660954, 0.039799231414993606, -0.03461819848356148, -0.03714022568116585,
- 0.010171875668068727, -0.03635986211399237, 0.12701354548335075, -0.136631661405166,
- -0.05455860992272695, 0.006092866649851203, -0.0355805717020606, 0.6634008288383484,
- 0.10317815591891606, 0.1630565238495668, 0.0028833902130524316, -0.04626156079272429,
- 0.17342656602462134, -0.006362638552673161, 0.06502911603699128, -0.0410891139957433,
- -0.035672941245138645, 0.029845714763117332, -0.07637658156454563, -0.05360712266216675,
- 0.02796832751482725, 0.010283482571442923, 0.1137703408797582, 0.008094637363683432,
- 0.1159079261124134, 0.026515393673131864, -0.06510057051976521, -0.03707795839970155,
- 0.029587372516592342, 0.0010944227688014507, -0.11114019900560379,
- -0.029172863190372784, 0.0486900390436252, 0.05038543418049812, -0.08987409931917985,
- 0.008267333265393972, -0.0627884875672559, 0.02432746362561981, -0.016475269415726263,
- 0.05644295737147331, -0.004503073752857745, 0.05164705923137566, 0.046771623698684074,
- 0.07266284401218097, 0.023971530376002192, -0.08756014580527942, -0.04407551729430755,
- 0.1084803616007169, -0.028074879354486864, -0.016395832916411262, 0.08365443845589955,
- -0.08527204891045888, 0.040065573838849865, -0.0016925754025578499, 0.16201131790876389,
- -0.13647382333874702, -0.006911936992158492, -0.024824771797284484,
- 0.005088020262822586, 0.04787672186891238, -0.01644996883502851, -0.09406331181526184,
- -0.08580584327379863, 0.05102079516897599, 0.015645600156858563, 0.03489142439017693,
- 0.049718470855926476, -0.027573497345050175, 0.034394485875964165, 0.0370210005591313,
- 0.03459570906125009, -0.05282061484952768, 0.06783258418242137, 0.03935345013936361,
- -0.02130036576030155, -0.023433850690101583, 0.018939576887836058, 0.04819188825786114,
- 0.017564097652211785, 0.013314042938873172, 0.05833597263942162, -0.030681610233538475,
- -0.04565111252789696, 0.0370831023901701, 0.03458523036291202, 0.010221168005955406,
- 0.10509888579448064, -0.06988136656582355, -0.062404983676970005, -0.038943516400953136,
- -0.028199546970427036, 0.03623492488016685, -0.03170520765706897, 0.06046534888446331,
- 0.08648838847875595, 0.07337311531106631, 0.0025326468942997358, 0.0457661592712005,
- 0.03389678802341223, 0.009555069652075568, 0.020416962293287117, 0.10265214741230011,
- -0.040281663027902447, -0.03830571317424377, -0.00009924805878351133,
- 0.007718622063597043, 0.0742160410930713, -0.0055419233297773944, -0.06135769312580427,
- -0.030013404320925474, -0.0682976966102918, -0.06989907628546159, -0.10006617071727912,
- -0.04924271069467068, 0.008358782719975958, 0.024900831553774577, -0.07132240695257981,
- -0.08815771403412025, -0.06622057656447093, 0.006363096336523692, 0.05902207146088282,
- -0.005491764439890782, -0.006612792223071058, -0.1238984689116478,
- -0.022631648772706587, -0.009663225384429097, 0.05543194400767485,
- -0.012607054125207165, 0.014286106918007135, -0.018122981069609523, -0.0673335213214159,
- 0.0034550533746369183, 0.007281902401397626, -0.013493163452949375,
- -0.04175526291752855, -0.056895823838810124, -0.04586085956543684,
- 0.0038562130260591707, 0.009622162984063229, -0.04677840632696947, 0.02815236880754431,
- 0.06559685431420803, 0.06642416430016358, -0.014435700528944531, -0.043141837193009756,
- 0.03834258454541365, -0.03524536204834779, 0.01621955291678508, 0.07011674189319213,
- -0.02213445088515679, 0.04763348400592804, -0.00975246304490914, -0.053674837884803615,
- -0.04344590918966181, -0.02866027255853017, -0.05153171283503374, 0.04512702285622557,
- -0.015254996561755737, 0.012180370123436054, -0.03298999276012182, -0.00774882532035311,
- 0.05483366921544075, -0.048431762804587684, -0.08625794636706512, -0.08106934651732445,
- 0.12389868622024854, 0.009072146378457546, 0.034625063805530466, 0.015290775074390694,
- -0.04554310937722524, 0.07401805464178324, 0.004535058474478622, 0.007057292619720101,
- 0.02233765476072828, 0.05088252232720455, 0.001510141184553504, 0.01636926639669885,
- 0.06522635370492935, -0.030476256002051134, 0.008907229096318284, 0.08137798868119717,
- 0.4233171393473943, -0.14709564670920372, 0.09545925011237462, 0.08381446947654088,
- 0.04704283798734347, 0.03425035152273873, -0.04714686485628287, 0.06188378420968851,
- 0.0673656811316808, 0.10608108590046565, 0.1453120969235897, -0.04992453629771868,
- -0.0032436198477322855, -0.058176968867580094, 0.08862776247163613,
- -0.005368309425345312, 0.027278743451461196, 0.00589451923345526, -0.07110862961659829,
- -0.03588669470142728, 0.04430526200061043, -0.03925135669608911, -0.017671839334070683,
- -0.0053655095980502665, -0.05097312821696202, 0.011471040702114502,
- 0.059578257923324905, 0.0386248721430699, -0.024269483673075836, 0.04517653429259857,
- -0.027400381009404857, 0.02710051539664467, 0.005858403746969998, 0.0062047624960541725,
- -0.09876811318099499, 0.025838462092603248, -0.06204001667598883, -0.08119774299363296,
- 0.07317424782862265, 0.00706978563296919, 0.046369656920433044, 0.024141610444833834,
- -0.030055723618716, 0.02885133291905125, -0.03340161653856436, -0.05971969788273176,
- 0.008448370732367039, 0.040498861111700535, 0.04788464494049549, 0.0597303199271361,
- 0.1677028884490331, -0.03201307045916716, 0.005350535308631758, -0.057300119350353874,
- 0.07932097216447194, 0.1576760709285736, -0.030623252348353464, 0.0005066042067483068,
- -0.013276611377174655, -0.014245879564744731, 0.00610734421449403, -0.06363866354028384,
- -0.08172506963213284, -0.011305146384984255, -0.0754337515681982, 0.0692974328994751,
- 0.02556447801180184, -0.038876283913850784, -0.12584499455988407, -0.05749379036327203,
- -0.05267443725218376, 0.019545740137497585, 0.1236072691778342, -0.07358388043940067,
- -0.004246131982654333, 0.01043477121371931, -0.023923528846353292,
- 0.0005043506777534882, -0.10775339355071385, -0.015558524096074203,
- -0.04733263918509086, 0.03835132407645384, 0.05340354765454928, 0.0810359325259924,
- -0.06620434609552224, 0.055588421722253166, -0.12241024027268092, 0.03494897919396559,
- 0.0090476229476432, -0.07123208946237962, 0.0058000350060562296, -0.038555730134248734,
- 0.026111031494413812, 0.019329447920123737, -0.05815688210229079, 0.01384739779556791,
- -0.006174975584144704, -0.027025531434143584, -0.07020403755207856,
- -0.04760793223977089, -0.029395817468563717, -0.07567061918477218, 0.052616202582915626,
- -0.10981477797031403, 0.004868785889508824, -0.025918539070213836,
- -0.017447562286785494, 0.00012917102624972662, 0.031101608493675787,
- 0.01086006515348951, -0.11453694788118203, 0.014189972697446743, -0.015494905489807328,
- 0.048594521979490914, -0.08325682611515124, -0.05046693794429302, 0.01685517809043328,
- 0.06297835521399975, 0.025042124092578888, 0.004456560209897968, 0.006719168974086642,
- -0.035934071987867355, 0.0783874224871397, -0.12046295901139577, -0.3981077124675115,
- 0.06299334391951561, 0.013306595385074615, 0.03158054236943523, -0.007389734887207548,
- -0.053364166989922523, 0.08138958333681028, 0.0032388606923632324, -0.0386228053830564,
- 0.07268827222287655, -0.04708570086707672, 0.03535304808368286, -0.03450584116702279,
- -0.04788574560855826, 0.00906834052875638, -0.06780252978205681, -0.07089749413232009,
- 0.03935102901111046, -0.011318168020807207, -0.04902383405715227, -0.09858637986083825,
- 0.03876934961105386, 0.008275641749302546, 0.03159878348621229, 0.02088560094125569,
- 0.0004007402846279244, -0.05278236170609792, -0.06595185119658709, 0.046431550135215126,
- 0.05303468989829222, 0.02005424730790158, -0.07560235758622487, 0.031125327261785667,
- 0.030375457524011534, 0.010266038317543765, 0.11873043701052666, 0.023045668378472328,
- 0.002982291344475622, -0.08137269628544648, 0.07168639761706193, 0.06657246376077335,
- 0.1865194415052732, -0.029534960951423272, 0.022584857884794474, 0.0027286308274293938,
- 0.13311836868524551, 0.07120580427969496, 0.03213598889609178, -0.04987978842109442,
- -0.023683943785727024, -0.030272004504998524, -0.012062298444410166,
- 0.07683870568871498, -0.03696275347222885, -0.019906755090535928,
- -0.0032398655700186887, -0.02044907759409398, -0.04897428645441929,
- -0.03547582977140943, 0.18966460476318994, 0.024184615972141426, 0.018297956325113773,
- 0.0076586546589775635, -0.0560445136410029, -0.0013333279639482498,
- -0.10305396094918251, -0.105610025425752, -0.04000706194589535, 0.011281273327767849,
- 0.023993281259511907, -0.06726224968830745, -0.10065937787294388, -0.02182747214101255,
- -0.02283751293240736, 0.003969524657198538, 0.09344115791221459, -0.04009536746889353,
- 0.04639266369243463, -0.060916860277454056, 0.1558807616432508, 0.028431177449723084,
- -0.016680293212023873, 0.04336805486430725, 0.09012054527799289, 0.012070808811889341,
- 0.05408205728357037, -0.022081632031283032, -0.06310641889770825, 0.019109079769502085,
- 0.12910902375976244, -0.024780076773216326, 0.14599801724155745, 0.05311532784253359,
- -0.017219759048505996, -0.04142808308824897, -0.000717054819688201,
- 0.008230140587935844, 0.02786128017275284, -0.4427989174922307, -0.06396161702771981,
- 0.11874266589681308, -0.005466570922484, 0.03806670134266218, 0.0865688839306434,
- 0.016976750766237576, -0.05587787305315336, -0.04068332600096861, -0.09163855078319709,
- 0.12262878194451332, 0.013359082397073507, 0.058500569934646286, -0.11085280279318492,
- 0.00988329533720389, 0.09141681343317032, -0.021054197995302577, -0.00574162183329463,
- 0.055911995780964695, -0.2552196631828944, -0.014374957284114013, -0.03748499803865949,
- 0.12919384613633156, 0.016609689958083134, 0.04867705454428991, 0.09760642300049464,
- -0.03960549194986621, 0.040077962912619114, 0.03136990211593608, 0.0060025025547171635,
- 0.05984015576541424, -0.030983764833460253, 0.005248630768619478, 0.11900371313095093,
- 0.10474456598361333, 0.0757618419205149, -0.017499959173922736, 11.949976921081543,
- 0.06911086260030667, 0.07296157566209634, -0.09040182953079541, 0.008344445338783165,
- -0.023978301634391148, 0.02996077078084151, -0.14761553083856901, 0.05108195791641871,
- 0.10570887352029483, -0.02845982856039579, -0.0715834153816104, -0.05045337229967117,
- -0.09933608894546826, 0.028915075430025656, -0.04056133609265089, -0.05933438210437695,
- 0.005434030472921829, 0.059942400082945824, -0.045337220964332424, -0.04693164397031069,
- 0.028032682991276186, 0.049939985697468124, -0.009597575141621443, -0.07082870074858268,
- 0.047621356478581824, 0.04034474057455858, 0.023171426189946942, 0.020319450569028657,
- 0.02853295944320659, -0.004191143748660882, 0.006930560416852434, 0.04334456232997278,
- 0.0015554380758355062, 0.0472095732887586, 0.09896999225020409, 0.06269817675153415,
- 0.015722577110864222, 0.041279962907234825, 0.07206668642659982, -0.007259801107769211,
- 0.0354505218565464, 0.041095821497341, 0.020230089391892154, 0.04069528076797724,
- 0.0396462440257892, 0.010142324880386392, 0.11472872147957484, -0.008090662925193707,
- 0.067669577896595, 0.10876681531469028, 0.010869460258012017, 0.06517056127389272,
- 0.004226367493780951, -0.01818512265648072, 0.02154670349167039, 0.011366111847261587,
- -0.08550767662624519, 0.049229664728045464, 0.030263257523377735, -0.045846762834116817,
- 0.12048931792378426, 0.022176761495453928, 0.0865820759596924, -0.0052011709194630384,
- 0.07541882805526257, 0.07157401057581107, 0.060030508475999035, -0.13611949235200882,
- -0.09290018615623315, 0.052491272489229836, -0.08202273771166801, -0.08054658584296703,
- 0.08798162204523881, 0.10081777845819791, -0.03501818088504175, 0.04768666469802459,
- -0.02781574847176671, 0.02839477484424909, -0.03366757479185859, -0.013913437530087927,
- 0.057201062639554344, -0.013254755487044653, 0.00014586525503546, 0.05305894836783409,
- 0.02126160073870172, 0.055609266739338636, 0.08837319724261761, 0.00015535129932686687,
- -0.07776625330249469, -0.046875099961956344, 0.07858598791062832, 0.011179658894737562,
- -0.06302941776812077, 0.008334266215873262, -0.06703809338311355, 0.012571252957665516,
- -0.1414494700729847, 0.0809483112146457, 0.10953953489661217, -0.09576717143257459,
- -0.019112529853979748, -0.016335201646143105, 0.07791591187318166, 0.004134332373117407,
- -0.019601159806673724, -0.04159171010057131, 0.009830404334934428, 0.011301614654560884,
- 0.04821406397968531, -0.03400916466489434, 0.07780850337197383, 0.07063419930636883,
- -0.0693434327840805, 0.010384607575057695, 0.04794730758294463, -0.032250177934959844,
- -0.03536704881116748, 0.05373518417278925, 0.0735637154430151, -0.058005537216862045,
- -0.03615981216231982, -0.062237584963440895, -0.03001087283094724,
- -0.008848090384465953, -0.031929963772806026, 0.005263582230933632,
- 0.024482011950264376, -0.059758443385362625, -0.00704312229451413, 0.060620447620749474,
- 0.08336453636487325, 0.09785611803332965, 0.007383830573720236, 0.04618869939198097,
- -0.07139295479282737, -0.04981171588102976, 0.04915580836435159, 0.02126217990492781,
- 0.06735387754937013, -0.07657809369266033, -0.03713211603462696, -0.05415898375213146,
- -0.12963925674557686, 0.0428318086390694, 0.07322396450520803, 0.04291080931822459,
- 0.004750898476534833, 0.018560587894171476, -0.062204743114610515, -0.06052150701483091,
- 0.10467173531651497, 0.050700431068738304, 0.019482893403619528, 0.050538865538934864,
- -0.04700203643490871, -0.03133825975237414, 0.1185465616484483, -0.018994389863413137,
- 0.02156269713304937, 0.026317498724286754, -0.08288943581283092, 0.07421767897903919,
- 0.10624472921093304, 0.05623804979647199, 0.03674398145327965, 0.06885047753651936,
- -0.014643414334083596, 0.033482554368674755, -0.010338433591338495, 0.01735549047589302,
- -0.033621845146020256, -0.08009929768741131, -0.07021682523190975, 0.029071239582359947,
- 0.09629449993371964, 0.07115573498109977, -0.11478021368384361, -0.034954796467597284,
- -0.05418837505082289
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 92,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 103,
- "similarity": 0.9981675744056702
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 163,
- "similarity": 0.9981024861335754
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 125,
- "similarity": 0.9980984330177307
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Liz O'Sullivan"],
- "epoch_date_downloaded": 1668902400,
- "epoch_date_modified": 1669161600,
- "epoch_date_submitted": 1668902400,
- "flag": null,
- "report_number": 2274,
- "source_domain": "techcrunch.com",
- "submitters": ["Anonymous"],
- "title": "How the law got it wrong with Apple Card",
- "url": "https://techcrunch.com/2021/08/14/how-the-law-got-it-wrong-with-apple-card/"
- },
- {
- "__typename": "Report",
- "authors": ["Chris Wiltz"],
- "epoch_date_downloaded": 1663027200,
- "epoch_date_modified": 1663113600,
- "epoch_date_submitted": 1663027200,
- "flag": null,
- "report_number": 2037,
- "source_domain": "designnews.com",
- "submitters": ["Srishti Khemka (CSET)"],
- "title": "The Apple Card Is the Most High-Profile Case of AI Bias Yet",
- "url": "https://www.designnews.com/electronics-test/apple-card-most-high-profile-case-ai-bias-yet"
- },
- {
- "__typename": "Report",
- "authors": ["Dan Kopf"],
- "epoch_date_downloaded": 1663027200,
- "epoch_date_modified": 1663113600,
- "epoch_date_submitted": 1663027200,
- "flag": null,
- "report_number": 2036,
- "source_domain": "qz.com",
- "submitters": ["Srishti Khemka (CSET)"],
- "title": "Goldman Sachs’ misguided World Cup predictions could provide clues to the Apple Card controversy",
- "url": "https://qz.com/1748321/the-role-of-goldman-sachs-algorithms-in-the-apple-credit-card-scandal/"
- },
- {
- "__typename": "Report",
- "authors": ["Jacob Douglas"],
- "epoch_date_downloaded": 1663027200,
- "epoch_date_modified": 1663113600,
- "epoch_date_submitted": 1663027200,
- "flag": null,
- "report_number": 2035,
- "source_domain": "cnbc.com",
- "submitters": ["Srishti Khemka (CSET)"],
- "title": "The Apple Card algo issue: What you need to know about A.I. in everyday life",
- "url": "https://www.cnbc.com/2019/11/14/apple-card-algo-affair-and-the-future-of-ai-in-your-everyday-life.html"
- },
- {
- "__typename": "Report",
- "authors": ["Karen G. Mills"],
- "epoch_date_downloaded": 1614729600,
- "epoch_date_modified": 1614816000,
- "epoch_date_submitted": 1614816000,
- "flag": null,
- "report_number": 1396,
- "source_domain": "hbswk.hbs.edu",
- "submitters": ["Roman Lutz"],
- "title": "Gender Bias Complaints against Apple Card Signal a Dark Side to Fintech",
- "url": "https://hbswk.hbs.edu/item/gender-bias-complaints-against-apple-card-signal-a-dark-side-to-fintech"
- },
- {
- "__typename": "Report",
- "authors": ["Taylor Telford"],
- "epoch_date_downloaded": 1608422400,
- "epoch_date_modified": 1608508800,
- "epoch_date_submitted": 1608508800,
- "flag": null,
- "report_number": 1393,
- "source_domain": "washingtonpost.com",
- "submitters": ["Neama Dadkhahnikoo"],
- "title": "Apple Card algorithm sparks gender bias allegations against Goldman Sachs",
- "url": "https://www.washingtonpost.com/business/2019/11/11/apple-card-algorithm-sparks-gender-bias-allegations-against-goldman-sachs/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "facebook",
- "name": "Facebook"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "facebook",
- "name": "Facebook"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "non-christian-facebook-users",
- "name": "non-Christian Facebook users"
- },
- {
- "__typename": "Entity",
- "entity_id": "non-american-born-facebook-users",
- "name": "non-American-born Facebook users"
- },
- {
- "__typename": "Entity",
- "entity_id": "facebook-users-of-minority-groups",
- "name": "Facebook users of minority groups"
- },
- {
- "__typename": "Entity",
- "entity_id": "facebook-users-interested-in-hispanic-culture",
- "name": "Facebook users interested in Hispanic culture"
- },
- {
- "__typename": "Entity",
- "entity_id": "facebook-users-interested-in-accessibility",
- "name": "Facebook users interested in accessibility"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [2205, 2107, 1817, 1394],
- "vector": [
- -0.04779355600476265, 0.06792512536048889, 0.0038173417560756207, -0.0857997015118599,
- 0.10396119207143784, -0.04840896278619766, 0.002733254339545965, 0.06617788970470428,
- 0.06842539459466934, -0.12526234984397888, -0.01432171743363142, 0.07143566012382507,
- 0.029286054894328117, -0.053850702941417694, 0.01929832249879837, -0.09812447428703308,
- -0.08813891559839249, -0.028109468519687653, -0.00009493180550634861,
- -0.08867541700601578, -0.09443552047014236, -0.0012946834322065115,
- -0.00850085262209177, 0.09877628087997437, -0.01186272595077753, 0.04062333703041077,
- 0.09953249990940094, 0.12474717199802399, -0.010953706689178944, 0.06872852146625519,
- -0.026571882888674736, -0.046254195272922516, 0.12353356182575226, 0.012292600236833096,
- -0.026843462139368057, 0.09041783213615417, 0.04893621802330017, -0.031720031052827835,
- -0.016534745693206787, -0.01089294720441103, 0.039598122239112854, 0.20364561676979065,
- -0.010181534104049206, -0.0012814325746148825, 0.05469609424471855,
- -0.012292211875319481, 0.0006063388427719474, 0.07009796053171158,
- -0.010963632725179195, 0.02469038963317871, 0.021678611636161804, 0.06160870939493179,
- -0.01852872595191002, 0.022704610601067543, -0.07115769386291504, 0.0465373694896698,
- 0.029061896726489067, -0.01640014536678791, 0.03791467100381851, -0.08798559010028839,
- -0.05104674771428108, -0.1850447654724121, -0.04326532036066055, -0.053986452519893646,
- 0.070912204682827, -0.06769078969955444, 0.001877447823062539, 0.024241795763373375,
- -0.03610699251294136, 0.04167541489005089, 0.051562197506427765, -0.00984667893499136,
- 0.0023379207123070955, -0.020045390352606773, -0.004923524800688028,
- -0.020399026572704315, 0.018561039119958878, 0.16808170080184937, -0.0996679812669754,
- 0.02894766442477703, 0.08952538669109344, -0.07422906160354614, 0.34995025396347046,
- 0.07219856232404709, -0.02914203517138958, -0.0007919992785900831, 0.05326472595334053,
- 0.07698281854391098, 0.04617714881896973, 0.027264876291155815, -0.06695966422557831,
- 0.012321488000452518, -0.04657721891999245, -0.009038948453962803, 0.10456261038780212,
- 0.04080825299024582, -0.030438179150223732, -0.004586667753756046,
- -0.016044670715928078, -0.07272263616323471, 0.03803796321153641, -0.04805491864681244,
- 0.1027710810303688, 0.03917933255434036, -0.040230460464954376, 0.047911424189805984,
- 0.03783242031931877, -0.032569076865911484, 0.038887739181518555, -0.02975481003522873,
- 0.03550958260893822, 0.06512849777936935, 0.05979295074939728, 0.01248019840568304,
- 0.05330280959606171, -0.01456777099519968, -0.013072152622044086, 0.02125215344130993,
- 0.05455545336008072, 0.02722250483930111, -0.0067488281056284904, 0.044547729194164276,
- 0.07712478935718536, -0.04524358734488487, -0.01866034045815468, -0.026897650212049484,
- -0.012578751891851425, -0.0030426117591559887, -0.04086540639400482,
- 0.04468384012579918, -0.042876917868852615, -0.1625332534313202, -0.01908988505601883,
- 0.10256954282522202, 0.021783072501420975, -0.01757693849503994, -0.016121480613946915,
- -0.04106511175632477, 0.032172732055187225, 0.03161253780126572, 0.011353746987879276,
- 0.0767764300107956, 0.032211244106292725, 0.04670390114188194, 0.10328702628612518,
- 0.01620352640748024, -0.03731362149119377, -0.05237847939133644, -0.005241998005658388,
- 0.016570603474974632, 0.08590976148843765, -0.12191881239414215, -0.04780515655875206,
- 0.020065058022737503, 0.009791189804673195, 0.6709023118019104, 0.10439957678318024,
- 0.07923460006713867, -0.004806629382073879, -0.041591107845306396, 0.13547250628471375,
- 0.02321450784802437, 0.056905388832092285, -0.04284790903329849, -0.04820185527205467,
- 0.01801493763923645, -0.06728344410657883, -0.05188675597310066, -0.00576879782602191,
- 0.016994323581457138, 0.10353570431470871, 0.0074499319307506084, 0.08415639400482178,
- -0.0009357156814076006, -0.08281067758798599, -0.053654082119464874,
- 0.0036372814793139696, -0.008882179856300354, -0.09707789868116379,
- -0.0060632601380348206, 0.039607301354408264, 0.063353531062603, -0.06054379791021347,
- 0.002931018592789769, -0.04681665822863579, 0.05882502719759941, -0.05226611718535423,
- 0.015519784763455391, -0.0005136774852871895, 0.036796700209379196, 0.02014967054128647,
- 0.08852297067642212, 0.023223673924803734, -0.11746226251125336, -0.0198065135627985,
- 0.11307428032159805, 0.020467601716518402, -0.017087463289499283, 0.08979880064725876,
- -0.07186679542064667, 0.04980166256427765, -0.019015735015273094, 0.15061019361019135,
- -0.12047835439443588, -0.009730218909680843, -0.027697857469320297,
- -0.021935727447271347, 0.07508823275566101, -0.01042245328426361, -0.07387025654315948,
- -0.04825134202837944, 0.07032971829175949, 0.033877789974212646, 0.07776586711406708,
- 0.013699383474886417, -0.039645202457904816, -0.002179902046918869, 0.05573204904794693,
- 0.0007476734463125467, -0.05152221396565437, 0.07061132788658142, 0.03613003343343735,
- -0.06426984071731567, -0.00892870593816042, 0.026520375162363052, 0.0906209796667099,
- 0.010349003598093987, 0.01617368683218956, 0.026034623384475708, 0.0119742127135396,
- -0.05128464847803116, 0.034578148275613785, 0.019480571150779724,
- 0.00048386119306087494, 0.07340066134929657, -0.08505076915025711, -0.06452098488807678,
- -0.06488341838121414, -0.06155376136302948, -0.018417028710246086,
- -0.018871182575821877, 0.07664644718170166, 0.05453271418809891, 0.047213707119226456,
- 0.03068891540169716, 0.01113205123692751, 0.047247111797332764, -0.012452688068151474,
- 0.022457441315054893, 0.07162325829267502, -0.024355890229344368, -0.030622128397226334,
- -0.014129641465842724, -0.005908353719860315, 0.06278806179761887, 0.018836431205272675,
- -0.037033386528491974, -0.018574759364128113, -0.020974745973944664,
- -0.03593074902892113, -0.08712455630302429, -0.038150571286678314,
- 0.0009792293421924114, 0.03313302621245384, -0.07029372453689575, -0.07833703607320786,
- -0.052262190729379654, 0.025647694244980812, 0.030769772827625275, -0.04495413601398468,
- -0.025004619732499123, -0.08616778254508972, -0.009886281564831734,
- 0.015482653863728046, 0.05675729364156723, -0.0006676721386611462, 0.00956382229924202,
- -0.035360440611839294, -0.0658564567565918, -0.03935428336262703, 0.027659595012664795,
- -0.029274987056851387, -0.07792960107326508, -0.06025964021682739, -0.06637483835220337,
- -0.0005430025048553944, 0.01867089793086052, -0.033850088715553284, 0.05612536519765854,
- 0.020250611007213593, 0.0590120330452919, 0.017979532480239868, -0.010584643110632896,
- 0.06033960357308388, -0.032791316509246826, 0.009888156317174435, 0.07451184839010239,
- -0.013574180193245411, 0.027981366962194443, -0.019898245111107826,
- -0.03676281124353409, -0.0737193375825882, -0.01696673594415188, -0.05340484902262688,
- 0.06465724110603333, -0.04622633010149002, 0.015284455381333828, -0.062214162200689316,
- -0.011784374713897705, 0.04008176922798157, -0.08924797177314758, -0.07310391962528229,
- -0.07412810623645782, 0.09080268442630768, 0.002795825945213437, 0.027554532513022423,
- 0.006731374189257622, -0.08318939805030823, 0.028769582509994507, -0.012419278733432293,
- -0.00507498811930418, 0.033323243260383606, 0.01681577041745186, -0.018242571502923965,
- 0.040738385170698166, 0.05389457941055298, -0.024618174880743027, 0.009278571233153343,
- 0.07261064648628235, 0.37570446729660034, -0.05697682127356529, 0.08937142789363861,
- 0.08746550977230072, 0.03455926850438118, 0.03234398365020752, -0.02484237030148506,
- 0.055258747190237045, 0.06940554827451706, 0.11118192970752716, 0.07063376158475876,
- -0.026614028960466385, -0.007791777141392231, -0.08427909016609192, 0.09454897046089172,
- 0.015748662874102592, 0.04373389855027199, -0.005243032239377499, -0.04004757106304169,
- -0.02537619136273861, 0.0278518907725811, -0.011771207675337791, 0.021801266819238663,
- -0.04194393381476402, -0.0744384229183197, 0.04577040299773216, 0.011489958502352238,
- 0.018490111455321312, -0.0200958214700222, 0.025398125872015953, -0.02691558748483658,
- 0.021677719429135323, 0.006406086962670088, 0.05364009365439415, -0.06416571885347366,
- 0.045204199850559235, -0.13713514804840088, -0.08684654533863068, 0.09327974915504456,
- -0.02742289938032627, 0.03702106326818466, 0.038636889308691025, -0.019959844648838043,
- 0.024835720658302307, 0.004276768770068884, -0.046740103513002396,
- -0.000421969685703516, 0.04056083783507347, 0.03112504631280899, 0.08788858354091644,
- 0.15142303705215454, -0.016154924407601357, -0.001428693998605013, -0.065716952085495,
- 0.054595403373241425, 0.08914245665073395, 0.010920209810137749, 0.037170447409152985,
- 0.02843991480767727, 0.0008105253800749779, 0.013416468165814877, -0.02105914242565632,
- -0.10927873104810715, 0.008510024286806583, -0.034209538251161575, 0.05152001604437828,
- 0.04829161614179611, -0.0375668928027153, -0.12307149916887283, -0.07471628487110138,
- -0.05032318830490112, 0.028405675664544106, 0.12563155591487885, -0.060681913048028946,
- 0.007562901824712753, -0.003395913867279887, 0.04055604338645935, -0.041024282574653625,
- -0.11554327607154846, 0.01881778985261917, -0.06636576354503632, 0.008087988942861557,
- 0.055255040526390076, 0.0473744198679924, -0.059366822242736816, 0.047867320477962494,
- -0.08690790832042694, 0.019276835024356842, 0.04109444096684456, -0.028814004734158516,
- 0.004608999006450176, -0.02200540155172348, 0.017803216353058815,
- -0.0010783608304336667, -0.02376434952020645, -0.07645481079816818,
- -0.017342133447527885, -0.030667465180158615, -0.09995278716087341,
- -0.021303407847881317, -0.021740883588790894, -0.059010572731494904,
- 0.048408690840005875, -0.09080006927251816, -0.037515342235565186, -0.0393209233880043,
- 0.00014654052210971713, -0.010274546220898628, 0.03459245711565018,
- 0.018784301355481148, -0.12073543667793274, -0.035197921097278595,
- -0.001578649040311575, 0.04145662486553192, -0.029113709926605225, -0.06473150104284286,
- 0.03408724442124367, 0.06858162581920624, 0.01979712024331093, -0.06458373367786407,
- 0.0480174645781517, -0.03374245762825012, 0.08461605757474899, -0.07382750511169434,
- -0.3534579873085022, 0.08147169649600983, 0.01835242472589016, 0.05029641091823578,
- 0.044508375227451324, -0.10778488218784332, 0.03154603764414787, 0.01972251757979393,
- -0.03435898944735527, 0.05561106279492378, -0.030958862975239754, 0.04953887313604355,
- -0.011052795685827732, -0.01898396946489811, -0.03816181793808937, -0.08902713656425476,
- -0.05400454252958298, 0.0024283661041408777, -0.052030663937330246,
- -0.029086779803037643, -0.10688279569149017, -0.002829160774126649,
- -0.01005999930202961, 0.001686588628217578, 0.006515083368867636, 0.012613673694431782,
- -0.06581065058708191, -0.05865640565752983, 0.050396159291267395, 0.07331843674182892,
- 0.0009754149941727519, -0.04704956337809563, -0.0008948686881922185,
- 0.05149883031845093, -0.0038609132170677185, 0.1282532513141632, 0.010316160507500172,
- 0.029380090534687042, -0.08540697395801544, 0.03769514709711075, 0.06509296596050262,
- 0.18945959210395813, 0.00699230469763279, -0.003229736350476742, 0.053035177290439606,
- 0.10130485892295837, 0.012011087499558926, 0.01725100353360176, -0.032855696976184845,
- 0.020023059099912643, -0.00037386338226497173, -0.01333899237215519,
- 0.07659041881561279, -0.038280002772808075, -0.004922172985970974, -0.04962465167045593,
- -0.007930589839816093, -0.036670882254838943, -0.061011526733636856,
- 0.15958106517791748, -0.0026104296557605267, 0.03262250870466232, 0.02515462227165699,
- -0.06691335141658783, -0.021495729684829712, -0.0519043430685997, -0.07872223109006882,
- -0.019485272467136383, 0.011482629925012589, 0.05674160271883011, -0.05515383556485176,
- -0.074353888630867, -0.012709451839327812, -0.01753959059715271, -0.004781724419444799,
- 0.11530054360628128, -0.07059235870838165, 0.07724975794553757, -0.016691988334059715,
- 0.10666597634553909, 0.02526124380528927, 0.012038600631058216, 0.060435086488723755,
- 0.10996030271053314, 0.0053833951242268085, -0.008052716962993145,
- -0.018913887441158295, -0.060715384781360626, -0.04638257622718811, 0.1222706139087677,
- -0.005284044425934553, 0.10596518218517303, 0.03752317279577255, -0.0034548072144389153,
- -0.03785337135195732, -0.006229376886039972, -0.04447144642472267,
- 0.00003496452700346708, -0.4079003930091858, -0.035030342638492584, 0.11240352690219879,
- 0.007611066568642855, 0.026979101821780205, 0.0914192646741867, 0.053977739065885544,
- -0.04588299244642258, 0.01267718244343996, -0.08472590148448944, 0.15242359042167664,
- 0.02805379405617714, 0.0773644968867302, -0.09616859257221222, 0.025504956021904945,
- 0.10045574605464935, 0.004187858197838068, 0.010707082226872444, 0.03075375221669674,
- -0.21244871616363525, 0.00774140190333128, -0.043147213757038116, 0.1273731291294098,
- 0.02196628972887993, 0.02866792120039463, 0.09477797895669937, -0.07015301287174225,
- 0.01008569821715355, 0.023657765239477158, -0.03611487150192261, 0.04011020436882973,
- 0.008260071277618408, -0.02240731567144394, 0.10438711196184158, 0.08630447089672089,
- 0.10282868146896362, -0.03727570176124573, 11.791045188903809, 0.046166446059942245,
- 0.06857439875602722, -0.05819170922040939, 0.01826489344239235, -0.031246688216924667,
- 0.034582965075969696, -0.05538611486554146, 0.05142614245414734, 0.10004527121782303,
- -0.026668887585401535, -0.0531136654317379, -0.06324798613786697, -0.06834695488214493,
- 0.018481135368347168, -0.05250490456819534, -0.03951243683695793, -0.033133216202259064,
- 0.0396723598241806, -0.05342007428407669, -0.03335108608007431, 0.010670437477529049,
- 0.0658511221408844, 0.013526818715035915, -0.12254734337329865, 0.04400641471147537,
- 0.032064247876405716, -0.021450616419315338, 0.0008618260035291314,
- 0.019791800528764725, 0.02249366044998169, 0.006447383668273687, 0.05113535374403,
- 0.02535254694521427, 0.025652138516306877, 0.04718821868300438, 0.05697885528206825,
- 0.04387464374303818, 0.03161533176898956, 0.03324741870164871, 0.033746011555194855,
- 0.014962363988161087, -0.0034208574797958136, 0.06312020868062973, 0.055092573165893555,
- 0.029632998630404472, 0.02934560552239418, 0.11142677068710327, 0.03755158185958862,
- 0.07413682341575623, 0.10385680198669434, -0.0005501790437847376, 0.08405167609453201,
- 0.023539423942565918, 0.015345564112067223, 0.020968422293663025, 0.016997387632727623,
- -0.037785157561302185, 0.08983977884054184, -0.020327633246779442,
- -0.028287487104535103, 0.09621308743953705, 0.017323803156614304, 0.09140568971633911,
- 0.0021804256830364466, 0.07290241122245789, 0.025879502296447754, 0.10728016495704651,
- -0.12326144427061081, -0.05636894330382347, 0.026653258129954338, -0.07913880050182343,
- -0.02406373806297779, 0.09772695600986481, 0.07227300107479095, -0.04387275129556656,
- 0.05090545862913132, -0.02812667191028595, 0.032488852739334106, -0.007823554798960686,
- 0.022777652367949486, 0.05859969183802605, -0.01702256128191948, -0.023990368470549583,
- 0.07214358448982239, 0.01031317375600338, 0.097738116979599, 0.12342862784862518,
- -0.02553579770028591, -0.060272008180618286, -0.05808991193771362, 0.0792345181107521,
- 0.014293750748038292, -0.03327981382608414, -0.002039011102169752, -0.03476932272315025,
- -0.0184351596981287, -0.14670516550540924, 0.06748224049806595, 0.12839196622371674,
- -0.06910049915313721, -0.0030650710687041283, -0.003831732552498579,
- 0.08144190162420273, -0.008977589197456837, 0.015299493446946144, -0.01892683655023575,
- 0.03290494903922081, 0.014382687397301197, 0.04501557722687721, -0.04554920643568039,
- 0.06341543048620224, 0.0043340991251170635, -0.07578109204769135, 0.048238661140203476,
- 0.05150380730628967, -0.03415432572364807, -0.02101314626634121, 0.0413384810090065,
- 0.00251336139626801, -0.07362418621778488, -0.04292280599474907, -0.056204963475465775,
- -0.017657723277807236, 0.004580693319439888, -0.05771923437714577, 0.012408674694597721,
- 0.008436323143541813, -0.07084562629461288, -0.006226956844329834, 0.058556679636240005,
- 0.032223593443632126, 0.04511239007115364, 0.0195760577917099, 0.04863123968243599,
- -0.034628018736839294, -0.04355080798268318, 0.046046484261751175, 0.021553095430135727,
- 0.07600907236337662, -0.04685992747545242, -0.021406497806310654, -0.058663323521614075,
- -0.12116692960262299, 0.02383476495742798, 0.0905539020895958, 0.0529080368578434,
- 0.05521702021360397, 0.030828237533569336, -0.04824676364660263, 0.011470140889286995,
- 0.10223835706710815, 0.00020697747822850943, 0.011996302753686905, 0.02565978839993477,
- -0.024739796295762062, -0.013964371755719185, 0.08119963109493256, -0.0195455364882946,
- -0.006893130950629711, 0.00524546904489398, -0.07752000540494919, 0.07574765384197235,
- 0.046007584780454636, -0.007193250581622124, 0.03129129856824875, 0.013047592714428902,
- 0.002705884166061878, 0.006023904774338007, 0.0033511004876345396, 0.001009973231703043,
- -0.04861796647310257, -0.1005503460764885, -0.06505807489156723, 0.013946603052318096,
- 0.08926966786384583, 0.06675320118665695, -0.14478707313537598, -0.02474302239716053,
- -0.028213437646627426
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 93,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 199,
- "similarity": 0.9977497458457947
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 183,
- "similarity": 0.9977489113807678
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 195,
- "similarity": 0.9976552724838257
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Kenneth Corbin"],
- "epoch_date_downloaded": 1666569600,
- "epoch_date_modified": 1667347200,
- "epoch_date_submitted": 1666656000,
- "flag": null,
- "report_number": 2205,
- "source_domain": "forbes.com",
- "submitters": ["Anonymous"],
- "title": "HUD Is Suing Facebook For Housing Discrimination",
- "url": "https://www.forbes.com/sites/kennethcorbin/2019/03/28/hud-suing-facebook-for-housing-discrimination/"
- },
- {
- "__typename": "Report",
- "authors": ["David Park"],
- "epoch_date_downloaded": 1664928000,
- "epoch_date_modified": 1665619200,
- "epoch_date_submitted": 1664928000,
- "flag": null,
- "report_number": 2107,
- "source_domain": "nafcu.org",
- "submitters": ["Devon Colmer (CSET)"],
- "title": "HUD v. Facebook",
- "url": "https://www.nafcu.org/compliance-blog/hud-v-facebook"
- },
- {
- "__typename": "Report",
- "authors": ["Department of Justice"],
- "epoch_date_downloaded": 1656028800,
- "epoch_date_modified": 1659225600,
- "epoch_date_submitted": 1656115200,
- "flag": null,
- "report_number": 1817,
- "source_domain": "justice.gov",
- "submitters": ["Khoa Lam"],
- "title": "Justice Department Secures Groundbreaking Settlement Agreement with Meta Platforms, Formerly Known as Facebook, to Resolve Allegations of Discriminatory Advertising",
- "url": "https://www.justice.gov/opa/pr/justice-department-secures-groundbreaking-settlement-agreement-meta-platforms-formerly-known"
- },
- {
- "__typename": "Report",
- "authors": ["Emily Birnbaum"],
- "epoch_date_downloaded": 1610841600,
- "epoch_date_modified": 1610928000,
- "epoch_date_submitted": 1610928000,
- "flag": null,
- "report_number": 1394,
- "source_domain": "thehill.com",
- "submitters": ["Neama Dadkhahnikoo"],
- "title": "HUD charges Facebook with enabling housing discrimination",
- "url": "https://thehill.com/policy/technology/436209-hud-charges-facebook-with-housing-discrimination-over-its-targeted"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "deliveroo",
- "name": "Deliveroo"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "deliveroo",
- "name": "Deliveroo"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "deliveroo-workers-with-legitimate-reasons-for-cancelling-shifts",
- "name": "Deliveroo workers with legitimate reasons for cancelling shifts"
- },
- {
- "__typename": "Entity",
- "entity_id": "deliveroo-workers",
- "name": "Deliveroo workers"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1473, 1395],
- "vector": [
- -0.03817681223154068, 0.07659725844860077, 0.030369985848665237, -0.13545531034469604,
- 0.0378974974155426, -0.019217366352677345, 0.015055632218718529, 0.06330442428588867,
- 0.07974179089069366, -0.13092857599258423, 0.012454690411686897, -0.012120574712753296,
- 0.028738997876644135, -0.022950148209929466, 0.0327693447470665, -0.1532415747642517,
- -0.11870359629392624, 0.010477549396455288, -0.005190516822040081, -0.1066303700208664,
- -0.10902786254882812, -0.032138437032699585, -0.0056821489706635475,
- 0.11648768186569214, -0.03543559089303017, 0.09652657806873322, 0.10565365850925446,
- 0.11790524423122406, -0.013046517968177795, 0.10996438562870026, -0.02725004032254219,
- -0.058630313724279404, 0.13228848576545715, 0.007620965130627155, 0.023687493056058884,
- 0.09239783883094788, -0.015285192988812923, -0.019970282912254333, 0.014787472784519196,
- -0.00967105757445097, 0.053244661539793015, 0.2483406364917755, -0.015711698681116104,
- 0.009693087078630924, 0.0278505627065897, -0.03891773521900177, 0.05670994147658348,
- 0.05659513548016548, 0.010582325980067253, 0.022296706214547157, -0.01311502791941166,
- 0.05779549106955528, 0.003203262574970722, 0.02048647031188011, -0.10602981597185135,
- 0.028976669535040855, 0.02668207883834839, -0.006248130463063717, 0.04650378227233887,
- -0.0864768996834755, -0.004035165533423424, -0.24867156147956848, -0.07055141031742096,
- -0.045775555074214935, 0.07499037683010101, -0.07903105020523071, -0.018572157248854637,
- 0.06453843414783478, 0.002597101265564561, 0.099238321185112, 0.005945056211203337,
- -0.0033737930934876204, -0.00008715386502444744, -0.029942244291305542,
- 0.03731387108564377, -0.04793645814061165, -0.02858368307352066, 0.180749773979187,
- -0.10212342441082001, 0.030672114342451096, 0.1240094006061554, -0.09961917996406555,
- 0.36585545539855957, 0.01945555955171585, -0.031288329511880875, -0.007961917668581009,
- 0.06712904572486877, 0.06551644951105118, 0.02882852405309677, 0.06550994515419006,
- -0.011151064187288284, 0.009497418999671936, -0.027666505426168442,
- -0.014736105687916279, 0.0643497109413147, 0.016568642109632492, -0.025366919115185738,
- 0.04409974068403244, -0.016660211607813835, -0.07427419722080231,
- -0.00034879613667726517, -0.033796366304159164, 0.10615955293178558,
- 0.09072470664978027, -0.045871444046497345, -0.014179158955812454, 0.10756923258304596,
- -0.04077999293804169, 0.019678106531500816, -0.041259102523326874, 0.027041256427764893,
- 0.08270730078220367, 0.09526781737804413, -0.002489738166332245, 0.05684889853000641,
- -0.03162483870983124, -0.0031928550451993942, 0.050396304577589035, 0.0722983330488205,
- 0.03789084032177925, 0.01380013208836317, 0.07046018540859222, 0.07957668602466583,
- -0.029792774468660355, 0.01672651618719101, -0.027527395635843277, -0.05410962551832199,
- -0.0493338480591774, -0.038614239543676376, 0.052817024290561676, -0.06955358386039734,
- -0.21697166562080383, 0.007818055339157581, 0.09418953955173492, -0.0057926843874156475,
- -0.03239525109529495, -0.04164643585681915, -0.02550363913178444, 0.08957584947347641,
- -0.011743208393454552, -0.03275587782263756, 0.05260862410068512, 0.005210724659264088,
- 0.053281351923942566, 0.11986429989337921, 0.03828605264425278, -0.055897973477840424,
- -0.03263729810714722, 0.013090945780277252, -0.06784127652645111, 0.1730281114578247,
- -0.1491188406944275, -0.05883924290537834, -0.008027606643736362, -0.02439408376812935,
- 0.6700257658958435, 0.10763675719499588, 0.1725064069032669, -0.015895184129476547,
- -0.04632078856229782, 0.20479440689086914, 0.017234712839126587, 0.06350897252559662,
- -0.07838551700115204, -0.08367057144641876, 0.062455914914608, -0.12293291091918945,
- -0.07973781228065491, 0.02071693167090416, 0.015339398756623268, 0.13031411170959473,
- 0.03715803474187851, 0.060329973697662354, 0.01386411115527153, -0.07304664701223373,
- -0.02234000153839588, 0.07543542236089706, 0.015747569501399994, -0.15091572701931,
- -0.03864516317844391, 0.04445615038275719, 0.10287578403949738, -0.0809967964887619,
- 0.04038383439183235, -0.04998479783535004, 0.08349326997995377, -0.02668699622154236,
- 0.02710888907313347, -0.03909904509782791, 0.03887711092829704, 0.01312961708754301,
- 0.10526013374328613, -0.028686966747045517, -0.10111045837402344, -0.015879493206739426,
- 0.1461624950170517, 0.014638646505773067, -0.03407926484942436, 0.05613486468791962,
- -0.1021602600812912, 0.04911603778600693, 0.005658601876348257, 0.1275966465473175,
- -0.14453789591789246, -0.014457753859460354, -0.02757713943719864, -0.04281507804989815,
- 0.10710147023200989, 0.010100742802023888, -0.09464316815137863, -0.07155221700668335,
- 0.05830514430999756, 0.0010021026246249676, 0.0537627637386322, 0.06501676142215729,
- -0.04672827944159508, 0.04869993403553963, 0.08073243498802185, 0.06353934854269028,
- -0.040018513798713684, 0.06963492184877396, 0.05758806690573692, -0.00889984518289566,
- -0.006442968733608723, 0.03645689785480499, 0.006866504438221455, 0.012461128644645214,
- 0.0027114925906062126, 0.06302011013031006, -0.05428382009267807, -0.05487889051437378,
- 0.03628558665513992, 0.020168358460068703, -0.018218232318758965, 0.11144179105758667,
- -0.05528176575899124, -0.029453156515955925, -0.040572233498096466,
- -0.03818590193986893, 0.00990763958543539, -0.00011071842163801193, 0.0641067698597908,
- 0.12314562499523163, 0.08576022833585739, 0.03631799668073654, 0.05175861716270447,
- 0.051548443734645844, 0.058221425861120224, 0.004085876047611237, 0.07055061310529709,
- -0.03761600703001022, -0.07399367541074753, -0.017054926604032516, 0.03075253590941429,
- 0.01412643026560545, 0.04178324341773987, -0.09341336041688919, -0.012250742875039577,
- -0.043383657932281494, -0.0668644905090332, -0.09664269536733627, -0.05302231013774872,
- -0.0016634594649076462, 0.01199258491396904, -0.033187299966812134, -0.1097116693854332,
- -0.09168976545333862, 0.013780321925878525, 0.05203146114945412, -0.005861315876245499,
- -0.03190198540687561, -0.10612607002258301, 0.00031954399310052395,
- -0.02472221851348877, 0.05389256775379181, -0.033544838428497314, 0.028726736083626747,
- -0.002246362157166004, -0.04067026823759079, -0.013335894793272018,
- -0.017293721437454224, -0.02750573307275772, -0.08671467006206512, -0.06656823307275772,
- -0.013897033408284187, 0.016554785892367363, 0.039787858724594116, -0.08381911367177963,
- 0.03501736745238304, 0.021378733217716217, 0.06892744451761246, 0.009906010702252388,
- -0.02763362042605877, 0.05421183258295059, -0.03494996577501297, 0.016648322343826294,
- 0.08979858458042145, -0.032035984098911285, 0.021181931719183922, -0.010125380009412766,
- -0.05513852834701538, -0.02468022145330906, 0.02282990887761116, -0.04940281808376312,
- 0.022768717259168625, -0.03544994443655014, 0.01859145425260067, -0.035759296268224716,
- -0.004060687497258186, 0.06522679328918457, -0.05991073697805405, -0.09718050062656403,
- -0.08426770567893982, 0.1400681734085083, 0.01888725720345974, 0.017103902995586395,
- 0.011933103203773499, -0.047025326639413834, -0.003797879908233881,
- -0.022754507139325142, 0.029160115867853165, 0.025685645639896393, 0.043454594910144806,
- -0.060564570128917694, 0.010861686430871487, 0.034050047397613525,
- -0.022583074867725372, 0.022559821605682373, 0.08130811899900436, 0.40699732303619385,
- -0.13653302192687988, 0.06849654763936996, 0.12358543276786804, 0.026309527456760406,
- 0.06192751228809357, -0.041160594671964645, 0.08579440414905548, 0.10097196698188782,
- 0.13934877514839172, 0.15724506974220276, -0.037734415382146835, -0.024772103875875473,
- -0.049801282584667206, 0.11102152615785599, -0.016626568511128426, 0.04770158231258392,
- -0.011943276040256023, -0.10084046423435211, -0.0214691162109375, 0.010804939083755016,
- -0.05781812220811844, 0.019276199862360954, -0.015986403450369835, -0.07463917136192322,
- 0.026904210448265076, 0.04920690506696701, 0.03968188166618347, -0.012404393404722214,
- 0.05995827540755272, -0.06979292631149292, 0.058933600783348083, -0.008933136239647865,
- 0.04776418209075928, -0.08384886384010315, -0.008601266890764236, -0.09102855622768402,
- -0.08641242980957031, 0.0911724865436554, 0.03193214163184166, 0.07360495626926422,
- 0.025906983762979507, -0.028561905026435852, 0.0517968125641346, -0.025194279849529266,
- -0.06322701275348663, 0.01742849126458168, 0.04425735026597977, 0.05500296130776405,
- 0.09988968074321747, 0.13560616970062256, -0.04984598234295845, -0.029886027798056602,
- -0.10081867128610611, 0.030777599662542343, 0.153819739818573, 0.03672840818762779,
- -0.00272744195535779, 0.05029527470469475, -0.048506006598472595, 0.0006479967851191759,
- -0.06972085684537888, -0.07400504499673843, 0.009513827040791512, -0.07012467831373215,
- 0.09795691817998886, -0.02237219363451004, -0.05006033927202225, -0.16326048970222473,
- -0.08719803392887115, -0.04502763971686363, 0.0039244708605110645, 0.10358692705631256,
- -0.037877827882766724, 0.023524172604084015, -0.03811747208237648, 0.029373617842793465,
- 0.0487685427069664, -0.12194254249334335, 0.03438784182071686, -0.06823910772800446,
- 0.06092569977045059, 0.07296466827392578, 0.06340131163597107, -0.010202281177043915,
- 0.09730809926986694, -0.09953493624925613, 0.09119680523872375, 0.03305961936712265,
- -0.046070702373981476, 0.047261737287044525, -0.00845092348754406, 0.029039569199085236,
- 0.04791729152202606, -0.04257475212216377, 0.04291307553648949, -0.06566721946001053,
- -0.061199985444545746, -0.09979517012834549, -0.07047934085130692, -0.06323425471782684,
- -0.12479172646999359, 0.05086181312799454, -0.09413126111030579, -0.06131584569811821,
- -0.002832416445016861, 0.009631774388253689, 0.02124694362282753, 0.0517745316028595,
- 0.06366205960512161, -0.1787061244249344, -0.011564708314836025, -0.0007385415956377983,
- 0.07057638466358185, -0.07254664599895477, -0.05681990832090378,
- -0.00003994163125753403, 0.023110656067728996, 0.057822875678539276,
- 0.00432176236063242, 0.014690146781504154, -0.04252881556749344, 0.05908901244401932,
- -0.10129911452531815, -0.3311111330986023, 0.04643763229250908, -0.03997141122817993,
- 0.036390114575624466, 0.03775380551815033, -0.07783979177474976, 0.05505628138780594,
- -0.0025739152915775776, -0.05207792669534683, 0.08357888460159302, -0.07013624906539917,
- 0.030547725036740303, -0.010269531980156898, -0.10038980096578598, -0.01894395425915718,
- -0.03233027085661888, -0.07258176803588867, 0.04611745476722717, -0.022823438048362732,
- -0.0811125785112381, -0.08091812580823898, 0.04295291379094124, -0.0026795167941600084,
- -0.015266203321516514, 0.0051877195946872234, 0.019890930503606796,
- -0.04645445570349693, -0.04700504243373871, 0.046834081411361694, 0.02740948647260666,
- 0.024833055213093758, -0.07783395797014236, 0.04044545814394951, 0.11535947769880295,
- 0.013651498593389988, 0.11733213067054749, 0.012424424290657043, 0.0034226682037115097,
- -0.07349807024002075, 0.08862702548503876, 0.043438807129859924, 0.18612077832221985,
- -0.022273093461990356, -0.018136803060770035, 0.013580621220171452, 0.11860683560371399,
- 0.056376341730356216, 0.03405202925205231, -0.0516587495803833, -0.0006581321358680725,
- 0.04058784991502762, 0.006271443795412779, 0.11784146726131439, -0.05364833399653435,
- -0.011270120739936829, -0.023417815566062927, -0.03575325384736061,
- -0.021569084376096725, -0.05631706118583679, 0.206761434674263, 0.016053639352321625,
- 0.01432961318641901, 0.01819857396185398, -0.09845142066478729, 0.03930390626192093,
- -0.10762618482112885, -0.15396222472190857, -0.03533708676695824, 0.020865265280008316,
- 0.025767849758267403, -0.059003669768571854, -0.10766927897930145,
- -0.015779882669448853, -0.001530348788946867, 0.013297954574227333, 0.12314135581254959,
- 0.002917262725532055, 0.0734865665435791, -0.021535629406571388, 0.14421787858009338,
- 0.053140368312597275, 0.008319136686623096, 0.032256342470645905, 0.03149532154202461,
- 0.022847168147563934, 0.010027572512626648, -0.0566985085606575, -0.07751131057739258,
- 0.011170562356710434, 0.17125357687473297, -0.05570697784423828, 0.11534665524959564,
- 0.03132685646414757, -0.08082647621631622, -0.055397357791662216, -0.004784616641700268,
- 0.00905888807028532, 0.028680019080638885, -0.3929542899131775, -0.03929341211915016,
- 0.10795128345489502, -0.04711521416902542, 0.045155853033065796, 0.13195426762104034,
- -0.003533011768013239, -0.0974605455994606, -0.04576171189546585, -0.10063920170068741,
- 0.18671825528144836, 0.017239125445485115, 0.04367943853139877, -0.13249100744724274,
- -0.015894420444965363, 0.07569324970245361, -0.04557052254676819, 0.018509406596422195,
- 0.06782801449298859, -0.28130871057510376, 0.008569089695811272, -0.045697927474975586,
- 0.09774451702833176, 0.011866200715303421, 0.06574567407369614, 0.11192504316568375,
- -0.05713909491896629, 0.013082606717944145, 0.037142589688301086, -0.016552291810512543,
- 0.05446084961295128, -0.017765438184142113, -0.0175335593521595, 0.10021179169416428,
- 0.06897833943367004, 0.10647966712713242, -0.026772160083055496, 11.964757919311523,
- 0.08347928524017334, 0.06543773412704468, -0.10348614305257797, 0.013248004950582981,
- -0.0511699914932251, 0.03410526365041733, -0.08653078973293304, 0.012478419579565525,
- 0.11455105245113373, -0.03158050775527954, -0.05455620586872101, 0.008107016794383526,
- -0.09890168905258179, 0.03907327726483345, -0.04009704291820526, -0.07326571643352509,
- -0.027329713106155396, 0.06908625364303589, -0.05896516144275665, -0.004643907770514488,
- 0.022534191608428955, 0.060001395642757416, 0.02508861944079399, -0.06831023097038269,
- 0.025259558111429214, 0.017331819981336594, -0.02413696050643921, 0.023937612771987915,
- 0.04563632979989052, -0.015592630952596664, -0.021278291940689087, 0.051774926483631134,
- 0.021641980856657028, 0.03914257511496544, 0.05529136210680008, 0.09294674545526505,
- 0.06081235781311989, 0.021326944231987, 0.03933791443705559, 0.009018270298838615,
- 0.027952032163739204, 0.03597022965550423, 0.0646325871348381, 0.038713015615940094,
- 0.009096159599721432, 0.01611180230975151, 0.08361037075519562, -0.01054598018527031,
- 0.04073818773031235, 0.09455922245979309, 0.021435780450701714, 0.10438001155853271,
- -0.032814785838127136, 0.012980947270989418, 0.05082295462489128, -0.018481850624084473,
- -0.08076556026935577, 0.07305622100830078, 0.1014321818947792, -0.07489199936389923,
- 0.0976950079202652, -0.0017251977697014809, 0.11248509585857391, 0.03292924910783768,
- 0.03556032478809357, 0.07148423790931702, 0.0577487051486969, -0.16483935713768005,
- -0.08461813628673553, 0.05295705795288086, -0.08218049257993698, -0.06331278383731842,
- 0.08754982054233551, 0.09403274953365326, -0.0470745787024498, 0.0830208957195282,
- -0.033192142844200134, -0.0013609779998660088, -0.05485603213310242,
- -0.01643996499478817, 0.026128027588129044, 0.02054412290453911, 0.004597884602844715,
- 0.05069714039564133, -0.018940500915050507, 0.10449588298797607, 0.12427814304828644,
- 0.0038942969404160976, -0.04413147270679474, -0.05482182651758194, 0.09451216459274292,
- -0.006093099247664213, -0.09120675921440125, 0.006422472186386585, -0.04412389174103737,
- 0.002410014159977436, -0.15591198205947876, 0.052606068551540375, 0.10330969095230103,
- -0.08228866755962372, -0.05637892335653305, -0.03903007507324219, 0.04773164168000221,
- 0.011643840000033379, -0.027147667482495308, -0.042537905275821686,
- 0.031921904534101486, -0.0023479964584112167, 0.04218531399965286, -0.06351081281900406,
- 0.11644873768091202, 0.05694245919585228, -0.04208417236804962, 0.07955481857061386,
- 0.07606011629104614, -0.05662379413843155, -0.03781193494796753, 0.031522318720817566,
- 0.02955794334411621, -0.12544593214988708, -0.07543203979730606, -0.04218108952045441,
- -0.008559416979551315, -0.039609186351299286, -0.02995980903506279,
- -0.02075142413377762, 0.0593707412481308, -0.04170152544975281, -0.02477150969207287,
- 0.04203331470489502, 0.018604017794132233, 0.03807517886161804, -0.02441149391233921,
- 0.06883334368467331, -0.07093340158462524, -0.030860433354973793, 0.03707783296704292,
- 0.006833239458501339, 0.04964832961559296, -0.04435180127620697, -0.0456346720457077,
- -0.06222079321742058, -0.11998623609542847, 0.03848252072930336, 0.12615105509757996,
- 0.01645917445421219, 0.020208321511745453, -0.011525294743478298, -0.06089332699775696,
- -0.04671863839030266, 0.07828399538993835, 0.05556517466902733, 0.04370735585689545,
- 0.03125271201133728, -0.09709340333938599, -0.023239288479089737, 0.13536787033081055,
- -0.020474769175052643, 0.014605959877371788, 0.026028012856841087, -0.04063117876648903,
- 0.0799616202712059, 0.09077058732509613, 0.04672996327280998, 0.04199330508708954,
- 0.06766391545534134, 0.0046243807300925255, 0.04130900651216507, -0.02708696760237217,
- -0.011437129229307175, -0.05774480104446411, -0.053700052201747894,
- -0.06719169020652771, 0.03023604117333889, 0.09278204292058945, 0.04772023856639862,
- -0.044278256595134735, -0.005131160840392113, -0.06060374528169632
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 94,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 184,
- "similarity": 0.9985187649726868
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 111,
- "similarity": 0.9982340931892395
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 40,
- "similarity": 0.9980711340904236
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Natasha Lomas"],
- "epoch_date_downloaded": 1635120000,
- "epoch_date_modified": 1635120000,
- "epoch_date_submitted": 1635120000,
- "flag": null,
- "report_number": 1473,
- "source_domain": "techcrunch.com",
- "submitters": ["Patrick Hall (BNH.ai)"],
- "title": "Italian court rules against ‘discriminatory’ Deliveroo rider-ranking algorithm",
- "url": "https://techcrunch.com/2021/01/04/italian-court-rules-against-discriminatory-deliveroo-rider-ranking-algorithm/"
- },
- {
- "__typename": "Report",
- "authors": ["Gabriel Geiger"],
- "epoch_date_downloaded": 1612656000,
- "epoch_date_modified": 1612656000,
- "epoch_date_submitted": 1612656000,
- "flag": null,
- "report_number": 1395,
- "source_domain": "vice.com",
- "submitters": ["Leon Overweel"],
- "title": "Court Rules Deliveroo Used 'Discriminatory' Algorithm",
- "url": "https://www.vice.com/en/article/7k9e4e/court-rules-deliveroo-used-discriminatory-algorithm"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "hirevue",
- "name": "HireVue"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "hirevue",
- "name": "HireVue"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "job-applicants-using-hirevue",
- "name": "job applicants using HireVue"
- },
- {
- "__typename": "Entity",
- "entity_id": "hirevue-customers",
- "name": "HireVue customers"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [2133, 2132, 1397],
- "vector": [
- -0.04485473781824112, 0.0751580943663915, -0.0004664408043026924, -0.11080423121651013,
- 0.07429297765096028, -0.03530444328983625, -0.0018807798624038696, 0.0805441327393055,
- 0.1044339860479037, -0.12781071662902832, -0.008974919250855843, 0.042727346221605934,
- 0.028706840084244806, -0.059614727894465126, 0.03362714204316338, -0.07541993881265323,
- -0.09017709642648697, -0.04531612309316794, -0.017798404830197494, -0.12508784979581833,
- -0.11311572293440501, 0.0006859054168065389, -0.009094352213044962, 0.09886070837577184,
- -0.0401349535677582, 0.03036717705739041, 0.09013289461533229, 0.10773948580026627,
- -0.04944381800790628, 0.042687893534700073, -0.031375749967992306,
- -0.049783840930710234, 0.1310045768817266, 0.0223507188881437, 0.012671624853586158,
- 0.1119705041249593, 0.016432830908646185, -0.037457640593250595, -0.0005296693804363409,
- -0.03413116683562597, 0.039600770299633346, 0.26386450231075287, -0.012106203474104404,
- -0.014512238403161367, 0.03334846285482248, -0.024670809196929138, 0.011459694088747105,
- 0.05628463253378868, 0.005630611752470334, 0.02403631682197253, -0.008026953165729841,
- 0.04910036424795786, -0.02944582048803568, 0.038038480250785746, -0.06928600743412971,
- 0.07046848783890407, 0.018693805982669193, 0.012424208223819733, 0.07291461030642192,
- -0.09228940804799397, -0.04826042824424803, -0.1858759472767512, -0.02362048951908946,
- -0.08457916726668675, 0.06882011145353317, -0.0918100078900655, -0.025130703890075285,
- 0.05192687238256136, 0.018987594172358513, 0.055845567335685097, 0.046861227601766586,
- -0.015506028740977248, -0.02737833730255564, 0.035575313338389, -0.033965329018731914,
- -0.025475425490488608, 0.012491710716858506, 0.16593939562638602, -0.10743337621291478,
- 0.03724547786017259, 0.10050483047962189, -0.10743727286656697, 0.35036049286524457,
- 0.0529520238439242, -0.04601199645549059, -0.011399225952724615, 0.07523347685734431,
- 0.08566095183293025, 0.02521824378830691, -0.0009019194015612205, -0.03915814341356357,
- 0.018604995566420257, -0.058384774873654045, -0.05032327398657799, 0.10311211893955867,
- 0.01688824376712243, -0.010076268886526426, -0.05950438076009353, -0.019687624648213387,
- -0.0636539322634538, -0.0002442288678139448, -0.03366434946656227, 0.13105261325836182,
- 0.07078859396278858, -0.03251533272365729, -0.013664087067202976, 0.08239160850644112,
- -0.05233517227073511, 0.04599450156092644, -0.04154939576983452, 0.027850959760447342,
- 0.023802250623703003, 0.060255310187737145, 0.0014136563210437696, 0.03441781084984541,
- -0.05682822906722625, -0.0004869902816911538, 0.0477159284055233, 0.0973839412132899,
- 0.06754528482755025, 0.0007171472534537315, 0.037147883946696915, 0.04650204877058665,
- -0.07998091851671536, -0.04999534537394842, -0.018603734982510407,
- -0.023407890150944393, -0.047284779604524374, -0.024214273629089195, 0.0469688835243384,
- -0.05627262964844704, -0.2005449483791987, 0.01689847217251857, 0.07977793738245964,
- -0.022167990915477276, -0.03160166802505652, -0.023380206276973087,
- -0.04524666319290797, 0.06279209131995837, 0.0043602134101092815, 0.008862797170877457,
- 0.04263689120610555, 0.03964437482257684, 0.024835350612799328, 0.12695385764042535,
- 0.02062283580501874, -0.046385748932758965, -0.03807819696764151, 0.006991758321722348,
- -0.01954028693338235, 0.13029964764912924, -0.15742310881614685, -0.06085484599073728,
- -0.012904600240290165, 0.011005693736175695, 0.7113266984621683, 0.11157411585251491,
- 0.18262137224276861, 0.014362976886332035, -0.05231486385067304, 0.15542141596476236,
- -0.016767102604111035, 0.07649415483077367, -0.06826018417874972, -0.030013823105643194,
- 0.010637628380209208, -0.07655822485685349, -0.04554670676589012, -0.006415785290300846,
- -0.01975943986326456, 0.09734682738780975, 0.0019520715189476807, 0.08784040560324986,
- 0.01863915876795848, -0.07798189545671146, 0.009647726391752562, 0.02398344804532826,
- 0.0322991299132506, -0.13095930715401968, -0.02832068440814813, 0.051649060100317,
- 0.07464358334740002, -0.11141116668780644, -0.008937345196803411, -0.08277028799057007,
- 0.03384178907920917, -0.0535238708058993, 0.03859287624557813, -0.01460129115730524,
- 0.053870879113674164, 0.046318211282293, 0.06194573144117991, 0.00007118998716274898,
- -0.1049991324543953, 0.0018684957176446915, 0.07331981758276622, -0.01009858027100563,
- -0.024309474353988964, 0.0687002216776212, -0.06834678972760837, 0.04048379169156154,
- -0.0015460605112214882, 0.1295474718014399, -0.1143910214304924, 0.013521037995815277,
- -0.00004429292554656664, -0.040166723231474556, 0.03984462469816208,
- -0.0004640541737899184, -0.074526347219944, -0.07964509477217992, 0.11194398254156113,
- 0.03883053114016851, 0.05597485105196635, 0.025192681699991226, -0.02586339976793776,
- 0.04810954506198565, 0.02397935775419076, -0.0012612218658129375, -0.07164047658443451,
- 0.07596172019839287, 0.022652638455231983, -0.045043893779317536,
- -0.0030987337231636047, 0.04354098128775755, 0.030298010756572086, 0.005387588404119015,
- 0.006067429669201374, 0.027496923071642716, -0.02453632839024067, -0.08369351923465729,
- 0.03158062960331639, 0.052148191879192986, 0.008428984011212984, 0.07898679624001186,
- -0.016960589836041134, -0.05126614744464556, -0.03513510959843794, -0.03555929474532604,
- 0.004990208738793929, 0.005110098669926326, 0.07200827822089195, 0.11759501695632935,
- 0.04248813291390737, 0.027347619955738384, 0.03441062507530054, 0.07104339823126793,
- 0.01085088076069951, 0.002268139971420169, 0.07422222569584846, -0.02536338505645593,
- -0.01147953700274229, -0.010450660871962706, 0.024003824529548485, 0.031626492738723755,
- 0.005216616361091535, -0.07295138885577519, -0.028227617343266804, -0.06972234199444453,
- -0.006352740029493968, -0.06354618445038795, -0.05909916137655576,
- -0.006508840170378487, 0.031487276777625084, -0.07419479886690776, -0.06293689583738644,
- -0.08313706268866856, 0.02861272543668747, 0.0688299002746741, -0.022482343949377537,
- -0.004780769969026248, -0.111696461836497, 0.02465958334505558, -0.008591837249696255,
- 0.054845213890075684, -0.002542263362556696, -0.025056981792052586,
- -0.004585365920017163, -0.1029816394050916, 0.04546472678581873, 0.021236824803054333,
- -0.0052460962906479836, -0.040245239002009235, -0.07809768120447795,
- -0.04226566726962725, 0.003145510951677958, 0.0015973343203465145, -0.06389510507384936,
- 0.032529169072707496, 0.014707950875163078, 0.06614211450020473, 0.0026384626204768815,
- -0.04436530483265718, 0.06060326471924782, -0.03733111793796221, -0.004749758169054985,
- 0.076958067715168, -0.038300721595684685, 0.014614146978904804, -0.004966980777680874,
- -0.10163520524899165, -0.051095897952715554, -0.006392000553508599,
- -0.054411975045998894, 0.04660772035519282, -0.025776858441531658,
- -0.0028564737003762275, -0.0336666734268268, -0.019641500897705555, 0.05750664696097374,
- -0.06375506147742271, -0.10342057297627132, -0.0784266988436381, 0.07952329516410828,
- -0.006950040968755881, 0.006447466400762399, 0.027546660974621773,
- -0.044483297814925514, 0.043222151696681976, -0.0205083090501527, 0.006755380425602198,
- 0.034106834481159844, 0.04278814854721228, -0.008222529664635658, 0.04062282914916674,
- 0.059238666047652565, -0.03747551360478004, 0.03290724940598011, 0.0874025970697403,
- 0.4222828249136607, -0.08028560876846313, 0.08817009379466374, 0.11564669261376063,
- 0.007437985700865586, 0.01913974139218529, -0.046188462525606155, 0.07389284173647563,
- 0.07362543791532516, 0.13433857013781866, 0.09888142719864845, -0.05791250988841057,
- -0.04080914023021857, -0.07566624755660693, 0.10479582101106644, 0.011036963202059269,
- 0.051445563634236656, -0.01619796850718558, -0.07575196772813797, 0.012711914100994667,
- 0.0439880316456159, -0.06327249606450398, 0.02218617808345395, -0.03202112577855587,
- -0.060846989353497825, 0.004057369815806548, 0.012174492973523835, 0.02627755078719929,
- -0.03519973251968622, 0.04869966387438277, -0.04935716092586517, 0.04925558685014645,
- 0.02150907243291537, 0.06234872589508692, -0.10819361358880997, 0.01266724212716023,
- -0.07753311097621918, -0.0878280612329642, 0.03850251125792662, -0.024553680870061118,
- 0.053103515257438026, 0.038751618936657906, -0.026816248272856075, 0.06581822658578555,
- -0.020625139062758535, -0.036531784726927675, 0.028009950338552397, 0.07500457763671875,
- 0.03813031160583099, 0.05126630111287037, 0.1502337654431661, -0.02369903385018309,
- -0.018750513593355816, -0.06625697513421376, 0.06774963935216267, 0.10781591385602951,
- 0.029981389331320923, 0.0057182804060479, 0.04204113408923149, -0.022240615139404934,
- -0.016629760153591633, -0.033652471688886486, -0.09378827611605327,
- 0.004847459029406309, -0.05361473808685938, 0.07712520162264506, 0.05175560216108958,
- -0.01954415673390031, -0.16103425125281015, -0.03137360621864597, -0.03909566253423691,
- 0.024426526700456936, 0.12818689147631326, -0.03548148646950722, 0.06387878706057866,
- 0.0027857559422651925, -0.014191611359516779, 0.05130957874159018, -0.09965801984071732,
- 0.025411976501345634, -0.025694731312493484, 0.021603443038960297, 0.07917348140229781,
- 0.033454357335964836, -0.007503394037485123, 0.10626449435949326, -0.10779227564732234,
- 0.023312931569914024, 0.014672708076735338, -0.045863388727108635, 0.028233570667604607,
- -0.03816319474329551, 0.02405280084349215, 0.02588447431723277, -0.0547235074142615,
- -0.041650934455295406, -0.057003515462080635, -0.03844820490727822,
- -0.07505054771900177, -0.08198956896861394, -0.03921640291810036, -0.09046381711959839,
- 0.04286214899426947, -0.10929154853026073, -0.026779974228702486, -0.029478469242652256,
- -0.022896243802582223, -0.010890671362479528, 0.012596818109159358,
- 0.005493144504725933, -0.13787625481685004, 0.008774649972716967, -0.01743024680763483,
- 0.020110040185196947, -0.06310102591911952, -0.05221754436691602, 0.03303758427500725,
- 0.06617187708616257, 0.028674123187859852, -0.04711927970250448, 0.0012143546094497044,
- -0.0518082519993186, 0.05662041654189428, -0.09736093878746033, -0.3217931389808655,
- 0.05554813891649246, 0.01651053053016464, 0.045278518150250115, 0.04047980004300674,
- -0.08191105723381042, 0.05949194977680842, 0.03321631873647372, -0.04725785553455353,
- 0.09611022224028905, -0.0562401736776034, 0.03616536967456341, -0.015230099981029829,
- -0.031827664002776146, -0.034749265760183334, -0.06029580906033516,
- -0.03138930226365725, 0.02969309377173583, -0.04694689251482487, -0.07087209075689316,
- -0.11353282382090886, -0.001375295842687289, -0.057472991446654, 0.037946404268344246,
- 0.024368344185252983, 0.008352622700234255, -0.030475034688909847, -0.03336710172394911,
- 0.048676771422227226, 0.041464549799760185, 0.01158023796354731, -0.09817884862422943,
- 0.030391238319377106, 0.041857762883106865, 0.003167771423856417, 0.14383775492509207,
- 0.029140093363821507, 0.035900128384431206, -0.10915924112002055, 0.08399837960799535,
- 0.08109128226836522, 0.1866412659486135, -0.00470064056571573, -0.015236764137322703,
- 0.013653344319512447, 0.11437563598155975, 0.05054493993520737, 0.05657591670751572,
- -0.0349218330035607, 0.009290462437396249, 0.05116260300079981, -0.010955302122359475,
- 0.09412308782339096, -0.08977361023426056, -0.012720207683742046, -0.005396815482527018,
- -0.02401144119600455, -0.04361869643131892, -0.046884200225273766, 0.2330775111913681,
- -0.0035250724758952856, 0.035607035737484694, 0.06796403725941975, -0.06713753938674927,
- 0.004967968910932541, -0.07056472698847453, -0.06769615039229393, -0.01631084395921789,
- 0.0010121390223503113, 0.053855868677298226, -0.08305718377232552, -0.10347698628902435,
- -0.034814098849892616, -0.017196875298395753, -0.01683305368836348, 0.12058702111244202,
- -0.049112724140286446, 0.042822874461611114, -0.04067591764032841, 0.12230530132850011,
- 0.0211211151132981, 0.006897148676216602, 0.04516929015517235, 0.08177885537346204,
- 0.029576349382599194, 0.033492383236686386, -0.02672809362411499, -0.08559158196051915,
- -0.05193126325805982, 0.13434817145268121, -0.0017241918443081279, 0.10416097939014435,
- 0.07230351865291595, -0.01772082969546318, -0.06330131615201633, 0.010796235331023732,
- -0.012848635592187444, -0.0053970520772660775, -0.36361639698346454,
- -0.022098897645870846, 0.11573893576860428, 0.022380049029986065, 0.0018365403326849143,
- 0.07300278047720592, 0.023024268293132383, -0.05372833088040352, -0.03854177271326383,
- -0.09539121389389038, 0.1716956893603007, 0.006072519347071648, 0.08143293609221776,
- -0.08273241172234218, -0.004820562899112701, 0.06725139915943146, -0.021011884479473036,
- 0.010318533439810077, 0.06193419545888901, -0.2700762351353963, -0.0031163142217944064,
- -0.027441752298424642, 0.14197122553984323, 0.03782080203139534, 0.051729522024591766,
- 0.06403045977155368, -0.07325549175341924, 0.044071328515807785, 0.055064948896567024,
- -0.009917153918650001, 0.05200852081179619, 0.009860128164291382, -0.012515913656291863,
- 0.1090828428665797, 0.1221616839369138, 0.0722948784629504, -0.016986284715433914,
- 11.946534156799316, 0.047707532842954, 0.06531083956360817, -0.11986680577198665,
- -0.011830754694528878, -0.03449175382653872, 0.04902058094739914, -0.07210870708028476,
- 0.06534885490934055, 0.14535373449325562, -0.035617794220646225, -0.07717494045694669,
- -0.024632023336986702, -0.05997569983204206, 0.021472894897063572, -0.04172139676908652,
- -0.03681819171955188, -0.05645693093538284, 0.04416893546779951, -0.048847579707702,
- -0.0204773392615607, 0.03050575205512966, 0.05918166786432266, -0.00030835966269175213,
- -0.10780895004669826, 0.05549782142043114, 0.01578019039394955, 0.010038500651717186,
- 0.004526578200360139, 0.034263441960016884, 0.0003876875465114911, 0.041183357670282326,
- 0.07700494552652042, -0.00647887191735208, 0.017466071682671707, 0.06096496433019638,
- 0.08980007469654083, 0.06105646242698034, 0.058741615464289985, 0.05916948911423484,
- 0.007478389035289486, 0.04843267550071081, 0.010969873517751694, 0.05939340343077978,
- 0.060556704799334206, 0.026996577236180503, 0.0245204313347737, 0.12211623539527257,
- -0.018724499891201656, 0.04932516316572825, 0.09837387253840764, 0.030923901746670406,
- 0.08402577042579651, 0.04903376164535681, -0.004542003230502208, 0.046200534949700035,
- -0.010340325844784578, -0.09004818648099899, 0.07636711249748866, 0.06396595512827237,
- -0.04365135170519352, 0.12611771623293558, 0.018182743961612385, 0.08462189882993698,
- 0.06974514325459798, 0.0672828381260236, 0.06663806736469269, 0.06051106999317805,
- -0.12658880650997162, -0.08031548311312993, 0.03655789761493603, -0.08967346201340358,
- -0.07277671123544376, 0.12408608943223953, 0.08672361820936203, -0.06378462786475818,
- 0.0796659595022599, -0.012753636886676153, 0.05243579422434171, -0.00313630731155475,
- 0.018099712828795116, 0.055032278100649513, -0.002367271731297175, 0.019233463021616142,
- 0.045700854854658246, 0.031711225708325706, 0.09445529927810033, 0.07778892790277799,
- 0.014834911950553456, -0.07451335216561954, -0.05835002474486828, 0.07660406827926636,
- -0.02072783714781205, -0.05100623331964016, 0.011456582074364027, -0.07756443321704865,
- 0.028015675644079845, -0.15128866831461588, 0.09045576055844624, 0.10271214197079341,
- -0.08514538407325745, -0.006540571106597781, -0.046787930031617485, 0.07114419589440028,
- 0.012211236093814174, 0.011567588585118452, -0.06672687207659085,
- -0.0023275924225648246, 0.03471037372946739, 0.053355228155851364, -0.0390308927744627,
- 0.0402346458286047, 0.06263065710663795, -0.09251851836840312, 0.008724734575177232,
- 0.06429205710689227, -0.06528811901807785, -0.0242285649292171, 0.05186088879903158,
- 0.017129193991422653, -0.10321744531393051, -0.02920368437965711, -0.046091865127285324,
- -0.024529770016670227, 0.0032995219031969705, -0.05089727664987246,
- 0.0012904694303870201, 0.014045503300925096, -0.06556586921215057,
- -0.022406601657470066, 0.04427552968263626, 0.07908883442481358, 0.06833482409516971,
- 0.0017141236457973719, 0.07721262673536937, -0.05656711012125015, -0.06680973495046298,
- 0.015483041914800802, 0.02579189029832681, 0.06403485064705212, -0.031358180567622185,
- -0.015946750218669575, -0.050755687057971954, -0.10976248979568481, 0.03268720768392086,
- 0.10963440438111623, 0.04922101522485415, 0.003039902076125145, 0.021657417217890423,
- -0.054059925178686775, -0.032270563630542405, 0.11513200650612514, 0.03670093727608522,
- 0.011009662101666132, 0.0708191233376662, -0.06902269646525383, -0.027201732931037743,
- 0.09665485719839732, -0.035516700707376, 0.014959761562446753, -0.003582813466588656,
- -0.10033680126070976, 0.12318010131518047, 0.08971701997021835, 0.02586335316300392,
- 0.025134474659959476, 0.021969195765753586, -0.007573085216184457, 0.0669532623142004,
- -0.023722041087845962, 0.03409529756754637, -0.04182138045628866, -0.06348021328449249,
- -0.10901798556248347, -0.01859588858981927, 0.10328243672847748, 0.021449233405292034,
- -0.12961957106987634, -0.013596034298340479, -0.04648273438215256
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 95,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 199,
- "similarity": 0.9979251623153687
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 111,
- "similarity": 0.9977849125862122
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 146,
- "similarity": 0.9977420568466187
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Drew Harwell"],
- "epoch_date_downloaded": 1666051200,
- "epoch_date_modified": 1668556800,
- "epoch_date_submitted": 1666051200,
- "flag": null,
- "report_number": 2194,
- "source_domain": "washingtonpost.com",
- "submitters": ["Khoa Lam"],
- "title": "Rights group files federal complaint against AI-hiring firm HireVue, citing ‘unfair and deceptive’ practices",
- "url": "https://www.washingtonpost.com/technology/2019/11/06/prominent-rights-group-files-federal-complaint-against-ai-hiring-firm-hirevue-citing-unfair-deceptive-practices/"
- },
- {
- "__typename": "Report",
- "authors": ["The Electronic Privacy Information Center"],
- "epoch_date_downloaded": 1663804800,
- "epoch_date_modified": 1668556800,
- "epoch_date_submitted": 1663804800,
- "flag": null,
- "report_number": 2133,
- "source_domain": "context-cdn.washingtonpost.com",
- "submitters": ["Khoa Lam"],
- "title": "Complaint and Request for Investigation, Injunction, and Other Relief",
- "url": "https://context-cdn.washingtonpost.com/notes/prod/default/documents/27098c7a-a145-427e-8d30-f47ae75d6ecc/note/a99449c7-593f-49fa-ade5-1392d2dbd745.pdf"
- },
- {
- "__typename": "Report",
- "authors": ["Drew Harwell"],
- "epoch_date_downloaded": 1663804800,
- "epoch_date_modified": 1668556800,
- "epoch_date_submitted": 1663804800,
- "flag": null,
- "report_number": 2132,
- "source_domain": "washingtonpost.com",
- "submitters": ["Charlie Pownall", "Ingrid Dickinson (CSET)"],
- "title": "A face-scanning algorithm increasingly decides whether you deserve the job",
- "url": "https://www.washingtonpost.com/technology/2019/10/22/ai-hiring-face-scanning-algorithm-increasingly-decides-whether-you-deserve-job/"
- },
- {
- "__typename": "Report",
- "authors": ["Will Knight"],
- "epoch_date_downloaded": 1614816000,
- "epoch_date_modified": 1614816000,
- "epoch_date_submitted": 1614816000,
- "flag": null,
- "report_number": 1397,
- "source_domain": "wired.com",
- "submitters": ["Roman Lutz"],
- "title": "Job Screening Service Halts Facial Analysis of Applicants",
- "url": "https://www.wired.com/story/job-screening-service-halts-facial-analysis-applicants/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "houston-independent-school-district",
- "name": "Houston Independent School District"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "sas-institute",
- "name": "SAS Institute"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "houston-independent-school-district-teachers",
- "name": "Houston Independent School District teachers"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1398],
- "vector": [
- -0.05187160149216652, 0.11398860067129135, -0.024748843163251877, -0.012652178294956684,
- 0.05450034886598587, 0.0044538178481161594, 0.019556669518351555, 0.08539329469203949,
- 0.11801043897867203, -0.07649992406368256, 0.02529158443212509, 0.01607660762965679,
- 0.016543695703148842, 0.03299785405397415, 0.01526107732206583, -0.20231682062149048,
- -0.12787401676177979, -0.08943948149681091, -0.03589124605059624, -0.16099849343299866,
- -0.06956683844327927, -0.028661098331212997, -0.008367575705051422, 0.08627015352249146,
- -0.08479345589876175, 0.08058241009712219, 0.08582884818315506, 0.10589246451854706,
- -0.055429454892873764, 0.08925067633390427, -0.010001988150179386, -0.0949951633810997,
- 0.10925636440515518, 0.06759990006685257, 0.0019480600021779537, 0.08588507771492004,
- -0.042613040655851364, -0.029598897323012352, 0.052064258605241776,
- -0.00521301431581378, 0.008137860335409641, 0.3213168680667877, -0.013260146602988243,
- -0.028382081538438797, -0.0029425506945699453, -0.06681349128484726,
- 0.0042899418622255325, 0.10823606699705124, -0.029745599254965782,
- -0.016043851152062416, -0.05196215957403183, 0.15017922222614288, -0.0032267642673105,
- 0.0474628210067749, -0.13583192229270935, 0.04247302934527397, 0.04423829913139343,
- -0.02598659135401249, 0.06739218533039093, -0.09436550736427307, -0.08539994806051254,
- -0.24632099270820618, -0.0005171768716536462, -0.1482766717672348, 0.0720050111413002,
- -0.08184130489826202, -0.04237433522939682, 0.056304626166820526, 0.01127551682293415,
- 0.06655661761760712, 0.025668008252978325, 0.02500779554247856, -0.0011036345968022943,
- -0.01693621277809143, -0.02043851464986801, -0.03427489474415779, -0.026692083105444908,
- 0.21773682534694672, -0.10480662435293198, 0.008939065039157867, 0.09188084304332733,
- -0.09016601741313934, 0.4401599168777466, -0.006923103705048561, 0.032257530838251114,
- 0.009481246583163738, 0.04904625564813614, 0.039941105991601944, 0.0840207040309906,
- -0.027237437665462494, -0.05435141548514366, 0.03728794306516647, -0.010908031836152077,
- -0.05530127137899399, 0.07319360971450806, 0.05257727578282356, -0.023544274270534515,
- 0.08950864523649216, -0.028710000216960907, -0.07574659585952759, -0.054864007979631424,
- -0.036274295300245285, 0.10268031805753708, 0.05571023002266884, -0.06607579439878464,
- 0.05960530415177345, 0.05218930542469025, -0.01833789050579071, 0.01345317903906107,
- -0.02125411294400692, -0.030661433935165405, 0.019841134548187256, 0.030945630744099617,
- -0.030509332194924355, 0.04927187040448189, -0.056254319846630096, 0.01742168329656124,
- 0.034252967685461044, 0.08262212574481964, -0.024222325533628464, 0.015005133114755154,
- 0.04079911857843399, -0.0022132534068077803, -0.028906850144267082,
- -0.039825160056352615, -0.028936993330717087, 0.007324063219130039,
- -0.046340107917785645, 0.03014252707362175, 0.04069279134273529, -0.05985737964510918,
- -0.1883772760629654, 0.003318807575851679, 0.07396432757377625, -0.011752895079553127,
- -0.03976527601480484, -0.00362667185254395, -0.007743348367512226, 0.09470674395561218,
- -0.02410212717950344, -0.02057747356593609, 0.03135337308049202, 0.03647024556994438,
- 0.012719551101326942, 0.12367470562458038, 0.022823527455329895, -0.06763017177581787,
- -0.045630063861608505, 0.0012145608197897673, -0.06259507685899734, 0.09097926318645477,
- -0.1549868881702423, -0.04854902625083923, 0.029702240601181984, 0.05737531557679176,
- 0.7360771894454956, 0.10936113446950912, 0.16409361362457275, 0.010675393044948578,
- -0.07761327177286148, 0.16028232872486115, -0.0023409933783113956, 0.0671868547797203,
- -0.03395669534802437, -0.08829893171787262, 0.01849892921745777, -0.133522629737854,
- -0.05098671093583107, -0.0005731538403779268, 0.017356181517243385, 0.138051837682724,
- 0.01119269710034132, 0.062333084642887115, -0.04755328223109245, -0.10359392315149307,
- -0.05480605736374855, 0.0294366255402565, 0.03376919776201248, -0.1139984130859375,
- -0.02059972658753395, 0.05102498084306717, 0.11688899248838425, -0.11063668876886368,
- 0.04870935529470444, -0.10760697722434998, -0.0111759128049016, -0.07072420418262482,
- 0.0038905153051018715, -0.03648776933550835, 0.014638778753578663, 0.08360478281974792,
- 0.09224002063274384, 0.03703612834215164, -0.1599016934633255, -0.05546862259507179,
- 0.11971239000558853, 0.007192857563495636, -0.031107507646083832, 0.0913061574101448,
- -0.06930593401193619, 0.07805238664150238, 0.0058260392397642136, 0.18808071315288544,
- -0.09698331356048584, 0.03213779628276825, -0.07365750521421432, -0.007240111939609051,
- 0.08541352301836014, -0.017703358083963394, -0.05768834426999092, -0.004487227648496628,
- 0.08689212799072266, 0.03898024931550026, 0.09230067580938339, -0.04343603923916817,
- 0.0004158438532613218, 0.03507734835147858, 0.001173266675323248, 0.0025745630264282227,
- -0.06852903962135315, 0.053252022713422775, 0.03884938731789589, -0.11091598868370056,
- 0.012063097208738327, 0.012618445791304111, 0.031143030151724815, -0.004556477535516024,
- 0.026180818676948547, 0.028508663177490234, 0.013018759898841381, -0.07066214084625244,
- -0.028991442173719406, 0.035652101039886475, -0.004225944634526968, 0.06669852882623672,
- -0.007140454836189747, -0.02329777181148529, -0.05309861898422241, -0.02661597728729248,
- 0.007353554014116526, 0.00015889375936239958, 0.06496145576238632, 0.0757448747754097,
- 0.045452896505594254, 0.03078751266002655, 0.04823605716228485, 0.13893888890743256,
- 0.011684742756187916, 0.044353190809488297, 0.06680221855640411, 0.014930387027561665,
- -0.03743894398212433, 0.025225413963198662, 0.002866082126274705, 0.02491430751979351,
- 0.041109926998615265, -0.069286048412323, -0.0500994510948658, -0.05298054218292236,
- -0.02698754519224167, -0.04569138213992119, -0.038752201944589615,
- -0.016877299174666405, 0.056628450751304626, -0.05778832733631134,
- -0.043919507414102554, -0.0876438096165657, 0.061039336025714874, 0.11850587278604507,
- -0.046052370220422745, -0.02138829603791237, -0.1504213809967041, 0.038428012281656265,
- -0.024861743673682213, 0.07042580842971802, 0.023302966728806496, 0.055419761687517166,
- 0.0008047071169130504, -0.065699003636837, 0.05540366843342781, 0.02141043171286583,
- -0.04439854994416237, -0.10212452709674835, -0.01606823317706585, -0.10233806073665619,
- 0.07333124428987503, -0.030645010992884636, -0.05254175886511803, 0.03136609122157097,
- 0.02346784435212612, 0.08604291081428528, 0.06656354665756226, -0.08817236870527267,
- 0.11315847188234329, -0.049139656126499176, -0.04141358286142349, 0.10995975136756897,
- -0.02624463476240635, 0.007203280925750732, -0.034696273505687714, -0.11586545407772064,
- -0.08697037398815155, -0.05143678933382034, -0.06884544342756271, 0.03742611035704613,
- -0.027697496116161346, 0.018012048676609993, -0.040990568697452545,
- -0.04096764698624611, -0.041448142379522324, -0.0862569510936737, -0.10584701597690582,
- -0.051873382180929184, 0.07497186958789825, -0.006882810965180397, 0.023979786783456802,
- 0.0006274577463045716, -0.06849758327007294, 0.0662914514541626, -0.013905542902648449,
- 0.0002452368207741529, 0.047083981335163116, 0.023765280842781067, -0.064677394926548,
- 0.0026914316695183516, 0.1109163835644722, -0.04862380027770996, -0.05096680298447609,
- 0.06575748324394226, 0.42345499992370605, -0.10108259320259094, 0.06973255425691605,
- 0.09308024495840073, 0.0061757671646773815, 0.046748556196689606, -0.07954063266515732,
- 0.04672859236598015, 0.09324648976325989, 0.15882514417171478, 0.08561307936906815,
- -0.050702206790447235, -0.051688194274902344, -0.07620973140001297, 0.09338007122278214,
- 0.025854753330349922, 0.03937917947769165, -0.05181010812520981, -0.1273164451122284,
- -0.036637574434280396, 0.022656243294477463, -0.04524886608123779, 0.01931578293442726,
- 0.0457502081990242, -0.05310036987066269, 0.022072818130254745, -0.07016396522521973,
- 0.031090067699551582, 0.015164772979915142, 0.06582625210285187, -0.07177339494228363,
- 0.09087348729372025, 0.004101679660379887, 0.04956183582544327, -0.12472325563430786,
- -0.0016510933637619019, -0.1027158573269844, -0.04459716007113457, 0.09201548993587494,
- -0.03670347109436989, 0.002465758938342333, 0.08332299441099167, -0.08120186626911163,
- 0.06042107194662094, 0.01775047369301319, -0.09829400479793549, 0.07207426428794861,
- 0.06285246461629868, 0.015868598595261574, -0.011628644540905952, 0.1513640582561493,
- -0.03273427486419678, -0.058668941259384155, -0.07818101346492767, 0.06603754311800003,
- 0.09493166208267212, -0.015201108530163765, 0.015964465215802193, 0.08237692713737488,
- -0.10045243054628372, 0.026120904833078384, -0.02832341194152832, -0.11571551114320755,
- 0.018850019201636314, -0.08989930897951126, 0.0912170559167862, 0.06446755677461624,
- -0.03678325191140175, -0.08267470449209213, -0.0687003806233406, -0.053935520350933075,
- -0.005840701051056385, 0.14372888207435608, -0.0039040984120219946, 0.09971103072166443,
- -0.04273450747132301, 0.020812438800930977, 0.09670514613389969, -0.11535786837339401,
- 0.03280164301395416, 0.01465605478733778, 0.017748387530446053, 0.07975386828184128,
- 0.028262153267860413, -0.02172223851084709, 0.10142089426517487, -0.09224704653024673,
- 0.060319311916828156, -0.0025678658857941628, -0.1101626455783844, 0.01610269583761692,
- -0.06979840993881226, 0.08508129417896271, -0.013891070149838924, -0.00501677580177784,
- -0.03193176910281181, 0.000619890633970499, -0.03251237794756889, -0.11463594436645508,
- -0.0845225602388382, -0.02685648202896118, -0.07591965049505234, 0.0036850583273917437,
- -0.05940328538417816, 0.02048570103943348, -0.02629505656659603, -0.03776712343096733,
- 0.02307537943124771, 0.056588493287563324, 0.05446020886301994, -0.10783082246780396,
- 0.06193409115076065, -0.02980630472302437, 0.03822741284966469, -0.019251035526394844,
- -0.04118815436959267, 0.033129964023828506, 0.04529672861099243, 0.03126026690006256,
- -0.0842498168349266, -0.016493679955601692, -0.060277361422777176, 0.08993274718523026,
- -0.10073578357696533, -0.27342841029167175, 0.05747891962528229, -0.008526677265763283,
- 0.09740310907363892, 0.040992621332407, -0.07930472493171692, 0.04740748554468155,
- -0.025493169203400612, -0.03805376961827278, 0.07993452996015549, -0.030459634959697723,
- 0.030833419412374496, 0.039644330739974976, -0.07881072163581848,
- -0.0029051192104816437, -0.03376927971839905, 0.004994989838451147,
- 0.059414345771074295, -0.018529947847127914, -0.10420757532119751, -0.11981901526451111,
- 0.005885178688913584, -0.030425183475017548, 0.013216844759881496,
- 0.0070227812975645065, -0.005002940073609352, -0.09213252365589142,
- -0.018016144633293152, 0.01856197603046894, 0.022432448342442513, 0.00475631607696414,
- -0.09568364918231964, -0.015443164855241776, 0.05299891531467438, -0.06827816367149353,
- 0.12903757393360138, -0.002606702735647559, 0.08228737860918045, -0.10334610193967819,
- 0.09498129785060883, 0.04000218212604523, 0.18341973423957825, 0.025300107896327972,
- 0.009317183867096901, 0.07407413423061371, 0.15719422698020935, 0.02262766845524311,
- 0.037374649196863174, 0.004628574009984732, 0.025903189554810524, 0.05847937613725662,
- 0.013641160912811756, 0.12322699278593063, -0.10438685119152069, 0.027367176488041878,
- -0.07584677636623383, -0.05598065257072449, -0.006143011152744293, -0.07959277927875519,
- 0.20847569406032562, 0.029030807316303253, 0.052907418459653854, 0.04907407611608505,
- -0.11225739121437073, 0.009015059098601341, -0.0450376458466053, -0.07803396135568619,
- 0.02291104383766651, 0.0007029765984043479, 0.03778580576181412, 0.013150022365152836,
- -0.12772883474826813, -0.014193735085427761, -0.008792886510491371,
- -0.005755112040787935, 0.09771682322025299, -0.06357080489397049, 0.01666170172393322,
- -0.0382557213306427, 0.09090607613325119, 0.05490067973732948, 0.014703401364386082,
- 0.023999568074941635, 0.09816260635852814, -0.028619300574064255, -0.020096898078918457,
- 0.01487011555582285, -0.01838279515504837, -0.047700971364974976, 0.1722588837146759,
- -0.032271772623062134, 0.0935143232345581, 0.09269619733095169, 0.030991921201348305,
- -0.07675209641456604, -0.004507995676249266, -0.05581377446651459, 0.030352294445037842,
- -0.38846901059150696, 0.017504708841443062, 0.0908164381980896, -0.007607380859553814,
- 0.004118368495255709, 0.06013280153274536, 0.07603368908166885, -0.03684433177113533,
- -0.025082822889089584, -0.12326977401971817, 0.1980661004781723, 0.03477821871638298,
- 0.0600752979516983, -0.10926923155784607, 0.03879223018884659, 0.11148135364055634,
- -0.06588274985551834, -0.04284655675292015, 0.08359798789024353, -0.1933872401714325,
- -0.013329766690731049, -0.07925920933485031, 0.1874895840883255, 0.06107369810342789,
- -0.0023681556340306997, 0.07314157485961914, -0.021691961213946342,
- 0.0003802764695137739, 0.04994504153728485, -0.03274521976709366, 0.03645451366901398,
- 0.015609060414135456, -0.01948978193104267, 0.11194195598363876, 0.09764816612005234,
- 0.019586563110351562, -0.05149035155773163, 12.12464714050293, 0.06710194796323776,
- 0.03205161914229393, -0.08549411594867706, 0.012629947625100613, -0.02459709346294403,
- 0.02462141029536724, -0.01290879026055336, 0.06432616710662842, 0.1143064796924591,
- -0.008408594876527786, -0.07475915551185608, -0.06576099991798401, -0.08232337981462479,
- 0.020448585972189903, -0.09780313819646835, -0.09751591831445694, -0.07936660200357437,
- 0.05256814509630203, -0.028759410604834557, -0.026737768203020096, -0.04438148811459541,
- 0.06862543523311615, -0.0005477873492054641, -0.13252297043800354, 0.02551061101257801,
- 0.040032193064689636, -0.003367113182321191, 0.005862088408321142, 0.031314823776483536,
- -0.04028903692960739, 0.032948996871709824, 0.07009805738925934, 0.0030677360482513905,
- 0.048140548169612885, 0.020081104710698128, 0.10262884199619293, 0.07801015675067902,
- 0.034869980067014694, 0.11368212103843689, 0.046688660979270935, 0.1164308562874794,
- 0.04352344945073128, 0.03347638249397278, 0.07251174747943878, 0.04386577010154724,
- 0.020616374909877777, 0.12179039418697357, 0.046804673969745636, 0.07951240986585617,
- 0.15099215507507324, -0.005161969922482967, 0.1400117427110672, 0.03711497783660889,
- 0.013557854108512402, 0.02185310423374176, 0.0246269591152668, -0.0921444445848465,
- 0.04606613889336586, 0.07572516053915024, -0.04985596239566803, 0.14805330336093903,
- 0.06702154874801636, 0.10452900826931, 0.04894435778260231, 0.09588015079498291,
- 0.09335227310657501, 0.0552804134786129, -0.1997104287147522, -0.06321637332439423,
- 0.05873233079910278, -0.08718948066234589, -0.04080678150057793, 0.16715268790721893,
- 0.06354928016662598, -0.0279169250279665, 0.08365365862846375, -0.009645108133554459,
- 0.02711072564125061, -0.026056988164782524, -0.022971823811531067, 0.04740292578935623,
- -0.03485919162631035, -0.05583983287215233, 0.10985001921653748, 0.02414492890238762,
- 0.10710538923740387, 0.10621155798435211, -0.06154259666800499, -0.1103120744228363,
- -0.08086921274662018, 0.08359643071889877, -0.02475023828446865, -0.043889936059713364,
- 0.01238682959228754, -0.06809495389461517, 0.0222384762018919, -0.16351181268692017,
- 0.09201939404010773, 0.14913791418075562, -0.11553362011909485, -0.03386160731315613,
- -0.0567324198782444, 0.061281900852918625, 0.05150966718792915, 0.0239555686712265,
- -0.10709838569164276, -0.003207186236977577, 0.02581094019114971, 0.034547921270132065,
- -0.08690913021564484, 0.09314296394586563, 0.09425687044858932, -0.10665813833475113,
- 0.049070537090301514, 0.10853591561317444, -0.07786821573972702, 0.00084254564717412,
- 0.04038296267390251, 0.003864154452458024, -0.12635399401187897, -0.06388426572084427,
- -0.014170469716191292, -0.023231597617268562, -0.008958997204899788,
- -0.03257393836975098, -0.0022166776470839977, 0.01684560440480709, -0.15649041533470154,
- 0.003798285499215126, 0.06505665183067322, 0.020932750776410103, 0.04687328264117241,
- 0.03357136622071266, 0.055829137563705444, -0.07734145224094391, -0.050898145884275436,
- 0.03494906425476074, 0.027590785175561905, 0.02181013487279415, 0.04270751401782036,
- -0.032891079783439636, -0.10984537750482559, -0.06106165051460266,
- -0.016459761187434196, 0.13936462998390198, 0.021981986239552498, 0.06770689785480499,
- 0.01943778246641159, -0.055025894194841385, -0.05017508566379547, 0.09558966010808945,
- -0.008980142883956432, 0.040919236838817596, 0.03304465115070343, -0.06129369139671326,
- -0.03794129565358162, 0.170407235622406, -0.03175201639533043, 0.01407328899949789,
- -0.006236063316464424, 0.0073951417580246925, 0.10976232588291168, 0.10929393023252487,
- 0.01544235646724701, 0.027772871777415276, 0.031878355890512466, -0.01739858090877533,
- 0.06824583560228348, -0.010225719772279263, -0.00809151865541935, -0.06910230964422226,
- -0.045938923954963684, -0.08162502944469452, 0.028290411457419395, 0.13771165907382965,
- 0.007891583256423473, -0.11850031465291977, 0.008289939723908901, -0.11800014227628708
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 96,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 195,
- "similarity": 0.9974703788757324
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 9,
- "similarity": 0.9973660707473755
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 11,
- "similarity": 0.9970170855522156
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Cameron Langford"],
- "epoch_date_downloaded": 1614816000,
- "epoch_date_modified": 1614816000,
- "epoch_date_submitted": 1614816000,
- "flag": null,
- "report_number": 1398,
- "source_domain": "courthousenews.com",
- "submitters": ["Roman Lutz"],
- "title": "Houston Schools Must Face Teacher Evaluation Lawsuit",
- "url": "https://www.courthousenews.com/houston-schools-must-face-teacher-evaluation-lawsuit/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "tesla",
- "name": "Tesla"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "tesla",
- "name": "Tesla"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "tesla-drivers",
- "name": "Tesla drivers"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1399],
- "vector": [
- -0.07736489176750183, 0.06808357685804367, -0.004875034559518099, -0.08677054941654205,
- 0.0800703689455986, 0.004174577072262764, -0.007573234383016825, 0.06131475046277046,
- 0.04912038892507553, -0.16036389768123627, 0.015251616947352886, 0.05694367736577988,
- 0.013628381304442883, -0.06446445733308792, 0.0820985734462738, -0.048086017370224,
- -0.05362578108906746, -0.039758555591106415, 0.013140663504600525, -0.07383078336715698,
- -0.07911758124828339, 0.004301886539906263, 0.02166728861629963, 0.10387562215328217,
- -0.0782817155122757, -0.011308617889881134, 0.10517925769090652, 0.06303562968969345,
- -0.02470247447490692, -0.005334493704140186, -0.002064809435978532,
- -0.05891507863998413, 0.12820813059806824, 0.022065311670303345, -0.005586147308349609,
- 0.08858998119831085, 0.017775777727365494, -0.006054040975868702, -0.12391748279333115,
- -0.00033837786759249866, 0.03895065560936928, 0.18292377889156342,
- 0.00035747140645980835, -0.05360839143395424, 0.03202633559703827, -0.02421211078763008,
- 0.030088458210229874, 0.022674739360809326, -0.01437839400023222, -0.003415764309465885,
- -0.015344180166721344, 0.019665587693452835, -0.05800190940499306,
- 0.0027341661043465137, -0.11308222264051437, 0.08249817788600922, 0.06808582693338394,
- 0.015848003327846527, 0.02275165356695652, -0.046523675322532654, -0.016584519296884537,
- -0.21552340686321259, -0.049284908920526505, 0.007890247739851475, 0.053049858659505844,
- -0.09695647656917572, -0.005367869511246681, 0.04864518344402313, 0.01383670698851347,
- 0.0612412765622139, 0.06163988262414932, -0.07866103202104568, -0.07391374558210373,
- -0.030756181105971336, -0.020959019660949707, -0.03911016881465912,
- 0.005936493165791035, 0.22544525563716888, -0.08226387202739716, 0.024542706087231636,
- 0.1047007292509079, -0.12326765805482864, 0.43204909563064575, 0.05188533291220665,
- -0.03482510894536972, -0.05737848952412605, 0.08712052553892136, 0.038636039942502975,
- 0.02945704199373722, 0.03824951499700546, -0.025900594890117645, 0.005880369804799557,
- -0.03021812066435814, 0.026493441313505173, 0.045115649700164795, 0.005120455753058195,
- -0.001676006242632866, -0.10669365525245667, 0.014474504627287388, -0.07484197616577148,
- 0.04139106348156929, -0.06150488182902336, 0.1088372990489006, 0.0439467579126358,
- -0.041460148990154266, -0.020127231255173683, 0.08127938956022263,
- -0.005296316463500261, 0.05882338806986809, -0.08191148936748505, 0.07129307836294174,
- 0.038897059857845306, 0.02905074693262577, 0.003775352379307151, 0.03005862422287464,
- -0.034880246967077255, 0.0037599524948745966, 0.048436593264341354, 0.11509986221790314,
- 0.02014017291367054, -0.00955279916524887, 0.06665769219398499, 0.10269565880298615,
- -0.041599977761507034, -0.011949462816119194, -0.0243073757737875, -0.08234015107154846,
- 0.01427003275603056, -0.06447039544582367, 0.046988945454359055, -0.0736910030245781,
- -0.17680948972702026, 0.02825278230011463, 0.14423085749149323, -0.019643645733594894,
- -0.03640343248844147, 0.011921693570911884, -0.07296809554100037, 0.03525036945939064,
- -0.009948384948074818, -0.044568151235580444, 0.034566327929496765, 0.03855419531464577,
- 0.03288966417312622, 0.0970805212855339, 0.04832218587398529, -0.03725801035761833,
- -0.0689820796251297, 0.015617400407791138, -0.10055416822433472, 0.08782021701335907,
- -0.10449874401092529, -0.055041588842868805, -0.01248717401176691, -0.06672307848930359,
- 0.6510363221168518, 0.10757823288440704, 0.20432215929031372, 0.03833400458097458,
- -0.019017331302165985, 0.14611874520778656, -0.0179599579423666, 0.028063738718628883,
- -0.07042434811592102, -0.046455178409814835, 0.05060694366693497, -0.09411507844924927,
- -0.06556589156389236, 0.022316133603453636, 0.033115170896053314, 0.06986866146326065,
- 0.014395150355994701, 0.09966056793928146, 0.0003136782324872911, -0.1551501452922821,
- -0.03615546599030495, 0.04546091705560684, -0.01814272813498974, -0.1284138560295105,
- -0.06066035106778145, 0.04236093536019325, 0.09991957247257233, -0.07470861822366714,
- 0.01634221337735653, -0.04115606099367142, 0.036393601447343826, 0.009779688902199268,
- 0.033227499574422836, -0.03516911715269089, -0.00619817990809679, 0.036958131939172745,
- 0.05654330924153328, -0.0387277752161026, -0.09237313270568848, -0.0038276505656540394,
- 0.09909223020076752, -0.023229772225022316, -0.0376930870115757, 0.051581237465143204,
- -0.07903195917606354, 0.038299400359392166, -0.022693540900945663, 0.13913747668266296,
- -0.14200054109096527, 0.003924797289073467, 0.015583153814077377, -0.008088910952210426,
- 0.03405353054404259, -0.02164418436586857, -0.045098114758729935, -0.06836769729852676,
- 0.12784142792224884, 0.034981198608875275, 0.048177216202020645, 0.059905875474214554,
- -0.04200027883052826, -0.00042242082417942584, 0.08923552185297012,
- 0.005691480822861195, -0.0032633577939122915, 0.07256509363651276, 0.06310268491506577,
- -0.0491434745490551, -0.028192982077598572, 0.013313940726220608, 0.02274457924067974,
- 0.04899558797478676, -0.022824877873063087, 0.04639105126261711, 0.016216455027461052,
- -0.03727051988244057, 0.009581053629517555, 0.057111214846372604, 0.05871070921421051,
- 0.11583121120929718, -0.04927224665880203, -0.1038191094994545, -0.02385142259299755,
- -0.03253500908613205, 0.012731497175991535, -0.006496130023151636, 0.07630500942468643,
- 0.06812265515327454, 0.08494190871715546, 0.0053834873251616955, 0.03722678869962692,
- 0.02802141010761261, 0.04533252865076065, 0.043709736317396164, 0.08312153071165085,
- -0.014791772700846195, -0.04390252009034157, -0.022140031680464745,
- 0.008537759073078632, -0.010207092389464378, 0.007717699743807316, -0.05637102574110031,
- -0.018147798255085945, -0.04914391413331032, -0.004800351336598396,
- -0.10110004991292953, -0.0552852563560009, 0.037210557609796524, 0.03862955793738365,
- -0.02361714094877243, -0.08493852615356445, -0.09657025337219238, 0.02178548462688923,
- 0.04479016736149788, 0.013651632703840733, -0.0046031177043914795, -0.09877181053161621,
- -0.017607755959033966, 0.01069564837962389, 0.009493432939052582, 0.02304021269083023,
- -0.0068396590650081635, -0.03495510295033455, -0.05364667996764183,
- 0.008424178697168827, -0.028659306466579437, -0.013478823937475681,
- -0.03345304727554321, -0.1104298084974289, -0.07372040301561356, -0.010108339600265026,
- -0.007602349855005741, -0.03541338071227074, 0.013572705909609795, 0.013647855259478092,
- 0.0187821164727211, 0.023438483476638794, -0.06916463375091553, 0.0760134607553482,
- -0.019534114748239517, -0.051708925515413284, 0.048905108124017715,
- -0.023519130423665047, 0.06495160609483719, -0.029221363365650177, -0.08290702104568481,
- -0.04651234298944473, 0.01296229474246502, -0.062469080090522766, 0.041419725865125656,
- -0.04075077176094055, 0.03173964470624924, -0.032028261572122574, 0.009825102053582668,
- 0.07648156583309174, -0.06699690967798233, -0.0951867625117302, -0.10110071301460266,
- 0.1595175713300705, -0.010966038331389427, -0.04171321913599968, 0.05185512825846672,
- -0.03914039582014084, 0.01801040768623352, -0.05344708263874054, -0.01913987472653389,
- 0.0150537621229887, 0.043095920234918594, 0.01165673416107893, 0.005397433415055275,
- 0.047503113746643066, -0.07113178074359894, 0.0004368122899904847, 0.09749916940927505,
- 0.41181236505508423, -0.2103947550058365, 0.08193802088499069, 0.0640462189912796,
- 0.038298942148685455, 0.07186705619096756, -0.04747798666357994, 0.07981815934181213,
- 0.038623396307229996, 0.12462089955806732, 0.1083071231842041, -0.0038515960332006216,
- 0.04140838608145714, -0.03824774920940399, 0.0898994579911232, -0.011204938404262066,
- -0.018507670611143112, -0.011252427473664284, -0.032739296555519104,
- 0.005582221318036318, 0.05723888799548149, -0.07891543209552765, 0.007258290890604258,
- -0.04696711152791977, -0.022335151210427284, -0.005660914815962315,
- 0.015027794986963272, 0.017703628167510033, -0.03245829418301582, -0.03581167012453079,
- 0.016171099618077278, 0.06043310463428497, 0.045526426285505295, 0.018122199922800064,
- -0.08526270091533661, 0.04819922149181366, -0.08665888011455536, -0.0939081534743309,
- 0.07640774548053741, -0.044248562306165695, 0.05860741436481476, 0.056708138436079025,
- -0.02960638329386711, 0.02941056154668331, -0.008814065717160702, -0.043814074248075485,
- 0.0029702172614634037, 0.06872622668743134, 0.021521443501114845, 0.08488164097070694,
- 0.15883873403072357, -0.05611206591129303, -0.028974853456020355, -0.07766439765691757,
- 0.06828366219997406, 0.10127639770507812, -0.024442769587039948, 0.004023117944598198,
- -0.05972803011536598, -0.0001309453509747982, -0.006613604258745909,
- -0.04093256965279579, -0.0888526439666748, -0.015318487770855427, -0.046412743628025055,
- 0.03924541175365448, 0.0059407856315374374, -0.03252601996064186, -0.21081013977527618,
- -0.0628463476896286, -0.060529615730047226, 0.03904333338141441, 0.10876497626304626,
- -0.07585973292589188, 0.036515772342681885, 0.040296509861946106, -0.009682418778538704,
- -0.017162825912237167, -0.0953121930360794, 0.017894653603434563, -0.036999695003032684,
- 0.05706309899687767, 0.07488127052783966, 0.050667379051446915, -0.014238943345844746,
- 0.08001486212015152, -0.07517620176076889, 0.05810774862766266, 0.002561981091275811,
- -0.007996765896677971, 0.03527379781007767, -0.07203838229179382, 0.04359276965260506,
- 0.03218930959701538, -0.04893884062767029, -0.0055970801040530205, -0.0419778972864151,
- -0.043036412447690964, -0.05614931136369705, -0.09022770076990128, -0.05390091612935066,
- -0.06875716149806976, 0.08164998888969421, -0.11642396450042725, -0.06284176558256149,
- -0.05929827317595482, -0.005057995673269033, 0.028698088601231575, 0.03177430480718613,
- 0.046455346047878265, -0.21386609971523285, -0.005282647907733917, 0.011711937375366688,
- 0.06977757811546326, 0.016635708510875702, -0.00020077837689314038,
- -0.01907680742442608, 0.10076981782913208, 0.049524251371622086, -0.02317536436021328,
- 0.010697269812226295, -0.09244281053543091, 0.012380991131067276, -0.07674380391836166,
- -0.5143551230430603, 0.08800676465034485, 0.002368038985878229, 0.025381332263350487,
- 0.001103735063225031, -0.06658510118722916, 0.04351169988512993, 0.018598400056362152,
- -0.025503162294626236, 0.08774953335523605, -0.06789591908454895, 0.052224189043045044,
- -0.006998772732913494, -0.02431119792163372, -0.026473240926861763,
- -0.044870685786008835, -0.03509362414479256, 0.012167556211352348, -0.03730836510658264,
- -0.048039697110652924, -0.09087773412466049, 0.027678120881319046, -0.07305581122636795,
- 0.01594589278101921, 0.020468251779675484, 0.0318099707365036, -0.0993025153875351,
- -0.049116648733615875, 0.05581357702612877, 0.10686428844928741, 0.0749739557504654,
- -0.038697920739650726, -0.01900462433695793, 0.04416291415691376, -0.008775032125413418,
- 0.153078094124794, -0.010788600891828537, -0.05819901451468468, -0.028820669278502464,
- 0.09912825375795364, 0.08225034922361374, 0.1861894130706787, 0.02317928709089756,
- 0.036484457552433014, -0.02253623679280281, 0.1650296300649643, 0.06997629255056381,
- 0.022689567878842354, -0.02024231106042862, -0.01526295579969883, 0.03538446128368378,
- -0.04574354365468025, 0.046821270138025284, -0.07796361297369003, -0.015515328384935856,
- 0.018231412395834923, -0.029695039615035057, 0.00557554978877306, 0.0394289493560791,
- 0.2129001021385193, 0.025097660720348358, 0.010974518023431301, 0.0023127575404942036,
- -0.04564890265464783, 0.00513139134272933, -0.1050962433218956, -0.08110517263412476,
- -0.020749129354953766, 0.01747920550405979, 0.028753604739904404, -0.04241858050227165,
- -0.12989503145217896, 0.0015115456189960241, -0.01788347028195858, 0.03654280677437782,
- 0.12368906289339066, 0.03304396942257881, 0.021741051226854324, 0.0006888842908665538,
- 0.11861662566661835, -0.006526363082230091, 0.019772356376051903, 0.08962619304656982,
- 0.0854368805885315, 0.05860929191112518, 0.017678789794445038, -0.03428444266319275,
- -0.02354031428694725, 0.060006871819496155, 0.14337831735610962, -0.033951591700315475,
- 0.08444362133741379, 0.05539769306778908, 0.00829824898391962, -0.035613179206848145,
- 0.055153872817754745, -0.0313267856836319, 0.017736686393618584, -0.4666910469532013,
- -0.0446159765124321, 0.10687117278575897, 0.039810579270124435, -0.0010045948438346386,
- 0.10326483845710754, 0.009522566571831703, -0.009166775271296501, 0.002352248877286911,
- -0.029686886817216873, 0.12178106606006622, -0.03396621719002724, 0.02807387337088585,
- -0.11828675121068954, 0.013266459107398987, 0.07097835838794708, -0.006834557745605707,
- 0.013291706331074238, 0.08555688709020615, -0.16798634827136993, 0.018439143896102905,
- -0.06714390218257904, 0.15694735944271088, 0.06650599837303162, 0.025391800329089165,
- 0.09653255343437195, -0.07297664880752563, 0.011528433300554752, 0.04224292188882828,
- 0.008784985169768333, 0.0851932018995285, -0.006380515638738871, -0.033320508897304535,
- 0.09672990441322327, 0.0995214655995369, 0.134729266166687, -0.032383400946855545,
- 11.992804527282715, 0.0608670637011528, 0.031486909836530685, -0.06397233158349991,
- 0.015055673196911812, -0.05472536385059357, 0.03893359377980232, -0.08492869883775711,
- 0.07649888843297958, 0.18867723643779755, -0.038603976368904114, -0.02796979807317257,
- -0.009443392045795918, -0.06442297995090485, 0.016093816608190536,
- -0.047506339848041534, -0.039691563695669174, -0.02369452454149723,
- 0.011285599321126938, -0.03215216100215912, -0.022301627323031425, 0.07842764258384705,
- 0.06411609053611755, 0.0344257578253746, -0.08898084610700607, 0.0899464562535286,
- -0.0072427899576723576, -0.027577167376875877, 0.021646782755851746,
- 0.024736683815717697, -0.021060604602098465, 0.03988579660654068, 0.07899003475904465,
- 0.009866886772215366, 0.015580755658447742, 0.12560461461544037, 0.08675049245357513,
- 0.05477180704474449, 0.0041124653071165085, 0.08880751579999924, 0.027017289772629738,
- -0.019048897549510002, 0.0013589364243671298, 0.05437202751636505, 0.02001962810754776,
- 0.08614543080329895, 0.09299136698246002, 0.1645859181880951, 0.017636897042393684,
- 0.037816695868968964, 0.0667128637433052, -0.01982548087835312, 0.12527602910995483,
- 0.03524036332964897, -0.03209640830755234, 0.028853802010416985, -0.02535172738134861,
- -0.0365094393491745, 0.08907204866409302, 0.08259248733520508, -0.042375579476356506,
- 0.07300307601690292, 0.0040727523155510426, 0.11580357700586319, 0.0019093721639364958,
- 0.028445648029446602, 0.025215771049261093, 0.09466808289289474, -0.04831628128886223,
- -0.09574823826551437, 0.04156791791319847, -0.11786607652902603, -0.05797440931200981,
- 0.016239596530795097, 0.09225886315107346, -0.034476276487112045, 0.012993390671908855,
- -0.03396115452051163, 0.017345333471894264, -0.032336585223674774, 0.011681996285915375,
- 0.026931582018733025, -0.01865222118794918, 0.0070692612789571285, 0.02532482147216797,
- 0.022096717730164528, 0.02938583306968212, 0.0668099895119667, -0.021166333928704262,
- -0.07695788890123367, -0.05917229875922203, 0.11292191594839096, -0.040092792361974716,
- -0.05189991369843483, 0.035919781774282455, -0.05134779214859009, 0.07013753801584244,
- -0.15326356887817383, 0.04199476167559624, 0.1254664808511734, -0.06593555957078934,
- -0.05644689500331879, -0.0030027611646801233, 0.044851358979940414,
- -0.024020284414291382, 0.017927974462509155, -0.0619359165430069, 0.01658480428159237,
- 0.030168626457452774, 0.051635175943374634, -0.040187254548072815, 0.00842494610697031,
- 0.0865282341837883, -0.05078989639878273, 0.054859012365341187, 0.04468683525919914,
- -0.013262329623103142, -0.06380608677864075, 0.04669738560914993, 0.03875265270471573,
- -0.07466728240251541, -0.036863137036561966, -0.040848881006240845,
- 0.010060988366603851, -0.0029668807983398438, -0.014111372642219067,
- 0.009741822257637978, 0.020158197730779648, -0.02636232040822506, -0.006285236682742834,
- 0.04355309531092644, 0.07326044142246246, 0.11177132278680801, -0.009970483370125294,
- 0.06759800761938095, -0.04226677119731903, -0.038035452365875244, 0.03739078342914581,
- 0.06545320898294449, 0.09485606104135513, -0.049186885356903076, 0.002733413828536868,
- -0.01481789443641901, -0.13684050738811493, 0.012089493684470654, 0.09701400250196457,
- 0.07063541561365128, 0.03436344489455223, 0.002142099430784583, -0.08229035139083862,
- -0.07806788384914398, 0.11182711273431778, 0.036116331815719604, 0.0015200043562799692,
- 0.01685139536857605, -0.057155512273311615, -0.01722823455929756, 0.12837813794612885,
- -0.045781299471855164, 0.0004410486144479364, 0.03733005002140999, -0.13030409812927246,
- 0.09305253624916077, 0.1224217489361763, -0.009741580113768578, 0.016517557203769684,
- 0.01092249434441328, -0.004983984865248203, 0.06862083077430725, 0.004069717135280371,
- 0.020986296236515045, 0.030823582783341408, -0.1409052014350891, -0.08228425681591034,
- 0.017773611471056938, 0.07960449159145355, 0.05187675729393959, -0.15229934453964233,
- -0.02533000148832798, -0.022624215111136436
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 97,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 187,
- "similarity": 0.9985557794570923
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 175,
- "similarity": 0.9984654188156128
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 178,
- "similarity": 0.9983898401260376
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Chris Young"],
- "epoch_date_downloaded": 1615939200,
- "epoch_date_modified": 1615939200,
- "epoch_date_submitted": 1615939200,
- "flag": null,
- "report_number": 1399,
- "source_domain": "interestingengineering.com",
- "submitters": ["Roman Lutz"],
- "title": "Tesla Autopilot Mistakes Red Letters on Flag for Red Traffic Lights",
- "url": "https://interestingengineering.com/tesla-autopilot-mistakes-red-letters-on-flag-for-red-traffic-lights"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "new-york-city-police-department",
- "name": "New York City Police Department"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "boston-dynamics",
- "name": "Boston Dynamics"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "new-york-city-low-income-communities",
- "name": "New York City low-income communities"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1401],
- "vector": [
- -0.030402379110455513, 0.07939942181110382, 0.02296176180243492, -0.10282288491725922,
- 0.09440185129642487, 0.03332921490073204, -0.015790419653058052, 0.018798280507326126,
- 0.06974474340677261, -0.12320493906736374, 0.0530373714864254, 0.007401154842227697,
- 0.014713208191096783, -0.08486378937959671, 0.023517025634646416, -0.11778848618268967,
- -0.05985068529844284, -0.05111156031489372, -0.06805925071239471, -0.1610068678855896,
- -0.05215342715382576, -0.038761697709560394, 0.032597996294498444, 0.059134095907211304,
- -0.0823676809668541, 0.014519879594445229, 0.10770640522241592, 0.132791206240654,
- -0.056869201362133026, 0.013441748917102814, -0.022917745634913445,
- -0.06531883776187897, 0.15515685081481934, 0.03960470110177994, -0.026898279786109924,
- 0.11712495982646942, 0.012703392654657364, -0.02725636586546898, -0.001470448449254036,
- 0.004497127141803503, -0.08173958212137222, 0.20649494230747223, 0.001094762235879898,
- -0.055392879992723465, 0.07617548108100891, -0.03614741563796997, -0.013210799545049667,
- 0.05760182440280914, -0.016663052141666412, 0.009562317281961441, -0.022293614223599434,
- 0.06202836334705353, -0.0005569200147874653, -0.004507511388510466,
- -0.07268780469894409, 0.061352770775556564, 0.031458236277103424, 0.04023521766066551,
- 0.08730020374059677, -0.06970326602458954, -0.04573885723948479, -0.24160867929458618,
- -0.01934334821999073, -0.06377538293600082, 0.046961016952991486, -0.05648017302155495,
- -0.031492266803979874, 0.03896215930581093, -0.009234731085598469, 0.04262272268533707,
- 0.06693330407142639, 0.006565049756318331, -0.0006523531628772616, 0.004466509912163019,
- 0.001928982906974852, 0.011620081961154938, 0.003201520536094904, 0.23487010598182678,
- -0.10830255597829819, -0.004952203948050737, 0.09302682429552078, -0.09795064479112625,
- 0.41689425706863403, 0.00012216725735925138, -0.07304605096578598, 0.009702995419502258,
- 0.06485581398010254, 0.024477658793330193, 0.04776550084352493, 0.058616939932107925,
- -0.014226745814085007, 0.0449567548930645, -0.06915358453989029, 0.029403824359178543,
- 0.03272861987352371, 0.01113300584256649, 0.01619292050600052, 0.17263373732566833,
- 0.008463508449494839, -0.05207158252596855, 0.035666245967149734, -0.04842441901564598,
- 0.0884435623884201, 0.07722503691911697, -0.025356557220220566, -0.037304285913705826,
- 0.09296277165412903, -0.042013879865407944, 0.06499393284320831, -0.0845002755522728,
- 0.012156382203102112, 0.0010430308757349849, -0.010160938836634159,
- 0.013611290603876114, 0.04845583438873291, -0.04913404956459999, -0.013925649225711823,
- 0.058405760675668716, 0.11895962804555893, -0.06985073536634445, -0.028081977739930153,
- 0.08881299942731857, 0.06854100525379181, -0.081257663667202, -0.006947518792003393,
- -0.03358202427625656, -0.053369782865047455, -0.02219119295477867, -0.01552977878600359,
- 0.08943217247724533, -0.07054059207439423, -0.19762060046195984, 0.010182671248912811,
- 0.1524478942155838, -0.021254990249872208, -0.035872116684913635, 0.04499026760458946,
- -0.06585528701543808, 0.034562792629003525, -0.056968215852975845, -0.05988164618611336,
- 0.09465352445840836, 0.04863062500953674, 0.002190496539697051, 0.08947838842868805,
- 0.04104604199528694, -0.05815861374139786, -0.06365790218114853, 0.015379625372588634,
- 0.03884678706526756, 0.10274530202150345, -0.1825842708349228, -0.032482169568538666,
- -0.0015078939031809568, -0.006639077328145504, 0.6186305284500122, 0.13634049892425537,
- 0.202308788895607, -0.022223111242055893, -0.05342332646250725, 0.16076312959194183,
- 0.0015422602882608771, 0.059437863528728485, -0.06325723975896835, -0.02997434325516224,
- 0.007096116431057453, -0.07993149012327194, -0.02720729261636734, 0.03788978233933449,
- 0.0012296427739784122, 0.10459249466657639, -0.00042995199328288436,
- 0.09850888699293137, -0.00442209467291832, -0.10369274765253067, -0.030284350737929344,
- 0.07169003784656525, -0.017911942675709724, -0.1386120617389679, -0.037228528410196304,
- 0.0780535489320755, 0.07074262201786041, -0.10377910733222961, 0.01595643348991871,
- -0.07350536435842514, 0.04608791694045067, -0.033820122480392456, 0.001953995553776622,
- 0.003837535623461008, 0.03137267380952835, 0.07346328347921371, 0.05595291033387184,
- -0.019095158204436302, -0.1247071772813797, -0.02961721457540989, 0.09471423923969269,
- 0.005221441853791475, -0.02950717881321907, 0.14930573105812073, -0.05611049011349678,
- 0.030781691893935204, -0.025414908304810524, 0.17613741755485535, -0.12782487273216248,
- 0.002114559058099985, 0.014218497090041637, -0.018440961837768555, 0.06835629045963287,
- -0.021592170000076294, -0.04324930161237717, -0.03255171328783035, 0.08408909291028976,
- 0.03634866327047348, 0.09333246946334839, 0.053216613829135895, -0.060100845992565155,
- 0.05962863937020302, 0.04852098599076271, 0.061734288930892944, -0.036993928253650665,
- 0.054461520165205, 0.09421541541814804, -0.04227044805884361, -0.013565147295594215,
- -0.0011390229919925332, 0.057977039366960526, 0.01076540444046259, -0.01643921062350273,
- 0.031034184619784355, 0.0009986888617277145, -0.05966601148247719, 0.01419179979711771,
- 0.0772576630115509, 0.005338507704436779, 0.06902299076318741, -0.02598431706428528,
- -0.03548740595579147, -0.020126741379499435, 0.01165691390633583, -0.03268134966492653,
- -0.010978680104017258, 0.051537033170461655, 0.06057186424732208, 0.027732303366065025,
- 0.06608685106039047, 0.029414277523756027, 0.04798256605863571, 0.034025900065898895,
- 0.006607868708670139, 0.07164132595062256, -0.005450648255646229, -0.07988651841878891,
- 0.018410174176096916, 0.02088164910674095, -0.0084890341386199, 0.05007437616586685,
- -0.07706771045923233, -0.04763786867260933, -0.056605264544487, -0.0050346809439361095,
- -0.051593631505966187, -0.08179425448179245, -0.015547595918178558, 0.03667556121945381,
- -0.03909211605787277, -0.09311683475971222, -0.05510649085044861, 0.00798730831593275,
- 0.1071358397603035, -0.054974813014268875, -0.018330823630094528, -0.1028817817568779,
- 0.028271138668060303, 0.0017209085635840893, 0.03418036922812462, -0.004162189085036516,
- 0.016120515763759613, -0.031004304066300392, -0.08880944550037384, 0.05549873039126396,
- -0.07247252017259598, -0.012430781498551369, -0.03788546845316887,
- -0.006195923313498497, -0.035509273409843445, -0.007587082218378782,
- 0.02158620022237301, -0.04354225844144821, 0.04549694433808327, 0.030619140714406967,
- 0.03969742730259895, -0.02799154445528984, -0.0241091251373291, 0.05220668017864227,
- -0.027514126151800156, -0.008494721725583076, 0.12703271210193634, 0.025347242131829262,
- -0.0012364181457087398, -0.028016045689582825, -0.10199247300624847,
- -0.017165889963507652, 0.0035198882687836885, -0.06045831739902496, 0.07761163264513016,
- -0.025980878621339798, -0.03989449143409729, -0.06275490671396255, 0.022218313068151474,
- 0.06312605738639832, -0.07928436249494553, -0.06888915598392487, -0.07911043614149094,
- 0.10133510082960129, -0.03497202694416046, -0.03776848688721657, 0.006723676808178425,
- -0.08280429989099503, 0.04207603260874748, -0.0328327938914299, -0.015633070841431618,
- 0.0002995876711793244, 0.03588308021426201, -0.03352830559015274, 0.03938253968954086,
- 0.05147411301732063, -0.007166898809373379, 0.01728498935699463, 0.04278292879462242,
- 0.43853700160980225, -0.1670583039522171, 0.10568608343601227, 0.06289002299308777,
- 0.042971815913915634, 0.11075571179389954, -0.06689256429672241, 0.04442920163273811,
- 0.07745275646448135, 0.131667360663414, 0.05372324585914612, -0.049736138433218,
- -0.029632924124598503, -0.06648200005292892, 0.10835174471139908, 0.01393884513527155,
- 0.06673135608434677, -0.0557844415307045, -0.01706649921834469, -0.010431402362883091,
- -0.001376508385874331, -0.03269454464316368, 0.028543738648295403,
- 0.0009548606467433274, -0.02908700332045555, 0.010569995269179344, 0.03227139264345169,
- 0.02775447815656662, -0.03434431552886963, 0.03953711315989494, 0.01080700196325779,
- 0.09610667824745178, -0.00925217941403389, 0.04283542558550835, -0.11773224920034409,
- -0.010905152186751366, -0.13365112245082855, -0.13915613293647766, 0.09112086892127991,
- -0.05856091156601906, 0.04204334318637848, 0.057294897735118866, -0.03610127046704292,
- 0.04248741269111633, -0.0041444492526352406, -0.060708001255989075, 0.03861214965581894,
- -0.0020717247389256954, 0.04607989639043808, 0.05482228845357895, 0.15170226991176605,
- -0.04028566554188728, -0.07941807806491852, -0.07547741383314133, 0.08722473680973053,
- 0.09731178730726242, -0.04771384969353676, 0.0018266983097419143, 0.033558834344148636,
- -0.051021840423345566, -0.010772445239126682, -0.04568369686603546,
- -0.08603158593177795, -0.01005791500210762, -0.01899629272520542, 0.07961985468864441,
- 0.0102930823341012, -0.023635996505618095, -0.1294441968202591, -0.010876131244003773,
- -0.006131182890385389, -0.0034711731132119894, 0.12364865839481354,
- -0.07334045320749283, 0.06534451246261597, -0.006515774410218, 0.022969640791416168,
- 0.019147183746099472, -0.047451309859752655, 0.03911738470196724, -0.013560246676206589,
- 0.03680802881717682, 0.09559361636638641, 0.033010873943567276, -0.04699460417032242,
- 0.05936639383435249, -0.09932135790586472, 0.05747663974761963, 0.011601923033595085,
- -0.04206846281886101, 0.06429608911275864, -0.03885192051529884, 0.03951023891568184,
- 0.012739752419292927, -0.025172339752316475, 0.01615317165851593, -0.020662251859903336,
- -0.05825144797563553, -0.0756758451461792, -0.08675331622362137, -0.036438144743442535,
- -0.0866643562912941, 0.017372319474816322, -0.16105523705482483, 0.00034955277806147933,
- -0.08741853386163712, 0.040050603449344635, 0.044909171760082245, 0.04854128137230873,
- 0.03445164114236832, -0.1096179336309433, -0.028082162141799927, -0.023151466622948647,
- 0.04523063823580742, 0.004773142281919718, -0.05742157623171806, 0.07344654947519302,
- 0.092742919921875, 0.06061433255672455, -0.046539414674043655, 0.010993546806275845,
- -0.04942939803004265, 0.10710815340280533, -0.1340644210577011, -0.43673497438430786,
- 0.08929909020662308, -0.0011628333013504744, 0.04913663864135742, 0.056691598147153854,
- -0.06739404052495956, 0.04015391692519188, -0.02662144973874092, 0.004268912598490715,
- 0.07491827011108398, -0.04608744755387306, 0.02655891887843609, 0.031991489231586456,
- -0.002837827894836664, -0.003530814778059721, -0.08406645804643631,
- -0.03691020980477333, -0.0015024244785308838, -0.0011749904369935393,
- -0.08886611461639404, -0.08314793556928635, 0.01548866368830204, 0.009373866952955723,
- 0.020167967304587364, -0.006964889355003834, 0.029593246057629585, -0.03980417177081108,
- -0.05482739582657814, -0.00707734189927578, 0.05268700420856476, 0.014499985612928867,
- -0.033231258392333984, -0.0015158307505771518, 0.04861902445554733,
- -0.018202032893896103, 0.12170051038265228, 0.013151482678949833, 0.04206822067499161,
- -0.05443868041038513, 0.05674070492386818, 0.03479146212339401, 0.18683141469955444,
- -0.01220320537686348, 0.060807645320892334, -0.02397274598479271, 0.10202303528785706,
- 0.040558766573667526, 0.013728844933211803, -0.021783476695418358, 0.03498980030417442,
- -0.00039897733950056136, -0.011216041631996632, 0.06560146063566208,
- -0.07596959173679352, -0.01386276911944151, -0.03682982176542282, -0.009404605254530907,
- -0.022512581199407578, 0.020884746685624123, 0.15862904489040375, 0.043076254427433014,
- 0.020457526668906212, 0.05819261446595192, -0.06493047624826431, 0.04967551678419113,
- -0.0421893373131752, -0.09647664427757263, -0.005318637937307358, -0.040579888969659805,
- 0.005159286316484213, -0.009638183750212193, -0.15418624877929688, -0.03237975016236305,
- -0.010445560328662395, -0.007301435340195894, 0.042696453630924225,
- -0.025736967101693153, -0.006831485778093338, -0.035526517778635025,
- 0.14034314453601837, 0.05782097578048706, -0.004659397527575493, 0.07028519362211227,
- 0.06347411125898361, 0.05005533620715141, -0.011053171008825302, -0.0713299885392189,
- -0.08799602836370468, 0.00960712879896164, 0.13988852500915527, -0.07533729821443558,
- 0.09132186323404312, 0.03379078954458237, -0.06675887107849121, -0.06752244383096695,
- 0.039961766451597214, 0.004999684169888496, 0.009189248085021973, -0.4412447512149811,
- 0.002306021051481366, 0.11114123463630676, 0.014306988567113876, 0.017085567116737366,
- 0.08605314046144485, 0.011637536808848381, -0.04282855615019798, -0.03141046315431595,
- -0.07272077351808548, 0.1935528963804245, -0.011830121278762817, 0.06357961893081665,
- -0.13560806214809418, 0.09767764806747437, 0.09222721308469772, 0.002054134150967002,
- -0.01362545695155859, 0.049272436648607254, -0.24603545665740967, -0.03606012091040611,
- -0.02613925002515316, 0.15796861052513123, 0.058653008192777634, -0.016553400084376335,
- 0.05133144557476044, -0.08396414667367935, 0.027394387871026993, 0.07423064857721329,
- 0.007347161881625652, 0.05902894213795662, -0.002863621339201927, 0.009474784135818481,
- 0.11066576838493347, 0.14983883500099182, 0.062181904911994934, -0.0034359488636255264,
- 11.945059776306152, 0.05313660576939583, 0.09806444495916367, -0.09228699654340744,
- 0.016375930979847908, -0.026450473815202713, 0.02635212056338787, -0.07748405635356903,
- 0.09329521656036377, 0.09137260168790817, 0.02048415318131447, -0.0533810555934906,
- 0.026068657636642456, -0.07749294489622116, 0.009538858197629452, -0.05708955228328705,
- -0.07570742815732956, -0.04056311771273613, 0.05597839131951332, -0.03692704066634178,
- -0.00158402556553483, 0.0774332657456398, 0.06418349593877792, 0.042342543601989746,
- -0.07209853827953339, 0.018148934468626976, 0.011219105683267117, -0.0408572293817997,
- -0.046499814838171005, -0.023916220292448997, 0.0034491303376853466,
- 0.03749668970704079, 0.03354555368423462, 0.03961688652634621, 0.004687359556555748,
- 0.05821404978632927, 0.03151079639792442, 0.023117108270525932, 0.0031001607421785593,
- 0.08592917025089264, 0.0320415161550045, 0.036566585302352905, 0.003816659329459071,
- 0.029298430308699608, 0.05778093636035919, 0.07375588268041611, 0.010415344499051571,
- 0.12041109055280685, 0.032882265746593475, 0.07307665795087814, 0.11190308630466461,
- -0.06443686783313751, 0.10612965375185013, -0.003122227266430855, 0.05012756958603859,
- 0.08294239640235901, -0.002724904101341963, -0.03402449190616608, 0.0583045668900013,
- 0.07588264346122742, -0.005617315415292978, 0.09197373688220978, 0.008691980503499508,
- 0.0919138714671135, -0.05844511464238167, 0.07100273668766022, 0.054294269531965256,
- 0.07934797555208206, -0.10134944319725037, -0.047067828476428986, 0.015341742895543575,
- -0.1140521913766861, -0.04413531348109245, 0.03291364759206772, 0.11281776428222656,
- -0.014416895806789398, 0.05744031444191933, -0.0342724584043026, 0.03406244143843651,
- -0.053397659212350845, -0.009718176908791065, 0.08662878721952438, -0.02065262198448181,
- -0.017602289095520973, 0.05227716267108917, 0.028225215151906013, 0.08149870485067368,
- 0.07655750960111618, 0.01621348038315773, -0.12024704366922379, -0.1320222020149231,
- 0.1074766218662262, -0.057689517736434937, -0.05121307820081711, -0.0011889925226569176,
- -0.057735834270715714, 0.07041948288679123, -0.15096063911914825, 0.05985267460346222,
- 0.12387674301862717, -0.06913847476243973, -0.04024741053581238, -0.021856391802430153,
- 0.08477018028497696, -0.04129866883158684, 0.03561113774776459, -0.022072890773415565,
- 0.012525786645710468, 0.022390970960259438, 0.03439458832144737, -0.022899160161614418,
- 0.04137367010116577, 0.03980941325426102, -0.04241180792450905, 0.004102894105017185,
- 0.0686846673488617, -0.06977923959493637, -0.052331048995256424, 0.07426735758781433,
- 0.010755093768239021, -0.09969279915094376, -0.035102006047964096,
- -0.050633832812309265, -0.041205283254384995, -0.004957772325724363,
- -0.026487726718187332, 0.03992189094424248, 0.03257794678211212, -0.08219549059867859,
- -0.018324192613363266, 0.0006748007144778967, 0.06950565427541733, 0.06789389997720718,
- 0.019765403121709824, 0.08273033052682877, -0.05786525458097458, -0.06252681463956833,
- 0.06411474943161011, 0.04063509404659271, 0.09923528879880905, -0.04763592779636383,
- -0.04566582292318344, -0.07438631355762482, -0.08120386302471161, 0.025590986013412476,
- 0.0819360539317131, 0.02821565978229046, 0.05169953405857086, 0.009676636196672916,
- -0.03479919955134392, -0.027490148320794106, 0.10763124376535416, 0.0003319716197438538,
- 0.006740611977875233, 0.021360574290156364, -0.08172179758548737, -0.04049353301525116,
- 0.09394321590662003, -0.048477254807949066, -0.031994305551052094, 0.004218976944684982,
- 0.050712037831544876, 0.0896025002002716, 0.07404351979494095, 0.007006821688264608,
- 0.05557679757475853, 0.015728704631328583, -0.0069417813792824745, 0.013651229441165924,
- -0.060273490846157074, 0.014650559984147549, -0.04711758345365524, -0.05957426130771637,
- -0.05107567459344864, 0.06590110808610916, 0.05760212615132332, -0.015074305236339569,
- -0.09254036843776703, 0.015437173657119274, -0.04877322167158127
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 98,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 112,
- "similarity": 0.9984290599822998
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 207,
- "similarity": 0.9982847571372986
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 74,
- "similarity": 0.9980003833770752
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Mihir Zaveri"],
- "epoch_date_downloaded": 1620086400,
- "epoch_date_modified": 1620086400,
- "epoch_date_submitted": 1620086400,
- "flag": null,
- "report_number": 1401,
- "source_domain": "nytimes.com",
- "submitters": ["Roman Lutz"],
- "title": "N.Y.P.D. Robot Dog’s Run Is Cut Short After Fierce Backlash",
- "url": "https://www.nytimes.com/2021/04/28/nyregion/nypd-robot-dog-backlash.html"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "university-of-wisconsin-milwaukee",
- "name": "University of Wisconsin–Milwaukee"
- },
- {
- "__typename": "Entity",
- "entity_id": "university-of-massachusetts-amherst",
- "name": "University of Massachusetts Amherst"
- },
- {
- "__typename": "Entity",
- "entity_id": "university-of-houston",
- "name": "University of Houston"
- },
- {
- "__typename": "Entity",
- "entity_id": "texas-aandm-university",
- "name": "Texas A\u0026M University"
- },
- {
- "__typename": "Entity",
- "entity_id": "more-than-500-colleges",
- "name": "more than 500 colleges"
- },
- {
- "__typename": "Entity",
- "entity_id": "georgia-state-university",
- "name": "Georgia State University"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "eab",
- "name": "EAB"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "latinx-college-students",
- "name": "Latinx college students"
- },
- {
- "__typename": "Entity",
- "entity_id": "indigenous-students",
- "name": "indigenous students"
- },
- {
- "__typename": "Entity",
- "entity_id": "black-college-students",
- "name": "Black college students"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1402],
- "vector": [
- -0.035440944135189056, 0.06343165040016174, -0.010270217433571815, -0.051268070936203,
- 0.06491643190383911, -0.029274139553308487, 0.018273616209626198, 0.10389075428247452,
- 0.07664214819669724, -0.17413631081581116, 0.03612871840596199, 0.02334631234407425,
- 0.007990982383489609, -0.11445720493793488, -0.007614964619278908, -0.12417886406183243,
- -0.11583811789751053, -0.052963223308324814, 0.02215244062244892, -0.18417178094387054,
- -0.07386565953493118, -0.012219301424920559, -0.04987937957048416, 0.07701390236616135,
- -0.026413554325699806, 0.11832547187805176, 0.1156969964504242, 0.08655251562595367,
- -0.06954677402973175, 0.08386892825365067, -0.03834204375743866, -0.10699582099914551,
- 0.13742588460445404, 0.03817121312022209, -0.012447035871446133, 0.15125948190689087,
- -0.04114171490073204, -0.024474946781992912, 0.07779808342456818, -0.01532108522951603,
- 0.04484173655509949, 0.3662956953048706, -0.00362680247053504, 0.006417122203856707,
- -0.02161313034594059, -0.08742547035217285, -0.008949044160544872, 0.052510958164930344,
- 0.03690798208117485, 0.02943538688123226, -0.03918229788541794, 0.06773427128791809,
- -0.02199743129312992, 0.05468665063381195, -0.1394539773464203, 0.07616903632879257,
- 0.06330443918704987, -0.02432250790297985, 0.00771118700504303, -0.08908669650554657,
- -0.0901106595993042, -0.26297858357429504, -0.0021344004198908806, -0.11557680368423462,
- 0.10861103981733322, -0.07605002820491791, -0.02522212266921997, 0.06396784633398056,
- 0.04401889070868492, 0.06972506642341614, 0.014616698957979679, -0.014059345237910748,
- -0.0932752937078476, 0.02225605398416519, 0.007993889972567558, -0.06004542484879494,
- 0.0015050133224576712, 0.1079942137002945, -0.06888473778963089, 0.04288166016340256,
- 0.08084028959274292, -0.06589718163013458, 0.4266330897808075, -0.00796864740550518,
- 0.023914100602269173, -0.006735673174262047, 0.10710268467664719, 0.06587425619363785,
- 0.033473722636699677, 0.044648122042417526, -0.03361186757683754, 0.05191829055547714,
- -0.061298053711652756, -0.06499885022640228, 0.10162312537431717, 0.056559789925813675,
- 0.005516397766768932, -0.02551298215985298, -0.014447681605815887, -0.06264781206846237,
- -0.010595420375466347, -0.011806568130850792, 0.07379550486803055, 0.09783666580915451,
- -0.0763295516371727, 0.029964152723550797, 0.10275426506996155, -0.04504643380641937,
- -0.014041543006896973, -0.05169428884983063, -0.005826231092214584,
- -0.07860291004180908, 0.06099455803632736, -0.03157235309481621, 0.020365659147500992,
- -0.11865212768316269, 0.03976832330226898, 0.04719330742955208, 0.11035894602537155,
- 0.021730372682213783, 0.0018914132378995419, 0.050443872809410095, 0.016116997227072716,
- -0.06177210435271263, -0.09412573277950287, -0.008349285461008549, -0.06388451159000397,
- -0.04074854031205177, 0.03276508301496506, 0.10836497694253922, -0.07814253121614456,
- -0.21124784648418427, 0.02939436212182045, 0.07854798436164856, -0.09810072928667068,
- -0.04825630038976669, -0.05160824581980705, -0.0007190447649918497, 0.06640569865703583,
- -0.034872401505708694, 0.08109293133020401, 0.03294644504785538, 0.018906734883785248,
- 0.04850978031754494, 0.047200147062540054, 0.09865005314350128, -0.05462093651294708,
- -0.008415398187935352, -0.0044118547812104225, -0.06805099546909332,
- 0.17514678835868835, -0.16792051494121552, -0.0446268767118454, -0.044101111590862274,
- -0.003444427391514182, 0.7722381949424744, 0.17960086464881897, 0.17906442284584045,
- -0.01094006560742855, -0.06918928772211075, 0.15612901747226715, 0.019239606335759163,
- 0.055718809366226196, -0.12256554514169693, -0.023397594690322876, 0.026111271232366562,
- -0.10163693875074387, -0.07168877124786377, -0.004368006717413664, 0.019994119182229042,
- 0.10797487944364548, 0.037404511123895645, 0.0968070849776268, 0.06545598059892654,
- -0.10887308418750763, -0.05097520351409912, 0.08005556464195251, 0.05581222102046013,
- -0.12217279523611069, -0.01753753237426281, 0.045154791325330734, 0.07129358500242233,
- -0.10964135825634003, 0.016789086163043976, -0.10168211907148361, 0.029594656080007553,
- 0.015450570732355118, 0.012747052125632763, -0.053760167211294174, 0.0754101350903511,
- -0.006086132489144802, 0.09680125117301941, -0.027750546112656593, -0.16623520851135254,
- -0.018430452793836594, 0.06381621956825256, -0.057008642703294754,
- -0.051054663956165314, 0.05895089730620384, -0.11527501791715622, 0.03220111504197121,
- 0.016348104923963547, 0.19566862285137177, -0.15446317195892334, -0.02462656795978546,
- -0.04307207092642784, -0.04070749878883362, 0.007590601686388254, 0.02738504856824875,
- -0.0386030375957489, -0.044848740100860596, 0.09999148547649384, 0.072540782392025,
- 0.10510574281215668, 0.11075668781995773, -0.05091405287384987, 0.05656715855002403,
- 0.06402380764484406, 0.03264012932777405, -0.0571124330163002, 0.06174623221158981,
- 0.054549213498830795, -0.09142649173736572, -0.057140860706567764, 0.03470253199338913,
- 0.0762840062379837, 0.03416372090578079, 0.03131400793790817, 0.055257562547922134,
- -0.005349142011255026, -0.09009331464767456, 0.047013185918331146, 0.08877412974834442,
- 0.04722064733505249, 0.08467327058315277, -0.026237042620778084, -0.009591196663677692,
- -0.03946351259946823, -0.03087039664387703, -0.045358557254076004, -0.0371740348637104,
- 0.08738286793231964, 0.15501926839351654, 0.08248001337051392, 0.008322526700794697,
- 0.049082200974226, 0.11759146302938461, -0.033086080104112625, 0.06646544486284256,
- 0.09124144166707993, -0.035301968455314636, -0.05654316395521164, 0.007097242865711451,
- -0.005740615539252758, -0.013958420604467392, -0.05629470571875572,
- -0.040706805884838104, -0.05719207227230072, -0.11115927994251251, -0.05481730401515961,
- -0.11943807452917099, -0.047646064311265945, 0.028730103746056557, 0.03611750528216362,
- -0.06788775324821472, -0.10778942704200745, -0.12021680176258087, 0.020330945029854774,
- 0.11441424489021301, 0.0020405123941600323, 0.006637363228946924, -0.152262344956398,
- -0.020518707111477852, 0.002204504329711199, 0.05164429917931557, -0.04325727000832558,
- -0.013406713493168354, 0.03989065811038017, -0.08564608544111252, 0.011178254149854183,
- -0.009313659742474556, -0.0384671613574028, -0.06268835812807083, -0.08042048662900925,
- -0.051852501928806305, -0.03488067165017128, 0.04494381695985794, -0.029016997665166855,
- 0.07097779959440231, 0.023614266887307167, 0.048505064100027084, -0.040468741208314896,
- -0.05805223807692528, 0.09519726037979126, -0.044488683342933655, -0.04273282364010811,
- 0.13127534091472626, -0.03380057215690613, 0.02739407867193222, 0.05003170669078827,
- -0.049618225544691086, -0.06073686107993126, -0.0020729410462081432,
- -0.04453996196389198, 0.0224407147616148, -0.016776202246546745, -0.004072377923876047,
- -0.011166059412062168, -0.04765627905726433, 0.07694435119628906, -0.014284768141806126,
- -0.1423194855451584, -0.05551627278327942, 0.1345483958721161, -0.01777157187461853,
- 0.004634545650333166, -0.009829717688262463, -0.09135466068983078, 0.09295648336410522,
- 0.052376534789800644, 0.06040550768375397, 0.00733932014554739, 0.03113093599677086,
- -0.043774042278528214, 0.011634388007223606, 0.07776674628257751, -0.042215585708618164,
- -0.0037147761322557926, 0.10348430275917053, 0.48972615599632263, -0.10546628385782242,
- 0.044985685497522354, 0.11956962198019028, 0.023036884143948555, 0.0018674286548048258,
- -0.04073970392346382, 0.08500390499830246, 0.09794243425130844, 0.16145168244838715,
- 0.22664476931095123, -0.09086877107620239, -0.027310097590088844, -0.11177851259708405,
- 0.13595594465732574, -0.017024841159582138, 0.0381641760468483, -0.0398445650935173,
- -0.12177103012800217, -0.02912847138941288, 0.05736636370420456, -0.08972018957138062,
- 0.007124129682779312, -0.020794566720724106, -0.07152404636144638,
- -0.026820220053195953, -0.07942903786897659, 0.003431278048083186, -0.03569141402840614,
- 0.033770326524972916, -0.06645513325929642, 0.04225584864616394, 0.02061443403363228,
- 0.07590966671705246, -0.17170490324497223, -0.04139581695199013, -0.07442215085029602,
- -0.0988265797495842, 0.05278661474585533, -0.02716429904103279, 0.06627536565065384,
- 0.04727235436439514, -0.010950237512588501, 0.08659178018569946, 0.003844216465950012,
- -0.06729047745466232, 0.07780402898788452, 0.040968045592308044, 0.017546076327562332,
- 0.010879174806177616, 0.17773157358169556, -0.06919272989034653, 0.010465947911143303,
- -0.09462320059537888, 0.045912351459264755, 0.1177513375878334, 0.07793376594781876,
- -0.010067503899335861, 0.02711457386612892, -0.015658792108297348, 0.005548342131078243,
- -0.053318604826927185, -0.08596432209014893, 0.05952349677681923, -0.04836513474583626,
- 0.10512964427471161, 0.049725934863090515, -0.033763911575078964, -0.14348503947257996,
- -0.030995100736618042, -0.05788840726017952, 0.010544272139668465, 0.13235992193222046,
- -0.052777308970689774, 0.059879109263420105, -0.04167011007666588, -0.03091847151517868,
- 0.06280581653118134, -0.07245378941297531, 0.01750008948147297, -0.04396018013358116,
- 0.005655509885400534, 0.019368741661310196, 0.03960413858294487, 0.015476329252123833,
- 0.18639101088047028, -0.14028459787368774, 0.1100376546382904, -0.025232871994376183,
- -0.01622583717107773, 0.025122882798314095, -0.02750149555504322, 0.012000259943306446,
- 0.03918406367301941, -0.03707115724682808, 0.0012395128142088652, -0.046889010816812515,
- -0.06658416986465454, -0.048534005880355835, -0.14114437997341156,
- -0.029381627216935158, -0.10966025292873383, 0.0011434088228270411,
- -0.13706932961940765, 0.04601440951228142, -0.03906020149588585, -0.0393214151263237,
- -0.07022590190172195, 0.0185860525816679, 0.02553555928170681, -0.16686436533927917,
- 0.03139011561870575, -0.014097907580435276, 0.10266318172216415, -0.0893825814127922,
- -0.05770684406161308, -0.005381317809224129, 0.057839248329401016, 0.047770895063877106,
- -0.01192502025514841, -0.03249495476484299, -0.11589103937149048, 0.034365490078926086,
- -0.13178621232509613, -0.2039353996515274, 0.10232489556074142, 0.03249482810497284,
- 0.057534109801054, -0.04380037635564804, -0.06708266586065292, 0.1000756323337555,
- 0.03781620413064957, -0.04691295325756073, 0.12202564626932144, -0.05693089962005615,
- 0.03798976168036461, -0.0345308892428875, -0.08769899606704712, -0.06191078945994377,
- -0.009350353851914406, -0.04692378267645836, 0.022717610001564026,
- -0.009582672268152237, -0.09209006279706955, -0.10393869131803513, 0.06899884343147278,
- -0.01809757947921753, -0.00033995351986959577, 0.05183729529380798, 0.08729944378137589,
- 0.007156935054808855, -0.01420221384614706, 0.023162145167589188, 0.04145554080605507,
- 0.04308909550309181, -0.10738804191350937, 0.030006686225533485, 0.08579126745462418,
- 0.025622427463531494, 0.07613387703895569, 0.06514519453048706, 0.07795177400112152,
- -0.0658857524394989, 0.1183212473988533, 0.05211427062749863, 0.1810004860162735,
- -0.009732012636959553, -0.07681738585233688, 0.0935898870229721, 0.1581774652004242,
- 0.07735924422740936, 0.013654548674821854, -0.01892445795238018, -0.03152285888791084,
- 0.0014366889372467995, 0.01967734843492508, 0.15427659451961517, -0.09518065303564072,
- 0.0016156655037775636, -0.03645896166563034, -0.01484799012541771,
- -0.008259388618171215, -0.07027832418680191, 0.18270862102508545, 0.01924527995288372,
- 0.01405936200171709, 0.05986151471734047, -0.04029575735330582, 0.02701353281736374,
- -0.06574961543083191, -0.14173124730587006, -0.011874955147504807, -0.01018069963902235,
- 0.0333385169506073, -0.040739551186561584, -0.13730765879154205, 0.04736502096056938,
- -0.022357633337378502, 0.0350319929420948, 0.15101352334022522, -0.08047951757907867,
- 0.04312041029334068, -0.03873468190431595, 0.13804544508457184, 0.0769614577293396,
- -0.020776817575097084, 0.03452646732330322, 0.11900649964809418, -0.01079726405441761,
- 0.08421538025140762, 0.02531810849905014, -0.10363638401031494, -0.008228288032114506,
- 0.19102847576141357, -0.03401261940598488, 0.11213625967502594, 0.058686576783657074,
- -0.03874734416604042, -0.11869470775127411, 0.024140482768416405, -0.03275761380791664,
- 0.01588396728038788, -0.34772494435310364, -0.06590365618467331, 0.09963293373584747,
- 0.008173652924597263, 0.044016335159540176, 0.07606597989797592, 0.01593657210469246,
- -0.07147368788719177, -0.05653286725282669, -0.1565498262643814, 0.15908204019069672,
- 0.03518148139119148, 0.03521259129047394, -0.10601286590099335, 0.010134197771549225,
- 0.10881306976079941, -0.005559240002185106, 0.02625405602157116, 0.10977619886398315,
- -0.27479368448257446, -0.016266077756881714, 0.0017827717820182443, 0.11555201560258865,
- -0.009426490403711796, 0.03877309337258339, 0.09090760350227356, -0.02651730552315712,
- 0.029763462021946907, 0.05186454579234123, -0.07275138795375824, 0.02956037037074566,
- -0.034859709441661835, 0.00836721621453762, 0.10462294518947601, 0.13198710978031158,
- -0.0041174087673425674, -0.038163524121046066, 12.23267936706543, 0.08901260048151016,
- 0.06697726994752884, -0.14965291321277618, -0.035537783056497574, -0.025766270235180855,
- -0.017902925610542297, -0.18627771735191345, 0.07143766433000565, 0.16848328709602356,
- -0.055607832968235016, -0.10739194601774216, -0.02917102538049221, -0.12315276265144348,
- 0.026855286210775375, -0.051921628415584564, -0.1221713051199913, -0.03015161119401455,
- 0.05008320137858391, -0.029603756964206696, -0.05587327852845192, -0.05898536369204521,
- 0.06477959454059601, -0.009441989473998547, -0.09942574799060822, -0.02141686901450157,
- 0.04815360903739929, -0.03159355744719505, 0.017229707911610603, 0.01920812763273716,
- 0.021735195070505142, 0.021767424419522285, 0.05769020691514015, -0.0154121033847332,
- 0.039974395185709, 0.09403394162654877, 0.0917462408542633, 0.03333909064531326,
- 0.06282161176204681, 0.10399409383535385, -0.0011876154458150268, 0.08496677130460739,
- 0.055516161024570465, 0.06712982803583145, 0.06133988872170448, 0.07749397307634354,
- 0.021495303139090538, 0.15102146565914154, 0.019031956791877747, 0.08140415698289871,
- 0.12078947573900223, 0.03280757740139961, 0.13694079220294952, 0.02330072969198227,
- 0.003341524861752987, 0.051909253001213074, 0.015425174497067928, -0.09028496593236923,
- 0.0713946744799614, 0.0075247809290885925, -0.07054084539413452, 0.14083996415138245,
- 0.025165555998682976, 0.13001631200313568, 0.09560272097587585, 0.04402534291148186,
- 0.046854499727487564, 0.06955225020647049, -0.20137274265289307, -0.08987390995025635,
- 0.0015401748241856694, -0.11454850435256958, -0.08344379812479019, 0.18433277308940887,
- 0.0913371592760086, -0.02423696592450142, 0.001082129660062492, 0.0016992364544421434,
- 0.032498832792043686, -0.05913030728697777, 0.005009222310036421, 0.08243293315172195,
- 0.013029951602220535, 0.002708971034735441, 0.0721697136759758, 0.0010211141780018806,
- 0.04014631360769272, 0.1222630962729454, -0.02790336310863495, -0.09865804016590118,
- -0.07595860213041306, 0.01373120304197073, -0.014505657367408276, -0.0834982693195343,
- 0.03888961672782898, -0.11248836666345596, 0.0432620532810688, -0.19625823199748993,
- 0.0932258889079094, 0.15548142790794373, -0.10591666400432587, -0.07490476220846176,
- -0.06248963251709938, 0.07746035605669022, 0.07436896860599518, 0.05359620973467827,
- -0.05093513801693916, 0.003353204345330596, 0.04332897067070007, 0.0706518366932869,
- -0.025408759713172913, 0.11500991135835648, 0.08050432056188583, -0.05467507988214493,
- -0.0196163859218359, 0.10024338960647583, -0.06987068057060242, -0.0112220523878932,
- 0.059923604130744934, 0.05236943066120148, -0.04914397746324539, -0.07546871900558472,
- -0.01652357541024685, -0.08186262100934982, -0.02868872508406639, -0.07151996344327927,
- 0.041162826120853424, 0.015647470951080322, -0.09704787284135818, -0.028550276532769203,
- 0.08891811221837997, 0.0942428857088089, 0.08590061217546463, -0.01916908472776413,
- 0.06673739105463028, -0.07398542761802673, -0.0743386447429657, 0.03611338511109352,
- -0.035520873963832855, 0.049074314534664154, -0.061327580362558365,
- -0.05510468780994415, -0.07547328621149063, -0.11793682724237442, 0.04555576667189598,
- 0.1177130937576294, 0.012452490627765656, -0.0229084100574255, 0.027654072269797325,
- -0.07302523404359818, -0.0789489671587944, 0.08806941658258438, 0.04130193218588829,
- -0.04267413914203644, 0.04798652231693268, -0.05064818635582924, -0.10447446256875992,
- 0.12599124014377594, -0.029079949483275414, 0.0017917093355208635, 0.08548817038536072,
- -0.06299874931573868, 0.12227112054824829, 0.12930507957935333, 0.043531619012355804,
- 0.08377470821142197, 0.05444621667265892, -0.003178009996190667, 0.03654865920543671,
- -0.022428911179304123, 0.012479804456233978, -0.06514358520507812, 0.015304948203265667,
- -0.09860848635435104, 0.042351480573415756, 0.12551741302013397, 0.01252724975347519,
- -0.0992635190486908, 0.0027158299926668406, -0.07393947243690491
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 99,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 40,
- "similarity": 0.9977144002914429
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 11,
- "similarity": 0.9975910782814026
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 124,
- "similarity": 0.9975664615631104
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Todd Feathers"],
- "epoch_date_downloaded": 1620086400,
- "epoch_date_modified": 1620086400,
- "epoch_date_submitted": 1620086400,
- "flag": null,
- "report_number": 1402,
- "source_domain": "themarkup.org",
- "submitters": ["Roman Lutz"],
- "title": "Major Universities Are Using Race as a “High Impact Predictor” of Student Success",
- "url": "https://themarkup.org/news/2021/03/02/major-universities-are-using-race-as-a-high-impact-predictor-of-student-success"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "french-welfare-offices",
- "name": "French Welfare Offices"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "unknown",
- "name": "Unknown"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "lucie-inland",
- "name": "Lucie Inland"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1403],
- "vector": [
- -0.08468913286924362, 0.17613239586353302, 0.01684308424592018, -0.06220506876707077,
- 0.07799164950847626, -0.06830965727567673, 0.029887039214372635, 0.0878022313117981,
- 0.01676766760647297, -0.1343534141778946, -0.0613626204431057, 0.0171036496758461,
- 0.04476267471909523, -0.07571986317634583, 0.020400069653987885, -0.08278337121009827,
- -0.16466858983039856, -0.0026693663094192743, 0.007228204980492592,
- -0.06319720298051834, -0.059461403638124466, 0.014567136764526367, 0.020051660016179085,
- 0.13154056668281555, -0.0647631362080574, 0.10519270598888397, 0.192682683467865,
- 0.09107808023691177, -0.08321034163236618, 0.1270129233598709, -0.040658507496118546,
- -0.10442055761814117, 0.1784018725156784, 0.058719176799058914, 0.0065365564078092575,
- 0.09836071729660034, -0.05218866840004921, -0.04598431661725044, 0.048003945499658585,
- 0.016543444246053696, 0.09347724169492722, 0.2948158085346222, -0.010588620789349079,
- 0.004925040993839502, -0.02424246072769165, -0.12064363062381744, 0.03619812801480293,
- 0.04241329804062843, 0.047599028795957565, 0.06609220057725906, -0.007721711415797472,
- 0.07415635883808136, -0.05006208270788193, 0.09893950819969177, -0.114064522087574,
- 0.0705794170498848, 0.042101114988327026, -0.021873710677027702, 0.07817419618368149,
- -0.09394796937704086, -0.09948911517858505, -0.2756487727165222, -0.07930148392915726,
- -0.08366189152002335, 0.11943764984607697, -0.059958696365356445, -0.0393744632601738,
- -0.004840518347918987, 0.00266609201207757, 0.11280114948749542, 0.05725652351975441,
- 0.04333830252289772, -0.05339490622282028, 0.03568023070693016, 0.0117664048448205,
- -0.0705709233880043, -0.12836994230747223, 0.11494601517915726, -0.10882367193698883,
- -0.012287525460124016, 0.08703191578388214, -0.10788661241531372, 0.5205390453338623,
- -0.00021078047575429082, -0.044050876051187515, 0.04192154482007027,
- 0.07767976075410843, 0.016078293323516846, 0.07256365567445755, 0.05960187688469887,
- -0.06452260166406631, -0.04222720488905907, -0.14433816075325012, 0.004790186882019043,
- 0.10002166032791138, -0.0023862235248088837, -0.007314953021705151, 0.14257340133190155,
- -0.0342823751270771, -0.08592721074819565, 0.012392964214086533, -0.04783644154667854,
- 0.11958286166191101, 0.10548874735832214, -0.07703772932291031, -0.029149523004889488,
- 0.12550193071365356, -0.09309518337249756, 0.08750108629465103, -0.014777914620935917,
- -0.0026239517610520124, -0.06262584775686264, 0.041131649166345596,
- -0.018969126045703888, -0.0047220513224601746, -0.05308421701192856,
- 0.04734246805310249, 0.008625039830803871, 0.025663407519459724, 0.08184030652046204,
- -0.059723224490880966, 0.06058410927653313, 0.0029346293304115534, -0.0846698209643364,
- -0.08392410725355148, -0.08022894710302353, -0.09053479880094528, -0.061186518520116806,
- -0.02270841971039772, 0.0940771996974945, -0.025421351194381714, -0.2295222133398056,
- -0.03661896288394928, -0.01316850632429123, 0.009604166261851788, -0.03316789120435715,
- -0.014836050570011139, -0.06845854222774506, 0.07471402734518051, -0.04864226654171944,
- -0.004756671842187643, 0.07861336320638657, -0.027830293402075768, 0.062325939536094666,
- 0.23283083736896515, 0.11933806538581848, -0.07551226019859314, 0.0033688645344227552,
- 0.02365015633404255, -0.04024052992463112, 0.12308454513549805, -0.16190937161445618,
- -0.008627843111753464, -0.0043091257102787495, -0.03714054450392723, 0.7926560640335083,
- 0.1909623146057129, 0.19431500136852264, 0.012397066690027714, -0.035716570913791656,
- 0.24282406270503998, 0.030857304111123085, 0.09167846292257309, -0.09012863039970398,
- -0.07599282264709473, 0.03847144916653633, -0.18240855634212494, -0.04995786026120186,
- 0.08147639781236649, -0.018369970843195915, 0.14186425507068634, 0.00963708758354187,
- 0.07020303606987, 0.0002921095001511276, -0.11963542550802231, -0.051341407001018524,
- 0.18160974979400635, 0.04675542190670967, -0.07999029755592346, 0.008903647772967815,
- -0.002041720552369952, 0.10968578606843948, -0.07427431643009186, 0.010853222571313381,
- -0.15800157189369202, 0.038588620722293854, -0.014104480855166912, 0.03788265585899353,
- 0.03564154729247093, 0.04266536608338356, 0.09362465143203735, 0.10093226283788681,
- -0.035031095147132874, -0.13084036111831665, -0.06736201047897339, 0.12190049141645432,
- -0.05192551761865616, -0.06241842731833458, 0.030790608376264572, -0.1362389773130417,
- 0.0754334032535553, 0.10906462371349335, 0.21315689384937286, -0.1510598510503769,
- -0.05132201686501503, -0.05303385853767395, -0.05269748345017433, 0.10531959682703018,
- 0.03310413286089897, -0.08017607033252716, -0.044027671217918396, 0.07057394832372665,
- 0.09136315435171127, 0.12776020169258118, 0.10014025866985321, -0.06705504655838013,
- 0.03108413703739643, 0.13510173559188843, 0.06436682492494583, 0.017399871721863747,
- 0.03745869919657707, 0.07386711239814758, -0.009887906722724438, -0.08107352256774902,
- -0.023253323510289192, -0.013368540443480015, 0.0346849225461483, 0.05435463786125183,
- 0.07034516334533691, -0.07029895484447479, -0.08724649995565414, -0.012743227183818817,
- -0.011109315790235996, 0.05881639942526817, 0.1326102912425995, -0.040377505123615265,
- 0.015078158117830753, -0.06335118412971497, -0.05948780104517937, 0.01447557657957077,
- 0.051771629601716995, 0.11624283343553543, 0.09260481595993042, 0.10196442902088165,
- -0.0007151777972467244, 0.04298390820622444, 0.06417691707611084, -0.009221379645168781,
- -0.0001811539550544694, 0.0622234120965004, -0.04242129251360893, -0.0799306333065033,
- -0.059269990772008896, 0.01185858715325594, 0.049836162477731705, -0.01833622343838215,
- -0.10745342820882797, -0.03270353749394417, -0.10687665641307831, -0.06661710143089294,
- -0.0975249633193016, 0.004420039709657431, -0.006305214017629623, 0.014178548008203506,
- -0.06360390782356262, -0.06654633581638336, -0.11180299520492554, -0.023976556956768036,
- 0.18327540159225464, 0.03891101852059364, -0.0005229188245721161, -0.16909967362880707,
- 0.0026144529692828655, -0.01625313237309456, 0.05053151026368141, -0.09623295813798904,
- 0.013489272445440292, 0.054169200360774994, -0.09311600029468536, 0.024491773918271065,
- -0.0410597138106823, -0.05672842636704445, -0.13252457976341248, -0.05814773216843605,
- -0.030260717496275902, -0.04815640300512314, -0.029681893065571785,
- -0.0024983161129057407, -0.012109346687793732, 0.014242962934076786, 0.1265234500169754,
- -0.055740877985954285, -0.036014266312122345, 0.07366009801626205,
- 0.0014246522914618254, 0.04479333385825157, 0.1745499223470688, -0.02265983261168003,
- 0.0038604724686592817, -0.012174784205853939, -0.03954816609621048,
- -0.04063890129327774, -0.012034915387630463, -0.03835829719901085, -0.05263637378811836,
- -0.029697006568312645, -0.01675308682024479, -0.024684274569153786,
- -0.040831856429576874, 0.0204769317060709, 0.02980995923280716, -0.10077426582574844,
- -0.05975169315934181, 0.19514100253582, 0.04185813292860985, 0.037071410566568375,
- 0.08702759444713593, -0.022447189316153526, 0.04865076765418053, 0.018068067729473114,
- -0.006379907019436359, 0.017159849405288696, 0.07689816504716873, -0.06621591746807098,
- 0.056535761803388596, 0.0924951583147049, 0.0005182166351005435, 0.06308148801326752,
- 0.05957021936774254, 0.42139163613319397, -0.21378684043884277, -0.0185729768127203,
- 0.1436586081981659, 0.07282670587301254, -0.050385575741529465, -0.0982230082154274,
- 0.08902589976787567, 0.09645158052444458, 0.16781894862651825, 0.251741886138916,
- -0.05908257141709328, -0.06148071214556694, -0.13194793462753296, 0.11578316986560822,
- -0.01614517718553543, 0.06844623386859894, 0.0367233082652092, -0.14540807902812958,
- -0.07485830038785934, 0.05717436596751213, -0.082457035779953, -0.0019018014427274466,
- 0.02774043194949627, -0.10605315864086151, -0.005274967290461063, 0.06674016267061234,
- -0.012689116410911083, 0.015677856281399727, 0.07573384046554565, -0.17772051692008972,
- 0.046046748757362366, -0.008931414224207401, -0.02744392305612564, -0.12276019155979156,
- -0.023427028208971024, -0.09511115401983261, -0.08391427248716354, 0.1132422685623169,
- -0.03635506331920624, 0.08898801356554031, 0.052698101848363876, -0.1288902908563614,
- 0.05242038145661354, -0.02661084197461605, -0.05946630984544754, 0.08232209831476212,
- 0.06379012763500214, 0.02830553613603115, 0.09655340015888214, 0.16335952281951904,
- -0.07158133387565613, 0.003902983386069536, -0.05912180244922638, 0.04068151116371155,
- 0.1560845524072647, -0.006578194908797741, 0.024841448292136192, 0.019107280299067497,
- -0.00733313849195838, 0.03114531747996807, -0.11309383809566498, -0.10075271129608154,
- -0.0337873138487339, -0.0982288122177124, 0.11593614518642426, 0.05514974519610405,
- -0.01862744800746441, -0.09911513328552246, 0.02314332127571106, -0.03023497201502323,
- 0.07038990408182144, 0.05395122244954109, -0.06705816835165024, 0.04825013875961304,
- -0.07358674705028534, -0.08285938203334808, 0.06772707402706146, -0.06435219198465347,
- 0.002557560568675399, -0.13773293793201447, 0.028324754908680916, 0.060130227357149124,
- 0.0759468674659729, -0.037900857627391815, 0.09192299097776413, -0.12144479155540466,
- 0.07411365956068039, 0.0067908065393567085, -0.07723440229892731, -0.006979555357247591,
- 0.04001428559422493, 0.006482807453721762, 0.07693570852279663, -0.03973899036645889,
- 0.03348955884575844, -0.015085121616721153, -0.0410342775285244, -0.08732476830482483,
- -0.08317075669765472, -0.05403740704059601, -0.07666406780481339, -0.011821981519460678,
- -0.13721922039985657, -0.051361799240112305, -0.02286641113460064,
- -0.011185305193066597, -0.021096251904964447, 0.021278686821460724,
- 0.014096886850893497, -0.18715810775756836, -0.004757441580295563, 0.01612362265586853,
- 0.0508141927421093, -0.005111747421324253, -0.07844408601522446, -0.03220323845744133,
- 0.0874098613858223, 0.08445105701684952, 0.021618084982037544, -0.05274387076497078,
- -0.08507940173149109, 0.0868590921163559, -0.15736305713653564, -0.26214903593063354,
- 0.043821606785058975, 0.050925251096487045, 0.02926422841846943, 0.008234179578721523,
- -0.13372766971588135, 0.045363351702690125, 0.021250136196613312, -0.053145091980695724,
- 0.09443587064743042, -0.04587662220001221, 0.048088569194078445, -0.05336736887693405,
- -0.13762539625167847, -0.04130090773105621, -0.06704127788543701, -0.11384031921625137,
- 0.10306723415851593, -0.060042642056941986, -0.0960497185587883, -0.15766911208629608,
- 0.04557070508599281, -0.020675012841820717, 0.04516352340579033, -0.03125996142625809,
- 0.08039107173681259, -0.017718935385346413, -0.012111812829971313, 0.02964092046022415,
- -0.008078954182565212, 0.033059462904930115, -0.11907995492219925,
- -0.006171596702188253, 0.06861469894647598, 0.014071471057832241, 0.1039319783449173,
- 0.010937717743217945, 0.016772933304309845, -0.08336669951677322, 0.0871071070432663,
- 0.0011267811059951782, 0.17537778615951538, -0.03038925863802433, -0.06878414005041122,
- 0.011396768502891064, 0.15008315443992615, 0.09036486595869064, -0.014944800175726414,
- -0.0020712160039693117, 0.021596692502498627, 0.008474486880004406, 0.01506704743951559,
- 0.1509275585412979, -0.04709109291434288, -0.035766564309597015, -0.005490934941917658,
- 0.024222543463110924, 0.024065686389803886, -0.13925515115261078, 0.24084578454494476,
- 0.02948879450559616, -0.0069926162250339985, -0.038839440792798996,
- -0.11509309709072113, -0.04163489490747452, -0.07811065763235092, -0.08933982998132706,
- 0.03339511901140213, -0.03750777989625931, 0.05242372304201126, -0.1096644178032875,
- -0.13388419151306152, -0.045143578201532364, 0.025324344635009766,
- -0.007212222088128328, 0.13202112913131714, 0.033920448273420334, 0.07381080090999603,
- -0.005451743490993977, 0.17968100309371948, 0.09792415052652359, -0.04007280617952347,
- 0.043403275310993195, 0.1757703721523285, 0.055697567760944366, 0.025899456813931465,
- 0.013149747624993324, -0.09641170501708984, -0.0009733675397001207, 0.18375346064567566,
- -0.04083388298749924, 0.12405891716480255, 0.03527742624282837, -0.006296058185398579,
- -0.17030546069145203, 0.0694306343793869, -0.1069539338350296, 0.02567586675286293,
- -0.4103785455226898, 0.047098007053136826, 0.10594510287046432, -0.08620855212211609,
- 0.0006141344201751053, 0.09066856652498245, 0.042074158787727356, -0.03608850762248039,
- -0.06809154152870178, -0.13235346972942352, 0.19663842022418976, 0.026363225653767586,
- 0.051224227994680405, -0.1569981426000595, 0.009272358380258083, 0.08645645529031754,
- -0.05403844639658928, 0.008843549527227879, 0.07412318140268326, -0.12746581435203552,
- 0.03109211102128029, -0.035195015370845795, 0.08943889290094376, 0.01292626466602087,
- 0.07998808473348618, 0.11115287989377975, -0.06714806705713272, 0.029190538451075554,
- 0.05302741006016731, -0.052602656185626984, -0.03015439212322235, 0.047418080270290375,
- -0.0075190127827227116, 0.15573593974113464, 0.08178726583719254, -0.011212587356567383,
- -0.0534561462700367, 12.547077178955078, 0.08146288990974426, 0.13049525022506714,
- -0.1323060244321823, 0.021075287833809853, -0.046009693294763565, -0.006227830424904823,
- -0.12217429280281067, -0.0407586395740509, 0.14427898824214935, -0.03736263886094093,
- -0.09786488115787506, -0.05193743854761124, -0.14206430315971375, 0.013945571146905422,
- 0.009058884344995022, -0.09357820451259613, -0.04519052803516388, 0.018754038959741592,
- -0.06411654502153397, 0.04597301036119461, -0.030480429530143738, 0.0717865377664566,
- -0.024731794372200966, -0.07585403323173523, -0.0013983086682856083,
- 0.02584558166563511, 0.009317699819803238, -0.04455827176570892, 0.01897127367556095,
- -0.04048779234290123, -0.024291643872857094, -0.0010766832856461406,
- -0.015307086519896984, 0.08012726157903671, 0.03820483386516571, 0.04433809220790863,
- 0.04271264374256134, 0.003638969734311104, 0.09002278000116348, -0.000714129360858351,
- 0.12109989672899246, 0.11378376930952072, 0.16470298171043396, 0.029002316296100616,
- 0.07600674778223038, 0.02828909456729889, 0.1271781325340271, 0.04392203316092491,
- 0.06454810500144958, 0.18740054965019226, 0.02766815386712551, 0.1238233894109726,
- -0.0024504195898771286, 0.026297088712453842, 0.0638209879398346, -0.021719159558415413,
- -0.1061144471168518, 0.030111338943243027, 0.09838743507862091, -0.11712484806776047,
- 0.11061842739582062, 0.013652324676513672, 0.03535332903265953, 0.08937640488147736,
- 0.054540928453207016, 0.0739322379231453, 0.05776267871260643, -0.21352875232696533,
- -0.15710143744945526, -0.055593617260456085, -0.13101603090763092, -0.09478767216205597,
- 0.08637562394142151, 0.06352180242538452, -0.05708472058176994, 0.027846835553646088,
- -0.07524444162845612, -0.03493960201740265, -0.09126868844032288, -0.07372216135263443,
- 0.010052479803562164, 0.01627914421260357, 0.029056601226329803, 0.03546181321144104,
- 0.04711300507187843, 0.03662940114736557, 0.11460056900978088, -0.009913189336657524,
- -0.06655046343803406, -0.03659077361226082, 0.06628776341676712, -0.017590124160051346,
- -0.04409516602754593, 0.002322773914784193, -0.10055145621299744, 0.05914516746997833,
- -0.12493322044610977, 0.052714139223098755, 0.09691733121871948, -0.09958456456661224,
- -0.018635442480444908, -0.09219221770763397, 0.04947328567504883, 0.041067276149988174,
- 0.001086978241801262, -0.02497696317732334, 0.027732403948903084, -0.010101214982569218,
- 0.1004890725016594, -0.0400872640311718, 0.12105169892311096, 0.07835273444652557,
- -0.040119826793670654, 0.0008248152444139123, 0.05743997171521187,
- 0.0032036269549280405, -0.04325730353593826, 0.039832353591918945, 0.03317609429359436,
- -0.08662073314189911, -0.04124288633465767, -0.04242165759205818, -0.09809037297964096,
- -0.05571819469332695, -0.010858926922082901, 0.023794986307621002, 0.052092909812927246,
- -0.09612644463777542, 0.013212457299232483, 0.05730947479605675, 0.0403287373483181,
- 0.09427495300769806, -0.06974387168884277, 0.09846954792737961, -0.14479829370975494,
- -0.12875522673130035, 0.0032874534372240305, 0.045668065547943115, 0.022943325340747833,
- 0.061477936804294586, -0.05283802002668381, -0.07827678322792053, -0.13355900347232819,
- 0.027681557461619377, 0.21381086111068726, 0.10083568096160889, 0.05567712336778641,
- 0.05733640119433403, -0.11205275356769562, -0.06298860162496567, 0.1119925007224083,
- 0.10910891741514206, 0.05782175436615944, 0.04377204552292824, -0.04169239103794098,
- -0.1407260298728943, 0.12708058953285217, -0.0250453669577837, 0.04820006340742111,
- 0.054413944482803345, 0.0032340160105377436, 0.16662952303886414, 0.11459957808256149,
- 0.10220329463481903, 0.12405354529619217, 0.11949268728494644, 0.035049423575401306,
- -0.006976117845624685, -0.015490257181227207, -0.04274582117795944,
- -0.004838656168431044, -0.0701090395450592, -0.07322832942008972, 0.09104356914758682,
- 0.14413845539093018, 0.04263485595583916, -0.013568602502346039, 0.016441602259874344,
- -0.04567481204867363
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 100,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 11,
- "similarity": 0.9965410232543945
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 35,
- "similarity": 0.9962608814239502
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 40,
- "similarity": 0.9960179924964905
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Lucie Inland"],
- "epoch_date_downloaded": 1619568000,
- "epoch_date_modified": 1619654400,
- "epoch_date_submitted": 1619654400,
- "flag": null,
- "report_number": 1403,
- "source_domain": "algorithmwatch.org",
- "submitters": ["Roman Lutz"],
- "title": "How French welfare services are creating ‘robo-debt’",
- "url": "https://algorithmwatch.org/en/robo-debt-france/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "dutch-tax-authority",
- "name": "Dutch Tax Authority"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "unknown",
- "name": "Unknown"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "dutch-tax-authority",
- "name": "Dutch Tax Authority"
- },
- {
- "__typename": "Entity",
- "entity_id": "dutch-families",
- "name": "Dutch families"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1863, 1575, 1404],
- "vector": [
- -0.053376395255327225, 0.08032143115997314, 0.021021420136094093, -0.10416033118963242,
- 0.10901430249214172, -0.04757223650813103, 0.003866206156089902, 0.08440190553665161,
- 0.06067407503724098, -0.10204581171274185, 0.002491486258804798, 0.05617985501885414,
- 0.027128688991069794, -0.0829411968588829, 0.02621707320213318, -0.11119231581687927,
- -0.12131946533918381, -0.04477754235267639, -0.01234937459230423, -0.14161884784698486,
- -0.03682970628142357, 0.017118612304329872, 0.0442209430038929, 0.13388481736183167,
- -0.0597417838871479, 0.0661846324801445, 0.13911540806293488, 0.13867418467998505,
- -0.04650915786623955, 0.06927903741598129, -0.026249220594763756, -0.04813084006309509,
- 0.10878226906061172, 0.0039243851788342, 0.009785360656678677, 0.10706979036331177,
- -0.006216850597411394, -0.028141511604189873, 0.026757225394248962,
- -0.02936164103448391, 0.031152382493019104, 0.26841697096824646, -0.02412133663892746,
- 0.003410450415685773, 0.0005711247795261443, -0.013163258321583271,
- 0.021451378241181374, 0.06080273911356926, -0.003532706992700696, -0.022465059533715248,
- -0.012088440358638763, 0.0354711078107357, -0.01380064059048891, 0.03734874352812767,
- -0.10865011811256409, 0.05438569188117981, 0.04909667372703552, 0.01688234508037567,
- 0.02328389137983322, -0.07182765007019043, -0.010806175880134106, -0.2653147280216217,
- -0.040129225701093674, -0.07136402279138565, 0.054279178380966187, -0.08714921027421951,
- -0.031078046187758446, 0.010546904988586903, -0.006348362658172846, 0.08417340368032455,
- 0.0441114567220211, -0.05125659704208374, 0.031758565455675125, 0.01771841011941433,
- 0.009404986165463924, -0.039886053651571274, 0.026753945276141167, 0.19545596837997437,
- -0.09498655796051025, -0.023990781977772713, 0.11070189625024796, -0.10159888118505478,
- 0.42732253670692444, -0.0037000745069235563, 0.00894281268119812, 0.022651812061667442,
- 0.09919587522745132, 0.025982849299907684, 0.046984508633613586, 0.04790429770946503,
- -0.0376625619828701, 0.05559651181101799, -0.08999792486429214, 0.035994138568639755,
- 0.07468956708908081, 0.024691328406333923, -0.01889587752521038, 0.1109519824385643,
- -0.023035869002342224, -0.024951262399554253, 0.0062628015875816345,
- -0.043619152158498764, 0.06459424644708633, 0.09255660325288773, -0.08663203567266464,
- 0.009116925299167633, 0.11310365051031113, -0.09122072905302048, 0.06350656598806381,
- -0.05751462280750275, 0.015612728893756866, -0.019048361107707024, 0.02907806634902954,
- -0.01815231889486313, 0.00007119650399545208, -0.0797615498304367, 0.04961134120821953,
- 0.03251158446073532, 0.07107580453157425, 0.04551490768790245, -0.02475089766085148,
- 0.06884292513132095, 0.09831282496452332, -0.01829133741557598, -0.02619670331478119,
- -0.06385421752929688, -0.057405341416597366, -0.03982538729906082,
- -0.009325898252427578, 0.056950509548187256, -0.07751951366662979, -0.16803139448165894,
- -0.011343142949044704, 0.07164184004068375, -0.004388690460473299, -0.0173786673694849,
- 0.003448180854320526, -0.06663357466459274, 0.06273004412651062, -0.044909629970788956,
- -0.011702832765877247, 0.07022807747125626, 0.010872798971831799, 0.04154590889811516,
- 0.11185292154550552, 0.0538199357688427, -0.06588958948850632, -0.015404381789267063,
- 0.008130890317261219, 0.009461545385420322, 0.12656715512275696, -0.17763389647006989,
- -0.03794039413332939, 0.010338547639548779, -0.011864307336509228, 0.7089726328849792,
- 0.1379072517156601, 0.12610210478305817, -0.012145317159593105, -0.049403559416532516,
- 0.21111099421977997, 0.001131635159254074, 0.05222411826252937, -0.04194561764597893,
- -0.0730319395661354, 0.055484186857938766, -0.062054481357336044, -0.03015732951462269,
- 0.043887484818696976, -0.010696660727262497, 0.1417313516139984, 0.01532400120049715,
- 0.07408010959625244, 0.045557498931884766, -0.10698991268873215, -0.006663061678409576,
- 0.10491438955068588, -0.010571039281785488, -0.12304811924695969, -0.01861738972365856,
- 0.04295371100306511, 0.07173994183540344, -0.11450836807489395, 0.0006729941815137863,
- -0.08186737447977066, 0.03254544734954834, -0.05468536913394928, 0.021655350923538208,
- -0.01357177272439003, 0.067266546189785, 0.04552648961544037, 0.0529087595641613,
- 0.01530932355672121, -0.11884026974439621, -0.04752533510327339, 0.10630197077989578,
- -0.019908644258975983, -0.031489718705415726, 0.05366441607475281, -0.0969436839222908,
- 0.048040721565485, 0.02735315077006817, 0.17181611061096191, -0.17194949090480804,
- 0.00025233253836631775, -0.01980053074657917, -0.03671657666563988, 0.06801798194646835,
- 0.01568160392343998, -0.08514221757650375, -0.08038630336523056, 0.051144976168870926,
- 0.07763548940420151, 0.07000087201595306, 0.09651422500610352, -0.04434310272336006,
- 0.03383764624595642, 0.05533432587981224, 0.04049866273999214, -0.03348163142800331,
- 0.06173430755734444, 0.04660831764340401, -0.008642579428851604, -0.030674098059535027,
- 0.009449642151594162, 0.03799485042691231, 0.04568183422088623, 0.0312829427421093,
- 0.006842597853392363, -0.020207000896334648, -0.047941356897354126, 0.02125171385705471,
- 0.014543164521455765, 0.004707260988652706, 0.09113442897796631, -0.0722539946436882,
- -0.05766664817929268, -0.01859387755393982, -0.024539655074477196, 0.021146133542060852,
- -0.022671574726700783, 0.10802779346704483, 0.10199186205863953, 0.09788262844085693,
- 0.0045728618279099464, 0.058023273944854736, 0.03994442895054817, 0.04938163235783577,
- -0.023644564673304558, 0.0722799301147461, -0.0049974615685641766,
- -0.038319747895002365, -0.027791520580649376, -0.003921080380678177,
- 0.034854739904403687, -0.003000946482643485, -0.04096091166138649, -0.04349442198872566,
- -0.07938934117555618, -0.0567871518433094, -0.052724409848451614, -0.052259355783462524,
- 0.039185766130685806, 0.04536757245659828, -0.08297916501760483, -0.10919272154569626,
- -0.09421426802873611, -0.00808783806860447, 0.08538546413183212, -0.0060432846657931805,
- -0.03526686504483223, -0.15604126453399658, 0.0305798277258873, -0.034701086580753326,
- 0.0679018422961235, -0.02716589719057083, 0.03514865040779114, 0.038125332444906235,
- -0.050271887332201004, 0.035232122987508774, -0.02515990100800991, -0.06102489307522774,
- -0.08057863265275955, -0.057564347982406616, -0.05880381539463997,
- -0.004333638120442629, 0.05357992649078369, -0.035554878413677216, 0.035276781767606735,
- 0.02337055467069149, 0.06345439702272415, -0.01753753051161766, -0.04190073534846306,
- 0.0527469776570797, -0.030794678255915642, 0.0014935532817617059, 0.1031602993607521,
- -0.058418720960617065, 0.021592682227492332, -0.016052590683102608,
- -0.09210345894098282, -0.05472467467188835, -0.010240576229989529, -0.03684601932764053,
- 0.06146242097020149, -0.00980746652930975, 0.024621248245239258, -0.05814473703503609,
- -0.03717868775129318, 0.058035433292388916, -0.04779800772666931, -0.1014276072382927,
- -0.056871891021728516, 0.12327975034713745, 0.0227814931422472, 0.00432830723002553,
- -0.00791610311716795, -0.05013645067811012, 0.046217288821935654, 0.017981186509132385,
- -0.0015504580223932862, 0.05346733331680298, 0.06448537111282349, -0.01819915883243084,
- 0.06267823278903961, 0.05861523747444153, -0.03673653304576874, 0.004573844373226166,
- 0.07782602310180664, 0.4456808269023895, -0.1933106929063797, 0.11147334426641464,
- 0.10527771711349487, 0.02816709876060486, 0.06614283472299576, -0.057134777307510376,
- 0.07820694893598557, 0.07249199599027634, 0.1440044492483139, 0.12178721278905869,
- -0.08267667144536972, 0.010143745690584183, -0.09757697582244873, 0.08503594994544983,
- -0.006480009760707617, 0.03687155619263649, -0.01773938350379467, -0.07851054519414902,
- -0.04594429209828377, 0.028921479359269142, -0.0068449340760707855,
- -0.0030583415646106005, 0.01693080924451351, -0.07522782683372498,
- -0.0029439155478030443, -0.005096130073070526, 0.007624999154359102,
- 0.003615596564486623, 0.048293035477399826, -0.06406920403242111, 0.038369182497262955,
- 0.023130781948566437, 0.01500068698078394, -0.13681358098983765, 0.03528716042637825,
- -0.11219474673271179, -0.06366748362779617, 0.08985742926597595, 0.019420893862843513,
- 0.0683196559548378, 0.05029803514480591, -0.020652636885643005, 0.02518571726977825,
- 0.030895674601197243, -0.06562184542417526, 0.03505530580878258, 0.0642695352435112,
- 0.0566144734621048, 0.08100861310958862, 0.13820423185825348, -0.04421359300613403,
- -0.008044269867241383, -0.0667983666062355, 0.052157845348119736, 0.16526935994625092,
- -0.012062500230967999, 0.00351347285322845, -0.017694862559437752,
- -0.0011314335279166698, 0.015054269693791866, -0.07646164298057556,
- -0.08958417922258377, -0.025947755202651024, -0.024180203676223755, 0.07483264058828354,
- 0.02934114634990692, -0.025144970044493675, -0.07229694724082947, -0.046695608645677567,
- -0.07219653576612473, 0.0009851711802184582, 0.09907955676317215, -0.06265824288129807,
- -0.0018110265955328941, -0.015267763286828995, -0.014474187046289444,
- 0.03102930821478367, -0.10481250286102295, 0.00784598384052515, -0.07014230638742447,
- 0.047718506306409836, 0.08005404472351074, 0.05881320312619209, -0.06390225142240524,
- 0.09501197189092636, -0.12162470817565918, 0.07586300373077393, 0.017049381509423256,
- -0.04173177480697632, 0.02865418791770935, 0.00603790208697319, 0.013624305836856365,
- 0.06370701640844345, -0.022066766396164894, 0.037465665489435196, -0.02336713671684265,
- -0.047356978058815, -0.10527393221855164, -0.07499226182699203, -0.034386999905109406,
- -0.09246782213449478, 0.007794877048581839, -0.13326489925384521, -0.020350398495793343,
- -0.021460024639964104, -0.004157909657806158, 0.009696266613900661, 0.06032715365290642,
- 0.009525471366941929, -0.16393357515335083, -0.04572768881917, -0.0024996157735586166,
- 0.07270496338605881, -0.020181844010949135, -0.01830456405878067, 0.019369637593626976,
- 0.076315738260746, 0.05242665112018585, 0.011405915953218937, -0.01635212078690529,
- -0.054659876972436905, 0.07491356134414673, -0.1355522871017456, -0.38645032048225403,
- 0.06458508223295212, -0.03751780465245247, 0.042477335780858994, -0.011433277279138565,
- -0.058834273368120193, 0.049541328102350235, -0.013889593072235584,
- -0.033014025539159775, 0.08890226483345032, -0.05688970908522606, 0.029783407226204872,
- -0.0034124853555113077, -0.09166703373193741, -0.0343744158744812,
- -0.037144582718610764, -0.07622735947370529, 0.06559792160987854, -0.012910704128444195,
- -0.09485121816396713, -0.10094785690307617, 0.021315617486834526, 0.0039270296692848206,
- 0.004855174105614424, 0.03629886358976364, -0.014948657713830471, -0.05196622386574745,
- -0.04079776629805565, 0.04081710800528526, 0.014227263629436493, 0.016042212024331093,
- -0.0726010873913765, -0.014185193926095963, 0.06539048999547958, 0.01938130334019661,
- 0.15341459214687347, 0.024515897035598755, -0.0005161200533621013, -0.06314060091972351,
- 0.05576257035136223, 0.07516957819461823, 0.1851557046175003, 0.0028273137286305428,
- 0.015986530110239983, 0.02881520241498947, 0.14721554517745972, 0.06442702561616898,
- 0.02610107697546482, -0.03217800334095955, -0.01439292449504137, 0.007889029569923878,
- 0.0217000599950552, 0.07228425145149231, -0.06429671496152878, -0.01808992214500904,
- -0.06022943928837776, 0.02237878181040287, -0.031145771965384483,
- 0.00031829686486162245, 0.18013791739940643, 0.0406314842402935, 0.008873912505805492,
- 0.005411094054579735, -0.07221123576164246, 0.00475338427349925, -0.11176862567663193,
- -0.12090352922677994, -0.0032259311992675066, 0.01961568184196949, 0.008218047209084034,
- -0.05092022940516472, -0.13076870143413544, -0.0009580566547811031,
- -0.008952658623456955, -0.02269746921956539, 0.10564713925123215, -0.03730403259396553,
- 0.030928030610084534, -0.04712134972214699, 0.17475174367427826, 0.05402978137135506,
- 0.023967735469341278, 0.03979024663567543, 0.09519358724355698, 0.035238057374954224,
- 0.03228631615638733, -0.03819718956947327, -0.06264674663543701, -0.011441424489021301,
- 0.1576489359140396, -0.06248068809509277, 0.12685270607471466, 0.039194848388433456,
- -0.062322184443473816, -0.07733657956123352, 0.01844722591340542, -0.052947696298360825,
- 0.03781869634985924, -0.43973052501678467, -0.044837694615125656, 0.14133280515670776,
- 0.004280300810933113, 0.02539551444351673, 0.09815553575754166, 0.0007595866918563843,
- -0.07968360930681229, -0.03078807145357132, -0.11685758084058762, 0.20308847725391388,
- 0.02433541975915432, 0.06431015580892563, -0.1894012689590454, 0.03534555807709694,
- 0.09605187177658081, -0.05961804464459419, -0.023372868075966835, 0.057422224432229996,
- -0.24683858454227448, -0.0006327510927803814, -0.033252209424972534, 0.1070360615849495,
- 0.015838755294680595, 0.061563003808259964, 0.07316657155752182, -0.047990474849939346,
- 0.024150168523192406, 0.0546516589820385, -0.030645698308944702, 0.052719369530677795,
- -0.010507173836231232, -0.011680184863507748, 0.10516489297151566, 0.05390844866633415,
- -0.010520465672016144, -0.051865722984075546, 12.009495735168457, 0.07595301419496536,
- 0.0902644470334053, -0.08495684713125229, -0.036107081919908524, -0.02282279171049595,
- 0.011589578352868557, -0.12877097725868225, -0.0008208197541534901, 0.12727487087249756,
- -0.04769469425082207, -0.05681973695755005, -0.040567830204963684, -0.1258717179298401,
- 0.013957961462438107, -0.03925992175936699, -0.07820144295692444, -0.028645262122154236,
- 0.04670879617333412, -0.03603379800915718, -0.027518779039382935, 0.030690664425492287,
- 0.0313122421503067, -0.0009189018164761364, -0.05120044946670532, 0.04249681532382965,
- 0.03004288859665394, -0.038750920444726944, -0.008611408993601799, 0.005725843366235495,
- -0.02798514813184738, -0.009208285249769688, 0.09158731251955032,
- -0.0037040887400507927, 0.048098672181367874, 0.05624409392476082, 0.05587196350097656,
- 0.011482997797429562, 0.019155021756887436, 0.09708750247955322, 0.017056182026863098,
- 0.06198899820446968, 0.06498909741640091, 0.05283811688423157, 0.05185381695628166,
- 0.0442834235727787, 0.04111145809292793, 0.11279972642660141, 0.0028567772824317217,
- 0.09618403762578964, 0.12324289232492447, -0.0030703500378876925, 0.1313936859369278,
- -0.040960900485515594, 0.025969872251152992, 0.05530529096722603, 0.03116774372756481,
- -0.07195118069648743, 0.0790962502360344, 0.06344481557607651, -0.04303291067481041,
- 0.12502966821193695, -0.0004850359109696001, 0.06546264886856079, -0.006205049809068441,
- 0.10333060473203659, 0.05953379347920418, 0.08335728198289871, -0.14488406479358673,
- -0.09557119756937027, -0.00920532550662756, -0.09100619703531265, -0.091948963701725,
- 0.10334979742765427, 0.06976640224456787, -0.046372994780540466, 0.033115413039922714,
- -0.025820717215538025, 0.037256237119436264, -0.10174421221017838,
- -0.016151055693626404, 0.04039967432618141, -0.00006153372669359669,
- 0.001150708761997521, 0.07164224982261658, 0.026334239169955254, 0.06767836213111877,
- 0.09412094950675964, -0.015724290162324905, -0.048466190695762634, -0.06594693660736084,
- 0.06156344339251518, -0.021458148956298828, -0.044509004801511765, 0.003560998709872365,
- -0.06527596712112427, 0.03375827148556709, -0.1602180004119873, 0.08977175503969193,
- 0.1000799834728241, -0.07010246813297272, -0.01633322983980179, -0.03998515382409096,
- 0.06078992411494255, 0.009412662126123905, 0.006040873471647501, -0.031104058027267456,
- -0.016459748148918152, 0.03701658174395561, 0.05221368372440338, -0.02605169452726841,
- 0.11378011852502823, 0.07545671612024307, -0.07558809220790863, 0.04423081874847412,
- 0.08031820505857468, -0.03659181669354439, -0.019081201404333115, 0.06799045950174332,
- 0.024339037016034126, -0.063498355448246, -0.06400776654481888, -0.039536941796541214,
- -0.03855941817164421, -0.04077494144439697, -0.06061164662241936, 0.0528750866651535,
- 0.04109827056527138, -0.08087848126888275, -0.03862081840634346, 0.06356161832809448,
- 0.03401334211230278, 0.09776961803436279, 0.005745928268879652, 0.0645398423075676,
- -0.08886051923036575, -0.07542005926370621, 0.05556416139006615, 0.012348377145826817,
- 0.06592071801424026, -0.009415932931005955, -0.02139315754175186, -0.09488874673843384,
- -0.09239663928747177, -0.024374252185225487, 0.10785343497991562, 0.06539063900709152,
- 0.033649224787950516, 0.0345676988363266, -0.08707264810800552, -0.0585269033908844,
- 0.06604073941707611, 0.06388217210769653, 0.03983885422348976, 0.050306934863328934,
- -0.04978753998875618, -0.06693325191736221, 0.12183988839387894, -0.03413617983460426,
- 0.01081442553550005, 0.05865106359124184, 0.04397444427013397, 0.08341380208730698,
- 0.06134628877043724, 0.03320616856217384, 0.05776635929942131, 0.050290774554014206,
- 0.01881810650229454, 0.01611926592886448, -0.020238256081938744, 0.003977110609412193,
- -0.029845789074897766, -0.033027514815330505, -0.05027952790260315,
- 0.038063112646341324, 0.08454393595457077, 0.011258251033723354, -0.0836038589477539,
- -0.040160536766052246, -0.06519986689090729
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 101,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 40,
- "similarity": 0.9978940486907959
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 54,
- "similarity": 0.9978575706481934
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 163,
- "similarity": 0.9978494644165039
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Melissa Heikkilä"],
- "epoch_date_downloaded": 1659571200,
- "epoch_date_modified": 1660003200,
- "epoch_date_submitted": 1659571200,
- "flag": null,
- "report_number": 1863,
- "source_domain": "politico.eu",
- "submitters": ["Fionntan O'Donnell"],
- "title": "Dutch scandal serves as a warning for Europe over risks of using algorithms",
- "url": "https://www.politico.eu/article/dutch-scandal-serves-as-a-warning-for-europe-over-risks-of-using-algorithms/"
- },
- {
- "__typename": "Report",
- "authors": ["Rahul Rao"],
- "epoch_date_downloaded": 1652745600,
- "epoch_date_modified": 1652745600,
- "epoch_date_submitted": 1652745600,
- "flag": null,
- "report_number": 1575,
- "source_domain": "spectrum-ieee-org.cdn.ampproject.org",
- "submitters": ["Joshua Poore"],
- "title": "The Dutch Tax Authority Was Felled by AI—What Comes Next?",
- "url": "https://spectrum-ieee-org.cdn.ampproject.org/c/s/spectrum.ieee.org/amp/artificial-intelligence-in-government-2657286505"
- },
- {
- "__typename": "Report",
- "authors": ["Gabriel Geiger"],
- "epoch_date_downloaded": 1624492800,
- "epoch_date_modified": 1624579200,
- "epoch_date_submitted": 1624579200,
- "flag": null,
- "report_number": 1404,
- "source_domain": "vice.com",
- "submitters": ["Anonymous"],
- "title": "How a Discriminatory Algorithm Wrongly Accused Thousands of Families of Fraud",
- "url": "https://www.vice.com/en/article/jgq35d/how-a-discriminatory-algorithm-wrongly-accused-thousands-of-families-of-fraud"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "microsoft",
- "name": "Microsoft"
- },
- {
- "__typename": "Entity",
- "entity_id": "ibm",
- "name": "IBM"
- },
- {
- "__typename": "Entity",
- "entity_id": "google",
- "name": "Google"
- },
- {
- "__typename": "Entity",
- "entity_id": "apple",
- "name": "Apple"
- },
- {
- "__typename": "Entity",
- "entity_id": "amazon",
- "name": "Amazon"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "microsoft",
- "name": "Microsoft"
- },
- {
- "__typename": "Entity",
- "entity_id": "ibm",
- "name": "IBM"
- },
- {
- "__typename": "Entity",
- "entity_id": "google",
- "name": "Google"
- },
- {
- "__typename": "Entity",
- "entity_id": "apple",
- "name": "Apple"
- },
- {
- "__typename": "Entity",
- "entity_id": "amazon",
- "name": "Amazon"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "black-people",
- "name": "Black People"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1523, 1405],
- "vector": [
- -0.023544907569885254, 0.10592441260814667, 0.007112559862434864, -0.0978732630610466,
- 0.05271626263856888, -0.054278209805488586, 0.0132029103115201, 0.08019635081291199,
- 0.061240844428539276, -0.12706555426120758, -0.025484491139650345, 0.04235498607158661,
- 0.013007037341594696, -0.04418223351240158, 0.03322689235210419, -0.10369957983493805,
- -0.1136629581451416, -0.019195938482880592, -0.018319539725780487, -0.12572911381721497,
- -0.08972205221652985, 0.015705401077866554, -0.04078558087348938, 0.08429937809705734,
- -0.06239748001098633, 0.056425318121910095, 0.10245677083730698, 0.06000453233718872,
- -0.08139336854219437, 0.08414396643638611, -0.03907475993037224, -0.06910629570484161,
- 0.11684706807136536, -0.0038982611149549484, 0.006991362664848566, 0.06725389510393143,
- 0.013563066720962524, -0.027230745181441307, 0.02873055264353752, -0.02517746388912201,
- 0.03930146247148514, 0.30593669414520264, -0.03113027662038803, -0.004880092106759548,
- 0.0019802525639533997, -0.057477183640003204, -0.02008330449461937,
- 0.044449180364608765, -0.003166360314935446, 0.04013149440288544, -0.011797723360359669,
- 0.022120092064142227, -0.018022140488028526, 0.03917132318019867, -0.11628374457359314,
- 0.05083537474274635, 0.028538048267364502, -0.017872145399451256, 0.035420648753643036,
- -0.1170075386762619, 0.0073194801807403564, -0.212273970246315, -0.009209719486534595,
- -0.12405024468898773, 0.11734236031770706, -0.058047227561473846, -0.049951210618019104,
- 0.053774699568748474, 0.01901077851653099, 0.05797369033098221, 0.08823855221271515,
- -0.058737002313137054, -0.05426181107759476, 0.03232460841536522, -0.013099286705255508,
- -0.031896598637104034, -0.043225470930337906, 0.117734394967556, -0.09057106077671051,
- 0.0355895534157753, 0.07603783905506134, -0.08569753170013428, 0.4021351933479309,
- 0.01009320467710495, -0.028982996940612793, -0.018355606123805046, 0.08737055212259293,
- 0.005829074420034885, 0.0406012125313282, 0.017606370151042938, -0.02488180249929428,
- 0.026381326839327812, -0.06594845652580261, -0.03758351132273674, 0.059968847781419754,
- 0.018791843205690384, -0.00023476360365748405, -0.037253446877002716,
- -0.0186807569116354, -0.07688084244728088, -0.013270657509565353, -0.040082819759845734,
- 0.1050962284207344, 0.08577550947666168, -0.05755668878555298, 0.012310503982007504,
- 0.08662458509206772, -0.04229552671313286, 0.027574708685278893, -0.05171693116426468,
- 0.0517972856760025, -0.043926902115345, 0.07764023542404175, -0.011927718296647072,
- 0.025167886167764664, -0.07630541920661926, 0.038083091378211975, 0.03507361188530922,
- 0.08708012104034424, 0.04190421104431152, 0.009031664580106735, 0.043596990406513214,
- 0.06740198284387589, -0.04616112262010574, -0.10346333682537079, -0.0060713030397892,
- -0.03412175178527832, -0.05819670110940933, -0.037829261273145676, 0.045021750032901764,
- -0.028577562421560287, -0.15353500843048096, 0.005036687012761831, 0.05652832239866257,
- -0.0958293080329895, -0.029125478118658066, -0.057224877178668976, -0.0318705290555954,
- 0.06078694015741348, -0.014063303358852863, 0.004226023331284523, 0.06434316188097,
- -0.001051244791597128, 0.01772933453321457, 0.12601932883262634, 0.06639832258224487,
- -0.057274870574474335, -0.016764923930168152, 0.01192712876945734, -0.03949004411697388,
- 0.1448518931865692, -0.11328606307506561, -0.07719116657972336, -0.03227914124727249,
- 0.00546632893383503, 0.809782087802887, 0.16222301125526428, 0.19100767374038696,
- 0.029463866725564003, -0.03834836557507515, 0.17220914363861084, 0.015956837683916092,
- 0.07973435521125793, -0.07631424814462662, -0.03602304309606552, 0.03637722134590149,
- -0.06612411141395569, -0.047310713678598404, 0.03730696067214012, 0.039987340569496155,
- 0.09341692924499512, 0.010878111235797405, 0.0642738863825798, 0.021737154573202133,
- -0.0985371395945549, -0.0318739078938961, 0.09433340281248093, 0.00385837908834219,
- -0.08393634855747223, -0.01407204195857048, 0.07428944110870361, 0.06526699662208557,
- -0.0999680832028389, -0.0051303342916071415, -0.05649971216917038, 0.0650433674454689,
- -0.018380656838417053, 0.04512423276901245, -0.05370155721902847, 0.07589475810527802,
- 0.03516671061515808, 0.0547565296292305, -0.014382952824234962, -0.10595634579658508,
- -0.05784883350133896, 0.0610111728310585, -0.039306625723838806, -0.01810275763273239,
- 0.07320015877485275, -0.10295218229293823, 0.03831077367067337, 0.01240118034183979,
- 0.17173627018928528, -0.14297300577163696, 0.029607199132442474, -0.02066943049430847,
- 0.00035696616396307945, 0.042226579040288925, 0.01858912780880928, -0.0479431189596653,
- -0.03382956609129906, 0.09360064566135406, 0.04398844391107559, 0.09847696125507355,
- 0.06672682613134384, 0.015775347128510475, 0.04869090020656586, 0.07165905088186264,
- -0.025839809328317642, -0.0467708520591259, 0.06707438081502914, 0.061476510018110275,
- -0.051982492208480835, -0.04520648345351219, 0.04900606721639633, 0.017241060733795166,
- 0.011742040514945984, 0.0005534007214009762, 0.013804451562464237,
- -0.018037136644124985, -0.06758110970258713, 0.06739270687103271, 0.059542350471019745,
- 0.057660214602947235, 0.09026923775672913, -0.023653725162148476, -0.03959834203124046,
- -0.03571430593729019, -0.025978725403547287, 0.011480338871479034, -0.05849607288837433,
- 0.035330310463905334, 0.09685474634170532, 0.049124885350465775, 0.0013312718365341425,
- 0.026702258735895157, 0.07930450886487961, 0.026683006435632706, 0.029540933668613434,
- 0.08823542296886444, -0.03156934678554535, -0.04070950299501419, -0.011387194506824017,
- -0.010106063447892666, 0.005893492605537176, -0.03096875175833702,
- -0.030615877360105515, -0.04627734050154686, -0.07797080278396606,
- -0.013307962566614151, -0.0906025618314743, -0.05873982608318329, -0.006535346154123545,
- 0.04092511162161827, -0.05488455668091774, -0.0867248922586441, -0.05402357876300812,
- 0.0076545956544578075, 0.09527966380119324, -0.036512669175863266, -0.0110440319404006,
- -0.13361778855323792, 0.0023904023692011833, 0.007316915784031153, 0.08283017575740814,
- -0.0031023002229630947, 0.016467154026031494, 0.04389512166380882, -0.070098377764225,
- 0.06290087103843689, -0.0015311827883124352, -0.0314304381608963, 0.010533562861382961,
- -0.10340193659067154, -0.04501226544380188, -0.04018649458885193, 0.019478490576148033,
- -0.053391098976135254, 0.0450303815305233, 0.06792997568845749, 0.048409126698970795,
- -0.0532517246901989, -0.07170495390892029, 0.029401976615190506, -0.011326245032250881,
- -0.030838865786790848, 0.0989370197057724, -0.03219116851687431, 0.008620558306574821,
- 0.0195166002959013, -0.06113281846046448, -0.06481955945491791, -0.009448875673115253,
- -0.03038022480905056, -0.0007878364995121956, -0.0047657000832259655,
- 0.011954117566347122, -0.0009102118201553822, 0.0162251777946949, 0.04161788523197174,
- -0.0282240379601717, -0.12134717404842377, -0.11408394575119019, 0.11163470894098282,
- 0.017898811027407646, -0.05026286095380783, 0.02756759338080883, -0.006189149804413319,
- 0.05629692226648331, -0.0013672220520675182, 0.028783364221453667, 0.04693577438592911,
- 0.06223346292972565, 0.02925146371126175, 0.025992512702941895, 0.0420304536819458,
- -0.02639201655983925, 0.025745537132024765, 0.08284750580787659, 0.4460986256599426,
- -0.10811786353588104, 0.04604778066277504, 0.0752665251493454, -0.001990486169233918,
- 0.0334717221558094, -0.04643756151199341, 0.08785747736692429, 0.09028902649879456,
- 0.10102257132530212, 0.17356990277767181, -0.03584930673241615, 0.013886443339288235,
- -0.08197714388370514, 0.06590566039085388, -0.0058449432253837585, 0.036851465702056885,
- -0.0267585851252079, -0.1016676127910614, 0.00955246016383171, 0.108054980635643,
- -0.045977141708135605, 0.019518259912729263, -0.04454799368977547,
- -0.051867611706256866, 0.0008589625358581543, -0.03184521943330765,
- -0.008389354683458805, -0.0481560155749321, 0.054884232580661774, -0.07759316265583038,
- 0.06080785393714905, 0.044830773025751114, -0.005466988310217857, -0.15216243267059326,
- -0.02103438228368759, -0.03596072271466255, -0.1145663857460022, 0.07183946669101715,
- -0.01043754629790783, 0.058450549840927124, 0.05424485355615616, -0.03738325089216232,
- 0.0736161395907402, -0.032435279339551926, -0.057564690709114075, 0.029892664402723312,
- 0.05835520103573799, 0.011381532996892929, 0.025326458737254143, 0.1538935899734497,
- -0.02531130239367485, -0.028192605823278427, -0.1006670892238617, 0.07939080148935318,
- 0.14012689888477325, 0.01983812265098095, -0.0272783525288105, -0.0020163762383162975,
- -0.03287355974316597, -0.0203111469745636, -0.07128093391656876, -0.0989048033952713,
- -0.0027674101293087006, -0.05981350690126419, 0.13068696856498718, 0.011395777575671673,
- -0.03061659261584282, -0.13261601328849792, -0.011993125081062317,
- -0.035521309822797775, 0.04285460710525513, 0.10100299119949341, -0.06057983636856079,
- 0.08562447130680084, 0.025496773421764374, -0.002103229984641075, 0.04419595003128052,
- -0.0724501833319664, 0.01755141094326973, -0.026428746059536934, 0.03150210529565811,
- 0.036727845668792725, 0.031208062544465065, -0.0066828737035393715, 0.13337722420692444,
- -0.08920806646347046, 0.07487679272890091, -0.006598003674298525, -0.029612284153699875,
- 0.006794087588787079, -0.002863474190235138, 0.02585676871240139, 0.009121904149651527,
- -0.031456053256988525, -0.016438907012343407, -0.05317080393433571, -0.033822201192379,
- -0.06502963602542877, -0.10852010548114777, -0.012353307567536831, -0.08837622404098511,
- 0.018327150493860245, -0.07748208940029144, -0.01513083465397358, -0.05164625495672226,
- -0.08803768455982208, -0.03747614845633507, -0.011072861030697823, 0.017168082296848297,
- -0.13779285550117493, 0.020645953714847565, 0.0193696990609169, 0.07154876738786697,
- -0.05941930413246155, -0.07065686583518982, 0.012465368956327438, 0.0629722848534584,
- 0.01387462392449379, -0.02505526877939701, -0.03624378889799118, -0.05623060464859009,
- 0.04978463426232338, -0.11478647589683533, -0.28501081466674805, 0.09336493909358978,
- 0.03359066694974899, 0.03957589715719223, -0.017473546788096428, -0.07774679362773895,
- 0.06036636605858803, 0.009603696875274181, -0.06932518631219864, 0.04838194698095322,
- -0.054299838840961456, 0.025622036308050156, -0.0627613216638565, -0.09673946350812912,
- -0.03427629917860031, -0.055048830807209015, -0.06087927520275116, 0.023552697151899338,
- -0.036360204219818115, -0.08328902721405029, -0.0834277868270874, 0.03306841477751732,
- -0.04901564121246338, 0.04474787414073944, 0.03704415261745453, 0.033706940710544586,
- -0.031298570334911346, -0.04708648473024368, 0.04634544625878334, 0.05487574264407158,
- 0.0387747585773468, -0.08629252016544342, 0.052050065249204636, 0.047883108258247375,
- 0.021958088502287865, 0.08449582010507584, -0.012958860024809837, 0.008150855079293251,
- -0.059199634939432144, 0.08748428523540497, 0.059849269688129425, 0.18590772151947021,
- -0.007052968721836805, -0.04101288691163063, 0.02043643221259117, 0.13239744305610657,
- 0.08296540379524231, 0.01999126560986042, 0.012956713326275349, -0.049184344708919525,
- 0.04802022874355316, 0.01377104315906763, 0.08221901953220367, -0.07311885803937912,
- -0.008793619461357594, -0.01568601280450821, 0.005658295005559921,
- -0.013816261664032936, -0.021420791745185852, 0.2021840214729309, 0.021878622472286224,
- 0.02904491312801838, 0.04371907562017441, -0.05913137272000313, -0.010737615637481213,
- -0.06182859465479851, -0.09081374108791351, -0.002216430613771081,
- -0.026347443461418152, 0.023839671164751053, -0.04573312774300575, -0.13141502439975739,
- -0.014507817104458809, 0.015639416873455048, 0.014340533874928951, 0.1418839991092682,
- -0.034714337438344955, 0.005416903644800186, -0.031198352575302124, 0.12393037974834442,
- 0.029691942036151886, -0.0015880754217505455, 0.056528154760599136, 0.09971699118614197,
- -0.011812198907136917, 0.03330575302243233, 0.002702132798731327, -0.10268457233905792,
- -0.021970493718981743, 0.10836353898048401, -0.02143174596130848, 0.08100536465644836,
- 0.06353384256362915, -0.05659506469964981, -0.06959719210863113, 0.04622044414281845,
- -0.035410668700933456, 0.03329352289438248, -0.411955863237381, -0.033068105578422546,
- 0.08181500434875488, 0.03533896058797836, 0.050440579652786255, 0.0581408366560936,
- 0.005656914785504341, -0.04798916354775429, -0.03492598235607147, -0.13749322295188904,
- 0.14383065700531006, 0.015916818752884865, 0.06913255900144577, -0.056986622512340546,
- 0.020774271339178085, 0.08478322625160217, -0.03541725128889084, 0.07103414833545685,
- 0.05576614290475845, -0.2422279417514801, -0.003055098233744502, -0.025994839146733284,
- 0.07483907043933868, -0.004128376021981239, 0.026005811989307404, 0.10566940158605576,
- -0.08459804952144623, -0.00003765849396586418, 0.07836189866065979,
- -0.03183002769947052, 0.04182370752096176, -0.03363622725009918, 0.022526012733578682,
- 0.10696090012788773, 0.0798686221241951, 0.0616745799779892, -0.02518651634454727,
- 11.962992668151855, 0.03438497334718704, 0.04703813046216965, -0.0667799711227417,
- -0.035516321659088135, -0.04267233610153198, 0.03415413573384285, -0.11814647912979126,
- 0.084508016705513, 0.14041931927204132, -0.03069855272769928, -0.07273887097835541,
- -0.003937447909265757, -0.11209098994731903, 0.04539068415760994, -0.0421718955039978,
- -0.06354106962680817, -0.03197567164897919, 0.0330638661980629, -0.03872280940413475,
- 0.004364178515970707, 0.01976165361702442, 0.09283782541751862, 0.004800819791853428,
- -0.01428421400487423, -0.028859416022896767, 0.012325543910264969, -0.01265766005963087,
- 0.036353856325149536, 0.053314320743083954, 0.005645865574479103, -0.003923692274838686,
- 0.09188389033079147, -0.044681891798973083, 0.03362876921892166, 0.04979998618364334,
- 0.0887136235833168, 0.06325655430555344, 0.044687800109386444, 0.10051166266202927,
- -0.002635614015161991, 0.05365511775016785, 0.017860641703009605, 0.033707715570926666,
- 0.07551486790180206, 0.08895521610975266, 0.030271511524915695, 0.11927621066570282,
- 0.01625303365290165, 0.09414629638195038, 0.10217517614364624, -0.002185699064284563,
- 0.10771787166595459, -0.0026543382555246353, -0.02969389781355858, 0.05574147775769234,
- 0.02918500453233719, -0.07806891947984695, 0.07011625170707703, 0.06170041859149933,
- -0.08069571107625961, 0.14472517371177673, 0.031078999862074852, 0.07930437475442886,
- 0.03558506816625595, 0.02935715764760971, 0.10110817849636078, 0.04221852123737335,
- -0.17673370242118835, -0.09100621193647385, 0.04287811368703842, -0.13777939975261688,
- -0.13389112055301666, 0.11667279154062271, 0.06950075924396515, -0.08689512312412262,
- 0.04338247701525688, -0.032153353095054626, 0.0022457283921539783, -0.01631181128323078,
- -0.008949384093284607, 0.03501981496810913, 0.0022668051533401012, 0.04418814554810524,
- 0.07155783474445343, 0.045710206031799316, 0.028438422828912735, 0.1162119209766388,
- -0.02356582134962082, -0.09230310469865799, -0.05507911741733551, 0.04683232307434082,
- -0.006080813705921173, -0.08882012963294983, 0.056409455835819244, -0.03811633586883545,
- 0.0692027360200882, -0.1306658834218979, 0.05084379017353058, 0.12265143543481827,
- -0.12094563245773315, -0.01245474349707365, -0.030651673674583435, 0.0787375420331955,
- 0.015439118258655071, 0.05270130932331085, -0.07160617411136627, 0.008144085295498371,
- 0.01897207833826542, 0.02570018731057644, -0.02669275365769863, 0.06532370299100876,
- 0.09669565409421921, -0.04852932691574097, -0.021733783185482025, 0.05113205686211586,
- -0.0012649046257138252, -0.010369844734668732, 0.04335477948188782, 0.08822420239448547,
- -0.09503503888845444, -0.05904591083526611, -0.021603308618068695,
- -0.038022104650735855, -0.008230738341808319, -0.020666688680648804,
- 0.027647167444229126, 0.049880243837833405, -0.06518600881099701, 0.0022202255204319954,
- 0.04647952318191528, 0.0909724310040474, 0.110682412981987, -0.05483388900756836,
- 0.08568780869245529, -0.02935704216361046, -0.04623223841190338, 0.04033559188246727,
- 0.0662270039319992, 0.04923493042588234, -0.06589674204587936, -0.0558309331536293,
- -0.09113170206546783, -0.11695006489753723, 0.056276895105838776, 0.06647613644599915,
- 0.04918210208415985, 0.06413621455430984, 0.003931841347366571, -0.07077042758464813,
- -0.05916941165924072, 0.09641104191541672, 0.009183183312416077, 0.007094806060194969,
- 0.09405741095542908, -0.05125512182712555, -0.046683650463819504, 0.08214312791824341,
- -0.0485023632645607, -0.01205935887992382, 0.023809364065527916, -0.050939708948135376,
- 0.09335890412330627, 0.1684788167476654, 0.05725899338722229, 0.0461546890437603,
- 0.06114580109715462, -0.0018206005915999413, 0.055054672062397, -0.04853619262576103,
- 0.04458187520503998, -0.06347955763339996, -0.05159181356430054, -0.054114826023578644,
- 0.03370978683233261, 0.10764031112194061, 0.05797448754310608, -0.0806865394115448,
- -0.06015285104513168, -0.0791156217455864
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 102,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 59,
- "similarity": 0.9988855123519897
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 40,
- "similarity": 0.9988551139831543
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 13,
- "similarity": 0.9985713958740234
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": [
- "Allison Koenecke",
- "Andrew Nam",
- "Emily Lake",
- "Joe Nudell",
- "Minnie Quartey",
- "Zion Mengesha",
- "Connor Toups",
- "John R. Rickford",
- "Dan Jurafsky",
- "Sharad Goel"
- ],
- "epoch_date_downloaded": 1644969600,
- "epoch_date_modified": 1644969600,
- "epoch_date_submitted": 1644969600,
- "flag": null,
- "report_number": 1523,
- "source_domain": "pnas.org",
- "submitters": ["Anonymous"],
- "title": "Racial disparities in automated speech recognition",
- "url": "https://www.pnas.org/content/117/14/7684"
- },
- {
- "__typename": "Report",
- "authors": ["Monica Chin"],
- "epoch_date_downloaded": 1624752000,
- "epoch_date_modified": 1624838400,
- "epoch_date_submitted": 1624838400,
- "flag": null,
- "report_number": 1405,
- "source_domain": "theverge.com",
- "submitters": ["Anonymous"],
- "title": "Personal voice assistants struggle with black voices, new study shows",
- "url": "https://www.theverge.com/2020/3/24/21192333/speech-recognition-amazon-microsoft-google-ibm-apple-siri-alexa-cortana-voice-assistant"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "twitter",
- "name": "Twitter"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "twitter",
- "name": "Twitter"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "twitter-users",
- "name": "Twitter Users"
- },
- {
- "__typename": "Entity",
- "entity_id": "twitter-non-white-users",
- "name": "Twitter non-white users"
- },
- {
- "__typename": "Entity",
- "entity_id": "twitter-non-male-users",
- "name": "Twitter non-male users"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [2241, 2145, 1528, 1527, 1406],
- "vector": [
- -0.05093540996313095, 0.07724117487668991, -0.001221822458319366, -0.09314421564340591,
- 0.09860487282276154, -0.029618442058563232, -0.003597743809223175, 0.055976592004299164,
- 0.04459546506404877, -0.14426760375499725, 0.004237393382936716, 0.03554324805736542,
- 0.02318667247891426, -0.07878656685352325, 0.0363289937376976, -0.06708317995071411,
- -0.09655163437128067, -0.028249433264136314, 0.03054569661617279, -0.11113254725933075,
- -0.0762673020362854, -0.016653070226311684, -0.011678953655064106, 0.1012686938047409,
- -0.04457931965589523, 0.0256903525441885, 0.08601206541061401, 0.10936896502971649,
- -0.04735364764928818, 0.02609107829630375, -0.03897706791758537, -0.07257286459207535,
- 0.12535791099071503, 0.012992044910788536, 0.013582120649516582, 0.08117063343524933,
- 0.05639750882983208, -0.013077424839138985, -0.05376609042286873,
- -0.0070677949115633965, 0.028180915862321854, 0.21464738249778748,
- -0.011095886118710041, -0.008793293498456478, 0.0483536496758461, -0.005681666079908609,
- 0.018953457474708557, 0.024769168347120285, 0.010341895744204521, 0.0069212717935442924,
- -0.015430407598614693, 0.012535057961940765, -0.036723606288433075,
- 0.017007343471050262, -0.09308132529258728, 0.05445007607340813, 0.02929886244237423,
- 0.009668807499110699, 0.025800442323088646, -0.0721028596162796, -0.030077066272497177,
- -0.18344441056251526, -0.024851854890584946, -0.06217163801193237, 0.07470881938934326,
- -0.06206570938229561, -0.02342245727777481, 0.036018140614032745, 0.02090129256248474,
- 0.054250746965408325, 0.05736200138926506, -0.04690064862370491, -0.030445054173469543,
- -0.0032611130736768246, -0.012129244394600391, -0.0075778113678097725,
- 0.022401373833417892, 0.20071688294410706, -0.0715496763586998, 0.012663627043366432,
- 0.07160378247499466, -0.09097473323345184, 0.34594449400901794, 0.019182205200195312,
- -0.025927286595106125, -0.023275595158338547, 0.07831067591905594, 0.04872938618063927,
- 0.023571042343974113, 0.03093286231160164, 0.006367085967212915, 0.05279386788606644,
- -0.04242052510380745, 0.006224191747605801, 0.03768898919224739, 0.04423234611749649,
- -0.03301823139190674, -0.06457724422216415, 0.001965287374332547, -0.042667049914598465,
- 0.005401833914220333, -0.023209016770124435, 0.12987150251865387, 0.06442098319530487,
- -0.04777190834283829, 0.0016502871876582503, 0.08334536850452423, -0.04674482345581055,
- 0.03869438171386719, -0.05640355497598648, 0.03438815847039223, 0.0009086948120966554,
- 0.07345408201217651, -0.00838695839047432, 0.03020370379090309, -0.03220110014081001,
- 0.001658493303693831, 0.03277214244008064, 0.09302264451980591, 0.055024344474077225,
- 0.02011384814977646, 0.0670807957649231, 0.09254048019647598, -0.06344182044267654,
- -0.03828062862157822, -0.022992486134171486, -0.0593641996383667, 0.007505650166422129,
- -0.024281106889247894, 0.056579284369945526, -0.03451031073927879, -0.1941727250814438,
- 0.013650715351104736, 0.06812089681625366, -0.04963494464755058, -0.027291133999824524,
- 0.028384828940033913, -0.05000634118914604, 0.017506752163171768, -0.015196656808257103,
- -0.010131833143532276, 0.06247903034090996, 0.02797767147421837, 0.03668322414159775,
- 0.08546395599842072, 0.022317614406347275, -0.029478589072823524, -0.05400038883090019,
- -0.002578210551291704, -0.0693514496088028, 0.09372276812791824, -0.12652255594730377,
- -0.02848675847053528, -0.012672731652855873, -0.012615760788321495, 0.6473005414009094,
- 0.10263171046972275, 0.1519915908575058, -0.008760416880249977, -0.029412129893898964,
- 0.14101096987724304, -0.007508918642997742, 0.0481005497276783, -0.06445685774087906,
- -0.0546383336186409, 0.039689719676971436, -0.06876202672719955, -0.03770957514643669,
- 0.019710879772901535, 0.026070866733789444, 0.07969348132610321, 0.020190300419926643,
- 0.09949380159378052, 0.01571894809603691, -0.08535464853048325, -0.021440427750349045,
- 0.03943541646003723, 0.007551877293735743, -0.13200092315673828, -0.029271796345710754,
- 0.051850516349077225, 0.09011074155569077, -0.07432185858488083, 0.012477932497859001,
- -0.07289998978376389, 0.04572242498397827, 0.002916336990892887, 0.04660024493932724,
- -0.0007051397114992142, 0.02571091614663601, 0.05358685180544853, 0.03748369961977005,
- -0.031234458088874817, -0.0491233691573143, -0.022444579750299454, 0.09235108643770218,
- -0.02837974950671196, -0.043183594942092896, 0.09047170728445053, -0.07750590145587921,
- 0.04677926376461983, -0.014274257235229015, 0.13401396572589874, -0.14188727736473083,
- 0.03913386911153793, 0.004651984199881554, 0.01798882894217968, 0.05352906510233879,
- -0.02690211497247219, -0.06189132481813431, -0.060974426567554474, 0.1058078408241272,
- 0.012023521587252617, 0.06725703924894333, 0.04999780282378197, -0.029311081394553185,
- 0.022940153256058693, 0.07815819978713989, -0.010244883596897125, -0.03828493505716324,
- 0.08964718133211136, 0.041252102702856064, -0.0799223780632019, -0.025390302762389183,
- 0.05360572412610054, 0.030416030436754227, 0.03170142322778702, -0.001989040058106184,
- 0.03894692659378052, -0.00859801471233368, -0.027941640466451645, 0.0310683511197567,
- 0.03572826832532883, 0.03883453458547592, 0.08182341605424881, -0.07308701425790787,
- -0.030407527461647987, -0.0438351109623909, -0.029231080785393715, 0.01395213883370161,
- -0.05274136736989021, 0.06475673615932465, 0.09137896448373795, 0.06293187290430069,
- 0.01920444890856743, 0.03777817636728287, 0.06021765619516373, 0.010931040160357952,
- 0.01995181292295456, 0.057804714888334274, -0.025468815118074417, -0.049867283552885056,
- -0.01599840261042118, 0.0026281375903636217, 0.03443901985883713, -0.012354498729109764,
- -0.0568939670920372, -0.0415814034640789, -0.03368166834115982, -0.0006957538425922394,
- -0.09266257286071777, -0.05928977206349373, 0.05135286599397659, 0.023633871227502823,
- -0.05028543993830681, -0.10452759265899658, -0.04431484267115593, 0.0046975379809737206,
- 0.07295538485050201, -0.036652736365795135, -0.008444221690297127, -0.09345705807209015,
- -0.0028852573595941067, -0.010567289777100086, 0.03286923095583916,
- -0.016222979873418808, -0.005822020582854748, -0.01408190093934536,
- -0.07837684452533722, 0.024804357439279556, -0.0214875228703022, -0.00617105420678854,
- -0.012764747254550457, -0.09733889997005463, -0.06387512385845184, -0.0076017826795578,
- 0.026402849704027176, -0.027729611843824387, 0.04894868656992912, 0.04066307097673416,
- 0.04010387510061264, -0.032887302339076996, -0.024130266159772873, 0.038009755313396454,
- -0.05226108431816101, -0.019604578614234924, 0.0683218315243721, -0.022939246147871017,
- 0.032531000673770905, -0.00021877148537896574, -0.07807998359203339,
- -0.0413261353969574, 0.014751258306205273, -0.04142821580171585, 0.04266888648271561,
- -0.027956102043390274, 0.007252839859575033, -0.029187867417931557, 0.01186345610767603,
- 0.07551421225070953, -0.05970500782132149, -0.08916304260492325, -0.08213929086923599,
- 0.11452174186706543, -0.015821289271116257, -0.0007165368879213929,
- -0.0000668646753183566, -0.03226117417216301, 0.0393524244427681, 0.0015391688793897629,
- 0.00491397175937891, 0.03893107548356056, 0.0683058425784111, 0.007014241069555283,
- 0.013506246730685234, 0.05212946981191635, -0.04322032257914543, 0.023440873250365257,
- 0.08451300859451294, 0.4321199357509613, -0.19350288808345795, 0.07019131630659103,
- 0.06868906319141388, 0.0027695060707628727, 0.0388411283493042, -0.04535939171910286,
- 0.10014449059963226, 0.06158576160669327, 0.1144876703619957, 0.11915259063243866,
- -0.05184372141957283, 0.020747769623994827, -0.04325413703918457, 0.08048821985721588,
- 0.02452249452471733, 0.015886735171079636, 0.003551691770553589, -0.03983297199010849,
- -0.0077416906133294106, 0.02082715928554535, -0.056722335517406464, 0.0184177216142416,
- -0.018214311450719833, -0.050754524767398834, 0.008059024810791016, 0.01021178625524044,
- 0.03565099835395813, -0.0346238873898983, 0.034599632024765015, 0.0006301279063336551,
- 0.023958545178174973, 0.03217248246073723, 0.05284646153450012, -0.07443876564502716,
- 0.038444884121418, -0.07907892763614655, -0.08250224590301514, 0.07324422895908356,
- 0.0146601852029562, 0.04723116382956505, 0.049037832766771317, -0.007803644053637981,
- 0.03395930677652359, -0.019064661115407944, -0.035628728568553925,
- -0.004689191933721304, 0.05166928842663765, 0.025285333395004272, 0.09944836050271988,
- 0.14786359667778015, -0.017237067222595215, -0.013176207430660725, -0.07439249753952026,
- 0.05219579488039017, 0.13852600753307343, 0.0027576338034123182, 0.024130219593644142,
- -0.001148094772361219, -0.030206847935914993, -0.007608190178871155,
- -0.028120940551161766, -0.10887902975082397, -0.021113542839884758,
- -0.054846931248903275, 0.07886793464422226, 0.044670987874269485, -0.055204492062330246,
- -0.14579276740550995, -0.042612165212631226, -0.041423309594392776,
- 0.028280457481741905, 0.08473518490791321, -0.07153241336345673, 0.020231861621141434,
- 0.004285591654479504, -0.00566221633926034, 0.006306578405201435, -0.09630727767944336,
- -0.0009204802918247879, -0.059532128274440765, 0.03356029465794563, 0.05284512788057327,
- 0.06261719763278961, -0.030833860859274864, 0.05461307615041733, -0.09594348818063736,
- 0.04043935239315033, -0.007507664617151022, -0.028348052874207497,
- -0.0014159284764900804, -0.025666624307632446, 0.031009474769234657,
- 0.015870725736021996, -0.036713652312755585, -0.030043577775359154,
- -0.03543349355459213, -0.017627429217100143, -0.06709642708301544, -0.06297056376934052,
- -0.03639325872063637, -0.10408306121826172, 0.04974036663770676, -0.08468468487262726,
- -0.017058251425623894, -0.020588798448443413, -0.0092823076993227, 0.004900973290205002,
- 0.0308896005153656, 0.005186364520341158, -0.12681657075881958, -0.02268758788704872,
- -0.0006876207189634442, 0.056906841695308685, -0.025837156921625137,
- -0.0590965561568737, 0.007478754036128521, 0.09704979509115219, 0.017138686031103134,
- -0.05260738730430603, 0.0009086497011594474, -0.06317116320133209, 0.0772373229265213,
- -0.11184557527303696, -0.45743876695632935, 0.042486000806093216, 0.017989493906497955,
- 0.04049127176403999, 0.011947854422032833, -0.05973329395055771, 0.04047415778040886,
- 0.0008975450182333589, -0.0005509430775418878, 0.06725237518548965,
- -0.037851303815841675, 0.01166657917201519, -0.05152890086174011, -0.04958010092377663,
- 0.006984100677073002, -0.07396730035543442, -0.05360822007060051, 0.028903257101774216,
- -0.003630398539826274, -0.05295948311686516, -0.048653196543455124,
- 0.0031862235628068447, -0.019139831885695457, -0.003924641292542219,
- 0.0011220297310501337, 0.00337217072956264, -0.04550592601299286, -0.06524090468883514,
- 0.03640864044427872, 0.06635917723178864, 0.032943062484264374, -0.07762952893972397,
- 0.013455258682370186, 0.07225270569324493, 0.026195887476205826, 0.09794805198907852,
- 0.030519772320985794, 0.0002489579492248595, -0.05341766029596329, 0.06929770857095718,
- 0.058901507407426834, 0.1895534098148346, -0.006368341855704784, 0.028250927105545998,
- -0.019505104050040245, 0.09109847247600555, 0.034235842525959015, 0.02137366496026516,
- -0.03624914214015007, -0.01585194282233715, 0.005767701659351587,
- -0.0051008183509111404, 0.08087129890918732, -0.05588000267744064, -0.03219861537218094,
- -0.01261072140187025, -0.00046150945127010345, -0.04863099381327629,
- -0.020437296479940414, 0.20000119507312775, 0.021474743261933327, 0.01745050586760044,
- 0.04244431108236313, -0.04231708496809006, 0.013720743358135223, -0.09302983433008194,
- -0.07034440338611603, -0.015935834497213364, -0.011068864725530148,
- 0.021217375993728638, -0.039972372353076935, -0.09955722838640213, -0.01888902485370636,
- -0.006593555212020874, -0.005574964918196201, 0.12758950889110565, -0.03448846563696861,
- 0.0009272523457184434, -0.006575781852006912, 0.1315508484840393, 0.0099270548671484,
- 0.027830448001623154, 0.05680537968873978, 0.08144178241491318, 0.016847480088472366,
- 0.020767470821738243, -0.02964564599096775, -0.07512682676315308, -0.009695366024971008,
- 0.13783545792102814, -0.02050076238811016, 0.11794175952672958, 0.04235859587788582,
- -0.01511344127357006, -0.03172380477190018, 0.018534403294324875, 0.021520106121897697,
- 0.007449350319802761, -0.500338613986969, -0.031300462782382965, 0.09245762228965759,
- 0.029046371579170227, 0.02210085839033127, 0.0657016709446907, -0.02710086479783058,
- -0.03294648602604866, -0.026099925860762596, -0.06690967082977295, 0.09144864231348038,
- -0.0030743603128939867, 0.06540074199438095, -0.09301995486021042, 0.024589840322732925,
- 0.10067131370306015, -0.0331304706633091, 0.012665124610066414, 0.028069522231817245,
- -0.2493436336517334, -0.011415735818445683, -0.038388822227716446, 0.14705276489257812,
- 0.019878748804330826, 0.050512343645095825, 0.085750512778759, -0.048605598509311676,
- 0.048373375087976456, 0.03595774620771408, -0.000702707446180284, 0.09105473756790161,
- -0.020182138308882713, -0.01269301027059555, 0.09569971263408661, 0.103032685816288,
- 0.10470209270715714, -0.013660314492881298, 11.777180671691895, 0.03833562135696411,
- 0.05557926744222641, -0.07480550557374954, -0.019998783245682716, -0.05130584165453911,
- 0.04495227336883545, -0.10315573215484619, 0.06428263336420059, 0.1151571124792099,
- 0.009703434072434902, -0.03078470192849636, -0.016941534355282784, -0.08044622838497162,
- 0.035535190254449844, -0.03973499685525894, -0.04007544368505478, -0.047626592218875885,
- 0.05827890709042549, -0.06758321076631546, -0.04034119099378586, 0.09442981332540512,
- 0.07842673361301422, 0.04153413698077202, -0.05899510532617569, 0.01931983418762684,
- 0.005473101511597633, -0.012077885679900646, 0.015268785879015923, 0.016494516283273697,
- 0.04865161329507828, 0.04278873652219772, 0.08708278834819794, 0.017927784472703934,
- 0.011233629658818245, 0.06978914886713028, 0.03084811009466648, 0.020534921437501907,
- 0.034654226154088974, 0.044499970972537994, 0.001968125347048044, 0.01817341521382332,
- 0.004844162613153458, 0.03384073078632355, 0.07139933109283447, 0.055312223732471466,
- 0.028775924816727638, 0.1441655308008194, -0.0007349898805841804, 0.054572004824876785,
- 0.07485710084438324, -0.0008608486386947334, 0.09216485917568207, 0.004566623829305172,
- -0.015660975128412247, 0.02753967046737671, -0.0007644385332241654,
- -0.07612712681293488, 0.07614071667194366, 0.0035356886219233274, -0.04883318021893501,
- 0.1365412175655365, 0.034597788006067276, 0.0857880562543869, -0.007370202802121639,
- 0.03598877787590027, 0.06694254279136658, 0.07811307162046432, -0.062355153262615204,
- -0.08492066711187363, 0.04819390922784805, -0.10623331367969513, -0.05922878533601761,
- 0.06042792275547981, 0.08505645394325256, -0.058428116142749786, 0.050973810255527496,
- -0.03682006150484085, 0.04889526963233948, 0.0019505491945892572, 0.027745619416236877,
- 0.06189844012260437, -0.04777943342924118, 0.0031741939019411802, 0.047142814844846725,
- 0.025662824511528015, 0.06326179206371307, 0.12405650317668915, 0.007748552598059177,
- -0.044275082647800446, -0.0802195593714714, 0.07668763399124146, -0.001137180021032691,
- -0.0459771603345871, 0.024272795766592026, -0.06288345158100128, 0.03543970733880997,
- -0.17074330151081085, 0.06967425346374512, 0.1197388768196106, -0.06964559108018875,
- -0.045737940818071365, -0.03027888759970665, 0.05470787361264229, 0.016057929024100304,
- 0.018330680206418037, -0.05619471147656441, -0.0011202674359083176,
- 0.047983355820178986, 0.043328166007995605, -0.024072227999567986, 0.049962759017944336,
- 0.059401266276836395, -0.040506668388843536, 0.024107474833726883, 0.05748612433671951,
- -0.028156226500868797, -0.026646047830581665, 0.056664787232875824,
- 0.031138593330979347, -0.09142521768808365, -0.05601909011602402, -0.03863667696714401,
- -0.011186505667865276, 0.006987239234149456, -0.03554151579737663, 0.010903333313763142,
- 0.013142162933945656, -0.009337829425930977, -0.03307989984750748, 0.04825010895729065,
- 0.08545736968517303, 0.08531017601490021, -0.011157887987792492, 0.04957316070795059,
- -0.02425532229244709, -0.03401154652237892, 0.06043484807014465, 0.043055105954408646,
- 0.10470730066299438, -0.07556931674480438, -0.0272243432700634, -0.04590298980474472,
- -0.1338687241077423, 0.04605717211961746, 0.0530584380030632, 0.045055635273456573,
- 0.021950799971818924, 0.007100861519575119, -0.06804795563220978, -0.026557859033346176,
- 0.06917280703783035, -0.004792684689164162, -0.025142868980765343, 0.032654084265232086,
- -0.04037237912416458, -0.015697341412305832, 0.09041930735111237, -0.01809694804251194,
- 0.004193981643766165, 0.01982981339097023, -0.11952080577611923, 0.030110318213701248,
- 0.11157457530498505, 0.028348106890916824, 0.01585298404097557, 0.036237817257642746,
- 0.010529210790991783, 0.0685833990573883, -0.020675454288721085, 0.025080716237425804,
- -0.052830517292022705, -0.0807880312204361, -0.07507053762674332, 0.018052969127893448,
- 0.0907537117600441, 0.05481984093785286, -0.11581828445196152, -0.01753200776875019,
- -0.020241865888237953
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 103,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 16,
- "similarity": 0.9988700747489929
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 60,
- "similarity": 0.9986793398857117
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 6,
- "similarity": 0.9986475706100464
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Rumman Chowdhury"],
- "epoch_date_downloaded": 1667952000,
- "epoch_date_modified": 1668124800,
- "epoch_date_submitted": 1667952000,
- "flag": null,
- "report_number": 2241,
- "source_domain": "blog.twitter.com",
- "submitters": ["Anonymous"],
- "title": "Sharing learnings about our image cropping algorithm",
- "url": "https://blog.twitter.com/engineering/en_us/topics/insights/2021/sharing-learnings-about-our-image-cropping-algorithm"
- },
- {
- "__typename": "Report",
- "authors": ["Jon Fingas"],
- "epoch_date_downloaded": 1663200000,
- "epoch_date_modified": 1665619200,
- "epoch_date_submitted": 1663286400,
- "flag": null,
- "report_number": 2145,
- "source_domain": "engadget.com",
- "submitters": ["Mitt Regan Jr. (BABL AI)"],
- "title": "Twitter's AI bounty program reveals bias toward young, pretty white people",
- "url": "https://www.engadget.com/twitter-ai-bias-beauty-filters-133210055.html"
- },
- {
- "__typename": "Report",
- "authors": ["Ivan Mehta"],
- "epoch_date_downloaded": 1644969600,
- "epoch_date_modified": 1644969600,
- "epoch_date_submitted": 1644969600,
- "flag": null,
- "report_number": 1528,
- "source_domain": "thenextweb.com",
- "submitters": ["Anonymous"],
- "title": "Why Twitter’s image cropping algorithm appears to have white bias",
- "url": "https://thenextweb.com/news/why-twitters-image-cropping-algorithm-appears-to-have-white-bias"
- },
- {
- "__typename": "Report",
- "authors": ["Kris Holt"],
- "epoch_date_downloaded": 1644969600,
- "epoch_date_modified": 1644969600,
- "epoch_date_submitted": 1644969600,
- "flag": null,
- "report_number": 1527,
- "source_domain": "engadget.com",
- "submitters": ["Anonymous"],
- "title": "Twitter launches bug bounty contest to detect algorithmic bias",
- "url": "https://www.engadget.com/twitter-bug-bounty-contest-algorithm-bias-image-cropping-185634779.html"
- },
- {
- "__typename": "Report",
- "authors": ["Khari Johnson"],
- "epoch_date_downloaded": 1623974400,
- "epoch_date_modified": 1623974400,
- "epoch_date_submitted": 1623974400,
- "flag": null,
- "report_number": 1406,
- "source_domain": "wired.com",
- "submitters": ["Roman Lutz"],
- "title": "Twitter's Photo Crop Algorithm Favors White Faces and Women",
- "url": "https://www.wired.com/story/twitter-photo-crop-algorithm-favors-white-faces-women/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "california-department-of-public-health",
- "name": "California Department of Public Health"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "blue-shield-of-california",
- "name": "Blue Shield of California"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "california-low-income-neighborhoods",
- "name": "California low-income neighborhoods"
- },
- {
- "__typename": "Entity",
- "entity_id": "california-communities-of-color",
- "name": "California communities of color"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1407],
- "vector": [
- -0.028361033648252487, 0.12107013911008835, 0.014319541864097118, -0.06290071457624435,
- 0.03957812860608101, -0.002613632706925273, 0.015643015503883362, 0.08242546021938324,
- 0.06767275929450989, -0.13130024075508118, -0.002294346457347274, 0.05870391055941582,
- 0.0076654041185975075, -0.10272742807865143, -0.004564233124256134,
- -0.12419764697551727, -0.14095278084278107, -0.10342507809400558, 0.013188889250159264,
- -0.12281352281570435, -0.09502167999744415, -0.027717584744095802, 0.00453560333698988,
- 0.06069853901863098, -0.05824628472328186, 0.06744247674942017, 0.06748909503221512,
- 0.09947419911623001, -0.023160496726632118, 0.09346497058868408, -0.05140034109354019,
- -0.09226831048727036, 0.1435975283384323, 0.009175814688205719, 0.04163587465882301,
- 0.13381917774677277, -0.021853715181350708, 0.0003613386652432382, 0.07223615050315857,
- -0.02813001349568367, 0.002716398099437356, 0.3407725691795349, -0.04947469383478165,
- -0.006696552503854036, 0.006850667297840118, -0.04242754355072975,
- -0.012590574100613594, 0.07636082172393799, 0.018699295818805695, 0.0370950922369957,
- -0.0010529003338888288, 0.08352044224739075, -0.038574784994125366,
- 0.023566780611872673, -0.14032799005508423, 0.05228652060031891, 0.016483936458826065,
- 0.04968642443418503, 0.0369340255856514, -0.03995832800865173, -0.003488334594294429,
- -0.2715379297733307, -0.007597187999635935, -0.07659070938825607, 0.10335756838321686,
- -0.05682329088449478, -0.009763741865754128, 0.06269647181034088, 0.00866813212633133,
- 0.0815262570977211, 0.06587797403335571, -0.018048753961920738, -0.04953524470329285,
- -0.009730376303195953, -0.012543197721242905, -0.03454414755105972,
- 0.024973362684249878, 0.06570520997047424, -0.08857861906290054, -0.009862180799245834,
- 0.08980880677700043, -0.05514338240027428, 0.3668889105319977, -0.02102382481098175,
- -0.0011540704872459173, -0.006451191380620003, 0.0827934592962265, 0.042729590088129044,
- 0.04455077275633812, 0.02781541645526886, -0.06869572401046753, 0.06472491472959518,
- -0.018102802336215973, -0.009964384138584137, 0.08424119651317596, 0.0277730543166399,
- -0.01644492894411087, 0.025674736127257347, 0.01035244483500719, -0.08675533533096313,
- -0.0023086327128112316, -0.014854212291538715, 0.041684623807668686, 0.0526370033621788,
- -0.08318440616130829, 0.04563988745212555, 0.09123799204826355, -0.060470517724752426,
- 0.03409331664443016, -0.07966995239257812, 0.03357679769396782, 0.009389463812112808,
- -0.0030218272004276514, -0.011740501970052719, 0.015274368226528168,
- -0.09208421409130096, 0.030045239254832268, 0.013711300678551197, 0.08411400020122528,
- 0.01598532125353813, 0.010287039913237095, 0.0731278657913208, 0.08347131311893463,
- -0.07129672914743423, -0.025555334985256195, -0.006057130638509989,
- -0.08471174538135529, 0.01603434979915619, -0.06309212744235992, 0.059108879417181015,
- -0.08968058973550797, -0.1345551759004593, 0.0017861020751297474, 0.0818147212266922,
- -0.0543975755572319, -0.04774206504225731, -0.05982998386025429, -0.02562176063656807,
- 0.043558936566114426, -0.032596610486507416, 0.04397709667682648, 0.032021231949329376,
- 0.012345656752586365, 0.038263365626335144, 0.08589143306016922, 0.0282941572368145,
- -0.0631294697523117, -0.039734847843647, 0.009325140155851841, 0.0032861691433936357,
- 0.12891709804534912, -0.1463216245174408, -0.07323192059993744, -0.015498969703912735,
- -0.0192136000841856, 0.7159136533737183, 0.17189131677150726, 0.16332346200942993,
- -0.01750415563583374, -0.07876427471637726, 0.16099120676517487, 0.05524926632642746,
- 0.04481201991438866, -0.11517011374235153, -0.042856041342020035, 0.016292091459035873,
- -0.05341663211584091, -0.061495933681726456, 0.03487739711999893, 0.0026217822451144457,
- 0.13365325331687927, 0.004917451646178961, 0.0632038488984108, -0.002789196092635393,
- -0.0787101462483406, -0.03748105838894844, 0.09601221978664398, -0.0010894788429141045,
- -0.11838015913963318, -0.015969019383192062, 0.05251404643058777, 0.03596999868750572,
- -0.10216761380434036, -0.01937049627304077, -0.11622831225395203, 0.06738325208425522,
- -0.027141505852341652, 0.034294698387384415, -0.013616698794066906, 0.03889428451657295,
- 0.022281743586063385, 0.06533282995223999, 0.0169211458414793, -0.13144217431545258,
- -0.04833347722887993, 0.08047233521938324, -0.02899944595992565, -0.06088598817586899,
- 0.07825065404176712, -0.10585962980985641, 0.04148617759346962, 0.037984468042850494,
- 0.27367910742759705, -0.11907558888196945, -0.011651909910142422, -0.0377754345536232,
- -0.010610922239720821, 0.05779046192765236, 0.016451172530651093, -0.019701804965734482,
- -0.01819656230509281, 0.07063909620046616, 0.07500142604112625, 0.16357286274433136,
- 0.05095139145851135, -0.01818728819489479, 0.06904225796461105, 0.016783230006694794,
- 0.02172282338142395, -0.07855872809886932, 0.10045251995325089, 0.06650091707706451,
- -0.034394826740026474, -0.006101428065448999, 0.0401187427341938, 0.06628342717885971,
- 0.03176043555140495, -0.0033649534452706575, 0.01798020675778389, -0.031417664140462875,
- -0.07736213505268097, 0.04901311919093132, 0.08005127310752869, 0.006824100390076637,
- 0.09050513803958893, 0.028405852615833282, -0.023829612880945206, -0.029240863397717476,
- -0.0491885207593441, 0.014781543053686619, -0.0453910194337368, 0.08773814141750336,
- 0.08387381583452225, 0.06068067252635956, -0.02239546738564968, 0.036378826946020126,
- 0.07181739062070847, 0.0695340633392334, 0.04963303729891777, 0.1261197030544281,
- -0.03005458600819111, -0.04417024925351143, -0.05291973426938057, -0.03631053492426872,
- -0.04453964903950691, -0.0275755412876606, -0.07228852808475494, -0.04353713244199753,
- -0.11873321980237961, -0.055886611342430115, -0.07280098646879196, -0.1096537709236145,
- 0.02275916561484337, 0.05440283939242363, -0.02906413935124874, -0.044843241572380066,
- -0.08231916278600693, 0.02557678148150444, 0.12769965827465057, 0.007334090769290924,
- -0.022366169840097427, -0.09949752688407898, -0.0012523055775091052,
- -0.013661514967679977, 0.09104322642087936, -0.010909851640462875, 0.025502637028694153,
- 0.002866212511435151, -0.09842483699321747, -0.00288907322101295, -0.06320632249116898,
- -0.06835642457008362, -0.08673297613859177, -0.089696504175663, -0.025457439944148064,
- -0.018445918336510658, 0.040106870234012604, -0.06793956458568573, 0.04567592218518257,
- 0.04051213711500168, 0.042295344173908234, -0.018835851922631264, -0.01928953267633915,
- 0.030653556808829308, -0.06353414058685303, -0.027254300191998482, 0.11205694824457169,
- -0.03223707154393196, 0.0342770516872406, -0.02801552228629589, -0.014141914434731007,
- -0.060900378972291946, -0.011573588475584984, -0.039706479758024216,
- 0.027579249814152718, -0.02648061513900757, 0.018725750967860222, -0.05429578945040703,
- 0.028185885399580002, 0.08577310293912888, -0.04594962298870087, -0.0951254665851593,
- -0.06188832223415375, 0.14064088463783264, -0.007208389695733786, 0.032729100435972214,
- -0.031334493309259415, -0.09226708114147186, 0.060347989201545715, 0.023518184199929237,
- -0.008967256173491478, 0.006980070844292641, 0.06325895339250565, -0.05680185556411743,
- 0.024437222629785538, 0.10621955245733261, -0.017059171572327614, 0.007242195308208466,
- 0.055722709745168686, 0.440861314535141, -0.055853620171546936, 0.0515802726149559,
- 0.07329580932855606, 0.09302964806556702, 0.042408354580402374, -0.06052461639046669,
- 0.06726087629795074, 0.08892757445573807, 0.11577523499727249, 0.12103744596242905,
- -0.046952683478593826, -0.008237812668085098, -0.0359533466398716, 0.10782377421855927,
- -0.017592022195458412, 0.034654583781957626, -0.048843421041965485,
- -0.10767105966806412, 0.002685423009097576, 0.014852093532681465, -0.06731654703617096,
- -0.008449369110167027, -0.019784454256296158, -0.08299917727708817,
- -0.01029570959508419, -0.02341938205063343, -0.01664510928094387, -0.019251670688390732,
- 0.05448464676737785, -0.0015774441417306662, 0.060716357082128525, 0.061828017234802246,
- 0.03174659237265587, -0.12719115614891052, 0.04125287011265755, -0.05506861209869385,
- -0.12714877724647522, 0.10391271859407425, -0.0086488863453269, 0.05918470025062561,
- 0.06807553768157959, -0.00857162568718195, 0.08014789968729019, 0.04001139849424362,
- -0.04255616292357445, 0.04775345325469971, 0.05876170098781586, 0.028015311807394028,
- 0.050388939678668976, 0.14748641848564148, -0.0819074809551239, -0.01203943695873022,
- -0.08390766382217407, 0.05705055594444275, 0.14141879975795746, 0.019950442016124725,
- -0.006074653472751379, 0.05467243120074272, -0.007622392848134041, 0.024188479408621788,
- -0.03245047479867935, -0.07766982167959213, 0.022321758791804314, -0.028555361554026604,
- 0.07919123023748398, 0.018541639670729637, -0.022506484761834145, -0.05246921256184578,
- 0.0030331676825881004, -0.02764151804149151, 0.04164353385567665, 0.12645076215267181,
- -0.07412949204444885, 0.01864035055041313, 0.013143951073288918, 0.019052604213356972,
- 0.002656286582350731, -0.03782689571380615, 0.047127578407526016, -0.04787362739443779,
- 0.024081377312541008, 0.06731689721345901, 0.04429338499903679, -0.08679760247468948,
- 0.10809919983148575, -0.09813565760850906, 0.05895126983523369, -0.028286926448345184,
- -0.03638702258467674, -0.004176611080765724, -0.0007977574714459479,
- 0.020652951672673225, 0.015706529840826988, 0.006847856566309929, 0.021982448175549507,
- -0.030683714896440506, -0.012968317605555058, -0.08505997061729431,
- -0.057881761342287064, -0.036011289805173874, -0.11853858828544617, 0.05264090746641159,
- -0.1316770315170288, -0.011087432503700256, -0.040782444179058075, -0.0281827375292778,
- -0.028661035001277924, 0.034982774406671524, 0.036253418773412704, -0.13979513943195343,
- 0.011682464741170406, -0.01533726416528225, 0.09784461557865143, -0.029706737026572227,
- -0.01054353080689907, -0.002709047170355916, 0.09407874196767807, 0.03614047169685364,
- -0.024121062830090523, -0.04496331512928009, -0.02899099513888359, 0.04469190910458565,
- -0.0899910107254982, -0.26162034273147583, 0.04760152846574783, 0.020875539630651474,
- 0.042870111763477325, -0.008610053919255733, -0.06860508024692535, 0.04106961935758591,
- 0.009056932292878628, -0.028370238840579987, 0.05571579188108444, -0.055261336266994476,
- 0.06027950718998909, -0.007363681681454182, -0.09923362731933594, -0.033978015184402466,
- -0.08254662156105042, -0.06036306172609329, 0.013745470903813839, -0.015613711439073086,
- -0.08916870504617691, -0.08475007116794586, 0.05603771284222603, -0.012608153745532036,
- 0.04019919037818909, 0.009839553385972977, 0.028431404381990433, -0.05752432718873024,
- -0.03170261159539223, 0.03954991698265076, 0.044965896755456924, 0.03915929049253464,
- -0.06774632632732391, 0.014607373625040054, -0.0010560730006545782,
- -0.027067340910434723, 0.08634625375270844, 0.012504038400948048, 0.030517272651195526,
- -0.01860135793685913, 0.08464886993169785, 0.07932034879922867, 0.18731819093227386,
- -0.026481468230485916, -0.07459314912557602, 0.02162446454167366, 0.10476195812225342,
- 0.051333338022232056, 0.03605388477444649, -0.01702880673110485, -0.0036073075607419014,
- 0.005869589280337095, 0.021386412903666496, 0.09791545569896698, -0.07048828154802322,
- 0.004548294469714165, -0.09075625240802765, 0.012859627604484558, 0.02507028542459011,
- -0.037886250764131546, 0.12432645261287689, 0.027244318276643753, 0.01184903271496296,
- 0.03401075303554535, -0.06307962536811829, -0.006518592592328787, -0.09314040839672089,
- -0.12005586922168732, -0.013570485636591911, 0.00463840551674366, 0.0012534712441265583,
- -0.02023945190012455, -0.12761399149894714, 0.027825763449072838, -0.01729903370141983,
- -0.0002501967246644199, 0.09838774800300598, -0.07336194068193436, 0.04353760927915573,
- 0.007826798595488071, 0.13332588970661163, 0.04680083319544792, 0.00705166207626462,
- 0.04120635613799095, 0.0909816101193428, 0.038843899965286255, 0.039589639753103256,
- 0.006745859980583191, -0.10506189614534378, 0.0009245672845281661, 0.11546933650970459,
- -0.03351842984557152, 0.11914683133363724, -0.0004942193627357483, -0.0418056957423687,
- -0.07690172642469406, -0.001746932859532535, -0.03392389044165611,
- -0.0077669015154242516, -0.35247331857681274, -0.03680705651640892, 0.07861190289258957,
- 0.03802729398012161, 0.03537405654788017, 0.05787437781691551, 0.0017526547890156507,
- -0.06384781002998352, -0.004141679033637047, -0.11430984735488892, 0.2175574153661728,
- 0.016308801248669624, 0.06389293074607849, -0.07957228273153305, 0.06611353158950806,
- 0.08744803071022034, -0.043567217886447906, 0.017446113750338554, 0.06449412554502487,
- -0.21934759616851807, -0.013853915967047215, -0.009184900671243668, 0.09495887905359268,
- 0.006447743624448776, 0.02867751196026802, 0.06089121103286743, -0.11112397164106369,
- 0.051980696618556976, 0.039590466767549515, 0.002559107029810548, 0.01512693427503109,
- 0.0169477891176939, -0.013051182962954044, 0.12868759036064148, 0.08923555910587311,
- 0.03990448638796806, -0.02399061806499958, 11.889039039611816, 0.07575906068086624,
- 0.04743858799338341, -0.07260523736476898, 0.00319222011603415, -0.03187599033117294,
- 0.015355969779193401, -0.12774336338043213, 0.05141077935695648, 0.14026685059070587,
- -0.04581082612276077, -0.10314673185348511, 0.03006267175078392, -0.085176020860672,
- 0.031342312693595886, -0.047603581100702286, -0.05194832757115364,
- -0.024619996547698975, 0.016534341499209404, -0.03858621045947075, -0.03357516601681709,
- -0.012628935277462006, 0.040595125406980515, 0.023835213854908943, -0.10780732333660126,
- 0.0043776133097708225, -0.0030810043681412935, -0.057646434754133224,
- -0.006925777066498995, 0.023788511753082275, -0.011046537198126316,
- -0.038818832486867905, -0.016802439466118813, -0.03911850228905678,
- 0.056885067373514175, 0.050329651683568954, 0.08061417192220688, 0.026344873011112213,
- 0.025740960612893105, 0.1311204582452774, -0.014061061665415764, 0.03490995615720749,
- 0.028768371790647507, 0.05998420715332031, 0.08149052411317825, 0.10687652230262756,
- 0.009537110105156898, 0.11288683116436005, 0.0045464374125003815, 0.06482476741075516,
- 0.10884615033864975, -0.0015692443121224642, 0.12771183252334595, -0.00954219326376915,
- -0.020123451948165894, 0.0640035942196846, -0.012650657445192337, -0.07347594201564789,
- 0.07405302673578262, 0.045052669942379, -0.03145461156964302, 0.10437434911727905,
- -0.0007951101870276034, 0.12993867695331573, 0.009410255588591099, 0.09554078429937363,
- 0.034813277423381805, 0.12309832870960236, -0.17685534060001373, -0.047765228897333145,
- 0.016810843721032143, -0.07880856096744537, -0.09387132525444031, 0.12602563202381134,
- 0.1220494881272316, -0.047334130853414536, 0.03243856504559517, 0.04401643946766853,
- 0.06047065183520317, -0.07222443073987961, 0.0021838760003447533, 0.06085679680109024,
- 0.026231268420815468, -0.029870234429836273, 0.06680148094892502, 0.02671051025390625,
- 0.06808208674192429, 0.08851061016321182, -0.02939499355852604, -0.09545397758483887,
- -0.04848813638091087, 0.0234001986682415, -0.010652822442352772, -0.04676450416445732,
- 0.00597971398383379, -0.06979423761367798, 0.024369845166802406, -0.20491263270378113,
- 0.08062989264726639, 0.14136172831058502, -0.11218851804733276, -0.03456806391477585,
- -0.04424864426255226, 0.038844067603349686, 0.02917323261499405, 0.045786142349243164,
- -0.03359697759151459, -0.030970323830842972, 0.03073171153664589, 0.07532639056444168,
- -0.04836732894182205, 0.05233536660671234, 0.03556562215089798, -0.024973532184958458,
- -0.019510731101036072, 0.0746307224035263, -0.01819031499326229, -0.02781488560140133,
- 0.08832082897424698, 0.048579100519418716, -0.0691046342253685, -0.06570637226104736,
- -0.007900348864495754, -0.04471695050597191, -0.037677645683288574,
- -0.051990583539009094, 0.053695328533649445, 0.024165242910385132, -0.07061442732810974,
- -0.011481226421892643, 0.03306617587804794, 0.043632764369249344, 0.10424523055553436,
- -0.024445775896310806, 0.10469422489404678, -0.0552973710000515, -0.034342437982559204,
- 0.056313060224056244, 0.0047015235759317875, 0.027918294072151184,
- -0.029733603820204735, -0.015813767910003662, -0.08143998682498932,
- -0.13256840407848358, 0.05850338190793991, 0.07114723324775696, 0.09019153565168381,
- 0.016049789264798164, -0.023242440074682236, -0.021689727902412415,
- -0.020536648109555244, 0.061736978590488434, 0.01675986871123314, 0.015450631268322468,
- 0.07463470101356506, -0.07423755526542664, -0.06689172238111496, 0.10751643031835556,
- -0.03945457562804222, -0.02140534669160843, 0.025451695546507835, -0.021969381719827652,
- 0.07794775068759918, 0.11494327336549759, 0.04508782550692558, 0.049273353070020676,
- 0.027686862275004387, 0.014964813366532326, 0.004707548301666975, -0.02282128296792507,
- 0.020458471029996872, -0.0654439926147461, -0.048391759395599365, -0.041684869676828384,
- 0.048653580248355865, 0.09651079773902893, 0.0018087669741362333, -0.10513757169246674,
- -0.021110830828547478, -0.07831073552370071
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 104,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 40,
- "similarity": 0.9979740381240845
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 54,
- "similarity": 0.997924268245697
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 124,
- "similarity": 0.9977734088897705
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Jacob Snow"],
- "epoch_date_downloaded": 1620691200,
- "epoch_date_modified": 1620777600,
- "epoch_date_submitted": 1620777600,
- "flag": null,
- "report_number": 1407,
- "source_domain": "aclunc.org",
- "submitters": ["Roman Lutz"],
- "title": "California's “Equity” Algorithm Could Leave 2 Million Struggling Californians Without Additional Vaccine Supply",
- "url": "https://www.aclunc.org/blog/californias-equity-algorithm-could-leave-2-million-struggling-californians-without-additional"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "tesla",
- "name": "Tesla"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "tesla",
- "name": "Tesla"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "jovani-maldonado",
- "name": "Jovani Maldonado"
- },
- {
- "__typename": "Entity",
- "entity_id": "california-public",
- "name": "California public"
- },
- {
- "__typename": "Entity",
- "entity_id": "benjamin-maldonado",
- "name": "Benjamin Maldonado"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1408],
- "vector": [
- -0.08658427000045776, 0.058463502675294876, -0.018657797947525978, -0.10073263198137283,
- 0.08220096677541733, 0.012975114397704601, -0.03270038589835167, 0.05427098274230957,
- 0.08175107836723328, -0.1247807964682579, 0.026346806436777115, 0.07222741097211838,
- 0.03002428635954857, -0.07482382655143738, 0.06158281862735748, -0.07056785374879837,
- -0.0630369558930397, -0.07994838058948517, 0.05618710070848465, -0.1056305319070816,
- -0.03879934176802635, -0.040581122040748596, 0.0494387149810791, 0.13667507469654083,
- -0.05167212337255478, 0.022465812042355537, 0.09910038113594055, 0.11066059023141861,
- -0.03238358721137047, 0.008735629729926586, -0.0010347403585910797, -0.0634978786110878,
- 0.10970768332481384, 0.01388463843613863, -0.023161768913269043, 0.08363188803195953,
- -0.02892395108938217, 0.008985632099211216, -0.023927316069602966,
- 0.0012120299506932497, 0.010593749582767487, 0.30950161814689636, 0.025031618773937225,
- -0.039315931499004364, 0.02382553368806839, -0.06976940482854843, 0.0470082126557827,
- 0.033624570816755295, 0.01960727386176586, 0.02966216392815113, -0.018999049440026283,
- 0.04913857579231262, -0.029771627858281136, 0.025594307109713554, -0.14962522685527802,
- 0.08242113143205643, 0.04339691251516342, -0.03932424262166023, 0.06981925666332245,
- -0.09587555378675461, -0.07205405831336975, -0.28485727310180664, -0.031663764268159866,
- -0.1030942052602768, 0.06752023100852966, -0.055043887346982956, -0.026516113430261612,
- -0.0008174385875463486, 0.020033307373523712, 0.082204170525074, 0.05077545344829559,
- -0.02324480004608631, -0.034685179591178894, 0.03796456754207611, 0.013216488063335419,
- -0.02863418683409691, 0.01977204717695713, 0.25378891825675964, -0.17688414454460144,
- -0.015581589192152023, 0.1228645071387291, -0.10587023198604584, 0.5212370753288269,
- -0.02960999310016632, -0.019285446032881737, -0.05614590272307396, 0.09711077064275742,
- 0.020871594548225403, 0.05486088618636131, 0.06928114593029022, -0.05750584602355957,
- 0.043533459305763245, -0.06907901167869568, 0.057113274931907654, 0.07463516294956207,
- 0.0384962372481823, -0.017690807580947876, 0.08974643051624298, -0.01770876906812191,
- -0.05309900641441345, 0.03386976197361946, -0.03675584867596626, 0.08824093639850616,
- 0.06887849420309067, -0.0351044163107872, 0.02030576579272747, 0.1412796825170517,
- -0.023317240178585052, 0.07974039763212204, -0.09355376660823822,
- -0.0018514639232307673, 0.00003662156086647883, 0.02880588173866272,
- -0.022180959582328796, 0.02904539927840233, -0.09421618282794952, -0.004971109796315432,
- 0.046805065125226974, 0.13219191133975983, 0.007523376494646072, -0.04167831689119339,
- 0.03746490180492401, 0.0816187858581543, -0.08054409176111221, -0.009538152255117893,
- -0.038795728236436844, -0.08154357224702835, -0.03424402326345444,
- -0.055022284388542175, 0.031603097915649414, -0.06663116812705994, -0.16057759523391724,
- 0.057489268481731415, 0.13563114404678345, 0.003285808488726616, -0.07317992299795151,
- -0.06421717256307602, -0.07999461889266968, 0.06757281720638275, -0.05460232123732567,
- -0.0321178063750267, 0.0033564893528819084, 0.0823882520198822, -0.003959628287702799,
- 0.1329163759946823, 0.07731616497039795, -0.05495801568031311, -0.03278035297989845,
- 0.016243141144514084, -0.0103315319865942, 0.11328794062137604, -0.14400731027126312,
- -0.07232612371444702, 0.0418253131210804, -0.02438989095389843, 0.6689133048057556,
- 0.13259835541248322, 0.21360743045806885, 0.025341184809803963, -0.013491257093846798,
- 0.19548647105693817, 0.0009461010340601206, 0.032128285616636276, -0.09166283905506134,
- -0.05320307984948158, 0.02052583172917366, -0.07164624333381653, -0.05896320939064026,
- 0.06005140393972397, -0.003347456920892, 0.13838402926921844, 0.04148850217461586,
- 0.12102237343788147, -0.01084937434643507, -0.1301218569278717, -0.04866986349225044,
- 0.09390586614608765, 0.009099260903894901, -0.08299357444047928, -0.05323151871562004,
- 0.0696784108877182, 0.1332177221775055, -0.10682463645935059, 0.01409908290952444,
- -0.05294502526521683, 0.042625341564416885, -0.03346307575702667, 0.01627867855131626,
- -0.07004473358392715, 0.03598179295659065, 0.023195941001176834, 0.08040184527635574,
- 0.05047764629125595, -0.13463260233402252, -0.06433235108852386, 0.10141526907682419,
- -0.020237738266587257, -0.027378039434552193, 0.006790951360017061,
- -0.09122669696807861, 0.048436157405376434, 0.02036663331091404, 0.12618382275104523,
- -0.143326073884964, 0.03840566426515579, -0.024733982980251312, -0.018238438293337822,
- 0.04610458016395569, -0.0053068227134644985, -0.07104272395372391, -0.07394344359636307,
- 0.08001895248889923, 0.040421582758426666, 0.06565743684768677, 0.1027025431394577,
- -0.061497196555137634, 0.021856999024748802, 0.07705030590295792, 0.03871139511466026,
- -0.0019750262144953012, 0.04833428934216499, 0.10846636444330215, 0.0007264848682098091,
- -0.014143360778689384, 0.05843646079301834, -0.01467131171375513, 0.04912757873535156,
- -0.008345095440745354, 0.07518569380044937, 0.036517079919576645, -0.0738113522529602,
- 0.011379658244550228, -0.0012448003981262445, 0.021107584238052368, 0.12233743071556091,
- -0.0687311664223671, -0.06783829629421234, -0.014199687168002129, 0.0009373758803121746,
- 0.008429111912846565, -0.0008855789201334119, 0.10252359509468079, 0.06751455366611481,
- 0.10935042053461075, 0.029614919796586037, 0.05908707529306412, 0.047944486141204834,
- 0.04959341138601303, 0.012297923676669598, 0.11236090958118439, 0.001110487966798246,
- -0.07784846425056458, -0.014498131349682808, 0.016788871958851814, 0.025199037045240402,
- 0.04568497836589813, -0.06690049171447754, -0.04990127310156822, -0.08490078151226044,
- -0.02566535398364067, -0.05982377752661705, -0.05041002854704857, 0.016632121056318283,
- 0.10401272773742676, -0.02116585336625576, -0.0587935596704483, -0.11621332913637161,
- 0.03865913674235344, 0.08314942568540573, 0.0038139799144119024, -0.012718993239104748,
- -0.11827048659324646, 0.004251226782798767, -0.05376748740673065, 0.02851070836186409,
- -0.044472187757492065, -0.005789776798337698, -0.029685724526643753,
- -0.07412194460630417, 0.013314856216311455, -0.04716811701655388, -0.007353790104389191,
- -0.05793736129999161, -0.08174474537372589, -0.05128290131688118, -0.038644276559352875,
- 0.05133197084069252, -0.012368882074952126, 0.022725725546479225, 0.012631886638700962,
- 0.027667628601193428, -0.011981534771621227, -0.08010679483413696, 0.07433336973190308,
- 0.005795582197606564, -0.02504529431462288, 0.08609675616025925,
- -0.00038749672239646316, 0.06544812023639679, 0.04121925309300423, -0.07634599506855011,
- -0.057554468512535095, 0.04401308670639992, -0.06824680417776108, 0.02109335921704769,
- -0.01753547042608261, 0.030247921124100685, -0.0282010305672884, -0.008425061590969563,
- 0.0687079206109047, -0.04466881603002548, -0.08993589133024216, -0.10975057631731033,
- 0.0647924542427063, -0.011735626496374607, -0.024249384179711342, 0.01417507603764534,
- -0.001632004277780652, 0.07580754905939102, -0.006447454448789358, 0.021648956462740898,
- 0.006405511870980263, 0.03365466371178627, -0.031851187348365784,
- -0.0022418221924453974, 0.06763821095228195, -0.051207609474658966, 0.02225937321782112,
- 0.0674264132976532, 0.43250682950019836, -0.14276783168315887, 0.09918143600225449,
- 0.09371811151504517, 0.04973413050174713, 0.08613541722297668, -0.04704148322343826,
- 0.08137548714876175, 0.06715668737888336, 0.11459480226039886, 0.11335530132055283,
- -0.02724621258676052, -0.05156328156590462, -0.07857108861207962, 0.10300945490598679,
- 0.006302391178905964, 0.03846994787454605, -0.030693484470248222, -0.13479699194431305,
- -0.001901514595374465, 0.03843094781041145, -0.07318299263715744, -0.008261067792773247,
- 0.013486480340361595, -0.0536004975438118, -0.015315033495426178, -0.026203149929642677,
- -0.011382709257304668, -0.055867213755846024, -0.00868238415569067,
- -0.03796035423874855, 0.07209138572216034, -0.014604496769607067, 0.034128040075302124,
- -0.14888152480125427, 0.0416153147816658, -0.11259476095438004, -0.0672064870595932,
- 0.059781529009342194, -0.004791331477463245, 0.04008370637893677, 0.04240328446030617,
- -0.08056018501520157, 0.036150816828012466, 0.016113756224513054, -0.06486086547374725,
- 0.03362562879920006, 0.08197229355573654, 0.042229581624269485, 0.10226884484291077,
- 0.1262832134962082, -0.058021802455186844, -0.04848359525203705, -0.07380234450101852,
- 0.11137035489082336, 0.14505532383918762, -0.03108970634639263, -0.03613359481096268,
- -0.033131297677755356, -0.03254954144358635, 0.014198949560523033, -0.09947999566793442,
- -0.087950699031353, 0.02080523408949375, -0.05239133909344673, 0.040599700063467026,
- -0.021345973014831543, -0.004611857235431671, -0.25799643993377686,
- -0.022783806547522545, -0.04252692684531212, -0.011353474110364914, 0.13482049107551575,
- -0.057078201323747635, 0.02586342953145504, 0.045500919222831726, -0.05795542150735855,
- -0.00478342454880476, -0.11054492741823196, 0.04114675521850586, -0.023877613246440887,
- 0.02975182980298996, 0.05437630042433739, 0.029461964964866638, -0.021562442183494568,
- 0.10328821837902069, -0.1331566423177719, 0.08514837920665741, 0.006020751781761646,
- 0.014536166563630104, 0.04184221103787422, -0.060101982206106186, 0.06282572448253632,
- 0.06921544671058655, -0.04913926497101784, 0.06234074383974075, -0.04971516504883766,
- -0.04240789636969566, -0.08904635161161423, -0.09988175332546234, -0.061155956238508224,
- -0.09009064733982086, 0.05927147716283798, -0.12773378193378448, -0.04618233069777489,
- -0.02538338117301464, 0.008979106321930885, 0.025057345628738403, 0.051322177052497864,
- 0.06457234174013138, -0.1521470993757248, 0.07994166761636734, -0.048331987112760544,
- 0.10079717636108398, -0.01914951391518116, 0.002824676688760519, -0.0026151484344154596,
- 0.1076437458395958, 0.086358442902565, 0.07090115547180176, -0.011837413534522057,
- -0.05506226047873497, -0.01672503538429737, -0.09548822790384293, -0.4369976818561554,
- 0.05617101863026619, -0.01430608332157135, 0.04827939346432686, -0.013081278651952744,
- -0.009145967662334442, 0.053151924163103104, 0.020467346534132957,
- -0.062412749975919724, 0.09659874439239502, -0.0452377088367939, 0.03070853278040886,
- 0.012906541116535664, -0.07410087436437607, -0.06560753285884857, -0.04460287094116211,
- -0.06326302140951157, 0.0833394005894661, -0.0025377916172146797, -0.11318028718233109,
- -0.1289137452840805, 0.023328974843025208, -0.04109903424978256, 0.02705906517803669,
- -0.00789888110011816, 0.015656493604183197, -0.06002653017640114, -0.03841497376561165,
- 0.06810563802719116, 0.07631021738052368, 0.052535004913806915, -0.06985518336296082,
- -0.00728581752628088, 0.03211824595928192, -0.07513851672410965, 0.17570264637470245,
- 0.04048241674900055, -0.0001028810947900638, -0.08083678781986237, 0.08176465332508087,
- 0.05711229890584946, 0.18327994644641876, -0.012914145365357399, 0.06501173973083496,
- 0.04576253145933151, 0.17001953721046448, 0.05472278967499733, 0.025639312341809273,
- -0.02438396029174328, -0.03111700899899006, 0.014969282783567905, -0.0335119292140007,
- 0.022206781432032585, -0.08721863478422165, -0.04170314222574234, -0.007311541121453047,
- -0.01425002608448267, 0.012263938784599304, 0.047485776245594025, 0.1822958141565323,
- 0.008975503966212273, 0.024037355557084084, -0.0068745301105082035,
- -0.046048663556575775, -0.02538341097533703, -0.06636074930429459, -0.10599476844072342,
- -0.006977052893489599, -0.016408948227763176, 0.03341643139719963,
- -0.056613653898239136, -0.1496562659740448, 0.009620285592973232, -0.04204421862959862,
- 0.005045258440077305, 0.12943795323371887, 0.024550490081310272, 0.016232959926128387,
- -0.01758551225066185, 0.1356998085975647, 0.065610371530056, -0.058076802641153336,
- 0.05739325284957886, 0.0814128965139389, 0.02545769512653351, 0.05116037279367447,
- -0.05054819956421852, -0.050146039575338364, 0.025496024638414383, 0.16699688136577606,
- -0.07628049701452255, 0.09166775643825531, 0.07206100225448608, -0.033719420433044434,
- -0.0704922154545784, 0.024870233610272408, 0.021235134452581406, 0.04206843301653862,
- -0.45316082239151, -0.015743345022201538, 0.1199568510055542, 0.03902844712138176,
- 0.03003227896988392, 0.10734683275222778, 0.05380993336439133, -0.04684428498148918,
- -0.09886641055345535, -0.07099688053131104, 0.11111198365688324, -0.03078487142920494,
- 0.05245926231145859, -0.08823460340499878, 0.04086150974035263, 0.09152323007583618,
- -0.06816455721855164, -0.018337715417146683, 0.09388746321201324, -0.23973365128040314,
- -0.011644227430224419, -0.06462371349334717, 0.14964494109153748, 0.04512310028076172,
- 0.017445089295506477, 0.07067076116800308, -0.05524292588233948, 0.04267670959234238,
- 0.08352558314800262, -0.0012530181556940079, 0.04814769700169563, 0.011339717544615269,
- -0.022500861436128616, 0.1343591958284378, 0.05103212222456932, 0.06937467306852341,
- -0.021215710788965225, 12.120406150817871, 0.08075162023305893, 0.025531817227602005,
- -0.0955413356423378, 0.06871944665908813, -0.06286591291427612, 0.011595840565860271,
- -0.0798313319683075, 0.03640243783593178, 0.15059712529182434, -0.03625386208295822,
- -0.04112030193209648, -0.031166881322860718, -0.10893416404724121, 0.006764023564755917,
- -0.08659963309764862, -0.11971338838338852, -0.02346181869506836, 0.0475182831287384,
- -0.02307870239019394, 0.02165166847407818, -0.012603165581822395, 0.06762336939573288,
- 0.014528063125908375, -0.06912022083997726, 0.10458382964134216, 0.0531146377325058,
- 0.017888765782117844, 0.006793912500143051, 0.047910869121551514, -0.054278891533613205,
- 0.027368340641260147, 0.04060571640729904, -0.017328187823295593, -0.04425715655088425,
- 0.08523860573768616, 0.07749590277671814, 0.07794839888811111, 0.02060953713953495,
- 0.121830515563488, 0.03488802909851074, 0.053580060601234436, 0.037095729261636734,
- 0.01900572143495083, 0.0335225947201252, 0.05170845985412598, 0.08563687652349472,
- 0.11761470884084702, 0.000441773037891835, 0.015086174011230469, 0.10123633593320847,
- -0.02529035322368145, 0.16706806421279907, 0.010803083889186382, -0.040234968066215515,
- 0.022534145042300224, -0.02446615695953369, -0.067050501704216, 0.041130851954221725,
- 0.12057151645421982, -0.06332891434431076, 0.0941196158528328, -0.029235031455755234,
- 0.10693184286355972, -0.024956312030553818, 0.038415536284446716, 0.0894496813416481,
- 0.04062773287296295, -0.09931525588035583, -0.09947632253170013, 0.027853669598698616,
- -0.10843463242053986, -0.052570898085832596, 0.08676426857709885, 0.17270927131175995,
- -0.05806093290448189, 0.08828089386224747, -0.06005879491567612, 0.0016917586326599121,
- -0.0701780840754509, -0.03855902701616287, 0.03646538779139519, 0.035847317427396774,
- 0.022974519059062004, 0.08218245208263397, 0.02203584648668766, 0.08915264159440994,
- 0.09425404667854309, -0.052519213408231735, -0.08357706665992737, -0.10521110147237778,
- 0.07679042220115662, -0.03798428922891617, -0.05375280976295471, 0.06569849699735641,
- -0.05844304710626602, 0.09698417037725449, -0.16140036284923553, 0.061850521713495255,
- 0.06728623807430267, -0.12347808480262756, 0.020911002531647682, -0.01118240412324667,
- 0.020258447155356407, -0.01614847406744957, 0.055341385304927826, -0.023701481521129608,
- -0.020397210493683815, 0.024076193571090698, 0.049233611673116684,
- -0.046112265437841415, 0.06245317682623863, 0.08512525260448456, -0.1278458535671234,
- 0.07254450768232346, 0.0792776495218277, -0.03205236420035362, -0.06660940498113632,
- 0.07279078662395477, 0.025249166414141655, -0.09213048964738846, -0.054947178810834885,
- -0.056998346000909805, -0.04955321550369263, -0.06731617450714111, -0.06569957733154297,
- 0.022716892883181572, 0.056578826159238815, -0.08617876470088959, -0.008311135694384575,
- -0.006314292084425688, 0.05363690108060837, 0.10555931180715561, -0.003805900225415826,
- 0.046548403799533844, -0.11872193217277527, -0.03544415533542633, 0.02369254268705845,
- 0.015364352613687515, 0.08139535039663315, -0.01071257796138525, -0.0019183707190677524,
- -0.05094757676124573, -0.08787254244089127, 0.0021428249310702085, 0.11712731420993805,
- 0.05595039948821068, 0.005349606275558472, 0.046737976372241974, -0.11029363423585892,
- -0.09608501940965652, 0.12138765305280685, 0.06681981682777405, 0.03550998494029045,
- 0.06969879567623138, -0.10264122486114502, -0.031189847737550735, 0.18592901527881622,
- -0.038272924721241, 0.00796780176460743, 0.020563099533319473, 0.012363540939986706,
- 0.10122565180063248, 0.09035452455282211, 0.069101981818676, 0.029508240520954132,
- 0.005746135953813791, -0.04750467464327812, 0.06494613736867905, -0.0670594722032547,
- 0.07680463790893555, 0.006589065305888653, -0.1326436549425125, -0.08968141674995422,
- -0.0017282088520005345, 0.10399763286113739, -0.021631162613630295,
- -0.09516362845897675, -0.011190508492290974, -0.06286455690860748
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 105,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 20,
- "similarity": 0.9988086819648743
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 4,
- "similarity": 0.9985759854316711
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 67,
- "similarity": 0.9985650777816772
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Neal E. Boudette"],
- "epoch_date_downloaded": 1625529600,
- "epoch_date_modified": 1625616000,
- "epoch_date_submitted": 1625616000,
- "flag": null,
- "report_number": 1408,
- "source_domain": "nytimes.com",
- "submitters": ["Anonymous"],
- "title": "Tesla Says Autopilot Makes Its Cars Safer. Crash Victims Say It Kills.",
- "url": "https://www.nytimes.com/2021/07/05/business/tesla-autopilot-lawsuits-safety.html"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "facebook-messenger",
- "name": "Facebook Messenger"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "scatter-lab",
- "name": "Scatter Lab"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "korean-people-with-disabilities",
- "name": "Korean people with disabilities"
- },
- {
- "__typename": "Entity",
- "entity_id": "korean-people-of-gender-minorities",
- "name": "Korean people of gender minorities"
- },
- {
- "__typename": "Entity",
- "entity_id": "korean-facebook-messenger-users",
- "name": "Korean Facebook Messenger users"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [
- 2356, 2034, 1425, 1424, 1423, 1422, 1421, 1420, 1419, 1418, 1417, 1416, 1409
- ],
- "vector": [
- -0.03656077807625899, 0.07496138547475521, 0.03224337946337003, -0.10716398977316342,
- 0.0904899795468037, -0.0001845836120012861, 0.018346216135586683, 0.058174486057116434,
- 0.043366835810817204, -0.1299061459990648, 0.004393907407155404, 0.049450783632122554,
- 0.008755210294531515, -0.05563006593057743, 0.018663710502621073, -0.059841334175031916,
- -0.08281332540970582, -0.005308712277418146, 0.0025870006065815687,
- -0.13084141852763984, -0.07267619526157013, -0.005484021465795545,
- 0.00043977660187430534, 0.07604837045073509, -0.08222793329220551, 0.03892950252002965,
- 0.10798105826744667, 0.08934878500608298, -0.05277994404045435, 0.04555794739952454,
- -0.00361962068396119, -0.07733897906011687, 0.13472918019844934, 0.012374165821641397,
- 0.006180573530190696, 0.07700660051061557, 0.05060884714699709, 0.01913777862388927,
- -0.00858833891330645, -0.012716886802361561, 0.022664723792471565, 0.22123116140182203,
- 0.006591750770055044, -0.031060892300536998, 0.04237736790226056, -0.05578311045582478,
- -0.011908528493502392, 0.05918160295830323, -0.010913978975552779, 0.005375256690268333,
- -0.005926517680144081, 0.035180554581949346, -0.026582984970166132,
- 0.038623560864764914, -0.10827596141741826, 0.029643744982492466, 0.035551663810530536,
- 0.014323116392076302, 0.07051241053984715, -0.07463174771804076, -0.011970830002190689,
- -0.21675187807816726, -0.035178006682634495, -0.08358314174872178, 0.04982052700450787,
- -0.0798308986883897, -0.03257993465432754, 0.042995234879736714, 0.019447856824486874,
- 0.05844234976057823, 0.0394595584903772, -0.034394740688255224, -0.010601353097277192,
- 0.014332916721916543, -0.024708666677515093, -0.03944684178210222,
- -0.014679818897723006, 0.15784175063555056, -0.10160929308487819, -0.008133187961692993,
- 0.10272173296946746, -0.12235984865289468, 0.38062971142622143, 0.0155032342299819,
- -0.025952340533527043, 0.04232221272272559, 0.09610881369847518, 0.013171284549081555,
- 0.03801112682916797, 0.03717394130161175, -0.030162735376507044, 0.0042961303753635055,
- -0.037375240515057855, -0.02197971796760192, 0.024445844079869297, 0.059021164304935016,
- -0.03159192845655175, 0.0072304216088154, 0.007911943955920063, -0.03070328775076912,
- -0.00694074344713814, -0.00875053897079152, 0.11609978142839211, 0.09616093151271343,
- -0.035978140810934395, -0.0093556042187489, 0.04758549642820771, -0.08784481653800377,
- 0.04409020422742917, -0.047313633446510024, 0.017233189446135208, -0.01224182193310788,
- 0.05102772609545635, 0.005816841068176122, 0.02358669209150741, -0.04688665156181042,
- 0.019299741113522593, 0.0691575979670653, 0.07136863813950466, 0.029764206435244817,
- 0.0007592569767998961, 0.06317368407662098, 0.05924356248802864, -0.08835354304084411,
- -0.010532043256367056, -0.04593813920823427, -0.007660225947172596,
- -0.02598879733704962, -0.028405473625753075, 0.034897007079472624, -0.0640969190459985,
- -0.22058390195553118, 0.018367693186379395, 0.04105877482260649, 0.00708792578930465,
- -0.03946697253447313, 0.019678091612429574, -0.07064639375760005, 0.030472228052810982,
- -0.03578196419402957, -0.02134972599406655, 0.04181665017341192, -0.009669054398098243,
- 0.032258886960335076, 0.11232613256344429, 0.03360315512579221, -0.051233600896711536,
- -0.07877627244362465, -0.007994134708916625, -0.03562039118976547, 0.08471403213647696,
- -0.14138586475298956, -0.05408960022032261, 0.012423172646846909, -0.02248505803828056,
- 0.6752004256615272, 0.09824018710507797, 0.18417387684950462, 0.03804833809128748,
- -0.02134441045256188, 0.15865667107013556, -0.017602010759359334, 0.06616385725255196,
- -0.08038409254871882, -0.049791757232294634, 0.05193047325771589, -0.08686214198286717,
- -0.06209896848751949, 0.021038477738889363, 0.0057132606251308555, 0.1006244168831752,
- 0.015463645037156172, 0.09197220836694424, -0.021807833252331384, -0.10856138112453315,
- -0.027566807125157747, 0.058729042657292806, 0.014767638909128996, -0.11747415764973713,
- -0.0493173198058055, 0.03036688809068157, 0.09264303715183185, -0.073307221612105,
- 0.021658007198801406, -0.07331836327480581, 0.04425086539525252, -0.021917233494325325,
- 0.04398514199405886, -0.020297669098139383, 0.07101679242287691, 0.006436677936177988,
- 0.04444015169372925, -0.011295476892533211, -0.060943490180831686,
- -0.004441048754065728, 0.0952633865750753, 0.010096569090259995, -0.0247613604252155,
- 0.11101112170861317, -0.08489951004202549, 0.0455322890327527, -0.011233230533364873,
- 0.1177592661518317, -0.12124515382143167, 0.009983280978093926, -0.028518136519079026,
- -0.029060286881688695, 0.03335482569841238, 0.0006989344110479578, -0.08351371408655094,
- -0.07224290244854413, 0.1182190294449146, 0.029985743218835872, 0.021670262329280376,
- 0.035124099222370066, -0.011424993469308201, 0.03698796574742748, 0.06978841871023178,
- 0.02038309293297621, -0.021931957453489304, 0.05293243321088644, 0.0400975881359325,
- -0.07598861464514182, -0.052412545595031515, 0.025597543903411582, 0.033251117708949514,
- -0.010222721558350783, -0.019096315113039546, 0.05665082914324907,
- -0.0021096246514039543, -0.026051017545306913, 0.018003257331796564,
- 0.038459672301542014, 0.008491232561377378, 0.11242617036287601, -0.05886038149205538,
- -0.044271723546374306, -0.03896902866948109, -0.01961079460138885, 0.03133363330897947,
- 0.004085907551388328, 0.08387052726287109, 0.1018161212022488, 0.06743369939235541,
- 0.03649907652288675, 0.035162535191585235, 0.057896936169037454, 0.06036613193842081,
- 0.0050290350157480975, 0.0970933110668109, 0.0021769854043108914, -0.04289284083419121,
- -0.01052954831930737, 0.005619951111909289, 0.01626361834888275, 0.01244110854056019,
- -0.06455087719055322, -0.038168420871863, -0.025192777160555124, -0.04520493763713883,
- -0.09678121828115903, 0.011986217945097731, 0.05647224302475269, 0.035966456814024314,
- -0.05206637858198239, -0.11776843838966809, -0.09221924927372199, -0.009529354782828774,
- 0.09437669011262748, -0.03034659317479684, -0.02476386301434384, -0.11126838796413861,
- -0.0021840214165142523, -0.03735633662794358, 0.0556944737640711, -0.008621008762230094,
- 0.016060442592088994, 0.014971971270055152, -0.028757807727043446, 0.05937508178445009,
- -0.020233810315123543, 0.00506651820614934, 0.006512186794470136, -0.08064894005656242,
- -0.06974823801563336, 0.02317090635187924, 0.00041231072436158475,
- -0.017292128799733922, 0.021303831993673857, 0.041870682643583186, 0.06470275584321755,
- -0.03229924697930423, -0.013588678199224748, 0.04512831547225897, -0.04948445696097154,
- 0.002455005368504387, 0.09276184239066564, -0.03704503450829249, 0.01584884509569607,
- -0.014233422590992771, -0.09437341243028641, -0.04562805077204338, 0.018077890740152307,
- -0.07628006889269902, 0.05815881290114843, 0.009866314317780333, -0.004694381406387458,
- -0.03742277120741514, -0.014898115826116946, 0.08586228882464078, -0.05964647018565582,
- -0.09534242519965538, -0.0480605148925231, 0.09908493149739045, 0.005799288897273632,
- -0.023959046964032147, 0.021298862559398495, -0.08366760038412534, 0.03766320846401728,
- -0.02064028582893885, -0.0008489999185817746, 0.03770506163485921, 0.05753689621969198,
- -0.0045332260644779755, 0.005794480657921388, 0.051674195780203894,
- -0.015572377820857443, 0.0345346618604918, 0.08988064556167676, 0.4361110329627991,
- -0.15764504155287376, 0.08432216053971878, 0.09429281319563206, 0.013924083600823697,
- 0.028172142033536848, -0.04422989258399376, 0.08109534417207424, 0.0538057444187311,
- 0.09664938942744182, 0.09495820878789975, -0.05820782568592291, -0.019638963408606987,
- -0.06122799704854305, 0.0807995950946441, 0.021710395992088776, -0.003366026454246961,
- -0.015052875418824932, -0.10256137383671907, -0.023256329998660546,
- 0.025391684209283154, -0.041793960361526564, 0.018731256597675383, -0.04952755570411682,
- -0.07027070224285126, 0.010112318890885664, 0.04687987683484188, 0.07771593991380471,
- 0.0020576322052735263, 0.03128220726592609, -0.04407428721718203, 0.020820802964198474,
- 0.04315823606716899, 0.01700424619216042, -0.15794852375984192, 0.037227149986742564,
- -0.10056673964628807, -0.06822802069095465, 0.07064940608464755, -0.016961643794694774,
- 0.04406074189598887, 0.07951659795183402, -0.0052676606574095786, 0.04106291272854343,
- -0.05032698494883684, -0.05639260018674227, 0.025554341013328388, 0.03912116665966236,
- 0.03532631716762598, 0.10221656440542294, 0.137491918527163, -0.04279799864273697,
- -0.020781565099381484, -0.06617380334780766, 0.07864930022221345, 0.09319386831842937,
- -0.038431974629370064, 0.04061505083854382, -0.005911076074251189, -0.04937113186595245,
- -0.01990410262862077, -0.045730347673480325, -0.09042964761073773,
- -0.038056840761922874, -0.07173062517092778, 0.07118576363875316, 0.04297918023971411,
- -0.03165660177070934, -0.16541746258735657, -0.02935041182746108, -0.03484692037678682,
- -0.02056511964362401, 0.12153027034722842, -0.05822184538611999, 0.06010810844600201,
- 0.013379335976563968, -0.006532716529014019, -0.005984653969510243, -0.1194317157451923,
- 0.0071906630272189015, -0.03335715885847234, 0.04785648102943714, 0.03884179349272297,
- 0.06363777042581485, -0.03085333307255776, 0.07698976936248633, -0.10661731545741741,
- 0.06609622245797744, -0.000025945449194226127, -0.06080331280827522,
- 0.04516414524270938, -0.029700212261209693, 0.00778916166522182, 0.025247048300046187,
- -0.07621617959095882, 0.022433040417336788, -0.02580389130385951, -0.03463638570302954,
- -0.0984301372216298, -0.07529008789704396, -0.05542786630730216, -0.06711348232168418,
- 0.051632365641685635, -0.06699700338336137, 0.013401798330820523, -0.021168637250621732,
- -0.006774867110205098, -0.025778712919698313, 0.0040672927772483, 0.02630933395658548,
- -0.1665920649583523, -0.025969557034281585, -0.0016090321497848402, 0.04838895324904185,
- -0.08324694312894, -0.052955955266952515, 0.04353960244379078, 0.11279800648872669,
- 0.04002186999871181, 0.012876176454413395, 0.0028784282935353424, -0.04756442371469278,
- 0.08646623847576287, -0.11554735555098607, -0.4471046970440791, 0.056895111902402,
- 0.017792405388228454, 0.05610035273891229, 0.01943816688771431, -0.043176811546660386,
- 0.07368874721802197, 0.028253750875592232, -0.060876422167684026, 0.06969229361185661,
- -0.06304599402042535, 0.023306294810026884, -0.008362908829719974, -0.06304693300850116,
- -0.0018137468813130488, -0.08464611436312015, -0.023826265855369948,
- 0.04248276467506702, -0.006804071133956313, -0.060561815437932424, -0.10098542903478329,
- 0.022206536404645212, -0.025206358960041635, 0.020523730790815674, 0.014259450818197085,
- 0.0020279603553577685, -0.06063048600649031, -0.02029657018227646, 0.03477512385982733,
- 0.04779961791176062, 0.03204715360278407, -0.07597040929473363, 0.01633084026308587,
- 0.09731804407559909, -0.0003353705844626977, 0.13907193908324608, 0.024455469853889484,
- 0.010304356907279445, -0.09992360323667526, 0.03592767423162094, 0.07956830813334538,
- 0.18613484731087318, 0.019079054813258924, 0.009274131618440151, -0.0037457636163498345,
- 0.1200192507642966, 0.047592437969377406, 0.008127591326438751, -0.03554683522536205,
- 0.01824700837292207, 0.018209100915835455, 0.004331673164135561, 0.05255948121731098,
- -0.0758730832200784, -0.017148904753132507, 0.009472799165031085, 0.007149389712139964,
- -0.05070008244365454, 0.0027896632762769093, 0.19151986963473833, 0.03646816003422897,
- 0.01712554554419162, 0.044376811729027674, -0.07026708627549502, 0.022228840734057415,
- -0.08743384738381092, -0.0898491618438409, -0.02158602025324049, 0.009216417343570637,
- 0.008717525998900574, -0.056011660311084524, -0.11245847894595219, -0.03561818442092492,
- 0.0149166788905859, 0.025065956099961813, 0.0959566026352919, -0.010805631625072028,
- 0.007216266781772272, -0.027902828207096227, 0.10791575937316968, 0.04493476540889018,
- 0.03938212992551808, 0.057474139433067575, 0.06503235820967418, 0.008241040721678963,
- -0.010286930331718534, -0.01995292821755776, -0.08907942301951922, -0.03675066027790308,
- 0.13003169286709565, -0.043364622128697544, 0.12074132779469857, 0.06898079687156357,
- -0.03640701174915124, -0.03541380840425308, 0.031401380753287904, -0.010265200336177189,
- 0.014496717136353254, -0.3959349485544058, -0.02533784809593971, 0.11898739635944366,
- 0.07744501960965303, 0.013569386165517453, 0.13988379675608414, 0.00828241821951591,
- -0.04199099433250152, -0.0587209676607297, -0.08792261951244794, 0.17606213173040977,
- -0.0227554106610254, 0.06443604511710313, -0.0901476379770499, -0.0009456193388009873,
- 0.08259317164237683, -0.049808093561575964, 0.007697961860685609, 0.0558836767449975,
- -0.1958260782636129, 0.009536866035957176, -0.05406602314458443, 0.14851666528445023,
- 0.01960470896357527, 0.031967447246783055, 0.07394048571586609, -0.029937896577533908,
- 0.030707634663066037, 0.06214032837977776, -0.0041858279918624945, 0.08788564801216125,
- -0.008593205004357375, -0.0018957160735646118, 0.11325750786524552, 0.08193671603042346,
- 0.04954906259305202, -0.06014285766734527, 11.97480003650372, 0.06875400044597112,
- 0.08390432338301952, -0.0846656532241748, -0.012166838072097072, -0.038668305828021124,
- 0.030711726679538306, -0.12207753927661823, 0.020549091725395277, 0.11471339085927376,
- -0.009898960106791211, -0.033895420304571204, -0.011215880575876396,
- -0.08510368030804855, 0.01143047928165358, -0.028190754380865164, -0.0578788285358594,
- -0.021406584025289003, 0.04485186531495016, -0.029820213542104915, -0.04333967715501785,
- 0.03633198182349308, 0.06413323948016533, 0.014891579388999023, -0.059087347239255905,
- 0.033496619103691325, 0.0008479217067360878, 0.0059104566104136985,
- -0.007714668398525996, 0.01808238201416456, 0.03385309859787902, 0.043261575629003346,
- 0.06973691915090267, -0.014436657719600659, 0.07425014531383148, 0.05772434096210278,
- 0.032397062938588746, 0.05210664811042639, 0.06609413715509269, 0.08736811950802803,
- 0.010844718145493131, -0.006907928376816786, 0.01419760139945608, 0.06891716472231425,
- 0.05204250405614193, 0.044161382982005865, 0.05910197244240688, 0.11412485516988315,
- 0.023451469619221125, 0.05099741512766251, 0.07612857193900989, 0.007027466960537892,
- 0.09960283740208699, 0.01759300458853921, -0.008418126927258877, 0.07260164899763857,
- -0.02848725443562636, -0.08488316977253327, 0.11097767375982724, 0.0656535648382627,
- -0.041321657705478944, 0.11832382071476716, 0.04992531512219172, 0.0789981114749725,
- -0.0021775115567904254, 0.04851966157842141, 0.06173390207382349, 0.054707507173029274,
- -0.10374561181435218, -0.10806399354567894, 0.04502201252258741, -0.08891651808069302,
- -0.08353506573117696, 0.05579130752728535, 0.08894072874234273, -0.048106019313518815,
- 0.07018897094978736, -0.0371353360466086, 0.06164073027097262, -0.014280873816460371,
- -0.009338784067390056, 0.07147186994552612, -0.0632411025177974, 0.040159186778160244,
- -0.003429459918362017, 0.06630373230347267, 0.11147187994076656, 0.06727049664522593,
- -0.0008513022767147049, -0.061106024453273185, -0.0815489822282241, 0.10509846932612933,
- -0.001243930489111405, -0.06648886060485473, 0.022657654812344566,
- -0.026521737078348033, 0.021675187163054943, -0.1529155746102333, 0.06164061091840267,
- 0.11153622200855842, -0.12004014677726306, -0.04221329155664604, -0.019230325992863912,
- 0.06341919288612329, 0.002895427679714675, 0.04239304184627075, -0.05844752261271843,
- 0.0042522822936566975, 0.02842550355797777, 0.033436333832259364, -0.020446852386857454,
- 0.05065902007313875, 0.09405342489480972, -0.07170790978349172, 0.013622563260679062,
- 0.06153520117872036, -0.03772137571985905, -0.011096759735105129, 0.04131187040072221,
- -0.010898995401266102, -0.06972099683032586, -0.05336261913180351, -0.06484541841424428,
- -0.038880276297836996, 0.007231674945125213, -0.03577252649343931, 0.02733074461754698,
- 0.01582614819143111, -0.0022911433703624285, -0.02308799190303454, 0.02701698154067764,
- 0.09165755487405337, 0.06832665835435574, 0.01868376106386467, 0.06509545015601012,
- -0.05032027172497832, -0.03403781442326503, 0.04650043481244491, 0.05415865377737926,
- 0.07208253357272881, -0.02137973464022462, -0.043707884704837434, -0.06273147091269493,
- -0.09657249026573621, 0.014752044020077357, 0.095423257121673, 0.0479901023209095,
- 0.0217657527134109, -0.007819608444921099, -0.08059832253135167, -0.04542984813451767,
- 0.08654092538815278, -0.006923567865809533, 0.03227182334432235, 0.04168139319293774,
- -0.07057873045022671, -0.025644138921052217, 0.0970956809245623, -0.03368239249819173,
- -0.012226823842726074, -0.030068558318397172, -0.040962935076095164,
- 0.10894022222894889, 0.1084389382830033, 0.02492496894242672, 0.014115687710447954,
- 0.01101940581933237, 0.030395322264387056, 0.04196353407146839, -0.01943305700730819,
- 0.05110402609436558, -0.029762845190886695, -0.083156224913322, -0.05583262730103273,
- 0.031279683128769435, 0.07077239310512176, 0.03444666365304819, -0.12825007679370734,
- -0.02320084083252228, -0.02110308989022787
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 106,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 6,
- "similarity": 0.9989885091781616
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 58,
- "similarity": 0.9985982179641724
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 103,
- "similarity": 0.9985812902450562
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Thomas Macaulay"],
- "epoch_date_downloaded": 1671667200,
- "epoch_date_modified": 1671667200,
- "epoch_date_submitted": 1671667200,
- "flag": null,
- "report_number": 2356,
- "source_domain": "thenextweb.com",
- "submitters": ["Anonymous"],
- "title": "Chatbot shut down after saying it 'hates lesbians' and using racist slurs",
- "url": "https://thenextweb.com/news/chatbot-shut-down-after-saying-it-really-hates-lesbians-and-using-racist-slurs"
- },
- {
- "__typename": "Report",
- "authors": ["Pulse"],
- "epoch_date_downloaded": 1663027200,
- "epoch_date_modified": 1663113600,
- "epoch_date_submitted": 1663027200,
- "flag": null,
- "report_number": 2034,
- "source_domain": "pulsenews.co.kr",
- "submitters": ["Devon Colmer (CSET)"],
- "title": "Korea’s controversial AI chatbot Luda to be shut down temporarily",
- "url": "https://pulsenews.co.kr/view.php?year=2021\u0026no=34618"
- },
- {
- "__typename": "Report",
- "authors": ["Heesoo Jang"],
- "epoch_date_downloaded": 1624924800,
- "epoch_date_modified": 1625011200,
- "epoch_date_submitted": 1625011200,
- "flag": null,
- "report_number": 1425,
- "source_domain": "slate.com",
- "submitters": ["Kate Perkins"],
- "title": "A South Korean Chatbot Shows Just How Sloppy Tech Companies Can Be With User Data",
- "url": "https://slate.com/technology/2021/04/scatterlab-lee-luda-chatbot-kakaotalk-ai-privacy.html"
- },
- {
- "__typename": "Report",
- "authors": ["Ock Hyun-ju"],
- "epoch_date_downloaded": 1624924800,
- "epoch_date_modified": 1625011200,
- "epoch_date_submitted": 1625011200,
- "flag": null,
- "report_number": 1424,
- "source_domain": "koreaherald.com",
- "submitters": ["Kate Perkins"],
- "title": "Civic groups file petition over human rights violations by chatbot Luda",
- "url": "http://www.koreaherald.com/view.php?ud=20210203001136"
- },
- {
- "__typename": "Report",
- "authors": ["Yeonsoo Doh"],
- "epoch_date_downloaded": 1624924800,
- "epoch_date_modified": 1625011200,
- "epoch_date_submitted": 1625011200,
- "flag": null,
- "report_number": 1423,
- "source_domain": "medium.com",
- "submitters": ["Kate Perkins"],
- "title": "AI Chatbot ‘Lee Luda’ and Data Ethics",
- "url": "https://medium.com/carre4/ai-chatbot-lee-luda-and-data-ethics-1e523290c816"
- },
- {
- "__typename": "Report",
- "authors": ["Dongwoo Kim"],
- "epoch_date_downloaded": 1624924800,
- "epoch_date_modified": 1625011200,
- "epoch_date_submitted": 1625011200,
- "flag": null,
- "report_number": 1422,
- "source_domain": "thediplomat.com",
- "submitters": ["Kate Perkins"],
- "title": "Chatbot Gone Awry Starts Conversations About AI Ethics in South Korea",
- "url": "https://thediplomat.com/2021/01/chatbot-gone-awry-starts-conversations-about-ai-ethics-in-south-korea/"
- },
- {
- "__typename": "Report",
- "authors": ["Kim Eun-jung"],
- "epoch_date_downloaded": 1624924800,
- "epoch_date_modified": 1625011200,
- "epoch_date_submitted": 1625011200,
- "flag": null,
- "report_number": 1421,
- "source_domain": "en.yna.co.kr",
- "submitters": ["Kate Perkins"],
- "title": "(News Focus) Chatbot Luda controversy leave questions over AI ethics, data collection",
- "url": "https://en.yna.co.kr/view/AEN20210113004100320"
- },
- {
- "__typename": "Report",
- "authors": ["Justin McCurry"],
- "epoch_date_downloaded": 1624924800,
- "epoch_date_modified": 1625011200,
- "epoch_date_submitted": 1625011200,
- "flag": null,
- "report_number": 1420,
- "source_domain": "theguardian.com",
- "submitters": ["Kate Perkins"],
- "title": "South Korean AI chatbot pulled from Facebook after hate speech towards minorities",
- "url": "https://www.theguardian.com/world/2021/jan/14/time-to-properly-socialise-hate-speech-ai-chatbot-pulled-from-facebook"
- },
- {
- "__typename": "Report",
- "authors": ["Matt Wille"],
- "epoch_date_downloaded": 1624924800,
- "epoch_date_modified": 1625011200,
- "epoch_date_submitted": 1625011200,
- "flag": null,
- "report_number": 1419,
- "source_domain": "inputmag.com",
- "submitters": ["Kate Perkins"],
- "title": "South Korean chatbot 'Lee Luda' killed off for spewing hate",
- "url": "https://www.inputmag.com/culture/south-korean-chatbot-lee-luda-killed-off-for-spewing-hate"
- },
- {
- "__typename": "Report",
- "authors": ["Kim Hae-yeon"],
- "epoch_date_downloaded": 1624924800,
- "epoch_date_modified": 1625011200,
- "epoch_date_submitted": 1625011200,
- "flag": null,
- "report_number": 1418,
- "source_domain": "koreaherald.com",
- "submitters": ["Kate Perkins"],
- "title": "CEO says controversial AI chatbot ‘Luda’ will socialize in time",
- "url": "http://www.koreaherald.com/view.php?ud=20210111001051"
- },
- {
- "__typename": "Report",
- "authors": ["Yonhap News Agency"],
- "epoch_date_downloaded": 1624924800,
- "epoch_date_modified": 1625011200,
- "epoch_date_submitted": 1625011200,
- "flag": null,
- "report_number": 1417,
- "source_domain": "en.yna.co.kr",
- "submitters": ["Kate Perkins"],
- "title": "(2nd LD) Developer of AI chatbot service fined for massive personal data breach",
- "url": "https://en.yna.co.kr/view/AEN20210428009552315"
- },
- {
- "__typename": "Report",
- "authors": ["Junhyup Kwon", "Hyeong Yun"],
- "epoch_date_downloaded": 1624924800,
- "epoch_date_modified": 1625011200,
- "epoch_date_submitted": 1625011200,
- "flag": null,
- "report_number": 1416,
- "source_domain": "vice.com",
- "submitters": ["Kate Perkins"],
- "title": "AI Chatbot Shut Down After Learning to Talk Like a Racist Asshole",
- "url": "https://www.vice.com/en/article/akd4g5/ai-chatbot-shut-down-after-learning-to-talk-like-a-racist-asshole"
- },
- {
- "__typename": "Report",
- "authors": ["Shin Ji-hye"],
- "epoch_date_downloaded": 1624924800,
- "epoch_date_modified": 1625011200,
- "epoch_date_submitted": 1625011200,
- "flag": null,
- "report_number": 1409,
- "source_domain": "koreaherald.com",
- "submitters": ["Kate Perkins"],
- "title": "AI chatbot mired in legal dispute over data collection",
- "url": "http://www.koreaherald.com/view.php?ud=20210122000620"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "none",
- "name": "none"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "sensetime",
- "name": "SenseTime"
- },
- {
- "__typename": "Entity",
- "entity_id": "megvii",
- "name": "Megvii"
- },
- {
- "__typename": "Entity",
- "entity_id": "huawei",
- "name": "Huawei"
- },
- {
- "__typename": "Entity",
- "entity_id": "baibu",
- "name": "Baibu"
- },
- {
- "__typename": "Entity",
- "entity_id": "alibaba",
- "name": "Alibaba"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "uyghur-people",
- "name": "Uyghur people"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1928, 1410],
- "vector": [
- -0.05743606388568878, 0.06468658894300461, -0.0008129964116960764, -0.11484663188457489,
- 0.043758317828178406, -0.05805002897977829, 0.013083279132843018, 0.04198222607374191,
- 0.08385840803384781, -0.1540813446044922, 0.004921331070363522, 0.01848471909761429,
- 0.02506759576499462, -0.0678849071264267, 0.008556107059121132, -0.09715450555086136,
- -0.04670678824186325, -0.006488550920039415, 0.003530033864080906, -0.11495304107666016,
- -0.09317509829998016, 0.00565780233591795, 0.011890821158885956, 0.09330177307128906,
- -0.008893964812159538, 0.05023321136832237, 0.08848460018634796, 0.12553660571575165,
- -0.10610415041446686, 0.06171782687306404, -0.018748074769973755, -0.02679400146007538,
- 0.14077837765216827, -0.012941621243953705, 0.028743881732225418, 0.0879657119512558,
- 0.0640646442770958, -0.037526797503232956, -0.025465045124292374, -0.03859151154756546,
- -0.019701160490512848, 0.21696798503398895, -0.01789954863488674, -0.030884165316820145,
- 0.08005186915397644, -0.01434033177793026, 0.02262675017118454, 0.03873877599835396,
- 0.00829797238111496, -0.0007665297016501427, -0.019750699400901794,
- 0.015069438144564629, -0.05330774933099747, 0.0034957772586494684, -0.05378739908337593,
- 0.07359050214290619, -0.0004364319611340761, -0.013879852369427681,
- -0.0036767045967280865, -0.03502947837114334, -0.034345872700214386,
- -0.1895034909248352, -0.033146895468235016, -0.04982464015483856, 0.09059004485607147,
- -0.0681593269109726, -0.02275718003511429, 0.02980383113026619, 0.04040247201919556,
- 0.06480736285448074, 0.01785770244896412, -0.01953909732401371, -0.026690101251006126,
- -0.045443594455718994, 0.0012008859775960445, -0.006279526278376579,
- 0.04152189940214157, 0.17599062621593475, -0.050956420600414276, 0.030734870582818985,
- 0.08385530114173889, -0.08576260507106781, 0.35601478815078735, -0.019035734236240387,
- -0.012688657268881798, 0.033687714487314224, 0.08164824545383453, 0.05304884910583496,
- 0.019052935764193535, 0.0026478185318410397, 0.017953969538211823, 0.02796228602528572,
- -0.04037601873278618, -0.02935566008090973, 0.044190093874931335, 0.03923853486776352,
- -0.02023204416036606, -0.07198476791381836, -0.0022502210922539234,
- -0.059121765196323395, 0.014374200254678726, -0.022723976522684097, 0.10694710910320282,
- 0.04897502809762955, -0.02386283688247204, 0.038842685520648956, 0.028663625940680504,
- -0.08805127441883087, 0.029203180223703384, -0.0548076331615448, 0.019184645265340805,
- 0.025827202945947647, 0.09962309151887894, 0.028728369623422623, 0.053303223103284836,
- -0.05858427286148071, 0.024057753384113312, 0.018714141100645065, 0.07834909856319427,
- 0.02467384748160839, 0.0195632204413414, 0.06351904571056366, 0.0767289474606514,
- -0.05480154603719711, -0.002316504716873169, -0.01701817475259304,
- -0.030428513884544373, -0.01121010072529316, -0.04673698544502258, 0.02838863991200924,
- -0.05095106363296509, -0.2025497555732727, 0.032006632536649704, 0.052410367876291275,
- -0.004551435820758343, -0.02795332670211792, 0.009821789339184761, -0.07898861169815063,
- 0.011551575735211372, 0.01226013619452715, -0.01453220285475254, 0.09772753715515137,
- 0.03234362602233887, 0.07735298573970795, 0.07394331693649292, 0.00831526704132557,
- -0.03890169784426689, -0.04851213097572327, -0.010079525411128998, -0.0333452932536602,
- 0.07571960985660553, -0.10293900966644287, -0.035897813737392426, 0.017270967364311218,
- -0.021940581500530243, 0.619245171546936, 0.08631721138954163, 0.1626840978860855,
- -0.006149615626782179, 0.005319519899785519, 0.14360563457012177, 0.0006841504364274442,
- 0.09446857869625092, -0.028197214007377625, -0.07214991748332977, 0.004517059773206711,
- -0.056049644947052, 0.012718255631625652, -0.0011086252052336931, 0.03485772758722305,
- 0.10096285492181778, 0.015177599154412746, 0.09189030528068542, 0.006879751104861498,
- -0.05961937457323074, -0.0033144536428153515, 0.010444619692862034, 0.01190117932856083,
- -0.1322227567434311, -0.022731147706508636, 0.05993155390024185, 0.07637644559144974,
- -0.06628264486789703, 0.005187356844544411, -0.05005495250225067, 0.0908353179693222,
- -0.013538289815187454, 0.034984201192855835, 0.02767065167427063, 0.034259188920259476,
- 0.02999691292643547, 0.04569075256586075, -0.0020225478801876307, -0.1281995326280594,
- -0.016537073999643326, 0.08395718038082123, 0.022412996739149094, -0.06354491412639618,
- 0.07181699573993683, -0.049960751086473465, 0.03602607175707817, -0.005631204694509506,
- 0.12851481139659882, -0.11794092506170273, -0.00952508021146059, 0.007570384070277214,
- -0.04651763662695885, 0.06095750629901886, -0.028197433799505234, -0.06174435466527939,
- -0.0870385617017746, 0.06658776104450226, 0.040611863136291504, 0.042783744633197784,
- 0.04208074510097504, -0.032234326004981995, 0.03833022713661194, -0.01477409154176712,
- 0.031021740287542343, -0.07976354658603668, 0.07666391134262085, 0.03890934959053993,
- -0.025320501998066902, -0.020471515133976936, 0.038786351680755615, 0.06183284521102905,
- 0.020496046170592308, -0.01151546835899353, 0.03713754564523697, -0.022203266620635986,
- -0.03953079506754875, 0.05966181308031082, 0.04780544340610504, 0.019639689475297928,
- 0.09085327386856079, -0.0914725512266159, -0.0026302477344870567, -0.056585464626550674,
- -0.012598462402820587, -0.008102738298475742, -0.047422025352716446,
- 0.062366314232349396, 0.11071668565273285, 0.020816035568714142, 0.037241652607917786,
- 0.04228346049785614, 0.050438690930604935, 0.032767921686172485, -0.020560450851917267,
- 0.06168266385793686, -0.029335908591747284, -0.03328067436814308, -0.027738969773054123,
- 0.018386680632829666, 0.032223768532276154, 0.03882107883691788, -0.07337041199207306,
- -0.028154436498880386, -0.02586466819047928, 0.012337206862866879, -0.09543465077877045,
- -0.019634801894426346, 0.007376642432063818, 0.043638911098241806, -0.06773829460144043,
- -0.06807779520750046, -0.06339506804943085, 0.014900526031851768, 0.047906819730997086,
- -0.014077072963118553, 0.00546756898984313, -0.09059113264083862, 0.01296229474246502,
- -0.00009077833965420723, 0.04309011250734329, 0.0009133820421993732,
- 0.016360197216272354, -0.05865249037742615, -0.04649608954787254, -0.024179983884096146,
- -0.004121196456253529, 0.0034222248941659927, -0.040918052196502686, -0.057746522128582,
- -0.05737197399139404, -0.020358100533485413, 0.027537472546100616, -0.05941231548786163,
- 0.04193037003278732, 0.044495709240436554, 0.040345508605241776, -0.018915310502052307,
- 0.011512897908687592, 0.060536228120326996, -0.037647370249032974, 0.005059069953858852,
- 0.09485021233558655, -0.05663644149899483, 0.0029827491380274296, -0.020873427391052246,
- -0.04326806962490082, -0.07808145880699158, -0.020766299217939377, -0.06742294132709503,
- 0.0316622294485569, -0.018645409494638443, -0.015045554377138615, -0.04043189436197281,
- -0.011152831837534904, 0.07880498468875885, -0.0872621089220047, -0.02728775516152382,
- -0.0946115255355835, 0.10469275712966919, -0.025431973859667778, 0.037516962736845016,
- -0.0014448855072259903, -0.05850863456726074, 0.032810136675834656,
- 0.004606680944561958, 0.0029423334635794163, 0.029057301580905914, 0.07783111929893494,
- -0.03149518743157387, 0.007403113879263401, 0.03507857769727707, -0.01391029916703701,
- -0.012562490068376064, 0.09482938796281815, 0.4212229251861572, -0.05822429805994034,
- 0.08602724969387054, 0.07296627759933472, -0.0045088110491633415, 0.036718375980854034,
- -0.014241015538573265, 0.06456448137760162, 0.04334889352321625, 0.08636818081140518,
- 0.08752323687076569, -0.02938600443303585, 0.005260420963168144, -0.041282474994659424,
- 0.06836889684200287, -0.0030071809887886047, 0.0145263671875, -0.008871115744113922,
- -0.026478413492441177, -0.025286592543125153, 0.020928561687469482,
- -0.03320680558681488, 0.025846384465694427, -0.049733590334653854, -0.06449659913778305,
- 0.02749345824122429, 0.03866567835211754, 0.06822814792394638, -0.010523267090320587,
- 0.05413728952407837, 0.0064038061536848545, 0.026933670043945312, 0.04192531853914261,
- 0.03607585281133652, -0.05344992130994797, 0.03161211311817169, -0.1000681072473526,
- -0.11396829783916473, 0.041677325963974, 0.019907858222723007, 0.046321526169776917,
- 0.015102345496416092, 0.017883822321891785, 0.07137520611286163, -0.0319858118891716,
- -0.014902893453836441, 0.030071493238210678, 0.05631747096776962, 0.014420021325349808,
- 0.09917230159044266, 0.13176202774047852, -0.014476794749498367, -0.034890640527009964,
- -0.07365342974662781, 0.05065377801656723, 0.12269288301467896, -0.019176872447133064,
- 0.0015633160946890712, 0.01382463052868843, -0.012866511009633541,
- -0.015469400212168694, -0.042324360460042953, -0.06223924085497856,
- 0.037770576775074005, -0.027081552892923355, 0.09939295053482056, 0.03095569647848606,
- -0.035126909613609314, -0.1314203143119812, -0.04283012077212334, -0.0622946098446846,
- 0.013563930056989193, 0.12781944870948792, -0.0776779055595398, 0.0021107872016727924,
- 0.023646555840969086, 0.005278022959828377, -0.012294280342757702, -0.07413969933986664,
- -0.02134774811565876, -0.06734214723110199, 0.018827766180038452, 0.07172774523496628,
- 0.03960689157247543, -0.010878129862248898, 0.07104010879993439, -0.10200415551662445,
- 0.02400810644030571, 0.014795572496950626, -0.04325781762599945, 0.01413872092962265,
- -0.030367350205779076, 0.04161138832569122, 0.013792776502668858, -0.045910220593214035,
- -0.04714154824614525, -0.047455474734306335, -0.023989692330360413,
- -0.09178759157657623, -0.04206955060362816, -0.03457992523908615, -0.06753954291343689,
- 0.05305975675582886, -0.04347006976604462, 0.005483072251081467, -0.018742963671684265,
- -0.018627364188432693, -0.02010366879403591, 0.019718676805496216,
- -0.009019037708640099, -0.1314658671617508, -0.0037124808877706528, 0.01051841489970684,
- 0.002317197620868683, -0.07511875033378601, -0.07820519804954529, 0.030552826821804047,
- 0.059115804731845856, 0.001141037791967392, -0.04679066687822342, 0.005880435928702354,
- -0.0534825399518013, 0.09737332165241241, -0.09549850225448608, -0.40649592876434326,
- 0.08687224984169006, 0.026000548154115677, 0.05979159474372864, 0.0072104185819625854,
- -0.06529293209314346, 0.06338375806808472, 0.023811617866158485, 0.00848896149545908,
- 0.07067602127790451, -0.0674540102481842, 0.02945551648736, -0.016410501673817635,
- -0.026597552001476288, -0.0007706428878009319, -0.08226922154426575,
- -0.04817298427224159, 0.005497429985553026, -0.0048556942492723465,
- -0.05987902730703354, -0.10070323944091797, -0.005100450944155455,
- -0.008315381594002247, 0.010341450572013855, 0.012702497653663158, 0.015007578767836094,
- -0.03020402416586876, -0.06555306911468506, 0.030910180881619453, 0.04123455658555031,
- -0.01586265116930008, -0.04458385705947876, 0.02946036495268345, 0.049025990068912506,
- -0.014320136979222298, 0.11024725437164307, 0.020514093339443207, -0.005179683677852154,
- -0.06541810929775238, 0.06679891049861908, 0.06599124521017075, 0.19117936491966248,
- -0.03355870023369789, 0.041020505130290985, 0.0327838771045208, 0.06800086796283722,
- 0.019782349467277527, 0.05333752930164337, -0.036463119089603424, -0.005884628742933273,
- -0.006209445185959339, -0.004384172149002552, 0.08097346127033234, -0.09948869049549103,
- -0.009595317766070366, -0.03363759070634842, -0.025376979261636734,
- -0.06465819478034973, -0.0468534380197525, 0.1735776662826538, 0.03593794256448746,
- 0.002321882639080286, 0.018620241433382034, -0.033182188868522644,
- -0.00013820920139551163, -0.06777237355709076, -0.06037019565701485,
- -0.006036750972270966, 0.03843030706048012, 0.05565376579761505, -0.04599345847964287,
- -0.12413962185382843, -0.02707855775952339, -0.006286569871008396, 0.013106826692819595,
- 0.08927321434020996, -0.09790061414241791, 0.04404120147228241, -0.04799502342939377,
- 0.11757487058639526, 0.009434632956981659, 0.05363255739212036, 0.04346190392971039,
- 0.03844243288040161, 0.004557299427688122, -0.011497678235173225, 0.0002877196529880166,
- -0.05294284224510193, 0.021502992138266563, 0.12736284732818604, -0.007459128275513649,
- 0.1574784815311432, 0.05385275185108185, -0.00893557071685791, -0.04625576734542847,
- 0.02349810302257538, 0.003732330398634076, 0.03307388350367546, -0.425860732793808,
- -0.049559272825717926, 0.10419422388076782, 0.01253417320549488, 0.019255410879850388,
- 0.08925914764404297, 0.011236820369958878, -0.011195868253707886, 0.010438713245093822,
- -0.09695468842983246, 0.11822840571403503, -0.0022335732355713844, 0.07609344273805618,
- -0.08839151263237, 0.0339459553360939, 0.09273537993431091, 0.018157565966248512,
- -0.0002710458356887102, 0.023991720750927925, -0.2168516218662262, -0.0170629620552063,
- 0.0008877040818333626, 0.14780811965465546, 0.04914432391524315, 0.039802249521017075,
- 0.08098705112934113, -0.04845420643687248, 0.045054323971271515, 0.05239246040582657,
- 0.010879523120820522, 0.07915912568569183, 0.0012633204460144043, -0.027767064049839973,
- 0.07851333916187286, 0.13977596163749695, 0.09294894337654114, -0.03341733664274216,
- 11.680459976196289, 0.035003941506147385, 0.059224992990493774, -0.12043902277946472,
- -0.0016192328184843063, -0.03735199570655823, 0.07591207325458527, -0.08627369999885559,
- 0.09738390147686005, 0.1025945395231247, -0.0068029435351490974, -0.05011601746082306,
- -0.03779945895075798, -0.04841925948858261, 0.027919568121433258, -0.016926869750022888,
- -0.026201359927654266, -0.04767069220542908, 0.0812903642654419, -0.04502108320593834,
- -0.0632302314043045, 0.03216443583369255, 0.05932902544736862, 0.036922283470630646,
- -0.11019867658615112, 0.019322408363223076, -0.008020415902137756, 0.007923834025859833,
- -0.006565674673765898, 0.01151394471526146, 0.024757860228419304, 0.010730481706559658,
- 0.10538278520107269, 0.007034747861325741, 0.03553924709558487, 0.05150982737541199,
- 0.0000620037317276001, 0.034313272684812546, 0.024379784241318703, 0.017703913152217865,
- -0.003874983172863722, 0.007771087344735861, -0.011911928653717041, 0.06220310926437378,
- 0.05909980088472366, 0.008037170395255089, -0.00518934428691864, 0.07799040526151657,
- 0.00845811516046524, 0.06768174469470978, 0.06746633350849152, 0.012704788707196712,
- 0.07281117141246796, 0.030088726431131363, 0.011381377466022968, 0.03440621867775917,
- -0.021063949912786484, -0.07940210402011871, 0.080134317278862, 0.016646916046738625,
- -0.028810089454054832, 0.10765938460826874, 0.04085323587059975, 0.10547575354576111,
- 0.02649933286011219, 0.030050773173570633, 0.06896630674600601, 0.10352729260921478,
- -0.0925464779138565, -0.03808188438415527, 0.056143444031476974, -0.06899308413267136,
- -0.039199698716402054, 0.037859391421079636, 0.032442133873701096, 0.011601370759308338,
- 0.0557606965303421, -0.007313086185604334, 0.055273137986660004, -0.005290238186717033,
- -0.002099605044350028, 0.018416285514831543, -0.0816115215420723, 0.05291333049535751,
- 0.013010628521442413, 0.018736742436885834, 0.10215207934379578, 0.08954080939292908,
- 0.0017979596741497517, -0.06158839538693428, -0.09529672563076019, 0.10037960857152939,
- -0.024375107139348984, -0.04228527843952179, 0.0018220022320747375,
- -0.04637114703655243, -0.024513524025678635, -0.14759407937526703, 0.08231067657470703,
- 0.06533968448638916, -0.0675908774137497, -0.029875032603740692, 0.0024543534964323044,
- 0.12838701903820038, 0.0009646778926253319, 0.024016985669732094, -0.07516705989837646,
- 0.006312013603746891, 0.03160243481397629, 0.044432882219552994, -0.05425449088215828,
- 0.08105422556400299, 0.04319164529442787, -0.06964123249053955, 0.06578393280506134,
- 0.05564377084374428, -0.042989253997802734, -0.018767517060041428, 0.05787011235952377,
- 0.057835064828395844, -0.1257888227701187, -0.040168099105358124, -0.06488116830587387,
- -0.028433822095394135, 0.017255127429962158, -0.019952818751335144, 0.00734278280287981,
- -0.010510871186852455, -0.029696332290768623, -0.037631094455718994,
- 0.03930144011974335, 0.08633933961391449, 0.1362120509147644, 0.01146761979907751,
- 0.030678659677505493, -0.03003983572125435, -0.03848323971033096, 0.06495490670204163,
- 0.06420537829399109, 0.07856737822294235, -0.07557816058397293, -0.04558076336979866,
- -0.03868386894464493, -0.10180194675922394, 0.013997799716889858, 0.08050236105918884,
- 0.017639638856053352, 0.04002981260418892, 0.01121930219233036, -0.06494174897670746,
- -0.019260333850979805, 0.11060982197523117, 0.016546102240681648, 0.04144075885415077,
- 0.04069307819008827, -0.06737277656793594, -0.020191747695207596, 0.10081429779529572,
- -0.022264709696173668, -0.03584664687514305, 0.013612046837806702, -0.11687742918729782,
- 0.08097966015338898, 0.05722890421748161, 0.031128887087106705, -0.0012249276041984558,
- 0.04312355816364288, 0.02572719380259514, 0.03436267375946045, 0.034260690212249756,
- 0.01256235595792532, -0.07137370854616165, -0.07349167764186859, -0.07292910665273666,
- -0.006405794993042946, 0.057595498859882355, 0.052123598754405975, -0.1545402705669403,
- -0.010015674866735935, -0.05149124562740326
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 107,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 188,
- "similarity": 0.9982662200927734
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 127,
- "similarity": 0.9980661869049072
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 147,
- "similarity": 0.9980322122573853
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Rita Liao"],
- "epoch_date_downloaded": 1633910400,
- "epoch_date_modified": 1660694400,
- "epoch_date_submitted": 1660694400,
- "flag": null,
- "report_number": 1928,
- "source_domain": "techcrunch.com",
- "submitters": ["Patrick Hall (BNH.ai)"],
- "title": "Alibaba ‘dismayed’ by its cloud unit’s ethnicity detection algorithm – TechCrunch",
- "url": "https://techcrunch.com/2020/12/17/alibaba-ethnic-minority-algorithm/"
- },
- {
- "__typename": "Report",
- "authors": ["Thomas Macaulay"],
- "epoch_date_downloaded": 1624924800,
- "epoch_date_modified": 1625011200,
- "epoch_date_submitted": 1625011200,
- "flag": null,
- "report_number": 1410,
- "source_domain": "thenextweb.com",
- "submitters": ["Kate Perkins"],
- "title": "Surveillance group exposes disturbing Huawei patent for AI-powered Uighur detection",
- "url": "https://thenextweb.com/news/surveillance-group-exposes-disturbing-huawei-patent-for-ai-powered-uighur-detection"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "riverside-arena-skating-rink",
- "name": "Riverside Arena Skating Rink"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "unknown",
- "name": "Unknown"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "lamya-robinson",
- "name": "Lamya Robinson"
- },
- {
- "__typename": "Entity",
- "entity_id": "black-livonia-residents",
- "name": "Black Livonia residents"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1537, 1503, 1411],
- "vector": [
- -0.05986728146672249, 0.07592429965734482, 0.012529823929071426, -0.10107296705245972,
- 0.10241440683603287, -0.0582454614341259, 0.018041910603642464, 0.07386936992406845,
- 0.058357711881399155, -0.12062858790159225, 0.01902109943330288, 0.0649993047118187,
- 0.016444290056824684, -0.08175434917211533, 0.02587222121655941, -0.08263722062110901,
- -0.08464121073484421, -0.06239902973175049, 0.003046653000637889, -0.15505659580230713,
- -0.0698796883225441, -0.009964440949261189, 0.0367569625377655, 0.1150248721241951,
- -0.07971859723329544, 0.019940273836255074, 0.09053418785333633, 0.07886037230491638,
- -0.03527958318591118, 0.06501153856515884, -0.03558924421668053, -0.08943227678537369,
- 0.0947515144944191, 0.0005953758955001831, -0.04840252920985222, 0.09216960519552231,
- 0.029008368030190468, -0.02512657456099987, -0.0170529093593359, 0.030457044020295143,
- 0.013617552816867828, 0.2460779994726181, 0.020616332069039345, -0.0050253490917384624,
- 0.061185359954833984, -0.05712403729557991, 0.006850215140730143, 0.054905280470848083,
- 0.02328525483608246, -0.020935209468007088, 0.006407891865819693, 0.07639643549919128,
- -0.04349725320935249, 0.012055981904268265, -0.12406742572784424, 0.08744614571332932,
- 0.04155907407402992, 0.005587829742580652, 0.05433972179889679, -0.09363565593957901,
- -0.04023999348282814, -0.23873670399188995, -0.021117039024829865, -0.10350972414016724,
- 0.08248395472764969, -0.0748191699385643, -0.005999091546982527, -0.028181470930576324,
- 0.015965739265084267, 0.05340702831745148, 0.07768290489912033, -0.03383713960647583,
- -0.02589418925344944, 0.019779518246650696, 0.008104529231786728, -0.01837760955095291,
- 0.026403255760669708, 0.24317395687103271, -0.12081096321344376, 0.029311463236808777,
- 0.12579922378063202, -0.10104309767484665, 0.44629335403442383, 0.004582532681524754,
- -0.012784349732100964, -0.06367754936218262, 0.06751767545938492, 0.024014780297875404,
- 0.07142695784568787, 0.04220275953412056, -0.0545712411403656, 0.03410207852721214,
- -0.07837375998497009, 0.015375751070678234, 0.06355243176221848, 0.05690072476863861,
- -0.015647418797016144, 0.08753963559865952, -0.00819022860378027, -0.06254466623067856,
- -0.028648117557168007, -0.033377405256032944, 0.11024560779333115, 0.08224671334028244,
- -0.036994148045778275, -0.008498130366206169, 0.07271483540534973,
- -0.041352417320013046, 0.06990020722150803, -0.051922187209129333,
- -0.00008432319009443745, 0.001753346179611981, 0.04765178635716438,
- -0.015061810612678528, 0.010556421242654324, -0.055824797600507736, 0.02287735790014267,
- 0.0309430118650198, 0.103838711977005, 0.018449049443006516, -0.008670897223055363,
- 0.03299729526042938, 0.05871196463704109, -0.04776878282427788, -0.04179827868938446,
- -0.03616108000278473, -0.028985917568206787, -0.033423829823732376,
- -0.019624345004558563, 0.05706193670630455, -0.039980124682188034, -0.18057499825954437,
- -0.008671040646731853, 0.0868484377861023, -0.01755184680223465, -0.054228659719228745,
- 0.01794072799384594, -0.027590766549110413, 0.02235003001987934, -0.03859191760420799,
- -0.03713303431868553, 0.05942699313163757, 0.021532492712140083, 0.05512151122093201,
- 0.12844215333461761, 0.06199046969413757, -0.05081651732325554, -0.03872296214103699,
- -0.011527460999786854, -0.043530285358428955, 0.11067083477973938, -0.13411985337734222,
- -0.06163312867283821, 0.01650836504995823, -0.015437287278473377, 0.6619974970817566,
- 0.11267305165529251, 0.16232812404632568, -0.012505422346293926, -0.011521924287080765,
- 0.18102525174617767, -0.0063034831546247005, 0.05517234280705452, -0.05524067580699921,
- -0.049848537892103195, 0.03538672253489494, -0.068869449198246, -0.06607043743133545,
- 0.04796852171421051, 0.03602205216884613, 0.10204964131116867, 0.0022608074359595776,
- 0.09159808605909348, -0.005027541425079107, -0.10641302913427353, -0.016462257131934166,
- 0.052318036556243896, 0.010769437998533249, -0.11745551973581314, -0.030450260266661644,
- 0.07617931067943573, 0.09414714574813843, -0.11668962240219116, 0.015201553702354431,
- -0.07296837121248245, 0.024627583101391792, -0.021272504702210426, 0.029204143211245537,
- -0.039849426597356796, 0.04715387895703316, 0.047364041209220886, 0.04912179708480835,
- -0.008171368390321732, -0.13214363157749176, -0.041359975934028625, 0.09342113882303238,
- 0.01283110398799181, -0.03409271314740181, 0.05221985653042793, -0.11235553026199341,
- 0.047377005219459534, -0.00653214193880558, 0.17016874253749847, -0.13678839802742004,
- 0.031224489212036133, -0.00969785638153553, 0.0139889195561409, 0.0393558107316494,
- -0.030429502949118614, -0.05040789023041725, -0.053851429373025894, 0.0987086072564125,
- 0.028003772720694542, 0.057893868535757065, 0.054581161588430405, -0.04990983009338379,
- 0.03972017392516136, 0.10622807592153549, -0.008326943032443523, 0.0022677958477288485,
- 0.06521588563919067, 0.052923619747161865, -0.018640050664544106, -0.014819224365055561,
- 0.0354558527469635, 0.026794837787747383, 0.027309507131576538, 0.012790199369192123,
- 0.03634888306260109, -0.03176335617899895, -0.06330718845129013, 0.0097986264154315,
- 0.005814422387629747, 0.0286745373159647, 0.11067920923233032, -0.04703117534518242,
- -0.04976345971226692, -0.014753938652575016, -0.02197875641286373, 0.014346475712954998,
- -0.04059973359107971, 0.08129505068063736, 0.06318049132823944, 0.06824734807014465,
- 0.03693077340722084, 0.027678705751895905, 0.07974230498075485, 0.04287156090140343,
- 0.027002358809113503, 0.0895983949303627, -0.001443173154257238, -0.10397591441869736,
- -0.013853115029633045, 0.007687109988182783, 0.045815568417310715, 0.07091081142425537,
- -0.07753907144069672, -0.03654898330569267, -0.047704074531793594, -0.07137224823236465,
- -0.06704131513834, -0.024628430604934692, 0.024557212367653847, 0.04035712778568268,
- -0.044409606605768204, -0.0841948613524437, -0.10097137838602066, 0.01185175683349371,
- 0.07623875141143799, -0.006492203567177057, -0.013573077507317066, -0.1369655579328537,
- 0.008583414368331432, -0.04284072294831276, 0.07482435554265976, -0.004398591350764036,
- 0.05490885302424431, 0.04309074208140373, -0.03255565091967583, 0.0573125034570694,
- -0.017988065257668495, -0.02222909964621067, -0.07479725033044815, -0.04904208704829216,
- -0.048853565007448196, -0.025474777445197105, -0.0054596117697656155,
- 0.01139763742685318, 0.05950376018881798, 0.04766847565770149, 0.0678698867559433,
- 0.003421638160943985, -0.04794098809361458, 0.07484320551156998, -0.049837421625852585,
- -0.025065897032618523, 0.10605230182409286, -0.03548215329647064, 0.01870470680296421,
- -0.03634432330727577, -0.06879457086324692, -0.03519853949546814, -0.006054154131561518,
- -0.07369860261678696, 0.051369454711675644, 0.005500463768839836, -0.010588006116449833,
- -0.07419247180223465, -0.03456940874457359, 0.06981980800628662, -0.07959911972284317,
- -0.05881646275520325, -0.09439156204462051, 0.09085877984762192, 0.002233491512015462,
- -0.012150430120527744, 0.02692391537129879, -0.03494393453001976, 0.0616375207901001,
- -0.02007061429321766, -0.006939568091183901, 0.06346332281827927, 0.03228813037276268,
- -0.02244722656905651, 0.0239567831158638, 0.06610367447137833, -0.05948539450764656,
- 0.002597315702587366, 0.044289782643318176, 0.4309830963611603, -0.22606229782104492,
- 0.12489227205514908, 0.1292908936738968, 0.026362845674157143, 0.059417206794023514,
- -0.016483886167407036, 0.08747738599777222, 0.09112333506345749, 0.14831581711769104,
- 0.1072356104850769, -0.051860347390174866, -0.0370008610188961, -0.10477405786514282,
- 0.09546273946762085, 0.03218962624669075, 0.0147090470418334, -0.019396325573325157,
- -0.10691726207733154, -0.00897178240120411, 0.04279292747378349, -0.063519187271595,
- -0.004402762744575739, 0.012017965316772461, -0.05510321259498596, 0.015316599048674107,
- -0.01575932279229164, 0.021756716072559357, -0.008580991066992283, 0.054767075926065445,
- -0.05707505717873573, 0.08638431876897812, 0.000693491951096803, 0.023429127410054207,
- -0.12340391427278519, 0.041858915239572525, -0.07208501547574997, -0.0743599608540535,
- 0.11397918313741684, -0.03329576551914215, 0.018245307728648186, 0.08212435245513916,
- -0.053102899342775345, 0.029355337843298912, -0.045304033905267715,
- -0.07223115116357803, 0.029083063825964928, 0.0553237646818161, 0.03796672448515892,
- 0.04525492712855339, 0.16510623693466187, -0.05779334530234337, -0.015649734064936638,
- -0.07679662853479385, 0.0963105782866478, 0.14495420455932617, -0.013152833096683025,
- 0.01472948957234621, -0.0008087853784672916, -0.04256540536880493, 0.012344482354819775,
- -0.07161646336317062, -0.0878957211971283, 0.003647472709417343, -0.03448178246617317,
- 0.08590825647115707, 0.03139863163232803, -0.021980857476592064, -0.16982769966125488,
- -0.001970740035176277, -0.06650496274232864, 0.013488019816577435, 0.09208273887634277,
- -0.06039096787571907, 0.04482966661453247, -0.023334668949246407, 0.005697677377611399,
- -0.002737227128818631, -0.11173775047063828, 0.016565851867198944,
- -0.015367072075605392, 0.031107023358345032, 0.07097295671701431, 0.02926013432443142,
- -0.025819232687354088, 0.09845348447561264, -0.10309236496686935, 0.05106666311621666,
- 0.04653938487172127, 0.01376032829284668, 0.0007570572779513896, -0.008153234608471394,
- 0.04349275305867195, -0.0077714757062494755, -0.05432808771729469, 0.019401241093873978,
- -0.014740854501724243, -0.027535974979400635, -0.10321230441331863,
- -0.03934965655207634, -0.023175163194537163, -0.06609216332435608, 0.03395955637097359,
- -0.09775856882333755, -0.02598678134381771, -0.01469016820192337, -0.00650009885430336,
- 0.00022536516189575195, 0.03120141662657261, 0.02022896707057953, -0.12617523968219757,
- 0.01954158954322338, -0.03755541518330574, 0.07378601282835007, -0.01984003372490406,
- -0.033401090651750565, 0.0582108311355114, 0.12163988500833511, 0.05184340104460716,
- -0.010135764256119728, -0.01057799905538559, -0.05325283482670784, 0.05077849701046944,
- -0.11349932104349136, -0.46070778369903564, 0.05717918276786804, -0.012055851519107819,
- 0.0685180053114891, 0.01870880275964737, -0.04702666029334068, 0.026501575484871864,
- -0.012866065837442875, -0.047547947615385056, 0.09075096994638443,
- -0.055588435381650925, 0.02211940474808216, -0.0018790783360600471,
- -0.08242315798997879, -0.004547850228846073, -0.03912779316306114, -0.06236039102077484,
- 0.07029864937067032, -0.034468065947294235, -0.06856430321931839, -0.14282935857772827,
- 0.0046753971837460995, -0.0018325826385989785, 0.050256092101335526,
- -0.023458430543541908, 0.02689080871641636, -0.0632026195526123, -0.043849945068359375,
- 0.05786089226603508, 0.05557690188288689, 0.03201922029256821, -0.08213413506746292,
- 0.011374629102647305, 0.06924542784690857, -0.020292550325393677, 0.12255817651748657,
- 0.030050715431571007, -0.02986959181725979, -0.08008895814418793, 0.09339296817779541,
- 0.08297088742256165, 0.18421347439289093, 0.014621350914239883, 0.048638809472322464,
- 0.03261110186576843, 0.1501512974500656, 0.03503761067986488, 0.02240736596286297,
- -0.04441406950354576, 0.00041108703589998186, -0.011022689752280712,
- -0.012613468803465366, 0.07328065484762192, -0.07575377821922302, -0.038474589586257935,
- -0.048988934606313705, 0.013555675745010376, -0.008740643039345741,
- 0.007824930362403393, 0.2047160118818283, 0.023368915542960167, 0.03079734556376934,
- 0.009405278600752354, -0.04671434685587883, 0.0190126970410347, -0.0454113595187664,
- -0.10295742750167847, 0.025929152965545654, -0.010208077728748322, 0.008516090922057629,
- -0.027038345113396645, -0.12703563272953033, 0.007291129324585199,
- 0.00007507577538490295, -0.00867861695587635, 0.10668599605560303, 0.01142921019345522,
- 0.04532278701663017, -0.05668532848358154, 0.12466201186180115, 0.04891413450241089,
- 0.003534613875672221, 0.06840162724256516, 0.10991412401199341, -0.014656063169240952,
- 0.01641273684799671, -0.014125472865998745, -0.0833955705165863, -0.036009322851896286,
- 0.11729373782873154, -0.05321168899536133, 0.13421978056430817, 0.08118173480033875,
- -0.05064218118786812, -0.0582730770111084, 0.02691008150577545, -0.031103290617465973,
- 0.006696753203868866, -0.4590960741043091, -0.03479161486029625, 0.11038229614496231,
- 0.011646177619695663, 0.023299330845475197, 0.047824352979660034, -0.012873657047748566,
- -0.06544739753007889, -0.07451167702674866, -0.06639866530895233, 0.1440870761871338,
- 0.007035451475530863, 0.07107284665107727, -0.07703423500061035, 0.02531658671796322,
- 0.06187975034117699, -0.03142983838915825, 0.011176197789609432, 0.042855288833379745,
- -0.23620259761810303, -0.00585393188521266, -0.04551238194108009, 0.11859536170959473,
- 0.020604899153113365, 0.027679288759827614, 0.062179744243621826, -0.05480526015162468,
- 0.029226697981357574, 0.06917079538106918, -0.04038262739777565, 0.0261007621884346,
- -0.013970439322292805, -0.002813882427290082, 0.09741980582475662, 0.0708327516913414,
- 0.045342668890953064, -0.04166407510638237, 12.080485343933105, 0.06661296635866165,
- 0.044756848365068436, -0.09436330944299698, 0.01960206776857376, -0.03933711722493172,
- 0.0029301925096660852, -0.1359010934829712, 0.07643095403909683, 0.1305501013994217,
- -0.04169975221157074, -0.0723092332482338, -0.04124138876795769, -0.11521092802286148,
- 0.012477087788283825, -0.017730683088302612, -0.08056215196847916, -0.05050358176231384,
- 0.06617047637701035, -0.03738836571574211, -0.026751132681965828, 0.06234622001647949,
- 0.05587775632739067, 0.027854809537529945, -0.06374508887529373, -0.010072261095046997,
- 0.0408259816467762, -0.0344182588160038, -0.002526739612221718, 0.04713083431124687,
- 0.009104426018893719, 0.013068162836134434, 0.04089316725730896, -0.03801100328564644,
- 0.016752103343605995, 0.029692158102989197, 0.05754691734910011, 0.07246133685112,
- 0.034239862114191055, 0.10917093604803085, 0.019967464730143547, 0.019249891862273216,
- 0.05324023962020874, 0.026172051206231117, 0.06920140236616135, 0.02994801104068756,
- 0.029613057151436806, 0.10035573691129684, 0.01793522574007511, 0.05963326618075371,
- 0.11010143905878067, -0.00973427016288042, 0.11630470305681229, -0.008416250348091125,
- 0.02499505691230297, 0.09023257344961166, 0.02940157987177372, -0.10668718069791794,
- 0.06514576822519302, 0.05343617498874664, -0.0736682191491127, 0.0872025415301323,
- -0.013158784247934818, 0.10319142788648605, -0.051374197006225586, 0.049272406846284866,
- 0.0801897868514061, 0.11643656343221664, -0.12355130165815353, -0.07946739345788956,
- 0.018113480880856514, -0.11927047371864319, -0.08158957213163376, 0.07943762093782425,
- 0.0922965407371521, -0.04216328635811806, 0.061272770166397095, -0.058685302734375,
- 0.03663458675146103, -0.005621800199151039, -0.005916070193052292, 0.07082241773605347,
- -0.004542145412415266, 0.021833322942256927, 0.03912246599793434, 0.03218847140669823,
- 0.09095274657011032, 0.06811996549367905, -0.019169805571436882, -0.10667303204536438,
- -0.07147722691297531, 0.11006760597229004, -0.004959713667631149, -0.09046494960784912,
- -0.006499405950307846, -0.061617035418748856, 0.07073095440864563, -0.16849185526371002,
- 0.09245920181274414, 0.15498016774654388, -0.10829678922891617, -0.0028652921319007874,
- -0.04208315536379814, 0.05968371033668518, -0.0018537176074460149, 0.021407848224043846,
- -0.05327269434928894, 0.0324581153690815, 0.012402418069541454, 0.04261918365955353,
- -0.04559234902262688, 0.03909962996840477, 0.10042291134595871, -0.07774928957223892,
- -0.014644504524767399, 0.06427829712629318, -0.048743944615125656,
- -0.011337987147271633, 0.05726245418190956, 0.0210952740162611, -0.09325721114873886,
- -0.030293473973870277, -0.036383118480443954, -0.036603424698114395,
- -0.013042889535427094, -0.061394620686769485, 0.0036255696322768927,
- 0.09656479954719543, -0.09170391410589218, -0.0030327688436955214, 0.06106520816683769,
- 0.0581832192838192, 0.030885711312294006, 0.030226513743400574, 0.07019992917776108,
- -0.034062325954437256, -0.06166869401931763, 0.017606182023882866, 0.05839437246322632,
- 0.06000505015254021, -0.024553777649998665, -0.03856215253472328, -0.06772147864103317,
- -0.0928138867020607, 0.011536133475601673, 0.11756730824708939, 0.031648654490709305,
- 0.0512964129447937, 0.028052201494574547, -0.10487616807222366, -0.02292938530445099,
- 0.12767943739891052, 0.021383846178650856, 0.009793587028980255, 0.049154132604599,
- -0.06254619359970093, -0.04561840370297432, 0.13817821443080902, -0.05100196227431297,
- 0.001494910684414208, 0.018724685534834862, 0.016116736456751823, 0.08235100656747818,
- 0.10417129844427109, 0.020797109231352806, 0.03084944747388363, 0.019335255026817322,
- 0.008202900178730488, 0.05260934308171272, 0.0037902698386460543, 0.03170155733823776,
- -0.01443659607321024, -0.11293218284845352, -0.08445423096418381, 0.03556482121348381,
- 0.1042240634560585, 0.042084600776433945, -0.11343846470117569, -0.04095844924449921,
- -0.036792706698179245
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 108,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 74,
- "similarity": 0.9985477924346924
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 51,
- "similarity": 0.9983687400817871
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 34,
- "similarity": 0.9982205033302307
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Tom Simonite"],
- "epoch_date_downloaded": 1645747200,
- "epoch_date_modified": 1645747200,
- "epoch_date_submitted": 1645747200,
- "flag": null,
- "report_number": 1537,
- "source_domain": "wired.com",
- "submitters": ["Anonymous"],
- "title": "The Best Algorithms Still Struggle to Recognize Black Faces",
- "url": "https://www.wired.com/story/best-algorithms-struggle-recognize-black-faces-equally/"
- },
- {
- "__typename": "Report",
- "authors": ["Randy Wimbley", "David Komer"],
- "epoch_date_downloaded": 1639267200,
- "epoch_date_modified": 1639267200,
- "epoch_date_submitted": 1639267200,
- "flag": null,
- "report_number": 1503,
- "source_domain": "fox2detroit.com",
- "submitters": ["Anonymous"],
- "title": "Black teen kicked out of skating rink after facial recognition camera misidentified her",
- "url": "https://www.fox2detroit.com/news/teen-kicked-out-of-skating-rink-after-facial-recognition-camera-misidentified-her"
- },
- {
- "__typename": "Report",
- "authors": ["Katyanna Quach"],
- "epoch_date_downloaded": 1626566400,
- "epoch_date_modified": 1626566400,
- "epoch_date_submitted": 1626566400,
- "flag": null,
- "report_number": 1411,
- "source_domain": "theregister.com",
- "submitters": ["Roman Lutz"],
- "title": "Teen turned away from roller rink after AI wrongly identifies her as banned troublemaker",
- "url": "https://www.theregister.com/2021/07/16/facial_recognition_failure/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "pimeyes",
- "name": "PimEyes"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "pimeyes",
- "name": "PimEyes"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "internet-users",
- "name": "internet users"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1412],
- "vector": [
- -0.027830254286527634, 0.03152940049767494, 0.018416380509734154, -0.14110097289085388,
- 0.10430143773555756, -0.06431397795677185, -0.027123235166072845, 0.049987003207206726,
- 0.06845252960920334, -0.11691415309906006, 0.02324020117521286, 0.06262578070163727,
- 0.03816282004117966, -0.05416383594274521, 0.07002761214971542, -0.07582680881023407,
- -0.08760982006788254, -0.0771595686674118, 0.005388766061514616, -0.13276377320289612,
- -0.07188822329044342, -0.007859377190470695, 0.00797240436077118, 0.09103261679410934,
- -0.05450965091586113, 0.017401177436113358, 0.1251707226037979, 0.12370101362466812,
- -0.0705154612660408, 0.06650504469871521, 0.004177707247436047, -0.05903579667210579,
- 0.1465325802564621, 0.009146994911134243, -0.020897740498185158, 0.09305102378129959,
- -0.011583189480006695, -0.06083941459655762, 0.02353370189666748, -0.017712173983454704,
- 0.0021414817310869694, 0.24174068868160248, 0.0011159164132550359, 0.006813479587435722,
- 0.059944648295640945, -0.02760928124189377, 0.005281039047986269, 0.06893537938594818,
- -0.014606121927499771, 0.0032055159099400043, -0.03750958666205406,
- 0.010695764794945717, -0.06786422431468964, 0.02611488103866577, -0.11638963967561722,
- 0.0446261428296566, 0.014781651087105274, 0.005766692105680704, 0.04465259984135628,
- -0.05876144766807556, -0.08328229933977127, -0.20675811171531677, -0.014283927157521248,
- -0.07599392533302307, 0.06356477737426758, -0.08536068350076675, -0.04495792090892792,
- 0.011468077078461647, 0.04046128690242767, 0.03246647119522095, 0.05955246835947037,
- -0.04973570257425308, -0.0025430365931242704, 0.03961160033941269, 0.006117850076407194,
- -0.028172019869089127, -0.0031568792182952166, 0.19827498495578766,
- -0.10740866512060165, 0.04615437984466553, 0.12391212582588196, -0.09309306740760803,
- 0.3787747621536255, 0.0018554463749751449, -0.046842336654663086, -0.012898185290396214,
- 0.05858151614665985, 0.05124031379818916, 0.08499469608068466, 0.05583697184920311,
- 0.015114341862499714, 0.02435959316790104, -0.06686612218618393, -0.07254922389984131,
- 0.0718504786491394, 0.008106131106615067, 0.013036142103374004, -0.03985520079731941,
- 0.009035859256982803, -0.03929787874221802, -0.025824178010225296,
- -0.030380379408597946, 0.07033909112215042, 0.10648273676633835, -0.01776866801083088,
- -0.02336896024644375, 0.047814320772886276, -0.07505927234888077, 0.08642059564590454,
- -0.06193811818957329, 0.03598751127719879, 0.009919603355228901, 0.05610792711377144,
- -0.023248540237545967, 0.0003446593473199755, -0.01852550357580185,
- -0.007190745323896408, 0.04536125063896179, 0.11070220917463303, 0.06672552227973938,
- 0.020425090566277504, 0.042175017297267914, 0.055461134761571884, -0.09692796319723129,
- -0.023908227682113647, -0.03705855831503868, -0.033066220581531525,
- -0.013592762872576714, -0.039284855127334595, -0.00738240871578455,
- -0.04394408315420151, -0.17378251254558563, 0.03875218704342842, 0.06464768946170807,
- -0.02782014012336731, -0.0694466233253479, -0.026993950828909874, -0.02265435829758644,
- 0.025701994076371193, -0.0239896047860384, -0.06198380887508392, 0.08665694296360016,
- 0.08092779666185379, 0.03969582915306091, 0.16320033371448517, 0.0295876432210207,
- -0.08738648146390915, -0.06300953030586243, -0.03192782402038574, -0.019568266347050667,
- 0.10672741383314133, -0.15234093368053436, -0.06268048286437988, 0.007407557684928179,
- -0.025328833609819412, 0.6681094169616699, 0.08499232679605484, 0.20335756242275238,
- 0.029417170211672783, -0.022649291902780533, 0.21845315396785736, -0.026111960411071777,
- 0.0875261053442955, -0.084742970764637, -0.04039834812283516, 0.0040236907079815865,
- -0.06234759837388992, -0.0238228440284729, -0.01095188595354557, 0.034202322363853455,
- 0.10757576674222946, 0.01472056470811367, 0.06779474765062332, 0.03614547476172447,
- -0.10567677021026611, 0.02351527288556099, 0.0826864168047905, -0.018881116062402725,
- -0.13233278691768646, -0.03231668844819069, 0.10536828637123108, 0.09660926461219788,
- -0.12236759811639786, 0.0294857919216156, -0.07340139150619507, 0.07453396916389465,
- -0.034078698605298996, 0.06938768178224564, -0.008604203350841999, 0.0453014075756073,
- 0.02151115983724594, 0.015601941384375095, 0.034295834600925446, -0.10222040861845016,
- -0.022553512826561928, 0.07615617662668228, -0.016326988115906715,
- -0.009867462329566479, 0.08197309821844101, -0.047300610691308975, 0.04390311241149902,
- 0.026634719222784042, 0.12624230980873108, -0.11782244592905045, -0.04163553938269615,
- -0.00719104427844286, -0.007134064566344023, 0.030142832547426224, -0.00389683386310935,
- -0.07144279778003693, -0.10598970204591751, 0.11050980538129807, 0.03497486934065819,
- 0.06588979810476303, 0.043152108788490295, -0.05534409359097481, 0.023280367255210876,
- 0.0401354543864727, 0.015288772992789745, -0.04051445052027702, 0.056932855397462845,
- 0.049303267151117325, -0.004021245986223221, -0.04040993005037308, 0.03561808913946152,
- 0.07260497659444809, 0.024374786764383316, -0.040811892598867416, 0.048903390765190125,
- -0.040566712617874146, -0.09123542904853821, 0.06524989753961563, 0.061896275728940964,
- -0.008148672059178352, 0.08667141944169998, -0.035381436347961426,
- -0.006254248786717653, -0.019622327759861946, 0.010736886411905289, 0.04248655214905739,
- -0.00015893469389993697, 0.07751540839672089, 0.11620516330003738, 0.06986040621995926,
- 0.05141871050000191, 0.0650370791554451, 0.05359246954321861, 0.013748583383858204,
- 0.006406822241842747, 0.08763870596885681, 0.008533153682947159, -0.04360188916325569,
- -0.011626130901277065, 0.016557961702346802, -0.023185186088085175,
- 0.040354982018470764, -0.06185365840792656, -0.03725484013557434, -0.09970413148403168,
- -0.01736493781208992, -0.06145920604467392, -0.07019844651222229, -0.015672020614147186,
- 0.03268897160887718, -0.05066561698913574, -0.06845828890800476, -0.0727623999118805,
- -0.008396935649216175, 0.09784989058971405, -0.03351458162069321, -0.013127615675330162,
- -0.12452177703380585, 0.07274328172206879, -0.014074918814003468, 0.03749225288629532,
- 0.004606067668646574, -0.007084171287715435, 0.0024514971300959587, -0.0815119743347168,
- 0.07907552272081375, -0.0038028850685805082, -0.0025066561065614223,
- -0.017001917585730553, -0.024704381823539734, -0.04010009765625, -0.04151453450322151,
- -0.026374049484729767, -0.04733956977725029, -0.005545618012547493, 0.03281160444021225,
- 0.03777995705604553, -0.014039748348295689, -0.023862099274992943, 0.06691940873861313,
- -0.013952011242508888, -0.02828371897339821, 0.08774536848068237, -0.0549677275121212,
- 0.03451855480670929, -0.004711194429546595, -0.05959838256239891, -0.06699838489294052,
- 0.030834589153528214, -0.019772816449403763, 0.043799564242362976, -0.01715313084423542,
- 0.0039423746056854725, -0.050737008452415466, -0.026701580733060837,
- 0.06959035247564316, -0.050604913383722305, -0.05754745006561279, -0.07189089059829712,
- 0.10436795651912689, -0.034215785562992096, -0.025404755026102066, 0.014991343021392822,
- -0.035101644694805145, 0.045835670083761215, -0.00919262319803238, 0.000558881729375571,
- 0.00047900158097036183, 0.049861397594213486, 0.014825341291725636,
- 0.038403283804655075, 0.05859889090061188, -0.04187170788645744, 0.018480317667126656,
- 0.06957706809043884, 0.43158385157585144, -0.2051500678062439, 0.07933802902698517,
- 0.09799652546644211, 0.062192004173994064, 0.03880511224269867, -0.010281775146722794,
- 0.03881125897169113, 0.10021711140871048, 0.1349632441997528, 0.04850247502326965,
- -0.017152998596429825, -0.02679605968296528, -0.09629082679748535, 0.12130463868379593,
- 0.017168058082461357, 0.05282827839255333, -0.023808348923921585, -0.09611374884843826,
- 0.00591448787599802, 0.019785404205322266, -0.04273170232772827, 0.017657484859228134,
- 0.03668947517871857, -0.03736831247806549, -0.0012795048533007503, -0.04500706493854523,
- 0.06654694676399231, -0.06397299468517303, 0.03993915766477585, -0.008051272481679916,
- 0.07950321584939957, 0.02281615324318409, 0.05544482544064522, -0.12879157066345215,
- 0.02761952206492424, -0.05524863675236702, -0.08320930600166321, 0.054226260632276535,
- -0.024751009419560432, 0.05557967722415924, 0.02821797877550125, -0.0529019832611084,
- 0.05773231014609337, -0.014666732400655746, -0.07991944998502731, 0.01949850283563137,
- 0.07800373435020447, 0.029362039640545845, 0.10259085893630981, 0.14321400225162506,
- -0.037502747029066086, -0.08566946536302567, -0.07134693115949631, 0.07517185062170029,
- 0.14486540853977203, -0.03886578977108002, 0.006362399086356163, 0.04713444784283638,
- -0.09334267675876617, -0.02600961923599243, -0.08907509595155716, -0.06560386717319489,
- -0.022041933611035347, -0.0308654997497797, 0.08936379849910736, 0.04150022566318512,
- -0.036374807357788086, -0.1661720722913742, -0.029142387211322784,
- -0.046864431351423264, -0.0014352570287883282, 0.1233605444431305, -0.0711124837398529,
- 0.03898903355002403, -0.021865753456950188, 0.02955024316906929, 0.02152107283473015,
- -0.05948241800069809, 0.031204823404550552, -0.017016706988215446, 0.026077309623360634,
- 0.07207809388637543, 0.02677118219435215, 0.003710025455802679, 0.09865590184926987,
- -0.10295292735099792, 0.0634847953915596, 0.011273408308625221, 0.007560803554952145,
- 0.00691587571054697, -0.012613849714398384, 0.011574497446417809, 0.018834535032510757,
- -0.07180570065975189, 0.006526854354888201, -0.029642850160598755, -0.03484827280044556,
- -0.01997319795191288, -0.07201426476240158, -0.0257601048797369, -0.08984694629907608,
- 0.010550674982368946, -0.13199247419834137, 0.004155751317739487, -0.025077905505895615,
- -0.01773102395236492, -0.0015549830859526992, 0.029251933097839355,
- 0.031160663813352585, -0.11478815972805023, 0.02266840636730194, -0.007595143746584654,
- 0.047860052436590195, -0.02144414559006691, -0.07888144999742508, 0.08997678756713867,
- 0.054882630705833435, 0.046749066561460495, -0.04863060638308525, -0.006884501315653324,
- -0.061544474214315414, 0.04437379911541939, -0.15502721071243286, -0.4413301944732666,
- 0.04902585595846176, -0.03740007057785988, 0.0429944209754467, 0.014795892871916294,
- -0.04348805174231529, 0.061900850385427475, 0.004879293963313103, -0.059116482734680176,
- 0.10390274971723557, -0.05258770287036896, 0.05162343010306358, 0.007160657085478306,
- -0.030351025983691216, -0.006365527398884296, -0.029483387246727943,
- -0.03609027713537216, 0.037372007966041565, -0.02494043856859207, -0.08039527386426926,
- -0.13443279266357422, 0.02141008898615837, -0.0201155673712492, 0.043307073414325714,
- 0.04706038907170296, 0.033602528274059296, -0.03194238618016243, -0.03541538119316101,
- 0.06453200429677963, 0.08814546465873718, 0.019657043740153313, -0.034707602113485336,
- -0.022951308637857437, 0.028324564918875694, -0.056281670928001404, 0.10859071463346481,
- 0.050267767161130905, 0.006997976452112198, -0.07453584671020508, 0.11171258985996246,
- 0.10376428812742233, 0.18678075075149536, -0.006820470094680786, 0.032533932477235794,
- 0.04859495908021927, 0.15367786586284637, 0.06420668214559555, 0.04511357843875885,
- -0.0313512422144413, 0.0011224931804463267, 0.03957737237215042, 0.024863360449671745,
- 0.10056249052286148, -0.08661139756441116, -0.06344031542539597, -0.048717401921749115,
- -0.031376902014017105, -0.04971266910433769, -0.0232414398342371, 0.23997600376605988,
- 0.022699933499097824, -0.006236606277525425, 0.035704106092453, -0.041433677077293396,
- 0.0562356673181057, -0.10943267494440079, -0.08180452138185501, 0.010321445763111115,
- 0.030288396403193474, 0.02241211012005806, -0.032986681908369064, -0.13794712722301483,
- -0.012430191971361637, 0.00299160392023623, 0.006072202231734991, 0.11367858946323395,
- -0.02863818034529686, 0.033045873045921326, -0.04233764111995697, 0.1296292543411255,
- 0.0028191162273287773, -0.04243096709251404, 0.08710252493619919, 0.11715152114629745,
- 0.05416487902402878, 0.046493079513311386, -0.01563374325633049, -0.06418150663375854,
- -0.01479154359549284, 0.14731265604496002, -0.03104279562830925, 0.08255743235349655,
- 0.08012884855270386, -0.07780833542346954, -0.05835479870438576, 0.030985204502940178,
- -0.03303774073719978, 0.016977425664663315, -0.4405285716056824, -0.028728075325489044,
- 0.09994196891784668, 0.0013766575139015913, 0.016884315758943558, 0.05137363076210022,
- -0.006351923104375601, -0.02159743197262287, -0.07746588438749313, -0.10465825349092484,
- 0.10019587725400925, 0.016913967207074165, 0.0752808153629303, -0.11557213962078094,
- 0.010600516572594643, 0.07073353976011276, -0.008159015327692032, 0.026347361505031586,
- 0.06989847868680954, -0.25556936860084534, -0.000041479655919829383, -0.021287702023983,
- 0.1364106684923172, -0.03193320706486702, 0.0014721874613314867, 0.0636502131819725,
- -0.07197073847055435, 0.013310272246599197, 0.07103485614061356, -0.011522781103849411,
- 0.0149833457544446, -0.023616338148713112, -0.027088792994618416, 0.07678237557411194,
- 0.13504011929035187, 0.04579487070441246, 0.0032777588348835707, 11.939301490783691,
- 0.05130518227815628, 0.06361290067434311, -0.1286385953426361, 0.002888546558097005,
- -0.06746716797351837, 0.01796577498316765, -0.0688229575753212, 0.11504099518060684,
- 0.14764507114887238, -0.06037076190114021, -0.04534218832850456, -0.012788348831236362,
- -0.04858366772532463, 0.013832587748765945, -0.0557405911386013, -0.06868232041597366,
- -0.046729058027267456, 0.043948207050561905, -0.004869842901825905,
- -0.02577635459601879, 0.021430091932415962, 0.030427591875195503, 0.02059825323522091,
- -0.055093858391046524, 0.03245183080434799, 0.02062196284532547, 0.033027712255716324,
- -0.0017193513922393322, -0.004037658218294382, 0.019854985177516937,
- 0.008809872902929783, 0.07740359008312225, 0.008058756589889526, -0.009588778018951416,
- 0.03973371163010597, 0.11252429336309433, 0.029303980991244316, 0.004387460649013519,
- 0.06636668741703033, 0.007164294365793467, 0.01254202052950859, -0.0008656439604237676,
- 0.025579579174518585, 0.07814938575029373, 0.03368694335222244, 0.017868749797344208,
- 0.10148315131664276, 0.003403549548238516, 0.055862024426460266, 0.08125197142362595,
- -0.03880792111158371, 0.0871940329670906, 0.022014882415533066, -0.0034437603317201138,
- 0.04775456339120865, -0.0272237379103899, -0.09765501320362091, 0.030542856082320213,
- 0.04439341649413109, -0.03947519138455391, 0.165155827999115, -0.004945519845932722,
- 0.13093428313732147, 0.016857588663697243, 0.04130711406469345, 0.09303262084722519,
- 0.09049450606107712, -0.08271750807762146, -0.038006607443094254, 0.01653202995657921,
- -0.08239439129829407, -0.06812816858291626, 0.06118515506386757, 0.07717902958393097,
- 0.003711837576702237, 0.03941097855567932, -0.02925058826804161, 0.016170751303434372,
- 0.0027305493131279945, 0.001323454431258142, 0.08678294718265533, -0.03510946035385132,
- -0.0039418283849954605, 0.07208772748708725, 0.048676054924726486, 0.07231301814317703,
- 0.08157967776060104, -0.002160635543987155, -0.0683225616812706, -0.0788988322019577,
- 0.11201673001050949, -0.026435554027557373, -0.06348761171102524, -0.005689350422471762,
- -0.07019442319869995, 0.016267800703644753, -0.1555725336074829, 0.10497436672449112,
- 0.08628872781991959, -0.07887797802686691, -0.022940989583730698, -0.04049092158675194,
- 0.06570423394441605, -0.025893064215779305, 0.029923930764198303, -0.06263098120689392,
- -0.04470890760421753, 0.010364392772316933, 0.05218849703669548, -0.006908830720931292,
- 0.05855800583958626, 0.05216911807656288, -0.05462121218442917, -0.007153423503041267,
- 0.06372528523206711, -0.06398599594831467, -0.011983984149992466, 0.07084006816148758,
- 0.03894829750061035, -0.08330265432596207, -0.015647437423467636, -0.019492318853735924,
- -0.043725382536649704, -0.02618221566081047, -0.07366339862346649,
- -0.015126368030905724, 0.025295313447713852, -0.06949935853481293,
- -0.030430741608142853, -0.017750447615981102, 0.09171472489833832, 0.1354953646659851,
- -0.022505218163132668, 0.0706329420208931, -0.06933125853538513, -0.04379802569746971,
- 0.04328043386340141, 0.08885003626346588, 0.0759054496884346, -0.08580592274665833,
- -0.04906409978866577, -0.05802489072084427, -0.08691386133432388, 0.021622227504849434,
- 0.12271655350923538, 0.006833669729530811, 0.00010852668492589146, 0.039772287011146545,
- -0.0617956817150116, -0.03667497634887695, 0.12722013890743256, 0.07588657736778259,
- 0.028341446071863174, 0.06656062602996826, -0.0769331157207489, -0.0737040787935257,
- 0.07370783388614655, -0.04331543296575546, -0.027935203164815903, -0.03368360549211502,
- -0.09620913118124008, 0.1185036450624466, 0.07537604123353958, 0.018236937001347542,
- 0.048330157995224, 0.03531802445650101, 0.03015897609293461, 0.06647469848394394,
- -0.011099697090685368, 0.0477314218878746, -0.0003755380748771131, -0.0626099482178688,
- -0.12301865220069885, -0.008997878059744835, 0.08881834149360657, 0.02004215307533741,
- -0.05765571817755699, -0.017007937654852867, -0.06280619651079178
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 109,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 54,
- "similarity": 0.9983730912208557
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 199,
- "similarity": 0.998288094997406
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 146,
- "similarity": 0.9981493949890137
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Drew Harwell"],
- "epoch_date_downloaded": 1626134400,
- "epoch_date_modified": 1626134400,
- "epoch_date_submitted": 1626134400,
- "flag": null,
- "report_number": 1412,
- "source_domain": "washingtonpost.com",
- "submitters": ["Roman Lutz"],
- "title": "This facial recognition website can turn anyone into a cop — or a stalker",
- "url": "https://www.washingtonpost.com/technology/2021/05/14/pimeyes-facial-recognition-search-secrecy/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "arkansas-department-of-human-services",
- "name": "Arkansas Department of Human Services"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "interrai",
- "name": "InterRAI"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "arkansas-medicaid-waiver-program-beneficiaries",
- "name": "Arkansas Medicaid waiver program beneficiaries"
- },
- {
- "__typename": "Entity",
- "entity_id": "arkansas-healthcare-workers",
- "name": "Arkansas healthcare workers"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1413],
- "vector": [
- -0.0868755504488945, 0.10099676996469498, 0.04360879585146904, -0.09894265234470367,
- 0.16113242506980896, -0.0070788501761853695, -0.025721456855535507, 0.05913638696074486,
- 0.04888524115085602, -0.07498929649591446, -0.03866932541131973, 0.06711570173501968,
- 0.056834880262613297, -0.09880093485116959, 0.04985693469643593, -0.08029879629611969,
- -0.1405395120382309, -0.05823228880763054, -0.052924539893865585, -0.1603800356388092,
- -0.03670788183808327, 0.034550197422504425, -0.004580905195325613, 0.155542254447937,
- -0.04561905562877655, 0.031241046264767647, 0.10486119985580444, 0.1400650143623352,
- 0.0037222367245703936, 0.02756231278181076, -0.05201278626918793, -0.1329708844423294,
- 0.12484204769134521, -0.029034916311502457, -0.06629571318626404, 0.11035741865634918,
- -0.030322052538394928, -0.05440695583820343, 0.04133071377873421, -0.015455817803740501,
- 0.04705686494708061, 0.31390106678009033, 0.023343076929450035, -0.022173434495925903,
- 0.02308495342731476, -0.057830411940813065, 0.02735234797000885, 0.09494186192750931,
- 0.002111195120960474, -0.002043505199253559, -0.008906254544854164, 0.07215157151222229,
- -0.038953639566898346, 0.05834590643644333, -0.14230181276798248, 0.08700845390558243,
- 0.050439685583114624, -0.00894103106111288, 0.031226448714733124, -0.08182569593191147,
- -0.0450240820646286, -0.2837618887424469, -0.04689482972025871, -0.08097469806671143,
- 0.05634884908795357, -0.07764216512441635, -0.06364866346120834, 0.030467748641967773,
- -0.01572495885193348, 0.08807004988193512, 0.06171014904975891, -0.0295583326369524,
- 0.007654356304556131, -0.007787195034325123, -0.017256325110793114, -0.0730043351650238,
- 0.03501307591795921, 0.203425332903862, -0.19117288291454315, -0.015016904100775719,
- 0.11690200865268707, -0.09787026047706604, 0.5564411878585815, 0.0032439343631267548,
- -0.016028622165322304, -0.004249489400535822, 0.11691505461931229,
- 0.0023032163735479116, 0.07217110693454742, 0.06549742072820663, -0.04352952912449837,
- 0.03390127047896385, -0.08341836929321289, 0.050329674035310745, 0.09985408931970596,
- -0.008739069104194641, -0.017591260373592377, 0.06501533091068268,
- -0.007899986580014229, -0.06262007355690002, 0.01661606691777706, -0.01975695975124836,
- 0.12589994072914124, 0.053786516189575195, -0.05471241474151611, -0.005837574135512114,
- 0.11252342164516449, -0.038762062788009644, 0.04611395671963692, -0.005959931295365095,
- 0.030078429728746414, -0.047232817858457565, -0.0026825955137610435,
- -0.024263860657811165, -0.06013137474656105, -0.06931279599666595, 0.010841595008969307,
- 0.026994282379746437, 0.08196379244327545, 0.03549421951174736, 0.007263821084052324,
- 0.03428284078836441, 0.07222880423069, -0.025048507377505302, -0.11003806442022324,
- -0.04443148523569107, -0.012153338640928268, -0.05502735450863838, -0.01476038433611393,
- 0.035879507660865784, -0.08207213878631592, -0.18052776157855988, -0.055607546120882034,
- 0.056392405182123184, -0.026588937267661095, -0.035178519785404205,
- -0.03744238242506981, -0.09587731957435608, 0.05412629619240761, -0.021578975021839142,
- -0.06223389506340027, 0.043533794581890106, 0.04643373191356659, 0.077771857380867,
- 0.13689947128295898, 0.07869327813386917, -0.10484547913074493, 0.010915303602814674,
- 0.04698038101196289, 0.028381533920764923, 0.16320084035396576, -0.10681787133216858,
- -0.017814893275499344, 0.05595502629876137, -0.03277825564146042, 0.6973109841346741,
- 0.18348079919815063, 0.17031238973140717, -0.013035467825829983, -0.046014510095119476,
- 0.23966242372989655, -0.018089285120368004, 0.03630955144762993, -0.07046422362327576,
- -0.01853259839117527, 0.050479572266340256, -0.028880571946501732, -0.0637778788805008,
- 0.04786665365099907, 0.043378476053476334, 0.10958008468151093, 0.006599697284400463,
- 0.09240305423736572, 0.018981793895363808, -0.13007298111915588, 0.019507402554154396,
- 0.14185993373394012, 0.03556190803647041, -0.11854159832000732, -0.02793615683913231,
- 0.07551899552345276, 0.11567535251379013, -0.08521264046430588, 0.0021168768871575594,
- -0.11075817793607712, 0.10852810740470886, -0.04909922555088997, 0.06077288091182709,
- -0.01843351684510708, 0.08884237706661224, 0.04429216682910919, 0.051068976521492004,
- 0.048365410417318344, -0.18310722708702087, -0.03376840427517891, 0.08749604225158691,
- 0.03038770519196987, -0.03888435289263725, -0.02009943500161171, -0.10303505510091782,
- 0.03975231945514679, -0.005031578242778778, 0.18755066394805908, -0.14067500829696655,
- -0.0453743077814579, -0.034036748111248016, -0.0032823653891682625, 0.03339740261435509,
- 0.01162312924861908, -0.03376029059290886, -0.11589469015598297, 0.07909610867500305,
- 0.02388368360698223, 0.13549403846263885, 0.08012554794549942, -0.003741305088624358,
- 0.028679542243480682, 0.13102635741233826, 0.03075382299721241, 0.04398331046104431,
- 0.07628053426742554, 0.0655125081539154, 0.004448536783456802, 0.027148853987455368,
- 0.0316469632089138, 0.002577252918854356, 0.04751104488968849, 0.05032487213611603,
- 0.01564912684261799, -0.01713700033724308, -0.03176598250865936, -0.03255452588200569,
- 0.002760368399322033, 0.0200321227312088, 0.07085669040679932, -0.06362207978963852,
- -0.08711681514978409, -0.008593141101300716, -0.002919483697041869,
- 0.010464598424732685, -0.010165423154830933, 0.09139855206012726, 0.08844517916440964,
- 0.08976030349731445, 0.017639663070440292, 0.11097243428230286, 0.06992250680923462,
- 0.026312772184610367, -0.02319464646279812, 0.08454443514347076, -0.014310922473669052,
- -0.050040267407894135, -0.04060987010598183, 0.04441042244434357, 0.054525818675756454,
- 0.009002011269330978, -0.06563154608011246, -0.02594386786222458, -0.08069106936454773,
- -0.11420972645282745, -0.07007360458374023, 0.007608117535710335, 0.022167885676026344,
- 0.015389754436910152, -0.0640144869685173, -0.11186238378286362, -0.11054431647062302,
- -0.006016061641275883, 0.08499167114496231, 0.03855195268988609, -0.056653764098882675,
- -0.1517334282398224, 0.05478573963046074, -0.01593409851193428, 0.09562307596206665,
- -0.008195219561457634, 0.07308084517717361, 0.07446564733982086, -0.11529809981584549,
- 0.0413912832736969, -0.020811213180422783, -0.032815828919410706, -0.10891003161668777,
- -0.07181718200445175, -0.07651549577713013, -0.05332590639591217, 0.02409929409623146,
- -0.020103156566619873, 0.01740388199687004, -0.011667336337268353, 0.10741037875413895,
- -0.026557384058833122, -0.11448875069618225, 0.03452116996049881, -0.03186793252825737,
- -0.031023001298308372, 0.06969427317380905, -0.056619223207235336, 0.07669084519147873,
- 0.017643310129642487, -0.06966648995876312, -0.02589472383260727, -0.03942428529262543,
- -0.01494463998824358, 0.07259278744459152, -0.023677730932831764, 0.002245213370770216,
- -0.04762760549783707, -0.03793555870652199, 0.022759612649679184, -0.027882643043994904,
- -0.16737036406993866, -0.06597082316875458, 0.13916411995887756, -0.014079013839364052,
- -0.018932702019810677, 0.06488856673240662, -0.02402104064822197, 0.05679916962981224,
- 0.02640264295041561, 0.028864320367574692, 0.10001543164253235, 0.07055513560771942,
- 0.010780329816043377, 0.009832925163209438, 0.09596442431211472, -0.005812434945255518,
- 0.01792755536735058, 0.03467912971973419, 0.47115379571914673, -0.2113405466079712,
- 0.06896986812353134, 0.17682041227817535, 0.08110122382640839, 0.06098134443163872,
- -0.05396531894803047, 0.053054679185152054, 0.07759221643209457, 0.16365936398506165,
- 0.09428059309720993, -0.05561383441090584, -0.0744096115231514, -0.13354401290416718,
- 0.1104026660323143, 0.009299252182245255, 0.09850391000509262, -0.018369434401392937,
- -0.12203333526849747, -0.020988013595342636, 0.06287916004657745, -0.06067955493927002,
- -0.0667615458369255, 0.009066061116755009, -0.059854887425899506, 0.012224891223013401,
- -0.05879712849855423, -0.020552529022097588, 0.005147718824446201, 0.012968731112778187,
- -0.055680084973573685, 0.08556599915027618, 0.04296846315264702, -0.014149602502584457,
- -0.07567644119262695, 0.029100337997078896, -0.05092372000217438, -0.06298241019248962,
- 0.1206652820110321, 0.004498349502682686, -0.0008912940975278616, 0.08758719265460968,
- -0.0642826035618782, 0.04768047854304314, 0.02297092042863369, -0.0786522850394249,
- 0.031142793595790863, 0.09800631552934647, 0.0693693459033966, 0.049936261028051376,
- 0.16959816217422485, -0.07172312587499619, -0.014198727905750275, -0.10066019743680954,
- 0.08386529982089996, 0.17448033392429352, 0.0269632451236248, 0.054596561938524246,
- 0.045331839472055435, -0.02076258882880211, 0.04745742678642273, -0.05735953152179718,
- -0.08083700388669968, -0.07723952829837799, -0.07966050505638123, 0.0793127492070198,
- 0.046042636036872864, 0.007447666022926569, -0.20165063440799713, 0.04276258498430252,
- -0.07190000265836716, 0.06114590913057327, 0.06978528201580048, -0.036880094558000565,
- 0.03446292504668236, -0.00961972028017044, -0.026362480595707893, 0.029782690107822418,
- -0.0729665458202362, 0.054358456283807755, 0.0038147529121488333, -0.02166167087852955,
- 0.056727372109889984, 0.005043839104473591, -0.04360891133546829, 0.08784671872854233,
- -0.09084957838058472, 0.09258754551410675, 0.059307001531124115, -0.015048732981085777,
- 0.03028680384159088, 0.02002764120697975, 0.014500628225505352, 0.00620148004963994,
- -0.009987673722207546, 0.05322558060288429, -0.001675943611189723, -0.0756884291768074,
- -0.1307145655155182, -0.06974994391202927, -0.02144658751785755, -0.05543281137943268,
- 0.008204665966331959, -0.1367395669221878, -0.04700379818677902, -0.03714367374777794,
- -0.0368398055434227, -0.0120273157954216, 0.03782934695482254, 0.009676381014287472,
- -0.14986367523670197, 0.0470036119222641, -0.05560958757996559, 0.12289473414421082,
- 0.04195159301161766, -0.04639390856027603, 0.033884380012750626, 0.11862620711326599,
- 0.047920070588588715, -0.00821668840944767, 0.022979462519288063, -0.12099196761846542,
- 0.03986703231930733, -0.10688845813274384, -0.43365439772605896, 0.05585802346467972,
- -0.041568826884031296, 0.05518396943807602, -0.00021979086159262806,
- -0.08149771392345428, 0.043650127947330475, -0.014480256475508213, -0.07189048826694489,
- 0.07517780363559723, -0.07944053411483765, 0.02001366950571537, 0.03970504179596901,
- -0.10729541629552841, -0.0220097117125988, -0.04771516099572182, -0.07324352115392685,
- 0.05134262144565582, -0.05186011642217636, -0.11086877435445786, -0.17137759923934937,
- 0.08334508538246155, 0.025729525834321976, 0.03712019324302673, -0.00070617301389575,
- -0.03450889140367508, -0.06998451799154282, -0.04089270532131195, 0.11704827845096588,
- 0.00598037289455533, 0.03967665135860443, -0.05623270571231842, -0.019008805975317955,
- 0.07726243883371353, -0.004721303470432758, 0.11823703348636627, 0.01979493349790573,
- -0.0009143102797679603, -0.051359254866838455, 0.10439097136259079,
- 0.055364325642585754, 0.18128164112567902, -0.07421854138374329, 0.009616274386644363,
- -0.017074596136808395, 0.14292103052139282, 0.067202627658844, -0.0021147937513887882,
- -0.03550877794623375, -0.02614535205066204, 0.03034595400094986, -0.009216789156198502,
- 0.09124526381492615, -0.05230468139052391, -0.015771064907312393, -0.058088112622499466,
- 0.020906465128064156, 0.05122848600149155, 0.07970277965068817, 0.19740311801433563,
- 0.017383133992552757, 0.02336891181766987, -0.004274887032806873, -0.034565359354019165,
- -0.0327293686568737, -0.05853346362709999, -0.08091595768928528, -0.013185746036469936,
- -0.05398007854819298, -0.03420175239443779, -0.049785636365413666, -0.0763663649559021,
- -0.02880711853504181, -0.015847785398364067, 0.020095020532608032, 0.12849602103233337,
- 0.0011070409091189504, 0.022269930690526962, -0.019931290298700333, 0.10455649346113205,
- 0.08130104094743729, 0.03441452980041504, 0.07468590140342712, 0.12983201444149017,
- 0.027872130274772644, 0.003017029259353876, -0.038458094000816345, -0.07445269823074341,
- -0.05487309768795967, 0.16016781330108643, -0.09664765000343323, 0.0236942321062088,
- 0.06664163619279861, -0.09312381595373154, -0.08803879469633102, 0.02887135185301304,
- -0.026109281927347183, -0.020490474998950958, -0.44731467962265015,
- -0.018534328788518906, 0.13161076605319977, -0.0013502421788871288,
- 0.002153943059965968, 0.11089567095041275, -0.04885733127593994, -0.06122933328151703,
- -0.005020969547331333, -0.11420762538909912, 0.07609093934297562, 0.04193891957402229,
- 0.07504827529191971, -0.16405557096004486, 0.03625667467713356, 0.07892424613237381,
- -0.050074707716703415, -0.02563304640352726, 0.09361492097377777, -0.20921404659748077,
- 0.0316835418343544, -0.0334673672914505, 0.11337700486183167, -0.03491290658712387,
- 0.02549857646226883, 0.06603170931339264, -0.03290092945098877, 0.033173467963933945,
- 0.07556235045194626, -0.045338623225688934, -0.0070608328096568584,
- -0.030984042212367058, -0.05554581806063652, 0.0952533558011055, 0.026725931093096733,
- 0.05057384818792343, -0.03707202151417732, 12.232592582702637, 0.055390384048223495,
- 0.07427551597356796, -0.1199062317609787, -0.012442801147699356, -0.04082399979233742,
- -0.01112197432667017, -0.15953661501407623, -0.03026585839688778, 0.1656196415424347,
- -0.09165093302726746, -0.07806594669818878, -0.08936982601881027, -0.09306062012910843,
- 0.006678902544081211, -0.040100205689668655, -0.1346450299024582, 0.005924512632191181,
- 0.029994530603289604, -0.05840390920639038, 0.013484308496117592, 0.023027068004012108,
- -0.0033173994161188602, 0.038690511137247086, -0.026484306901693344,
- 0.08414904028177261, 0.03402745723724365, 0.007839301601052284, -0.027903836220502853,
- 0.016126256436109543, -0.07480035722255707, -0.05848114192485809, 0.03763439878821373,
- -0.06373991817235947, 0.027532704174518585, 0.05533292144536972, 0.11794807761907578,
- 0.04085132107138634, 0.03515748679637909, 0.10801197588443756, -0.014290325343608856,
- 0.060331620275974274, 0.07656396925449371, 0.02650616690516472, 0.045725226402282715,
- 0.05544351786375046, 0.0455406978726387, 0.09538721293210983, 0.022394388914108276,
- 0.02609911374747753, 0.0921703428030014, 0.005488032475113869, 0.15665127336978912,
- 0.003104215720668435, -0.03174806758761406, 0.03887786716222763, 0.012691186740994453,
- -0.07317055761814117, 0.07881882786750793, 0.09159824252128601, -0.046516697853803635,
- 0.09236060082912445, -0.012057501822710037, 0.0413375087082386, -0.02398739755153656,
- 0.08656191825866699, 0.04380348324775696, 0.051739681512117386, -0.19469168782234192,
- -0.12731961905956268, -0.03227166086435318, -0.09540621191263199, -0.08226387202739716,
- 0.13352826237678528, 0.1921345293521881, -0.04710695892572403, 0.05315689370036125,
- -0.010428442619740963, 0.01736992783844471, 0.01081763580441475, -0.0038409570697695017,
- 0.09840002655982971, 0.021621892228722572, -0.030820786952972412, 0.07971269637346268,
- 0.0525907427072525, 0.06976482272148132, 0.048996515572071075, -0.08652307838201523,
- -0.09796396642923355, -0.07024861127138138, -0.024810755625367165,
- -0.0004092654271516949, -0.03699355944991112, 0.0656011700630188, -0.04756618291139603,
- 0.08496718853712082, -0.14955338835716248, 0.1396513730287552, 0.06893116980791092,
- -0.09209135919809341, -0.014863231219351292, -0.06431392580270767, 0.019416216760873795,
- 0.045047957450151443, 0.06688130646944046, -0.029685819521546364, -0.001396447536535561,
- 0.005710802040994167, 0.03233971446752548, -0.0030672575812786818, 0.031755246222019196,
- 0.08266989141702652, -0.053435616195201874, 0.024673204869031906, 0.06077927350997925,
- -0.008508499711751938, 0.004782283212989569, 0.0952671691775322, 0.017689667642116547,
- -0.07020623236894608, -0.09999198466539383, -0.05873136222362518, -0.03362123295664787,
- -0.09501838684082031, -0.0837770327925682, 0.050412021577358246, 0.09584659337997437,
- -0.1513708382844925, -0.02519432082772255, 0.06565673649311066, 0.06580394506454468,
- 0.017534419894218445, 0.026386622339487076, 0.10600829124450684, -0.08002720028162003,
- -0.06151020526885986, 0.026190582662820816, 0.010421126149594784, 0.03402039036154747,
- -0.018192563205957413, -0.03726591542363167, -0.09099267423152924, -0.08208993822336197,
- 0.014666987583041191, 0.08248583227396011, 0.07570590823888779, 0.006310286000370979,
- 0.04151277244091034, -0.093808613717556, -0.0940651148557663, 0.11279161274433136,
- 0.07625270634889603, 0.09787936508655548, 0.09581319987773895, -0.0423118881881237,
- -0.033311475068330765, 0.08047715574502945, -0.05639278516173363, 0.009116627275943756,
- 0.08318424224853516, 0.061804480850696564, 0.10244866460561752, 0.1204376220703125,
- 0.08668436855077744, 0.06534841656684875, -0.007177314255386591, 0.008311350829899311,
- -0.030961597338318825, -0.01875884272158146, 0.03672915697097778,
- -0.0005577358533628285, -0.018935680389404297, -0.07849732786417007,
- 0.013837907463312149, 0.0674859806895256, -0.012845410034060478, -0.09729787707328796,
- 0.0046141380444169044, -0.09323743730783463
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 110,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 11,
- "similarity": 0.9972381591796875
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 10,
- "similarity": 0.997215747833252
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 54,
- "similarity": 0.9971127510070801
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Colin Lecher"],
- "epoch_date_downloaded": 1626048000,
- "epoch_date_modified": 1626134400,
- "epoch_date_submitted": 1626134400,
- "flag": null,
- "report_number": 1413,
- "source_domain": "theverge.com",
- "submitters": ["Roman Lutz"],
- "title": "What Happens When An Algorithm Cuts Your Health Care",
- "url": "https://www.theverge.com/2018/3/21/17144260/healthcare-medicaid-algorithm-arkansas-cerebral-palsy"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "amazon-flex",
- "name": "Amazon Flex"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "amazon",
- "name": "Amazon"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "amazon-flex-employees",
- "name": "Amazon Flex employees"
- },
- {
- "__typename": "Entity",
- "entity_id": "amazon-flex-drivers",
- "name": "Amazon Flex drivers"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1430, 1429, 1428, 1427, 1426],
- "vector": [
- -0.07887275516986847, 0.0740082710981369, 0.010598507709801197, -0.1444549560546875,
- 0.09622160345315933, -0.03719484061002731, -0.014614623971283436, 0.034275345504283905,
- 0.11246739327907562, -0.13822537660598755, 0.019592290744185448, 0.02423034980893135,
- 0.02538898028433323, -0.07021911442279816, 0.0041855257004499435, -0.08332162350416183,
- -0.07597282528877258, -0.018715765327215195, -0.03411511331796646, -0.1369173526763916,
- -0.06474164128303528, 0.020906612277030945, 0.019136566668748856, 0.13744470477104187,
- -0.037771277129650116, 0.040066689252853394, 0.1109052300453186, 0.11313191801309586,
- -0.04571225494146347, 0.06682604551315308, -0.040709201246500015, -0.09065435826778412,
- 0.11286356300115585, 0.04623868688941002, 0.005141686648130417, 0.07859410345554352,
- 0.005348906386643648, -0.03953263908624649, -0.002705348189920187, -0.01981392316520214,
- 0.051949284970760345, 0.23133163154125214, 0.01875593140721321, -0.015943434089422226,
- 0.0627007931470871, -0.048618000000715256, 0.02033826895058155, 0.10021980106830597,
- 0.003886513877660036, 0.02418524958193302, -0.02811225689947605, 0.03987432271242142,
- -0.04575037211179733, 0.054944634437561035, -0.10598580539226532, 0.03866823390126228,
- 0.041736699640750885, 0.002935259835794568, 0.06416071951389313, -0.07914502918720245,
- 0.009106901474297047, -0.21485885977745056, -0.01963418908417225, -0.04906837269663811,
- 0.08244022727012634, -0.062326837331056595, -0.04996902123093605, 0.02335294894874096,
- 0.031809814274311066, 0.0637984350323677, 0.028624728322029114, -0.038654737174510956,
- -0.02206583321094513, 0.012710806913673878, 0.003430665237829089, -0.046263061463832855,
- 0.010340911336243153, 0.1971096396446228, -0.0851225033402443, 0.010245444253087044,
- 0.0981690064072609, -0.09941181540489197, 0.38990291953086853, 0.036945294588804245,
- -0.006789167411625385, -0.011939221993088722, 0.07887576520442963, 0.05419032648205757,
- 0.03116275928914547, 0.0595235601067543, -0.012672469019889832, 0.033554840832948685,
- -0.06828906387090683, 0.01250785868614912, 0.07001504302024841, -0.0044161537662148476,
- 0.01186908408999443, 0.017586471512913704, -0.0011032350594177842, -0.0746401995420456,
- -0.004556013736873865, -0.029584253206849098, 0.12679316103458405, 0.05841891095042229,
- -0.04581090062856674, -0.024683784693479538, 0.13332219421863556, -0.07241229712963104,
- 0.05390659719705582, -0.05393606424331665, 0.037260644137859344, -0.011089171282947063,
- 0.05139686539769173, -0.00011275522410869598, 0.04399554803967476, -0.06894441694021225,
- 0.043725885450839996, 0.044358547776937485, 0.0791221559047699, 0.04685559868812561,
- 0.009381419979035854, 0.05834425613284111, 0.06334821879863739, -0.019392188638448715,
- -0.020060604438185692, -0.02761770226061344, -0.07799094170331955, -0.05476544424891472,
- -0.03657316789031029, 0.06493200361728668, -0.05081542581319809, -0.2127731591463089,
- -0.011322824284434319, 0.08468300104141235, -0.016044383868575096,
- -0.021655529737472534, -0.007397213485091925, -0.042699553072452545,
- 0.06810027360916138, -0.012900315225124359, -0.020242445170879364, 0.09930093586444855,
- 0.047406937927007675, 0.03994356095790863, 0.12978911399841309, 0.04116476699709892,
- -0.04995096102356911, -0.033084381371736526, -0.004005142487585545,
- -0.006201210431754589, 0.12549006938934326, -0.12137129157781601, -0.031685926020145416,
- 0.004062640015035868, -0.06812378019094467, 0.7024996280670166, 0.14427468180656433,
- 0.20542296767234802, 0.0012319497764110565, -0.04268602654337883, 0.17573784291744232,
- -0.0041033560410141945, 0.06627513468265533, -0.06917224824428558, -0.07217724621295929,
- 0.01554943062365055, -0.10378638654947281, -0.020535051822662354, 0.06263080984354019,
- -0.0009298910154029727, 0.12823471426963806, 0.010739857330918312, 0.08619721233844757,
- 0.01587389037013054, -0.08764351159334183, -0.026498248800635338, 0.06742863357067108,
- -0.005704058799892664, -0.13473832607269287, -0.03142533451318741, 0.04577251523733139,
- 0.09430340677499771, -0.092234767973423, 0.032525669783353806, -0.06644473969936371,
- 0.026430640369653702, -0.03641849011182785, 0.020207103341817856, -0.005851770751178265,
- 0.058091916143894196, 0.04505901783704758, 0.07497937232255936, -0.011304703541100025,
- -0.1357124298810959, -0.035673998296260834, 0.12240970134735107, -0.015533693134784698,
- -0.042482681572437286, 0.07028212398290634, -0.07242271304130554, 0.04060635715723038,
- 0.0032653342932462692, 0.13697057962417603, -0.12440627813339233, 0.014091400429606438,
- -0.02825852669775486, -0.018491365015506744, 0.06825816631317139, 0.0016748964553698897,
- -0.03715725243091583, -0.08699224889278412, 0.05521216243505478, -0.007086948957294226,
- 0.08422203361988068, 0.02002842165529728, -0.051691632717847824, 0.09203829616308212,
- 0.07715608179569244, 0.003499632701277733, -0.02811846137046814, 0.07327369600534439,
- 0.0444573238492012, -0.03989353030920029, -0.04987480491399765, -0.015169220045208931,
- 0.03511985391378403, 0.04192380607128143, 0.018532002344727516, 0.056042175740003586,
- -0.0009597923490218818, -0.0604417510330677, 0.028176549822092056, 0.03622929006814957,
- 0.03680800646543503, 0.07948888093233109, -0.04604111611843109, -0.038945384323596954,
- -0.051005832850933075, -0.025570297613739967, 0.0027869194746017456,
- -0.020058583468198776, 0.07838316261768341, 0.09807630628347397, 0.06321485340595245,
- 0.04310335963964462, 0.0525885708630085, 0.05820220708847046, 0.032997142523527145,
- 0.0006109606474637985, 0.1011495366692543, -0.05799498409032822, -0.05776602774858475,
- -0.0374685637652874, 0.03755200654268265, 0.029211897403001785, 0.017875876277685165,
- -0.07161803543567657, -0.022622335702180862, -0.04053407162427902, -0.05250582844018936,
- -0.0823407992720604, -0.03598621487617493, 0.011714133433997631, 0.015773102641105652,
- -0.05353466421365738, -0.09268791973590851, -0.11145251989364624, 0.02358384057879448,
- 0.07295740395784378, -0.0063156248070299625, 0.011769254691898823, -0.13292396068572998,
- 0.013171844184398651, -0.020129691809415817, 0.0529928095638752, 0.015522981062531471,
- 0.01794036105275154, 0.006726072635501623, -0.08011694252490997, 0.03969186544418335,
- 0.011550133116543293, -0.013584448024630547, -0.07495085895061493, -0.05084764212369919,
- -0.029474779963493347, -0.016967078670859337, 0.0141194062307477, -0.042470432817935944,
- 0.03110157884657383, 0.027054136618971825, 0.05832620710134506, -0.01807975396513939,
- -0.06700073182582855, 0.07209821045398712, -0.03280860558152199, -0.027943631634116173,
- 0.0848502442240715, -0.021013258025050163, 0.02855020761489868, 0.010732704773545265,
- -0.0732814222574234, -0.03274336829781532, 0.010134357027709484, -0.06070402264595032,
- 0.045818522572517395, -0.028525378555059433, -0.006693293806165457,
- -0.009963725693523884, -0.03678698465228081, 0.05643033981323242, -0.0558425672352314,
- -0.10398781299591064, -0.07862124592065811, 0.12432141602039337, 0.0063095130026340485,
- -0.00862906314432621, 0.03828534856438637, -0.06523551046848297, 0.05171173810958862,
- -0.02151717059314251, 0.018018554896116257, 0.0016051270067691803, 0.031817726790905,
- -0.03393077105283737, 0.014136658981442451, 0.04962129145860672, -0.014359873719513416,
- 0.03653144836425781, 0.09502929449081421, 0.4309884011745453, -0.2175368070602417,
- 0.0864047110080719, 0.09883467108011246, 0.03289157152175903, 0.049033209681510925,
- -0.04347599297761917, 0.06331659853458405, 0.08104576915502548, 0.11451137065887451,
- 0.12070046365261078, -0.04250902682542801, -0.023713046684861183, -0.08844215422868729,
- 0.10729392617940903, -0.009639970026910305, 0.041615862399339676, -0.028947200626134872,
- -0.07200071960687637, -0.03629892319440842, 0.027714375406503677, -0.06283523142337799,
- -0.004328882787376642, -0.015983721241354942, -0.06770428270101547,
- -0.008446833118796349, 0.051310814917087555, 0.03603080287575722, -0.02620794251561165,
- 0.041039615869522095, -0.07999429851770401, 0.06258903443813324, 0.015666428953409195,
- 0.047389548271894455, -0.14532138407230377, 0.026008490473031998, -0.09477106481790543,
- -0.10443321615457535, 0.07212180644273758, 0.009183794260025024, 0.05436209589242935,
- 0.06113298982381821, -0.026394372805953026, 0.052105844020843506, -0.02527478337287903,
- -0.060189999639987946, 0.040707625448703766, 0.04955792799592018, 0.05095174163579941,
- 0.09993584454059601, 0.17272153496742249, -0.026529286056756973, -0.03630842640995979,
- -0.0634767934679985, 0.04833538085222244, 0.13010290265083313, 0.030110975727438927,
- -0.011611135676503181, 0.016368499025702477, -0.05580805987119675,
- -0.005829653702676296, -0.0688476711511612, -0.06556732952594757, -0.02745518647134304,
- -0.03466833010315895, 0.07730358093976974, 0.020963827148079872, -0.04141055792570114,
- -0.1263883262872696, -0.03095485270023346, -0.05639626830816269, -0.010386794805526733,
- 0.11760281026363373, -0.031413495540618896, 0.032555773854255676, 0.00886776763945818,
- -0.03744020313024521, 0.04385633394122124, -0.0904734879732132, 0.03780378773808479,
- -0.04222423955798149, 0.02729286625981331, 0.10294375568628311, 0.027773329988121986,
- -0.05537832900881767, 0.10557149350643158, -0.11619458347558975, 0.08629856258630753,
- 0.034369390457868576, -0.06196906417608261, 0.039400164037942886, -0.01105137262493372,
- 0.02980283461511135, 0.03556536138057709, -0.04045572504401207, 0.0036426507867872715,
- -0.04223257675766945, -0.06076393276453018, -0.10692449659109116, -0.08246056735515594,
- -0.04049791023135185, -0.08551664650440216, 0.03584897518157959, -0.09300500154495239,
- -0.013756951317191124, -0.027884427458047867, -0.027405645698308945,
- -0.011976232752203941, 0.02603391744196415, 0.007783450186252594, -0.1540384292602539,
- 0.016999265179038048, -0.012547875754535198, 0.05281958729028702, -0.007526660803705454,
- -0.0647299736738205, 0.02486523613333702, 0.07246953994035721, 0.06920050084590912,
- -0.029935162514448166, -0.01493811421096325, -0.0640573725104332, 0.07706193625926971,
- -0.08697696030139923, -0.4538215696811676, 0.07586310803890228, -0.0002217194705735892,
- 0.05338721349835396, 0.026821380481123924, -0.04999702423810959, 0.042528241872787476,
- 0.0035910815931856632, -0.05909991264343262, 0.09178230166435242, -0.06633822619915009,
- 0.027356792241334915, 0.003158142324537039, -0.06970949470996857, -0.036819376051425934,
- -0.036749061197042465, -0.07096882164478302, 0.0414220467209816, -0.03964506834745407,
- -0.08442319929599762, -0.1345614641904831, 0.02600266970694065, 0.0012665798421949148,
- 0.012088735587894917, -0.0032036255579441786, 0.04065928980708122, -0.05130654573440552,
- -0.054002612829208374, 0.059816379100084305, 0.01815214939415455, 0.020159507170319557,
- -0.08414433151483536, 0.021921899169683456, 0.06305854767560959, 0.0004503128002397716,
- 0.14200957119464874, -0.004194132052361965, 0.03528209403157234, -0.05212153121829033,
- 0.10505206882953644, 0.04315538331866264, 0.18475371599197388, -0.0016077074687927961,
- 0.024254104122519493, -0.013432356528937817, 0.10548492521047592, 0.053777553141117096,
- 0.034402914345264435, -0.03571019321680069, -0.0116829052567482, 0.0340934582054615,
- -0.013145391829311848, 0.07562310993671417, -0.07223812490701675, -0.04357925057411194,
- -0.019518163055181503, -0.034101035445928574, -0.014595234766602516,
- -0.04088068753480911, 0.20053866505622864, 0.01748235896229744, 0.011577517725527287,
- 0.014382408931851387, -0.07643745839595795, 0.041799042373895645, -0.05451670289039612,
- -0.12478010356426239, -0.02645886316895485, -0.023562397807836533, 0.02250809408724308,
- -0.03689195588231087, -0.12653687596321106, -0.021443568170070648,
- 0.0002161560405511409, 0.010643457993865013, 0.13000443577766418, -0.037646785378456116,
- 0.028087858110666275, -0.036207832396030426, 0.14334870874881744, 0.06612612307071686,
- 0.022289562970399857, 0.03789428621530533, 0.08032672107219696, 0.027186820283532143,
- 0.03857043385505676, -0.062459904700517654, -0.06621196120977402, 0.02806326374411583,
- 0.1388077735900879, -0.0343933030962944, 0.11705722659826279, 0.0706809014081955,
- -0.05031130462884903, -0.05587039142847061, 0.029475662857294083, 0.04166831448674202,
- 0.03034110926091671, -0.4492562711238861, -0.04025828465819359, 0.11048798263072968,
- 0.009333771653473377, 0.01663154922425747, 0.0808584988117218, 0.025199834257364273,
- -0.05903037264943123, -0.04612003266811371, -0.1058991551399231, 0.15800897777080536,
- 0.0008265398209914565, 0.03251976519823074, -0.10142561048269272, 0.02269844524562359,
- 0.05919254943728447, -0.015635954216122627, -0.0004276024119462818,
- 0.051288455724716187, -0.23827636241912842, 0.001453706994652748, -0.016868289560079575,
- 0.17324572801589966, 0.02187936380505562, 0.03587387502193451, 0.07284929603338242,
- -0.05548257753252983, 0.016435999423265457, 0.055165279656648636,
- -0.0028769231867045164, 0.045006684958934784, 0.004509251564741135,
- -0.00007692053623031825, 0.09147185832262039, 0.08487363159656525, 0.14309123158454895,
- -0.03684278577566147, 12.044340133666992, 0.049109652638435364, 0.05888070911169052,
- -0.12385690212249756, -0.007281159516423941, -0.043893784284591675,
- 0.016604196280241013, -0.12271323055028915, 0.053958721458911896, 0.12704196572303772,
- -0.037147291004657745, -0.05450979992747307, -0.028544634580612183,
- -0.08451806008815765, 0.015360185876488686, -0.06108986213803291, -0.07933908700942993,
- -0.0568542405962944, 0.032094556838274, -0.06150311231613159, -0.027145544067025185,
- 0.06577377021312714, 0.04959584400057793, -0.0003362942370586097, -0.05912437289953232,
- 0.011167267337441444, 0.01954113505780697, 0.012756283394992352, 0.0005696268635801971,
- 0.018972788006067276, -0.007988674566149712, 0.03568752855062485, 0.044984370470047,
- -0.008101625367999077, 0.02987474575638771, 0.09069947153329849, 0.06746868789196014,
- 0.04129994288086891, 0.05461997538805008, 0.09292211383581161, 0.005046637263149023,
- 0.027316927909851074, 0.022242136299610138, 0.021419186145067215, 0.05043156072497368,
- 0.03653816133737564, -0.002223039511591196, 0.12037509679794312, 0.0010066821705549955,
- 0.0785517618060112, 0.10458216816186905, -0.022829126566648483, 0.10952355712652206,
- 0.01309078186750412, 0.005410812795162201, 0.06330520659685135, -0.028344452381134033,
- -0.10025527328252792, 0.09568546712398529, 0.0930364727973938, -0.06885659694671631,
- 0.1001911386847496, 0.023405030369758606, 0.09876976907253265, 0.0428113117814064,
- 0.07154492288827896, 0.062485210597515106, 0.08078441023826599, -0.15362370014190674,
- -0.08085724711418152, 0.04915338009595871, -0.08624455332756042, -0.09672657400369644,
- 0.05056269094347954, 0.11275380849838257, -0.05665556341409683, 0.04617930203676224,
- -0.03380855917930603, 0.025383099913597107, -0.05132053419947624, -0.006679066922515631,
- 0.05110633373260498, -0.015182001516222954, 0.0055371676571667194, 0.0703359991312027,
- 0.012023914605379105, 0.07888426631689072, 0.08315132558345795, -0.006901387125253677,
- -0.08277559280395508, -0.0915747731924057, 0.06465017795562744, -0.017784738913178444,
- -0.057304613292217255, 0.010972418822348118, -0.09629477560520172, 0.06572936475276947,
- -0.15959541499614716, 0.07821058481931686, 0.08157959580421448, -0.09582767635583878,
- -0.031041253358125687, -0.028066813945770264, 0.08685250580310822, 0.011897892691195011,
- 0.030276328325271606, -0.04953649267554283, 0.03245462104678154, -0.01146933063864708,
- 0.0544552206993103, -0.0501757375895977, 0.10572843253612518, 0.08937187492847443,
- -0.061865679919719696, 0.03974469378590584, 0.07303336262702942, -0.04255662113428116,
- -0.05925530195236206, 0.04587159305810928, 0.030009422451257706, -0.07705714553594589,
- -0.041556891053915024, -0.015591581352055073, -0.03558774292469025,
- -0.028658512979745865, -0.003370976774021983, 0.011532709933817387,
- 0.020833123475313187, -0.0750192254781723, -0.005554032512009144, 0.07023973762989044,
- 0.050685714930295944, 0.08796665817499161, 0.007998714223504066, 0.09263583272695541,
- -0.0826425850391388, -0.07004157453775406, 0.052184559404850006, 0.037418462336063385,
- 0.05682641267776489, -0.012964543886482716, -0.021479416638612747, -0.06511310487985611,
- -0.1084679514169693, 0.0286983884871006, 0.0982668474316597, 0.041969723999500275,
- 0.01854906976222992, 0.0131722092628479, -0.08092520385980606, -0.0768185704946518,
- 0.11211319267749786, 0.086675263941288, 0.005042984150350094, -0.002082686871290207,
- -0.0724840760231018, -0.05085306614637375, 0.11084294319152832, -0.042425137013196945,
- 0.011843916960060596, 0.05541260167956352, -0.04644419997930527, 0.10366864502429962,
- 0.14181199669837952, 0.030227959156036377, 0.04795558378100395, -0.038336366415023804,
- -0.00002322560249012895, 0.02810811623930931, -0.013162749819457531,
- 0.009558049961924553, -0.02225233055651188, -0.0840526893734932, -0.08007067441940308,
- 0.00949967373162508, 0.092460036277771, 0.04037734121084213, -0.12913092970848083,
- -0.02160518243908882, -0.02386103756725788
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 111,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 125,
- "similarity": 0.9989471435546875
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 37,
- "similarity": 0.9987655282020569
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 10,
- "similarity": 0.9987136125564575
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Tim De Chant"],
- "epoch_date_downloaded": 1624924800,
- "epoch_date_modified": 1625011200,
- "epoch_date_submitted": 1625011200,
- "flag": null,
- "report_number": 1430,
- "source_domain": "arstechnica.com",
- "submitters": ["Kate Perkins"],
- "title": "Amazon is using algorithms with little human intervention to fire Flex workers",
- "url": "https://arstechnica.com/tech-policy/2021/06/amazon-is-firing-flex-workers-using-algorithms-with-little-human-intervention/"
- },
- {
- "__typename": "Report",
- "authors": ["Lawrence Hodge"],
- "epoch_date_downloaded": 1624924800,
- "epoch_date_modified": 1625011200,
- "epoch_date_submitted": 1625011200,
- "flag": null,
- "report_number": 1429,
- "source_domain": "jalopnik.com",
- "submitters": ["Kate Perkins"],
- "title": "Amazon Is Using Algorithms And A.I. To Terminate Flex Drivers By E-mail",
- "url": "https://jalopnik.com/amazon-is-using-algorithms-and-a-i-to-terminate-flex-d-1847195931"
- },
- {
- "__typename": "Report",
- "authors": ["Rafael Queiroz"],
- "epoch_date_downloaded": 1624924800,
- "epoch_date_modified": 1625011200,
- "epoch_date_submitted": 1625011200,
- "flag": null,
- "report_number": 1428,
- "source_domain": "olhardigital.com.br",
- "submitters": ["Kate Perkins"],
- "title": "Amazon Flex Fires Employees by Software Algorithm",
- "url": "https://olhardigital.com.br/en/2021/06/29/pro/amazon-flex-demite-funcionarios-por-algoritmo"
- },
- {
- "__typename": "Report",
- "authors": ["Spencer Soper"],
- "epoch_date_downloaded": 1624924800,
- "epoch_date_modified": 1625011200,
- "epoch_date_submitted": 1625011200,
- "flag": null,
- "report_number": 1427,
- "source_domain": "bloomberg.com",
- "submitters": ["Kate Perkins"],
- "title": "Fired by Bot at Amazon: ‘It’s You Against the Machine’",
- "url": "https://www.bloomberg.com/news/features/2021-06-28/fired-by-bot-amazon-turns-to-machine-managers-and-workers-are-losing-out"
- },
- {
- "__typename": "Report",
- "authors": ["Explica"],
- "epoch_date_downloaded": 1624924800,
- "epoch_date_modified": 1625011200,
- "epoch_date_submitted": 1625011200,
- "flag": null,
- "report_number": 1426,
- "source_domain": "explica.co",
- "submitters": ["Kate Perkins"],
- "title": "War veteran fired from Amazon for automated email with no chance to defend himself",
- "url": "https://www.explica.co/war-veteran-fired-from-amazon-for-automated-email-with-no-chance-to-defend-himself.html"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "troy-police-department",
- "name": "Troy Police Department"
- },
- {
- "__typename": "Entity",
- "entity_id": "syracuse-police-department",
- "name": "Syracuse Police Department"
- },
- {
- "__typename": "Entity",
- "entity_id": "san-francisco-police-department",
- "name": "San Francisco Police Department"
- },
- {
- "__typename": "Entity",
- "entity_id": "san-antonio-police-department",
- "name": "San Antonio Police Department"
- },
- {
- "__typename": "Entity",
- "entity_id": "new-york-city-police-department",
- "name": "New York City Police Department"
- },
- {
- "__typename": "Entity",
- "entity_id": "fall-river-police-department",
- "name": "Fall River Police Department"
- },
- {
- "__typename": "Entity",
- "entity_id": "chicago-police-department",
- "name": "Chicago Police Department"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "shotspotter",
- "name": "ShotSpotter"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "troy-residents",
- "name": "Troy residents"
- },
- {
- "__typename": "Entity",
- "entity_id": "troy-police-department",
- "name": "Troy Police Department"
- },
- {
- "__typename": "Entity",
- "entity_id": "syracuse-residents",
- "name": "Syracuse residents"
- },
- {
- "__typename": "Entity",
- "entity_id": "syracuse-police-department",
- "name": "Syracuse Police Department"
- },
- {
- "__typename": "Entity",
- "entity_id": "san-francisco-residents",
- "name": "San Francisco residents"
- },
- {
- "__typename": "Entity",
- "entity_id": "san-francisco-police-department",
- "name": "San Francisco Police Department"
- },
- {
- "__typename": "Entity",
- "entity_id": "san-antonio-residents",
- "name": "San Antonio residents"
- },
- {
- "__typename": "Entity",
- "entity_id": "san-antonio-police-department",
- "name": "San Antonio Police Department"
- },
- {
- "__typename": "Entity",
- "entity_id": "new-york-city-residents",
- "name": "New York City residents"
- },
- {
- "__typename": "Entity",
- "entity_id": "new-york-city-police-department",
- "name": "New York City Police Department"
- },
- {
- "__typename": "Entity",
- "entity_id": "fall-river-residents",
- "name": "Fall River residents"
- },
- {
- "__typename": "Entity",
- "entity_id": "fall-river-police-department",
- "name": "Fall River Police Department"
- },
- {
- "__typename": "Entity",
- "entity_id": "chicago-residents",
- "name": "Chicago Residents"
- },
- {
- "__typename": "Entity",
- "entity_id": "chicago-police-department",
- "name": "Chicago Police Department"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [2496, 2495, 2250, 1821, 1810, 1436, 1435, 1434, 1433, 1432],
- "vector": [
- -0.07591876089572906, 0.09143781512975693, 0.004761780751869083, -0.09921971410512924,
- 0.08903058841824532, 0.004885997623205185, -0.0071187267079949375, 0.04049267154186964,
- 0.07249396443367004, -0.1430903211236, 0.045621562842279674, 0.05649113792460412,
- 0.004124746844172478, -0.08769564628601074, 0.024606706341728568, -0.10533234886825085,
- -0.06572946514934301, -0.0651713028550148, -0.041031410731375215, -0.11472105011343955,
- -0.05415298230946064, -0.03375506140291691, 0.024277395522221922, 0.09006033837795258,
- -0.03985332353040576, 0.029999397689243777, 0.08965243846178055, 0.14096981957554816,
- -0.07165028551826254, 0.012317778752185404, -0.02082298891618848, -0.057047413662075996,
- 0.13442671597003936, 0.006131528504192829, -0.02770222208928317, 0.11052956134080887,
- 0.03248062301427126, -0.040536898747086526, -0.028709618840366602,
- -0.016036244085989894, 0.02628904050216079, 0.24574475288391112, -0.017332612350583077,
- -0.026297061517834664, 0.0640500457957387, -0.05717245955020189, -0.013535220129415392,
- 0.07964865230023861, -0.00809931664261967, 0.004296466300729662, -0.016757352737477048,
- 0.05343483597971499, -0.032490933686494826, 0.021702715149149298, -0.102474657446146,
- 0.06301005445420742, 0.024256068794056774, 0.02354524782858789, 0.03633899670094252,
- -0.07402667813003064, -0.07528060786426068, -0.2329380288720131, -0.029480886657256632,
- -0.11886218525469303, 0.09102834798395634, -0.07727472223341465, -0.0605358324944973,
- 0.017310893815010785, 0.01121071910019964, 0.05689123068004846, 0.06671603955328465,
- -0.023347076727077365, -0.023290705773979424, 0.03438019135501236,
- -0.006326004536822439, 0.026582965254783632, 0.003981555911013857, 0.18694163784384726,
- -0.09932526350021362, 0.01811369084753096, 0.09560205191373825, -0.08580598160624504,
- 0.43952195048332215, 0.024309790786355735, -0.01544069752562791, -0.05707126935012639,
- 0.08083223961293698, 0.0488662863150239, 0.038944183848798275, 0.06322819516062736,
- -0.03209759506280534, 0.034626120864413676, -0.06455103307962418, 0.024876589979976417,
- 0.08298336789011955, 0.02299024146050215, 0.0003479659731965512, 0.05595278115943074,
- -0.012494795670500025, -0.043554175458848474, -0.012087095412425697,
- -0.037158947950229046, 0.11014259159564972, 0.07876212000846863, -0.04834107160568237,
- 0.016631119130761363, 0.09975405856966972, -0.04420245327055454, 0.05914564505219459,
- -0.04486903492361307, 0.04280023260507733, -0.0028582769446074963, 0.04615917224436998,
- 0.0059885990107432, 0.033868206571787594, -0.022050300723640247, -0.005962872365489602,
- 0.03574565099552274, 0.09294959604740143, -0.02381254443898797, -0.0075514406053116545,
- 0.07361693494021893, 0.08842571340501308, -0.04626198280602693, -0.051045453909318896,
- -0.03337297989055514, -0.05747321452945471, -0.03940815068781376, -0.033284795377403496,
- 0.017564712569583207, -0.046154060401022434, -0.20597721338272096, 0.005421542725525796,
- 0.08198487441986799, -0.0043300355318933725, -0.03443820271641016, 0.028469150653108954,
- -0.07659821659326553, 0.04417420485988259, -0.027761244494467974, -0.023329671868123115,
- 0.08549470789730548, 0.0585623926948756, 0.010296217282302678, 0.1447821781039238,
- 0.027234055462758987, -0.06922245770692825, -0.020310126850381492,
- -0.009136398986447603, -0.009923720452934503, 0.09387781992554664, -0.1374783456325531,
- -0.05508642792701721, 0.03756375554949045, -0.004623950587119907, 0.6728256344795227,
- 0.12322611287236214, 0.1903328225016594, 0.00960439839400351, -0.008607234805822372,
- 0.16094756871461868, 0.021452081308234484, 0.07436290979385377, -0.06915494166314602,
- -0.05172143615782261, 0.010158995725214481, -0.0744650460779667, -0.03396980352699756,
- 0.024295893730595708, 0.027758135087788106, 0.10100562199950218, 0.0070147463120520115,
- 0.07744263522326947, -0.03135625859722495, -0.0914089646190405, -0.009624008159153163,
- 0.07418745718896388, -0.011568993423134088, -0.14074956774711608, -0.025289572775363922,
- 0.06808797679841519, 0.07158480435609818, -0.09181947857141495, -0.0037542007165029647,
- -0.05919940769672394, 0.014831459027482197, -0.02959606973454356, 0.025554522033780815,
- -0.016896987706422804, 0.04393156031146646, 0.057092484459280966, 0.07221992462873458,
- 0.02207790659740567, -0.12925173044204713, -0.05210166722536087, 0.10120421722531318,
- -0.009773631961434149, -0.04066355861723423, 0.10087602287530899, -0.08177053481340409,
- 0.054576226696372035, 0.0032927869819104672, 0.16000422239303588, -0.11172189861536026,
- 0.03352080043405294, 0.004194654547609389, -0.020376206713262946, 0.05479931384325028,
- -0.0027627552626654506, -0.019934290507808327, -0.026991010643541813,
- 0.09140040278434754, 0.03412578930146992, 0.10866416096687317, 0.023044588114134967,
- -0.04735681544989347, 0.03643176332116127, 0.03991196770220995, -0.006793264136649668,
- -0.03337160861119628, 0.0613286342471838, 0.06699770912528039, -0.016649380000308155,
- -0.013569668983109295, 0.034777195937931535, 0.04161866753129288, 0.05245144590735436,
- 0.017036501271650194, 0.028225807659327983, -0.02443830787669867, -0.06443129554390907,
- 0.0037040118826553226, 0.0518785610795021, 0.024896015948615968, 0.12380395531654358,
- -0.04184287087991834, -0.024352149153128267, -0.017917978577315807,
- -0.012333877477794885, 0.003007770495605655, -0.03108464335091412, 0.061989999189972875,
- 0.07488430216908455, 0.0811924759298563, 0.030466916970908642, 0.033275831816717984,
- 0.050263619795441625, 0.013395028171362355, 0.05162434931844473, 0.07749156206846237,
- -0.021504215616732835, -0.05735306646674872, 0.010877672082278878,
- -0.005700386525131762, 0.04924098933115602, 0.0474226213991642, -0.07496410720050335,
- -0.02899001482874155, -0.0484339133836329, -0.031227219951688312, -0.06952311005443335,
- -0.07363205030560493, -0.029051865823566912, 0.035498554119840264, -0.04652791917324066,
- -0.08122635558247567, -0.060113000124692915, 0.027559552947059272, 0.10707057043910026,
- -0.022518301941454412, -0.003886800294276327, -0.1075947143137455, 0.029133277432993054,
- -0.016244229255244137, 0.05702979676425457, -0.011730202077887952, 0.03968550330027938,
- 0.007633820420596749, -0.038078423496335743, 0.052355363592505456, -0.0426789466291666,
- -0.022760700818616898, -0.07049467712640763, -0.01266399808228016, -0.07026800960302353,
- 0.020811591995880008, 0.027804515836760402, -0.04035409335047006, 0.03568295268341899,
- 0.02994547546841204, 0.03158758413046599, -0.013992988876998425, -0.0179585387930274,
- 0.09886758401989937, -0.03695224825059995, 0.01379819680005312, 0.10333140343427658,
- -0.02300804079277441, 0.04193858024664223, -0.04094190765172243, -0.0627683237195015,
- -0.05617931373417377, -0.03445217593107373, -0.05511011630296707, 0.030807875376194716,
- -0.03974175762268715, -0.02406368001829833, -0.05176494438201189, 0.004326717322692275,
- 0.057499194703996184, -0.07566536292433738, -0.05702210152521729, -0.08330159932374955,
- 0.11810561865568162, -0.008277888423617697, -0.022126295790076255,
- -0.001707865996286273, -0.08977573290467263, 0.04560350743122399, -0.028335835004691036,
- 0.003622608119621873, 0.03596316827461123, 0.03184643136337399, -0.03300644275732338,
- 0.0055697509465971965, 0.06643349640071392, -0.04630769528448582, 0.006526813469827175,
- 0.05442574098706245, 0.42191592454910276, -0.14844827093183993, 0.08634640462696552,
- 0.09003142192959786, 0.03837001398205757, 0.05720528997480869, -0.06472008973360062,
- 0.05043023861944675, 0.08414691090583801, 0.1398080460727215, 0.05638059489428997,
- -0.06221462991088629, -0.01350259748287499, -0.0779244765639305, 0.0912624828517437,
- 0.01894266251474619, 0.022049261908978223, -0.03784860919695347, -0.1008680745959282,
- 0.008161241910420359, 0.05488185789436102, -0.03677156968042254, 0.001490513258613646,
- 0.019473494868725537, -0.06849579401314258, 0.016763649974018337, 0.010885781701654195,
- 0.026507481501903386, -0.04790940992534161, 0.02678649304434657, 0.008422955102287234,
- 0.054013687372207644, 0.015093023469671608, 0.028808701760135592, -0.12370585426688194,
- 0.018278651614673437, -0.08858368787914514, -0.11759064123034477, 0.11487636342644691,
- -0.05572341252118349, 0.03521253299695672, 0.08130905441939831, -0.032898935955017805,
- 0.05922858603298664, -0.03988532543880865, -0.037446369510144, 0.026790971960872413,
- 0.016091027436777948, 0.04150551669299603, 0.06793279722332954, 0.1776539847254753,
- -0.04371761223301292, -0.07686979286372661, -0.07333003059029579, 0.08725295551121234,
- 0.10379452519118786, -0.029211028735153376, -0.01704346335027367, -0.002585541317239404,
- -0.045742050372064115, 0.010815441916929559, -0.04444398060441017, -0.08041893914341927,
- 0.0377284053247422, -0.02780425572418608, 0.08170480914413929, 0.021707861474715172,
- -0.02733680191449821, -0.15876747220754622, -0.03214146550744772, -0.045255554281175135,
- 0.0026917089708149433, 0.12758407667279242, -0.024664972093887627, 0.058439378067851065,
- 0.008402814593864605, 0.015501831354777095, 0.015020787295361515, -0.04566207807511091,
- 0.01826593014411628, -0.03490528603433631, 0.01388839555438608, 0.07237479910254478,
- 0.03902387702837586, -0.052500029746443036, 0.05110581517219544, -0.08204273134469986,
- 0.01775820238981396, 0.010787803633138537, -0.0312921755714342, 0.0337625730317086,
- -0.03188269529491663, 0.02580886809155345, 0.003089175163768232, -0.019480326352640985,
- -0.012951634789351374, -0.00914908228442073, -0.06515677999705076,
- -0.060801399685442445, -0.06023204866796732, -0.036141923349350694,
- -0.08868921510875225, 0.04488364104181528, -0.11671526208519936, 0.0014279381255619227,
- -0.023676973674446343, -0.015167288109660148, 0.011952877242583782,
- 0.020575623540207744, 0.02444982386659831, -0.11664420142769813, 0.0039905122015625235,
- -0.014546685965615324, 0.0394325478002429, 0.03394786529242992, -0.06096667172387242,
- 0.05105456784367561, 0.10830738544464111, 0.041422668774612245, -0.0358296976191923,
- -0.005407344229752198, -0.029463963862508536, 0.041439380822703244, -0.1003577072173357,
- -0.4721715271472931, 0.07477128356695176, 0.004165924759581685, 0.07114172838628292,
- 0.036395888030529025, -0.08275969177484513, 0.04474611300975084, -0.02251548504573293,
- -0.02401507624890655, 0.07777603454887867, -0.04045052453875542, 0.03998731393367052,
- 0.0029164970852434634, -0.04809294044971466, -0.023561218474060296,
- -0.09667956456542015, -0.027719325618818402, 0.03225772492587566, -0.01239366874215193,
- -0.10833262279629707, -0.11238480210304261, 0.0366973927244544, -0.014054539846256375,
- -0.007549035106785595, -0.027958842483349143, 0.021662936150096356,
- -0.06731698457151651, -0.05937153846025467, 0.01481330837123096, 0.06941689848899842,
- 0.03514062671747524, -0.07880942225456238, -0.00039017336675897243,
- 0.052152474969625474, -0.028979199565947057, 0.1140055276453495, 0.005446490447502584,
- 0.02854854092001915, -0.08544532917439937, 0.09970678873360157, 0.055517373234033586,
- 0.18678703308105468, 0.001557960599893704, 0.04245878048241138, 0.0039847186148108445,
- 0.11598480194807052, 0.022252897464204578, 0.021717667690245433, -0.03785984106361866,
- -0.025136977015063167, 0.020157524751266465, -0.01160789188434137, 0.05075603555887938,
- -0.07309190444648266, -0.02552175442688167, -0.06005844995379448, -0.012684996891766786,
- -0.007010659179650247, -0.03080473393201828, 0.19373902380466462, 0.023969442024827002,
- 0.02134240869199857, 0.04987979158759117, -0.0821470309048891, 0.03990165996365249,
- -0.039634673623368144, -0.12339931279420853, 0.008260974373661157, -0.02862622868269682,
- 0.025376281776698307, -0.015440747258253396, -0.12242349684238434,
- -0.029681156342849135, -0.005952212249394506, -0.010569069883786142, 0.0908024150878191,
- -0.04777595327468589, 0.030385375209152698, -0.03862542621791363, 0.13381745740771295,
- 0.04274497907608747, 0.0007787920647388091, 0.05324759595096111, 0.09492990300059319,
- 0.020440599764697254, -0.011279505304992199, -0.04040179578587413, -0.05941109601408243,
- -0.03815784025937319, 0.09506962075829506, -0.055023009330034255, 0.10361577421426774,
- 0.03962525706738233, -0.06216513402760029, -0.06857995241880417, 0.03607784509658814,
- 0.007776298234239221, 0.025114918337203564, -0.4411270469427109, -0.008034244016744196,
- 0.10261959880590439, 0.01355012464337051, 0.0234579018317163, 0.07016436532139778,
- 0.016918086772784592, -0.035157121159136294, -0.031245376635342836,
- -0.07975946892984212, 0.1553112804889679, 0.022394673782400787, 0.05527853481471538,
- -0.07668632492423058, 0.06549632418900728, 0.10729257315397263, -0.007725973665947095,
- -0.0029457403579726815, 0.06712241917848587, -0.18834830224514007,
- -0.012197907199151814, -0.036962566897273064, 0.12075223326683045, 0.020300119352759792,
- -0.00043202958622714507, 0.06312919743359088, -0.07248564027249813, 0.0178751471452415,
- 0.06404681652784347, 0.004903594544157386, 0.0580260407179594, 0.005657428980339318,
- -0.04224194455891848, 0.10951081365346908, 0.09533655047416686, 0.0673158384859562,
- -0.024252097960561513, 11.927100944519044, 0.08038190305233002, 0.05383277460932732,
- -0.08984908536076545, 0.021350574192183558, -0.027824723115190863, 0.02803895534016192,
- -0.08784079514443874, 0.08616162426769733, 0.11137614622712136, -0.005304221110418439,
- -0.05202267095446587, -0.04460217747837305, -0.09766277372837066,
- -0.0004925964283756911, -0.05811079107224941, -0.04521935684606433, -0.041411367431283,
- 0.03481984715908766, -0.05189329218119383, -0.021198247918800917, 0.062304322607815266,
- 0.06723780184984207, 0.030582544911885633, -0.08186045326292515, -0.0025178179144859313,
- 0.013933068560436367, -0.042456569522619246, -0.0027983977925032377,
- 0.023235402163118125, -0.004453973309136927, 0.003825286609935574, 0.0618202093988657,
- -0.0007939085597172379, 0.02857420176733285, 0.0464678693562746, 0.049688790924847126,
- 0.07102992199361324, 0.029587542964145543, 0.09282071478664874, 0.020960613572970032,
- 0.05467067379504442, -0.003206873242743313, 0.019755888148210943, 0.08599421121180058,
- 0.057253682613372804, 0.051510803028941156, 0.13769811093807222, 0.023086365312337875,
- 0.07333207130432129, 0.114155725389719, -0.030564248605514877, 0.1015670858323574,
- 0.022843450494110584, 0.001969206938520074, 0.05147626996040344, 0.006054698955267668,
- -0.048517897725105286, 0.06528920456767082, 0.047797735407948495, -0.028495024889707565,
- 0.12984480559825898, 0.019146397802978755, 0.10045701153576374, 0.017174730566330253,
- 0.07497380878776312, 0.09348291270434857, 0.09608922153711319, -0.14300714284181595,
- -0.05316032264381647, 0.02525559989735484, -0.11737700030207635, -0.054217313230037686,
- 0.07363187409937381, 0.07332831677049398, -0.03079340127296746, 0.061310688778758046,
- -0.026090307696722447, 0.03397900881245732, -0.019626778713427485,
- -0.018313420983031393, 0.059041406773030755, -0.018822359666228295,
- 0.002848127717152238, 0.08238723576068878, 0.008933857502415776, 0.08363555297255516,
- 0.11144262328743934, -0.03420489919371903, -0.13763391226530075, -0.09682610407471656,
- 0.10243115276098251, -0.04264075793325901, -0.04647437129169703, -0.0011675915913656354,
- -0.037926781084388496, 0.08640902154147626, -0.14705199897289276, 0.06724896635860204,
- 0.1171574778854847, -0.07900998555123806, -0.000020042574033141135,
- -0.04633841682225466, 0.07718109451234341, 0.00119300790829584, 0.039188601449131964,
- -0.05748803853057325, 0.034396182745695114, -0.0015630200097803027, 0.05372885446995497,
- -0.036389836110174656, 0.0607025470584631, 0.060517157055437566, -0.06254206821322442,
- 0.010929092840524391, 0.05983323641121387, -0.030041197838727385, -0.04813522472977638,
- 0.057442354038357735, 0.040099193528294566, -0.09264014586806298, -0.047556007839739324,
- -0.012456576526165008, -0.03387749412213452, -0.03309920942410827, -0.0611174551770091,
- -0.01816177451983094, 0.012382631165382917, -0.0810638103634119, -0.010277174110524357,
- 0.04820433389395475, 0.051928560435771945, 0.05549848834052682, -0.020653707056771962,
- 0.07353267595171928, -0.05711563285440206, -0.0519248191267252, 0.051742765493690966,
- 0.050869053415954116, 0.07904553301632404, -0.021644204249605538, 0.002869249973446131,
- -0.05141972734563751, -0.08516643568873405, -0.0027483089157612993, 0.09673677831888199,
- 0.0324456678237766, 0.04085102109238505, 0.02134483982808888, -0.05389476604759693,
- -0.0315720414975658, 0.10653995648026467, 0.03654372994787991, 0.008596121054142713,
- 0.012434741991455667, -0.08513319231569767, -0.04315264169126749, 0.099142287671566,
- -0.05261312760412693, 0.00560015351002221, -0.02300033500068821, -0.024566840636543928,
- 0.062360136210918425, 0.11063489150255919, 0.04189796693390235, 0.030022208392620087,
- 0.03187085310928524, 0.013074242300353945, 0.006756452564150095, -0.04692849535495043,
- 0.022345104580745102, -0.04468526374548674, -0.10777894705533982, -0.055206428095698354,
- 0.01889846541453153, 0.07901142537593842, 0.022888780769426374, -0.10494202971458436,
- -0.008187555940821767, -0.04701870267745108
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 112,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 74,
- "similarity": 0.9990243315696716
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 54,
- "similarity": 0.9988951086997986
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 195,
- "similarity": 0.9988884329795837
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Jay Stanley"],
- "epoch_date_downloaded": 1673308800,
- "epoch_date_modified": 1673222400,
- "epoch_date_submitted": 1673222400,
- "flag": null,
- "report_number": 2496,
- "source_domain": "aclu.org",
- "submitters": ["Daniel Atherton (BNH.ai)"],
- "title": "Four Problems with the ShotSpotter Gunshot Detection System",
- "url": "https://www.aclu.org/news/privacy-technology/four-problems-with-the-shotspotter-gunshot-detection-system"
- },
- {
- "__typename": "Report",
- "authors": ["Jonathan Levinson"],
- "epoch_date_downloaded": 1673308800,
- "epoch_date_modified": 1673222400,
- "epoch_date_submitted": 1673222400,
- "flag": null,
- "report_number": 2495,
- "source_domain": "opb.org",
- "submitters": ["Daniel Atherton (BNH.ai)"],
- "title": "Portland to change course, accept competitive bids for gunshot detection pilot",
- "url": "https://www.opb.org/article/2023/01/09/portland-oregon-gun-violence-shooting-detection-vendor-techonology-shotspotter/"
- },
- {
- "__typename": "Report",
- "authors": ["Anne Hayes"],
- "epoch_date_downloaded": 1668211200,
- "epoch_date_modified": 1673740800,
- "epoch_date_submitted": 1668211200,
- "flag": null,
- "report_number": 2250,
- "source_domain": "govtech.com",
- "submitters": ["Anonymous"],
- "title": "Report Evaluates Efficiency of Gunshot Detection Technology",
- "url": "https://www.govtech.com/public-safety/report-evaluates-efficiency-of-gunshot-detection-technology"
- },
- {
- "__typename": "Report",
- "authors": ["Anne Hayes"],
- "epoch_date_downloaded": 1659225600,
- "epoch_date_modified": 1673740800,
- "epoch_date_submitted": 1658707200,
- "flag": null,
- "report_number": 1821,
- "source_domain": "syracuse.com",
- "submitters": ["Daniel Atherton (BNH.ai)"],
- "title": "Report: ShotSpotter wastes officers time, provides little help in court, targets overpoliced communities",
- "url": "https://www.syracuse.com/crime/2022/07/report-shotspotter-wastes-officers-time-provides-little-help-in-court-targets-overpoliced-communities.html"
- },
- {
- "__typename": "Report",
- "authors": ["Fola Akinnibi"],
- "epoch_date_downloaded": 1659139200,
- "epoch_date_modified": 1659139200,
- "epoch_date_submitted": 1658707200,
- "flag": null,
- "report_number": 1810,
- "source_domain": "bloomberg.com",
- "submitters": ["Daniel Atherton (BNH.ai)"],
- "title": "NYC, Chicago Waste Millions on Gunshot Detection Technology, Report Says",
- "url": "https://www.bloomberg.com/news/articles/2022-07-14/new-york-chicago-waste-millions-on-gunshot-detection-tech-privacy-group-says"
- },
- {
- "__typename": "Report",
- "authors": ["Jonah Owen Lamb"],
- "epoch_date_downloaded": 1629072000,
- "epoch_date_modified": 1629072000,
- "epoch_date_submitted": 1629072000,
- "flag": null,
- "report_number": 1436,
- "source_domain": "sfexaminer.com",
- "submitters": ["Kate Perkins"],
- "title": "Courtroom testimony reveals accuracy of SF gunshot sensors a ‘marketing’ ploy",
- "url": "https://www.sfexaminer.com/news/courtroom-testimony-reveals-accuracy-of-sf-gunshot-sensors-a-marketing-ploy/"
- },
- {
- "__typename": "Report",
- "authors": ["MacArthur Justice Center"],
- "epoch_date_downloaded": 1629072000,
- "epoch_date_modified": 1673740800,
- "epoch_date_submitted": 1629072000,
- "flag": null,
- "report_number": 1435,
- "source_domain": "macarthurjustice.org",
- "submitters": ["Kate Perkins"],
- "title": "ShotSpotter Generated Over 40,000 Dead-End Police Deployments in Chicago in 21 Months, According to New Study",
- "url": "https://www.macarthurjustice.org/shotspotter-generated-over-40000-dead-end-police-deployments-in-chicago-in-21-months-according-to-new-study/"
- },
- {
- "__typename": "Report",
- "authors": ["Kenneth C. Crowe II"],
- "epoch_date_downloaded": 1673740800,
- "epoch_date_modified": 1673740800,
- "epoch_date_submitted": 1629072000,
- "flag": null,
- "report_number": 1434,
- "source_domain": "timesunion.com",
- "submitters": ["Kate Perkins"],
- "title": "Troy will turn off ShotSpotter",
- "url": "https://www.timesunion.com/local/article/Troy-will-turn-off-ShotSpotter-3994808.php"
- },
- {
- "__typename": "Report",
- "authors": ["Brian Fraga"],
- "epoch_date_downloaded": 1629072000,
- "epoch_date_modified": 1629072000,
- "epoch_date_submitted": 1629072000,
- "flag": null,
- "report_number": 1433,
- "source_domain": "heraldnews.com",
- "submitters": ["Kate Perkins"],
- "title": "After too many shots missed, Fall River officially ends deal with ShotSpotter",
- "url": "https://www.heraldnews.com/news/20180420/after-too-many-shots-missed-fall-river-officially-ends-deal-with-shotspotter"
- },
- {
- "__typename": "Report",
- "authors": ["Vianna Davila"],
- "epoch_date_downloaded": 1629072000,
- "epoch_date_modified": 1629072000,
- "epoch_date_submitted": 1629072000,
- "flag": null,
- "report_number": 1432,
- "source_domain": "expressnews.com",
- "submitters": ["Kate Perkins"],
- "title": "San Antonio police cut pricey gunshot detection system",
- "url": "https://www.expressnews.com/news/local/article/San-Antonio-police-cut-pricey-gunshot-detection-11824797.php"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "facebook",
- "name": "Facebook"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "facebook",
- "name": "Facebook"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "facebook-users",
- "name": "Facebook users"
- },
- {
- "__typename": "Entity",
- "entity_id": "black-people",
- "name": "Black People"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1438],
- "vector": [
- -0.02055070735514164, 0.07939430326223373, 0.017657052725553513, -0.10875948518514633,
- 0.09875684231519699, -0.01413512509316206, 0.01652916893362999, 0.07377096265554428,
- 0.047567252069711685, -0.12407825142145157, 0.026644645258784294, 0.05357436090707779,
- -0.008851681835949421, -0.07373540103435516, 0.015917876735329628, -0.04822668805718422,
- -0.08550438284873962, -0.031507499516010284, -0.0014390787109732628,
- -0.1289287954568863, -0.03926870599389076, -0.007204949390143156, 0.020712055265903473,
- 0.08814819902181625, -0.020782697945833206, 0.04660028964281082, 0.06435071676969528,
- 0.15728263556957245, -0.047200314700603485, 0.06590604782104492, 0.014885500073432922,
- -0.06691799312829971, 0.11878986656665802, 0.014316449873149395, 0.012530186213552952,
- 0.04982921853661537, 0.023142503574490547, -0.0009256168268620968, -0.0663924366235733,
- 0.0032956679351627827, -0.05561865121126175, 0.19438381493091583, 0.019655469805002213,
- -0.012455674819648266, 0.041349347680807114, 0.0053447550162673, 0.0000288439987343736,
- 0.060172587633132935, 0.015865786001086235, 0.0088556669652462, -0.027245698496699333,
- 0.05133809894323349, -0.05853434279561043, 0.006592524237930775, -0.10341615974903107,
- 0.06961259990930557, 0.02054252289235592, -0.023407841101288795, 0.04364115372300148,
- -0.06606656312942505, -0.042288538068532944, -0.22981011867523193, -0.04946572333574295,
- -0.025846585631370544, 0.06535236537456512, -0.0493464432656765, 0.004395416937768459,
- 0.05549032613635063, 0.0133888628333807, 0.025657115504145622, 0.06682591885328293,
- -0.05427538976073265, -0.001896182307973504, 0.04121263325214386, -0.005107931327074766,
- -0.04582827910780907, 0.02547897771000862, 0.1381310671567917, -0.07697392255067825,
- 0.0033177000004798174, 0.10528452694416046, -0.12355935573577881, 0.3817965090274811,
- -0.0032581761479377747, -0.06031583249568939, 0.08069541305303574, 0.06070844456553459,
- 0.011518854647874832, 0.024702202528715134, 0.05943760275840759, 0.001563453464768827,
- 0.04952971637248993, -0.04655686020851135, 0.006307519041001797, 0.013706967234611511,
- 0.031401075422763824, -0.00309495790861547, 0.040900375694036484, 0.03620442748069763,
- -0.02208481915295124, 0.0355382114648819, -0.008302420377731323, 0.12317590415477753,
- 0.08687368035316467, -0.027077622711658478, -0.01906449906527996, 0.10726195573806763,
- -0.04694003611803055, 0.027667298913002014, -0.046085819602012634, 0.004694474395364523,
- -0.009061779826879501, 0.06075441092252731, 0.03405039757490158, 0.07784545421600342,
- -0.04181177169084549, 0.01590072736144066, 0.04939349368214607, 0.09059105068445206,
- 0.03245338797569275, 0.03538775444030762, 0.07164448499679565, 0.05457991361618042,
- -0.029419271275401115, -0.0076685938984155655, -0.02354409173130989,
- -0.06280502676963806, -0.03112570382654667, -0.025618182495236397, 0.08785103261470795,
- -0.06231937184929848, -0.20234252512454987, 0.027593430131673813, 0.051227059215307236,
- -0.00817342009395361, -0.03621611371636391, 0.025669127702713013, -0.06146261841058731,
- 0.06679131835699081, -0.016540082171559334, -0.04345814883708954, 0.0946013331413269,
- 0.04915996640920639, 0.05737452954053879, 0.03832407295703888, 0.0597546249628067,
- -0.0070420196279883385, -0.047567225992679596, 0.0063665928319096565,
- -0.02270766720175743, 0.10282955318689346, -0.16706928610801697, -0.02755243331193924,
- 0.0014699327293783426, -0.006559006404131651, 0.6675412654876709, 0.09103699773550034,
- 0.1529049426317215, -0.010824249126017094, -0.05547238886356354, 0.17097464203834534,
- -0.01878521405160427, 0.061866503208875656, -0.08067923784255981, -0.05068262293934822,
- 0.033169057220220566, -0.04293922334909439, -0.057044729590415955, 0.04729899391531944,
- 0.01235068216919899, 0.09837744385004044, 0.0626738965511322, 0.13533644378185272,
- 0.04957731068134308, -0.13391625881195068, -0.015791019424796104, 0.076423779129982,
- 0.0037001287564635277, -0.14489762485027313, -0.040864404290914536, 0.08691631257534027,
- 0.0853666439652443, -0.06603766977787018, 0.0246393084526062, -0.09064996242523193,
- 0.026121199131011963, -0.0075269886292517185, 0.04037786275148392,
- -0.031080257147550583, 0.015336968936026096, 0.012256432324647903, 0.028283974155783653,
- -0.004727581050246954, -0.14414019882678986, -0.022589558735489845, 0.10271807760000229,
- -0.002438768045976758, -0.05915442854166031, 0.10184996575117111, -0.05778791382908821,
- 0.05429718643426895, 0.003219971898943186, 0.1336028277873993, -0.1273672878742218,
- -0.02038571983575821, -0.016869965940713882, -0.04422552138566971, 0.06275147944688797,
- -0.027708129957318306, -0.038604408502578735, -0.08793726563453674, 0.09422976523637772,
- 0.010973683558404446, 0.09458313882350922, 0.0409310944378376, -0.06342119723558426,
- 0.015093493275344372, 0.052868809551000595, 0.0028310492634773254, -0.03634445741772652,
- 0.06752478331327438, 0.1003061905503273, -0.058537520468235016, -0.08280149102210999,
- 0.0485943928360939, 0.08399169147014618, -0.0186917744576931, -0.02427780069410801,
- 0.05759022384881973, 0.016113391146063805, -0.0465313196182251, 0.05066802725195885,
- 0.021730415523052216, -0.03044184297323227, 0.07958778738975525, -0.0638333112001419,
- -0.02909170649945736, -0.030728718265891075, 0.029692329466342926,
- -0.0002900419058278203, -0.03019549883902073, 0.06028790771961212, 0.10202812403440475,
- 0.03785390406847, 0.04821821302175522, 0.025021106004714966, 0.08137541264295578,
- 0.04605589807033539, -0.016659656539559364, 0.08256383240222931, -0.014358551241457462,
- -0.0676967203617096, -0.003812190843746066, -0.009944750927388668, 0.043628398329019547,
- 0.023180564865469933, -0.06607693433761597, -0.035882677882909775, 0.02785962074995041,
- -0.019169241189956665, -0.07001690566539764, -0.009246990084648132, 0.05465494096279144,
- 0.046103112399578094, -0.07481975853443146, -0.0847553014755249, -0.060239095240831375,
- 0.02683228813111782, 0.10798865556716919, -0.03547752648591995, -0.02336476370692253,
- -0.11114224046468735, 0.021136879920959473, -0.03608548268675804, 0.030965499579906464,
- -0.012858851812779903, 0.03276687487959862, -0.03553425520658493, -0.10757714509963989,
- 0.018290694802999496, -0.0018741391832008958, 0.0359257273375988, -0.012474692426621914,
- -0.08629148453474045, -0.05005171522498131, 0.012297200970351696, 0.01141395978629589,
- -0.04750020429491997, 0.05137491598725319, 0.04009826481342316, 0.022564619779586792,
- -0.0579025000333786, -0.013645417988300323, 0.03648165985941887, -0.051080767065286636,
- -0.047572337090969086, 0.08752263337373734, -0.0037235377822071314,
- -0.006033844314515591, 0.013718300499022007, -0.05500134453177452,
- -0.042953237891197205, 0.0010751765221357346, -0.019749632105231285, 0.0871395692229271,
- -0.04408392682671547, -0.004990987479686737, -0.06549414247274399,
- -0.030798936262726784, 0.055489134043455124, -0.06297773122787476, -0.08230053633451462,
- -0.0827094092965126, 0.0965804010629654, -0.03929964452981949, -0.00022710295161232352,
- -0.042934805154800415, -0.06775548309087753, 0.04795554652810097, -0.012928974814713001,
- 0.017384717240929604, 0.02840558812022209, 0.022329144179821014, -0.009487914852797985,
- -0.00890958122909069, 0.06513746082782745, -0.019859474152326584, 0.01289867889136076,
- 0.099836066365242, 0.412056028842926, -0.1667688935995102, 0.061686623841524124,
- 0.050638873130083084, -0.028017932549118996, 0.07052828371524811,
- -0.0005778305348940194, 0.08940214663743973, 0.06868281960487366, 0.10149867087602615,
- 0.061556462198495865, -0.06021970137953758, 0.003138422966003418, -0.06485625356435776,
- 0.11018337309360504, 0.03810448572039604, 0.07198384404182434, -0.04631195589900017,
- -0.02691623941063881, 0.0007665299344807863, 0.011654810048639774, -0.03471861407160759,
- 0.0040252478793263435, -0.04619544744491577, -0.018633801490068436,
- 0.017573298886418343, -0.01587251015007496, 0.06847329437732697, -0.03910918906331062,
- 0.013398423790931702, -0.0527111180126667, 0.016273602843284607, 0.030836651101708412,
- 0.0683998316526413, -0.08571645617485046, 0.018961641937494278, -0.09094826132059097,
- -0.08364386856555939, 0.043895941227674484, -0.008575426414608955, 0.04457773268222809,
- 0.04047423601150513, 0.02193315513432026, 0.040067821741104126, 0.012633574195206165,
- -0.06904608011245728, 0.005982403643429279, 0.03756125271320343, 0.03572344779968262,
- 0.14504866302013397, 0.18619570136070251, -0.0165688619017601, -0.04802026227116585,
- -0.07021281868219376, 0.049329910427331924, 0.13937143981456757, -0.028234491124749184,
- 0.02370641753077507, 0.020582688972353935, -0.04299090430140495, -0.022953009232878685,
- -0.02971014194190502, -0.09088613837957382, -0.0139039047062397, -0.019097967073321342,
- 0.09645463526248932, 0.01466328464448452, -0.013263379223644733, -0.2141139656305313,
- -0.03887224569916725, -0.042482390999794006, 0.03742416203022003, 0.1690029799938202,
- -0.06074016913771629, 0.06805666536092758, -0.012663891538977623,
- -0.0048772552981972694, 0.014048825018107891, -0.11153826862573624, 0.03255614638328552,
- -0.031203510239720345, 0.014661205001175404, 0.04377414658665657, 0.02992565557360649,
- -0.06535178422927856, 0.0724935457110405, -0.11378733068704605, 0.049001503735780716,
- 0.002911942545324564, -0.005244173109531403, 0.02205253764986992, 0.009428786113858223,
- 0.009761675260961056, 0.021590078249573708, -0.020834390074014664,
- -0.018322214484214783, -0.03094371408224106, -0.03886118903756142, -0.08079780638217926,
- -0.044071026146411896, -0.03926806151866913, -0.08784762024879456,
- -0.010326971299946308, -0.12423734366893768, -0.042549844831228256,
- -0.04793369770050049, 0.027837606146931648, -0.004753043409436941, 0.05159744992852211,
- 0.0457763746380806, -0.1024974137544632, -0.033091649413108826, 0.008068045601248741,
- 0.06427972763776779, -0.06601320207118988, -0.07387635111808777, 0.034623321145772934,
- 0.09301315248012543, 0.05566688999533653, -0.03171958774328232, 0.01958572305738926,
- -0.023312628269195557, 0.10873562097549438, -0.10767535865306854, -0.6188784241676331,
- 0.018577491864562035, 0.014507577754557133, 0.04250548034906387, 0.022869884967803955,
- -0.0937860906124115, 0.09733100980520248, -0.026657355949282646, -0.031904127448797226,
- 0.09593244642019272, -0.04610734432935715, 0.023322639986872673, 0.02199593372642994,
- -0.03551861643791199, 0.0023975963704288006, -0.08020694553852081, -0.08230993151664734,
- 0.039106614887714386, -0.021171491593122482, -0.062113989144563675,
- -0.07383240759372711, 0.0017542947316542268, 0.007806915324181318, 0.018583491444587708,
- 0.03633910417556763, 0.011995146982371807, -0.039137668907642365, -0.05456828325986862,
- 0.07618413120508194, 0.03491704910993576, 0.012324540875852108, -0.08808571845293045,
- 0.0185319185256958, 0.1004062294960022, 0.023566314950585365, 0.14662350714206696,
- 0.04835690185427666, 0.021307241171598434, -0.07545156031847, 0.06951592862606049,
- 0.06824285537004471, 0.19070690870285034, 0.0027667570393532515, 0.04739118367433548,
- -0.03283317759633064, 0.0970001071691513, 0.03599051758646965, 0.01603711023926735,
- -0.04311841353774071, 0.02410019189119339, 0.0056606475263834, 0.01277550496160984,
- 0.0522577241063118, -0.09461546689271927, -0.013302953913807869, -0.03557202219963074,
- -0.0234365276992321, -0.031590141355991364, -0.0003340644179843366, 0.19589808583259583,
- 0.0018210785929113626, 0.009351685643196106, 0.038547080010175705, -0.05869724228978157,
- 0.023413022980093956, -0.0774848535656929, -0.07886382937431335, 0.009961046278476715,
- 0.0042342827655375, -0.01344463974237442, -0.014893684536218643, -0.1480305790901184,
- -0.011163816787302494, -0.027207816019654274, 0.0022171938326209784,
- 0.08895610272884369, -0.026185039430856705, 0.015825718641281128, -0.04490916058421135,
- 0.1265840083360672, 0.03518976643681526, 0.017528941854834557, 0.08481689542531967,
- 0.07830893248319626, 0.01697561703622341, -0.021085849031805992, -0.04673498123884201,
- -0.10671935230493546, -0.05070601403713226, 0.1567312628030777, -0.04582031071186066,
- 0.1304880678653717, 0.05927112326025963, -0.060955289751291275, -0.03090067021548748,
- 0.006916154641658068, 0.014143659733235836, 0.01782163977622986, -0.5181582570075989,
- -0.03134613856673241, 0.10015449672937393, 0.041299860924482346, 0.04967547208070755,
- 0.08364510536193848, 0.012919267639517784, -0.052312374114990234, -0.044550031423568726,
- -0.09182129800319672, 0.1422170251607895, -0.04278500750660896, 0.06432605534791946,
- -0.1459372192621231, 0.043908122926950455, 0.09196574985980988, -0.037963323295116425,
- -0.0025300588458776474, 0.032407987862825394, -0.21294882893562317,
- -0.044130612164735794, -0.01110080536454916, 0.11531516909599304, 0.004537881817668676,
- 0.04614947363734245, 0.08253836631774902, -0.05865505337715149, 0.018857311457395554,
- 0.021603137254714966, 0.0016941620269790292, 0.09436342865228653, -0.009159361012279987,
- 0.013749271631240845, 0.09928377717733383, 0.12846633791923523, 0.085514135658741,
- -0.053319137543439865, 11.67668628692627, 0.07616731524467468, 0.07155273854732513,
- -0.0944216400384903, -0.010655923746526241, -0.04067547246813774, 0.04053604230284691,
- -0.11671128123998642, 0.07684797793626785, 0.07651019841432571, 0.0126956757158041,
- 0.018241487443447113, -0.029228851199150085, -0.10527337342500687, 0.03659141808748245,
- -0.07353011518716812, -0.05739089101552963, -0.049588531255722046, 0.059252526611089706,
- -0.0518808513879776, -0.0038326208014041185, 0.058125950396060944, 0.06703120470046997,
- 0.050822142511606216, -0.07530682533979416, -0.023255085572600365,
- -0.017333442345261574, -0.02143864706158638, 0.007932581938803196, 0.008804652839899063,
- 0.04346171021461487, 0.042453423142433167, 0.10103097558021545, 0.027488205581903458,
- -0.032890863716602325, 0.03967777267098427, 0.016878709197044373, 0.0010147705907002091,
- -0.009042308665812016, 0.09063579887151718, -0.005064250901341438, 0.016500301659107208,
- -0.017838457599282265, 0.03548290207982063, 0.040247876197099686, 0.04436997324228287,
- 0.02794613130390644, 0.12695127725601196, 0.007178714964538813, 0.08641170710325241,
- 0.10393139719963074, -0.023088239133358, 0.09729510545730591, 0.034315045922994614,
- 0.014513271860778332, 0.07448603212833405, -0.03704219311475754, -0.07108612358570099,
- 0.05325903743505478, 0.022917089983820915, -0.03673221915960312, 0.0963706523180008,
- -0.0005079507827758789, 0.08174067735671997, -0.0348578542470932, 0.028966806828975677,
- 0.04698758199810982, 0.0780659019947052, -0.10860030353069305, -0.09304269403219223,
- 0.0737457126379013, -0.08180486410856247, -0.05810868367552757, 0.04638362303376198,
- 0.10888167470693588, -0.06306341290473938, 0.010142670013010502, -0.038843993097543716,
- 0.055438317358493805, 0.001229040790349245, 0.010296429507434368, 0.08583582937717438,
- -0.038960736244916916, 0.028541216626763344, 0.02567007578909397, 0.00985452625900507,
- 0.12867362797260284, 0.1057041585445404, -0.008992757648229599, -0.11015361547470093,
- -0.15957093238830566, 0.06932886689901352, -0.01821565441787243, -0.06425996124744415,
- 0.007076164707541466, -0.04980572313070297, 0.010243511758744717, -0.18291395902633667,
- 0.08943039178848267, 0.12283653020858765, -0.07004175335168839, -0.059614378958940506,
- -0.02396034076809883, 0.11126616597175598, -0.03419623523950577, 0.0074090659618377686,
- -0.08190698176622391, 0.05148431658744812, 0.0017483881674706936, 0.04366782680153847,
- -0.03022814728319645, 0.04024475812911987, 0.07050946354866028, -0.02702873945236206,
- 0.026661358773708344, 0.07791750878095627, -0.052088361233472824, -0.017171962186694145,
- 0.03894151374697685, -0.0038589411415159702, -0.09655937552452087, -0.02507564052939415,
- -0.05399513617157936, -0.04093707725405693, 0.010355466045439243, -0.04942043498158455,
- 0.007571302354335785, -0.0283040851354599, -0.012812627479434013, -0.009617660194635391,
- 0.029255080968141556, 0.06549754738807678, 0.08636051416397095, 0.003589408937841654,
- 0.08168519288301468, -0.026796787977218628, -0.033449240028858185, 0.07427365332841873,
- 0.0905374065041542, 0.11728730797767639, -0.05503836274147034, 0.005554257892072201,
- -0.05667746812105179, -0.11471784114837646, 0.06908052414655685, 0.042936183512210846,
- 0.023942384868860245, -0.010425586253404617, 0.02589704655110836, -0.06018292158842087,
- 0.012375468388199806, 0.08737391233444214, 0.011917898431420326, 0.022273223847150803,
- 0.027960041537880898, -0.05629869922995567, -0.01758670061826706, 0.07927989214658737,
- 0.0036468529142439365, -0.016514169052243233, 0.01401799451559782, -0.05992614105343819,
- 0.06365516036748886, 0.08424048870801926, 0.029853466898202896, 0.020836200565099716,
- 0.0015666799154132605, 0.014508935622870922, 0.02833840623497963, -0.009913119487464428,
- -0.00791891198605299, -0.04011492058634758, -0.0634947270154953, -0.06258157640695572,
- 0.020678870379924774, 0.05145162716507912, 0.06806232780218124, -0.11854537576436996,
- -0.0034129975829273462, -0.013071966357529163
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 113,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 216,
- "similarity": 0.9984899759292603
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 103,
- "similarity": 0.9981270432472229
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 199,
- "similarity": 0.9980974197387695
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Ryan Mac"],
- "epoch_date_downloaded": 1630800000,
- "epoch_date_modified": 1630800000,
- "epoch_date_submitted": 1630800000,
- "flag": null,
- "report_number": 1438,
- "source_domain": "nytimes.com",
- "submitters": ["Neama Dadkhahnikoo"],
- "title": "Facebook Apologizes After A.I. Puts 'Primates' Label on Video of Black Men",
- "url": "https://www.nytimes.com/2021/09/03/technology/facebook-ai-race-primates.html"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "amazon",
- "name": "Amazon"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "amazon",
- "name": "Amazon"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "rekognition-users",
- "name": "Rekognition users"
- },
- {
- "__typename": "Entity",
- "entity_id": "arrested-people",
- "name": "arrested people"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1439],
- "vector": [
- -0.04937146604061127, 0.054574381560087204, -0.020444881170988083, -0.12609191238880157,
- 0.0899880900979042, -0.037881024181842804, 0.010700138285756111, 0.07051506638526917,
- 0.04790760576725006, -0.11862315237522125, 0.02400234527885914, 0.03942600265145302,
- 0.01238065306097269, -0.1323256492614746, 0.020628880709409714, -0.07253316789865494,
- -0.11446069180965424, -0.050383731722831726, -0.022417815402150154,
- -0.14666485786437988, -0.05122203379869461, 0.001468030852265656, 0.011826870031654835,
- 0.08467818051576614, -0.0634363517165184, 0.042192310094833374, 0.0864538624882698,
- 0.08930706977844238, -0.07393248379230499, 0.09839373826980591, -0.021758195012807846,
- -0.0832928866147995, 0.13250650465488434, 0.014424914494156837, -0.010320169851183891,
- 0.14671285450458527, -0.011416896246373653, -0.036138102412223816, 0.07824958860874176,
- -0.03106849081814289, 0.05008434131741524, 0.2836872637271881, -0.004888842348009348,
- 0.0284742284566164, 0.027901405468583107, -0.06135525181889534, -0.031048493459820747,
- 0.09738708287477493, -0.019860442727804184, 0.02835230529308319, -0.019186193123459816,
- 0.04981977120041847, -0.009933501482009888, 0.02247617207467556, -0.11259212344884872,
- 0.06763745844364166, 0.04387208819389343, 0.015034204348921776, -0.0030462925788015127,
- -0.07374732941389084, -0.051168520003557205, -0.29286181926727295,
- -0.006546499207615852, -0.11344914883375168, 0.08778004348278046, -0.0364932082593441,
- -0.04062125086784363, 0.010632037185132504, 0.025814909487962723, 0.09998253732919693,
- 0.08485862612724304, -0.03534797206521034, -0.02833433263003826, 0.036080241203308105,
- 0.032899629324674606, -0.06811179965734482, -0.016161076724529266, 0.11237813532352448,
- -0.04865444451570511, 0.06189025938510895, 0.11695094406604767, -0.1031980887055397,
- 0.4647004306316376, -0.002634422853589058, -0.049325235188007355, -0.03321970999240875,
- 0.055199429392814636, 0.042431533336639404, 0.08997128903865814, 0.03241255506873131,
- -0.07206819951534271, 0.03135093301534653, -0.074341781437397, 0.0019765859469771385,
- 0.09215035289525986, 0.030482003465294838, -0.019550319761037827, 0.05629756674170494,
- -0.010397294536232948, -0.06831307709217072, -0.01332525908946991,
- -0.035292934626340866, 0.10952691733837128, 0.09799177199602127, -0.021336384117603302,
- 0.004655529744923115, 0.04635925218462944, -0.0425339937210083, 0.06607789546251297,
- -0.07846693694591522, 0.03678662329912186, -0.010283676907420158, 0.047270841896533966,
- -0.03504723310470581, 0.03166435286402702, -0.05318541079759598,
- -0.00004035177698824555, 0.03505586087703705, 0.08847412467002869, 0.017132410779595375,
- -0.00018027270562015474, 0.042150530964136124, 0.07591145485639572,
- -0.09893759340047836, -0.0450705960392952, -0.07947579026222229, -0.04527374356985092,
- -0.02704889513552189, -0.06678018718957901, 0.021758608520030975, -0.08313978463411331,
- -0.17714516818523407, 0.03321845456957817, 0.07932733744382858, -0.06821346282958984,
- -0.052556395530700684, -0.03675142675638199, -0.010682903230190277, 0.06561719626188278,
- 0.0038279115688055754, -0.020805882290005684, 0.06895416975021362, 0.04602717235684395,
- 0.049783844500780106, 0.17399010062217712, 0.03867334499955177, -0.07258757948875427,
- -0.03641238808631897, 0.013707445934414864, -0.01988784596323967, 0.12854516506195068,
- -0.14771291613578796, -0.0425107404589653, -0.0028135094325989485,
- -0.039716899394989014, 0.788957953453064, 0.09667208045721054, 0.20767490565776825,
- 0.04069705307483673, -0.038437679409980774, 0.2107279896736145, 0.004367489833384752,
- 0.12803423404693604, -0.06629857420921326, -0.0490482859313488, 0.06597258150577545,
- -0.07682419568300247, -0.05419085547327995, 0.005312735214829445, 0.01681574620306492,
- 0.11608394235372543, 0.003034970723092556, 0.09449177235364914, -0.0039712851867079735,
- -0.154278963804245, -0.037647705525159836, 0.07031014561653137, -0.011844047345221043,
- -0.1113891527056694, -0.03458298742771149, 0.11005473881959915, 0.09850215911865234,
- -0.12348868697881699, 0.008636457845568657, -0.06624950468540192, 0.055864930152893066,
- -0.023270493373274803, 0.05691332370042801, -0.05299932137131691, 0.043590910732746124,
- -0.00043788793846033514, 0.09838949143886566, 0.056646451354026794, -0.1267441213130951,
- -0.0722036063671112, 0.07377074658870697, 0.0057233842089772224, -0.003321312600746751,
- 0.08196507394313812, -0.07993064075708389, 0.04959453269839287, 0.036065567284822464,
- 0.15524400770664215, -0.13501520454883575, -0.0577540397644043, -0.039028607308864594,
- -0.023562436923384666, 0.052862513810396194, -0.00765189528465271, -0.04847746342420578,
- -0.04735233634710312, 0.09900832176208496, 0.05809548497200012, 0.14104898273944855,
- 0.06085026636719704, -0.016437092795968056, 0.04665864631533623, 0.011477558873593807,
- -0.012237264774739742, -0.046290524303913116, 0.0819598138332367, 0.03895435482263565,
- -0.022787800058722496, -0.01470476109534502, 0.060991786420345306, 0.06969215720891953,
- 0.013797888532280922, -0.05903566628694534, 0.03748500719666481, -0.03842368349432945,
- -0.07901322096586227, 0.0195386353880167, 0.025119582191109657, -0.019546082243323326,
- 0.11172886937856674, -0.030712075531482697, -0.022370595484972, -0.05175124853849411,
- -0.013393343426287174, 0.03640656918287277, 0.0077551426365971565, 0.07087819278240204,
- 0.06779009103775024, 0.050845783203840256, 0.018427714705467224, 0.01829257421195507,
- 0.0765053927898407, 0.02646005153656006, 0.043321169912815094, 0.13885901868343353,
- 0.05114743858575821, -0.08046063035726547, -0.033635273575782776, 0.03484614938497543,
- 0.00845850259065628, 0.02544400282204151, -0.06897692382335663, -0.040663428604602814,
- -0.05001844838261604, -0.014217179268598557, -0.0993727520108223, -0.10470668226480484,
- 0.010893573053181171, 0.05124808847904205, -0.028868861496448517, -0.061297282576560974,
- -0.05647113174200058, 0.013214907608926296, 0.08948979526758194, -0.04997329041361809,
- -0.04265613853931427, -0.10796655714511871, 0.03132625296711922, -0.006723555736243725,
- 0.07887071371078491, -0.02498689480125904, -0.012735558673739433, -0.015666089951992035,
- -0.030462205410003662, 0.025797510519623756, 0.01068114023655653, -0.05155080929398537,
- -0.03438866138458252, -0.0691646933555603, -0.06942540407180786, -0.0459650419652462,
- 0.016833113506436348, -0.009803682565689087, 0.044424980878829956, 0.051614321768283844,
- 0.05697981268167496, -0.013110937550663948, -0.06538398563861847, 0.0649472251534462,
- -0.043961748480796814, -0.021419314667582512, 0.07135482132434845, -0.04855833202600479,
- 0.030595891177654266, 0.03809039667248726, -0.05146614462137222, -0.03714634105563164,
- 0.02454719878733158, -0.012817143462598324, 0.0031583860982209444, -0.00796755962073803,
- 0.03839420899748802, -0.023720936849713326, -0.03488389402627945, 0.12694843113422394,
- -0.057241104543209076, -0.09802193939685822, -0.05339977517724037, 0.14243000745773315,
- -0.00347779574804008, -0.007242924999445677, -0.0035276489797979593,
- 0.020830117166042328, 0.05644309148192406, -0.020450154319405556, 0.022653769701719284,
- 0.020922480151057243, 0.055747129023075104, -0.02788262628018856, -0.002594171790406108,
- 0.052436914294958115, -0.08210815489292145, 0.0008201890159398317, 0.08165860176086426,
- 0.4543718993663788, -0.1859298050403595, 0.039699845016002655, 0.08161155134439468,
- 0.017012085765600204, 0.06144801899790764, -0.05818477272987366, 0.0926591008901596,
- 0.12304983288049698, 0.12035565823316574, 0.06936319917440414, -0.044762514531612396,
- -0.04149052873253822, -0.11550243943929672, 0.1238936185836792, -0.01328335516154766,
- 0.05650056153535843, 0.002456756541505456, -0.13900940120220184, -0.018035944551229477,
- 0.05476788803935051, -0.051842451095581055, -0.008251653984189034,
- -0.0036557638086378574, -0.027250895276665688, 0.0052054813131690025,
- -0.04538491368293762, 0.006400910206139088, -0.05545199289917946, 0.04889628663659096,
- -0.02068299986422062, 0.08670391887426376, 0.022691842168569565, 0.016669590026140213,
- -0.13346818089485168, -0.008949133567512035, -0.11561977118253708, -0.08426287025213242,
- 0.0658576712012291, -0.03826391324400902, 0.0542556531727314, 0.013156484812498093,
- -0.03731155768036842, 0.06532025337219238, 0.0010708257323130965, -0.073082335293293,
- 0.03318547084927559, 0.11537962406873703, 0.033452585339546204, 0.07878711819648743,
- 0.13572275638580322, -0.06014952063560486, -0.07456175982952118, -0.07070086151361465,
- 0.07122652977705002, 0.1474783718585968, -0.010775563307106495, -0.04171537980437279,
- 0.034009888768196106, -0.07366584241390228, -0.004480748903006315, -0.09579087793827057,
- -0.07823634147644043, 0.016063250601291656, -0.006299181841313839, 0.10137864202260971,
- 0.017850952222943306, -0.042421866208314896, -0.18195511400699615,
- -0.024975184351205826, -0.01764829084277153, 0.03549328073859215, 0.09446396678686142,
- -0.07895219326019287, 0.05126848816871643, -0.06075704097747803, 0.002074801828712225,
- 0.08333206921815872, -0.016140492632985115, 0.01889381930232048, -0.03649430721998215,
- 0.01483257208019495, 0.06657058000564575, 0.06516756117343903, -0.048219647258520126,
- 0.0677349641919136, -0.09753498435020447, 0.03758982941508293, 0.0251727644354105,
- -0.056057997047901154, 0.03142934292554855, -0.0389389842748642, -0.0025843754410743713,
- -0.04316064715385437, -0.031753964722156525, 0.026211397722363472, -0.03763364627957344,
- -0.04716099798679352, -0.05172765254974365, -0.0513966903090477, -0.03448333591222763,
- -0.11335667967796326, 0.03924965113401413, -0.1031063124537468, -0.007764021400362253,
- -0.039747580885887146, -0.04909317567944527, -0.005366561934351921, 0.03570564463734627,
- 0.060407333076000214, -0.13880780339241028, 0.005792683456093073, -0.015028432011604309,
- 0.06424182653427124, -0.012171002104878426, -0.0859568789601326, 0.05916282534599304,
- 0.11131027340888977, 0.0749656930565834, -0.06777156889438629, -0.03619107976555824,
- -0.046827323734760284, 0.029901927337050438, -0.1357952207326889, -0.47103679180145264,
- 0.1108836978673935, -0.014788472093641758, 0.004945346619933844, -0.020311251282691956,
- -0.09713390469551086, 0.09193029254674911, -0.018748752772808075, -0.06488997489213943,
- 0.05985888093709946, -0.012093077413737774, 0.09103861451148987, -0.020141994580626488,
- -0.032645177096128464, -0.06592311710119247, -0.0814438909292221, -0.05457098037004471,
- 0.05626202002167702, -0.016894185915589333, -0.0983438566327095, -0.10155002027750015,
- 0.0123366080224514, -0.023111114278435707, 0.01638086885213852, 0.041399966925382614,
- 0.06239844858646393, -0.04453711211681366, -0.026921050623059273, 0.07686296850442886,
- 0.06879153847694397, 0.05435981974005699, -0.0608222670853138, 0.02992897853255272,
- 0.06410638242959976, -0.013002869673073292, 0.12871551513671875, 0.01600165106356144,
- 0.06910113245248795, -0.0737161636352539, 0.09452883154153824, 0.06288689374923706,
- 0.186134934425354, 0.007227194495499134, -0.020237568765878677, 0.08289425820112228,
- 0.16022902727127075, 0.07083899527788162, 0.05987165495753288, -0.04998503625392914,
- -0.019052060320973396, 0.04566606879234314, 0.0028174803592264652, 0.09016573429107666,
- -0.0539921298623085, 0.007136812433600426, -0.06322195380926132, -0.01738549768924713,
- 0.006428221706300974, -0.04463677480816841, 0.21062520146369934, -0.0027399559039622545,
- -0.006082614418119192, 0.02701980248093605, -0.04597584903240204, 0.03490505740046501,
- -0.08363882452249527, -0.13191328942775726, 0.0018740708474069834,
- -0.008927836082875729, -0.009954766370356083, -0.05054573714733124, -0.1330319195985794,
- -0.014159537851810455, 0.01922188326716423, 0.03708498552441597, 0.11979387700557709,
- -0.050005994737148285, 0.055381420999765396, -0.031715989112854004, 0.15635916590690613,
- 0.03153485804796219, -0.07405095547437668, 0.038741402328014374, 0.10755816102027893,
- 0.03223075345158577, 0.05762924626469612, 0.00943769607692957, -0.0921986773610115,
- -0.03213302418589592, 0.15247173607349396, -0.03742705285549164, 0.14265914261341095,
- 0.04440876841545105, -0.1233474463224411, -0.08006711304187775, -0.03533036261796951,
- -0.004105615429580212, 0.0357881523668766, -0.4589986801147461, 0.012483184225857258,
- 0.10119682550430298, 0.009763161651790142, 0.0248796995729208, 0.04951481521129608,
- -0.015976017341017723, -0.04639154672622681, -0.05705050379037857, -0.12190858274698257,
- 0.1602681279182434, 0.015256705693900585, 0.06571066379547119, -0.12007720023393631,
- 0.04445210471749306, 0.11661449074745178, -0.02531912922859192, 0.03474783897399902,
- 0.05397965759038925, -0.2747252285480499, -0.016477050259709358, -0.020725419744849205,
- 0.10378148406744003, 0.015785688534379005, 0.008168505504727364, 0.06627729535102844,
- -0.08183436095714569, -0.022687172517180443, 0.08674371987581253, 0.015517259016633034,
- 0.03083132952451706, -0.012868780642747879, 0.034954410046339035, 0.13912713527679443,
- 0.15633711218833923, 0.03189785033464432, -0.0530281588435173, 11.92494010925293,
- 0.07182604819536209, 0.0593850277364254, -0.06473255157470703, -0.017493175342679024,
- -0.04195745289325714, 0.02099183015525341, -0.11542411148548126, 0.05640360340476036,
- 0.14158980548381805, 0.001357576111331582, -0.10740657895803452, -0.023128433153033257,
- -0.1082562506198883, 0.037687987089157104, -0.007224123924970627, -0.05912308022379875,
- -0.02041708119213581, 0.042646169662475586, -0.019824769347906113,
- -0.020884057506918907, 0.006197931244969368, 0.04937991872429848, 0.02463291957974434,
- -0.053591538220644, -0.004223236348479986, -0.017723115161061287, 0.0241387989372015,
- 0.020845122635364532, 0.011763193644583225, 0.011540171690285206, -0.016372283920645714,
- 0.07922650128602982, 0.0030622731428593397, 0.030896782875061035, 0.05414985120296478,
- 0.14631380140781403, 0.00643962062895298, 0.04211011901497841, 0.1011594608426094,
- 0.009629110805690289, 0.04852120205760002, 0.027591601014137268, 0.059565041214227676,
- 0.07901943475008011, 0.07238136231899261, 0.0022456636652350426, 0.11197389662265778,
- 0.009775135666131973, 0.1040215715765953, 0.12723754346370697, 0.02463413216173649,
- 0.13347305357456207, -0.022823553532361984, -0.02997385710477829, 0.08322295546531677,
- 0.018809031695127487, -0.05802210420370102, 0.03219233453273773, 0.028735503554344177,
- -0.07899834215641022, 0.1150774285197258, -0.029180282726883888, 0.11003255844116211,
- -0.01493418775498867, 0.03758963197469711, 0.06619706749916077, 0.09937016665935516,
- -0.18302062153816223, -0.12844255566596985, 0.04084250330924988, -0.09536856412887573,
- -0.14414167404174805, 0.10777535289525986, 0.14111681282520294, -0.06961304694414139,
- 0.021740421652793884, -0.03366578742861748, 0.029332734644412994, 0.0167166069149971,
- -0.016025474295020103, 0.06353108584880829, 0.0049341097474098206, -0.04089374840259552,
- 0.08585261553525925, 0.013074963353574276, 0.057560257613658905, 0.11538010090589523,
- -0.051879722625017166, -0.07397586107254028, -0.07414333522319794, 0.12579618394374847,
- -0.01473438460379839, -0.035673484206199646, 0.0397447869181633, -0.06676201522350311,
- 0.07512957602739334, -0.16591471433639526, 0.07641853392124176, 0.10463855415582657,
- -0.12739047408103943, -0.018089376389980316, -0.010060444474220276, 0.06791332364082336,
- 0.02258855290710926, 0.03800509124994278, -0.06987041234970093, 0.02502152882516384,
- -0.0075543345883488655, 0.02227303758263588, -0.03466717526316643, 0.04866013675928116,
- 0.06405256688594818, -0.07398199290037155, -0.03407338261604309, 0.06129424273967743,
- -0.02647266536951065, -0.007469510193914175, 0.07635705918073654, 0.03660937026143074,
- -0.1014564037322998, -0.05649547278881073, -0.02736157923936844, -0.06522569805383682,
- 0.009084071032702923, -0.06064801663160324, 0.02929774485528469, 0.04517007991671562,
- -0.08827050030231476, -0.013344324193894863, 0.11514385044574738, 0.05232976749539375,
- 0.13109789788722992, -0.04146410524845123, 0.07002244144678116, -0.0621156245470047,
- -0.0579361617565155, 0.07042163610458374, 0.0351216085255146, 0.02792445756494999,
- -0.07651860266923904, -0.07373739033937454, -0.051927242428064346, -0.1341589093208313,
- -0.003538761753588915, 0.10251812636852264, 0.07683563977479935, 0.0326802060008049,
- -0.051239289343357086, -0.05847053974866867, -0.05947280302643776, 0.07619275897741318,
- 0.03639322891831398, 0.07462549954652786, 0.06342275440692902, -0.04293329641222954,
- -0.08535352349281311, 0.060209013521671295, -0.02777012623846531, 0.006073518190532923,
- 0.007731944788247347, -0.06421516090631485, 0.12611433863639832, 0.04407722130417824,
- 0.033363111317157745, 0.04460997134447098, 0.039777468889951706, 0.0158943310379982,
- 0.0420525036752224, -0.057951293885707855, 0.0611426867544651, -0.05481911078095436,
- -0.05969160795211792, -0.08189612627029419, 0.01963142678141594, 0.08352278172969818,
- 0.0576692670583725, -0.042264342308044434, 0.00891552772372961, -0.05722203850746155
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 114,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 54,
- "similarity": 0.9981588125228882
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 40,
- "similarity": 0.9979689717292786
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 11,
- "similarity": 0.9978774785995483
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Jacob Snow"],
- "epoch_date_downloaded": 1632355200,
- "epoch_date_modified": 1632355200,
- "epoch_date_submitted": 1632355200,
- "flag": null,
- "report_number": 1439,
- "source_domain": "aclu.org",
- "submitters": ["Fabio Xie"],
- "title": "Amazon’s Face Recognition Falsely Matched 28 Members of Congress With Mugshots",
- "url": "https://www.aclu.org/blog/privacy-technology/surveillance-technologies/amazons-face-recognition-falsely-matched-28"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "genderify",
- "name": "Genderify"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "genderify",
- "name": "Genderify"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "genderify-customers",
- "name": "Genderify customers"
- },
- {
- "__typename": "Entity",
- "entity_id": "gender-minority-groups",
- "name": "gender minority groups"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [2204, 1472, 1440],
- "vector": [
- -0.05270931497216225, 0.060478031635284424, 0.0065196193754673, -0.13690847158432007,
- 0.06960131973028183, -0.0323348306119442, 0.013462789356708527, 0.0952574610710144,
- 0.06620819121599197, -0.1656666398048401, -0.01201505959033966, 0.03879351541399956,
- 0.03309238329529762, -0.05025911703705788, 0.055359985679388046, -0.06466726213693619,
- -0.1355791538953781, -0.02880019135773182, 0.014574837870895863, -0.152492493391037,
- -0.064890056848526, 0.02082105539739132, -0.011183280497789383, 0.09903227537870407,
- -0.01969301886856556, 0.026738548651337624, 0.09763681143522263, 0.11407095193862915,
- -0.03814342990517616, 0.04279932752251625, -0.04543576017022133, -0.10789605975151062,
- 0.10280931740999222, 0.009633253328502178, -0.012178882025182247, 0.07858435064554214,
- 0.025939224287867546, -0.017757585272192955, -0.04314255714416504,
- -0.010620116256177425, 0.058076877146959305, 0.2166426032781601, -0.005579136312007904,
- -0.014543980360031128, 0.05735568702220917, -0.023558994755148888, 0.0242568701505661,
- 0.060936566442251205, -0.011099773459136486, 0.006998190190643072, -0.02716255933046341,
- -0.0017081056721508503, -0.04667872563004494, 0.024943532422184944,
- -0.07499951869249344, 0.0317411795258522, 0.026232263073325157, -0.03568616136908531,
- 0.05873690918087959, -0.08257310837507248, -0.034186672419309616, -0.20178765058517456,
- -0.05932997539639473, -0.05961107090115547, 0.04776005074381828, -0.06565280258655548,
- -0.024129675701260567, 0.036423712968826294, -0.00447685644030571, 0.06447135657072067,
- 0.050863903015851974, -0.04985693469643593, -0.022875040769577026,
- 0.0033432908821851015, -0.02626577578485012, -0.07112310826778412, 0.008068685419857502,
- 0.22297155857086182, -0.09518253803253174, 0.007961612194776535, 0.10983871668577194,
- -0.10774736851453781, 0.3655219078063965, 0.0341365747153759, -0.05136743560433388,
- 0.020394740626215935, 0.09370964020490646, 0.009136748500168324, 0.03290799260139465,
- 0.03241940215229988, 0.027236318215727806, 0.061626072973012924, -0.03660447522997856,
- 0.003248644294217229, 0.06311312317848206, 0.021557815372943878, -0.027280664071440697,
- -0.0467384047806263, -0.013093999586999416, -0.07911844551563263, 0.003855564398691058,
- -0.01812398061156273, 0.131021186709404, 0.08515731245279312, -0.04772043228149414,
- -0.002250337740406394, 0.07634115219116211, -0.055072661489248276, 0.04434783384203911,
- -0.06403020024299622, 0.018794231116771698, 0.004471830558031797, 0.08823854476213455,
- -0.006757952738553286, 0.019587544724345207, -0.05828183516860008,
- -0.005701376590877771, 0.05804802477359772, 0.07816816121339798, 0.06464133411645889,
- 0.0053939069621264935, 0.03949357196688652, 0.043749596923589706, -0.05503880977630615,
- -0.05650818347930908, -0.0033967504277825356, -0.0369521789252758,
- -0.015583358705043793, -0.034764811396598816, 0.03908027708530426, -0.0637981966137886,
- -0.20593710243701935, 0.0015460378490388393, 0.055827558040618896, -0.06523877382278442,
- -0.012163619510829449, 0.026722179725766182, -0.07005283236503601, 0.05291380360722542,
- -0.00797887984663248, -0.03488589823246002, 0.04785751923918724, -0.00923454575240612,
- 0.051100511103868484, 0.08282963186502457, 0.03203504905104637, -0.041635870933532715,
- -0.06177615746855736, -0.013162960298359394, -0.060421884059906006, 0.13358451426029205,
- -0.1622469574213028, -0.02518359385430813, -0.0004662802966777235,
- -0.025968601927161217, 0.6644651293754578, 0.11406666040420532, 0.1901397705078125,
- 0.0110160605981946, -0.024075718596577644, 0.1604735255241394, -0.027738576754927635,
- 0.06020050123333931, -0.05195348337292671, -0.051264673471450806, 0.02345878817141056,
- -0.07019960880279541, -0.05267401039600372, 0.031235238537192345,
- -0.0055726864375174046, 0.08973973989486694, 0.033070314675569534, 0.11999133974313736,
- 0.008598598651587963, -0.10479574650526047, -0.02011699415743351, 0.05252930521965027,
- 0.05130651593208313, -0.14333558082580566, -0.03427576646208763, 0.07193266600370407,
- 0.07913056015968323, -0.07818926125764847, 0.021971113979816437, -0.07377158105373383,
- 0.053367238491773605, -0.02542736567556858, 0.06275586038827896, -0.019202830269932747,
- 0.054115861654281616, 0.033355891704559326, 0.014430883340537548, -0.02094378136098385,
- -0.09971608966588974, -0.022570045664906502, 0.07018477469682693,
- -0.0061469064094126225, -0.04167714715003967, 0.06506338715553284, -0.08227679878473282,
- 0.031328488141298294, -0.02554859220981598, 0.1540524810552597, -0.15037347376346588,
- 0.03388426452875137, -0.017048044130206108, -0.039730265736579895, 0.01629496179521084,
- -0.017737897112965584, -0.08112484961748123, -0.08353214710950851, 0.13003534078598022,
- 0.0003837551921606064, 0.03479412570595741, 0.03256426379084587, -0.0436282642185688,
- 0.03979562968015671, 0.05739497020840645, 0.006194696296006441, -0.054164040833711624,
- 0.08147571235895157, 0.02361907809972763, -0.03163556754589081, -0.04469117522239685,
- 0.08448228240013123, 0.007926925085484982, 0.02988499402999878, 0.005436707753688097,
- 0.05645425245165825, -0.023236125707626343, -0.03730626776814461, 0.02704382687807083,
- 0.08189564943313599, 0.03324688971042633, 0.07429728657007217, -0.08210103958845139,
- -0.05379104986786842, -0.03145040199160576, -0.024402962997555733, 0.03291773051023483,
- -0.03373394161462784, 0.07655427604913712, 0.12293706089258194, 0.07779616117477417,
- 0.006331889424473047, 0.018050599843263626, 0.044967398047447205, -0.008890807628631592,
- 0.0019553580787032843, 0.10329898446798325, -0.027720579877495766,
- -0.0017293225973844528, -0.022488707676529884, 0.00013713880616705865,
- 0.017637545242905617, -0.004426802042871714, -0.05999815836548805, -0.04644980654120445,
- -0.05108587443828583, -0.06258069723844528, -0.08387889713048935, -0.05275052785873413,
- 0.041958168148994446, 0.03590037301182747, -0.07640960812568665, -0.10561271756887436,
- -0.06337681412696838, -0.011165481992065907, 0.09733422845602036, -0.03432108089327812,
- -0.023065848276019096, -0.1526433676481247, 0.042863547801971436, -0.04196334257721901,
- 0.0563163161277771, -0.015548530034720898, -0.02987212873995304, -0.002029384719207883,
- -0.04877998307347298, 0.05366115644574165, 0.026628607884049416, 0.0024400949478149414,
- -0.024252697825431824, -0.06434232741594315, -0.029691539704799652,
- 0.027325889095664024, 0.008868786506354809, -0.04614301025867462, -0.002841961570084095,
- 0.02696489542722702, 0.06549880653619766, -0.031446199864149094, -0.05565183237195015,
- 0.04757087305188179, -0.03140108659863472, -0.010883788578212261, 0.0625888928771019,
- -0.028160719200968742, 0.03899332880973816, 0.019023092463612556, -0.10369137674570084,
- -0.0319724977016449, -0.026661008596420288, -0.0439327098429203, 0.03344687074422836,
- -0.013836506754159927, -0.02148284949362278, -0.033430375158786774,
- -0.009959494695067406, 0.07434967160224915, -0.03157248720526695, -0.11106161028146744,
- -0.0726429745554924, 0.08563558012247086, -0.0011548398761078715,
- -0.0019397441064938903, 0.01890069805085659, -0.08991976827383041, 0.04743891954421997,
- -0.014475683681666851, -0.012426886707544327, 0.036001186817884445, 0.06897538155317307,
- 0.00961439311504364, 0.04421631619334221, 0.06779851019382477, -0.027817638590931892,
- 0.02438715286552906, 0.09330634027719498, 0.4558245837688446, -0.1826912760734558,
- 0.08326609432697296, 0.11609268188476562, -0.01613881252706051, 0.03934711590409279,
- -0.051726892590522766, 0.07985859364271164, 0.09336661547422409, 0.12275420874357224,
- 0.12095261365175247, -0.06636372953653336, 0.0051270402036607265, -0.06842709332704544,
- 0.08367802947759628, 0.00591586297377944, 0.04520612955093384, -0.00632522813975811,
- -0.06247149780392647, -0.010225106962025166, 0.031170742586255074,
- -0.030963154509663582, 0.0015546707436442375, -0.013302356004714966,
- -0.03316359594464302, 0.01067692507058382, 0.06220373883843422, 0.07067406922578812,
- -0.037329401820898056, 0.05881895497441292, -0.028410054743289948, 0.04648161306977272,
- 0.06329333782196045, 0.024706115946173668, -0.1360701322555542, 0.061772122979164124,
- -0.0706443190574646, -0.07598152756690979, 0.027987344190478325, 0.004997641313821077,
- 0.0904986560344696, 0.05575057864189148, -0.010096023790538311, 0.04329200088977814,
- -0.0475480854511261, -0.036805178970098495, 0.009977425448596478, 0.05239225551486015,
- 0.03704475611448288, 0.05067216232419014, 0.15794362127780914, -0.030107850208878517,
- -0.009275097399950027, -0.04508373141288757, 0.07204140722751617, 0.14556781947612762,
- -0.016830217093229294, 0.02857254259288311, -0.025977933779358864,
- -0.009351984597742558, 0.004272326827049255, -0.018045462667942047,
- -0.10252261161804199, -0.04057202860713005, -0.0735010951757431, 0.08120397478342056,
- 0.03752619028091431, -0.037913817912340164, -0.13533417880535126, -0.036606770008802414,
- -0.056846100836992264, 0.022421246394515038, 0.11529853940010071, -0.06351342797279358,
- 0.03001946210861206, -0.002058386569842696, -0.016397403553128242, 0.05551627650856972,
- -0.10587286204099655, -0.000821542926132679, -0.06850453466176987, 0.03699471801519394,
- 0.04838346317410469, 0.050884440541267395, -0.05169272422790527, 0.0827101469039917,
- -0.11015460640192032, 0.04813498258590698, 0.03992784395813942, -0.08326277881860733,
- 0.01127638015896082, -0.01298980787396431, 0.01838862895965576, 0.02757149748504162,
- -0.07583388686180115, 0.028243884444236755, -0.03105614148080349, -0.029607152566313744,
- -0.04967107996344566, -0.09674034267663956, -0.03673151507973671, -0.0493294782936573,
- 0.027010614052414894, -0.08574452996253967, 0.012159970588982105, -0.009183877147734165,
- -0.03158673271536827, -0.03003161959350109, 0.014439617283642292, -0.005872218403965235,
- -0.1409914493560791, 0.02196773886680603, 0.008446156047284603, 0.0198347307741642,
- -0.04062876105308533, -0.029695913195610046, 0.03132049739360809, 0.057535868138074875,
- 0.007796462159603834, -0.03023596853017807, -0.008664354681968689,
- -0.049775511026382446, 0.0936378613114357, -0.11795011162757874, -0.3914388120174408,
- 0.05088762566447258, 0.034065619111061096, 0.0276284571737051, 0.021822981536388397,
- -0.03382648527622223, 0.03998010233044624, 0.003301204415038228, -0.05936337634921074,
- 0.07490099966526031, -0.053981442004442215, 0.006807024125009775, -0.029439648613333702,
- -0.07266031950712204, 0.005394036415964365, -0.06257053464651108, -0.057561587542295456,
- 0.013879962265491486, -0.007133444305509329, -0.04448908567428589, -0.10059279203414917,
- 0.00911689829081297, -0.007837880402803421, 0.04904010519385338, 0.016902340576052666,
- -0.010740029625594616, -0.028000682592391968, -0.04419149458408356,
- 0.037813812494277954, 0.05877111852169037, 0.020078284665942192, -0.08891543000936508,
- 0.055561136454343796, 0.08914511650800705, 0.04014163091778755, 0.11472839117050171,
- 0.03390276059508324, 0.0402885265648365, -0.08786531537771225, 0.05029522255063057,
- 0.07809420675039291, 0.18567095696926117, -0.022495126351714134, 0.0076827979646623135,
- 0.0112047353759408, 0.14298896491527557, 0.07554743438959122, 0.04052833095192909,
- -0.031081663444638252, -0.026051312685012817, -0.002225753851234913,
- -0.01745300181210041, 0.06858054548501968, -0.06634337455034256, -0.03213639184832573,
- -0.01844525896012783, -0.009553502313792706, -0.05625762417912483, -0.02056889235973358,
- 0.21723420917987823, 0.010763525031507015, 0.036520011723041534, 0.04036882147192955,
- -0.01159187126904726, 0.044742777943611145, -0.0746835395693779, -0.08432245999574661,
- -0.0198474433273077, -0.006169306579977274, 0.01815447025001049, -0.07845895737409592,
- -0.09241065382957458, -0.009360624477267265, -0.008665504865348339,
- -0.004105315078049898, 0.11497420817613602, -0.02647666446864605, 0.013141614384949207,
- -0.029447877779603004, 0.1434856355190277, 0.0290903951972723, 0.05503743886947632,
- 0.059755489230155945, 0.06896856427192688, 0.014595241285860538, 0.05513671040534973,
- -0.049609482288360596, -0.081041619181633, -0.044222693890333176, 0.1691952496767044,
- -0.02872009389102459, 0.13321591913700104, 0.05691228434443474, -0.024108247831463814,
- -0.021051226183772087, 0.02323128841817379, 0.03168070316314697, -0.02759259007871151,
- -0.4462779760360718, -0.022183379158377647, 0.08734307438135147, 0.005519682075828314,
- 0.011016116477549076, 0.07907615602016449, 0.008038085885345936, -0.0535583533346653,
- -0.045098260045051575, -0.10656270384788513, 0.1590712070465088, 0.01723637990653515,
- 0.06919357925653458, -0.0971326008439064, 0.030531004071235657, 0.07323618978261948,
- -0.042911823838949203, -0.010903839021921158, 0.07097449898719788, -0.31613463163375854,
- -0.017982132732868195, -0.021774694323539734, 0.11111439019441605,
- -0.004559737164527178, 0.05541762337088585, 0.10267248749732971, -0.02931535243988037,
- 0.033019136637449265, 0.026506343856453896, 0.020049327984452248, 0.05562778189778328,
- -0.04880671575665474, 0.0038047104608267546, 0.11158743500709534, 0.14235316216945648,
- 0.07169966399669647, -0.05038728192448616, 12.00778865814209, 0.03150596469640732,
- 0.06782010197639465, -0.10341294854879379, -0.022698460146784782, -0.022668851539492607,
- 0.027704790234565735, -0.13105736672878265, 0.06272490322589874, 0.12312662601470947,
- -0.021581068634986877, -0.0392526239156723, -0.019242266193032265, -0.0789053812623024,
- 0.025229329243302345, -0.031047269701957703, -0.08096910268068314, -0.05846533179283142,
- 0.05034291371703148, -0.034384969621896744, -0.060531001538038254, 0.09284204989671707,
- 0.05929601565003395, 0.015043039806187153, -0.052309226244688034, 0.03165813162922859,
- 0.0013910004636272788, 0.02719167433679104, 0.013755637221038342, 0.03588598594069481,
- 0.0032189134508371353, 0.01975846476852894, 0.10034561157226562, -0.0013042384525761008,
- 0.04137003794312477, 0.09090787917375565, 0.0888228639960289, 0.02628483809530735,
- 0.05380828678607941, 0.040961068123579025, -0.019624600186944008, 0.021710596978664398,
- 0.03738418594002724, 0.021457886323332787, 0.04103798791766167, 0.024326525628566742,
- 0.07882577180862427, 0.11835996061563492, -0.015975983813405037, 0.06387864798307419,
- 0.07921081781387329, -0.0045912000350654125, 0.0745500698685646, 0.01909147948026657,
- -0.028198324143886566, 0.06742759793996811, -0.013607260771095753, -0.07916789501905441,
- 0.09565296024084091, 0.024000370875000954, -0.06695274263620377, 0.1332165151834488,
- 0.02566554583609104, 0.09081026166677475, 0.014816922135651112, 0.020321449264883995,
- 0.06747430562973022, 0.07424544543027878, -0.11343109607696533, -0.10716986656188965,
- 0.033357296139001846, -0.08438458293676376, -0.09423691779375076, 0.10922821611166,
- 0.11807259917259216, -0.030153289437294006, 0.054970886558294296, -0.007369441445916891,
- 0.04931621626019478, -0.0010276263346895576, 0.008816612884402275, 0.05373060703277588,
- -0.01097907405346632, 0.035400643944740295, 0.0029916157945990562, 0.02304510585963726,
- 0.042072031646966934, 0.11705104261636734, 0.02510080486536026, -0.059643637388944626,
- -0.04282064363360405, 0.07842429727315903, 0.009354864247143269, -0.03764721378684044,
- 0.04647697135806084, -0.0999237671494484, 0.011357318609952927, -0.1303016096353531,
- 0.10390470176935196, 0.08578968793153763, -0.07731190323829651, -0.017826905474066734,
- -0.02544248104095459, 0.05087192356586456, 0.04582470282912254, 0.022082475945353508,
- -0.03768625855445862, -0.019214337691664696, 0.028199389576911926, 0.05803798511624336,
- -0.014514523558318615, 0.047406475991010666, 0.06867582350969315, -0.05456298962235451,
- 0.016782784834504128, 0.055454764515161514, -0.032353609800338745, -0.02543248049914837,
- 0.05483265593647957, 0.04114837571978569, -0.07047050446271896, -0.06460568308830261,
- -0.06434368342161179, -0.048701126128435135, -0.004196345806121826,
- -0.004077156074345112, 0.00823922362178564, 0.04150815308094025, -0.03400186821818352,
- -0.057180553674697876, 0.04064849391579628, 0.08259520679712296, 0.09402146935462952,
- 0.031037932261824608, 0.07272463291883469, -0.06999009847640991, -0.017522769048810005,
- 0.04208531975746155, 0.033168062567710876, 0.0822184607386589, -0.09546365588903427,
- -0.030930323526263237, -0.045937430113554, -0.1383344978094101, 0.03173272684216499,
- 0.07559061795473099, 0.005974510684609413, -0.016015641391277313, 0.02945835329592228,
- -0.11748778820037842, -0.0400497205555439, 0.09788951277732849, 0.0775151401758194,
- 0.007818419486284256, 0.03311392292380333, -0.03973982110619545, -0.028016477823257446,
- 0.10073602199554443, 0.01806248165667057, 0.008014793507754803, 0.01695847697556019,
- -0.0558609664440155, 0.09266743808984756, 0.14847245812416077, 0.04267444834113121,
- 0.02630787156522274, 0.013784951530396938, 0.019994286820292473, 0.08022039383649826,
- 0.022634312510490417, 0.0590691864490509, -0.04306678846478462, -0.09030979871749878,
- -0.08399125188589096, 0.003952804021537304, 0.0921277403831482, 0.06640864163637161,
- -0.11373624205589294, -0.0005654377746395767, -0.04884020611643791
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 115,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 13,
- "similarity": 0.9985466599464417
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 6,
- "similarity": 0.9985419511795044
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 166,
- "similarity": 0.9984001517295837
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Katyanna Quach"],
- "epoch_date_downloaded": 1666569600,
- "epoch_date_modified": 1667347200,
- "epoch_date_submitted": 1666656000,
- "flag": null,
- "report_number": 2204,
- "source_domain": "theregister.com",
- "submitters": ["Anonymous"],
- "title": "Someone made an AI that predicted gender from email addresses, usernames. It went about as well as expected",
- "url": "https://www.theregister.com/2020/07/30/genderify_shuts_down/"
- },
- {
- "__typename": "Report",
- "authors": ["Synced"],
- "epoch_date_downloaded": 1635120000,
- "epoch_date_modified": 1635120000,
- "epoch_date_submitted": 1635120000,
- "flag": null,
- "report_number": 1472,
- "source_domain": "syncedreview.com",
- "submitters": ["Patrick Hall (BNH.ai)"],
- "title": "AI-Powered ‘Genderify’ Platform Shut Down After Bias-Based Backlash",
- "url": "https://syncedreview.com/2020/07/30/ai-powered-genderify-platform-shut-down-after-bias-based-backlash/"
- },
- {
- "__typename": "Report",
- "authors": ["James Vincent"],
- "epoch_date_downloaded": 1632355200,
- "epoch_date_modified": 1632355200,
- "epoch_date_submitted": 1632355200,
- "flag": null,
- "report_number": 1440,
- "source_domain": "theverge.com",
- "submitters": ["Alice Villano"],
- "title": "Service that uses AI to identify gender based on names looks incredibly biased",
- "url": "https://www.theverge.com/2020/7/29/21346310/ai-service-gender-verification-identification-genderify"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "amazon",
- "name": "Amazon"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "netradyne",
- "name": "Netradyne"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "amazon-workers",
- "name": "Amazon workers"
- },
- {
- "__typename": "Entity",
- "entity_id": "amazon-delivery-drivers",
- "name": "Amazon delivery drivers"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1803, 1441],
- "vector": [
- -0.08693002164363861, 0.08869632333517075, 0.01407807506620884, -0.10880832374095917,
- 0.0935642272233963, -0.03236372023820877, -0.010045740753412247, 0.03300950676202774,
- 0.08017151802778244, -0.15739446878433228, -0.002548319287598133, 0.015086619183421135,
- 0.02824859507381916, -0.0688650980591774, 0.04405316710472107, -0.09535037726163864,
- -0.05202925205230713, -0.023293303325772285, -0.02178112417459488, -0.13554613292217255,
- -0.06609684228897095, 0.01194586418569088, -0.004911413881927729, 0.12661007046699524,
- -0.0391584075987339, 0.018913742154836655, 0.09443534910678864, 0.08464306592941284,
- -0.05045784264802933, 0.03535858541727066, -0.028501376509666443, -0.08800508081912994,
- 0.12413863837718964, 0.02262841910123825, 0.004075396340340376, 0.10107599943876266,
- -0.013839777559041977, -0.04744398966431618, 0.012571446597576141,
- -0.028721259906888008, 0.04336463660001755, 0.2625276744365692, 0.0003385106101632118,
- -0.04743661358952522, 0.05033620074391365, -0.03250039741396904, 0.0015781386755406857,
- 0.056894347071647644, 0.005046430043876171, 0.020408540964126587, -0.04069420322775841,
- 0.04999738931655884, -0.022443581372499466, 0.046445332467556, -0.09901203215122223,
- 0.05374220013618469, 0.05732056498527527, 0.033347614109516144, 0.05192262679338455,
- -0.09212284535169601, -0.029659194871783257, -0.21890698373317719,
- -0.016802435740828514, -0.08725722134113312, 0.08493052423000336, -0.05310612544417381,
- -0.04431889206171036, 0.047919802367687225, 0.0029514040797948837, 0.06626923382282257,
- 0.052549097687006, -0.02413737215101719, -0.04767195135354996, 0.03386864438652992,
- -0.021878737956285477, -0.03692186251282692, -0.05150540545582771, 0.24663394689559937,
- -0.08361336588859558, -0.003016505856066942, 0.10957324504852295, -0.11655540764331818,
- 0.47785305976867676, 0.04331936314702034, -0.008294746279716492, -0.027443459257483482,
- 0.0793849378824234, 0.05138880014419556, 0.008941255509853363, 0.04591459780931473,
- -0.031498417258262634, 0.0498010627925396, -0.09120932221412659, -0.00811814982444048,
- 0.08302187919616699, 0.018215250223875046, -0.02216663956642151, -0.0139235258102417,
- 0.006829036865383387, -0.07916449010372162, 0.01654403656721115, -0.012615056708455086,
- 0.10456279665231705, 0.06154077872633934, -0.04693388193845749, -0.023693330585956573,
- 0.1304457038640976, -0.05216732993721962, 0.025192515924572945, -0.06617576628923416,
- 0.06278358399868011, -0.029132716357707977, 0.04814673215150833, -0.002331478986889124,
- 0.016427716240286827, -0.07486812770366669, 0.01110012922435999, 0.06284847110509872,
- 0.0939740389585495, 0.04218406230211258, -0.022363493219017982, 0.02835087664425373,
- 0.0694727897644043, -0.06503191590309143, -0.05845276266336441, -0.05007988214492798,
- -0.08434312045574188, -0.037453293800354004, -0.03437946364283562, 0.051840320229530334,
- -0.05620356649160385, -0.19701604545116425, 0.013230599462985992, 0.09605961292982101,
- -0.025445615872740746, -0.050996046513319016, 0.0015096496790647507,
- -0.07158775627613068, 0.040484167635440826, 0.002609439194202423, 0.008918430656194687,
- 0.05300137773156166, 0.06949084997177124, 0.04520167410373688, 0.16381020843982697,
- 0.059260979294776917, -0.05889083817601204, -0.03659285604953766,
- -0.0038563190028071404, -0.03471405431628227, 0.15304747223854065, -0.12646068632602692,
- -0.044682327657938004, -0.010516854003071785, -0.04871333763003349, 0.7108222246170044,
- 0.13974922895431519, 0.24461552500724792, 0.031909771263599396, -0.03818361461162567,
- 0.1776137351989746, 0.012480994686484337, 0.07757433503866196, -0.09156709909439087,
- -0.059976816177368164, 0.013108190149068832, -0.10299636423587799, -0.03967411816120148,
- 0.05537992715835571, -0.0073806229047477245, 0.14288777112960815, 0.027348872274160385,
- 0.10880108922719955, 0.0031184530816972256, -0.08695948123931885,
- 0.000012164004147052765, 0.06658393144607544, 0.009392059408128262, -0.1346694529056549,
- -0.01821400411427021, 0.04715745151042938, 0.09987593442201614, -0.10542040318250656,
- 0.0033294835593551397, -0.09824009239673615, 0.06223263218998909, 0.0032613053917884827,
- 0.03902480751276016, -0.01795322261750698, 0.07200182229280472, 0.08696356415748596,
- 0.08193553984165192, 0.005312717519700527, -0.12808868288993835, -0.01356512401252985,
- 0.13102373480796814, -0.022474391385912895, -0.033744651824235916, 0.08591791987419128,
- -0.09288303554058075, 0.04905816912651062, 0.018528781831264496, 0.17192932963371277,
- -0.12644818425178528, 0.014198987744748592, -0.022465694695711136, -0.01885352097451687,
- 0.040474679321050644, -0.00993400625884533, -0.026169413700699806, -0.07439321279525757,
- 0.05928470194339752, 0.018381239846348763, 0.09211795032024384, 0.09271392226219177,
- -0.027586013078689575, 0.04890456795692444, 0.0807473435997963, -0.0038477699272334576,
- -0.0073025161400437355, 0.05571102350950241, 0.05869161710143089, -0.04026421159505844,
- -0.04337155818939209, 0.018852118402719498, 0.025849854573607445, 0.03665192797780037,
- 0.013753206469118595, 0.053650252521038055, -0.006839838810265064, -0.06757781654596329,
- 0.032389022409915924, 0.03959425538778305, 0.047276005148887634, 0.1307184249162674,
- -0.03218252956867218, -0.03367011994123459, -0.05856265872716904, -0.05816873535513878,
- 0.04238123074173927, 0.011851710267364979, 0.08942972123622894, 0.11158531159162521,
- 0.08786381781101227, 0.012640348635613918, 0.05924921855330467, 0.06048782914876938,
- 0.02880644053220749, 0.03554774820804596, 0.08264124393463135, -0.03254241123795509,
- -0.07649821043014526, -0.02780606970191002, 0.025804292410612106, 0.0038538917433470488,
- -0.007774030789732933, -0.07905459403991699, -0.05502619594335556, -0.09591522067785263,
- -0.06942280381917953, -0.0996074229478836, -0.08061309158802032, -0.03828763961791992,
- 0.049747906625270844, -0.03811977803707123, -0.07230988144874573, -0.0917295441031456,
- 0.03466227650642395, 0.08364127576351166, 0.015004381537437439, 0.004181401804089546,
- -0.11019598692655563, 0.02248014509677887, 0.0019248202443122864, 0.048175595700740814,
- -0.000048666493967175484, 0.004817203152924776, 0.006131516769528389,
- -0.03930376470088959, 0.03353870287537575, -0.024531176313757896, -0.032527241855859756,
- -0.08626201748847961, -0.05927255004644394, -0.058975882828235626,
- -0.006686687469482422, 0.017169009894132614, -0.05901306867599487, 0.04328501224517822,
- 0.042733196169137955, 0.04769209399819374, -0.009700514376163483, -0.06366780400276184,
- 0.05897439271211624, -0.021404732018709183, -0.008816142566502094, 0.08654807507991791,
- -0.040038950741291046, 0.03854857385158539, 0.008609537035226822, -0.05175259709358215,
- -0.021205540746450424, 0.03539557009935379, -0.039979852735996246, 0.04772299900650978,
- -0.03281567990779877, 0.0016802775207906961, -0.013266829773783684,
- 0.009316273964941502, 0.05549310892820358, -0.03701318800449371, -0.08626841008663177,
- -0.05668579787015915, 0.14352896809577942, 0.01744646392762661, -0.0006405292078852654,
- 0.031203625723719597, -0.04647163674235344, 0.05128698796033859, 0.0158669613301754,
- 0.01732482574880123, -0.0020978040993213654, 0.04514887556433678, -0.01987634226679802,
- 0.01080932654440403, 0.07425536960363388, -0.04215214401483536, 0.04255501553416252,
- 0.09356911480426788, 0.4283554255962372, -0.20560428500175476, 0.09261947870254517,
- 0.07239307463169098, 0.06295374035835266, 0.04101122170686722, -0.040950801223516464,
- 0.06923335790634155, 0.07076609134674072, 0.12661004066467285, 0.14420998096466064,
- -0.05819852277636528, -0.005905476398766041, -0.10313074290752411, 0.09801635146141052,
- -0.03178376704454422, 0.01729125902056694, -0.03953254967927933, -0.0826832503080368,
- -0.03021010011434555, 0.046558089554309845, -0.10238324850797653, -0.003015853464603424,
- -0.029982827603816986, -0.07117635011672974, 0.002151037100702524, 0.004522725008428097,
- 0.007448798511177301, -0.024882856756448746, 0.031359050422906876, -0.06567281484603882,
- 0.037365615367889404, 0.022110862657427788, 0.036845628172159195, -0.10006803274154663,
- -0.0008962935535237193, -0.0653638020157814, -0.11771933734416962, 0.08926613628864288,
- -0.016034547239542007, 0.0633758008480072, 0.032542772591114044, -0.04042518883943558,
- 0.04380738362669945, -0.018530968576669693, -0.05385913699865341, 0.04536270350217819,
- 0.054395657032728195, 0.07221474498510361, 0.10136765241622925, 0.1636141985654831,
- -0.06431907415390015, -0.049418989568948746, -0.06620576977729797, 0.06532344222068787,
- 0.14088329672813416, -0.007629960775375366, -0.0008187843486666679,
- 0.027997642755508423, -0.057239554822444916, 0.0011753566795960069,
- -0.08183768391609192, -0.05952911451458931, 0.0046547772362828255, -0.04184224084019661,
- 0.051463574171066284, -0.0023792563006281853, -0.052682749927043915,
- -0.14603717625141144, -0.007769898511469364, -0.0560622438788414, 0.019057057797908783,
- 0.1366816759109497, -0.04209353029727936, 0.06743016839027405, -0.0006250193109735847,
- -0.051945216953754425, 0.022794334217905998, -0.0740916058421135, 0.04417087510228157,
- -0.053136348724365234, -0.00409483490511775, 0.0706833004951477, 0.05528717115521431,
- -0.028911907225847244, 0.10451384633779526, -0.09793316572904587, 0.06823421269655228,
- 0.006766645237803459, -0.05575690418481827, 0.06662186980247498, -0.023342996835708618,
- 0.05221017822623253, 0.021813910454511642, -0.03819827362895012, 0.024350302293896675,
- -0.01763758808374405, -0.0476907342672348, -0.09582053869962692, -0.0777362585067749,
- -0.06385155022144318, -0.07117457687854767, 0.05013337358832359, -0.10248081386089325,
- -0.02195701375603676, -0.022853471338748932, -0.025016266852617264,
- -0.0076000080443918705, 0.016453353688120842, 0.020383981987833977, -0.1441846340894699,
- 0.0759773850440979, -0.022175321355462074, 0.06640709191560745, -0.02568080835044384,
- -0.03907116875052452, -0.0005563627928495407, 0.07387702912092209, 0.06263468414545059,
- -0.03048430010676384, 0.002968380693346262, -0.097288578748703, 0.03842829167842865,
- -0.11720170080661774, -0.364371657371521, 0.04478424787521362, -0.021440526470541954,
- 0.0308850035071373, 0.006020118948072195, -0.06673838198184967, 0.062154896557331085,
- 0.0006673568859696388, -0.04165410250425339, 0.06917788088321686, -0.055240433663129807,
- 0.036835428327322006, -0.02125471457839012, -0.07499061524868011, -0.03630694001913071,
- -0.061612412333488464, -0.08307717740535736, 0.0221075601875782, -0.021516023203730583,
- -0.07524652779102325, -0.13733772933483124, 0.05210784822702408, -0.04821477830410004,
- 0.03579237312078476, 0.0057371375150978565, 0.03206321597099304, -0.05377700552344322,
- -0.04211190342903137, 0.027422497048974037, 0.022580141201615334, 0.04577689990401268,
- -0.06851030141115189, 0.005014698952436447, 0.0659983679652214, 0.009196827188134193,
- 0.12742610275745392, -0.008539743721485138, 0.023208076134324074, -0.06820696592330933,
- 0.13852521777153015, 0.07868365943431854, 0.1829284131526947, -0.02716536819934845,
- 0.028241146355867386, -0.009978074580430984, 0.15006592869758606, 0.06507080793380737,
- 0.030951445922255516, -0.04136629402637482, -0.04389522969722748, 0.028798267245292664,
- -0.029235821217298508, 0.06613820046186447, -0.09644493460655212, -0.03352859988808632,
- -0.03484027087688446, -0.04655010253190994, 0.01573997363448143, -0.03703836724162102,
- 0.1873425394296646, 0.03408714383840561, 0.011101877316832542, 0.02195325680077076,
- -0.08955851197242737, 0.0045978352427482605, -0.045510146766901016,
- -0.13012149930000305, -0.020887579768896103, -0.02107246406376362, 0.007092738524079323,
- -0.03268299251794815, -0.1295320987701416, -0.0340883731842041, 0.020895598456263542,
- 0.025032972916960716, 0.1492156684398651, -0.04503899812698364, 0.02408619411289692,
- -0.022192444652318954, 0.14472973346710205, 0.024995407089591026, 0.009265496395528316,
- 0.03842591494321823, 0.12043225765228271, 0.006158270873129368, 0.03954470157623291,
- -0.04601960629224777, -0.031596433371305466, 0.03712168335914612, 0.15767806768417358,
- -0.016138846054673195, 0.10829862952232361, 0.0665697306394577, -0.03850384056568146,
- -0.0717233270406723, 0.034530919045209885, 0.038705699145793915, 0.047466568648815155,
- -0.4493003487586975, -0.034659840166568756, 0.11656241118907928, 0.030830878764390945,
- 0.017083097249269485, 0.07723451405763626, 0.028494637459516525, -0.06145917624235153,
- -0.07475122064352036, -0.09185129404067993, 0.0886586382985115, 0.014072073623538017,
- 0.04581518843770027, -0.1057637482881546, 0.018590647727251053, 0.08854904770851135,
- -0.021607710048556328, 0.005163419991731644, 0.07730001211166382, -0.24072983860969543,
- 0.012533976696431637, 0.003215685486793518, 0.13490183651447296, -0.0056430986151099205,
- 0.029430262744426727, 0.08144289255142212, -0.061930298805236816, 0.03220706433057785,
- 0.09214906394481659, -0.02424711361527443, 0.055294573307037354, -0.0029817009344697,
- 0.002287589944899082, 0.1187780350446701, 0.0983072817325592, 0.11908188462257385,
- -0.02133718505501747, 12.149433135986328, 0.060401447117328644, 0.04016842693090439,
- -0.12625715136528015, 0.01734819822013378, -0.05070797726511955, 0.042020831257104874,
- -0.14100885391235352, 0.05140186846256256, 0.13033922016620636, -0.04048433527350426,
- -0.06558561325073242, -0.011725970543920994, -0.10563859343528748, 0.03685401380062103,
- -0.05454713851213455, -0.06737472862005234, -0.01879364252090454, 0.051945172250270844,
- -0.07838636636734009, -0.023621177300810814, 0.03116706572473049, 0.054596543312072754,
- 0.007386753335595131, -0.06325586885213852, 0.05888619273900986, 0.05214688181877136,
- -0.0015740073285996914, -0.007300354540348053, 0.012008251622319221,
- -0.020510433241724968, 0.008440721780061722, 0.04673098772764206, 0.009256410412490368,
- 0.03509162366390228, 0.10058820247650146, 0.10599370300769806, 0.02733577787876129,
- 0.04703143984079361, 0.10642565041780472, -0.0012100469321012497, 0.01961655169725418,
- 0.030970051884651184, 0.029608044773340225, 0.06577054411172867, 0.04441619664430618,
- -0.027429085224866867, 0.13708201050758362, 0.010366180911660194, 0.03971652314066887,
- 0.11529216170310974, -0.003527233377099037, 0.10723572969436646, 0.0020900163799524307,
- -0.023750996217131615, 0.019262049347162247, -0.03677143156528473, -0.07369886338710785,
- 0.04751656576991081, 0.10066673159599304, -0.08436134457588196, 0.12213577330112457,
- 0.027796916663646698, 0.10871267318725586, 0.04323936998844147, 0.05127444490790367,
- 0.08739832788705826, 0.07048249989748001, -0.14558912813663483, -0.10622040927410126,
- 0.04451163113117218, -0.06906628608703613, -0.08262162655591965, 0.0821758285164833,
- 0.13619756698608398, -0.05587289109826088, 0.03585311025381088, -0.030096955597400665,
- 0.004037358332425356, -0.058608561754226685, -0.03890218585729599, 0.05283680930733681,
- -0.027257591485977173, 0.020577121526002884, 0.05731814354658127, 0.006932929623872042,
- 0.06375011801719666, 0.09457273781299591, -0.033369652926921844, -0.08320807665586472,
- -0.10150058567523956, 0.07042380422353745, -0.004120257217437029, -0.0912400484085083,
- 0.02127816528081894, -0.09295761585235596, 0.08320668339729309, -0.17392440140247345,
- 0.058522820472717285, 0.09216246008872986, -0.10060087591409683, -0.03833197057247162,
- -0.04853411018848419, 0.08705466985702515, 0.03127618506550789, 0.029775062575936317,
- -0.07186506688594818, 0.006667492911219597, 0.021847419440746307, 0.04170052707195282,
- -0.04531543701887131, 0.061568498611450195, 0.06396270543336868, -0.057361628860235214,
- 0.043827880173921585, 0.04578245058655739, -0.018018502742052078, -0.06593455374240875,
- 0.06430639326572418, 0.07842223346233368, -0.07882711291313171, -0.057290446013212204,
- -0.03133728355169296, -0.050313059240579605, -0.02217091992497444,
- -0.025741279125213623, 0.02965826541185379, 0.013081928715109825, -0.07073546946048737,
- -0.007496800273656845, 0.04229550436139107, 0.06915707886219025, 0.08740973472595215,
- -0.016400206834077835, 0.1048637181520462, -0.08650432527065277, -0.045360468327999115,
- 0.03860359638929367, 0.011315030045807362, 0.07067787647247314, -0.040739476680755615,
- -0.04519902542233467, -0.07098697125911713, -0.09939190745353699, 0.04033747687935829,
- 0.10450202226638794, 0.06325793266296387, 0.020605076104402542, -0.007937978953123093,
- -0.06802085041999817, -0.07844015210866928, 0.11044192314147949, 0.05271698534488678,
- -0.011267922818660736, 0.017895253375172615, -0.07120443135499954,
- -0.029369346797466278, 0.1177389919757843, -0.05575927346944809, 0.00010564178228378296,
- 0.02595599927008152, -0.05505736917257309, 0.09060503542423248, 0.14570462703704834,
- 0.06518517434597015, 0.05736241862177849, 0.007273662835359573, -0.019513316452503204,
- 0.007150720339268446, -0.040394607931375504, 0.030146906152367592, -0.0429048053920269,
- -0.09783978760242462, -0.057960934937000275, -0.0067352475598454475,
- 0.10051235556602478, 0.033061906695365906, -0.13720805943012238, -0.003630886785686016,
- -0.04604761302471161
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 116,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 111,
- "similarity": 0.9983488321304321
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 10,
- "similarity": 0.9980217218399048
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 187,
- "similarity": 0.9980213642120361
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Joel Hruska"],
- "epoch_date_downloaded": 1658880000,
- "epoch_date_modified": 1658880000,
- "epoch_date_submitted": 1633132800,
- "flag": null,
- "report_number": 1803,
- "source_domain": "extremetech.com",
- "submitters": ["Kate Perkins"],
- "title": "AI Is Penalizing Amazon Delivery Drivers for Errors They Aren't Making",
- "url": "https://www.extremetech.com/extreme/327317-ai-is-penalizing-amazon-delivery-drivers-for-errors-they-arent-making"
- },
- {
- "__typename": "Report",
- "authors": ["Lauren Kaori Gurley"],
- "epoch_date_downloaded": 1632355200,
- "epoch_date_modified": 1632355200,
- "epoch_date_submitted": 1632355200,
- "flag": null,
- "report_number": 1441,
- "source_domain": "vice.com",
- "submitters": ["Christopher Maratos"],
- "title": "Amazon’s AI Cameras Are Punishing Drivers for Mistakes They Didn’t Make",
- "url": "https://www.vice.com/en/article/88npjv/amazons-ai-cameras-are-punishing-drivers-for-mistakes-they-didnt-make"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "tiktok",
- "name": "TikTok"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "tiktok",
- "name": "TikTok"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "tiktok-users",
- "name": "TikTok users"
- },
- {
- "__typename": "Entity",
- "entity_id": "tiktok-content-creators",
- "name": "TikTok content creators"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [2021, 2020, 2019, 1442],
- "vector": [
- -0.08285420387983322, 0.05568167194724083, -0.007260450161993504, -0.0877106711268425,
- 0.09038973599672318, 0.0070273131132125854, 0.01064896211028099, 0.0418655164539814,
- 0.06193368509411812, -0.14465674757957458, -0.012800052762031555, 0.01607251539826393,
- 0.024505777284502983, -0.07350090891122818, 0.03943852335214615, -0.04506780207157135,
- -0.07580327242612839, -0.018761996179819107, -0.014306606724858284,
- -0.12603965401649475, -0.07408063113689423, -0.021738488227128983, 0.008042393252253532,
- 0.11769362539052963, -0.048566367477178574, 0.01683095283806324, 0.09903628379106522,
- 0.09564396739006042, -0.037427984178066254, 0.02342229150235653, -0.056575752794742584,
- -0.08768986910581589, 0.1320229470729828, 0.001285972073674202, 0.004143431782722473,
- 0.08994176983833313, 0.05047585815191269, -0.029141008853912354, -0.047386474907398224,
- -0.0009311670437455177, -0.0016261165728792548, 0.18902280926704407,
- 0.00652755843475461, -0.01636064611375332, 0.0722300335764885, -0.0029551174957305193,
- 0.03055376186966896, 0.033648520708084106, -0.003749227849766612,
- -0.0006050238735042512, -0.01828840747475624, -0.005379220936447382,
- -0.055969782173633575, 0.012299562804400921, -0.10166072845458984, 0.05879230052232742,
- 0.03562067449092865, -0.01614377833902836, 0.01684807986021042, -0.06312288343906403,
- -0.008076699450612068, -0.13616134226322174, -0.04274079203605652, -0.03424898162484169,
- 0.09720315784215927, -0.06552468240261078, -0.03624314069747925, -0.006752861198037863,
- 0.04154832661151886, 0.0383882075548172, 0.047023214399814606, -0.02439810335636139,
- -0.03475828841328621, -0.0012051408411934972, -0.03321031853556633,
- -0.02620728127658367, 0.04029177874326706, 0.2103496789932251, -0.09657405316829681,
- 0.009386121295392513, 0.09122630953788757, -0.0992341935634613, 0.33902424573898315,
- 0.008532162755727768, -0.026208985596895218, 0.030097873881459236, 0.08181799203157425,
- 0.030402060598134995, 0.017682243138551712, 0.05788750573992729, 0.018833383917808533,
- 0.04970470815896988, -0.06275904178619385, -0.0076049258932471275, 0.04344836249947548,
- 0.03034812957048416, -0.0054824864491820335, -0.09584103524684906, -0.00848239567130804,
- -0.058480747044086456, -0.019637199118733406, -0.05466068536043167, 0.14989419281482697,
- 0.0648818239569664, -0.05495215207338333, 0.006015093065798283, 0.08874544501304626,
- -0.03508661314845085, 0.02887146733701229, -0.03865068033337593, 0.04521500691771507,
- 0.036821383982896805, 0.03431413322687149, -0.004699962213635445, 0.03709261119365692,
- -0.028693564236164093, 0.024287650361657143, 0.06735777854919434, 0.09021756052970886,
- 0.09781712293624878, 0.0054029542952775955, 0.07639945298433304, 0.11125312000513077,
- -0.07708906382322311, -0.033599115908145905, 0.0014431360177695751,
- -0.02140354923903942, 0.0028357822448015213, -0.02912333235144615, 0.056641850620508194,
- -0.05485784262418747, -0.2138862907886505, 0.012929207645356655, 0.024582136422395706,
- -0.0315265879034996, -0.03075065277516842, 0.03014334850013256, -0.069976806640625,
- 0.0208898913115263, -0.02211681194603443, -0.01886753737926483, 0.0699785053730011,
- 0.050550129264593124, 0.04461751878261566, 0.11199666559696198, 0.05381026864051819,
- -0.02670215256512165, -0.0588458888232708, -0.011669434607028961, -0.08719000220298767,
- 0.08535317331552505, -0.11780253052711487, -0.0517534464597702, -0.028056398034095764,
- -0.015177099034190178, 0.614403486251831, 0.10231985151767731, 0.1613575667142868,
- -0.01097678579390049, -0.036819785833358765, 0.1576114296913147, -0.0403711274266243,
- 0.05690520256757736, -0.04763726517558098, -0.029957100749015808, 0.03313663601875305,
- -0.0815834254026413, -0.05165597423911095, 0.0039847856387495995, 0.026805154979228973,
- 0.06893892586231232, 0.015678882598876953, 0.10784318298101425, 0.01169107761234045,
- -0.09345124661922455, -0.057600781321525574, 0.02804741822183132, 0.03770025074481964,
- -0.12820348143577576, -0.04419177025556564, 0.08500709384679794, 0.09123577177524567,
- -0.06465354561805725, 0.014377382583916187, -0.0668821781873703, 0.048712119460105896,
- 0.0031735775992274284, 0.061217550188302994, -0.009768213145434856, 0.03686852380633354,
- 0.04300059378147125, 0.026178790256381035, -0.04988287016749382, -0.06987135857343674,
- -0.010398906655609608, 0.1041921079158783, 0.007859420031309128, -0.03991260379552841,
- 0.06526265293359756, -0.07643492519855499, 0.04510702192783356, -0.010698794387280941,
- 0.12918229401111603, -0.11552666127681732, 0.039736613631248474, 0.0027796633075922728,
- -0.008457552641630173, 0.06463582068681717, -0.010995147749781609, -0.07916416227817535,
- -0.07685165107250214, 0.09432260692119598, 0.007373466622084379, 0.030028177425265312,
- 0.031173303723335266, -0.035205185413360596, 0.04403018206357956, 0.08710755407810211,
- 0.0050695850513875484, -0.025929801166057587, 0.07834221422672272, 0.04740353301167488,
- -0.05948266386985779, -0.024748623371124268, 0.032714709639549255,
- -0.007397445384413004, 0.03487253934144974, -0.0014653963735327125, 0.0541117861866951,
- 0.013195480220019817, -0.026423269882798195, 0.05211753770709038, 0.014862749725580215,
- 0.047270551323890686, 0.07305314391851425, -0.09501620382070541, -0.019404206424951553,
- -0.020641030743718147, -0.02027139440178871, -0.016425156965851784,
- -0.04225732758641243, 0.0650249719619751, 0.08166328072547913, 0.06622102856636047,
- 0.031803056597709656, 0.04097367450594902, 0.056045372039079666, 0.060235194861888885,
- 0.011922702193260193, 0.04696488380432129, -0.03857436031103134, -0.017438767477869987,
- -0.034696534276008606, 0.007226665038615465, 0.05501750856637955,
- -0.0011917776428163052, -0.06266359984874725, -0.030941832810640335,
- -0.05617745220661163, -0.0036197009030729532, -0.08608013391494751,
- -0.05018996819853783, 0.01944495551288128, 0.0339684896171093, -0.04452609270811081,
- -0.13945522904396057, -0.061153117567300797, 0.01936768740415573, 0.07394099235534668,
- -0.042784012854099274, -0.011631941422820091, -0.09953033179044724, 0.04065357521176338,
- -0.013016234152019024, 0.037073325365781784, -0.01944020204246044, 0.013715825043618679,
- -0.032787539064884186, -0.0686221569776535, 0.0182027705013752, 0.006460246630012989,
- 0.021122876554727554, 0.020983263850212097, -0.05200991407036781, -0.06436572223901749,
- -0.005272946320474148, -0.0010326828341931105, -0.04579305648803711,
- 0.024980437010526657, 0.03970086947083473, 0.057790543884038925, -0.018614819273352623,
- -0.0024759802035987377, 0.023569883778691292, -0.05609990283846855,
- -0.02872321754693985, 0.07340754568576813, -0.067575603723526, 0.02746797911822796,
- 0.013126900419592857, -0.07790467143058777, -0.056451793760061264,
- -0.0029426398687064648, -0.03008444979786873, 0.05957740172743797,
- -0.036235444247722626, -0.05518462136387825, -0.038232892751693726,
- 0.018789006397128105, 0.06762952357530594, -0.05030529573559761, -0.07472504675388336,
- -0.07960078865289688, 0.10644472390413284, -0.014577554538846016,
- -0.0047683268785476685, 0.009756391867995262, -0.037674833089113235,
- 0.05834421142935753, -0.019049709662795067, 0.013762752525508404, 0.04150747135281563,
- 0.08799239993095398, 0.010413850657641888, 0.0006897690473124385, 0.04338129609823227,
- -0.02326437458395958, 0.008512857370078564, 0.08268110454082489, 0.4260202646255493,
- -0.21387813985347748, 0.07684680074453354, 0.10235295444726944, 0.0383763462305069,
- 0.04092611372470856, -0.023353371769189835, 0.06649799644947052, 0.06357253342866898,
- 0.12073194980621338, 0.13080190122127533, -0.043551310896873474, -0.0027344785630702972,
- -0.029657263308763504, 0.08708614110946655, 0.01850356161594391, 0.028047706931829453,
- -0.017660951241850853, -0.027692575007677078, -0.009522398933768272,
- 0.023979075253009796, -0.06028761714696884, 0.04286633059382439, -0.019867340102791786,
- -0.06829679757356644, 0.014005385339260101, 0.03558787330985069, 0.03973314166069031,
- -0.021764647215604782, 0.05124633014202118, -0.029014941304922104, 0.04524940624833107,
- 0.02433948405086994, 0.055648524314165115, -0.08058320730924606, 0.040031448006629944,
- -0.06766704469919205, -0.05421706661581993, 0.06466278433799744, 0.007212153170257807,
- 0.05992387235164642, 0.04415065422654152, 0.0064524393528699875, 0.0362640880048275,
- -0.008851854130625725, -0.048142388463020325, -0.014835463836789131,
- 0.06167975440621376, 0.03184279799461365, 0.08471239358186722, 0.14687906205654144,
- -0.029479537159204483, -0.01080390065908432, -0.067784883081913, 0.05529956519603729,
- 0.1249186098575592, -0.004147029016166925, 0.03141133487224579, -0.008093927055597305,
- -0.03409973159432411, -0.0011770279379561543, -0.034733839333057404,
- -0.042549703270196915, -0.02275765873491764, -0.04071982204914093, 0.07384219765663147,
- 0.06931611895561218, -0.011430036276578903, -0.1249975636601448, -0.013949647545814514,
- -0.04210413247346878, 0.03888412192463875, 0.11888272315263748, -0.08409038931131363,
- 0.023876145482063293, -0.002370661124587059, -0.013296684250235558,
- -0.0003187835682183504, -0.10130822658538818, 0.013996351510286331,
- -0.06737712770700455, 0.026815973222255707, 0.05126930773258209, 0.06252659112215042,
- -0.026045121252536774, 0.049567557871341705, -0.09958390891551971, 0.042007822543382645,
- 0.020076002925634384, -0.04951394721865654, 0.014158868230879307, -0.020490849390625954,
- 0.050218794494867325, 0.006946082692593336, -0.05270445719361305, -0.030985666438937187,
- -0.029029792174696922, -0.013055609539151192, -0.08499063551425934,
- -0.07264335453510284, -0.04019436612725258, -0.07204565405845642, 0.052701760083436966,
- -0.07453222572803497, -0.039823513478040695, -0.06018633022904396,
- -0.0060317423194646835, 0.0006229138234630227, 0.017444783821702003,
- 0.023424062877893448, -0.112333282828331, -0.0030623243656009436, 0.005453682038933039,
- 0.05026416480541229, -0.0250561386346817, -0.06657768785953522, -0.004037574399262667,
- 0.0852842926979065, 0.027149632573127747, -0.04513952508568764, 0.019144222140312195,
- -0.047095976769924164, 0.09614864736795425, -0.13635535538196564, -0.5108693838119507,
- 0.029497584328055382, 0.023495353758335114, 0.03750446438789368, 0.0076607875525951385,
- -0.06341905891895294, 0.02105962112545967, 0.007315066177397966, -0.003890479914844036,
- 0.07575908303260803, -0.03554204851388931, 0.0012615601299330592, -0.04308624565601349,
- -0.026401279494166374, 0.011090034618973732, -0.042492225766181946,
- -0.038607895374298096, 0.033937327563762665, 0.012674879282712936, -0.05930104851722717,
- -0.06855505704879761, 0.020367393270134926, -0.004042983520776033,
- 0.0014629301149398088, 0.001994022633880377, 0.0050860862247645855,
- -0.03490827605128288, -0.07794927805662155, 0.03155088052153587, 0.0753045529127121,
- 0.0292891263961792, -0.06657455861568451, -0.018533693626523018, 0.06927257776260376,
- 0.032974421977996826, 0.0847613587975502, 0.018482401967048645, -0.02889329567551613,
- -0.06901960074901581, 0.08029328286647797, 0.07030803710222244, 0.18869897723197937,
- -0.0074436357244849205, 0.04117700085043907, -0.0005504114669747651,
- 0.14630822837352753, 0.018123088404536247, 0.03695334866642952, -0.01563381589949131,
- 0.001971455756574869, 0.034330107271671295, 0.004435374867171049, 0.07268428802490234,
- -0.07483859360218048, -0.04692893475294113, 0.006925493478775024, -0.016700023785233498,
- -0.06952512264251709, -0.029587343335151672, 0.18756726384162903, 0.031018665060400963,
- 0.022207897156476974, 0.03218410536646843, -0.019268685951828957, 0.02163028158247471,
- -0.077237069606781, -0.07290077209472656, -0.015475158579647541, -0.028554173186421394,
- 0.0220541600137949, -0.027886133641004562, -0.0879022553563118, -0.015146342106163502,
- 0.024452507495880127, -0.0007473620935343206, 0.10914166271686554, -0.05397791415452957,
- -0.0058779590763151646, -0.02730228751897812, 0.10974060744047165, 0.004691817332059145,
- 0.04033992812037468, 0.057281456887722015, 0.07641611248254776, 0.02555409073829651,
- 0.014920431189239025, -0.05315553769469261, -0.08154337853193283, -0.03988507762551308,
- 0.13346335291862488, -0.029797665774822235, 0.11456551402807236, 0.05143709480762482,
- 0.006596309132874012, -0.019470427185297012, 0.021038832142949104,
- -0.011268194764852524, 0.015379732474684715, -0.5023563504219055, -0.058531031012535095,
- 0.09973488003015518, 0.007171532139182091, 0.002342943102121353, 0.06249445676803589,
- 0.01369214616715908, -0.0348920002579689, -0.015342187136411667, -0.07282261550426483,
- 0.06964308768510818, -0.009378314018249512, 0.08219107240438461, -0.1073240339756012,
- 0.012696515768766403, 0.08775000274181366, -0.023152630776166916, -0.007273015566170216,
- 0.035873956978321075, -0.23008845746517181, -0.016523433849215508,
- -0.014908596873283386, 0.13830938935279846, 0.013841018080711365, 0.03071591816842556,
- 0.10447505861520767, -0.030511315912008286, 0.03802477568387985, 0.05075147747993469,
- 0.03344537690281868, 0.0833343118429184, -0.03491157665848732, -0.010996740311384201,
- 0.07589176297187805, 0.11974062025547028, 0.06764081865549088, -0.009243634529411793,
- 11.83328914642334, 0.026111355051398277, 0.07753510773181915, -0.11300402879714966,
- 0.020642757415771484, -0.055539604276418686, 0.029204683378338814, -0.08780137449502945,
- 0.08039280772209167, 0.1314355731010437, 0.014334782026708126, -0.02479962259531021,
- -0.022563813254237175, -0.07330714166164398, 0.013244052417576313, -0.03352593630552292,
- -0.031156955286860466, -0.025876058265566826, 0.06659996509552002, -0.05875527113676071,
- -0.03180414438247681, 0.08464004099369049, 0.06135093420743942, 0.04340329021215439,
- -0.08609993755817413, 0.02812960185110569, -0.000552193378098309, 0.02518434450030327,
- -0.001554648857563734, 0.034658174961805344, 0.023910976946353912, 0.0246491190046072,
- 0.07744495570659637, 0.03812529891729355, 0.00865368265658617, 0.06549280881881714,
- -0.013553215190768242, 0.013463282026350498, 0.020639803260564804, 0.07396262139081955,
- -0.008725854568183422, 0.013718956150114536, 0.011071977205574512, 0.03068455122411251,
- 0.06274362653493881, 0.02564764954149723, 0.04295356944203377, 0.13420774042606354,
- -0.01971995085477829, 0.05162856727838516, 0.0754910409450531, -0.012672982178628445,
- 0.08941056579351425, 0.05588048696517944, -0.008935020305216312, 0.031496282666921616,
- 0.00837324745953083, -0.07267453521490097, 0.08503010123968124, -0.014874592423439026,
- -0.03464265540242195, 0.1351454257965088, 0.0445043183863163, 0.08604773133993149,
- 0.02202453464269638, 0.05770526081323624, 0.05688514932990074, 0.0706716924905777,
- -0.08326219767332077, -0.07036583125591278, 0.051721736788749695, -0.09784407168626785,
- -0.09046630561351776, 0.049182698130607605, 0.06871633231639862, -0.04907701537013054,
- 0.027912618592381477, -0.04129505902528763, 0.038808245211839676, 0.03291850537061691,
- 0.04162347689270973, 0.07226553559303284, -0.05312392860651016, 0.0021767551079392433,
- 0.022347725927829742, 0.05231422930955887, 0.07818436622619629, 0.10101673007011414,
- -0.012145179323852062, -0.046558987349271774, -0.07999385893344879, 0.06634367257356644,
- -0.0091108912602067, -0.03267935663461685, 0.033573634922504425, -0.052456289529800415,
- 0.03857935965061188, -0.160965234041214, 0.09532298147678375, 0.10696317255496979,
- -0.0801946371793747, -0.0479089617729187, -0.027204599231481552, 0.041391607373952866,
- -0.007371984887868166, 0.035477153956890106, -0.04229756444692612,
- -0.007711787708103657, 0.025326814502477646, 0.06966201961040497, -0.02250298112630844,
- 0.05607838183641434, 0.06718365103006363, -0.06416918337345123, 0.012967700138688087,
- 0.035021647810935974, -0.031091393902897835, -0.022706763818860054, 0.04967004433274269,
- 0.03148185461759567, -0.07373066991567612, -0.040214598178863525, -0.062293246388435364,
- 0.00866406224668026, 0.017262812703847885, -0.043797850608825684,
- -0.0030625425279140472, 0.018155690282583237, 0.004773655906319618,
- -0.019865714013576508, 0.013439793139696121, 0.05508521944284439, 0.12380722165107727,
- -0.0009189449483528733, 0.06917625665664673, -0.023287368938326836,
- -0.03236175328493118, 0.027839573100209236, 0.05352139472961426, 0.09341540932655334,
- -0.08043594658374786, -0.040739960968494415, -0.0028426400385797024,
- -0.1263541877269745, 0.02114495448768139, 0.08713164180517197, 0.012536661699414253,
- 0.04295575991272926, 0.04062004014849663, -0.09339642524719238, -0.03827022761106491,
- 0.09382722526788712, 0.012955227866768837, -0.023943383246660233, 0.03817475214600563,
- -0.05555849149823189, -0.02935955859720707, 0.08365488052368164, -0.034114111214876175,
- -0.03035729192197323, -0.0029932642355561256, -0.16200964152812958, 0.081427201628685,
- 0.0743160992860794, 0.049027591943740845, 0.031033677980303764, 0.027631226927042007,
- 0.003974540159106255, 0.02378726936876774, 0.00884544663131237, -0.0032629426568746567,
- -0.03215527907013893, -0.11023262143135071, -0.10626153647899628, -0.017922982573509216,
- 0.07148251682519913, 0.08813004195690155, -0.12298774719238281, -0.01443628128618002,
- -0.05436604470014572
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 117,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 103,
- "similarity": 0.9982201457023621
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 185,
- "similarity": 0.9980130195617676
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 174,
- "similarity": 0.9978957772254944
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Lauren Strapagiel"],
- "epoch_date_downloaded": 1662595200,
- "epoch_date_modified": 1663027200,
- "epoch_date_submitted": 1662595200,
- "flag": null,
- "report_number": 2021,
- "source_domain": "buzzfeednews.com",
- "submitters": ["Ingrid Dickinson (CSET)"],
- "title": "TikTok's Algorithm Shows Unintentional Racial Bias, Researcher Finds",
- "url": "https://www.buzzfeednews.com/article/laurenstrapagiel/tiktok-algorithim-racial-bias"
- },
- {
- "__typename": "Report",
- "authors": ["Rebecca Heilweil"],
- "epoch_date_downloaded": 1662595200,
- "epoch_date_modified": 1663027200,
- "epoch_date_submitted": 1662595200,
- "flag": null,
- "report_number": 2020,
- "source_domain": "vox.com",
- "submitters": ["Khoa Lam"],
- "title": "There’s something strange about TikTok recommendations",
- "url": "https://www.vox.com/recode/2020/2/25/21152585/tiktok-recommendations-profile-look-alike"
- },
- {
- "__typename": "Report",
- "authors": ["Marc Faddoul"],
- "epoch_date_downloaded": 1662595200,
- "epoch_date_modified": 1663027200,
- "epoch_date_submitted": 1662595200,
- "flag": null,
- "report_number": 2019,
- "source_domain": "twitter.com",
- "submitters": ["Khoa Lam"],
- "title": "Tweet: @MarcFaddoul",
- "url": "https://twitter.com/MarcFaddoul/status/1232014908536938498"
- },
- {
- "__typename": "Report",
- "authors": ["Collyn Burke"],
- "epoch_date_downloaded": 1631750400,
- "epoch_date_modified": 1631750400,
- "epoch_date_submitted": 1631750400,
- "flag": null,
- "report_number": 1442,
- "source_domain": "dailydot.com",
- "submitters": ["Roman Lutz"],
- "title": "Is TikTok’s algorithm actually pretty racist?",
- "url": "https://www.dailydot.com/irl/tiktok-racist-algorithm/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "openai",
- "name": "OpenAI"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "openai",
- "name": "OpenAI"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "muslims",
- "name": "Muslims"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [2010, 2009, 1443],
- "vector": [
- -0.058208879083395004, 0.06644552201032639, 0.00013658528041560203,
- -0.08285582810640335, 0.08112554997205734, -0.014404411427676678, 0.0066713676787912846,
- 0.0705929845571518, 0.09778064489364624, -0.13021445274353027, -0.035649627447128296,
- 0.026405557990074158, 0.003599970368668437, -0.09217502921819687, 0.02368069253861904,
- -0.09061915427446365, -0.10354200750589371, -0.03142040595412254,
- -0.0030165445059537888, -0.15603704750537872, -0.09089391678571701,
- -0.042941246181726456, -0.004657663870602846, 0.07715804129838943,
- -0.032623257488012314, 0.055531442165374756, 0.1182730495929718, 0.10076727718114853,
- -0.0903446301817894, 0.06385169923305511, -0.03781914338469505, -0.060321271419525146,
- 0.12239065766334534, -0.00608782796189189, 0.014416289515793324, 0.08409532159566879,
- 0.018535779789090157, -0.023259581997990608, -0.02794661559164524, 0.004834332037717104,
- 0.024603307247161865, 0.23485375940799713, -0.019988106563687325, -0.01106181088835001,
- 0.04394940659403801, -0.021060170605778694, -0.005589608568698168, 0.03605310991406441,
- 0.0031000233720988035, 0.02538502775132656, 0.006580518092960119, 0.019016802310943604,
- -0.012124019674956799, 0.02276097796857357, -0.08360400795936584, 0.0572778694331646,
- 0.028003482148051262, -0.01222850102931261, 0.038379326462745667, -0.08666520565748215,
- -0.029101097956299782, -0.18767815828323364, -0.06415978819131851, -0.08501758426427841,
- 0.10991418361663818, -0.0672084391117096, -0.015466932207345963, 0.04647564888000488,
- 0.01622006483376026, 0.055053386837244034, 0.06735042482614517, -0.027672717347741127,
- -0.030864648520946503, 0.006559830158948898, -0.03282753750681877, -0.02489548921585083,
- -0.053930286318063736, 0.1884988397359848, -0.10210558027029037, 0.03794238343834877,
- 0.08950295299291611, -0.09621280431747437, 0.32930245995521545, 0.009889163076877594,
- -0.0502239465713501, 0.015424112789332867, 0.10629012435674667, 0.026431160047650337,
- 0.045414093881845474, 0.02004508674144745, 0.0093396520242095, 0.055755436420440674,
- -0.06630264967679977, -0.028677761554718018, 0.061254650354385376, 0.04743516817688942,
- -0.012651290744543076, 0.01591242104768753, -0.030619733035564423, -0.04632216691970825,
- -0.002748551545664668, -0.05059868097305298, 0.1149493083357811, 0.10143444687128067,
- -0.03783393278717995, 0.03235326707363129, 0.08494293689727783, -0.04820292070508003,
- 0.06051666662096977, -0.043007511645555496, 0.029113559052348137, -0.01388268917798996,
- 0.06414453685283661, 0.0056579336524009705, 0.038010790944099426, -0.057615380734205246,
- 0.02791684679687023, 0.05777319148182869, 0.09749889373779297, 0.05540534481406212,
- -0.01478051021695137, 0.06101573631167412, 0.09005514532327652, -0.06441238522529602,
- -0.06939510256052017, -0.012581788003444672, -0.02555636130273342, -0.02178753912448883,
- -0.01600746065378189, 0.06058681011199951, -0.04920436069369316, -0.18449755012989044,
- 0.004309254232794046, 0.0787702426314354, -0.07713022083044052, -0.005145774222910404,
- 0.013497435487806797, -0.07809963077306747, 0.05351153016090393, -0.026142964139580727,
- -0.011313783936202526, 0.0453730933368206, -0.003045756369829178, 0.0129929780960083,
- 0.06457057595252991, 0.05033615231513977, -0.03909996896982193, -0.03609706461429596,
- 0.02319522760808468, -0.014980119653046131, 0.11098543554544449, -0.10896503925323486,
- -0.05529714748263359, -0.0313141755759716, 0.0009893868118524551, 0.6966966986656189,
- 0.10083089023828506, 0.18123991787433624, -0.0054305740632116795, -0.026925668120384216,
- 0.1683337688446045, 0.02532324194908142, 0.04338034987449646, -0.06614746898412704,
- -0.035654980689287186, 0.01717333309352398, -0.05816251039505005, -0.05802535638213158,
- 0.003193990094587207, 0.047430623322725296, 0.09057290107011795, 0.022755766287446022,
- 0.06401727348566055, -0.013305655680596828, -0.11828795820474625, -0.013517573475837708,
- 0.07299897819757462, 0.00399591913446784, -0.1389317512512207, -0.021675437688827515,
- 0.06713464856147766, 0.08708981424570084, -0.07406214624643326, -0.0028650611639022827,
- -0.04243026301264763, 0.05003653094172478, -0.016951173543930054, 0.03773994371294975,
- -0.023539433255791664, 0.04478892683982849, 0.06627529859542847, 0.04328535869717598,
- -0.05628184974193573, -0.09193092584609985, -0.03729551285505295, 0.07138258218765259,
- -0.027342358604073524, -0.05404138192534447, 0.0721949115395546, -0.06871896982192993,
- 0.029446596279740334, -0.026258522644639015, 0.15354719758033752, -0.11670270562171936,
- 0.030580900609493256, -0.008878561668097973, -0.025533415377140045, 0.05490266904234886,
- 0.011687162332236767, -0.06552869081497192, -0.041432637721300125, 0.11380868405103683,
- 0.009576291777193546, 0.09916270524263382, 0.05830379202961922, -0.020548982545733452,
- 0.06653684377670288, 0.063375324010849, 0.026818254962563515, -0.06424375623464584,
- 0.054458558559417725, 0.053377289324998856, -0.03574594855308533, -0.009889708831906319,
- 0.02576264925301075, 0.004974281881004572, 0.02841144986450672, -0.010971534065902233,
- 0.03925758972764015, -0.026503125205636024, -0.06533162295818329, 0.047061990946531296,
- 0.06475744396448135, 0.030442088842391968, 0.08300751447677612, -0.08271699398756027,
- -0.03557929769158363, -0.041181739419698715, -0.011781737208366394,
- -0.01876848004758358, -0.047020748257637024, 0.07086753100156784, 0.12009123712778091,
- 0.06110243871808052, 0.034941330552101135, 0.028127988800406456, 0.07733217626810074,
- 0.056291282176971436, -0.014655298553407192, 0.08741685003042221, -0.011890620924532413,
- -0.015343966893851757, -0.002506640972569585, 0.02070528455078602, 0.03504081442952156,
- -0.02619110234081745, -0.05881050229072571, -0.04180212318897247, -0.027713455259799957,
- -0.02700916863977909, -0.0879940390586853, -0.06691475957632065, 0.029602041468024254,
- 0.02831668220460415, -0.07019073516130447, -0.08525749295949936, -0.07631596177816391,
- 0.012306631542742252, 0.10734438896179199, -0.04552575945854187, -0.029367387294769287,
- -0.09438210725784302, 0.016282113268971443, -0.025899866595864296, 0.03717220947146416,
- 0.00535487150773406, 0.00244528497569263, -0.007973932661116123, -0.0924040898680687,
- 0.02090314030647278, 0.008889214135706425, -0.01271644327789545, -0.000825104012619704,
- -0.047383811324834824, -0.019284086301922798, -0.03130081668496132,
- 0.006288571283221245, -0.055721163749694824, 0.010585624724626541, 0.041080597788095474,
- 0.0518590472638607, -0.039227645844221115, -0.052285194396972656, 0.03860184922814369,
- -0.008904664777219296, -0.0033984268084168434, 0.0956493616104126, -0.04647728428244591,
- 0.007738087791949511, -0.014537937939167023, -0.08173368126153946, -0.06749584525823593,
- -0.020897209644317627, -0.011278017424046993, 0.034813135862350464,
- -0.03311219438910484, 0.009245953522622585, -0.027508309110999107,
- 0.0029277477879077196, 0.0433073528110981, -0.03192543610930443, -0.10555634647607803,
- -0.07088270783424377, 0.1282086968421936, -0.012034133076667786, -0.004236127249896526,
- 0.01881703920662403, -0.033767472952604294, 0.05972932279109955, -0.030134916305541992,
- 0.007619490381330252, 0.04946814104914665, 0.07403972744941711, 0.004341117572039366,
- 0.02330729365348816, 0.09200861304998398, -0.024734176695346832, 0.04716647043824196,
- 0.06882529705762863, 0.4451879560947418, -0.17939378321170807, 0.08847210556268692,
- 0.1104084774851799, -0.0027904913295060396, 0.07796815037727356, -0.03848552331328392,
- 0.08102551847696304, 0.0623757429420948, 0.10963895171880722, 0.13148680329322815,
- -0.06000233069062233, 0.0072111766785383224, -0.05425745248794556, 0.10052021592855453,
- 0.0041889320127666, 0.048416703939437866, -0.03856698051095009, -0.06709553301334381,
- -0.0033010654151439667, 0.017638303339481354, -0.033185556530952454,
- 0.029583720490336418, -0.023797662928700447, -0.04919242858886719,
- -0.0008365073590539396, 0.022347114980220795, 0.024669071659445763,
- -0.03476480767130852, 0.027038605883717537, -0.017017625272274017, 0.06285185366868973,
- 0.01553922425955534, 0.009290928952395916, -0.1299668401479721, 0.030604911968111992,
- -0.07230641692876816, -0.0806463360786438, 0.0560636930167675, 0.004485177341848612,
- 0.057957958430051804, 0.05874566361308098, 0.0013168019941076636, 0.040823794901371,
- 0.016026247292757034, -0.037592485547065735, 0.024333680048584938, 0.020634789019823074,
- -0.007258299272507429, 0.020412739366292953, 0.14905311167240143, -0.008575155399739742,
- -0.010785616934299469, -0.09651460498571396, 0.049548227339982986, 0.13110484182834625,
- -0.018613101914525032, 0.013135823421180248, 0.009948711842298508, 0.01662338711321354,
- 0.005698762834072113, -0.05014998838305473, -0.07327429205179214, -0.04075542092323303,
- -0.07276452332735062, 0.11472310870885849, 0.047324955463409424, -0.04482579603791237,
- -0.1405135989189148, -0.020398182794451714, -0.04476046562194824, 0.05974731966853142,
- 0.12054716795682907, -0.07902517914772034, 0.06948918849229813, -0.00798498559743166,
- 0.023617254570126534, 0.03236374631524086, -0.06698449701070786, -0.026667708531022072,
- -0.0700807049870491, 0.04631311818957329, 0.0704825296998024, 0.03091648407280445,
- -0.05051447078585625, 0.097565196454525, -0.07944469153881073, 0.07836853712797165,
- -0.014843322336673737, -0.04996083304286003, 0.01928838901221752, -0.014581545256078243,
- 0.04521679878234863, 0.016402048990130424, -0.046394865959882736, 0.0076544941402971745,
- -0.04541267827153206, -0.03672967851161957, -0.06992366909980774, -0.1130102276802063,
- -0.028337253257632256, -0.07241179794073105, 0.03164760768413544, -0.0944090485572815,
- -0.02258598618209362, -0.0751093402504921, -0.015050307847559452, -0.02186756394803524,
- 0.02631385810673237, 0.0065748724155128, -0.1201760396361351, -0.014184895902872086,
- -0.006697630975395441, 0.05111038684844971, -0.053413305431604385, -0.0681489109992981,
- 0.01639031432569027, 0.07898340374231339, 0.017859576269984245, -0.034123197197914124,
- -0.02227531373500824, -0.0681903064250946, 0.05116010829806328, -0.11788731813430786,
- -0.34875616431236267, 0.06806943565607071, 0.047874242067337036, 0.03668050840497017,
- -0.0006863794405944645, -0.06731270998716354, 0.04576452076435089, 0.011278253979980946,
- -0.044249746948480606, 0.06396607309579849, -0.06085989996790886, 0.04208627715706825,
- -0.0569065697491169, -0.07004272937774658, -0.03196171298623085, -0.06791799515485764,
- -0.036790039390325546, 0.04418444633483887, -0.033246960490942, -0.07321067899465561,
- -0.09972379356622696, 0.02477058209478855, -0.016846228390932083, -0.024633968248963356,
- 0.015233988873660564, 0.018358951434493065, -0.016504524275660515,
- -0.058452293276786804, 0.03992985934019089, 0.06135176494717598, 0.020465686917304993,
- -0.10756582021713257, -0.006950465962290764, 0.07907155901193619, 0.0217032078653574,
- 0.12812253832817078, 0.009098738431930542, 0.02545454539358616, -0.10970940440893173,
- 0.08983000367879868, 0.05064737796783447, 0.18676352500915527, -0.012632620520889759,
- 0.014385320246219635, 0.004010549280792475, 0.11909746378660202, 0.065370112657547,
- 0.005969273392111063, -0.025782786309719086, -0.01857697404921055, 0.020536817610263824,
- -0.018056996166706085, 0.07952321320772171, -0.07299809902906418, -0.01160630863159895,
- -0.014126218855381012, -0.02491874061524868, -0.03730474039912224, -0.057313222438097,
- 0.20817095041275024, 0.011652853339910507, 0.02787591703236103, 0.017206178978085518,
- -0.0402931347489357, -0.006684261839836836, -0.049045320600271225, -0.05969054996967316,
- -0.018046287819743156, -0.014503764919936657, 0.006017685402184725,
- -0.027926646173000336, -0.11744513362646103, -0.010178410448133945,
- -0.01848621852695942, -0.006665360648185015, 0.10762149840593338, -0.02962377667427063,
- -0.009496130980551243, -0.024569042026996613, 0.1365130990743637, 0.04963001608848572,
- -0.004104089457541704, 0.06410521268844604, 0.05799431726336479, 0.023247839882969856,
- 0.04204718396067619, -0.014806424267590046, -0.10237977653741837, -0.022248677909374237,
- 0.15663190186023712, -0.02582714706659317, 0.109279565513134, 0.043119292706251144,
- -0.027548858895897865, -0.07365911453962326, 0.018739931285381317,
- -0.0013642722042277455, 0.02193533442914486, -0.4629133641719818, -0.019879251718521118,
- 0.11533132940530777, 0.01400099229067564, 0.02680829167366028, 0.07872503250837326,
- 0.019154289737343788, -0.041065867990255356, -0.0044451141729950905,
- -0.09619636088609695, 0.10280483961105347, 0.02018679492175579, 0.0555318184196949,
- -0.07415583729743958, 0.03340958431363106, 0.0680486336350441, -0.021770013496279716,
- 0.046084314584732056, 0.06378399580717087, -0.2555355727672577, -0.020474769175052643,
- -0.02946789748966694, 0.1341014951467514, -0.006798248738050461, 0.04401441290974617,
- 0.08256886899471283, -0.04244823753833771, 0.014684940688312054, 0.04908594489097595,
- 0.016279075294733047, 0.07048871368169785, -0.02217586152255535, -0.01872253231704235,
- 0.10726743936538696, 0.13849575817584991, 0.06745768338441849, 0.0032534145284444094,
- 11.9350004196167, 0.024092739447951317, 0.06832244247198105, -0.07391796261072159,
- 0.014665037393569946, -0.06741368770599365, 0.03992004692554474, -0.09915634244680405,
- 0.061575669795274734, 0.15387482941150665, -0.011229285039007664, -0.059395190328359604,
- -0.02221665345132351, -0.10080552846193314, 0.027117811143398285, -0.06167491152882576,
- -0.052249614149332047, -0.026339441537857056, 0.05373202636837959, -0.0694301649928093,
- -0.03962290659546852, 0.06345372647047043, 0.08600801229476929, 0.03215937316417694,
- -0.03730976581573486, -0.002947981236502528, 0.010813380591571331, -0.01428326964378357,
- 0.002978848060593009, 0.031024083495140076, -0.013608482666313648,
- -0.007900134660303593, 0.09980108588933945, -0.01037085335701704, 0.04415193200111389,
- 0.07262464612722397, 0.042868878692388535, 0.046957239508628845, 0.027334490790963173,
- 0.06396984308958054, 0.0027802009135484695, 0.02969474531710148, 0.03157728910446167,
- 0.04433976113796234, 0.06092025339603424, 0.0629723072052002, 0.040227893739938736,
- 0.1295688897371292, 0.03607899323105812, 0.09031018614768982, 0.08224254101514816,
- -0.003139129839837551, 0.12381112575531006, 0.015883587300777435, -0.014269515872001648,
- 0.04850466921925545, -0.02296333946287632, -0.0711570456624031, 0.07764088362455368,
- 0.011425438337028027, -0.06271671503782272, 0.14593392610549927, 0.02822871319949627,
- 0.08426463603973389, 0.025027036666870117, 0.03603010252118111, 0.07688591629266739,
- 0.04184933379292488, -0.12699811160564423, -0.0807899534702301, 0.022534700110554695,
- -0.08120163530111313, -0.08962728828191757, 0.1030019149184227, 0.08743613213300705,
- -0.041169214993715286, 0.061590518802404404, -0.014305594377219677,
- 0.029771462082862854, -0.035438988357782364, 0.0036934774834662676,
- 0.0023088213056325912, -0.016909867525100708, -0.004874369595199823, 0.0335334874689579,
- 0.02889333665370941, 0.04190262034535408, 0.11652237921953201, -0.0011043149279430509,
- -0.10443446040153503, -0.08060068637132645, 0.06604591757059097, -0.0132141700014472,
- -0.07075677067041397, 0.06490156054496765, -0.062283921986818314, 0.04864726588129997,
- -0.1629127413034439, 0.0541921965777874, 0.11834023147821426, -0.1135176345705986,
- -0.02367941103875637, -0.033578548580408096, 0.07367154955863953, 0.023952841758728027,
- 0.019913841038942337, -0.08415625244379044, -0.022262943908572197, 0.04367002844810486,
- 0.03249717876315117, -0.03688175603747368, 0.07258418947458267, 0.08943077176809311,
- -0.05775101110339165, 0.03397195413708687, 0.0457226037979126, -0.029885277152061462,
- 0.009258710779249668, 0.05516419932246208, 0.04897160828113556, -0.08019867539405823,
- -0.04341273009777069, -0.04899442195892334, -0.04039591923356056, -0.00348038412630558,
- -0.04210023209452629, 0.014108317904174328, 0.039906978607177734, -0.042129065841436386,
- 0.004081332590430975, 0.036952219903469086, 0.05695503577589989, 0.12557947635650635,
- -0.03842310234904289, 0.06959430128335953, -0.05782799795269966, -0.050417523831129074,
- 0.03754366189241409, 0.04871457815170288, 0.07226228713989258, -0.06247691810131073,
- -0.047022510319948196, -0.07041435688734055, -0.11751902103424072, 0.03234190121293068,
- 0.08303287625312805, 0.037873029708862305, 0.05828353390097618, 0.045450832694768906,
- -0.06467077136039734, -0.0506686270236969, 0.09731287509202957, 0.02928995154798031,
- -0.022885693237185478, 0.02335362695157528, -0.04205711558461189, -0.03737145662307739,
- 0.10269639641046524, -0.025331290438771248, -0.02583260089159012, 0.014387138187885284,
- -0.057135943323373795, 0.0769885703921318, 0.11830844730138779, 0.061657655984163284,
- 0.04509874805808067, 0.04469847306609154, 0.0008816427434794605, 0.030504660680890083,
- -0.0018552156398072839, 0.04312416538596153, -0.04457436129450798, -0.06046208366751671,
- -0.08675926178693771, 0.045520711690187454, 0.10376977920532227, 0.037058066576719284,
- -0.0704340860247612, -0.003150287317112088, -0.061189550906419754
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 118,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 146,
- "similarity": 0.998295247554779
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 21,
- "similarity": 0.9978592991828918
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 216,
- "similarity": 0.9978307485580444
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Tristan Greene"],
- "epoch_date_downloaded": 1662508800,
- "epoch_date_modified": 1662508800,
- "epoch_date_submitted": 1662508800,
- "flag": null,
- "report_number": 2010,
- "source_domain": "thenextweb.com",
- "submitters": ["Ingrid Dickinson (CSET)"],
- "title": "GPT-3 is the world’s most powerful bigotry generator. What should we do about it?",
- "url": "https://thenextweb.com/news/gpt-3-is-the-worlds-most-powerful-bigotry-generator-what-should-we-do-about-it"
- },
- {
- "__typename": "Report",
- "authors": ["Abubakar Abid", " Maheen Farooqi", " James Zou"],
- "epoch_date_downloaded": 1662508800,
- "epoch_date_modified": 1662508800,
- "epoch_date_submitted": 1662508800,
- "flag": null,
- "report_number": 2009,
- "source_domain": "arxiv.org",
- "submitters": ["Khoa Lam"],
- "title": "Persistent Anti-Muslim Bias in Large Language Models",
- "url": "https://arxiv.org/abs/2101.05783"
- },
- {
- "__typename": "Report",
- "authors": ["Sigal Samuel"],
- "epoch_date_downloaded": 1632614400,
- "epoch_date_modified": 1632355200,
- "epoch_date_submitted": 1632355200,
- "flag": null,
- "report_number": 1443,
- "source_domain": "vox.com",
- "submitters": ["Isabelle"],
- "title": "AI’s Islamophobia problem",
- "url": "https://www.vox.com/future-perfect/22672414/ai-artificial-intelligence-gpt-3-bias-muslim"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "xsolla",
- "name": "Xsolla"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "unknown",
- "name": "Unknown"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "xsolla-employees",
- "name": "Xsolla employees"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1802, 1801, 1800, 1444],
- "vector": [
- -0.07635007798671722, 0.08884385228157043, 0.016591563820838928, -0.122303307056427,
- 0.06512223184108734, -0.046404894441366196, 0.037584591656923294, 0.0623960979282856,
- 0.08294150978326797, -0.14895905554294586, -0.02217632718384266, 0.015803446993231773,
- 0.024887356907129288, -0.06920722872018814, 0.003932176623493433, -0.11697931587696075,
- -0.10766983777284622, 0.004604887217283249, -0.022260112687945366, -0.1196899563074112,
- -0.06535598635673523, 0.04340023547410965, 0.026477832347154617, 0.11521720886230469,
- -0.025650369003415108, 0.042793162167072296, 0.128811314702034, 0.15019503235816956,
- -0.09208182245492935, 0.08485773205757141, -0.0343802236020565, -0.05594548583030701,
- 0.15726278722286224, -0.012975839897990227, 0.029273467138409615, 0.0733763724565506,
- 0.030704470351338387, -0.030618367716670036, -0.02488395944237709,
- -0.014705145731568336, 0.06403849273920059, 0.23948857188224792, -0.03303758427500725,
- -0.022556830197572708, 0.052500948309898376, -0.02359880320727825, 0.04199933633208275,
- 0.04406635835766792, 0.03103209286928177, 0.015435498207807541, 0.005630153231322765,
- 0.00004894827725365758, -0.021025007590651512, 0.04376570135354996,
- -0.09020689874887466, 0.057734861969947815, 0.03098144568502903, -0.0387553833425045,
- 0.06878005713224411, -0.044427916407585144, -0.03223681449890137, -0.2270374894142151,
- -0.045155107975006104, -0.057448893785476685, 0.08095080405473709, -0.08947593718767166,
- -0.029494496062397957, 0.07074972987174988, 0.046239763498306274, 0.07488799095153809,
- 0.03992806002497673, -0.04318847879767418, -0.0289139561355114, -0.0013134775217622519,
- 0.021654631942510605, -0.026610128581523895, -0.004428621381521225, 0.1873968094587326,
- -0.07565297931432724, 0.029456591233611107, 0.11659695953130722, -0.0882599949836731,
- 0.4307126998901367, 0.004080906510353088, -0.003953725099563599, 0.026550302281975746,
- 0.11043305695056915, 0.019248271360993385, 0.012814434245228767, 0.034513767808675766,
- -0.007423702627420425, 0.038490161299705505, -0.06273433566093445,
- -0.005323875229805708, 0.06326545029878616, 0.012619055807590485, -0.00787438079714775,
- 0.054256848990917206, -0.01482328213751316, -0.05545106530189514, 0.025377608835697174,
- -0.05059691146016121, 0.13258937001228333, 0.07720239460468292, -0.035291172564029694,
- -0.013033994473516941, 0.0725659504532814, -0.09225127100944519, 0.0479842871427536,
- -0.07344847917556763, 0.023866189643740654, -0.011459010653197765, 0.09890781342983246,
- -0.0002225592324975878, 0.02653142251074314, -0.05930090323090553,
- -0.0029071893077343702, 0.0187250766903162, 0.05256899446249008, 0.09564898163080215,
- 0.003390940371900797, 0.09260682761669159, 0.058889515697956085, -0.08243876695632935,
- -0.04045673832297325, -0.011248091235756874, -0.08738891780376434,
- -0.009396634995937347, -0.002999587683007121, 0.04660931974649429, -0.05006244778633118,
- -0.22989019751548767, 0.016736434772610664, 0.04300950840115547, -0.016176361590623856,
- -0.02741638571023941, 0.014478283934295177, -0.06718966364860535, 0.045108333230018616,
- -0.03087262436747551, -0.017763186246156693, 0.04894666001200676, 0.03831930458545685,
- 0.051132865250110626, 0.10106341540813446, 0.034955382347106934, -0.034962862730026245,
- -0.04998107999563217, -0.0037996587343513966, -0.01919708028435707, 0.11894382536411285,
- -0.12626592814922333, -0.022482162341475487, -0.010706578381359577,
- -0.00009008386405184865, 0.708992063999176, 0.14798025786876678, 0.18937751650810242,
- -0.007943453267216682, 0.0017736629815772176, 0.15127263963222504,
- -0.011778660118579865, 0.0824156180024147, -0.04453293979167938, -0.10140302777290344,
- 0.01012338139116764, -0.0665583610534668, -0.01894032023847103, 0.04469561204314232,
- 0.011821304447948933, 0.11195358633995056, 0.01928122341632843, 0.08312823623418808,
- 0.01103521790355444, -0.09061738848686218, -0.033988289535045624, 0.09977708011865616,
- 0.013204105198383331, -0.1196320503950119, -0.018265223130583763, 0.008327977731823921,
- 0.0934285968542099, -0.09789977222681046, -0.0023003716487437487, -0.055713117122650146,
- 0.031942252069711685, -0.039212681353092194, 0.04012994095683098, -0.0276230126619339,
- 0.08062761276960373, 0.03529433161020279, 0.07970961928367615, 0.021952567622065544,
- -0.08808954805135727, -0.056212589144706726, 0.1254930943250656, -0.0073771169409155846,
- -0.049511026591062546, 0.07969468832015991, -0.07477279752492905, 0.027403544634580612,
- 0.01652630791068077, 0.18669342994689941, -0.1415417194366455, 0.03692750260233879,
- -0.01508767157793045, -0.041189029812812805, 0.0841427817940712, -0.022796018049120903,
- -0.06445349007844925, -0.08523373305797577, 0.043731339275836945, 0.035556282848119736,
- 0.0620393343269825, 0.04523991048336029, -0.012438496574759483, 0.0669015496969223,
- 0.00534997321665287, 0.0173342302441597, -0.06654559820890427, 0.05805616453289986,
- 0.03423149883747101, -0.0049928780645132065, -0.051331862807273865,
- 0.025700749829411507, 0.03563041239976883, 0.04594367370009422, 0.01450342871248722,
- 0.07018283009529114, 0.009300264529883862, -0.026454821228981018, 0.062326960265636444,
- 0.01710360497236252, 0.008729813620448112, 0.12022905051708221, -0.10668101906776428,
- -0.019646966829895973, -0.06743308901786804, -0.039450086653232574,
- 0.025960039347410202, -0.0055264635011553764, 0.06623542308807373, 0.08582189679145813,
- 0.08346027880907059, 0.030639922246336937, 0.023301636800169945, 0.05111851170659065,
- 0.05541084706783295, 0.01636054739356041, 0.09243638813495636, -0.04434196650981903,
- -0.0233989916741848, -0.029973585158586502, 0.01372993178665638, 0.053995393216609955,
- -0.02165091037750244, -0.0817817971110344, -0.020237065851688385, -0.03724164515733719,
- -0.06347860395908356, -0.10938402265310287, -0.009214110672473907, 0.006604182533919811,
- 0.028100864961743355, -0.06197654828429222, -0.08209294080734253, -0.0719783753156662,
- 0.0411037802696228, 0.07913423329591751, 0.008007034659385681, 0.0054527828469872475,
- -0.11903632432222366, 0.02977631241083145, -0.019541453570127487, 0.0667201578617096,
- -0.019653944298624992, -0.012268485501408577, -0.00899658352136612,
- -0.02798680029809475, 0.00565442256629467, 0.026058761402964592, -0.03646327182650566,
- -0.06742540746927261, -0.07801792025566101, 0.000665402680169791,
- -0.0015437533147633076, 0.032241322100162506, -0.030216122046113014,
- 0.021908942610025406, 0.03707820549607277, 0.06795148551464081, -0.03956490755081177,
- -0.018811168149113655, 0.04579128697514534, -0.06467891484498978, 0.00864400528371334,
- 0.10137492418289185, -0.021163247525691986, -0.003381210844963789,
- -0.020168935880064964, -0.06354375928640366, -0.03197947517037392,
- -0.008665853179991245, -0.0481669157743454, 0.05698670074343681, -0.023295488208532333,
- -0.02702002227306366, -0.0359981544315815, -0.007848052307963371, 0.07521059364080429,
- -0.036206312477588654, -0.07128672301769257, -0.0624690055847168, 0.15067338943481445,
- 0.014272001571953297, 0.013028036803007126, 0.036906369030475616, -0.06888891756534576,
- 0.050469327718019485, 0.0029585217125713825, 0.02865506149828434, 0.04645923897624016,
- 0.10301113873720169, -0.03780119866132736, -0.004089681897312403, 0.07951422035694122,
- -0.007447193376719952, 0.02056722342967987, 0.07250218093395233, 0.42774784564971924,
- -0.17085669934749603, 0.07875419408082962, 0.11127501726150513, -0.010010729543864727,
- 0.03362229838967323, -0.058661721646785736, 0.06825631111860275, 0.05051830783486366,
- 0.11016346514225006, 0.15733665227890015, -0.056368086487054825, 0.024067455902695656,
- -0.09273537993431091, 0.0875416249036789, -0.0010196896037086844, 0.01655115932226181,
- -0.01377942319959402, -0.07476984709501266, -0.04881633073091507, 0.057762522250413895,
- -0.0401017889380455, -0.006240976043045521, -0.02726723998785019, -0.07771655917167664,
- 0.017686473205685616, 0.09296455979347229, 0.06336154043674469, -0.04394973814487457,
- 0.062241677194833755, -0.07310838997364044, 0.012159709818661213, 0.01961350254714489,
- 0.03829701989889145, -0.12307368963956833, -0.008982056751847267, -0.048256080597639084,
- -0.12928858399391174, 0.06851831823587418, 0.022953934967517853, 0.09772703051567078,
- 0.04312577471137047, -0.024680474773049355, 0.031040553003549576, -0.02679595723748207,
- -0.0400829091668129, 0.033285073935985565, 0.049522772431373596, 0.04606996476650238,
- 0.10585719347000122, 0.17003852128982544, -0.03236067295074463, -0.03842379152774811,
- -0.06403469294309616, 0.04597647488117218, 0.10155423730611801, -0.011559693142771721,
- 0.0074257501401007175, 0.02928757295012474, -0.00815905723720789, -0.00590329896658659,
- -0.061119284480810165, -0.059727974236011505, -0.020357811823487282,
- -0.06409965455532074, 0.08323924988508224, 0.027063090354204178, -0.06659774482250214,
- -0.10818824917078018, -0.03950498253107071, -0.03508271649479866, 0.023063521832227707,
- 0.13464832305908203, -0.050400037318468094, 0.017087431624531746,
- -0.00044841825729236007, -0.0293386559933424, 0.0400359220802784, -0.10743838548660278,
- -0.007628165651112795, -0.09862594306468964, 0.024500252678990364, 0.08835597336292267,
- 0.0771401971578598, -0.07867473363876343, 0.09608139097690582, -0.13863004744052887,
- 0.06864318996667862, 0.004470419138669968, -0.05673548951745033, 0.010126217268407345,
- -0.03726176545023918, 0.024272674694657326, 0.04198760539293289, -0.06237143278121948,
- 0.005291598848998547, -0.04606419801712036, -0.049008049070835114, -0.10040699690580368,
- -0.03173285722732544, -0.04228825122117996, -0.11128515750169754, 0.03089245967566967,
- -0.09185527265071869, 0.0338357575237751, -0.002859789412468672, -0.03324078395962715,
- -0.021869242191314697, 0.06201949715614319, -0.012574023567140102, -0.13585340976715088,
- 0.010982196778059006, -0.020800378173589706, 0.027903113514184952, -0.04064784198999405,
- -0.05272110551595688, -0.041234780102968216, 0.0920729860663414, 0.008662914857268333,
- -0.016454605385661125, -0.023980718106031418, -0.04578666388988495, 0.07953421771526337,
- -0.11565633863210678, -0.3930249512195587, 0.05226637050509453, 0.02851971983909607,
- 0.03564869239926338, -0.009180322289466858, -0.08477814495563507, 0.03938213735818863,
- -0.035328831523656845, -0.03798966109752655, 0.07555949687957764, -0.05513909086585045,
- 0.014963613823056221, -0.03691774979233742, -0.07584927976131439, -0.04045482724905014,
- -0.0808958187699318, -0.07249695062637329, 0.07412321865558624, -0.0007642172859050333,
- -0.062496624886989594, -0.10005271434783936, 0.04956864193081856, -0.03590989485383034,
- -0.012409440241754055, -0.016413744539022446, 0.022958626970648766,
- -0.07789148390293121, -0.026661192998290062, 0.017370129004120827, 0.0340287908911705,
- 0.016941020265221596, -0.08779791742563248, 0.004470834042876959, 0.06451183557510376,
- 0.01034565456211567, 0.1484786570072174, -0.004562627524137497, 0.03979109972715378,
- -0.08933240175247192, 0.07822931557893753, 0.049472954124212265, 0.1851341873407364,
- -0.03374149650335312, 0.030283194035291672, 0.0332987904548645, 0.11492980271577835,
- 0.039658863097429276, 0.025130679830908775, -0.04438850283622742,
- -0.0000032854732125997543, 0.028593912720680237, -0.009914982132613659,
- 0.07245548069477081, -0.09380742907524109, -0.016075244173407555, -0.015314732678234577,
- -0.031604211777448654, -0.01738353818655014, -0.049113985151052475, 0.1936977058649063,
- 0.023660726845264435, 0.010985173285007477, 0.017288152128458023, -0.07606049627065659,
- 0.003694807644933462, -0.08979681134223938, -0.070359967648983, -0.04913336783647537,
- 0.023988574743270874, 0.018895557150244713, -0.08316125720739365, -0.09240018576383591,
- -0.03809259831905365, 0.007416169624775648, -0.015529599040746689, 0.12746939063072205,
- -0.05487831309437752, 0.015348231419920921, -0.028414925560355186, 0.1673680692911148,
- 0.05420999601483345, 0.04639643803238869, 0.02446236088871956, 0.054582737386226654,
- 0.010077065788209438, -0.010699199512600899, -0.02644907683134079, -0.1325056105852127,
- 0.018361316993832588, 0.14078488945960999, -0.02286730520427227, 0.185012549161911,
- 0.027219528332352638, -0.04749998450279236, -0.05902625992894173, -0.004466420970857143,
- 0.014275794848799706, 0.03918677940964699, -0.435157835483551, -0.03297063708305359,
- 0.10873185098171234, -0.02618873491883278, 0.020860208198428154, 0.10275513678789139,
- 0.023243412375450134, -0.04739431291818619, -0.04581839591264725, -0.08985820412635803,
- 0.1555580496788025, -0.0004129093140363693, 0.04396568611264229, -0.14207834005355835,
- 0.015760110691189766, 0.10147085785865784, -0.03357589617371559, -0.011834627017378807,
- 0.01961050182580948, -0.21872636675834656, 0.009241465479135513, -0.026298798620700836,
- 0.14856643974781036, 0.030040984973311424, 0.045803315937519073, 0.09310869127511978,
- -0.038357459008693695, 0.029150329530239105, 0.044227130711078644, 0.013207362033426762,
- 0.05496654286980629, -0.007178535684943199, -0.03426032140851021, 0.10445559024810791,
- 0.09721030294895172, 0.08465580642223358, -0.050167426466941833, 12.028536796569824,
- 0.09436871111392975, 0.09338753670454025, -0.09269125759601593, 0.03165818378329277,
- -0.055880650877952576, 0.026384081691503525, -0.12111902236938477, 0.021164756268262863,
- 0.09167790412902832, -0.0038333781994879246, -0.04038293659687042,
- -0.053099676966667175, -0.09647618234157562, 0.034152425825595856,
- -0.012889698147773743, -0.0676078200340271, -0.03513719141483307, 0.0175626240670681,
- -0.06161505728960037, -0.07665567845106125, 0.028593871742486954, 0.08109871298074722,
- -0.002312880475074053, -0.045100804418325424, 0.02327761799097061, 0.0133071793243289,
- 0.0037612258456647396, 0.010970803909003735, 0.04249357804656029,
- -0.0009295624913647771, 0.0483839176595211, 0.046520885080099106, -0.000345488078892231,
- 0.06413213163614273, 0.04355776309967041, 0.057372141629457474, 0.027602707967162132,
- 0.052060455083847046, 0.017661891877651215, -0.023339979350566864, 0.010639025829732418,
- 0.03517112880945206, 0.08118245005607605, 0.040898460894823074, 0.024092890322208405,
- 0.000797963934019208, 0.1157744973897934, 0.0014819707721471786, 0.0530296228826046,
- 0.11527339369058609, -0.00509796803817153, 0.1063789576292038, 0.04048999398946762,
- -0.004313798155635595, 0.06526155024766922, -0.04386068880558014, -0.10638056695461273,
- 0.09933394193649292, 0.07400606572628021, -0.047990016639232635, 0.08298999071121216,
- 0.026398606598377228, 0.11892499029636383, 0.0070746950805187225, 0.0435224249958992,
- 0.09244443476200104, 0.08088963478803635, -0.15547917783260345, -0.07996594905853271,
- 0.04999624192714691, -0.09168227016925812, -0.10590947419404984, 0.07909942418336868,
- 0.06474021822214127, -0.03211996704339981, 0.0809163823723793, -0.017056116834282875,
- 0.03726799413561821, -0.021183811128139496, -0.010727178305387497, 0.01729544997215271,
- -0.038283735513687134, 0.037256211042404175, 0.022432157769799232, 0.02077311836183071,
- 0.07210943102836609, 0.109436996281147, 0.03400266543030739, -0.0668925940990448,
- -0.06662838160991669, 0.08062820136547089, -0.008668024092912674, -0.05929083749651909,
- -0.010054098442196846, -0.09576133638620377, 0.046941276639699936, -0.15374970436096191,
- 0.057984158396720886, 0.09285692870616913, -0.08635175228118896, -0.035114821046590805,
- -0.0026777358725667, 0.08710377663373947, 0.03325296565890312, 0.030010094866156578,
- -0.05750788748264313, 0.0034622284583747387, 0.014521750621497631, 0.04272158816456795,
- -0.06695014983415604, 0.10359067469835281, 0.07621084153652191, -0.08242501318454742,
- 0.05706067010760307, 0.07444513589143753, -0.016729313880205154, -0.03340107202529907,
- 0.047271426767110825, 0.04528162628412247, -0.09671571105718613, -0.04690758138895035,
- -0.04240526631474495, -0.08784912526607513, -0.026777908205986023,
- -0.011265689507126808, -0.01761789247393608, 0.005008994601666927, -0.04267623648047447,
- -0.043874502182006836, 0.07259618490934372, 0.0439266599714756, 0.11852766573429108,
- -0.03702801838517189, 0.034531645476818085, -0.05979342758655548, -0.043955810368061066,
- 0.08524775505065918, 0.06904812902212143, 0.05074775591492653, -0.022929774597287178,
- -0.02886979468166828, -0.054077427834272385, -0.11575358361005783, 0.05751164257526398,
- 0.0827651247382164, 0.017663422971963882, 0.04172311723232269, 0.01257665827870369,
- -0.057531438767910004, -0.04997289180755615, 0.06528797745704651, 0.04838843271136284,
- 0.03804995119571686, 0.013310130685567856, -0.07053440064191818, -0.050973862409591675,
- 0.11057549715042114, -0.028624538332223892, -0.001044814707711339, 0.029620446264743805,
- -0.044862519949674606, 0.0757770910859108, 0.10327596962451935, 0.03729884326457977,
- 0.018153728917241096, 0.03756255283951759, -0.0009757630759850144, 0.015874546021223068,
- 0.0023321735206991434, 0.00024421862326562405, -0.047540534287691116,
- -0.06701615452766418, -0.06922638416290283, 0.057575639337301254, 0.08823728561401367,
- 0.05245332047343254, -0.12982149422168732, -0.014783361926674843, -0.020149294286966324
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 119,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 58,
- "similarity": 0.9980859160423279
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 198,
- "similarity": 0.9980806112289429
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 111,
- "similarity": 0.9979555606842041
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Chris Wallace"],
- "epoch_date_downloaded": 1658880000,
- "epoch_date_modified": 1658880000,
- "epoch_date_submitted": 1633132800,
- "flag": null,
- "report_number": 1802,
- "source_domain": "mcvuk.com",
- "submitters": ["Kate Perkins"],
- "title": "Xsolla fires 150 employees based on big data analysis of their activity – “Many of you might be shocked, but I truly believe that Xsolla is not for you.”",
- "url": "https://www.mcvuk.com/business-news/xsolla-fires-150-employees-based-on-big-data-analysis-of-their-activity-many-of-you-might-be-shocked-but-i-truly-believe-that-xsolla-is-not-for-you/"
- },
- {
- "__typename": "Report",
- "authors": ["Sam Desatoff"],
- "epoch_date_downloaded": 1658880000,
- "epoch_date_modified": 1658880000,
- "epoch_date_submitted": 1633132800,
- "flag": null,
- "report_number": 1801,
- "source_domain": "gamedaily.biz",
- "submitters": ["Kate Perkins"],
- "title": "Xsolla fires 150 employees following AI-based productivity audit",
- "url": "https://gamedaily.biz/article/2127/xsolla-fires-150-employees-following-ai-based-productivity-audit"
- },
- {
- "__typename": "Report",
- "authors": ["Andy Brown"],
- "epoch_date_downloaded": 1658880000,
- "epoch_date_modified": 1658880000,
- "epoch_date_submitted": 1633132800,
- "flag": null,
- "report_number": 1800,
- "source_domain": "nme.com",
- "submitters": ["Kate Perkins"],
- "title": "Game payment company Xsolla fires 150 employees via controversial email",
- "url": "https://www.nme.com/news/gaming-news/game-payment-company-xsolla-fires-150-employees-via-controversial-email-3014850"
- },
- {
- "__typename": "Report",
- "authors": ["Evgeny Obedkov"],
- "epoch_date_downloaded": 1633132800,
- "epoch_date_modified": 1633132800,
- "epoch_date_submitted": 1633132800,
- "flag": null,
- "report_number": 1444,
- "source_domain": "gameworldobserver.com",
- "submitters": ["Kate Perkins"],
- "title": "Xsolla fires 150 employees using big data and AI analysis, CEO’s letter causes controversy",
- "url": "https://gameworldobserver.com/2021/08/04/xsolla-fires-150-employees-using-big-data-and-ai-analysis-ceos-letter-causes-controversy"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "unknown",
- "name": "Unknown"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "openai",
- "name": "OpenAI"
- },
- {
- "__typename": "Entity",
- "entity_id": "murat-ayfer",
- "name": "Murat Ayfer"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "reddit-users",
- "name": "Reddit users"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1445],
- "vector": [
- -0.06919556111097336, 0.04497416317462921, 0.008037367835640907, -0.09922122955322266,
- 0.15783454477787018, -0.002333160024136305, -0.008913100697100163, 0.0935014858841896,
- 0.059392448514699936, -0.1524503380060196, 0.04729472100734711, 0.017486492171883583,
- 0.015130657702684402, -0.027960125356912613, 0.03511146456003189, -0.034542519599199295,
- -0.0803351029753685, -0.002917724661529064, -0.05243491381406784, -0.15152117609977722,
- -0.04229413717985153, -0.0039194910787045956, 0.02416064590215683, 0.06300166249275208,
- -0.04829636588692665, 0.02637701854109764, 0.12204955518245697, 0.12186799198389053,
- -0.07430390268564224, 0.013055218383669853, -0.029753128066658974, -0.06218094378709793,
- 0.15344814956188202, 0.0213076900690794, 0.0394737608730793, 0.04431847110390663,
- 0.03381890431046486, -0.0035961330868303776, -0.055042605847120285,
- 0.015031583607196808, -0.0047034309245646, 0.11656318604946136, 0.01580514758825302,
- 0.004833683837205172, 0.06492199748754501, -0.03156653046607971, -0.045722562819719315,
- 0.03303985670208931, 0.014431063085794449, -0.015297946520149708, -0.04639412462711334,
- -0.04595859348773956, -0.060642603784799576, 0.041661445051431656, -0.07621937245130539,
- 0.05158689245581627, 0.05705491825938225, 0.004888954106718302, 0.04001690819859505,
- -0.03035694733262062, -0.018317267298698425, -0.14633208513259888, -0.06991153210401535,
- -0.023835333064198494, 0.09901254624128342, -0.08066343516111374, -0.008136767894029617,
- 0.055863868445158005, -0.00887861754745245, 0.020298348739743233, 0.03437322750687599,
- -0.02508992701768875, -0.014214525930583477, -0.01739013008773327,
- -0.029612760990858078, -0.015204998664557934, 0.025507204234600067, 0.26023662090301514,
- -0.09708379954099655, 0.044714052230119705, 0.09380675107240677, -0.11956579238176346,
- 0.29960721731185913, 0.061004843562841415, -0.012324037030339241, 0.05099107325077057,
- 0.07112278789281845, -0.0014665923081338406, 0.05237700790166855, 0.08090882003307343,
- -0.0023841143120080233, 0.03941041976213455, -0.04361336678266525, 0.02028576470911503,
- 0.011812832206487656, 0.027175622060894966, -0.01556736882776022, -0.038455571979284286,
- -0.01925942674279213, -0.044852837920188904, 0.021437106654047966,
- -0.056037552654743195, 0.09373639523983002, 0.06670481711626053, -0.03510648384690285,
- 0.0014336749445647001, 0.038934092968702316, -0.06711764633655548, 0.07799749821424484,
- -0.07334110885858536, 0.034169912338256836, -0.015902580693364143, 0.027742533013224602,
- -0.02286752685904503, 0.04717867821455002, -0.001447612070478499, 0.05137015879154205,
- 0.06330212205648422, 0.07114063948392868, 0.08039840310811996, -0.030787987634539604,
- 0.07317272573709488, 0.06901585310697556, -0.047454945743083954, -0.06527820974588394,
- 0.001274127047508955, 0.0012600631453096867, -0.0037051269318908453,
- -0.016154717653989792, 0.07009115815162659, -0.0737161636352539, -0.238693505525589,
- -0.009653737768530846, 0.059204503893852234, -0.02435552142560482,
- -0.012261956930160522, 0.030306728556752205, -0.045484255999326706,
- -0.003798913909122348, -0.02349632792174816, -0.05881273373961449, 0.06467874348163605,
- 0.05749857798218727, 0.07102306187152863, 0.10463199764490128, -0.013506835326552391,
- -0.03411875665187836, -0.06200399249792099, 0.028212184086441994, -0.05133351311087608,
- 0.0924619808793068, -0.08970174938440323, -0.01744408719241619, -0.045467596501111984,
- -0.027005577459931374, 0.6050799489021301, 0.098259337246418, 0.0798124223947525,
- 0.008518829941749573, -0.04199838265776634, 0.14615730941295624, -0.023123670369386673,
- 0.034840989857912064, -0.025880662724375725, -0.02041049115359783, 0.020394619554281235,
- -0.0776863619685173, -0.025461168959736824, 0.0009266825509257615, 0.06531257182359695,
- 0.08932410925626755, 0.004380718804895878, 0.11214730888605118, 0.026047416031360626,
- -0.06144578382372856, 0.012065306305885315, 0.04822762683033943, -0.001964383525773883,
- -0.13989435136318207, -0.04626382142305374, 0.07760246098041534, 0.09161791950464249,
- -0.023819632828235626, 0.01722889207303524, -0.04269098490476608, 0.002026289701461792,
- -0.02330571413040161, 0.031092828139662743, 0.012663668021559715, 0.007483677007257938,
- 0.05347130820155144, 0.036046192049980164, -0.034254204481840134, -0.07687591761350632,
- 0.016209229826927185, 0.0912804827094078, 0.0017649889923632145, -0.04802195727825165,
- 0.1700105518102646, -0.06203172728419304, 0.012697860598564148, -0.021160023286938667,
- 0.11398017406463623, -0.10731455683708191, 0.029399383813142776, -0.025850122794508934,
- -0.0832560807466507, 0.06570681929588318, -0.014622677117586136, -0.09290610253810883,
- -0.06393071264028549, 0.08337803930044174, -0.04176796227693558, 0.03641156852245331,
- 0.02550741843879223, -0.06296316534280777, 0.02844543568789959, 0.01187150739133358,
- 0.005346887279301882, -0.05986062437295914, 0.07875781506299973, 0.044651277363300323,
- -0.06138818711042404, -0.02388177067041397, 0.041997477412223816, 0.014497999101877213,
- 0.0378226563334465, 0.006783061195164919, 0.06237618997693062, 0.02436497062444687,
- -0.048493463546037674, 0.034575384110212326, 0.024052126333117485,
- -0.005447875242680311, 0.07673658430576324, -0.18101990222930908, -0.037103321403265,
- -0.035226061940193176, 0.023982882499694824, -0.009960685856640339,
- -0.02720518782734871, 0.0796695277094841, 0.09575216472148895, 0.08956486731767654,
- 0.0660797581076622, 0.04479829594492912, 0.06692126393318176, 0.005658539477735758,
- -0.015101369470357895, 0.052887558937072754, -0.022167550399899483, -0.0440383218228817,
- -0.020248912274837494, 0.008785353042185307, 0.023855943232774734,
- -0.006114627700299025, -0.062046486884355545, -0.037054866552352905,
- -0.009902075864374638, 0.0015085457125678658, -0.10479786247015, -0.022129861637949944,
- 0.06089188903570175, 0.05003112182021141, -0.06066529452800751, -0.11552855372428894,
- -0.057979367673397064, 0.00951947458088398, 0.07343584299087524, -0.027633974328637123,
- -0.007311988156288862, -0.11644897609949112, 0.022883068770170212, 0.01848457381129265,
- 0.015515784732997417, 0.024903908371925354, -0.04648822918534279, -0.05088547617197037,
- -0.07458017766475677, -0.009898467920720577, 0.015335395000874996, 0.06686315685510635,
- -0.023624012246727943, -0.028934823349118233, -0.07458341121673584,
- -0.013118348084390163, -0.023885760456323624, -0.057431675493717194,
- 0.0009077652357518673, 0.05920383706688881, 0.009083817712962627, -0.03272046893835068,
- -0.07785134017467499, 0.07395804673433304, -0.05050952360033989, 0.002467487705871463,
- 0.07885093241930008, -0.04764663428068161, 0.022896651178598404, -0.003106973599642515,
- -0.10919462889432907, -0.034075018018484116, -0.02661210671067238, -0.03245532885193825,
- 0.09670953452587128, -0.03628350794315338, -0.02425551414489746, -0.03386564552783966,
- 0.02988607808947563, 0.058093197643756866, -0.03198757767677307, -0.03850249946117401,
- -0.08069860935211182, 0.11247669160366058, -0.01626412197947502, 0.01436010841280222,
- -0.05732244253158569, -0.07575061917304993, 0.06105341762304306, -0.01010468415915966,
- -0.0052076973952353, 0.02695932239294052, 0.0966099426150322, 0.015251238830387592,
- 0.021481219679117203, 0.09520427137613297, -0.0073483590967953205, 0.024509893730282784,
- 0.08612179756164551, 0.40234309434890747, -0.22287163138389587, 0.06736862659454346,
- 0.05501894652843475, -0.004954543896019459, 0.03399026766419411, -0.043376024812459946,
- 0.06560350209474564, 0.04281151294708252, 0.10262609273195267, 0.06166832149028778,
- -0.02461465634405613, 0.03149300068616867, -0.022998670116066933, 0.10000026971101761,
- 0.0126707274466753, 0.04957093670964241, -0.04346254840493202, -0.05675346031785011,
- 0.00818171538412571, 0.05638830363750458, -0.04395265504717827, 0.037401970475912094,
- 0.03223387151956558, -0.07247091829776764, 0.033782556653022766, 0.041232723742723465,
- 0.06702600419521332, -0.06941498070955276, 0.002558112610131502, 0.009565204381942749,
- 0.027279336005449295, 0.06298431009054184, 0.06781838089227676, -0.12884999811649323,
- 0.0846237763762474, -0.12285169214010239, -0.0795573815703392, 0.04633399844169617,
- -0.02414758875966072, 0.06105295196175575, 0.043569937348365784, 0.004432050511240959,
- 0.09037820994853973, -0.047657404094934464, -0.016706271097064018,
- 0.0031590198632329702, 0.06219683215022087, 0.027295416221022606, 0.09000291675329208,
- 0.12679798901081085, -0.015352421440184116, -0.023423345759510994, -0.0681469589471817,
- 0.02755643241107464, 0.10534373670816422, -0.033097393810749054, 0.05106670781970024,
- 0.020731689408421516, -0.01643562503159046, 0.029617492109537125, -0.053265903145074844,
- -0.06365244835615158, -0.029157478362321854, -0.02866302616894245, 0.05883419141173363,
- 0.06971129775047302, -0.0520559661090374, -0.22258275747299194, 0.015584192238748074,
- -0.04548581689596176, 0.008885897696018219, 0.17300541698932648, -0.10154382884502411,
- 0.013893665745854378, -0.0011925383005291224, 0.010875447653234005, 0.01595231145620346,
- -0.12238511443138123, -0.017354972660541534, -0.04948163032531738, 0.03209969401359558,
- 0.04274752363562584, 0.012955689802765846, -0.06817787140607834, 0.08829962462186813,
- -0.08371760696172714, 0.07108449935913086, -0.01327834464609623, 0.002820034045726061,
- 0.023388022556900978, -0.01761622726917267, 0.021717004477977753, 0.013269654475152493,
- -0.06497980654239655, -0.01827360689640045, -0.025267405435442924,
- -0.056578557938337326, -0.08252767473459244, -0.09001913666725159, -0.0592910572886467,
- -0.07850084453821182, 0.0606534406542778, -0.10418781638145447, -0.02625361643731594,
- -0.024263884872198105, -0.01021228265017271, 0.010252662934362888, 0.007496283855289221,
- 0.005912865046411753, -0.12004952132701874, -0.017319638282060623,
- -0.016016926616430283, 0.019108209758996964, -0.03168744966387749, -0.0916890874505043,
- -0.0016581866657361388, 0.06260867416858673, 0.04931224510073662, -0.06964177638292313,
- 0.027151361107826233, -0.10748390108346939, 0.12564067542552948, -0.12440129369497299,
- -0.5450631976127625, 0.045542169362306595, 0.0556013286113739, 0.03621654212474823,
- 0.014348803088068962, -0.0614035464823246, 0.04058166965842247, 0.010331820696592331,
- -0.028658030554652214, 0.0890493392944336, -0.045698877424001694, -0.010271678678691387,
- -0.003366821678355336, -0.016652923077344894, -0.042124055325984955,
- -0.0342131182551384, -0.043007321655750275, 0.014073526486754417, 0.0063463011756539345,
- -0.057973477989435196, -0.08143795281648636, 0.019448107108473778,
- 0.00028291356284171343, 0.008870015852153301, -0.03764086216688156,
- 0.028417488560080528, -0.015052592381834984, -0.056604575365781784, 0.06084056198596954,
- 0.06394518166780472, 0.02300652302801609, -0.08535419404506683, -0.04401019960641861,
- 0.06099985912442207, 0.010868842713534832, 0.12501922249794006, -0.007029965985566378,
- -0.02751784399151802, -0.09880225360393524, 0.04285261034965515, 0.06019333004951477,
- 0.1884830743074417, 0.013147538527846336, 0.09844004362821579, 0.0036939645651727915,
- 0.1058843731880188, 0.011248936876654625, 0.0620713010430336, -0.0211296696215868,
- 0.015681082382798195, 0.09284680336713791, -0.02497434802353382, 0.06117311492562294,
- -0.09963954240083694, -0.02209223434329033, 0.012408096343278885, -0.039041534066200256,
- -0.04956028610467911, 0.014257637783885002, 0.19034260511398315, 0.02417760156095028,
- 0.0415920689702034, 0.01659863069653511, -0.06462036818265915, 0.029703399166464806,
- -0.06436432152986526, -0.08685287833213806, 0.017458317801356316, 0.015329080633819103,
- 0.038806550204753876, -0.028434058651328087, -0.11043865978717804, 0.004180389456450939,
- -0.00010686757013900205, -0.004451216198503971, 0.12449818104505539,
- -0.06446552276611328, 0.020618805661797523, -0.07491243630647659, 0.12770068645477295,
- 0.010373901575803757, 0.07445114850997925, 0.045722585171461105, 0.07883290201425552,
- 0.03572218492627144, 0.02128138579428196, -0.07149908691644669, -0.05554477497935295,
- -0.019766762852668762, 0.16629183292388916, -0.030452558770775795, 0.07951253652572632,
- 0.0733177587389946, 0.009023315273225307, -0.007333923131227493, 0.030111776664853096,
- 0.0386931411921978, 0.007764908019453287, -0.5116389989852905, -0.05364178121089935,
- 0.12365289777517319, -0.00628190953284502, 0.021801067516207695, 0.09357327967882156,
- 0.05285993963479996, -0.03158547729253769, -0.026227198541164398, -0.06769014149904251,
- 0.13373686373233795, -0.03805222362279892, 0.07185795158147812, -0.15199020504951477,
- 0.007623385172337294, 0.06029433012008667, -0.016147907823324203, -0.0239400714635849,
- 0.04157763347029686, -0.20947203040122986, -0.027817493304610252, -0.023860272020101547,
- 0.17299114167690277, -0.0023073977790772915, 0.027829976752400398, 0.09711120277643204,
- -0.05472056195139885, -0.015962086617946625, 0.04702217876911163, 0.03822866454720497,
- 0.09225581586360931, 0.03023926354944706, 0.004938069265335798, 0.08439882099628448,
- 0.09463579952716827, 0.10820165276527405, -0.03950481861829758, 11.857735633850098,
- 0.06861735135316849, 0.0945812538266182, -0.10762514919042587, -0.009228694252669811,
- -0.05717797949910164, 0.03018687665462494, -0.0734676644206047, 0.10062135756015778,
- 0.11952659487724304, 0.006786195561289787, 0.00004537945642368868,
- -0.018723396584391594, -0.050649113953113556, 0.011810040101408958,
- -0.008746221661567688, -0.014449856244027615, -0.041109900921583176,
- 0.05109227076172829, -0.04040517285466194, -0.03303694352507591, 0.08318999409675598,
- 0.07916375249624252, 0.017958519980311394, -0.103688083589077, 0.0519416518509388,
- -0.017800703644752502, 0.025289950892329216, 0.016081364825367928, 0.05933831259608269,
- 0.00208231876604259, 0.029673706740140915, 0.08575333654880524, 0.020606238394975662,
- 0.013657947070896626, 0.0875057503581047, -0.02852104790508747, 0.04483789578080177,
- 0.04670502617955208, 0.05578886717557907, 0.01068367250263691, 0.017864970490336418,
- -0.012098533101379871, 0.026729492470622063, 0.060359593480825424, 0.030487708747386932,
- 0.05847209319472313, 0.1447623372077942, -0.00004791890751221217, 0.08279146254062653,
- 0.07770691812038422, -0.049397725611925125, 0.07569143176078796, 0.0028555055614560843,
- -0.02551000751554966, 0.043052803725004196, -0.003987760748714209, -0.08396905660629272,
- 0.08664757013320923, 0.04452942684292793, -0.018249517306685448, 0.09369704127311707,
- 0.04241415113210678, 0.06320394575595856, 0.001050247810781002, 0.040349069982767105,
- 0.08296498656272888, 0.054701607674360275, -0.056773312389850616, -0.06357009708881378,
- 0.04502568393945694, -0.07905518263578415, -0.04715503007173538, 0.025043940171599388,
- 0.04099008068442345, -0.05995264649391174, 0.03784716874361038, -0.05719387158751488,
- 0.052040815353393555, 0.029141657054424286, 0.02809673361480236, 0.03472684323787689,
- -0.07719229906797409, 0.061633627861738205, -0.04714655503630638, 0.05281161889433861,
- 0.04362952336668968, 0.047486480325460434, 0.03506363555788994, -0.08937880396842957,
- -0.09071684628725052, 0.08435901999473572, -0.019204067066311836, -0.04381627216935158,
- 0.03587140887975693, -0.03201211988925934, 0.048220302909612656, -0.14234130084514618,
- 0.0976715162396431, 0.09318418055772781, -0.07435387372970581, -0.0254250206053257,
- -0.03104545921087265, 0.10868343710899353, -0.015647104009985924, 0.050083890557289124,
- -0.05619637295603752, 0.024386342614889145, -0.0016671777702867985, 0.05168971046805382,
- -0.03928652033209801, 0.07567884027957916, 0.034706756472587585, -0.06811664253473282,
- 0.05050657317042351, 0.053202398121356964, -0.039887089282274246, -0.01858118735253811,
- 0.04616649076342583, 0.011140350252389908, -0.11738329380750656, 0.003508182941004634,
- -0.03883099928498268, -0.045013509690761566, -0.014694178476929665,
- -0.055782947689294815, -0.025633685290813446, -0.008466827683150768,
- -0.026605328544974327, -0.02738998271524906, 0.06912098824977875, 0.06370700895786285,
- 0.0787096843123436, -0.04715491458773613, 0.016339359804987907, -0.03313930705189705,
- -0.045618847012519836, 0.03484413027763367, 0.09879644215106964, 0.10059193521738052,
- -0.09235327690839767, -0.014680256135761738, -0.02275826409459114, -0.07266104966402054,
- 0.04139783978462219, 0.13255764544010162, 0.04752642661333084, 0.038423530757427216,
- 0.03492828086018562, -0.07434747368097305, -0.028891943395137787, 0.05836397409439087,
- 0.061629291623830795, -0.05468181520700455, -0.014207348227500916,
- -0.031733956187963486, -0.013728342019021511, 0.09635107219219208, -0.02173498645424843,
- -0.026522397994995117, -0.04705353081226349, -0.07315772026777267, 0.05372872203588486,
- 0.08321674168109894, 0.0625448152422905, 0.002280148444697261, 0.0011121650459244847,
- 0.0189212579280138, -0.0011665550991892815, 0.05639776214957237, 0.025555530562996864,
- 0.0015156397130340338, -0.10929504781961441, -0.08944971859455109,
- -0.014193159528076649, 0.09775110334157944, 0.022028528153896332, -0.17245987057685852,
- 0.009558037854731083, -0.009640982374548912
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 120,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 240,
- "similarity": 0.9976262450218201
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 16,
- "similarity": 0.9976251721382141
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 174,
- "similarity": 0.9976013898849487
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Thomas Macaulay"],
- "epoch_date_downloaded": 1604016000,
- "epoch_date_modified": 1604016000,
- "epoch_date_submitted": 1604016000,
- "flag": null,
- "report_number": 1445,
- "source_domain": "thenextweb.com",
- "submitters": ["Ingrid Dickinson (CSET)"],
- "title": "Someone let a GPT-3 bot loose on Reddit — it didn’t end well",
- "url": "https://thenextweb.com/neural/2020/10/07/someone-let-a-gpt-3-bot-loose-on-reddit-it-didnt-end-well/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "tripoli-based-government",
- "name": "Tripoli-based government"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "stm",
- "name": "STM"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "libyan-soldiers",
- "name": "Libyan soldiers"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [2106, 2105, 2104, 1447],
- "vector": [
- -0.06400211900472641, 0.0538595886901021, 0.006886069430038333, -0.08407049998641014,
- 0.08400808647274971, -0.015568127389997244, 0.005021626508096233, 0.04298842488788068,
- 0.10373715683817863, -0.1637914814054966, 0.005811347626149654, 0.04042202397249639,
- -0.002833416481735185, -0.11083520017564297, 0.04020344722084701, -0.09426584467291832,
- -0.08875025901943445, -0.004627039888873696, -0.00829640228766948, -0.11610434018075466,
- -0.08898827061057091, -0.00819805232458748, 0.013320463011041284, 0.06780107878148556,
- -0.00850399595219642, 0.045496197417378426, 0.04102024994790554, 0.14077844098210335,
- -0.0977844875305891, 0.04333300329744816, -0.016636340180411935, -0.05294316681101918,
- 0.1436363086104393, 0.009376427449751645, 0.015224386705085635, 0.07446208782494068,
- 0.017110894084908068, -0.03998359083198011, -0.04453866202675272, -0.03051622840575874,
- -0.015924571111099795, 0.22124922275543213, 0.0026243014726787806,
- -0.010738593991845846, 0.05496596451848745, -0.04063918208703399, -0.006515078595839441,
- 0.028027467895299196, 0.005805005319416523, 0.010113336844369769, -0.01762037049047649,
- 0.0020415109174791723, -0.04068487323820591, 0.014898505760356784, -0.08093016035854816,
- 0.07360581215471029, 0.014305132965091616, -0.000753919972339645, 0.04403543838998303,
- -0.044690842274576426, -0.02225234970683232, -0.20549499616026878, -0.03195368405431509,
- -0.09330315515398979, 0.04529723525047302, -0.08905919454991817, -0.028680346440523863,
- 0.05126516311429441, 0.040600765496492386, 0.06001936364918947, 0.023423317121341825,
- -0.007994625633727992, -0.016114085679873824, 0.030191622208803892,
- -0.0038146515289554372, -0.015551914228126407, 0.03831174038350582, 0.18967195972800255,
- -0.09882235340774059, 0.024547525797970593, 0.08414009213447571, -0.07109033409506083,
- 0.36385737359523773, 0.002645062981173396, -0.024161909706890583, -0.012888208031654358,
- 0.10986659489572048, 0.028824107721447945, 0.021920804167166352, 0.010360341635532677,
- 0.0017103319987654686, 0.04151168838143349, -0.026404634409118444,
- -0.013535927850170992, 0.07008953858166933, 0.026183312060311437, -0.0098801264539361,
- 0.0361713245511055, -0.004766395781189203, -0.052004700526595116, 0.025577719090506434,
- -0.029140337952412665, 0.12046047113835812, 0.055439907126128674, -0.06411032658070326,
- 0.0023153961810749024, 0.0565444128587842, -0.06990170758217573, 0.061843760311603546,
- -0.06026476062834263, 0.035282895201817155, 0.038129970082081854, 0.08427346125245094,
- 0.022995319304754958, 0.0376037722453475, -0.06263381661847234, 0.014127706876024604,
- 0.03085224935784936, 0.05083962203934789, 0.027836992405354977, 0.014395779115147889,
- 0.08987397886812687, 0.11124135367572308, -0.04628012562170625, -0.00473086757119745,
- -0.04517756216228008, -0.005342738586477935, -0.036074544535949826,
- -0.009697672387119383, 0.029428459121845663, -0.06126862391829491, -0.20351675525307655,
- 0.04208569787442684, 0.08867226541042328, -0.0009043714380823076, -0.02400646659953054,
- -0.00255518383346498, -0.06444063410162926, 0.03227630746550858, 0.0019957704353146255,
- 0.001183620246592909, 0.08798617124557495, -0.008510398678481579, 0.04013051185756922,
- 0.09604300372302532, 0.0228674499085173, -0.04048273293301463, -0.06283965893089771,
- -0.012393823591992259, -0.0056026651691354346, 0.08001313451677561,
- -0.11829568445682526, -0.02866428974084556, 0.02771798288449645, 0.030366620048880577,
- 0.6609496623277664, 0.1003976333886385, 0.1607428751885891, -0.006050255964510143,
- -0.031275883782655, 0.16677038371562958, -0.014445651031564921, 0.04840378649532795,
- -0.06340005621314049, -0.056277223862707615, 0.019132411805912852, -0.05913047678768635,
- 0.004307087452616543, 0.025133824441581964, 0.08163225930184126, 0.09588617272675037,
- 0.029871997889131308, 0.0710679478943348, -0.005003055557608604, -0.06078506726771593,
- -0.023705439176410437, 0.04167162161320448, 0.03740207338705659, -0.11318162828683853,
- -0.028229068499058485, 0.0815815906971693, 0.09232666157186031, -0.054696119856089354,
- -0.013407767750322819, -0.022224261658266187, 0.0654696524143219, -0.035782089456915855,
- 0.05171228479593992, -0.04295212822034955, 0.0026876829797402024, 0.035055568907409906,
- 0.047818830236792564, 0.0034055483993142843, -0.12398635037243366,
- -0.0020009451545774937, 0.13139905035495758, 0.03323035693028942, -0.037321369163692,
- 0.050370237324386835, -0.0755436010658741, 0.017445598961785436, -0.014460310223512352,
- 0.10823003202676773, -0.10282422415912151, 0.05837502330541611, -0.008004221133887768,
- -0.026758242398500443, 0.04142209514975548, -0.009405648335814476, -0.03772468864917755,
- -0.039925841614603996, 0.09659148007631302, 0.04120926186442375, 0.05686818342655897,
- 0.0384752715472132, -0.05053224228322506, 0.06630470883101225, -0.006939353363122791,
- -0.009448467011679895, -0.07424953952431679, 0.05541841313242912, 0.06238410156220198,
- -0.0297872144728899, -0.0064093368127942085, 0.032715232111513615, 0.04920320212841034,
- 0.033059180932468735, 0.012557599344290793, 0.04971402604132891, -0.02181909688806627,
- -0.03993218578398228, 0.05913227330893278, 0.06193288881331682, 0.04187699919566512,
- 0.07261807285249233, -0.0870782844722271, -0.033595568136661313, -0.023971345741301775,
- -0.05057593225501478, -0.007559642661362886, -0.018790020374581218, 0.07279045879840851,
- 0.09723076038062572, 0.07013881858438253, 0.04926773579791188, 0.056406086310744286,
- 0.07304965239018202, 0.06702777184545994, 0.01681271055713296, 0.08251925837248564,
- -0.031173447612673044, -0.05108103482052684, -0.028619425487704575,
- -0.000257999578025192, 0.03888615779578686, 0.019276260631158948, -0.039345964789390564,
- -0.03522519767284393, -0.03725348482839763, -0.0054197104182094336,
- -0.09315654076635838, -0.0592504246160388, 0.026367698796093464, 0.05267093237489462,
- -0.0636812373995781, -0.06193145923316479, -0.07239432260394096, 0.03473052568733692,
- 0.08543063048273325, -0.010134606738574803, -0.010847802856005728, -0.10700184665620327,
- -0.0022206176072359085, 0.012504374959462439, 0.024680281057953835,
- -0.007486222079023719, 0.006541486320202239, -0.015267055947333574,
- -0.04788151802495122, 0.00676672940608114, 0.007291311165317893, -0.027253471547737718,
- -0.04296027822420001, -0.09001195803284645, -0.024076921865344048, -0.00495524809230119,
- 0.01961900247260928, -0.04035516642034054, 0.014159196784021333, 0.046690390445291996,
- 0.04156095813959837, -0.05208356957882643, -0.013209507742431015, 0.07978622801601887,
- -0.029997569508850574, -0.005768735922174528, 0.0975919347256422, -0.004441651399247348,
- 0.015367980813607574, -0.020057488465681672, -0.03802931145764887, -0.08142201229929924,
- -0.0024077509879134595, -0.044655692763626575, 0.05368779040873051,
- -0.056173859629780054, 0.0006720717065036297, -0.051576423458755016,
- -0.012083862093277276, 0.09422530420124531, -0.07145933993160725, -0.0437290754634887,
- -0.09927063435316086, 0.1092686764895916, -0.0399928386323154, -0.0175327283795923,
- 0.02261312771588564, -0.056181990541517735, 0.04703977517783642, 0.026235226425342262,
- 0.020386110292747617, 0.05162641638889909, 0.06195453088730574, -0.023752622815663926,
- 0.0025908905954565853, 0.055480798706412315, -0.0002422177349217236,
- 0.03317213011905551, 0.07444870751351118, 0.41859013587236404, -0.11680008750408888,
- 0.10218241438269615, 0.11651255004107952, -0.012549076243885793, 0.06676945369690657,
- -0.043651713989675045, 0.061894796788692474, 0.06223533395677805, 0.12253863923251629,
- 0.09078454785048962, -0.03142804582603276, 0.0025864295021165162, -0.027023123111575842,
- 0.05511618312448263, -0.008984697866253555, 0.04313039127737284, -0.04987203422933817,
- -0.06081607658416033, -0.007746188901364803, 0.026451529003679752,
- -0.034982028882950544, 0.002107537817209959, -0.025705126114189625,
- -0.03984274435788393, 0.012911688187159598, 0.03522228900692426, 0.049438866786658764,
- -0.018911666702479124, 0.020187793765217066, -0.01766945660347119, 0.03760149609297514,
- 0.018468650698196143, 0.03749891370534897, -0.11070476472377777, 0.023289904929697514,
- -0.07494035735726357, -0.10961448773741722, 0.04361188504844904, -0.009451243560761213,
- 0.06876618228852749, 0.04857996106147766, -0.030060315504670143, 0.07270881067961454,
- 0.009606084320694208, -0.02180575192278411, 0.015545026348263491, 0.026131689315661788,
- 0.02454463648609817, 0.06986882444471121, 0.12402753531932831, -0.01809956377837807,
- -0.051748914644122124, -0.11680574156343937, 0.06404875684529543, 0.09733279421925545,
- -0.021676294738426805, 0.02562614087946713, 0.0018534022383391857, 0.004075815202668309,
- -0.015060290577821434, -0.03334835940040648, -0.0523404898121953, -0.013723899144679308,
- -0.04021404101513326, 0.0701795918866992, 0.01757052793254843, -0.06613896507769823,
- -0.15116770565509796, -0.062221186235547066, -0.07082736492156982, 0.02824330038856715,
- 0.12983089685440063, -0.09431970305740833, 0.05696653947234154, 0.007573579205200076,
- 0.013710887811612338, 0.046850936487317085, -0.05550673138350248, 0.017790821031667292,
- -0.061668225564062595, 0.005795967997983098, 0.09273659437894821, 0.029179221019148827,
- -0.04230767022818327, 0.09381993766874075, -0.09352587349712849, 0.04471493454184383,
- 0.0204975628585089, -0.0015805283328518271, 0.027396137826144695, -0.036491782404482365,
- 0.018028672493528575, 0.0339455601060763, -0.05269342102110386, 0.023032109602354467,
- -0.06774011347442865, -0.039793187752366066, -0.09275942854583263, -0.09204189106822014,
- -0.047717927023768425, -0.0733291395008564, 0.05330835934728384, -0.0969072226434946,
- -0.006859089597128332, -0.04948083218187094, -0.004342557163909078, -0.0174881016719155,
- 0.02652410278096795, -0.027592706959694624, -0.11226349510252476, -0.0245298370718956,
- 0.00194637516142393, 0.027815631474368274, -0.01140286773443222, -0.07533257268369198,
- 0.013908133303630166, 0.07722138240933418, 0.04046897543594241, -0.04300121241249144,
- -0.022620082600042224, -0.0643335273489356, 0.06009902898222208, -0.09200994111597538,
- -0.40720199793577194, 0.05383976874873042, 0.03252394311130047, 0.06373568437993526,
- 0.01352316327393055, -0.06737902294844389, 0.040079979691654444, 0.01306693209335208,
- -0.02109984282287769, 0.06926120072603226, -0.03969033854082227, 0.000499193076393567,
- 0.004963705083355308, -0.045392822939902544, -0.009377050679177046,
- -0.07074716500937939, -0.03896838054060936, 0.055172654800117016, 0.007353158434852958,
- -0.07220902480185032, -0.1054502185434103, 0.04670678451657295, -0.04255330376327038,
- -0.01832812186330557, -0.023071571078617126, 0.0470517105422914, -0.06993289012461901,
- -0.06840886268764734, 0.012903536087833345, 0.028478420339524746, 0.03507524583255872,
- -0.04790872894227505, -0.01661159365903586, 0.04611475067213178, -0.019710041000507772,
- 0.11963550746440887, 0.014341999893076718, 0.015624060994014144, -0.08835774846374989,
- 0.07060147263109684, 0.05369681632146239, 0.18862128630280495, -0.003256656666053459,
- 0.05051715299487114, 0.008446591906249523, 0.1181052215397358, 0.02032692334614694,
- 0.041682487120851874, -0.039777062833309174, -0.015253741119522601,
- 0.017513048369437456, -0.00452681421302259, 0.06678919866681099, -0.0962288985028863,
- -0.02578759752213955, -0.0391488173045218, -0.03169437439646572, -0.01464875671081245,
- -0.029155392665416002, 0.1746842823922634, 0.01081800286192447, 0.005264025705400854,
- 0.04218414984643459, -0.04258238896727562, -0.014691248186863959, -0.05314893135800958,
- -0.10606900788843632, -0.005945965589489788, -0.012750956928357482,
- 0.025984254432842135, -0.046347291208803654, -0.10177437774837017, -0.0117541671206709,
- 0.008830845807096921, -0.0007927799597382545, 0.10316195990890265, -0.04433468962088227,
- 0.04299479071050882, -0.03879500739276409, 0.13320675119757652, 0.04400720074772835,
- 0.0430085415719077, 0.051095256581902504, 0.05276636220514774, 0.039436780381947756,
- -0.04453656589612365, -0.018191888462752104, -0.09867552481591702, 0.039443075424060225,
- 0.1360854171216488, -0.05051462538540363, 0.12419006414711475, 0.04379442473873496,
- -0.07856063172221184, -0.07225572410970926, 0.05285008531063795, 0.028466458257753402,
- -0.00813461875077337, -0.445369191467762, -0.04822112387046218, 0.1052197776734829,
- -0.0016996688209474087, 0.020758094731718302, 0.0747921671718359, 0.009690591257822234,
- -0.03659184416756034, 0.015855941455811262, -0.08431179076433182, 0.15212788432836533,
- -0.011009345296770334, 0.05090634943917394, -0.0873006321489811, 0.031074782833456993,
- 0.07777137495577335, -0.013898605830036104, -0.004512026913289446, 0.049643331207334995,
- -0.21039525419473648, 0.011847676010802388, -0.025480472526396625, 0.15177679806947708,
- 0.018351198232267052, 0.02164596109651029, 0.057304141111671925, -0.09746363759040833,
- 0.07387879956513643, 0.059307572431862354, -0.003820589743554592, 0.0575936958193779,
- 0.008831417602777947, -0.027863660361617804, 0.097253842279315, 0.08691432699561119,
- 0.058829303830862045, -0.009871147864032537, 11.834792613983154, 0.06162459496408701,
- 0.06558366399258375, -0.09677859582006931, 0.006636790931224823, -0.026623285375535488,
- 0.04616938252002001, -0.048990678042173386, 0.07193483226001263, 0.08813189715147018,
- -0.011678694951115176, -0.03550213249400258, -0.024224404944106936,
- -0.07475971430540085, 0.03431308548897505, -0.02971819811500609, -0.041553168557584286,
- -0.04334607976488769, 0.04051564307883382, -0.06871500611305237, -0.013526747236028314,
- 0.0209539532661438, 0.05390881560742855, 0.04691710136830807, -0.09191729873418808,
- 0.027642861823551357, -0.00017572171054780483, -0.0176811502315104,
- -0.009133658837527037, 0.010839296621270478, 0.005840026686200872, 0.023411426693201065,
- 0.07732734829187393, 0.003224773012334481, 0.001191651914268732, 0.05250610283110291,
- 0.02905839867889881, 0.05584557307884097, 0.0317911283345893, 0.045064374804496765,
- -0.0028930444677826017, 0.04269471438601613, -0.01351998990867287, 0.04425193462520838,
- 0.0445243064314127, 0.04375009494833648, 0.05689516291022301, 0.09367193467915058,
- 0.0064088949002325535, 0.053167130798101425, 0.09430878236889839, -0.025945782428607345,
- 0.10505746491253376, 0.016996969119645655, 0.01011935155838728, 0.046864650677889585,
- -0.010479185148142278, -0.05373298842459917, 0.0757718700915575, 0.050345493480563164,
- -0.06650647521018982, 0.07925678230822086, 0.03212700202129781, 0.10778890177607536,
- 0.025625104928622022, 0.03909547999501228, 0.0952911376953125, 0.05068452190607786,
- -0.11142604425549507, -0.05901537789031863, 0.017217703483765945, -0.1160897146910429,
- -0.06206357013434172, 0.038207669043913484, 0.05973310209810734, -0.013774033257504925,
- 0.09404448978602886, -0.03065817430615425, 0.042232400737702847, -0.031087502371519804,
- 0.0005186176276765764, 0.0051385307451710105, -0.041803497821092606,
- 0.012378659725072794, 0.005044567631557584, 0.02067598421126604, 0.0712214419618249,
- 0.10366258397698402, -0.002577281789854169, -0.08912515640258789, -0.09597878903150558,
- 0.11609447374939919, -0.03623105864971876, -0.053177881985902786, 0.045755484054097906,
- -0.04433497413992882, 0.04031324153766036, -0.16537308879196644, 0.05327416677027941,
- 0.10733998939394951, -0.08739358745515347, 0.010707012261264026, -0.014962151180952787,
- 0.0976667981594801, 0.013058281081612222, 0.04895096132531762, -0.035017978167161345,
- 0.027173365087946877, 0.03713139006868005, 0.055177075788378716, -0.029943414265289903,
- 0.07494760770350695, 0.037637777626514435, -0.08601640164852142, 0.059583310037851334,
- 0.05685610603541136, -0.03591464692726731, -0.0479470556601882, 0.06995250564068556,
- -0.00006692780880257487, -0.10197756066918373, -0.061876787804067135,
- -0.044066442642360926, -0.05197528935968876, -0.01398647265159525, -0.04963463172316551,
- 0.011184467526618391, -0.0014563739532604814, -0.05759313236922026,
- -0.03888249071314931, 0.030630816239863634, 0.06449308805167675, 0.11881516687572002,
- -0.027902495814487338, 0.05461837071925402, -0.0551220765337348, -0.0319600417278707,
- 0.05597530398517847, 0.07144302595406771, 0.05312079982832074, -0.05312804691493511,
- -0.00460331654176116, -0.045056186616420746, -0.0749382134526968, 0.01216898689744994,
- 0.06090413220226765, 0.036418701289221644, 0.03880572511116043, 0.061371324583888054,
- -0.06470029149204493, -0.01933890045620501, 0.10484845004975796, 0.0667303940281272,
- 0.03902356396429241, 0.021177892107516527, -0.07711702771484852, -0.02196038281545043,
- 0.09856448695063591, -0.03902319283224642, -0.01512675010599196, 0.048102958127856255,
- -0.04092111345380545, 0.03455730201676488, 0.08212425466626883, 0.07423168234527111,
- 0.045652360655367374, 0.04334933252539486, 0.015665451530367136, -0.005933688371442258,
- -0.008922546112444252, 0.002580177504569292, -0.0414358644047752, -0.08149172738194466,
- -0.09928443282842636, 0.01603981727384962, 0.06276608817279339, 0.009126670891419053,
- -0.0994506049901247, -0.006029754877090454, -0.05694981198757887
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 121,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 188,
- "similarity": 0.9980805516242981
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 163,
- "similarity": 0.998079776763916
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 184,
- "similarity": 0.9980302453041077
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Tefo Mohapi"],
- "epoch_date_downloaded": 1664928000,
- "epoch_date_modified": 1665619200,
- "epoch_date_submitted": 1664928000,
- "flag": null,
- "report_number": 2106,
- "source_domain": "iafrikan.com",
- "submitters": ["Devon Colmer (CSET)"],
- "title": "AI-powered drone deployed in Libya has possibly killed people without any human interference",
- "url": "https://www.iafrikan.com/2021/06/02/artificial-intelligence-autonomous-drone-military-kargu-loitering-kill-libya/"
- },
- {
- "__typename": "Report",
- "authors": ["Joe Hernandez"],
- "epoch_date_downloaded": 1664928000,
- "epoch_date_modified": 1665619200,
- "epoch_date_submitted": 1664928000,
- "flag": null,
- "report_number": 2105,
- "source_domain": "npr.org",
- "submitters": ["Devon Colmer (CSET)"],
- "title": "A Military Drone With A Mind Of Its Own Was Used In Combat, U.N. Says",
- "url": "https://www.npr.org/2021/06/01/1002196245/a-u-n-report-suggests-libya-saw-the-first-battlefield-killing-by-an-autonomous-d"
- },
- {
- "__typename": "Report",
- "authors": ["Maria Cramer"],
- "epoch_date_downloaded": 1664928000,
- "epoch_date_modified": 1665619200,
- "epoch_date_submitted": 1664928000,
- "flag": null,
- "report_number": 2104,
- "source_domain": "nytimes.com",
- "submitters": ["Devon Colmer (CSET)"],
- "title": "A.I. Drone May Have Acted on Its Own in Attacking Fighters, U.N. Says",
- "url": "https://www.nytimes.com/2021/06/03/world/africa/libya-drone.html"
- },
- {
- "__typename": "Report",
- "authors": ["Zachary Kallenborn"],
- "epoch_date_downloaded": 1633132800,
- "epoch_date_modified": 1633132800,
- "epoch_date_submitted": 1633132800,
- "flag": null,
- "report_number": 1447,
- "source_domain": "thebulletin.org",
- "submitters": ["Kate Perkins"],
- "title": "Was a flying killer robot used in Libya? Quite possibly",
- "url": "https://thebulletin.org/2021/05/was-a-flying-killer-robot-used-in-libya-quite-possibly/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "facebook",
- "name": "Facebook"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "facebook",
- "name": "Facebook"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "facebook-users",
- "name": "Facebook users"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1448],
- "vector": [
- -0.06151297688484192, 0.09778068214654922, -0.00025300035485997796,
- -0.07641366124153137, 0.05024276673793793, 0.01750563085079193, 0.01760871894657612,
- 0.07288878411054611, 0.044950541108846664, -0.14669448137283325, 0.00020752352429553866,
- 0.06321708112955093, 0.031687621027231216, 0.0012178410543128848, 0.02874763309955597,
- -0.0979677364230156, -0.08956477791070938, -0.06506791710853577, -0.0035574270877987146,
- -0.09970378130674362, -0.042959559708833694, -0.01572791486978531, 0.038625020533800125,
- 0.14425250887870789, -0.01772833615541458, 0.05648930370807648, 0.09745041280984879,
- 0.11315357685089111, -0.05028897896409035, 0.08611422032117844, -0.029513120651245117,
- -0.09368472546339035, 0.12608373165130615, 0.002895965240895748, -0.009893312118947506,
- 0.07235631346702576, 0.035883378237485886, -0.0424371212720871, -0.013741528615355492,
- -0.032815612852573395, 0.031537238508462906, 0.2595304250717163, -0.01671295054256916,
- -0.028298547491431236, 0.018406175076961517, -0.05146573856472969, 0.0494127981364727,
- 0.04739220067858696, -0.011333097703754902, -0.011622612364590168, -0.01582152210175991,
- 0.06437402218580246, -0.026675239205360413, 0.057298529893159866, -0.10260134935379028,
- 0.047440990805625916, 0.019737545400857925, -0.04520134627819061, 0.031156649813055992,
- -0.0961943194270134, -0.07449942082166672, -0.3154459595680237, -0.01686948724091053,
- -0.08773405104875565, 0.07809533923864365, -0.07922405749559402, -0.008534223772585392,
- 0.0019119078060612082, 0.025202780961990356, 0.07558983564376831, 0.07397976517677307,
- -0.009037414565682411, -0.014104317873716354, 0.01868109218776226,
- -0.008391652256250381, -0.03462451696395874, 0.01876920461654663, 0.17642825841903687,
- -0.10501150786876678, 0.005899797193706036, 0.13900348544120789, -0.14172224700450897,
- 0.511013388633728, -0.009341138415038586, -0.04742107912898064, -0.030815716832876205,
- 0.06637398153543472, 0.07394414395093918, 0.028471071273088455, 0.049546342343091965,
- -0.06902400404214859, 0.010634158737957478, -0.016939066350460052,
- -0.032013602554798126, 0.08406661450862885, 0.04428263381123543, -0.04853320121765137,
- 0.04655472934246063, -0.0174501221626997, -0.060950446873903275, -0.012884847819805145,
- -0.025355912744998932, 0.12728509306907654, 0.12216033041477203, -0.058404695242643356,
- -0.022175343707203865, 0.06368008255958557, -0.06211971491575241, 0.0422290600836277,
- -0.057340748608112335, 0.018713148310780525, 0.013459738343954086, 0.06580861657857895,
- -0.034814778715372086, 0.07115054875612259, -0.06144832819700241,
- -0.0010724797612056136, 0.04517555981874466, 0.11609738320112228,
- -0.0028195027261972427, -0.009805568493902683, 0.027719693258404732,
- 0.041673727333545685, -0.0646374449133873, -0.051899977028369904, -0.07897306978702545,
- -0.04715340584516525, -0.029348894953727722, -0.03483600914478302, 0.047129467129707336,
- -0.06569761782884598, -0.18138612806797028, 0.03032301366329193, 0.06812183558940887,
- -0.020344547927379608, -0.04561885446310043, 0.011284357868134975, -0.04880845174193382,
- 0.022100137546658516, 0.010447489097714424, -0.035179708153009415, 0.07917582243680954,
- 0.03515137359499931, 0.02126988209784031, 0.16365110874176025, -0.005805813241750002,
- -0.06148205325007439, -0.028364472091197968, -0.0056999363005161285,
- -0.08076971769332886, 0.10980167239904404, -0.17716234922409058, -0.05378613620996475,
- 0.04059239476919174, -0.02024240419268608, 0.7596460580825806, 0.08259008824825287,
- 0.21236006915569305, -0.01820298470556736, -0.00812449213117361, 0.16811051964759827,
- -0.010854406282305717, 0.10816673934459686, -0.08036305755376816, -0.09197059273719788,
- 0.05710791051387787, -0.12457294017076492, -0.07969970256090164, 0.06243026629090309,
- 0.0214263703674078, 0.14397042989730835, 0.06543850153684616, 0.0939832478761673,
- -0.055114004760980606, -0.09326526522636414, -0.020866544917225838, 0.08677228540182114,
- 0.019431810826063156, -0.1095915362238884, -0.04175586625933647, 0.02306658960878849,
- 0.1182670146226883, -0.10297562927007675, 0.002744109835475683, -0.101878821849823,
- 0.05526681989431381, -0.005768926348537207, 0.05731068179011345, -0.035850975662469864,
- 0.027225123718380928, 0.05082229524850845, 0.09712198376655579, -0.009025582112371922,
- -0.12628141045570374, -0.042978204786777496, 0.09994365274906158, -0.002552422694861889,
- -0.01101210992783308, 0.1034565418958664, -0.11168688535690308, 0.06025649979710579,
- 0.04756084457039833, 0.18034367263317108, -0.12203434109687805, -0.005141011439263821,
- -0.019215267151594162, -0.02950572967529297, 0.045458223670721054,
- -0.0037073991261422634, -0.1062036082148552, -0.06979111582040787, 0.0684724822640419,
- 0.039002127945423126, 0.04243797808885574, 0.05483455955982208, -0.02029598318040371,
- -0.0014632855309173465, 0.0403781495988369, -0.0053517622873187065,
- -0.030488628894090652, 0.08242324739694595, 0.04415681213140488, -0.07742099463939667,
- -0.0418705940246582, 0.04178498685359955, 0.03507298231124878, 0.01485054288059473,
- 0.00737485196441412, 0.04572458937764168, -0.030218182131648064, -0.059327226132154465,
- -0.003447015304118395, 0.013272608630359173, -0.031688012182712555, 0.10109653323888779,
- -0.038873013108968735, -0.0414794497191906, -0.029669692739844322, -0.0605846606194973,
- 0.03818923607468605, 0.012966670095920563, 0.08022582530975342, 0.09814181178808212,
- 0.051826994866132736, 0.01755114085972309, 0.02960566245019436, 0.06106095388531685,
- -0.017222236841917038, 0.04072156175971031, 0.08266370743513107, -0.017297107726335526,
- -0.03679223358631134, -0.012612206861376762, -0.011929888278245926,
- 0.010841860435903072, 0.061718620359897614, -0.08008681982755661, -0.051778752356767654,
- -0.05898735672235489, -0.02658810280263424, -0.11656871438026428, -0.08037502318620682,
- -0.011808951385319233, 0.0411757156252861, -0.036434076726436615, -0.12172066420316696,
- -0.06037043407559395, 0.03050091676414013, 0.09659964591264725, -0.04082470387220383,
- -0.05706267058849335, -0.14119990170001984, -0.003707845928147435, -0.04298989847302437,
- 0.07250402867794037, -0.04135763272643089, 0.008619104512035847, -0.012730037793517113,
- -0.012632240541279316, 0.04439425468444824, -0.01487571932375431, 0.018461663275957108,
- -0.06844118237495422, -0.11902063339948654, -0.07090752571821213,
- -0.0015469840727746487, 0.03085276670753956, 0.016547076404094696, 0.041404012590646744,
- 0.050855834037065506, 0.07401222735643387, -0.0035939542576670647,
- 0.0037781193386763334, 0.07171732932329178, -0.015633519738912582, -0.00398933794349432,
- 0.09274321794509888, -0.015281815081834793, 0.0011176433181390166, -0.03871021792292595,
- -0.042623840272426605, -0.019853398203849792, 0.058995116502046585,
- -0.05062360316514969, 0.05286308750510216, 0.0015413496876135468, 0.010065959766507149,
- -0.055707767605781555, 0.0022499922197312117, 0.06463737785816193, -0.0842706561088562,
- -0.12142347544431686, -0.065139040350914, 0.09735661000013351, 0.012904482893645763,
- -0.02638869732618332, 0.00559781352058053, -0.06772007048130035, 0.048199139535427094,
- -0.05373043194413185, 0.019479837268590927, 0.025851871818304062, 0.03042145073413849,
- -0.0212563443928957, 0.03509734198451042, 0.03689558431506157, -0.03207778185606003,
- 0.04454183951020241, 0.056378189474344254, 0.39091551303863525, -0.1591966152191162,
- 0.10810072720050812, 0.11403615027666092, -0.03588986024260521, 0.025256380438804626,
- -0.07527337223291397, 0.11136074364185333, 0.11310040950775146, 0.1566585898399353,
- 0.15569967031478882, -0.0909184142947197, -0.018571123480796814, -0.09441221505403519,
- 0.1239800974726677, 0.030174901708960533, 0.04821034520864487, 0.006227429024875164,
- -0.06763823330402374, -0.01819089986383915, 0.035945359617471695, -0.043671540915966034,
- -0.004357540979981422, -0.0510726198554039, -0.05564357712864876, 0.029856333509087563,
- 0.017810476943850517, 0.04549615830183029, -0.021888138726353645, 0.035111457109451294,
- -0.02519613318145275, 0.06225663796067238, 0.020383168011903763, 0.05171414092183113,
- -0.07271815091371536, 0.02026193216443062, -0.10428871214389801, -0.10272916406393051,
- 0.10742566734552383, -0.02458030916750431, 0.05153050646185875, 0.03780196234583855,
- -0.020236259326338768, 0.044926878064870834, -0.04287449270486832,
- -0.053488656878471375, 0.03284618258476257, 0.08368781954050064, 0.04191260412335396,
- 0.11138483136892319, 0.19194506108760834, -0.04099902883172035, -0.04657517746090889,
- -0.05777247995138168, 0.07246039807796478, 0.10830441862344742, -0.025776563212275505,
- 0.03923456370830536, -0.0009672577725723386, -0.05463646724820137,
- -0.016144491732120514, -0.0924350693821907, -0.11311015486717224, -0.002589392475783825,
- -0.074824258685112, 0.05551133677363396, 0.028725342825055122, -0.028124138712882996,
- -0.10255775600671768, -0.06892664730548859, -0.017799468711018562, 0.015725230798125267,
- 0.13835428655147552, -0.06438300013542175, 0.06681972742080688, 0.02351117879152298,
- -0.013522065244615078, 0.0020810209680348635, -0.11855591833591461,
- 0.007241895422339439, -0.04287072271108627, 0.041500043123960495, 0.07879060506820679,
- 0.08143865317106247, -0.008260753005743027, 0.04065674543380737, -0.11336111277341843,
- 0.05682913959026337, 0.054362792521715164, -0.06437437236309052, 0.015489554032683372,
- -0.04899977520108223, -0.0008422462269663811, -0.011168036609888077,
- -0.0376962274312973, 0.0063268039375543594, -0.04176703095436096, -0.054458316415548325,
- -0.09897147119045258, -0.0454130545258522, -0.08141593635082245, -0.107816182076931,
- 0.04615877568721771, -0.056516844779253006, -0.03546639159321785, 0.004872794728726149,
- -0.02613847330212593, 0.023857705295085907, 0.03907192870974541, 0.023515086621046066,
- -0.17748503386974335, 0.013216285966336727, 0.005811975337564945, 0.09082621335983276,
- -0.07747995108366013, -0.03191808983683586, 0.03648146986961365, 0.078023761510849,
- 0.025345422327518463, 0.022833598777651787, 0.003291573142632842, -0.030300313606858253,
- 0.06641269475221634, -0.11541492491960526, -0.43284717202186584, 0.06617430597543716,
- -0.022606659680604935, 0.06286130100488663, 0.04472838714718819, -0.05052214115858078,
- 0.0422791950404644, -0.03541563078761101, -0.061128515750169754, 0.07392193377017975,
- -0.055851180106401443, 0.02434619702398777, -0.016254838556051254,
- -0.042351555079221725, -0.02104424498975277, -0.10186725109815598, -0.05692961439490318,
- 0.04226645827293396, -0.02511117421090603, -0.053001243621110916, -0.11375068873167038,
- -0.0011039426317438483, -0.045440465211868286, 0.02024262212216854,
- 0.026666318997740746, 0.002543096663430333, -0.06918799877166748, -0.03640613704919815,
- 0.06896859407424927, 0.056899432092905045, 0.02473812736570835, -0.07854489982128143,
- 0.03461214527487755, 0.12029095739126205, -0.010702811181545258, 0.1551806628704071,
- 0.03630979359149933, 0.01827431470155716, -0.09680293500423431, 0.09154963493347168,
- 0.06604062020778656, 0.18589577078819275, 0.012893810868263245, 0.006384225562214851,
- -0.002978681121021509, 0.1390867531299591, 0.07820401340723038, 0.0303944144397974,
- -0.032074108719825745, -0.007138790562748909, -0.006646840833127499,
- 0.0016746954061090946, 0.1433202624320984, -0.04952583834528923, -0.004165826365351677,
- -0.06929056346416473, -0.004695074167102575, -0.025197220966219902,
- -0.05367521941661835, 0.21497708559036255, 0.02345426194369793, 0.04342497140169144,
- 0.0395074337720871, -0.07941029965877533, -0.0026956330984830856, -0.11015550047159195,
- -0.129195898771286, 0.009846627712249756, -0.006589212920516729, 0.05101752281188965,
- -0.08011037111282349, -0.12488170713186264, -0.0635535791516304, -0.008585171774029732,
- -0.021366821601986885, 0.1196664348244667, 0.01262248307466507, 0.039431631565093994,
- 0.023830771446228027, 0.12103201448917389, 0.0327502079308033, 0.0027300072833895683,
- 0.03070751391351223, 0.10048208385705948, 0.02071128971874714, 0.013150215148925781,
- -0.01600257307291031, -0.10575374215841293, -0.050415217876434326, 0.1063612550497055,
- -0.037972692400217056, 0.1481022834777832, 0.041948460042476654, -0.04089018702507019,
- -0.06202652305364609, -0.0059865606017410755, -0.036151014268398285,
- 0.025188207626342773, -0.427078515291214, -0.0010810855310410261, 0.11875256896018982,
- -0.006434562616050243, 0.026064837351441383, 0.0990937352180481, 0.028137672692537308,
- -0.06576385349035263, -0.07290305942296982, -0.05156818404793739, 0.1520644575357437,
- -0.006953504867851734, 0.09702116996049881, -0.12480468302965164, 0.028344934806227684,
- 0.10126765817403793, -0.016138941049575806, 0.012922855094075203, 0.057880502194166183,
- -0.26205191016197205, -0.031024781987071037, -0.03162654861807823, 0.1248450055718422,
- 0.031134571880102158, 0.03461700677871704, 0.12127970904111862, -0.03846490755677223,
- -0.01532058883458376, -0.0005518937832675874, -0.04549911618232727, 0.05662086606025696,
- -0.013509596697986126, -0.014656944200396538, 0.14491304755210876, 0.05095308646559715,
- 0.0450274720788002, -0.04316962510347366, 11.953335762023926, 0.0661616250872612,
- 0.05941026285290718, -0.06379384547472, 0.05729224160313606, -0.032828714698553085,
- 0.012591293081641197, -0.08739513903856277, 0.0404573492705822, 0.11483322083950043,
- -0.0286342054605484, -0.040550313889980316, 0.00260792369954288, -0.10202955454587936,
- 0.017735419794917107, -0.059552960097789764, -0.04944254830479622, -0.05837208777666092,
- 0.017748428508639336, -0.025250541046261787, -0.052298516035079956,
- 0.009728635661303997, 0.08034534752368927, 0.02908262051641941, -0.058494456112384796,
- 0.04261113330721855, 0.041639022529125214, -0.018644964322447777, 0.0010160357924178243,
- 0.025159545242786407, 0.027032101526856422, 0.011495574377477169, 0.0848703384399414,
- 0.016610588878393173, 0.011034595780074596, 0.03203806281089783, 0.07945417612791061,
- 0.07799579203128815, 0.06176726520061493, 0.03130890056490898, 0.00533699756488204,
- 0.07024365663528442, 0.00999475922435522, 0.07414600998163223, 0.09001975506544113,
- 0.007420654408633709, 0.02356291562318802, 0.08824512362480164, 0.005911349784582853,
- 0.07020124047994614, 0.11232595890760422, 0.013421580195426941, 0.07310819625854492,
- 0.05358564853668213, -0.048289477825164795, 0.024781743064522743,
- -0.0006532842526212335, -0.09471751749515533, 0.10386107116937637, 0.0325743593275547,
- -0.05766521394252777, 0.09195369482040405, 0.02962379902601242, 0.11729022115468979,
- 0.014758137986063957, 0.07419655472040176, 0.06255076825618744, 0.05212659761309624,
- -0.15310175716876984, -0.13762889802455902, 0.049485184252262115, -0.11219943314790726,
- -0.049779582768678665, 0.10875114053487778, 0.12772105634212494, -0.032973263412714005,
- 0.09268833696842194, -0.0362185537815094, 0.017746785655617714,
- -0.000045624750782735646, -0.0019202855182811618, 0.07936161756515503,
- 0.012087294831871986, -0.009212064556777477, 0.04547053202986717, 0.04443839564919472,
- 0.12298180907964706, 0.11030128598213196, -0.01143967267125845, -0.058351196348667145,
- -0.046713948249816895, 0.11633501946926117, 0.026264792308211327, -0.05592475086450577,
- 0.0019136837217956781, -0.06827475130558014, -0.028806446120142937, -0.1223798468708992,
- 0.0831587165594101, 0.12931932508945465, -0.08431785553693771, -0.011711803264915943,
- -0.027921536937355995, 0.03720804676413536, 0.008107558824121952, 0.009996788576245308,
- -0.10718096792697906, 0.05995180830359459, 0.037805911153554916, 0.05062282085418701,
- -0.048714447766542435, 0.07474008202552795, 0.07478303462266922, -0.050164151936769485,
- 0.03546251356601715, 0.08083546906709671, -0.017478911206126213, -0.033872801810503006,
- 0.06163971498608589, 0.021445423364639282, -0.11784165352582932, -0.08714747428894043,
- -0.06033480539917946, -0.04046754911541939, 0.029432445764541626, -0.045025844126939774,
- -0.006874305661767721, 0.03633446246385574, -0.0613829679787159, -0.024990275502204895,
- 0.0504506379365921, 0.05483275279402733, 0.048740532249212265, 0.0068766153417527676,
- 0.0378221794962883, -0.10039104521274567, -0.023200618103146553, 0.03698459267616272,
- 0.025511959567666054, 0.09792182594537735, -0.09223168343305588, -0.031400151550769806,
- -0.0677235871553421, -0.11907254904508591, 0.020989516749978065, 0.12113507091999054,
- 0.05479147285223007, 0.034518349915742874, -0.01903308555483818, -0.08582115918397903,
- -0.06809025257825851, 0.08440815657377243, 0.044212862849235535, 0.04176425561308861,
- 0.041426803916692734, -0.045629747211933136, -0.006865528412163258, 0.12239036709070206,
- -0.05170781537890434, 0.03831207752227783, 0.001556043396703899, -0.03859202191233635,
- 0.11551545560359955, 0.15157943964004517, 0.03262681886553764, 0.020539656281471252,
- 0.0874064564704895, -0.017474567517638206, 0.029000259935855865, -0.0012569036334753036,
- 0.013673651032149792, -0.04608717933297157, -0.11956422030925751, -0.06948471069335938,
- 0.02037564292550087, 0.11175087839365005, 0.05095117166638374, -0.13781823217868805,
- -0.014307910576462746, -0.0018704868853092194
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 122,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 199,
- "similarity": 0.9985769987106323
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 138,
- "similarity": 0.9982129335403442
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 163,
- "similarity": 0.9981572031974792
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Jay Peters"],
- "epoch_date_downloaded": 1602892800,
- "epoch_date_modified": 1602892800,
- "epoch_date_submitted": 1602892800,
- "flag": null,
- "report_number": 1448,
- "source_domain": "theverge.com",
- "submitters": ["AIAAIC"],
- "title": "Facebook to pay $550 million to settle privacy lawsuit over facial recognition tech",
- "url": "https://www.theverge.com/2020/1/29/21114358/facebook-550-million-settle-lawsuit-facial-recognition-technology-illinois"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "university-of-michigan-hospital",
- "name": "University of Michigan Hospital"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "epic-systems",
- "name": "Epic Systems"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "sepsis-patients",
- "name": "sepsis patients"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1449],
- "vector": [
- -0.05199453607201576, 0.09001125395298004, 0.017660949379205704, -0.0864582508802414,
- 0.10642888396978378, 0.00751030957326293, -0.010017248801887035, 0.07853184640407562,
- 0.10495826601982117, -0.13606593012809753, 0.007733894977718592, 0.07376214116811752,
- 0.04663729667663574, -0.041814208030700684, 0.03537315875291824, -0.08528770506381989,
- -0.1144307404756546, -0.06997566670179367, -0.026525868102908134, -0.12517516314983368,
- -0.07670372724533081, 0.03458051756024361, -0.021472938358783722, 0.11136570572853088,
- -0.05666547268629074, 0.04000813141465187, 0.07180512696504593, 0.1548173576593399,
- -0.08061753213405609, 0.019765766337513924, -0.0188903771340847, -0.045695710927248,
- 0.1317029893398285, 0.009860016405582428, -0.0022565366234630346, 0.08706045150756836,
- -0.01163950003683567, -0.03463287279009819, 0.05186445266008377, -0.028826292604207993,
- 0.049078915268182755, 0.2948485016822815, -0.005059619899839163, 0.00041340498137287796,
- 0.00753541337326169, -0.048890501260757446, 0.007115066051483154, 0.07377529889345169,
- -0.0003127820964436978, 0.01802571304142475, -0.038058213889598846, 0.03383465111255646,
- -0.012441489845514297, 0.05231541395187378, -0.1061626598238945, 0.031449541449546814,
- -0.005911992862820625, -0.01351282186806202, 0.06105538457632065, -0.0688350573182106,
- -0.026803404092788696, -0.1756076067686081, -0.012551768682897091, -0.09274870902299881,
- 0.10258375853300095, -0.09819978475570679, -0.04963357001543045, 0.048736024647951126,
- 0.013272658921778202, 0.06227554753422737, 0.06307535618543625, -0.025389932096004486,
- -0.05015263706445694, 0.02500801347196102, -0.020871266722679138, -0.016668489202857018,
- -0.02055709809064865, 0.10797114670276642, -0.09325011074542999, 0.0007549852598458529,
- 0.09043638408184052, -0.10539809614419937, 0.36157500743865967, -0.011105058714747429,
- 0.0008091902709566057, -0.03546908497810364, 0.08821021765470505, 0.015437990427017212,
- 0.0696677565574646, 0.0002622680622152984, -0.05101003870368004, 0.03877237066626549,
- -0.0495450384914875, 0.011846286244690418, 0.09171915054321289, 0.015004931017756462,
- 0.005305762868374586, -0.0636560246348381, 0.0019929923582822084, -0.060880694538354874,
- 0.021016912534832954, -0.044132575392723083, 0.10808954387903214, 0.11047640442848206,
- -0.0291520394384861, 0.02063935063779354, 0.05103563889861107, -0.048614438623189926,
- 0.0461583286523819, -0.06686954945325851, -0.0053892433643341064, -0.013970076106488705,
- 0.04199632257223129, -0.001100845285691321, 0.019353516399860382, -0.017540793865919113,
- 0.03798888623714447, 0.10317286103963852, 0.10019887983798981, 0.02865663357079029,
- 0.014180104248225689, 0.009945932775735855, -0.016226930543780327,
- -0.021651724353432655, -0.06612612307071686, -0.025396937504410744,
- -0.07312637567520142, -0.030818890780210495, -0.0027427540626376867,
- 0.060780998319387436, -0.059674106538295746, -0.1769963651895523,
- -0.0016113825840875506, 0.05647920072078705, -0.04707653075456619, -0.04000072181224823,
- -0.01702841930091381, -0.01083929743617773, 0.057600025087594986, -0.01451179664582014,
- -0.031623292714357376, 0.0816005989909172, 0.033563703298568726, 0.051612433046102524,
- 0.11874205619096756, 0.049760159105062485, -0.08270189166069031, -0.03942354768514633,
- -0.020201614126563072, -0.0027086553163826466, 0.10146396607160568,
- -0.15813300013542175, -0.05762729048728943, 0.014314765110611916, 0.026073653250932693,
- 0.8111642599105835, 0.09493625909090042, 0.1923823058605194, 0.016524802893400192,
- -0.039865609258413315, 0.2036599963903427, -0.04002632200717926, 0.08515803515911102,
- -0.08841399848461151, -0.07579406350851059, 0.02971600741147995, -0.08672580122947693,
- -0.007844085805118084, 0.06023300811648369, 0.026704156771302223, 0.1374434232711792,
- 0.026419302448630333, 0.07354675233364105, -0.01706649363040924, -0.10071483999490738,
- -0.026066679507493973, 0.09404155611991882, 0.01505199447274208, -0.09515321999788284,
- -0.030896585434675217, 0.06092119961977005, 0.06519529223442078, -0.08171868324279785,
- -0.002728739520534873, -0.10479307919740677, 0.04448786377906799, -0.04365909472107887,
- 0.0675659030675888, -0.0341576412320137, 0.018663834780454636, 0.0076681035570800304,
- 0.04205483943223953, 0.037605781108140945, -0.0905221700668335, -0.015440310351550579,
- 0.0676969438791275, 0.0008117942488752306, -0.047957561910152435, 0.08494087308645248,
- -0.08400142192840576, 0.03146739676594734, 0.05839720740914345, 0.19124263525009155,
- -0.10814640671014786, 0.009653173387050629, -0.018773844465613365,
- -0.0017149073537439108, -0.009852877818048, 0.03805902227759361, -0.004594819620251656,
- -0.07289168983697891, 0.10222538560628891, 0.04015430063009262, 0.09360123425722122,
- 0.09390950947999954, -0.034218672662973404, 0.05984180048108101, 0.026072440668940544,
- -0.057023584842681885, -0.05320419743657112, 0.056952398270368576, 0.03959536924958229,
- -0.020650925114750862, -0.04603147879242897, 0.015271803364157677, 0.03336479142308235,
- 0.03931722044944763, 0.00304642622359097, 0.03394429385662079, -0.03187272697687149,
- -0.10274138301610947, 0.07373753190040588, 0.03373101353645325, -0.01620975136756897,
- 0.09437245875597, -0.04106341302394867, -0.026950929313898087, -0.005054070148617029,
- 0.002514616120606661, 0.03466020151972771, -0.034990161657333374, 0.06656619906425476,
- 0.09892372041940689, 0.06368672102689743, 0.025830376893281937, 0.03261883556842804,
- 0.06634937226772308, 0.058473244309425354, 0.058489564806222916, 0.07555316388607025,
- -0.019825099036097527, -0.06045600771903992, -0.019883017987012863,
- -0.0006662739906460047, 0.024794811382889748, 0.015218853950500488,
- -0.03013366460800171, -0.06109534949064255, -0.11282262206077576, -0.010574031621217728,
- -0.08214690536260605, -0.07064805179834366, -0.017077067866921425, 0.05850137770175934,
- -0.06295567005872726, -0.05449969321489334, -0.06786131113767624, 0.02373216673731804,
- 0.11166851967573166, -0.007948986254632473, -0.025272661820054054, -0.13900154829025269,
- 0.0688328742980957, -0.00510767986997962, 0.05484871566295624, 0.031279291957616806,
- 0.030216937884688377, 0.0032497672364115715, -0.0695231631398201, 0.052283816039562225,
- -0.008710690774023533, -0.005434486549347639, -0.05424945801496506,
- -0.08599686622619629, -0.048770222812891006, -0.016873223707079887,
- -0.0032086754217743874, -0.07323400676250458, 0.02825068309903145, 0.02373611368238926,
- 0.05865241214632988, -0.032953280955553055, -0.0501420721411705, 0.04026405140757561,
- -0.017534947022795677, 0.0002042022970272228, 0.09388530999422073, -0.07430996745824814,
- 0.04104682430624962, -0.016160115599632263, -0.055814336985349655,
- -0.051495812833309174, 0.007600872311741114, -0.028899390250444412, 0.02677043341100216,
- 0.010700119659304619, 0.0015490100486204028, -0.046200063079595566,
- -0.010313947685062885, 0.0020762106869369745, -0.051828086376190186,
- -0.09842003881931305, -0.05074210837483406, 0.09069884568452835, 0.0333775132894516,
- -0.007128614466637373, 0.011210136115550995, -0.04104775935411453, 0.03745715320110321,
- 0.002049974864348769, 0.011600241996347904, 0.01791776344180107, 0.024876834824681282,
- -0.01869499683380127, 0.010720046237111092, 0.08004359155893326, -0.041978806257247925,
- 0.03357521444559097, 0.0685642883181572, 0.38996076583862305, -0.11313240230083466,
- 0.08253378421068192, 0.12973123788833618, 0.019815657287836075, 0.0034759065601974726,
- -0.06085246428847313, 0.054113682359457016, 0.10353012382984161, 0.08454915881156921,
- 0.11808644235134125, -0.06671074032783508, -0.014351324178278446, -0.12005653232336044,
- 0.11170808970928192, 0.0013771001249551773, 0.007604104001075029, -0.03169185295701027,
- -0.13324718177318573, 0.032443054020404816, 0.05631197243928909, -0.027578067034482956,
- 0.004933982156217098, -0.021145444363355637, -0.09339633584022522, 0.020848916843533516,
- 0.0038240195717662573, 0.011643708683550358, -0.027777770534157753, 0.03407415375113487,
- -0.012529806233942509, 0.06677310913801193, 0.06416495144367218, 0.036207135766744614,
- -0.15479405224323273, -0.0001843054487835616, -0.06840138137340546, -0.0949910581111908,
- 0.06376001983880997, -0.017277443781495094, 0.0844525471329689, 0.047085512429475784,
- -0.051473669707775116, 0.03826993331313133, -0.02377907745540142, -0.04497171565890312,
- 0.03872454911470413, 0.06838241219520569, 0.030157623812556267, 0.03238513693213463,
- 0.165396049618721, -0.028822969645261765, -0.08744388818740845, -0.07212712615728378,
- 0.07743490487337112, 0.147261843085289, -0.0031776747200638056, 0.025589989498257637,
- 0.017231713980436325, -0.05849742144346237, -0.019073570147156715, -0.06569086015224457,
- -0.06284946948289871, -0.0034358615521341562, -0.031505901366472244, 0.0979730486869812,
- 0.03735239803791046, -0.05407970771193504, -0.1239236518740654, -0.02306232415139675,
- -0.07024039328098297, 0.01276352908462286, 0.11219410598278046, -0.06101682409644127,
- 0.038583096116781235, 0.042192745953798294, -0.003910359926521778, 0.06885530799627304,
- -0.07052293419837952, 0.030497420579195023, -0.014036305248737335, 0.051559969782829285,
- 0.039773620665073395, 0.03867898881435394, -0.056619446724653244, 0.11884000897407532,
- -0.07172613590955734, 0.05097963288426399, 0.023423871025443077, -0.07758636027574539,
- 0.031902723014354706, -0.009380518458783627, -0.002050515729933977,
- 0.028538018465042114, -0.03391475975513458, 0.003584990743547678, -0.08592323958873749,
- -0.042808372527360916, -0.07682430744171143, -0.10804027318954468, -0.03555508702993393,
- -0.06324927508831024, -0.0015982534969225526, -0.12498795241117477,
- 0.013756769709289074, -0.022627966478466988, -0.07569148391485214,
- -0.004680239129811525, 0.033266134560108185, 0.008536350913345814, -0.09730546176433563,
- -0.006719786208122969, -0.01809820532798767, 0.042930103838443756,
- -0.004254752770066261, -0.029024094343185425, 0.05437092483043671, 0.09826754778623581,
- 0.02073703147470951, -0.021720822900533676, -0.014473113231360912, -0.04250830039381981,
- 0.07140205055475235, -0.10702499747276306, -0.4385310709476471, 0.04543231055140495,
- 0.04187550023198128, 0.01481818687170744, 0.0018800830002874136, -0.10237516462802887,
- 0.07001534849405289, 0.018354399129748344, -0.050420090556144714, 0.09589847922325134,
- -0.06736008077859879, 0.027991535142064095, -0.01763852871954441, -0.07758303731679916,
- -0.0449155829846859, -0.04655899852514267, -0.038804441690444946, 0.06307697296142578,
- -0.053796280175447464, -0.0726894736289978, -0.1445193737745285, 0.057305220514535904,
- -0.052369002252817154, 0.0002815942862071097, 0.046480536460876465,
- 0.027509082108736038, -0.02614530734717846, -0.05820844694972038, 0.02429230883717537,
- 0.04066154733300209, 0.04714600369334221, -0.11942709982395172, 0.019361281767487526,
- 0.010362616740167141, -0.07289787381887436, 0.1509581208229065, -0.00024778390070423484,
- 0.03804765269160271, -0.07096157222986221, 0.1051512360572815, 0.05107513442635536,
- 0.18881292641162872, -0.02013181336224079, -0.009680473245680332, 0.019077075645327568,
- 0.11952421814203262, 0.026462558656930923, 0.04812479019165039, 0.006085144821554422,
- 0.023574208840727806, 0.08488132059574127, -0.019500229507684708, 0.11614558100700378,
- -0.07829850912094116, -0.010506005957722664, -0.08599434047937393, 0.006077150348573923,
- 0.016786612570285797, -0.04876411706209183, 0.1960025280714035, -0.004713756497949362,
- 0.02902045287191868, 0.035918161273002625, -0.04968314245343208, 0.00303510669618845,
- -0.1134517639875412, -0.14163479208946228, -0.01609937660396099, -0.008130460977554321,
- 0.021676259115338326, -0.021113820374011993, -0.10131736099720001, -0.0386524461209774,
- -0.016024181619286537, 0.015718860551714897, 0.1757117360830307, -0.05737537890672684,
- 0.05612868815660477, 0.011701046489179134, 0.14214298129081726, 0.03418582305312157,
- 0.013933224603533745, 0.04104117676615715, 0.08964790403842926, 0.014644013717770576,
- 0.0294741690158844, -0.036110084503889084, -0.13007687032222748, -0.017899224534630775,
- 0.1329270452260971, -0.021429171785712242, 0.11449885368347168, 0.058988817036151886,
- -0.06728368997573853, -0.05642647668719292, 0.010837939567863941, -0.019661983475089073,
- 0.02416548691689968, -0.41675183176994324, -0.0018475755350664258, 0.10758217424154282,
- -0.03110373765230179, 0.041838742792606354, 0.05732952058315277, 0.05374033749103546,
- -0.04789739102125168, -0.019416799768805504, -0.08727909624576569, 0.18020176887512207,
- 0.05158306285738945, 0.03271637111902237, -0.12186357378959656, -0.008117767982184887,
- 0.06344787031412125, -0.026714982464909554, -0.010395113378763199, 0.09367626905441284,
- -0.20239514112472534, 0.004798868205398321, -0.054139602929353714, 0.0924653559923172,
- 0.02931051328778267, 0.02701239474117756, 0.0876297578215599, -0.02819037064909935,
- 0.014895777218043804, 0.04197966679930687, 0.009615997783839703, 0.03986340016126633,
- -0.0077039082534611225, -0.038044653832912445, 0.1304606795310974, 0.08324507623910904,
- 0.09200484305620193, -0.022480498999357224, 11.778461456298828, 0.029915278777480125,
- 0.03857474774122238, -0.07683157920837402, -0.031246230006217957, -0.04162184149026871,
- 0.022872628644108772, -0.07468069344758987, 0.07514694333076477, 0.1390841007232666,
- -0.01696867309510708, -0.021769622340798378, -0.0025601570960134268,
- -0.10216030478477478, 0.03379284217953682, -0.11254513263702393, -0.08202368021011353,
- -0.05333196744322777, 0.019785379990935326, -0.03432387486100197, -0.007822918705642223,
- -0.0327516533434391, 0.047363270074129105, -0.00911401305347681, -0.0682082548737526,
- 0.055186137557029724, 0.010263911448419094, 0.0027574440464377403, 0.010658618062734604,
- 0.0072883968241512775, 0.013283980078995228, -0.004548355005681515, 0.0284480731934309,
- -0.007054434157907963, 0.037059325724840164, 0.06409809738397598, 0.10884669423103333,
- 0.08253049850463867, 0.045228343456983566, 0.06995740532875061, 0.009216532111167908,
- 0.04486137256026268, -0.00210759905166924, 0.07262647151947021, 0.055029068142175674,
- 0.04535777121782303, 0.0015645102830603719, 0.11842692643404007, 0.006731630768626928,
- 0.08976683020591736, 0.08161430805921555, -0.014237669296562672, 0.11484501510858536,
- -0.0016255968948826194, -0.022063151001930237, 0.050639890134334564,
- -0.007782300002872944, -0.087276890873909, 0.04159766808152199, 0.0622892864048481,
- -0.0619124099612236, 0.1506965160369873, 0.03194352984428406, 0.1465531587600708,
- 0.03482530266046524, 0.07140086591243744, 0.0843966156244278, 0.09597045928239822,
- -0.08753125369548798, -0.09220593422651291, 0.006323274224996567, -0.11647892743349075,
- -0.10429563373327255, 0.11193277686834335, 0.12854067981243134, -0.030336907133460045,
- 0.026488278061151505, -0.0183999165892601, 0.04714705049991608, -0.018971934914588928,
- -0.007400432601571083, 0.06839168816804886, -0.016767920926213264, 0.014565465040504932,
- 0.08727136999368668, 0.026841524988412857, 0.08506373316049576, 0.09076583385467529,
- -0.011607743799686432, -0.07317333668470383, -0.07798567414283752, 0.06350131332874298,
- 0.0006363173015415668, -0.04933087155222893, -0.019097646698355675, -0.0333540104329586,
- 0.013937574811279774, -0.17682871222496033, 0.07828528434038162, 0.07067925482988358,
- -0.08981356024742126, -0.039566148072481155, -0.05108100548386574, 0.05291292816400528,
- 0.019678186625242233, 0.06113634631037712, -0.06017962098121643, 0.0024568329099565744,
- 0.011707148514688015, 0.04869041591882706, -0.031848467886447906, 0.04691428691148758,
- 0.05803797021508217, -0.06898301094770432, 0.019527271389961243, 0.05759837105870247,
- -0.052017755806446075, 0.0010809230152517557, 0.043096739798784256, 0.02579190582036972,
- -0.08121573179960251, -0.047235023230314255, -0.02069758251309395, -0.0672336220741272,
- -0.03363915905356407, -0.03325248137116432, 0.020650677382946014, -0.01203866396099329,
- -0.09053808450698853, -0.018891338258981705, 0.040915049612522125, 0.06735816597938538,
- 0.13521669805049896, -0.05623537302017212, 0.05760577693581581, -0.06960847228765488,
- -0.04579056799411774, 0.08515903353691101, 0.08281361311674118, 0.049761880189180374,
- -0.06816139072179794, -0.02161339670419693, -0.11951103806495667, -0.09716866910457611,
- -0.008216220885515213, 0.1459164321422577, 0.07441329956054688, 0.06171416491270065,
- 0.01943470537662506, -0.03974084556102753, -0.0509759746491909, 0.08867587149143219,
- 0.05766509473323822, 0.06300156563520432, 0.030397998169064522, -0.03945061191916466,
- -0.024230865761637688, 0.10836746543645859, -0.06548616290092468, -0.012938311323523521,
- -0.013439441099762917, -0.06854796409606934, 0.10828050225973129, 0.16075627505779266,
- 0.020978813990950584, 0.07066325098276138, 0.04082737863063812, 0.00881638191640377,
- 0.03174528107047081, -0.012335020117461681, 0.05172526463866234, -0.028288690373301506,
- -0.05945717170834541, -0.09313592314720154, -0.001360451802611351, 0.09394437819719315,
- 0.003523913212120533, -0.12760601937770844, -0.04698662832379341, -0.03407223895192146
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 123,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 124,
- "similarity": 0.9982439875602722
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 225,
- "similarity": 0.9981922507286072
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 54,
- "similarity": 0.998183012008667
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Gary Smith"],
- "epoch_date_downloaded": 1632355200,
- "epoch_date_modified": 1632355200,
- "epoch_date_submitted": 1632355200,
- "flag": null,
- "report_number": 1449,
- "source_domain": "mindmatters.ai",
- "submitters": ["Lilianna Smith"],
- "title": "An Epic Failure: Overstated AI Claims in Medicine",
- "url": "https://mindmatters.ai/2021/08/an-epic-failure-overstated-ai-claims-in-medicine/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "unnamed-large-academic-hospital",
- "name": "unnamed large academic hospital"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "optum",
- "name": "Optum"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "black-patients",
- "name": "Black patients"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1450, 1522, 2262],
- "vector": [
- -0.041590334847569466, 0.08861065655946732, 0.0064174269791692495, -0.095608651638031,
- 0.10455722610155742, 0.0023863622918725014, 0.00027522766807427007, 0.09551494816939037,
- 0.055310179789861046, -0.1417469084262848, 0.016665243543684483, 0.030884964391589165,
- 0.03504549711942673, -0.08666333680351575, 0.015888142089049023, -0.07621974808474381,
- -0.11707062025864919, -0.060762026657660805, 0.00755793663362662, -0.12191953758398692,
- -0.0892608438928922, 0.017766873817890882, -0.04323555218676726, 0.09580156952142715,
- -0.04218564058343569, 0.037469134045143924, 0.09128090739250183, 0.09327896187702815,
- -0.015491669376691183, 0.037734723494698606, -0.059237090249856315,
- -0.07393760854999225, 0.11240903784831364, 0.025120875642945368, 0.008332427125424147,
- 0.07799404859542847, 0.0028680708880225816, -0.03209292578200499, 0.01414957270026207,
- -0.016360245334605377, 0.010767413768917322, 0.2887577712535858, 0.004064050304198948,
- -0.017050324473530054, 0.017245927670349676, -0.04989728440220157,
- 0.0020398759904007116, 0.05288108934958776, -0.004292324340591828,
- -0.004419190809130669, -0.0272784602517883, 0.07203454400102298, -0.027717231462399166,
- 0.025329481810331345, -0.13321197777986526, 0.06496085847417514, 0.014805186229447523,
- 0.013370085376664065, 0.06956234698494275, -0.09553105135758717, -0.008710485572616259,
- -0.1985803246498108, -0.020939639769494534, -0.11154110232988994, 0.12493163347244263,
- -0.0547934335966905, -0.057842039813598, 0.036968485452234745, 0.012733380310237408,
- 0.0742680902282397, 0.06754573186238606, -0.004975256199638049, -0.04805169254541397,
- -0.0004874692919353644, -0.024167700360218685, -0.0038862970347205796,
- -0.008470028173178434, 0.1508760799964269, -0.09194882462422053, 0.023318344028666615,
- 0.052967830250660576, -0.06818631539742152, 0.3443535367647807, -0.001524884020909667,
- 0.003652330720797181, -0.038687580885986485, 0.08862351377805074, 0.022999126464128494,
- 0.04778824125727018, 0.025263377465307713, -0.004731083599229653, 0.034007941683133446,
- -0.07060748090346654, 0.004330183689792951, 0.08305380741755168, 0.028967132170995075,
- 0.013172139413654804, -0.04303580716562768, 0.010894453463455042, -0.06616987163821857,
- -0.0053780674158285064, -0.041600774973630905, 0.10418115556240082, 0.0755376269419988,
- -0.07040584211548169, 0.045084370921055474, 0.09561818838119507, -0.06116528436541557,
- 0.030990402214229107, -0.05018648381034533, 0.034508139515916504, -0.033288036162654557,
- 0.0437984149903059, -0.00228561422166725, 0.012706489923099676, -0.07498921950658162,
- 0.03432071581482887, 0.06429816409945488, 0.07805255552132924, 0.02379473236699899,
- 0.06551378841201465, 0.04812213405966759, 0.061637538174788155, -0.017032206679383915,
- -0.06960205423335235, 0.00700974448894461, -0.05052380512158076, -0.0015153293497860432,
- -0.012446989926199118, 0.059965488811333977, -0.053928423672914505,
- -0.15926896532376608, -0.03530345484614372, 0.09497394412755966, -0.06108089163899422,
- -0.057265039533376694, -0.02938231515387694, -0.0019692330000301204,
- 0.04018246475607157, -0.037685838217536606, -0.012510751684506735, 0.056841570883989334,
- 0.06792302926381429, 0.04184879238406817, 0.09675626705090205, 0.034188214068611465,
- -0.06771560882528622, -0.05514293722808361, -0.012753846434255442,
- -0.029753793651858967, 0.11510048061609268, -0.15148507555325827, -0.06410159791509311,
- -0.01268060008684794, -0.0008352274696032206, 0.7314440011978149, 0.11718367288510005,
- 0.18924820919831595, -0.0027261152863502502, -0.04272119080026945, 0.15489978094895682,
- -0.010733331243197123, 0.06013554707169533, -0.07186908026536305, -0.05205901525914669,
- 0.05922995135188103, -0.09872898956139882, -0.05040151625871658, 0.02129401545971632,
- 0.04181193249921004, 0.1295804555217425, -0.004241790544862549, 0.07275762284795444,
- 0.009504271826396385, -0.1043283020456632, -0.04093430874248346, 0.08090917517741521,
- 0.027373068034648895, -0.13120794296264648, -0.021606030718733866, 0.07979828615983327,
- 0.07844734316070874, -0.07599915315707524, 0.011720593553036451, -0.07870671649773915,
- 0.05585454280177752, -0.01579864804322521, 0.05824915257592996, -0.017119722673669457,
- 0.03894670990606149, -0.012129783009489378, 0.04429790377616882, 0.018706132968266804,
- -0.1386991317073504, -0.0380750068773826, 0.06945736209551494, -0.018685672742625076,
- -0.02850586532925566, 0.05720388020078341, -0.0975100224216779, 0.035053551817933716,
- 0.004449230929215749, 0.22091016670068106, -0.1476424584786097, 0.008939234695086876,
- -0.022358437223980825, 0.014071313043435415, 0.04624214520057043, 0.02462492324411869,
- -0.028678715229034424, -0.05574592327078184, 0.07451220229268074, 0.04673131679495176,
- 0.1131889745593071, 0.04047312525411447, -0.03224517963826656, 0.047359488904476166,
- 0.10344127317269643, -0.05195206465820471, -0.024415017416079838, 0.06555598477522533,
- 0.0486824040611585, -0.07937776048978169, -0.007479491177946329, 0.04033018772800764,
- 0.03842365990082423, 0.036472454046209656, -0.020253482274711132, -0.006950913152347009,
- -0.014461861923336983, -0.07606578121582667, 0.0882948487997055, 0.030844903240601223,
- 0.02607616875320673, 0.07360099876920383, -0.038670833533008896, -0.023253676171104114,
- -0.04877144408722719, -0.03194727003574371, 0.018494254909455776, -0.055211265881856285,
- 0.06112499659260114, 0.0876626968383789, 0.09744954605897267, 0.021089592133648694,
- 0.06994856645663579, 0.06868130216995876, 0.05500582108894984, 0.04998927563428879,
- 0.04890758668382963, -0.035016618048151336, -0.04003979327778021, -0.02160111318031947,
- -0.014273919669600824, 0.01440590557952722, -0.013732517991835872, -0.0415108979990085,
- -0.053235857437054314, -0.09064522633949916, -0.027164698267976444, -0.0422170776873827,
- -0.07560598353544871, 0.01865370268933475, 0.0231366412093242, -0.004766383829216163,
- -0.11038936674594879, -0.07997387150923412, 0.012218091326455275, 0.08006066083908081,
- -0.03396468174954256, -0.02184745902195573, -0.11758950849374135, 0.04205493163317442,
- 0.0073728873491442455, 0.06939210494359334, 0.007434752304106951, 0.03441763948649168,
- 0.03689284063875675, -0.06531956046819687, 0.0349852479994297, -0.023233849710474413,
- -0.03411962278187275, -0.04356600965062777, -0.07839740067720413, -0.06343151753147443,
- -0.027360614389181137, 0.028960582489768665, -0.07652593900760014, 0.04525316568712393,
- 0.04672269026438395, 0.047510950515667595, -0.017150091628233593, -0.05318534250060717,
- 0.052902652571598686, -0.02661690015035371, -0.03130111781259378, 0.09941200415293376,
- -0.047134825959801674, 0.041902673741181694, 0.0005124669211606184,
- -0.07151889055967331, -0.0523297426601251, -0.0014049168676137924, -0.03663445574541887,
- 0.0254638297483325, 0.011444415746761175, -0.019304121223588783, -0.020091874602561195,
- -0.0008673326422770818, 0.024306335641692083, -0.055322226136922836,
- -0.12739072988430658, -0.09296612689892451, 0.0993707204858462, 0.014383015067627033,
- 0.0017491184795896213, -0.0005232157418504357, -0.03329121135175228,
- 0.07013873631755511, 0.00775273591716541, 0.019820215180516243, 0.008663512766361237,
- 0.04562930452326933, 0.007250773099561532, 0.02797984189237468, 0.0627508672575156,
- -0.06715519229571025, 0.017278774020572502, 0.0745456616083781, 0.4740600387255351,
- -0.13776039332151413, 0.06869889919956525, 0.09541233380635579, 0.050357372189561524,
- 0.03308891085907817, -0.06413617233435313, 0.08681280414263408, 0.09780320028464,
- 0.12733673304319382, 0.11654925098021825, -0.03227879634747902, -0.018138060656686623,
- -0.11517885078986485, 0.10252923021713893, 0.007397110729167859, 0.025391337151328724,
- -0.03806787170469761, -0.12001045296589534, -0.02189843636006117, 0.06058232734600703,
- -0.010190592768291632, 0.031411878454188503, 0.015550150031534335, -0.04130066682895025,
- -0.0015505643095821142, -0.037722064803044, -0.004935742375285675, -0.02256780831764142,
- 0.040006768133025616, -0.010087855781118074, 0.08636304487784703, 0.015795616743465263,
- 0.05279044434428215, -0.12964839984973273, 0.033580336098869644, -0.10038663943608601,
- -0.07297654853512843, 0.09542645265658696, 0.002297396034312745, 0.04339332816501459,
- 0.05892141908407211, -0.014063354736814896, 0.05086975606779257, -0.010550079867243767,
- -0.05338126545151075, 0.024770093460877735, 0.08217145750919978, 0.020641070169707138,
- 0.04676826919118563, 0.1996927410364151, -0.02687799061338107, -0.0430908240377903,
- -0.08895522852738698, 0.04918539461990198, 0.1735833833614985, 0.04415419138967991,
- 0.02155783275763194, 0.024175111825267475, -0.08383989582459132, 0.021345344682534535,
- -0.04920408253868421, -0.0905237893263499, 0.013192754238843918, -0.023869828321039677,
- 0.08572052915891011, 0.016729348339140415, -0.014470313054819902, -0.11363841096560161,
- -0.008520707798500856, -0.047929721573988594, 0.01090745534747839, 0.0867342824737231,
- -0.059028166035811104, 0.030317684014638264, -0.008893324062228203,
- -0.013220035296399146, 0.045062139009435974, -0.07553265367945035, 0.02989029511809349,
- 0.02660225455959638, 0.03922872866193453, 0.010710098421744382, 0.02884751372039318,
- -0.019886303848276537, 0.09245253105958302, -0.07221213355660439, 0.06106441840529442,
- 0.004922982615729173, -0.02958454874654611, 0.020683953848977883, 0.013267138972878456,
- 0.026084292059143383, 0.028876643317441147, -0.03718158191380402, -0.005066681032379468,
- -0.03822781642278036, -0.027948986738920212, -0.0914675494035085, -0.0835195283095042,
- -0.008399141176293293, -0.08461856221159299, 0.004844662267714739, -0.12436997145414352,
- -0.008214184703926245, -0.02783659224708875, -0.09195635716120402,
- -0.014669563621282578, 0.02235694571087758, 0.035923953905391194, -0.1382255678375562,
- 0.03315576228002707, 0.00970456221451362, 0.07977635661760966, -0.005096948705613613,
- -0.03104963091512521, 0.03003266267478466, 0.10703605910142262, 0.043204194555679955,
- -0.028465166067083675, -0.04838236297170321, -0.09351253012816112, 0.062054719775915146,
- -0.10539835194746654, -0.39813260237375897, 0.0649401272336642, 0.030057767406105995,
- 0.040801458060741425, 0.004706372662136952, -0.07088503614068031, 0.03881428142388662,
- 0.01284445325533549, -0.04367870961626371, 0.061756608386834465, -0.05167533208926519,
- 0.008181734631458918, 0.0014287323380510013, -0.06145648037393888,
- -0.029265593737363815, -0.01187835781214138, -0.055943671613931656, 0.04048821205894152,
- -0.03255143575370312, -0.08326816310485204, -0.09814144919315974, 0.01653301401529461,
- -0.0234459030131499, 0.003078120139737924, 0.014388099157561859, 0.04693871612350146,
- -0.025054969514409702, -0.04909593736131986, 0.05226322387655576, 0.061798290659983955,
- 0.05294875924785932, -0.07053179293870926, 0.01941550150513649, 0.01882978528738022,
- -0.03183726531763872, 0.11130118121703465, 0.029393669217824936, 0.01972928022344907,
- -0.050783115128676094, 0.06478022783994675, 0.04088959842920303, 0.18798800309499106,
- 0.027077549835667014, -0.015541268978267908, 0.01952304442723592, 0.13511467973391214,
- 0.03469013422727585, 0.04485662219425043, 0.02135785110294819, -0.018054553293040954,
- 0.057453619937102, 0.014011214332034191, 0.11645278334617615, -0.061995397011439,
- -0.008228184112037221, -0.05803726861874262, 0.037553549433747925,
- -0.005724393083558728, -0.025072552574177582, 0.19628808895746866, 0.007572649357219537,
- 0.014136396736527482, 0.015747722936794162, -0.04608649636308352, 0.015975683539484937,
- -0.08631347368160884, -0.1175793210665385, -0.025406669204433758,
- -0.0013400204479694366, 0.00430071617787083, -0.012748896687602004,
- -0.12004391849040985, -0.005551492872958382, -0.004330478882669316,
- 0.013583124227200946, 0.15112805366516113, -0.02661971189081669, 0.02412651355067889,
- 0.0018941044496993225, 0.1071704129378001, 0.032712120562791824, -0.0213159096116821,
- 0.07709870859980583, 0.12020936608314514, 0.011007783313592276, 0.035725210482875504,
- -0.017798777824888628, -0.07879099839677413, -0.003187859896570444, 0.12144584208726883,
- -0.06583457067608833, 0.10372976462046306, 0.07146074126164119, -0.06484958405296008,
- -0.05642324189345042, 0.02849538003404935, -0.019012972091635067, 0.01753359183203429,
- -0.42859188715616864, -0.03481238459547361, 0.08341401815414429, 0.038274475994209446,
- 0.015554042998701334, 0.04788155729571978, -0.020406951662153006, -0.04237230742971102,
- 0.006015064815680186, -0.11433558414379756, 0.1309188405672709, 0.023566393026461203,
- 0.07066216071446736, -0.09104919930299123, 0.01557823084294796, 0.08827913800875346,
- -0.022703704113761585, 0.012238593694443503, 0.07492000112930934, -0.2452047516902288,
- 0.01375580858439207, -0.030340250581502914, 0.0994911218682925, 0.04545793433984121,
- 0.04292060558994611, 0.08266427119572957, -0.04951538642247518, 0.04270868251721064,
- 0.09125202894210815, -0.03418074920773506, 0.043225801239411034, -0.04852800816297531,
- -0.009981617952386538, 0.10009847581386566, 0.09212123602628708, 0.10271850600838661,
- -0.02797638128201167, 11.839580535888672, 0.03062072458366553, 0.027103871388438467,
- -0.09687440345684688, -0.050899967551231384, -0.053455185145139694, 0.02640677181382974,
- -0.12086294839779536, 0.08848663792014122, 0.15741310020287833, -0.03662024065852165,
- -0.035627136627833046, -0.001384408911690116, -0.08214859664440155, 0.02460375986993313,
- -0.07050467034180959, -0.07711216434836388, -0.02251352121432622, 0.0330752128114303,
- -0.04232491677006086, -0.01909550465643406, 0.023195903437832992, 0.06432411819696426,
- 0.039211749409635864, -0.04718149080872536, -0.020436900357405346, 0.007653632666915655,
- -0.013575469143688679, 0.026979651457319658, 0.01964731654152274, 0.0017283062140146892,
- -0.00956308733051022, 0.048656608909368515, -0.01157682699461778, 0.04691679899891218,
- 0.02600562758743763, 0.07471158231298129, 0.025285804644227028, 0.018807051392892998,
- 0.1032892217238744, 0.01688932115212083, 0.03940816378841797, 0.03100133314728737,
- 0.024623779579997063, 0.07662656779090564, 0.08997010191281636, 0.054101662089427315,
- 0.08863866577545802, -0.00015073642134666443, 0.0819025660554568, 0.0903552124897639,
- -0.007792457899389167, 0.12416434288024902, -0.040089428424835205,
- -0.007738621129343907, 0.048583950847387314, 0.024935585136214893, -0.07590201124548912,
- 0.047221370662252106, 0.009696392652889093, -0.054279460261265434, 0.13617565234502158,
- 0.011632719212987771, 0.11796130985021591, -0.001144988772769769, 0.07391984015703201,
- 0.04972289005915324, 0.08149038503567378, -0.11466831962267558, -0.05158630510171255,
- 0.006175864410276215, -0.14504911998907724, -0.08645084997018178, 0.1118920569618543,
- 0.07518999899427097, -0.037753082190950714, -0.0029106883642574153,
- -0.02299580800657471, 0.04635235543052355, -0.00037300423718988895,
- 0.006876710957537095, 0.08607376615206401, -0.020260505999128025,
- -0.0052656618257363634, 0.07315563162167867, 0.029345999316622812, 0.03489291543761889,
- 0.10935074587663014, -0.04764866456389427, -0.05459411131838957, -0.08000776544213295,
- 0.03338664583861828, -0.022410020581446588, -0.07229261472821236, 0.010000517747054497,
- -0.03945715601245562, 0.018130710814148188, -0.17355759938557944, 0.08540575206279755,
- 0.10911030819018681, -0.10111243774493535, -0.048926807940006256, -0.06390204280614853,
- 0.04547608643770218, -0.008622929143408934, 0.054633998622496925, -0.03730267286300659,
- -0.0196092333450603, 0.0050071679676572485, 0.053158833334843315, -0.016707404516637325,
- 0.0447585042566061, 0.08299488946795464, -0.060972860703865685, 0.0008714543655514717,
- 0.03447281817595164, -0.06038985028862953, -0.018216625787317753, 0.05340779572725296,
- 0.03845624439418316, -0.06914425641298294, -0.05602070316672325, -0.026732342938582104,
- -0.004480939668913682, -0.029732517898082733, -0.04240266606211662, 0.03772358347972234,
- 0.026925149684151013, -0.09126730511585872, -0.03983132541179657, 0.033727481961250305,
- 0.06384620815515518, 0.0988082264860471, 0.0002740427541236083, 0.09949150681495667,
- -0.052976530666152634, -0.053452501694361367, 0.054172164450089134,
- 0.045368908594051995, 0.042035285383462906, -0.05716471808652083, -0.030878532057007153,
- -0.07908453047275543, -0.10196537772814433, 0.019656204308072727, 0.09578479578097661,
- 0.05080948149164518, 0.04441028709212939, 0.002337255204717318, -0.059412255262335144,
- -0.05306237625579039, 0.0948825478553772, 0.006368102466998001, -0.018451876783122618,
- 0.02103678695857525, -0.031874057526389755, -0.056783282508452736, 0.0729843166967233,
- -0.036956045776605606, -0.01096475093315045, 0.012803245491037766, -0.07826797850430012,
- 0.07695552582542102, 0.09905110175410907, 0.02139855579783519, 0.04550974319378535,
- 0.053187090903520584, 0.01282356089601914, 0.030987279179195564, -0.017393721578021843,
- 0.058159821977217994, -0.028041143358374637, -0.08082062254349391, -0.08043456201752026,
- 0.004586626077070832, 0.10162338366111119, 0.010686744004487991, -0.09753751506408055,
- -0.05023379375537237, -0.05869757508238157
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 124,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 40,
- "similarity": 0.9988117218017578
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 79,
- "similarity": 0.9986071586608887
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 11,
- "similarity": 0.9985790252685547
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Carolyn Y. Johnson"],
- "epoch_date_downloaded": 1668470400,
- "epoch_date_modified": 1668470400,
- "epoch_date_submitted": 1668470400,
- "flag": null,
- "report_number": 2262,
- "source_domain": "washingtonpost.com",
- "submitters": ["Anonymous"],
- "title": "Racial bias in a medical algorithm favors white patients over sicker black patients",
- "url": "https://www.washingtonpost.com/health/2019/10/24/racial-bias-medical-algorithm-favors-white-patients-over-sicker-black-patients/"
- },
- {
- "__typename": "Report",
- "authors": ["Tom Simonite"],
- "epoch_date_downloaded": 1644969600,
- "epoch_date_modified": 1644969600,
- "epoch_date_submitted": 1644969600,
- "flag": true,
- "report_number": 1522,
- "source_domain": "wired.com",
- "submitters": ["Anonymous"],
- "title": "These Algorithms Look at X-Rays-and Somehow Detect Your Race",
- "url": "https://www.wired.com/story/these-algorithms-look-x-rays-detect-your-race/"
- },
- {
- "__typename": "Report",
- "authors": ["Tom Simonite"],
- "epoch_date_downloaded": 1632787200,
- "epoch_date_modified": 1632787200,
- "epoch_date_submitted": 1632787200,
- "flag": null,
- "report_number": 1450,
- "source_domain": "wired.com",
- "submitters": ["Roman Lutz"],
- "title": "A Health Care Algorithm Offered Less Care to Black Patients",
- "url": "https://www.wired.com/story/how-algorithm-favored-whites-over-blacks-health-care/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "amazon",
- "name": "Amazon"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "amazon",
- "name": "Amazon"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "amazon-fulfillment-center-workers",
- "name": "Amazon fulfillment center workers"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1460, 1452, 1451],
- "vector": [
- -0.0633229985833168, 0.08745723962783813, 0.009082585573196411, -0.1047140583395958,
- 0.07491764426231384, -0.026711413636803627, -0.012024737894535065, 0.03724087402224541,
- 0.10124814510345459, -0.10223562270402908, -0.002995905699208379, 0.050724416971206665,
- 0.025263190269470215, -0.06177069619297981, 0.026456454768776894, -0.10580001026391983,
- -0.07667398452758789, -0.04080323874950409, -0.009752334095537663, -0.14174754917621613,
- -0.06325853615999222, 0.004115344025194645, 0.010649043135344982, 0.1216464415192604,
- 0.008687998168170452, 0.013520568609237671, 0.10401201993227005, 0.11360295861959457,
- -0.07554084807634354, 0.10332692414522171, -0.03387455269694328, -0.08719253540039062,
- 0.12339697033166885, 0.03374795988202095, 0.003950875252485275, 0.09411245584487915,
- -0.026776114478707314, -0.021695241332054138, 0.02644522488117218, -0.02701660990715027,
- 0.046189840883016586, 0.25245049595832825, -0.023263975977897644, -0.024652672931551933,
- 0.04131411388516426, -0.020041007548570633, 0.021896185353398323, 0.07961646467447281,
- -0.0009120302274823189, 0.04521080479025841, -0.02399461902678013, 0.08804795891046524,
- -0.02872968278825283, 0.06268411129713058, -0.10778383165597916, 0.05334724858403206,
- 0.04079434648156166, -0.004617346450686455, 0.052347417920827866, -0.06354450434446335,
- -0.016145242378115654, -0.25132521986961365, -0.04718921706080437, -0.08630943298339844,
- 0.07644424587488174, -0.0626954510807991, -0.05380784347653389, 0.032442521303892136,
- 0.034754812717437744, 0.08235277980566025, 0.054625868797302246, -0.016865357756614685,
- -0.028559116646647453, 0.024678612127900124, 0.004586160648614168, -0.03304922953248024,
- -0.007185427937656641, 0.1730320006608963, -0.10796024650335312, -0.0029121108818799257,
- 0.10332810878753662, -0.08097421377897263, 0.3933417797088623, 0.024106895551085472,
- -0.0159893985837698, -0.011099416762590408, 0.055722564458847046, 0.018025550991296768,
- 0.014750443398952484, 0.021496498957276344, -0.04219229519367218, 0.050408948212862015,
- -0.06421592086553574, 0.024634072557091713, 0.06932690739631653, 0.023235147818922997,
- -0.0047578657977283, 0.04888689145445824, 0.0031132500153034925, -0.08321435004472733,
- 0.015999751165509224, -0.005531322676688433, 0.07084901630878448, 0.046124592423439026,
- -0.023144999518990517, -0.009370035491883755, 0.09559192508459091, -0.06145402789115906,
- 0.05189625546336174, -0.04475361108779907, 0.015455369837582111, -0.023920373991131783,
- 0.046721458435058594, -0.014009669423103333, 0.02904340624809265, -0.08508235216140747,
- 0.01892896555364132, 0.034818995743989944, 0.08941378444433212, 0.028422826901078224,
- 0.00006241103255888447, 0.05763751640915871, 0.03864595666527748, -0.04517923668026924,
- -0.040142983198165894, -0.023723101243376732, -0.07567799091339111,
- -0.028432048857212067, -0.036505747586488724, 0.06419235467910767, -0.03794824704527855,
- -0.19532962143421173, -0.02018515206873417, 0.09351377934217453, -0.03472525253891945,
- -0.023769130930304527, 0.014072990976274014, -0.055694278329610825, 0.0665900930762291,
- -0.005174551624804735, -0.02738349139690399, 0.06335220485925674, 0.05147106945514679,
- 0.055164024233818054, 0.11508119106292725, 0.05694841220974922, -0.03830781579017639,
- -0.0564703531563282, 0.01774582266807556, 0.003458278952166438, 0.14471973478794098,
- -0.1173987165093422, -0.025496743619441986, 0.005827993620187044, -0.07209736853837967,
- 0.694129467010498, 0.1402226686477661, 0.19353705644607544, -0.004902753978967667,
- -0.026334097608923912, 0.17600740492343903, 0.03357250615954399, 0.05396268889307976,
- -0.08155782520771027, -0.0469733327627182, 0.02008274756371975, -0.072499118745327,
- -0.001248534768819809, 0.03353947401046753, 0.010284067131578922, 0.12026838213205338,
- 0.03777898848056793, 0.08398047834634781, 0.013329762034118176, -0.11358227580785751,
- -0.02338789589703083, 0.07218606770038605, -0.0032815809827297926, -0.10293086618185043,
- -0.021617405116558075, 0.05254804715514183, 0.0835861936211586, -0.10632181167602539,
- -0.009959449991583824, -0.10561735183000565, 0.04512733221054077, -0.045815784484148026,
- 0.0599064975976944, -0.01766143925487995, 0.05663551762700081, 0.04088383540511131,
- 0.08415523916482925, 0.01481223851442337, -0.10253641754388809, -0.05405036732554436,
- 0.13133512437343597, -0.036652106791734695, -0.04558851942420006, 0.07081246376037598,
- -0.07764629274606705, 0.042348939925432205, 0.007935384288430214, 0.15051107108592987,
- -0.10946785658597946, -0.013969014398753643, -0.03573042154312134,
- -0.008261513896286488, 0.06374100595712662, 0.0055209859274327755, -0.03692040964961052,
- -0.05614441633224487, 0.07436314970254898, 0.026026204228401184, 0.1361735463142395,
- 0.04150201380252838, -0.04067987576127052, 0.05782093480229378, 0.029252400621771812,
- 0.024271301925182343, -0.050151485949754715, 0.065332792699337, 0.06685775518417358,
- -0.03259584680199623, -0.019800081849098206, 0.0016421722248196602, 0.03438872471451759,
- 0.029625272378325462, 0.00410597724840045, 0.04630129411816597, -0.0288574006408453,
- -0.049309369176626205, 0.024200057610869408, 0.02686358243227005, 0.016358405351638794,
- 0.09268226474523544, -0.07280813902616501, -0.031113771721720695, -0.06983914226293564,
- -0.03901967406272888, 0.040414683520793915, -0.012696153484284878, 0.06939844787120819,
- 0.09166073799133301, 0.06811688095331192, 0.003928198013454676, 0.04163404926657677,
- 0.07408902794122696, 0.0601448230445385, 0.03915867581963539, 0.08958935737609863,
- -0.029803095385432243, -0.052440375089645386, -0.04844802990555763, 0.01168271154165268,
- -0.00413261353969574, 0.007305664476007223, -0.052314579486846924, -0.05649535730481148,
- -0.08953984826803207, -0.06133740022778511, -0.0707755908370018, -0.08026274293661118,
- -0.014702231623232365, 0.019548850134015083, -0.07594629377126694,
- -0.061119820922613144, -0.08960836380720139, 0.025881098583340645, 0.08033277839422226,
- -0.008325698785483837, -0.007539600133895874, -0.1276179552078247, 0.004983802791684866,
- -0.035775840282440186, 0.05201273784041405, 0.02316402457654476, 0.012005478143692017,
- 0.02217726595699787, -0.06263657659292221, 0.03143352270126343, -0.030879266560077667,
- -0.04518476501107216, -0.09869245439767838, -0.04014836624264717, -0.044204846024513245,
- -0.027555791661143303, 0.01209369208663702, -0.05420537665486336, 0.04636858031153679,
- 0.036604538559913635, 0.07747283577919006, -0.014333217404782772, -0.06399770826101303,
- 0.06922868639230728, -0.026059478521347046, -0.0050292001105844975, 0.09491494297981262,
- -0.026494788005948067, 0.030764004215598106, 0.05262824520468712, -0.07464495301246643,
- -0.0379776768386364, -0.0008562656003050506, -0.056671738624572754, 0.052762221544981,
- 0.0001591288746567443, 0.0082565201446414, -0.04341508820652962, -0.004035210702568293,
- 0.06023069843649864, -0.033441271632909775, -0.10158213973045349, -0.047225531190633774,
- 0.15264563262462616, 0.01024733018130064, 0.007701194379478693, 0.02978668548166752,
- -0.05378168821334839, 0.0563616044819355, 0.03023264743387699, -0.014614100567996502,
- 0.0111083984375, 0.03241631016135216, -0.06096624210476875, -0.026948869228363037,
- 0.0657394602894783, -0.026417046785354614, 0.00790772307664156, 0.0779184103012085,
- 0.44238319993019104, -0.16498036682605743, 0.05039986968040466, 0.07010999321937561,
- 0.011630747467279434, 0.04693443700671196, -0.05616496503353119, 0.05302619934082031,
- 0.0836113914847374, 0.1155901551246643, 0.09750843793153763, -0.02494649589061737,
- 0.008617575280368328, -0.08483701199293137, 0.10382214933633804, 0.005105400457978249,
- 0.048756957054138184, -0.0013163741677999496, -0.07737930119037628,
- -0.053580667823553085, 0.021394087001681328, -0.06424141675233841,
- -0.017116263508796692, 0.011992796324193478, -0.05428880453109741,
- -0.016085000708699226, 0.01565634459257126, 0.03404698148369789, -0.01953032612800598,
- 0.011243662796914577, -0.04906085133552551, 0.06559282541275024, 0.03821287676692009,
- 0.032678235322237015, -0.10335278511047363, -0.005043945740908384, -0.06058843061327934,
- -0.0662592425942421, 0.0608375258743763, 0.005253258626908064, 0.04763956367969513,
- 0.04669201374053955, -0.01968158781528473, 0.01754234917461872, 0.02444787323474884,
- -0.05275026336312294, 0.046645600348711014, 0.07914736866950989, 0.011246570385992527,
- 0.056163351982831955, 0.1545504331588745, -0.0268660057336092, -0.04335208609700203,
- -0.06888491660356522, 0.06152690574526787, 0.12165538221597672, 0.024799242615699768,
- 0.007591672241687775, 0.020698951557278633, -0.025823533535003662,
- -0.005143824499100447, -0.05924292281270027, -0.06456045806407928,
- -0.027559520676732063, -0.0525159053504467, 0.0841597318649292, 0.03799326717853546,
- -0.03994706645607948, -0.16605710983276367, -0.030685117468237877, -0.04002769663929939,
- 0.010318056680262089, 0.1269984096288681, -0.03715067729353905, 0.024810990318655968,
- -0.013656633906066418, -0.029658585786819458, 0.06458573788404465, -0.07741353660821915,
- 0.04673059657216072, -0.0502740852534771, 0.0010526900878176093, 0.08329090476036072,
- 0.04639849066734314, -0.0711149349808693, 0.09913370758295059, -0.09313511848449707,
- 0.059032220393419266, 0.02344326861202717, -0.06134958565235138, 0.006960730534046888,
- -0.01888824626803398, 0.029195154085755348, 0.029290618374943733, -0.02458358369767666,
- 0.04018208011984825, -0.030425583943724632, -0.06635192781686783, -0.06932058930397034,
- -0.04376943036913872, -0.017838265746831894, -0.08218660950660706, 0.027763472869992256,
- -0.08698136359453201, 0.01761556603014469, -0.015438576228916645, -0.02801929973065853,
- 0.00616701552644372, 0.03115907497704029, -0.003959178924560547, -0.12731288373470306,
- 0.030492233112454414, -0.0022944717202335596, 0.06653094291687012,
- -0.032357390969991684, -0.06635423749685287, 0.04366624355316162, 0.09731504321098328,
- 0.049441877752542496, -0.06827604025602341, -0.029561543837189674, -0.06587225943803787,
- 0.04614882543683052, -0.10603991150856018, -0.42003706097602844, 0.0760713592171669,
- 0.026678314432501793, 0.038009073585271835, -0.008205418474972248,
- -0.054675374180078506, 0.04617257043719292, -0.025505216792225838, -0.03402775898575783,
- 0.06198618933558464, -0.05238429829478264, 0.031045647338032722, -0.01210543978959322,
- -0.09081375598907471, -0.020191125571727753, -0.0771884024143219, -0.05291532352566719,
- 0.048993270844221115, -0.019476186484098434, -0.08694443851709366, -0.11605421453714371,
- 0.04565050080418587, 0.00030580349266529083, 0.03077196143567562, 0.004460650030523539,
- 0.06445315480232239, -0.04458465799689293, -0.027060583233833313, 0.058584149926900864,
- 0.025702251121401787, 0.027506226673722267, -0.0689990296959877, -0.0007913659210316837,
- 0.04095515236258507, -0.03494732454419136, 0.1140185073018074, 0.004324337467551231,
- 0.057826314121484756, -0.02301621623337269, 0.08289553970098495, 0.04699764773249626,
- 0.18615961074829102, -0.00048806206905283034, 0.008209986612200737,
- 0.008295037783682346, 0.14839406311511993, 0.051657646894454956, 0.010131563991308212,
- -0.02421765960752964, -0.01764707639813423, 0.03242438659071922, -0.028791969642043114,
- 0.08988473564386368, -0.0652429461479187, -0.04216961935162544, -0.05438214913010597,
- -0.03271521255373955, 0.005410091485828161, -0.03667313978075981, 0.21909135580062866,
- 0.027507608756422997, 0.024759626016020775, 0.01834341324865818, -0.07014387100934982,
- 0.02303825132548809, -0.06976693868637085, -0.08111664652824402, -0.01260432880371809,
- -0.02647264301776886, -0.0007177169318310916, -0.03625006601214409,
- -0.11727935075759888, -0.02603345364332199, -0.0006338676321320236,
- 0.006842716131359339, 0.10018125921487808, -0.04088732972741127, 0.02554732747375965,
- 0.006797458976507187, 0.13001425564289093, 0.0421408973634243, -0.03034225106239319,
- 0.036810245364904404, 0.07559452205896378, 0.02329796552658081, 0.023551592603325844,
- -0.03191497549414635, -0.08314112573862076, 0.0375157929956913, 0.1637236624956131,
- -0.024174412712454796, 0.1254139393568039, 0.04861867055296898, -0.03322853520512581,
- -0.06597956269979477, 0.016620775684714317, 0.005317021626979113, 0.026215026155114174,
- -0.42214009165763855, 0.0018800456309691072, 0.07863052934408188,
- 0.00048337504267692566, 0.04229016602039337, 0.06359881162643433, 0.025596335530281067,
- -0.049619320780038834, -0.032757166773080826, -0.10583245009183884, 0.11878105998039246,
- 0.01921766810119152, 0.025005390867590904, -0.1262723058462143, 0.036134377121925354,
- 0.08181536942720413, -0.05072897672653198, 0.00002381127887929324, 0.0564577691257,
- -0.2590811550617218, 0.007576580625027418, -0.02213124930858612, 0.11446567624807358,
- -0.0045179217122495174, 0.03262439742684364, 0.07112006098031998, -0.030130771920084953,
- 0.0058180489577353, 0.07207002490758896, -0.00017860780644696206, 0.021188007667660713,
- -0.0214536190032959, -0.01568559743463993, 0.10975895076990128, 0.09084140509366989,
- 0.10100115090608597, -0.022242655977606773, 11.963245391845703, 0.06499246507883072,
- 0.05688370764255524, -0.07390841096639633, -0.015860648825764656, -0.0501336045563221,
- 0.04041831195354462, -0.0841408297419548, 0.059249620884656906, 0.12328096479177475,
- -0.023113349452614784, -0.053972240537405014, -0.04234364628791809,
- -0.09334707260131836, 0.03752286359667778, -0.02985864318907261, -0.08714141696691513,
- -0.041812311857938766, 0.018021291121840477, -0.05540810897946358, -0.03860049322247505,
- 0.051418084651231766, 0.06074388697743416, 0.030550548806786537, -0.04852624237537384,
- 0.05109507963061333, 0.01969764567911625, 0.015444767661392689, -0.023755228146910667,
- -0.0036108281929045916, -0.039242830127477646, 0.02162097953259945, 0.03640824183821678,
- -0.000597689300775528, 0.014270558021962643, 0.044680699706077576, 0.11677578091621399,
- 0.027878785505890846, 0.024461820721626282, 0.08868616819381714, 0.00742662139236927,
- 0.03039287030696869, 0.009496995247900486, 0.004843724425882101, 0.08267915993928909,
- 0.060690149664878845, -0.027066096663475037, 0.13853634893894196, 0.02890123426914215,
- 0.07730671763420105, 0.09900262206792831, -0.020004186779260635, 0.1171819344162941,
- 0.004149256739765406, -0.017622126266360283, 0.028695404529571533,
- -0.020552197471261024, -0.09306731075048447, 0.07445255666971207, 0.08649265021085739,
- -0.06350474804639816, 0.12339279800653458, 0.010214773006737232, 0.10196119546890259,
- -0.0328344888985157, 0.06860078126192093, 0.06779452413320541, 0.07396610826253891,
- -0.15748704969882965, -0.09199825674295425, 0.028642622753977776, -0.08299687504768372,
- -0.08468055725097656, 0.06525064259767532, 0.13414043188095093, -0.05719121918082237,
- 0.026995792984962463, -0.013167332857847214, 0.025944849476218224,
- -0.052915845066308975, -0.011054943315684795, 0.04809628054499626,
- -0.010154706425964832, -0.00908027682453394, 0.09552706032991409, 0.012275508604943752,
- 0.02651982754468918, 0.10133343189954758, -0.02469279058277607, -0.07858294248580933,
- -0.048500556498765945, 0.07738218456506729, -0.03003993071615696, -0.05718645453453064,
- 0.03832472488284111, -0.07084310799837112, 0.03694241866469383, -0.15825162827968597,
- 0.07613271474838257, 0.10963352769613266, -0.07270868122577667, -0.03735644742846489,
- -0.04270234331488609, 0.0814313068985939, 0.04529012739658356, 0.019322386011481285,
- -0.08035255968570709, 0.03444080427289009, 0.0068538598716259, 0.022059166803956032,
- -0.07368239015340805, 0.07656210660934448, 0.04509415850043297, -0.035545725375413895,
- 0.027103131636977196, 0.07039150595664978, -0.046116117388010025, -0.03815135732293129,
- 0.0834847167134285, 0.05321817472577095, -0.07900645583868027, -0.07771546393632889,
- -0.022754162549972534, -0.04628221318125725, -0.035105157643556595,
- -0.019662784412503242, 0.014161963947117329, 0.012939204461872578, -0.06332787871360779,
- 0.0006996762822382152, 0.03686455637216568, 0.062440041452646255, 0.10371794551610947,
- 0.02128782868385315, 0.06506221741437912, -0.07520534843206406, -0.04917900264263153,
- 0.06230989471077919, 0.02502562664449215, 0.04122022166848183, -0.04935972020030022,
- -0.02184714376926422, -0.09947285056114197, -0.10525161772966385, 0.015859393402934074,
- 0.10596057027578354, 0.058284807950258255, 0.014005095697939396, -0.009559274651110172,
- -0.04472394660115242, -0.043536096811294556, 0.07525472342967987, 0.06549247354269028,
- 0.032188527286052704, 0.01892048306763172, -0.05585981905460358, -0.0565316267311573,
- 0.1055154800415039, -0.023119954392313957, 0.011231320910155773, 0.04895973205566406,
- -0.012496997602283955, 0.07731012254953384, 0.10518155246973038, 0.0005723237991333008,
- 0.06445936113595963, -0.015004838816821575, 0.006901504471898079, 0.02788352221250534,
- -0.02386298216879368, 0.017795631662011147, -0.03048527054488659, -0.06402560323476791,
- -0.06027780845761299, 0.015993453562259674, 0.10313963890075684, 0.025943508371710777,
- -0.08737397193908691, -0.011678159236907959, -0.03759464621543884
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 125,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 111,
- "similarity": 0.9989471435546875
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 54,
- "similarity": 0.9988353848457336
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 10,
- "similarity": 0.9987168908119202
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Caitlin Harrington"],
- "epoch_date_downloaded": 1634083200,
- "epoch_date_modified": 1634083200,
- "epoch_date_submitted": 1634083200,
- "flag": null,
- "report_number": 1460,
- "source_domain": "wired.com",
- "submitters": ["Kate Perkins"],
- "title": "California Passes Warehouse Worker Bill, Taking Aim at Amazon",
- "url": "https://www.wired.com/story/california-senate-passes-warehouse-workers-bill-taking-aim-at-amazon/"
- },
- {
- "__typename": "Report",
- "authors": ["Mohamed Al Elew", "Soo Oh"],
- "epoch_date_downloaded": 1631145600,
- "epoch_date_modified": 1631145600,
- "epoch_date_submitted": 1631145600,
- "flag": null,
- "report_number": 1452,
- "source_domain": "revealnews.org",
- "submitters": ["Andrew Hundt"],
- "title": "What are injury rates like at Amazon warehouses?",
- "url": "https://revealnews.org/article/amazon-injury-rates/"
- },
- {
- "__typename": "Report",
- "authors": ["Will Evans"],
- "epoch_date_downloaded": 1631145600,
- "epoch_date_modified": 1631145600,
- "epoch_date_submitted": 1631145600,
- "flag": null,
- "report_number": 1451,
- "source_domain": "revealnews.org",
- "submitters": ["Andrew Hundt"],
- "title": "Amazon’s robotic fulfillment centers have higher serious injury rates",
- "url": "https://revealnews.org/article/how-amazon-hid-its-safety-crisis/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "ocado",
- "name": "Ocado"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "ocado",
- "name": "Ocado"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "ocado",
- "name": "Ocado"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1532, 1455, 1454, 1453],
- "vector": [
- -0.0640510767698288, 0.053640954196453094, 0.019905248656868935, -0.12494409829378128,
- 0.050621554255485535, -0.048161786049604416, -0.009492304176092148,
- 0.021671399474143982, 0.0946497693657875, -0.12979570031166077, 0.004754503257572651,
- 0.024572070688009262, 0.02468569204211235, -0.06926383823156357, 0.022006694227457047,
- -0.1379847675561905, -0.07790087163448334, -0.019432950764894485, -0.02991887554526329,
- -0.11525378376245499, -0.0554639957845211, 0.012775073759257793, 0.05329374969005585,
- 0.08660873025655746, -0.02555633895099163, 0.024849047884345055, 0.05720114707946777,
- 0.12804582715034485, -0.04233432561159134, 0.025908485054969788, -0.033435847610235214,
- -0.09136605262756348, 0.12274878472089767, 0.01930864527821541, 0.005706337746232748,
- 0.09294123947620392, -0.019102979451417923, -0.05819209665060043, -0.022342849522829056,
- -0.0295737162232399, 0.008822417818009853, 0.20726588368415833, 0.017302732914686203,
- -0.031574979424476624, 0.04269374907016754, -0.045674752444028854, 0.05867878720164299,
- 0.08013488352298737, 0.030283123254776, 0.02989729680120945, -0.007437500171363354,
- 0.09042719006538391, -0.04367397725582123, 0.02617163583636284, -0.10776487737894058,
- 0.021464059129357338, 0.015888549387454987, -0.0009561242768540978, 0.0786563828587532,
- -0.05093078315258026, 0.032080747187137604, -0.22059395909309387, -0.08281894028186798,
- -0.02919793874025345, 0.06207164376974106, -0.07315894961357117, -0.03680334985256195,
- 0.06443936377763748, -0.0077192289754748344, 0.083834707736969, 0.055231865495443344,
- -0.02745422162115574, -0.02504095435142517, 0.016517100855708122, 0.03816773369908333,
- -0.027996448799967766, 0.007850760594010353, 0.19355152547359467, -0.09480401873588562,
- 0.010578717105090618, 0.12209948897361755, -0.07861446589231491, 0.39288899302482605,
- -0.013543525710701942, -0.018542487174272537, -0.05003230273723602, 0.05416993424296379,
- 0.019861308857798576, 0.04040449112653732, 0.027474861592054367, 0.0032941102981567383,
- 0.022438514977693558, -0.005021991208195686, 0.02642984874546528, 0.050642069429159164,
- 0.004282060544937849, -0.046870723366737366, 0.048921652138233185,
- -0.003639897797256708, -0.07355191558599472, -0.005131687968969345,
- -0.02872934378683567, 0.05563373863697052, 0.06083077937364578, -0.006966893095523119,
- -0.010038908571004868, 0.06284947693347931, -0.03428535908460617, 0.04376569762825966,
- -0.05901645869016647, 0.048132143914699554, 0.012438914738595486, 0.07774178683757782,
- 0.019422587007284164, 0.051506947726011276, -0.03787704557180405, 0.007771239150315523,
- 0.07104188948869705, 0.08177897334098816, 0.015594130381941795, 0.026223190128803253,
- 0.07587824761867523, 0.04584634304046631, -0.02802187204360962, 0.02277294173836708,
- -0.012489233165979385, -0.05265391618013382, -0.022321514785289764,
- -0.034864433109760284, 0.06279164552688599, -0.07709282636642456, -0.2189185470342636,
- 0.008943604305386543, 0.11780453473329544, 0.013414982706308365, -0.015162698924541473,
- 0.007456413470208645, -0.0513463020324707, 0.05151844397187233, -0.034941233694553375,
- -0.06517690420150757, 0.08519989252090454, 0.007118858862668276, 0.06856615841388702,
- 0.07072969526052475, 0.026723060756921768, -0.04858452454209328, -0.06047876924276352,
- 0.010177278891205788, -0.03161337599158287, 0.1131504476070404, -0.15003183484077454,
- -0.011198827996850014, 0.028945382684469223, -0.005627226084470749, 0.6794288158416748,
- 0.12998324632644653, 0.19545800983905792, 0.01261773519217968, -0.04972727596759796,
- 0.16003520786762238, -0.019423115998506546, 0.04111586883664131, -0.04705384373664856,
- -0.0981840044260025, 0.04620705544948578, -0.060770176351070404, -0.03868947923183441,
- 0.04969159513711929, 0.029961716383695602, 0.10502611100673676, 0.03325781971216202,
- 0.08749013394117355, -0.014985653571784496, -0.12535950541496277, -0.0273603368550539,
- 0.08338937908411026, 0.025709083303809166, -0.11988763511180878, -0.06109274923801422,
- 0.057764340192079544, 0.08959712088108063, -0.07812795042991638, -0.006029833108186722,
- -0.07183220237493515, 0.02889668568968773, -0.023302076384425163, 0.06646470725536346,
- -0.07671444863080978, 0.0488358773291111, 0.032381027936935425, 0.08330994844436646,
- 0.0044757891446352005, -0.10281266272068024, -0.008076791651546955, 0.149594247341156,
- 0.01581612601876259, -0.04158977419137955, 0.07831449806690216, -0.09583896398544312,
- 0.035121046006679535, -0.002756069879978895, 0.13827121257781982, -0.11502811312675476,
- -0.013050527311861515, 0.003668165300041437, -0.002492176368832588, 0.05956566333770752,
- -0.0029162545688450336, -0.047761645168066025, -0.03850611299276352, 0.0876385048031807,
- 0.010004907846450806, 0.08462245017290115, 0.08165012300014496, -0.05663298815488815,
- 0.07886969298124313, 0.05877606198191643, 0.01009889505803585, -0.024740848690271378,
- 0.04029426723718643, 0.04464450851082802, -0.01215636171400547, -0.022251563146710396,
- 0.007187821436673403, 0.04690123349428177, 0.03050430864095688, -0.0012603424256667495,
- 0.05972082540392876, 0.007068011909723282, -0.05122347176074982, 0.04032084718346596,
- 0.017552686855196953, 0.003941401373594999, 0.08943907171487808, -0.0524681955575943,
- -0.07574406266212463, -0.026906471699476242, -0.016889095306396484,
- 0.013649335131049156, -0.010073068551719189, 0.10411687940359116, 0.09203405678272247,
- 0.07666847109794617, 0.04260366037487984, 0.023555245250463486, 0.06961104273796082,
- 0.010790699161589146, 0.029040375724434853, -0.006021582987159491, -0.05253167450428009,
- -0.08193172514438629, -0.04215579479932785, -0.011168216355144978, 0.03180406242609024,
- 0.04300045594573021, -0.08149276673793793, -0.014984230510890484, -0.036644190549850464,
- -0.025850925594568253, -0.10827912390232086, -0.03267151117324829, 0.047072939574718475,
- 0.03011302277445793, -0.04545847699046135, -0.07964934408664703, -0.1202773004770279,
- 0.016758084297180176, 0.05578748881816864, -0.01678021252155304, 0.006061102729290724,
- -0.11919434368610382, 0.0006798478425480425, -0.001107187825255096, 0.06199628487229347,
- 0.0056637660600245, 0.01735604740679264, -0.0030866016168147326, -0.002567953197285533,
- 0.03445575386285782, -0.010631931014358997, -0.03601422533392906, -0.10716146975755692,
- -0.05873813480138779, -0.028423432260751724, 0.028531711548566818, 0.029135966673493385,
- -0.033771369606256485, 0.06956750154495239, 0.02359112538397312, 0.04865819960832596,
- 0.002635051729157567, -0.008325101807713509, 0.0444558709859848, -0.011807076632976532,
- -0.021674588322639465, 0.08913815766572952, -0.03237595036625862, 0.047715894877910614,
- 0.022303050383925438, -0.08746486902236938, -0.022233031690120697, 0.021142469719052315,
- -0.05125579982995987, 0.013086402788758278, -0.03367070481181145, 0.026024306192994118,
- -0.03530488535761833, -0.015885237604379654, 0.0624656081199646, -0.04140537232160568,
- -0.09805727005004883, -0.06887739151716232, 0.1269366592168808, 0.03231935575604439,
- 0.022944772616028786, 0.0012230423744767904, -0.0657166987657547, 0.02930447831749916,
- -0.009840012528002262, 0.013268004171550274, 0.025995980948209763, 0.06478018313646317,
- -0.034386515617370605, 0.01285170204937458, 0.0632733553647995, 0.04051116853952408,
- -0.0058433497324585915, 0.06313753128051758, 0.411626935005188, -0.21421507000923157,
- 0.06397203356027603, 0.0881970226764679, 0.01234984677284956, 0.05640839412808418,
- -0.035764534026384354, 0.06285345554351807, 0.09523466974496841, 0.10860025882720947,
- 0.08839088678359985, -0.015392488799989223, -0.012077282182872295, -0.08812406659126282,
- 0.0952245369553566, 0.027523014694452286, -0.017579156905412674, -0.013312775641679764,
- -0.06900616735219955, -0.03996653854846954, 0.033505652099847794, -0.056620821356773376,
- 0.0028630373999476433, 0.003467241069301963, -0.06858925521373749, 0.016874222084879875,
- 0.03477288782596588, 0.04704991355538368, -0.04203152656555176, 0.0428241491317749,
- -0.05115019157528877, 0.06042838841676712, 0.04701482504606247, 0.04821678251028061,
- -0.08251911401748657, 0.04006423056125641, -0.03258562088012695, -0.12828180193901062,
- 0.06894325464963913, -0.017779190093278885, 0.06780418008565903, 0.0307280533015728,
- -0.010320181958377361, 0.0017677007708698511, -0.012709998525679111,
- -0.060425542294979095, 0.015424523502588272, 0.06485986709594727, 0.050723135471343994,
- 0.07764787971973419, 0.18022650480270386, -0.038631975650787354, -0.07630141079425812,
- -0.07534479349851608, 0.05901037156581879, 0.08705248683691025, -0.013121227733790874,
- 0.0015242225490510464, -0.034356363117694855, -0.053816501051187515,
- -0.022381655871868134, -0.021108154207468033, -0.08607576787471771,
- -0.04244567081332207, -0.06238139420747757, 0.07577543705701828, 0.021124646067619324,
- -0.059725649654865265, -0.2042011320590973, -0.014797350391745567,
- -0.038474321365356445, -0.009003287181258202, 0.13518747687339783, -0.03872521594166756,
- 0.03244338929653168, 0.025182386860251427, -0.017398469150066376, 0.0424097441136837,
- -0.09687092900276184, 0.03398089110851288, -0.05928068608045578, 0.0608496218919754,
- 0.04309900850057602, 0.04585402086377144, -0.06235957145690918, 0.06521378457546234,
- -0.09898077696561813, 0.09132980555295944, 0.07002215087413788, -0.024063706398010254,
- 0.10820228606462479, -0.006887189112603664, 0.008638810366392136, 0.027765043079853058,
- -0.04866732284426689, 0.04659184068441391, -0.03902224823832512, -0.05490785837173462,
- -0.10788033902645111, -0.05203027278184891, -0.024266809225082397, -0.07484138011932373,
- 0.0257843229919672, -0.049538031220436096, 0.00819918978959322, -0.03249925374984741,
- -0.03774802014231682, 0.007276537828147411, 0.016920600086450577, 0.04458135738968849,
- -0.16169771552085876, 0.023505618795752525, 0.017711713910102844, 0.06698399782180786,
- -0.003921727184206247, -0.0009020543657243252, 0.025077275931835175,
- 0.07971526682376862, 0.06628299504518509, -0.012313268147408962, 0.006698944605886936,
- -0.07211556285619736, 0.03774794563651085, -0.052189651876688004, -0.4667963981628418,
- 0.01652057096362114, 0.03340575471520424, 0.033194173127412796, 0.02050800807774067,
- -0.0689048245549202, 0.04596659541130066, -0.01203671470284462, -0.04138968139886856,
- 0.08601300418376923, -0.06399336457252502, 0.03598075360059738, -0.010616595856845379,
- -0.056956153362989426, -0.030178120359778404, -0.09162148833274841,
- -0.05377425625920296, 0.049324724823236465, -0.055194370448589325,
- -0.056042496114969254, -0.0991763100028038, 0.045262232422828674, -0.006631643045693636,
- 0.0196074265986681, -0.009069929830729961, 0.032126132398843765, -0.054063986986875534,
- -0.04351275414228439, 0.034379735589027405, 0.034954220056533813, 0.02451743371784687,
- -0.08756005018949509, -0.0001962784444913268, 0.09516831487417221,
- -0.014366754330694675, 0.13884246349334717, 0.010082722641527653, 0.009807511232793331,
- -0.07465526461601257, 0.07701779156923294, 0.023096157237887383, 0.18602052330970764,
- -0.023648032918572426, 0.04029485210776329, -0.015283376909792423, 0.11074519157409668,
- 0.012207219377160072, 0.003451927099376917, -0.018128883093595505, 0.02609066665172577,
- 0.04694628342986107, -0.013986693695187569, 0.08537057042121887, -0.07361236214637756,
- -0.04884213209152222, -0.010496950708329678, -0.022346634417772293,
- 0.005156085826456547, -0.004008345305919647, 0.18592193722724915, 0.022029975429177284,
- 0.032320208847522736, 0.019709106534719467, -0.07357040047645569, 0.012885946780443192,
- -0.05999194458127022, -0.10450533032417297, -0.034202396869659424, 0.003161117434501648,
- 0.00026789394905790687, -0.029438264667987823, -0.12489373981952667,
- 0.0026948582381010056, -0.02960466779768467, -0.015760889276862144, 0.13022691011428833,
- -0.03340214118361473, 0.0415913388133049, -0.03252245485782623, 0.1434747576713562,
- 0.047758668661117554, 0.029228050261735916, 0.04826550930738449, 0.08708496391773224,
- 0.058538392186164856, -0.016182556748390198, -0.06974806636571884, -0.07867848128080368,
- 0.00784741435199976, 0.11544796824455261, -0.07097404450178146, 0.13465189933776855,
- 0.034036602824926376, -0.02380407229065895, -0.04885721206665039, 0.02910442277789116,
- 0.04109521582722664, 0.007494431454688311, -0.45263731479644775, -0.016965247690677643,
- 0.11775796860456467, -0.0032387706451117992, 0.050413306802511215, 0.13613376021385193,
- 0.019109081476926804, -0.05557459965348244, -0.03864137455821037, -0.08865298330783844,
- 0.1382773220539093, -0.0036721343640238047, 0.05410061404109001, -0.12247192859649658,
- 0.029814554378390312, 0.06727182865142822, -0.026092639192938805, -0.01988229528069496,
- 0.07507143914699554, -0.2052951157093048, 0.025452962145209312, 0.01723102480173111,
- 0.1383298933506012, 0.04224236682057381, 0.05016322061419487, 0.0744602158665657,
- -0.07704685628414154, 0.0600181519985199, 0.033517081290483475, -0.020299851894378662,
- 0.05385372415184975, 0.0010246196761727333, -0.04231446608901024, 0.10122433304786682,
- 0.05988157540559769, 0.12031674385070801, -0.031820740550756454, 11.977798461914062,
- 0.0772881954908371, 0.0752461850643158, -0.09588287770748138, 0.02487981878221035,
- -0.049461156129837036, 0.02781938575208187, -0.10348030924797058, 0.017635203897953033,
- 0.11820174753665924, -0.02583278901875019, -0.016399674117565155, -0.042521655559539795,
- -0.08510615676641464, 0.021694449707865715, -0.0387134775519371, -0.0749361664056778,
- -0.07201723754405975, 0.0010972335003316402, -0.04754667356610298,
- -0.021235408261418343, 0.04579738527536392, 0.06045563519001007, 0.025965658947825432,
- -0.07316656410694122, 0.05795743688941002, 0.004247183445841074, -0.01844942569732666,
- -0.014044222421944141, 0.002722157398238778, -0.0238945335149765, 0.03236204385757446,
- 0.0038773263804614544, 0.00811602734029293, -0.0022429367527365685,
- 0.013961751945316792, 0.06962927430868149, 0.04753611981868744, 0.04795896261930466,
- 0.06785552203655243, 0.01564021222293377, 0.004337844904512167, 0.0198811125010252,
- 0.044328972697257996, 0.04148805886507034, 0.041806306689977646, 0.03375818580389023,
- 0.09879128634929657, 0.016135018318891525, 0.08373852074146271, 0.08538005501031876,
- -0.03460327535867691, 0.1472596377134323, 0.0226079523563385, 0.0016477883327752352,
- 0.06367333233356476, -0.010617274791002274, -0.0612771213054657, 0.08117891848087311,
- 0.07691533118486404, -0.051489297300577164, 0.06603565812110901, 0.021836847066879272,
- 0.13282983005046844, -0.057896703481674194, 0.03163089603185654, 0.07602066546678543,
- 0.06388521939516068, -0.093375064432621, -0.048486992716789246, 0.01736292988061905,
- -0.10194995999336243, -0.06979629397392273, 0.04600675404071808, 0.10318558663129807,
- -0.0771411657333374, 0.06714894622564316, -0.03265949338674545, 0.002123285084962845,
- -0.029354818165302277, -0.0007028736872598529, 0.021007627248764038,
- -0.00699823210015893, 0.006671121343970299, 0.07416458427906036, -0.0027002703864127398,
- 0.1031159907579422, 0.10565543174743652, 0.01116876769810915, -0.07887072116136551,
- -0.06724560260772705, 0.13522234559059143, -0.012727180495858192, -0.08092494308948517,
- 0.0005970492493361235, -0.0684322789311409, 0.04523216560482979, -0.13389675319194794,
- 0.047442276030778885, 0.07876977324485779, -0.07463589310646057, -0.03676484525203705,
- -0.05557623505592346, 0.0532580204308033, 0.004572458565235138, 0.037275366485118866,
- -0.06934516131877899, 0.021414944902062416, -0.014520565047860146, 0.016922231763601303,
- -0.03839670866727829, 0.0511055551469326, 0.06562678515911102, -0.04249512404203415,
- 0.05352706462144852, 0.07416904717683792, -0.05891677364706993, -0.03275267779827118,
- 0.05713433399796486, -0.004350605886429548, -0.07738609611988068, -0.062165096402168274,
- -0.028332578018307686, -0.04141925647854805, -0.010608091950416565,
- -0.023340914398431778, 0.010892849415540695, 0.019371120259165764, -0.06996951997280121,
- -0.02152373641729355, 0.021217817440629005, 0.04520702734589577, 0.08536745607852936,
- -0.0062864189967513084, 0.05749678984284401, -0.07223151624202728,
- -0.024271836504340172, 0.0646156519651413, 0.051586516201496124, 0.06243555247783661,
- -0.06001671031117439, -0.04747099056839943, -0.05956191197037697, -0.09422971308231354,
- 0.030558578670024872, 0.11589457094669342, 0.022647839039564133, 0.040364935994148254,
- 0.013424113392829895, -0.06867609918117523, -0.02877035178244114, 0.0535658523440361,
- 0.01297368761152029, 0.014937860891222954, 0.06734277307987213, -0.0925944596529007,
- -0.028101474046707153, 0.09869451820850372, -0.020376069471240044, 0.027442313730716705,
- 0.04704603925347328, 0.0010302953887730837, 0.07629615068435669, 0.10418660193681717,
- 0.04452620446681976, 0.028994493186473846, -0.0006653447635471821, 0.002766550052911043,
- 0.006620399188250303, -0.006627698894590139, -0.010324737057089806,
- -0.02982437051832676, -0.10745345056056976, -0.08817720413208008, 0.043469324707984924,
- 0.10259120166301727, -0.0034715200308710337, -0.17199143767356873, -0.03299405798316002,
- -0.03315344080328941
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 126,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 2,
- "similarity": 0.9989529252052307
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 68,
- "similarity": 0.9987902641296387
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 51,
- "similarity": 0.9985866546630859
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Peter Stubley"],
- "epoch_date_downloaded": 1645315200,
- "epoch_date_modified": 1645315200,
- "epoch_date_submitted": 1645315200,
- "flag": null,
- "report_number": 1532,
- "source_domain": "independent.co.uk",
- "submitters": ["Kate Perkins"],
- "title": "Major fire breaks out at Ocado warehouse after three robots collide",
- "url": "https://www.independent.co.uk/news/uk/home-news/ocado-fire-erith-robot-warehouse-b1885814.html"
- },
- {
- "__typename": "Report",
- "authors": ["Matthew Humphries"],
- "epoch_date_downloaded": 1633132800,
- "epoch_date_modified": 1633132800,
- "epoch_date_submitted": 1633132800,
- "flag": null,
- "report_number": 1455,
- "source_domain": "pcmag.com",
- "submitters": ["Kate Perkins"],
- "title": "Robots Collide, Causing Fire at Online-Only Grocer in UK",
- "url": "https://www.pcmag.com/news/robots-collide-causing-fire-at-online-only-grocer-in-uk"
- },
- {
- "__typename": "Report",
- "authors": ["Saqib Shah"],
- "epoch_date_downloaded": 1633132800,
- "epoch_date_modified": 1633132800,
- "epoch_date_submitted": 1633132800,
- "flag": null,
- "report_number": 1454,
- "source_domain": "engadget.com",
- "submitters": ["Kate Perkins"],
- "title": "A robot collision sparked a fire at the UK's top online grocer",
- "url": "https://www.engadget.com/ocado-robot-collision-fire-114027027.html"
- },
- {
- "__typename": "Report",
- "authors": ["Adrianna Nine"],
- "epoch_date_downloaded": 1633132800,
- "epoch_date_modified": 1633132800,
- "epoch_date_submitted": 1633132800,
- "flag": null,
- "report_number": 1453,
- "source_domain": "extremetech.com",
- "submitters": ["Kate Perkins"],
- "title": "Robot Collision Sets London Warehouse Ablaze, Delays Orders",
- "url": "https://www.extremetech.com/extreme/324924-robot-collision-sets-london-warehouse-ablaze-delays-orders?utm_source=email\u0026utm_campaign=extremetech\u0026utm_medium=title"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "msn.com",
- "name": "MSN.com"
- },
- {
- "__typename": "Entity",
- "entity_id": "microsoft",
- "name": "Microsoft"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "microsoft",
- "name": "Microsoft"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "leigh-anne-pinnock",
- "name": "Leigh-Anne Pinnock"
- },
- {
- "__typename": "Entity",
- "entity_id": "jade-thirlwall",
- "name": "Jade Thirlwall"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1493, 1492, 1491, 1490, 1489, 1488, 1487, 1486, 1461, 1458, 1457, 1456],
- "vector": [
- -0.02592833898961544, 0.0743941143155098, 0.027200954034924507, -0.12292643636465073,
- 0.06307559460401535, -0.08096843212842941, 0.021833470091223717, 0.054586753249168396,
- 0.07173580676317215, -0.1180419847369194, -0.003374727675691247, 0.04356526955962181,
- 0.0015549451345577836, -0.04209031164646149, 0.01727093942463398, -0.10420897603034973,
- -0.10622012615203857, -0.03375757858157158, -0.0051439725793898106,
- -0.07261451333761215, -0.06337523460388184, 0.03085676021873951, 0.006454484537243843,
- 0.09844634681940079, -0.027295975014567375, 0.002578068757429719, 0.07704737782478333,
- 0.11333459615707397, -0.04413507506251335, 0.039112355560064316, 0.004207328427582979,
- -0.07136065512895584, 0.09161967039108276, 0.011461694724857807, 0.02308533899486065,
- 0.05896865949034691, 0.017610488459467888, -0.015623237937688828, -0.04849046468734741,
- 0.013864554464817047, 0.04780641570687294, 0.19616536796092987, -0.02082616649568081,
- 0.0015813118079677224, 0.04632497951388359, -0.01922583393752575, 0.03557554632425308,
- 0.05458397790789604, 0.011762996204197407, 0.016092969104647636, -0.03229070454835892,
- 0.04385523870587349, -0.03310008719563484, 0.033086806535720825, -0.09422648698091507,
- 0.03592495992779732, 0.021958282217383385, 0.006513753905892372, 0.028696209192276,
- -0.050299931317567825, 0.022673211991786957, -0.20439575612545013, -0.06451276689767838,
- -0.06027907505631447, 0.04574595019221306, -0.060754094272851944, -0.012598507106304169,
- 0.01972263678908348, 0.020455021411180496, 0.03921683877706528, 0.04216727614402771,
- -0.02752838097512722, -0.02201414853334427, -0.018312258645892143,
- -0.0005207716603763402, -0.01149014662951231, 0.01945914328098297, 0.2000301629304886,
- -0.07975561916828156, 0.007275797426700592, 0.10483498126268387, -0.13200496137142181,
- 0.354214072227478, -0.0009300826932303607, 0.011698449961841106, -0.031125351786613464,
- 0.08108086884021759, 0.028892720118165016, 0.03570098057389259, 0.011205869726836681,
- 0.007303338497877121, 0.04024237021803856, -0.03278132155537605, -0.0013646805891767144,
- 0.01890755631029606, 0.0017012135358527303, -0.033977869898080826,
- -0.018565138801932335, -0.006185449659824371, -0.05689871683716774,
- -0.000018453720258548856, -0.0144904600456357, 0.11422275751829147, 0.07993697375059128,
- -0.02542782761156559, 0.0026395211461931467, 0.06626471132040024, -0.060784224420785904,
- 0.044828977435827255, -0.04362732544541359, 0.03953929618000984, -0.006157408934086561,
- 0.1007782593369484, 0.03615657240152359, 0.049933090806007385, -0.046141862869262695,
- -0.0007097693742252886, 0.07267335057258606, 0.06762894243001938, 0.030766358599066734,
- 0.04390879347920418, 0.06284963339567184, 0.04765373095870018, -0.03125235065817833,
- 0.0015051360242068768, 0.013930752873420715, -0.05160367861390114,
- -0.010394147597253323, -0.022914452478289604, 0.0739554762840271, -0.05856715142726898,
- -0.20084385573863983, 0.02622666023671627, 0.05298995599150658, -0.002141350181773305,
- -0.01992865465581417, 0.027072438970208168, -0.04866623505949974, 0.07366052269935608,
- -0.027312254533171654, -0.029841070994734764, 0.07768169790506363,
- -0.014375388622283936, 0.06835868209600449, 0.0938917025923729, 0.0405469611287117,
- -0.025509336963295937, -0.06153568625450134, -0.0428713895380497, -0.036536525934934616,
- 0.10356240719556808, -0.13296832144260406, -0.0152339031919837, -0.0006843504961580038,
- -0.008769032545387745, 0.624239981174469, 0.12773500382900238, 0.16355830430984497,
- 0.020127275958657265, -0.028299370780587196, 0.13852214813232422, -0.0252978652715683,
- 0.06905916333198547, -0.048240143805742264, -0.08396360278129578, 0.03139357268810272,
- -0.07195299118757248, -0.022885849699378014, 0.06805704534053802, 0.03918994590640068,
- 0.08483218401670456, 0.017931591719388962, 0.06468407064676285, -0.011862476356327534,
- -0.10794203728437424, -0.02692417800426483, 0.060165371745824814, 0.003120421664789319,
- -0.12543265521526337, -0.02395590953528881, 0.047491129487752914, 0.09387803822755814,
- -0.09161099046468735, 0.020550644025206566, -0.06881780177354813, 0.06888901442289352,
- -0.013495240360498428, 0.04317418858408928, -0.024390511214733124, 0.041319143027067184,
- 0.03183484822511673, -0.0017190285725519061, 0.008157092146575451, -0.0674515962600708,
- 0.020941665396094322, 0.09751565009355545, -0.013028298504650593, -0.0409126952290535,
- 0.07719393074512482, -0.0785413533449173, 0.04050577059388161, -0.007570594549179077,
- 0.12648816406726837, -0.12292542308568954, 0.015089537017047405, -0.022539548575878143,
- -0.006392589304596186, 0.02935396134853363, -0.019793713465332985, -0.03230731934309006,
- -0.05496785044670105, 0.046973150223493576, 0.017398737370967865, 0.034893620759248734,
- 0.01774662546813488, -0.04228717088699341, 0.0233656894415617, 0.07079201936721802,
- -0.03244292363524437, -0.024660350754857063, 0.04218415915966034, 0.03472031652927399,
- -0.06467094272375107, -0.03161099553108215, 0.052231643348932266, 0.05872562527656555,
- 0.00624014250934124, 0.004806398879736662, 0.052298933267593384, -0.0076890005730092525,
- -0.04806641861796379, 0.07134845107793808, 0.005900342483073473, 0.007983671501278877,
- 0.08489149808883667, -0.06480932235717773, -0.008742115460336208, -0.044739603996276855,
- 0.007809069473296404, 0.024810791015625, -0.03884153440594673, 0.07534436881542206,
- 0.11325064301490784, 0.05146367847919464, 0.02188836596906185, -0.004202923271805048,
- 0.07126212120056152, 0.044310446828603745, -0.004666839260607958, 0.07773946970701218,
- -0.030721599236130714, -0.070102758705616, -0.03368496894836426, -0.015022690407931805,
- 0.043388232588768005, 0.030672060325741768, -0.0753742977976799, -0.027239633724093437,
- 0.0010529139544814825, -0.008333505131304264, -0.0680854544043541, 0.013194120489060879,
- 0.04726235568523407, 0.011359133757650852, -0.04200230538845062, -0.09311804920434952,
- -0.07235690206289291, 0.01026677805930376, 0.03755014389753342, -0.030957788228988647,
- 0.014997956342995167, -0.12050778418779373, 0.011338419280946255, -0.021316267549991608,
- 0.06568624824285507, 0.010880094952881336, 0.005411616992205381, 0.017992669716477394,
- -0.07078106701374054, 0.035335008054971695, -0.005845137406140566, -0.02285737358033657,
- -0.06866152584552765, -0.06287641823291779, -0.05577251315116882, -0.00673847459256649,
- 0.01431288942694664, -0.010373861528933048, 0.038226351141929626, 0.05361567437648773,
- 0.026460379362106323, -0.017620330676436424, -0.011691269464790821,
- 0.038183726370334625, -0.024505138397216797, -0.028433101251721382, 0.06364850699901581,
- -0.01884991116821766, -0.014762061648070812, -0.017301982268691063,
- -0.050049375742673874, -0.014640449546277523, -0.018436988815665245,
- -0.04312809929251671, 0.049205366522073746, -0.024185551330447197, 0.02254876308143139,
- -0.04032813385128975, -0.020396197214722633, 0.055551689118146896, -0.05836833640933037,
- -0.05410924181342125, -0.060847207903862, 0.1130213662981987, 0.0031005889177322388,
- 0.012418846599757671, -0.005571835208684206, -0.030599074438214302, 0.03488780930638313,
- -0.018681874498724937, -0.01618366315960884, 0.027370532974600792, 0.03296950086951256,
- -0.011844772845506668, -0.017149804159998894, 0.0647442638874054, 0.03729134798049927,
- 0.01653735525906086, 0.06526504456996918, 0.42981958389282227, -0.21365302801132202,
- 0.05771178379654884, 0.06498506665229797, -0.004823977593332529, 0.04891674220561981,
- -0.014168412424623966, 0.06794378161430359, 0.06294583529233932, 0.07377953082323074,
- 0.09775000810623169, -0.06068001687526703, 0.009469719603657722, -0.08838508278131485,
- 0.07844208925962448, 0.01895846053957939, 0.01732678897678852, -0.015696212649345398,
- -0.046441931277513504, -0.031732384115457535, -0.0014631416415795684,
- -0.03114597499370575, -0.014048897661268711, 0.003513086587190628, -0.03312401846051216,
- 0.005344624165445566, 0.03672972694039345, 0.04723992943763733, -0.004963488783687353,
- 0.05417995527386665, -0.03683047369122505, 0.011085146106779575, 0.05687013268470764,
- 0.027658171951770782, -0.11238393187522888, 0.050667937844991684, -0.015436340123414993,
- -0.10412951558828354, 0.05598112940788269, 0.014924637973308563, 0.05266965553164482,
- 0.04090019688010216, -0.008793127723038197, 0.024286165833473206, -0.025259502232074738,
- -0.058652523905038834, 0.003201288403943181, 0.06019085273146629, 0.030138200148940086,
- 0.07896308600902557, 0.17468152940273285, -0.028105922043323517, -0.013260678388178349,
- -0.09216960519552231, 0.04767189547419548, 0.15420345962047577, -0.026195110753178596,
- 0.012182754464447498, -0.00471948366612196, -0.017702853307127953,
- 0.0010610549943521619, -0.020544955506920815, -0.09187347441911697,
- -0.03218427672982216, -0.0459270216524601, 0.11127912253141403, -0.004809226840734482,
- -0.04166129603981972, -0.15305843949317932, -0.039531610906124115, -0.04797011613845825,
- 0.015842821449041367, 0.1260080188512802, -0.06451716274023056, 0.03819243237376213,
- -0.001187290414236486, 0.0022381360176950693, 0.011326592415571213,
- -0.07302416861057281, -0.0005488115712068975, -0.031420741230249405,
- 0.03599265590310097, 0.05693880841135979, 0.041205767542123795, -0.04301223158836365,
- 0.08401752263307571, -0.08815348148345947, 0.05923917889595032, 0.02849569357931614,
- -0.02646988071501255, 0.039616238325834274, -0.025203576311469078, 0.033148255199193954,
- 0.04096243157982826, -0.038395848125219345, 0.016471536830067635, -0.029588453471660614,
- -0.01976999081671238, -0.10645133256912231, -0.06809647381305695, -0.041053202003240585,
- -0.07137825340032578, 0.027937093749642372, -0.03617445006966591, 0.02723739482462406,
- -0.00536365294829011, -0.024888798594474792, -0.026201413944363594, 0.0397472083568573,
- -0.007365591358393431, -0.12890078127384186, 0.00949881598353386, 0.02056754194200039,
- 0.06490115076303482, -0.025183506309986115, -0.04872659966349602, 0.01964639499783516,
- 0.07568597048521042, 0.03734128177165985, -0.04099707677960396, -0.01033786591142416,
- -0.061670493334531784, 0.0651014894247055, -0.08989829570055008, -0.48390623927116394,
- 0.04193427786231041, 0.029917864128947258, 0.032553937286138535, 0.03757104650139809,
- -0.07427076995372772, 0.0336928628385067, -0.016400014981627464, -0.009113376028835773,
- 0.07235497236251831, -0.045445531606674194, 0.035764679312705994, -0.008351399563252926,
- -0.04338584467768669, 0.013688887469470501, -0.06443512439727783, -0.05698266625404358,
- 0.05179817974567413, -0.017698295414447784, -0.05711729824542999, -0.0986144170165062,
- 0.013007613830268383, -0.015929410234093666, 0.02922639064490795, 0.004089757800102234,
- 0.02944849617779255, -0.055424366146326065, -0.035794809460639954, 0.054413650184869766,
- 0.04207892343401909, 0.02582978643476963, -0.05446459725499153, 0.04072478786110878,
- 0.08216826617717743, 0.014146152883768082, 0.12174901366233826, -0.002237307606264949,
- -0.0226896982640028, -0.0638066828250885, 0.08196886628866196, 0.06244379281997681,
- 0.18875211477279663, 0.0012244073441252112, 0.021843543276190758, -0.01378208864480257,
- 0.11247938126325607, 0.04478217661380768, 0.021679529920220375, -0.041195500642061234,
- 0.016617605462670326, 0.013536129146814346, 0.008621440269052982, 0.09356687217950821,
- -0.08190812915563583, -0.002629471244290471, -0.036361534148454666,
- -0.006080506835132837, -0.01408118475228548, -0.02332257479429245, 0.18266016244888306,
- 0.01528348308056593, 0.020752282813191414, 0.02015102095901966, -0.06123838201165199,
- 0.030251964926719666, -0.07696766406297684, -0.10233614593744278,
- -0.0030453496146947145, 0.022702908143401146, -0.0014663813635706902,
- -0.048125699162483215, -0.09226011484861374, -0.01635085605084896,
- 0.0018213341245427728, -0.007126765325665474, 0.09752582758665085, -0.03371972218155861,
- 0.03842470794916153, -0.05914362147450447, 0.12626071274280548, 0.019163476303219795,
- 0.04825397953391075, 0.04967838153243065, 0.04882430657744408, 0.011894595809280872,
- -0.036171507090330124, -0.05148836597800255, -0.05602666735649109,
- -0.014836451970040798, 0.1547299325466156, 0.005176671780645847, 0.12643243372440338,
- 0.028367646038532257, -0.04684656858444214, -0.027720140293240547, 0.018763942644000053,
- 0.020756108686327934, -0.0016309438506141305, -0.44360968470573425,
- -0.02155464142560959, 0.0843450054526329, 0.008630071766674519, 0.011628415435552597,
- 0.06415855139493942, 0.0028528785333037376, -0.06579238921403885, -0.028216013684868813,
- -0.07685491442680359, 0.09958013147115707, -0.01974424719810486, 0.05830985680222511,
- -0.09553521871566772, 0.03823321312665939, 0.06885045021772385, -0.042382825165987015,
- -0.000030195011277101003, 0.03844345733523369, -0.21728210151195526,
- 0.006949166301637888, -0.031023407354950905, 0.11728478223085403, 0.037437550723552704,
- 0.02353091351687908, 0.0886305645108223, -0.06406542658805847, 0.034463100135326385,
- 0.041290998458862305, -0.0018602722557261586, 0.06574473530054092, 0.007331889122724533,
- -0.020590277388691902, 0.08567366749048233, 0.07842245697975159, 0.07494941353797913,
- -0.03146504610776901, 11.833427429199219, 0.02973288856446743, 0.05435371398925781,
- -0.09310828894376755, 0.008377865888178349, -0.06576815247535706, 0.005919941235333681,
- -0.09798216074705124, 0.06654900312423706, 0.08095576614141464, 0.008464430458843708,
- -0.016468945890665054, -0.02771872840821743, -0.09425767511129379, 0.024126997217535973,
- -0.023047521710395813, -0.05779249593615532, -0.07087545096874237, 0.030619844794273376,
- -0.05007930472493172, -0.021763786673545837, 0.06783336400985718, 0.06291034072637558,
- 0.008617383427917957, -0.041030023247003555, 0.04430869221687317, -0.002210786798968911,
- -0.009158744476735592, -0.0033073772210627794, 0.02879243530333042,
- 0.006733179558068514, 0.058458343148231506, 0.0658041462302208, 0.007421685382723808,
- 0.028714722022414207, 0.013342677615582943, 0.07254233956336975, 0.016605719923973083,
- 0.03198493644595146, 0.06139955297112465, 0.010923079214990139, -0.008991505019366741,
- 0.01285797730088234, 0.04688272252678871, 0.057909801602363586, 0.04841183125972748,
- 0.026335952803492546, 0.11180973798036575, 0.000036542031011777, 0.05507422611117363,
- 0.0997127890586853, -0.009847468696534634, 0.10150951892137527, -0.0011990267084911466,
- -0.00046288876910693944, 0.07724190503358841, -0.025467656552791595,
- -0.08795395493507385, 0.07610205560922623, 0.04687126353383064, -0.0668734610080719,
- 0.10244297981262207, 0.020066844299435616, 0.13315223157405853, -0.021959075704216957,
- 0.04275521636009216, 0.06409893929958344, 0.04385221377015114, -0.08807751536369324,
- -0.04135032370686531, 0.04688272252678871, -0.09202587604522705, -0.0398947112262249,
- 0.02082700841128826, 0.061424341052770615, -0.04718143865466118, 0.05744643881917,
- -0.036175329238176346, 0.033584799617528915, -0.027085142210125923,
- -0.0038726942148059607, 0.030770158395171165, -0.05551731586456299, 0.03470421954989433,
- 0.08387231826782227, -0.00626775249838829, 0.03586674854159355, 0.11490639299154282,
- 0.01622178591787815, -0.08327549695968628, -0.0710415318608284, 0.10982789844274521,
- -0.0026150736957788467, -0.052891235798597336, -0.0045028007589280605,
- -0.06576183438301086, -0.0064859651029109955, -0.13497577607631683, 0.05909600481390953,
- 0.13278567790985107, -0.08038262277841568, -0.04149563983082771, -0.03450465574860573,
- 0.11253070086240768, 0.0006177444010972977, -0.011552740819752216, -0.09687688946723938,
- 0.04334447905421257, -0.0050928411073982716, 0.041247736662626266, -0.0625869408249855,
- 0.008434084244072437, 0.09107175469398499, -0.014181055128574371, 0.045644208788871765,
- 0.07503687590360641, -0.04600398615002632, -0.03391871973872185, 0.046408381313085556,
- 0.014784053899347782, -0.0801871120929718, -0.021934548392891884, -0.029478149488568306,
- -0.028941532596945763, -0.008916867896914482, -0.013895220123231411,
- 0.0014250226086005569, 0.011779745109379292, -0.02621258608996868,
- -0.037307653576135635, 0.05388848856091499, 0.058117806911468506, 0.06722962856292725,
- 0.007900985889136791, 0.06852304935455322, -0.01863148994743824, -0.019681284204125404,
- 0.05621277913451195, 0.06182393431663513, 0.07284583151340485, -0.044863779097795486,
- -0.01771489717066288, -0.03687414899468422, -0.12031256407499313, 0.01340267900377512,
- 0.08497738093137741, 0.03047298640012741, 0.053008388727903366, -0.0009024512837640941,
- -0.06401704996824265, -0.02197614312171936, 0.06516998261213303, 0.0296733770519495,
- 0.010936013422906399, -0.002501776674762368, -0.06441943347454071,
- -0.016877466812729836, 0.08712700754404068, -0.018464935943484306,
- -0.0018277178751304746, 0.017013689503073692, -0.04260385408997536, 0.0841466560959816,
- 0.09454559534788132, 0.03954355791211128, 0.008446247316896915, -0.01120454166084528,
- 0.024323629215359688, -0.0038917053025215864, 0.014816038310527802,
- -0.014868669211864471, -0.04461786150932312, -0.05920736491680145, -0.0795169547200203,
- 0.030433939769864082, 0.0819903314113617, 0.06125935912132263, -0.11180165410041809,
- -0.0333528034389019, -0.02691841311752796
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 127,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 16,
- "similarity": 0.9989562630653381
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 53,
- "similarity": 0.9987208247184753
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 68,
- "similarity": 0.998593270778656
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Jim Waterson"],
- "epoch_date_downloaded": 1633305600,
- "epoch_date_modified": 1633305600,
- "epoch_date_submitted": 1633305600,
- "flag": null,
- "report_number": 1493,
- "source_domain": "theguardian.com",
- "submitters": ["Kate Perkins"],
- "title": "Microsoft sacks journalists to replace them with robots",
- "url": "https://www.theguardian.com/technology/2020/may/30/microsoft-sacks-journalists-to-replace-them-with-robots"
- },
- {
- "__typename": "Report",
- "authors": ["Tom Warren"],
- "epoch_date_downloaded": 1633305600,
- "epoch_date_modified": 1633305600,
- "epoch_date_submitted": 1633305600,
- "flag": null,
- "report_number": 1492,
- "source_domain": "theverge.com",
- "submitters": ["Kate Perkins"],
- "title": "Microsoft lays off journalists to replace them with AI",
- "url": "https://www.theverge.com/2020/5/30/21275524/microsoft-news-msn-layoffs-artificial-intelligence-ai-replacements"
- },
- {
- "__typename": "Report",
- "authors": ["Dan Robitzski"],
- "epoch_date_downloaded": 1633305600,
- "epoch_date_modified": 1633305600,
- "epoch_date_submitted": 1633305600,
- "flag": null,
- "report_number": 1491,
- "source_domain": "futurism.com",
- "submitters": ["Kate Perkins"],
- "title": "MSN Fires Journalists, Replaces Them With AI",
- "url": "https://futurism.com/the-byte/msn-fires-journalists-replaces-ai"
- },
- {
- "__typename": "Report",
- "authors": ["Mayank Kumar"],
- "epoch_date_downloaded": 1633305600,
- "epoch_date_modified": 1633305600,
- "epoch_date_submitted": 1633305600,
- "flag": null,
- "report_number": 1490,
- "source_domain": "financialexpress.com",
- "submitters": ["Kate Perkins"],
- "title": "Robot uprising begins? Microsoft fires journalists, replaces them with AI",
- "url": "https://www.financialexpress.com/industry/technology/robot-uprising-begins-microsoft-fires-journalists-replaces-them-with-ai/1977441/"
- },
- {
- "__typename": "Report",
- "authors": ["Kahekashan"],
- "epoch_date_downloaded": 1633305600,
- "epoch_date_modified": 1633305600,
- "epoch_date_submitted": 1633305600,
- "flag": null,
- "report_number": 1489,
- "source_domain": "thehansindia.com",
- "submitters": ["Kate Perkins"],
- "title": "Microsoft fires journalists to replace them with AI robots",
- "url": "https://www.thehansindia.com/technology/tech-news/microsoft-fires-journalists-to-replace-them-with-ai-robots-625324"
- },
- {
- "__typename": "Report",
- "authors": ["Avinash A"],
- "epoch_date_downloaded": 1633305600,
- "epoch_date_modified": 1633305600,
- "epoch_date_submitted": 1633305600,
- "flag": null,
- "report_number": 1488,
- "source_domain": "techlog360.com",
- "submitters": ["Kate Perkins"],
- "title": "Microsoft fires MSN journalists - replaces them with AI robots",
- "url": "https://techlog360.com/microsoft-fires-msn-journalists-replaces-them-with-ai-robots/"
- },
- {
- "__typename": "Report",
- "authors": ["Girish Shetti"],
- "epoch_date_downloaded": 1633305600,
- "epoch_date_modified": 1633305600,
- "epoch_date_submitted": 1633305600,
- "flag": null,
- "report_number": 1487,
- "source_domain": "techpluto.com",
- "submitters": ["Kate Perkins"],
- "title": "Microsoft Fires Journalists and replaces them with AI – Top Trending News",
- "url": "https://www.techpluto.com/microsoft-fires-journalists-and-replaces-them-with-ai-top-trending-news/"
- },
- {
- "__typename": "Report",
- "authors": ["Jim Waterson"],
- "epoch_date_downloaded": 1633305600,
- "epoch_date_modified": 1633305600,
- "epoch_date_submitted": 1633305600,
- "flag": null,
- "report_number": 1486,
- "source_domain": "theguardian.com",
- "submitters": ["Kate Perkins"],
- "title": "Microsoft's robot editor confuses mixed-race Little Mix singers",
- "url": "https://www.theguardian.com/technology/2020/jun/09/microsofts-robot-journalist-confused-by-mixed-race-little-mix-singers"
- },
- {
- "__typename": "Report",
- "authors": ["Shivali Best"],
- "epoch_date_downloaded": 1633305600,
- "epoch_date_modified": 1633305600,
- "epoch_date_submitted": 1633305600,
- "flag": null,
- "report_number": 1461,
- "source_domain": "mirror.co.uk",
- "submitters": ["Kate Perkins"],
- "title": "Little Mix's Jade Thirlwall slams Microsoft after its AI confuses her with bandmate",
- "url": "https://www.mirror.co.uk/tech/little-mixs-jade-thirlwall-slams-22162740"
- },
- {
- "__typename": "Report",
- "authors": ["Jamie P."],
- "epoch_date_downloaded": 1633305600,
- "epoch_date_modified": 1633305600,
- "epoch_date_submitted": 1633305600,
- "flag": null,
- "report_number": 1458,
- "source_domain": "techtimes.com",
- "submitters": ["Kate Perkins"],
- "title": "Little Mix' Leigh-Anne Pinnock Gets Mistaken as Jade Thirlwall on MSN; Here's Why it Happened",
- "url": "https://www.techtimes.com/articles/250226/20200610/little-mix-leigh-anne-pinnock-gets-mistaken-as-jade-thirlwall-on-msn-heres-why-it-happen.htm"
- },
- {
- "__typename": "Report",
- "authors": ["Anagha Srikanth"],
- "epoch_date_downloaded": 1633305600,
- "epoch_date_modified": 1633305600,
- "epoch_date_submitted": 1633305600,
- "flag": null,
- "report_number": 1457,
- "source_domain": "thehill.com",
- "submitters": ["Kate Perkins"],
- "title": "Backlash after Microsoft's robot editor confuses mixed-race Little Mix singers",
- "url": "https://thehill.com/changing-america/enrichment/arts-culture/502059-backlash-after-microsofts-robot-editor-confuses"
- },
- {
- "__typename": "Report",
- "authors": ["James Vincent"],
- "epoch_date_downloaded": 1633305600,
- "epoch_date_modified": 1633305600,
- "epoch_date_submitted": 1633305600,
- "flag": null,
- "report_number": 1456,
- "source_domain": "theverge.com",
- "submitters": ["Kate Perkins"],
- "title": "Microsoft’s AI journalists confuse mixed-race Little Mix singers",
- "url": "https://www.theverge.com/2020/6/9/21284934/microsoft-ai-news-editors-msn-homepage-little-mix-singers"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "tesla",
- "name": "Tesla"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "tesla",
- "name": "Tesla"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "tesla-drivers",
- "name": "Tesla drivers"
- },
- {
- "__typename": "Entity",
- "entity_id": "eric-horvitz",
- "name": "Eric Horvitz"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1818, 1459],
- "vector": [
- -0.07448812574148178, 0.07386907935142517, 0.01717619225382805, -0.07847027480602264,
- 0.0811958983540535, -0.008450081571936607, -0.021366160362958908, 0.03130573779344559,
- 0.0605304092168808, -0.15274962782859802, -0.010239968076348305, 0.04983656108379364,
- 0.03994648903608322, -0.06619102507829666, 0.06224155053496361, -0.06467799842357635,
- -0.10508950054645538, -0.054039277136325836, -0.009895575232803822, -0.1701287180185318,
- -0.05847087502479553, -0.02857852354645729, 0.03004845604300499, 0.09245973080396652,
- -0.0377979502081871, -0.007329570595175028, 0.15285298228263855, 0.120334193110466,
- -0.03484699875116348, 0.05446705222129822, -0.05191230773925781, -0.0829228013753891,
- 0.11836379766464233, 0.028216082602739334, 0.009412257000803947, 0.11413030326366425,
- -0.009021447040140629, -0.014399060979485512, -0.0014068535529077053,
- -0.0026271571405231953, 0.0021081287413835526, 0.27234676480293274,
- -0.00021318579092621803, -0.0343501977622509, 0.04784044250845909,
- -0.029394958168268204, 0.030802125111222267, 0.026948347687721252, 0.020410723984241486,
- 0.0006048176437616348, -0.01431143656373024, 0.02692224457859993, -0.026190029457211494,
- 0.05055459216237068, -0.08956531435251236, 0.07660525292158127, 0.027817361056804657,
- 0.01654936745762825, 0.07840007543563843, -0.07448725402355194, -0.01594056934118271,
- -0.2378474473953247, -0.05840151384472847, -0.08047561347484589, 0.07099708169698715,
- -0.08322761952877045, 0.00032016588374972343, 0.004689555615186691,
- 0.015390725806355476, 0.04844290018081665, 0.048662781715393066, -0.05299657955765724,
- -0.02541586197912693, 0.06672346591949463, -0.020496077835559845, 0.02288602478802204,
- -0.023596307262778282, 0.21793043613433838, -0.1777789294719696, -0.04052544757723808,
- 0.10862885415554047, -0.11645616590976715, 0.4197903871536255, -0.004141962621361017,
- -0.031855739653110504, 0.008124214597046375, 0.11339964717626572, 0.04489121958613396,
- 0.025332102552056313, 0.04043144732713699, -0.007453048601746559, 0.05676674842834473,
- -0.08899158239364624, 0.0035750167444348335, 0.056809499859809875, 0.04097425192594528,
- -0.004166574217379093, 0.0854528546333313, -0.009036630392074585, -0.016543220728635788,
- 0.029650215059518814, -0.0631108283996582, 0.07892977446317673, 0.08066961914300919,
- -0.058022499084472656, -0.019732661545276642, 0.13177351653575897, -0.04003651812672615,
- 0.04998381435871124, -0.10008665919303894, 0.00750869931653142, -0.0492422841489315,
- 0.015431581065058708, -0.030744697898626328, 0.05357974022626877, -0.10016115754842758,
- -0.0023321271874010563, 0.03094206564128399, 0.11337493360042572, 0.04770815372467041,
- -0.04515354335308075, 0.07018394768238068, 0.07394693046808243, -0.08161674439907074,
- -0.06311485171318054, -0.023246493190526962, -0.06517946720123291,
- -0.022364528849720955, -0.023752667009830475, 0.05641372501850128, -0.07002362608909607,
- -0.18931998312473297, 0.03234119713306427, 0.1501043736934662, -0.03299294784665108,
- -0.044630445539951324, -0.010610165074467659, -0.09862545132637024, 0.0659426599740982,
- -0.0372014194726944, -0.0327574759721756, 0.04377897083759308, 0.07480183243751526,
- 0.02477765455842018, 0.10731959342956543, 0.05440405756235123, -0.03968114033341408,
- -0.05435091257095337, 0.010654555633664131, 0.0014879601076245308, 0.13302424550056458,
- -0.15597178041934967, -0.05402505397796631, -0.03287074714899063, 0.006619998253881931,
- 0.7199698686599731, 0.129298135638237, 0.2015862911939621, 0.00829679612070322,
- -0.05106609687209129, 0.1823926866054535, 0.035195328295230865, 0.06300973892211914,
- -0.07462966442108154, -0.05748055875301361, 0.012685141526162624, -0.09515643864870071,
- -0.0329308807849884, 0.012297448702156544, -0.011434340849518776, 0.13242174685001373,
- 0.021350186318159103, 0.0923217236995697, 0.03030930459499359, -0.09125058352947235,
- 0.004908263683319092, 0.08275531977415085, -0.013081854209303856, -0.1126859113574028,
- -0.03667420148849487, 0.03416426479816437, 0.09407860040664673, -0.1074240654706955,
- -0.0019018184393644333, -0.05187515914440155, 0.032254040241241455,
- -0.03391862288117409, 0.02032436430454254, -0.006650259252637625, 0.07673642039299011,
- 0.040075697004795074, 0.110945925116539, -0.016309302300214767, -0.12007163465023041,
- -0.0389728844165802, 0.09060534834861755, -0.040148280560970306, -0.028131753206253052,
- 0.08306518197059631, -0.061054859310388565, 0.04808564484119415, 0.010509821586310863,
- 0.14816290140151978, -0.12691161036491394, 0.07568341493606567, 0.022033369168639183,
- -0.019288327544927597, 0.0718037411570549, -0.0049471016973257065, -0.05304177105426788,
- -0.06491155922412872, 0.08904019743204117, 0.040579117834568024, 0.026429153978824615,
- 0.10800948739051819, -0.04383283108472824, 0.02711879089474678, 0.09647783637046814,
- 0.0354234054684639, -0.01945861056447029, 0.04605042189359665, 0.09239305555820465,
- 0.01987721025943756, -0.03552304580807686, 0.016992665827274323, 0.0203535333275795,
- 0.05765143036842346, 0.0061426362954080105, 0.07360194623470306, 0.003528834320604801,
- -0.05564301460981369, 0.014989081770181656, 0.07074470818042755, 0.036945708096027374,
- 0.09336289018392563, -0.07448495924472809, -0.07305780798196793, -0.03992258012294769,
- -0.029018422588706017, 0.0030203694477677345, -0.014560800045728683, 0.1021110936999321,
- 0.10106784105300903, 0.10657699406147003, 0.024958206340670586, 0.029091190546751022,
- 0.05719456449151039, 0.05344745144248009, 0.003392220241948962, 0.09714855998754501,
- -0.008756867609918118, -0.060701191425323486, -0.020829124376177788,
- 0.008168659172952175, -0.0026474720798432827, 0.013829275965690613,
- -0.03747917711734772, -0.04842475801706314, -0.11003497242927551, -0.052399247884750366,
- -0.0798826664686203, -0.06764008104801178, -0.010454613715410233, 0.06346908211708069,
- -0.034958548843860626, -0.10685268044471741, -0.12621080875396729, 0.01614476554095745,
- 0.07263584434986115, 0.0018711769953370094, -0.033762529492378235, -0.11495994031429291,
- 0.012512562796473503, -0.06107735633850098, 0.03838517889380455, 0.004387352149933577,
- 0.006770007312297821, -0.0412338450551033, -0.10876131057739258, 0.0005231522955000401,
- -0.041022997349500656, 0.0003694728948175907, -0.02656000480055809,
- -0.07754124701023102, -0.003919397480785847, -0.016249632462859154,
- 0.043848730623722076, -0.014427843503654003, 0.0444067046046257, 0.003997547551989555,
- 0.04017289727926254, -0.01533654797822237, -0.05555029213428497, 0.06071648746728897,
- 0.009900890290737152, -0.03374534845352173, 0.10076911002397537, -0.04172299802303314,
- 0.03979208692908287, 0.023311838507652283, -0.061765484511852264, -0.038701921701431274,
- 0.01769263669848442, -0.05267965793609619, 0.04376712441444397, -0.039037421345710754,
- 0.015612233430147171, -0.0356217697262764, 0.019220268353819847, 0.04576301947236061,
- -0.028135549277067184, -0.07604748010635376, -0.1180318295955658, 0.14494943618774414,
- -0.005647201556712389, -0.045913949608802795, 0.023321017622947693,
- -0.05668890103697777, 0.07719893753528595, 0.023012617602944374, 0.008980613201856613,
- 0.014807216823101044, 0.05490173399448395, -0.01977790892124176, 0.02729126438498497,
- 0.06872010231018066, -0.05036269873380661, 0.02645973302423954, 0.10564582794904709,
- 0.43262988328933716, -0.20732784271240234, 0.07853428274393082, 0.09855929017066956,
- 0.060472242534160614, 0.05114198103547096, -0.06604377925395966, 0.060471463948488235,
- 0.06068825721740723, 0.1059955283999443, 0.1258973479270935, -0.02864135429263115,
- -0.017963826656341553, -0.052410468459129333, 0.10708850622177124,
- -0.015726378187537193, 0.0271263737231493, -0.04290272295475006, -0.06115677207708359,
- -0.011911243200302124, 0.06413184106349945, -0.06851299852132797, -0.017424730584025383,
- -0.0009006097679957747, -0.07093112170696259, -0.03091220185160637,
- 0.018042996525764465, -0.005937377922236919, -0.029885269701480865, 0.02036084420979023,
- -0.03312243893742561, 0.021221905946731567, 0.02728087827563286, 0.045565053820610046,
- -0.1641271412372589, 0.03987567871809006, -0.10185395181179047, -0.09407627582550049,
- 0.048527322709560394, -0.034348905086517334, 0.08473367244005203, 0.05193269997835159,
- 0.001349802128970623, 0.04266022518277168, 0.01577434130012989, -0.053020283579826355,
- 0.024667032063007355, 0.04106747731566429, 0.020751498639583588, 0.06053783744573593,
- 0.15787984430789948, -0.04785596579313278, -0.06006404012441635, -0.08787266165018082,
- 0.07340800762176514, 0.12411896884441376, -0.03378574922680855, 0.0012505720369517803,
- -0.009438274428248405, -0.008853092789649963, -0.025020280852913857,
- -0.06201932951807976, -0.08911889791488647, 0.004766630008816719, -0.023018786683678627,
- 0.05049135535955429, 0.013334400951862335, -0.004723057150840759, -0.1824502795934677,
- -0.038474537432193756, -0.038763828575611115, 0.01894853450357914, 0.15473490953445435,
- -0.02835925854742527, 0.020756613463163376, 0.045900315046310425, -0.03014044277369976,
- 0.025179855525493622, -0.10417906939983368, 0.0028945361264050007,
- -0.031893253326416016, 0.02288266271352768, 0.06310856342315674, 0.04892774671316147,
- 0.004625101573765278, 0.11426383256912231, -0.08958427608013153, 0.04049474745988846,
- 0.04965633898973465, -0.003152342513203621, 0.04983125627040863, -0.053730159997940063,
- 0.05193138122558594, 0.06871705502271652, -0.060435544699430466, 0.06357702612876892,
- -0.06287004053592682, -0.057173311710357666, -0.10985225439071655, -0.0811438113451004,
- -0.023773979395627975, -0.10826138406991959, 0.05691349506378174, -0.1323869228363037,
- -0.03624900057911873, -0.04345690459012985, 0.011689404956996441, -0.005560971796512604,
- 0.05387788265943527, 0.050410497933626175, -0.14420855045318604, 0.04091556742787361,
- -0.026063069701194763, 0.04930379241704941, 0.009579573757946491, -0.03520791977643967,
- -0.0018026726320385933, 0.0844319760799408, 0.06809566169977188, -0.02890985831618309,
- 0.0012083956971764565, -0.10104424506425858, 0.04833845794200897, -0.11967776715755463,
- -0.43298107385635376, 0.05675574392080307, 0.039239171892404556, 0.026855088770389557,
- -0.042300157248973846, -0.011665519326925278, 0.04022030532360077,
- -0.028618494048714638, -0.04533809795975685, 0.0948580801486969, -0.0642988458275795,
- 0.0013610573951154947, -0.05416931211948395, -0.06275719404220581, -0.05550239980220795,
- -0.0417378731071949, -0.08371126651763916, 0.03912757709622383, -0.023215461522340775,
- -0.09280792623758316, -0.09714586287736893, 0.0448429211974144, 0.01652127131819725,
- -0.021229851990938187, 0.004691815469413996, 0.028261244297027588,
- -0.022451642900705338, -0.04186909645795822, 0.003531215712428093, 0.013401070609688759,
- 0.04191409796476364, -0.06340618431568146, -0.011463184840977192, 0.02479657158255577,
- -0.031122416257858276, 0.1437026709318161, -0.01095372810959816, 0.03932924568653107,
- -0.08888661116361618, 0.09686264395713806, 0.07130478322505951, 0.18386471271514893,
- -0.02282440848648548, 0.023753298446536064, 0.03471716120839119, 0.1483187973499298,
- 0.08831623196601868, 0.0038897194899618626, -0.024761755019426346, -0.03071398101747036,
- 0.04497319459915161, -0.0027138907462358475, 0.07711977511644363, -0.09078899025917053,
- -0.04314213618636131, -0.004628514871001244, 0.004840484820306301,
- -0.005320107564330101, 0.057182665914297104, 0.21012243628501892, 0.05094090849161148,
- 0.05132151395082474, -0.023428892716765404, -0.06833912432193756, -0.011865879409015179,
- -0.06498224288225174, -0.06688844412565231, -0.024555962532758713, -0.03736836463212967,
- 0.021251175552606583, -0.06383473426103592, -0.13839593529701233, -0.005472398363053799,
- -0.012413378804922104, -0.003915619105100632, 0.12234731018543243, 0.025344422087073326,
- 0.022147437557578087, -0.03154883161187172, 0.13809475302696228, 0.05317888408899307,
- 0.00484953448176384, 0.06358188390731812, 0.10113993287086487, 0.02780240960419178,
- 0.05198967456817627, -0.03524845093488693, -0.07003248482942581, 0.050484124571084976,
- 0.17683395743370056, -0.06434916704893112, 0.06491570919752121, 0.03945399820804596,
- -0.051186807453632355, -0.08642535656690598, 0.04445241391658783, 0.02023829147219658,
- 0.04147537797689438, -0.4713871479034424, -0.024890057742595673, 0.141404390335083,
- 0.010726888664066792, 0.06057130917906761, 0.08509290218353271, 0.05989619344472885,
- -0.04111771285533905, -0.05069919675588608, -0.0681668147444725, 0.09238386154174805,
- -0.029791824519634247, 0.06344527006149292, -0.1232740581035614, 0.07159680873155594,
- 0.06939235329627991, -0.044232651591300964, -0.03040589950978756, 0.08978192508220673,
- -0.3103344440460205, -0.015418650582432747, -0.04857375845313072, 0.12090682983398438,
- 0.012379799038171768, 0.03903619945049286, 0.06041370704770088, -0.0374307855963707,
- 0.04677731171250343, 0.0855928510427475, -0.052100006490945816, 0.03456408157944679,
- 0.0019165119156241417, 0.005622598808258772, 0.12822620570659637, 0.09538564085960388,
- 0.019546598196029663, -0.013115620240569115, 12.096345901489258, 0.0834914892911911,
- 0.05276709794998169, -0.10204924643039703, 0.033188346773386, -0.045397549867630005,
- 0.019016612321138382, -0.11517992615699768, 0.04563073068857193, 0.1628085970878601,
- -0.04327213019132614, -0.04154884070158005, -0.026116395369172096, -0.1237819641828537,
- 0.023051120340824127, -0.1051262766122818, -0.0608745813369751, -0.011123514734208584,
- 0.02978575974702835, -0.04530593752861023, 0.0038807590026408434, 0.012059357017278671,
- 0.04891185462474823, 0.020699098706245422, -0.06507238745689392, 0.09712409228086472,
- 0.06161120533943176, -0.03247839957475662, -0.007501733489334583, 0.039187222719192505,
- -0.03568059951066971, 0.07187323272228241, 0.050505563616752625, 0.012146105989813805,
- -0.0194682739675045, 0.1516622006893158, 0.08321486413478851, 0.03249335289001465,
- 0.014501869678497314, 0.08667905628681183, 0.013148650527000427, 0.041150446981191635,
- 0.057097967714071274, 0.025354895740747452, 0.03816133737564087, 0.048561789095401764,
- 0.057262301445007324, 0.14376145601272583, 0.01727929711341858, 0.03903284668922424,
- 0.09179903566837311, -0.05014563351869583, 0.157761812210083, -0.0017713122069835663,
- -0.019800884649157524, 0.02323583886027336, -0.0027136493008583784, -0.076009601354599,
- 0.09613805264234543, 0.036331336945295334, -0.0086036566644907, 0.08363649994134903,
- 0.018774697557091713, 0.06323859840631485, -0.04682979732751846, 0.09949558228254318,
- 0.04668273776769638, 0.057559069246053696, -0.11946696043014526, -0.11798686534166336,
- 0.04014189913868904, -0.1285059005022049, -0.07723014056682587, 0.0975821241736412,
- 0.1224096268415451, -0.044727250933647156, -0.0005127498880028725,
- -0.027700699865818024, 0.04769865423440933, -0.06578540056943893, -0.022510016337037086,
- 0.04526396840810776, 0.017196644097566605, 0.026335664093494415, 0.0708153247833252,
- 0.023333627730607986, 0.06906716525554657, 0.09211999922990799, -0.03576960414648056,
- -0.0737021341919899, -0.08510535955429077, 0.04742567241191864, -0.03582647442817688,
- -0.06560657918453217, 0.0481165274977684, -0.056997016072273254, 0.039070144295692444,
- -0.17421582341194153, 0.08756536990404129, 0.08247111737728119, -0.11194269359111786,
- -0.019061680883169174, -0.017489805817604065, 0.04792728275060654,
- -0.003910483326762915, 0.06509435176849365, -0.029902424663305283, 0.0262153223156929,
- 0.05919433385133743, 0.05768108740448952, -0.020304610952734947, 0.09515361487865448,
- 0.08549800515174866, -0.0651681199669838, 0.03755383566021919, 0.08531184494495392,
- -0.030876275151968002, -0.03433101624250412, 0.06395269930362701, 0.06160741299390793,
- -0.08291573822498322, -0.07853396236896515, -0.03215140104293823, -0.04983816668391228,
- -0.051410362124443054, -0.07070015370845795, 0.034649558365345, 0.016660263761878014,
- -0.0378042533993721, -0.051137957721948624, -0.009620390832424164, 0.06900438666343689,
- 0.06895950436592102, 0.0224371999502182, 0.08401064574718475, -0.08425110578536987,
- -0.049484796822071075, 0.03357803821563721, 0.016840681433677673, 0.04240578040480614,
- -0.03068292886018753, -0.00041195901576429605, -0.057165034115314484,
- -0.13151443004608154, 0.028917739167809486, 0.08975284546613693, 0.060554951429367065,
- 0.010999245569109917, 0.053807489573955536, -0.10445261001586914, -0.0565866157412529,
- 0.10290735960006714, 0.042649246752262115, 0.0022678894456475973, 0.01475602202117443,
- -0.11000603437423706, -0.0585128590464592, 0.11699041724205017, -0.04487886279821396,
- 0.004051765892654657, 0.033573612570762634, 0.014731061644852161, 0.07493437081575394,
- 0.06883712112903595, 0.0766565352678299, 0.07537256181240082, 0.0071909623220562935,
- -0.0395859032869339, 0.07553981244564056, -0.040587905794382095, 0.03855011612176895,
- -0.014767971821129322, -0.11773349344730377, -0.06199628859758377, 0.02622220292687416,
- 0.09627427160739899, -0.01784610003232956, -0.1258137971162796, 0.012529546394944191,
- -0.051193252205848694
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 128,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 20,
- "similarity": 0.9982011318206787
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 8,
- "similarity": 0.998096227645874
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 71,
- "similarity": 0.9980815649032593
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Carlos Creus Moreira"],
- "epoch_date_downloaded": 1657065600,
- "epoch_date_modified": 1659225600,
- "epoch_date_submitted": 1657065600,
- "flag": null,
- "report_number": 1818,
- "source_domain": "carloscreusmoreira.medium.com",
- "submitters": ["Khoa Lam"],
- "title": "The Ethics of Artificial Intelligence transcript from the #transhumancode bestseller",
- "url": "https://carloscreusmoreira.medium.com/the-ethics-of-artificial-intelligence-transcript-from-the-transhumancode-bestseller-a1b091d88549"
- },
- {
- "__typename": "Report",
- "authors": ["Tom Simonite"],
- "epoch_date_downloaded": 1634688000,
- "epoch_date_modified": 1634688000,
- "epoch_date_submitted": 1634688000,
- "flag": null,
- "report_number": 1459,
- "source_domain": "wired.com",
- "submitters": ["Eric Horvitz"],
- "title": "Tech Firms Move to Put Ethical Guard Rails Around AI",
- "url": "https://www.wired.com/story/tech-firms-move-to-put-ethical-guard-rails-around-ai/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "facebook",
- "name": "Facebook"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "facebook",
- "name": "Facebook"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "facebook-users",
- "name": "Facebook users"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1462],
- "vector": [
- -0.05448496714234352, 0.06549761444330215, 0.006509828381240368, -0.10365407913923264,
- 0.110109344124794, -0.032861460000276566, 0.0016431377734988928, 0.03426326811313629,
- 0.02764466218650341, -0.12246309965848923, 0.009159378707408905, 0.02226327732205391,
- 0.013517912477254868, -0.07971471548080444, 0.030138874426484108, -0.05869797244668007,
- -0.09528425335884094, -0.038276005536317825, -0.010212179273366928,
- -0.13819468021392822, -0.05563812702894211, 0.013025041669607162, 0.0033902765717357397,
- 0.09471496939659119, 0.0026408375706523657, 0.003527396358549595, 0.1298142522573471,
- 0.11374091356992722, -0.05131985992193222, 0.02729235403239727, -0.03263859823346138,
- -0.06149160861968994, 0.11476189643144608, 0.017440056428313255, 0.0279060211032629,
- 0.05625150352716446, 0.05765993148088455, -0.01834738999605179, -0.05330364778637886,
- -0.035254210233688354, -0.0021084460895508528, 0.2329176366329193,
- 0.0010340994922444224, -0.014184791594743729, 0.048278748989105225,
- -0.008254055865108967, -0.005028407089412212, 0.0454629622399807, -0.010853796266019344,
- 0.031440846621990204, -0.03786882013082504, 0.08235223591327667, -0.027194036170840263,
- 0.023723645135760307, -0.052383579313755035, 0.03933052718639374, 0.013988401740789413,
- -0.028116438537836075, 0.06262332946062088, -0.044836629182100296, 0.014599771238863468,
- -0.2294735312461853, -0.020971642807126045, -0.08055983483791351, 0.060654666274785995,
- -0.06497909128665924, -0.01907440647482872, 0.056756239384412766, 0.05617869272828102,
- 0.051300112158060074, 0.05737382918596268, -0.0747232586145401, -0.035082895308732986,
- 0.005693057551980019, 0.0026266328059136868, -0.010384493507444859,
- 0.048531923443078995, 0.17148587107658386, -0.06082339212298393, 0.018789546564221382,
- 0.05588645488023758, -0.08105939626693726, 0.29623833298683167, 0.025697017088532448,
- -0.05729732662439346, -0.00640356307849288, 0.07444348186254501, 0.059925731271505356,
- 0.013165525160729885, 0.058526985347270966, -0.021623807027935982, 0.033670198172330856,
- -0.06673049926757812, 0.004950971342623234, 0.03544965013861656, 0.03967439383268356,
- -0.001262347330339253, -0.007643005810678005, 0.006658236496150494,
- -0.006175517104566097, -0.014424163848161697, 0.013523123227059841, 0.08415592461824417,
- 0.09025543928146362, -0.02536601759493351, -0.00841824896633625, 0.0429639033973217,
- -0.06230068579316139, 0.049869515001773834, -0.033154141157865524, 0.03074868582189083,
- -0.028311695903539658, 0.05813609063625336, -0.0067775254137814045,
- 0.021363545209169388, -0.034467343240976334, 0.012196667492389679, 0.045073725283145905,
- 0.08805835247039795, 0.03554937243461609, 0.016437673941254616, 0.0722394809126854,
- 0.11491251736879349, -0.010734811425209045, -0.033206336200237274,
- -0.014374791644513607, -0.04720470309257507, -0.05095263570547104, -0.08387614041566849,
- 0.06602451950311661, -0.041816189885139465, -0.131150484085083, 0.011733032763004303,
- 0.08863905072212219, -0.050308212637901306, -0.029958108440041542, 0.054432034492492676,
- -0.034799061715602875, 0.026088373735547066, -0.031145572662353516, -0.0479140430688858,
- 0.047676119953393936, 0.0169819388538599, 0.03212536871433258, 0.07656253129243851,
- 0.02992056868970394, -0.019839836284518242, -0.049518078565597534, 0.0323411263525486,
- -0.04050440341234207, 0.10436968505382538, -0.12478373944759369, -0.05261697620153427,
- -0.01792093738913536, -0.03249049186706543, 0.689244270324707, 0.09237413108348846,
- 0.13591554760932922, 0.016964180395007133, -0.030062101781368256, 0.14726869761943817,
- -0.012332693673670292, 0.04001146927475929, -0.0789448469877243, -0.04408058524131775,
- 0.045455675572156906, -0.04695736616849899, -0.016476595774292946, 0.009178399108350277,
- 0.00151502201333642, 0.08475824445486069, 0.007554642390459776, 0.07439838349819183,
- 0.03244195878505707, -0.09837591648101807, -0.014932523481547832, 0.05400324985384941,
- -0.04327581822872162, -0.12463261187076569, -0.04180208966135979, 0.051212128251791,
- 0.058643851429224014, -0.08849871158599854, -0.0029374214354902506,
- -0.08767183870077133, 0.04648055136203766, 0.022543890401721, 0.07164258509874344,
- -0.007892919704318047, 0.07810801267623901, 0.007574012968689203, 0.01672813668847084,
- -0.004660074133425951, -0.08062012493610382, -0.021219687536358833, 0.09680778533220291,
- -0.04609166458249092, -0.04057144373655319, 0.08234988898038864, -0.07464112341403961,
- 0.04826857149600983, -0.022626381367444992, 0.1556057631969452, -0.12373711913824081,
- 0.0220104418694973, -0.01689063012599945, -0.04326444864273071, 0.07142921537160873,
- -0.022342262789607048, -0.04616660997271538, -0.06657005101442337, 0.1065116822719574,
- 0.013652879744768143, 0.04729635268449783, 0.03834502398967743, -0.022754311561584473,
- 0.004291034769266844, 0.0510958731174469, 0.0506662018597126, -0.06877591460943222,
- 0.06592461466789246, 0.06136906519532204, -0.030944786965847015, -0.04479743912816048,
- 0.029386010020971298, 0.032377857714891434, 0.01963614858686924, 0.012616537511348724,
- 0.03693128749728203, 0.0033411718904972076, -0.025541217997670174, 0.06609398871660233,
- 0.026033299043774605, 0.02996542863547802, 0.08946634083986282, -0.0931776612997055,
- -0.0332055427134037, -0.046560902148485184, -0.020461885258555412,
- 0.0026730468962341547, -0.03255552053451538, 0.03998944163322449, 0.06284406781196594,
- 0.07641888409852982, 0.014159556478261948, 0.03586084023118019, 0.03649669885635376,
- 0.010020419023931026, -0.018474863842129707, 0.09095396101474762, -0.019243042916059494,
- -0.02065936289727688, -0.015928979963064194, 0.007372456602752209, 0.03416818752884865,
- -0.016217833384871483, -0.03770563006401062, -0.04136309400200844, -0.06885819137096405,
- -0.021471887826919556, -0.03564478084445, -0.06659552454948425, 0.014038740657269955,
- 0.013598019257187843, -0.03505147993564606, -0.07056324183940887, -0.05379325896501541,
- 0.008996859192848206, 0.03946015238761902, -0.012549675069749355, -0.04503779113292694,
- -0.12505586445331573, 0.006739435251802206, -0.011740528047084808, 0.04205352067947388,
- 0.010391985066235065, 0.006143820937722921, -0.009668243117630482,
- -0.039595529437065125, 0.019928310066461563, -0.026506036520004272,
- -0.01936640962958336, -0.026877058669924736, -0.05564500764012337, -0.06521830707788467,
- -0.0016220087418332696, 0.04729296639561653, -0.01205037534236908, 0.05490957200527191,
- 0.003782890737056732, 0.031344737857580185, -0.007344539277255535, -0.01989939995110035,
- 0.035810526460409164, -0.04011348634958267, -0.03272755444049835, 0.0789908617734909,
- -0.03465581685304642, 0.013229843229055405, 0.019343465566635132, -0.07040915638208389,
- -0.04916294291615486, 0.009601850993931293, -0.04775024950504303, 0.08944340795278549,
- -0.021578138694167137, 0.028056833893060684, -0.040749069303274155,
- -0.014558480121195316, 0.05907602608203888, -0.07240304350852966, -0.06854698061943054,
- -0.07409264147281647, 0.13178205490112305, -0.0031452199909836054,
- 0.0033348838333040476, -0.03012060560286045, -0.04977281391620636, 0.05467161163687706,
- -0.0175336804240942, 0.0005066954181529582, -0.0008402843377552927, 0.07037685066461563,
- 0.014204087667167187, -0.004847276024520397, 0.05743814632296562, -0.011834807693958282,
- 0.03364303708076477, 0.1086423471570015, 0.41786694526672363, -0.11871591955423355,
- 0.07241308689117432, 0.06438639760017395, -0.005282917525619268, 0.04032139480113983,
- -0.05493452027440071, 0.06611942499876022, 0.05343262478709221, 0.10478357970714569,
- 0.07115256041288376, -0.060968879610300064, 0.013614465482532978, -0.03676695376634598,
- 0.1003035232424736, 0.009478969499468803, 0.03630470484495163, -0.035238347947597504,
- -0.02166261337697506, -0.03135526925325394, 0.05504767596721649, -0.0367070697247982,
- 0.013018121011555195, 0.01448468305170536, -0.05253072828054428, 0.014469748362898827,
- 0.0014882967807352543, 0.001621698378585279, -0.013372116722166538, 0.03984204679727554,
- -0.018687764182686806, 0.027816984802484512, 0.02523237094283104, 0.03651094809174538,
- -0.12233477085828781, 0.013068010099232197, -0.07872436195611954, -0.10154987871646881,
- 0.07576872408390045, 0.0013777328422293067, 0.07173746079206467, 0.02783372811973095,
- 0.03526090085506439, 0.02210027165710926, 0.016878725960850716, -0.046767573803663254,
- -0.008197968825697899, 0.0545535683631897, 0.023355867713689804, 0.05278303474187851,
- 0.11984878778457642, 0.00016501478967256844, -0.0042463187128305435,
- -0.07848171889781952, 0.05841575190424919, 0.12602820992469788, -0.02565656043589115,
- 0.009023365564644337, 0.012554589658975601, -0.020942911505699158, -0.00664294371381402,
- -0.05282525718212128, -0.1073213443160057, -0.01341176126152277, -0.02115185745060444,
- 0.0708557665348053, 0.037321966141462326, -0.014498405158519745, -0.17643432319164276,
- -0.06488567590713501, -0.05986037477850914, 0.0018574678106233478, 0.11480716615915298,
- -0.09549490362405777, 0.05582141876220703, 0.05061176046729088, -0.009486926719546318,
- 0.04308542236685753, -0.059176959097385406, -0.01984436996281147, -0.029576633125543594,
- 0.004714565351605415, 0.02398887276649475, 0.027697669342160225, -0.06904707849025726,
- 0.0788930132985115, -0.09628184139728546, 0.07877672463655472, -0.022619815543293953,
- -0.024538183584809303, -0.001203833264298737, -0.020549282431602478,
- 0.02361224964261055, 0.03476710617542267, -0.002629233291372657, 0.017543019726872444,
- -0.008970148861408234, -0.03314988687634468, -0.06429427117109299, -0.07856174558401108,
- -0.06421877443790436, -0.09064678102731705, 0.007176586426794529, -0.10532617568969727,
- 0.009882132522761822, -0.01196565106511116, 0.02233031578361988, -0.017936425283551216,
- 0.018039902672171593, -0.007126719690859318, -0.14112050831317902,
- -0.014176408760249615, 0.038953159004449844, 0.04441169276833534,
- -0.0024335160851478577, -0.06740166246891022, 0.041390128433704376, 0.10162457823753357,
- 0.027808019891381264, -0.03544751554727554, -0.028970029205083847, -0.06485390663146973,
- 0.09532036632299423, -0.0583900548517704, -0.42687416076660156, 0.05860673263669014,
- 0.01767764426767826, 0.035981785506010056, 0.015021250583231449, -0.030422011390328407,
- 0.03726945444941521, -0.008852280676364899, 0.006687820889055729, 0.08443885296583176,
- -0.04369441792368889, 0.006748933810740709, -0.011887799017131329, -0.01936354860663414,
- -0.010445037856698036, -0.09478087723255157, -0.07210823893547058, 0.006253179628401995,
- 0.0006201261421665549, -0.06940662860870361, -0.03634043037891388, 0.04633437842130661,
- 0.010517938993871212, 0.022317320108413696, 0.030111607164144516, 0.03392750397324562,
- -0.029407816007733345, -0.06675390154123306, 0.08408372849225998, 0.046873096376657486,
- 0.013803373090922832, -0.04667877033352852, 0.015096829272806644, 0.04688847437500954,
- -0.009412899613380432, 0.10569910705089569, -0.012980754487216473,
- -0.0061519211158156395, -0.06213495135307312, 0.08317182958126068, 0.04439584165811539,
- 0.1930602788925171, 0.04256301745772362, -0.01252694707363844, -0.0049262153916060925,
- 0.11953092366456985, 0.03493065387010574, 0.029040101915597916, -0.032610438764095306,
- 0.004236308857798576, 0.0369473472237587, 0.008005575276911259, 0.05740903690457344,
- -0.075499027967453, -0.039147790521383286, -0.03154708445072174, -0.006465475540608168,
- -0.05560735985636711, 0.0016015811124816537, 0.19537150859832764, 0.012236936017870903,
- 0.01588829793035984, 0.019744884222745895, -0.0789298489689827, -0.003053477732464671,
- -0.07977281510829926, -0.10567019134759903, -0.008081085048615932,
- -0.015284284017980099, 0.019144196063280106, -0.02224571816623211, -0.1208091527223587,
- -0.009553683921694756, 0.003724990878254175, -0.004415088798850775, 0.11012085527181625,
- -0.01623077504336834, 0.012818477116525173, -0.010423066094517708, 0.131263867020607,
- 0.04006524384021759, 0.029547059908509254, 0.05611380562186241, 0.07388654351234436,
- 0.07029072940349579, 0.028604933992028236, -0.05634903535246849, -0.08731874823570251,
- 0.008503921329975128, 0.15967372059822083, -0.033502545207738876, 0.12540073692798615,
- 0.009098201990127563, -0.014381181448698044, -0.027164051309227943, 0.01689143292605877,
- 0.022542158141732216, 0.01860181801021099, -0.45021411776542664, -0.02618788555264473,
- 0.07801344245672226, 0.037080708891153336, 0.014878964051604271, 0.05358083173632622,
- -0.012764167971909046, -0.03881736472249031, -0.026205653324723244,
- -0.09340136498212814, 0.12703832983970642, -0.008951163850724697, 0.07825896888971329,
- -0.11422999203205109, 0.05630473047494888, 0.083717942237854, -0.04121306166052818,
- -0.02842208370566368, 0.0529206246137619, -0.28259986639022827, -0.0370342843234539,
- -0.04375163093209267, 0.08489575237035751, -0.011229242198169231, 0.03523685410618782,
- 0.06853484362363815, -0.026228222995996475, 0.0308969896286726, 0.03998773545026779,
- -0.01706179790198803, 0.08853764086961746, -0.011874317191541195, -0.001342659816145897,
- 0.08187874406576157, 0.1231067106127739, 0.1376166194677353, -0.071058489382267,
- 11.549874305725098, 0.02837231568992138, 0.05669862776994705, -0.08004461228847504,
- -0.012894588522613049, -0.04434052109718323, 0.052248287945985794, -0.10684440284967422,
- 0.09607522934675217, 0.10601968318223953, -0.01620383746922016, -0.05069167912006378,
- -0.016956645995378494, -0.08007454872131348, 0.03218803182244301, -0.03690245747566223,
- -0.04489067196846008, -0.04718329757452011, -0.0007112696766853333,
- -0.030514394864439964, -0.028423527255654335, 0.05385199189186096, 0.04704227298498154,
- 0.04087641462683678, -0.0485399104654789, 0.05733060836791992, -0.0023082392290234566,
- 0.0012864037416875362, 0.01722806878387928, 0.02486724592745304, -0.013214688748121262,
- 0.033506568521261215, 0.0770811215043068, 0.03194227069616318, 0.01773487776517868,
- 0.04668065905570984, 0.06437526643276215, -0.0024978474248200655, 0.03692564368247986,
- 0.07212471961975098, 0.007963325828313828, 0.026290979236364365, -0.013100022450089455,
- 0.02320891246199608, 0.06581588834524155, 0.05930544435977936, 0.008419692516326904,
- 0.12141512334346771, 0.03335990756750107, 0.05410396680235863, 0.06763041019439697,
- -0.03213370963931084, 0.11209842562675476, -0.0008694534189999104,
- -0.004375825636088848, 0.009893262758851051, -0.0276371818035841, -0.06508711725473404,
- 0.09454429149627686, 0.027833715081214905, -0.029353493824601173, 0.13881704211235046,
- 0.03172149881720543, 0.056411754339933395, -0.03039700910449028, 0.05699640139937401,
- 0.03487663343548775, 0.09743878990411758, -0.0783478394150734, -0.07494565844535828,
- 0.021332019940018654, -0.11230634897947311, -0.050538744777441025, 0.042130257934331894,
- 0.09759791940450668, -0.06128914654254913, 0.010233575478196144, 0.007321006618440151,
- 0.02083779126405716, -0.006510182283818722, 0.013032305985689163, 0.04006291553378105,
- -0.022348303347826004, 0.019963422790169716, 0.08271440863609314, 0.04154451563954353,
- 0.0491676889359951, 0.1274004727602005, 0.01191385556012392, -0.047282662242650986,
- -0.08943013846874237, 0.0746898427605629, -0.017844149842858315, -0.03218213468790054,
- 0.009218737483024597, -0.02996058203279972, 0.0469495989382267, -0.14734800159931183,
- 0.08604827523231506, 0.1228746697306633, -0.059459853917360306, -0.04605216160416603,
- 0.0011593321105465293, 0.07972731441259384, 0.021815070882439613, 0.020233308896422386,
- -0.0969005599617958, 0.007164329756051302, 0.009672802872955799, 0.04729298874735832,
- -0.020541520789265633, 0.04573835805058479, 0.06067024916410446, -0.05447296053171158,
- 0.04694340378046036, 0.04197379946708679, -0.02350749634206295, -0.03401225060224533,
- 0.0649455189704895, 0.05330808088183403, -0.07714550197124481, -0.041842855513095856,
- -0.04340052232146263, -0.010183330625295639, -0.0028501166962087154,
- -0.030590448528528214, 0.03880264237523079, -0.0072973500937223434,
- -0.011704751290380955, -0.0029607200995087624, 0.01187202986329794, 0.0633288323879242,
- 0.11099085211753845, 0.01661359705030918, 0.042377371340990067, -0.025885580107569695,
- -0.008714839816093445, 0.08380217105150223, 0.03636744245886803, 0.08671805262565613,
- -0.053245000541210175, -0.008299274370074272, -0.055891260504722595,
- -0.14300976693630219, 0.007663415744900703, 0.024112462997436523, 0.04379330575466156,
- 0.010770036838948727, 0.01465157326310873, -0.0279983002692461, -0.03872201219201088,
- 0.08228299766778946, 0.0378313809633255, -0.013166585937142372, 0.03292561694979668,
- -0.033241771161556244, -0.02069261111319065, 0.07134242355823517, -0.04453081637620926,
- -0.020854201167821884, 0.036460138857364655, -0.07218454033136368, 0.05692417174577713,
- 0.06133829802274704, 0.01804046705365181, 0.03558504208922386, 0.014635980129241943,
- -0.008745008148252964, 0.05266609787940979, -0.01260383427143097, 0.028335461392998695,
- -0.031374674290418625, -0.07045574486255646, -0.02526067942380905, 0.003742958651855588,
- 0.074725441634655, 0.05619923025369644, -0.12869328260421753, -0.017259055748581886,
- -0.008060654625296593
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 129,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 16,
- "similarity": 0.998395562171936
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 103,
- "similarity": 0.9982538819313049
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 197,
- "similarity": 0.9981698989868164
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Tim De Chant"],
- "epoch_date_downloaded": 1634515200,
- "epoch_date_modified": 1634515200,
- "epoch_date_submitted": 1634515200,
- "flag": null,
- "report_number": 1462,
- "source_domain": "arstechnica.com",
- "submitters": ["Anonymous"],
- "title": "Facebook AI moderator confused videos of mass shootings and car washes",
- "url": "https://arstechnica.com/tech-policy/2021/10/facebook-ai-moderator-confused-videos-of-mass-shootings-and-car-washes"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "california-bar's-committee-of-bar-examiners",
- "name": "California Bar’s Committee of Bar Examiners"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "examsoft",
- "name": "ExamSoft"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "flagged-california-bar-exam-takers",
- "name": "flagged California bar exam takers"
- },
- {
- "__typename": "Entity",
- "entity_id": "california-bar-exam-takers",
- "name": "California bar exam takers"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1771, 1465],
- "vector": [
- -0.06957142055034637, 0.0417187437415123, 0.005435152444988489, -0.09215731918811798,
- 0.09098605811595917, 0.0026359441690146923, -0.004665999207645655, 0.09727044403553009,
- 0.12390285730361938, -0.1491137444972992, 0.0782102644443512, 0.036512590944767,
- 0.026638956740498543, -0.10483448207378387, 0.029731009155511856, -0.11269146203994751,
- -0.053897712379693985, -0.04904303699731827, -0.029335111379623413, -0.1753898561000824,
- -0.05641140788793564, 0.010600164532661438, 0.0114584406837821, 0.12057606875896454,
- -0.013717064633965492, 0.039320413023233414, 0.08809147775173187, 0.0875968337059021,
- -0.051502861082553864, 0.05090237408876419, -0.044475823640823364, -0.06556180864572525,
- 0.12436525523662567, 0.008143152110278606, -0.011784814298152924, 0.14811930060386658,
- 0.00033728545531630516, -0.06721555441617966, -0.0239291749894619, -0.01765790581703186,
- 0.048023708164691925, 0.24468575417995453, 0.029918041080236435, -0.007591957692056894,
- 0.058638136833906174, -0.04560588300228119, 0.016743728891015053, 0.04428638890385628,
- -0.008679420687258244, 0.042735788971185684, -0.028963617980480194, 0.09863007068634033,
- -0.02750369720160961, 0.044763386249542236, -0.11049944162368774, 0.08613187074661255,
- 0.02407190017402172, -0.021966630592942238, 0.001109565608203411, -0.05304161459207535,
- -0.04795365780591965, -0.2747410833835602, -0.035925496369600296, -0.02323872037231922,
- 0.08113054931163788, -0.08745543658733368, 0.004464286379516125, 0.023929700255393982,
- 0.03958598151803017, 0.07471424341201782, 0.07266531884670258, -0.02349698357284069,
- -0.037347979843616486, 0.03229755163192749, 0.028594475239515305, -0.04265991598367691,
- 0.03766914829611778, 0.23085224628448486, -0.08700712025165558, 0.026058413088321686,
- 0.11739201843738556, -0.10657400637865067, 0.46617740392684937, 0.008385637775063515,
- -0.03744763135910034, -0.053409647196531296, 0.09735621511936188, 0.036382872611284256,
- 0.0328422412276268, 0.03699653595685959, -0.06618361920118332, 0.03411591425538063,
- -0.048089247196912766, -0.0018116990104317665, 0.09978732466697693, 0.03378308564424515,
- 0.004742366727441549, 0.008738426491618156, -0.019709516316652298,
- -0.044221699237823486, 0.018477492034435272, -0.026318814605474472, 0.07219312340021133,
- 0.06556783616542816, -0.03960572928190231, -0.03593143820762634, 0.12367135286331177,
- -0.038014817982912064, 0.07554742693901062, -0.06621536612510681, 0.04290097951889038,
- 0.00500324834138155, 0.048151642084121704, 0.019828904420137405, 0.023157799616456032,
- -0.09918712824583054, -0.009613929316401482, 0.011823458597064018, 0.10917406529188156,
- 0.003578120842576027, -0.01908782124519348, 0.046245209872722626, 0.0997224897146225,
- -0.05545423552393913, -0.09717798233032227, -0.07886399328708649, -0.0636826604604721,
- -0.03853219747543335, -0.03188464045524597, 0.04877541586756706, -0.10589223355054855,
- -0.16988961398601532, 0.009864444844424725, 0.11297495663166046, -0.013043724000453949,
- -0.033647164702415466, 0.0006633992306888103, -0.046021968126297, 0.06765996664762497,
- -0.0012185582891106606, -0.02706536278128624, 0.07680673152208328, 0.05220457538962364,
- 0.047189462929964066, 0.0579921118915081, 0.053567834198474884, -0.059053801000118256,
- -0.017226800322532654, 0.04796631261706352, -0.011262897402048111, 0.1328575313091278,
- -0.17405915260314941, -0.048344045877456665, -0.0009889914654195309, -0.020311389118433,
- 0.6772199869155884, 0.13248316943645477, 0.1859763264656067, -0.03485482931137085,
- -0.02839083969593048, 0.1786302924156189, 0.03638346120715141, 0.0634099617600441,
- -0.07689793407917023, -0.014371883124113083, 0.05077899619936943, -0.08742650598287582,
- -0.06712104380130768, 0.01327958982437849, 0.019769854843616486, 0.09725010395050049,
- 0.03184313327074051, 0.0719590038061142, 0.016308937221765518, -0.14415892958641052,
- 0.01152225211262703, 0.057037223130464554, 0.025912463665008545, -0.1455603986978531,
- -0.0621374174952507, 0.05060998350381851, 0.10730360448360443, -0.1176382452249527,
- 0.032634057104587555, -0.05845919996500015, 0.02448195219039917, -0.021061701700091362,
- 0.06231670454144478, -0.022464117035269737, -0.004421016667038202, 0.034048933535814285,
- 0.08819103240966797, 0.011006987653672695, -0.16739915311336517, -0.04208294674754143,
- 0.06129442900419235, -0.020567122846841812, -0.03864932805299759, 0.05387280881404877,
- -0.09134514629840851, 0.028386110439896584, 0.006669617258012295, 0.1607203185558319,
- -0.15075108408927917, -0.011211620643734932, 0.0027122446335852146,
- -0.07018397748470306, 0.07271437346935272, -0.021367544308304787, -0.06800783425569534,
- -0.05430497229099274, 0.1128767728805542, 0.011502280831336975, 0.13301296532154083,
- 0.04162482172250748, -0.030948195606470108, 0.04347587749361992, 0.07830120623111725,
- 0.045487381517887115, -0.024326229467988014, 0.08303236216306686, 0.07553906738758087,
- -0.056326501071453094, -0.011310167610645294, 0.04709659144282341, 0.033490002155303955,
- 0.013853264972567558, -0.008029608055949211, 0.03933638706803322, -0.013177485205233097,
- -0.05810590460896492, 0.041273750364780426, 0.02499787136912346, 0.004491859115660191,
- 0.1119442880153656, -0.04539896547794342, -0.06315158307552338, -0.008362973108887672,
- 0.015122709795832634, 0.015564057976007462, -0.044078756123781204, 0.06699903309345245,
- 0.0904567539691925, 0.05836540088057518, 0.02735399454832077, 0.04581669718027115,
- 0.05465742573142052, 0.03264247998595238, -0.02191467024385929, 0.07718641310930252,
- 0.0054265595972537994, -0.0309947170317173, -0.001529189758002758, 0.003310167696326971,
- 0.04035345837473869, 0.02181321196258068, -0.09509269893169403, -0.0420040488243103,
- -0.07996761798858643, -0.05072138458490372, -0.10519789904356003, -0.047071006149053574,
- 0.027493339031934738, 0.013680733740329742, -0.07049375772476196, -0.08062019944190979,
- -0.07871071994304657, 0.02170882374048233, 0.0807066261768341, -0.007504363544285297,
- -0.018007732927799225, -0.1331365406513214, 0.06028711050748825, -0.06191776692867279,
- 0.0705719068646431, -0.012873085215687752, -0.02816081792116165, 0.006807001307606697,
- -0.057771697640419006, 0.04051417112350464, 0.01552959717810154, -0.009294264949858189,
- -0.0771576315164566, -0.09714758396148682, -0.03178088366985321, -0.02321656607091427,
- 0.024354735389351845, -0.019211526960134506, 0.04406704753637314, 0.027104759588837624,
- 0.06931590288877487, -0.0035510165616869926, -0.053193092346191406, 0.07438357174396515,
- -0.04990014433860779, -0.035562314093112946, 0.0852690264582634, -0.061186254024505615,
- 0.020410727709531784, 0.03682413697242737, -0.09650595486164093, -0.009657859802246094,
- 0.009032918140292168, -0.05174196884036064, 0.08433545380830765, -0.04044582322239876,
- -0.014691556803882122, -0.025480791926383972, -0.007030797656625509,
- 0.09359264373779297, -0.056036487221717834, -0.11874449253082275, -0.06309127062559128,
- 0.12139098346233368, -0.0045195091515779495, 0.04183065891265869,
- -0.0030270302668213844, -0.07210814952850342, 0.037468574941158295,
- 0.025799820199608803, 0.024898454546928406, 0.02325499802827835, 0.07020469754934311,
- -0.052051957696676254, 0.028916820883750916, 0.11406256258487701, -0.10602203756570816,
- -0.02335616573691368, 0.07034878432750702, 0.4554680287837982, -0.18004946410655975,
- 0.14311754703521729, 0.13449594378471375, -0.00734111201018095, 0.05084136128425598,
- -0.03938440605998039, 0.08684787154197693, 0.08185236155986786, 0.16720746457576752,
- 0.11170417070388794, -0.09391814470291138, -0.008507928811013699, -0.07617396861314774,
- 0.10688930749893188, -0.006943170912563801, 0.064152792096138, -0.011668114922940731,
- -0.08452610671520233, -0.025693340227007866, 0.031314216554164886, -0.07051954418420792,
- 0.021042194217443466, 0.0013432458508759737, -0.06393904238939285, 0.040542736649513245,
- -0.0025750193744897842, 0.04011094570159912, -0.04258350282907486, 0.0472794808447361,
- -0.028959622606635094, 0.057688526809215546, 0.02882685698568821, 0.044627755880355835,
- -0.1050025075674057, 0.014793641865253448, -0.08385772258043289, -0.08990605920553207,
- 0.05353595316410065, -0.015159226022660732, 0.016527283936738968, 0.04590872675180435,
- -0.03905581682920456, 0.02892649918794632, -0.0043700626119971275, -0.05629294738173485,
- 0.034019991755485535, 0.08088015019893646, 0.03930956870317459, 0.09151237457990646,
- 0.1652878373861313, -0.06145378202199936, -0.05000942945480347, -0.09069254249334335,
- 0.06847115606069565, 0.14744536578655243, 0.02616313099861145, -0.017047861590981483,
- 0.03244779258966446, -0.03883455693721771, -0.0021202450152486563, -0.07320478558540344,
- -0.10103480517864227, -0.025716520845890045, -0.03808438777923584, 0.10816966742277145,
- 0.04688961058855057, -0.042744413018226624, -0.15633472800254822, -0.07653263211250305,
- -0.06716565787792206, 0.006766950711607933, 0.11967253684997559, -0.045858580619096756,
- 0.05528227984905243, -0.029301322996616364, -0.04387619346380234, 0.03214634209871292,
- -0.07432989031076431, 0.022380148991942406, -0.07413908839225769, 0.025135992094874382,
- 0.07984985411167145, 0.04372846335172653, -0.05836410075426102, 0.13034231960773468,
- -0.09621810913085938, 0.07150309532880783, 0.02758784219622612, -0.030482692644000053,
- 0.01770222932100296, -0.015609925612807274, 0.024536583572626114, 0.0426381453871727,
- -0.08113743364810944, 0.010725172236561775, -0.025860343128442764,
- -0.058445174247026443, -0.09253819286823273, -0.0014461567625403404,
- -0.05784075707197189, -0.11270759999752045, -0.015433069318532944, -0.1390567123889923,
- 0.0044695730321109295, -0.028834164142608643, 0.008495576679706573,
- 0.028841743245720863, 0.021449483931064606, 0.07768505066633224, -0.1699097454547882,
- 0.05425776541233063, -0.019931742921471596, 0.06281960755586624, -0.034670718014240265,
- -0.048185259103775024, 0.04004775732755661, 0.05409415811300278, 0.04567667469382286,
- -0.020355578511953354, -0.004621035419404507, -0.06134957820177078, 0.06396415084600449,
- -0.13076041638851166, -0.41837379336357117, 0.03459439426660538, 0.0018697017803788185,
- 0.04728183150291443, 0.00511730695143342, -0.10949121415615082, 0.07033759355545044,
- -0.020392421633005142, -0.08172468841075897, 0.14307060837745667, -0.04895559698343277,
- 0.04764121025800705, -0.0022526029497385025, -0.10851573944091797, -0.06282693147659302,
- -0.030851781368255615, -0.0781303197145462, 0.08320418000221252, 0.0016392997931689024,
- -0.08769491314888, -0.09756353497505188, -0.005195543169975281, -0.01815997250378132,
- 0.03676465153694153, 0.006910503841936588, -0.011042029596865177, -0.034505609422922134,
- 0.014381920918822289, 0.06987731158733368, 0.03566569834947586, 0.014195325784385204,
- -0.05284251272678375, 0.015179346315562725, 0.05688900500535965, 0.002486811950802803,
- 0.13039900362491608, 0.022352861240506172, 0.05947154015302658, -0.08752411603927612,
- 0.11777327954769135, 0.09272931516170502, 0.1849002242088318, -0.00576400151476264,
- 0.012170552276074886, 0.04268324375152588, 0.14745929837226868, 0.04554954171180725,
- 0.03135654702782631, -0.05649810656905174, 0.011138910427689552, 0.07331904768943787,
- -0.012135022319853306, 0.06272315233945847, -0.08992864191532135, -0.01537755224853754,
- -0.047081947326660156, -0.0619269497692585, 0.0027401407714933157, 0.01686237007379532,
- 0.2546650767326355, 0.0018074121326208115, 0.014599267393350601, 0.056374743580818176,
- -0.11770579218864441, 0.019540194422006607, -0.06440006196498871, -0.08629411458969116,
- 0.028596173971891403, 0.014174191281199455, 0.015839867293834686, -0.04159053415060043,
- -0.14785674214363098, -0.0220656655728817, -0.040988046675920486, -0.02391798608005047,
- 0.1111384853720665, -0.025226768106222153, 0.03161918371915817, -0.08489394187927246,
- 0.15674465894699097, 0.06339378654956818, 0.011703303083777428, 0.06483028084039688,
- 0.07063198834657669, -0.0009397417306900024, 0.013471947982907295, -0.06036578118801117,
- -0.09439431130886078, -0.02426980435848236, 0.1923542618751526, -0.026976119726896286,
- 0.11074797809123993, 0.07444706559181213, -0.04116670414805412, -0.07758055627346039,
- 0.006525151431560516, -0.05152135342359543, 0.029159925878047943, -0.43858203291893005,
- -0.012331193313002586, 0.13428658246994019, 0.04756014794111252, 0.007160772569477558,
- 0.09683927893638611, -0.019106319174170494, -0.050072528421878815, -0.04385704919695854,
- -0.08745728433132172, 0.19501155614852905, 0.002954155206680298, 0.035562604665756226,
- -0.14828690886497498, 0.025243010371923447, 0.0674167349934578, -0.01788099855184555,
- -0.015309896320104599, 0.061951711773872375, -0.23902036249637604, -0.03738720715045929,
- -0.02951369807124138, 0.14525765180587769, 0.011059805750846863, 0.04515665024518967,
- 0.061821259558200836, -0.02204618602991104, 0.011752001941204071, 0.03620836138725281,
- -0.010967055335640907, 0.07416926324367523, -0.0071913981810212135,
- -0.01200376357883215, 0.11459672451019287, 0.11920797824859619, 0.07536374032497406,
- -0.049174290150403976, 12.011896133422852, 0.08136454224586487, 0.0445869117975235,
- -0.10492146760225296, -0.03617846220731735, -0.06679641455411911, 0.06152743101119995,
- -0.1210794672369957, 0.0660448670387268, 0.1208469346165657, -0.026883527636528015,
- -0.0851181298494339, -0.04091448709368706, -0.11458342522382736, 0.005512770731002092,
- -0.04652024805545807, -0.0374089851975441, -0.032244615256786346, 0.06362639367580414,
- -0.02047150582075119, -0.04243951290845871, 0.01895313709974289, 0.023952998220920563,
- 0.010570522397756577, -0.074315145611763, 0.02045166678726673, 0.04182702675461769,
- 0.015884842723608017, -0.0221131332218647, 0.015337042510509491, -0.03277100250124931,
- 0.031083857640624046, 0.0995802953839302, -0.018890703096985817, 0.004576853942126036,
- 0.07081516087055206, 0.07335969805717468, 0.031326618045568466, 0.016163432970643044,
- 0.0690387636423111, 0.019338924437761307, 0.03291328251361847, 0.05000839754939079,
- 0.03330098092556, 0.07075913995504379, 0.023708194494247437, 0.033304646611213684,
- 0.12176889181137085, -0.010221264325082302, 0.031579721719026566, 0.12240603566169739,
- 0.003111308440566063, 0.09590858966112137, 0.007624947465956211, 0.00704934960231185,
- 0.0356302484869957, -0.04270770400762558, -0.06395404040813446, 0.0902838259935379,
- 0.04173531010746956, -0.04453231766819954, 0.13600283861160278, 0.015567702241241932,
- 0.09975599497556686, 0.0019423961639404297, 0.042206235229969025, 0.0653335303068161,
- 0.06199335306882858, -0.20332956314086914, -0.11791776120662689, 0.03091612085700035,
- -0.0949871838092804, -0.0945037454366684, 0.07944567501544952, 0.09140177071094513,
- -0.07684780657291412, 0.0807851180434227, -0.03231070563197136, 0.0429372601211071,
- -0.01758739911019802, -0.013947386294603348, 0.09261415898799896, -0.023294446989893913,
- 0.015968237072229385, 0.07350918650627136, 0.01912258379161358, 0.11868792772293091,
- 0.10340072959661484, -0.019594062119722366, -0.10345377027988434, -0.09283702075481415,
- 0.11244946718215942, -0.03172552213072777, -0.07979386299848557, 0.04578719288110733,
- -0.05512499809265137, 0.07506577670574188, -0.18201878666877747, 0.09724114835262299,
- 0.10290446877479553, -0.1201908141374588, -0.030790500342845917, -0.024040959775447845,
- 0.06804892420768738, 0.008899499662220478, 0.011385183781385422, -0.06655647605657578,
- 0.03420160710811615, 0.02381454035639763, 0.038015373051166534, -0.03749212622642517,
- 0.09808140993118286, 0.12407109141349792, -0.07821767032146454, 0.01856425404548645,
- 0.08501892536878586, -0.04956193268299103, -0.04827563092112541, 0.07678574323654175,
- 0.06096752732992172, -0.10939829051494598, -0.046549439430236816, -0.03965812176465988,
- -0.035784680396318436, -0.008911590091884136, -0.0629628449678421, 0.011667278595268726,
- 0.013410819694399834, -0.08148619532585144, -0.004934016615152359, 0.09719826281070709,
- 0.06837178021669388, 0.05793595314025879, 0.0015481691807508469, 0.07931172102689743,
- -0.05165693163871765, -0.07671026885509491, 0.044705986976623535, 0.03442499414086342,
- 0.04599629342556, -0.05162409693002701, -0.015544747933745384, -0.0425092875957489,
- -0.12542125582695007, 0.06883154064416885, 0.07658924162387848, 0.014556040987372398,
- -0.024506743997335434, -0.031794920563697815, -0.08866561949253082,
- -0.06513548642396927, 0.09475214779376984, 0.058619268238544464, 0.05037858337163925,
- 0.01241861842572689, -0.04672649875283241, -0.0411711111664772, 0.1276516616344452,
- -0.02511088363826275, 0.028860796242952347, 0.018238011747598648, -0.012129558250308037,
- 0.11552868783473969, 0.0882711261510849, 0.05022907257080078, 0.026713155210018158,
- 0.0699385330080986, -0.0018015289679169655, 0.004966449923813343, -0.036957014352083206,
- 0.005197823978960514, -0.041122227907180786, -0.07621242851018906, -0.08793587237596512,
- -0.02630477398633957, 0.07626074552536011, 0.02664652280509472, -0.08777008950710297,
- -0.005399344488978386, -0.02104644849896431
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 131,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 146,
- "similarity": 0.9979153871536255
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 195,
- "similarity": 0.9977704882621765
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 163,
- "similarity": 0.9977094531059265
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Sam Skolnik"],
- "epoch_date_downloaded": 1656979200,
- "epoch_date_modified": 1656979200,
- "epoch_date_submitted": 1656979200,
- "flag": null,
- "report_number": 1771,
- "source_domain": "news.bloomberglaw.com",
- "submitters": ["Khoa Lam"],
- "title": "Third of California Online Bar Exams Cited for Possible Cheating",
- "url": "https://news.bloomberglaw.com/business-and-practice/third-of-california-online-bar-exams-cited-for-possible-cheating"
- },
- {
- "__typename": "Report",
- "authors": ["Joe Patrice"],
- "epoch_date_downloaded": 1635120000,
- "epoch_date_modified": 1635120000,
- "epoch_date_submitted": 1635120000,
- "flag": null,
- "report_number": 1465,
- "source_domain": "abovethelaw.com",
- "submitters": ["Patrick Hall (BNH.ai)"],
- "title": "California Bar Exam Flagged A THIRD Of Applicants As Cheating",
- "url": "https://abovethelaw.com/2020/12/california-bar-exam-flagged-a-third-of-applicants-as-cheating/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "tiktok",
- "name": "TikTok"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "tiktok",
- "name": "TikTok"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "tiktok-users-under-18-years-old",
- "name": "TikTok users under 18 years old"
- },
- {
- "__typename": "Entity",
- "entity_id": "tiktok-users",
- "name": "TikTok users"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1466],
- "vector": [
- -0.04914698004722595, 0.014327624812722206, -0.0003813511866610497,
- -0.13491865992546082, 0.06899213790893555, -0.041694846004247665,
- -0.0016185080166906118, 0.039478883147239685, 0.03910926356911659, -0.11015817523002625,
- -0.0019101493526250124, 0.013521209359169006, 0.012234714813530445,
- -0.11105101555585861, 0.0637366846203804, -0.08444110304117203, -0.11897061765193939,
- -0.012686152942478657, -0.04740985482931137, -0.08850786089897156, -0.12744492292404175,
- 0.06449566781520844, 0.039235200732946396, 0.1305268406867981, -0.04729586839675903,
- 0.004450601059943438, 0.07660908997058868, 0.13144075870513916, 0.0451224185526371,
- 0.014554371125996113, -0.025763358920812607, -0.04058130085468292, 0.12873895466327667,
- 0.002335019875317812, 0.03777226805686951, 0.07301059365272522, 0.038058627396821976,
- -0.038658253848552704, -0.0036439502146095037, 0.031189091503620148,
- 0.035249847918748856, 0.17888115346431732, -0.023474276065826416, -0.004094395786523819,
- 0.03330391272902489, -0.054333657026290894, 0.03992777690291405, 0.05025961995124817,
- -0.006089481525123119, 0.037017207592725754, -0.027153480798006058,
- 0.019471194595098495, -0.01939992792904377, 0.039187900722026825, -0.10149543732404709,
- 0.0008391622104682028, 0.054344020783901215, 0.005444070789963007, 0.007646089419722557,
- -0.08726640045642853, -0.03860413655638695, -0.19385237991809845, -0.07552696764469147,
- -0.07276815176010132, 0.06598051637411118, -0.08083350956439972, -0.013671321794390678,
- 0.025897303596138954, 0.04260504990816116, 0.08678053319454193, 0.08469107747077942,
- -0.030097242444753647, -0.04006446152925491, -0.0016936424653977156,
- 0.016188008710741997, -0.026206502690911293, 0.024759741500020027, 0.1824493110179901,
- -0.1423412710428238, -0.05335691198706627, 0.10298105329275131, -0.09950049966573715,
- 0.41444292664527893, 0.00412024836987257, 0.012138517573475838, -0.027950875461101532,
- 0.04312895983457565, -0.01889272965490818, 0.011947094462811947, 0.00879979319870472,
- -0.0062987301498651505, 0.040626756846904755, -0.06698349118232727,
- -0.019544312730431557, 0.07774001359939575, 0.03695588931441307, -0.05738991126418114,
- -0.025349149480462074, 0.014313005842268467, -0.04628124088048935,
- -0.0003467501373961568, -0.04087971895933151, 0.11790245771408081, 0.1251869648694992,
- -0.01597021333873272, 0.008045587688684464, 0.01504273246973753, -0.032172735780477524,
- 0.06871651113033295, -0.03476179018616676, -0.025858746841549873, 0.01642429269850254,
- 0.10585223883390427, 0.010725775733590126, 0.06047623232007027, 0.014289029873907566,
- -0.024250460788607597, 0.11624198406934738, 0.08477321267127991, 0.07723375409841537,
- 0.09562710672616959, 0.04054967314004898, 0.06835504621267319, -0.07229598611593246,
- -0.01582224853336811, -0.0001286845508730039, -0.05833788588643074,
- -0.025543440133333206, -0.02540568634867668, 0.006348174996674061, -0.02719166874885559,
- -0.22631189227104187, 0.033422525972127914, 0.047730181366205215, 0.024436254054307938,
- -0.05847582221031189, 0.03791969642043114, -0.054091013967990875, -0.02894742414355278,
- -0.007127025630325079, -0.05827317759394646, 0.023710429668426514, -0.04102601483464241,
- 0.057439692318439484, 0.1332070231437683, 0.04159632697701454, -0.05881653353571892,
- -0.06390082836151123, 0.024277321994304657, -0.06105269119143486, 0.058655887842178345,
- -0.06877405196428299, -0.04613828286528587, -0.041457485407590866, -0.06050331890583038,
- 0.6832948923110962, 0.12762708961963654, 0.13798411190509796, 0.049865320324897766,
- -0.00830299686640501, 0.1939341276884079, -0.01751052960753441, 0.06233281269669533,
- -0.12243117392063141, -0.10201942175626755, 0.03675595670938492, -0.08382419496774673,
- -0.07703978568315506, -0.009805283509194851, 0.042866356670856476, 0.04051321744918823,
- 0.04254673048853874, 0.07237110286951065, 0.024688376113772392, -0.12328071147203445,
- -0.06031941622495651, 0.0642520934343338, 0.018462898209691048, -0.11260590702295303,
- -0.03542015329003334, 0.04052005708217621, 0.10686707496643066, -0.06436144560575485,
- 0.0205125343054533, -0.10341451317071915, 0.09187980741262436, 0.02962382324039936,
- 0.10435919463634491, -0.03024900332093239, 0.042954184114933014, -0.026412233710289,
- -0.04358220100402832, 0.009920349344611168, -0.010084430687129498, 0.03635876253247261,
- 0.15197597444057465, 0.025388499721884727, -0.05195194482803345, 0.0712018683552742,
- -0.08578883111476898, 0.00558142876252532, 0.008146104402840137, 0.11140716075897217,
- -0.1406591236591339, -0.013923726044595242, -0.004827022086828947, 0.027125338092446327,
- 0.07263389974832535, -0.04883115738630295, -0.11352266371250153, -0.0637754574418068,
- 0.08319175988435745, 0.005659674294292927, 0.052639637142419815, 0.05262237414717674,
- -0.021688882261514664, 0.028325363993644714, 0.0712275356054306, 0.007418479770421982,
- -0.02382797561585903, 0.09880039095878601, 0.05191463232040405, -0.07353204488754272,
- -0.047756217420101166, 0.07913023978471756, 0.045158855617046356, -0.006032257340848446,
- -0.04636508971452713, 0.08900246769189835, 0.0012846540194004774, -0.046910129487514496,
- 0.10598544031381607, 0.00656475406140089, 0.006594809237867594, 0.09011517465114594,
- -0.07145220786333084, -0.04416118934750557, -0.02736939676105976, -0.016517577692866325,
- 0.03875957801938057, -0.04892001673579216, 0.09434565156698227, 0.048153407871723175,
- 0.04401310533285141, -0.010753017850220203, 0.03571496903896332, 0.08504941314458847,
- -0.04528545215725899, 0.003054951783269644, 0.05419951304793358, -0.03453574702143669,
- 0.008673186413943768, 0.018449660390615463, 0.04009636119008064, 0.026331283152103424,
- 0.04833583906292915, -0.07814627140760422, 0.011125142686069012, 0.006643284112215042,
- -0.02851254492998123, -0.12065497785806656, 0.020516615360975266, 0.04024572670459747,
- 0.02461269497871399, -0.024405587464571, -0.08243324607610703, -0.11600840836763382,
- -0.01768334209918976, 0.0710042417049408, -0.05829646810889244, -0.0023407472763210535,
- -0.07426759600639343, -0.05531345307826996, -0.07014821469783783, 0.07816580682992935,
- -0.03392116352915764, -0.03244650736451149, 0.048250652849674225, 0.013357827439904213,
- 0.014412944205105305, -0.010610837489366531, -0.06627897173166275, -0.0762866958975792,
- -0.03368835896253586, -0.06340019404888153, -0.01148905698210001, -0.019526846706867218,
- -0.03966762498021126, 0.025658393278717995, 0.05192628130316734, 0.037408631294965744,
- -0.036248207092285156, -0.026822147890925407, 0.051537103950977325,
- -0.006459047552198172, -0.009732008911669254, 0.06033547967672348, -0.01983158476650715,
- 0.028522906824946404, -0.011020318605005741, -0.10543789714574814, 0.012540587224066257,
- -0.004464130848646164, -0.03958735242486, 0.045927420258522034, -0.01922507770359516,
- -0.025743473321199417, 0.002554110251367092, -0.03361672908067703, 0.09685662388801575,
- -0.03782111033797264, -0.03959786146879196, -0.051819607615470886, 0.13471977412700653,
- 0.03669223189353943, 0.016302425414323807, 0.010749480687081814, -0.0789891928434372,
- 0.07748561352491379, -0.04942923039197922, -0.04035576060414314, 0.06163821741938591,
- 0.04525468870997429, -0.020740315318107605, -0.03332413733005524, 0.08030001074075699,
- 0.0663396492600441, 0.047675397247076035, 0.07302037626504898, 0.3950604796409607,
- -0.193619966506958, 0.10165492445230484, 0.07435478270053864, -0.04869251698255539,
- 0.04022260010242462, 0.019276605919003487, 0.05019427463412285, 0.1076163724064827,
- 0.11796893179416656, 0.11171883344650269, -0.07526838034391403, 0.023331530392169952,
- -0.04447938874363899, 0.07630214095115662, 0.07571627199649811, 0.00025178681244142354,
- 0.04440360516309738, -0.0821937769651413, -0.04529757797718048, 0.05284426361322403,
- -0.05612057074904442, 0.02233250066637993, 0.05233035236597061, -0.07080083340406418,
- 0.06766742467880249, -0.01040648203343153, 0.008158422075212002, -0.0466611422598362,
- 0.0632278174161911, -0.014769942499697208, 0.014940201304852962, 0.013025500811636448,
- 0.037821799516677856, -0.07529368996620178, -0.0035270988009870052,
- -0.05677063390612602, -0.07637310773134232, 0.058795444667339325, -0.00392086012288928,
- 0.025472957640886307, 0.046137891709804535, 0.02924872376024723, 0.012327904812991619,
- -0.024029146879911423, -0.06337986886501312, 0.001504695974290371, 0.06323526054620743,
- 0.006316728424280882, 0.06356991082429886, 0.12714122235774994, -0.035691116005182266,
- -0.006713019218295813, -0.07065124064683914, 0.05410892888903618, 0.11283206194639206,
- -0.042701754719018936, 0.0424627885222435, 0.005577715113759041, -0.07240334153175354,
- -0.005846198182553053, -0.034706298261880875, -0.0631149485707283,
- -0.039759714156389236, -0.045006126165390015, 0.08751598000526428, 0.05575672537088394,
- -0.03732084855437279, -0.13070152699947357, 0.010348260402679443, -0.005100350361317396,
- 0.007070671766996384, 0.12019680440425873, -0.10403820127248764, 0.04060303047299385,
- -0.016033630818128586, -0.011685567907989025, -0.04681376367807388,
- -0.07345230132341385, 0.0054761869832873344, -0.08438962697982788, 0.06886057555675507,
- -0.03792557865381241, 0.027249431237578392, -0.03277087211608887, 0.13201764225959778,
- -0.08244001120328903, 0.08187896758317947, 0.013204380869865417, -0.055108726024627686,
- 0.01977704092860222, -0.03768991678953171, -0.02440037578344345, 0.00998111255466938,
- -0.06868207454681396, -0.030466508120298386, 0.040118537843227386,
- -0.014981752261519432, -0.0653701201081276, -0.06665308773517609, -0.08851128816604614,
- -0.08134302496910095, 0.056726016104221344, -0.018185637891292572, -0.0374528132379055,
- -0.0012778221862390637, -0.0034556561149656773, -0.007672537118196487,
- 0.04853751137852669, -0.014269865117967129, -0.1601477563381195, -0.04044876992702484,
- 0.023533709347248077, 0.06185152009129524, -0.023966722190380096, -0.042095083743333817,
- -0.010602599941194057, 0.08008100837469101, 0.024226399138569832, 0.00343992467969656,
- -0.0035036057233810425, -0.0184878371655941, 0.036370571702718735, -0.11244882643222809,
- -0.39987611770629883, 0.023460619151592255, 0.006794854067265987, 0.03627656027674675,
- 0.038129668682813644, -0.08750221878290176, 0.0409749373793602, 0.03918100893497467,
- -0.06107738986611366, 0.07008225470781326, -0.05569097027182579, 0.029564088210463524,
- 0.02350245974957943, -0.06111183762550354, -0.007483930792659521, -0.054889287799596786,
- -0.04738287255167961, 0.0035054339095950127, -0.028469501063227654,
- -0.030918026342988014, -0.08481741696596146, 0.03819485008716583, -0.018095698207616806,
- 0.07374680787324905, 0.0070602199994027615, 0.04901277273893356, -0.07321712374687195,
- -0.04148887097835541, 0.038561075925827026, 0.117580845952034, 0.015711860731244087,
- -0.016114873811602592, -0.040321704000234604, 0.07153531163930893,
- -0.013673899695277214, 0.10793500393629074, 0.05147901177406311, -0.08521879464387894,
- -0.04924522340297699, 0.05061621591448784, 0.06786379218101501, 0.18647505342960358,
- -0.016359983012080193, 0.004945613909512758, 0.06147662550210953, 0.1408727616071701,
- -0.0066027226857841015, 0.024116255342960358, -0.055105529725551605,
- 0.02352619543671608, 0.018674703314900398, 0.058849118649959564, 0.08244911581277847,
- -0.09874463826417923, -0.058491166681051254, -0.031724605709314346,
- 0.0024438495747745037, -0.020376620814204216, -0.02329261228442192, 0.25650954246520996,
- 0.0436730682849884, 0.05836839601397514, -0.01562822423875332, -0.12240991741418839,
- 0.009662278927862644, -0.10938980430364609, -0.11842327564954758, 0.012670603580772877,
- 0.00879688374698162, 0.012314502149820328, -0.024938322603702545, -0.0948229506611824,
- -0.025149419903755188, 0.011640309356153011, 0.034618232399225235, 0.10513531416654587,
- -0.04014473780989647, 0.06664317846298218, 0.017065079882740974, 0.11931838095188141,
- 0.03624152019619942, 0.04191819950938225, 0.04893846809864044, 0.12094870209693909,
- 0.009650384075939655, -0.05020947381854057, -0.1024579107761383, -0.1316966414451599,
- -0.03439803421497345, 0.1265963464975357, 0.0004901979118585587, 0.12183932214975357,
- 0.013458461500704288, -0.01422925479710102, -0.013001999817788601, 0.011439697816967964,
- -0.037786345928907394, 0.008823635056614876, -0.4111749529838562, -0.04065994918346405,
- 0.09974280744791031, 0.05451821908354759, -0.010581862181425095, 0.10236003249883652,
- 0.008849204517900944, -0.04893923178315163, -0.08264049887657166, -0.10539310425519943,
- 0.1084899976849556, -0.023213336244225502, 0.1095920205116272, -0.06742563843727112,
- -0.0022390438243746758, 0.08402783423662186, -0.04670897126197815, 0.004472707398235798,
- 0.055081695318222046, -0.1443847119808197, 0.012772527523338795, -0.03172033652663231,
- 0.10607944428920746, 0.011266877874732018, 0.05501139536499977, 0.09195079654455185,
- -0.057033833116292953, -0.009675714187324047, 0.017005527392029762,
- -0.0009911737870424986, 0.022844761610031128, 0.012259679846465588,
- -0.037674203515052795, 0.08676904439926147, 0.11705142259597778, 0.18381980061531067,
- -0.02577306516468525, 11.968578338623047, 0.03647713363170624, 0.05175895243883133,
- -0.07072152197360992, 0.03519590198993683, -0.05240070819854736, 0.04115208238363266,
- -0.10100313276052475, 0.07979492098093033, 0.15642322599887848, 0.011469955556094646,
- -0.015414333902299404, -0.025349285453557968, -0.11595925688743591,
- -0.0016423675697296858, -0.03542451187968254, -0.0727061927318573,
- -0.055957354605197906, 0.030167831107974052, -0.016391592100262642,
- -0.06296396255493164, 0.05636392906308174, 0.0762639045715332, 0.015797076746821404,
- -0.08704348653554916, 0.010758212767541409, 0.03313620761036873, 0.001527411863207817,
- 0.013127429410815239, -0.008833978325128555, 0.008149789646267891, -0.01682322844862938,
- 0.03085845708847046, 0.04916205629706383, 0.07784690707921982, 0.027821402996778488,
- 0.04170626029372215, 0.032021112740039825, 0.0024701545480638742, 0.06593230366706848,
- -0.007767193019390106, -0.025540074333548546, 0.002339501865208149,
- 0.055222153663635254, 0.09739724546670914, 0.049147091805934906, 0.059964101761579514,
- 0.07669983804225922, 0.025840042158961296, 0.05646509304642677, 0.06981436163187027,
- 0.008208513259887695, 0.13735245168209076, 0.0066179679706692696, -0.024435367435216904,
- 0.08526282012462616, -0.0008944841683842242, -0.08287722617387772, 0.09196142852306366,
- 0.03332704305648804, -0.05414942279458046, 0.12633898854255676, 0.06081875041127205,
- 0.159349724650383, 0.07917975634336472, 0.045568715780973434, 0.08466457575559616,
- 0.05505336821079254, -0.07369018346071243, -0.020596733316779137,
- -0.0050438400357961655, -0.1083696112036705, -0.029604392126202583,
- 0.0002477228408679366, 0.08175628632307053, -0.03176342695951462, 0.0959378331899643,
- -0.0011144215241074562, 0.024551432579755783, -0.06789679080247879,
- 0.026582032442092896, 0.024361195042729378, -0.055031269788742065,
- -0.0076308404095470905, 0.08584553748369217, 0.02655940130352974, 0.12019053101539612,
- 0.090363048017025, 0.01988597959280014, -0.14637070894241333, -0.037314753979444504,
- 0.12668392062187195, 0.01417459174990654, -0.047548964619636536, -0.03964952751994133,
- -0.025788046419620514, -0.009505915455520153, -0.12661141157150269,
- 0.031738270074129105, 0.1311321258544922, -0.10527922958135605, -0.0371856652200222,
- -0.04172300547361374, 0.08236972987651825, -0.003929642029106617, -0.013760680332779884,
- -0.08802088350057602, -0.010583803988993168, -0.02056773193180561, 0.029527753591537476,
- -0.040164291858673096, 0.03130510821938515, 0.12554097175598145, -0.06969728320837021,
- 0.05089196935296059, 0.04553942009806633, -0.02615468204021454, -0.01606740429997444,
- 0.08507240563631058, 0.04258693754673004, -0.1045677661895752, -0.01926610805094242,
- -0.02125953882932663, -0.029096120968461037, -0.006638724822551012, -0.0320994108915329,
- -0.01702546700835228, 0.06486441195011139, 0.01719464175403118, -0.025721434503793716,
- 0.050908807665109634, 0.08137793093919754, 0.036253537982702255, -0.010388259775936604,
- 0.052488308399915695, -0.059406474232673645, -0.0448729507625103, 0.05357939749956131,
- 0.053116682916879654, 0.07444596290588379, -0.12043754011392593, -0.07118558138608932,
- 0.013821431435644627, -0.11222323775291443, -0.011379625648260117, 0.08913285285234451,
- 0.05760973319411278, 0.04818529635667801, 0.004511616658419371, -0.09728094190359116,
- -0.05346814543008804, 0.08983807265758514, 0.047252245247364044, -0.019209209829568863,
- 0.04215734079480171, -0.04000907018780708, 0.015451861545443535, 0.09250213205814362,
- -0.07536040991544724, -0.03222623094916344, -0.03938811272382736, -0.07594601064920425,
- 0.10595201700925827, 0.08305595070123672, 0.1318960040807724, -0.010530692525207996,
- -0.00008913863712223247, 0.0384044349193573, -0.011620852164924145, 0.01406100858002901,
- 0.032268911600112915, -0.04369885101914406, -0.13907113671302795, -0.11178900301456451,
- 0.026071960106492043, 0.07257113605737686, 0.06611057370901108, -0.0774252712726593,
- -0.000907072564586997, -0.060622721910476685
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 132,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 206,
- "similarity": 0.9976629614830017
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 1,
- "similarity": 0.9975742697715759
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 183,
- "similarity": 0.9975050687789917
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Naina Bhardwaj"],
- "epoch_date_downloaded": 1635120000,
- "epoch_date_modified": 1635120000,
- "epoch_date_submitted": 1635120000,
- "flag": null,
- "report_number": 1466,
- "source_domain": "insider.com",
- "submitters": ["Patrick Hall (BNH.ai)"],
- "title": "TikTok Anorexia Videos Misspell Hashtags to Beat the 'Pro-Ana' Ban",
- "url": "https://www.insider.com/tiktok-bans-six-accounts-posting-eating-disorder-content"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "tiktok",
- "name": "TikTok"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "tiktok",
- "name": "TikTok"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "tiktok-content-creators-of-marginalized-groups",
- "name": "TikTok content creators of marginalized groups"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1468],
- "vector": [
- -0.05203869938850403, 0.08877270668745041, 0.026821676641702652, -0.08434560894966125,
- 0.1050291359424591, -0.06926985085010529, 0.022068865597248077, 0.1153092160820961,
- 0.051394760608673096, -0.14784643054008484, -0.0052104732021689415,
- 0.016774864867329597, -0.018430128693580627, -0.11017506569623947,
- 0.0008468584856018424, -0.055419422686100006, -0.1291864961385727,
- -0.035697001963853836, 0.0019040952902287245, -0.08245821297168732,
- -0.06939008831977844, 0.06715045124292374, 0.02856467105448246, 0.12625733017921448,
- -0.07943665981292725, 0.05183856189250946, 0.11076802015304565, 0.11277419328689575,
- -0.07723996043205261, 0.09894385188817978, -0.03590361773967743, -0.0930587574839592,
- 0.12225113809108734, 0.05903393775224686, 0.00899369828402996, 0.08680026233196259,
- 0.026026491075754166, -0.006025791168212891, -0.0085567282512784, -0.008335169404745102,
- 0.07893512398004532, 0.1873437613248825, -0.020809832960367203, -0.019022012129426003,
- 0.021143602207303047, -0.06614738702774048, 0.010313747450709343, 0.039441775530576706,
- 0.03490631654858589, 0.007892540656030178, -0.02093668095767498, 0.04892050102353096,
- -0.07604777812957764, 0.04110707342624664, -0.13141900300979614, 0.08059173822402954,
- 0.03702250495553017, -0.03169677406549454, 0.05383167043328285, -0.05327357351779938,
- -0.06136424466967583, -0.22522245347499847, -0.06119569018483162, -0.03399970382452011,
- 0.047149430960416794, -0.05812227725982666, 0.012748784385621548, 0.0036429460160434246,
- 0.03203342854976654, 0.07773113995790482, 0.013981400988996029, -0.05825159326195717,
- -0.04836839810013771, 0.007153513375669718, -0.022408530116081238, -0.06874188780784607,
- 0.012492035515606403, 0.20993229746818542, -0.11059044301509857, -0.0009902939200401306,
- 0.09806874394416809, -0.13197395205497742, 0.40052640438079834, -0.05102958157658577,
- -0.03612181171774864, 0.07829286903142929, 0.08843488246202469, 0.0029146375600248575,
- 0.029651043936610222, 0.036983076483011246, -0.04861666262149811, 0.039112359285354614,
- -0.06141243502497673, -0.04860644415020943, 0.048483047634363174, 0.03338847681879997,
- 0.0026432848535478115, -0.0516168586909771, 0.001910147606395185, -0.09645126014947891,
- 0.03668365627527237, -0.035340070724487305, 0.12522520124912262, 0.046575531363487244,
- 0.0061772484332323074, -0.054265931248664856, 0.08644093573093414, -0.1062849685549736,
- 0.03581944480538368, -0.027509093284606934, 0.009033204056322575,
- -0.0013573163887485862, 0.052331872284412384, 0.0011167572811245918,
- 0.01571214571595192, -0.010349149815738201, -0.013856189325451851, 0.026587948203086853,
- 0.060534749180078506, 0.08043185621500015, -0.0019282873254269361, 0.03408079594373703,
- 0.06344912201166153, -0.07631034404039383, -0.04119623079895973, -0.017134323716163635,
- -0.021379569545388222, 0.022122738882899284, -0.023513074964284897, 0.07024671882390976,
- -0.04509016126394272, -0.26455679535865784, -0.06128367409110069, 0.013979670591652393,
- 0.0015948349609971046, -0.0017760000191628933, 0.02155490219593048, -0.0642494335770607,
- 0.03613846004009247, -0.03351724520325661, 0.01419778261333704, 0.03689903765916824,
- 0.010468974709510803, 0.05140626057982445, 0.10202204436063766, 0.07666543871164322,
- -0.045015428215265274, -0.046339210122823715, 0.02488802932202816, -0.02146141789853573,
- 0.08177100121974945, -0.12613695859909058, 0.0035931128077208996, -0.0349186472594738,
- -0.03550029173493385, 0.657444417476654, 0.17205926775932312, 0.14067167043685913,
- 0.030080169439315796, -0.03868638724088669, 0.22304251790046692, -0.023463265970349312,
- 0.037639014422893524, -0.12380103766918182, -0.04912105202674866, -0.011000093072652817,
- -0.15429387986660004, -0.07197638601064682, 0.029738295823335648, -0.013711103238165379,
- 0.0775025263428688, 0.06494809687137604, 0.1036442369222641, -0.010014081373810768,
- -0.16035039722919464, -0.034957967698574066, 0.0343526154756546,
- -0.00017852705786935985, -0.08801756054162979, -0.011506002396345139,
- 0.02528672106564045, 0.08839347213506699, -0.05048771947622299, 0.03176918625831604,
- -0.13394695520401, 0.0541486032307148, -0.023385608568787575, 0.03512602671980858,
- -0.005773609969764948, 0.06274530291557312, 0.04723072052001953, 0.08246173709630966,
- -0.0399811677634716, -0.0800950899720192, -0.02995559573173523, 0.14259280264377594,
- -0.035093024373054504, -0.09254197776317596, 0.11885074526071548, -0.09468495845794678,
- 0.11069517582654953, 0.05687415599822998, 0.18719346821308136, -0.19862785935401917,
- 0.0020910301245748997, -0.055431898683309555, -0.012853899970650673,
- 0.05290048196911812, -0.016764553263783455, -0.08095843344926834, -0.07533212751150131,
- 0.15662743151187897, 0.004311554133892059, 0.07215630263090134, 0.03424805775284767,
- -0.05688876658678055, 0.007614156696945429, 0.06254098564386368, 0.006844914983958006,
- -0.03976894170045853, 0.04441669583320618, 0.036517322063446045, -0.013321704231202602,
- -0.0533299557864666, 0.0511186346411705, 0.061763305217027664, 0.03526505082845688,
- 0.028476541861891747, 0.07802297174930573, -0.04716860130429268, -0.05512448027729988,
- -0.00907265953719616, -0.014117046259343624, 0.006579844281077385, 0.059856340289115906,
- -0.0757005512714386, -0.005184610839933157, -0.01466656569391489, -0.005493742413818836,
- 0.04964248463511467, -0.003746788250282407, 0.08324435353279114, 0.09297043085098267,
- 0.055828697979450226, 0.01915106736123562, -0.009697235189378262, 0.04700141027569771,
- 0.02115320973098278, 0.011608755216002464, 0.15268130600452423, 0.0007709090132266283,
- -0.05736568570137024, -0.033013999462127686, 0.010403076186776161, 0.017340343445539474,
- 0.017949435859918594, -0.07869763672351837, -0.045903999358415604, -0.01239995751529932,
- -0.07162193208932877, -0.12111470103263855, -0.003999317996203899, 0.010768182575702667,
- 0.019633350893855095, -0.06800716370344162, -0.09919635206460953, -0.07509257644414902,
- -0.02857448160648346, 0.10312000662088394, 0.006929102819412947, -0.005531991831958294,
- -0.1465640366077423, 0.029099108651280403, -0.06742213666439056, 0.06112690269947052,
- -0.05605664849281311, 0.03121321275830269, -0.024318601936101913, -0.046449415385723114,
- 0.029602596536278725, 0.0015324807027354836, 0.030012056231498718, -0.041910570114851,
- -0.10918812453746796, 0.003386192489415407, -0.034275494515895844, -0.06511791795492172,
- -0.016249269247055054, 0.013590713031589985, 0.043986111879348755, 0.08792242407798767,
- -0.03139103576540947, -0.05481478571891785, 0.01196601428091526, -0.058180104941129684,
- 0.017222722992300987, 0.0974462702870369, 0.01677611470222473, 0.013842187821865082,
- 0.021043669432401657, -0.04134044796228409, -0.02774135395884514, -0.024631628766655922,
- -0.06625613570213318, 0.0026149253826588392, -0.003837502095848322,
- -0.05711089447140694, -0.0400448739528656, 0.03040027804672718, 0.0957711935043335,
- -0.019330982118844986, -0.06246429309248924, -0.04278042912483215, 0.1849782019853592,
- 0.019298968836665154, 0.05233491584658623, -0.0005454443162307143, -0.10445822030305862,
- 0.05130234360694885, 0.03900451213121414, 0.01031238678842783, 0.023434391245245934,
- 0.0869567021727562, -0.030550507828593254, -0.012993899174034595, 0.0797199010848999,
- -0.016205407679080963, 0.01562594436109066, 0.1183183416724205, 0.3720075488090515,
- -0.1454496681690216, 0.11498904973268509, 0.10116932541131973, 0.008991383947432041,
- -0.04114314168691635, -0.018000727519392967, 0.10394485294818878, 0.04157564416527748,
- 0.11510226875543594, 0.13182155787944794, -0.05185186490416527, 0.017812028527259827,
- -0.013921884819865227, 0.10310515761375427, 0.020140429958701134, 0.058226458728313446,
- 0.0005320775089785457, -0.05249614268541336, -0.04055403918027878, 0.07825297117233276,
- -0.06670179218053818, -0.016290422528982162, -0.007468583527952433,
- -0.08996279537677765, 0.032337334007024765, 0.10262109339237213, 0.05621248856186867,
- -0.01528283953666687, 0.030690021812915802, -0.07674966007471085, 0.03134433180093765,
- 0.03327565640211105, 0.0017669227672740817, -0.10249693691730499, 0.031330522149801254,
- -0.026241501793265343, -0.10967497527599335, 0.1020675078034401, -0.012139149941504002,
- 0.029700452461838722, 0.05495865270495415, -0.00021915350225754082,
- 0.030067257583141327, -0.025236818939447403, -0.03449182212352753, 0.011614604853093624,
- 0.012327109463512897, 0.04947132617235184, 0.09443158656358719, 0.12288722395896912,
- -0.06223959103226662, 0.06016974151134491, -0.05433180183172226, 0.05884001776576042,
- 0.10329905897378922, -0.05346115678548813, -0.011047577485442162, 0.04348710551857948,
- 0.01355446595698595, -0.02674172632396221, -0.06381915509700775, -0.05916304141283035,
- -0.01531081274151802, -0.13352178037166595, 0.11782457679510117, 0.05429304018616676,
- -0.016553647816181183, -0.22298835217952728, 0.040906473994255066, -0.051875039935112,
- 0.02696424536406994, 0.15986007452011108, -0.08738109469413757, 0.06347038596868515,
- -0.005266416352242231, -0.020907767117023468, 0.035707663744688034,
- -0.08283484727144241, -0.0032237989362329245, -0.13063661754131317,
- 0.027702195569872856, 0.09207379817962646, 0.029659928753972054, -0.08842212706804276,
- 0.07383368164300919, -0.11329053342342377, 0.08632765710353851, -0.01770895905792713,
- -0.005582925397902727, -0.03477490320801735, -0.028667615726590157,
- -0.01814311370253563, 0.06722715497016907, -0.05563095211982727, 0.030173661187291145,
- -0.0019320145947858691, 0.01104219164699316, -0.11530157178640366, -0.09223784506320953,
- -0.06418783962726593, -0.0684710219502449, 0.003788722213357687, -0.07658138871192932,
- -0.011167069897055626, 0.006462725345045328, 0.006210050079971552, -0.04035066440701485,
- 0.03426317870616913, -0.047711752355098724, -0.1606939733028412, -0.00656049745157361,
- -0.009465157054364681, 0.05704553797841072, -0.07369501888751984, -0.09757868945598602,
- -0.012572026811540127, 0.06579228490591049, 0.023406628519296646, 0.017311183735728264,
- -0.0022659904789179564, -0.027963217347860336, 0.07440314441919327,
- -0.12843912839889526, -0.3907424509525299, 0.014222240075469017, 0.01662515103816986,
- 0.049934014678001404, 0.04126578941941261, -0.07590281218290329, 0.0757109597325325,
- -0.00976634118705988, -0.05028820037841797, 0.05588214099407196, -0.05528861656785011,
- 0.005889265798032284, -0.0553399920463562, -0.07699123024940491, 0.017867084592580795,
- -0.09424546360969543, -0.08066371828317642, 0.02097255364060402, -0.037873733788728714,
- -0.045139461755752563, -0.11054850369691849, 0.05876683443784714, -0.00604894757270813,
- 0.09604785591363907, -0.04882747679948807, 0.05973348021507263, 0.012199671939015388,
- 0.017223671078681946, 0.05211677402257919, 0.02062477543950081, 0.06198592483997345,
- -0.060293667018413544, 0.01500178687274456, 0.10085467994213104, 0.003831749316304922,
- 0.11267872154712677, 0.014164712280035019, -0.0021396828815340996, -0.09595950692892075,
- 0.03700302541255951, 0.07533343881368637, 0.18590815365314484, -0.016951287165284157,
- 0.03758247569203377, 0.0003480008745100349, 0.03712013363838196, 0.04667959362268448,
- 0.03964594751596451, -0.048208266496658325, 0.015160171315073967, -0.021188361570239067,
- 0.021360935643315315, 0.07304713129997253, -0.06827741861343384, -0.0271233469247818,
- 0.0357484370470047, 0.02694633975625038, -0.02412346564233303, -0.041674137115478516,
- 0.16795524954795837, 0.006403513252735138, 0.005070147104561329, 0.039233554154634476,
- -0.07066606730222702, 0.0024996818974614143, -0.09322254359722137,
- -0.035028211772441864, 0.001378812943585217, 0.03602202609181404, 0.012281108647584915,
- -0.07766604423522949, -0.09978452324867249, -0.048031602054834366,
- -0.0007578496588394046, 0.01536331232637167, 0.11076246947050095, -0.06400223821401596,
- 0.07475870847702026, -0.0033968472853302956, 0.14355501532554626, 0.03420006111264229,
- 0.04113810136914253, 0.0629706010222435, 0.05769272893667221, 0.019471626728773117,
- -0.020879782736301422, -0.00014077032392378896, -0.12057110667228699,
- -0.05357356742024422, 0.16297005116939545, -0.018032684922218323, 0.18421073257923126,
- 0.07758257538080215, 0.020975759252905846, -0.06575385481119156, 0.05807115510106087,
- -0.034372396767139435, -0.053657811135053635, -0.429446816444397, -0.009188787080347538,
- 0.03810758888721466, 0.03143995627760887, 0.046437427401542664, 0.09427283704280853,
- 0.016979297623038292, -0.043284088373184204, -0.03289971500635147, -0.10763249546289444,
- 0.2351512461900711, -0.04053099825978279, 0.0018836258677765727, -0.061717439442873,
- 0.0436435230076313, 0.09705878049135208, -0.033963046967983246, 0.010738770477473736,
- 0.05884336307644844, -0.18028995394706726, -0.014510407112538815, -0.06671234220266342,
- 0.13532379269599915, 0.08038260787725449, 0.057584453374147415, 0.08500339835882187,
- -0.050527073442935944, -0.02057289332151413, 0.07348912954330444, 0.003324570832774043,
- 0.022573769092559814, -0.007589211221784353, 0.010428610257804394, 0.11612623184919357,
- 0.12976153194904327, 0.07027395069599152, -0.061194512993097305, 11.985883712768555,
- 0.08737552165985107, 0.11451274901628494, -0.06729959696531296, 0.025324327871203423,
- -0.04944566637277603, 0.034832749515771866, -0.16642867028713226, 0.00729390187188983,
- 0.11712706834077835, -0.037724025547504425, -0.07136526703834534, -0.05006399378180504,
- -0.07993236929178238, 0.03164893388748169, 0.01885850913822651, -0.0578281544148922,
- -0.012765413150191307, -0.0030620053876191378, -0.04328443109989166,
- 0.0023148388136178255, 0.045342426747083664, 0.04077685996890068, -0.050323814153671265,
- -0.07121064513921738, 0.06382548809051514, 0.012922248803079128, 0.007519027218222618,
- -0.0029607112519443035, 0.06340518593788147, 0.020528730005025864, 0.03630102798342705,
- 0.015236704610288143, 0.01210373267531395, 0.027532190084457397, 0.10275494307279587,
- 0.03902957960963249, 0.008266094140708447, 0.046138785779476166, 0.08019426465034485,
- 0.0035544962156563997, 0.03261934593319893, 0.06366277486085892, 0.07840685546398163,
- 0.06857224553823471, 0.03774512559175491, 0.02057178132236004, 0.14853936433792114,
- 0.022919561713933945, 0.007857725024223328, 0.12176676839590073, -0.014967795461416245,
- 0.12297941744327545, 0.024969935417175293, -0.010623578913509846, 0.048927001655101776,
- -0.07703696936368942, -0.11767877638339996, 0.09766075760126114, 0.0564914345741272,
- -0.03786585107445717, 0.13630081713199615, 0.04840252548456192, 0.033760007470846176,
- 0.037269119173288345, -0.021024124696850777, 0.08084553480148315, 0.11437942087650299,
- -0.14797960221767426, -0.0623394176363945, 0.058677855879068375, -0.04602716863155365,
- -0.05524652078747749, 0.06345628947019577, 0.09664230793714523, -0.06331130862236023,
- 0.06250331550836563, -0.05849636718630791, 0.03661273047327995, -0.04556507617235184,
- -0.002742961049079895, 0.052533458918333054, -0.04115130379796028,
- 0.0023335302248597145, 0.004299662075936794, 0.045690007507801056, 0.13202239573001862,
- 0.06893579661846161, 0.015768328681588173, -0.03808294236660004, -0.06865467876195908,
- 0.08624500781297684, 0.025194555521011353, -0.03677261248230934, 0.028527118265628815,
- -0.07628300040960312, 0.060386303812265396, -0.16125920414924622, 0.11385460197925568,
- 0.08968654274940491, -0.08268299698829651, -0.022246018052101135, -0.004973430652171373,
- 0.05502653121948242, 0.020359564572572708, 0.02269754186272621, -0.06519394367933273,
- 0.03997327387332916, 0.0065974825993180275, 0.10001938790082932, -0.038642045110464096,
- 0.05816497281193733, 0.06444389373064041, -0.03981221467256546, 0.0079084113240242,
- 0.041481394320726395, -0.03909403458237648, -0.037208713591098785, 0.026052093133330345,
- 0.03204576298594475, -0.07457776367664337, -0.02590893767774105, -0.050719887018203735,
- -0.03966685011982918, 0.0036461125127971172, -0.02860363945364952, 0.008346127346158028,
- -0.008706972002983093, 0.0042528677731752396, -0.052401039749383926,
- 0.06319290399551392, 0.07918745279312134, 0.0798698291182518, -0.011165771633386612,
- 0.06581723690032959, -0.06928572058677673, -0.05740921199321747, 0.05639023706316948,
- 0.01904660277068615, 0.05311223119497299, 0.017414243891835213, -0.03303886204957962,
- -0.06487078219652176, -0.10517550259828568, 0.0028736633248627186, 0.0771375298500061,
- 0.025478526949882507, 0.02536121755838394, 0.012501477263867855, -0.08410166203975677,
- -0.011116944253444672, 0.054514747112989426, 0.03951692953705788, 0.031644172966480255,
- 0.03623587265610695, -0.03216519579291344, -0.04571392387151718, 0.0754719227552414,
- -0.036989808082580566, -0.02114756777882576, 0.0041903117671608925,
- -0.10000138729810715, 0.08647902309894562, 0.0950864851474762, 0.03870642930269241,
- 0.04173694923520088, 0.03987794741988182, 0.08308032155036926, 0.029770491644740105,
- -0.0035600634291768074, -0.034072395414114, -0.007172456942498684,
- -0.027348410338163376, -0.06163681298494339, -0.013055115938186646, 0.09109783917665482,
- 0.1358928233385086, -0.13104397058486938, 0.0036801195237785578, -0.038438279181718826
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 133,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 106,
- "similarity": 0.9974204301834106
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 236,
- "similarity": 0.9972428679466248
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 138,
- "similarity": 0.9971792697906494
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Rosalynne Montoya"],
- "epoch_date_downloaded": 1635120000,
- "epoch_date_modified": 1635120000,
- "epoch_date_submitted": 1635120000,
- "flag": null,
- "report_number": 1468,
- "source_domain": "losangelesblade.com",
- "submitters": ["Patrick Hall (BNH.ai)"],
- "title": "TikTok Deleted My Account Because I’m a Latina Trans Woman",
- "url": "https://www.losangelesblade.com/2020/12/15/tiktok-deleted-my-account-because-im-a-latina-trans-woman/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "fuzhou-zhongfang-marlboro-mall",
- "name": "Fuzhou Zhongfang Marlboro Mall"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "unknown",
- "name": "Unknown"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "fuzhou-zhongfang-marlboro-mall-goers",
- "name": "Fuzhou Zhongfang Marlboro Mall goers"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1951, 1469],
- "vector": [
- -0.0605759397149086, 0.04099290072917938, 0.018662819638848305, -0.07016453146934509,
- 0.09850580990314484, 0.0002668655652087182, -0.0009671924635767937,
- -0.014309946447610855, 0.09797876328229904, -0.11812058091163635, 0.027960125356912613,
- 0.08167550712823868, 0.0002848571166396141, -0.023307641968131065, 0.032950595021247864,
- -0.034474022686481476, -0.06592661887407303, 0.03795850649476051, -0.04168958216905594,
- -0.005324400961399078, -0.09450042992830276, 0.06301078200340271, -0.03394297510385513,
- 0.10195586830377579, -0.0951954647898674, 0.006491054315119982, 0.07034365087747574,
- 0.06072136014699936, 0.012012293562293053, 0.07014645636081696, -0.020074017345905304,
- -0.08240163326263428, 0.06564132869243622, 0.0022134948521852493, 0.03340049088001251,
- 0.07873405516147614, 0.06831157207489014, -0.06600616872310638, -0.06295375525951385,
- 0.005027850158512592, -0.10449160635471344, 0.17946317791938782, 0.03379422053694725,
- -0.01411404274404049, 0.10799314826726913, -0.054049693048000336, 0.06798575073480606,
- 0.08046768605709076, 0.006874510087072849, 0.03058413788676262, 0.061693016439676285,
- 0.043050721287727356, -0.03762806951999664, 0.0006735725328326225, -0.12026424705982208,
- 0.022361071780323982, -0.006318388506770134, 0.04349321126937866, 0.0988290086388588,
- -0.08775034546852112, 0.03509700298309326, -0.11151820421218872, -0.03980065509676933,
- -0.0019510835409164429, 0.004468915984034538, -0.05723872035741806,
- -0.07351942360401154, -0.07661861926317215, 0.04502585902810097, 0.09152494370937347,
- 0.042293570935726166, -0.025399619713425636, 0.04002778232097626, -0.09461674094200134,
- -0.06734424084424973, -0.06349585205316544, -0.02630610764026642, 0.35024458169937134,
- -0.0515369288623333, 0.02857135236263275, 0.11219929158687592, -0.039317138493061066,
- 0.3704622983932495, -0.008761247619986534, -0.04890276491641998, 0.03359772264957428,
- 0.08397975564002991, -0.03312545642256737, 0.053107764571905136, 0.04474451392889023,
- 0.018295936286449432, 0.050319381058216095, -0.06261766701936722, -0.05159657076001167,
- 0.027697963640093803, 0.03309737890958786, -0.005760964006185532, -0.06753005087375641,
- 0.0020693312399089336, -0.03153169900178909, 0.04586977884173393, -0.03342657536268234,
- 0.11039941757917404, 0.04478239268064499, 0.025335025042295456, 0.021027781069278717,
- 0.035483554005622864, -0.03563867136836052, -0.0243760384619236, -0.021943332627415657,
- -0.019526053220033646, 0.06487061083316803, 0.018801460042595863, 0.007406893186271191,
- 0.03390979766845703, -0.003486577421426773, 0.057889051735401154, 0.010032199323177338,
- 0.03603363782167435, 0.08727191388607025, 0.012222257442772388, 0.0374026857316494,
- 0.09888604283332825, -0.0015577636659145355, 0.023701893165707588, -0.06502192467451096,
- 0.01423424482345581, -0.0069555421359837055, 0.007815508171916008, 0.06560295820236206,
- -0.03975783661007881, -0.29147714376449585, 0.0032354677096009254,
- -0.004508554935455322, 0.04276129603385925, -0.00707213394343853, 0.01490940060466528,
- -0.0475381575524807, 0.061316248029470444, -0.03302891552448273, -0.05309227481484413,
- 0.08477090299129486, 0.11289720982313156, 0.019697342067956924, 0.11264833807945251,
- -0.0036272481083869934, -0.03778284415602684, -0.02159229852259159,
- -0.04138896241784096, 0.011802018620073795, 0.11328308284282684, -0.06046527624130249,
- -0.019965723156929016, 0.06426694244146347, -0.045359376817941666, 0.4672982692718506,
- 0.05141745135188103, 0.0808490514755249, -0.08033153414726257, 0.005030268337577581,
- 0.1517910212278366, -0.022004183381795883, 0.052062373608350754, -0.018961403518915176,
- 0.03743278980255127, 0.03945518657565117, -0.05801887810230255, 0.048310983926057816,
- 0.07469309121370316, -0.04110539332032204, 0.07061555981636047, -0.009650122374296188,
- 0.08957430720329285, 0.015240851789712906, -0.045593325048685074, -0.09626121819019318,
- -0.07068686187267303, -0.01806126907467842, -0.10331551730632782, -0.033209118992090225,
- -0.01944844052195549, 0.036213018000125885, -0.041153013706207275,
- -0.008213650435209274, 0.015907354652881622, 0.020575447008013725, -0.06773850321769714,
- -0.017643362283706665, 0.019844520837068558, -0.006101397797465324, 0.03404756635427475,
- 0.07509879022836685, 0.045952703803777695, -0.0914895236492157, 0.01256946288049221,
- 0.1151784211397171, 0.02403506636619568, -0.025436678901314735, 0.103236623108387,
- -0.1020880714058876, 0.01187333557754755, -0.053899575024843216, 0.08346734941005707,
- -0.089223712682724, 0.04225129634141922, 0.016023047268390656, 0.009944026358425617,
- 0.04908377677202225, 0.002281200373545289, -0.09421791881322861, -0.03730509430170059,
- -0.012836191803216934, -0.030113061890006065, 0.08026169240474701, 0.0549822635948658,
- 0.012288931757211685, 0.012062717229127884, -0.0771791934967041, 0.011162526905536652,
- -0.1012316420674324, 0.07787559926509857, 0.11137033998966217, -0.06264876574277878,
- -0.03989947587251663, 0.01959342695772648, 0.07832266390323639, 0.012686748057603836,
- -0.01675056479871273, 0.035273801535367966, 0.010808336548507214, 0.003624209202826023,
- -0.011616300791501999, -0.05124630406498909, -0.0018275678157806396, 0.0812910869717598,
- -0.12942297756671906, -0.009638573974370956, -0.04348365217447281, -0.06971085071563721,
- 0.049302611500024796, -0.0298676285892725, 0.04765269532799721, 0.06850719451904297,
- 0.04630861431360245, 0.017652694135904312, 0.10634886473417282, 0.04322323948144913,
- -0.0014921091496944427, -0.019913487136363983, 0.04951097071170807, -0.0170510895550251,
- -0.07286494970321655, -0.03807716816663742, -0.006042798515409231, 0.05201523005962372,
- 0.029123026877641678, -0.10882911086082458, -0.04910421371459961, 0.04299858957529068,
- -0.01810372993350029, -0.09739729762077332, 0.009396458975970745, 0.014573516324162483,
- 0.0328628309071064, -0.04834538698196411, -0.1754891276359558, -0.0389617495238781,
- -0.0476561076939106, 0.02546951174736023, -0.0019729193300008774, 0.02683945558965206,
- -0.058272138237953186, 0.045844998210668564, -0.008362486027181149,
- 0.050912316888570786, 0.03428800404071808, -0.05953996628522873, -0.05585493892431259,
- -0.07202465832233429, -0.04923030734062195, 0.01391819678246975, -0.021513592451810837,
- -0.11258640885353088, -0.08727335929870605, -0.08229298889636993, 0.025435592979192734,
- -0.02419617399573326, -0.02415403723716736, 0.05032357946038246, 0.05714448168873787,
- 0.03317761793732643, 0.016282400116324425, -0.022705603390932083, 0.05231454223394394,
- -0.03750847652554512, 0.06618105620145798, 0.06566338986158371, 0.001282750628888607,
- -0.011965638026595116, 0.012805754318833351, -0.05118448659777641,
- -0.059244949370622635, -0.08153042942285538, 0.0025529293343424797,
- 0.031620580703020096, -0.022998938336968422, 0.026484431698918343, 0.03173966705799103,
- 0.07158104330301285, 0.06771250069141388, -0.0376618467271328, -0.051422446966171265,
- -0.008053787052631378, 0.1284877061843872, 0.008231146261096, 0.010034015402197838,
- 0.05634165555238724, -0.09729239344596863, 0.03276096284389496, 0.027914665639400482,
- -0.007209361996501684, -0.020176492631435394, 0.05410582944750786, -0.02581208012998104,
- 0.0028550736606121063, 0.00906941294670105, -0.0235164575278759, 0.005949689541012049,
- 0.04096385836601257, 0.41272157430648804, -0.12920822203159332, 0.0626460611820221,
- 0.050709910690784454, -0.0022451281547546387, 0.051817167550325394,
- -0.03191682696342468, 0.01241939328610897, -0.006112292408943176, 0.08575648069381714,
- 0.11658303439617157, 0.032718248665332794, -0.058125682175159454, -0.04201332852244377,
- 0.0817386731505394, 0.002359250094741583, 0.03935648500919342, 0.024872303009033203,
- -0.1131756380200386, -0.0576309859752655, -0.017163541167974472, -0.044004350900650024,
- 0.08590026944875717, 0.0035260687582194805, -0.09361063688993454, 0.0031225373968482018,
- 0.12834100425243378, 0.024527542293071747, -0.017741525545716286, -0.015838894993066788,
- -0.11321982741355896, -0.013239329680800438, 0.02711070328950882, 0.025157244876027107,
- -0.06781136989593506, 0.08526347577571869, -0.0726885125041008, -0.10336481034755707,
- 0.03230518102645874, 0.018779583275318146, 0.026299796998500824, 0.043739818036556244,
- -0.029467947781085968, 0.038741111755371094, -0.04400099441409111,
- -0.051420893520116806, -0.004154688213020563, 0.05081973969936371, 0.025960087776184082,
- 0.10141932964324951, 0.10620737075805664, 0.0243487861007452, 0.011704872362315655,
- -0.012790989130735397, 0.06107981875538826, 0.08984942734241486, -0.060647353529930115,
- 0.034335993230342865, -0.01904737390577793, 0.08649706095457077, 0.039709605276584625,
- -0.030461180955171585, -0.03962719067931175, -0.037700530141592026,
- -0.05243620276451111, 0.05180142819881439, 0.015448110178112984, 0.005664539523422718,
- -0.18579240143299103, 0.046657174825668335, -0.04949478805065155, 0.00783533975481987,
- 0.11263170838356018, -0.05832221359014511, -0.030042586848139763, 0.050725534558296204,
- -0.00466934684664011, -0.08298882842063904, -0.07001012563705444, -0.013446254655718803,
- -0.14662207663059235, -0.011147735640406609, 0.04928763955831528, 0.05173072963953018,
- -0.010581022128462791, 0.007729614153504372, -0.02296583354473114, 0.11172492057085037,
- -0.0590309202671051, -0.0655488520860672, 0.057417359203100204, 0.007512027397751808,
- 0.02982991561293602, 0.024391738697886467, 0.014963362365961075, -0.05665264278650284,
- -0.012627808377146721, 0.0007005836814641953, -0.09634369611740112,
- -0.10211849957704544, 0.009972934611141682, -0.011949711479246616, 0.11884845048189163,
- -0.020927172154188156, -0.011024015955626965, 0.005038089118897915,
- -0.048624008893966675, -0.017333272844552994, 0.04878293350338936, 0.011633852496743202,
- -0.08896397054195404, 0.007699417881667614, -0.02192559838294983, 0.014258576557040215,
- -0.03737116605043411, -0.03652389720082283, -0.0019167987629771233, 0.08103318512439728,
- 0.018690824508666992, -0.02034386433660984, 0.04300111159682274, -0.03246745094656944,
- 0.1256103217601776, -0.05518701672554016, -0.4748510718345642, 0.05492541939020157,
- 0.05420646071434021, 0.04652126133441925, 0.06788044422864914, -0.055243052542209625,
- 0.04056797921657562, 0.014982378110289574, 0.0007355585694313049, 0.1285799741744995,
- -0.06221617013216019, 0.0028311859350651503, 0.01574445515871048, -0.013623740524053574,
- 0.0081387460231781, -0.09222567081451416, -0.04048644006252289, 0.0653451681137085,
- -0.01612737402319908, -0.021315798163414, -0.08421497046947479, -0.022761549800634384,
- 0.0021369531750679016, 0.03456037491559982, -0.0317772701382637, -0.059055835008621216,
- -0.06416703760623932, -0.01810075342655182, 0.004206273704767227, 0.043978430330753326,
- -0.01677609235048294, -0.08382640033960342, -0.01072695478796959, 0.012279583141207695,
- 0.0205501951277256, 0.07544895261526108, 0.07983841001987457, -0.04738320782780647,
- -0.05556628108024597, -0.021037206053733826, 0.04736468195915222, 0.1842643916606903,
- -0.01829807087779045, 0.0867290273308754, -0.02125116065144539, 0.13970479369163513,
- 0.004587910603731871, 0.01664738915860653, 0.002046850509941578, 0.08375733345746994,
- 0.02389206737279892, -0.0028159599751234055, 0.015804806724190712, -0.04525204747915268,
- 0.017798110842704773, -0.0034007374197244644, 0.004752698354423046,
- -0.015917478129267693, 0.029548874124884605, 0.1780427247285843, 0.03776927664875984,
- 0.023571278899908066, 0.018539294600486755, -0.04672509431838989, -0.05156288295984268,
- -0.09060220420360565, 0.04412981867790222, -0.11249978840351105, -0.014868199825286865,
- -0.04590331017971039, -0.03036585822701454, -0.0862923339009285, -0.004869977943599224,
- -0.0018468648195266724, -0.014433329924941063, 0.07382460683584213,
- -0.03359339386224747, 0.02916087955236435, -0.008881183341145515, 0.08414711058139801,
- 0.012730578891932964, 0.09102415293455124, 0.08155502378940582, 0.03133527562022209,
- 0.01784629374742508, -0.00018127448856830597, -0.03146093338727951,
- -0.032723985612392426, -0.03906760364770889, 0.12349085509777069, -0.02069753035902977,
- 0.04178495705127716, 0.0786639153957367, 0.012601973488926888, -0.03367731720209122,
- 0.006722800433635712, -0.0578603595495224, -0.03956463560461998, -0.5280201435089111,
- -0.0056134858168661594, 0.12264768779277802, 0.0020748432725667953,
- -0.01148553378880024, 0.10576717555522919, 0.01741183176636696, -0.03294474631547928,
- 0.0978650450706482, -0.1010936051607132, 0.0928335040807724, 0.01211281307041645,
- 0.11604920774698257, -0.13721176981925964, 0.04530581459403038, 0.09324497729539871,
- -0.058210261166095734, -0.008205023594200611, 0.010440537706017494,
- -0.14175498485565186, 0.054662689566612244, -0.02744525484740734, 0.2184729278087616,
- 0.023132767528295517, 0.010322058573365211, 0.07381835579872131, -0.0355195626616478,
- 0.017496760934591293, 0.08876162767410278, 0.059424228966236115, 0.0848260372877121,
- 0.04320232570171356, -0.07621639966964722, -0.001772310584783554, 0.01824556104838848,
- 0.12356482446193695, 0.024559110403060913, 12.086277961730957, 0.004677636548876762,
- 0.07378867268562317, -0.09085255116224289, -0.006627610884606838, -0.11457884311676025,
- 0.027655743062496185, -0.1053781658411026, 0.062253132462501526, 0.0694136843085289,
- 0.014363189227879047, -0.09422986954450607, 0.030939139425754547, 0.030630841851234436,
- 0.03266412764787674, -0.04344092309474945, 0.02924283966422081, 0.03728219494223595,
- 0.08600426465272903, -0.0407554917037487, -0.039749156683683395, -0.03880135342478752,
- 0.033528026193380356, 0.00031526433303952217, -0.0364728681743145,
- 0.0036849193274974823, -0.014117799699306488, -0.011239789426326752,
- 0.01839699037373066, 0.0393134281039238, 0.026925090700387955, 0.054487794637680054,
- 0.07143785059452057, 0.04805496707558632, 0.10361167788505554, 0.030024424195289612,
- -0.09792939573526382, -0.007219934836030006, 0.05379578843712807, 0.021018309518694878,
- 0.023100752383470535, -0.020776577293872833, 0.054411474615335464, 0.031316883862018585,
- 0.06945464760065079, 0.0300813689827919, 0.01963486522436142, 0.14058434963226318,
- 0.03527478128671646, 0.08313409239053726, 0.09583978354930878, -0.044682011008262634,
- 0.12267102301120758, -0.061943985521793365, 0.05467890948057175, -0.016484849154949188,
- 0.043855931609869, -0.08785242587327957, 0.04876096919178963, 0.05426330491900444,
- -0.02584291435778141, 0.0921834409236908, -0.0066148205660283566, 0.04962342977523804,
- -0.03926526755094528, 0.05446002632379532, 0.14064596593379974, 0.10174067318439484,
- -0.09699097275733948, -0.009025845676660538, 0.05291663482785225, -0.08093900978565216,
- -0.05153052508831024, 0.00490641500800848, 0.13542519509792328, -0.026921313256025314,
- 0.09377995133399963, -0.07260416448116302, 0.0035811755806207657, -0.08309349417686462,
- -0.011857466772198677, 0.014727252535521984, -0.021879782900214195,
- -0.023327723145484924, -0.045005060732364655, 0.04047795385122299, 0.013920769095420837,
- 0.1083410233259201, -0.07038747519254684, -0.03679151460528374, -0.09258390218019485,
- 0.021656323224306107, -0.04691402614116669, 0.0076186321675777435, 0.0224709864705801,
- -0.004110234789550304, 0.06488176435232162, -0.10274018347263336, 0.036855798214673996,
- 0.03515176475048065, -0.1096111387014389, -0.0168576929718256, -0.03871556371450424,
- 0.04412050172686577, -0.043254073709249496, 0.04282809793949127, -0.0013057887554168701,
- 0.025108464062213898, -0.032209545373916626, -0.005852223373949528,
- -0.03870483487844467, 0.07243768125772476, 0.04116088151931763, -0.05357867851853371,
- 0.09656301140785217, 0.04222789406776428, 0.004707877524197102, -0.02947695180773735,
- 0.06412047892808914, 0.012695889919996262, -0.014442011713981628, -0.056543268263339996,
- -0.07031998038291931, -0.02778327465057373, -0.029330359771847725, -0.050921730697155,
- 0.023152204230427742, 0.02967914193868637, -0.05846615135669708, -0.02258046716451645,
- -0.00693438109010458, 0.04325207322835922, 0.14831607043743134, 0.035203296691179276,
- 0.06185968220233917, -0.023421883583068848, -0.03716495260596275, 0.04777291789650917,
- 0.06842467933893204, 0.08039708435535431, -0.036906301975250244, -0.030303293839097023,
- -0.015212573111057281, -0.1427871435880661, -0.03510178625583649, 0.1102975606918335,
- 0.15254658460617065, 0.09294404089450836, -0.003423642832785845, -0.028927326202392578,
- 0.02368222549557686, 0.030703049153089523, 0.06702563911676407, 0.00035618338733911514,
- -0.0016399100422859192, -0.09844803810119629, -0.01357815507799387, 0.06934649497270584,
- 0.02078673616051674, -0.05464472621679306, -0.03155321255326271, -0.18368685245513916,
- 0.03191538527607918, 0.0021164976060390472, -0.05561530590057373, -0.027125049382448196,
- 0.041166335344314575, 0.0007078190101310611, 0.08957811444997787, 0.01785951480269432,
- 0.026908263564109802, -0.04069385677576065, -0.0898229256272316, -0.03982279822230339,
- 0.0422084741294384, 0.028627514839172363, -0.005347155500203371, -0.1701149046421051,
- -0.02330571785569191, 0.012729894369840622
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 134,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 24,
- "similarity": 0.9983953237533569
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 36,
- "similarity": 0.998262345790863
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 51,
- "similarity": 0.998244047164917
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["中新经纬"],
- "epoch_date_downloaded": 1661212800,
- "epoch_date_modified": 1661299200,
- "epoch_date_submitted": 1661212800,
- "flag": null,
- "report_number": 1951,
- "source_domain": "weibo.com",
- "submitters": ["Khoa Lam"],
- "title": "Weibo post: 中新经纬",
- "url": "https://weibo.com/5993531560/JApf9oHe0"
- },
- {
- "__typename": "Report",
- "authors": ["Sino-Singapore Jingwei"],
- "epoch_date_downloaded": 1635033600,
- "epoch_date_modified": 1635120000,
- "epoch_date_submitted": 1635120000,
- "flag": null,
- "report_number": 1469,
- "source_domain": "s.weibo.com",
- "submitters": ["Patrick Hall (BNH.ai)"],
- "title": "Shopping mall robot fell off the escalator and knocked down passengers",
- "url": "https://s.weibo.com/weibo?q=%23%E5%95%86%E5%9C%BA%E6%9C%BA%E5%99%A8%E4%BA%BA%E6%8E%89%E4%B8%8B%E6%89%B6%E6%A2%AF%E6%92%9E%E5%80%92%E4%B9%98%E5%AE%A2"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "university-of-texas-at-austin's-department-of-computer-science",
- "name": "University of Texas at Austin's Department of Computer Science"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "university-of-texas-at-austin-researchers",
- "name": "University of Texas at Austin researchers"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "university-of-texas-at-austin-phd-applicants-of-marginalized-groups",
- "name": "University of Texas at Austin PhD applicants of marginalized groups"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1871, 1470],
- "vector": [
- -0.05486178398132324, 0.04995615780353546, 0.024406269192695618, -0.07646791636943817,
- 0.08471958339214325, -0.005625541787594557, -0.013661809265613556, 0.08810698986053467,
- 0.08262494951486588, -0.12369507551193237, 0.014203744009137154, 0.049095943570137024,
- 0.012257533147931099, -0.05239930748939514, 0.036974068731069565, -0.03559362515807152,
- -0.116214320063591, -0.06991365551948547, 0.006430582143366337, -0.15670618414878845,
- -0.05973643809556961, -0.022349538281559944, -0.0544244721531868, 0.07207844406366348,
- -0.03388843312859535, 0.021333500742912292, 0.04152674227952957, 0.11563190817832947,
- -0.039311423897743225, 0.04646611213684082, -0.05817142874002457, -0.08555471897125244,
- 0.09183435142040253, 0.020555220544338226, -0.018434960395097733, 0.08449766039848328,
- 0.028951816260814667, -0.032128941267728806, -0.06075647473335266, 0.013177724555134773,
- 0.05004379153251648, 0.2504865825176239, 0.017948880791664124, -0.016855688765645027,
- 0.02663489431142807, -0.044845398515462875, 0.015005117282271385, 0.04197818785905838,
- -0.009041580371558666, 0.03126143291592598, -0.018436197191476822, 0.06285274028778076,
- -0.029505958780646324, 0.03042772226035595, -0.0962720662355423, 0.027254514396190643,
- 0.021313751116394997, -0.02549932152032852, 0.06739062070846558, -0.09839340299367905,
- -0.03219795972108841, -0.21097341179847717, -0.04332840070128441, -0.11504831910133362,
- 0.07683926820755005, -0.0956781655550003, -0.052082888782024384, 0.04591694101691246,
- 0.018685217946767807, 0.04673387110233307, 0.06314438581466675, 0.006873808801174164,
- -0.03911513835191727, 0.02718203514814377, -0.0382583811879158, -0.04364645481109619,
- -0.0026626409962773323, 0.15690284967422485, -0.10076545178890228,
- -0.007676070090383291, 0.08128350973129272, -0.1104673519730568, 0.37468647956848145,
- 0.028129849582910538, -0.020314814522862434, -0.023247458040714264, 0.08624397218227386,
- 0.04614584147930145, 0.047876425087451935, 0.025690604001283646, -0.02531338669359684,
- 0.05314728617668152, -0.041159119457006454, 0.0022470401600003242, 0.06911106407642365,
- 0.06015149876475334, -0.028157159686088562, 0.023391753435134888, -0.004467526916414499,
- -0.030248474329710007, -0.005439732689410448, -0.019324684515595436,
- 0.12136194109916687, 0.05323079600930214, -0.02766229584813118, 0.03451666235923767,
- 0.06111174821853638, -0.053552087396383286, 0.02912454679608345, -0.020198317244648933,
- 0.00771071994677186, -0.06201867759227753, 0.04342038184404373, -0.0016334280371665955,
- -0.0041884141974151134, -0.0748988687992096, -0.004934706725180149, 0.0539073646068573,
- 0.09686382114887238, 0.021795587614178658, 0.01030811108648777, 0.058824583888053894,
- 0.04304219409823418, -0.020219814032316208, -0.024218829348683357, -0.03810081630945206,
- -0.04709356278181076, -0.01111759152263403, -0.010590709745883942, 0.07213369011878967,
- -0.07121999561786652, -0.15406370162963867, -0.0019505745731294155, 0.08437925577163696,
- -0.034067247062921524, -0.027162158861756325, 0.005923349875956774, -0.0373249277472496,
- 0.05342726781964302, -0.0015647895634174347, 0.02782924473285675, 0.036544252187013626,
- -0.018883656710386276, 0.043450385332107544, 0.07933082431554794, 0.02215120941400528,
- -0.06615237146615982, -0.05328712612390518, 0.01107263658195734, -0.03681759908795357,
- 0.11160331964492798, -0.14623621106147766, -0.05863873288035393, -0.0011486760340631008,
- -0.026225773617625237, 0.693433403968811, 0.10431846976280212, 0.1524680107831955,
- -0.007942231371998787, -0.009603388607501984, 0.133224755525589, 0.006468037609010935,
- 0.03376505523920059, -0.04417915269732475, -0.06530742347240448, 0.03934606537222862,
- -0.0555347204208374, -0.04624816030263901, 0.03871068358421326, 0.00832696259021759,
- 0.11396345496177673, 0.013391798362135887, 0.06349481642246246, -0.0039745112881064415,
- -0.11319466680288315, -0.031357619911432266, 0.059345342218875885, 0.025525927543640137,
- -0.15738487243652344, -0.005459540523588657, 0.040525708347558975, 0.07158059626817703,
- -0.11547645926475525, 0.016218801960349083, -0.06838785856962204, 0.02512328326702118,
- -0.006052663549780846, 0.04573502019047737, -0.010036070831120014, 0.02951078861951828,
- 0.051829710602760315, 0.022945016622543335, 0.013035323470830917, -0.06712321937084198,
- 0.0092026861384511, 0.0526592917740345, -0.012416757643222809, -0.0322604775428772,
- 0.06995426118373871, -0.09388695657253265, 0.04100622236728668, 0.014272570610046387,
- 0.16841694712638855, -0.118368960916996, 0.05407566577196121, -0.01620066724717617,
- 0.0022225643042474985, 0.041962847113609314, 0.003896994749084115, -0.06456144899129868,
- -0.05468558520078659, 0.09860160946846008, 0.0327753946185112, 0.0845634788274765,
- 0.031295664608478546, -0.015179194509983063, 0.04422524571418762, 0.06608986854553223,
- 0.0003671522135846317, -0.03706797957420349, 0.04828199744224548, 0.036542996764183044,
- -0.04040830209851265, 0.00013200542889535427, 0.00029170699417591095,
- -0.010331040248274803, 0.02674868330359459, -0.024543747305870056, 0.014766069129109383,
- -0.018168967217206955, -0.06495247781276703, 0.029353642836213112, 0.03217260539531708,
- 0.03235623985528946, 0.08535543084144592, -0.08633620291948318, -0.03882746398448944,
- -0.021438781172037125, -0.04712304845452309, 0.04220931977033615, -0.05389425531029701,
- 0.09061816334724426, 0.1122780293226242, 0.07564251124858856, 0.02153751440346241,
- 0.06286277621984482, 0.04512986168265343, 0.021505489945411682, 0.02539856731891632,
- 0.07656414806842804, -0.02926347777247429, -0.022173400968313217, 0.0034249904565513134,
- -0.01875421218574047, 0.04095751792192459, -0.021245311945676804, -0.03959555923938751,
- -0.04335121437907219, -0.02391880378127098, -0.050615765154361725, -0.04598727822303772,
- -0.03665071725845337, 0.04600633680820465, 0.014453073963522911, -0.08629900217056274,
- -0.10972097516059875, -0.08444888889789581, 0.00014117429964244366, 0.10382750630378723,
- -0.02114316076040268, -0.016732096672058105, -0.13369879126548767,
- -0.018451591953635216, 0.00405201967805624, 0.04976474493741989, -0.005633538588881493,
- 0.026034317910671234, 0.05916173383593559, -0.05776968598365784, 0.036117903888225555,
- -0.0077351792715489864, -0.007339947856962681, -0.023906854912638664,
- -0.04419219493865967, -0.05523204803466797, 0.02745445817708969, 0.029552293941378593,
- -0.014820805750787258, 0.03130581974983215, 0.04520505666732788, 0.06684824824333191,
- -0.0010812233667820692, -0.04240509495139122, 0.06439385563135147,
- -0.022063635289669037, -0.0342712476849556, 0.07385247945785522, -0.014491566456854343,
- 0.025937184691429138, -0.019785158336162567, -0.08620074391365051, -0.06545323133468628,
- -0.022174816578626633, -0.07138263434171677, 0.04099109023809433, 0.0035937612410634756,
- 0.017491713166236877, -0.04478256404399872, -0.005429349839687347, 0.02618074044585228,
- -0.0509808175265789, -0.09218296408653259, -0.06899834424257278, 0.09503304958343506,
- 0.02126026153564453, -0.0029596195090562105, 0.013043832033872604, -0.071039117872715,
- 0.0637272521853447, 0.0035586520098149776, -0.008031155914068222, 0.02798377349972725,
- 0.050922833383083344, 0.025082454085350037, 0.01538668479770422, 0.07945608347654343,
- -0.020248744636774063, 0.06385206431150436, 0.05207083374261856, 0.4526447355747223,
- -0.1614430546760559, 0.12368404120206833, 0.06708011031150818, 0.025424379855394363,
- 0.018980614840984344, -0.08012829720973969, 0.05720478668808937, 0.094744473695755,
- 0.12337902188301086, 0.110715851187706, -0.08021640032529831, -0.013229142874479294,
- -0.08518090099096298, 0.09162096679210663, 0.049822546541690826, -0.022119102999567986,
- -0.014848732389509678, -0.06939844787120819, -0.008439024910330772, 0.04043303430080414,
- -0.051648933440446854, 0.012753184884786606, 0.04577534645795822, -0.0641283243894577,
- 0.011686721816658974, -0.0190880186855793, 0.026399951428174973, -0.013950269669294357,
- 0.03496033325791359, -0.0002643438056111336, 0.06407075375318527, 0.02776617556810379,
- 0.05242595821619034, -0.1206093356013298, 0.04010982811450958, -0.07390721142292023,
- -0.05349040776491165, 0.06164377182722092, -0.04032447189092636, 0.01333569549024105,
- 0.05998075008392334, 0.006771169602870941, 0.002492023166269064, -0.008058671839535236,
- -0.04622981697320938, 0.023349251598119736, 0.08231674134731293, 0.027516087517142296,
- 0.05669979378581047, 0.17387457191944122, -0.02255142107605934, -0.03477523848414421,
- -0.08262307196855545, 0.064368337392807, 0.10700277984142303, 0.008303310722112656,
- 0.004534609615802765, 0.020080365240573883, -0.046464622020721436, 0.00592712452635169,
- -0.039562616497278214, -0.08954252302646637, -0.03915591537952423, -0.10276754200458527,
- 0.0660773366689682, 0.021319951862096786, -0.052996523678302765, -0.1580265462398529,
- -0.06392565369606018, -0.05141422152519226, 0.011774547398090363, 0.1283082664012909,
- -0.054938413202762604, 0.07293912023305893, -0.011222491040825844, 0.000589477363973856,
- 0.021681781858205795, -0.07206887006759644, 0.010870581492781639, -0.027681756764650345,
- 0.05073981732130051, 0.04648950695991516, 0.033278316259384155, -0.03737343102693558,
- 0.07556141912937164, -0.08948153257369995, 0.07058587670326233, 0.022038010880351067,
- -0.02895447611808777, 0.05092374235391617, -0.004090854432433844, 0.004161668475717306,
- 0.024064388126134872, -0.07626131176948547, 0.012794498354196548, -0.022511262446641922,
- -0.028740227222442627, -0.09345130622386932, -0.03210658207535744,
- -0.027040109038352966, -0.06667868047952652, 0.019410371780395508, -0.09228108823299408,
- -0.012838706374168396, -0.02453170344233513, -0.053165897727012634,
- 0.012275292538106441, 0.05348468944430351, 0.009896034374833107, -0.16505250334739685,
- 0.016121739521622658, -0.0004142231773585081, 0.07701537758111954,
- 0.0017902031540870667, -0.015931155532598495, 0.03189831227064133, 0.12692426145076752,
- 0.05855754017829895, -0.026123758405447006, -0.024721138179302216, -0.07102334499359131,
- 0.05049387365579605, -0.08538707345724106, -0.46551191806793213, 0.059790465980768204,
- 0.012429509311914444, 0.035544127225875854, 0.016150793060660362, -0.04470172896981239,
- 0.020045015960931778, -0.02823622338473797, -0.03993551433086395, 0.07121092081069946,
- -0.053576596081256866, 0.013686053454875946, -0.031991854310035706,
- -0.03365340828895569, -0.041541557759046555, -0.030461400747299194,
- -0.011653554625809193, 0.04560789093375206, -0.017097167670726776, -0.068992018699646,
- -0.07736310362815857, 0.021444156765937805, -0.014506908133625984, 0.01753566600382328,
- 0.0060605499893426895, 0.0031286675948649645, -0.03689198940992355,
- -0.057148441672325134, 0.05567624419927597, 0.04294867068529129, 0.047509290277957916,
- -0.095972940325737, 0.008152537979185581, 0.06206182390451431, -0.04175746440887451,
- 0.10970726609230042, 0.031417641788721085, 0.019876541569828987, -0.05855889618396759,
- 0.0902053564786911, 0.06985394656658173, 0.18938609957695007, 0.029788095504045486,
- -0.0058827996253967285, 0.00685602892190218, 0.13746756315231323, 0.043810971081256866,
- 0.003174450248479843, -0.010555427521467209, 0.028302649036049843, 0.03346794843673706,
- -0.0017217283602803946, 0.09724428504705429, -0.06060259789228439,
- -0.0062311249785125256, -0.017503488808870316, -0.031668588519096375,
- -0.03391026332974434, -0.016579294577240944, 0.18994730710983276, 0.012789785861968994,
- 0.05884532630443573, 0.03443070873618126, -0.04163138568401337, 0.003451400902122259,
- -0.07384806871414185, -0.10672646015882492, -0.00468460563570261, 0.0021322655957192183,
- 0.021444160491228104, -0.040449172258377075, -0.09260883927345276,
- -0.016987770795822144, 0.025769786909222603, -0.026896929368376732, 0.11519299447536469,
- -0.04096793755888939, 0.021251382306218147, -0.02523864433169365, 0.12661215662956238,
- 0.05737340450286865, 0.03466150909662247, 0.055825263261795044, 0.061051145195961,
- 0.019140029326081276, 0.02892736718058586, -0.04223255813121796, -0.06693859398365021,
- -0.026877757161855698, 0.12217751145362854, -0.038066115230321884, 0.12460602074861526,
- 0.03463172912597656, -0.05416949838399887, -0.05356474220752716, 0.04966767504811287,
- -0.01195870153605938, 0.024432703852653503, -0.4451846480369568, -0.06266023218631744,
- 0.1250583827495575, 0.03813403099775314, 0.023082930594682693, 0.06380322575569153,
- -0.01243776734918356, -0.059953369200229645, 0.008643437176942825, -0.11049623042345047,
- 0.11253469437360764, 0.00871636625379324, 0.08130823075771332, -0.054663680493831635,
- 0.01458129845559597, 0.07422652840614319, -0.024572744965553284, -0.000883441127371043,
- 0.0758313536643982, -0.2523180842399597, -0.010849429294466972, -0.056479569524526596,
- 0.13489046692848206, 0.04044464975595474, 0.04283934086561203, 0.09162117540836334,
- -0.004761621356010437, 0.03135160356760025, 0.032998256385326385, -0.024990450590848923,
- 0.06144093722105026, -0.009155994281172752, -0.03401120752096176, 0.07369577139616013,
- 0.10638368129730225, 0.09908591210842133, -0.042869340628385544, 11.770326614379883,
- 0.04587942361831665, 0.08736937493085861, -0.087499238550663, -0.011441565118730068,
- -0.04352974891662598, 0.00759891839697957, -0.08276456594467163, 0.09646348655223846,
- 0.13825532793998718, -0.002002425491809845, -0.03591936454176903, -0.02843838930130005,
- -0.08209774643182755, 0.030392052605748177, -0.06692066788673401, -0.07000239193439484,
- -0.014079425483942032, 0.025223877280950546, -0.02888568863272667,
- -0.057291872799396515, 0.06585608422756195, 0.06100104749202728, 0.02173055149614811,
- -0.06779278814792633, -0.010548976249992847, 0.0007507395930588245,
- -0.031058968976140022, -0.022146478295326233, 0.023534568026661873,
- -0.004204454366117716, 0.01910323090851307, 0.07628495991230011, -0.03018738329410553,
- 0.030134130269289017, 0.047100190073251724, 0.10326272249221802, 0.04589293897151947,
- 0.03407423943281174, 0.0944218635559082, 0.029386652633547783, 0.04266230762004852,
- 0.01825297251343727, 0.04338739812374115, 0.06054159998893738, 0.07312271744012833,
- 0.020663000643253326, 0.12226322293281555, 0.053469911217689514, 0.05564001202583313,
- 0.10898253321647644, -0.005334355402737856, 0.1247568428516388, -0.0022977807093411684,
- 0.0037265876308083534, 0.02443242073059082, -0.010004328563809395, -0.06701213866472244,
- 0.05687510967254639, -0.01601351425051689, -0.055941391736269, 0.12573949992656708,
- 0.05544338375329971, 0.07803450524806976, -0.022057047113776207, 0.09845300763845444,
- 0.05598516762256622, 0.055557869374752045, -0.09774035960435867, -0.08461886644363403,
- 0.004964593332260847, -0.07988346368074417, -0.06335762143135071, 0.09029626846313477,
- 0.10242018103599548, -0.021867932751774788, 0.05485978722572327, -0.009430238977074623,
- 0.026053279638290405, -0.004642955493181944, 0.009944136254489422, 0.07728087902069092,
- -0.03533117473125458, 0.01593196950852871, 0.06024178862571716, 0.03626939654350281,
- 0.0737803503870964, 0.114320769906044, -0.013705654069781303, -0.05759676173329353,
- -0.05342335253953934, 0.06838835775852203, 0.00008174125105142593,
- -0.049834948033094406, -0.0029537626542150974, -0.060833223164081573,
- 0.030480649322271347, -0.1625353991985321, 0.09978483617305756, 0.11146825551986694,
- -0.13189372420310974, -0.03616400063037872, -0.039398133754730225, 0.02448037452995777,
- 0.03157084807753563, 0.0019727242179214954, -0.08717553317546844, 0.015220750123262405,
- 0.005955525673925877, 0.02966202422976494, -0.02644333988428116, 0.0802217572927475,
- 0.10275446623563766, -0.0503370463848114, 0.03686860203742981, 0.053022537380456924,
- -0.05176394432783127, -0.024262288585305214, 0.0566866397857666, 0.02143930457532406,
- -0.0525309182703495, -0.0537298247218132, -0.02996932342648506, -0.047234680503606796,
- -0.010949796997010708, -0.05634669214487076, 0.038099516183137894,
- -0.0023025628179311752, -0.06286101043224335, -0.02002551779150963, 0.03200894221663475,
- 0.07862336933612823, 0.030386170372366905, 0.03962124139070511, 0.08155179023742676,
- -0.024529218673706055, -0.05535200983285904, 0.03458928316831589, 0.05626118183135986,
- 0.08230827748775482, -0.05168330669403076, -0.021818364039063454, -0.05821699649095535,
- -0.13656875491142273, 0.002402073238044977, 0.054803892970085144,
- -0.0027384632267057896, 0.03232639282941818, 0.010749170556664467, -0.09548071026802063,
- -0.01337533351033926, 0.08949995785951614, 0.010980797931551933, -0.029533447697758675,
- 0.046219728887081146, -0.04292280972003937, -0.030363190919160843, 0.1204116940498352,
- -0.01893545687198639, 0.023828968405723572, 0.033609356731176376, -0.04156680032610893,
- 0.03776673600077629, 0.0872228741645813, 0.03995190188288689, 0.01583980955183506,
- 0.04438440874218941, 0.008348139002919197, 0.051420122385025024, -0.014226913452148438,
- 0.05961745232343674, -0.046324703842401505, -0.08554551005363464, -0.06397830694913864,
- -0.008657991886138916, 0.11191222816705704, 0.02385590225458145, -0.09076714515686035,
- -0.02610326185822487, -0.034223586320877075
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 135,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 103,
- "similarity": 0.9979864358901978
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 6,
- "similarity": 0.9979658126831055
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 37,
- "similarity": 0.9978728294372559
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Katyanna Quach"],
- "epoch_date_downloaded": 1660089600,
- "epoch_date_modified": 1660089600,
- "epoch_date_submitted": 1660089600,
- "flag": null,
- "report_number": 1871,
- "source_domain": "theregister.com",
- "submitters": ["Ingrid Dickinson (CSET)"],
- "title": "Uni revealed it killed off its PhD-applicant screening AI – just as its inventors gave a lecture about the tech",
- "url": "https://www.theregister.com/AMP/2020/12/08/texas_compsci_phd_ai/"
- },
- {
- "__typename": "Report",
- "authors": ["Lilah Burke"],
- "epoch_date_downloaded": 1635120000,
- "epoch_date_modified": 1635120000,
- "epoch_date_submitted": 1635120000,
- "flag": null,
- "report_number": 1470,
- "source_domain": "insidehighered.com",
- "submitters": ["Patrick Hall (BNH.ai)"],
- "title": "The Death and Life of an Admissions Algorithm",
- "url": "https://www.insidehighered.com/admissions/article/2020/12/14/u-texas-will-stop-using-controversial-algorithm-evaluate-phd"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "brand-safety-tech-firms",
- "name": "brand safety tech firms"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "none",
- "name": "none"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "news-sites",
- "name": "news sites"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1471],
- "vector": [
- -0.02975844219326973, 0.0905156135559082, -0.0006849128403700888, -0.11395977437496185,
- 0.06952739506959915, -0.018471483141183853, 0.006669831927865744, 0.04674464464187622,
- 0.059216540306806564, -0.15942448377609253, 0.03324400633573532, 0.05245548114180565,
- 0.010737985372543335, -0.13780036568641663, 0.022020796313881874, -0.13773567974567413,
- -0.12062288820743561, 0.03516598790884018, -0.030289432033896446, -0.10444894433021545,
- -0.06169866397976875, 0.055131375789642334, -0.021956441923975945, 0.1581660807132721,
- -0.0028742181602865458, 0.013616221956908703, 0.09413986653089523, 0.11169514805078506,
- -0.09184106439352036, 0.007775517646223307, -0.01226526964455843, -0.06875865906476974,
- 0.10807561129331589, 0.03793494030833244, 0.013512915931642056, 0.0929064005613327,
- 0.03561048582196236, -0.05756182596087456, -0.042051125317811966, -0.02331770397722721,
- 0.08870097994804382, 0.24784530699253082, -0.05479234829545021, 0.0078072138130664825,
- 0.04616643115878105, -0.03600776195526123, 0.0033895939122885466, 0.008921785280108452,
- -0.016213707625865936, -0.019689127802848816, -0.027353841811418533,
- 0.013243675231933594, -0.06607957184314728, 0.03208775073289871, -0.07389167696237564,
- 0.07999054342508316, 0.04199530929327011, -0.035710759460926056, 0.005231281276792288,
- -0.06381527334451675, -0.011518184095621109, -0.2338191121816635, -0.03740299493074417,
- -0.07485394179821014, 0.10679933428764343, -0.077278271317482, -0.03561679646372795,
- -0.0005307348910719156, -0.002092986600473523, 0.06362934410572052, 0.06627372652292252,
- -0.01768677867949009, -0.01412261463701725, 0.053333867341279984, -0.016363579779863358,
- -0.03707443177700043, -0.02853008359670639, 0.21053491532802582, -0.11629818379878998,
- 0.01725514978170395, 0.09405877441167831, -0.09350379556417465, 0.39961564540863037,
- 0.0007641491829417646, -0.016020819544792175, 0.03216100111603737, 0.11201900243759155,
- 0.020032374188303947, 0.03944869339466095, -0.004357377998530865, -0.011711880564689636,
- 0.0827852264046669, -0.06355700641870499, -0.04162256047129631, 0.03476220369338989,
- -0.010309296660125256, -0.012521525844931602, -0.05496905371546745,
- -0.030567819252610207, -0.08345625549554825, 0.010761398822069168, 0.000419902935391292,
- 0.09978706389665604, 0.1372566521167755, -0.013907751999795437, 0.044089775532484055,
- 0.06376644223928452, -0.07053864747285843, 0.050628479570150375, -0.07600640505552292,
- 0.05194804072380066, -0.013395349495112896, 0.07655683904886246, 0.03866366669535637,
- 0.05567746236920357, -0.0362929031252861, 0.029851034283638, 0.03107142634689808,
- 0.03956795483827591, 0.04983513429760933, 0.007411411963403225, 0.06586896628141403,
- 0.09034297615289688, -0.09435203671455383, -0.055455442517995834, -0.04474739357829094,
- -0.024789534509181976, -0.028178304433822632, -0.012753329239785671,
- 0.023739075288176537, -0.044720474630594254, -0.22448796033859253, 0.05057897791266441,
- 0.07117924839258194, -0.005035551730543375, -0.005645452998578548, 0.06274135410785675,
- -0.07158078998327255, 0.03378858044743538, 0.0008073712233453989, -0.027315765619277954,
- 0.08027736097574234, -0.0065958756022155285, 0.028737297281622887, 0.07968512922525406,
- 0.07224339991807938, -0.04405071958899498, -0.060705266892910004, 0.015353244729340076,
- -0.047301266342401505, 0.15854856371879578, -0.11869759112596512, -0.024330521002411842,
- -0.03845750167965889, -0.01443477999418974, 0.6610561609268188, 0.09923533350229263,
- 0.21522842347621918, 0.01773231290280819, -0.030160216614603996, 0.18425853550434113,
- -0.007419223431497812, 0.050883736461400986, -0.07015923410654068,
- -0.045057930052280426, 0.015451258048415184, -0.05147051438689232, -0.05605292692780495,
- 0.012944024987518787, 0.005298525094985962, 0.0544498972594738, 0.11039113253355026,
- 0.08213339000940323, -0.012665136717259884, -0.13078860938549042, -0.009096686728298664,
- 0.05457133799791336, 0.021927842870354652, -0.13266706466674805, 0.0009103284683078527,
- 0.07424793392419815, 0.09392194449901581, -0.07679247856140137, 0.002209931146353483,
- -0.025323525071144104, 0.08825212717056274, -0.024063965305685997, 0.1024022176861763,
- -0.012581049464643002, 0.054467324167490005, -0.003095572581514716,
- -0.01696142926812172, 0.03972902521491051, -0.07919051498174667, -0.05466437339782715,
- 0.11896064132452011, -0.031142840161919594, -0.018561219796538353, 0.05228164419531822,
- -0.15081484615802765, 0.02660832740366459, 0.04436139389872551, 0.17651623487472534,
- -0.1497867852449417, 0.029649831354618073, -0.003992786630988121, -0.05426467955112457,
- 0.02570917271077633, -0.006099418271332979, 0.025649365037679672, -0.0347231850028038,
- 0.06524521112442017, 0.02986118569970131, 0.053869735449552536, 0.048686880618333817,
- -0.038689009845256805, 0.011012688279151917, 0.140287846326828, -0.01604297012090683,
- 0.0014542401768267155, 0.055588167160749435, 0.011001477017998695,
- -0.026512563228607178, -0.03763264790177345, 0.06917468458414078, 0.019505010917782784,
- -0.005822318606078625, 0.03565044328570366, 0.030511656776070595, 0.003506286535412073,
- -0.06917999684810638, 0.049442362040281296, 0.030574198812246323, 0.037482161074876785,
- 0.07707750797271729, -0.09399673342704773, -0.024841617792844772, -0.017663076519966125,
- -0.00840077642351389, 0.06602483987808228, -0.05279959738254547, 0.07701562345027924,
- 0.11869558691978455, 0.05687735229730606, 0.03451025113463402, 0.033296383917331696,
- 0.0528893806040287, 0.05406229943037033, -0.00611879164353013, 0.04271012917160988,
- -0.029952431097626686, -0.0685407966375351, -0.04463617876172066, 0.005291338544338942,
- 0.07528392970561981, 0.033984486013650894, -0.06771568953990936, -0.04523264989256859,
- -0.05652967840433121, -0.010002624243497849, -0.0820632353425026, -0.02770116738975048,
- 0.0017204736359417439, 0.07248877733945847, -0.044527214020490646, -0.07975620776414871,
- -0.08724509179592133, 0.002662358805537224, 0.0577952116727829, -0.00844624638557434,
- -0.018422504886984825, -0.10156389325857162, 0.03271930292248726, -0.04451863840222359,
- 0.07004489004611969, -0.011448659934103489, 0.024415122345089912, -0.013405158184468746,
- -0.01344756968319416, 0.03822455555200577, 0.009798155166208744, -0.05680009722709656,
- -0.09645705670118332, -0.0822252705693245, -0.011914835311472416, -0.032481804490089417,
- 0.00671821553260088, -0.033084042370319366, 0.014575709588825703, 0.03124336153268814,
- 0.028843503445386887, 0.013840234838426113, -0.03519188612699509, 0.05117291957139969,
- -0.0012489965884014964, 0.00975600816309452, 0.08253811299800873, -0.06004291772842407,
- 0.01043974794447422, -0.012350909411907196, -0.027518874034285545,
- -0.058383580297231674, -0.02355819381773472, -0.04721587151288986, 0.021497691050171852,
- -0.007666719611734152, -0.018008217215538025, -0.02036123536527157,
- -0.06194528937339783, 0.04393136873841286, -0.058241602033376694, -0.09823485463857651,
- 0.0100021967664361, 0.09744846820831299, -0.00849984772503376, 0.038096848875284195,
- 0.06032688170671463, -0.05250973626971245, 0.04658907651901245, 0.005740309599786997,
- 0.045984987169504166, 0.03210343047976494, 0.0821627601981163, -0.03370672091841698,
- 0.05027656629681587, 0.11705367267131805, 0.00036528758937492967, -0.03706640750169754,
- 0.044297926127910614, 0.44540971517562866, -0.2787698209285736, 0.07940664142370224,
- 0.04411877691745758, -0.04304908961057663, 0.036967113614082336, -0.07761452347040176,
- 0.06426050513982773, 0.11046045273542404, 0.07676692306995392, 0.0805872231721878,
- -0.06873313337564468, 0.06608638912439346, -0.07829133421182632, 0.10067732632160187,
- -0.03694817051291466, 0.04095735773444176, -0.052909720689058304, -0.0615679994225502,
- -0.03787882998585701, 0.09136401116847992, 0.006973802112042904, 0.03446592763066292,
- -0.006118823774158955, -0.028318488970398903, 0.08607989549636841,
- -0.012358480133116245, 0.04156209155917168, -0.026281926780939102, 0.022701581940054893,
- -0.042376559227705, 0.005665740929543972, 0.016692044213414192, 0.05411624163389206,
- -0.09716297686100006, 0.048544399440288544, -0.05621503293514252, -0.1354377418756485,
- 0.06838513165712357, -0.021136533468961716, 0.035817794501781464, 0.035735320299863815,
- -0.05708063393831253, 0.042999267578125, 0.05049452185630798, -0.020240824669599533,
- 0.010034100152552128, 0.08678419888019562, -0.00045706075616180897, 0.06156672164797783,
- 0.1697717010974884, -0.02100290171802044, -0.02444326877593994, -0.11960211396217346,
- 0.07301788032054901, 0.18015876412391663, -0.011216389946639538, 0.03466947749257088,
- -0.010496383532881737, 0.031369298696517944, 0.03732031583786011, -0.014921261928975582,
- -0.06362025439739227, -0.02147841826081276, -0.03436076268553734, 0.09836579859256744,
- 0.016385022550821304, -0.04167471081018448, -0.059816308319568634, 0.05941973254084587,
- -0.049299344420433044, -0.003564715152606368, 0.11736824363470078, -0.06786783784627914,
- 0.09660030156373978, -0.03918192908167839, 0.02741095796227455, 0.020371513441205025,
- -0.04169755056500435, -0.013095536269247532, -0.08824038505554199, 0.01035512425005436,
- 0.05018753185868263, 0.02581385336816311, -0.0742301270365715, 0.0998263880610466,
- -0.11552826315164566, -0.00047998057561926544, -0.017387768253684044,
- -0.006578133907169104, 0.061303868889808655, -0.08059906214475632, 0.024965524673461914,
- 0.0332360677421093, -0.07296311855316162, 0.04622206464409828, -0.013772398233413696,
- -0.02270672097802162, -0.05324925482273102, -0.0915553867816925, -0.06360416114330292,
- -0.09913700819015503, 0.015045828185975552, -0.09612813591957092, 0.04816272109746933,
- -0.017368784174323082, -0.04396931082010269, 0.01030182745307684, 0.03485054522752762,
- -0.002918147249147296, -0.11638598889112473, 0.007439473178237677, 0.016596214845776558,
- 0.02457505837082863, 0.016871687024831772, -0.036661747843027115, -0.02147546410560608,
- 0.022666122764348984, 0.0026685469783842564, -0.03270642086863518, 0.04650068283081055,
- -0.10265298187732697, 0.027586432173848152, -0.11500009894371033, -0.3490128219127655,
- 0.03178802505135536, 0.017892325296998024, 0.044789791107177734, -0.02746773324906826,
- -0.0828695073723793, 0.062353432178497314, 0.009231854230165482, -0.03495161980390549,
- 0.05987507104873657, -0.04252112656831741, 0.030511919409036636, -0.08617184311151505,
- -0.05368361994624138, -0.006605013273656368, -0.07470899075269699, -0.02102944441139698,
- -0.01634902134537697, 0.013808228075504303, -0.059582460671663284, -0.06968695670366287,
- -0.0068723466247320175, -0.0186568945646286, 0.021357111632823944, 0.04336221143603325,
- 0.03006654605269432, -0.05234776809811592, -0.029179109260439873, 0.022062595933675766,
- 0.07701298594474792, 0.034092653542757034, -0.044482242316007614, 0.03886662796139717,
- 0.08588556945323944, 0.04686659947037697, 0.0915868729352951, -0.05290674418210983,
- 0.0011671660467982292, -0.11575094610452652, 0.08515924960374832, 0.058295972645282745,
- 0.1851896345615387, -0.020736558362841606, -0.006042109336704016, 0.029865408316254616,
- 0.11322496831417084, 0.036032408475875854, 0.03366594389081001, -0.0379704050719738,
- -0.0019086709944531322, 0.0306120403110981, -0.024447130039334297, 0.05938374996185303,
- -0.12262491136789322, -0.020184123888611794, -0.05698718503117561,
- -0.031102579087018967, -0.018603257834911346, 0.00790412724018097, 0.1873003989458084,
- 0.006363428197801113, 0.03340175375342369, 0.03696415200829506, -0.04753686115145683,
- 0.015199914574623108, -0.07001921534538269, -0.09657096862792969, -0.011578216217458248,
- 0.019798001274466515, 0.044415827840566635, 0.023684978485107422, -0.07213999330997467,
- -0.013377483002841473, -0.019519804045557976, 0.0036742938682436943,
- 0.09164045751094818, -0.07516533136367798, -0.022786971181631088, -0.07242602109909058,
- 0.12567339837551117, 0.016153782606124878, 0.010736415162682533, 0.024164607748389244,
- 0.1046280562877655, -0.0019028991227969527, 0.0041986312717199326,
- -0.008261079899966717, -0.03666794300079346, 0.002206208882853389, 0.13568434119224548,
- -0.049243539571762085, 0.1403810828924179, 0.03394931182265282, -0.049711182713508606,
- -0.05852771922945976, 0.02183106169104576, -0.015550035052001476, 0.021253691986203194,
- -0.42372989654541016, -0.03767697140574455, 0.11329130083322525, -0.010476715862751007,
- -0.015531986951828003, 0.05646620690822601, 0.06580445915460587, -0.03660709410905838,
- -0.09992051124572754, -0.12364298850297928, 0.10299532115459442, 0.013851442374289036,
- 0.0689743310213089, -0.0961136743426323, 0.047093652188777924, 0.08650718629360199,
- -0.04273638874292374, 0.020407607778906822, 0.06984768807888031, -0.18263112008571625,
- 0.014876125380396843, -0.016086416319012642, 0.11437714099884033, 0.03631679341197014,
- -0.009934096597135067, 0.13180571794509888, -0.05629294738173485, 0.03390777111053467,
- 0.05733790621161461, -0.02480344846844673, 0.047010600566864014, 0.014164900407195091,
- -0.018309658393263817, 0.12106216698884964, 0.13533470034599304, 0.031020576134324074,
- -0.0352727435529232, 12.05097484588623, 0.015509506687521935, 0.039201974868774414,
- -0.10595064610242844, 0.011521431617438793, -0.02475401759147644, 0.06243863329291344,
- -0.13383552432060242, -0.0018876977264881134, 0.07694018632173538, 0.014752326533198357,
- -0.0011677679140120745, -0.07318183779716492, -0.09683698415756226,
- 0.029655063524842262, -0.009468073025345802, -0.02172936126589775, -0.04090968146920204,
- 0.08922755718231201, -0.08653608709573746, -0.061031773686409, 0.05874059349298477,
- 0.060882847756147385, -0.0012178458273410797, -0.009180453605949879,
- -0.007108953315764666, 0.04100995510816574, -0.0500514879822731, 0.013981705531477928,
- 0.01449986919760704, -0.017187321558594704, 0.03044898808002472, 0.11867520958185196,
- -0.028127966448664665, 0.06145675852894783, 0.038940414786338806, 0.12825120985507965,
- 0.012872949242591858, 0.006316005252301693, 0.05845479667186737, -0.04764323681592941,
- 0.027219317853450775, 0.026361655443906784, 0.026029057800769806, 0.10565559566020966,
- 0.0275743268430233, 0.016082480549812317, 0.12784525752067566, 0.024340227246284485,
- 0.08141659200191498, 0.08559804409742355, -0.03155361860990524, 0.09726261347532272,
- 0.029326599091291428, 0.002966147381812334, 0.040513280779123306, -0.03657348453998566,
- -0.06348933279514313, 0.07815168052911758, -0.016067616641521454, -0.07964595407247543,
- 0.13020837306976318, 0.054514769464731216, 0.11237616091966629, 0.04920540004968643,
- 0.07486073672771454, 0.0777706727385521, 0.09211007505655289, -0.16675560176372528,
- -0.0713348314166069, 0.04411842301487923, -0.03911397233605385, -0.057703323662281036,
- 0.12677767872810364, 0.10679641366004944, -0.05627317354083061, 0.10467511415481567,
- 0.018279559910297394, 0.022304190322756767, -0.055496737360954285,
- -0.025723041966557503, 0.01593528501689434, -0.07005354017019272, 0.026342693716287613,
- 0.03546842560172081, 0.03072463721036911, 0.0655023604631424, 0.07761088013648987,
- -0.005883506033569574, -0.07468847930431366, -0.12557469308376312, 0.09080488234758377,
- -0.033795636147260666, -0.04416099190711975, -0.007081358227878809,
- -0.06579072028398514, 0.004228675272315741, -0.15328346192836761, 0.05288065969944,
- 0.05959031358361244, -0.07486485689878464, -0.033264197409152985, -0.0452500618994236,
- 0.1206706166267395, 0.016106372699141502, 0.029051583260297775, -0.09176162630319595,
- -0.007575538475066423, 0.014168234542012215, 0.06089320033788681, -0.06133114546537399,
- 0.06010742858052254, 0.07619676738977432, -0.05878937616944313, 0.06325870007276535,
- 0.05249062553048134, -0.03689729794859886, -0.029983460903167725, 0.07893902063369751,
- 0.05066654086112976, -0.10470248758792877, -0.03369254991412163, -0.05759521201252937,
- -0.02947576530277729, 0.0140377227216959, -0.04596135392785072, 0.0028809558134526014,
- 0.014634285122156143, -0.03767131268978119, -0.03523702546954155, 0.07248814404010773,
- 0.09107007086277008, 0.09967721253633499, -0.02556445077061653, 0.0442005917429924,
- -0.046626973897218704, -0.020727675408124924, 0.06273968517780304, 0.023554494604468346,
- 0.034470085054636, -0.08790214359760284, -0.051096487790346146, -0.06322988867759705,
- -0.12491593509912491, 0.04414831101894379, 0.03641963377594948, -0.010771314613521099,
- 0.06965813040733337, 0.015237107872962952, -0.0924881175160408, -0.04871965944766998,
- 0.05257352069020271, 0.050296951085329056, 0.024124199524521828, 0.05691537633538246,
- -0.0063295913860201836, -0.04677337408065796, 0.06298989057540894, -0.0530419759452343,
- 0.012392978183925152, 0.0341663584113121, -0.038014672696590424, 0.0717829093337059,
- 0.07302113622426987, 0.05514160916209221, 0.0318063460290432, 0.07196754962205887,
- 0.015126697719097137, -0.02504458837211132, -0.001150541822426021, 0.04687916487455368,
- -0.05729270726442337, -0.04804070666432381, -0.06255248188972473, 0.03141303360462189,
- 0.07038188725709915, 0.04991737753152847, -0.12780791521072388, -0.007018312346190214,
- -0.07988487929105759
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 136,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 213,
- "similarity": 0.9977574944496155
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 39,
- "similarity": 0.9976517558097839
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 15,
- "similarity": 0.997646689414978
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Augustine Fou"],
- "epoch_date_downloaded": 1635120000,
- "epoch_date_modified": 1635120000,
- "epoch_date_submitted": 1635120000,
- "flag": null,
- "report_number": 1471,
- "source_domain": "forbes.com",
- "submitters": ["Patrick Hall (BNH.ai)"],
- "title": "We’ve Known Brand Safety Tech Was Bad-Here’s How Badly It Defunds The News",
- "url": "https://www.forbes.com/sites/augustinefou/2020/12/06/weve-known-brand-safety-tech-was-bad-this-is-how-badly-it-defunds-the-news/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "israeli-tax-authority",
- "name": "Israeli Tax Authority"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "israeli-tax-authority",
- "name": "Israeli Tax Authority"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "moshe-har-shemesh",
- "name": "Moshe Har Shemesh"
- },
- {
- "__typename": "Entity",
- "entity_id": "israeli-people-having-tax-fines",
- "name": "Israeli people having tax fines"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1474],
- "vector": [
- -0.05508473142981529, 0.08938119560480118, 0.017693355679512024, -0.07792946696281433,
- 0.036038581281900406, -0.010843425989151001, -0.006941254250705242, 0.0844549909234047,
- 0.07481064647436142, -0.12755337357521057, 0.017495445907115936, 0.04251044616103172,
- 0.046657972037792206, -0.05700187385082245, 0.027621949091553688, -0.07473859935998917,
- -0.10537468641996384, -0.0781102254986763, -0.028206637129187584, -0.09237492084503174,
- -0.05868352949619293, 0.024632390588521957, 0.03231555595993996, 0.09030366688966751,
- -0.07838613539934158, 0.029664495959877968, 0.08614707738161087, 0.13768158853054047,
- -0.06902997940778732, 0.03644593060016632, -0.051409948617219925,
- -0.0078103733249008656, 0.10518740117549896, 0.03047371469438076, 0.003558703465387225,
- 0.057660363614559174, 0.03332497924566269, -0.04711322858929634, -0.04043563827872276,
- -0.011946093291044235, -0.012081529945135117, 0.19798699021339417, -0.01772116683423519,
- -0.02397126518189907, 0.031199079006910324, -0.024524295702576637, 0.048145994544029236,
- 0.059521086513996124, 0.020428050309419632, 0.0058815269730985165,
- -0.011006695218384266, 0.036223676055669785, -0.019210826605558395,
- 0.030518783256411552, -0.054509952664375305, 0.07618720084428787, 0.016221264377236366,
- 0.020070087164640427, 0.011973172426223755, -0.05114559829235077, -0.04337121918797493,
- -0.239006906747818, -0.04553457349538803, -0.05721954256296158, 0.03587096929550171,
- -0.0674344152212143, -0.008894538506865501, -0.009115227498114109,
- 0.0010267161997035146, 0.08172634989023209, 0.05474032089114189, -0.004965399391949177,
- 0.019759492948651314, -0.006959750782698393, 0.01873827911913395, -0.026336198672652245,
- 0.014880300499498844, 0.20494329929351807, -0.08672527968883514, -0.020792478695511818,
- 0.13448864221572876, -0.07791884988546371, 0.37426239252090454, 0.020540129393339157,
- 0.006507285870611668, 0.004336390178650618, 0.06560645252466202, 0.05164394900202751,
- 0.0524301752448082, 0.039990510791540146, -0.015188207849860191, -0.002672739326953888,
- -0.07329514622688293, -0.007146048359572887, 0.035323645919561386, 0.043795157223939896,
- -0.05804518237709999, 0.06706558912992477, 0.006668717600405216, -0.05087064951658249,
- 0.05507916957139969, -0.07934845238924026, 0.04479935020208359, 0.026948172599077225,
- -0.08339716494083405, -0.013185357674956322, 0.11790860444307327, -0.04356053099036217,
- 0.05325538292527199, -0.038229528814554214, 0.011530231684446335, 0.04480748623609543,
- 0.055737752467393875, 0.008410735987126827, 0.015074358321726322, -0.02010479010641575,
- 0.018304314464330673, -0.008078407496213913, 0.10204775631427765,
- 0.00015847447502892464, 0.014613141305744648, 0.03686371073126793, 0.04278196021914482,
- -0.023992115631699562, 0.005020149052143097, -0.040200553834438324,
- -0.015086420811712742, 0.017249515280127525, -0.02462019771337509, 0.10082735121250153,
- -0.027516381815075874, -0.1847546249628067, 0.005422891117632389, 0.12076003849506378,
- 0.038067616522312164, -0.03355482220649719, -0.03111828863620758, -0.06024281680583954,
- 0.03865143284201622, 0.05194029211997986, -0.03729819878935814, 0.08462859690189362,
- 0.028908275067806244, 0.03650487959384918, 0.12832120060920715, 0.008782525546848774,
- -0.043849457055330276, -0.037353795021772385, 0.04293167218565941,
- -0.032526180148124695, 0.08984829485416412, -0.12609781324863434, -0.03275693580508232,
- -0.0008886248688213527, 0.0376412533223629, 0.650833785533905, 0.09666439890861511,
- 0.07714717090129852, -0.009624730795621872, 0.007216149941086769, 0.14243929088115692,
- 0.008184867911040783, 0.053990259766578674, -0.04699581488966942, -0.0934554934501648,
- 0.033977605402469635, -0.09658139944076538, -0.03832872584462166, 0.04952101781964302,
- 0.03454798460006714, 0.11531728506088257, -0.00007892663415987045, 0.04426691308617592,
- -0.03069174289703369, -0.11728770285844803, -0.01203307043761015, 0.02784167230129242,
- -0.001327057252638042, -0.13076405227184296, -0.0267019122838974, 0.03217089921236038,
- 0.07588694989681244, -0.0734182670712471, -0.03424809128046036, -0.08501884341239929,
- -0.018131073564291, -0.04965704679489136, 0.0058651277795434, -0.014424852095544338,
- 0.008367098867893219, 0.05490991100668907, 0.04970904067158699, -0.019943924620747566,
- -0.15050633251667023, 0.027513477951288223, 0.0913236066699028, -0.004969344940036535,
- -0.01077834703028202, 0.08706867694854736, -0.06818404048681259, 0.04311104863882065,
- -0.05339032784104347, 0.11537525802850723, -0.14776256680488586, 0.023917917162179947,
- -0.005928830709308386, -0.024641644209623337, 0.11860480904579163,
- -0.030667807906866074, -0.09081478416919708, -0.041596584022045135, 0.03807222098112106,
- 0.04739508777856827, 0.05629958584904671, 0.05867058411240578, -0.049790408462285995,
- 0.07900800555944443, 0.09082930535078049, 0.021920425817370415, -0.027715332806110382,
- 0.04447956010699272, 0.05574071779847145, -0.019627315923571587, 0.0036628814414143562,
- -0.0004453841538634151, 0.016156863421201706, 0.0025060055777430534,
- 0.012975727207958698, 0.026534195989370346, -0.04635533317923546, -0.0501692071557045,
- -0.017360564321279526, 0.07451401650905609, -0.024988915771245956, 0.07924234867095947,
- -0.06573832780122757, -0.031777314841747284, -0.04646124690771103, -0.04917868971824646,
- -0.003426589770242572, -0.031403545290231705, 0.09140422195196152, 0.07872742414474487,
- 0.05972408130764961, 0.04652038589119911, 0.015516332350671291, 0.09004709124565125,
- -0.0035211024805903435, 0.019806906580924988, 0.0483730249106884, -0.01817268133163452,
- -0.019622525200247765, -0.020795632153749466, 0.014417161233723164, 0.02437603287398815,
- 0.0626862570643425, -0.04817894101142883, -0.05495723709464073, -0.024401960894465446,
- -0.006584814749658108, -0.04693859443068504, -0.0395338237285614, 0.022129008546471596,
- 0.049120284616947174, -0.057728350162506104, -0.11842840909957886, -0.05920948088169098,
- 0.018497740849852562, 0.03621748462319374, -0.06420257687568665, 0.0060811592265963554,
- -0.10259164124727249, -0.016062624752521515, -0.058367565274238586, 0.05048134922981262,
- -0.00371719291433692, 0.02036719024181366, 0.014682666398584843, -0.10447987169027328,
- 0.007648152764886618, -0.010125717148184776, -0.01211728248745203, -0.10775673389434814,
- -0.025231758132576942, -0.08687987923622131, 0.038804419338703156, 0.035845737904310226,
- -0.06273198127746582, 0.03888682648539543, 0.03367772698402405, 0.03618532791733742,
- 0.005057597532868385, -0.026612648740410805, 0.0807737410068512, -0.0514422208070755,
- 0.0042208340018987656, 0.08987020701169968, 0.0018636533059179783, 0.031092416495084763,
- -0.06323806941509247, -0.02910231240093708, -0.06476504355669022, -0.010723335668444633,
- -0.032183561474084854, 0.05344720557332039, -0.004306057468056679, 0.04410247877240181,
- -0.05239318683743477, -0.01978837326169014, 0.04088696464896202, -0.08585942536592484,
- -0.07352567464113235, -0.09905417263507843, 0.11015943437814713, 0.005964074749499559,
- 0.010518510825932026, -0.01447838544845581, -0.08619624376296997, 0.020031342282891273,
- -0.023160280659794807, -0.030048320069909096, 0.030026495456695557, 0.05541803315281868,
- -0.02907816506922245, 0.05741795152425766, 0.05463686212897301, 0.004427215084433556,
- 0.033125683665275574, 0.08525311201810837, 0.39890432357788086, -0.10237547010183334,
- 0.11306626349687576, 0.08688172698020935, 0.016297440975904465, 0.05605265498161316,
- -0.02736331708729267, 0.05744649097323418, 0.056707412004470825, 0.14714281260967255,
- 0.10739438235759735, -0.04373714700341225, -0.007939002476632595, -0.0951453447341919,
- 0.09149711579084396, -0.020715201273560524, -0.003501049242913723, 0.0194101445376873,
- -0.019866149872541428, -0.031620677560567856, 0.00434421980753541, -0.03866823762655258,
- -0.007998083718121052, 0.055061254650354385, -0.030872609466314316,
- 0.017882386222481728, 0.022363044321537018, 0.04954582825303078, -0.00781701598316431,
- 0.012718492187559605, -0.022111278027296066, 0.04685242474079132, 0.01736065372824669,
- 0.05554375424981117, -0.054780013859272, 0.07041895389556885, -0.14727237820625305,
- -0.045143190771341324, 0.10835868865251541, -0.011460009962320328, 0.04265419766306877,
- 0.060242507606744766, -0.00026784813962876797, 0.029203753918409348,
- -0.029282955452799797, -0.044282179325819016, 0.04237526282668114, 0.047010429203510284,
- -0.005565519444644451, 0.014778428710997105, 0.17109397053718567, -0.04329202324151993,
- -0.0581221766769886, -0.09325596690177917, 0.026569517329335213, 0.14168906211853027,
- 0.020599547773599625, 0.008734830655157566, 0.014397147111594677, 0.0109655587002635,
- -0.010960760526359081, -0.06449242681264877, -0.1139092966914177, 0.0040480163879692554,
- -0.02649383246898651, 0.09098104387521744, 0.06385774165391922, -0.016852058470249176,
- -0.07460528612136841, -0.03283720836043358, -0.0670151486992836, 0.021812666207551956,
- 0.13308213651180267, -0.04398488253355026, 0.026411328464746475, -0.01822364516556263,
- 0.02361060120165348, -0.02429255098104477, -0.11519932746887207, -0.0179733969271183,
- -0.04768785089254379, 0.03463929146528244, 0.09283988922834396, 0.057257991284132004,
- -0.04170088842511177, 0.06088612228631973, -0.0747683122754097, 0.08163873106241226,
- 0.06657926738262177, -0.04072142019867897, 0.046641625463962555, -0.04249013587832451,
- 0.021483400836586952, 0.06156059727072716, -0.019018160179257393, 0.015738442540168762,
- -0.025674697011709213, -0.0222835261374712, -0.13165995478630066, -0.053981125354766846,
- -0.04601091146469116, -0.047244906425476074, 0.041871245950460434, -0.0781707689166069,
- -0.03018852323293686, -0.0017432441236451268, 0.01235470362007618,
- -0.002488954458385706, 0.016623733565211296, 0.0561821386218071, -0.16792312264442444,
- -0.011067233979701996, -0.010294897481799126, 0.014534762129187584,
- 0.021295029670000076, -0.054624103009700775, 0.035683970898389816, 0.032847411930561066,
- 0.031177056953310966, 0.01614047773182392, 0.014255944639444351, -0.013778931461274624,
- 0.08347546309232712, -0.07160931825637817, -0.3913660943508148, 0.08287865668535233,
- -0.012100922875106335, 0.05834949016571045, 0.02842145599424839, -0.08670031279325485,
- 0.03545624390244484, 0.028872566297650337, -0.01948683150112629, 0.06917402893304825,
- -0.06401366740465164, 0.02619481459259987, -0.0015418340917676687, -0.04813629761338234,
- -0.013655140995979309, -0.005228754598647356, -0.06323562562465668, 0.07617512345314026,
- -0.05130505561828613, -0.07671760022640228, -0.14424754679203033, 0.012251007370650768,
- -0.00797523558139801, 0.0029526138678193092, 0.023783735930919647,
- -0.0021126463543623686, -0.04111702740192413, -0.028378743678331375,
- 0.04420621320605278, 0.0589379258453846, 0.0058242324739694595, -0.0719250738620758,
- -0.03115357644855976, 0.04358678683638573, -0.03452242538332939, 0.13463842868804932,
- 0.053048666566610336, -0.01919485628604889, -0.08541681617498398, 0.07784534990787506,
- 0.05694575980305672, 0.19102531671524048, 0.023937435820698738, 0.015552612952888012,
- 0.022319676354527473, 0.10431895405054092, 0.003875327529385686, 0.019207408651709557,
- -0.020263753831386566, 0.03571386635303497, -0.027823369950056076, 0.010517152026295662,
- 0.08474551141262054, -0.08486217260360718, -0.004985681734979153, -0.0617915615439415,
- -0.033323317766189575, -0.0286924559623003, -0.059588659554719925, 0.18395382165908813,
- 0.01634678989648819, 0.019317777827382088, 0.018226081505417824, -0.04395843669772148,
- -0.01972080208361149, -0.09189149737358093, -0.07506256550550461, -0.001987139228731394,
- -0.005470664240419865, 0.04870499670505524, -0.021791653707623482, -0.1365375816822052,
- -0.0015608133981004357, 0.029870102182030678, 0.00618954049423337, 0.087711863219738,
- -0.03454063832759857, 0.04507645219564438, -0.052759572863578796, 0.13881458342075348,
- 0.04226895794272423, 0.012776155956089497, 0.0581551119685173, 0.08508052676916122,
- 0.030392589047551155, -0.015844091773033142, -0.03406507149338722, -0.04672588035464287,
- 0.020124398171901703, 0.13075359165668488, -0.025196831673383713, 0.09380132704973221,
- 0.05492117255926132, -0.07508277148008347, -0.06752198189496994, 0.03987865895032883,
- -0.008823343552649021, 0.012470168061554432, -0.4352736175060272, -0.022937826812267303,
- 0.10736576467752457, -0.01830895058810711, 0.030872303992509842, 0.13508352637290955,
- -0.00857501570135355, -0.05726787820458412, 0.019071584567427635, -0.0784120261669159,
- 0.16828687489032745, -0.00948216114193201, 0.0761321485042572, -0.1070060208439827,
- 0.004333937540650368, 0.08040337264537811, -0.032975804060697556, -0.016914132982492447,
- 0.005709744989871979, -0.16788984835147858, 0.008777926675975323, -0.04320361837744713,
- 0.19718405604362488, 0.04003442823886871, 0.019815593957901, 0.07082659751176834,
- -0.04204237088561058, -0.011791860684752464, 0.08254361897706985, -0.012865416705608368,
- 0.06099219247698784, 0.029675714671611786, -0.04547524079680443, 0.09649550914764404,
- 0.06261837482452393, 0.0402585007250309, -0.057900041341781616, 11.680752754211426,
- 0.08294154703617096, 0.1124463751912117, -0.058330632746219635, 0.03940477967262268,
- -0.03619607165455818, 0.07169736921787262, -0.050796445459127426, 0.06484047323465347,
- 0.12702275812625885, -0.031756602227687836, -0.048462893813848495,
- -0.007679759990423918, -0.09595669060945511, 0.003707589115947485, -0.00956986378878355,
- 0.0029555538203567266, -0.03367060050368309, 0.02797924354672432, -0.037318531423807144,
- -0.006252642720937729, 0.00706743448972702, 0.07280269265174866, 0.005141701549291611,
- -0.08606132864952087, 0.032404832541942596, 0.005822871811687946, -0.0332239605486393,
- -0.05300409346818924, -0.00451427698135376, 0.010736562311649323, 0.008506493642926216,
- 0.07280299812555313, 0.016878006979823112, 0.055825576186180115, 0.03748323768377304,
- 0.06368378549814224, 0.018801981583237648, -0.005765445996075869, 0.07372807711362839,
- 0.07503565400838852, 0.05138378217816353, 0.023520037531852722, 0.05718391761183739,
- 0.04465116932988167, 0.008799624629318714, 0.0449901781976223, 0.08372668921947479,
- 0.03527471050620079, 0.07878845930099487, 0.08389409631490707, -0.0173664353787899,
- 0.08189359307289124, -0.014176626689732075, 0.014791644178330898, 0.050550974905490875,
- 0.04195186868309975, -0.04848729819059372, 0.04859842360019684, 0.05276661366224289,
- -0.04133349284529686, 0.08428782224655151, 0.03498801961541176, 0.09709133207798004,
- 0.01216505840420723, 0.07385342568159103, 0.0541856624186039, 0.05142086744308472,
- -0.15635162591934204, -0.054642803966999054, 0.011538402177393436, -0.10138294100761414,
- -0.04224265739321709, 0.05436329543590546, 0.03655271977186203, -0.043268486857414246,
- 0.07328015565872192, -0.04505437985062599, 0.022647688165307045, 0.021230429410934448,
- -0.0018355823121964931, 0.0263978261500597, -0.051328305155038834,
- -0.013911695219576359, 0.02133587747812271, 0.0315609872341156, 0.09091922640800476,
- 0.06888852268457413, -0.04609052091836929, -0.046647265553474426, -0.02066201902925968,
- 0.09604772180318832, -0.010327180847525597, -0.05048487335443497, -0.041565652936697006,
- -0.03488967940211296, -0.002684616483747959, -0.1310431957244873, 0.07323634624481201,
- 0.0821947529911995, -0.04139888286590576, 0.01628943160176277, -0.025765694677829742,
- 0.0724664106965065, -0.006046541966497898, -0.000457581045338884, -0.05411874130368233,
- 0.009846300818026066, 0.01790023408830166, 0.0342135950922966, -0.06829263269901276,
- 0.08881600946187973, 0.04595146328210831, -0.0460762120783329, 0.06997397541999817,
- 0.09491707384586334, -0.06225312873721123, 0.004910711199045181, 0.019871924072504044,
- 0.0013106090482324362, -0.12450927495956421, -0.045785076916217804,
- -0.027851689606904984, -0.047848377376794815, 0.009825920686125755, -0.0923299714922905,
- 0.013431585393846035, 0.02265670895576477, -0.04273013025522232, -0.0419234000146389,
- 0.03975190967321396, 0.055547382682561874, 0.05867207795381546, 0.02184806577861309,
- 0.05789177492260933, -0.06639517098665237, -0.059027429670095444, 0.019292665645480156,
- 0.02802269347012043, 0.08009660243988037, -0.014706007204949856, 0.016689836978912354,
- -0.030597111210227013, -0.11089380830526352, 0.0070932586677372456, 0.11594004184007645,
- 0.013515794649720192, 0.0733189582824707, -0.010976730845868587, -0.07527613639831543,
- -0.022376030683517456, 0.06074526533484459, -0.004612819757312536, 0.00847414880990982,
- 0.00893711019307375, -0.07881390303373337, -0.013843943364918232, 0.13348419964313507,
- -0.0296474639326334, -0.030072001740336418, -0.022305289283394814, 0.0093456469476223,
- 0.06762947887182236, 0.014682845212519169, 0.011915250681340694, -0.002732537453994155,
- 0.020730508491396904, 0.002446272876113653, 0.03397684916853905, 0.016291489824652672,
- -0.01173717062920332, -0.026688426733016968, -0.06977429986000061,
- -0.059408869594335556, 0.03243895247578621, 0.13232825696468353, 0.03710683807730675,
- -0.107760950922966, -0.01560386922210455, -0.02371305599808693
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 137,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 184,
- "similarity": 0.9979649782180786
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 45,
- "similarity": 0.9978052973747253
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 72,
- "similarity": 0.9977210164070129
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Ruti Levy"],
- "epoch_date_downloaded": 1635033600,
- "epoch_date_modified": 1635120000,
- "epoch_date_submitted": 1635120000,
- "flag": null,
- "report_number": 1474,
- "source_domain": "haaretz.com",
- "submitters": ["Patrick Hall (BNH.ai)"],
- "title": "When an Israeli Farmer Declared War on an Algorithm",
- "url": "https://www.haaretz.com/israel-news/tech-news/.premium-when-an-israeli-farmer-declared-war-on-an-algorithm-1.9440728"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "university-of-illinois",
- "name": "University of Illinois"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "proctorio",
- "name": "Proctorio"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "university-of-illinois-students-of-color",
- "name": "University of Illinois students of color"
- },
- {
- "__typename": "Entity",
- "entity_id": "university-of-illinois-students",
- "name": "University of Illinois students"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [2442, 2434, 1556, 1555, 1505, 1475],
- "vector": [
- -0.07131402567029, 0.0913778804242611, 0.0019996104723153016, -0.10217049966255824,
- 0.08055607105294864, -0.019882264857490856, 0.011651022243313491, 0.0594654333156844,
- 0.08500544726848602, -0.1428032455344995, 0.011420123899976412, 0.051189535607894264,
- 0.023432077063868444, -0.03841789128879706, 0.04012837881843249, -0.08456300649171074,
- -0.09243957201639812, -0.0464173451376458, -0.03155267145484686, -0.13436665013432503,
- -0.0627188328653574, 0.008589704559805492, -0.0018238639459013939, 0.08221207186579704,
- -0.0517805510511001, 0.036878128380825125, 0.07851437789698441, 0.1047827626268069,
- -0.028235105720038216, 0.03300635151875516, -0.04100472138573726, -0.06706086507377525,
- 0.10453142101565997, 0.01083912894440194, -0.017491949120691668, 0.11554400995373726,
- 0.03570766172682246, -0.036225980205927044, 0.0018404616663853328,
- 0.0027715025935322046, 0.029243800168236096, 0.24531110127766928, -0.018736924432838958,
- -0.042857397658129535, 0.017940206608424585, -0.05480364368607601,
- -0.006776233320124447, 0.05301111564040184, -0.0033829985186457634,
- 0.011355792599109312, 0.0008360619540326297, 0.026218883305167157,
- -0.033692778864254556, 0.03487958045055469, -0.12902741755048433, 0.07965620203564565,
- 0.04491186545540889, -0.005993037795027097, 0.033536300994455814, -0.09258426974217097,
- -0.06962900267293055, -0.2216450199484825, -0.02290616207756102, -0.09352519363164902,
- 0.10435886308550835, -0.09262779479225476, -0.0332505585004886, 0.03905330924317241,
- 0.019280209361265104, 0.05759967242678007, 0.07031964464113116, -0.013470086734741926,
- -0.04970709669093291, 0.022888747043907642, -0.025902977543106925, -0.02665796976846953,
- 0.0020520023826975375, 0.17222227652867636, -0.08007584884762764, 0.0014650259011735518,
- 0.09600263833999634, -0.10757950320839882, 0.43936912218729657, 0.025110763187209766,
- -0.011662952582507083, -0.03159133503504563, 0.07978595793247223, 0.029479208557556074,
- 0.03599858625481526, 0.029748015416165192, -0.03430858300998807, 0.021708562465695042,
- -0.04430028982460499, -0.017296008047802996, 0.0754761000474294, 0.03790397119397918,
- -0.029915370512753725, -0.02205024807093044, -0.022660032225151856,
- -0.07002096933623154, -0.017730056308209896, -0.05594453836480776, 0.10001715024312337,
- 0.10149815864861012, -0.04102562476570407, 0.027390867471694946, 0.05188225209712982,
- -0.06364597535381715, 0.04048912304763993, -0.050143664392332234, 0.013823909883891853,
- -0.0263998091686517, 0.06073387215534846, -0.018585825727010768, 0.024861645651981235,
- -0.028624318229655426, 0.008026198600418866, 0.056602466541031994, 0.08761561786135037,
- 0.034825005025292434, 0.001835538928086559, 0.05091195087879896, 0.06473653266827266,
- -0.06430736184120178, -0.04935428143168489, -0.0655324545999368, -0.06100422081847986,
- -0.014902476609374085, 0.012079650536179543, 0.02398444727684061, -0.0557217908402284,
- -0.19664904475212097, 0.012188098160549998, 0.07661294859523575, -0.011963384303574761,
- -0.043727174711724125, -0.0074007482423136635, -0.05133020970970392,
- 0.04239773222555717, -0.014102034930450221, -0.000013629595438639322,
- 0.028669378138147295, 0.00964316624837617, 0.057664322356383, 0.15557071939110756,
- 0.03305226191878319, -0.061851744229594864, -0.032248807760576405, 0.02148502552881837,
- -0.031977494332143884, 0.11228141809503238, -0.13765213762720427, -0.06570295989513397,
- -0.0007907013738683114, -0.05109279789030552, 0.7219602167606354, 0.12538669382532439,
- 0.19170295198758444, 0.033684030175209045, -0.004621942178346217, 0.15440911675492922,
- 0.004972456488758326, 0.05646862151722113, -0.07780427734057109, -0.07084739487618208,
- 0.018569700109461944, -0.08830748746792476, -0.04207791046549877,
- -0.00009128901486595471, 0.00524695993711551, 0.11928116778532664, 0.010412750455240408,
- 0.08342820902665456, -0.002940387620280186, -0.10344973082343738, -0.0595817604723076,
- 0.06717844243394211, 0.024378887998561066, -0.12642445539434752, -0.016857761307619512,
- 0.03843285205463568, 0.10376556466023128, -0.09920659288764, 0.010014758736360818,
- -0.03591834338840272, 0.022239875746890903, -0.004239649759256281, 0.040943590458482504,
- -0.022985350495825212, 0.03287504271914562, 0.04753415503849586, 0.03683272977165567,
- 0.01199575529123346, -0.1166738693912824, -0.0000015459954738616943, 0.0983365351955096,
- -0.04429343932618698, -0.02069418380657832, 0.0908719738945365, -0.09554670378565788,
- 0.033019350841641426, 0.024516824788103502, 0.1609643598397573, -0.14155517518520355,
- 0.01720956185211738, -0.02233301623103519, -0.027131435461342335, 0.052751068103437625,
- 0.005991240264847875, -0.06120569817721844, -0.03622123730989794, 0.08617219577232997,
- 0.037689271538207926, 0.06470993844171365, 0.04935437208041549, -0.033587687027951084,
- 0.04284449495996038, 0.07571807410567999, -0.006033726191769044, -0.02108586078005222,
- 0.0522485114634037, 0.04549980287750562, -0.049097055258850254, -0.028997381256582837,
- 0.04506526095792651, 0.04057351612330725, 0.04295210291941961, 0.010677011761193475,
- 0.05927537319560846, -0.004842807538807392, -0.06496858969330788, 0.032562473167975746,
- 0.029304582470407087, 0.026289356872439384, 0.11791682243347168, -0.0506431640436252,
- -0.03613273294953009, -0.02779017190914601, -0.04790355389316877, 0.059498440474271774,
- -0.03418926879142722, 0.0967039509365956, 0.0900700402756532, 0.07023938124378522,
- 0.013771718018688262, 0.06101438434173664, 0.059264826898773514, 0.01487493006667743,
- 0.020590455154888332, 0.06785671412944794, -0.030624128102014463, -0.04456656022618214,
- 0.002280418101387719, -0.0033508449948082366, 0.021640118133897584,
- 0.0018703057042633493, -0.0687157108138005, -0.007572141214041039,
- -0.025305422255769372, -0.046942613553255796, -0.07889113016426563,
- -0.010845802704958865, 0.03829245331386725, 0.04144704962770144, -0.039235656964592636,
- -0.08147925821443398, -0.0918186716735363, 0.008587453359117111, 0.09460524966319402,
- -0.014876600238494575, -0.00030892016366124153, -0.1243692214290301,
- -0.008063006913289428, -0.0031836150446906686, 0.07901806384325027,
- -0.02167822135379538, -0.0009197512796769539, 0.025962968977789085,
- -0.05685008813937505, 0.04251427172372738, -0.01607318001333624, -0.06940463515153776,
- -0.04803442535921931, -0.060043297708034515, -0.07419549984236558, -0.02365214831903965,
- -0.0059911202018459635, -0.016342366565368138, 0.01902935599597792, 0.05299918291469415,
- 0.053530713232855, -0.010280654105978707, -0.051004535829027496, 0.07816178972522418,
- -0.044057962484657764, -0.0001403305990000566, 0.07772485477228959,
- -0.05167955563714107, 0.04401359870098531, -0.02924162251292728, -0.05782304952541987,
- -0.05737008526921272, -0.009759689526011547, -0.05950278850893179, 0.029375177264834445,
- -0.004419903038069606, 0.006694671620304386, -0.0373714305460453, -0.019903540921707947,
- 0.06250867495934169, -0.06768194710214932, -0.09620357553164165, -0.07522236311342567,
- 0.11273270472884178, 0.014584511208037535, 0.00032567620898286503, 0.007071936017988871,
- -0.06707958442469437, 0.03809790468464295, 0.0006488615726993885, 0.012903291635060063,
- 0.02536792263466244, 0.0447785242771109, -0.01689880962173144, 0.008907590565892557,
- 0.06706418935209513, -0.015988368075340986, 0.03480508939052621, 0.09142035370071729,
- 0.4123126318057378, -0.1343577243387699, 0.11368526145815849, 0.07374727663894494,
- 0.02356115837271015, 0.015148134824509421, -0.062337634774545826, 0.05329369536290566,
- 0.09205914288759232, 0.14171515901883444, 0.13608578344186148, -0.0603836253285408,
- -0.0070134551885227365, -0.0881944199403127, 0.07637810086210568, 0.005684440373443067,
- -0.016574241841832798, -0.013529359207799038, -0.1017528163890044,
- -0.023327221007396776, 0.05932113962868849, -0.057527478163441025, 0.01620074299474557,
- 0.004805019008927047, -0.057428110390901566, 0.0338245282570521, -0.0016068566280106704,
- 0.04076187099174907, -0.022178163092272978, 0.013744857938339313, 0.02338956156745553,
- 0.043052152109642826, 0.018987569957971573, 0.018733816609407466, -0.11745502427220345,
- 0.017011343346287806, -0.0988770288725694, -0.07221108364562194, 0.09933411019543807,
- -0.026187349421282608, 0.05202502895068998, 0.057526155995825924, -0.03761811958005031,
- 0.04285996469358603, -0.009429647432019314, -0.07109376788139343, 0.01902732951566577,
- 0.06043626616398493, 0.011436985068333646, 0.06295085015396278, 0.17448284849524498,
- -0.0575577225536108, -0.024090992519631982, -0.0794249065220356, 0.07720806760092576,
- 0.09092036634683609, -0.018853287522991497, -0.013061204110272229, 0.014877002647457024,
- -0.03428589009369413, 0.0015639457075546186, -0.061178095638751984,
- -0.09153511747717857, -0.012843973158548275, -0.06611495558172464, 0.08061508151392142,
- 0.044443250788996615, -0.06040152286489805, -0.17182056357463202, -0.044249702555437885,
- -0.04813519958406687, 0.008228499675169587, 0.12994890784223875, -0.06478464975953102,
- 0.0502651489029328, -0.0018216245953226462, -0.013912324017534653,
- 0.0012328340356665042, -0.0694455448538065, -0.015552906494121999, -0.04694128315895796,
- 0.04469774353007475, 0.07145911486198504, 0.03072286785269777, -0.008063063180694977,
- 0.09896398956576984, -0.08313218007485072, 0.0602630116045475, -0.004235007489720981,
- -0.03572758038838705, 0.012409091539060077, -0.07769800598422687, 0.019658709255357582,
- 0.004109389691924055, -0.046481688817342125, -0.015341547162582478,
- 0.0020397920549536743, -0.03578613263865312, -0.09697188933690389, -0.04002683640768131,
- -0.0473941631304721, -0.0669910063346227, 0.05612446926534176, -0.08608709461987019,
- -0.026665455972154934, -0.005769143590441672, -0.0547472961867849,
- 0.0014498330807934205, 0.04116381605854258, 0.004929248554011186, -0.1756097748875618,
- -0.007364471016141276, -0.017854134552180767, 0.045788903875897326,
- -0.03313073143362999, -0.043459074571728706, 0.01481692628779759, 0.05919133487623185,
- 0.05450952177246412, -0.01782276954812308, -0.007041760021820664, -0.07305637188255787,
- 0.05195290828123689, -0.13318256537119547, -0.40547114113966626, 0.0499542411416769,
- -0.010710036071638266, 0.03784192601839701, 0.020396306412294507, -0.07967060804367065,
- 0.047466826625168324, 0.0004759096579315762, -0.0662830068419377, 0.08942736561099689,
- -0.04702393927921852, 0.04686248364547888, -0.048873446338499583, -0.06089193125565847,
- -0.041410442596922316, -0.04440632772942384, -0.03091829698920871, 0.04151335141311089,
- -0.03066245753628512, -0.06555428045491378, -0.12169703220327695, 0.049357936096688114,
- -0.016677873053898413, 0.008921545348130167, 0.008772475819569081, 0.01189356743513296,
- -0.06593985141565402, -0.029132910693685215, 0.01747185088364252, 0.06843327420453231,
- 0.042909132316708565, -0.09265835396945477, 0.011864501323240498, 0.05452738919605812,
- -0.027268308990945418, 0.09374819447596867, 0.016045652019480865, -0.00977951610305657,
- -0.06509233514467876, 0.07893958191076915, 0.08560902252793312, 0.18463165561358133,
- -0.001968169972921411, 0.0006845133126868556, 0.03006126033142209, 0.15620873620112738,
- 0.0423507341183722, 0.0337318253198949, -0.04853206314146519, -0.016485515361030895,
- 0.027647554719199736, -0.020989569020457566, 0.08853795379400253, -0.08444592605034511,
- -0.012566019637840023, -0.0051531247251356644, -0.023654882330447435,
- -0.025098851261039574, -0.025526045200725395, 0.20821222414573035, 0.023579425488909084,
- 0.040525400545448065, 0.017258668784052134, -0.07403735940655072, 0.008056370231012503,
- -0.08353220857679844, -0.10771747678518295, 0.003926163539290428, 0.007442789850756526,
- 0.03533690329641104, -0.04568872957800826, -0.11292474592725436, -0.01314130355603993,
- -0.016175310554293294, 0.026076976869565744, 0.11407486225167911, -0.05187452398240566,
- 0.05113054749866327, -0.04862181768597414, 0.14496318126718202, 0.03213864943245426,
- 0.03851095835367838, 0.04911953381573161, 0.13084381322065988, 0.026040306081995368,
- 0.019768607957909506, -0.024442321620881557, -0.0363388080149889,
- -0.0021229153499007225, 0.1387278288602829, -0.045134625087181725, 0.12270441154638927,
- 0.05478793506820997, -0.007589456719870213, -0.07374766655266285, 0.04680519256119927,
- -0.03684282427032789, 0.016927345665559795, -0.3991604844729106, -0.04714125208556652,
- 0.14183688163757324, 0.014793710162242254, 0.02266843820689246, 0.08547337912023067,
- 0.003984335155109875, -0.02951420471072197, -0.026711577321596753, -0.09280391782522202,
- 0.1503457066913446, 0.04121905937790871, 0.068542900805672, -0.048769849662979446,
- 0.008756721392273903, 0.08097025379538536, -0.014641003838429848, 0.01030082224557797,
- 0.050046824112844966, -0.19864966968695322, 0.01092227486272653, -0.056766360998153687,
- 0.13791030272841454, 0.059065331084032856, 0.021670411961774032, 0.10056014483173688,
- -0.04474344104528427, 0.01956934668123722, 0.06804593776663144, -0.03205897705629468,
- 0.03388862436016401, 0.01666070776991546, -0.03370944131165743, 0.10384057648479939,
- 0.08655904109279315, 0.10942808181668322, -0.055687478433052696, 12.04755194981893,
- 0.07670182113846143, 0.05635649245232344, -0.06813765782862902, 0.009972578302646676,
- -0.03930037115545323, 0.025224024274696905, -0.11044297243158023, 0.060978942628329,
- 0.14355840161442757, -0.02855936794852217, -0.05628702572236458, -0.041655812916966774,
- -0.09013187326490879, 0.019944503903388977, -0.0297553357668221, -0.066416356091698,
- -0.022691323809946578, 0.03592618585874637, -0.03586949035525322, -0.05456605119009813,
- 0.030566452381511528, 0.07715398569901784, -0.015885716857155785, -0.08775211684405804,
- 0.013249894293646017, -0.012440963803480068, -0.016250797702620428,
- 0.009150156402029097, 0.015609298716299236, -0.0072051261546827545, 0.02481538476422429,
- 0.04648661380633712, -0.020804795048510034, 0.06342413648962975, 0.06537076039239764,
- 0.07774307144184907, 0.061025439451138176, 0.06551361208160718, 0.060736034065485,
- 0.023319461305315297, 0.038945578038692474, 0.029851170683590073, 0.05726862202088038,
- 0.07855066160360973, 0.0442105014808476, 0.03121645050123334, 0.15941614409287772,
- 0.02020233842389037, 0.06935301919778188, 0.10772321745753288, 0.026123250912254054,
- 0.12273072823882103, 0.0302899779441456, -0.01287957732953752, 0.03301939996890724,
- 0.016917132306843996, -0.07339785248041153, 0.051232422313963376, 0.037641409784555435,
- -0.05894395709037781, 0.14142600571115813, 0.05446730554103851, 0.12620024383068085,
- 0.052084030428280435, 0.04410571604967117, 0.09296430771549542, 0.09263125310341518,
- -0.18051967273155847, -0.09339082737763722, 0.014195441190774242, -0.09289588158329327,
- -0.07937952255209287, 0.08713737192253272, 0.09909861472745736, -0.034152475806574024,
- 0.0594988859569033, -0.023961139377206564, 0.0001849496620707214, -0.035011386421198644,
- -0.008477243206774196, 0.0639858456949393, -0.02083108457736671, -0.006439975307633479,
- 0.07354234531521797, 0.02460292587056756, 0.0862866163564225, 0.11309945707519849,
- -0.026474798447452486, -0.11709994450211525, -0.04964384064078331, 0.09425981342792511,
- -0.009003323270007968, -0.05386619083583355, 0.019345796938675146, -0.06194389176865419,
- 0.04802405787631869, -0.17341741919517517, 0.09017547095815341, 0.09394330779711406,
- -0.10886484508713086, -0.0265013559255749, -0.03530309613173207, 0.08409144853552182,
- 0.013287165539319782, 0.021039117826148868, -0.07008736704786618, 0.042935308845092855,
- 0.0011634083918276399, 0.055941312884291015, -0.05230021135260662, 0.11821491519610088,
- 0.10066375757257144, -0.05483411035190026, 0.053542000552018486, 0.07575831500192483,
- -0.01973534794524312, -0.04687186858306328, 0.05988153753181299, 0.056850408863586686,
- -0.10235912352800369, -0.03768912923987955, -0.02655751413355271, -0.05800063752879699,
- -0.0288979666462789, -0.0430084311713775, -0.011869337564955154, 0.04040635239410525,
- -0.0613837211082379, -0.02883909790155788, 0.07359623536467552, 0.09166913107037544,
- 0.06443013064563274, -0.024236459905902546, 0.0577456479271253, -0.024422471256305773,
- -0.06533028286260863, 0.03429761300018678, 0.04291258876522382, 0.06793506443500519,
- -0.04315288473541538, -0.04927823731365303, -0.056026045543452106, -0.10367252801855405,
- 0.003941934322938323, 0.09667350972692172, 0.018831756431609392, 0.0364641728810966,
- 0.011859539973859986, -0.08397533558309078, -0.04831248614937067, 0.08841399786372979,
- 0.020315967965871096, 0.011784796603024006, 0.061145314325888954, -0.05368351563811302,
- -0.03466267014543215, 0.10729683625201385, -0.08189732829729716, 0.023116148018743843,
- 0.021123206010088325, -0.05679157127936681, 0.10002534960707028, 0.12424943223595619,
- 0.05057460783670346, 0.023723731234592076, 0.03648607789849242, 0.02397824691918989,
- 0.028816745228444535, -0.027156204140434664, 0.038120563607662916, -0.04155279959862431,
- -0.09239474590867758, -0.08604357267419498, 0.009157385366658369, 0.11110203402737777,
- 0.042213658491770424, -0.12023904547095299, -0.0005900361575186253, -0.05717106939603885
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 138,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 13,
- "similarity": 0.998733639717102
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 40,
- "similarity": 0.9986159801483154
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 199,
- "similarity": 0.9985901117324829
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Colleen Flaherty"],
- "epoch_date_downloaded": 1672790400,
- "epoch_date_modified": 1672790400,
- "epoch_date_submitted": 1672790400,
- "flag": null,
- "report_number": 2442,
- "source_domain": "insidehighered.com",
- "submitters": ["Khoa Lam"],
- "title": "No More Proctorio",
- "url": "https://www.insidehighered.com/news/2021/02/01/u-illinois-says-goodbye-proctorio"
- },
- {
- "__typename": "Report",
- "authors": ["Thomas Claburn"],
- "epoch_date_downloaded": 1659398400,
- "epoch_date_modified": 1672963200,
- "epoch_date_submitted": 1631750400,
- "flag": null,
- "report_number": 2434,
- "source_domain": "theregister.com",
- "submitters": ["Roman Lutz"],
- "title": "Using 'AI-based software like Proctorio and ProctorU' to monitor online exams is a really bad idea, says uni panel",
- "url": "https://www.theregister.com/2021/08/20/ai_proctoring_software/"
- },
- {
- "__typename": "Report",
- "authors": ["Karen Gullo"],
- "epoch_date_downloaded": 1649721600,
- "epoch_date_modified": 1649721600,
- "epoch_date_submitted": 1649721600,
- "flag": null,
- "report_number": 1556,
- "source_domain": "eff.org",
- "submitters": ["Anonymous"],
- "title": "EFF Client Erik Johnson and Proctorio Settle Lawsuit Over Bogus DMCA Claims",
- "url": "https://www.eff.org/deeplinks/2022/03/eff-client-eric-johnson-and-proctorio-settle-lawsuit-over-bogus-dmca-claims"
- },
- {
- "__typename": "Report",
- "authors": ["Ian Linkletter"],
- "epoch_date_downloaded": 1649721600,
- "epoch_date_modified": 1649721600,
- "epoch_date_submitted": 1649721600,
- "flag": null,
- "report_number": 1555,
- "source_domain": "gofundme.com",
- "submitters": ["Anonymous"],
- "title": "Stand Against Proctorio's SLAPP, organized by Ian Linkletter",
- "url": "https://www.gofundme.com/f/stand-against-proctorio"
- },
- {
- "__typename": "Report",
- "authors": ["Mitchell Clark"],
- "epoch_date_downloaded": 1640563200,
- "epoch_date_modified": 1640563200,
- "epoch_date_submitted": 1640563200,
- "flag": null,
- "report_number": 1505,
- "source_domain": "theverge.com",
- "submitters": ["Khoa Lam"],
- "title": "Students of color are getting flagged to their teachers because testing software can’t see them",
- "url": "https://www.theverge.com/2021/4/8/22374386/proctorio-racial-bias-issues-opencv-facial-detection-schools-tests-remote-learning"
- },
- {
- "__typename": "Report",
- "authors": ["Sieeka Khan"],
- "epoch_date_downloaded": 1635120000,
- "epoch_date_modified": 1635120000,
- "epoch_date_submitted": 1635120000,
- "flag": null,
- "report_number": 1475,
- "source_domain": "techtimes.com",
- "submitters": ["Patrick Hall (BNH.ai)"],
- "title": "University of Illinois to Discontinue Remote-Testing Software After Students Complain of Privacy Violation",
- "url": "https://www.techtimes.com/articles/256488/20210129/university-illinois-discontinue-remote-testing-software-students-complain-privacy-violation.htm"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "amazon",
- "name": "Amazon"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "amazon",
- "name": "Amazon"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "amazon-customers",
- "name": "Amazon Customers"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1477, 1476],
- "vector": [
- -0.045980505645275116, 0.0846761018037796, -0.010814101435244083, -0.11668674647808075,
- 0.05640373378992081, -0.06108079105615616, 0.015272164717316628, 0.08809803426265717,
- 0.02814829722046852, -0.1066642701625824, -0.06074462831020355, 0.0501573272049427,
- 0.03354530408978462, -0.1161162480711937, 0.009010519832372665, -0.11383140832185745,
- -0.10476802289485931, -0.04164646565914154, -0.00012277020141482353,
- -0.12179572880268097, -0.09253954142332077, 0.03579989820718765, 0.027406033128499985,
- 0.09869232773780823, -0.007353710010647774, 0.024114958941936493, 0.0850585401058197,
- 0.07436306029558182, -0.07441220432519913, 0.04231324791908264, -0.04286971688270569,
- -0.06074976921081543, 0.10703997313976288, 0.008194963447749615, -0.038041889667510986,
- 0.08619846403598785, 0.07823215425014496, -0.021753665059804916, 0.017476331442594528,
- 0.015791432932019234, 0.10666658729314804, 0.2300397753715515, -0.048313260078430176,
- -0.0639420673251152, 0.018387384712696075, -0.05285699665546417, 0.007969865575432777,
- 0.031965043395757675, 0.004181851167231798, 0.030597303062677383, 0.020862150937318802,
- -0.0013511483557522297, -0.016301140189170837, 0.009981153532862663,
- -0.09563891589641571, 0.03194523602724075, 0.08126088976860046, -0.047164153307676315,
- 0.030986983329057693, -0.11341580748558044, -0.008179673925042152, -0.2102486491203308,
- 0.007126568350940943, -0.142383873462677, 0.11478829383850098, -0.0883491113781929,
- -0.062398623675107956, -0.014683001674711704, -0.004432342015206814, 0.0645170584321022,
- 0.1017174944281578, 0.006424301769584417, -0.05090562254190445, 0.03836416080594063,
- 0.00686073349788785, -0.028123270720243454, 0.03683801740407944, 0.13799698650836945,
- -0.06388580799102783, 0.03962095454335213, 0.04532887786626816, -0.07624969631433487,
- 0.4081413745880127, -0.01974981650710106, 0.01757998950779438, -0.0694049745798111,
- 0.08464618772268295, -0.0050596315413713455, 0.0073821693658828735,
- 0.026294361799955368, -0.01908964291214943, 0.07561663538217545, -0.09744204580783844,
- 0.00011061792611144483, 0.05921325087547302, 0.05628763139247894, -0.011476360261440277,
- -0.09142795950174332, -0.0026668263599276543, -0.06397762894630432,
- -0.03963916376233101, -0.044612519443035126, 0.13921533524990082, 0.05884186178445816,
- -0.044578392058610916, 0.020235758274793625, 0.06403525918722153, -0.026214106008410454,
- 0.07040565460920334, -0.01797185279428959, 0.03390071541070938, -0.02938646264374256,
- 0.09032301604747772, -0.01380691397935152, 0.007177684456110001, -0.011102883145213127,
- -0.012394821271300316, 0.05602497607469559, 0.061772316694259644, 0.07817917317152023,
- 0.04090872406959534, 0.014909226447343826, 0.06549625843763351, -0.05273035168647766,
- -0.038250114768743515, -0.033624906092882156, -0.02633451297879219,
- -0.022892940789461136, -0.04428752884268761, -0.012333289720118046,
- -0.02290155738592148, -0.16877001523971558, -0.021647917106747627, 0.04685429856181145,
- -0.048584990203380585, -0.03234837204217911, 0.023384662345051765, -0.03952064365148544,
- 0.0006791723426431417, 0.00845181941986084, -0.0022585238330066204, 0.06572359800338745,
- -0.03913366049528122, 0.0016321293078362942, 0.12707389891147614, 0.05852159857749939,
- -0.03763493895530701, -0.08042168617248535, 0.034501779824495316, -0.05149475485086441,
- 0.13640616834163666, -0.07693615555763245, -0.05200399458408356, -0.028746232390403748,
- -0.0046235183253884315, 0.7363125681877136, 0.11170177161693573, 0.2446218729019165,
- -0.015352403745055199, -0.026202335953712463, 0.152949720621109, 0.035111378878355026,
- 0.03559831529855728, -0.04858173429965973, -0.10119130462408066, 0.007964538410305977,
- -0.08470269292593002, -0.05959990620613098, 0.03571684658527374, 0.01356057170778513,
- 0.08500983566045761, 0.02482770010828972, 0.07282198220491409, -0.009354746900498867,
- -0.06778959184885025, -0.04349552467465401, 0.05109135061502457, 0.009154073894023895,
- -0.11944165825843811, 0.023752810433506966, 0.09233469516038895, 0.10653305053710938,
- -0.06926360726356506, -0.000005443114787340164, -0.020746968686580658,
- 0.061734817922115326, 0.03244922310113907, 0.11221577227115631, -0.04227612912654877,
- 0.05788296461105347, 0.024771280586719513, -0.0028618676587939262,
- -0.010471905581653118, -0.09399685263633728, -0.05021776258945465, 0.10028457641601562,
- -0.017448540776968002, -0.0142368134111166, 0.04454006999731064, -0.10425908863544464,
- 0.03991421312093735, -0.044302407652139664, 0.17004264891147614, -0.1636633574962616,
- 0.020973358303308487, -0.005511847324669361, -0.023780228570103645,
- 0.026583697646856308, 0.03314051032066345, -0.044189032167196274, -0.014211108908057213,
- 0.06954070925712585, 0.07046221196651459, 0.089741051197052, 0.002812480553984642,
- -0.012694891542196274, 0.05580469220876694, 0.04896586388349533, -0.07330432534217834,
- -0.039699189364910126, 0.06726278364658356, 0.0029539731331169605, -0.04257442057132721,
- -0.021005064249038696, 0.059472374618053436, 0.005411635618656874, 0.01310749351978302,
- -0.014012672007083893, 0.04137716814875603, 0.029625998809933662, -0.04425428807735443,
- 0.12587566673755646, 0.039476506412029266, 0.05663444846868515, 0.08447639644145966,
- -0.06404215842485428, -0.008544870652258396, -0.059724677354097366,
- -0.06465727835893631, 0.04722992330789566, -0.024518825113773346, 0.0982058048248291,
- 0.09517288208007812, 0.08698352426290512, 0.01271501649171114, 0.048225779086351395,
- -0.0034261136315762997, 0.02606339380145073, 0.03666788339614868, 0.024551771581172943,
- -0.04209476709365845, -0.030507143586874008, -0.04835882410407066, 0.03087994083762169,
- 0.04533204808831215, 0.016782114282250404, -0.08230861276388168, -0.009890148416161537,
- -0.047844547778367996, -0.0693352147936821, -0.07893276959657669, -0.0708683505654335,
- 0.015095461159944534, 0.053456734865903854, -0.036645494401454926, -0.05636381357908249,
- -0.06519493460655212, -0.018002910539507866, 0.09393001347780228, -0.049554817378520966,
- -0.0033804981503635645, -0.11243093013763428, -0.0154553959146142, -0.01229547243565321,
- 0.04781901836395264, 0.008607403375208378, -0.0031751440837979317, 0.07733769714832306,
- -0.04275251924991608, 0.003912388347089291, -0.020494956523180008, -0.09241072833538055,
- -0.04923245310783386, -0.023862257599830627, -0.03199537470936775, -0.04934252053499222,
- 0.02170201577246189, -0.020993884652853012, 0.0014635976403951645, 0.06198711320757866,
- 0.0519644170999527, -0.0206244308501482, -0.03974154219031334, 0.04445899277925491,
- -0.013369366526603699, -0.01262449100613594, 0.052462078630924225, -0.05843767896294594,
- 0.07480612397193909, 0.023128962144255638, -0.09692160785198212, -0.057291146367788315,
- -0.020237594842910767, -0.032508593052625656, -0.02290479466319084,
- 0.010362369008362293, -0.007834237068891525, -0.026501333341002464,
- 0.014826484024524689, 0.07052460312843323, -0.07434020936489105, -0.10797782242298126,
- -0.10356497764587402, 0.11013230681419373, 0.012531021609902382, 0.0026106052100658417,
- 0.05907351151108742, -0.016962673515081406, 0.03204881399869919, -0.05986682325601578,
- 0.03331219032406807, 0.02753179892897606, 0.057266902178525925, -0.003598881885409355,
- -0.0458313524723053, 0.02915710024535656, -0.020479951053857803, 0.03950733691453934,
- 0.08407910168170929, 0.4590485692024231, -0.06693333387374878, 0.05689031258225441,
- 0.09982805699110031, 0.00725631695240736, -0.02134641632437706, -0.09499955177307129,
- 0.06657955050468445, 0.10369978845119476, 0.12326031923294067, 0.13041894137859344,
- -0.02509826049208641, 0.030415765941143036, -0.11093901097774506, 0.07783286273479462,
- 0.002776253968477249, -0.022617081180214882, -0.007076897658407688,
- -0.07847676426172256, -0.03131167218089104, 0.08206643164157867, -0.008434958755970001,
- -0.028132997453212738, -0.010354616679251194, -0.05946528539061546, 0.03283343464136124,
- -0.013786206021904945, 0.015765303745865822, -0.012335564941167831,
- 0.025574248284101486, -0.04861684888601303, 0.028229715302586555, 0.0529332160949707,
- -0.009615118615329266, -0.13330042362213135, 0.07532621175050735, -0.08999920636415482,
- -0.05568084120750427, 0.09935937821865082, 0.022422414273023605, 0.05079655349254608,
- 0.04448816925287247, -0.013742959126830101, 0.04930724576115608, 0.04105021059513092,
- -0.03385652229189873, 0.02828424796462059, 0.065977543592453, -0.00808420404791832,
- 0.0463801771402359, 0.17644581198692322, -0.025045419111847878, -0.002650995273143053,
- -0.07515139877796173, 0.041560277342796326, 0.11958643049001694, -0.005628545302897692,
- 0.01261637918651104, 0.004335390403866768, -0.0478346012532711, 0.011033115908503532,
- -0.04471494257450104, -0.06955330818891525, -0.031147953122854233,
- -0.061832062900066376, 0.09329289197921753, 0.01829981803894043, -0.028223691508173943,
- -0.1492561399936676, 0.024080827832221985, -0.05173737555742264, 0.03337671980261803,
- 0.07223431020975113, -0.11056303977966309, 0.0518365204334259, 0.01197282038629055,
- -0.02780967578291893, 0.010195218026638031, -0.0700598955154419, 0.014980053529143333,
- -0.03438038378953934, 0.04883255437016487, 0.020895084366202354, 0.036595284938812256,
- -0.0528111569583416, 0.08722221851348877, -0.07541118562221527, 0.07036842405796051,
- 0.032468605786561966, -0.04227506369352341, 0.011683192104101181, -0.03327459841966629,
- -0.0038622086867690086, 0.0028400905430316925, -0.013541210442781448,
- -0.009220310486853123, -0.00319930212572217, 0.0003068956430070102,
- -0.10223075747489929, -0.0726020410656929, -0.008517594076693058, -0.07902510464191437,
- 0.08004961907863617, -0.0634133368730545, 0.0028848350048065186, -0.0029931499157100916,
- -0.06076142191886902, -0.012991387397050858, 0.015834741294384003, -0.03373708575963974,
- -0.1434703767299652, 0.006617405917495489, 0.02810867689549923, 0.08731891214847565,
- 0.015708543360233307, -0.07397039979696274, -0.0007234662771224976, 0.13976037502288818,
- 0.024365847930312157, 0.009257111698389053, -0.0070868185721337795,
- -0.07240557670593262, 0.07446420192718506, -0.10750551521778107, -0.36433735489845276,
- 0.04931948333978653, 0.03910387307405472, 0.05358906462788582, -0.0021667354740202427,
- -0.06482664495706558, 0.024572785943746567, 0.023566322401165962, -0.09156613051891327,
- 0.0558079332113266, -0.06251034885644913, 0.0034811561927199364, -0.04096607491374016,
- -0.10998787730932236, -0.043147388845682144, -0.05367781221866608,
- -0.005242085084319115, 0.05454765632748604, -0.02904924936592579, -0.06470151990652084,
- -0.1505187451839447, 0.054846685379743576, -0.03988990932703018, -0.012395826168358326,
- 0.0032986721489578485, 0.017664918676018715, -0.06376440078020096, -0.02794473245739937,
- 0.02911454625427723, 0.08014865219593048, 0.023582041263580322, -0.07020889967679977,
- -0.018050096929073334, 0.07485508918762207, -0.0057125454768538475, 0.09946039319038391,
- 0.019969604909420013, -0.03295676410198212, -0.06971290707588196, 0.09038017690181732,
- 0.04569309577345848, 0.18683695793151855, 0.02312982641160488, -0.009773553349077702,
- 0.021765369921922684, 0.1261761486530304, 0.04494175314903259, 0.05943162366747856,
- -0.028941871598362923, -0.028930459171533585, 0.025266777724027634,
- 0.005994347855448723, 0.08076981455087662, -0.07422655820846558, -0.029474880546331406,
- -0.04893559217453003, -0.003718326799571514, -0.052077516913414, -0.029568959027528763,
- 0.2269572913646698, 0.024295344948768616, 0.07171355187892914, 0.040497198700904846,
- -0.014548191800713539, 0.0115992221981287, -0.060469068586826324, -0.11651934683322906,
- -0.03239564597606659, 0.013472447171807289, 0.018367493525147438, -0.031281162053346634,
- -0.07543304562568665, -0.01507292315363884, -0.0260547436773777, 0.02319183573126793,
- 0.1534891128540039, -0.05280124396085739, -0.010989985428750515, -0.021166883409023285,
- 0.11556491255760193, 0.03790456801652908, 0.018811501562595367, 0.03169569745659828,
- 0.12379544973373413, 0.01839079149067402, 0.044235605746507645, -0.023685256019234657,
- -0.034894559532403946, -0.017054740339517593, 0.09509018063545227, -0.0406913198530674,
- 0.12587487697601318, 0.0650985836982727, -0.010074561461806297, -0.06845036149024963,
- 0.05055329203605652, -0.03601241484284401, -0.005655290558934212, -0.41874873638153076,
- -0.03337225317955017, 0.10919394344091415, 0.04992746561765671, 0.003244703868404031,
- 0.06726521253585815, 0.01830594800412655, -0.05460476130247116, -0.00783416349440813,
- -0.1329045295715332, 0.10997680574655533, 0.04337400943040848, 0.10292009264230728,
- -0.015617793425917625, -0.00024806708097457886, 0.09739462286233902,
- -0.0522945374250412, 0.029187815263867378, 0.04321073740720749, -0.26140061020851135,
- 0.029447931796312332, -0.030550336465239525, 0.057454388588666916,
- -0.003112295176833868, 0.06887995451688766, 0.08820845186710358, -0.06241487339138985,
- 0.062019623816013336, 0.07279171049594879, 0.024262771010398865, 0.03893376886844635,
- -0.033986471593379974, -0.023268241435289383, 0.07967261970043182, 0.08132311701774597,
- 0.1602880358695984, -0.011391195468604565, 11.922477722167969, 0.05096901208162308,
- 0.012419220060110092, -0.0951969102025032, -0.02309088595211506, -0.03257659450173378,
- 0.034270524978637695, -0.09045545756816864, 0.044807903468608856, 0.16877171397209167,
- -0.00903422199189663, -0.08036378026008606, -0.05900781974196434, -0.10142958164215088,
- 0.02013530768454075, -0.02359228953719139, -0.044205449521541595, -0.05965407192707062,
- -0.009003345854580402, -0.03682080656290054, -0.045617032796144485, 0.07905754446983337,
- 0.09026827663183212, -0.0032068120781332254, 0.003680383786559105, 0.02921360731124878,
- 0.022945910692214966, -0.002264105249196291, 0.02434779889881611, 0.021076872944831848,
- 0.027750331908464432, 0.012381168082356453, 0.042332716286182404, 0.018001100048422813,
- 0.06361875683069229, 0.035129301249980927, 0.0791446715593338, 0.02482757344841957,
- 0.055142708122730255, 0.03746079280972481, -0.0056147947907447815, 0.04260688275098801,
- 0.030624113976955414, 0.030072985216975212, 0.06310683488845825, 0.07776381820440292,
- 0.030377062037587166, 0.10149268805980682, 0.004423519130796194, 0.05525604635477066,
- 0.0742083489894867, 0.025244105607271194, 0.11220809817314148, 0.02562703937292099,
- -0.024172188714146614, 0.07177427411079407, -0.029057063162326813, -0.09534653276205063,
- 0.06800252199172974, 0.009204582311213017, -0.08116061985492706, 0.15671536326408386,
- 0.034875452518463135, 0.10602764785289764, -0.002784355543553829, 0.0477556437253952,
- 0.08575539290904999, 0.05804897099733353, -0.17048943042755127, -0.05301639065146446,
- -0.0055066426284611225, -0.08514168858528137, -0.10086435079574585, 0.08296690136194229,
- 0.08928157389163971, -0.049234967678785324, 0.014788142405450344, 0.0007809039670974016,
- 0.022111576050519943, 0.009309833869338036, 0.00116914848331362, 0.05355699360370636,
- -0.026805581524968147, -0.004614909179508686, 0.0980992466211319, 0.027896331623196602,
- 0.02496427670121193, 0.11058007925748825, -0.025374695658683777, -0.06293381005525589,
- -0.04030647128820419, 0.0798289030790329, -0.00007998365617822856, -0.08848284184932709,
- 0.029484067112207413, -0.07992488890886307, 0.01751929335296154, -0.16012650728225708,
- 0.08915074169635773, 0.06435522437095642, -0.09677064418792725, 0.022899864241480827,
- -0.0566311851143837, 0.04866158962249756, 0.046010274440050125, 0.02097908779978752,
- -0.10069432854652405, -0.021293722093105316, -0.011737404391169548,
- 0.021572284400463104, -0.03907892853021622, 0.08703496307134628, 0.10463836789131165,
- -0.052540361881256104, -0.0023678098805248737, 0.03443126380443573,
- -0.018385568633675575, -0.02353416569530964, 0.05776115506887436, 0.040764957666397095,
- -0.05556353181600571, -0.0383017361164093, -0.04637277498841286, -0.03690403699874878,
- -0.030809186398983, -0.01519028190523386, -0.016895964741706848, 0.04234940931200981,
- -0.056349627673625946, 0.016501260921359062, 0.01943577080965042, 0.07333894073963165,
- 0.07631253451108932, -0.00860880222171545, 0.03753204643726349, -0.054438404738903046,
- 0.0060279034078121185, 0.06055601313710213, 0.019935283809900284, 0.03500324487686157,
- -0.09086765348911285, -0.04902762919664383, -0.07107952237129211, -0.103049635887146,
- 0.018636267632246017, 0.06383762508630753, 0.05490612983703613, 0.09945501387119293,
- 0.019971031695604324, -0.054228052496910095, -0.11088818311691284, 0.08534310758113861,
- 0.02451930195093155, -0.0049081603065133095, 0.06886918842792511, -0.032483723014593124,
- -0.041428204625844955, 0.0927901566028595, -0.03472394123673439, -0.011323126032948494,
- 0.0302504263818264, -0.10741886496543884, 0.10877663642168045, 0.17394837737083435,
- 0.09898972511291504, 0.057034846395254135, 0.024169450625777245, 0.06106267869472504,
- -0.014557067304849625, -0.015423755161464214, 0.018164237961173058,
- -0.035261332988739014, -0.11377589404582977, -0.06489188969135284, 0.035317372530698776,
- 0.09971903264522552, 0.11155463010072708, -0.05665701627731323, -0.03721644729375839,
- -0.06972978264093399
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 139,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 19,
- "similarity": 0.9983142614364624
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 13,
- "similarity": 0.9980673789978027
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 5,
- "similarity": 0.9980487823486328
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Prerna Juneja", "Tanushree Mitra"],
- "epoch_date_downloaded": 1635033600,
- "epoch_date_modified": 1635120000,
- "epoch_date_submitted": 1635120000,
- "flag": null,
- "report_number": 1477,
- "source_domain": "arxiv.org",
- "submitters": ["Sean McGregor"],
- "title": "Auditing E-Commerce Platforms for Algorithmically Curated Vaccine Misinformation",
- "url": "https://arxiv.org/abs/2101.08419"
- },
- {
- "__typename": "Report",
- "authors": ["IANS"],
- "epoch_date_downloaded": 1635120000,
- "epoch_date_modified": 1635120000,
- "epoch_date_submitted": 1635120000,
- "flag": null,
- "report_number": 1476,
- "source_domain": "iol.co.za",
- "submitters": ["Patrick Hall (BNH.ai)"],
- "title": "Amazon algorithms boost vaccine misinformation, says study",
- "url": "https://www.iol.co.za/technology/fintech/amazon-algorithms-boost-vaccine-misinformation-says-study-dc2105b8-dc86-4392-bc55-6555fe1dc77e"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "university-of-toronto",
- "name": "University of Toronto"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "proctoru",
- "name": "ProctorU"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "university-of-toronto-bipoc-students",
- "name": "University of Toronto BIPOC students"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1478],
- "vector": [
- -0.038288164883852005, 0.09652390331029892, 0.034557126462459564, -0.10802201926708221,
- 0.08333869278430939, -0.06129658967256546, 0.038130972534418106, 0.07662831246852875,
- 0.062073275446891785, -0.11979233473539352, -0.007545215543359518, 0.030260609462857246,
- -0.010514206252992153, -0.06665031611919403, 0.041838835924863815, -0.14382702112197876,
- -0.09956370294094086, -0.028309687972068787, -0.020418185740709305,
- -0.13864865899085999, -0.03627584129571915, 0.002875566016882658, 0.025122351944446564,
- 0.06778749078512192, -0.06656093150377274, 0.05843404307961464, 0.07840464264154434,
- 0.09765376150608063, -0.020097915083169937, 0.05951140820980072, -0.03827075660228729,
- -0.06779848784208298, 0.10782945901155472, 0.003369774203747511, -0.015885550528764725,
- 0.09407815337181091, 0.04146760702133179, 0.008506452664732933, 0.03049580566585064,
- 0.01937735266983509, -0.0016621366376057267, 0.2787032127380371, -0.012691578827798367,
- -0.017255553975701332, 0.05162215977907181, -0.04154321178793907, -0.03502573445439339,
- 0.07991384714841843, 0.035172559320926666, 0.00952921248972416, 0.014514261856675148,
- 0.01593153364956379, -0.01242873352020979, -0.0352572426199913, -0.11766283959150314,
- 0.05739695578813553, 0.02552347257733345, -0.014059421606361866, 0.010341807268559933,
- -0.046675145626068115, -0.02832728438079357, -0.2139359563589096, -0.06774919480085373,
- -0.10249047726392746, 0.052157141268253326, -0.06289613246917725, -0.00792750809341669,
- 0.038306087255477905, 0.03204244002699852, 0.0513165257871151, 0.05293872207403183,
- -0.0690792053937912, -0.051203653216362, 0.020082563161849976, -0.007365110330283642,
- -0.0322633720934391, -0.03374042361974716, 0.2143540233373642, -0.0392434224486351,
- -0.013665351085364819, 0.08306826651096344, -0.10217104107141495, 0.4134393632411957,
- 0.005586215294897556, -0.013698915019631386, 0.05616999790072441, 0.07706594467163086,
- 0.02140757255256176, 0.04125935211777687, 0.0682963877916336, -0.01845571957528591,
- 0.09107983112335205, -0.034977126866579056, -0.016204804182052612, 0.019002901390194893,
- 0.028229866176843643, 0.015969039872288704, 0.01255062222480774, -0.001623481628485024,
- -0.03257780149579048, -0.02719820663332939, -0.04133310914039612, 0.07042746245861053,
- 0.14489592611789703, -0.04352560639381409, 0.008763891644775867, 0.04838813468813896,
- -0.06268417090177536, 0.0347883440554142, -0.0696249008178711, 0.014121676795184612,
- -0.041023124009370804, 0.03724391758441925, 0.015842285007238388, -0.000978265074081719,
- -0.04862653836607933, 0.010387558490037918, 0.040347788482904434, 0.06883156299591064,
- 0.017355017364025116, -0.017126452177762985, 0.05156192183494568, 0.10793337225914001,
- -0.025482837110757828, -0.07495029270648956, -0.009840603917837143,
- -0.03763965889811516, -0.012030270881950855, -0.03181345388293266, 0.07892844825983047,
- -0.05685160681605339, -0.1910594403743744, 0.01713700219988823, 0.052428919821977615,
- -0.012855610810220242, -0.02006872557103634, 0.010736173950135708, -0.04825465381145477,
- 0.05892791599035263, -0.0420847050845623, -0.00319388578645885, 0.07445897161960602,
- -0.012184822000563145, 0.07607480883598328, 0.08770953863859177, 0.03537352383136749,
- -0.02293708361685276, -0.005156137980520725, -0.021503441035747528,
- -0.050619564950466156, 0.09553184360265732, -0.16401608288288116, -0.04638996720314026,
- 0.008642463944852352, 0.0020564566366374493, 0.6571130156517029, 0.1733957827091217,
- 0.17129118740558624, -0.017069140449166298, -0.026427850127220154, 0.16520777344703674,
- 0.025463227182626724, -0.012959486804902554, -0.09729927778244019,
- -0.034033164381980896, 0.013889506459236145, -0.07944871485233307,
- -0.015654727816581726, 0.00679054157808423, -0.03630645573139191, 0.10024267435073853,
- -0.0018018949776887894, 0.09885396808385849, 0.007900381460785866, -0.09346821159124374,
- -0.023597683757543564, 0.044349487870931625, -0.022151445969939232,
- -0.15258780121803284, -0.016587283462285995, 0.04904528707265854, 0.05598464235663414,
- -0.12064255774021149, -0.010623843409121037, -0.04976357892155647, 0.014125019311904907,
- 0.03944731876254082, 0.02464156784117222, -0.03620009496808052, 0.028766414150595665,
- 0.02410604991018772, 0.03428400307893753, 0.018729595467448235, -0.12354560941457748,
- -0.001901530777104199, 0.09642551094293594, -0.012424150481820107, -0.06341362744569778,
- 0.128651425242424, -0.08776751905679703, 0.061771146953105927, 0.019058313220739365,
- 0.1850428581237793, -0.1640608161687851, 0.05751447752118111, -0.015034518204629421,
- -0.050328243523836136, 0.06736399233341217, -0.036512501537799835, -0.05185554921627045,
- -0.03157040849328041, 0.10005135834217072, 0.02382245659828186, 0.05678737908601761,
- 0.05272432044148445, -0.03638015314936638, 0.01313179824501276, 0.04821600764989853,
- 0.07947000116109848, -0.04631137475371361, 0.05043173208832741, 0.04606103524565697,
- -0.05725621432065964, -0.033604077994823456, 0.016926046460866928, 0.09160356223583221,
- 0.04024716094136238, 0.027221525087952614, 0.040723301470279694, -0.011914613656699657,
- -0.08731073141098022, 0.028389135375618935, 0.006979917176067829, -0.011342774145305157,
- 0.11583145707845688, -0.05357795208692551, -0.015087679028511047, -0.021237898617982864,
- 0.009959734976291656, 0.06300525367259979, -0.0018493244424462318, 0.07407685369253159,
- 0.08761347085237503, 0.03196117281913757, 0.022221937775611877, 0.05198771134018898,
- 0.06170524284243584, 0.01631544902920723, -0.04291510581970215, 0.17091840505599976,
- -0.00748832430690527, -0.08694656938314438, -0.04101955518126488, -0.042832933366298676,
- 0.02238401584327221, 0.020832834765315056, -0.07070589065551758, -0.02603357471525669,
- -0.027071284130215645, 0.00015276428894139826, -0.0773128867149353,
- -0.023861298337578773, 0.03369783237576485, 0.009085924364626408, -0.054862283170223236,
- -0.11258507519960403, -0.07240092009305954, 0.009712014347314835, 0.11512938141822815,
- 0.0144380833953619, -0.02075951360166073, -0.14843060076236725, -0.002193243708461523,
- -0.02617553621530533, 0.0871102586388588, -0.03597794473171234, 0.014735374599695206,
- 0.002538213273510337, -0.07061751186847687, 0.015737170353531837, -0.00600145710632205,
- -0.03513636812567711, -0.0030989921651780605, -0.0804314985871315, -0.07039432227611542,
- -0.0029111485928297043, 0.004336063284426928, -0.008675877936184406, 0.0513339601457119,
- 0.046331342309713364, 0.029341304674744606, -0.022532036527991295,
- -0.036762356758117676, 0.055761516094207764, -0.05468657240271568, 0.02300674468278885,
- 0.11329945176839828, -0.03520994260907173, 0.03462204337120056, -0.01157473772764206,
- -0.03245014324784279, -0.06400834769010544, -0.0423799566924572, -0.04620952904224396,
- 0.04874910041689873, -0.04278469458222389, -0.01344602182507515, -0.03564434126019478,
- 0.005695211701095104, 0.11718122661113739, -0.0750785544514656, -0.004916648846119642,
- -0.07989691197872162, 0.1062936931848526, -0.013421068899333477, 0.06404117494821548,
- -0.03975636512041092, -0.08886843174695969, 0.050850994884967804, 0.027504419907927513,
- 0.0031161578372120857, 0.024766774848103523, 0.07196635007858276, -0.026909975335001945,
- 0.00012850794882979244, 0.06056012585759163, -0.020661992952227592,
- -0.004889514297246933, 0.11806850135326385, 0.43205732107162476, -0.0683654174208641,
- 0.08408413827419281, 0.07378116995096207, 0.03033561073243618, 0.032451752573251724,
- -0.007304093800485134, 0.054147493094205856, 0.07139471918344498, 0.08236625790596008,
- 0.09905863553285599, -0.04473960027098656, 0.0065901619382202625, -0.03353196382522583,
- 0.07303598523139954, 0.027186093851923943, 0.026459360495209694, -0.08278262615203857,
- -0.060898132622241974, -0.013515410013496876, 0.0276532843708992, -0.08457934856414795,
- 0.015942290425300598, -0.014943123795092106, -0.09238678961992264, 0.01722441241145134,
- -0.004176822956651449, 0.061538103967905045, -0.03599525988101959, 0.05359929800033569,
- -0.02399546094238758, -0.027113864198327065, 0.03062237985432148, 0.006523396819829941,
- -0.11831881105899811, 0.0294051431119442, -0.060379140079021454, -0.08576413244009018,
- 0.09690225124359131, -0.0029074829071760178, 0.05248488485813141, 0.063168004155159,
- 0.007389013189822435, 0.0903489738702774, -0.004876200575381517, -0.045910775661468506,
- 0.012849458493292332, 0.0011371164582669735, 0.008816884830594063, 0.11403460055589676,
- 0.15276645123958588, -0.06675742566585541, -0.007731158286333084, -0.07470359653234482,
- 0.0775681585073471, 0.09223467856645584, -0.0017571989446878433, -0.021306008100509644,
- 0.029646599665284157, 0.050397805869579315, 0.007467987481504679, -0.06116698309779167,
- -0.08943817764520645, 0.021459080278873444, -0.009539104998111725, 0.10343614220619202,
- 0.003975174855440855, -0.03717752546072006, -0.1683475822210312, -0.08861072361469269,
- -0.07899435609579086, 0.026344524696469307, 0.1504530906677246, -0.05256432667374611,
- -0.022653089836239815, -0.04590047895908356, 0.012003671377897263, 0.030432166531682014,
- -0.07153232395648956, -0.0369248166680336, -0.06716714054346085, 0.005533895455300808,
- 0.08033701777458191, 0.003265654668211937, -0.045326970517635345, 0.07211880385875702,
- -0.07997678220272064, 0.06036035344004631, 0.008112710900604725, -0.01563456282019615,
- 0.003499446902424097, -0.003200556617230177, 0.04237201809883118, 0.03612147271633148,
- -0.0515383780002594, -0.003681211033836007, -0.005751095712184906,
- -0.0029749490786343813, -0.11429747939109802, -0.018415890634059906,
- -0.052195705473423004, -0.07769092917442322, 0.023056428879499435, -0.08379432559013367,
- -0.013421828858554363, -0.018901297822594643, 0.04318146035075188, -0.00697687454521656,
- 0.07111040502786636, 0.01924763061106205, -0.11765653640031815, 0.001739580649882555,
- -0.03728700801730156, 0.04749962314963341, -0.08373802155256271, -0.07852882146835327,
- 0.02746499888598919, 0.092258021235466, 0.026995068415999413, -0.05285152420401573,
- 0.030727947130799294, -0.044882334768772125, 0.12429991364479065, -0.1091112419962883,
- -0.37475189566612244, 0.038451749831438065, 0.004238614812493324, 0.06323526054620743,
- 0.00442099804058671, -0.05021435767412186, 0.07786903530359268, -0.03219464048743248,
- 0.005149659235030413, 0.08141174167394638, -0.04213602840900421, 0.03618402034044266,
- -0.02722192369401455, -0.07362129539251328, -0.02195509523153305, -0.10412567108869553,
- -0.0759071484208107, 0.027453117072582245, 0.008789190091192722, -0.06741306185722351,
- -0.06369849294424057, 0.0861653983592987, 0.04920223727822304, 0.03834979608654976,
- -0.012054692953824997, -0.01843608357012272, -0.016513006761670113,
- -0.0027350650634616613, 0.031121501699090004, -0.007964439690113068,
- 0.01285682711750269, -0.0955544039607048, 0.004250337369740009, 0.07534890621900558,
- 0.016499407589435577, 0.07711049914360046, -0.00399779574945569, 0.018283534795045853,
- -0.07158775627613068, 0.07862035930156708, 0.08048032224178314, 0.18848705291748047,
- -0.01740163005888462, 0.018885966390371323, 0.016132500022649765, 0.08479341864585876,
- 0.03183385357260704, 0.029539162293076515, -0.04828355833888054, -0.004019171465188265,
- -0.025167882442474365, 0.0548907108604908, 0.03930462524294853, -0.11320741474628448,
- -0.028105570003390312, 0.0017736318986862898, -0.021520135924220085,
- -0.004447411745786667, 0.002725212834775448, 0.15649627149105072, 0.0266349446028471,
- 0.011932319961488247, 0.031325019896030426, -0.05730876326560974, 0.030704034492373466,
- -0.11599242687225342, -0.09356645494699478, 0.03334859758615494, 0.02971632033586502,
- 0.0021339075174182653, -0.025846432894468307, -0.101956807076931, 0.0025375494733452797,
- -0.008592904545366764, 0.005071023944765329, 0.08093167841434479, -0.0723537877202034,
- 0.04332435131072998, -0.044333264231681824, 0.16986963152885437, 0.07338540256023407,
- 0.061000045388936996, 0.07295610755681992, 0.04115436598658562, -0.023810656741261482,
- 0.03884541243314743, -0.0008430376765318215, -0.050004635006189346, -0.0522175058722496,
- 0.15028215944766998, -0.04016638547182083, 0.11147671937942505, 0.0469234399497509,
- -0.05153786763548851, -0.07173565030097961, 0.028057914227247238, 0.0007753671961836517,
- 0.00189131626393646, -0.3983142673969269, -0.05061793699860573, 0.09954105317592621,
- 0.016853129491209984, 0.07702614367008209, 0.07476136833429337, 0.0022283478174358606,
- -0.05396657437086105, -0.026577159762382507, -0.10090035200119019, 0.19929145276546478,
- -0.0042166137136518955, 0.04165417701005936, -0.04019594565033913, 0.06246304512023926,
- 0.06865708529949188, -0.047654617577791214, -0.0009750378085300326,
- 0.020576853305101395, -0.1510612815618515, -0.050627805292606354, -0.05616666004061699,
- 0.1726384460926056, 0.043301161378622055, 0.035769395530223846, 0.07902839779853821,
- -0.022961627691984177, -0.03159095719456673, 0.06407449394464493, -0.04941096901893616,
- 0.06317450851202011, -0.020078441128134727, -0.03295819088816643, 0.07836370915174484,
- 0.07971008867025375, 0.00991806946694851, -0.04749391973018646, 11.829596519470215,
- 0.11890045553445816, 0.10031796991825104, -0.048337217420339584, -0.014225127175450325,
- 0.00778370164334774, 0.02492719702422619, -0.1621355265378952, 0.0665445476770401,
- 0.08939291536808014, -0.060013238340616226, -0.07683481276035309, 0.002883862005546689,
- -0.05778859928250313, 0.010991175659000874, -0.02865239419043064, -0.09667079150676727,
- -0.020470701158046722, 0.06228160858154297, -0.01212947629392147, -0.024890827015042305,
- 0.018616793677210808, 0.029233582317829132, 0.0027983637992292643, -0.08681321889162064,
- 0.0118590472266078, -0.029920633882284164, -0.08199181407690048, 0.015562780201435089,
- 0.059520330280065536, -0.007467145565897226, 0.06839840114116669, 0.01585816591978073,
- 0.023860355839133263, 0.05803990736603737, 0.035264916718006134, 0.04814593866467476,
- 0.024443116039037704, 0.05089312419295311, 0.09256665408611298, 0.027559543028473854,
- 0.04222984239459038, 0.04501677304506302, -0.002252096077427268, 0.09499430656433105,
- 0.03349100798368454, 0.045552317053079605, 0.121204674243927, -0.006032230332493782,
- 0.08613336086273193, 0.13412491977214813, 0.007796809077262878, 0.10161221772432327,
- -0.02633700892329216, 0.048281509429216385, 0.07700091600418091, 0.00019659948884509504,
- -0.0926806852221489, 0.04147892817854881, 0.04884132370352745, -0.04252752661705017,
- 0.12765032052993774, 0.052275389432907104, 0.07032047212123871, -0.009277651086449623,
- 0.0011528029572218657, 0.09942846745252609, 0.0871497169137001, -0.14910966157913208,
- -0.036586660891771317, 0.017458824440836906, -0.057370081543922424,
- -0.06755466759204865, 0.08827827125787735, 0.09814078360795975, -0.08132436871528625,
- 0.08250686526298523, -0.022827008739113808, 0.04966031387448311, -0.009299872443079948,
- -0.022191187366843224, 0.07770875096321106, -0.033002614974975586, 0.009248253889381886,
- 0.05100695416331291, -0.00635594641789794, 0.11029158532619476, 0.12495246529579163,
- 0.00506152817979455, -0.1328565776348114, -0.09682495146989822, 0.06864889711141586,
- -0.001823079539462924, -0.07005487382411957, 0.020297911018133163, -0.06978368014097214,
- 0.042514901608228683, -0.17850904166698456, 0.10907347500324249, 0.1120235025882721,
- -0.13981205224990845, 0.011085428297519684, -0.006215587258338928, 0.10429880768060684,
- 0.02419910579919815, 0.00008563625306123868, -0.021885663270950317, 0.06778975576162338,
- 0.028578566387295723, 0.04478544741868973, -0.0447009839117527, 0.09548920392990112,
- 0.045258890837430954, -0.04882233962416649, 0.026751574128866196, 0.08299480378627777,
- -0.04515771567821503, -0.03770676627755165, 0.050363969057798386, 0.015027266927063465,
- -0.08633358031511307, -0.04848647862672806, -0.02461724542081356, -0.04687213897705078,
- -0.05425423011183739, -0.08477071672677994, -0.0035389799159020185,
- 0.021303663030266762, -0.05809247866272926, -0.05803387612104416, 0.08518072217702866,
- 0.09937354922294617, 0.05355112627148628, -0.026056360453367233, 0.07149085402488708,
- -0.0029654703103005886, -0.015435781329870224, 0.020448973402380943,
- 0.026464523747563362, 0.05692372843623161, -0.026340756565332413, -0.04459153488278389,
- -0.07703538984060287, -0.11798450350761414, -0.01060112938284874, 0.08189764618873596,
- 0.010969535447657108, 0.048945292830467224, 0.10731887817382812, -0.06750375032424927,
- 0.00827745907008648, 0.07328005135059357, -0.004511637147516012, -0.02365815080702305,
- 0.029947452247142792, -0.06979507207870483, -0.05665971338748932, 0.11277689784765244,
- -0.023448966443538666, -0.04987528175115585, 0.06234925612807274, -0.05692853778600693,
- 0.024748004972934723, 0.0764884203672409, 0.05309261009097099, -0.019873924553394318,
- 0.00529674394056201, -0.02038237266242504, 0.0708855465054512, -0.01055831741541624,
- 0.014418951235711575, -0.04408353939652443, -0.03658003732562065, -0.03819279372692108,
- 0.006897768471390009, 0.05724480375647545, -0.004331108182668686, -0.06080380454659462,
- -0.0035793862771242857, -0.10859235376119614
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 140,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 138,
- "similarity": 0.9976822137832642
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 103,
- "similarity": 0.9974530935287476
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 216,
- "similarity": 0.9974203109741211
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Adam Lam"],
- "epoch_date_downloaded": 1635120000,
- "epoch_date_modified": 1635120000,
- "epoch_date_submitted": 1635120000,
- "flag": null,
- "report_number": 1478,
- "source_domain": "thestrand.ca",
- "submitters": ["Patrick Hall (BNH.ai)"],
- "title": "BIPOC students face disadvantages with exam monitoring software at the University of Toronto",
- "url": "https://thestrand.ca/bipoc-students-face-disadvantages-with-exam-monitoring-software-at-the-university-of-toronto/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "instagram",
- "name": "Instagram"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "instagram",
- "name": "Instagram"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "sennett-devermont",
- "name": "Sennett Devermont"
- },
- {
- "__typename": "Entity",
- "entity_id": "beverly-hills-citizens",
- "name": "Beverly Hills citizens"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1480, 1479],
- "vector": [
- -0.07094642519950867, 0.060711294412612915, -0.001659707515500486, -0.1135120615363121,
- 0.07236087322235107, 0.0011825275141745806, -0.027882438153028488, 0.02270464040338993,
- 0.05894238501787186, -0.14391663670539856, 0.05327350273728371, 0.04034572094678879,
- 0.028606336563825607, -0.06789901852607727, 0.03341275453567505,
- -0.00006612055585719645, -0.052871622145175934, -0.07545675337314606,
- -0.0053258673287928104, -0.1548856496810913, -0.036388833075761795,
- -0.016178971156477928, 0.0702841654419899, 0.10441786795854568, -0.03742368891835213,
- 0.03843763470649719, 0.08763501793146133, 0.11517992615699768, -0.04474051296710968,
- 0.031637877225875854, -0.032533712685108185, -0.0936540961265564, 0.11707383394241333,
- 0.012993324548006058, 0.011669140309095383, 0.10967378318309784, 0.026321470737457275,
- 0.00371372327208519, -0.040544040501117706, -0.017030589282512665, 0.05124923959374428,
- 0.19851425290107727, 0.0012675924226641655, -0.07921316474676132, 0.07153595983982086,
- -0.051327697932720184, 0.03639301657676697, 0.042985811829566956, 0.001962631940841675,
- 0.012261299416422844, 0.0035024338867515326, 0.02256803587079048, -0.03981117159128189,
- 0.04182450473308563, -0.16064786911010742, 0.07504060119390488, 0.04579479992389679,
- 0.024434735998511314, 0.02920137345790863, -0.060632213950157166, -0.06329147517681122,
- -0.25543707609176636, -0.051953837275505066, -0.06359169632196426, 0.10682915151119232,
- -0.1044115200638771, -0.04160656780004501, 0.004426689352840185, 0.025124160572886467,
- 0.023624978959560394, 0.015168065205216408, -0.06804148852825165, -0.04334186762571335,
- 0.008029334247112274, 0.002460004296153784, 0.013342022895812988, 0.009813209064304829,
- 0.23390214145183563, -0.09735682606697083, -0.012883022427558899, 0.13095326721668243,
- -0.104244664311409, 0.42853617668151855, 0.020309142768383026, -0.004490741062909365,
- -0.02002054639160633, 0.12067811191082001, 0.017308413982391357, 0.00035561947152018547,
- 0.06833408027887344, -0.03571797534823418, 0.015729989856481552, -0.07723662257194519,
- 0.010913463309407234, 0.05699305981397629, 0.023962698876857758, -0.0000897534191608429,
- 0.0046765562146902084, -0.019849039614200592, -0.05578744038939476,
- -0.0010302439332008362, -0.04422663897275925, 0.06675037741661072, 0.0293109193444252,
- -0.07391827553510666, -0.05024123936891556, 0.14401328563690186, -0.06587567180395126,
- 0.03820955753326416, -0.058886975049972534, 0.06183813884854317, -0.004173309542238712,
- 0.057216353714466095, -0.027077969163656235, 0.000964372418820858, -0.04751545190811157,
- 0.030645251274108887, 0.008991619572043419, 0.11019952595233917, 0.05394196882843971,
- -0.040400467813014984, 0.05365373194217682, 0.05502422899007797, -0.04453723877668381,
- -0.07032931596040726, -0.057012468576431274, -0.045193251222372055,
- -0.03942636027932167, -0.010841600596904755, 0.035087645053863525, -0.05024895444512367,
- -0.21346169710159302, 0.028559889644384384, 0.09106046706438065, 0.004937775433063507,
- -0.05672341212630272, 0.03091593086719513, -0.08118001371622086, 0.04159877821803093,
- -0.01724240370094776, -0.047058913856744766, 0.07808928936719894, 0.1226884126663208,
- 0.04455077648162842, 0.12725555896759033, 0.028700033202767372, -0.03656595200300217,
- -0.012423040345311165, -0.012559511698782444, -0.0669749453663826, 0.10321575403213501,
- -0.1276988834142685, -0.07013652473688126, -0.014900380745530128, 0.015213900245726109,
- 0.7055057287216187, 0.11321288347244263, 0.18643724918365479, 0.00516514340415597,
- 0.013929251581430435, 0.17756664752960205, 0.00732867605984211, 0.04714108258485794,
- -0.07529356330633163, -0.02132892981171608, 0.012355973944067955, -0.06275390088558197,
- -0.05546671152114868, 0.028248369693756104, 0.011060239747166634, 0.08332975208759308,
- 0.041874997317790985, 0.08202953636646271, -0.016906049102544785, -0.1258462369441986,
- -0.058023154735565186, 0.04591070115566254, -0.04783346503973007, -0.10590019822120667,
- -0.044512905180454254, 0.04842716455459595, 0.09147366881370544, -0.07214368879795074,
- 0.010306084528565407, -0.046397626399993896, 0.04602610319852829, -0.03131168335676193,
- 0.040453098714351654, -0.04997193068265915, 0.05847147852182388, 0.06490932404994965,
- 0.12264881283044815, -0.028865210711956024, -0.11030943691730499, -0.014097684994339943,
- 0.13285787403583527, -0.03759440407156944, -0.0363912396132946, 0.07112649083137512,
- -0.08254386484622955, 0.019561825320124626, 0.014400186017155647, 0.1308165341615677,
- -0.12412713468074799, 0.004509201273322105, 0.018886176869273186, -0.0467367097735405,
- 0.11246327310800552, -0.017618445679545403, -0.10047808289527893, -0.064773790538311,
- 0.11968124657869339, 0.022842146456241608, 0.11082375794649124, 0.06173751503229141,
- -0.04010955989360809, 0.039311788976192474, 0.07140445709228516, 0.0334792286157608,
- -0.025452902540564537, 0.0723070576786995, 0.06890100240707397, 0.008354751393198967,
- -0.023665811866521835, 0.017005711793899536, 0.05858515948057175, 0.06194224953651428,
- 0.010702523402869701, 0.07711385190486908, 0.0000913543626666069, -0.062082838267087936,
- 0.021740583702921867, 0.031756386160850525, 0.00018317857757210732, 0.09490416944026947,
- -0.07946541160345078, -0.04724596068263054, -0.03376442939043045, -0.009622298181056976,
- 0.0011454368941485882, -0.03292488679289818, 0.06400056183338165, 0.09014001488685608,
- 0.06151895225048065, 0.06946246325969696, -0.007353245746344328, 0.023667292669415474,
- 0.06612753123044968, 0.03062433749437332, 0.11683432757854462, -0.02576199173927307,
- -0.052358224987983704, 0.002637621480971575, -0.023669302463531494,
- 0.012512778863310814, 0.03319203108549118, -0.06702084094285965, -0.04519336670637131,
- -0.06532575935125351, -0.07110554724931717, -0.09094790369272232, -0.0481298491358757,
- -0.0014924658462405205, 0.0016400511376559734, -0.053666211664676666,
- -0.12224271893501282, -0.07310093939304352, 0.06252837926149368, 0.11339952796697617,
- -0.03119465708732605, -0.012944675981998444, -0.11024434119462967, 0.007690683472901583,
- -0.07074820250272751, 0.05694887787103653, -0.017618907615542412, -0.008906937204301357,
- -0.04678436368703842, -0.04555658996105194, 0.015780875459313393, -0.009234354831278324,
- 0.013486281037330627, -0.04030594974756241, -0.03633835166692734, -0.022266654297709465,
- -0.04525630176067352, -0.0009519336745142937, 0.003741871565580368,
- 0.049725428223609924, 0.004678679630160332, 0.05135571211576462, 0.012452654540538788,
- -0.049993518739938736, 0.05647017061710358, -0.056976258754730225, 0.004489302635192871,
- 0.0675654262304306, -0.04865223169326782, 0.04991870000958443, -0.014293882995843887,
- -0.07965691387653351, -0.04857654869556427, 0.013210529461503029,
- -0.0030893986113369465, 0.06134221702814102, -0.04652725160121918,
- -0.008426978252828121, -0.05691533535718918, 0.027821054682135582, 0.09743756055831909,
- -0.05407217890024185, -0.0788521096110344, -0.08723440021276474, 0.16558228433132172,
- 0.011897869408130646, -0.02012401819229126, 0.022266056388616562, -0.0907161682844162,
- 0.02012556791305542, 0.009982509538531303, 0.04232556000351906, 0.010034343227744102,
- 0.08714909851551056, -0.024436552077531815, 0.011304673738777637, 0.04548925161361694,
- -0.09215746819972992, 0.0166914165019989, 0.08726038038730621, 0.444430947303772,
- -0.2419111430644989, 0.10609190165996552, 0.1500888466835022, 0.04654194414615631,
- 0.05263819172978401, -0.021256182342767715, 0.08638850599527359, 0.0630224347114563,
- 0.11784976720809937, 0.11534683406352997, -0.027912816032767296, 0.0010391371324658394,
- -0.0729292631149292, 0.08811795711517334, 0.01218519825488329, 0.04089292883872986,
- -0.025621335953474045, -0.05267321690917015, -0.06615301966667175, 0.05589480698108673,
- -0.06409752368927002, 0.0346752405166626, 0.011409257538616657, -0.060180798172950745,
- 0.004095595329999924, 0.01783685013651848, 0.04160413146018982, -0.055826522409915924,
- 0.017795147374272346, -0.015667039901018143, 0.04771577566862106, 0.042083095759153366,
- 0.06062730401754379, -0.12702038884162903, -0.012835890986025333, -0.01554922852665186,
- -0.08801674842834473, 0.109638512134552, -0.03263399749994278, 0.059471841901540756,
- 0.03905046358704567, -0.03104614093899727, 0.030008308589458466, -0.0634661465883255,
- -0.04564342275261879, 0.04451582580804825, 0.046985164284706116, 0.03863035887479782,
- 0.097205750644207, 0.12364406138658524, -0.06940140575170517, -0.06333732604980469,
- -0.07746376097202301, 0.04387597739696503, 0.13126713037490845, -0.018031084910035133,
- -0.0445159412920475, 0.01881841942667961, -0.03039463423192501, -0.025446217507123947,
- -0.07550828158855438, -0.01828738860785961, 0.005070182494819164, -0.032373279333114624,
- 0.09340173006057739, 0.045316070318222046, -0.04917854815721512, -0.19430693984031677,
- -0.017370712012052536, -0.061456166207790375, 0.013067878782749176, 0.17926117777824402,
- -0.061099711805582047, -0.01594190113246441, 0.03801809996366501, -0.002760135568678379,
- 0.007842466235160828, -0.09815985709428787, 0.023069672286510468, -0.06844618916511536,
- 0.04263043403625488, 0.1038249284029007, 0.04339896887540817, -0.0132686085999012,
- 0.04137536138296127, -0.0852302759885788, 0.09551405906677246, -0.008203419856727123,
- -0.0017328090034425259, 0.017045743763446808, -0.032934412360191345,
- 0.012521577998995781, 0.012054245918989182, -0.0664692372083664, 0.01199327688664198,
- -0.003263674210757017, -0.058527518063783646, -0.07683310657739639,
- -0.06955540925264359, -0.052908316254615784, -0.1143067330121994, 0.03446761518716812,
- -0.12792259454727173, -0.014984078705310822, -0.02386317029595375,
- -0.0004903892986476421, 0.0006624639499932528, 0.061618804931640625,
- 0.07182696461677551, -0.12390309572219849, 0.03611510992050171, -0.04252460598945618,
- 0.07443419843912125, -0.02363966405391693, -0.054498620331287384, 0.0029396414756774902,
- 0.08623987436294556, 0.05130571871995926, -0.040581755340099335, -0.0017250347882509232,
- -0.034700773656368256, 0.051894184201955795, -0.14479893445968628, -0.47406405210494995,
- 0.10975432395935059, -0.011924901977181435, 0.04612322151660919, -0.004956683609634638,
- -0.07200954109430313, 0.03573278337717056, -0.007398348301649094, -0.06984716653823853,
- 0.08738656342029572, -0.07102803140878677, 0.04586668312549591, -0.055122241377830505,
- -0.09561195969581604, -0.04040735214948654, -0.04551532119512558, -0.05741553008556366,
- 0.046680349856615067, -0.0035781515762209892, -0.08189608156681061,
- -0.12404396384954453, 0.05314548313617706, 0.003930236212909222, -0.009467759169638157,
- -0.0024363629054278135, 0.0029505006968975067, -0.006358087528496981,
- -0.04520447924733162, 0.04741155356168747, 0.07919718325138092, 0.05193269997835159,
- -0.08464941382408142, -0.059908293187618256, 0.06633056700229645, 0.023522570729255676,
- 0.12107415497303009, -0.015801526606082916, -0.004035593010485172, -0.09389939904212952,
- 0.11186198890209198, 0.07311473041772842, 0.1836508810520172, -0.03978046774864197,
- 0.05033116787672043, 0.012745914980769157, 0.15726794302463531, 0.06188233941793442,
- -0.011072305962443352, -0.0456734374165535, -0.006681165657937527, 0.058972109109163284,
- 0.003388779005035758, 0.0641956552863121, -0.11409281939268112, -0.039495766162872314,
- -0.050004277378320694, -0.07906883209943771, -0.013840924948453903,
- 0.013467879965901375, 0.2095307558774948, 0.009571082890033722, 0.0383668877184391,
- 0.009181332774460316, -0.06191891059279442, 0.016941847279667854, -0.05097176134586334,
- -0.06454476714134216, 0.001178530976176262, -0.004386880435049534, 0.012084050104022026,
- -0.06417565047740936, -0.10496839880943298, -0.01013440452516079, 0.020693089812994003,
- 0.004562167916446924, 0.11944511532783508, -0.029222702607512474, 0.05347772315144539,
- -0.03893866017460823, 0.12161370366811752, 0.03971586376428604, -0.03235357254743576,
- 0.05351043492555618, 0.08703997731208801, 0.02239173650741577, 0.0093744657933712,
- 0.007263443898409605, -0.04508072882890701, -0.010061804205179214, 0.15199601650238037,
- -0.03754269704222679, 0.10349767655134201, 0.059711966663599014, 0.01806553453207016,
- -0.06163612753152847, 0.021281857043504715, -0.03887699171900749, 0.049018532037734985,
- -0.49425989389419556, -0.02179771289229393, 0.06980352848768234, 0.006833869032561779,
- 0.034254252910614014, 0.11819049715995789, 0.05423779785633087, -0.03394748270511627,
- -0.04108911752700806, -0.05672823637723923, 0.16921663284301758, -0.01696031540632248,
- 0.027444889768958092, -0.10741010308265686, 0.015285860747098923, 0.07070064544677734,
- -0.003306171391159296, 0.01196044310927391, 0.05219636484980583, -0.2257227897644043,
- -0.003966156858950853, -0.010833550244569778, 0.20265112817287445, 0.016748519614338875,
- -0.012292539700865746, 0.0710909366607666, -0.07120921462774277, -0.008753381669521332,
- 0.06237589567899704, -0.001279851421713829, 0.008184841834008694, -0.030129436403512955,
- -0.012840226292610168, 0.10133244097232819, 0.0871051549911499, 0.08791409432888031,
- -0.006827850826084614, 12.11393928527832, 0.08360414206981659, 0.05558403581380844,
- -0.08530133962631226, 0.07188582420349121, -0.0695570781826973, 0.03589928522706032,
- -0.1331900656223297, 0.11370878666639328, 0.1449604332447052, -0.0011263098567724228,
- -0.032802142202854156, -0.012504925020039082, -0.09846605360507965, 0.02024139277637005,
- -0.06310737133026123, -0.046948667615652084, -0.023679077625274658,
- 0.042294055223464966, -0.04270245134830475, -0.044566474854946136, 0.060150180011987686,
- 0.034009672701358795, 0.010227103717625141, -0.08749248087406158, 0.014499788172543049,
- 0.018240243196487427, -0.03117518499493599, 0.003370977472513914, 0.07545517385005951,
- -0.00589978601783514, 0.04237131401896477, 0.03256877139210701, 0.02972857654094696,
- 0.01570058800280094, 0.10508212447166443, 0.05242328345775604, 0.06615540385246277,
- 0.014526819810271263, 0.06760776042938232, -0.011975017376244068, 0.028593257069587708,
- 0.017699556425213814, 0.022403795272111893, 0.04392746463418007, 0.044446807354688644,
- 0.03892889246344566, 0.15980952978134155, -0.01970069855451584, 0.06138933449983597,
- 0.10554863512516022, -0.01976674608886242, 0.09542812407016754, 0.01759166456758976,
- -0.004192796070128679, 0.03148309513926506, 0.03632817789912224, -0.07003119587898254,
- 0.11795996129512787, 0.052885886281728745, -0.02557709626853466, 0.13976845145225525,
- 0.020437119528651237, 0.0952727198600769, -0.02719041146337986, 0.052192408591508865,
- 0.0630417913198471, 0.05974330008029938, -0.1239938884973526, -0.09265551716089249,
- 0.06827950477600098, -0.07798119634389877, -0.08739514648914337, 0.06372073292732239,
- 0.09088204801082611, -0.004550904035568237, 0.022091280668973923, -0.06415091454982758,
- 0.012813438661396503, -0.058672431856393814, 0.016939692199230194, 0.048837460577487946,
- 0.023259295150637627, -0.008208999410271645, 0.07030540704727173, 0.04604700207710266,
- 0.06757071614265442, 0.06792724132537842, -0.019788062199950218, -0.11287686973810196,
- -0.04010965675115585, 0.08996109664440155, -0.038473643362522125, -0.08235307782888412,
- 0.059778034687042236, -0.06412943452596664, 0.09241269528865814, -0.20303213596343994,
- 0.09422709047794342, 0.10210117697715759, -0.07666555792093277, -0.003620907198637724,
- -0.013668391853570938, 0.07220131158828735, 0.011638914234936237, 0.03438439220190048,
- -0.12127843499183655, 0.059763774275779724, 0.024493791162967682, 0.05761165916919708,
- -0.04369469732046127, 0.08539018034934998, 0.09211665391921997, -0.07496772706508636,
- 0.009534284472465515, 0.0697687417268753, -0.010518018156290054, -0.018127521499991417,
- 0.05275190249085426, 0.11572262644767761, -0.06617289781570435, -0.06000203639268875,
- -0.004712178837507963, -0.03944049030542374, -0.01964261196553707, -0.08111302554607391,
- 0.005550391972064972, 0.036773063242435455, -0.048623226583004, 0.01249284390360117,
- 0.048576027154922485, 0.04946969449520111, 0.05599424988031387, -0.07066395878791809,
- 0.0688844695687294, -0.07451847940683365, -0.07479484379291534, 0.04467551037669182,
- 0.042262621223926544, 0.0681842714548111, -0.08141632378101349, -0.026475317776203156,
- -0.030863258987665176, -0.11191508173942566, 0.05091572180390358, 0.13307809829711914,
- 0.015273765660822392, 0.061404433101415634, 0.010834470391273499, -0.07314573228359222,
- -0.06671365350484848, 0.0767364576458931, 0.02499666064977646, 0.00045407807920128107,
- 0.03821764886379242, -0.06599947065114975, -0.04998743534088135, 0.11889888346195221,
- -0.03573382645845413, 0.006450807675719261, -0.034217704087495804, -0.04078421741724014,
- 0.14583194255828857, 0.12278728187084198, 0.027676455676555634, 0.04917681962251663,
- 0.02476058527827263, -0.03405873477458954, 0.008715962059795856, -0.014969045296311378,
- -0.005427403841167688, -0.05041703209280968, -0.11656080186367035, -0.09002403169870377,
- -0.0040702223777771, 0.10800802707672119, 0.07876576483249664, -0.1363627016544342,
- 0.014426670037209988, -0.01403720024973154
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 141,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 187,
- "similarity": 0.9982644319534302
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 74,
- "similarity": 0.9982152581214905
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 175,
- "similarity": 0.9981982707977295
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Dexter Thomas"],
- "epoch_date_downloaded": 1635120000,
- "epoch_date_modified": 1635120000,
- "epoch_date_submitted": 1635120000,
- "flag": null,
- "report_number": 1480,
- "source_domain": "vice.com",
- "submitters": ["Sean McGregor"],
- "title": "Is This Beverly Hills Cop Playing Sublime’s ‘Santeria’ to Avoid Being Live-Streamed?",
- "url": "https://www.vice.com/en/article/bvxb94/is-this-beverly-hills-cop-playing-sublimes-santeria-to-avoid-being-livestreamed"
- },
- {
- "__typename": "Report",
- "authors": ["Tristan Greene"],
- "epoch_date_downloaded": 1635120000,
- "epoch_date_modified": 1635120000,
- "epoch_date_submitted": 1635120000,
- "flag": null,
- "report_number": 1479,
- "source_domain": "thenextweb.com",
- "submitters": ["Patrick Hall (BNH.ai)"],
- "title": "Beverly Hills cops try to weaponize Instagram’s algorithms in failed attempt to thwart live streamers",
- "url": "https://thenextweb.com/news/beverly-hills-cops-try-to-weaponize-instagrams-algorithms-in-failed-attempt-to-thwart-live-streamers"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "instagram",
- "name": "Instagram"
- },
- {
- "__typename": "Entity",
- "entity_id": "facebook",
- "name": "Facebook"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "instagram",
- "name": "Instagram"
- },
- {
- "__typename": "Entity",
- "entity_id": "facebook",
- "name": "Facebook"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "facebook-users-of-disabilities",
- "name": "Facebook users of disabilities"
- },
- {
- "__typename": "Entity",
- "entity_id": "adaptive-fashion-retailers",
- "name": "adaptive fashion retailers"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1481],
- "vector": [
- -0.053257253021001816, 0.08524872362613678, 0.012522861361503601, -0.12831662595272064,
- 0.10072089731693268, 0.044669799506664276, -0.01089049968868494, 0.08070223778486252,
- 0.0820474624633789, -0.15095466375350952, 0.012894931249320507, 0.0484200082719326,
- 0.0044197803363204, -0.1152433305978775, 0.0400463230907917, -0.06372812390327454,
- -0.09258025139570236, -0.018853530287742615, -0.009393750689923763,
- -0.18710222840309143, -0.0013026578817516565, -0.01626081019639969, 0.01882806047797203,
- 0.153299942612648, -0.03730398416519165, 0.007027587853372097, 0.14427992701530457,
- 0.14828932285308838, 0.006556125357747078, 0.053044773638248444, -0.02110743708908558,
- -0.1096288412809372, 0.12593720853328705, 0.020285101607441902, -0.07121080160140991,
- 0.13796350359916687, -0.01673446223139763, -0.03448272868990898, 0.01359244342893362,
- -0.015104250982403755, 0.04092972353100777, 0.23129263520240784, 0.013466345146298409,
- -0.03593240678310394, 0.030504509806632996, -0.020631521940231323, 0.03405069559812546,
- 0.060514066368341446, -0.006115765776485205, -0.017908606678247452,
- -0.017450576648116112, 0.04229157790541649, -0.0362834669649601, 0.05002471059560776,
- -0.10954096168279648, 0.10331786423921585, 0.054031383246183395, -0.05392361804842949,
- 0.01219520065933466, -0.04649796709418297, -0.015783164650201797, -0.27728691697120667,
- -0.05129963532090187, -0.06304357945919037, 0.08965881168842316, -0.06547031551599503,
- 0.017055541276931763, 0.07036755979061127, 0.0010674749501049519, 0.09938826411962509,
- 0.05320519208908081, -0.041191693395376205, -0.05308173596858978, 0.009238269180059433,
- -0.030008289963006973, -0.061390750110149384, 0.033656779676675797, 0.18926532566547394,
- -0.15174318850040436, -0.03640501946210861, 0.13725681602954865, -0.12073525786399841,
- 0.5038784742355347, -0.03632761910557747, -0.07689055800437927, 0.0023714073467999697,
- 0.09144915640354156, 0.0717039555311203, 0.042852096259593964, 0.055927082896232605,
- -0.053097356110811234, 0.008090971037745476, -0.027284912765026093,
- 0.0006743863341398537, 0.11217731237411499, -0.00045049411710351706,
- -0.038691289722919464, 0.012115095742046833, 0.024775637313723564, -0.09744749218225479,
- 0.015384039841592312, -0.03705544024705887, 0.13156786561012268, 0.13536326587200165,
- -0.03302827477455139, -0.014035475440323353, 0.10186703503131866, -0.06633352488279343,
- 0.036903589963912964, -0.05256995931267738, 0.01909342221915722, -0.017746398225426674,
- 0.04124755784869194, 0.010629700496792793, 0.04053688049316406, -0.05350978299975395,
- -0.03428401052951813, 0.07007861882448196, 0.13270437717437744, 0.026317447423934937,
- 0.035893749445676804, 0.0608629435300827, 0.044983506202697754, -0.09669998288154602,
- -0.04860399290919304, -0.08597433567047119, -0.057958293706178665, -0.0270537082105875,
- -0.027135353535413742, 0.05510074272751808, -0.11118146777153015, -0.22783318161964417,
- 0.0577506460249424, 0.1183476597070694, -0.02891707234084606, -0.05966845527291298,
- -0.018357479944825172, -0.11456399410963058, 0.046658650040626526, -0.0432869978249073,
- -0.05581619217991829, 0.027740539982914925, 0.012957173399627209, 0.06606068462133408,
- 0.06863748282194138, 0.1009274423122406, -0.04167208820581436, -0.0608116015791893,
- 0.04409184679389, -0.022516317665576935, 0.17688573896884918, -0.18818791210651398,
- -0.018275653943419456, 0.00166157481726259, -0.019404476508498192, 0.7257099151611328,
- 0.13677820563316345, 0.22400864958763123, -0.014271711930632591, -0.05741747096180916,
- 0.2323969602584839, -0.04503080993890762, 0.06508200615644455, -0.14802563190460205,
- -0.03659898042678833, 0.030503196641802788, -0.13042111694812775, -0.07365778833627701,
- 0.06555699557065964, -0.011030417867004871, 0.11428912729024887, 0.04770825430750847,
- 0.13193751871585846, -0.005643934477120638, -0.16148750483989716, -0.0245291106402874,
- 0.141876682639122, 0.0021185078658163548, -0.1338428407907486, -0.03705447167158127,
- 0.01967822015285492, 0.12768740952014923, -0.11118782311677933, 0.049787502735853195,
- -0.11766290664672852, 0.09810084849596024, -0.03319128602743149, 0.062483176589012146,
- -0.0337701216340065, 0.03664616867899895, 0.017483368515968323, 0.09946970641613007,
- -0.006204796023666859, -0.09246332198381424, -0.03651133179664612, 0.11508490145206451,
- -0.04045569896697998, -0.03155238553881645, 0.08102051913738251, -0.07738451659679413,
- 0.03496890887618065, 0.023474179208278656, 0.14791052043437958, -0.14069755375385284,
- -0.04099177569150925, 0.020446624606847763, -0.08411071449518204, 0.03091067261993885,
- -0.023123865947127342, -0.05357520654797554, -0.10138547420501709, 0.15238776803016663,
- 0.030183961614966393, 0.04908948019146919, 0.06189468502998352, -0.04087410122156143,
- 0.014208660461008549, 0.1162596046924591, -0.0059241787530481815, 0.019378947094082832,
- 0.043292704969644547, 0.03537013381719589, -0.03159739822149277, -0.08940998464822769,
- -0.00040169706335291266, 0.03261948376893997, 0.08820409327745438,
- -0.022137753665447235, 0.06321725249290466, -0.03716013580560684, -0.0983002781867981,
- 0.029758943244814873, 0.03949841484427452, 0.002494900720193982, 0.08724666386842728,
- -0.04901200532913208, -0.061724159866571426, -0.010706967674195766, 0.03411754593253136,
- 0.00919726025313139, -0.021056896075606346, 0.10653246194124222, 0.14655546844005585,
- 0.06604427844285965, 0.04426324740052223, 0.02927866205573082, 0.10254544019699097,
- 0.06821918487548828, -0.04658723250031471, 0.08601196855306625, -0.011446843855082989,
- -0.11549440771341324, -0.06650403141975403, 0.027785783633589745, 0.03442729264497757,
- 0.014658202417194843, -0.06389028578996658, -0.036622047424316406, -0.09212521463632584,
- -0.021405477076768875, -0.12523119151592255, -0.04919026792049408, 0.030450688675045967,
- 0.06432554870843887, -0.05500071123242378, -0.11585157364606857, -0.10859373956918716,
- 0.010226847603917122, 0.12439310550689697, -0.004478442016988993, -0.039566196501255035,
- -0.1084599494934082, 0.03365816920995712, -0.025386996567249298, 0.0555332712829113,
- -0.051974762231111526, 0.03354606404900551, -0.03337513282895088, -0.053061436861753464,
- 0.0532541386783123, -0.017777422443032265, 0.02435261197388172, -0.07939814031124115,
- -0.11682699620723724, -0.026806505396962166, 0.008257519453763962, 0.011124116368591785,
- -0.004854707047343254, 0.031234651803970337, 0.0024723862297832966, 0.0858428031206131,
- -0.018411539494991302, -0.05233437567949295, 0.05906251445412636, -0.0446026548743248,
- 0.00047436589375138283, 0.07271526008844376, -0.06193302571773529, 0.03555155545473099,
- 0.010066992603242397, -0.04325057566165924, -0.021891459822654724, 0.03604007884860039,
- -0.012702465057373047, 0.06694874912500381, 0.007327336817979813, 0.0007769286748953164,
- -0.07276251167058945, -0.0067644319497048855, 0.08383668959140778, -0.05367360636591911,
- -0.17275911569595337, -0.03288249671459198, 0.09975852072238922, -0.0009579001343809068,
- -0.014177544042468071, 0.021109994500875473, -0.038549382239580154, 0.04601309821009636,
- -0.0123043367639184, 0.039088811725378036, 0.024090932682156563, 0.05926864221692085,
- -0.06220810487866402, 0.05517173931002617, 0.10855042189359665, -0.03824601322412491,
- 0.014434254728257656, 0.08686372637748718, 0.4359709322452545, -0.2392553687095642,
- 0.1058778390288353, 0.12485513836145401, 0.03653832525014877, 0.0473913736641407,
- -0.028336700052022934, 0.07731878012418747, 0.08076569437980652, 0.13255374133586884,
- 0.08427998423576355, -0.07205240428447723, -0.027184074744582176, -0.1338379979133606,
- 0.1527714729309082, -0.045907653868198395, 0.0660039633512497, 0.002610812894999981,
- -0.07566902786493301, -0.01895730569958687, 0.03439481928944588, -0.08069726079702377,
- -0.05480033904314041, -0.0675807073712349, -0.010376270860433578, 0.04456036537885666,
- 0.017219308763742447, 0.07315845787525177, -0.04144478589296341, 0.03287512809038162,
- -0.022520411759614944, 0.057243190705776215, 0.018962422385811806, 0.07283560186624527,
- -0.1285649985074997, 0.021706949919462204, -0.07336273044347763, -0.09868662804365158,
- 0.09683910757303238, -0.05487621948122978, 0.08366617560386658, 0.012773232534527779,
- -0.028757771477103233, 0.049962032586336136, 0.0326884426176548, -0.08002220094203949,
- 0.041848063468933105, 0.02804606966674328, 0.04863430932164192, 0.10294727236032486,
- 0.20200546085834503, -0.07085476815700531, -0.089805006980896, -0.08247549831867218,
- 0.058971334248781204, 0.1454867124557495, 0.02791750244796276, 0.02439967729151249,
- 0.06630763411521912, -0.03120333142578602, -0.034270040690898895, -0.07596540451049805,
- -0.05442188307642937, -0.030956758186221123, -0.05710219219326973, 0.08600366860628128,
- 0.03095119446516037, -0.0004535278130788356, -0.19575135409832, -0.016918929293751717,
- -0.034606385976076126, 0.012611686252057552, 0.14618811011314392, -0.07698531448841095,
- 0.05052120238542557, -0.042997341603040695, -0.03014630451798439, 0.028848892077803612,
- -0.06978637725114822, 0.01593407802283764, -0.04562545567750931, 0.03077772818505764,
- 0.07402510195970535, 0.04014475271105766, -0.02454066462814808, 0.10083141922950745,
- -0.10956129431724548, 0.08540370315313339, 0.053257353603839874, -0.048775896430015564,
- 0.018125949427485466, -0.09278394281864166, -0.0039642793126404285, 0.06878697872161865,
- -0.07783643156290054, 0.028266919776797295, -0.04478299245238304, -0.08941192924976349,
- -0.05647584795951843, -0.07635132223367691, -0.06862813234329224, -0.0673096776008606,
- 0.00354174361564219, -0.1877135932445526, -0.012612496502697468, -0.033827170729637146,
- 0.031051574274897575, -0.019058972597122192, 0.06951378285884857, 0.0009493032703176141,
- -0.1669008880853653, -0.007762018125504255, -0.04599650576710701, 0.048810962587594986,
- -0.028962820768356323, -0.019980313256382942, 0.06609486788511276, 0.08720485866069794,
- 0.042409513145685196, 0.033391185104846954, 0.04451492801308632, -0.06153911352157593,
- 0.02365046925842762, -0.1528371274471283, -0.5033613443374634, 0.01941334456205368,
- 0.026490559801459312, -0.0031474726274609566, 0.027652695775032043,
- -0.07580020278692245, 0.14153295755386353, 0.004265108145773411, -0.07845418900251389,
- 0.1387869268655777, -0.059483423829078674, 0.02268972434103489, -0.01912849396467209,
- -0.007375879678875208, -0.03650764375925064, -0.07180846482515335, -0.05633484572172165,
- 0.024594776332378387, -0.07863033562898636, -0.061970703303813934, -0.13379931449890137,
- 0.04003384709358215, 0.02212940901517868, -0.01077671442180872, 0.029700111597776413,
- 0.025993112474679947, -0.00684349937364459, -0.0021158845629543066, 0.04623263701796532,
- 0.0664198249578476, 0.06033826246857643, -0.08609604090452194, -0.000761984963901341,
- 0.09236177057027817, 0.014679152518510818, 0.17775900661945343, 0.039842624217271805,
- 0.02939174696803093, -0.09205029904842377, 0.07030650973320007, 0.06505879759788513,
- 0.18198679387569427, -0.034674178808927536, -0.01506736595183611, 0.00869939848780632,
- 0.15618667006492615, 0.06160595268011093, -0.0023895592894405127, -0.04345010221004486,
- 0.026026397943496704, -0.007907799445092678, -0.020884064957499504, 0.11985224485397339,
- -0.08191607892513275, -0.02579035423696041, -0.03340756893157959, -0.008679496124386787,
- -0.006423323415219784, -0.03052268549799919, 0.20498301088809967, 0.006574632599949837,
- 0.01341885607689619, 0.054140087217092514, -0.03802978992462158, 0.019869454205036163,
- -0.1437395066022873, -0.06737840920686722, -0.005364648997783661, -0.016776621341705322,
- 0.010073048062622547, -0.05100072920322418, -0.11847539246082306, -0.032420091331005096,
- -0.010615759529173374, 0.004704543389379978, 0.1187380850315094, -0.026303738355636597,
- -0.01058975514024496, 0.010728134773671627, 0.15021184086799622, 0.02781309187412262,
- -0.03541841730475426, 0.07245413213968277, 0.11205476522445679, 0.06656245142221451,
- 0.04976077750325203, -0.03485845401883125, -0.1031910702586174, -0.009734840132296085,
- 0.2029922753572464, -0.05942283943295479, 0.1318345069885254, 0.043299172073602676,
- -0.07370887696743011, -0.0673498585820198, 1.316584530286491e-7, -0.046238042414188385,
- 0.006132228299975395, -0.4477156102657318, 0.03965282067656517, 0.11253557354211807,
- 0.00972327683120966, 0.020586246624588966, 0.12722904980182648, 0.007750616874545813,
- -0.03529997915029526, -0.08409193903207779, -0.10475869476795197, 0.17194752395153046,
- -0.011779643595218658, 0.04025435075163841, -0.21115493774414062, 0.037524666637182236,
- 0.09378006309270859, -0.016244174912571907, 0.027513965964317322, 0.08161956816911697,
- -0.2272922396659851, -0.019591614603996277, -0.008586832322180271, 0.13784338533878326,
- 0.0484301820397377, 0.03697013109922409, 0.11014161258935928, -0.03719409182667732,
- 0.002573965350165963, 0.012707928195595741, 0.006694209761917591, 0.07305873185396194,
- -0.0641399472951889, -0.011407144367694855, 0.17278878390789032, 0.11031975597143173,
- 0.029305292293429375, -0.0033545237965881824, 12.16989803314209, 0.06736321747303009,
- 0.09235460311174393, -0.12685036659240723, 0.058369144797325134, -0.011315781623125076,
- 0.008885826915502548, -0.11150037497282028, 0.0387953482568264, 0.17213642597198486,
- -0.053459517657756805, -0.03320607915520668, -0.013178404420614243,
- -0.14697647094726562, 0.015565505251288414, -0.1125451996922493, -0.10110142827033997,
- -0.029954859986901283, 0.044535454362630844, -0.04900253936648369, -0.06756098568439484,
- 0.057095736265182495, 0.07527819275856018, 0.022781267762184143, -0.053871896117925644,
- 0.043657246977090836, 0.05492032319307327, -0.020311545580625534, -0.009088167920708656,
- 0.003675636136904359, 0.01909380406141281, 0.04909788817167282, 0.021033506840467453,
- 0.007297880481928587, 0.023422565311193466, 0.09592293202877045, 0.15365585684776306,
- 0.054169539362192154, -0.001967929769307375, 0.06272581964731216, 0.01775602251291275,
- 0.025936467573046684, 0.039188750088214874, 0.06607993692159653, 0.03653491660952568,
- 0.009092753753066063, -0.01633298397064209, 0.1687430590391159, -0.007611008360981941,
- 0.03126255422830582, 0.12056036293506622, 0.0010515181347727776, 0.1109667494893074,
- 0.044147271662950516, -0.042432915419340134, 0.07021062076091766, -0.07377292215824127,
- -0.08104072511196136, 0.09727542847394943, 0.0032274082768708467, -0.03803478181362152,
- 0.09363643825054169, 0.020023388788104057, 0.12350797653198242, 0.022698067128658295,
- 0.02274843491613865, 0.04089531674981117, 0.09319524466991425, -0.12263193726539612,
- -0.15899449586868286, 0.017775725573301315, -0.10054904222488403, -0.13181142508983612,
- 0.09103146195411682, 0.2095634937286377, -0.025940321385860443, 0.011559032835066319,
- 0.02288905158638954, 0.05371646583080292, -0.042436644434928894, -0.004924865905195475,
- 0.1093389093875885, 0.01085967943072319, -0.009716847911477089, 0.03349897637963295,
- 0.014828509651124477, 0.09635026007890701, 0.07331633567810059, -0.004369049798697233,
- -0.07074698060750961, -0.08669621497392654, 0.07924225181341171, 0.0011628081556409597,
- -0.07094886153936386, 0.032342903316020966, -0.0988256111741066, 0.04617129638791084,
- -0.22025704383850098, 0.11589330434799194, 0.05476764962077141, -0.07091197371482849,
- -0.05227489024400711, -0.02811279520392418, 0.04739036783576012, -0.005302670411765575,
- 0.02535589411854744, -0.019984589889645576, -0.0036457255482673645,
- 0.022835537791252136, 0.06082450971007347, -0.016215551644563675, 0.023402998223900795,
- 0.07585783302783966, -0.041795141994953156, 0.02577337808907032, 0.06994207203388214,
- -0.09169545769691467, -0.02252204902470112, 0.057479050010442734, 0.025027280673384666,
- -0.07902995496988297, -0.07043250650167465, -0.07160425931215286, -0.032250627875328064,
- -0.003231863956898451, -0.08330585062503815, 0.004217761568725109, 0.045215215533971786,
- -0.06121033802628517, -0.03722592070698738, 0.08840257674455643, 0.0719786137342453,
- 0.09522709995508194, -0.012641830369830132, 0.10116028040647507, -0.11331336200237274,
- -0.019788796082139015, 0.03145970031619072, 0.011843806132674217, 0.09014727175235748,
- -0.04611395671963692, -0.05659034103155136, -0.07605890929698944, -0.1570718139410019,
- 0.04390837997198105, 0.1018344834446907, -0.003916620742529631, -0.009985825046896935,
- 0.0014879374066367745, -0.07644680887460709, -0.06489007920026779, 0.08155567944049835,
- 0.05590825155377388, 0.09061083197593689, 0.05417852848768234, -0.09251850843429565,
- -0.046462200582027435, 0.06459087133407593, -0.05219819396734238, 0.04108211770653725,
- 0.008735139854252338, -0.03987117111682892, 0.1574437916278839, 0.06631310284137726,
- 0.03178878873586655, 0.05740702152252197, 0.07844609022140503, -0.025705264881253242,
- 0.023269562050700188, -0.013125689700245857, 0.041965141892433167,
- -0.012547160498797894, -0.0720389187335968, -0.09114114940166473, 0.04302851855754852,
- 0.07305069267749786, 0.04338918626308441, -0.11112027615308762, 0.006976679433137178,
- -0.05480583384633064
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 142,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 199,
- "similarity": 0.9979583621025085
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 163,
- "similarity": 0.9978814125061035
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 146,
- "similarity": 0.9977213740348816
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Vanessa Friedman"],
- "epoch_date_downloaded": 1635120000,
- "epoch_date_modified": 1635120000,
- "epoch_date_submitted": 1635120000,
- "flag": null,
- "report_number": 1481,
- "source_domain": "nytimes.com",
- "submitters": ["Patrick Hall (BNH.ai)"],
- "title": "Why Is Facebook Rejecting These Fashion Ads?",
- "url": "https://www.nytimes.com/2021/02/11/style/disabled-fashion-facebook-discrimination.html"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "twitter",
- "name": "Twitter"
- },
- {
- "__typename": "Entity",
- "entity_id": "facebook",
- "name": "Facebook"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "twitter",
- "name": "Twitter"
- },
- {
- "__typename": "Entity",
- "entity_id": "facebook",
- "name": "Facebook"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "twitter-users-of-small-language-groups",
- "name": "Twitter users of small language groups"
- },
- {
- "__typename": "Entity",
- "entity_id": "facebook-users-of-small-language-groups",
- "name": "Facebook users of small language groups"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1482],
- "vector": [
- -0.10038445889949799, 0.0509418323636055, 0.03798125311732292, -0.10064513236284256,
- 0.00010935281170532107, -0.010277722962200642, -0.011175721883773804,
- 0.05783525109291077, 0.06206938996911049, -0.12149198353290558, -0.04789526388049126,
- -0.020220138132572174, -0.011145967990159988, -0.13841024041175842, 0.02117275260388851,
- -0.17675626277923584, -0.03815187141299248, -0.010512606240808964, -0.03353437781333923,
- -0.15339840948581696, -0.049509670585393906, 0.019991852343082428, 0.029794784262776375,
- 0.12589138746261597, -0.05593109130859375, 0.0690077617764473, 0.1285245567560196,
- 0.17457634210586548, -0.07159943133592606, 0.0800190195441246, -0.07541012763977051,
- -0.07918251305818558, 0.1756458580493927, 0.03862443193793297, 0.012152117677032948,
- 0.05496782809495926, 0.013982191681861877, -0.05214477702975273, -0.023917676880955696,
- -0.01767725683748722, 0.03192462772130966, 0.2521747350692749, -0.017171159386634827,
- -0.008985026739537716, 0.04369254782795906, -0.05399707332253456, -0.02202632650732994,
- 0.09311693161725998, -0.004397965036332607, 0.009883597493171692, -0.014443335123360157,
- 0.03700907155871391, -0.019728481769561768, 0.03222521021962166, -0.08100000768899918,
- 0.05928770452737808, 0.04553670063614845, -0.10480788350105286, -0.03303451091051102,
- -0.08987680077552795, -0.06980697810649872, -0.29155653715133667, -0.05102973431348801,
- -0.08034984022378922, 0.09967099875211716, -0.06590528786182404, -0.03991836681962013,
- 0.0010763393947854638, 0.021904993802309036, 0.07772479206323624, 0.08673682063817978,
- -0.03406247869133949, 0.022378208115696907, 0.032873738557100296, 0.05955095961689949,
- 0.01890762336552143, 0.02233964577317238, 0.2789844870567322, -0.12821391224861145,
- -0.019585173577070236, 0.0815395638346672, -0.08165738731622696, 0.5207777619361877,
- 0.00831187516450882, -0.010707169771194458, 0.008122224360704422, 0.0855756402015686,
- 0.00341668538749218, 0.05881727114319801, 0.07591672241687775, -0.009015779942274094,
- 0.062345411628484726, -0.08826006948947906, 0.015067929401993752, 0.04726150259375572,
- 0.07269297540187836, -0.008750752545893192, 0.03316841647028923, 0.012488444335758686,
- -0.03132122382521629, -0.0077383252792060375, -0.013483068905770779,
- 0.12023943662643433, 0.10508788377046585, -0.06493774056434631, -0.029890676960349083,
- 0.10910025238990784, -0.07398377358913422, 0.048182759433984756, -0.05894448235630989,
- 0.0597827285528183, -0.052576079964637756, 0.07351293414831161, 0.046987179666757584,
- 0.0076178633607923985, -0.020969845354557037, 0.02985251508653164, 0.050108179450035095,
- 0.07991443574428558, 0.07523312419652939, 0.02662121318280697, 0.04896615445613861,
- 0.08553366363048553, -0.014290262013673782, -0.07374612987041473, 0.01180153526365757,
- -0.03455298766493797, -0.038241155445575714, -0.04568670690059662, 0.03660299628973007,
- -0.051214661449193954, -0.25337541103363037, 0.004437911789864302, 0.026642683893442154,
- -0.018134700134396553, -0.01651712879538536, 0.010063293389976025, -0.06833407282829285,
- 0.01420590654015541, -0.015388506464660168, -0.06993246078491211, 0.06939402967691422,
- -0.04162606969475746, 0.0659811869263649, 0.09750263392925262, 0.06968303769826889,
- -0.03634052351117134, -0.0010943608358502388, 0.018445361405611038,
- -0.043292928487062454, 0.08114998787641525, -0.11788436770439148,
- -0.00038012792356312275, -0.005641103256493807, 0.040420059114694595,
- 0.6934265494346619, 0.1388854831457138, 0.16001099348068237, 0.029538873583078384,
- -0.027363307774066925, 0.22126415371894836, 0.038900263607501984, 0.05627233535051346,
- -0.1045369952917099, -0.05746679753065109, 0.010066093876957893, -0.09840553253889084,
- -0.10489686578512192, 0.02666657045483589, 0.04285261407494545, 0.09777417778968811,
- -0.01857534423470497, 0.08770232647657394, 0.0336226224899292, -0.1429017335176468,
- -0.03892848640680313, 0.1691960096359253, -0.009598583914339542, -0.1155906692147255,
- -0.07004724442958832, 0.01757078990340233, 0.1032840833067894, -0.09092891961336136,
- 0.04783027246594429, -0.0787048265337944, 0.06423084437847137, 0.011413858272135258,
- 0.09212209284305573, -0.0027484195306897163, 0.006489831954240799,
- -0.0006425924366340041, 0.03145159035921097, -0.0004860289045609534,
- -0.09562471508979797, -0.03781639784574509, 0.10033784806728363, -0.005568515043705702,
- -0.07162421941757202, 0.1086975485086441, -0.08398770540952682, -0.0021011990029364824,
- -0.021012285724282265, 0.12570923566818237, -0.1943589597940445, 0.011578287929296494,
- -0.04494573175907135, -0.1297869235277176, 0.13528352975845337, -0.036480750888586044,
- -0.07875705510377884, -0.06656946986913681, 0.17915384471416473, 0.049529388546943665,
- 0.054677825421094894, 0.0643816739320755, 0.004199317190796137, 0.072710782289505,
- 0.15096376836299896, 0.05606430023908615, 0.0014414775650948286, 0.06852752715349197,
- 0.027263140305876732, -0.048346418887376785, -0.017896059900522232, 0.10697796195745468,
- 0.039912428706884384, 0.028638064861297607, -0.008654141798615456, 0.06584567576646805,
- 0.0033211864065378904, -0.051590122282505035, 0.040317289531230927, 0.02230246365070343,
- -0.05474955216050148, 0.08871098607778549, -0.05458220839500427, 0.010202573612332344,
- -0.03713168948888779, -0.015153627842664719, 0.020632078871130943,
- -0.007134150713682175, 0.09368585795164108, 0.103123240172863, 0.10542377084493637,
- 0.005782441236078739, 0.03596073389053345, 0.019689243286848068, 0.012093564495444298,
- -0.0535273551940918, 0.10036474466323853, -0.00025497039314359426,
- -0.049591463059186935, 0.004266148898750544, 0.03855496644973755, 0.001514345407485962,
- 0.013174820691347122, -0.10010147094726562, -0.013311900198459625, 0.04370583966374397,
- -0.03778204321861267, -0.09900452196598053, -0.02180957980453968, 0.04173865541815758,
- 0.013498901389539242, -0.08056345582008362, -0.09517388790845871, -0.09079422801733017,
- -0.02928639017045498, 0.09838374704122543, -0.006050427909940481, 0.006014324724674225,
- -0.15652869641780853, -0.03510591387748718, -0.045747410506010056, 0.07497143000364304,
- -0.05503107234835625, 0.0354347787797451, -0.0042634992860257626, 0.008720983751118183,
- 0.0443977527320385, 0.07155998051166534, -0.004909656010568142, -0.01606551557779312,
- -0.029504215344786644, -0.08638176321983337, -0.012313727289438248,
- 0.025128649547696114, -0.023285560309886932, 0.03513193130493164, -0.008460783399641514,
- 0.01004375983029604, -0.05078447610139847, -0.05486094206571579, 0.07818508893251419,
- -0.0376252606511116, -0.029253235086798668, 0.11063048988580704, -0.07551848888397217,
- -0.015227614901959896, 0.01713569089770317, -0.08201906085014343, -0.015499706380069256,
- -0.0077249291352927685, -0.03978491201996803, -0.006932191550731659,
- -0.02552536502480507, -0.04484538361430168, 0.01589076779782772, -0.0689845010638237,
- 0.10436772555112839, -0.048716627061367035, -0.09738748520612717, -0.09287039935588837,
- 0.12779869139194489, 0.015574387274682522, 0.025483382865786552, 0.04272853210568428,
- -0.08504848182201385, 0.022319987416267395, -0.05637962743639946, 0.014877911657094955,
- 0.08594119548797607, 0.11992496252059937, -0.024463411420583725, 0.003684674622491002,
- 0.049171071499586105, 0.016177300363779068, 0.041220974177122116, 0.11766143143177032,
- 0.44075390696525574, -0.1042134016752243, 0.06917524337768555, 0.03715229034423828,
- -0.06024385243654251, 0.0106664402410388, 0.036728523671627045, 0.09967102110385895,
- 0.0965249314904213, 0.1591361165046692, 0.1759193241596222, -0.06462313234806061,
- -0.020302578806877136, -0.04483043774962425, 0.06693127751350403, 0.008901115506887436,
- 0.04412321373820305, 0.03545480594038963, -0.07906358689069748, -0.026213057339191437,
- 0.03642939403653145, -0.0705651342868805, 0.003431526245549321, -0.0027456264942884445,
- -0.06964730471372604, 0.049000486731529236, 0.05095401406288147, 0.03932409733533859,
- -0.0748763456940651, 0.08011818677186966, -0.09279367327690125, 0.013360114768147469,
- 0.03327960520982742, 0.030511924996972084, -0.11698965728282928, 0.010498631745576859,
- -0.12682166695594788, -0.06664659082889557, 0.10043025016784668, 0.0052263871766626835,
- 0.06740938872098923, 0.07021772861480713, -0.05617254972457886, 0.05246821418404579,
- -0.01841081492602825, -0.08726286143064499, 0.08909643441438675, 0.003438072744756937,
- 0.0029562730342149734, 0.05775889381766319, 0.1607145071029663, -0.06903677433729172,
- -0.042597029358148575, -0.13382244110107422, 0.06776916980743408, 0.15867772698402405,
- -0.004573821555823088, 0.020533578470349312, 0.05640934407711029, -0.02144462801516056,
- 0.020542893558740616, -0.06392994523048401, -0.07050590962171555, -0.018121939152479172,
- -0.017281124368309975, 0.12687896192073822, 0.10035582631826401, 0.001522851292975247,
- -0.09967111051082611, -0.022293711081147194, -0.04674207419157028, 0.024172931909561157,
- 0.15647992491722107, -0.07938692718744278, 0.06043768674135208, -0.06816376000642776,
- -0.02727433852851391, 0.041509728878736496, -0.10619895905256271,
- -0.0073644802905619144, -0.114621601998806, 0.013431989587843418, 0.03639761731028557,
- -0.021555498242378235, -0.09105993062257767, 0.08909261971712112, -0.09600251168012619,
- 0.11226609349250793, 0.028954287990927696, -0.04778028279542923, 0.01321773137897253,
- -0.028047921136021614, 0.0214910339564085, 0.04637889936566353, -0.04259873926639557,
- -0.008570197969675064, 0.014555912464857101, 0.02220025472342968, -0.0695476084947586,
- -0.04961610957980156, -0.07903847098350525, -0.09766446053981781, -0.005316245835274458,
- -0.1271306276321411, -0.04753781855106354, -0.01882033608853817, -0.02884969487786293,
- -0.046935372054576874, 0.001089891535229981, 0.025958294048905373, -0.18180310726165771,
- 0.005098170600831509, 0.012019752524793148, 0.07466688007116318, -0.037807684391736984,
- -0.0983102098107338, 0.052620675414800644, 0.09261827170848846, 0.04733408987522125,
- -0.04085351154208183, 0.04651249200105667, -0.08298889547586441, 0.059436243027448654,
- -0.15574400126934052, -0.34971436858177185, 0.056658320128917694, -0.013465662486851215,
- 0.06534981727600098, 0.03810428828001022, -0.1147439181804657, 0.07389947772026062,
- 0.030341917648911476, -0.04420613497495651, 0.13387183845043182, -0.06433366984128952,
- 0.01438931655138731, -0.004222596995532513, -0.06535136699676514, -0.005742944777011871,
- -0.057730767875909805, -0.07499448210000992, 0.03608885407447815, -0.027318298816680908,
- -0.10005507618188858, -0.13934318721294403, 0.0388517826795578, 0.0012050855439156294,
- 0.07950109988451004, -0.009918713010847569, 0.003141782246530056, -0.046104077249765396,
- 0.025319023057818413, 0.0424165204167366, 0.007710304576903582, -0.030717575922608376,
- -0.04751164838671684, -0.0002610464580357075, 0.1063469871878624, 0.037685394287109375,
- 0.0995965376496315, 0.06296896189451218, -0.024776089936494827, -0.12618939578533173,
- 0.11492520570755005, 0.04127420485019684, 0.18228676915168762, 0.003238443983718753,
- -0.004903105553239584, -0.007036023773252964, 0.20134568214416504, 0.06939113140106201,
- 0.04094209149479866, -0.032565418630838394, 0.0309055894613266, -0.0005586700863204896,
- 0.001540247700177133, 0.05375848710536957, -0.1096438318490982, -0.03494669869542122,
- -0.01937854290008545, 0.008713316172361374, -0.01689263992011547, -0.06171783432364464,
- 0.2590187191963196, 0.02771206758916378, 0.026653079316020012, 0.02160821482539177,
- -0.057517193257808685, 0.008315575309097767, -0.08801815658807755, -0.11899574100971222,
- 0.014597265049815178, -0.03893383592367172, -0.0004988639266230166,
- -0.04923059046268463, -0.11198703199625015, -0.00134387391153723, -0.009156500920653343,
- 0.000099854041764047, 0.07276519387960434, -0.04975259304046631, 0.042865388095378876,
- -0.04987568035721779, 0.14447395503520966, 0.0962548702955246, 0.06098217889666557,
- 0.0285707488656044, 0.08749698847532272, -0.010611053556203842, -0.0657401978969574,
- -0.05269385501742363, -0.09547234326601028, -0.026970433071255684, 0.14413021504878998,
- -0.01661429926753044, 0.09836610406637192, 0.0362703762948513, -0.07026483863592148,
- -0.100579172372818, 0.004848808981478214, -0.029265999794006348, 0.0019056949531659484,
- -0.4702167809009552, -0.02671177312731743, 0.1391584724187851, 0.0028737704269587994,
- -0.014306348748505116, 0.1278129667043686, 0.02438029646873474, -0.06946996599435806,
- -0.05731593072414398, -0.15429991483688354, 0.1928706020116806, -0.026104796677827835,
- 0.1131502240896225, -0.0937696099281311, 0.01779944822192192, 0.09130484610795975,
- -0.0893268808722496, -0.0009157289750874043, 0.0367940329015255, -0.20528647303581238,
- -0.07893072813749313, -0.05248148366808891, 0.19739528000354767, -0.0378524549305439,
- 0.07299649715423584, 0.06688282638788223, -0.023415502160787582, 0.005111291538923979,
- 0.05437415465712547, -0.03328017517924309, 0.051724374294281006, 0.0045628477819263935,
- -0.019897323101758957, 0.13349273800849915, 0.15229912102222443, 0.05808509513735771,
- -0.11313103139400482, 12.173760414123535, 0.05995935946702957, 0.08613502979278564,
- -0.1210588589310646, 0.030394867062568665, -0.08265132457017899, 0.04770183935761452,
- -0.1389874666929245, 0.01727370172739029, 0.14585775136947632, 0.04778771474957466,
- -0.0899508073925972, -0.06293221563100815, -0.15365709364414215, -0.019936444237828255,
- 0.004504802171140909, -0.0163926649838686, -0.045222118496894836, 0.02902870811522007,
- -0.04982369765639305, -0.0400208979845047, 0.06225312128663063, 0.05255308747291565,
- 0.00417455704882741, -0.03630991652607918, -0.02255454659461975, 0.02788371965289116,
- -0.015333953313529491, 0.02399355173110962, 0.012093700468540192, 0.022392652928829193,
- -0.03556979447603226, 0.07168141007423401, 0.025069016963243484, 0.017370622605085373,
- -0.014929267577826977, -0.0003988284443039447, 0.02582845650613308,
- -0.019804716110229492, 0.025781923905014992, -0.022908642888069153, 0.04418845847249031,
- -0.02389402501285076, 0.07657602429389954, 0.06030909717082977, 0.02693593129515648,
- 0.06939808279275894, 0.11494197696447372, -0.022368157282471657, 0.07831552624702454,
- 0.08653305470943451, 0.026617268100380898, 0.09894304722547531, 0.058496419340372086,
- 0.03238362818956375, 0.1497288942337036, -0.007528012152761221, -0.06231364980340004,
- 0.11845206469297409, 0.09838435798883438, -0.03712869808077812, 0.10849053412675858,
- 0.07951143383979797, 0.08787184953689575, 0.011703063733875751, 0.028464771807193756,
- 0.1333974301815033, 0.07203201949596405, -0.21284478902816772, -0.06341683119535446,
- 0.0060370066203176975, -0.07560612261295319, -0.07943835854530334, 0.011084573343396187,
- 0.05344606563448906, -0.08446122705936432, 0.08857931196689606, 0.02328951470553875,
- -0.010622577741742134, -0.05619190260767937, 0.009991529397666454, 0.001736288657411933,
- -0.03718889132142067, 0.010033619590103626, 0.013736569322645664, 0.08307580649852753,
- 0.09245661646127701, 0.13356193900108337, -0.044660475105047226, -0.13349735736846924,
- -0.1107872724533081, 0.07963921874761581, -0.03952237218618393, -0.06072080135345459,
- -0.018403155729174614, -0.07059196382761002, 0.06838792562484741, -0.16386672854423523,
- 0.07377485930919647, 0.13437744975090027, -0.1422109752893448, 0.0016597702633589506,
- -0.04551951587200165, 0.02051408961415291, 0.012892736122012138, 0.014973941259086132,
- -0.08862882107496262, 0.05882512032985687, 0.023357249796390533, 0.03340717405080795,
- -0.04505014419555664, 0.10494218021631241, 0.09321533143520355, -0.08375710248947144,
- 0.022129831835627556, 0.06230153143405914, -0.005477875005453825, -0.026674650609493256,
- 0.05173720791935921, -0.0042745256796479225, -0.11599565297365189, -0.09587271511554718,
- -0.02424863912165165, -0.03481545299291611, -0.003811084432527423, -0.08415646851062775,
- 0.0023685554042458534, 0.039519648998975754, -0.029178934171795845,
- 0.023925893008708954, 0.08095896989107132, 0.04430805519223213, 0.026247715577483177,
- -0.02360597625374794, 0.09244793653488159, -0.06801445782184601, -0.027961431071162224,
- 0.06206519156694412, 0.03953192010521889, 0.04815083369612694, -0.05725877359509468,
- -0.019129933789372444, 0.003971838392317295, -0.14362190663814545, 0.08049512654542923,
- 0.056497279554605484, 0.021745722740888596, 0.035628724843263626, 0.04935784637928009,
- -0.1098875105381012, -0.09395970404148102, 0.09201110899448395, 0.0670747309923172,
- 0.02830478735268116, 0.018539855256676674, -0.05978691950440407, -0.038022395223379135,
- 0.12306381016969681, -0.032818421721458435, -0.019451886415481567, 0.041411470621824265,
- -0.0062864613719284534, 0.1293269693851471, 0.1692018210887909, 0.17460237443447113,
- 0.03284185752272606, 0.066560760140419, 0.04505804926156998, -0.03953787684440613,
- -0.00008053844794631004, 0.009400676004588604, -0.05780010670423508,
- -0.10017835348844528, -0.09094305336475372, 0.08509739488363266, 0.0894283801317215,
- 0.004058620426803827, -0.08637258410453796, -0.012528926134109497, -0.05065774545073509
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 143,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 183,
- "similarity": 0.9969272613525391
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 213,
- "similarity": 0.9968779683113098
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 210,
- "similarity": 0.9968264102935791
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Ivana Jeremic", "Milica Stojanovic"],
- "epoch_date_downloaded": 1635120000,
- "epoch_date_modified": 1635120000,
- "epoch_date_submitted": 1635120000,
- "flag": null,
- "report_number": 1482,
- "source_domain": "balkaninsight.com",
- "submitters": ["Patrick Hall (BNH.ai)"],
- "title": "Facebook, Twitter Struggling in Fight against Balkan Content Violations",
- "url": "https://balkaninsight.com/2021/02/16/facebook-twitter-struggling-in-fight-against-balkan-content-violations/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "youtube",
- "name": "YouTube"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "youtube",
- "name": "YouTube"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "youtube-users",
- "name": "YouTube users"
- },
- {
- "__typename": "Entity",
- "entity_id": "youtube-chess-content-creators",
- "name": "YouTube chess content creators"
- },
- {
- "__typename": "Entity",
- "entity_id": "antonio-radic",
- "name": "Antonio Radic"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [2134, 2043, 2042, 1980, 1979, 1483],
- "vector": [
- -0.05424271151423454, 0.042585339397192, 0.003100477159023285, -0.09544088691473007,
- 0.09563995152711868, -0.009406658820807934, -0.0028067852836102247, 0.06666219234466553,
- 0.07468857616186142, -0.16067776083946228, 0.015824636444449425, 0.043326664716005325,
- 0.026324748992919922, -0.06122317537665367, 0.06993713974952698, -0.012647430412471294,
- -0.10834269970655441, -0.009531472809612751, -0.020321214571595192,
- -0.11294090002775192, -0.06829484552145004, -0.004953877534717321, 0.04292343556880951,
- 0.05536728724837303, -0.0643811821937561, 0.018242744728922844, 0.0952133908867836,
- 0.12434213608503342, -0.029003215953707695, 0.0500943660736084, -0.04891204833984375,
- -0.03806290030479431, 0.11265487223863602, -0.000006300164386630058,
- 0.01717192865908146, 0.06411401182413101, 0.058341965079307556, -0.03471405431628227,
- -0.0830780565738678, -0.005559791345149279, -0.008841644041240215, 0.21409492194652557,
- 0.03085833601653576, -0.04649961367249489, 0.08016980439424515, -0.03733318671584129,
- 0.006289965007454157, 0.04756702855229378, 0.006308557000011206, -0.0011827661655843258,
- -0.010882130824029446, -0.023671286180615425, -0.04959968104958534,
- 0.005933407228440046, -0.10080382972955704, 0.0695713460445404, 0.0424630306661129,
- 0.02266085147857666, 0.0489928163588047, -0.08309437334537506, -0.01206427812576294,
- -0.18689747154712677, -0.046278953552246094, -0.0958571806550026, 0.09647282212972641,
- -0.06584339588880539, -0.0216761976480484, 0.018066974356770515, 0.02303137630224228,
- 0.041919026523828506, 0.052727337926626205, -0.06116749718785286, -0.00640703784301877,
- 0.005026989616453648, -0.02798471413552761, -0.0025731998030096292,
- 0.027211995795369148, 0.24578285217285156, -0.10647333413362503, 0.010147039778530598,
- 0.08635620027780533, -0.08777958154678345, 0.3839198648929596, 0.013859410770237446,
- 0.0017484395066276193, 0.007600500714033842, 0.0890561044216156, 0.027679340913891792,
- 0.040646057575941086, 0.027924910187721252, 0.0055520846508443356, 0.039647266268730164,
- -0.039125170558691025, 0.021240295842289925, 0.045952752232551575, 0.03173399716615677,
- -0.0017937150551006198, 0.006070184987038374, -0.008359353058040142,
- -0.021291522309184074, 0.007813939824700356, -0.04732409492135048, 0.13033609092235565,
- 0.07248079776763916, -0.04690810665488243, -0.028685666620731354, 0.09446686506271362,
- -0.06887800991535187, 0.05385183170437813, -0.06632398813962936, 0.03022351674735546,
- 0.02323339693248272, 0.0795912817120552, -0.012471914291381836, 0.04367620870471001,
- -0.022037426009774208, 0.021894322708249092, 0.022958936169743538, 0.06646347790956497,
- 0.0743943527340889, 0.00832532998174429, 0.04810429736971855, 0.08183399587869644,
- -0.06039997935295105, -0.031306929886341095, -0.051432084292173386,
- -0.03599249944090843, -0.011023223400115967, -0.002838917775079608, 0.02129753865301609,
- -0.04406009241938591, -0.21622473001480103, 0.022582724690437317, 0.08958101272583008,
- 0.005181313958019018, -0.016508260741829872, 0.03224986046552658, -0.06884526461362839,
- -0.0022299792617559433, -0.025695765390992165, -0.04200262203812599, 0.0734686329960823,
- 0.09535928815603256, 0.07610558718442917, 0.10478565096855164, 0.03734391927719116,
- -0.013252965174615383, -0.05444098636507988, -0.006671208888292313,
- -0.05038514360785484, 0.08362966030836105, -0.09848763793706894, -0.0644071102142334,
- -0.02756010927259922, 0.019400974735617638, 0.6464006900787354, 0.11728868633508682,
- 0.1530674546957016, -0.0066030025482177734, -0.007118153851479292, 0.15996044874191284,
- 0.005977800115942955, 0.05404667556285858, -0.044079188257455826, -0.06268839538097382,
- 0.013517610728740692, -0.04904499277472496, -0.052641984075307846, 0.022615408524870872,
- 0.028538405895233154, 0.1207345500588417, 0.0013817512663081288, 0.11658569425344467,
- 0.023747459053993225, -0.09079606086015701, -0.061998963356018066, 0.022787144407629967,
- -0.011163138784468174, -0.1359819918870926, -0.04055193066596985, 0.07914699614048004,
- 0.0938413217663765, -0.036626141518354416, 0.011445765383541584, -0.024259716272354126,
- 0.02468668855726719, -0.0191489364951849, 0.04031486436724663, -0.020206334069371223,
- 0.03830086812376976, 0.042427290230989456, 0.01898038201034069, -0.007278395351022482,
- -0.08446773886680603, -0.020929574966430664, 0.13178515434265137, -0.022874213755130768,
- -0.03595086559653282, 0.05592682957649231, -0.05880605801939964, 0.016211913898587227,
- 0.0030530954245477915, 0.10927274078130722, -0.14065951108932495, 0.013347790576517582,
- -0.023182103410363197, -0.02764623798429966, 0.07788661122322083, -0.02656104415655136,
- -0.06270086765289307, -0.07994582504034042, 0.10191460698843002, 0.00511923199519515,
- 0.060955535620450974, 0.025355780497193336, -0.03662458434700966, 0.04604235664010048,
- 0.04176993668079376, 0.010904415510594845, -0.038129325956106186, 0.04451599344611168,
- 0.052018653601408005, -0.043643463402986526, -0.027124343439936638,
- 0.014551994390785694, 0.015423916280269623, 0.04036950692534447, 0.008976534008979797,
- 0.04608425125479698, 0.035620611160993576, -0.026571838185191154, 0.0705590546131134,
- -0.006232189014554024, 0.026485227048397064, 0.060296427458524704, -0.09529495239257812,
- -0.06481637805700302, -0.043846696615219116, -0.0325423963367939, 0.015320423990488052,
- -0.010844692587852478, 0.05919459089636803, 0.07830840349197388, 0.09094086289405823,
- 0.050370365381240845, 0.05153709277510643, 0.03262297809123993, 0.026313416659832,
- -0.00759313628077507, 0.04524805024266243, -0.0302541796118021, -0.049338068813085556,
- -0.02321653626859188, 0.024738436564803123, 0.051933687180280685,
- -0.0008690984104759991, -0.06883897632360458, -0.022372717037796974,
- -0.009163355454802513, -0.049280691891908646, -0.056825581938028336,
- -0.006554273888468742, 0.033162396401166916, 0.03290238603949547, -0.038312606513500214,
- -0.09883376955986023, -0.08613917231559753, -0.00163341558072716, 0.0527985654771328,
- -0.03997061029076576, 0.006118776276707649, -0.08910977840423584, -0.020655576139688492,
- -0.0002641668252181262, 0.04562504589557648, 0.0024485252797603607,
- 0.005147447343915701, -0.015067481435835361, -0.058101389557123184,
- 0.008629766292870045, 0.020737402141094208, 0.004222025163471699,
- 0.00023741910990793258, -0.07545142620801926, -0.06925266236066818,
- -0.02482498623430729, 0.02107381820678711, -0.05051235854625702, 0.027129041031003,
- 0.032714273780584335, 0.042108725756406784, -0.0058973380364477634,
- 0.0012876915279775858, 0.05189911648631096, -0.035718485713005066,
- -0.020087791606783867, 0.07797040045261383, -0.015916988253593445, 0.03281243145465851,
- -0.03072916902601719, -0.08602678030729294, -0.06325596570968628, -0.02393166720867157,
- -0.048754364252090454, 0.06526414304971695, -0.03426995128393173, -0.04516856372356415,
- -0.004180350806564093, -0.00231414707377553, 0.05578531324863434, -0.0599806047976017,
- -0.03661039471626282, -0.11211336404085159, 0.11760411411523819, -0.013982587493956089,
- -0.010578741319477558, 0.0006161487544886768, -0.018543997779488564,
- 0.04679291322827339, -0.0033318970818072557, 0.00498640863224864, 0.03750528395175934,
- 0.09492209553718567, 0.01639494299888611, -0.005357739049941301, 0.06261418759822845,
- -0.06088435649871826, 0.004867894574999809, 0.09540009498596191, 0.42522093653678894,
- -0.21079404652118683, 0.07646874338388443, 0.08513469249010086, 0.03626348078250885,
- 0.04641830921173096, -0.04039560258388519, 0.0848957970738411, 0.06808625906705856,
- 0.10571108013391495, 0.11604736000299454, -0.035467084497213364, 0.022220047190785408,
- -0.04192816838622093, 0.0701577439904213, 0.027684876695275307, 0.010900124907493591,
- -0.02315518446266651, -0.08471384644508362, -0.02521887980401516, 0.07330577820539474,
- -0.049768898636102676, 0.03433169052004814, 0.014853288419544697, -0.050289303064346313,
- 0.015013516880571842, 0.056137025356292725, 0.050074655562639236, -0.05613219738006592,
- 0.009707367978990078, 0.011822797358036041, 0.02955494076013565, -0.03413640335202217,
- 0.04530917480587959, -0.1327437311410904, 0.04311281070113182, -0.09003475308418274,
- -0.11219292134046555, 0.07249031960964203, -0.004662436433136463, 0.03559484705328941,
- 0.021923309192061424, -0.0024898985866457224, 0.04790038242936134,
- 0.0017519952962175012, -0.053532958030700684, -0.007897731848061085,
- 0.06549953669309616, 0.03477838262915611, 0.09106198698282242, 0.1424614042043686,
- -0.029090629890561104, -0.027337990701198578, -0.10214304178953171, 0.05126417055726051,
- 0.15286454558372498, -0.017324984073638916, 0.002234665211290121, -0.017346201464533806,
- -0.04341483488678932, -0.001813067588955164, -0.041990041732788086,
- -0.09832149744033813, -0.020386679098010063, -0.03440141677856445, 0.07627563178539276,
- 0.04983363673090935, -0.03597818687558174, -0.16569307446479797, -0.02218269556760788,
- -0.04398586228489876, 0.018126992508769035, 0.14430959522724152, -0.0859539732336998,
- -0.005482037086039782, 0.019346166402101517, -0.007693008985370398,
- 0.002157468581572175, -0.10590457171201706, 0.0035337619483470917, -0.05243504047393799,
- 0.026851125061511993, 0.06495081633329391, 0.03184393420815468, -0.07525128126144409,
- 0.05153806135058403, -0.08604475110769272, 0.0773087814450264, -0.014135723002254963,
- -0.00009167365351459011, 0.04870159924030304, -0.03476674482226372,
- 0.019507938995957375, 0.020183362066745758, -0.046520691365003586,
- -0.016068410128355026, -0.04212503507733345, -0.028739608824253082,
- -0.10105562955141068, -0.07572738081216812, -0.04278064891695976, -0.09987670183181763,
- 0.08132760971784592, -0.09288658946752548, -0.025925373658537865, -0.012828146107494831,
- -0.028835853561758995, -0.012782151810824871, 0.0356692336499691, 0.026922082528471947,
- -0.11884395033121109, -0.032424017786979675, 0.012346047908067703, 0.05389392375946045,
- -0.025686919689178467, -0.06481844931840897, -0.013187117874622345, 0.1075146421790123,
- 0.020151900127530098, -0.03327988460659981, 0.019725443795323372, -0.0699700117111206,
- 0.06393591314554214, -0.1124933734536171, -0.5323297381401062, 0.06836453825235367,
- 0.019574956968426704, 0.0384451262652874, 0.0031557579059153795, -0.05972319841384888,
- 0.02986067719757557, 0.02723163180053234, -0.04843811318278313, 0.06496284157037735,
- -0.058631781488657, 0.032291315495967865, -0.026136016473174095, -0.05586865544319153,
- -0.015806686133146286, -0.0625297799706459, -0.04448424652218819, 0.04998457431793213,
- -0.012588451616466045, -0.060746561735868454, -0.08087554574012756, 0.03375641256570816,
- -0.014956432394683361, -0.0014545334270223975, -0.014267314225435257,
- 0.018349509686231613, -0.047717783600091934, -0.057677868753671646, 0.05983826518058777,
- 0.07675781846046448, 0.028810417279601097, -0.06699676811695099, -0.022162461653351784,
- 0.05573049560189247, -0.01047710794955492, 0.09676826000213623, 0.017091238871216774,
- -0.03390723466873169, -0.09241775423288345, 0.052572887390851974, 0.05440257489681244,
- 0.1867554634809494, -0.008953559212386608, 0.08397886902093887, 0.00534559041261673,
- 0.14514665305614471, -0.0037064943462610245, 0.05587073788046837, -0.040176358073949814,
- -0.01729981042444706, 0.02421754039824009, -0.004309430718421936, 0.04586442932486534,
- -0.10454404354095459, -0.02326519973576069, -0.004546670708805323,
- -0.019987953826785088, -0.03762850537896156, -0.02299538254737854, 0.22845405340194702,
- 0.027203314006328583, 0.04625421389937401, 0.009596641175448895, -0.03821789473295212,
- 0.013532496057450771, -0.06609812378883362, -0.03827684000134468, -0.029146775603294373,
- -0.02695786952972412, 0.023490509018301964, -0.02944631315767765, -0.0884382352232933,
- -0.009700539521872997, -0.005725611466914415, 0.009770635515451431, 0.12351831048727036,
- -0.03000311553478241, 0.04035939648747444, -0.05137277767062187, 0.1135566309094429,
- 0.037870049476623535, 0.048457205295562744, 0.046412643045186996, 0.09127426147460938,
- 0.05018876492977142, -0.015822019428014755, -0.019372133538126945, -0.06896085292100906,
- 0.003253654344007373, 0.13400834798812866, -0.04373285174369812, 0.11494574695825577,
- 0.08226218819618225, -0.006067752372473478, -0.030562624335289, 0.027568034827709198,
- 0.038666293025016785, -0.0034041411709040403, -0.526547372341156, -0.05987603962421417,
- 0.09829011559486389, 0.03138233721256256, 0.01594548113644123, 0.06309417635202408,
- 0.03380046784877777, -0.026418859139084816, 0.03040379285812378, -0.11168059706687927,
- 0.0889100506901741, 0.02571628801524639, 0.09415683150291443, -0.04807347059249878,
- 0.007400555070489645, 0.05933999642729759, -0.02516806311905384, 0.01333897840231657,
- 0.039697062224149704, -0.1991790533065796, -0.0016153260366991162,
- -0.050266265869140625, 0.14756864309310913, -0.0034635874908417463, 0.04127584770321846,
- 0.0806952714920044, -0.0706147849559784, 0.047421883791685104, 0.07634981721639633,
- 0.006495580077171326, 0.06250602751970291, 0.020781829953193665, -0.007656825240701437,
- 0.0974743589758873, 0.07584866881370544, 0.10706543922424316, -0.023387489840388298,
- 11.948443412780762, 0.04301820322871208, 0.07744467258453369, -0.07764206826686859,
- 0.008260992355644703, -0.06287463754415512, 0.03973446786403656, -0.09757979959249496,
- 0.09043235331773758, 0.13023625314235687, -0.007330691907554865, -0.026811549440026283,
- -0.061997588723897934, -0.07333192974328995, 0.03715723380446434, -0.0294614527374506,
- -0.054869119077920914, -0.026770683005452156, 0.05889183282852173, -0.05827808007597923,
- -0.028698256239295006, 0.03577744960784912, 0.046590372920036316, 0.02389521338045597,
- -0.07654599100351334, 0.017716193571686745, -0.005274718627333641,
- 0.00029041164088994265, 0.02618369646370411, 0.0537232868373394, 0.05384550616145134,
- 0.03925671800971031, 0.056061167269945145, 0.07407607138156891, 0.032325513660907745,
- 0.006392227951437235, 0.02940785326063633, 0.01913050189614296, 0.0397694893181324,
- 0.07712676376104355, -0.011557829566299915, -0.005944072734564543, 0.014296449720859528,
- 0.02937481366097927, 0.054963648319244385, 0.037309322506189346, 0.03212675824761391,
- 0.1293199360370636, -0.024452531710267067, 0.042559608817100525, 0.06555565446615219,
- -0.02104468084871769, 0.11231499910354614, 0.01765936054289341, -0.002477829111739993,
- 0.04053610935807228, -0.01920553669333458, -0.07749056816101074, 0.09336896985769272,
- 0.024106428027153015, -0.03908364847302437, 0.08736983686685562, 0.04449400305747986,
- 0.07745318114757538, 0.0067175752483308315, 0.05828697606921196, 0.09436099976301193,
- 0.07883725315332413, -0.11492056399583817, -0.03440704569220543, 0.022387171164155006,
- -0.09135773032903671, -0.07420922070741653, 0.0442403107881546, 0.05260913074016571,
- -0.05217270180583, 0.017133966088294983, -0.02992425113916397, 0.023898683488368988,
- -0.033172812312841415, 0.0003373262006789446, 0.032791294157505035,
- -0.05833222344517708, -0.015479087829589844, 0.036661297082901, 0.03301716968417168,
- 0.058836713433265686, 0.08407028764486313, -0.008388478308916092, -0.0716857984662056,
- -0.06994002312421799, 0.0922107994556427, -0.0020587551407516003, -0.07429695874452591,
- 0.03168530389666557, -0.029359718784689903, 0.056918904185295105, -0.16502627730369568,
- 0.07360697537660599, 0.09926136583089828, -0.11121427267789841, -0.012687712907791138,
- -0.021195674315094948, 0.08848744630813599, -0.027410371229052544, 0.04261161386966705,
- -0.07200902700424194, 0.00988353043794632, 0.009749390184879303, 0.04299748316407204,
- -0.030016561970114708, 0.09143367409706116, 0.06555480509996414, -0.09500422328710556,
- 0.05050155520439148, 0.052419696003198624, -0.01867658831179142, 0.0010457574389874935,
- 0.06077231094241142, 0.02962505631148815, -0.085548996925354, -0.0301774051040411,
- -0.049995824694633484, -0.03151414915919304, -0.018872259184718132,
- -0.05633188411593437, -0.002371333772316575, 0.04711452126502991, -0.009614107199013233,
- -0.022606952115893364, 0.03609440475702286, 0.07179424911737442, 0.07828661054372787,
- -0.01639077626168728, 0.032484542578458786, -0.0284478347748518, -0.05267277732491493,
- 0.06187821924686432, 0.06747027486562729, 0.08789882063865662, -0.0599006749689579,
- -0.029007211327552795, -0.0049599711783230305, -0.08477240055799484,
- 0.05469081178307533, 0.05560050532221794, 0.055200498551130295, 0.040262285619974136,
- 0.02950149215757847, -0.06590117514133453, -0.023980043828487396, 0.08326110243797302,
- -0.006002363283187151, -0.02607455849647522, 0.016758564859628677, -0.05400342866778374,
- -0.028862642124295235, 0.0949360802769661, -0.04862694814801216, 0.008048251271247864,
- -0.014629269950091839, -0.11698251217603683, 0.05502958223223686, 0.09042150527238846,
- 0.049329519271850586, 0.02711680717766285, 0.07051485031843185, 0.0007453365251421928,
- 0.0290088951587677, -0.017931433394551277, 0.043182674795389175, -0.010195326060056686,
- -0.12365183979272842, -0.09955664724111557, 0.024169079959392548, 0.09896735101938248,
- 0.05348637327551842, -0.1545289307832718, -0.012984969653189182, -0.01917237788438797
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 144,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 217,
- "similarity": 0.9968827366828918
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 16,
- "similarity": 0.9967312812805176
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 66,
- "similarity": 0.9966416358947754
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Reuters"],
- "epoch_date_downloaded": 1663804800,
- "epoch_date_modified": 1665619200,
- "epoch_date_submitted": 1663804800,
- "flag": null,
- "report_number": 2134,
- "source_domain": "tribune.com.pk",
- "submitters": ["Thomas Giallella (CSET)"],
- "title": "YouTube AI blocks chess channel after mistaking 'black v white' discussion as racism",
- "url": "https://tribune.com.pk/story/2285508/youtube-ai-blocks-chess-channel-after-mistaking-black-v-white-discussion-as-racism"
- },
- {
- "__typename": "Report",
- "authors": ["Will Knight"],
- "epoch_date_downloaded": 1663027200,
- "epoch_date_modified": 1663113600,
- "epoch_date_submitted": 1663027200,
- "flag": null,
- "report_number": 2043,
- "source_domain": "wired.com",
- "submitters": ["Srishti Khemka (CSET)"],
- "title": "Why a YouTube Chat About Chess Got Flagged for Hate Speech",
- "url": "https://www.wired.com/story/why-youtube-chat-chess-flagged-hate-speech/"
- },
- {
- "__typename": "Report",
- "authors": ["Byron Spice"],
- "epoch_date_downloaded": 1663027200,
- "epoch_date_modified": 1663113600,
- "epoch_date_submitted": 1663027200,
- "flag": null,
- "report_number": 2042,
- "source_domain": "cmu.edu",
- "submitters": ["Srishti Khemka (CSET)"],
- "title": "AI May Mistake Chess Discussions as Racist Talk",
- "url": "https://www.cmu.edu/news/stories/archives/2021/february/ai-mistakes-chess-discussions.html"
- },
- {
- "__typename": "Report",
- "authors": ["Anthony Cuthbertson"],
- "epoch_date_downloaded": 1661731200,
- "epoch_date_modified": 1661817600,
- "epoch_date_submitted": 1661817600,
- "flag": null,
- "report_number": 1980,
- "source_domain": "independent.co.uk",
- "submitters": ["Srishti Khemka (CSET)"],
- "title": "AI mistakes ‘black and white’ chess chat for racism",
- "url": "https://www.independent.co.uk/tech/ai-chess-racism-youtube-agadmator-b1804160.html"
- },
- {
- "__typename": "Report",
- "authors": ["Joen Coronel"],
- "epoch_date_downloaded": 1661731200,
- "epoch_date_modified": 1661817600,
- "epoch_date_submitted": 1661817600,
- "flag": null,
- "report_number": 1979,
- "source_domain": "techtimes.com",
- "submitters": ["Srishti Khemka (CSET)"],
- "title": "YouTube AI Misinterprets Chess Chat Involving 'Black' And 'White' Pieces, Flags for Racism",
- "url": "https://www.techtimes.com/articles/257238/20210220/youtube-ai-misinterprets-chess-chat-involving-black-white-pieces-flags.htm"
- },
- {
- "__typename": "Report",
- "authors": ["Dan Avery"],
- "epoch_date_downloaded": 1635120000,
- "epoch_date_modified": 1659571200,
- "epoch_date_submitted": 1635120000,
- "flag": null,
- "report_number": 1483,
- "source_domain": "dailymail.co.uk",
- "submitters": ["Patrick Hall (BNH.ai)"],
- "title": "YouTube algorithm accidentally blocks 'black v white' CHESS strategy",
- "url": "https://www.dailymail.co.uk/sciencetech/article-9279473/YouTube-algorithm-accidentally-blocked-chess-player-discussing-black-versus-white-strategy.html"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "tesla",
- "name": "Tesla"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "tesla",
- "name": "Tesla"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "tesla-drivers",
- "name": "Tesla drivers"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1529, 1504, 1485],
- "vector": [
- -0.08690997213125229, 0.04506625607609749, 0.01538840588182211, -0.12030482292175293,
- 0.1218087375164032, -0.030276887118816376, -0.0161488838493824, 0.048825934529304504,
- 0.04126079007983208, -0.11771788448095322, -0.01778011955320835, 0.0923897922039032,
- 0.01039212103933096, -0.08017652481794357, 0.08124703913927078, -0.04702696204185486,
- -0.08034496754407883, -0.05448125675320625, -0.004323648288846016, -0.06376118957996368,
- -0.06575974076986313, 0.004863707814365625, 0.0020812947768718004, 0.1139119565486908,
- -0.053959984332323074, 0.01843683235347271, 0.10420636087656021, 0.10395363718271255,
- -0.038971129804849625, 0.007215019781142473, 0.010796493850648403, -0.0676056295633316,
- 0.0996696949005127, 0.02466862089931965, 0.006569248158484697, 0.10157353430986404,
- 0.029486076906323433, -0.014361611567437649, -0.04707819223403931, 0.010313061065971851,
- 0.0007542346720583737, 0.1832025647163391, 0.016804857179522514, -0.023139990866184235,
- 0.034282851964235306, -0.04531063139438629, 0.014347675256431103, 0.013598945923149586,
- -0.01412374060600996, -0.00023675912234466523, 0.011500141583383083,
- 0.04807711020112038, -0.02770361863076687, 0.026523664593696594, -0.10727804154157639,
- 0.06351182609796524, 0.04398138448596001, 0.019321033731102943, 0.063761867582798,
- -0.07935243844985962, -0.04147258773446083, -0.17593936622142792, -0.028261149302124977,
- -0.02107742428779602, 0.061174262315034866, -0.06715407222509384, -0.05037274956703186,
- 0.02275947295129299, -0.015773896127939224, 0.07154387980699539, 0.07843562960624695,
- -0.08368182182312012, -0.01867174170911312, 0.008205839432775974, -0.018227269873023033,
- -0.030409643426537514, -0.014384408481419086, 0.26248404383659363, -0.12944479286670685,
- -0.004364086780697107, 0.09288909286260605, -0.09834259748458862, 0.3991278409957886,
- 0.0505145825445652, -0.041350480169057846, -0.0543496273458004, 0.08754491806030273,
- 0.03363360837101936, 0.044199388474226, 0.05485260486602783, -0.006901953835040331,
- 0.016757814213633537, -0.05304915830492973, 0.0249621719121933, 0.05698324739933014,
- 0.037975478917360306, -0.0056509338319301605, 0.00502226734533906, 0.004367712885141373,
- -0.05353974178433418, 0.019904159009456635, -0.07093266397714615, 0.05935992673039436,
- 0.019719310104846954, -0.0049695358611643314, -0.005839241202920675,
- 0.06912857294082642, -0.01676761358976364, 0.0385521799325943, -0.06379290670156479,
- 0.004494037013500929, 0.023753494024276733, 0.03308746591210365, -0.014804098755121231,
- 0.014368612319231033, -0.058738816529512405, -0.001609262079000473, 0.04334373399615288,
- 0.10682471841573715, 0.04932806268334389, -0.01151010487228632, 0.06915607303380966,
- 0.10261281579732895, -0.08724483102560043, -0.008283833041787148, -0.03735975921154022,
- -0.06694524735212326, -0.026399977505207062, -0.031109720468521118,
- 0.028117187321186066, -0.075564906001091, -0.1919957846403122, 0.0061419010162353516,
- 0.13158534467220306, -0.01854093186557293, -0.01578584313392639, 0.01014864444732666,
- -0.044637423008680344, 0.04647183045744896, -0.046342480927705765, -0.02922602742910385,
- 0.05728009343147278, 0.04980246350169182, 0.0022215547505766153, 0.10464779287576675,
- 0.04289238527417183, -0.03828682005405426, -0.06368207931518555, -0.0009280635858885944,
- -0.044764596968889236, 0.08942391723394394, -0.1122136190533638, -0.05330011248588562,
- 0.03193173184990883, -0.05727376416325569, 0.6164862513542175, 0.125238835811615,
- 0.15387441217899323, 0.008937952108681202, -0.010627344250679016, 0.1514434665441513,
- -0.004055550321936607, 0.048465877771377563, -0.0518895648419857, -0.05561484768986702,
- 0.04869960620999336, -0.09880460053682327, -0.02390206791460514, 0.03098616935312748,
- 0.02632661908864975, 0.10514257103204727, 0.03239685669541359, 0.0722004845738411,
- 0.0040818736888468266, -0.12100992351770401, -0.03542163968086243, 0.03499442711472511,
- 0.009785891510546207, -0.10900851339101791, -0.03783341869711876, 0.05339887738227844,
- 0.11322373151779175, -0.07341218739748001, 0.030580593273043633, -0.0368158258497715,
- 0.02274508588016033, -0.040098804980516434, -0.006779228802770376, -0.03045799396932125,
- 0.028469951823353767, 0.010887092910706997, 0.06169573590159416, 0.007960679940879345,
- -0.08707296848297119, 0.003227710025385022, 0.09677078574895859, 0.0065003507770597935,
- -0.03930385038256645, 0.02063310518860817, -0.0704779401421547, 0.06971678882837296,
- -0.02846124768257141, 0.14735084772109985, -0.13634361326694489, 0.029023388400673866,
- -0.017748797312378883, 0.026989690959453583, 0.01710130088031292, 0.02140718139708042,
- -0.06855256110429764, -0.07269137352705002, 0.10497220605611801, 0.03912303224205971,
- 0.07905459403991699, 0.079977847635746, -0.024991074576973915, 0.00960974395275116,
- 0.08546195179224014, -0.020085016265511513, -0.01988600753247738, 0.07037695497274399,
- 0.08363594859838486, -0.03954380750656128, 0.004297983832657337, 0.0025416582357138395,
- 0.007961432449519634, 0.043956536799669266, -0.0061082434840500355,
- 0.034281421452760696, 0.026150420308113098, -0.02618533931672573, -0.01888664811849594,
- 0.015733862295746803, 0.028792455792427063, 0.10253820568323135, -0.05172337219119072,
- -0.10723131895065308, -0.020517824217677116, -0.03603612631559372,
- -0.0035605840384960175, -0.04762275889515877, 0.08503905683755875, 0.051434293389320374,
- 0.09691625088453293, 0.017178719863295555, 0.056380677968263626, 0.04345238208770752,
- 0.03926299512386322, 0.03246967867016792, 0.03806909918785095, -0.017259879037737846,
- -0.042224496603012085, -0.02883792668581009, -0.010211748071014881,
- 0.022372381761670113, -0.0009491133387200534, -0.06605083495378494,
- -0.03995645046234131, -0.004956243094056845, -0.03272537514567375, -0.07050898671150208,
- -0.04791057109832764, 0.0019381874008104205, 0.03802388906478882, -0.048174843192100525,
- -0.08327099680900574, -0.10819517821073532, -0.006203077733516693, 0.05223488807678223,
- -0.04190690442919731, -0.021413559094071388, -0.09370800107717514,
- -0.004530728328973055, -0.03185776621103287, 0.017970586195588112, 0.006798508111387491,
- -0.006822814699262381, -0.0020265327766537666, -0.037917811423540115,
- 0.03278231620788574, -0.02301103062927723, -0.030416717752814293, -0.05739384889602661,
- -0.08141296356916428, -0.07049137353897095, -0.004590507131069899,
- -0.021063631400465965, -0.029249506071209908, 0.07190218567848206, 0.023431403562426567,
- 0.05332307517528534, 0.021751316264271736, -0.07458555698394775, 0.06932851672172546,
- -0.0036005042493343353, -0.028707770630717278, 0.06351587176322937,
- 0.023804359138011932, 0.0650743916630745, 0.0016235198127105832, -0.08456259965896606,
- -0.03133498504757881, 0.036024268716573715, -0.07024431228637695, 0.0673706904053688,
- -0.029758581891655922, 0.048039183020591736, -0.024093424901366234,
- -0.0011015646159648895, 0.05083248019218445, -0.05417003110051155, -0.08671858161687851,
- -0.09017113596200943, 0.10749848932027817, -0.007001271937042475, -0.02626611478626728,
- 0.05365551635622978, -0.03978763520717621, 0.032144706696271896, -0.015987830236554146,
- -0.0018626650562509894, 0.01035073958337307, 0.02703208476305008, -0.02651173062622547,
- 0.042309295386075974, 0.031139500439167023, -0.05494588986039162,
- -0.00023995153605937958, 0.05473855137825012, 0.4332018196582794, -0.3061342239379883,
- 0.07330954819917679, 0.06936224550008774, 0.03419868275523186, 0.08089464902877808,
- -0.06794190406799316, 0.08491704612970352, 0.061943043023347855, 0.10633024573326111,
- 0.10275989025831223, -0.02443753369152546, 0.006019833032041788, -0.06314314156770706,
- 0.10592198371887207, -0.0007846479420550168, -0.01395686250180006,
- -0.005981533322483301, -0.10169325023889542, -0.01404454093426466, 0.05937520042061806,
- -0.0801904946565628, 0.0016048290999606252, 0.022670069709420204, -0.08443328738212585,
- -0.005321913864463568, 0.04289831593632698, -0.010957199148833752, -0.0214243084192276,
- 0.012434807606041431, 0.01628084108233452, 0.04436381533741951, 0.03453785553574562,
- 0.03149932995438576, -0.11285468190908432, 0.06209668517112732, -0.13277769088745117,
- -0.06320840865373611, 0.07522929459810257, -0.018862677738070488, 0.0251164510846138,
- 0.04186904430389404, -0.027707792818546295, 0.011501970700919628, 0.029135532677173615,
- -0.0509941391646862, 0.021579185500741005, 0.06751752644777298, 0.04196082428097725,
- 0.055303651839494705, 0.11985063552856445, -0.025727534666657448, -0.03286190703511238,
- -0.04538268968462944, 0.06822463124990463, 0.12008637189865112, -0.06098335608839989,
- 0.021843193098902702, -0.01983293704688549, -0.03661619499325752, 0.01754027046263218,
- -0.06381071358919144, -0.09554923325777054, -0.007981766015291214, -0.05177807807922363,
- 0.04776247218251228, 0.017232516780495644, -0.000238601045566611, -0.16423581540584564,
- -0.0571758933365345, -0.018037762492895126, 0.020499337464571, 0.11802583932876587,
- -0.0941896140575409, 0.023981496691703796, 0.004163962323218584, -0.026907531544566154,
- 0.02691013179719448, -0.10454899072647095, 0.01665477827191353, -0.029278209432959557,
- 0.052683476358652115, 0.03809959068894386, 0.06738198548555374, -0.017041509971022606,
- 0.06408313661813736, -0.08017372339963913, 0.06127910315990448, -0.030332086607813835,
- 0.0016071228310465813, 0.016287170350551605, -0.05369405075907707, 0.058238495141267776,
- 0.04166961833834648, -0.040699128061532974, 0.016525762155652046, -0.05599093437194824,
- -0.036065567284822464, -0.08744090050458908, -0.09325132519006729, -0.03091750293970108,
- -0.05533694103360176, 0.036983560770750046, -0.10649614781141281, -0.06711035221815109,
- -0.04998667910695076, -0.007852993905544281, 0.05464056134223938, 0.04342242702841759,
- 0.02107428014278412, -0.15109391510486603, -0.007880285382270813, 0.007263221312314272,
- 0.05756910517811775, 0.024425344541668892, -0.0024237309116870165, 0.00643085828050971,
- 0.13694484531879425, 0.05275285243988037, -0.009472607634961605,
- -0.00027694678283296525, -0.07111038267612457, -0.018020443618297577,
- -0.07997477054595947, -0.5044925212860107, 0.08563917875289917, 0.01220810879021883,
- 0.02947843074798584, 0.022455617785453796, -0.054677147418260574, 0.006823809817433357,
- 0.009533165954053402, -0.032251060009002686, 0.08069978654384613, -0.036540210247039795,
- 0.0293444637209177, 0.012418229132890701, -0.051872704178094864, -0.026327088475227356,
- -0.05511767044663429, -0.01600632257759571, 0.05039503052830696, -0.04204078018665314,
- -0.06034712865948677, -0.07063530385494232, 0.0011280672624707222,
- -0.055519748479127884, 0.00878586620092392, -0.0019186586141586304,
- -0.0004927447880618274, -0.0807235911488533, -0.04576661065220833, 0.04038773477077484,
- 0.0944095328450203, 0.04430677369236946, -0.057541072368621826, -0.008649419993162155,
- 0.03461609408259392, 0.005382820498198271, 0.13434985280036926, 0.007939348928630352,
- -0.018598461523652077, -0.05938112363219261, 0.040645476430654526, 0.04186509922146797,
- 0.18449564278125763, 0.02467343397438526, 0.06333445757627487, 0.028180954977869987,
- 0.16272728145122528, 0.037585657089948654, 0.006730324123054743, -0.034165408462285995,
- 0.0006750322063453496, 0.01540504489094019, -0.02698499895632267, 0.051659245043992996,
- -0.056932102888822556, -0.0460350476205349, -0.0011348450789228082,
- 0.009352401830255985, -0.023776663467288017, 0.03248906508088112, 0.21294565498828888,
- 0.00749288871884346, 0.034199222922325134, 0.012812974862754345, -0.03752318397164345,
- 0.012050360441207886, -0.07298478484153748, -0.07658383995294571, -0.05123749375343323,
- 0.005282647907733917, -0.01268888358026743, -0.032589565962553024, -0.11260624974966049,
- 0.001800423371605575, 0.015894442796707153, -0.01931743137538433, 0.11459771543741226,
- 0.025908609852194786, 0.038604479283094406, -0.014044041745364666, 0.11089158803224564,
- 0.016234945505857468, -0.005951438099145889, 0.05431373417377472, 0.10487183183431625,
- 0.07314566522836685, 0.02953510731458664, -0.061591070145368576, -0.039511483162641525,
- 0.07083599269390106, 0.13385219871997833, -0.0617922842502594, 0.10164368152618408,
- 0.06763449311256409, -0.004861798603087664, -0.04491261765360832, 0.04015336558222771,
- -0.011496800929307938, 0.02106686867773533, -0.5418952107429504, 0.002588640432804823,
- 0.11773407459259033, 0.029721101745963097, 0.019629789516329765, 0.1091637834906578,
- 0.04771692678332329, -0.02332082949578762, -0.014915183186531067, -0.060794007033109665,
- 0.06832335889339447, -0.013583708554506302, 0.0671471655368805, -0.12059894949197769,
- 0.041694968938827515, 0.07551600784063339, -0.03578021004796028, -0.026476627215743065,
- 0.103582002222538, -0.26193511486053467, 0.00848986953496933, -0.07935880124568939,
- 0.1473134309053421, 0.0605180524289608, 0.017363209277391434, 0.06695427745580673,
- -0.04753461852669716, 0.032111458480358124, 0.0844336524605751, -0.005501891020685434,
- 0.06121097132563591, -0.011887826025485992, -0.014999858103692532, 0.08735056966543198,
- 0.09177812188863754, 0.10774954408407211, 0.007093434687703848, 12.075718879699707,
- 0.051915477961301804, 0.04203708842396736, -0.0768982321023941, 0.02069828473031521,
- -0.08105365186929703, 0.030186042189598083, -0.08392026275396347, 0.06802698969841003,
- 0.15311233699321747, -0.006893223151564598, -0.04203033447265625, -0.01889158971607685,
- -0.09901868551969528, 0.02436777763068676, -0.07551006227731705, -0.05736039578914642,
- -0.030753394588828087, 0.02791779488325119, -0.019912950694561005, -0.00604557991027832,
- 0.011687618680298328, 0.06356597691774368, 0.03822611644864082, -0.06964676827192307,
- 0.07156594842672348, 0.02681608311831951, -0.0029199637938290834, 0.011187230236828327,
- 0.026342572644352913, -0.016785331070423126, -0.016030360013246536,
- 0.061393484473228455, 0.027607763186097145, 0.009012650698423386, 0.08698112517595291,
- 0.07483184337615967, 0.08067599684000015, 0.018999481573700905, 0.10345321148633957,
- 0.04837645962834358, 0.024138713255524635, 0.03389641270041466, 0.027781499549746513,
- 0.040874432772397995, 0.08616425842046738, 0.07036880403757095, 0.12958361208438873,
- 0.04749750718474388, 0.0497257225215435, 0.08727111667394638, -0.038674622774124146,
- 0.1474023014307022, -0.022728078067302704, -0.01724167726933956, 0.022711314260959625,
- -0.008248425088822842, -0.05044372379779816, 0.06882663816213608, 0.09510035067796707,
- -0.04778163135051727, 0.1038622260093689, -0.049637939780950546, 0.08384948968887329,
- -0.010356229729950428, 0.059994589537382126, 0.035025548189878464, 0.09256019443273544,
- -0.06110907718539238, -0.10647626966238022, 0.03736896812915802, -0.13142794370651245,
- -0.05916156992316246, 0.05222879350185394, 0.14752314984798431, -0.05374788120388985,
- 0.013776618987321854, -0.055016953498125076, 0.02742139808833599, -0.05421873554587364,
- -0.008622609078884125, 0.04101632535457611, 0.02442004345357418, 0.007857857272028923,
- 0.06477055698633194, 0.041696611791849136, 0.08285626024007797, 0.11711966246366501,
- 0.0038570205215364695, -0.02202548272907734, -0.07717662304639816, 0.08258864283561707,
- -0.028221512213349342, -0.049895357340574265, 0.04296956583857536, -0.0548962764441967,
- 0.07541311532258987, -0.15325213968753815, 0.036151085048913956, 0.08932139724493027,
- -0.04949887469410896, -0.020324964076280594, -0.01749502308666706, 0.030779503285884857,
- -0.023747527971863747, 0.07009580731391907, -0.03608236089348793, -0.02918005734682083,
- 0.04686373844742775, 0.017287425696849823, -0.02694741077721119, 0.05707535520195961,
- 0.06097893416881561, -0.06322749704122543, 0.04727811738848686, 0.049077268689870834,
- -0.020972780883312225, -0.043389588594436646, 0.03788263723254204, 0.01678325980901718,
- -0.07996220141649246, -0.02259034849703312, -0.04551181197166443, -0.038761261850595474,
- -0.028632676228880882, -0.026033254340291023, 0.027458205819129944,
- 0.013601958751678467, -0.05066351220011711, -0.020404675975441933, 0.020462946966290474,
- 0.022389471530914307, 0.112009696662426, -0.007868913002312183, 0.07172773033380508,
- -0.06428981572389603, -0.047826141119003296, 0.04222477972507477, 0.08873150497674942,
- 0.07397019118070602, -0.012250547297298908, -0.008035663515329361,
- -0.059504687786102295, -0.12637710571289062, -0.007340477779507637, 0.10806199163198471,
- 0.06099477782845497, 0.01667550392448902, 0.03411621227860451, -0.08894874900579453,
- -0.05026440694928169, 0.12182965874671936, 0.02562551200389862, -0.011712845414876938,
- 0.012376688420772552, -0.05820655822753906, -0.010882622562348843, 0.11505785584449768,
- -0.04048381373286247, 0.02529761753976345, 0.04281528666615486, -0.05030594766139984,
- 0.06209997460246086, 0.10399966686964035, -0.04107898846268654, 0.029396841302514076,
- -0.01733451895415783, -0.006752391811460257, 0.09563177824020386, -0.038425151258707047,
- 0.02983064018189907, 0.009617144241929054, -0.11135336756706238, -0.06363340467214584,
- 0.02365817315876484, 0.06755241751670837, 0.028572924435138702, -0.1113816425204277,
- -0.030285999178886414, -0.025520438328385353
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 145,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 71,
- "similarity": 0.998283863067627
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 20,
- "similarity": 0.9982043504714966
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 4,
- "similarity": 0.9980990886688232
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["JordanTeslaTech"],
- "epoch_date_downloaded": 1644969600,
- "epoch_date_modified": 1644969600,
- "epoch_date_submitted": 1644969600,
- "flag": null,
- "report_number": 1529,
- "source_domain": "twitter.com",
- "submitters": ["Anonymous"],
- "title": "Video showing moon interpreted as yellow stop light",
- "url": "https://twitter.com/JordanTeslaTech/status/1418413307862585344"
- },
- {
- "__typename": "Report",
- "authors": ["Matt McFarland"],
- "epoch_date_downloaded": 1639267200,
- "epoch_date_modified": 1639267200,
- "epoch_date_submitted": 1639267200,
- "flag": null,
- "report_number": 1504,
- "source_domain": "cnn.com",
- "submitters": ["Anonymous"],
- "title": "We tried Tesla's 'full self-driving.' Here's what happened",
- "url": "https://www.cnn.com/2021/11/18/cars/tesla-full-self-driving-brooklyn/index.html"
- },
- {
- "__typename": "Report",
- "authors": ["Tim Levin"],
- "epoch_date_downloaded": 1635033600,
- "epoch_date_modified": 1635033600,
- "epoch_date_submitted": 1635033600,
- "flag": null,
- "report_number": 1485,
- "source_domain": "businessinsider.com",
- "submitters": ["Khoa Lam"],
- "title": "Tesla's Full Self-Driving tech keeps getting fooled by the moon, billboards, and Burger King signs",
- "url": "https://www.businessinsider.com/tesla-fsd-full-self-driving-traffic-light-fooled-moon-video-2021-7"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "allen-institute-for-ai",
- "name": "Allen Institute for AI"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "allen-institute-for-ai",
- "name": "Allen Institute for AI"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "minority-groups",
- "name": "Minority Groups"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1502, 1495, 1494],
- "vector": [
- -0.0725536048412323, 0.061666637659072876, 0.013151810504496098, -0.1169935092329979,
- 0.09143766760826111, 0.028619160875678062, -0.0011336569441482425, 0.07949856668710709,
- 0.10891860723495483, -0.1354348063468933, 0.007353698369115591, 0.02472878061234951,
- 0.02750980854034424, -0.07170746475458145, 0.05513240769505501, -0.057728011161088943,
- -0.11485985666513443, -0.05270236358046532, -0.009997237473726273, -0.15786528587341309,
- -0.07857749611139297, -0.030514448881149292, -0.014601337723433971, 0.0920424833893776,
- -0.0561893992125988, 0.027333587408065796, 0.12739039957523346, 0.1184760257601738,
- -0.03391406312584877, 0.05869942530989647, -0.02575243078172207, -0.09107997268438339,
- 0.13785773515701294, 0.0008344308589585125, -0.008814015425741673, 0.09425041824579239,
- -0.015855805948376656, -0.02200191654264927, 0.0112983463332057, -0.02080530859529972,
- 0.04276549816131592, 0.21226386725902557, 0.015210472978651524, -0.018494920805096626,
- 0.03984953090548515, -0.040623489767313004, 0.0019270958146080375, 0.029460636898875237,
- -0.01233664434403181, 0.0056195915676653385, -0.00019071561109740287,
- 0.0240810364484787, -0.02533992938697338, 0.006346885114908218, -0.08226846903562546,
- 0.050349101424217224, 0.020363524556159973, -0.0019089238485321403, 0.0578230619430542,
- -0.08994143456220627, -0.03243796527385712, -0.1869320422410965, -0.04856712743639946,
- -0.050973549485206604, 0.05557286739349365, -0.059758368879556656, -0.03630737587809563,
- 0.012204594910144806, 0.017824137583374977, 0.07042001932859421, 0.058629680424928665,
- -0.03735122084617615, -0.015260756947100163, 0.023374291136860847, -0.03167412057518959,
- -0.0403110533952713, -0.04080575332045555, 0.23217813670635223, -0.13365374505519867,
- 0.00853115413337946, 0.11184825748205185, -0.12514859437942505, 0.42386507987976074,
- 0.01839672029018402, -0.03588733449578285, 0.026962406933307648, 0.08385199308395386,
- 0.027496784925460815, 0.043434470891952515, 0.044778089970350266, -0.01582757569849491,
- 0.05606703832745552, -0.06658291071653366, -0.011188998818397522, 0.06164636090397835,
- 0.03078976832330227, -0.013881612569093704, 0.01664108783006668, -0.003397543914616108,
- -0.0495726652443409, 0.025003081187605858, -0.058367446064949036, 0.09745863825082779,
- 0.1374916434288025, -0.038270097225904465, -0.016459858044981956, 0.10431747883558273,
- -0.04090798273682594, 0.06594371050596237, -0.0923023521900177, 0.028999710455536842,
- -0.0362866036593914, 0.04426361620426178, -0.017287440598011017, 0.011429495178163052,
- -0.03191424906253815, 0.02550560049712658, 0.0573575496673584, 0.10744351893663406,
- 0.06865592300891876, -0.020677117630839348, 0.0482608787715435, 0.06607470661401749,
- -0.09821701794862747, -0.07855435460805893, -0.03874729573726654, -0.02552948333323002,
- -0.01063702255487442, -0.03789849579334259, 0.052711620926856995, -0.07579955458641052,
- -0.1797821968793869, 0.029465949162840843, 0.09760600328445435, -0.051273245364427567,
- -0.04423018917441368, 0.017997117713093758, -0.08350905776023865, 0.03639519587159157,
- -0.02778255194425583, -0.0545663982629776, 0.04585552215576172, 0.04561677575111389,
- 0.03683217987418175, 0.08112568408250809, 0.02006850764155388, -0.04366547241806984,
- -0.03233934938907623, 0.020723622292280197, -0.01928989589214325, 0.13914428651332855,
- -0.16363424062728882, -0.06131400540471077, -0.03344567120075226, -0.016716785728931427,
- 0.714505672454834, 0.09560996294021606, 0.17973710596561432, -0.013805781491100788,
- -0.03350621461868286, 0.17756879329681396, 0.0027330592274665833, 0.03607615455985069,
- -0.07815715670585632, -0.040006622672080994, 0.022062405943870544, -0.09818627685308456,
- -0.04376223310828209, 0.011538735590875149, 0.006523632910102606, 0.10967487841844559,
- 0.019258437678217888, 0.08411571383476257, 0.018051130697131157, -0.12185082584619522,
- -0.025730708613991737, 0.07025698572397232, 0.020726198330521584, -0.14438824355602264,
- -0.048312392085790634, 0.06067788973450661, 0.10341800004243851, -0.09657121449708939,
- 0.0029286250937730074, -0.07561566680669785, 0.026605376973748207, -0.03387479856610298,
- 0.06641577184200287, -0.01816890574991703, 0.032947905361652374, 0.049614280462265015,
- 0.05122147873044014, -0.013224855065345764, -0.10127676278352737, 0.003242434235289693,
- 0.06862423568964005, -0.015645574778318405, -0.031037667766213417, 0.08133208006620407,
- -0.06554967164993286, 0.03508971258997917, -0.023835791274905205, 0.15501566231250763,
- -0.1375276893377304, 0.0161299966275692, -0.009186347015202045, -0.03140837699174881,
- 0.05381077527999878, -0.0009653574670664966, -0.0707138180732727, -0.08219193667173386,
- 0.08547073602676392, 0.00834590196609497, 0.04664717987179756, 0.09316030889749527,
- -0.017089713364839554, 0.04302971065044403, 0.11202626675367355, 0.015225709415972233,
- -0.01499166339635849, 0.045952070504426956, 0.04705217480659485, -0.026830678805708885,
- -0.02204270102083683, 0.010554485954344273, 0.02639828808605671, 0.030977562069892883,
- -0.005972676444798708, 0.04892085865139961, -0.0333443246781826, -0.0570288747549057,
- 0.03847881779074669, 0.05597887560725212, 0.004434017930179834, 0.08645422011613846,
- -0.04070942476391792, -0.06660087406635284, -0.036319948732852936,
- -0.016999125480651855, 0.008292481303215027, -0.02442319132387638, 0.08357086032629013,
- 0.130080446600914, 0.10394355654716492, 0.05866752564907074, 0.03449869528412819,
- 0.05561598762869835, 0.060171425342559814, -0.02018819935619831, 0.06516806036233902,
- 0.0065035405568778515, -0.04115747660398483, -0.0012395550729706883,
- 0.0005150249344296753, 0.005720548331737518, -0.010675456374883652,
- -0.08330085873603821, -0.035699229687452316, -0.09116556495428085,
- -0.019214335829019547, -0.08577015995979309, -0.06278897076845169, 0.0161293875426054,
- 0.05457208678126335, -0.06650092452764511, -0.10920082777738571, -0.09242075681686401,
- 0.017006145790219307, 0.11631423234939575, -0.03782818838953972, -0.04285607859492302,
- -0.11504563689231873, 0.03250184655189514, -0.031005853787064552, 0.05743671581149101,
- -0.008761744014918804, -0.012850668281316757, -0.0337943397462368, -0.08562568575143814,
- 0.052080851048231125, 0.016935227438807487, -0.005166960414499044,
- -0.003496666671708226, -0.04069161042571068, -0.024845758453011513,
- 0.024278253316879272, 0.014589153230190277, -0.06870914250612259, -0.005941139068454504,
- 0.004996121395379305, 0.06967121362686157, -0.038746427744627, -0.07133981585502625,
- 0.06727009266614914, 0.01086986530572176, -0.006751501467078924, 0.0923459455370903,
- -0.03973295912146568, 0.026340359821915627, -0.02823580987751484, -0.09162964671850204,
- -0.029354022815823555, 0.015390046872198582, -0.03028155118227005, 0.06999784708023071,
- -0.03355644643306732, 0.014310930855572224, -0.03670685738325119, -0.010973022319376469,
- 0.06741183996200562, -0.022982990369200706, -0.10101114958524704, -0.07940555363893509,
- 0.1178213357925415, -0.007704983931034803, -0.04534699395298958, 0.022405752912163734,
- -0.06335695832967758, 0.05675293877720833, -0.02187529392540455, 0.010327035561203957,
- 0.014291157014667988, 0.07282602787017822, -0.006934069562703371, 0.07226357609033585,
- 0.061438288539648056, -0.05021806061267853, 0.05102705955505371, 0.06700988858938217,
- 0.4142567217350006, -0.25536516308784485, 0.11407622694969177, 0.11183551698923111,
- 0.04087555408477783, 0.06871019303798676, -0.044136300683021545, 0.06779015809297562,
- 0.0777292475104332, 0.1309700459241867, 0.10395452380180359, -0.07987173646688461,
- -0.01809362880885601, -0.07094369828701019, 0.11808667331933975, 0.0059572369791567326,
- 0.05438700318336487, -0.02044459618628025, -0.09595616906881332, -0.0026115207001566887,
- 0.03429248556494713, -0.04808869585394859, 0.031113436445593834, -0.013384699821472168,
- -0.039112821221351624, 0.0062927664257586, 0.01636536233127117, 0.04924226924777031,
- -0.043225955218076706, 0.02103080041706562, -0.03117012418806553, 0.06347918510437012,
- 0.044526975601911545, 0.05387535318732262, -0.16069787740707397, 0.022846853360533714,
- -0.10480900853872299, -0.09364882856607437, 0.05252431705594063, -0.02145438827574253,
- 0.07430201023817062, 0.0528842955827713, -0.03519228845834732, 0.0604555644094944,
- -0.022809697315096855, -0.027702977880835533, 0.022308217361569405,
- 0.021762071177363396, 0.04004231467843056, 0.05215559899806976, 0.17733044922351837,
- -0.03742571547627449, -0.03997742012143135, -0.08768139034509659, 0.07270968705415726,
- 0.13367919623851776, -0.009987364523112774, 0.026650331914424896, 0.03605792298913002,
- -0.02672417461872101, -0.006932362448424101, -0.0670299157500267, -0.0829455778002739,
- -0.031696271151304245, -0.05662154778838158, 0.07339934259653091, 0.05946025252342224,
- -0.02895084209740162, -0.11300913244485855, -0.00831132847815752, -0.04529291391372681,
- 0.029368175193667412, 0.15411926805973053, -0.06166229024529457, 0.05688108503818512,
- -0.024720728397369385, -0.0024733718018978834, 0.028605610132217407,
- -0.08943559974431992, -0.0022921033669263124, -0.04824681207537651,
- 0.033112432807683945, 0.08541031926870346, 0.04331637918949127, -0.023425951600074768,
- 0.11231016367673874, -0.08681561797857285, 0.0874532163143158, 0.0006419091369025409,
- -0.057044196873903275, 0.04518119618296623, -0.021511221304535866, 0.031238317489624023,
- 0.05389396473765373, -0.07397972792387009, 0.03497869893908501, -0.04704279080033302,
- -0.04578642547130585, -0.07609780877828598, -0.09247706085443497, -0.043352384120225906,
- -0.10343114286661148, 0.034698743373155594, -0.10913684964179993, -0.010384198278188705,
- -0.026132091879844666, -0.026525311172008514, -0.009568913839757442,
- 0.011441492475569248, 0.05307359620928764, -0.13204364478588104, -0.0007243892177939415,
- -0.01114585716277361, 0.035608429461717606, -0.023306546732783318, -0.0577821247279644,
- 0.054011762142181396, 0.0632920041680336, 0.056603461503982544, -0.010627896524965763,
- 0.01762825809419155, -0.08057741075754166, 0.0643247589468956, -0.1400827020406723,
- -0.41468966007232666, 0.05210364982485771, 0.017869776114821434, 0.031358812004327774,
- -0.01370918843895197, -0.03599594905972481, 0.08243640512228012, 0.0073952991515398026,
- -0.06904930621385574, 0.1132265031337738, -0.06990782171487808, 0.029045790433883667,
- -0.06104015186429024, -0.06467587500810623, -0.04266398772597313, -0.05042283609509468,
- -0.05721960589289665, 0.03769265115261078, -0.005877447780221701, -0.05688166990876198,
- -0.09237799793481827, 0.02960282750427723, -0.02456476539373398, 0.0021037780679762363,
- 0.020477071404457092, 0.003920962568372488, -0.03532789647579193, -0.042340654879808426,
- 0.03386269137263298, 0.061167895793914795, 0.015594090335071087, -0.08355095237493515,
- -0.018289953470230103, 0.033787380903959274, -0.00007005160296102986,
- 0.14291568100452423, 0.03044000267982483, 0.03250664845108986, -0.1015118733048439,
- 0.10398074239492416, 0.07013747096061707, 0.1837783306837082, -0.0321417860686779,
- 0.006811691913753748, -0.014741136692464352, 0.1294715255498886, 0.07966343313455582,
- 0.022444745525717735, -0.032501306384801865, 0.004421229939907789, 0.03919367864727974,
- -0.021585093811154366, 0.08637050539255142, -0.08351530879735947, -0.028267664834856987,
- -0.018937990069389343, -0.031234411522746086, -0.01826273463666439,
- -0.03531293198466301, 0.25310489535331726, 0.03200804069638252, 0.053996309638023376,
- 0.026450684294104576, -0.061824947595596313, 0.040009062737226486, -0.1058310866355896,
- -0.08791021257638931, -0.01697574369609356, -0.00808954518288374, 0.01613456755876541,
- -0.04249783232808113, -0.1258690506219864, -0.028178608044981956, -0.005202388856559992,
- -0.007815935648977757, 0.12270388752222061, 0.019664684310555458, 0.0013352185487747192,
- -0.01887660101056099, 0.1400422900915146, 0.039991531521081924, 0.0029558921232819557,
- 0.05137128755450249, 0.09453797340393066, 0.036382343620061874, 0.0689118355512619,
- -0.041961420327425, -0.09872554987668991, -0.015290533192455769, 0.15764543414115906,
- -0.03850383684039116, 0.10478729009628296, 0.040882986038923264, -0.03942282497882843,
- -0.06709175556898117, 0.03518339991569519, -0.014521407894790173, 0.0058070458471775055,
- -0.4747905731201172, -0.023652272298932076, 0.1400744915008545, 0.013784845359623432,
- 0.017570985481142998, 0.11715561896562576, 0.038983434438705444, -0.048123013228178024,
- -0.02297896146774292, -0.08240373432636261, 0.08749416470527649, 0.018734559416770935,
- 0.07933619618415833, -0.1446632295846939, 0.03057015687227249, 0.0693921446800232,
- -0.0198142621666193, 0.011696885339915752, 0.09259805083274841, -0.25423142313957214,
- -0.01899448223412037, -0.015609554946422577, 0.15486399829387665, -0.016133470460772514,
- 0.03876402601599693, 0.09238558262586594, -0.028798094019293785, 0.00623284699395299,
- 0.05598141625523567, 0.0033807556610554457, 0.06277463585138321, -0.026554033160209656,
- -0.007655871566385031, 0.12038403749465942, 0.1393650621175766, 0.03373732045292854,
- 0.015270189382135868, 12.107844352722168, 0.05603761598467827, 0.07117276638746262,
- -0.1031104326248169, 0.014816761016845703, -0.04325007274746895, 0.0268448144197464,
- -0.08886720985174179, 0.06180543825030327, 0.14605964720249176, -0.02343153953552246,
- -0.03681926429271698, -0.0005566617473959923, -0.10883495956659317,
- 0.022212475538253784, -0.08982479572296143, -0.06333724409341812, -0.013344109058380127,
- 0.05059133097529411, -0.03568936511874199, -0.04105677083134651, 0.021837903186678886,
- 0.05946700647473335, 0.015748748555779457, -0.05283759906888008, 0.025192422792315483,
- 0.02034272812306881, -0.009732109494507313, -0.009351018816232681, 0.02553681470453739,
- -0.005982851143926382, 0.028897101059556007, 0.07245662063360214, -0.024336570873856544,
- 0.03934871405363083, 0.089610256254673, 0.08923066407442093, 0.055050045251846313,
- 0.004077047109603882, 0.0898127481341362, -0.010637566447257996, 0.04444529488682747,
- 0.045974183827638626, 0.026729626581072807, 0.06092384457588196, 0.0215423796325922,
- 0.05706307291984558, 0.13816185295581818, 0.007141129579395056, 0.05486799776554108,
- 0.08975879102945328, -0.009324056096374989, 0.12187415361404419, 0.003938449081033468,
- -0.05485840141773224, 0.044193387031555176, -0.0038493096362799406,
- -0.08889078348875046, 0.08665138483047485, 0.027013638988137245, -0.040099043399095535,
- 0.1234201118350029, 0.026807494461536407, 0.11610597372055054, 0.049042727798223495,
- 0.06540708988904953, 0.08138232678174973, 0.044779032468795776, -0.14757947623729706,
- -0.1049831211566925, 0.0011045620776712894, -0.09548935294151306, -0.08793359994888306,
- 0.12350594997406006, 0.10574524849653244, -0.02213943935930729, 0.06722068041563034,
- -0.02273419499397278, 0.04416703060269356, -0.034910622984170914, -0.014348546974360943,
- 0.04977196455001831, -0.0020184225868433714, 0.020391803234815598, 0.02823689393699169,
- 0.04448235034942627, 0.06315857172012329, 0.09757011383771896, -0.01969839818775654,
- -0.09486985951662064, -0.08075633645057678, 0.08819473534822464, -0.034763772040605545,
- -0.06678523868322372, 0.028304122388362885, -0.056562427431344986, 0.027522988617420197,
- -0.17464043200016022, 0.09549953788518906, 0.10770050436258316, -0.09515345841646194,
- -0.010176364332437515, -0.029471533372998238, 0.031290967017412186,
- 0.015600263141095638, 0.04219643399119377, -0.034259114414453506, 0.0035073820035904646,
- 0.03214019909501076, 0.04898121953010559, -0.025045311078429222, 0.10130491852760315,
- 0.08865302801132202, -0.07860847562551498, 0.03278123959898949, 0.06675419956445694,
- -0.04470154270529747, 0.004709821660071611, 0.05095643177628517, 0.05138188600540161,
- -0.09397882223129272, -0.045921895653009415, -0.061327267438173294,
- -0.03853732720017433, -0.015614498406648636, -0.0610467903316021,
- -0.0008014294435270131, 0.00955437496304512, -0.05849267914891243, -0.02075604908168316,
- 0.008443014696240425, 0.0626194030046463, 0.06258787959814072, -0.006381265819072723,
- 0.06996277719736099, -0.0775015577673912, -0.05432499572634697, 0.037756599485874176,
- 0.047239482402801514, 0.07506807893514633, -0.09946981072425842, -0.04496270418167114,
- -0.05574933812022209, -0.14338764548301697, 0.020147820934653282, 0.11742204427719116,
- 0.05239614471793175, 0.04346316680312157, 0.03098190389573574, -0.10869455337524414,
- -0.06676211953163147, 0.08358369022607803, 0.06498754769563675, 0.01651417464017868,
- 0.03153988718986511, -0.0497577078640461, -0.04034924879670143, 0.09931308031082153,
- -0.02988012135028839, -0.010403179563581944, -0.04136832430958748,
- -0.028705500066280365, 0.06702377647161484, 0.11448825150728226, 0.050117019563913345,
- 0.045590776950120926, 0.03215738758444786, -0.014435037970542908, 0.050899941474199295,
- -0.001939987181685865, 0.05095982551574707, -0.04041781276464462, -0.0935097336769104,
- -0.08188001811504364, 0.03784557059407234, 0.07163817435503006, 0.013869508169591427,
- -0.05865604802966118, 0.011270638555288315, -0.06444399803876877
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 146,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 13,
- "similarity": 0.9988532066345215
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 17,
- "similarity": 0.9987660646438599
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 41,
- "similarity": 0.998738706111908
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Cade Metz"],
- "epoch_date_downloaded": 1639267200,
- "epoch_date_modified": 1639267200,
- "epoch_date_submitted": 1639267200,
- "flag": null,
- "report_number": 1502,
- "source_domain": "nytimes.com",
- "submitters": ["Anonymous"],
- "title": "Can a Machine Learn Morality?",
- "url": "https://www.nytimes.com/2021/11/19/technology/can-a-machine-learn-morality.html"
- },
- {
- "__typename": "Report",
- "authors": ["James Vincent"],
- "epoch_date_downloaded": 1635120000,
- "epoch_date_modified": 1635120000,
- "epoch_date_submitted": 1635120000,
- "flag": null,
- "report_number": 1495,
- "source_domain": "theverge.com",
- "submitters": ["Khoa Lam"],
- "title": "The AI oracle of Delphi uses the problems of Reddit to offer dubious moral advice",
- "url": "https://www.theverge.com/2021/10/20/22734215/ai-ask-delphi-moral-ethical-judgement-demo"
- },
- {
- "__typename": "Report",
- "authors": ["Tony Tran"],
- "epoch_date_downloaded": 1635120000,
- "epoch_date_modified": 1635120000,
- "epoch_date_submitted": 1635120000,
- "flag": null,
- "report_number": 1494,
- "source_domain": "futurism.com",
- "submitters": ["Gerry Chng"],
- "title": "Scientists Built an AI to Give Ethical Advice, But It Turned Out Super Racist",
- "url": "https://futurism.com/delphi-ai-ethics-racist"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "scammers",
- "name": "scammers"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "unknown",
- "name": "Unknown"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "hong-kong-bank-manager",
- "name": "Hong Kong bank manager"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1497, 1496],
- "vector": [
- -0.05383677780628204, 0.0853303000330925, 0.04087381809949875, -0.09596006572246552,
- 0.08484435081481934, -0.05767093598842621, 0.0066749234683811665, 0.08185972273349762,
- 0.09962248802185059, -0.14798057079315186, 0.020077930763363838, 0.09711188077926636,
- 0.023029394447803497, -0.06696043908596039, 0.01835807040333748, -0.0440155491232872,
- -0.09152854979038239, -0.020195618271827698, -0.00399235263466835, -0.13320240378379822,
- -0.06881044805049896, 0.03082297556102276, 0.028461214154958725, 0.10544305294752121,
- -0.051785942167043686, 0.02767273411154747, 0.08462786674499512, 0.1050926148891449,
- -0.11036992073059082, 0.008023289032280445, -0.041173603385686874, -0.04224139451980591,
- 0.12774434685707092, 0.0010983450338244438, 0.016446517780423164, 0.08600729703903198,
- 0.015916263684630394, -0.04304029792547226, -0.04241721332073212, -0.018744297325611115,
- 0.011488715186715126, 0.1929793357849121, 0.019728681072592735, -0.006787667982280254,
- 0.04925139620900154, -0.034226808696985245, 0.012723925523459911, 0.029014870524406433,
- 0.01959424465894699, -0.011973249725997448, -0.02088022604584694, 0.017728356644511223,
- -0.06575356423854828, 0.04052620753645897, -0.07473593950271606, 0.049713317304849625,
- -0.0003343971911817789, 0.03400065377354622, 0.058255597949028015, -0.05116017162799835,
- -0.007350303698331118, -0.22421231865882874, -0.05773559957742691, -0.05402173846960068,
- 0.08204242587089539, -0.06926073879003525, -0.015752216801047325, -0.003274142276495695,
- 0.007579375524073839, 0.04453401267528534, 0.05932556837797165, -0.011178376153111458,
- -0.009070901200175285, 0.019701749086380005, 0.010483236983418465, 0.00881658773869276,
- 0.007396353408694267, 0.1728595793247223, -0.08809009194374084, 0.01608697697520256,
- 0.12444858998060226, -0.08062706887722015, 0.3573935031890869, 0.004290185868740082,
- -0.006895987782627344, -0.018305141478776932, 0.11925902217626572, 0.02970976196229458,
- 0.04207713529467583, 0.028269357979297638, -0.010089363902807236, 0.009711792692542076,
- -0.08885655552148819, -0.00237959623336792, 0.07212148606777191, 0.021303623914718628,
- -0.003125208429992199, -0.021410606801509857, -0.02438848465681076,
- -0.04378534108400345, 0.014334071427583694, -0.060824014246463776, 0.09697503596544266,
- 0.058784592896699905, -0.028483126312494278, -0.05237313359975815, 0.06361813843250275,
- -0.08778727799654007, 0.06192599982023239, -0.06715027987957001, 0.03940423205494881,
- -0.02376582846045494, 0.08844606578350067, 0.007325325161218643, 0.016583850607275963,
- -0.05300631374120712, 0.033022232353687286, 0.02469179593026638, 0.09151431918144226,
- 0.020840156823396683, 0.01672070100903511, 0.05289227515459061, 0.05397184193134308,
- -0.02218344435095787, 0.01011032983660698, -0.04607652872800827, -0.03307057172060013,
- -0.0296294204890728, -0.016522038727998734, 0.013016777113080025, -0.04256043583154678,
- -0.1849662959575653, 0.03212331235408783, 0.09849842637777328, -0.010956336744129658,
- -0.043402690440416336, 0.04577307775616646, -0.050388265401124954, 0.08030271530151367,
- 0.0028148633427917957, -0.06593921780586243, 0.10536244511604309, 0.04265227168798447,
- 0.04366597533226013, 0.09667155891656876, 0.030184557661414146, -0.020931106060743332,
- -0.053590767085552216, -0.013195367529988289, -0.025540482252836227,
- 0.10400903224945068, -0.12763747572898865, -0.04848705977201462, 0.0030885906890034676,
- 0.0047638751566410065, 0.6793875694274902, 0.08289328217506409, 0.14560732245445251,
- 0.02394726686179638, -0.0019520362839102745, 0.16110943257808685, 0.0057632592506706715,
- 0.08126804232597351, 0.009626924060285091, -0.070341095328331, 0.06840948015451431,
- -0.0356929711997509, -0.018802622333168983, 0.04532588645815849, 0.058217450976371765,
- 0.10900680720806122, 0.03044254332780838, 0.07523038983345032, 0.006173454690724611,
- -0.06783264875411987, 0.021842485293745995, 0.038294918835163116, -0.011158008128404617,
- -0.10413969308137894, -0.026353569701313972, 0.07466952502727509, 0.04358435049653053,
- -0.09658403694629669, 0.0012223320081830025, -0.027355197817087173, 0.03331460431218147,
- -0.0004303096793591976, 0.0471971370279789, -0.01373251061886549, 0.06062466651201248,
- 0.03334196284413338, 0.05925854295492172, 0.007005734834820032, -0.13874556124210358,
- -0.01318303868174553, 0.07113951444625854, -0.006304033566266298, -0.054102420806884766,
- 0.059768904000520706, -0.07898543775081635, 0.023430421948432922, -0.014490212313830853,
- 0.14774127304553986, -0.1210150271654129, 0.021466534584760666, 0.0036188517697155476,
- -0.004030711017549038, 0.05031738430261612, 0.025870881974697113, -0.07721808552742004,
- -0.0651729553937912, 0.03939930349588394, 0.03469095379114151, 0.04069869965314865,
- 0.07889597862958908, -0.011728237383067608, 0.04244430363178253, 0.02722962759435177,
- -0.009742332622408867, -0.05018136277794838, 0.052359096705913544, 0.04240305721759796,
- 0.042091041803359985, 0.0016610277816653252, -0.002958266530185938, 0.0318957194685936,
- 0.005687582306563854, -0.019840462133288383, 0.04194965586066246, -0.007697991095483303,
- -0.04761255532503128, 0.07359829545021057, 0.04806318134069443, -0.037928562611341476,
- 0.0751563236117363, -0.07287749648094177, -0.043391309678554535, -0.04630183055996895,
- -0.0068572345189750195, 0.015630507841706276, -0.06818650662899017, 0.04714335501194,
- 0.08721664547920227, 0.0548853799700737, 0.04135073721408844, 0.04156793653964996,
- 0.028353579342365265, 0.10460279881954193, 0.005511440336704254, 0.03559531643986702,
- -0.04488404095172882, -0.003650339087471366, -0.032833218574523926,
- -0.005903442390263081, 0.017933623865246773, 0.027616871520876884, -0.06413768231868744,
- -0.04148200526833534, -0.06411910057067871, -0.028508605435490608, -0.05013901740312576,
- -0.0959777757525444, 0.004961457569152117, 0.045715853571891785, -0.04612352326512337,
- -0.08923070877790451, -0.06254256516695023, 0.022673236206173897, 0.05353318154811859,
- -0.016885152086615562, 0.006804159842431545, -0.1312406361103058, 0.013735359534621239,
- -0.03282834589481354, 0.04334655776619911, 0.013905945234000683, -0.023073773831129074,
- -0.012950308620929718, -0.022615373134613037, 0.023397713899612427,
- 0.013182185590267181, 0.029911767691373825, -0.032908763736486435, -0.04126536846160889,
- -0.04689871519804001, -0.014330785721540451, 0.03186097368597984, -0.043389029800891876,
- 0.033971380442380905, 0.0572986900806427, 0.052224427461624146, 0.011454914696514606,
- 0.001606387086212635, 0.04058293625712395, -0.024167625233530998, -0.012343051843345165,
- 0.08483180403709412, -0.016728244721889496, -0.0009868619963526726,
- -0.022014562040567398, -0.08407832682132721, -0.04085081070661545,
- -0.014875123277306557, -0.04663017764687538, 0.030687177553772926,
- -0.003408166579902172, 0.00216573104262352, -0.03461616486310959, -0.017946280539035797,
- 0.05175887793302536, -0.053429774940013885, -0.07753585278987885, -0.09081520140171051,
- 0.12535390257835388, 0.005000532139092684, 0.007100215181708336, 0.0022523384541273117,
- -0.051712244749069214, 0.05666454881429672, -0.015132641419768333, 0.0363960787653923,
- 0.03651134669780731, 0.06340554356575012, 0.0146256685256958, 0.011752215214073658,
- 0.08189801871776581, -0.028394097462296486, 0.040683314204216, 0.06516842544078827,
- 0.4382358193397522, -0.2023291289806366, 0.10848291218280792, 0.1098749190568924,
- 0.006951617076992989, 0.06099051237106323, -0.03440159931778908, 0.07505230605602264,
- 0.0863679051399231, 0.08531896024942398, 0.09598472714424133, -0.03834512084722519,
- 0.0013286499306559563, -0.07417294383049011, 0.06766811013221741, -0.013929067179560661,
- -0.002110135741531849, -0.07185210287570953, -0.03535251319408417, -0.03547939658164978,
- 0.0902252048254013, -0.02759414166212082, 0.004215520340949297, 0.004520967602729797,
- -0.03164748102426529, 0.011020371690392494, 0.04861216992139816, 0.024893177673220634,
- -0.03857908770442009, 0.017958343029022217, -0.02180086448788643, 0.05741345137357712,
- 0.033615466207265854, 0.016168558970093727, -0.11789026856422424, 0.008648389019072056,
- -0.07477045804262161, -0.09432348608970642, 0.07867997884750366, 0.013399634510278702,
- 0.06097403168678284, 0.020712874829769135, -0.02613137662410736, 0.01988605037331581,
- -0.04252808913588524, -0.050846923142671585, 0.022123660892248154, 0.05035614222288132,
- 0.030430540442466736, 0.05603109672665596, 0.16075816750526428, -0.04089722782373428,
- -0.06841473281383514, -0.07664080709218979, 0.0422537699341774, 0.10924579948186874,
- 0.01038297452032566, 0.0025560178328305483, -0.027276063337922096,
- -0.030593357980251312, -0.02290884591639042, -0.08320754021406174, -0.05219755694270134,
- 0.009284514002501965, -0.02842888981103897, 0.0943775624036789, 0.010582461021840572,
- -0.014870639890432358, -0.1766107678413391, -0.0011723176576197147,
- -0.07642533630132675, 0.05616632103919983, 0.10993922501802444, -0.05957729369401932,
- 0.04979763180017471, 0.005697918124496937, -0.009418155997991562, -0.031173542141914368,
- -0.09821336716413498, -0.00228679901920259, 0.013632524758577347, 0.046482283622026443,
- 0.06059219688177109, 0.025393232703208923, -0.037432290613651276, 0.06537958234548569,
- -0.10515178740024567, 0.06084229052066803, 0.03339940309524536, -0.009955815970897675,
- 0.06731320917606354, -0.010036948136985302, 0.03570777550339699, 0.032332777976989746,
- -0.07703952491283417, 0.02303616888821125, -0.03970467299222946, -0.050517771393060684,
- -0.10721239447593689, -0.01514741126447916, -0.02669488452374935, -0.07913118600845337,
- 0.0052224425598979, -0.05696973577141762, -0.011715656146407127, -0.022436628118157387,
- -0.049772944301366806, 0.003609962062910199, 0.03629624843597412, 0.02455863356590271,
- -0.14243841171264648, -0.0219236109405756, 0.004140607547014952, 0.040765441954135895,
- -0.03601443022489548, -0.07091657817363739, 0.022167660295963287, 0.10248024761676788,
- 0.04578729346394539, -0.01072351448237896, -0.0224692914634943, -0.05056247487664223,
- 0.04855738580226898, -0.09882719814777374, -0.49810561537742615, 0.11160367727279663,
- -0.00495505053550005, 0.018965043127536774, 0.015424272045493126, -0.06558067351579666,
- 0.06570879369974136, -0.01446471270173788, -0.03669968992471695, 0.07277854532003403,
- -0.058782950043678284, 0.025501728057861328, -0.004337075166404247,
- -0.019668538123369217, -0.024524884298443794, -0.06383521109819412,
- -0.07402169704437256, 0.0490201860666275, -0.008372681215405464, -0.058994390070438385,
- -0.08544371277093887, 0.021574925631284714, -0.014696779660880566, 0.023259367793798447,
- 0.032928526401519775, -0.012360758148133755, -0.04543662816286087,
- -0.048872292041778564, 0.04631231725215912, 0.04118437319993973, -0.0027151720132678747,
- -0.0846356600522995, 0.01772891916334629, 0.020140061154961586, -0.03527327999472618,
- 0.12482011318206787, 0.0035903281532227993, -0.032674551010131836, -0.09090203046798706,
- 0.07212518155574799, 0.06049353629350662, 0.19036242365837097, -0.012529542669653893,
- 0.034012265503406525, 0.00956837460398674, 0.1034504622220993, 0.03725609928369522,
- 0.04197999835014343, -0.03370092809200287, 0.012537267059087753, 0.00302741676568985,
- -0.019448172301054, 0.07106117904186249, -0.07879756391048431, -0.02270404063165188,
- -0.022138627246022224, -0.021067455410957336, -0.04303938150405884,
- -0.032311584800481796, 0.22797614336013794, 0.01435781642794609, 0.023321211338043213,
- 0.034901272505521774, -0.01632319763302803, -0.00156350526958704, -0.020779483020305634,
- -0.136177659034729, -0.015631427988409996, 0.021344002336263657, 0.027833687141537666,
- -0.06433436274528503, -0.12042371928691864, -0.03006034344434738, 0.031815916299819946,
- -0.02778010070323944, 0.11034293472766876, -0.015169888734817505, 0.04247007519006729,
- -0.04471663013100624, 0.10058093070983887, 0.014403893612325191, 0.03810959309339523,
- 0.04938376694917679, 0.08083541691303253, 0.0370316281914711, -0.01318048220127821,
- -0.033230554312467575, -0.06928923726081848, 0.02353564277291298, 0.13981546461582184,
- -0.028017591685056686, 0.1096644252538681, 0.09284375607967377, -0.04681131988763809,
- -0.05433454364538193, 0.0397854745388031, 0.040446341037750244, 0.05197884887456894,
- -0.46816569566726685, -0.07251810282468796, 0.10623003542423248, -0.015394553542137146,
- 0.03245296701788902, 0.07783612608909607, 0.04713338613510132, -0.06123995780944824,
- 0.00032484810799360275, -0.0855361670255661, 0.14914128184318542,
- -0.00012777885422110558, 0.09140224754810333, -0.14035221934318542,
- -0.019645195454359055, 0.060154445469379425, -0.02014332264661789,
- -0.019808707758784294, 0.04352109134197235, -0.22744816541671753, -0.004778099711984396,
- -0.0173309575766325, 0.11585378646850586, 0.02752429060637951, 0.05729566514492035,
- 0.05860677361488342, -0.0984894260764122, 0.03982749208807945, 0.10020039975643158,
- 0.01241757720708847, 0.0611090287566185, 0.0036987592466175556, -0.014020112343132496,
- 0.08015844225883484, 0.07583156228065491, 0.07217592746019363, -0.05088705196976662,
- 11.71670913696289, 0.053238146007061005, 0.04797699302434921, -0.09977404773235321,
- 0.0017030829330906272, -0.04570692032575607, 0.04862862825393677, -0.10342498123645782,
- 0.08025825768709183, 0.11815650016069412, -0.019539326429367065, -0.023502197116613388,
- -0.050164323300123215, -0.0925205796957016, 0.04254843294620514, -0.018936045467853546,
- -0.021660275757312775, -0.05500605329871178, 0.024588419124484062, -0.02818194031715393,
- -0.040674857795238495, 0.023307086899876595, 0.045058559626340866, 0.008512194268405437,
- -0.05781063437461853, 0.012112608179450035, -0.0010323366150259972,
- 0.010445152409374714, -0.007300081662833691, 0.06512293219566345, 0.001937576336786151,
- 0.01495335903018713, 0.0721682533621788, 0.0029675050172954798, 0.022768676280975342,
- 0.006289753131568432, 0.08795864135026932, 0.01582254096865654, 0.04942982271313667,
- 0.05119018256664276, 0.02811647765338421, 0.02109186165034771, 0.02481222152709961,
- 0.07620619237422943, 0.044167984277009964, 0.04113449901342392, -0.006673356518149376,
- 0.10408055782318115, -0.019813451915979385, 0.07044221460819244, 0.09720875322818756,
- -0.02178010530769825, 0.06773336976766586, -0.014189453795552254,
- 0.00015080580487847328, 0.04158584773540497, 0.0356280691921711, -0.06226944178342819,
- 0.10151054710149765, 0.04789138585329056, -0.03913569822907448, 0.11570443212985992,
- -0.0003996544983237982, 0.11078044027090073, -0.045519690960645676, 0.05930757522583008,
- 0.04939042031764984, 0.0929335281252861, -0.0918150395154953, -0.08729998022317886,
- 0.020174480974674225, -0.06668943166732788, -0.0917864590883255, 0.06539168953895569,
- 0.07147937268018723, -0.030992044135928154, 0.052208252251148224, -0.023278843611478806,
- 0.023146972060203552, -0.06500300765037537, 0.013465747237205505, 0.020620761439204216,
- -0.03700827434659004, 0.04123127460479736, 0.037513598799705505, 0.018017925322055817,
- 0.06555452942848206, 0.05143476277589798, 0.00417765649035573, -0.066926009953022,
- -0.013657421804964542, 0.0966348946094513, -0.01309928297996521, -0.08135787397623062,
- -0.01317889615893364, -0.04265952110290527, -0.02092481590807438, -0.1333969533443451,
- 0.06787847727537155, 0.09325042366981506, -0.08414818346500397, 0.028168290853500366,
- -0.009325286373496056, 0.07559390366077423, 0.006715912371873856, 0.041541777551174164,
- -0.07387407124042511, -0.014962472952902317, 0.035131968557834625, 0.03461071103811264,
- -0.043923646211624146, 0.04189607873558998, 0.056582268327474594, -0.06833015382289886,
- 0.038074180483818054, 0.045251958072185516, -0.0340566448867321, 0.012677215039730072,
- 0.056272830814123154, 0.06390886753797531, -0.09334627538919449, -0.0415046364068985,
- -0.014539406634867191, -0.019578266888856888, -0.004214162938296795,
- -0.04913003742694855, -0.002141000935807824, 0.027265915647149086, -0.04562654346227646,
- 0.006872896570712328, 0.041714463382959366, 0.049420274794101715, 0.06554922461509705,
- -0.03561607748270035, 0.023243345320224762, -0.04902184382081032, -0.0769517719745636,
- 0.06098906695842743, 0.09307092428207397, 0.08028460294008255, -0.0633399561047554,
- -0.010280553251504898, -0.03240952268242836, -0.08737741410732269, 0.026667919009923935,
- 0.06508360058069229, 0.04456460848450661, 0.008865199983119965, 0.030177511274814606,
- -0.06466412544250488, -0.017463084310293198, 0.08640045672655106, 0.02901575155556202,
- 0.022119630128145218, 0.06972400844097137, -0.08002929389476776, -0.017236996442079544,
- 0.10033531486988068, -0.031714245676994324, 0.011624717153608799, 0.020421724766492844,
- -0.05433448404073715, 0.07836776971817017, 0.07911384850740433, 0.0023053339682519436,
- -0.000622948631644249, 0.02556060254573822, 0.000842748093418777, 0.02908014878630638,
- -0.0004598218947649002, 0.02385714091360569, -0.02086654305458069, -0.0684080645442009,
- -0.05527597665786743, 0.018177710473537445, 0.0715126246213913, 0.049351051449775696,
- -0.15926812589168549, -0.0604940727353096, 0.01628982089459896
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 147,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 68,
- "similarity": 0.9983550906181335
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 200,
- "similarity": 0.9982547760009766
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 174,
- "similarity": 0.9982179999351501
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Thomas Brewster"],
- "epoch_date_downloaded": 1637452800,
- "epoch_date_modified": 1637452800,
- "epoch_date_submitted": 1637452800,
- "flag": null,
- "report_number": 1497,
- "source_domain": "forbes.com",
- "submitters": ["Khoa Lam"],
- "title": "Fraudsters Cloned Company Director’s Voice In $35 Million Bank Heist, Police Find",
- "url": "https://www.forbes.com/sites/thomasbrewster/2021/10/14/huge-bank-fraud-uses-deep-fake-voice-tech-to-steal-millions/?sh=419d63bc7559"
- },
- {
- "__typename": "Report",
- "authors": ["Tony Tran"],
- "epoch_date_downloaded": 1637452800,
- "epoch_date_modified": 1637452800,
- "epoch_date_submitted": 1637452800,
- "flag": null,
- "report_number": 1496,
- "source_domain": "futurism.com",
- "submitters": ["Khoa Lam"],
- "title": "Bank Robbers Steal $35 Million by Deepfaking Boss's Voice",
- "url": "https://futurism.com/the-byte/bank-robbers-deepfaking-voice"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "userway",
- "name": "UserWay"
- },
- {
- "__typename": "Entity",
- "entity_id": "maxaccess.io",
- "name": "MaxAccess.io"
- },
- {
- "__typename": "Entity",
- "entity_id": "allyable",
- "name": "Allyable"
- },
- {
- "__typename": "Entity",
- "entity_id": "accessus.ai",
- "name": "Accessus.ai"
- },
- {
- "__typename": "Entity",
- "entity_id": "accessibe",
- "name": "accessiBe"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "userway",
- "name": "UserWay"
- },
- {
- "__typename": "Entity",
- "entity_id": "maxaccess.io",
- "name": "MaxAccess.io"
- },
- {
- "__typename": "Entity",
- "entity_id": "allyable",
- "name": "Allyable"
- },
- {
- "__typename": "Entity",
- "entity_id": "accessus.ai",
- "name": "Accessus.ai"
- },
- {
- "__typename": "Entity",
- "entity_id": "accessibe",
- "name": "accessiBe"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "web-accessibility-vendors'-customers",
- "name": "web accessibility vendors' customers"
- },
- {
- "__typename": "Entity",
- "entity_id": "internet-users-with-disabilities",
- "name": "internet users with disabilities"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1499],
- "vector": [
- -0.01930212788283825, 0.11006155610084534, 0.012596107088029385, -0.12368490546941757,
- 0.057195693254470825, -0.09317190945148468, -0.033346548676490784, 0.08333247900009155,
- 0.12018969655036926, -0.11529184877872467, -0.035843949764966965, 0.06180516630411148,
- 0.027639657258987427, -0.10628197342157364, 0.022514212876558304, -0.14454613626003265,
- -0.12586097419261932, 0.004775902256369591, -0.004185848403722048, -0.12464958429336548,
- -0.10341470688581467, -0.0003330377512611449, 0.058195896446704865, 0.10969588905572891,
- -0.012373042292892933, 0.0002978291595354676, 0.09136006981134415, 0.09470184892416,
- -0.03673583269119263, 0.056657079607248306, -0.007909082807600498,
- -0.010867215692996979, 0.09911583364009857, 0.013436389155685902, -0.011752081103622913,
- 0.1105470135807991, 0.031883422285318375, -0.011150362901389599, -0.060333166271448135,
- -0.010350162163376808, 0.052173130214214325, 0.2698588967323303, -0.05956593528389931,
- -0.0012234454043209553, 0.048512015491724014, 0.03743675723671913, -0.02358044683933258,
- 0.036100100725889206, -0.009954297915101051, 0.03715204447507858, 0.0368601530790329,
- 0.07233063131570816, -0.050872113555669785, 0.03276582434773445, -0.06385939568281174,
- 0.07641899585723877, 0.016497289761900902, -0.006337196100503206, 0.021612675860524178,
- -0.07596807926893234, 0.0030691800639033318, -0.1538916528224945, -0.08341298997402191,
- -0.0498620867729187, 0.08976821601390839, -0.08319049328565598, -0.021260207518935204,
- 0.043672677129507065, 0.0527389794588089, 0.05225727707147598, 0.07270216941833496,
- -0.09398297220468521, 0.030476320534944534, 0.04696641489863396, 0.006374864373356104,
- -0.007331843487918377, 0.04528004676103592, 0.10607599467039108, -0.015168887563049793,
- 0.0163213349878788, 0.11097358167171478, -0.05882998928427696, 0.2797447144985199,
- 0.06435665488243103, -0.04318790137767792, 0.03260745480656624, 0.09620052576065063,
- 0.06342687457799911, 0.01551645714789629, 0.023123405873775482, -0.04889426380395889,
- 0.04869120940566063, -0.022166835144162178, -0.04479280114173889, 0.10573934763669968,
- 0.03435450792312622, 0.03851217404007912, -0.131092369556427, -0.003339292947202921,
- -0.09775377810001373, 0.023536980152130127, -0.04338371753692627, 0.1180950403213501,
- 0.048624709248542786, -0.039181701838970184, 0.020492397248744965, 0.045765578746795654,
- -0.011366433463990688, 0.037644993513822556, -0.011913018301129341,
- 0.029669281095266342, 0.05514673516154289, 0.04373718798160553, 0.036940399557352066,
- 0.029068702831864357, 0.01632872223854065, 0.02974567376077175, 0.0366230271756649,
- 0.030533442273736, 0.013348783366382122, 0.015107277780771255, 0.0431721955537796,
- 0.07359787076711655, -0.04051832854747772, -0.04649968817830086, -0.016615407541394234,
- 0.022092999890446663, -0.05027534440159798, -0.015253346413373947, 0.04586552828550339,
- -0.035128749907016754, -0.15390251576900482, 0.017363162711262703, 0.01207730919122696,
- 0.02724582888185978, -0.02212190069258213, -0.014673504047095776, -0.04228745400905609,
- 0.08517583459615707, 0.037910595536231995, -0.0006322534754872322, 0.05971449613571167,
- 0.03967246413230896, 0.049112092703580856, 0.08274693042039871, 0.0713418498635292,
- 0.0034229394514113665, -0.05805497616529465, 0.026767069473862648, 0.03998657315969467,
- 0.09087864309549332, -0.10121220350265503, -0.03696196898818016, -0.003149778116494417,
- 0.07592181116342545, 0.6989285945892334, 0.09667197614908218, 0.08602887392044067,
- -0.003049661638215184, -0.076862633228302, 0.17750012874603271, 0.0201340913772583,
- 0.07623270899057388, -0.12097842246294022, -0.03462084010243416, -0.029662003740668297,
- -0.06707575172185898, -0.033702049404382706, -0.015685610473155975,
- 0.014253229834139347, 0.07974043488502502, 0.048007212579250336, 0.07011032849550247,
- 0.040267858654260635, -0.07920420914888382, -0.018490716814994812, 0.016892248764634132,
- -0.015634236857295036, -0.09853380918502808, 0.003859256859868765, 0.0493478886783123,
- 0.03448614105582237, -0.06860142201185226, -0.031242307275533676, -0.040126100182533264,
- 0.03762802854180336, -0.06521888077259064, 0.037738099694252014, -0.048170942813158035,
- -0.013717503286898136, 0.03291187062859535, 0.031088294461369514, 0.022740541025996208,
- -0.06868474930524826, -0.022238584235310555, 0.11637117713689804, -0.010423173196613789,
- -0.006718422286212444, 0.07408032566308975, -0.08506584167480469, 0.023708269000053406,
- -0.018155762925744057, 0.09597034007310867, -0.09121690690517426, 0.010748956352472305,
- 0.013946066610515118, -0.020396685227751732, 0.09938547015190125,
- -0.0022521857172250748, -0.013487284071743488, -0.02433536946773529, 0.0976015105843544,
- 0.04201355203986168, 0.1116848960518837, 0.009561930783092976, 0.004494556225836277,
- 0.041887443512678146, 0.07386155426502228, 0.01920531503856182, -0.06388010084629059,
- 0.07323531061410904, -0.0006703054532408714, -0.05297638103365898,
- -0.016001125797629356, 0.048152610659599304, 0.033940862864255905, 0.005623243749141693,
- 0.016213562339544296, 0.030639532953500748, 0.026727918535470963, -0.0689036101102829,
- 0.023422595113515854, 0.0810106173157692, -0.01440422236919403, 0.07501664757728577,
- -0.0631696805357933, -0.01874687150120735, -0.04175065830349922, -0.020789144560694695,
- 0.01263398490846157, -0.07297048717737198, 0.0719599723815918, 0.08040814846754074,
- 0.047704096883535385, 0.01332288607954979, 0.02130773849785328, 0.040417082607746124,
- 0.08020741492509842, -0.022266576066613197, 0.08319323509931564, -0.05105496197938919,
- -0.07933714240789413, -0.04185168072581291, 0.015679989010095596, 0.059501662850379944,
- 0.02121773175895214, -0.030247367918491364, -0.016266223043203354,
- -0.009673391468822956, -0.0014262383338063955, -0.03256738558411598,
- -0.03560386225581169, -0.013477630913257599, 0.04005083814263344, -0.07699402421712875,
- -0.07149191945791245, -0.07739108800888062, 0.019412357360124588, 0.04138331115245819,
- -0.022183185443282127, -0.031215956434607506, -0.07865754514932632,
- -0.012810371816158295, -0.031652890145778656, 0.05395817011594772, 0.014271493069827557,
- 0.03491963818669319, 0.005325384438037872, -0.12094926834106445, 0.009467707946896553,
- 0.02740231715142727, -0.05009635165333748, -0.08291709423065186, -0.01978403329849243,
- -0.00875002983957529, -0.0291682630777359, 0.013120281510055065, -0.07074412703514099,
- 0.05006837472319603, -0.004089193418622017, 0.06325221806764603, -0.008657858707010746,
- -0.022692188620567322, 0.06461843848228455, -0.05869544297456741, 0.0314561203122139,
- 0.09272581338882446, -0.05922669172286987, 0.0065558855421841145, -0.017576128244400024,
- -0.01207039225846529, -0.11207719892263412, -0.09366318583488464, -0.036124423146247864,
- 0.040238603949546814, -0.033519819378852844, -0.00498980563133955,
- -0.018715189769864082, 0.005292929708957672, 0.04920358583331108, -0.10680847615003586,
- -0.06231747940182686, -0.06836646050214767, 0.11805882304906845, -0.008884716778993607,
- 0.004280933178961277, 0.040161509066820145, -0.09918367117643356, 0.03221144899725914,
- -0.014624051749706268, -0.008333536796271801, 0.026754869148135185, 0.06732800602912903,
- -0.04440822824835777, 0.010118475183844566, 0.04486948996782303, -0.025388317182660103,
- -0.008331281132996082, 0.07234930992126465, 0.39586469531059265, 0.014943066984415054,
- 0.10564933717250824, 0.0908641666173935, 0.006830238737165928, 0.034481972455978394,
- -0.016243252903223038, 0.03260423615574837, 0.06574735045433044, 0.05273462459445,
- 0.031646478921175, -0.01834036409854889, 0.017052894458174706, -0.04876827821135521,
- 0.10384457558393478, -0.0194057859480381, 0.027526872232556343, -0.03371258080005646,
- -0.037659622728824615, 0.015017306432127953, 0.04142274707555771, -0.050678469240665436,
- 0.00751972571015358, -0.05885642394423485, -0.05602158606052399, 0.02372892014682293,
- 0.004117773380130529, 0.026010697707533836, -0.008355754427611828,
- -0.005441499873995781, -0.050100550055503845, 0.03359486907720566, 0.008126919157803059,
- 0.06953869760036469, -0.11161033809185028, 0.018397022038698196, -0.11695545166730881,
- -0.07211321592330933, 0.0982244461774826, -0.02629823610186577, 0.061058271676301956,
- 0.02979090064764023, -0.03437371924519539, 0.060700785368680954, 0.06410683691501617,
- -0.04711083322763443, 0.009340680204331875, 0.04062160104513168, -0.0063780914060771465,
- 0.04348624870181084, 0.15422998368740082, 0.00527453888207674, -0.009229088202118874,
- -0.1003534346818924, 0.040272656828165054, 0.11597171425819397, 0.006553133018314838,
- 0.040340717881917953, 0.021795624867081642, 0.08483875542879105, 0.01446832437068224,
- 0.0029196625109761953, -0.09153886884450912, -0.007162508089095354,
- 0.005868047475814819, 0.10431528836488724, 0.05542157217860222, 0.01777787134051323,
- -0.04266989231109619, 0.018146807327866554, -0.06656280905008316, 0.04499964788556099,
- 0.1171233206987381, -0.04386917129158974, 0.0176527202129364, 0.023996269330382347,
- 0.023508749902248383, -0.0036785088013857603, -0.04659073427319527,
- 0.0014196047559380531, -0.08540767431259155, 0.00393711356446147, 0.08280455321073532,
- 0.004966836888343096, -0.07275251299142838, 0.12039873749017715, -0.06148934364318848,
- -0.02296125888824463, 0.05283420532941818, 0.012895735912024975, 0.017834771424531937,
- -0.04489264637231827, 0.039246831089258194, 0.007626591715961695, -0.029848750680685043,
- -0.09536625444889069, -0.04319843277335167, -0.03836185485124588, -0.07889103889465332,
- -0.09226245433092117, -0.003804553532972932, -0.08487355709075928, 0.07649870216846466,
- -0.07795120775699615, -0.04842556640505791, -0.015906767919659615, 0.024983154609799385,
- -0.018531518056988716, -0.0008256718865595758, -0.0014750035479664803,
- -0.09363313019275665, -0.07274454087018967, -0.031301356852054596, 0.033280473202466965,
- -0.06512059271335602, -0.07507341355085373, 0.06582111120223999, 0.0635940432548523,
- -0.010184277780354023, -0.036034274846315384, 0.05534176155924797, 0.001970635959878564,
- 0.029818426817655563, -0.13057871162891388, -0.31329092383384705, 0.07411778718233109,
- 0.02604549005627632, 0.021820714697241783, -0.0028711240738630295, -0.10202149301767349,
- 0.053561776876449585, 0.02914869785308838, -0.013765620067715645, 0.10008950531482697,
- -0.05636856332421303, 0.03260566294193268, -0.017678439617156982, -0.03263087198138237,
- -0.03441397473216057, -0.06488575786352158, -0.027692578732967377,
- 0.0069952914491295815, -0.07748520374298096, -0.05461980774998665, -0.12298943102359772,
- 0.020384961739182472, -0.015903813764452934, 0.03186286613345146, 0.02223687246441841,
- 0.016674403101205826, -0.05507789924740791, -0.04894391447305679, 0.03092695027589798,
- 0.03080829791724682, -0.005007501225918531, -0.06039264053106308, 0.034095000475645065,
- 0.04648064821958542, 0.006661394611001015, 0.10105305910110474, -0.009358000941574574,
- 0.03636092692613602, -0.06423613429069519, 0.06177035719156265, 0.0430024117231369,
- 0.19133144617080688, -0.019868753850460052, -0.04413137584924698, 0.020797930657863617,
- 0.032012298703193665, -0.004161906894296408, 0.07421622425317764, -0.038306593894958496,
- 0.018916508182883263, 0.026507927104830742, 0.0007776239071972668, 0.12440155446529388,
- -0.10297873616218567, -0.017189282923936844, -0.056481778621673584,
- -0.015057681128382683, -0.04470759257674217, -0.04076942056417465, 0.1843431442975998,
- -0.015194534324109554, 0.017942121252417564, 0.07916979491710663, -0.005931358318775892,
- -0.04473850876092911, -0.03736177831888199, -0.06817927956581116, -0.03815208002924919,
- -0.011507479473948479, 0.05096893757581711, -0.06062919646501541, -0.10504984855651855,
- -0.021944724023342133, -0.02918718382716179, -0.0017490615136921406,
- 0.04999750107526779, -0.08948929607868195, 0.021846510469913483, -0.06219988316297531,
- 0.10992517322301865, 0.028396042063832283, -0.026971466839313507, 0.03261207044124603,
- 0.09050368517637253, 0.0058190058916807175, 0.021346239373087883, -0.051419947296381,
- -0.0687628835439682, -0.035255033522844315, 0.11643428355455399, 0.021250108256936073,
- 0.06845113635063171, 0.01891099102795124, 0.004700456280261278, -0.04303630441427231,
- -0.0050049154087901115, -0.0536106713116169, -0.022606702521443367, -0.3835394084453583,
- -0.032424747943878174, 0.08374977111816406, -0.050750311464071274, 0.0335647314786911,
- 0.04191141948103905, 0.07174935936927795, -0.05254562571644783, 0.039968863129615784,
- -0.11470745503902435, 0.1492805927991867, 0.02148660644888878, 0.0644291564822197,
- -0.0630083754658699, 0.001922033028677106, 0.053017839789390564, -0.04376987740397453,
- 0.012257184833288193, 0.027857903391122818, -0.19358739256858826, -0.03184356540441513,
- -0.06769372522830963, 0.09930720180273056, 0.03675380349159241, 0.009105624631047249,
- 0.05862857773900032, -0.03723587840795517, 0.0152130713686347, 0.05972137302160263,
- 0.01959906332194805, 0.03497904911637306, 0.005067641381174326, 0.0059785740450024605,
- 0.11120729893445969, 0.06940695643424988, 0.058950718492269516, -0.04234604164958,
- 11.680020332336426, 0.030879182741045952, 0.036916472017765045, -0.014354375191032887,
- 0.001204684842377901, -0.07348496466875076, 0.08217258006334305, -0.06013212352991104,
- 0.04760310798883438, 0.08361117541790009, -0.016684306785464287, -0.08601325750350952,
- -0.07194556295871735, -0.03989965096116066, 0.01521518174558878, -0.04104883596301079,
- -0.0249879639595747, -0.021315883845090866, 0.03959118202328682, -0.059850167483091354,
- 0.005227226763963699, -0.0010528784478083253, 0.06781923025846481,
- -0.035937536507844925, -0.12300188094377518, 0.0021492126397788525,
- 0.0075065139681100845, -0.044919516891241074, 0.0034321581479161978,
- -0.006808873265981674, -0.006605704315006733, 0.012855314649641514,
- 0.039179183542728424, 0.019280804321169853, -0.016342245042324066, 0.008920284919440746,
- 0.0993158370256424, -0.012777812778949738, 0.0017375892493873835, 0.01895933970808983,
- 0.03294125571846962, -0.01778487302362919, 0.011542966589331627, 0.01352765690535307,
- 0.046860188245773315, 0.026803530752658844, -0.027205221354961395, 0.15614579617977142,
- 0.008551058359444141, 0.11352221667766571, 0.058742228895425797, 0.03032563626766205,
- 0.05743677541613579, 0.036965176463127136, -0.0028213425539433956, 0.05149229243397713,
- 0.029300391674041748, -0.06963890045881271, 0.09005186706781387, 0.06514187902212143,
- -0.03626403585076332, 0.14612098038196564, 0.07228673994541168, 0.13409557938575745,
- 0.0298677496612072, 0.017770862206816673, 0.07127733528614044, 0.08727416396141052,
- -0.1903497576713562, 0.01667558215558529, 0.049544818699359894, -0.047582365572452545,
- -0.058513496071100235, 0.08917675167322159, 0.09157098084688187, -0.05393622815608978,
- 0.041889630258083344, -0.008890634402632713, 0.040345385670661926,
- -0.055854104459285736, 0.02197856642305851, 0.038700781762599945, -0.032452672719955444,
- -0.019295968115329742, 0.0544302798807621, 0.00142089300788939, 0.054949212819337845,
- 0.08544322103261948, -0.006715456489473581, -0.07937530428171158, -0.056414369493722916,
- 0.05643979832530022, 0.00128076015971601, -0.01710715889930725, 0.013474839739501476,
- -0.030666409060359, -0.005075996741652489, -0.1412884145975113, 0.10553986579179764,
- 0.07969333231449127, -0.08605770766735077, 0.02433137036859989, -0.034539710730314255,
- 0.09799261391162872, -0.003723758738487959, 0.017342379316687584, -0.05221147835254669,
- 0.04811763018369675, -0.03324202448129654, 0.07035642862319946, -0.043340958654880524,
- 0.08553172647953033, 0.029691599309444427, -0.04445578157901764, 0.03943752124905586,
- 0.06968070566654205, -0.019985167309641838, -0.011366027407348156, 0.04344263672828674,
- 0.03736051917076111, -0.061972130089998245, -0.019847048446536064,
- -0.014941327273845673, -0.016813313588500023, -0.009668746031820774,
- -0.06288222968578339, 0.010090571828186512, 0.007568055298179388, -0.06534335017204285,
- -0.023365309461951256, 0.024777166545391083, 0.04020162299275398, 0.15094822645187378,
- 0.029603883624076843, 0.05247899517416954, -0.02453390695154667, -0.024732273072004318,
- 0.06481999158859253, -0.018431663513183594, -0.0037816171534359455,
- 0.014344033785164356, 0.026647698134183884, -0.05447208881378174, -0.13462023437023163,
- -0.02316599152982235, 0.04650330916047096, 0.04098767042160034, 0.04658312723040581,
- 0.05115082859992981, -0.005794644821435213, -0.024896832183003426, 0.09896502643823624,
- 0.05847187712788582, 0.010673974640667439, 0.09398306906223297, -0.02772742323577404,
- 0.007531102746725082, 0.062182553112506866, -0.046392109245061874,
- -0.007482046261429787, 0.013097388669848442, -0.1564982533454895, 0.060163259506225586,
- -0.019711928442120552, 0.0092961136251688, 0.03585013747215271, -0.016686569899320602,
- 0.006797051057219505, 0.021379996091127396, 0.0171359833329916, 0.014164854772388935,
- -0.060362447053194046, -0.032288115471601486, -0.1193476989865303,
- 0.0015574580756947398, 0.09933187067508698, 0.1048736646771431, -0.0670626163482666,
- 0.0037862153258174658, -0.07951151579618454
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 148,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 19,
- "similarity": 0.9964779615402222
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 5,
- "similarity": 0.9963778257369995
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 45,
- "similarity": 0.9963630437850952
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Karl Groves", "Mikey Stilts"],
- "epoch_date_downloaded": 1639008000,
- "epoch_date_modified": 1639008000,
- "epoch_date_submitted": 1639008000,
- "flag": null,
- "report_number": 1499,
- "source_domain": "overlayfalseclaims.com",
- "submitters": ["Andrew Hundt"],
- "title": "Website Accessibility Overlay False Claims",
- "url": "https://overlayfalseclaims.com/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "zillow",
- "name": "Zillow"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "zillow-offers",
- "name": "Zillow Offers"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "zillow-offers-staff",
- "name": "Zillow Offers staff"
- },
- {
- "__typename": "Entity",
- "entity_id": "zillow",
- "name": "Zillow"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1890, 1501, 1500],
- "vector": [
- -0.053487759083509445, 0.08998984843492508, 0.007416063454002142, -0.11635509878396988,
- 0.08172190934419632, -0.026718907058238983, -0.009483727626502514, 0.013500075787305832,
- 0.08450216054916382, -0.1414201855659485, -0.030906105414032936, 0.043583452701568604,
- 0.034458890557289124, -0.048658981919288635, -0.00040675155469216406,
- -0.04173560440540314, -0.07296735793352127, -0.041847988963127136, 0.02438700757920742,
- -0.136839359998703, -0.07677058130502701, -0.012855944223701954, 0.026930050924420357,
- 0.11907901614904404, -0.014403718523681164, 0.01593415066599846, 0.10726872831583023,
- 0.12722472846508026, -0.03920735791325569, 0.032074686139822006, -0.034133125096559525,
- -0.08672896772623062, 0.12478291988372803, 0.03173738718032837, -0.0011843108804896474,
- 0.06599226593971252, 0.01709931343793869, -0.04617796838283539, -0.02070486545562744,
- -0.012674428522586823, 0.06589403748512268, 0.22079209983348846, 0.0229183342307806,
- -0.011100656352937222, 0.04076685383915901, -0.024937646463513374,
- 0.0020558589603751898, 0.11772352457046509, 0.010619449429214, 0.016742901876568794,
- -0.045980945229530334, 0.08628371357917786, -0.024066178128123283, 0.034382402896881104,
- -0.06780831515789032, -0.01598498597741127, 0.03945258632302284, 0.009075172245502472,
- 0.0890878215432167, -0.07721450924873352, -0.010936807841062546, -0.20424480736255646,
- -0.04381550848484039, -0.06970804184675217, 0.04332904890179634, -0.057744186371564865,
- -0.025423066690564156, 0.040128353983163834, -0.01692839525640011, 0.07414936274290085,
- 0.06670743972063065, 0.005818404257297516, -0.030506739392876625, -0.01060804259032011,
- -0.044488418847322464, 0.00046236332855187356, -0.013333267532289028,
- 0.21035508811473846, -0.11837182193994522, -0.004327327478677034, 0.0899391770362854,
- -0.07362093776464462, 0.40594732761383057, 0.04482576251029968, -0.02124422788619995,
- -0.07908856123685837, 0.08158185333013535, 0.09401661902666092, 0.04450782760977745,
- 0.02920672856271267, 0.015843478962779045, 0.02902146615087986, -0.026434650644659996,
- 0.006013848353177309, 0.0942109227180481, -0.003392457962036133, -0.02949434332549572,
- 0.011828456073999405, 0.00015834870282560587, -0.07939372211694717,
- -0.0056110224686563015, -0.05662315711379051, 0.12927106022834778, 0.08204324543476105,
- -0.018954096361994743, 0.02274775505065918, 0.06570344418287277, -0.05246519669890404,
- 0.03279425576329231, -0.07435301691293716, 0.013874240219593048, -0.026650384068489075,
- 0.051168013364076614, 0.02039455994963646, 0.06312074512243271, -0.014780850149691105,
- 0.0020952264312654734, 0.08117678016424179, 0.07427208870649338, 0.0007397783920168877,
- -0.013696715235710144, 0.06189770624041557, 0.07027105242013931, -0.04702107608318329,
- -0.019034404307603836, -0.02614232711493969, -0.03710401430726051,
- -0.009199343621730804, -0.04477054998278618, 0.052227120846509933,
- -0.049012377858161926, -0.1535848081111908, 0.028469884768128395, 0.09676671028137207,
- -0.012260176241397858, -0.020611220970749855, -0.002196591580286622,
- -0.0680244192481041, 0.03942487761378288, -0.0017522932030260563, -0.04454978182911873,
- 0.04054032266139984, 0.01053540874272585, 0.037165429443120956, 0.14469952881336212,
- 0.010641369968652725, -0.07572527974843979, -0.05070255324244499, 0.003832561196759343,
- -0.03782453015446663, 0.11358422785997391, -0.11542459577322006, -0.032653458416461945,
- 0.02548534981906414, -0.00479898601770401, 0.6625632643699646, 0.08589190244674683,
- 0.15234172344207764, 0.01660085655748844, -0.04285535216331482, 0.14720292389392853,
- -0.00526287779211998, 0.06802105158567429, -0.030711360275745392, -0.08577286452054977,
- 0.03974664583802223, -0.0819905623793602, -0.016159772872924805, 0.03940458595752716,
- -0.033627528697252274, 0.1310795098543167, 0.02318163961172104, 0.08137094229459763,
- -0.009848035871982574, -0.0607873797416687, -0.010728093795478344, 0.06216583028435707,
- 0.003910448867827654, -0.12750089168548584, -0.008128354325890541, 0.01669650711119175,
- 0.08123461902141571, -0.06054851785302162, -0.01930084452033043, -0.07684817165136337,
- 0.011777614243328571, -0.027790097519755363, 0.010897883214056492,
- -0.016255667433142662, 0.07149776071310043, 0.017427045851945877, 0.06370937079191208,
- 0.006008476484566927, -0.09682024270296097, -0.014627805911004543, 0.1029970645904541,
- -0.016946522518992424, -0.006880805362015963, 0.07450342923402786, -0.09911918640136719,
- 0.046118393540382385, -0.004288947209715843, 0.16478468477725983, -0.08020951598882675,
- -0.02459869720041752, 0.011866479180753231, -0.0215836763381958, 0.024285852909088135,
- 0.0007967082783579826, -0.06308634579181671, -0.06613410264253616, 0.11835741996765137,
- 0.015066545456647873, 0.05887870863080025, 0.038751620799303055, -0.04318315163254738,
- 0.027447393164038658, 0.10141300410032272, 0.022705459967255592, -0.008753142319619656,
- 0.044363949447870255, 0.0016614729538559914, -0.023022405803203583,
- 0.0049248975701630116, -0.04073788598179817, 0.044944461435079575, 0.031052349135279655,
- 0.008187412284314632, 0.026700669899582863, -0.009225915186107159, -0.0723855197429657,
- 0.05596937611699104, 0.07014446705579758, 0.018949661403894424, 0.09514156728982925,
- -0.07448435574769974, -0.06015424057841301, -0.03742106631398201, -0.030215060338377953,
- -0.005379384849220514, -0.002784811658784747, 0.08261952549219131, 0.09171835333108902,
- 0.08338072150945663, 0.023015083745121956, 0.05500079318881035, 0.06312896311283112,
- -0.03269423916935921, 0.016274377703666687, 0.03556907922029495, -0.032588765025138855,
- -0.013372966088354588, -0.0005585782346315682, 0.00010468034452060238,
- 0.0344945527613163, -0.002777306130155921, -0.06414962559938431, -0.008355173282325268,
- -0.11580655723810196, -0.031060606241226196, -0.06450795382261276, -0.05659465119242668,
- 0.05892948433756828, 0.06895541399717331, -0.05694638565182686, -0.054229408502578735,
- -0.09678596258163452, 0.03123454563319683, 0.0770568773150444, -0.023778917267918587,
- -0.024181894958019257, -0.12955285608768463, -0.029281703755259514,
- -0.011312849819660187, 0.055343423038721085, 0.01583070494234562, -0.04515884816646576,
- 0.0043926299549639225, -0.03100772015750408, 0.025240248069167137,
- -0.0008635688573122025, -0.0012422256404533982, -0.10367918014526367,
- -0.05169375613331795, -0.016662679612636566, 0.05176200345158577, 0.028478087857365608,
- -0.039515577256679535, 0.03042391873896122, 0.036227863281965256, 0.04825795069336891,
- -0.011166048236191273, -0.02417704649269581, 0.07667192071676254, -0.008404784835875034,
- -0.03406433016061783, 0.06724328547716141, 0.0026038261130452156, 0.019445665180683136,
- -0.00432266341522336, -0.05221017077565193, -0.06912294030189514, 0.0039586578495800495,
- -0.03874947503209114, 0.04463677108287811, -0.0006996371666900814, 0.015265685506165028,
- -0.06320187449455261, 0.011728286743164062, 0.035172510892152786, -0.0469546765089035,
- -0.11100003123283386, -0.06437770277261734, 0.09098780155181885, 0.028090553358197212,
- -0.007110720034688711, 0.009813924320042133, -0.04670589044690132, 0.06455061584711075,
- -0.02642132341861725, -0.01847655512392521, 0.020709002390503883, 0.015827583149075508,
- -0.0013684015721082687, 0.04793432354927063, 0.08998238295316696,
- -0.0037047192454338074, 0.04499233141541481, 0.06170584633946419, 0.41017046570777893,
- -0.16487421095371246, 0.11546003818511963, 0.10204819589853287, 0.003939231391996145,
- 0.06832947582006454, -0.03672608360648155, 0.03648325055837631, 0.07990647852420807,
- 0.10520613193511963, 0.11725153774023056, -0.04380284249782562, -0.018428495153784752,
- -0.12265024334192276, 0.09154287725687027, 0.019929079338908195, -0.030545203015208244,
- -0.025150053203105927, -0.06234489753842354, -0.03142416477203369, 0.04612503573298454,
- -0.009435451589524746, 0.0010712997755035758, -0.027574846521019936,
- -0.026791850104928017, 0.0017705038189888, 0.02250339277088642, 0.015461839735507965,
- -0.03859468922019005, 0.02388499118387699, 0.009804228320717812, 0.06557495146989822,
- 0.008456196635961533, 0.034990791231393814, -0.09433083981275558, 0.05809493362903595,
- -0.09371273964643478, -0.12359899282455444, 0.07752519100904465, -0.03874180093407631,
- 0.01825265772640705, 0.032919060438871384, -0.03393203392624855, 0.002013211138546467,
- 0.009122847579419613, -0.05185329541563988, 0.00699899485334754, 0.059259962290525436,
- 0.0529850609600544, 0.06608504056930542, 0.1748889684677124, -0.043485600501298904,
- -0.05200594663619995, -0.06842789053916931, 0.058016594499349594, 0.05136119946837425,
- 0.0028025824576616287, 0.04361146688461304, -0.012429074384272099, -0.01807466335594654,
- 0.010721241123974323, -0.05596556141972542, -0.10345511883497238, -0.05676066875457764,
- -0.07974071055650711, 0.037930507212877274, 0.011086788959801197, -0.01631123386323452,
- -0.10494926571846008, -0.03420497477054596, -0.02720499597489834, 0.025729507207870483,
- 0.12958185374736786, -0.05222982168197632, 0.058511972427368164, -0.002738720504567027,
- -0.0032261796295642853, -0.014437206089496613, -0.056689079850912094,
- 0.0033863417338579893, -0.02208266220986843, 0.04629603400826454, 0.07571931928396225,
- 0.029997987672686577, -0.05878983810544014, 0.036867305636405945, -0.10418578237295151,
- 0.07871899753808975, 0.0005900108371861279, -0.03580375760793686, 0.03158290311694145,
- -0.038195688277482986, 0.009846578352153301, 0.0025258511304855347,
- -0.038103725761175156, 0.005769206676632166, 0.013983041979372501,
- -0.055784180760383606, -0.09050390869379044, -0.0635748878121376, -0.05042066052556038,
- -0.0665511041879654, 0.06858528405427933, -0.08717077970504761, 0.017252277582883835,
- -0.0017742108320817351, -0.03435084596276283, -0.0028899898752570152,
- 0.008044394664466381, -0.005561635363847017, -0.15164785087108612, 0.006142914295196533,
- 0.005018163472414017, 0.04591108486056328, 0.007920469157397747, -0.007364113349467516,
- 0.041214484721422195, 0.12637709081172943, 0.03313010558485985, -0.010560777969658375,
- 0.008875315077602863, -0.033137138932943344, 0.02197808027267456, -0.05262250825762749,
- -0.4321540296077728, 0.04445241391658783, 0.04114099591970444, 0.028004318475723267,
- 0.018769405782222748, -0.06130928918719292, 0.03598247468471527, 0.019480891525745392,
- -0.054757047444581985, 0.06546955555677414, -0.05468778684735298, 0.04347283020615578,
- -0.008025691844522953, -0.011048619635403156, -0.023587414994835854,
- -0.08174165338277817, -0.025098547339439392, 0.022114092484116554,
- -0.056446950882673264, -0.04286806285381317, -0.13263583183288574, 0.032375313341617584,
- -0.027040094137191772, -0.025724291801452637, 0.029235146939754486,
- -0.001674929284490645, -0.08617684990167618, -0.07200511544942856, 0.027948379516601562,
- 0.04964548721909523, 0.04543633386492729, -0.07651665806770325, 0.006839757319539785,
- 0.04221363365650177, -0.026476144790649414, 0.13618434965610504, 0.010539878159761429,
- 0.02339956723153591, -0.06556334346532822, 0.07020801305770874, 0.055004555732011795,
- 0.18775910139083862, 0.014520036987960339, -0.010814383625984192, -0.012679867446422577,
- 0.11577066779136658, 0.030649935826659203, 0.008911136537790298, -0.01326977089047432,
- 0.006441969890147448, 0.003851473331451416, -0.027487048879265785, 0.058957066386938095,
- -0.04149410501122475, -0.03132360801100731, -0.0052895862609148026,
- -0.03263566270470619, -0.049893274903297424, -0.05373721197247505, 0.1706218272447586,
- 0.0006851388607174158, 0.02781880833208561, 0.02879168651998043, -0.046233754605054855,
- 0.009481456130743027, -0.07816328853368759, -0.0975676104426384, -0.017500409856438637,
- -0.006119491998106241, 0.02838093228638172, -0.02203124761581421, -0.08040958642959595,
- -0.026045210659503937, -0.018001236021518707, -0.0007012388668954372,
- 0.13997484743595123, -0.01909642480313778, 0.04380233585834503, -0.01468465756624937,
- 0.13221853971481323, 0.0407409742474556, 0.0005852680769748986, 0.051463231444358826,
- 0.09893790632486343, 0.048072174191474915, 0.020267875865101814, -0.033472929149866104,
- -0.019736312329769135, 0.005101409275084734, 0.10689449310302734, -0.023895831778645515,
- 0.10364216566085815, 0.05101575329899788, -0.007063588593155146, -0.05726013705134392,
- 0.01173845399171114, 0.04150308668613434, 0.02231578528881073, -0.4342863857746124,
- -0.033413052558898926, 0.09365022927522659, 0.0012689965078607202, 0.00709369033575058,
- 0.08735843747854233, 0.02254793979227543, -0.03159771114587784, -0.05836308375000954,
- -0.08003745973110199, 0.0958922728896141, 0.03948673978447914, 0.08345036953687668,
- -0.10579296201467514, 0.0256061851978302, 0.07760240882635117, -0.007833515293896198,
- 0.0051614209078252316, 0.06397215276956558, -0.203965961933136, -0.006191179156303406,
- 0.018950320780277252, 0.1055646538734436, 0.016581961885094643, 0.029779566451907158,
- 0.09874721616506577, -0.07703439891338348, 0.02983752451837063, 0.003831448033452034,
- 0.0012872143415734172, 0.07936195284128189, 0.0018186041852459311, -0.03588733449578285,
- 0.09686384350061417, 0.050304219126701355, 0.09656514972448349, -0.04918919503688812,
- 11.886703491210938, 0.049958664923906326, 0.06341772526502609, -0.09794362634420395,
- 0.0559966154396534, -0.040859341621398926, 0.025092238560318947, -0.09995207190513611,
- 0.04362747445702553, 0.15258412063121796, -0.04333937540650368, -0.06161097064614296,
- -0.033302441239356995, -0.09024522453546524, -0.0004911599680781364,
- -0.06402341276407242, -0.07292728871107101, -0.05741479992866516, 0.005357217509299517,
- -0.04502762854099274, -0.0660436823964119, 0.0671064481139183, 0.07631263136863708,
- 0.02472357451915741, -0.06834077090024948, 0.04754564166069031, 0.022791573777794838,
- 0.00584587873890996, -0.004885113798081875, 0.0057961479760706425, 0.01571628265082836,
- 0.0021894893143326044, 0.04205751419067383, -0.028377389535307884, 0.07711973786354065,
- 0.03689445182681084, 0.08013781905174255, 0.0645521804690361, 0.04958776757121086,
- 0.06181265786290169, 0.04592248424887657, 0.003974911291152239, 0.009078570641577244,
- 0.07322343438863754, 0.06655661761760712, 0.03791259229183197, 0.04589371010661125,
- 0.13432098925113678, 0.00956930685788393, 0.07626936584711075, 0.0835820659995079,
- -0.01458859071135521, 0.1220218613743782, 0.011185879819095135, -0.007822600193321705,
- 0.039888735860586166, -0.009238691069185734, -0.082906074821949, 0.10356641560792923,
- -0.02013353630900383, -0.06671250611543655, 0.11558893322944641, 0.024057656526565552,
- 0.13501328229904175, 0.012823287397623062, 0.10593590885400772, 0.033144086599349976,
- 0.07872973382472992, -0.053648609668016434, -0.04101518169045448, -0.009032364003360271,
- -0.10793963819742203, -0.06560492515563965, 0.10054883360862732, 0.1537211686372757,
- -0.047678392380476, 0.04243762418627739, 0.013218258507549763, 0.013359819538891315,
- -0.047919850796461105, 0.014048728160560131, 0.04565883055329323, -0.039198487997055054,
- 0.0060416762717068195, 0.08088516443967819, 0.013604112900793552, 0.04233880713582039,
- 0.08527237176895142, -0.015930326655507088, -0.0742649957537651, -0.06472241133451462,
- 0.048758044838905334, 0.019116265699267387, -0.03701040521264076, -0.027464570477604866,
- -0.07396677881479263, 0.02607496827840805, -0.11515825986862183, 0.06638788431882858,
- 0.086783267557621, -0.05713101103901863, -0.012818269431591034, -0.02423677034676075,
- 0.06233620643615723, 0.033238302916288376, -0.0023723600897938013, -0.0263675544410944,
- -0.025712059810757637, -0.0030054040253162384, 0.026359207928180695,
- -0.03250813111662865, 0.014830837957561016, 0.046437833458185196, -0.051633402705192566,
- 0.03951514512300491, 0.0554131455719471, -0.03278094157576561, -0.03372896835207939,
- 0.04823540523648262, 0.02372589148581028, -0.0649021565914154, -0.033867184072732925,
- -0.028357982635498047, -0.058015089482069016, -0.008912432007491589,
- -0.036765728145837784, 0.01688172109425068, 0.009830688126385212, -0.0670752003788948,
- -0.007770946715027094, 0.026850290596485138, 0.05802731588482857, 0.02625822089612484,
- 0.04165058955550194, 0.058731336146593094, -0.07761774212121964, -0.023691512644290924,
- 0.04398515820503235, 0.028429249301552773, 0.10787662118673325, -0.04066690057516098,
- -0.02762012369930744, -0.04327576979994774, -0.14724253118038177, 0.012958909384906292,
- 0.07229593396186829, 0.03799297288060188, 0.023064279928803444, 0.008920498192310333,
- -0.02120203711092472, -0.05189657583832741, 0.09225881844758987, 0.05687754973769188,
- 0.03552459180355072, 0.0044228988699615, -0.06920364499092102, -0.02658470906317234,
- 0.08992286771535873, -0.04717237874865532, 0.0044011990539729595, 0.0075689018703997135,
- -0.06745614111423492, 0.10421901941299438, 0.10568511486053467, -0.061213184148073196,
- 0.03642125427722931, 0.0138760507106781, -0.02219264768064022, 0.01687362976372242,
- -0.008935503661632538, 0.06577720493078232, -0.026321696117520332, -0.1203397735953331,
- -0.057976216077804565, 0.05224043130874634, 0.09970847517251968, 0.03538980707526207,
- -0.1792176365852356, -0.03896858170628548, -0.006571657955646515
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 149,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 10,
- "similarity": 0.9980682730674744
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 30,
- "similarity": 0.9980467557907104
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 152,
- "similarity": 0.9977577328681946
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Chris Stokel-Walker"],
- "epoch_date_downloaded": 1660089600,
- "epoch_date_modified": 1660176000,
- "epoch_date_submitted": 1660089600,
- "flag": null,
- "report_number": 1890,
- "source_domain": "wired.co.uk",
- "submitters": ["Sonali Pednekar (CSET)", "AIAAIC"],
- "title": "Why Zillow Couldn’t Make Algorithmic House Pricing Work",
- "url": "https://www.wired.co.uk/article/zillow-ibuyer-real-estate"
- },
- {
- "__typename": "Report",
- "authors": ["Anna Bahney"],
- "epoch_date_downloaded": 1639267200,
- "epoch_date_modified": 1639267200,
- "epoch_date_submitted": 1639267200,
- "flag": null,
- "report_number": 1501,
- "source_domain": "cnn.com",
- "submitters": ["Anonymous"],
- "title": "Zillow to exit its home buying business, cut 25% of staff",
- "url": "https://www.cnn.com/2021/11/02/homes/zillow-exit-ibuying-home-business/index.html"
- },
- {
- "__typename": "Report",
- "authors": ["Rachel Metz"],
- "epoch_date_downloaded": 1639267200,
- "epoch_date_modified": 1639267200,
- "epoch_date_submitted": 1639267200,
- "flag": null,
- "report_number": 1500,
- "source_domain": "cnn.com",
- "submitters": ["Anonymous"],
- "title": "Zillow's home-buying debacle shows how hard it is to use AI to value real estate",
- "url": "https://www.cnn.com/2021/11/09/tech/zillow-ibuying-home-zestimate/index.html"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "natural-cycles",
- "name": "Natural Cycles"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "natural-cycles",
- "name": "Natural Cycles"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "women",
- "name": "Women"
- },
- {
- "__typename": "Entity",
- "entity_id": "natural-cycles-users",
- "name": "Natural Cycles users"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1506],
- "vector": [
- -0.07695001363754272, 0.08700844645500183, 0.017342019826173782, -0.1377226710319519,
- 0.0797543153166771, -0.06930183619260788, 0.020456258207559586, 0.0848180502653122,
- 0.006169300060719252, -0.129616379737854, -0.06970284134149551, 0.049155041575431824,
- 0.023158784955739975, -0.08213243633508682, 0.043625976890325546, -0.06732071936130524,
- -0.14737454056739807, -0.03596339747309685, -0.012812831439077854, -0.1391114443540573,
- -0.05300759896636009, -0.024551015347242355, 0.006129162851721048, 0.18349198997020721,
- -0.020250027999281883, 0.002053477568551898, 0.1706901341676712, 0.17053478956222534,
- -0.02765977568924427, 0.052518006414175034, -0.0029814867302775383,
- -0.11933760344982147, 0.12273745238780975, 0.05950005725026131, -0.019572576507925987,
- 0.08677403628826141, -0.0343603640794754, -0.028751546517014503, 0.032660357654094696,
- -0.005797830875962973, 0.030458511784672737, 0.2960783839225769, 0.027078688144683838,
- 0.06302810460329056, 0.008269103243947029, -0.07809881865978241, 0.05925896018743515,
- 0.05160907283425331, 0.024921586737036705, 0.008920946158468723, -0.006397674325853586,
- 0.020743126049637794, 0.0050734239630401134, 0.07497526705265045, -0.128188818693161,
- 0.014846348203718662, 0.014041807502508163, -0.06905385851860046, 0.04489903897047043,
- -0.058626577258110046, -0.06350943446159363, -0.2413465678691864, -0.10453170537948608,
- -0.08017472922801971, 0.08071891218423843, -0.0753934308886528, -0.04452036693692207,
- -0.04287175089120865, -0.02041960321366787, 0.10390356928110123, 0.08557673543691635,
- -0.03376084566116333, -0.006950867362320423, 0.03917975351214409, -0.0558292530477047,
- -0.03764346241950989, 0.014284326694905758, 0.24988579750061035, -0.16641606390476227,
- -0.06161023676395416, 0.12696659564971924, -0.13050055503845215, 0.4916492700576782,
- -0.029711470007896423, -0.024140801280736923, 0.015022387728095055, 0.07011888176202774,
- 0.017542578279972076, 0.04865606129169464, 0.032986536622047424, 0.04052070900797844,
- 0.12810896337032318, -0.1233077123761177, 0.05754705145955086, 0.0773954689502716,
- 0.026261284947395325, -0.014722351916134357, 0.07025075703859329, -0.014627194032073021,
- -0.0667169839143753, -0.015033039264380932, -0.023244420066475868, 0.09910989552736282,
- 0.1620621383190155, -0.030627036467194557, -0.05918021872639656, 0.07398944348096848,
- -0.04883120581507683, 0.04411568120121956, -0.04717558994889259, -0.025270352140069008,
- -0.09342456609010696, 0.04484159126877785, -0.01659509912133217, 0.025798091664910316,
- -0.08541683107614517, -0.0001927752746269107, 0.07269767671823502, 0.10181956738233566,
- 0.05435881391167641, -0.04244071990251541, 0.09071262925863266, 0.0783282220363617,
- -0.10000921785831451, -0.004834997467696667, 0.04435048624873161, -0.09010791778564453,
- -0.02540651522576809, -0.026224425062537193, 0.07882529497146606, -0.07627450674772263,
- -0.24786773324012756, -0.029429327696561813, 0.04878529533743858, -0.03957301005721092,
- -0.05883809179067612, 0.04055037721991539, -0.06258326768875122, 0.07377434521913528,
- -0.06330631673336029, -0.0707051083445549, 0.0427718311548233, -0.013479703105986118,
- 0.048989973962306976, 0.09304068982601166, 0.0909901112318039, -0.0640530213713646,
- -0.04537966474890709, 0.028872918337583542, 0.009069221094250679, 0.1696203052997589,
- -0.18305251002311707, -0.012790528126060963, 0.007635320536792278, 0.025100797414779663,
- 0.6539715528488159, 0.1900174468755722, 0.19216230511665344, -0.012011324986815453,
- -0.046729736030101776, 0.24433936178684235, -0.058484382927417755, 0.07241738587617874,
- -0.07323027402162552, -0.06755346804857254, 0.007812505587935448, -0.08465057611465454,
- -0.023349588736891747, 0.0627489984035492, 0.006528956815600395, 0.11386414617300034,
- 0.05379022657871246, 0.11625481396913528, -0.008523688651621342, -0.11139459162950516,
- 0.010744892992079258, 0.14349907636642456, 0.027702152729034424, -0.08481273800134659,
- -0.03813665360212326, 0.004252808168530464, 0.09771968424320221, -0.10354334115982056,
- 0.05222827568650246, -0.16362683475017548, 0.058048103004693985, 0.013847626745700836,
- 0.08599399775266647, 0.01736830361187458, 0.04778793826699257, 0.04422270506620407,
- 0.07161874324083328, 0.009016891941428185, -0.040354352444410324, -0.02703430876135826,
- 0.06024394929409027, -0.05858088284730911, -0.07521706819534302, 0.07277048379182816,
- -0.13196370005607605, -0.0025497276801615953, 0.10442715138196945, 0.19550292193889618,
- -0.15707813203334808, 0.04658157750964165, -0.022915972396731377, -0.07206971943378448,
- 0.008860010653734207, 0.031064214184880257, -0.04695551097393036, -0.11759307235479355,
- 0.11248688399791718, 0.047883711755275726, 0.07504791766405106, 0.12034857273101807,
- -0.05257876589894295, 0.005935865920037031, 0.09692434966564178, 0.05440900847315788,
- 0.0014636532869189978, 0.0909363254904747, 0.07907965779304504, -0.0309427622705698,
- -0.007870402187108994, 0.07878360897302628, 0.025278808549046516, 0.02024175599217415,
- 0.04020272195339203, 0.10274091362953186, -0.010982024483382702, -0.06331488490104675,
- 0.0656319335103035, 0.02749546431005001, 0.023633504286408424, 0.12078951299190521,
- -0.12743516266345978, -0.06106119230389595, -0.06030185893177986, -0.02963337115943432,
- 0.009453834965825081, -0.057449791580438614, 0.13592134416103363, 0.12162058800458908,
- 0.11930752545595169, 0.0016549908323213458, -0.001456471742130816, 0.03595839440822601,
- 0.029697997495532036, 0.03980584442615509, 0.12098417431116104, -0.013795290142297745,
- -0.022397056221961975, -0.019044240936636925, 0.0020945377182215452,
- 0.028523040935397148, 0.012862810865044594, -0.06256356835365295, -0.03447617217898369,
- -0.06533791869878769, -0.11178678274154663, -0.15975980460643768, 0.007685037795454264,
- 0.0475289411842823, 0.028961172327399254, -0.07103091478347778, -0.07432074844837189,
- -0.14935018122196198, -0.018076138570904732, 0.199526846408844, 0.01967487670481205,
- -0.07101993262767792, -0.12758523225784302, 0.023819100111722946, -0.024591688066720963,
- 0.04930473119020462, -0.1256193220615387, 0.029472218826413155, 0.008253938518464565,
- -0.028743289411067963, -0.008717140182852745, 0.009963848628103733,
- -0.06631887704133987, -0.029221484437584877, -0.09925350546836853,
- 0.0070619164034724236, -0.05464019626379013, -0.023586580529808998,
- 0.023432055488228798, 0.02555656246840954, 0.07136630266904831, 0.10109793394804001,
- -0.059606052935123444, -0.08059292286634445, 0.04931123927235603, 0.05378032848238945,
- 0.01571531593799591, 0.11750711500644684, -0.08089529722929001, 0.02998426929116249,
- -0.025155067443847656, -0.03322900831699371, -0.06865811347961426,
- -0.0008825865807011724, -0.07741985470056534, 0.02722819894552231,
- -0.015680868178606033, -0.044069647789001465, -0.05766962841153145,
- -0.07615815103054047, 0.008317718282341957, 0.03931770473718643, -0.08852158486843109,
- -0.07259728014469147, 0.10295490175485611, 0.012045558542013168, 0.017676685005426407,
- -0.014799465425312519, -0.05510323867201805, 0.07120190560817719, 0.0196816548705101,
- 0.021252071484923363, 0.0788658931851387, 0.06191103905439377, -0.07178546488285065,
- 0.06343664228916168, 0.14112959802150726, 0.041857972741127014, 0.06263919174671173,
- 0.05096731334924698, 0.450827956199646, -0.310322105884552, 0.07933204621076584,
- 0.0888446569442749, 0.05757657811045647, 0.023911651223897934, -0.03210996836423874,
- 0.10568893700838089, 0.08707183599472046, 0.1216219887137413, 0.18054169416427612,
- -0.0944041982293129, -0.04348505288362503, -0.10975205153226852, 0.05483059585094452,
- 0.03967852517962456, 0.06428303569555283, 0.020399518311023712, -0.12558352947235107,
- -0.04079537093639374, 0.0571536086499691, -0.06628444045782089, 0.007332879584282637,
- 0.05857547000050545, -0.10825341194868088, 0.003617125330492854, 0.05075937137007713,
- -0.00299354107119143, -0.039298735558986664, 0.0827760249376297, -0.08387238532304764,
- 0.0032800582703202963, 0.0017436816124245524, -0.03869282454252243,
- -0.10239139944314957, -0.01525829453021288, -0.04204685986042023, -0.09299115836620331,
- 0.03365354984998703, -0.049976300448179245, 0.05048983544111252, 0.08434152603149414,
- -0.07429299503564835, 0.019069883972406387, 0.05021834746003151, -0.09728895127773285,
- -0.006348703987896442, 0.021620478481054306, 0.06270968168973923, 0.034123923629522324,
- 0.18702968955039978, -0.08481203764677048, 0.009155623614788055, -0.09578066319227219,
- 0.06887826323509216, 0.1525089144706726, -0.02154495008289814, 0.023496350273489952,
- 0.0406671017408371, 0.01027313619852066, -0.004974690731614828, -0.051294080913066864,
- -0.0926889106631279, -0.04559147730469704, -0.06524393707513809, 0.08075403422117233,
- 0.026577286422252655, -0.02189028635621071, -0.23859931528568268, 0.005647146608680487,
- -0.06997466087341309, 0.08812084794044495, 0.09123943001031876, -0.12076231837272644,
- 0.0950230211019516, -0.015143834985792637, -0.016439637169241905, 0.06371550261974335,
- -0.08196911215782166, 0.033735036849975586, -0.06294847279787064, 0.08559171110391617,
- 0.06638175249099731, 0.05253971740603447, -0.07394508272409439, 0.09146197140216827,
- -0.15028716623783112, 0.08675891160964966, -0.0022905815858393908, -0.07649382203817368,
- 0.027489176020026207, -0.02518138848245144, 0.04727659001946449, 0.05053654685616493,
- -0.05784960836172104, 0.07930013537406921, 0.018876854330301285, -0.04162246733903885,
- -0.07277538627386093, -0.06535404920578003, -0.07034695893526077, -0.05031689628958702,
- 0.003021777607500553, -0.07697217911481857, 0.03301626816391945, -0.051903653889894485,
- -0.006060232408344746, -0.02821991592645645, 0.019725268706679344, -0.02922019176185131,
- -0.12881635129451752, 0.0000025311710487585515, -0.020543836057186127,
- 0.06022730842232704, -0.08519426733255386, -0.010552463121712208, -0.014613513834774494,
- 0.11386772245168686, 0.05517768859863281, -0.0028131005819886923, -0.007409514859318733,
- -0.049902379512786865, 0.08496709913015366, -0.0871557965874672, -0.43122464418411255,
- 0.06175072118639946, 0.02064601145684719, 0.02257801778614521, 0.02140704356133938,
- -0.0768449604511261, 0.042474787682294846, -0.014960135333240032, -0.051090456545352936,
- 0.08989904820919037, -0.04299991950392723, 0.01844964362680912, -0.013650844804942608,
- -0.11229098588228226, -0.0047569251619279385, -0.04471174255013466,
- -0.03356368467211723, 0.024104485288262367, 0.013695454224944115, -0.09304452687501907,
- -0.13335669040679932, 0.07518599927425385, 0.03831196203827858, 0.06656504422426224,
- 0.0011979780392721295, 0.03652992099523544, -0.033769212663173676, -0.09065993875265121,
- 0.012707320973277092, -0.006551619619131088, 0.032626986503601074, -0.06469409167766571,
- 0.008044140413403511, 0.11077296733856201, -0.06476429104804993, 0.1035497710108757,
- 0.0062330239452421665, -0.0885341614484787, -0.07239297777414322, 0.07280300557613373,
- 0.055622491985559464, 0.17438432574272156, -0.07216271758079529, 0.045823708176612854,
- -0.013452351093292236, 0.1918647140264511, 0.09109525382518768, 0.0002693557762540877,
- -0.05103582888841629, -0.00790373980998993, -0.02512131631374359, 0.013340032659471035,
- 0.05472651496529579, -0.07871314883232117, -0.0022012880071997643,
- -0.0060794600285589695, 0.030748246237635612, 0.0011970795458182693,
- 0.025711767375469208, 0.2220398634672165, 0.035357870161533356, 0.06146079674363136,
- -0.02526664175093174, -0.05243559926748276, -0.021411264315247536,
- -0.049808237701654434, -0.11815698444843292, 0.03731684014201164, -0.038645241409540176,
- 0.04603617265820503, -0.07928258180618286, -0.10894529521465302, -0.03244022652506828,
- 0.026076551526784897, -0.019279006868600845, 0.08733862638473511,
- -0.0034128467086702585, 0.0698528066277504, -0.058583009988069534, 0.13552947342395782,
- 0.06515809893608093, 0.008895030245184898, 0.042791761457920074, 0.10518493503332138,
- 0.01318324264138937, 0.05048075318336487, -0.06583437323570251, -0.0727803111076355,
- -0.004635501187294722, 0.18843667209148407, -0.026149867102503777, 0.1284445822238922,
- 0.018914202228188515, -0.07269661128520966, -0.12709909677505493, 0.04378883168101311,
- -0.034994740039110184, -0.01807301864027977, -0.4961544871330261, -0.03982936963438988,
- 0.13929367065429688, -0.05439748987555504, 0.0015261999797075987, 0.10250470042228699,
- 0.11023382097482681, -0.027750736102461815, -0.10020416229963303, -0.12103693932294846,
- 0.13822457194328308, -0.024551955983042717, 0.07719267904758453, -0.12101779878139496,
- 0.07799840718507767, 0.10803921520709991, -0.07473811507225037, -0.042711127549409866,
- 0.1274735927581787, -0.29107895493507385, 0.02191822975873947, -0.04659262299537659,
- 0.10708922892808914, 0.039221350103616714, 0.049444083124399185, 0.13411086797714233,
- -0.04000411182641983, 0.013734294101595879, -0.0010719666024670005, -0.0158724132925272,
- -0.0002973909431602806, -0.06267387419939041, -0.04146170988678932, 0.1074628010392189,
- 0.05612047761678696, 0.04669057950377464, -0.08182402700185776, 12.654285430908203,
- 0.1400318145751953, 0.0864013060927391, -0.14224033057689667, 0.05755327269434929,
- -0.00038430243148468435, -0.009272592142224312, -0.18854017555713654,
- -0.06256721168756485, 0.10902800410985947, -0.047782108187675476, -0.0814075618982315,
- 0.005939875263720751, -0.15352541208267212, 0.05760535970330238, -0.02251034416258335,
- -0.10720642656087875, -0.07845506072044373, 0.024505095556378365, -0.0782674103975296,
- 0.0022938591428101063, -0.004326619673520327, 0.047371041029691696,
- -0.00800729263573885, -0.09328875690698624, 0.1085294783115387, 0.056923557072877884,
- -0.02176155149936676, 0.03800205513834953, -0.004027807619422674, -0.043262407183647156,
- 0.0063429102301597595, 0.04558280110359192, -0.07100392132997513, 0.03564412519335747,
- 0.04318465292453766, 0.07477296888828278, 0.034866947680711746, 0.04793374985456467,
- 0.13302282989025116, -0.009588855318725109, 0.07848931103944778, 0.1107044443488121,
- 0.04518323019146919, 0.055697400122880936, 0.08577706664800644, 0.05291537567973137,
- 0.09827970713376999, 0.0025817151181399822, 0.05266040936112404, 0.10750330984592438,
- -0.03703609108924866, 0.16835974156856537, 0.014739243313670158, 0.013322468847036362,
- 0.03112756833434105, -0.09076660126447678, -0.10452746599912643, 0.04021606594324112,
- 0.06562841683626175, -0.08954095095396042, 0.08626516908407211, 0.026669705286622047,
- 0.11039067804813385, 0.031047774478793144, 0.08036956191062927, 0.0929405465722084,
- 0.03956618905067444, -0.10266505181789398, -0.09261692315340042, -0.0004895695019513369,
- -0.09607065469026566, -0.0737038105726242, 0.09185700118541718, 0.13996157050132751,
- -0.040490373969078064, 0.04773847013711929, 0.0312618762254715, 0.05279603227972984,
- -0.14494529366493225, -0.019865507259964943, 0.06800450384616852, 0.014297104440629482,
- 0.07883214950561523, 0.12874338030815125, 0.03160640597343445, 0.05911139026284218,
- 0.10579755902290344, -0.009395374916493893, -0.09231030195951462, -0.08298879116773605,
- 0.08443929255008698, 0.007140174973756075, -0.04965134337544441, -0.0024092132225632668,
- -0.10753453522920609, 0.023522036150097847, -0.18033091723918915, 0.07567430287599564,
- 0.09112516045570374, -0.13745813071727753, -0.05420813709497452, -0.004029181785881519,
- 0.08059491962194443, 0.008158068172633648, -0.01409914717078209, -0.0028746146708726883,
- -0.020901819691061974, 0.026677969843149185, 0.033816780894994736,
- -0.004761779215186834, 0.15699023008346558, 0.13315452635288239, -0.023800337687134743,
- -0.05752360820770264, 0.09401384741067886, -0.016467146575450897, -0.034999143332242966,
- 0.07673278450965881, 0.03149506822228432, -0.14723315834999084, -0.05664784833788872,
- -0.07907834649085999, -0.04988236725330353, -0.01682482287287712, -0.08186362683773041,
- 0.009692301042377949, 0.06424661725759506, -0.0842398926615715, -0.028291525319218636,
- -0.013298367150127888, 0.1010541245341301, 0.06745870411396027, 0.01550708245486021,
- 0.06656255573034286, -0.1333494931459427, -0.044862303882837296, 0.05448078364133835,
- 0.058974865823984146, 0.030011065304279327, -0.06116379052400589, -0.056375887244939804,
- -0.03723364695906639, -0.09699328988790512, 0.07229007035493851, 0.15710441768169403,
- 0.052985526621341705, 0.06178319454193115, 0.046083997935056686, -0.14536359906196594,
- -0.11909589916467667, 0.12170042097568512, 0.10091882199048996, -0.03589153662323952,
- 0.03577648848295212, -0.0211092010140419, -0.0976908802986145, 0.10488168895244598,
- -0.06380556523799896, 0.010678905993700027, 0.034130923449993134, 0.015176248736679554,
- 0.09763634949922562, 0.1819687783718109, 0.12251587957143784, 0.06662783771753311,
- 0.040616441518068314, 0.08662816882133484, -0.009458594024181366, -0.053363002836704254,
- 0.003219165373593569, -0.0823073759675026, -0.04049446061253548, -0.08477777242660522,
- 0.04538801684975624, 0.10407966375350952, 0.05749858543276787, -0.09477580338716507,
- 0.004652980715036392, -0.09613805264234543
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 150,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 37,
- "similarity": 0.99630206823349
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 170,
- "similarity": 0.9962629079818726
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 6,
- "similarity": 0.9962164163589478
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Olivia Sudjic"],
- "epoch_date_downloaded": 1638835200,
- "epoch_date_modified": 1638835200,
- "epoch_date_submitted": 1638835200,
- "flag": null,
- "report_number": 1506,
- "source_domain": "theguardian.com",
- "submitters": ["Khoa Lam"],
- "title": "‘I felt colossally naive’: the backlash against the birth control app",
- "url": "https://www.theguardian.com/society/2018/jul/21/colossally-naive-backlash-birth-control-app"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "pony.ai",
- "name": "Pony.ai"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "pony.ai",
- "name": "Pony.ai"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "san-francisco-city-government",
- "name": "San Francisco city government"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1710, 1709, 1708, 1707, 1706, 1705, 1704, 1703, 1508, 1507],
- "vector": [
- -0.10365605354309082, 0.08998425304889679, 0.009512074291706085, -0.06982328742742538,
- 0.061816275119781494, 0.01003254670649767, -0.00656606862321496, 0.05749855563044548,
- 0.07763922214508057, -0.14889420568943024, -0.010325944051146507, 0.07103276252746582,
- 0.020320329815149307, -0.07529270648956299, 0.06059125065803528, -0.12907494604587555,
- -0.08718700706958771, -0.04583032801747322, -0.009015804156661034, -0.11410515010356903,
- -0.08638016879558563, -0.021501362323760986, 0.06718704849481583, 0.09956113994121552,
- -0.061479974538087845, 0.02832675911486149, 0.06548023968935013, 0.11339391767978668,
- -0.048696283251047134, 0.06197839230298996, -0.017584659159183502, -0.08148019015789032,
- 0.14752770960330963, 0.030603740364313126, 0.013517944142222404, 0.12379032373428345,
- 0.01230484340339899, -0.01975221000611782, -0.03855838254094124, -0.0013971013249829412,
- 0.027571896091103554, 0.232890322804451, 0.00888772401958704, -0.043893154710531235,
- 0.03007964789867401, -0.0592200830578804, 0.022393930703401566, 0.040188565850257874,
- 0.02788570523262024, 0.04643779620528221, -0.019491931423544884, 0.08561926335096359,
- -0.011962996795773506, 0.023106778040528297, -0.11950503289699554, 0.049941591918468475,
- 0.04101305454969406, -0.015010598115622997, 0.05483512952923775, -0.07039504498243332,
- -0.05617748945951462, -0.2429572343826294, -0.05275832861661911, -0.06611205637454987,
- 0.05741133168339729, -0.08631710708141327, -0.0458931103348732, 0.021715957671403885,
- 0.033343665301799774, 0.09074579179286957, 0.05605415627360344, -0.014095984399318695,
- -0.025391122326254845, 0.014748956076800823, 0.00391805823892355, -0.02264568768441677,
- 0.0029819642659276724, 0.18152661621570587, -0.13316547870635986, -0.01273517869412899,
- 0.11167248338460922, -0.11083905398845673, 0.47903186082839966, 0.0226536113768816,
- -0.03597988560795784, -0.023164434358477592, 0.10530626773834229, 0.04139244556427002,
- 0.029721587896347046, 0.031570933759212494, -0.05245774984359741, 0.005095460452139378,
- -0.025631502270698547, 0.009664960205554962, 0.08183486014604568, 0.04999566078186035,
- -0.026163291186094284, 0.0035035102628171444, -0.007694722153246403,
- -0.06973221898078918, 0.037408895790576935, -0.05031495541334152, 0.0852060616016388,
- 0.027320703491568565, -0.01537360716611147, 0.025059392675757408, 0.08167950063943863,
- -0.02848963439464569, 0.03658013790845871, -0.06336235255002975, 0.0340961255133152,
- 0.024213148280978203, 0.032449640333652496, 0.01436885166913271, 0.0555904284119606,
- -0.0849362164735794, -0.005329520907253027, 0.055216602981090546, 0.09440393000841141,
- -0.02063008025288582, -0.03310807794332504, 0.051668114960193634, 0.07034669816493988,
- -0.08333630859851837, 0.004857570864260197, -0.04433014616370201, -0.05954638868570328,
- -0.033675216138362885, -0.040272824466228485, 0.050006914883852005,
- -0.07444662600755692, -0.22808054089546204, 0.009614571928977966, 0.11119940131902695,
- 0.02184109576046467, -0.03900742903351784, 0.0012775163631886244, -0.09037946164608002,
- 0.046577390283346176, -0.00933249294757843, -0.037989433854818344, 0.03896733373403549,
- 0.0014177061384543777, 0.06591840088367462, 0.09517963230609894, 0.06735634803771973,
- -0.04742475971579552, -0.06261970102787018, 0.04339088499546051, -0.0273609459400177,
- 0.10575578361749649, -0.11295197904109955, -0.05447732284665108, 0.0018966812640428543,
- -0.034245237708091736, 0.7159245610237122, 0.11063975095748901, 0.17423267662525177,
- 0.014449539594352245, -0.05169254541397095, 0.17202119529247284, 0.023716218769550323,
- 0.06473897397518158, -0.09789534658193588, -0.07320475578308105, 0.025042813271284103,
- -0.1047264114022255, -0.05713730305433273, 0.02844219282269478, 0.01069815456867218,
- 0.11820386350154877, 0.06528376042842865, 0.09503696113824844, -0.022264068946242332,
- -0.09936153143644333, -0.02019517868757248, 0.07941467314958572, 0.02977737784385681,
- -0.09936343878507614, -0.047632183879613876, 0.027424996718764305, 0.10004154592752457,
- -0.08868734538555145, 0.01842295192182064, -0.0676640048623085, 0.05792152136564255,
- -0.015021907165646553, 0.06233532354235649, -0.06802020967006683, 0.04022964835166931,
- 0.025718528777360916, 0.08745934069156647, -0.02102718874812126, -0.1302071064710617,
- -0.018415475264191628, 0.12150540202856064, -0.0014632248785346746,
- -0.028746429830789566, 0.05024315044283867, -0.09171662479639053, 0.05599871277809143,
- 0.01239017117768526, 0.13408294320106506, -0.10929033905267715, -0.0023479920346289873,
- 0.02640438638627529, 0.01053856685757637, 0.05466540530323982, -0.01116952020674944,
- -0.08863730728626251, -0.05196230858564377, 0.07819453626871109, 0.05041925981640816,
- 0.06709699332714081, 0.08794988691806793, -0.03642473369836807, 0.043489065021276474,
- 0.08799678087234497, 0.006944132503122091, -0.004249795340001583, 0.050049059092998505,
- 0.0905052050948143, -0.0235713142901659, 0.011408204212784767, 0.029646357521414757,
- 0.007639335002750158, 0.0205671563744545, -0.008347825147211552, 0.07023049890995026,
- -0.005722265690565109, -0.0524759367108345, 0.002088768407702446, 0.010226129554212093,
- 0.017376672476530075, 0.14303971827030182, -0.03305239975452423, -0.062488339841365814,
- 0.0019970019347965717, -0.020836908370256424, 0.016474829986691475,
- -0.013143852353096008, 0.09323463588953018, 0.08620800822973251, 0.08544007688760757,
- 0.027104318141937256, 0.04392673820257187, 0.06492035835981369, 0.008257186971604824,
- 0.04141128063201904, 0.04995492100715637, -0.03395090252161026, -0.08107849210500717,
- -0.02869938686490059, 0.02108248881995678, 0.035777390003204346, 0.0104416748508811,
- -0.07439804822206497, -0.026774078607559204, -0.06112980842590332, -0.05337659269571304,
- -0.09367866814136505, -0.03783152624964714, 0.011499239131808281, 0.08529531210660934,
- -0.043320052325725555, -0.0761338397860527, -0.10598447173833847, 0.01914839632809162,
- 0.06942441314458847, 0.0049947090446949005, -0.030142029747366905, -0.10854712873697281,
- -0.029918700456619263, -0.04883822053670883, 0.04564737528562546, 0.001952526392415166,
- -0.0020783930085599422, -0.017052944749593735, -0.06039127707481384,
- 0.016383642330765724, -0.035986028611660004, -0.003930048551410437,
- -0.07887408137321472, -0.0887347012758255, -0.04352300614118576, 0.021162351593375206,
- 0.021613499149680138, -0.04007041081786156, 0.038828037679195404, 0.021649371832609177,
- 0.055331964045763016, -0.006794847548007965, -0.031279467046260834, 0.06609474122524261,
- -0.029418110847473145, -0.0278652124106884, 0.07556764781475067, -0.021023359149694443,
- 0.04334910959005356, 0.027168074622750282, -0.1026686578989029, -0.0003596142341848463,
- 0.03855009749531746, -0.08440748602151871, 0.030503123998641968, -0.024020791053771973,
- 0.03194279223680496, -0.05692022293806076, 0.022699791938066483, 0.06251277029514313,
- -0.06474447250366211, -0.08565593510866165, -0.08084110915660858, 0.1176905408501625,
- 0.010265026241540909, -0.009654209017753601, 0.05277911573648453, -0.07319250702857971,
- 0.0396852046251297, -0.029637014493346214, -0.017008241266012192, 0.03770557790994644,
- 0.04164200648665428, -0.031147589907050133, -0.011569714173674583, 0.04981730133295059,
- -0.025094103068113327, 0.02423774264752865, 0.08378031104803085, 0.4149123728275299,
- -0.11210942268371582, 0.0785837396979332, 0.10380677133798599, 0.0062089646235108376,
- 0.05587857961654663, -0.04538442939519882, 0.05287619307637215, 0.06376360356807709,
- 0.10514308512210846, 0.12024177610874176, -0.02968314290046692, -0.025577664375305176,
- -0.0461236834526062, 0.10753767192363739, -0.0151722626760602, -0.01147158071398735,
- -0.009795358404517174, -0.07690258324146271, 0.0144046600908041, 0.021295052021741867,
- -0.05883460491895676, 0.0015177270397543907, -0.026535117998719215,
- -0.08460526168346405, -0.004662656225264072, 0.02189844287931919, 0.019130315631628036,
- -0.017789946869015694, 0.011466825380921364, -0.04551989212632179, 0.043751709163188934,
- 0.020159317180514336, 0.04600394517183304, -0.11451228708028793, 0.035404022783041,
- -0.12619738280773163, -0.0836157351732254, 0.07292192429304123, -0.02501022443175316,
- 0.04762941971421242, 0.05810011550784111, -0.02136313170194626, 0.03467131406068802,
- 0.003321528434753418, -0.051268525421619415, 0.03073906898498535, 0.07229482382535934,
- 0.03048042394220829, 0.08810184895992279, 0.15926697850227356, -0.05946315452456474,
- -0.06548979133367538, -0.07383324950933456, 0.09152067452669144, 0.06107692793011665,
- -0.05555955320596695, 0.02402827888727188, -0.022048944607377052, -0.02482725866138935,
- -0.004542591515928507, -0.05703230947256088, -0.09481591731309891, 0.021870864555239677,
- -0.0690615251660347, 0.05876278877258301, -0.0011288971873000264, -0.0261676125228405,
- -0.1827528476715088, -0.028341194614768028, -0.016878152266144753,
- 0.0050057778134942055, 0.14667977392673492, -0.040319014340639114, 0.047651927918195724,
- 0.05024348571896553, -0.033608049154281616, 0.02127784490585327, -0.10231157392263412,
- 0.01641118712723255, -0.06496010720729828, 0.05652248114347458, 0.015089035034179688,
- 0.043190475553274155, -0.05429815128445625, 0.10369230806827545, -0.1031782254576683,
- 0.08085902035236359, 0.05744514614343643, -0.01741250604391098, 0.05377197265625,
- -0.05584949254989624, 0.03815039247274399, 0.03848871961236, -0.059291768819093704,
- 0.016115382313728333, -0.043709807097911835, -0.053001899272203445,
- -0.09624122083187103, -0.06749371439218521, -0.038375239819288254, -0.07424835860729218,
- 0.06184135004878044, -0.1058209165930748, -0.03190838173031807, -0.02432662434875965,
- 0.001024853903800249, 0.02029147557914257, 0.024895930662751198, 0.04874294251203537,
- -0.17086675763130188, 0.022905105724930763, -0.00020420148211997002,
- 0.07005394995212555, -0.04562074691057205, -0.04082352668046951, 0.02192646451294422,
- 0.12956295907497406, 0.06044087931513786, 0.038396503776311874, 0.014000852592289448,
- -0.07146182656288147, 0.01933472976088524, -0.11931505054235458, -0.43548423051834106,
- 0.02204686403274536, -0.00949671771377325, 0.03912850469350815, 0.003755189012736082,
- -0.05815758556127548, 0.05387074500322342, 0.005453422665596008, -0.05640362575650215,
- 0.10491374880075455, -0.06319381296634674, 0.0038529210723936558,
- -0.00039477917016483843, -0.06822415441274643, -0.03455137833952904,
- -0.058643825352191925, -0.061097435653209686, 0.047021862119436264,
- -0.03782733529806137, -0.059897810220718384, -0.11274828016757965, 0.03984108567237854,
- -0.02971532568335533, 0.02427833154797554, -0.0012353697093203664, 0.0347454734146595,
- -0.07141461223363876, -0.01903941109776497, 0.013092602603137493, 0.05121450871229172,
- 0.05010536313056946, -0.051872797310352325, -0.01805787906050682, 0.05585935711860657,
- -0.0604710653424263, 0.15262337028980255, 0.01173052005469799, 0.036427564918994904,
- -0.07570228725671768, 0.10268539190292358, 0.05180346220731735, 0.18475981056690216,
- -0.03898102045059204, -0.0011542661814019084, 0.03065180405974388, 0.1445077508687973,
- 0.0407140776515007, 0.030048664659261703, -0.020392272621393204, 0.004682064987719059,
- 0.04018392413854599, -0.029049525037407875, 0.07980824261903763, -0.07272965461015701,
- -0.023085836321115494, -0.01585518568754196, 0.004001597873866558,
- -0.025427889078855515, 0.060364264994859695, 0.200180321931839, 0.02986723557114601,
- 0.039477139711380005, 0.024094264954328537, -0.08259206265211105, -0.013292106799781322,
- -0.06540749967098236, -0.11947095394134521, -0.008824804797768593,
- 0.0022981150541454554, 0.016727404668927193, -0.03823374956846237, -0.12857374548912048,
- -0.004169728606939316, -0.0541558638215065, -0.0024994390551000834, 0.09879150241613388,
- -0.000446369347628206, 0.045735716819763184, -0.008839595131576061, 0.11165837198495865,
- 0.030365025624632835, 0.03408796712756157, 0.04064666107296944, 0.07830525934696198,
- -0.000860318192280829, -0.011119959875941277, -0.06894274801015854,
- -0.07110480964183807, 0.01426716335117817, 0.11542509496212006, -0.05181674286723137,
- 0.07452855259180069, 0.028679227456450462, -0.004471756052225828, -0.06405533105134964,
- 0.04932708293199539, -0.03387770429253578, 0.028806548565626144, -0.4276835024356842,
- -0.003480931743979454, 0.12414505332708359, 0.023060817271471024, 0.021362053230404854,
- 0.13416540622711182, 0.04502010717988014, -0.03153819590806961, -0.04456889629364014,
- -0.03940311819314957, 0.1394187957048416, -0.025175612419843674, 0.04786479100584984,
- -0.11700446903705597, 0.038025353103876114, 0.07662677019834518, -0.031874559819698334,
- -0.017087658867239952, 0.09560766071081161, -0.21723738312721252, 0.001357645378448069,
- -0.056578557938337326, 0.14347925782203674, 0.08627035468816757, 0.024943877011537552,
- 0.06222562864422798, -0.0498814731836319, 0.03619003668427467, 0.06973443925380707,
- 0.0033874898217618465, 0.07563804090023041, 0.012521815486252308, -0.0332048162817955,
- 0.14179456233978271, 0.06246589869260788, 0.10069634020328522, -0.03448956459760666,
- 12.035633087158203, 0.09109921008348465, 0.06277263164520264, -0.06766436994075775,
- 0.04542200639843941, -0.0654526799917221, 0.04602024704217911, -0.06425555050373077,
- 0.0518915057182312, 0.13048093020915985, -0.03939904272556305, -0.03128747642040253,
- -0.026675987988710403, -0.10979969799518585, -0.004821891896426678, -0.0690307468175888,
- -0.05359348654747009, -0.020593589171767235, 0.02063494175672531, -0.041650544852018356,
- -0.004197550006210804, 0.00009829071495914832, 0.07058769464492798, 0.03186773136258125,
- -0.09002465009689331, 0.06231698393821716, 0.049933139234781265, -0.011508522555232048,
- -0.01665601320564747, 0.006035183556377888, -0.04391397908329964, 0.04394536092877388,
- 0.03085232712328434, -0.0012217469047755003, -0.025869596749544144, 0.08402092754840851,
- 0.0810687392950058, 0.07799096405506134, 0.011459603905677795, 0.05630337446928024,
- 0.036718547344207764, 0.007949955761432648, 0.04159954935312271, 0.07433219999074936,
- 0.04280322045087814, 0.015352155081927776, 0.06951522827148438, 0.13802342116832733,
- 0.03532826527953148, 0.031626004725694656, 0.08224229514598846, -0.029596909880638123,
- 0.13735346496105194, 0.04088951274752617, -0.010315490886569023, 0.036750428378582,
- -0.019287219271063805, -0.05255892127752304, 0.07707876712083817, 0.07068316638469696,
- -0.05375403165817261, 0.0935681164264679, 0.024150589480996132, 0.10674259811639786,
- -0.009925615973770618, 0.033702440559864044, 0.06721324473619461, 0.06581094115972519,
- -0.14314177632331848, -0.09256334602832794, 0.045559849590063095, -0.11173322051763535,
- -0.06539063155651093, 0.0463881678879261, 0.10178016126155853, -0.0634181946516037,
- 0.057408563792705536, -0.038212765008211136, 0.021777603775262833, -0.02916600927710533,
- -0.011471947655081749, 0.03519394248723984, -0.010122266598045826, 0.03920433297753334,
- 0.03683008626103401, 0.01979154720902443, 0.1189136952161789, 0.09275402873754501,
- -0.020521167665719986, -0.08844596892595291, -0.07435151934623718, 0.10188676416873932,
- -0.02325020357966423, -0.0796779990196228, -0.0019314743112772703, -0.02930329740047455,
- 0.03878847509622574, -0.15488497912883759, 0.061375200748443604, 0.09272699058055878,
- -0.08615873008966446, -0.02570836804807186, -0.026414567604660988, 0.06612394750118256,
- -0.0011769001139327884, 0.019800275564193726, -0.044485267251729965,
- 0.02636829949915409, 0.005853157490491867, 0.053375065326690674, -0.04009842127561569,
- 0.06056934595108032, 0.08466996252536774, -0.08448855578899384, 0.0443018302321434,
- 0.06424205005168915, -0.04842076450586319, -0.0654277577996254, 0.06171352416276932,
- 0.05080796033143997, -0.09554944932460785, -0.06110189110040665, -0.031135613098740578,
- -0.0490238294005394, -0.02971714735031128, -0.03447787091135979, 0.02364156022667885,
- 0.020008107647299767, -0.05132307857275009, -0.014969664625823498, 0.032902639359235764,
- 0.0351501889526844, 0.09404914081096649, 0.015608889982104301, 0.06004756689071655,
- -0.084280826151371, -0.009948192164301872, 0.045984648168087006, 0.030552437528967857,
- 0.07470650225877762, 0.007585390005260706, -0.0027232160791754723, -0.0722365528345108,
- -0.13441231846809387, 0.01251139771193266, 0.09324641525745392, 0.07707540690898895,
- 0.021692074835300446, 0.006287210620939732, -0.09594680368900299, -0.06168939545750618,
- 0.11424604803323746, 0.028852710500359535, 0.04874914139509201, 0.012866976670920849,
- -0.11358127743005753, -0.009869595058262348, 0.1508198231458664, -0.05415203049778938,
- 0.0059310090728104115, 0.04566815495491028, -0.05034112185239792, 0.10184653848409653,
- 0.10671136528253555, 0.05366591364145279, 0.04676121473312378, 0.01826288551092148,
- -0.00693846121430397, 0.03263520449399948, -0.03461148589849472, 0.013250647112727165,
- -0.001072458690032363, -0.16562670469284058, -0.07982739061117172, 0.02090335823595524,
- 0.09336376935243607, 0.002356919227167964, -0.1129315122961998, -0.01970493234694004,
- -0.06052257865667343
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 151,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 20,
- "similarity": 0.9989129304885864
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 8,
- "similarity": 0.9988760948181152
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 71,
- "similarity": 0.9988144040107727
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["David Shepardson"],
- "epoch_date_downloaded": 1653782400,
- "epoch_date_modified": 1654473600,
- "epoch_date_submitted": 1653782400,
- "flag": null,
- "report_number": 1710,
- "source_domain": "reuters.com",
- "submitters": ["AIAAIC"],
- "title": "Startup Pony.ai agrees to automated driving software recall",
- "url": "https://www.reuters.com/business/autos-transportation/startup-ponyai-agrees-automated-driving-system-software-recall-2022-03-08/"
- },
- {
- "__typename": "Report",
- "authors": ["Rebecca Bellan"],
- "epoch_date_downloaded": 1653782400,
- "epoch_date_modified": 1654473600,
- "epoch_date_submitted": 1653782400,
- "flag": null,
- "report_number": 1709,
- "source_domain": "techcrunch.com",
- "submitters": ["AIAAIC"],
- "title": "Pony.ai to issue recall of autonomous driving software",
- "url": "https://techcrunch.com/2022/03/08/pony-ai-to-issue-recall-of-autonomous-driving-software/"
- },
- {
- "__typename": "Report",
- "authors": ["Mircea Panait"],
- "epoch_date_downloaded": 1653782400,
- "epoch_date_modified": 1654473600,
- "epoch_date_submitted": 1653782400,
- "flag": null,
- "report_number": 1708,
- "source_domain": "autoevolution.com",
- "submitters": ["AIAAIC"],
- "title": "California DMV Suspends Pony.ai Driverless Testing Permit After Small Crash",
- "url": "https://www.autoevolution.com/news/california-dmv-suspends-ponyai-driverless-testing-permit-after-small-crash-176549.html"
- },
- {
- "__typename": "Report",
- "authors": ["Rita Liao"],
- "epoch_date_downloaded": 1653782400,
- "epoch_date_modified": 1654473600,
- "epoch_date_submitted": 1653782400,
- "flag": null,
- "report_number": 1707,
- "source_domain": "techcrunch.com",
- "submitters": ["AIAAIC"],
- "title": "California suspends Pony.ai driverless test permit after crash",
- "url": "https://techcrunch.com/2021/12/14/pony-ai-suspension-driverless-pilot-california/"
- },
- {
- "__typename": "Report",
- "authors": ["Andrew J. Hawkins"],
- "epoch_date_downloaded": 1653782400,
- "epoch_date_modified": 1654473600,
- "epoch_date_submitted": 1653782400,
- "flag": null,
- "report_number": 1706,
- "source_domain": "theverge.com",
- "submitters": ["AIAAIC"],
- "title": "Pony.ai’s permit to test driverless vehicles in California is suspended after crash",
- "url": "https://www.theverge.com/2021/12/14/22834496/pony-ai-av-test-permit-suspend-california-dmv-crash"
- },
- {
- "__typename": "Report",
- "authors": ["Mariella Moon"],
- "epoch_date_downloaded": 1653782400,
- "epoch_date_modified": 1654473600,
- "epoch_date_submitted": 1653782400,
- "flag": null,
- "report_number": 1705,
- "source_domain": "engadget.com",
- "submitters": ["AIAAIC"],
- "title": "California suspends Toyota-backed Pony.ai's driverless testing permit",
- "url": "https://www.engadget.com/california-suspends-ponyai-driverless-testing-permit-122914859.html"
- },
- {
- "__typename": "Report",
- "authors": ["Reuters"],
- "epoch_date_downloaded": 1653782400,
- "epoch_date_modified": 1654473600,
- "epoch_date_submitted": 1653782400,
- "flag": null,
- "report_number": 1704,
- "source_domain": "reuters.com",
- "submitters": ["AIAAIC"],
- "title": "California halts Pony.ai's driverless testing permit after accident",
- "url": "https://www.reuters.com/markets/commodities/california-halts-ponyais-driverless-testing-permit-after-accident-2021-12-14/"
- },
- {
- "__typename": "Report",
- "authors": ["Department of Motor Vehicles"],
- "epoch_date_downloaded": 1653782400,
- "epoch_date_modified": 1654473600,
- "epoch_date_submitted": 1653782400,
- "flag": null,
- "report_number": 1703,
- "source_domain": "dmv.ca.gov",
- "submitters": ["AIAAIC"],
- "title": "Report of Traffic Collision Involving an Autonomous Vehicle",
- "url": "https://www.dmv.ca.gov/portal/file/pony-ai_102821-pdf/"
- },
- {
- "__typename": "Report",
- "authors": ["Brad Templeton"],
- "epoch_date_downloaded": 1640649600,
- "epoch_date_modified": 1640649600,
- "epoch_date_submitted": 1640649600,
- "flag": null,
- "report_number": 1508,
- "source_domain": "forbes.com",
- "submitters": ["Anonymous"],
- "title": "At-Fault Robotaxi Accidents For Waymo, Pony.AI, Olli And What They Mean For The Future",
- "url": "https://www.forbes.com/sites/bradtempleton/2021/12/23/at-fault-robotaxi-accidents-for-waymo-ponyai-olli-and-what-they-mean-for-the-future/"
- },
- {
- "__typename": "Report",
- "authors": ["Steve Crowe"],
- "epoch_date_downloaded": 1640649600,
- "epoch_date_modified": 1640649600,
- "epoch_date_submitted": 1640649600,
- "flag": null,
- "report_number": 1507,
- "source_domain": "therobotreport.com",
- "submitters": ["Anonymous"],
- "title": "California suspends Pony.ai's driverless testing after accident",
- "url": "https://www.therobotreport.com/california-suspends-pony-ai-driverless-testing-after-accident/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "softbank",
- "name": "SoftBank"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "softbank-robotics",
- "name": "SoftBank Robotics"
- },
- {
- "__typename": "Entity",
- "entity_id": "aldebaran",
- "name": "Aldebaran"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "softbank",
- "name": "SoftBank"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1510, 1509],
- "vector": [
- -0.06972328573465347, 0.08927936851978302, 0.044513776898384094, -0.10791211575269699,
- 0.10430575907230377, 0.004037797451019287, -0.001773004187270999, 0.031065987423062325,
- 0.09924264252185822, -0.12934912741184235, -0.007669172715395689, 0.07546032965183258,
- 0.04468556493520737, -0.06048660725355148, 0.025767119601368904, -0.03486897051334381,
- -0.08871181309223175, -0.017163407057523727, -0.03974582999944687, -0.17058998346328735,
- -0.0699307769536972, -0.001870501320809126, 0.014284413307905197, 0.08509163558483124,
- -0.09319049119949341, -0.001607269048690796, 0.08270220458507538, 0.11418679356575012,
- -0.029040906578302383, 0.049287889152765274, -0.034358035773038864,
- -0.12292420864105225, 0.10910207033157349, 0.02443055808544159, -0.004265603609383106,
- 0.07724771648645401, 0.005365399643778801, -0.026787664741277695, 0.004969350062310696,
- -0.0025728652253746986, 0.007364988327026367, 0.21957619488239288, 0.039397645741701126,
- -0.019401852041482925, 0.04457610845565796, -0.02792883850634098, 0.017330186441540718,
- 0.07747602462768555, -0.0005144262686371803, 0.015683963894844055,
- -0.020602405071258545, 0.025707513093948364, -0.028614791110157967, 0.04422568529844284,
- -0.09091007709503174, 0.05305567383766174, 0.02295883372426033, -0.0022458406165242195,
- 0.07711328566074371, -0.09386296570301056, 0.012806657701730728, -0.22456403076648712,
- -0.024997226893901825, -0.061508119106292725, 0.08176326751708984, -0.07082612812519073,
- -0.05823837220668793, 0.039473824203014374, 0.01869037374854088, 0.08532330393791199,
- 0.06183044612407684, -0.019615281373262405, -0.00035609398037195206,
- 0.05257793143391609, -0.022822227329015732, -0.020791374146938324,
- -0.016109300777316093, 0.157677561044693, -0.11554479598999023, -0.008469359017908573,
- 0.11624748259782791, -0.08295495808124542, 0.4376148581504822, 0.007441407069563866,
- -0.02151004783809185, -0.031535446643829346, 0.09616202116012573, 0.07001592218875885,
- 0.04794173315167427, 0.04096616059541702, -0.018610505387187004, 0.01523595117032528,
- -0.06756187975406647, -0.006309548858553171, 0.07383514195680618, 0.031181443482637405,
- -0.021610919386148453, 0.08013541996479034, 0.010558015666902065, -0.052801091223955154,
- -0.039204325526952744, -0.03479032963514328, 0.0943780466914177, 0.0828709602355957,
- -0.050114430487155914, -0.012532862834632397, 0.06181173771619797, -0.0688626617193222,
- 0.061973076313734055, -0.06162025034427643, 0.029322605580091476, -0.05260251462459564,
- 0.014810748398303986, -0.0375497080385685, 0.026327528059482574, -0.07583943754434586,
- 0.029157547280192375, 0.0702693834900856, 0.0614328607916832, 0.0074532488361001015,
- -0.007465439848601818, 0.05169190466403961, 0.07701171934604645, -0.04633624851703644,
- -0.017124494537711143, -0.050113435834646225, -0.03326069563627243,
- -0.03693968057632446, -0.022090677171945572, 0.04613977298140526, -0.0643027126789093,
- -0.20090335607528687, 0.01329378318041563, 0.09651356190443039, 0.01029430702328682,
- -0.02097497507929802, 0.005255638621747494, -0.0745350569486618, 0.033290594816207886,
- -0.045682311058044434, -0.07347822189331055, 0.05578248202800751, 0.01700996607542038,
- 0.027432207018136978, 0.13533005118370056, 0.03993742913007736, -0.045393478125333786,
- -0.03381234034895897, 0.008135287091135979, 0.007877767086029053, 0.1434354931116104,
- -0.14658145606517792, -0.04604487866163254, 0.0009981165640056133, -0.03925086185336113,
- 0.7376456260681152, 0.11960485577583313, 0.18521931767463684, -0.02326691523194313,
- -0.03383743017911911, 0.18374574184417725, -0.03442339226603508, 0.05730379372835159,
- -0.09198036044836044, -0.06404484808444977, 0.03448750078678131, -0.09565421938896179,
- -0.035802531987428665, 0.03757331147789955, -0.0074681187979876995, 0.14011354744434357,
- 0.02297266386449337, 0.10273753106594086, 0.02323884144425392, -0.07384832948446274,
- -0.017508771270513535, 0.09218166023492813, 0.026847517117857933, -0.10594156384468079,
- -0.020848480984568596, 0.04789554327726364, 0.0919690653681755, -0.07594428956508636,
- 0.0059093814343214035, -0.06250153481960297, 0.03828899562358856, -0.03660554438829422,
- 0.0495670884847641, -0.012954065576195717, 0.040506381541490555, 0.05373197793960571,
- 0.06278124451637268, -0.016070939600467682, -0.10613489151000977, -0.028681214898824692,
- 0.11710299551486969, -0.006658613681793213, -0.012220587581396103, 0.07803331315517426,
- -0.06998130679130554, 0.015314052812755108, -0.00512858759611845, 0.16717331111431122,
- -0.10091762244701385, 0.03494058549404144, -0.008433239534497261, 0.020973723381757736,
- 0.029083870351314545, 0.03659508749842644, -0.0573342964053154, -0.044124580919742584,
- 0.0953366756439209, 0.001263982616364956, 0.04878268390893936, 0.06528619676828384,
- -0.02651221491396427, 0.045167192816734314, 0.09843139350414276, -0.021971628069877625,
- 0.00976854283362627, 0.06717647612094879, 0.07616185396909714, -0.07496434450149536,
- -0.043024346232414246, -0.028746124356985092, -0.00785556249320507,
- 0.022280000150203705, -0.03991451486945152, 0.030354943126440048,
- -0.0072397636249661446, -0.052164554595947266, 0.02908901870250702, 0.07132050395011902,
- 0.012507179751992226, 0.09470066428184509, -0.010998904705047607, -0.06975191831588745,
- -0.04471305012702942, -0.03856557607650757, 0.00003647245466709137,
- -0.03419875353574753, 0.101447194814682, 0.1307440549135208, 0.08392021059989929,
- 0.07160376757383347, 0.06238315999507904, 0.07635421305894852, 0.021963929757475853,
- -0.016535373404622078, 0.06353028118610382, -0.033606719225645065, -0.03498702496290207,
- -0.016073929145932198, 0.030153552070260048, 0.008319823071360588, 0.024158883839845657,
- -0.062074046581983566, -0.041521068662405014, -0.08932909369468689,
- -0.06580943614244461, -0.06337786465883255, -0.02723388560116291, 0.05373669043183327,
- 0.05422482267022133, -0.037323325872421265, -0.1371544450521469, -0.11173668503761292,
- 0.005135951563715935, 0.11822590231895447, -0.042998965829610825, -0.019814863801002502,
- -0.11057120561599731, 0.0430937334895134, -0.036915238946676254, 0.06497111171483994,
- -0.001914943102747202, 0.0009522838518023491, 0.007266173139214516,
- -0.06677959859371185, 0.07019845396280289, -0.01760750263929367, -0.00379287451505661,
- -0.059704557061195374, -0.057829804718494415, -0.03732942417263985,
- 0.015412170439958572, 0.008245029486715794, -0.05452791601419449, 0.010443844832479954,
- 0.036680616438388824, 0.08697342127561569, 0.0016266405582427979, -0.0494014248251915,
- 0.03826827555894852, -0.012518223375082016, -0.04341825097799301, 0.08907988667488098,
- -0.009964401833713055, 0.005996969994157553, -0.02722928300499916, -0.09826047718524933,
- -0.04485131800174713, 0.029697692021727562, -0.03963629528880119, 0.06207053363323212,
- -0.014204280450940132, 0.022856734693050385, -0.031742990016937256,
- 0.003364511299878359, 0.03742815554141998, -0.028507454320788383, -0.11613976955413818,
- -0.04014046862721443, 0.10954120010137558, -0.003756968304514885, -0.03068498894572258,
- 0.041583992540836334, -0.05352213233709335, 0.08296582847833633, -0.01875815913081169,
- -0.009336446411907673, 0.026030153036117554, 0.025532715022563934,
- -0.010141468606889248, 0.05895724147558212, 0.05878699943423271, -0.0045294445008039474,
- 0.07830752432346344, 0.03985951840877533, 0.4403662085533142, -0.21352872252464294,
- 0.13451839983463287, 0.1058591678738594, -0.01882413774728775, 0.07751773297786713,
- -0.06271952390670776, 0.0489463210105896, 0.08183063566684723, 0.11573639512062073,
- 0.10842953622341156, -0.048962969332933426, -0.017695998772978783, -0.10438740253448486,
- 0.11202890425920486, 0.018674489110708237, 0.0309202391654253, -0.021446142345666885,
- -0.06866754591464996, -0.004232586361467838, 0.03209269046783447, -0.06119604408740997,
- 0.00198694271966815, -0.0066377222537994385, -0.04279507324099541,
- 0.000007325317710638046, -0.000677838921546936, 0.0478438176214695,
- -0.019039195030927658, 0.023797594010829926, -0.04985654726624489, 0.08388280123472214,
- 0.012174108065664768, 0.046016424894332886, -0.14611020684242249, 0.028483916074037552,
- -0.12229596078395844, -0.0741494745016098, 0.05814757198095322, -0.0272463858127594,
- 0.05048609524965286, 0.0686347633600235, -0.040542155504226685, 0.028103861957788467,
- 0.0076239872723817825, -0.04510899633169174, 0.007687593810260296, 0.06506918370723724,
- 0.04305220767855644, 0.09117955714464188, 0.18290996551513672, -0.03486493229866028,
- -0.07429547607898712, -0.07640770077705383, 0.05990641564130783, 0.08421851694583893,
- 0.017120372503995895, 0.024529535323381424, -0.026071857661008835, -0.05608394742012024,
- -0.04154333472251892, -0.06763315200805664, -0.09305329620838165, -0.07694269716739655,
- -0.06409910321235657, 0.07247588038444519, 0.01380065269768238, -0.005194774828851223,
- -0.1203061044216156, 0.007226437795907259, -0.04429519921541214, 0.01681048423051834,
- 0.09572489559650421, -0.052025675773620605, 0.08488776534795761, -0.01604422554373741,
- -0.032083187252283096, 0.04421183839440346, -0.08617065101861954, 0.0401359498500824,
- -0.015163670293986797, 0.03960832953453064, 0.06699618697166443, 0.036251239478588104,
- -0.044405497610569, 0.05731340870261192, -0.08285550773143768, 0.08195655047893524,
- 0.0016401023603975773, -0.06505662202835083, 0.06214119493961334, -0.02347799763083458,
- 0.00785631313920021, 0.03322819620370865, -0.054972872138023376, 0.010372631251811981,
- -0.037570029497146606, -0.08885887265205383, -0.10901232063770294, -0.0898851528763771,
- -0.015614332631230354, -0.06001820042729378, 0.04421637952327728, -0.10504113137722015,
- -0.006632206495851278, -0.05037054792046547, -0.013269839808344841,
- 0.006815147586166859, 0.018612297251820564, 0.022337783128023148, -0.1510002464056015,
- -0.006419471465051174, -0.0257409755140543, 0.03624691069126129, 0.007818225771188736,
- -0.018155163154006004, 0.06280969083309174, 0.1448679268360138, 0.054254814982414246,
- -0.00951564684510231, 0.00418731989338994, -0.06969189643859863, 0.05967330560088158,
- -0.14694896340370178, -0.5104612112045288, 0.07449254393577576, 0.04219362512230873,
- 0.02615479566156864, 0.018113983795046806, -0.051517944782972336, 0.06533239781856537,
- 0.03141113743185997, -0.06085028499364853, 0.0833309218287468, -0.06634079664945602,
- 0.013214781880378723, -0.0005938224494457245, -0.05516279488801956,
- -0.016491280868649483, -0.05779484659433365, -0.012141073122620583,
- 0.037702012807130814, -0.046192239969968796, -0.07130607962608337, -0.12618495523929596,
- 0.0004509992431849241, -0.013183504343032837, 0.02254444546997547,
- -0.0014011512976139784, 0.01484167855232954, -0.074569471180439, -0.03919091448187828,
- 0.03981036692857742, 0.01761515624821186, 0.04121889919042587, -0.10260234773159027,
- -0.0058405036106705666, 0.05745059624314308, -0.0450500063598156, 0.1458292305469513,
- 0.026916058734059334, 0.010081423446536064, -0.07323863357305527, 0.07254759222269058,
- 0.04649007320404053, 0.1858232617378235, -0.0006626800168305635, 0.013099857605993748,
- -0.049723055213689804, 0.10703090578317642, 0.043075788766145706, 0.01000064518302679,
- -0.016332954168319702, 0.030963514000177383, 0.03228732943534851, -0.029505733400583267,
- 0.08484774827957153, -0.05534839257597923, -0.035987235605716705, -0.01719762571156025,
- -0.0011656098067760468, -0.016315944492816925, 0.00955889280885458, 0.2065565437078476,
- 0.025684762746095657, 0.030019700527191162, 0.022348638623952866, -0.05826226621866226,
- 0.042971476912498474, -0.06172267347574234, -0.07879158854484558, -0.041452206671237946,
- -0.030631592497229576, -0.005429362878203392, -0.041814692318439484,
- -0.12324999272823334, -0.030088040977716446, -0.0013051023706793785,
- -0.007793864700943232, 0.11293701082468033, 0.01124404277652502,
- -0.00029013026505708694, -0.026883525773882866, 0.12491612136363983,
- 0.06616868078708649, 0.007057989947497845, 0.0542440190911293, 0.08785603940486908,
- 0.041115447878837585, 0.0003463607281446457, -0.044961631298065186,
- -0.06627503037452698, 0.019665945321321487, 0.12850064039230347, -0.04901499301195145,
- 0.09046933054924011, 0.06349524855613708, -0.05702276900410652, -0.0593920461833477,
- 0.02468232810497284, 0.0024681990034878254, 0.017524413764476776, -0.43071427941322327,
- -0.014473233371973038, 0.12040714174509048, 0.0322512611746788, -0.0011295664589852095,
- 0.10999681055545807, 0.01251741498708725, -0.037523891776800156, -0.014359140768647194,
- -0.07462498545646667, 0.12931004166603088, 0.0014530634507536888, 0.07081128656864166,
- -0.1314801424741745, 0.028232377022504807, 0.06794410198926926, -0.02693321369588375,
- -0.019408702850341797, 0.061453647911548615, -0.20234137773513794, 0.009386152029037476,
- 0.013403542339801788, 0.16224345564842224, 0.04097917303442955, 0.026375092566013336,
- 0.07035823166370392, -0.04153158515691757, 0.08615361154079437, 0.05511084944009781,
- 0.027628617361187935, 0.059293702244758606, -0.0013507530093193054,
- -0.008077852427959442, 0.1211056262254715, 0.07524248212575912, 0.07529813051223755,
- -0.019735539332032204, 11.971633911132812, 0.039941247552633286, 0.06509581953287125,
- -0.09890462458133698, -0.0030073917005211115, -0.05938141047954559, 0.04837232828140259,
- -0.11424750089645386, 0.017213275656104088, 0.1441817581653595, -0.02427064999938011,
- -0.062090903520584106, -0.014424758031964302, -0.10164271295070648,
- 0.038430772721767426, -0.11506763100624084, -0.0633249282836914, -0.04888945072889328,
- 0.010120468214154243, -0.05954784154891968, -0.016237232834100723, 0.04293949156999588,
- 0.06284330040216446, -0.0037847626954317093, -0.03601284325122833, 0.03193790838122368,
- 0.0296073816716671, -0.007075336761772633, -0.021054092794656754, -0.03207481652498245,
- 0.018612131476402283, 0.07015398144721985, 0.05271755903959274, 0.0031768009066581726,
- 0.0517222061753273, 0.0722522884607315, 0.07038764655590057, 0.06911468505859375,
- 0.032044149935245514, 0.1137341856956482, 0.01541389524936676, -0.0279367808252573,
- 0.04874221235513687, 0.07544264197349548, 0.05384315550327301, 0.04217464476823807,
- 0.012865040451288223, 0.14352110028266907, 0.005652138963341713, 0.09515716135501862,
- 0.07248546183109283, -0.0031527653336524963, 0.11629970371723175, 0.002141706645488739,
- -0.006474215537309647, 0.07252831012010574, -0.014655332081019878, -0.08888004720211029,
- 0.09421563148498535, 0.05982302874326706, -0.05308855324983597, 0.06744760274887085,
- 0.004204459022730589, 0.11038845777511597, -0.02811688929796219, 0.09445148706436157,
- 0.059025224298238754, 0.04371095448732376, -0.11838607490062714, -0.10694224387407303,
- 0.028465069830417633, -0.11277968436479568, -0.11486980319023132, 0.06835494190454483,
- 0.12362891435623169, -0.04901229217648506, 0.05458137020468712, -0.03621945157647133,
- 0.026320308446884155, -0.026772215962409973, -0.0065180398523807526,
- 0.06298591196537018, -0.037370651960372925, 0.00817057117819786, 0.0558537133038044,
- 0.052521273493766785, 0.05132594332098961, 0.06361404061317444, -0.03399955481290817,
- -0.09020330011844635, -0.10108494758605957, 0.06106498837471008, -0.0258433036506176,
- -0.06719423830509186, 0.011067673563957214, -0.059872712939977646, 0.015316474251449108,
- -0.1652528941631317, 0.06592606008052826, 0.08551952242851257, -0.09689754992723465,
- 0.003384167328476906, -0.04332286864519119, 0.06322372704744339, -0.010911593213677406,
- 0.044377218931913376, -0.07512405514717102, -0.011399880051612854,
- -0.0033022668212652206, 0.03478211537003517, -0.003448195056989789, 0.04810728132724762,
- 0.09710530936717987, -0.07146969437599182, 0.020378898829221725, 0.05255725979804993,
- -0.03852365165948868, -0.016748934984207153, 0.05132174491882324, 0.02005617320537567,
- -0.05785016715526581, -0.06805519759654999, -0.027072925120592117, -0.04067813605070114,
- -0.031329624354839325, -0.06015758216381073, 0.011299118399620056,
- -0.0008835494518280029, -0.06942164897918701, -0.02830442599952221, 0.0080634243786335,
- 0.06979058682918549, 0.0650479793548584, 0.03493266552686691, 0.11027809977531433,
- -0.07892300933599472, -0.047960322350263596, 0.07145391404628754, 0.04451889172196388,
- 0.06071344017982483, -0.02018013969063759, -0.03562634810805321, -0.06012166664004326,
- -0.09472514688968658, 0.03735760226845741, 0.07416936755180359, 0.0582609549164772,
- 0.016506988555192947, 0.001790645532310009, -0.07236559689044952, -0.07900795340538025,
- 0.0912669450044632, 0.055847689509391785, 0.0531105101108551, 0.04757744073867798,
- -0.088507279753685, -0.037978049367666245, 0.08280643820762634, -0.04885789379477501,
- 0.0054811956360936165, 0.03718370199203491, 0.008468085899949074, 0.14501744508743286,
- 0.06631261110305786, 0.026953238993883133, 0.06615633517503738, 0.012675151228904724,
- -0.013864917680621147, 0.058243073523044586, -0.04120095819234848, 0.03796113654971123,
- -0.018497278913855553, -0.10738416016101837, -0.05466199666261673, 0.04100867360830307,
- 0.07467839121818542, 0.002092365175485611, -0.11647952347993851, -0.03063768520951271,
- -0.0018842117860913277
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 152,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 68,
- "similarity": 0.9985693097114563
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 51,
- "similarity": 0.9985582232475281
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 111,
- "similarity": 0.9985426068305969
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Keven J. Ryan"],
- "epoch_date_downloaded": 1641686400,
- "epoch_date_modified": 1641686400,
- "epoch_date_submitted": 1641686400,
- "flag": null,
- "report_number": 1510,
- "source_domain": "inc.com",
- "submitters": ["Anonymous"],
- "title": "Softbank's Hyped Robot Keeps Failing at Its Jobs",
- "url": "https://www.inc.com/kevin-j-ryan/pepper-softbank-humanoid-robot-failing.html"
- },
- {
- "__typename": "Report",
- "authors": ["Miho Inada"],
- "epoch_date_downloaded": 1641686400,
- "epoch_date_modified": 1641686400,
- "epoch_date_submitted": 1641686400,
- "flag": null,
- "report_number": 1509,
- "source_domain": "wsj.com",
- "submitters": ["Anonymous"],
- "title": "Humanoid Robot Keeps Getting Fired From His Jobs",
- "url": "https://www.wsj.com/articles/humanoid-robot-softbank-jobs-pepper-olympics-11626187461"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "tesla",
- "name": "Tesla"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "tesla",
- "name": "Tesla"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "maria-guadalupe-nieves-lopez",
- "name": "Maria Guadalupe Nieves-Lopez"
- },
- {
- "__typename": "Entity",
- "entity_id": "gilberto-alcazar-lopez",
- "name": "Gilberto Alcazar Lopez"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1763, 1729, 1511],
- "vector": [
- -0.10429582744836807, 0.08498086780309677, -0.021935870870947838, -0.09132785350084305,
- 0.06407340615987778, -0.005451228469610214, -0.0022731954231858253,
- 0.046308111399412155, 0.05823609232902527, -0.11642596125602722, 0.04444609209895134,
- 0.09415996074676514, 0.01597904972732067, -0.01677948422729969, 0.05793692544102669,
- -0.11910281330347061, -0.07411401718854904, -0.05208347365260124, 0.009161020629107952,
- -0.06541173905134201, -0.09331798553466797, 0.0031263139098882675, 0.05895261466503143,
- 0.12702025473117828, -0.07970137894153595, 0.030458733439445496, 0.07892774790525436,
- 0.09426075965166092, -0.0375417061150074, 0.025281818583607674, -0.03197911009192467,
- -0.04480545595288277, 0.11662989854812622, 0.002293917816132307, -0.022521337494254112,
- 0.11901265382766724, 0.008249416947364807, -0.005781419109553099, -0.03372075781226158,
- 0.0014554486842826009, 0.044283490628004074, 0.24730093777179718, 0.006524952594190836,
- -0.012673944234848022, 0.03921029716730118, -0.0646759495139122, 0.029999621212482452,
- 0.019469687715172768, 0.0035360895562916994, 0.03189731761813164, -0.01120861154049635,
- 0.12065830081701279, -0.007140193600207567, 0.023024672642350197, -0.14866667985916138,
- 0.05230602249503136, 0.04469011723995209, -0.011890332214534283, 0.047567564994096756,
- -0.10132452100515366, -0.07662780582904816, -0.2561533451080322, -0.06711345165967941,
- -0.0970512256026268, 0.09905802458524704, -0.06831835210323334, -0.06128067895770073,
- -0.07660398632287979, 0.009861993603408337, 0.056568022817373276, 0.10022872686386108,
- -0.03283140808343887, -0.024876276031136513, -0.01707037352025509, 0.01424084696918726,
- -0.007959943264722824, 0.009966745972633362, 0.2428036779165268, -0.13350079953670502,
- -0.012326751835644245, 0.11496185511350632, -0.1099209189414978, 0.5058119893074036,
- 0.032019466161727905, -0.03788318857550621, -0.08063481003046036, 0.08448157459497452,
- 0.048134684562683105, 0.03169114515185356, 0.08599293231964111, -0.061552390456199646,
- 0.006275887135416269, -0.07661334425210953, 0.036595650017261505, 0.08062690496444702,
- 0.028711169958114624, -0.008879165165126324, 0.11091181635856628, -0.018858999013900757,
- -0.0597294382750988, 0.028411468490958214, -0.05505344644188881, 0.09118387848138809,
- 0.041772495955228806, -0.02421802468597889, 0.037407029420137405, 0.09839460253715515,
- -0.05268167331814766, 0.05607994273304939, -0.03532242402434349, 0.015233750455081463,
- 0.009813264943659306, 0.05449375882744789, 0.006147891283035278, 0.043304771184921265,
- -0.08368734270334244, 0.0057162693701684475, 0.037443358451128006, 0.08920250087976456,
- 0.0022282651625573635, -0.04722510278224945, 0.06509964168071747, 0.10977351665496826,
- -0.06464376300573349, -0.022966837510466576, -0.043551769107580185,
- -0.07995050400495529, -0.060413312166929245, -0.03915189206600189, 0.005513358861207962,
- -0.05383839085698128, -0.1660827398300171, 0.005173094104975462, 0.15236926078796387,
- 0.016837703064084053, -0.06127670034766197, -0.02145766280591488, -0.07790794223546982,
- 0.07312969118356705, -0.025449389591813087, -0.037886280566453934, 0.05302918329834938,
- 0.060225773602724075, 0.0031885511707514524, 0.1394626647233963, 0.07772063463926315,
- -0.049084264785051346, -0.033556126058101654, 0.0007006333325989544,
- -0.03683564066886902, 0.07975702732801437, -0.12577536702156067, -0.08343195170164108,
- 0.03968503698706627, -0.03554121032357216, 0.6544391512870789, 0.13622157275676727,
- 0.1531444787979126, -0.006981397047638893, -0.012156193144619465, 0.1649572104215622,
- 0.034551575779914856, 0.07070566713809967, -0.06729722768068314, -0.0584867000579834,
- 0.03255542367696762, -0.12129823118448257, -0.06780660897493362, 0.037787970155477524,
- 0.024771161377429962, 0.15004052221775055, 0.052891120314598083, 0.07983765751123428,
- -0.03259234130382538, -0.09105781465768814, -0.06351131200790405, 0.053542718291282654,
- 0.011412748135626316, -0.08629799634218216, -0.03753189742565155, 0.052672624588012695,
- 0.10135593265295029, -0.08502290397882462, 0.021816590800881386, -0.026803314685821533,
- 0.033697597682476044, -0.016460148617625237, 0.000538643158506602, -0.04984353855252266,
- 0.023159243166446686, 0.048412129282951355, 0.0946144387125969, 0.022109782323241234,
- -0.12406966090202332, -0.0696248933672905, 0.10659397393465042, 0.00930462870746851,
- -0.019570408388972282, 0.06933101266622543, -0.10800948739051819, 0.06924528628587723,
- 0.03597383201122284, 0.13474835455417633, -0.1206069216132164, 0.062195975333452225,
- -0.03295856714248657, 0.019127141684293747, 0.07305094599723816, 0.02394733391702175,
- -0.08024372160434723, -0.06580020487308502, 0.0838317796587944, 0.015242706052958965,
- 0.0761139914393425, 0.07805684208869934, -0.056160975247621536, 0.027299076318740845,
- 0.061459731310606, -0.026070082560181618, -0.0037459367886185646, 0.0792880579829216,
- 0.1169186607003212, -0.03237447142601013, 0.009554014541208744, 0.047221530228853226,
- -0.005716805811971426, 0.008141344413161278, 0.02221415750682354, 0.05200353264808655,
- 0.034128956496715546, -0.028137922286987305, 0.011633145622909069,
- -0.007759298663586378, -0.00731632998213172, 0.11440179497003555, -0.07802081108093262,
- -0.05292230844497681, -0.009514803066849709, -0.028576312586665154,
- -0.00402146577835083, -0.03204500675201416, 0.0824323371052742, 0.03372488543391228,
- 0.10861370712518692, 0.036884378641843796, 0.06301767379045486, 0.04646250605583191,
- 0.08109865337610245, 0.058406248688697815, 0.06250272691249847, -0.0050476533360779285,
- -0.03567548841238022, -0.018652886152267456, -0.010785709135234356, 0.06741119921207428,
- 0.05188564583659172, -0.07426031678915024, -0.046464789658784866, -0.02699262462556362,
- -0.06874232739210129, -0.06435438245534897, -0.03217164799571037, -0.009461783803999424,
- 0.06482300907373428, -0.03747360780835152, -0.060398172587156296, -0.1004355251789093,
- 0.057534974068403244, 0.030772360041737556, -0.00030907863401807845,
- -0.05314040184020996, -0.09935468435287476, -0.018397212028503418, -0.04185358062386513,
- 0.0524514801800251, -0.00008174404501914978, 0.010244358330965042, 0.012952041812241077,
- -0.0657629668712616, 0.011260420083999634, -0.03429895639419556, -0.02380010299384594,
- -0.0792858675122261, -0.06365340203046799, -0.034909430891275406, -0.04127143695950508,
- 0.032569702714681625, -0.016007311642169952, 0.06623642891645432, 0.0439026840031147,
- 0.026464754715561867, 0.019401472061872482, -0.03930063918232918, 0.08460500091314316,
- -0.05312894284725189, 0.0022074866574257612, 0.08185473084449768, -0.012283828109502792,
- 0.049642544239759445, 0.018284300342202187, -0.07548575848340988, -0.02514420635998249,
- 0.03713641315698624, -0.09160802513360977, 0.05998295918107033, -0.03796159476041794,
- 0.02951137162744999, -0.04143629968166351, 0.002410497050732374, 0.06349748373031616,
- -0.06704091280698776, -0.05794978141784668, -0.12023433297872543, 0.11319950222969055,
- 0.005808744113892317, -0.04886734113097191, 0.01927434280514717, -0.05510548874735832,
- 0.0447876937687397, -0.055609751492738724, 0.019561145454645157, 0.01777549460530281,
- 0.01755497418344021, -0.01637851633131504, -0.05212913453578949, 0.053482819348573685,
- -0.06809227913618088, -0.001408852287568152, 0.05257662013173103, 0.43764054775238037,
- -0.183052659034729, 0.1264907270669937, 0.11669497936964035, 0.027056843042373657,
- 0.08370188623666763, -0.06912270188331604, 0.06851067394018173, 0.08825051784515381,
- 0.10980904847383499, 0.09964320063591003, -0.043729573488235474, -0.016329851001501083,
- -0.07655307650566101, 0.08424463123083115, 0.023427674546837807, 0.02111077308654785,
- -0.014774482697248459, -0.12662000954151154, -0.006227158010005951, 0.04341329634189606,
- -0.052826087921857834, 0.032636117190122604, 0.036868203431367874, -0.0781535804271698,
- 0.0015589293325319886, -0.02669493854045868, -0.02221519500017166,
- -0.012319843284785748, 0.0011684888741001487, -0.03417995944619179, 0.08637288957834244,
- -0.00009442679584026337, 0.03215303644537926, -0.13764509558677673, 0.04125881567597389,
- -0.11460857838392258, -0.09362626820802689, 0.13283585011959076, -0.029957333579659462,
- -0.007184828165918589, 0.06935877352952957, -0.044642865657806396, 0.008410315960645676,
- -0.021235326305031776, -0.04699380323290825, 0.0272934902459383, 0.10942282527685165,
- 0.04312409833073616, 0.07351969182491302, 0.15459726750850677, -0.05005253478884697,
- -0.06352529674768448, -0.04464099928736687, 0.08308153599500656, 0.10485899448394775,
- -0.029771486297249794, 0.01821427419781685, -0.0417000837624073, -0.05191422626376152,
- 0.00941404141485691, -0.07796523720026016, -0.06829231977462769, 0.06059465929865837,
- -0.02410309948027134, 0.06463595479726791, -0.023642903193831444,
- -0.0034336100798100233, -0.19091057777404785, -0.01234349887818098,
- -0.026297399774193764, 0.005383219104260206, 0.1306019276380539, -0.030687004327774048,
- 0.012626387178897858, 0.05177471041679382, -0.004806522745639086, 0.028337791562080383,
- -0.1301790028810501, 0.0480756051838398, -0.02535741962492466, 0.03595208004117012,
- 0.036605000495910645, 0.05137859284877777, -0.019830772653222084, 0.07743359357118607,
- -0.0914047360420227, 0.06090399622917175, 0.005067850928753614, 0.02338181994855404,
- 0.03287341818213463, -0.03818820044398308, 0.03944716975092888, 0.03402042016386986,
- -0.034489165991544724, 0.03566785529255867, -0.018238261342048645, -0.05021871253848076,
- -0.10181614756584167, -0.05142003297805786, -0.022382579743862152, -0.09421316534280777,
- 0.09530872851610184, -0.06103574112057686, -0.05642694607377052, 0.004646642599254847,
- -0.018998196348547935, 0.037973057478666306, 0.05441315099596977, 0.07710176706314087,
- -0.13746260106563568, 0.04712439700961113, -0.019662952050566673, 0.0889594778418541,
- -0.03358113393187523, -0.04536687210202217, 0.018583940342068672, 0.122586190700531,
- 0.0802299901843071, 0.010858550667762756, -0.004210684914141893, -0.024298453703522682,
- 0.006053000222891569, -0.07425426691770554, -0.5350161194801331, 0.08514058589935303,
- 0.003429786069318652, 0.06618648022413254, -0.0019165800185874104, -0.04729660227894783,
- 0.023713475093245506, -0.0009690553997643292, -0.052484285086393356, 0.0863402783870697,
- -0.0453786700963974, 0.023341333493590355, 0.038060132414102554, -0.06932861357927322,
- -0.04576069116592407, -0.0290526133030653, -0.05019618570804596, 0.08963575214147568,
- -0.03416913375258446, -0.0723007395863533, -0.11174488067626953, -0.010977473109960556,
- -0.05263577774167061, 0.015489044599235058, -0.026235705241560936,
- -0.000788509554695338, -0.11349436640739441, -0.044136956334114075,
- 0.061420779675245285, 0.09623166173696518, 0.05660649761557579, -0.05704135820269585,
- -0.0021917580161243677, 0.048537369817495346, -0.04738059639930725, 0.16735173761844635,
- 0.030898844823241234, 0.028186045587062836, -0.09649979323148727, 0.044860854744911194,
- 0.054907944053411484, 0.18495623767375946, -0.004027266521006823, 0.08943601697683334,
- 0.058936093002557755, 0.16232791543006897, 0.03014872968196869, 0.03549352288246155,
- -0.03918901085853577, -0.025797611102461815, 0.029397835955023766,
- -0.018998200073838234, 0.053614065051078796, -0.07390308380126953,
- -0.019252046942710876, -0.043556611984968185, 0.007160851266235113,
- -0.027317842468619347, 0.03786974027752876, 0.2199745923280716, 0.007153157610446215,
- 0.032203834503889084, -0.002040597377344966, -0.07730916142463684,
- -0.012489085085690022, -0.03825531527400017, -0.11094861477613449,
- -0.005032258108258247, 0.0014418285572901368, 0.0068366858176887035,
- -0.04409932717680931, -0.1440841108560562, -0.03353329375386238, -0.022431394085288048,
- -0.016298731788992882, 0.08728944510221481, 0.018887609243392944, 0.036448221653699875,
- -0.020792491734027863, 0.07701780647039413, 0.049509089440107346, 0.005946330726146698,
- 0.0542689673602581, 0.10538825392723083, 0.052362095564603806, 0.010554318316280842,
- -0.05972776934504509, -0.08260292559862137, 0.002584785455837846, 0.1082679033279419,
- -0.05346812680363655, 0.03845338150858879, 0.07698465138673782, -0.03731892630457878,
- -0.05363846942782402, 0.03165943920612335, -0.0033009436447173357, 0.06741461157798767,
- -0.5069467425346375, -0.007013061549514532, 0.12908054888248444, 0.024749694392085075,
- 0.0025464545469731092, 0.09319188445806503, 0.05335396155714989, -0.03630853816866875,
- -0.03184705227613449, -0.0234848503023386, 0.1350805163383484, -0.014790360815823078,
- 0.07111351191997528, -0.08665642887353897, 0.0651886984705925, 0.08608172088861465,
- -0.04897117614746094, -0.04460406303405762, 0.06260937452316284, -0.21811874210834503,
- 0.005999013781547546, -0.07657326012849808, 0.16176265478134155, 0.0868833139538765,
- 0.03881637379527092, 0.07713773846626282, -0.07736615091562271, 0.04114706814289093,
- 0.09113661199808121, 0.005967114586383104, 0.04722772538661957, 0.015318590216338634,
- -0.024416116997599602, 0.11997982114553452, 0.031420666724443436, 0.09045493602752686,
- -0.021577224135398865, 12.021832466125488, 0.06523909419775009, 0.00819550920277834,
- -0.07557369023561478, 0.07087761163711548, -0.06587732583284378, -0.0006848345510661602,
- -0.07723411172628403, 0.05011935159564018, 0.10752581804990768, -0.022235987707972527,
- -0.04502493143081665, -0.05806593596935272, -0.10545281320810318,
- -0.0029877384658902884, -0.0895354375243187, -0.03670619800686836,
- -0.013090189546346664, 0.021433884277939796, -0.043643657118082047,
- 0.008139603771269321, -0.03088366985321045, 0.05570916831493378, 0.01657441072165966,
- -0.08458491414785385, 0.05430503562092781, 0.07307881861925125, 0.0021180284675210714,
- 0.007339162286370993, 0.048092227429151535, -0.03840149566531181, -0.007674567401409149,
- 0.055052876472473145, 0.011066471226513386, -0.02243443764746189, 0.06290312856435776,
- 0.061519503593444824, 0.12911169230937958, 0.015200932510197163, 0.11615713685750961,
- 0.0535576157271862, 0.02736297808587551, 0.02468174882233143, 0.0005568377673625946,
- 0.05800781771540642, 0.0047563896514475346, 0.09228384494781494, 0.08774682879447937,
- 0.03965965285897255, 0.05184752121567726, 0.06499987840652466, -0.029044069349765778,
- 0.12253952771425247, 0.009014478884637356, -0.02385702170431614, 0.022808944806456566,
- 0.009100227616727352, -0.06085633859038353, 0.0938151478767395, 0.08433637768030167,
- -0.0576019287109375, 0.08243035525083542, -0.04001752659678459, 0.12720274925231934,
- -0.015497446060180664, 0.049739617854356766, 0.08726122975349426, 0.060557764023542404,
- -0.15384770929813385, -0.09822673350572586, 0.050800636410713196, -0.13135898113250732,
- -0.06893151998519897, 0.07069721072912216, 0.09783800691366196, -0.05204363539814949,
- 0.08174201846122742, -0.07121571153402328, 0.007953329011797905, -0.049052830785512924,
- -0.01584303192794323, 0.05728825926780701, -0.012498541735112667, 0.02226182073354721,
- 0.08675577491521835, 0.015653613954782486, 0.08749574422836304, 0.06940462440252304,
- -0.04598568379878998, -0.08419293910264969, -0.09485768526792526, 0.10925841331481934,
- -0.03176504373550415, -0.05385832116007805, 0.03968699648976326, -0.054202690720558167,
- 0.015579902566969395, -0.13486070930957794, 0.08652777224779129, 0.1174793466925621,
- -0.09425145387649536, 0.0090746795758605, -0.0385124646127224, 0.03245038539171219,
- -0.025074245408177376, 0.07671671360731125, -0.06157198175787926, 0.02332921326160431,
- -0.007460430730134249, 0.0419093482196331, -0.06485280394554138, 0.06498495489358902,
- 0.07508178800344467, -0.11327289789915085, 0.07253245264291763, 0.0661904513835907,
- -0.019266726449131966, -0.04879816994071007, 0.08168358355760574, 0.006499800365418196,
- -0.09934014827013016, -0.04138891026377678, -0.04073736071586609, -0.027821490541100502,
- -0.05991938337683678, -0.04790961369872093, -0.0018850319320335984,
- 0.055460602045059204, -0.09129580855369568, 0.010076438076794147,
- -0.0010431013070046902, -0.03945278748869896, 0.07753336429595947, 0.014058173634111881,
- 0.04489834979176521, -0.08857021480798721, -0.05709002539515495, 0.062054265290498734,
- 0.02182241715490818, 0.08324413001537323, -0.027614055201411247, 0.02094140648841858,
- -0.06287951022386551, -0.07870945334434509, -0.0023261532187461853, 0.15681500732898712,
- 0.042984738945961, 0.008471861481666565, 0.05418919399380684, -0.10092970728874207,
- -0.052437007427215576, 0.12941129505634308, 0.03304068744182587, 0.007527862209826708,
- 0.026034826412796974, -0.1085878387093544, -0.013097576797008514, 0.1588711142539978,
- -0.06822988390922546, 0.006012775469571352, 0.0035116728395223618, 0.02197110652923584,
- 0.05481278896331787, 0.07369869947433472, 0.07205571979284286, 0.00888526439666748,
- -0.014160594902932644, -0.019005484879016876, 0.02614312805235386, -0.02638491988182068,
- 0.019075671210885048, 0.02765899896621704, -0.14770138263702393, -0.0995127260684967,
- -0.01475729513913393, 0.07829781621694565, 0.01256715226918459, -0.06230131909251213,
- -0.0309759434312582, -0.0319872610270977
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 153,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 20,
- "similarity": 0.9986087083816528
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 4,
- "similarity": 0.9985724091529846
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 52,
- "similarity": 0.9984420537948608
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["ABC 7 Eyewitness News"],
- "epoch_date_downloaded": 1654560000,
- "epoch_date_modified": 1655251200,
- "epoch_date_submitted": 1654560000,
- "flag": null,
- "report_number": 1763,
- "source_domain": "abc7.com",
- "submitters": ["Daniel Atherton (BNH.ai)"],
- "title": "Tesla driver pleads not guilty in deadly crash while autopilot was engaged",
- "url": "https://abc7.com/tesla-gardena-autopilot-crash/11920003/"
- },
- {
- "__typename": "Report",
- "authors": ["Jyoti Mann"],
- "epoch_date_downloaded": 1654560000,
- "epoch_date_modified": 1654646400,
- "epoch_date_submitted": 1654560000,
- "flag": null,
- "report_number": 1729,
- "source_domain": "businessinsider.com",
- "submitters": ["Daniel Atherton (BNH.ai)"],
- "title": "A Tesla driver who had his car on Autopilot in a fatal crash faces manslaughter charges, report says",
- "url": "https://www.businessinsider.com/driver-who-had-tesla-on-autopilot-in-crash-manslaughter-trial-2022-5"
- },
- {
- "__typename": "Report",
- "authors": ["Tom Krisher", "Stefanie Dazio"],
- "epoch_date_downloaded": 1642982400,
- "epoch_date_modified": 1642982400,
- "epoch_date_submitted": 1642982400,
- "flag": null,
- "report_number": 1511,
- "source_domain": "apnews.com",
- "submitters": ["Helen Zhu"],
- "title": "Felony charges are 1st in a fatal crash involving Autopilot",
- "url": "https://apnews.com/article/tesla-autopilot-fatal-crash-charges-91b4a0341e07244f3f03051b5c2462ae"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "us-department-of-justice",
- "name": "US Department of Justice"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "us-department-of-justice",
- "name": "US Department of Justice"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "inmates-of-color",
- "name": "inmates of color"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1512],
- "vector": [
- -0.07168623805046082, 0.072563536465168, 0.024952100589871407, -0.05648735538125038,
- 0.15815256536006927, 0.05177405849099159, 0.00012276144116185606, 0.04741404950618744,
- 0.05504285916686058, -0.1216878741979599, 0.024434225633740425, 0.07110513001680374,
- 0.027090655639767647, -0.08944889903068542, 0.030886240303516388, -0.10989699512720108,
- -0.09334015101194382, -0.05127205327153206, -0.030258743092417717, -0.11478851735591888,
- -0.07453768700361252, -0.01130503136664629, -0.017255492508411407, 0.10173257440328598,
- -0.046863850206136703, 0.03525848686695099, 0.09570920467376709, 0.08526691794395447,
- 0.007519461214542389, 0.0613911934196949, -0.0784749910235405, -0.07135042548179626,
- 0.11434497684240341, -0.003579633077606559, -0.031508248299360275, 0.10322044789791107,
- 0.01894133910536766, -0.05213979631662369, -0.030833331868052483, 0.018144516274333,
- -0.0019996818155050278, 0.2700134217739105, 0.021991778165102005, 0.01406372431665659,
- 0.03247762471437454, -0.015059606172144413, -0.0358937606215477, 0.030699098482728004,
- -0.012963738292455673, 0.016846688464283943, -0.02587147057056427, 0.10968444496393204,
- 0.019119778648018837, 0.023703427985310555, -0.11050019413232803, 0.02181427925825119,
- 0.031014269217848778, 0.0315597727894783, 0.07345494627952576, -0.08477085828781128,
- -0.048289861530065536, -0.21894674003124237, -0.03181876614689827, -0.09333189576864243,
- 0.09598074853420258, -0.06954836845397949, -0.027721622958779335, 0.02630210854113102,
- 0.027161192148923874, 0.07157798111438751, 0.09939371049404144, -0.014182792976498604,
- -0.03623547405004501, 0.003417749423533678, -0.04072484001517296, 0.011763385497033596,
- 0.00008020801760721952, 0.17346341907978058, -0.08664082735776901, 0.014037764631211758,
- 0.04858817532658577, -0.03674616664648056, 0.37406739592552185, 0.04320376366376877,
- -0.041323427110910416, -0.09668567031621933, 0.04642634838819504, 0.07670038938522339,
- 0.0681740865111351, 0.05742691457271576, -0.045539695769548416, -0.0034249001182615757,
- -0.06626153737306595, 0.032751090824604034, 0.12513424456119537, 0.014219950884580612,
- -0.012949129566550255, 0.06916619092226028, 0.01660149358212948, -0.07155351340770721,
- -0.011783516965806484, -0.0068184006959199905, 0.06728056818246841,
- 0.040692199021577835, -0.06328362971544266, 0.0027801485266536474, 0.048921845853328705,
- -0.04247267171740532, 0.04498416930437088, -0.014739958569407463, 0.03200753778219223,
- 0.016706261783838272, -0.0024006159510463476, 0.019956473261117935, 0.02948819473385811,
- -0.049294110387563705, 0.008955871686339378, 0.014844100922346115, 0.07237263023853302,
- -0.008485478349030018, 0.010542474687099457, 0.0561007596552372, 0.12090817838907242,
- -0.03925056383013725, -0.05488082021474838, -0.02439991943538189, -0.029211701825261116,
- -0.035797689110040665, -0.04454493522644043, 0.04481814429163933, -0.031786516308784485,
- -0.13952267169952393, -0.043586596846580505, 0.12771914899349213,
- -0.0032963405828922987, -0.03971993923187256, -0.027146177366375923,
- -0.018132010474801064, 0.006741772405803204, -0.01984242908656597,
- -0.0003323408600408584, 0.04094589129090309, 0.032963529229164124, 0.03696182370185852,
- 0.12980051338672638, 0.04531938210129738, -0.09901947528123856, -0.037739984691143036,
- 0.01010748092085123, -0.01103163044899702, 0.1006084606051445, -0.09335106611251831,
- -0.06043922156095505, -0.007681693881750107, -0.04683810472488403, 0.629810631275177,
- 0.1411081999540329, 0.12264520674943924, -0.02333928644657135, -0.036007609218358994,
- 0.1539359837770462, 0.06701376289129257, 0.029651828110218048, -0.0754757821559906,
- -0.026097409427165985, 0.056358542293310165, -0.051206402480602264,
- -0.09167609363794327, 0.024473732337355614, 0.024393228814005852, 0.12905262410640717,
- -0.028305133804678917, 0.07952781766653061, 0.02626997046172619, -0.08640697598457336,
- -0.038936011493206024, 0.06597834825515747, 0.011745616793632507, -0.11194157600402832,
- -0.013995896093547344, 0.05752822756767273, 0.05886970832943916, -0.08587624877691269,
- 0.04756086692214012, -0.06816180795431137, 0.009503263048827648, -0.025093132629990578,
- 0.0027243527583777905, 0.016649790108203888, 0.013167188502848148, 0.03961396962404251,
- 0.03426992893218994, 0.059500012546777725, -0.08555921167135239, -0.03250427544116974,
- 0.05472858250141144, 0.005771788768470287, -0.011426280252635479, 0.04362993314862251,
- -0.07378321886062622, 0.018526524305343628, 0.012552791275084019, 0.1944519728422165,
- -0.11371314525604248, 0.010457753203809261, -0.03742681443691254, 0.008968657813966274,
- 0.09618280827999115, 0.021222975105047226, -0.0412546806037426, -0.033454183489084244,
- 0.0973363071680069, 0.004903594497591257, 0.13272759318351746, 0.030844423919916153,
- -0.06526349484920502, 0.04526333510875702, 0.1455680876970291, 0.015098162926733494,
- -0.0023174709640443325, 0.06791135668754578, 0.06307064741849899, -0.06185085326433182,
- 0.035145051777362823, 0.009679710492491722, 0.0579686164855957, 0.04060334339737892,
- -0.0064531126990914345, -0.020256007090210915, -0.002354992786422372,
- -0.041442517191171646, 0.02241731807589531, -0.021930474787950516,
- 0.0034795808605849743, 0.07026897370815277, -0.047038983553647995, -0.0617099292576313,
- -0.05647096782922745, -0.06199769675731659, -0.020659159868955612,
- -0.016778161749243736, 0.06196065619587898, 0.06524042040109634, 0.07797403633594513,
- 0.014729385264217854, 0.0802486464381218, 0.03466348722577095, -0.02705083228647709,
- 0.08789631724357605, 0.06662797927856445, -0.013550074771046638, -0.027601711452007294,
- 0.03181583806872368, -0.010601038113236427, 0.06116267666220665, -0.014769014902412891,
- -0.04320235550403595, -0.02560666762292385, -0.06283535808324814, -0.08120889216661453,
- -0.043842244893312454, -0.06084603816270828, 0.01664922758936882, 0.024609515443444252,
- -0.02477608062326908, -0.10323987901210785, -0.06647080183029175, 0.004087739624083042,
- 0.03338756784796715, -0.04166620224714279, -0.04049158841371536, -0.10571137815713882,
- -0.004229528363794088, 0.01948448084294796, 0.05141209438443184, -0.0008970084600150585,
- 0.0018903091549873352, 0.04119287431240082, -0.09254132956266403, 0.05074886232614517,
- -0.04980522766709328, -0.07029197365045547, -0.02971745654940605, -0.047149937599897385,
- -0.09043841063976288, -0.02520301565527916, 0.03524057939648628, -0.05834611505270004,
- 0.047579262405633926, 0.0194320697337389, 0.03429954871535301, 0.031215965747833252,
- -0.06221407279372215, 0.06263541430234909, -0.08927568048238754, -0.026964478194713593,
- 0.10001099854707718, -0.03700052201747894, 0.03686942905187607, -0.005912582390010357,
- -0.09421912580728531, -0.056597575545310974, 0.03871478512883186, -0.05351298674941063,
- 0.052904706448316574, 0.013834145851433277, -0.01317513920366764, -0.03905988484621048,
- 0.007789173629134893, 0.03151100501418114, -0.08460787683725357, -0.07132775336503983,
- -0.0478145107626915, 0.083794966340065, 0.02895227260887623, -0.015649791806936264,
- -0.009999126195907593, -0.057445842772722244, 0.034945692867040634,
- 0.0027579395100474358, -0.004625047091394663, 0.013745070435106754, 0.03332185372710228,
- 0.015426849015057087, -0.005217351950705051, 0.08270039409399033, -0.051024630665779114,
- 0.025600073859095573, 0.04318287596106529, 0.4180997312068939, -0.15315842628479004,
- 0.08850608021020889, 0.06539290398359299, 0.028852205723524094, 0.05519424378871918,
- -0.07680273056030273, 0.08964148163795471, 0.12222174555063248, 0.15504930913448334,
- 0.0778898298740387, -0.029715847223997116, -0.024987386539578438, -0.10155113786458969,
- 0.08581281453371048, -0.005599989090114832, 0.017521310597658157, 0.016665790230035782,
- -0.11159839481115341, 0.004737599287182093, 0.04980694502592087, -0.0126241659745574,
- 0.0418524369597435, 0.011768541298806667, -0.06719564646482468, 0.01661384105682373,
- -0.016461119055747986, -0.03646894171833992, -0.005034180823713541,
- 0.042926374822854996, 0.006472098175436258, 0.0877457708120346, -0.03629571944475174,
- 0.03397341072559357, -0.12602731585502625, 0.03821241483092308, -0.129813551902771,
- -0.08570116758346558, 0.14634457230567932, -0.017672985792160034, -0.014131343923509121,
- 0.08497218787670135, -0.07090086489915848, 0.03969494625926018, 0.0003654745523817837,
- -0.07246071100234985, 0.023750856518745422, 0.08756637573242188, 0.051672812551259995,
- 0.027911391109228134, 0.1734655648469925, -0.044132448732852936, -0.008860630914568901,
- -0.06065168231725693, 0.07075254619121552, 0.1015697792172432, 0.012542982585728168,
- 0.006435937248170376, 0.007443350739777088, -0.04985789582133293, 0.01033637672662735,
- -0.02967742085456848, -0.1272355169057846, -0.00972998421639204, -0.03622306510806084,
- 0.07316852360963821, 0.05122169479727745, 0.0018303098622709513, -0.10830377787351608,
- -0.02281966619193554, -0.022813601419329643, 0.02649480104446411, 0.09009883552789688,
- -0.05964602902531624, 0.03402525559067726, -0.012413966469466686, 0.0009020050056278706,
- 0.06972380727529526, -0.05814158543944359, 0.039272602647542953, -0.011434435844421387,
- -0.0023007059935480356, 0.03408627584576607, 0.04805232584476471, -0.03917669877409935,
- 0.08825834095478058, -0.0601348914206028, 0.036104731261730194, 0.000759936694521457,
- -0.007044506724923849, -0.006590150762349367, -0.03165275603532791, 0.02124788984656334,
- 0.008947785943746567, -0.0033462438732385635, -0.011319597251713276,
- 0.020784525200724602, -0.01385138463228941, -0.10218486189842224, -0.017521345987915993,
- 0.0006313225021585822, -0.081509530544281, 0.026247696951031685, -0.11100032925605774,
- -0.04458945244550705, -0.007512776181101799, -0.03340108320116997,
- -0.010864963755011559, 0.022666100412607193, 0.047240130603313446, -0.15752393007278442,
- -0.01994619145989418, -0.010929839685559273, 0.10821090638637543, 0.04402213916182518,
- 0.00047080765943974257, 0.0665334090590477, 0.14936289191246033, 0.058272041380405426,
- -0.0518803708255291, -0.0381074957549572, -0.04781258478760719, 0.025208644568920135,
- -0.0975038930773735, -0.38868194818496704, 0.08726208657026291, -0.016193995252251625,
- 0.042018163949251175, 0.022222040221095085, -0.06706240773200989, 0.018486881628632545,
- -0.010626965202391148, -0.05688098445534706, 0.03556292504072189, -0.044256195425987244,
- 0.05235574021935463, 0.021206745877861977, -0.06584666669368744, -0.031053204089403152,
- -0.04368501901626587, -0.06975100934505463, 0.017877308651804924, -0.05400700122117996,
- -0.06525149196386337, -0.06491652131080627, -0.0019619904924184084,
- -0.012053626589477062, 0.033165447413921356, 0.013131430372595787, 0.03662003576755524,
- -0.07442878186702728, -0.06282062828540802, 0.035542815923690796, 0.06726273149251938,
- 0.022773301228880882, -0.032544977962970734, 0.036649949848651886, 0.011423799209296703,
- -0.0006400924758054316, 0.06987258046865463, 0.019219810143113136,
- -0.004160021897405386, -0.06961409747600555, 0.053981080651283264, 0.029439866542816162,
- 0.18853281438350677, 0.061774782836437225, -0.024235669523477554, 0.004039502702653408,
- 0.16179141402244568, -0.00456544104963541, 0.010109295137226582, -0.025032663717865944,
- 0.020760055631399155, 0.037447672337293625, 0.004659732803702354, 0.09266943484544754,
- -0.02129060961306095, -0.03489552065730095, -0.03556370735168457, 0.042766984552145004,
- -0.025776972994208336, -0.04406464472413063, 0.19819144904613495, 0.019140910357236862,
- 0.008620725944638252, -0.011688433587551117, -0.06708399206399918,
- -0.014440490864217281, -0.03531176969408989, -0.09993862360715866, -0.01344707515090704,
- -0.02049432136118412, -0.014524553902447224, -0.03665395453572273, -0.0944053903222084,
- -0.02980508655309677, 0.03041084297001362, 0.022125964984297752, 0.10660592466592789,
- -0.029832197353243828, 0.052006810903549194, -0.029363112524151802, 0.09528952836990356,
- 0.04492508992552757, 0.020357517525553703, 0.07050110399723053, 0.13258323073387146,
- 0.019240660592913628, 0.009672370739281178, -0.05812149867415428, -0.06855782866477966,
- -0.014764072373509407, 0.11464395374059677, -0.0706801563501358, 0.06157756969332695,
- 0.06258370727300644, -0.05579201504588127, -0.05543690547347069, 0.015033416450023651,
- -0.00901883002370596, 0.032079245895147324, -0.3806282579898834, -0.048297781497240067,
- 0.10550837963819504, 0.052361276000738144, 0.009195997379720211, 0.055449821054935455,
- 0.022347191348671913, -0.035283055156469345, 0.028510233387351036, -0.09528881311416626,
- 0.19503943622112274, 0.060656752437353134, 0.07414092123508453, -0.11278241127729416,
- 0.018800344318151474, 0.07596613466739655, -0.03528941422700882, 0.005124243441969156,
- 0.04986422508955002, -0.18853029608726501, -0.009204670786857605, -0.0713159441947937,
- 0.12166684865951538, 0.03372865915298462, 0.022616514936089516, 0.05110441520810127,
- -0.06920751184225082, 0.005894000176340342, 0.07329927384853363, -0.07019013911485672,
- 0.030191529542207718, -0.024203365668654442, -0.02749745361506939, 0.08373191207647324,
- 0.041451577097177505, 0.08490890264511108, -0.040969688445329666, 11.848311424255371,
- 0.04378834739327431, 0.04238823056221008, -0.047282908111810684, -0.03485245630145073,
- -0.03741893172264099, -0.011613143607974052, -0.11981987953186035, 0.06463709473609924,
- 0.16088886559009552, -0.02375403605401516, -0.09909673035144806, -0.04307183623313904,
- -0.11208298057317734, 0.022966738790273666, -0.012699012644588947, -0.08320015668869019,
- -0.022654742002487183, 0.05168070271611214, -0.03894316777586937, 0.0025609128642827272,
- 0.01917654275894165, 0.05653354153037071, 0.02364363521337509, -0.03146801516413689,
- -0.004254266619682312, 0.036470603197813034, -0.023199841380119324,
- -0.00948293600231409, -0.004020373802632093, -0.02137877605855465,
- -0.035759299993515015, 0.043241631239652634, -0.012158925645053387,
- 0.010354386642575264, -0.012172560207545757, 0.09074942022562027, 0.02445186860859394,
- 0.014710764400660992, 0.12266751378774643, 0.04183289408683777, 0.03403857722878456,
- -0.0009146516094915569, 0.030475903302431107, 0.08344707638025284, 0.10520221292972565,
- 0.04599593207240105, 0.0853191688656807, 0.07554914057254791, 0.08208156377077103,
- 0.09051071107387543, 0.005948997568339109, 0.1256493479013443, -0.03839758783578873,
- 0.03157077729701996, 0.07060207426548004, 0.012910977937281132, -0.04848314821720123,
- 0.028539106249809265, 0.01928442344069481, -0.006483015138655901, 0.0985327661037445,
- 0.01088392361998558, 0.08422373235225677, -0.0038370084948837757, 0.1043490320444107,
- 0.07401100546121597, 0.10585211217403412, -0.1662767231464386, -0.0378410778939724,
- -0.00737583776935935, -0.10432744771242142, -0.0676855817437172, 0.06327518075704575,
- 0.0653461217880249, -0.07736402004957199, 0.007871990092098713, 0.01937539130449295,
- 0.019176196306943893, -0.00792339351028204, 0.026706170290708542, 0.07710722833871841,
- -0.019964301958680153, -0.023554906249046326, 0.09414903819561005, 0.043791353702545166,
- 0.05166501924395561, 0.08911076933145523, -0.027959225699305534, -0.09920363873243332,
- -0.07084091007709503, 0.05253055691719055, -0.02206430956721306, 0.001779648824594915,
- 0.003595815971493721, -0.031379565596580505, 0.04576659947633743, -0.15862873196601868,
- 0.09350408613681793, 0.17080698907375336, -0.08057206869125366, 0.0017818788764998317,
- -0.051850590854883194, 0.03714471682906151, -0.012170525267720222, 0.04280812293291092,
- -0.015452586114406586, 0.01824447512626648, -0.01440790481865406, 0.027248607948422432,
- -0.012663239613175392, 0.02993275411427021, 0.05018942058086395, -0.08011045306921005,
- 0.011910708621144295, 0.027622386813163757, 0.00701529486104846, -0.050044991075992584,
- 0.07122853398323059, 0.026202743873000145, -0.04044819250702858, -0.037808991968631744,
- -0.05383945256471634, 0.039622388780117035, -0.02157246507704258, -0.049539074301719666,
- 0.06592145562171936, 0.052380673587322235, -0.07991141080856323, 0.0014855146873742342,
- 0.02536879852414131, 0.05773250386118889, 0.04416498914361, 0.009983045980334282,
- 0.11386127769947052, -0.024332260712981224, -0.05785517394542694, 0.056916963309049606,
- 0.0064506009221076965, 0.04521356150507927, -0.005797678139060736,
- -0.029699424281716347, -0.05047477409243584, -0.12105569243431091, 0.013994659297168255,
- 0.07169445604085922, 0.07354961335659027, 0.01916348561644554, -0.017973193898797035,
- -0.06396305561065674, -0.04697057977318764, 0.1223524957895279, -0.026609061285853386,
- -0.010313938371837139, -0.006418760400265455, -0.06191020831465721,
- -0.040135808289051056, 0.08106289058923721, -0.06627524644136429, 0.005808372516185045,
- 0.015766577795147896, -0.016636716201901436, 0.05790629982948303, 0.028816431760787964,
- -0.021788032725453377, 0.033015601336956024, 0.03379977121949196, 0.007815899327397346,
- 0.028891969472169876, -0.03575826808810234, 0.05229802057147026, -0.00955013558268547,
- -0.1563570648431778, -0.03669794648885727, 0.033072154968976974, 0.09213446080684662,
- -0.012653008103370667, -0.08026327192783356, -0.0283158328384161, -0.01764141395688057
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 154,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 40,
- "similarity": 0.9979566335678101
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 10,
- "similarity": 0.9978716969490051
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 79,
- "similarity": 0.9978173971176147
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Carrie Johnson"],
- "epoch_date_downloaded": 1643932800,
- "epoch_date_modified": 1643932800,
- "epoch_date_submitted": 1643932800,
- "flag": null,
- "report_number": 1512,
- "source_domain": "npr.org",
- "submitters": ["Anonymous"],
- "title": "Flaws plague a tool meant to help low-risk federal prisoners win early release",
- "url": "https://www.npr.org/2022/01/26/1075509175/justice-department-algorithm-first-step-act"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "google-maps",
- "name": "Google Maps"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "google-maps",
- "name": "Google Maps"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "google-maps-users-traveling-in-the-mountains",
- "name": "Google Maps users traveling in the mountains"
- },
- {
- "__typename": "Entity",
- "entity_id": "google-maps-users-traveling-in-sierra-nevada",
- "name": "Google Maps users traveling in Sierra Nevada"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1514, 1513],
- "vector": [
- -0.07932719588279724, 0.08155815303325653, 0.028012849390506744, -0.11190266907215118,
- 0.12150901556015015, -0.043548502027988434, -0.031829509884119034, 0.01922701671719551,
- 0.07821471989154816, -0.12510067224502563, 0.03515451028943062, 0.03321635723114014,
- 0.03224165737628937, -0.034496959298849106, 0.03416828811168671, -0.08536461740732193,
- -0.08641025424003601, -0.06012330204248428, -0.052001044154167175, -0.11258845031261444,
- -0.05749264359474182, 0.030947132036089897, 0.0033847703598439693, 0.06665408611297607,
- -0.04674621298909187, 0.026649359613656998, 0.07866889983415604, 0.11494781076908112,
- -0.021071186289191246, 0.05246641859412193, -0.008691612631082535, -0.04272279143333435,
- 0.15165552496910095, 0.02558363974094391, 0.0062285298481583595, 0.09549471735954285,
- -0.008137473836541176, -0.03659304976463318, 0.008475255221128464, 0.033942483365535736,
- -0.009614483453333378, 0.23057979345321655, -0.03090335801243782, 0.003704396542161703,
- 0.05209018290042877, -0.015989607200026512, 0.03509486839175224, 0.062392573803663254,
- 0.015923893079161644, 0.01834104396402836, -0.06163085997104645, 0.1060648187994957,
- -0.04036944732069969, 0.043457694351673126, -0.14216119050979614, 0.05813610553741455,
- 0.03292912244796753, -0.044092241674661636, 0.05526585876941681, -0.09752589464187622,
- -0.07798535376787186, -0.2979147136211395, -0.05079237371683121, -0.02019462361931801,
- 0.11235158145427704, -0.08500256389379501, -0.025830654427409172, -0.016525324434041977,
- 0.03321750834584236, 0.08226925134658813, 0.02165725827217102, -0.05834042653441429,
- -0.03810955584049225, 0.021586935967206955, -0.005194591823965311, -0.0522744283080101,
- 0.023742958903312683, 0.2218990921974182, -0.10178406536579132, 0.006389151327311993,
- 0.12566538155078888, -0.0903952568769455, 0.4840176999568939, -0.008329463191330433,
- -0.014677353203296661, -0.03289584070444107, 0.10453256219625473, 0.044026389718055725,
- 0.026408884674310684, 0.07963469624519348, -0.028702672570943832, 0.042109161615371704,
- -0.0106995003297925, 0.035457544028759, 0.0774943083524704, 0.018005605787038803,
- -0.0047199600376188755, 0.06343547999858856, -0.015485918149352074,
- -0.07561738789081573, 0.03892754018306732, -0.027045011520385742, 0.07314026355743408,
- 0.046460025012493134, 0.008825776167213917, 0.01884201169013977, 0.1019468605518341,
- -0.03423183411359787, 0.061633359640836716, -0.047738656401634216, -0.00517220888286829,
- -0.012451115064322948, 0.027963528409600258, -0.012776513583958149, 0.05495230108499527,
- -0.04281124472618103, -0.0044713094830513, 0.02437402307987213, 0.11626981943845749,
- -0.014431451447308064, -0.01297268457710743, 0.0910305604338646, 0.08856913447380066,
- -0.057144664227962494, -0.04478127509355545, -0.015137129463255405,
- -0.09756112098693848, -0.02045058086514473, -0.053499430418014526, 0.04606371745467186,
- -0.06986039876937866, -0.23999688029289246, 0.02008305862545967, 0.0837019756436348,
- -0.010248543694615364, -0.023248836398124695, -0.04750536382198334,
- -0.10894189029932022, 0.038052402436733246, -0.04232286661863327, -0.000318773090839386,
- 0.03572997823357582, 0.02691943570971489, 0.05198908969759941, 0.0792272761464119,
- 0.09867504239082336, -0.027774685993790627, -0.048216141760349274,
- -0.0025860280729830265, -0.031110789626836777, 0.08849698305130005,
- -0.06414586305618286, -0.03961529955267906, -0.010293341241776943, -0.03527182340621948,
- 0.6565890908241272, 0.19395270943641663, 0.15392914414405823, -0.015761153772473335,
- -0.060174062848091125, 0.19592973589897156, -0.0035262294113636017, 0.0397554375231266,
- -0.12294627726078033, -0.05392937734723091, 0.028704145923256874, -0.10714232921600342,
- -0.032052624970674515, 0.025528082624077797, 0.007434630300849676, 0.07632632553577423,
- 0.05678403377532959, 0.1021607369184494, 0.0363321378827095, -0.14818376302719116,
- 0.018297743052244186, 0.0641975849866867, 0.020021837204694748, -0.12202616035938263,
- -0.025438634678721428, 0.04361555725336075, 0.08037014305591583, -0.04480566829442978,
- 0.03503737598657608, -0.08380240201950073, 0.05709192156791687, -0.03747780621051788,
- -0.0016794726252555847, -0.032441772520542145, 0.03253861516714096, 0.03193711116909981,
- 0.031832024455070496, -0.009960473515093327, -0.1305842101573944, -0.019817713648080826,
- 0.10550122708082199, -0.018341708928346634, -0.0547683946788311, 0.051392119377851486,
- -0.07804445922374725, 0.05360642820596695, 0.026951337233185768, 0.1386556625366211,
- -0.13520589470863342, 0.0019848383963108063, 0.011895495466887951, 0.02463347651064396,
- 0.05198146402835846, -0.026746906340122223, -0.059655770659446716, -0.05118688941001892,
- 0.0800514817237854, -0.013247602619230747, 0.07632483541965485, 0.06220365688204765,
- -0.05412982404232025, 0.06471704691648483, 0.04672599956393242, -0.0008945534937083721,
- -0.03157224878668785, 0.0868186205625534, 0.09700214117765427, -0.007411036640405655,
- -0.016799289733171463, 0.019609276205301285, 0.03494410216808319, 0.032800253480672836,
- -0.020384609699249268, 0.05842806398868561, 0.026272376999258995, -0.05797473341226578,
- 0.03430343046784401, 0.00896395556628704, -0.00023098289966583252, 0.09924481809139252,
- -0.08815593272447586, -0.043255098164081573, -0.01563824899494648, 0.022538311779499054,
- -0.007239446043968201, -0.050934530794620514, 0.09927405416965485, 0.09892226755619049,
- 0.06937994807958603, 0.04652370512485504, 0.09072157740592957, 0.08452567458152771,
- 0.05492669716477394, 0.013763817958533764, 0.10923066735267639, -0.06465993076562881,
- -0.0690644383430481, -0.04397900402545929, 0.004549890756607056, 0.02684936858713627,
- 0.04963303357362747, -0.05751997232437134, -0.05530849099159241, -0.037491850554943085,
- -0.012210140936076641, -0.07172898203134537, -0.015344534069299698,
- 0.060496214777231216, 0.050370775163173676, -0.06529782712459564, -0.08374260365962982,
- -0.059628769755363464, -0.014252819120883942, 0.09210282564163208,
- -0.0021267766132950783, -0.012079782783985138, -0.10362648963928223,
- 0.008412610739469528, -0.027258189395070076, 0.04339929297566414, 0.02130454033613205,
- 0.054419077932834625, 0.01286878902465105, -0.10740004479885101, -0.007031761109828949,
- -0.05423745512962341, 0.019921083003282547, -0.11376901715993881, -0.07301449775695801,
- -0.06614070385694504, -0.05679478868842125, 0.03473924845457077, -0.014592153020203114,
- 0.05615340173244476, 0.02558845654129982, 0.047777652740478516, -0.03291837126016617,
- -0.07647328078746796, 0.08469043672084808, -0.026374451816082, -0.03970712423324585,
- 0.07844666391611099, -0.02554222196340561, 0.04392711818218231, 0.032547563314437866,
- -0.07360774278640747, -0.0035777981393039227, 0.02977599948644638, -0.03474791347980499,
- 0.0680093765258789, -0.057071879506111145, 0.0012655064929276705, -0.06895944476127625,
- -0.00482233427464962, 0.04772297292947769, -0.062244635075330734, -0.06094831973314285,
- -0.08034414798021317, 0.1714698225259781, -0.04780004918575287, 0.02896042913198471,
- 0.027255354449152946, -0.07141891121864319, 0.03650791198015213, -0.02429456263780594,
- -0.023639177903532982, 0.016633357852697372, 0.013673346489667892,
- -0.017551762983202934, -0.005855616182088852, 0.07720272988080978, -0.03220556676387787,
- 0.03508023917675018, 0.06464044749736786, 0.470978319644928, -0.15668199956417084,
- 0.07554131746292114, 0.0891120657324791, 0.019700616598129272, 0.08966983109712601,
- -0.015783241018652916, 0.06761955469846725, 0.08030933886766434, 0.1118955910205841,
- 0.07639476656913757, -0.05284149944782257, -0.019297689199447632, -0.054206620901823044,
- 0.14817163348197937, -0.01859566755592823, 0.030161786824464798, 0.002864494454115629,
- -0.05765601247549057, 0.013734683394432068, 0.03181421756744385, -0.1069190725684166,
- -0.010123159736394882, -0.016615575179457664, -0.08702488243579865,
- -0.005169649608433247, 0.003638970199972391, 0.015222208574414253, -0.04350200295448303,
- 0.00036107306368649006, -0.01999001018702984, -0.010341165587306023,
- 0.008297047577798367, 0.03445013239979744, -0.10840770602226257, 0.0158032588660717,
- -0.038896530866622925, -0.0783136785030365, 0.07775136828422546, -0.022706760093569756,
- 0.05370591953396797, 0.04452785104513168, 0.006570217665284872, 0.020573625341057777,
- 0.008395708166062832, -0.060331493616104126, 0.03506997227668762, 0.08307153731584549,
- 0.030869467183947563, 0.1147715151309967, 0.17594227194786072, -0.06334301084280014,
- -0.05690479278564453, -0.07808277010917664, 0.06704016029834747, 0.09730018675327301,
- 0.007291010115295649, 0.0012880249414592981, 0.042205847799777985,
- 0.000021573621779680252, 0.016609322279691696, -0.0552511140704155,
- -0.055804841220378876, -0.04711213707923889, -0.05953741446137428, 0.08898892998695374,
- 0.005238299258053303, -0.008038535714149475, -0.1889418661594391, -0.02185998298227787,
- -0.04793616384267807, 0.03314780816435814, 0.12286210060119629, -0.06122666597366333,
- -0.022162791341543198, -0.00775555893778801, -0.02113945782184601, 0.016493065282702446,
- -0.08685053884983063, 0.0016721421852707863, -0.018859028816223145, 0.03561530262231827,
- 0.05496133863925934, 0.04670671373605728, -0.05923370271921158, 0.09636680036783218,
- -0.11039720475673676, 0.07291685789823532, 0.03626134246587753, 0.0186615027487278,
- -0.027939584106206894, -0.027442146092653275, 0.07080699503421783, 0.044710852205753326,
- -0.052918657660484314, 0.018292056396603584, -0.0023305986542254686,
- -0.09658381342887878, -0.1081227958202362, -0.02678823098540306, -0.036510974168777466,
- -0.10582520067691803, 0.041425831615924835, -0.1520063579082489, -0.010286873206496239,
- -0.015603545121848583, 0.017255401238799095, 0.012781667523086071, 0.05227355659008026,
- 0.07237271964550018, -0.15375693142414093, 0.028524057939648628, -0.03394182771444321,
- 0.10594040155410767, -0.018328530713915825, -0.046792857348918915, 0.03391608968377113,
- 0.04590252786874771, 0.030436761677265167, -0.002367541892454028, 0.06827368587255478,
- -0.05901670455932617, 0.027602074667811394, -0.09592214226722717, -0.5118088126182556,
- 0.040325917303562164, 0.027592912316322327, 0.05885951220989227, -0.008657476864755154,
- -0.05825173854827881, 0.05909809097647667, 0.009665143676102161, -0.04908030107617378,
- 0.11871492862701416, -0.07094896584749222, 0.027221575379371643, 0.030153313651680946,
- -0.061577290296554565, -0.009412613697350025, -0.0025249600876122713,
- -0.05995351821184158, 0.037405695766210556, -0.04631357640028, -0.04186683148145676,
- -0.10663516819477081, 0.010246848687529564, 0.015195341780781746, 0.046419721096754074,
- -0.008100200444459915, 0.03930171951651573, -0.05328109860420227, -0.05161391943693161,
- 0.06720646470785141, 0.060328006744384766, 0.03639688342809677, -0.05407583341002464,
- 0.011035464704036713, 0.010990007780492306, -0.012319508008658886, 0.13323275744915009,
- 0.004923952743411064, 0.01651524193584919, -0.0372275710105896, 0.08076593279838562,
- 0.030032988637685776, 0.18509991466999054, -0.049939852207899094, 0.05977605655789375,
- 0.055401626974344254, 0.11204749345779419, 0.061499107629060745, -0.010662499815225601,
- -0.012090879492461681, 0.029087018221616745, -0.004809585399925709,
- 0.013013666495680809, 0.09018830955028534, -0.06486859172582626, -0.051159076392650604,
- -0.05449104681611061, -0.01879311352968216, -0.03675110638141632, 0.09244830161333084,
- 0.22073820233345032, 0.03646636754274368, 0.04383442550897598, 0.008272333070635796,
- -0.0854368656873703, 0.0011609401553869247, -0.0983591377735138, -0.08802122622728348,
- -0.031855955719947815, -0.005191618576645851, 0.02139381319284439, -0.03080131858587265,
- -0.14526620507240295, -0.008250609040260315, -0.027475886046886444,
- -0.020146217197179794, 0.08335240185260773, -0.0037057576701045036, 0.02412949874997139,
- -0.010592392645776272, 0.11622914671897888, 0.044800229370594025, 0.01957390271127224,
- 0.09292741119861603, 0.04759007692337036, 0.019163548946380615, 0.01919667236506939,
- -0.026913855224847794, -0.10088250041007996, 0.012981820851564407, 0.1297929883003235,
- -0.028634600341320038, 0.08266523480415344, 0.029588159173727036, -0.053033940494060516,
- -0.06320856511592865, 0.040402449667453766, -0.02034912072122097, 0.10292890667915344,
- -0.46173906326293945, -0.01597101241350174, 0.11315274238586426, 0.040768250823020935,
- 0.044510431587696075, 0.06726459413766861, 0.01709599606692791, -0.056093912571668625,
- -0.027393611147999763, -0.044905465096235275, 0.23043932020664215, -0.05317758023738861,
- 0.005742816254496574, -0.10878626257181168, 0.03190528601408005, 0.04455073922872543,
- 0.005054570268839598, -0.03801586106419563, 0.07028067111968994, -0.21673525869846344,
- -0.0017268727533519268, -0.05102888122200966, 0.158101886510849, 0.00968753732740879,
- 0.021833224222064018, 0.08053062856197357, -0.07665032148361206, 0.03509187698364258,
- 0.0004983767867088318, -0.017470888793468475, 0.055540964007377625,
- -0.04719150438904762, 0.007526949979364872, 0.09272230416536331, 0.1271851658821106,
- 0.08851198852062225, -0.01574336737394333, 12.024112701416016, 0.09016408026218414,
- 0.053967393934726715, -0.09437520056962967, 0.03367185592651367, -0.048073314130306244,
- 0.03304251283407211, -0.1492248773574829, 0.08583270013332367, 0.10376232117414474,
- -0.0367070734500885, -0.036123696714639664, -0.04047355055809021, -0.08805160969495773,
- 0.01886979676783085, -0.13608191907405853, -0.04810970276594162, -0.01179473102092743,
- 0.05260246992111206, -0.026696719229221344, 0.010310828685760498, 0.004867886193096638,
- 0.06302009522914886, 0.032004717737436295, -0.07887932658195496, 0.05803601071238518,
- 0.03839713707566261, -0.014225645922124386, -0.01082330197095871,
- -0.0017263395711779594, -0.017303185537457466, 0.028905969113111496,
- 0.03310605511069298, -0.023330941796302795, -0.026444535702466965, 0.08249907195568085,
- -0.0007033159490674734, 0.026183459907770157, -0.003612576052546501,
- 0.08285185694694519, 0.04639032110571861, -0.012934316881000996, 0.04487843066453934,
- 0.03242339938879013, 0.05576144903898239, 0.03794953227043152, 0.007024705410003662,
- 0.11976204812526703, 0.06464508175849915, 0.017994139343500137, 0.08614520728588104,
- -0.027142152190208435, 0.14227475225925446, 0.0063634756952524185,
- -0.009868854656815529, 0.07236601412296295, -0.040553249418735504, -0.07273454964160919,
- 0.06770139932632446, 0.03974640741944313, -0.05154622346162796, 0.06696885824203491,
- 0.015596410259604454, 0.13388124108314514, -0.04781539738178253, 0.046765685081481934,
- 0.07745377719402313, 0.09870724380016327, -0.14184896647930145, -0.0834708958864212,
- 0.048851676285266876, -0.12167185544967651, -0.04801090806722641, 0.0789465606212616,
- 0.13276951014995575, -0.03358542174100876, 0.030064847320318222, -0.02250148355960846,
- -0.01786670833826065, -0.048265114426612854, -0.005364116746932268,
- 0.058463405817747116, -0.022434378042817116, 0.039080746471881866, 0.09107187390327454,
- -0.009367017075419426, 0.06790271401405334, 0.084034264087677, -0.012790016829967499,
- -0.09600499272346497, -0.10332071781158447, 0.07465995848178864, -0.05026332288980484,
- -0.07182492315769196, 0.018123334273695946, -0.10395827889442444, 0.1017734706401825,
- -0.20928877592086792, 0.08160172402858734, 0.06403301656246185, -0.0694960281252861,
- -0.015649598091840744, -0.03111143410205841, 0.09071219712495804, -0.005841218866407871,
- 0.03761675953865051, -0.03980455547571182, -0.0003862513694912195,
- -0.040261704474687576, 0.045159682631492615, -0.032299622893333435, 0.06491163372993469,
- 0.07303380221128464, -0.030290111899375916, 0.056746721267700195, 0.06452486664056778,
- -0.051605068147182465, -0.03339936584234238, 0.08332948386669159, 0.050747599452733994,
- -0.06080251187086105, -0.028090372681617737, -0.021751821041107178,
- -0.051936570554971695, -0.04765723645687103, -0.0684146136045456, 0.008198433555662632,
- 0.012166520580649376, -0.05549609288573265, -0.015367671847343445, 0.03140781819820404,
- 0.038869891315698624, 0.09105317294597626, 0.02698552794754505, 0.09677539765834808,
- -0.07718755304813385, -0.020666830241680145, 0.05387511104345322, 0.038646817207336426,
- 0.08204524964094162, -0.013826404698193073, -0.022792823612689972, -0.05918421596288681,
- -0.08837144076824188, 0.029916681349277496, 0.06835463643074036, 0.03128793463110924,
- 0.009103487245738506, 0.060641612857580185, -0.08972328901290894, -0.041897617280483246,
- 0.13073180615901947, 0.05356714129447937, 0.018360765650868416, -0.004183256067335606,
- -0.08218251168727875, -0.00854351557791233, 0.15453968942165375, -0.041939668357372284,
- 0.006842883303761482, -0.041987162083387375, -0.028979092836380005,
- 0.060466885566711426, 0.07912605255842209, 0.035286594182252884, 0.04450073093175888,
- -0.025662139058113098, 0.02295508235692978, 0.04354140907526016, 0.01348932646214962,
- -0.02391381561756134, 0.0006443955935537815, -0.1417127102613449, -0.09225326776504517,
- 0.01182693149894476, 0.0756152868270874, -0.01931161619722843, -0.08742831647396088,
- -0.005597097333520651, -0.037869445979595184
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 155,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 22,
- "similarity": 0.9987254738807678
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 234,
- "similarity": 0.9985671639442444
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 20,
- "similarity": 0.9982464909553528
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Joshua Bote"],
- "epoch_date_downloaded": 1643932800,
- "epoch_date_modified": 1643932800,
- "epoch_date_submitted": 1643932800,
- "flag": null,
- "report_number": 1514,
- "source_domain": "sfgate.com",
- "submitters": ["Anonymous"],
- "title": "Google Maps may have led Tahoe travelers astray in snowstorm",
- "url": "https://www.sfgate.com/renotahoe/article/Google-Maps-may-have-led-Tahoe-travelers-astray-16734398.php"
- },
- {
- "__typename": "Report",
- "authors": ["Neil Vigdor"],
- "epoch_date_downloaded": 1643932800,
- "epoch_date_modified": 1643932800,
- "epoch_date_submitted": 1643932800,
- "flag": null,
- "report_number": 1513,
- "source_domain": "nytimes.com",
- "submitters": ["Anonymous"],
- "title": "Snow Closed the Highways. GPS Mapped a Harrowing Detour in the Sierra Nevada.",
- "url": "https://www.nytimes.com/2021/12/31/us/google-maps-waze-sierra-nevada-snow.html"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "amazon",
- "name": "Amazon"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "amazon",
- "name": "Amazon"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "people-attempting-suicides",
- "name": "people attempting suicides"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [2197, 1515],
- "vector": [
- -0.05791161209344864, 0.08187709003686905, -0.004412808921188116, -0.12081432342529297,
- 0.09163867682218552, -0.014770236797630787, 0.01855194941163063, 0.08070018887519836,
- 0.08796869218349457, -0.11170490086078644, 0.024436064064502716, 0.02200494334101677,
- 0.008022700436413288, -0.04546888545155525, -0.0015763207338750362,
- -0.11064688116312027, -0.10147230327129364, -0.027576405555009842,
- -0.029812684282660484, -0.11150859296321869, -0.10442197322845459, 0.026728544384241104,
- 0.037653546780347824, 0.120351642370224, -0.021118897944688797, 0.055353399366140366,
- 0.0845951959490776, 0.13960224390029907, -0.05208577215671539, 0.01823585480451584,
- -0.013259530998766422, -0.051159873604774475, 0.1204637736082077, 0.008591500110924244,
- -0.0036491909995675087, 0.12967969477176666, -0.0064330510795116425,
- -0.042485691606998444, -0.006968729197978973, -0.018790271133184433,
- 0.03314630687236786, 0.2162265181541443, -0.025420211255550385, 0.01742352917790413,
- 0.027125626802444458, -0.01681871898472309, -0.007922613993287086, 0.035485755652189255,
- -0.009599365293979645, -0.023458031937479973, -0.024261686950922012,
- 0.04923458397388458, -0.04915248602628708, 0.0406724214553833, -0.10372366011142731,
- 0.07595373690128326, 0.026402421295642853, -0.016861047595739365, 0.05173603072762489,
- -0.0477682501077652, -0.04764799773693085, -0.22989284992218018, -0.03782571852207184,
- -0.04351221024990082, 0.07394580543041229, -0.07554925978183746, -0.02691669389605522,
- -0.0063044908456504345, -0.00365677522495389, 0.07182054221630096, 0.0632331371307373,
- -0.024405892938375473, -0.018280886113643646, 0.029481327161192894,
- 0.016512665897607803, -0.03563423082232475, 0.04777909815311432, 0.2193799614906311,
- -0.06859426945447922, 0.019172636792063713, 0.11248467862606049, -0.08860631287097931,
- 0.40349823236465454, 0.03208114206790924, -0.031341031193733215, 0.014136102981865406,
- 0.06171771138906479, 0.011053260415792465, 0.016731446608901024, 0.035608310252428055,
- -0.02298307605087757, 0.022425001487135887, -0.04307592287659645, -0.02126123569905758,
- 0.07103867828845978, 0.034283146262168884, -0.010441405698657036, 0.028542034327983856,
- 0.017944224178791046, -0.06211081147193909, 0.04368774965405464, -0.07467003911733627,
- 0.08937764167785645, 0.13821443915367126, -0.03802639991044998, 0.000024088076315820217,
- 0.057489681988954544, -0.054600656032562256, 0.03754034638404846, -0.0366721972823143,
- 0.01127087976783514, 0.02276875451207161, 0.01775575987994671, 0.007932452484965324,
- 0.04730967804789543, -0.04059633985161781, 0.04185343533754349, 0.049657344818115234,
- 0.08361775428056717, 0.03145385906100273, 0.01887168549001217, 0.06351962685585022,
- 0.08975376188755035, -0.07020603120326996, -0.004156346432864666, -0.019008304923772812,
- -0.02042928710579872, -0.012624234892427921, -0.005388316698372364, 0.04818829894065857,
- -0.06441307812929153, -0.1965080350637436, 0.021109849214553833, 0.09109513461589813,
- -0.02184419147670269, -0.019391093403100967, -0.009409005753695965,
- -0.05888070911169052, 0.0410417802631855, -0.0012634247541427612, -0.031692519783973694,
- 0.0553443469107151, 0.012110491283237934, 0.01950138248503208, 0.10242670774459839,
- 0.04230954870581627, -0.05423802137374878, -0.02331826463341713, 0.03774847090244293,
- -0.006349101662635803, 0.09359823912382126, -0.14582559466362, -0.04970581829547882,
- 0.0031602862291038036, -0.00038200151175260544, 0.6581251621246338, 0.12647253274917603,
- 0.1442139744758606, -0.013728534802794456, -0.029444513842463493, 0.18662011623382568,
- -0.011268970556557178, 0.041411202400922775, -0.07214052975177765, -0.06233580783009529,
- 0.02584170177578926, -0.08035248517990112, -0.03521304577589035, 0.027943436056375504,
- 0.012861168012022972, 0.1187744215130806, 0.05433855205774307, 0.09261396527290344,
- -0.004294942133128643, -0.10490178316831589, -0.03820033743977547, 0.036445606499910355,
- 0.01150461658835411, -0.12204498052597046, -0.024160632863640785, 0.044839583337306976,
- 0.07828283309936523, -0.09465710818767548, 0.010661878623068333, -0.07064837217330933,
- 0.03630666807293892, -0.03756890073418617, 0.009146017022430897, -0.041710302233695984,
- 0.01679440215229988, 0.03168217092752457, 0.06476231664419174, -0.001584880636073649,
- -0.1144326776266098, -0.011251851916313171, 0.12597371637821198, 0.0007190692704170942,
- -0.06325312703847885, 0.08840218931436539, -0.078448086977005, 0.04036439210176468,
- 0.04584008455276489, 0.14095860719680786, -0.12646597623825073, 0.003931812476366758,
- -0.026372075080871582, -0.041062213480472565, 0.052738480269908905,
- -0.0012609423138201237, -0.04645916819572449, -0.051582444459199905,
- 0.06665077805519104, 0.022348687052726746, 0.09446144849061966, 0.043969184160232544,
- -0.05699086934328079, 0.07329920679330826, 0.035935938358306885, -0.02109135314822197,
- -0.048208560794591904, 0.06680193543434143, 0.05175883322954178, -0.01963932067155838,
- -0.017932210117578506, -0.0015609292313456535, 0.0513143390417099,
- 0.0013849351089447737, 0.0046203359961509705, 0.0535200834274292, 0.03513997420668602,
- -0.06432431936264038, 0.026014957576990128, 0.04661960527300835, -0.05545520782470703,
- 0.06770940124988556, -0.07163234800100327, -0.03002726100385189, -0.049476560205221176,
- -0.01135101169347763, 0.012672233395278454, -0.03645353764295578, 0.08595849573612213,
- 0.1085747629404068, 0.052512671798467636, -0.0003912688698619604, 0.03918302059173584,
- 0.06673388928174973, 0.05929477512836456, 0.004407014697790146, 0.0996926948428154,
- 0.010316800326108932, -0.04359045624732971, -0.042684055864810944,
- -0.000627628993242979, 0.01647081971168518, 0.04594060033559799, -0.0871506929397583,
- -0.031764350831508636, -0.010607070289552212, -0.02867746353149414,
- -0.07943360507488251, -0.08160831034183502, 0.017462266609072685, 0.047759994864463806,
- -0.038721323013305664, -0.0957910418510437, -0.09399370849132538, 0.01239779219031334,
- 0.0928032398223877, -0.027777690440416336, -0.04765251278877258, -0.1057199090719223,
- 0.016863299533724785, -0.01562415063381195, 0.058445703238248825,
- -0.0007102540694177151, 0.01048281043767929, 0.011977814137935638, -0.07959578931331635,
- 0.019253592938184738, -0.007559067569673061, -0.017863936722278595,
- -0.08463773876428604, -0.05384466052055359, -0.023198163136839867, -0.05186208710074425,
- 0.0211759302765131, -0.024032708257436752, 0.051808640360832214, 0.06995047628879547,
- 0.059866998344659805, -0.0017461995594203472, -0.04634881019592285, 0.07036331295967102,
- -0.04620443657040596, 0.029057972133159637, 0.09581117331981659, -0.0490085631608963,
- 0.010993421077728271, 0.013588584959506989, -0.04225318878889084, -0.05724654719233513,
- -0.03169288858771324, -0.0447915717959404, 0.0754542425274849, -0.019686320796608925,
- 0.006559132132679224, -0.06886322796344757, -0.003994411788880825, 0.070502869784832,
- -0.06057631969451904, -0.08989378809928894, -0.050328344106674194, 0.09191445261240005,
- -0.013820656575262547, -0.016705455258488655, -0.015816083177924156,
- -0.0953410416841507, 0.05855867639183998, -0.02208911068737507, 0.016543330624699593,
- 0.039985883980989456, 0.05679938942193985, -0.06481488049030304, 0.01343470811843872,
- 0.09968417882919312, -0.0063417996279895306, -0.0016213611233979464,
- 0.04537602886557579, 0.4295945465564728, -0.16155734658241272, 0.10579416900873184,
- 0.08253449201583862, 0.0009029833599925041, 0.06005771458148956, -0.0450853630900383,
- 0.05815433710813522, 0.0664689689874649, 0.10509198158979416, 0.053274065256118774,
- -0.04546302184462547, 0.01657036319375038, -0.05753331631422043, 0.10572099685668945,
- 0.0016072290018200874, 0.04440001770853996, -0.014799223281443119, -0.05766866356134415,
- -0.005980470217764378, 0.03949651122093201, 0.0005212748656049371,
- 0.0011447371216490865, -0.009587408974766731, -0.071932852268219, 0.02400432527065277,
- 0.012135511264204979, 0.030566509813070297, -0.02462250553071499, 0.0004183892160654068,
- -0.05209000036120415, 0.05108845978975296, 0.0049959104508161545, 0.029280081391334534,
- -0.12052866816520691, 0.034373000264167786, -0.11163872480392456, -0.05056893453001976,
- 0.06658359616994858, -0.02090090699493885, 0.07839011400938034, 0.05977937579154968,
- -0.014185314066708088, 0.026232032105326653, 0.004210351034998894, -0.03940732404589653,
- 0.039517685770988464, 0.05683199316263199, 0.043344322592020035, 0.051369212567806244,
- 0.16459184885025024, -0.023176727816462517, -0.033002130687236786, -0.06771723926067352,
- 0.05417992174625397, 0.10108601301908493, 0.0069207968190312386, 0.042159177362918854,
- 0.009769609197974205, 0.0005593467503786087, -0.008944631554186344,
- -0.05213119462132454, -0.05122193694114685, 0.008703647181391716, -0.01571320928633213,
- 0.08027686178684235, 0.020182453095912933, -0.01630658283829689, -0.12186194956302643,
- 0.014185881242156029, -0.040727563202381134, 0.048585209995508194, 0.11900122463703156,
- -0.08454298973083496, 0.05726014822721481, 0.00010957103222608566,
- -0.012166958302259445, 0.0523371696472168, -0.05841600149869919, 0.02118644304573536,
- -0.04693960025906563, 0.022058798000216484, 0.04010188579559326, 0.023315582424402237,
- -0.08469663560390472, 0.07664866000413895, -0.09306123107671738, 0.03374263644218445,
- 0.02610420621931553, -0.039476893842220306, 0.0305738877505064, -0.03582540899515152,
- 0.040663283318281174, 0.027300022542476654, -0.04008132591843605, -0.018542921170592308,
- -0.010244490578770638, -0.037213437259197235, -0.08589671552181244,
- -0.08909298479557037, -0.025117363780736923, -0.07432062923908234, 0.03685818612575531,
- -0.09394881129264832, 0.02388988807797432, -0.025379162281751633, -0.0078499224036932,
- -0.015106878243386745, 0.03227992355823517, 0.0027053081430494785, -0.14074921607971191,
- -0.01062264945358038, -0.005452375393360853, 0.050298042595386505,
- -0.012338855303823948, -0.0646880716085434, 0.03267698734998703, 0.09238709509372711,
- 0.016407817602157593, -0.015200973488390446, 0.01815885305404663, -0.032184287905693054,
- 0.06702004373073578, -0.10948722064495087, -0.44758638739585876, 0.07212913036346436,
- 0.030715761706233025, 0.04449087008833885, 0.009182708337903023, -0.07670354098081589,
- 0.06319040060043335, 0.024460822343826294, -0.049823928624391556, 0.10899364948272705,
- -0.07373204827308655, 0.04821781814098358, -0.0008238106966018677, -0.05559825524687767,
- -0.034086741507053375, -0.0337572805583477, -0.03680304065346718, 0.0020693475380539894,
- -0.0313069149851799, -0.05298275500535965, -0.13996058702468872, 0.018225692212581635,
- -0.022030320018529892, 0.0198050644248724, 0.021838072687387466, 0.03380652889609337,
- -0.05892583727836609, -0.02301924303174019, 0.034155379980802536, 0.042650140821933746,
- 0.012972977012395859, -0.07415908575057983, -0.00006366230081766844,
- 0.04793104901909828, -0.016312383115291595, 0.16143405437469482, 0.014771322719752789,
- 0.00913830567151308, -0.13885751366615295, 0.06988103687763214, 0.05846831202507019,
- 0.1887364685535431, -0.006911837495863438, 0.04619919881224632, 0.028546586632728577,
- 0.09795928746461868, 0.03300788998603821, 0.023601170629262924, -0.034083567559719086,
- 0.03791256248950958, 0.04706787317991257, 0.020011475309729576, 0.06502047181129456,
- -0.0958157479763031, -0.007861321792006493, -0.03487066179513931, 0.003978861961513758,
- -0.001414543716236949, -0.02655820921063423, 0.17980991303920746,
- -0.0016759298741817474, 0.03802523761987686, 0.03359198942780495, -0.04981660842895508,
- -0.00006535043939948082, -0.06837081909179688, -0.11038890480995178,
- 0.002422698773443699, 0.014030455611646175, 0.01867053098976612, -0.03885705769062042,
- -0.1194332167506218, -0.03849691152572632, -0.03123435378074646, -0.026686949655413628,
- 0.09343978762626648, -0.03903409093618393, 0.022333556786179543, -0.03602505102753639,
- 0.12476086616516113, 0.015992818400263786, -0.003405556781217456, 0.03096899390220642,
- 0.07479611039161682, 0.03792686015367508, 0.027900798246264458, -0.05677550286054611,
- -0.08538733422756195, -0.04892436042428017, 0.12714722752571106, -0.019504215568304062,
- 0.15291370451450348, 0.08440634608268738, -0.0509931780397892, -0.052648283541202545,
- 0.027133479714393616, -0.015974124893546104, -0.006987794302403927,
- -0.45125070214271545, -0.023107310757040977, 0.10115222632884979, 0.0036298437044024467,
- 0.023709360510110855, 0.09899866580963135, 0.07631738483905792, -0.05194596201181412,
- -0.05087778717279434, -0.06951794028282166, 0.19208326935768127, -0.019091980531811714,
- 0.03290848061442375, -0.11375583708286285, 0.01641029492020607, 0.07969556748867035,
- -0.03268019109964371, -0.014757489785552025, 0.056636013090610504, -0.18827028572559357,
- -0.035200901329517365, -0.040531985461711884, 0.16395771503448486, 0.03613237291574478,
- 0.03704587370157242, 0.08809210360050201, -0.06420034170150757, 0.000757979229092598,
- 0.03867068141698837, 0.00692959688603878, 0.04594825953245163, -0.011525868438184261,
- -0.027518849819898605, 0.10377725213766098, 0.1156792864203453, 0.08309650421142578,
- -0.036269597709178925, 11.814661026000977, 0.0801498144865036, 0.0510956272482872,
- -0.07700946182012558, 0.03512172773480415, -0.022779619321227074, 0.045433975756168365,
- -0.10954790562391281, 0.009562098421156406, 0.11094653606414795, -0.023891203105449677,
- -0.035194456577301025, -0.05497347563505173, -0.07546773552894592,
- -0.008532187901437283, -0.028937028720974922, -0.03701139613986015,
- -0.03636859357357025, 0.04593764245510101, -0.027230121195316315, -0.030228227376937866,
- -0.009303606115281582, 0.04852442070841789, 0.0022643995471298695, -0.06978757679462433,
- 0.02621649019420147, 0.028093555942177773, -0.021990656852722168, -0.008531580679118633,
- -0.021197302266955376, 0.0017215665429830551, 0.0009074411354959011,
- 0.03812063857913017, -0.009858740493655205, 0.02117173746228218, 0.04150646552443504,
- 0.053543820977211, 0.0308567862957716, 0.020337047055363655, 0.08829668164253235,
- 0.01611104980111122, 0.023848872631788254, 0.036963921040296555, 0.028346708044409752,
- 0.07382605969905853, 0.03224914148449898, 0.022965122014284134, 0.1238347664475441,
- 0.03298259526491165, 0.10086700320243835, 0.09893381595611572, -0.02769637107849121,
- 0.08150945603847504, 0.0722578838467598, -0.011660835705697536, 0.06484457850456238,
- -0.031254347413778305, -0.06389418244361877, 0.08793871849775314, 0.05328826606273651,
- -0.053840674459934235, 0.09029500186443329, 0.02260022610425949, 0.1159108579158783,
- 0.013448556885123253, 0.06062730401754379, 0.06242824345827103, 0.11024689674377441,
- -0.1584005504846573, -0.0673312097787857, 0.008859599940478802, -0.08838226646184921,
- -0.07640526443719864, 0.08512470126152039, 0.09906825423240662, -0.02901388145983219,
- 0.0987405851483345, -0.00778073538094759, 0.057192184031009674, -0.019116276875138283,
- 0.019655436277389526, 0.061290182173252106, -0.02274690568447113, -0.008118519559502602,
- 0.04637159779667854, 0.010616307146847248, 0.10442815721035004, 0.054617177695035934,
- -0.028777360916137695, -0.09268444776535034, -0.08447081595659256, 0.06709372997283936,
- -0.030818946659564972, -0.0484696626663208, 0.001016085036098957, -0.0675717145204544,
- 0.014448689296841621, -0.15360409021377563, 0.08670911192893982, 0.08987679332494736,
- -0.058286555111408234, 0.004904169123619795, -0.02614709362387657, 0.0750465914607048,
- -0.0060993763618171215, 0.020521298050880432, -0.084903284907341, 0.004666340071707964,
- -0.007717540021985769, 0.06281058490276337, -0.04419428110122681, 0.08715127408504486,
- 0.05344749614596367, -0.07195793092250824, 0.023456953465938568, 0.07465742528438568,
- -0.059126026928424835, -0.029398418962955475, 0.05619825795292854, 0.018116014078259468,
- -0.0977170467376709, -0.0018813165370374918, -0.012637147679924965,
- -0.03891928493976593, -0.005210393574088812, -0.07481003552675247, -0.00917012244462967,
- 0.017473850399255753, -0.07988912612199783, -0.0025221584364771843, 0.03325004130601883,
- 0.014066443778574467, 0.08554983139038086, -0.0018832888454198837, 0.040117695927619934,
- -0.0520845428109169, -0.032321151345968246, 0.06092362850904465, 0.046451881527900696,
- 0.04640119522809982, -0.029845740646123886, -0.02065357193350792, -0.05969215929508209,
- -0.08496901392936707, 0.0015861352439969778, 0.11974838376045227, 0.05293324589729309,
- 0.04365819692611694, 0.03238817676901817, -0.053185783326625824, -0.04881647974252701,
- 0.07630683481693268, 0.05844615399837494, 0.02496056631207466, 0.039207689464092255,
- -0.035825274884700775, -0.030656632035970688, 0.09267532825469971, -0.02808620221912861,
- -0.005604736041277647, 0.02235378697514534, -0.04616241902112961, 0.09308862686157227,
- 0.071997731924057, 0.05351163446903229, 0.037744875997304916, 0.007655841298401356,
- 0.018014565110206604, 0.007760769687592983, 0.004487456288188696, 0.025148101150989532,
- -0.04462498053908348, -0.07768416404724121, -0.06558404862880707, 0.03425859659910202,
- 0.07923893630504608, 0.013910133391618729, -0.12416362762451172, -0.042528122663497925,
- -0.027753790840506554
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 156,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 199,
- "similarity": 0.9983131885528564
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 163,
- "similarity": 0.9982458353042603
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 220,
- "similarity": 0.9980475902557373
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["C. A. Goldberg PLLC"],
- "epoch_date_downloaded": 1666310400,
- "epoch_date_modified": 1667347200,
- "epoch_date_submitted": 1666310400,
- "flag": null,
- "report_number": 2197,
- "source_domain": "cdn.arstechnica.net",
- "submitters": ["Anonymous"],
- "title": "Complaint For Civil Penalties and Demand for a Jury Trial",
- "url": "https://cdn.arstechnica.net/wp-content/uploads/2022/10/McCarthy-et-al-v-Amazon-Complaint.pdf"
- },
- {
- "__typename": "Report",
- "authors": ["Megan Twohey", "Gabriel J.X. Dance"],
- "epoch_date_downloaded": 1643932800,
- "epoch_date_modified": 1644019200,
- "epoch_date_submitted": 1644019200,
- "flag": null,
- "report_number": 1515,
- "source_domain": "nytimes.com",
- "submitters": ["Andrew Hundt"],
- "title": "Amazon's algorithm suggests products for suicide attempts",
- "url": "https://www.nytimes.com/2022/02/04/technology/amazon-suicide-poison-preservative.html"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "amazon",
- "name": "Amazon"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "amazon",
- "name": "Amazon"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "ans-rana",
- "name": "Ans Rana"
- },
- {
- "__typename": "Entity",
- "entity_id": "amazon-workers",
- "name": "Amazon workers"
- },
- {
- "__typename": "Entity",
- "entity_id": "amazon-delivery-drivers",
- "name": "Amazon delivery drivers"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1516],
- "vector": [
- -0.09042345732450485, 0.09236475825309753, 0.0059444839134812355, -0.059828486293554306,
- 0.03493252396583557, -0.01671564392745495, -0.020993148908019066, 0.04110566899180412,
- 0.10174451768398285, -0.15972448885440826, 0.007306958548724651, 0.08169493079185486,
- 0.028325188905000687, -0.07430560141801834, 0.031129319220781326, -0.07118351757526398,
- -0.08035461604595184, -0.02600226178765297, -0.014256380498409271, -0.15584112703800201,
- -0.04935668781399727, -0.005305612459778786, 0.1040964350104332, 0.14957864582538605,
- -0.06808554381132126, 0.029856950044631958, 0.11624370515346527, 0.08829542994499207,
- -0.024515945464372635, 0.06741350889205933, -0.03418687731027603, -0.07321283221244812,
- 0.11276644468307495, 0.030464258044958115, -0.03088701143860817, 0.07156968116760254,
- -0.02562391385436058, -0.018436888232827187, 0.0036245090886950493,
- -0.03474264591932297, 0.04377821460366249, 0.30036619305610657, 0.013897561468183994,
- -0.046450499445199966, 0.04985987767577171, -0.05670178681612015, 0.011926067061722279,
- 0.0743008404970169, -0.002713959664106369, 0.01598690077662468, -0.01880096271634102,
- 0.05553156137466431, -0.03875458613038063, 0.044678255915641785, -0.11561886966228485,
- 0.06285546720027924, 0.04822561517357826, 0.0028484442736953497, 0.06181792542338371,
- -0.08570349961519241, -0.025635750964283943, -0.2761627435684204, -0.0436849370598793,
- -0.10889142006635666, 0.09640266746282578, -0.049869123846292496, -0.026265181601047516,
- 0.021258696913719177, 0.01334418635815382, 0.06713349372148514, 0.04929352179169655,
- -0.037550266832113266, -0.008215656504034996, 0.007084181997925043,
- 0.012668300420045853, -0.036714185029268265, 0.0018365217838436365, 0.24452130496501923,
- -0.13682276010513306, 0.005958050489425659, 0.14546291530132294, -0.11773361265659332,
- 0.5369006395339966, -0.00930913258343935, -0.05181537941098213, -0.03366859629750252,
- 0.10093165189027786, 0.011641065590083599, 0.05030833184719086, 0.08503813296556473,
- -0.0634622573852539, 0.00724578183144331, -0.049525368958711624, 0.026346733793616295,
- 0.08066245913505554, 0.023167923092842102, -0.01987777091562748, 0.11607068032026291,
- 0.002657828386873007, -0.09214267134666443, 0.0272683035582304, -0.028867067769169807,
- 0.1133439689874649, 0.09242384135723114, -0.05917125567793846, -0.032960444688797,
- 0.10685694962739944, -0.048820775002241135, 0.05315057933330536, -0.06195378676056862,
- 0.029483642429113388, -0.03592459857463837, 0.04442178085446358, -0.02098403498530388,
- 0.04444456472992897, -0.10037858039140701, 0.018970858305692673, 0.022105341777205467,
- 0.10065817087888718, 0.00010180134268011898, -0.03784794360399246, 0.03249684348702431,
- 0.07169528305530548, -0.05611009895801544, -0.03989296406507492, -0.044964492321014404,
- -0.0710272416472435, -0.04350435733795166, -0.0539209209382534, 0.03935157135128975,
- -0.02176501601934433, -0.1855558156967163, 0.015278198756277561, 0.13465727865695953,
- -0.021921053528785706, -0.04490792006254196, -0.02241923287510872, -0.0767369419336319,
- 0.0477471798658371, -0.02096637524664402, -0.04854491353034973, 0.04511971399188042,
- 0.05397714674472809, 0.044182997196912766, 0.10711905360221863, 0.026915250346064568,
- -0.0462968684732914, -0.03264816105365753, 0.005035098642110825, -0.005664783995598555,
- 0.08755086362361908, -0.15179362893104553, -0.03803885355591774, 0.01784895546734333,
- 0.004002036526799202, 0.6885173320770264, 0.11708114296197891, 0.1972532719373703,
- -0.0028880040626972914, 0.001470525050535798, 0.2107817530632019, 0.015538794919848442,
- 0.07082129269838333, -0.10061343759298325, -0.07033303380012512, 0.03178400173783302,
- -0.0983501672744751, -0.04901339113712311, 0.05389512702822685, 0.029739655554294586,
- 0.15228837728500366, 0.04715126380324364, 0.11716645956039429, 0.0046446300111711025,
- -0.12015143781900406, -0.026593374088406563, 0.0820690244436264, -0.012386525981128216,
- -0.10610437393188477, -0.05307156592607498, 0.050276413559913635, 0.09080226719379425,
- -0.08867192268371582, -0.03310959413647652, -0.07837210595607758, 0.03279667720198631,
- -0.02188888005912304, 0.01829252764582634, -0.02551470696926117, 0.06942638009786606,
- 0.06336471438407898, 0.11745762825012207, 0.008505365811288357, -0.15868456661701202,
- -0.04011869430541992, 0.12209951877593994, -0.008096540346741676, -0.03551425039768219,
- 0.06706031411886215, -0.09288696199655533, 0.06808054447174072, 0.03435057774186134,
- 0.1312163770198822, -0.1262056678533554, 0.02058691531419754, -0.014654584228992462,
- -0.01664055325090885, 0.10105331242084503, 0.004578040912747383, -0.08980084955692291,
- -0.05851086974143982, 0.0730540081858635, 0.03677580505609512, 0.06267965584993362,
- 0.09017164260149002, -0.035902731120586395, 0.02563195303082466, 0.07979761809110641,
- 0.0196096021682024, -0.00675518112257123, 0.0613490529358387, 0.0736788958311081,
- -0.02387508749961853, -0.055356916040182114, 0.03912205249071121, 0.01007692702114582,
- 0.05104374513030052, 0.032239269465208054, 0.05018267780542374, 0.013596799224615097,
- -0.07779800146818161, -0.014144273474812508, 0.05257969722151756, 0.005838071461766958,
- 0.09880023449659348, -0.05757131800055504, -0.015805313363671303, -0.037658024579286575,
- -0.02061343565583229, 0.0272088423371315, -0.017231810837984085, 0.09019040316343307,
- 0.08761231601238251, 0.06787516921758652, 0.029428187757730484, 0.03659255430102348,
- 0.07722777873277664, 0.044705845415592194, -0.01383248157799244, 0.09724492579698563,
- -0.023829897865653038, -0.08381667733192444, -0.05157046392560005, 0.02829432673752308,
- 0.05500763654708862, 0.06242688000202179, -0.07275670021772385, -0.04637835547327995,
- -0.07147019356489182, -0.05320507660508156, -0.07322342693805695, -0.04924885556101799,
- -0.012720711529254913, 0.05204818397760391, -0.07110707461833954, -0.052311573177576065,
- -0.09205281734466553, 0.026448968797922134, 0.06975043565034866, -0.014161941595375538,
- -0.07697822898626328, -0.15059350430965424, -0.029545016586780548,
- -0.053872425109148026, 0.06641915440559387, 0.00033695585443638265,
- 0.0016153280157595873, -0.019796067848801613, -0.05434315651655197,
- -0.000694599119015038, -0.01478682179003954, 0.007636307273060083, -0.08231520652770996,
- -0.0661359652876854, -0.02313239872455597, -0.016368938609957695, 0.04806055873632431,
- -0.04835109785199165, 0.026103265583515167, 0.026027189567685127, 0.03370457887649536,
- -0.00006423490412998945, -0.04974506422877312, 0.06546271592378616,
- -0.03187329322099686, -0.020382080227136612, 0.08518251031637192, 0.007670767139643431,
- 0.023130465298891068, 0.0027380497194826603, -0.012995127588510513,
- -0.061212215572595596, 0.03869501128792763, -0.04585152864456177, 0.02103465050458908,
- -0.0013069414999336004, 0.02814643085002899, -0.02071765623986721,
- 0.0005007333820685744, 0.07390879094600677, -0.07244519144296646, -0.08246488124132156,
- -0.08267057687044144, 0.1284194439649582, -0.004106151405721903, -0.0232553593814373,
- 0.012913712300360203, -0.034470099955797195, 0.05516257509589195, -0.008477813564240932,
- 0.015859540551900864, 0.0049896021373569965, 0.050357189029455185,
- -0.015129164792597294, 0.008229538798332214, 0.078868567943573, -0.014077583327889442,
- 0.03234131261706352, 0.0988844782114029, 0.411766916513443, -0.15348096191883087,
- 0.1098594218492508, 0.10825759172439575, 0.07650447636842728, 0.0533907376229763,
- -0.021210206672549248, 0.0857032984495163, 0.08168408274650574, 0.0881575271487236,
- 0.13166317343711853, -0.012772761285305023, -0.04450119286775589, -0.08127648383378983,
- 0.11665745079517365, 0.0016983586829155684, 0.06468713283538818, -0.020209386944770813,
- -0.08666824549436569, -0.013877494260668755, 0.04360185191035271, -0.09309598803520203,
- -0.02538888156414032, 0.006684562191367149, -0.05886559560894966, 0.01087243016809225,
- -0.012090920470654964, 0.0025008227676153183, -0.01208075787872076,
- -0.001749532064422965, -0.0624598003923893, 0.11421731859445572, -0.01957389898598194,
- 0.034965574741363525, -0.14194536209106445, 0.04004073515534401, -0.07698306441307068,
- -0.134743332862854, 0.13849808275699615, -0.012453564442694187, 0.05987042188644409,
- 0.035872455686330795, -0.03468991816043854, 0.04105307534337044, -0.01755739562213421,
- -0.0711064413189888, 0.03176352009177208, 0.054079700261354446, 0.03253829851746559,
- 0.04478739947080612, 0.12570703029632568, -0.06296998262405396, -0.0581192821264267,
- -0.10397951304912567, 0.07781793177127838, 0.12858663499355316, -0.024405812844634056,
- -0.0016456689918413758, -0.0004889644333161414, -0.016010258346796036,
- -0.0153806796297431, -0.1197855994105339, -0.05962443724274635, -0.004726808052510023,
- -0.05118637531995773, 0.06215234100818634, -0.028818324208259583, -0.007770344614982605,
- -0.14480310678482056, -0.02203555777668953, -0.06451220065355301, 0.015843747183680534,
- 0.13822609186172485, -0.018203556537628174, -0.0006171020795591176,
- 0.022940803319215775, -0.015601539984345436, 0.027202550321817398, -0.1175718754529953,
- 0.005319031421095133, -0.029794655740261078, 0.028805015608668327, 0.04333154112100601,
- 0.000951548689045012, -0.050525736063718796, 0.07065451145172119, -0.11240865290164948,
- 0.10728371143341064, 0.05248713493347168, 0.012582131661474705, 0.06935621052980423,
- -0.045165084302425385, 0.03908941149711609, 0.05874693766236305, -0.0532708615064621,
- 0.03877779096364975, -0.04705864563584328, -0.043704595416784286, -0.10839677602052689,
- -0.06732764840126038, -0.045665960758924484, -0.09020181000232697, 0.04646069556474686,
- -0.06657382845878601, -0.021663833409547806, -0.04851961508393288,
- -0.005563891027122736, 0.022468069568276405, 0.05737040936946869, 0.029161250218749046,
- -0.17186668515205383, 0.05356117710471153, -0.02787942811846733, 0.08787500113248825,
- -0.030699685215950012, -0.06521450728178024, 0.02886096201837063, 0.07335534691810608,
- 0.07115859538316727, 0.030891401693224907, -0.008729804307222366, -0.05824625864624977,
- 0.024252308532595634, -0.1005392074584961, -0.4145742356777191, 0.0627719908952713,
- -0.030449548736214638, 0.049820542335510254, -0.004323451779782772,
- -0.022966163232922554, 0.06989244371652603, 0.0013228300958871841, -0.06183575093746185,
- 0.0968584418296814, -0.05473320558667183, 0.029918361455202103, -0.002940285485237837,
- -0.06692592799663544, -0.053691789507865906, -0.04418278485536575, -0.06999696791172028,
- 0.0389128141105175, -0.058821436017751694, -0.09243762493133545, -0.1360252946615219,
- 0.05187811329960823, 0.015283321961760521, 0.04573812708258629, -0.014860684052109718,
- 0.04145101085305214, -0.05525024235248566, -0.054280802607536316, 0.05160127952694893,
- 0.0345003604888916, 0.0426003634929657, -0.07252274453639984, -0.008190181106328964,
- 0.0751250609755516, -0.037156734615564346, 0.17985248565673828, 0.006130262743681669,
- 0.0390070378780365, -0.13269996643066406, 0.10128448158502579, 0.05264679715037346,
- 0.18558451533317566, -0.03193973749876022, 0.0372934527695179, 0.012565335258841515,
- 0.1603809893131256, 0.0526634082198143, 0.049022119492292404, -0.034058332443237305,
- -0.014328787103295326, -0.004217322915792465, 0.01753942109644413, 0.08670683205127716,
- -0.08200003206729889, -0.0361192487180233, -0.0521472804248333, -0.05435939133167267,
- 0.0032880729995667934, -0.027083566412329674, 0.16212110221385956, 0.027384396642446518,
- 0.010023251175880432, -0.033572614192962646, -0.08295509219169617,
- -0.018549641594290733, -0.07274965941905975, -0.12123794853687286,
- -0.012484061531722546, -0.027391215786337852, 0.027982542291283607,
- -0.06060037016868591, -0.1436970978975296, -0.002737565664574504, -0.025571972131729126,
- 0.004667987581342459, 0.12695325911045074, -0.016718363389372826, 0.04212629795074463,
- -0.005905888043344021, 0.11799951642751694, 0.058317653834819794, -0.006042102351784706,
- 0.04817132651805878, 0.09111890941858292, -0.013985523022711277, 0.026631709188222885,
- -0.03414561599493027, -0.061091065406799316, -0.005553788039833307, 0.1565699726343155,
- -0.05026640743017197, 0.08635025471448898, 0.04653766378760338, -0.05443617329001427,
- -0.07754092663526535, 0.0440613254904747, -0.00682793278247118, 0.04811776801943779,
- -0.4538365602493286, -0.011822829023003578, 0.1286727488040924, 0.016211645677685738,
- 0.06883763521909714, 0.10778385400772095, 0.06281860172748566, -0.0383257158100605,
- -0.0836646780371666, -0.07133378833532333, 0.09849920123815536, -0.02640852890908718,
- 0.05901852622628212, -0.07381465286016464, 0.04230033606290817, 0.06300234794616699,
- -0.021879607811570168, -0.013795129023492336, 0.08147399127483368, -0.23117074370384216,
- -0.004678749013692141, -0.04370772838592529, 0.17540603876113892, 0.025239940732717514,
- 0.004710206761956215, 0.05251028761267662, -0.03552176430821419, 0.025441577658057213,
- 0.059202734380960464, -0.012284220196306705, 0.05498163402080536, -0.005625488702207804,
- -0.026037566363811493, 0.13854102790355682, 0.04635530710220337, 0.08491352945566177,
- -0.03637813404202461, 11.975519180297852, 0.05053913593292236, 0.06641260534524918,
- -0.08178341388702393, 0.07849381864070892, -0.07062384486198425, 0.020483864471316338,
- -0.11581921577453613, 0.045334137976169586, 0.12515783309936523, -0.03952533006668091,
- -0.05974432826042175, -0.03507906198501587, -0.09019090235233307, 0.022064052522182465,
- -0.0813160091638565, -0.09696483612060547, -0.03517693653702736, 0.03921036422252655,
- -0.06405919045209885, 0.00541007099673152, -0.0163270253688097, 0.05479230731725693,
- -0.013513999059796333, -0.05629251152276993, 0.0623052679002285, 0.03984838351607323,
- -0.005901779513806105, -0.009712399914860725, 0.007916880771517754,
- -0.04790104553103447, 0.016052305698394775, 0.03243891894817352, 0.008625567890703678,
- -0.010508934035897255, 0.07518027722835541, 0.062140271067619324, 0.08735202252864838,
- 0.015932023525238037, 0.10604225099086761, 0.04352211952209473, 0.05633878335356712,
- 0.07746917754411697, 0.04811989143490791, 0.04074053466320038, 0.015180420130491257,
- 0.04003097489476204, 0.08817988634109497, -0.017171751707792282, 0.055025629699230194,
- 0.11549997329711914, -0.037781573832035065, 0.13788847625255585, 0.013147544115781784,
- -0.024876398965716362, 0.03975146263837814, 0.014547192491590977, -0.05748174712061882,
- 0.10958929359912872, 0.11486902832984924, -0.07575016468763351, 0.0945730209350586,
- 0.014112252742052078, 0.04668217897415161, -0.006376022472977638, 0.02744082175195217,
- 0.0572560615837574, 0.05050840601325035, -0.15834490954875946, -0.09861015528440475,
- 0.06841272860765457, -0.10181639343500137, -0.09832890331745148, 0.09484099596738815,
- 0.13526707887649536, -0.048085447400808334, 0.062266845256090164, -0.0507994145154953,
- 0.012313357554376125, -0.07304022461175919, -0.018198585137724876, 0.031532078981399536,
- 0.03532303124666214, -0.012100892141461372, 0.054274339228868484, 0.021128134801983833,
- 0.08664293587207794, 0.08184947818517685, -0.0466783232986927, -0.08318953961133957,
- -0.07972006499767303, 0.1232372596859932, -0.019331639632582664, -0.06320584565401077,
- 0.024933043867349625, -0.06780675053596497, 0.04023291915655136, -0.13116183876991272,
- 0.08177149295806885, 0.08642970770597458, -0.09207206964492798, 0.0014429597649723291,
- -0.048030249774456024, 0.05325500667095184, -0.006857989821583033, 0.03355025872588158,
- -0.04743019863963127, 0.03646653890609741, -0.019070345908403397, 0.04016151279211044,
- -0.04015501216053963, 0.08827129006385803, 0.11034649610519409, -0.10342595726251602,
- 0.0779358372092247, 0.09583321958780289, -0.03161691129207611, -0.049297429621219635,
- 0.08771270513534546, 0.05971668288111687, -0.07739067822694778, -0.07325848191976547,
- -0.02968631312251091, -0.05770634487271309, -0.05100373923778534, -0.06274908035993576,
- 0.026147257536649704, 0.06736791133880615, -0.07519545406103134, -0.036205679178237915,
- 0.04832012206315994, 0.029602209106087685, 0.08647386729717255, 0.0022675946820527315,
- 0.05379991605877876, -0.11146106570959091, -0.04859844967722893, 0.0388028621673584,
- -0.0019292362267151475, 0.07184202969074249, 0.011826653964817524,
- -0.0032733131665736437, -0.0686798170208931, -0.10959353297948837, 0.007917389273643494,
- 0.12316794693470001, 0.04170084744691849, 0.06117045879364014, 0.030446885153651237,
- -0.04990709573030472, -0.06932532042264938, 0.11142004281282425, 0.060629747807979584,
- 0.05240461230278015, 0.04269367828965187, -0.07520461827516556, -0.012333592399954796,
- 0.13066330552101135, -0.04992308467626572, -0.028080955147743225, 0.06736040115356445,
- 0.0032845439855009317, 0.08817582577466965, 0.08918651938438416, 0.10407240688800812,
- 0.08694048970937729, 0.04385606199502945, -0.04784073308110237, 0.006528339348733425,
- -0.025419246405363083, 0.02425841987133026, 0.00483586685732007, -0.0952807068824768,
- -0.07257560640573502, -0.006151135079562664, 0.09431061893701553, 0.03215806931257248,
- -0.10276723653078079, -0.01541045680642128, -0.07118043303489685
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 157,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 20,
- "similarity": 0.9985336661338806
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 8,
- "similarity": 0.9984940886497498
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 67,
- "similarity": 0.9983901977539062
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Tim De Chant"],
- "epoch_date_downloaded": 1644105600,
- "epoch_date_modified": 1644105600,
- "epoch_date_submitted": 1644105600,
- "flag": null,
- "report_number": 1516,
- "source_domain": "arstechnica.com",
- "submitters": ["Anonymous"],
- "title": "Amazon liable for crash because software “micromanages” delivery drivers, victim says",
- "url": "https://arstechnica.com/tech-policy/2021/11/amazon-liable-for-crash-because-software-micromanages-delivery-drivers-victim-says/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "unknown",
- "name": "Unknown"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "unknown",
- "name": "Unknown"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "black-test-takers",
- "name": "Black test-takers"
- },
- {
- "__typename": "Entity",
- "entity_id": "black-students",
- "name": "Black students"
- },
- {
- "__typename": "Entity",
- "entity_id": "amaya-ross",
- "name": "Amaya Ross"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1517],
- "vector": [
- -0.06232874467968941, 0.08253626525402069, 0.006071165669709444, -0.1410837173461914,
- 0.08710119873285294, -0.07002134621143341, -0.016627304255962372, 0.07953091710805893,
- 0.07935859262943268, -0.11574582755565643, 0.033381137996912, 0.048225175589323044,
- 0.02596551552414894, -0.060169290751218796, 0.04533587768673897, -0.08728611469268799,
- -0.1373630166053772, 0.007550730369985104, -0.012196149677038193, -0.08795639872550964,
- -0.08889148384332657, 0.0523432195186615, -0.035528816282749176, 0.13887237012386322,
- -0.05794093757867813, 0.04488228261470795, 0.09244446456432343, 0.060807790607213974,
- -0.022735999897122383, 0.006289477460086346, -0.04222995415329933, -0.08437483012676239,
- 0.059447020292282104, -0.0016974633326753974, -0.026200486347079277,
- 0.08047934621572495, 0.07361780852079391, -0.025084681808948517, -0.025002334266901016,
- 0.017283445224165916, 0.02892260253429413, 0.21386420726776123, -0.0194108746945858,
- -0.017280085012316704, 0.057217806577682495, -0.0003550407418515533,
- -0.016708096489310265, 0.030640730634331703, 0.01207803376019001, 0.0002224333002232015,
- 0.008643385022878647, 0.014299435541033745, -0.04653352499008179, -0.019105596467852592,
- -0.11867283284664154, 0.07962245494127274, 0.008045190013945103, 0.04442018270492554,
- 0.01339271292090416, -0.04928316920995712, -0.030461972579360008, -0.16153964400291443,
- -0.03562254458665848, -0.04113617539405823, 0.06411317735910416, -0.031009364873170853,
- -0.03276631236076355, 0.028112130239605904, -0.011910910718142986, 0.08128823339939117,
- 0.08210335671901703, -0.00860422570258379, -0.03278413414955139, -0.009094398468732834,
- 0.012188190594315529, 0.007662064861506224, -0.008544542826712132, 0.26705992221832275,
- -0.07116884738206863, 0.030285848304629326, 0.07261715829372406, -0.10053573548793793,
- 0.31334203481674194, -0.022848347201943398, 0.0210651196539402, -0.011726785451173782,
- 0.07913172245025635, 0.04586644098162651, 0.03440159186720848, 0.025862334296107292,
- 0.035946011543273926, 0.059139661490917206, -0.0629400759935379, 0.018329519778490067,
- 0.03785185143351555, 0.022995706647634506, -0.05846891924738884, -0.13514837622642517,
- -0.009494079276919365, -0.07092158496379852, -0.04682428762316704, -0.04022764787077904,
- 0.08675166964530945, 0.12527529895305634, -0.04976779222488403, -0.01628403179347515,
- 0.09181920439004898, -0.046614643186330795, 0.005032109562307596, -0.06205888092517853,
- 0.041670914739370346, -0.015860971063375473, 0.057742491364479065, 0.008535349741578102,
- -0.02882997877895832, -0.07861880958080292, 0.024506354704499245, 0.03524940833449364,
- 0.07116840779781342, 0.06346462666988373, 0.003957296255975962, 0.05452289804816246,
- 0.09412071853876114, -0.06333227455615997, -0.04539254307746887, -0.01976778917014599,
- -0.06154527887701988, 0.003959011286497116, -0.0094998087733984, 0.03308504447340965,
- -0.04927055165171623, -0.13467572629451752, -0.009791926480829716, 0.06314544379711151,
- -0.03015056997537613, -0.004152676090598106, 0.01932806521654129,
- -0.0015924975741654634, 0.027341023087501526, -0.02068517729640007, -0.0517830029129982,
- 0.05046367272734642, -0.010538392700254917, 0.06610064953565598, 0.11776094138622284,
- 0.05664806813001633, -0.03610688075423241, -0.0041375672444701195, -0.02075459621846676,
- -0.06574183702468872, 0.14496280252933502, -0.12445568293333054, -0.04981421306729317,
- 0.014738931320607662, -0.02862974815070629, 0.5938701033592224, 0.13611367344856262,
- 0.1361505687236786, 0.02675587497651577, -0.0008219293667934835, 0.1560056507587433,
- 0.017457356676459312, 0.015255139209330082, -0.046025652438402176,
- -0.028558718040585518, -0.013250219635665417, -0.09162241220474243,
- -0.020028481259942055, 0.05436704307794571, -0.024876076728105545, 0.07449694722890854,
- -0.008959611877799034, 0.06316233426332474, -0.03978961333632469, -0.13650257885456085,
- -0.04967564344406128, 0.019147805869579315, -0.007439791224896908, -0.1296030730009079,
- -0.012156384065747261, 0.07372535020112991, 0.11104892194271088, -0.1492636352777481,
- 0.04158516973257065, -0.07455793023109436, 0.0825720950961113, -0.01837332546710968,
- 0.05217442288994789, 0.01319124735891819, 0.04397349804639816, 0.053971320390701294,
- -0.014246244914829731, -0.009806168265640736, -0.02945574000477791, 0.03646022826433182,
- 0.064444400370121, -0.048248615115880966, -0.022660134360194206, 0.045229677110910416,
- -0.09250570088624954, 0.00443285284563899, -0.023937148973345757, 0.15124817192554474,
- -0.17747090756893158, 0.10094252973794937, -0.03528826683759689, 0.03593813627958298,
- 0.06175047904253006, -0.00312794023193419, -0.06046616658568382, -0.030012520030140877,
- 0.10519930720329285, 0.014661317691206932, 0.05672366917133331, 0.011026938445866108,
- -0.011229395866394043, 0.049987129867076874, 0.23982025682926178, -0.013240193016827106,
- 0.03419354557991028, 0.050187867134809494, 0.007825257256627083, -0.06758084893226624,
- 0.022067073732614517, 0.05573869124054909, -0.004907090682536364, 0.04091116413474083,
- 0.02714080549776554, 0.00952064897865057, -0.00036291321157477796, -0.03749493509531021,
- 0.002514094579964876, 0.03147757425904274, 0.027606362476944923, 0.028678538277745247,
- -0.04429927468299866, -0.023646047338843346, -0.05234226584434509,
- -0.041922830045223236, 0.049069780856370926, -0.07960227131843567, 0.07373274862766266,
- 0.08325787633657455, -0.0026880083605647087, 0.005373738240450621, 0.010759851895272732,
- 0.02599908597767353, 0.04955637454986572, -0.03433118760585785, 0.08621283620595932,
- -0.04193124175071716, -0.07672438025474548, -0.037100378423929214,
- -0.029049141332507133, -0.013328270986676216, 0.013080730102956295,
- -0.08567217737436295, 0.006508111022412777, -0.00873106624931097, 0.040557876229286194,
- -0.06865241378545761, -0.023120354861021042, -0.023059755563735962,
- -0.019634665921330452, -0.05360230430960655, -0.032764505594968796, -0.0916508361697197,
- 0.00027207116363570094, 0.044266168028116226, -0.07409683614969254, 0.03359382599592209,
- -0.10477448999881744, 0.013053199276328087, -0.01990691013634205, 0.06776070594787598,
- -0.022228332236409187, 0.022153818979859352, 0.02745094522833824, -0.07367599010467529,
- 0.028682459145784378, -0.030574817210435867, -0.09486466646194458, -0.05187814682722092,
- -0.03839061036705971, -0.042159851640462875, -0.03897013142704964, 0.004841955844312906,
- -0.019013650715351105, 0.09129442274570465, 0.06411898881196976, 0.03465177118778229,
- 0.020222846418619156, 0.007067039143294096, 0.04554906114935875, -0.019140120595693588,
- -0.0016728253103792667, 0.06416308134794235, -0.03365523740649223,
- -0.007133581675589085, -0.03912341594696045, -0.06072402000427246, -0.02279598079621792,
- -0.03391549736261368, -0.050524067133665085, -0.039862003177404404,
- -0.00861962791532278, 0.020161662250757217, 0.0002821439993567765,
- -0.030905403196811676, 0.05813518166542053, -0.057426244020462036, -0.06420926004648209,
- -0.10038985311985016, 0.055414583534002304, 0.02383194863796234, 0.03004075400531292,
- 0.035108648240566254, -0.03024144284427166, 0.005274238530546427, 0.04013202711939812,
- 0.01337502896785736, 0.022545285522937775, 0.09192577749490738, -0.036826349794864655,
- -0.00542181171476841, 0.04688660427927971, 0.0035239416174590588, -0.035372521728277206,
- 0.06030186638236046, 0.4139547646045685, -0.24803830683231354, 0.10311709344387054,
- 0.07946018129587173, 0.025494297966361046, 0.07186253368854523, 0.004492448177188635,
- 0.11149425059556961, 0.04191817715764046, 0.11445353925228119, 0.10654664784669876,
- -0.06836459040641785, 0.00022603175602853298, -0.07137805223464966,
- 0.030452290549874306, -0.0005371271981857717, 0.03863964229822159,
- -0.023707624524831772, -0.06412309408187866, -0.02801852859556675, 0.028609871864318848,
- -0.0887794941663742, 0.04095875844359398, -0.03762820363044739, -0.026050860062241554,
- 0.00011316780000925064, -0.017452454194426537, 0.016605021432042122,
- -0.03171120956540108, 0.0493340864777565, -0.05574493855237961, 0.05290957912802696,
- 0.02644253335893154, 0.043625712394714355, -0.12975814938545227, 0.07166847586631775,
- -0.028675204142928123, -0.09188784658908844, 0.0764956921339035, 0.029221568256616592,
- 0.01038224808871746, 0.08039286732673645, -0.01756623201072216, 0.029859043657779694,
- 0.014120906591415405, -0.06139269843697548, 0.01575857773423195, 0.04465256631374359,
- 0.026850702241063118, 0.010754439979791641, 0.1590869128704071, -0.05197757109999657,
- 0.022598130628466606, -0.06676516681909561, 0.08588080108165741, 0.15362638235092163,
- 0.018976854160428047, -0.0020905768033117056, 0.037916235625743866,
- 0.013730010017752647, 0.019841967150568962, -0.0775880441069603, -0.08799757063388824,
- 0.0039117769338190556, -0.016992870718240738, 0.11057935655117035, 0.022489801049232483,
- -0.022949324920773506, -0.13564996421337128, 0.01615813933312893, -0.04255767539143562,
- 0.023776983842253685, 0.10175984352827072, -0.058002084493637085, 0.028286026790738106,
- -0.040221087634563446, -0.007240839768201113, -0.024449767544865608,
- -0.06409253925085068, -0.021517109125852585, -0.06701327115297318, 0.015963226556777954,
- 0.046617262065410614, 0.024624885991215706, -0.022418487817049026, 0.08182471990585327,
- -0.0633523017168045, 0.020050043240189552, 0.022939829155802727, -0.025440679863095284,
- 0.006090239156037569, -0.03913109749555588, 0.07701663672924042, 0.017327038571238518,
- -0.029904978349804878, -0.022533435374498367, 0.01799514703452587, 0.04494474083185196,
- -0.07378829270601273, -0.06982987374067307, -0.038079239428043365, -0.07901332527399063,
- 0.01954909786581993, -0.058765992522239685, -0.025575777515769005,
- -0.051546283066272736, -0.016167089343070984, 0.008993071503937244,
- 0.015227789990603924, -0.027987239882349968, -0.13993409276008606, 0.034061260521411896,
- -0.024430764839053154, 0.042989667505025864, 0.012683152221143246,
- -0.055187299847602844, 0.05365387722849846, 0.04950881749391556, 0.03049257956445217,
- -0.02840409055352211, -0.013625930063426495, -0.05585933104157448, 0.0593472495675087,
- -0.09628675878047943, -0.30718889832496643, 0.031992170959711075, -0.03444829210639,
- 0.027804328128695488, 0.015149266459047794, -0.06376946717500687, 0.04556802287697792,
- -0.002900228602811694, 0.003447168041020632, 0.06045288220047951, -0.031585466116666794,
- 0.02381063811480999, -0.07758143544197083, -0.09743007272481918, 0.0031896536238491535,
- -0.06810146570205688, -0.006941352970898151, 0.0489814467728138, -0.016544649377465248,
- -0.02208714745938778, -0.06883984804153442, -0.02913450077176094, -0.05767862871289253,
- 0.07631129771471024, 0.024966107681393623, -0.01899810880422592, -0.009965803474187851,
- -0.027119634672999382, 0.06118288263678551, 0.04247475787997246, 0.00967811606824398,
- -0.08041610568761826, 0.04439159110188484, 0.03873150423169136, 0.0854962095618248,
- 0.08919499814510345, 0.00966915674507618, -0.08443935960531235, -0.057277046144008636,
- 0.07751233130693436, 0.08017414808273315, 0.1858326643705368, -0.004474892746657133,
- -0.024064047262072563, 0.01502606924623251, 0.08672018349170685, 0.029423577710986137,
- 0.02501618303358555, -0.03283002972602844, -0.042332086712121964, 0.029798563569784164,
- 0.04821480065584183, 0.0929691419005394, -0.08876709640026093, 0.0108210239559412,
- -0.040563423186540604, 0.03659921512007713, 0.0068132602609694, 0.003175609977915883,
- 0.1964465230703354, -0.004133217968046665, 0.02232358790934086, 0.018531255424022675,
- -0.06106666848063469, 0.02616037428379059, -0.06437737494707108, -0.09735263884067535,
- 0.029339564964175224, -0.01225164532661438, -0.036762580275535583,
- -0.023170379921793938, -0.07539485394954681, 0.0072283316403627396,
- 0.026839368045330048, 0.007843038067221642, 0.07405632734298706, -0.03113006427884102,
- 0.05196581780910492, -0.06614384800195694, 0.11661862581968307, 0.027511730790138245,
- -0.004094453528523445, 0.0632433220744133, 0.11237780004739761, 0.004284542519599199,
- 0.012110363692045212, 0.011044647544622421, -0.03386898338794708, -0.01715848594903946,
- 0.10728929936885834, -0.007736128754913807, 0.08761365711688995, 0.09091117233037949,
- -0.04808499664068222, -0.05172209069132805, 0.029981667175889015, -0.008949884213507175,
- -0.0012727557914331555, -0.4244248569011688, -0.0240506362169981, 0.10835380852222443,
- 0.03447399288415909, 0.03528066724538803, 0.05244331806898117, -0.019312024116516113,
- -0.060570765286684036, -0.0017818708438426256, -0.06446079909801483, 0.1264026165008545,
- -0.020427852869033813, 0.09744789451360703, -0.02065134607255459, 0.04418407008051872,
- 0.0902470275759697, -0.08792882412672043, -0.01312396302819252, 0.05581347271800041,
- -0.20873038470745087, 0.0010526280384510756, -0.02564898505806923, 0.12901607155799866,
- 0.049432385712862015, 0.047696903347969055, 0.06479170173406601, -0.055594708770513535,
- 0.011000948026776314, 0.14206229150295258, -0.05119911953806877, 0.09238317608833313,
- 0.04295852780342102, -0.003782134735956788, 0.059858448803424835, 0.11002323031425476,
- 0.03673980385065079, -0.023077622056007385, 12.046928405761719, 0.015551658347249031,
- 0.013808817602694035, -0.050472430884838104, -0.01631271094083786, -0.09179071336984634,
- 0.0032317028380930424, -0.14271800220012665, 0.04066326841711998, 0.10068760812282562,
- 0.00895733293145895, -0.04542218893766403, -0.030008718371391296, -0.07603849470615387,
- 0.028181247413158417, -0.009772252291440964, -0.09201519191265106, -0.05038954317569733,
- 0.06907015293836594, -0.030797047540545464, 0.014079006388783455, 0.032097578048706055,
- 0.05230769142508507, -0.017574196681380272, -0.04105794057250023, -0.029317481443285942,
- 0.024833781644701958, -0.05749819800257683, -0.001812352449633181, 0.04580577090382576,
- -0.03018626943230629, 0.04821464791893959, 0.038869261741638184, -0.034521374851465225,
- 0.07902372628450394, 0.007780564017593861, 0.09284500777721405, 0.053795382380485535,
- -0.004404345527291298, 0.14443494379520416, 0.03550989180803299, 0.014684025198221207,
- 0.0678883045911789, 0.04212692007422447, 0.12964214384555817, 0.019082538783550262,
- 0.01631641574203968, 0.15520954132080078, 0.04019855335354805, 0.03727823123335838,
- 0.11080014705657959, -0.021250512450933456, 0.08419916778802872, -0.0594622865319252,
- -0.01633702777326107, 0.04590020328760147, 0.0590781606733799, -0.08288157731294632,
- 0.03226626291871071, 0.0535222552716732, -0.08815184980630875, 0.1123373806476593,
- 0.031213965266942978, 0.09059859067201614, 0.012768436223268509, 0.04915972799062729,
- 0.05933038890361786, 0.1384706348180771, -0.14750638604164124, -0.048599157482385635,
- 0.010968683287501335, -0.09710511565208435, -0.07625530660152435, 0.06336192786693573,
- 0.05702925845980644, -0.03878474980592728, 0.08382269740104675, 0.0006514154374599457,
- 0.020113978534936905, 0.008352752774953842, -0.00039910466875880957,
- 0.058817096054553986, -0.058770786970853806, 0.010366545990109444, 0.03500181809067726,
- 0.025188608095049858, 0.04980279505252838, 0.08815346658229828, 0.02268119715154171,
- -0.06653224676847458, -0.06942185014486313, 0.06929798424243927, -0.030651861801743507,
- -0.07227828353643417, 0.0707579106092453, -0.05104859173297882, 0.05039551109075546,
- -0.13647831976413727, 0.08174963295459747, 0.09414248913526535, -0.1253858059644699,
- -0.0010166644351556897, -0.03303959220647812, 0.10434213280677795,
- -0.008503248915076256, 0.016417767852544785, -0.10686085373163223, 0.003779819468036294,
- 0.03380851075053215, 0.05108235776424408, -0.045748427510261536, 0.0608588270843029,
- 0.04732754826545715, -0.04217482730746269, 0.02105545811355114, 0.08215360343456268,
- 0.009748297743499279, -0.016489965841174126, 0.015458032488822937, 0.07693899422883987,
- -0.09507090598344803, -0.04812322556972504, -0.04166502505540848, -0.008195942267775536,
- -0.0026505510322749615, -0.05562213435769081, 0.014989158138632774, 0.03141430765390396,
- -0.05362842604517937, -0.025211717933416367, 0.03629949316382408, 0.07196683436632156,
- 0.05032946541905403, -0.022350482642650604, 0.1178133487701416, 0.012152100913226604,
- -0.0749184638261795, 0.02071470580995083, 0.030621856451034546, 0.07186252623796463,
- -0.03201329708099365, -0.04594371095299721, -0.06039150431752205, -0.13214311003684998,
- -0.04096890985965729, 0.06945295631885529, 0.045401912182569504, 0.06296151131391525,
- 0.025354156270623207, -0.08768164366483688, -0.023226650431752205, 0.08510586619377136,
- 0.002894688630476594, -0.012905869632959366, 0.06071452796459198, -0.03903523087501526,
- -0.01872839778661728, 0.09074351191520691, -0.022036008536815643,
- -0.0028256780933588743, 0.04985843971371651, -0.06869545578956604, 0.07573709636926651,
- 0.1313799023628235, -0.03546809405088425, 0.02283141389489174, 0.004462501034140587,
- 0.036028698086738586, 0.060512349009513855, -0.049748025834560394, 0.04772904887795448,
- -0.016826242208480835, -0.06439462304115295, -0.05628204345703125,
- -0.0020391768775880337, 0.11633186787366867, 0.12616077065467834, -0.06540018320083618,
- -0.03535410016775131, -0.05495661124587059
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 158,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 43,
- "similarity": 0.997712254524231
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 53,
- "similarity": 0.9975107312202454
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 19,
- "similarity": 0.9974251985549927
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": [
- "Amaya Ross",
- "Janice Wyatt-Ross",
- "Xavier Harding",
- "Polyester Studio",
- "Jeff Moberg",
- "Mozilla"
- ],
- "epoch_date_downloaded": 1644710400,
- "epoch_date_modified": 1644796800,
- "epoch_date_submitted": 1644796800,
- "flag": null,
- "report_number": 1517,
- "source_domain": "polyesterstudio.com",
- "submitters": ["Anonymous"],
- "title": "Amaya's Flashlight",
- "url": "https://polyesterstudio.com/mozilla/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "tesla",
- "name": "Tesla"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "tesla",
- "name": "Tesla"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "tesla-drivers",
- "name": "Tesla drivers"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1519, 1518],
- "vector": [
- -0.07347822934389114, 0.0880226194858551, -0.024891303852200508, -0.0653960257768631,
- 0.08396287262439728, -0.03242732211947441, 0.023765724152326584, 0.051387086510658264,
- 0.06444747745990753, -0.16351261734962463, -0.0013027866370975971, 0.07061836123466492,
- 0.027498699724674225, -0.09695875644683838, 0.05430670827627182, -0.15313398838043213,
- -0.12255055457353592, -0.029733862727880478, -0.04990101605653763, -0.12054923176765442,
- -0.130382239818573, -0.007511972915381193, -0.026050977408885956, 0.0860687717795372,
- -0.06551720947027206, 0.04807927832007408, 0.13266782462596893, 0.06157546490430832,
- -0.11075474321842194, 0.07515466958284378, -0.014235274866223335, -0.06100489944219589,
- 0.1630600392818451, 0.06620943546295166, 0.0603896863758564, 0.10173816233873367,
- 0.022858764976263046, -0.012219162657856941, -0.04221927747130394, -0.03857429325580597,
- 0.010902395471930504, 0.28135156631469727, -0.036911267787218094, -0.05031401664018631,
- 0.031515590846538544, -0.08120350539684296, -0.0035272894892841578,
- 0.016829736530780792, 0.050548404455184937, 0.007858497090637684, 0.0022211000323295593,
- -0.008188947103917599, -0.06439004093408585, 0.05691075697541237, -0.10127731412649155,
- 0.07520432770252228, 0.016138248145580292, 0.0029674828983843327, 0.044661179184913635,
- -0.08449139446020126, -0.04270722717046738, -0.1657273769378662, -0.01959904469549656,
- -0.07245269417762756, 0.11227265000343323, -0.0974297970533371, -0.0159500353038311,
- 0.012886525131762028, 0.04010728746652603, 0.07002468407154083, 0.04283447936177254,
- -0.05026128143072128, -0.06758473068475723, 0.07731011509895325, 0.007739761844277382,
- -0.013120868243277073, -0.048616208136081696, 0.16600364446640015, -0.10827148705720901,
- 0.039436109364032745, 0.06649493426084518, -0.075596883893013, 0.41940391063690186,
- 0.002687572967261076, -0.050554059445858, -0.03224317356944084, 0.09968176484107971,
- 0.03724425658583641, 0.0384644940495491, 0.017722029238939285, -0.045353829860687256,
- 0.012217191979289055, -0.03721044957637787, -0.049852579832077026, 0.09052546322345734,
- 0.035690922290086746, 0.003901728428900242, -0.11408114433288574, 0.008613957092165947,
- -0.04612008482217789, -0.02919975481927395, -0.05390901863574982, 0.12662148475646973,
- 0.09686948359012604, -0.06432552635669708, 0.04695339500904083, 0.050884854048490524,
- -0.02731962874531746, 0.05571577697992325, -0.07781966030597687, 0.05876099318265915,
- 0.04990614205598831, 0.059040337800979614, -0.015913506969809532, 0.03624742478132248,
- -0.06641998142004013, 0.034240394830703735, 0.04324634373188019, 0.07642064243555069,
- 0.07424814999103546, -0.027252092957496643, 0.06638345122337341, 0.08506520092487335,
- -0.09351544082164764, -0.03785863518714905, -0.032631102949380875, -0.06024746969342232,
- -0.0660834088921547, -0.04123618081212044, 0.046320222318172455, -0.08403918147087097,
- -0.2474268078804016, 0.012976069934666157, 0.07235623896121979, -0.052206575870513916,
- -0.027993135154247284, 0.0004885829985141754, -0.05254119262099266, 0.02336103841662407,
- -0.006275057792663574, -0.009759491309523582, 0.047547925263643265, 0.03896661102771759,
- 0.04840274155139923, 0.12331761419773102, 0.05780309811234474, -0.04035608470439911,
- -0.06002933904528618, 0.010055523365736008, -0.07089398801326752, 0.07225432991981506,
- -0.12632763385772705, -0.060844890773296356, -0.020208969712257385,
- -0.019906984642148018, 0.749332070350647, 0.11336308717727661, 0.23453766107559204,
- 0.02962472103536129, -0.026397619396448135, 0.1345268338918686, -0.0026977844536304474,
- 0.0983341783285141, -0.10095696896314621, -0.06520675867795944, 0.04934829846024513,
- -0.0746765062212944, -0.028427431359887123, -0.009551804512739182, 0.024588454514741898,
- 0.06518136709928513, 0.025537405163049698, 0.07909461855888367, 0.02779415436089039,
- -0.06166901811957359, -0.012493902817368507, 0.03260127082467079, 0.0293378084897995,
- -0.11907102912664413, -0.04758969694375992, 0.0633692666888237, 0.08331327140331268,
- -0.05114088952541351, 0.010745290666818619, -0.017951656132936478, 0.041893165558576584,
- 0.014439129270613194, 0.07091324776411057, -0.01298043318092823, 0.06163155287504196,
- 0.020752720534801483, 0.09651452302932739, -0.050894685089588165, -0.1328219473361969,
- 0.010622182860970497, 0.08268734812736511, -0.011484882794320583, -0.03210797905921936,
- 0.0578392818570137, -0.09575541317462921, 0.0710931345820427, 0.00019383523613214493,
- 0.1972988247871399, -0.1300947219133377, 0.042918942868709564, 0.017524799332022667,
- 0.0214693546295166, -0.0026365527883172035, 0.0021035452373325825,
- -0.035845667123794556, -0.05413394421339035, 0.09416146576404572, 0.018226202577352524,
- 0.04261314123868942, 0.08434569835662842, 0.009444363415241241, 0.0670483335852623,
- 0.09426844120025635, -0.009217646904289722, -0.02141236513853073, 0.07064484059810638,
- 0.06991764903068542, -0.03856037184596062, -0.04037505388259888, 0.00260105449706316,
- 0.005909931845963001, 0.025690697133541107, 0.0008137817494571209, 0.04609881341457367,
- -0.03215394541621208, -0.05495359003543854, 0.08905839174985886, 0.06944877654314041,
- 0.05938106030225754, 0.09940247237682343, -0.0071734217926859856, -0.08064205944538116,
- -0.03634699806571007, -0.06124874949455261, 0.026862211525440216, -0.015100888907909393,
- 0.10025042295455933, 0.1110750287771225, 0.0911487266421318, 0.031615812331438065,
- 0.07943578064441681, 0.05169626697897911, 0.008944099768996239, 0.05291092023253441,
- 0.04395752772688866, -0.030294619500637054, -0.06435301899909973, -0.02483326569199562,
- 0.004434467758983374, 0.03809021785855293, -0.009779335930943489, -0.07493910193443298,
- -0.02570657804608345, -0.08605191856622696, -0.03616941720247269, -0.12453508377075195,
- -0.05156482011079788, -0.04825492203235626, 0.06335856020450592, -0.016887953504920006,
- -0.07472410798072815, -0.09547880291938782, 0.018094085156917572, 0.0627993643283844,
- 0.02097877860069275, 0.012040366418659687, -0.12808099389076233, -0.005614432040601969,
- -0.027944138273596764, 0.0338444709777832, 0.03194637969136238, -0.01008936669677496,
- 0.002403954043984413, -0.04830227047204971, 0.031065305694937706, -0.03663613274693489,
- -0.05972002074122429, -0.04557988792657852, -0.15507930517196655, -0.04284403473138809,
- -0.058533526957035065, -0.022415660321712494, -0.034710608422756195,
- 0.04927583783864975, 0.0746278241276741, 0.05911324545741081, -0.04794719070196152,
- -0.023770270869135857, 0.04682478308677673, -0.01435353048145771, -0.05628146603703499,
- 0.10994561016559601, -0.06570234894752502, 0.04460480809211731, -0.010272019542753696,
- -0.09252337366342545, -0.052443914115428925, 0.060524314641952515,
- -0.058990173041820526, 0.03211325779557228, -0.044716060161590576, 0.04375908523797989,
- -0.004569394513964653, -0.003453502431511879, 0.040639862418174744,
- -0.04382115602493286, -0.08108556270599365, -0.08978771418333054, 0.16412945091724396,
- -0.04045389965176582, -0.04010715335607529, 0.06133366748690605, -0.017375899478793144,
- 0.05144459381699562, -0.0010064798407256603, 0.03443284332752228, 0.02728208154439926,
- 0.0997241735458374, 0.01776515692472458, 0.05398081988096237, 0.06337153166532516,
- -0.06121490150690079, -0.006013314239680767, 0.10308392345905304, 0.4658096432685852,
- -0.17135627567768097, 0.05771973729133606, 0.1075177863240242, 0.016052167862653732,
- 0.03079528734087944, -0.07894553989171982, 0.06292672455310822, 0.06065141409635544,
- 0.12095563113689423, 0.16916826367378235, 0.0112259266898036, 0.025689534842967987,
- -0.04388310760259628, 0.09710097312927246, -0.04890219122171402, -0.0077346209436655045,
- -0.03158608451485634, -0.10896958410739899, -0.004807222634553909, 0.06761592626571655,
- -0.06293982267379761, 0.03414132446050644, -0.04328801482915878, -0.022984955459833145,
- -0.03151513263583183, -0.01835995726287365, 0.018288562074303627, 0.011030768975615501,
- -0.0022530900314450264, -0.05794224143028259, 0.03155455365777016, 0.026233071461319923,
- 0.020044125616550446, -0.114336758852005, 0.012943307869136333, -0.10094210505485535,
- -0.13222679495811462, 0.09818440675735474, -0.015790216624736786, 0.0796368196606636,
- 0.07511265575885773, -0.05863472819328308, 0.06834546476602554, -0.028002990409731865,
- -0.04682541638612747, 0.016537342220544815, 0.10453899204730988, -0.008083616383373737,
- 0.08744890987873077, 0.12937311828136444, -0.04650351405143738, -0.027476459741592407,
- -0.10974275320768356, 0.08437706530094147, 0.12408216297626495, -0.012253882363438606,
- 0.019150085747241974, 0.009242327883839607, -0.033202219754457474,
- -0.037782736122608185, -0.07469144463539124, -0.05597223341464996, 0.02173101156949997,
- -0.04436991363763809, 0.07620266079902649, 0.002084331586956978, -0.024419208988547325,
- -0.09949955344200134, -0.03314587473869324, -0.038047097623348236, 0.03537876158952713,
- 0.1037459596991539, -0.057072486728429794, 0.05442333221435547, 0.025406489148736,
- -0.00599764846265316, 0.01526346243917942, -0.07590664178133011, -0.0003035757690668106,
- -0.04404224455356598, 0.03729938715696335, 0.05758609622716904, 0.05346165597438812,
- 0.009649241343140602, 0.11995381116867065, -0.10239873826503754, 0.09368820488452911,
- -0.03343196585774422, -0.021487874910235405, 0.02370576001703739, -0.0408783033490181,
- 0.05619310587644577, 0.01446588896214962, -0.03827676549553871, 0.025413036346435547,
- -0.08072468638420105, -0.07035106420516968, -0.09216956794261932, -0.10391783714294434,
- -0.015149938873946667, -0.10527484118938446, 0.06921440362930298, -0.08172261714935303,
- -0.012708837166428566, -0.049530334770679474, -0.06772090494632721,
- -0.011111898347735405, -0.016134444624185562, 0.029851803556084633,
- -0.20037993788719177, 0.011454514227807522, -0.00032862741500139236,
- 0.045879438519477844, -0.03629305586218834, -0.044035330414772034,
- -0.030094603076577187, 0.04395166039466858, 0.031340233981609344, -0.018526526167988777,
- 0.0031618010252714157, -0.13657774031162262, 0.01713302917778492, -0.1098618134856224,
- -0.3426685929298401, 0.03820059075951576, 0.01478840596973896, 0.03662281855940819,
- -0.04582531750202179, -0.026500418782234192, 0.048005517572164536, 0.02104455977678299,
- -0.03989158943295479, 0.09543059766292572, -0.08514479547739029, 0.02916153520345688,
- -0.09640155732631683, -0.08157557249069214, -0.0376616045832634, -0.051903001964092255,
- -0.036672551184892654, 0.020820673555135727, -0.02356768399477005, -0.077880859375,
- -0.09583857655525208, 0.0680234357714653, -0.08269098401069641, -0.028016872704029083,
- 0.005372636020183563, 0.0650549903512001, -0.10883127152919769, -0.044630326330661774,
- -0.005672389641404152, 0.06761825084686279, 0.06883962452411652, -0.06688978523015976,
- 0.0032022553496062756, 0.028720155358314514, -0.021066555753350258, 0.0984094887971878,
- -0.008891981095075607, 0.007042783312499523, -0.0660761147737503, 0.12088832259178162,
- 0.06371020525693893, 0.18155351281166077, -0.04208160936832428, -0.03458709269762039,
- 0.0360955074429512, 0.15994329750537872, 0.07352529466152191, 0.03650707006454468,
- -0.027518771588802338, -0.029962465167045593, 0.056120507419109344,
- -0.006393737159669399, 0.10714199393987656, -0.07771636545658112, -0.027372203767299652,
- -0.0031069861724972725, -0.01955302432179451, -0.012295282445847988,
- 0.0071114590391516685, 0.2119186669588089, 0.05199810862541199, 0.03146875649690628,
- 0.022714510560035706, -0.05216829478740692, 0.0012171855196356773, -0.07033299654722214,
- -0.08844612538814545, -0.022136325016617775, -0.007752120494842529,
- 0.046383440494537354, -0.012989901006221771, -0.16048604249954224, -0.03327615186572075,
- 0.02066410705447197, 0.010323742404580116, 0.12995171546936035, -0.02340809628367424,
- 0.04596753045916557, -0.04716043919324875, 0.12886761128902435, 0.013543523848056793,
- 0.01483028382062912, 0.043703436851501465, 0.10200152546167374, 0.030290288850665092,
- 0.05003910884261131, -0.003397238440811634, -0.09276115894317627, 0.024336565285921097,
- 0.12251509726047516, -0.03245870769023895, 0.09385199844837189, 0.04705096036195755,
- -0.0044224318116903305, -0.08528286218643188, 0.04935300350189209,
- -0.020265305414795876, 0.02514941617846489, -0.39818212389945984, -0.017308268696069717,
- 0.1333497166633606, 0.038426484912633896, 0.022271599620580673, 0.06187289580702782,
- 0.02635377086699009, -0.04591454192996025, -0.03884628415107727, -0.08409032225608826,
- 0.11431045830249786, 0.014108331874012947, 0.02839967980980873, -0.04309547692537308,
- 0.021843615919351578, 0.1034686267375946, -0.00379815511405468, 0.009155836887657642,
- 0.08995233476161957, -0.1822526752948761, 0.020084643736481667, -0.03517310693860054,
- 0.09222127497196198, 0.0372646301984787, 0.0277879498898983, 0.08476473391056061,
- -0.0865502804517746, 0.05604247376322746, 0.08306826651096344, -0.026634491980075836,
- 0.04789671301841736, 0.011106904596090317, -0.028874024748802185, 0.11698003113269806,
- 0.14096727967262268, 0.0514795146882534, -0.043356046080589294, 12.226478576660156,
- 0.06531860679388046, 0.03576909005641937, -0.09816381335258484, -0.048294879496097565,
- -0.049576278775930405, 0.04966893792152405, -0.1316135823726654, 0.054641176015138626,
- 0.14390458166599274, -0.03669309988617897, -0.07213374227285385, -0.003215453587472439,
- -0.0894242525100708, 0.03196703642606735, -0.024286216124892235, -0.033288393169641495,
- 0.005835304036736488, 0.04517284035682678, -0.07090441137552261, -0.0476166233420372,
- 0.029235363006591797, 0.09411783516407013, 0.022171547636389732, -0.06105084717273712,
- 0.03857792913913727, -0.023187687620520592, -0.036039598286151886, 0.012774226255714893,
- 0.03532125800848007, -0.010157417505979538, 0.015794839709997177, 0.05760851129889488,
- -0.04858560860157013, 0.03725087642669678, 0.11725222319364548, 0.0697077214717865,
- 0.05647497996687889, 0.06026852875947952, 0.0715450644493103, -0.00010884786024689674,
- 0.017784051597118378, 0.01412259228527546, 0.06689237058162689, 0.06186584383249283,
- 0.008926011621952057, 0.0597701296210289, 0.13199494779109955, 0.0392962321639061,
- 0.05487336963415146, 0.07435279339551926, 0.008108596317470074, 0.12045937776565552,
- 0.030415473505854607, -0.023718660697340965, 0.023219233378767967,
- -0.004853968508541584, -0.09828858077526093, 0.11725917458534241, 0.13004261255264282,
- -0.07476062327623367, 0.11487732827663422, 0.03782014176249504, 0.09113894402980804,
- 0.033356934785842896, 0.036684975028038025, 0.060692086815834045, 0.07705247402191162,
- -0.1743181049823761, -0.118989959359169, 0.034184522926807404, -0.09297748655080795,
- -0.052512288093566895, 0.1005311831831932, 0.09246870875358582, -0.06333798915147781,
- 0.03582751005887985, -0.05739963427186012, 0.024438127875328064, -0.06332466006278992,
- -0.01491774246096611, 0.022347748279571533, -0.042433276772499084, 0.0557854101061821,
- -0.0024420316331088543, 0.03282834589481354, 0.057978756725788116, 0.11065903306007385,
- 0.009239574894309044, -0.08385629951953888, -0.07319328933954239, 0.1433318555355072,
- -0.002923733089119196, -0.07579163461923599, 0.015052263624966145, -0.03021247312426567,
- 0.08629345148801804, -0.17253756523132324, 0.020807160064578056, 0.07131019979715347,
- -0.07651367783546448, -0.059962667524814606, -0.046567972749471664,
- 0.035537078976631165, 0.002896177116781473, 0.0684339702129364, -0.042520590126514435,
- -0.011934866197407246, 0.0423409640789032, 0.05526041239500046, -0.050835154950618744,
- 0.11637067794799805, 0.08668310940265656, -0.04338834062218666, 0.043232262134552,
- 0.04321989044547081, -0.016138523817062378, -0.04128041863441467, 0.06477870047092438,
- 0.09068527072668076, -0.08421944826841354, -0.05695769935846329, -0.03029441460967064,
- -0.06717163324356079, -0.011345690116286278, -0.0740266814827919, 0.014161009341478348,
- 0.021693287417292595, -0.013811755925416946, -0.018272332847118378, 0.0388677753508091,
- 0.08345280587673187, 0.11956162005662918, -0.031241971999406815, 0.071114681661129,
- -0.049843840301036835, -0.02578512579202652, 0.030473370105028152, 0.0616362988948822,
- 0.05729315057396889, -0.08291018009185791, -0.05337041988968849, -0.06968935579061508,
- -0.14576753973960876, 0.027499454095959663, 0.13109904527664185, 0.10484661161899567,
- 0.06374476104974747, 0.007860684767365456, -0.06953662633895874, -0.07213962078094482,
- 0.1224348172545433, 0.03999057412147522, -0.015198156237602234, 0.0517205074429512,
- -0.059993766248226166, -0.02927839383482933, 0.10717827081680298, -0.0766211599111557,
- -0.009479977190494537, 0.011842949315905571, -0.14496417343616486, 0.08728767931461334,
- 0.12104664742946625, 0.03428058326244354, 0.036246709525585175, 0.05843681842088699,
- -0.028042767196893692, 0.07706229388713837, 0.00042485445737838745,
- 0.027527596801519394, 0.007226719055324793, -0.08635293692350388, -0.10504918545484543,
- 0.012652397155761719, 0.10083542764186859, 0.0503682941198349, -0.14922595024108887,
- -0.023740587756037712, -0.05622316896915436
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 159,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 13,
- "similarity": 0.9981712102890015
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 41,
- "similarity": 0.9981144666671753
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 179,
- "similarity": 0.9980846047401428
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Tencent Keen Security Lab"],
- "epoch_date_downloaded": 1644883200,
- "epoch_date_modified": 1644883200,
- "epoch_date_submitted": 1644883200,
- "flag": null,
- "report_number": 1519,
- "source_domain": "keenlab.tencent.com",
- "submitters": ["Anonymous"],
- "title": "Tencent Keen Security Lab: Experimental Security Research of Tesla Autopilot",
- "url": "https://keenlab.tencent.com/en/2019/03/29/Tencent-Keen-Security-Lab-Experimental-Security-Research-of-Tesla-Autopilot/"
- },
- {
- "__typename": "Report",
- "authors": ["Evan Ackerman"],
- "epoch_date_downloaded": 1644883200,
- "epoch_date_modified": 1644883200,
- "epoch_date_submitted": 1644883200,
- "flag": null,
- "report_number": 1518,
- "source_domain": "spectrum.ieee.org",
- "submitters": ["Anonymous"],
- "title": "Three Small Stickers in Intersection Can Cause Tesla Autopilot to Swerve Into Wrong Lane",
- "url": "https://spectrum.ieee.org/three-small-stickers-on-road-can-steer-tesla-autopilot-into-oncoming-lane"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "amazon",
- "name": "Amazon"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "amazon",
- "name": "Amazon"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "kristin-livdahl's-daughter",
- "name": "Kristin Livdahl's daughter"
- },
- {
- "__typename": "Entity",
- "entity_id": "children-using-alexa",
- "name": "children using Alexa"
- },
- {
- "__typename": "Entity",
- "entity_id": "amazon-echo-customers",
- "name": "Amazon Echo customers"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1521, 1520],
- "vector": [
- -0.0803421400487423, 0.08738955482840538, 0.009377876296639442, -0.11739420518279076,
- 0.1174323819577694, -0.05065760016441345, -0.006695216754451394, 0.07223394513130188,
- 0.08361104503273964, -0.09438011795282364, -0.03146540839225054, 0.085389144718647,
- 0.01741802948527038, -0.05964016169309616, 0.04268616810441017, -0.05394717492163181,
- -0.11000698432326317, -0.015202520764432847, -0.03663951717317104, -0.1081557497382164,
- -0.10403915494680405, -0.009170892648398876, 0.00647676270455122, 0.12966734543442726,
- -0.04434002283960581, -0.014661256223917007, 0.03456314094364643, 0.08236489817500114,
- 0.0176014075987041, 0.018926538061350584, -0.019674628973007202, -0.05734245479106903,
- 0.09358779713511467, -0.0009861420840024948, 0.02084000501781702, 0.06933899968862534,
- 0.022046765312552452, -0.03098694607615471, -0.0781765729188919, 0.04273046366870403,
- -0.008580183610320091, 0.1447072997689247, -0.0038066740380600095,
- -0.017137759365141392, 0.0616049375385046, -0.003657589666545391, -0.01489801425486803,
- 0.020411753561347723, 0.013377925846725702, -0.00882039638236165, 0.013532535172998905,
- 0.0684958640486002, -0.048033228144049644, 0.01966396952047944, -0.09232819452881813,
- 0.04226160794496536, 0.033241156488657, 0.00212758406996727, 0.0789516270160675,
- -0.07625924795866013, -0.016880834475159645, -0.13882356882095337, -0.09938552230596542,
- -0.0508273419982288, 0.09395243972539902, -0.06299252808094025, 0.0005998264532536268,
- 0.025881777983158827, 0.01582773495465517, 0.06133146956562996, 0.08593571186065674,
- -0.040451197884976864, 0.012114039622247219, -0.0012912573292851448,
- -0.005715319886803627, 0.014747999492101371, 0.006022767163813114, 0.24255961924791336,
- -0.11222616583108902, 0.008827922865748405, 0.12784991785883904, -0.11317888274788857,
- 0.36344240605831146, -0.005241928622126579, -0.010344194481149316, -0.06882466748356819,
- 0.08874151855707169, 0.03685163613408804, 0.04316068720072508, 0.031547772232443094,
- 0.01236144726863131, 0.03431295230984688, -0.07069944590330124, -0.0005000382661819458,
- 0.07666351459920406, 0.03622003039345145, -0.04243261367082596, -0.008199356496334076,
- -0.003144994843751192, -0.05423802323639393, -0.0003213416785001755,
- -0.08025780692696571, 0.09961340017616749, 0.03857697360217571, -0.020319382660090923,
- 0.041856249794363976, -0.002507375553250313, -0.00800317618995905, 0.06782292760908604,
- -0.029516015201807022, 0.04121400974690914, 0.03652804810553789, 0.036002074368298054,
- 0.0036500166170299053, 0.05547456443309784, -0.0049535955768078566, 0.06008708477020264,
- 0.057022621331270784, 0.07734974846243858, 0.04262769315391779, 0.02044304506853223,
- 0.0835309624671936, 0.09114155545830727, -0.04180118069052696, 0.027476730523630977,
- 0.020186670124530792, -0.04276616871356964, 0.006392414681613445, -0.05520904250442982,
- 0.04119440610520542, -0.035678021144121885, -0.22898104786872864, 0.0012431675568223,
- 0.04969191737473011, 0.017965536564588547, -0.008727140724658966, 0.05659291706979275,
- -0.07518411055207253, 0.025657199323177338, -0.027907068841159344, -0.07116963714361191,
- 0.023114590905606747, 0.009300651960074902, 0.04002584610134363, 0.11160410568118095,
- 0.04926140420138836, 0.0035919761285185814, -0.03751215152442455, 0.004407681990414858,
- -0.01814133580774069, 0.07666130363941193, -0.0729704275727272, -0.04899127595126629,
- 0.002796706574372365, -0.02206420456059277, 0.5963320583105087, 0.033548640087246895,
- 0.10984508693218231, 0.00864952290430665, 0.0068347405176609755, 0.1491384655237198,
- -0.029493179928977042, 0.01649029488908127, -0.049895308911800385,
- -0.029523503966629505, 0.023165181977674365, -0.0724941324442625, -0.034913184121251106,
- 0.03543171100318432, 0.019952482252847403, 0.055188024416565895, 0.008204875455703586,
- 0.06959099695086479, 0.0013848142698407173, -0.13464924320578575, -0.029108409769833088,
- 0.014589328831789317, 0.017892675299663097, -0.11127713322639465, -0.03145900182425976,
- 0.038708776235580444, 0.06995989196002483, -0.10324816033244133, 0.0020660851150751114,
- -0.07470621168613434, 0.03146342188119888, 0.01971204485744238, 0.032793451100587845,
- -0.04084260016679764, 0.0006700045196339488, 0.04509107768535614,
- -0.0020511955954134464, -0.011383834760636091, -0.062039787881076336,
- 0.015355320647358894, 0.0885429885238409, 0.015801248606294394, -0.04700782522559166,
- 0.07491521909832954, -0.07293951883912086, 0.011806897353380919, -0.06291467882692814,
- 0.11537421867251396, -0.05847897008061409, 0.04692850727587938, -0.003737043240107596,
- 0.03781586419790983, 0.0663005169481039, -0.015068582200910896, -0.07843045517802238,
- -0.04742939956486225, 0.09950213134288788, 0.011731057398719713, 0.07150149904191494,
- 0.05035596154630184, 0.0023810695856809616, 0.034201791509985924, 0.17508430778980255,
- -0.028111503459513187, 0.028089042752981186, 0.03660576697438955, 0.062080285511910915,
- -0.04762724693864584, 0.003921607509255409, 0.001977458829060197, 0.024670982034876943,
- 0.006636643782258034, 0.005974289495497942, 0.04144734889268875, 0.008799003437161446,
- -0.023605580572620966, 0.02468516118824482, 0.022355129476636648, 0.016448518726974726,
- 0.0820957850664854, -0.06834885478019714, -0.08299234136939049, -0.03939582407474518,
- -0.01448924044962041, 0.017511365585960448, -0.07112806104123592, 0.10057789832353592,
- 0.06073116511106491, 0.0817703865468502, 0.03144998662173748, 0.022904240526258945,
- 0.06536812428385019, 0.05978621914982796, 0.010580788366496563, 0.02751354780048132,
- -0.026063736993819475, -0.02934763766825199, -0.027907070703804493,
- 0.027937021106481552, 0.0426908889785409, 0.0275765499973204, -0.11588142439723015,
- 0.003002018202096224, 0.025979515630751848, -0.04022102989256382, -0.08083400502800941,
- -0.06641576811671257, 0.05053923279047012, 0.05262567847967148, -0.053833670914173126,
- -0.09652101621031761, -0.1104440912604332, 0.0248861126601696, 0.06399735994637012,
- -0.03781682997941971, 0.014832627959549427, -0.08994631096720695, -0.02351655112579465,
- -0.0567170474678278, 0.047795962542295456, -0.006589216296561062, 0.025532732717692852,
- 0.03775045555084944, -0.039321805350482464, 0.03216434735804796, 0.02295736689120531,
- -0.06901215761899948, -0.06532159820199013, -0.00983232306316495, -0.06170441024005413,
- 0.034205892123281956, -0.019711634027771652, -0.05241898447275162, 0.03977598017081618,
- 0.043107833713293076, 0.04341716133058071, -0.009602577425539494, -0.022965045180171728,
- 0.0630415603518486, -0.015884448774158955, 0.012261105235666037, 0.0737758670002222,
- -0.021411899477243423, 0.0009174245642498136, -0.05315583012998104,
- -0.06447442900389433, -0.06301731243729591, -0.030677595175802708, -0.03603431396186352,
- 0.07119033858180046, -0.052407870069146156, 0.023704477585852146, -0.04475272074341774,
- -0.05100680189207196, 0.04041301552206278, -0.03449948085471988, -0.05938830226659775,
- -0.08868896588683128, 0.11915406212210655, -0.02363775111734867, -0.013042713631875813,
- -0.0031862868927419186, -0.057004038244485855, 0.0752079039812088,
- -0.040364637548918836, -0.042542772367596626, 0.08238532207906246, 0.06820788607001305,
- -0.020516917807981372, 0.01753112394362688, 0.06131632626056671, 0.022804086562246084,
- -0.024784781970083714, 0.05215665325522423, 0.40803900361061096, -0.30281905829906464,
- 0.09255768358707428, 0.09055933728814125, 0.04183303378522396, 0.09844646230340004,
- 0.009662489872425795, 0.02655345108360052, 0.06203303672373295, 0.12598295509815216,
- 0.07029877230525017, -0.027896844316273928, -0.04434434697031975, -0.05452612414956093,
- 0.07951939851045609, 0.031190257286652923, -0.006434261333197355, -0.002757384441792965,
- -0.05175069347023964, 0.01370218361262232, -0.00953324015972612, -0.047982191666960716,
- 0.004958161851391196, 0.013876926619559526, -0.05856236815452576, -0.013378970324993134,
- 0.03845766559243202, 0.03953910805284977, -0.03496374096721411, 0.03309853775135707,
- -0.0751858688890934, 0.041991084814071655, 0.0412188689224422, 0.03432805649936199,
- -0.07694917172193527, 0.031170140951871872, -0.05623764358460903, -0.08614485338330269,
- 0.0988553985953331, -0.01167082175379619, 0.01412151544354856, 0.05876885540783405,
- -0.014299295842647552, 0.01435460988432169, 0.00029224250465631485,
- -0.048787258099764585, -0.002639414742588997, 0.047387827187776566,
- 0.010456648888066411, 0.041482326574623585, 0.1826593056321144, -0.026159618704696186,
- -0.019762719050049782, -0.06821281462907791, 0.05544589087367058, 0.10355224087834358,
- -0.022289859130978584, 0.05072800349444151, -0.011567271081730723, 0.005584921687841415,
- 0.02590057533234358, -0.013919345918111503, -0.08538931980729103, -0.03811308741569519,
- -0.04007827723398805, 0.08197570592164993, 0.04297424852848053, -0.008147442655172199,
- -0.11766406893730164, 0.014156235847622156, -0.050574637949466705, 0.04361747391521931,
- 0.1259702555835247, -0.08768124878406525, 0.025845324620604515, -0.02076824475079775,
- -0.03615627344697714, -0.04374164156615734, -0.07683579251170158, -0.004980321042239666,
- -0.05085058882832527, 0.04284859076142311, 0.02323642373085022, 0.03018307499587536,
- -0.06061245873570442, 0.046115269884467125, -0.08773287758231163, 0.048150619491934776,
- 0.04062077775597572, -0.03527030919212848, 0.020537056028842926, -0.02338831126689911,
- 0.030640658922493458, -0.017146063037216663, -0.02913766447454691, -0.02296742470934987,
- 0.012016464490443468, -0.04941343516111374, -0.07948172464966774, -0.04314221441745758,
- -0.020727569237351418, -0.07378369756042957, 0.06464425101876259, -0.03379962872713804,
- -0.05183553136885166, -0.03232123819179833, 0.00011536292731761932,
- 0.009007580345496535, 0.033641147427260876, 0.021521175047382712, -0.1141725704073906,
- -0.06694704480469227, -0.02448824979364872, 0.05346834100782871, 0.03874021954834461,
- -0.051840465515851974, 0.0274294676783029, 0.1004694364964962, 0.03644019179046154,
- -0.07246155105531216, 0.013973950408399105, -0.05068136565387249, 0.04026691056787968,
- -0.10308573395013809, -0.5652673840522766, 0.03544900380074978, 0.07411949895322323,
- 0.02411531750112772, 0.04107590764760971, -0.06357794441282749, 0.029510196298360825,
- 0.006247611017897725, -0.023745611775666475, 0.08663050457835197, -0.056083619594573975,
- 0.031889431877061725, -0.002070236951112747, -0.030023392289876938,
- 0.013331521593499929, -0.04620984569191933, -0.0077011933317407966,
- 0.031877892557531595, -0.02817444852553308, -0.04395764507353306, -0.10169575735926628,
- 0.002400796744041145, 0.008893635123968124, 0.012312211096286774, -0.024954340187832713,
- 0.001891088206321001, -0.0983140580356121, -0.0388362742960453, 0.026002902537584305,
- 0.05903524346649647, 0.0214683311060071, -0.058641038835048676, -0.0338960038498044,
- 0.03545299777761102, 0.00933194998651743, 0.11274559050798416, 0.012915180996060371,
- -0.0452604666352272, -0.0643688477575779, 0.08009243756532669, 0.04772330820560455,
- 0.1868247389793396, -0.03476883377879858, 0.029829449020326138, -0.0252597164362669,
- 0.12481169402599335, 0.0008667819201946259, -0.028442745096981525, -0.03856587968766689,
- 0.032933373004198074, 0.026486543007194996, 0.0002028744202107191, 0.04832793120294809,
- -0.08554643020033836, -0.04001207463443279, 0.0005305283702909946, 0.018270183820277452,
- 0.0015365022409241647, -0.006655019707977772, 0.1997145265340805, 0.015611032955348492,
- 0.07237464003264904, -0.014384565874934196, -0.06306921131908894, -0.013688422623090446,
- -0.03207413200289011, -0.02996405540034175, -0.013012963812798262, 0.004544314346276224,
- -0.032965824007987976, -0.018816277850419283, -0.11451731994748116,
- -0.0018987818621098995, 0.03130307514220476, 0.0053233683574944735, 0.06683237291872501,
- 0.010336664505302906, 0.07124901190400124, -0.04261457733809948, 0.08380689099431038,
- 0.004739830270409584, 0.05419277958571911, 0.06283292546868324, 0.10280657559633255,
- 0.02896805782802403, -0.05794700235128403, -0.05912706255912781,
- 0.000020780600607395172, 0.018874198431149125, 0.1492145024240017, -0.02378074682201259,
- 0.1362897753715515, 0.039225609973073006, 0.0015113381668925285, -0.02879822999238968,
- 0.0126190185546875, 0.004376024007797241, 0.011483079753816128, -0.5302101075649261,
- -0.021694974042475224, 0.13666431605815887, -0.001959822606295347, 0.005008060717955232,
- 0.07839208468794823, 0.02742938557639718, -0.04636270459741354, 0.04382064723176882,
- -0.02612984413281083, 0.04933112766593695, 0.011480814777314663, 0.09776109084486961,
- -0.09572501108050346, 0.04642609506845474, 0.09282973781228065, -0.05638416111469269,
- -0.0077943457290530205, 0.06873965077102184, -0.2133495733141899, 0.015316071454435587,
- -0.022189481533132493, 0.1319582164287567, -0.002643709070980549, 0.03970347158610821,
- 0.08799830824136734, -0.049745894968509674, 0.03147887997329235, 0.05264003947377205,
- 0.009646882303059101, 0.05478057079017162, 0.0357965431176126, -0.036851005628705025,
- 0.08008566871285439, 0.09019580110907555, 0.15995164215564728, -0.005988783203065395,
- 11.961305141448975, 0.04944568406790495, 0.06148339621722698, -0.035650123842060566,
- 0.04170258902013302, -0.06457849219441414, 0.020276376977562904, -0.08625503815710545,
- 0.019523475551977754, 0.11409644037485123, 0.012689718510955572, -0.016243320889770985,
- -0.058867208659648895, -0.12566323578357697, 0.016271742060780525, -0.03410158725455403,
- -0.04132889397442341, -0.04164532385766506, 0.07160359248518944, -0.03522198460996151,
- -0.05477512069046497, 0.06903249211609364, 0.037721285596489906, 0.038571046461584046,
- -0.07454146072268486, 0.021141849923878908, 0.019738854374736547, -0.03250875137746334,
- -0.006865810020826757, 0.0453312061727047, 0.0037313872016966343, 0.0025953950826078653,
- 0.034396677277982235, -0.02644655853509903, 0.07842570915818214, 0.027692567091435194,
- 0.017594405449926853, 0.027206487022340298, -0.010086149908602238, 0.1102741751819849,
- 0.04814941994845867, -0.043012550100684166, 0.039466122165322304, 0.005879491567611694,
- 0.05514475144445896, 0.047643689438700676, 0.034245362505316734, 0.11664922535419464,
- 0.026666683377698064, 0.072727270424366, 0.0790986642241478, -0.02048160182312131,
- 0.12560676783323288, 0.0645723044872284, -0.01230231556110084, 0.07361563853919506,
- 0.027769289910793304, -0.060454562306404114, 0.05515589937567711, 0.022310920467134565,
- -0.05220819637179375, 0.07391158118844032, 0.01813560025766492, 0.1285044625401497,
- -0.0606449730694294, 0.09047527983784676, 0.08044682815670967, 0.10742426663637161,
- -0.09744036570191383, -0.06986861675977707, -0.005254658753983676, -0.09516366198658943,
- -0.030940938740968704, 0.010259653208777308, 0.07937647588551044, -0.03440966736525297,
- 0.028444143012166023, -0.06450099311769009, 0.058092713356018066, -0.018315346911549568,
- 0.03291042521595955, 0.006134843977633864, -0.04143746942281723, 0.005817664787173271,
- 0.0500088008120656, 0.03303317353129387, 0.08316324278712273, 0.04323424585163593,
- 0.030048159882426262, -0.10478033870458603, -0.05532130412757397, 0.1149180568754673,
- -0.03051060764119029, -0.0729982852935791, -0.009044714272022247, -0.03336871508508921,
- 0.06205741874873638, -0.14211541786789894, 0.04403991997241974, 0.11602601408958435,
- -0.08104034140706062, -0.008743220940232277, -0.0557725764811039, 0.05950692668557167,
- 0.0010553942993283272, 0.011678266804665327, -0.07643177546560764, 0.024045016150921583,
- 0.01707401592284441, 0.037053510546684265, -0.029296000255271792, 0.038154651410877705,
- 0.0830858051776886, -0.036939484998583794, 0.05130632407963276, 0.009964742988813668,
- -0.01026235893368721, -0.03327709995210171, 0.03539461921900511, 0.010800858959555626,
- -0.07035727798938751, 0.006787688937038183, -0.04513956792652607, -0.02806735411286354,
- -0.015761885326355696, -0.07227537222206593, -0.011006540153175592,
- 0.045812949538230896, -0.05179201066493988, -0.0050862113712355494, 0.03282312862575054,
- 0.03465062379837036, 0.03058309154585004, 0.02931229304522276, 0.05642287619411945,
- -0.004953496158123016, -0.04806245490908623, 0.02610569354146719, 0.04252809565514326,
- 0.0956995002925396, -0.0488424152135849, -0.058021293953061104, 0.014897108601871878,
- -0.16162985563278198, 0.02086848602630198, 0.04721965081989765, 0.07311701402068138,
- 0.09823624417185783, 0.03982193674892187, -0.061057738959789276, -0.03006933582946658,
- 0.11043180152773857, 0.02888306393288076, -0.02958516636863351, 0.013626508647575974,
- -0.04916755296289921, -0.026191222481429577, 0.08268756233155727, -0.034065667539834976,
- 0.01990721421316266, -0.02468743361532688, -0.04690855648368597, 0.0840991735458374,
- 0.08161290362477303, 0.0369726256467402, -0.016853929788339883, 0.014634492341428995,
- 0.026387639343738556, -0.010638928972184658, 0.01900558080524206, 0.012388459639623761,
- -0.010166762571316212, -0.156788632273674, -0.09428835287690163, 0.0780261680483818,
- 0.08203018456697464, 0.04900490678846836, -0.11924246326088905, -0.0242308983579278,
- -0.031840928830206394
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 160,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 34,
- "similarity": 0.9983142614364624
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 73,
- "similarity": 0.9982161521911621
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 53,
- "similarity": 0.9980393052101135
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Dan Milmo", "Alex Hern"],
- "epoch_date_downloaded": 1671408000,
- "epoch_date_modified": 1672963200,
- "epoch_date_submitted": 1671408000,
- "flag": null,
- "report_number": 2381,
- "source_domain": "theguardian.com",
- "submitters": ["Daniel Atherton (BNH.ai)"],
- "title": "TikTok self-harm study results ‘every parent’s nightmare’",
- "url": "https://www.theguardian.com/technology/2022/dec/15/tiktok-self-harm-study-results-every-parents-nightmare"
- },
- {
- "__typename": "Report",
- "authors": ["Kristin Livdahl"],
- "epoch_date_downloaded": 1644883200,
- "epoch_date_modified": 1644969600,
- "epoch_date_submitted": 1644969600,
- "flag": null,
- "report_number": 1521,
- "source_domain": "twitter.com",
- "submitters": ["Anonymous"],
- "title": "OMFG My 10 year old just asked Alexa on our Echo for a challenge and this is what she said.",
- "url": "https://twitter.com/klivdahl/status/1475220450598924297"
- },
- {
- "__typename": "Report",
- "authors": ["BBC News"],
- "epoch_date_downloaded": 1644969600,
- "epoch_date_modified": 1644969600,
- "epoch_date_submitted": 1644969600,
- "flag": null,
- "report_number": 1520,
- "source_domain": "bbc.com",
- "submitters": ["Anonymous"],
- "title": "Alexa tells 10-year-old girl to touch live plug with penny",
- "url": "https://www.bbc.com/news/technology-59810383"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "facebook",
- "name": "Facebook"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "facebook",
- "name": "Facebook"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "male-facebook-users",
- "name": "male Facebook users"
- },
- {
- "__typename": "Entity",
- "entity_id": "female-facebook-users",
- "name": "female Facebook users"
- },
- {
- "__typename": "Entity",
- "entity_id": "black-facebook-users",
- "name": "Black Facebook users"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [2139, 2138, 1530],
- "vector": [
- -0.02860032208263874, 0.08259981125593185, -0.006077425088733435, -0.09891914576292038,
- 0.0732283890247345, -0.042083997279405594, -0.003908798564225435, 0.10106179863214493,
- 0.04626172408461571, -0.1502518653869629, -0.03982866182923317, 0.02196747623383999,
- 0.03549310564994812, -0.09816714376211166, 0.00894965510815382, -0.08314299583435059,
- -0.14294971525669098, -0.0012248334242030978, 0.01690712384879589, -0.12034676223993301,
- -0.11594214290380478, 0.0005293227732181549, 0.012909035198390484, 0.11918201297521591,
- -0.022300079464912415, 0.036324918270111084, 0.13539354503154755, 0.0799870640039444,
- -0.030093958601355553, 0.11973460763692856, -0.034124527126550674, -0.08292364329099655,
- 0.15035085380077362, 0.029809772968292236, -0.0019442836055532098, 0.08845929056406021,
- 0.022441895678639412, -0.0286136195063591, 0.01877967081964016, 0.007774490863084793,
- 0.11582373827695847, 0.2899147868156433, -0.039008788764476776, -0.026997948065400124,
- 0.010825879871845245, -0.03401104733347893, 0.019438544288277626, 0.04475398734211922,
- -0.005251768510788679, 0.02621808648109436, 0.01811048574745655, 0.032064180821180344,
- -0.06096557900309563, 0.041531432420015335, -0.10980502516031265, 0.04691104590892792,
- 0.05390941724181175, -0.023823678493499756, 0.01881001703441143, -0.136477991938591,
- -0.045374393463134766, -0.21915651857852936, -0.006487386301159859,
- -0.07997188717126846, 0.12117554992437363, -0.0566544234752655, -0.034915823489427567,
- 0.07934560626745224, 0.01616295427083969, 0.06029267609119415, 0.06079483404755592,
- -0.02751503884792328, -0.04568381607532501, 0.07613649219274521, -0.021005744114518166,
- -0.03555756434798241, -0.031923770904541016, 0.10892349481582642, -0.10336583852767944,
- 0.03992239758372307, 0.07331302016973495, -0.07863783091306686, 0.42109039425849915,
- 0.04012911394238472, -0.058125149458646774, -0.03438885882496834, 0.07908157259225845,
- 0.051843103021383286, 0.02830621600151062, 0.014856024645268917, -0.04266788437962532,
- 0.05333731696009636, -0.07222408801317215, -0.033590346574783325, 0.06785181164741516,
- 0.04616331681609154, -0.023731371387839317, -0.035851430147886276, -0.01690266840159893,
- -0.07644573599100113, -0.017421411350369453, -0.060461342334747314, 0.12380733340978622,
- 0.06414066255092621, -0.07187818735837936, 0.03493728116154671, 0.10544133931398392,
- -0.037708695977926254, 0.04889876767992973, -0.023996561765670776, 0.05827788636088371,
- 0.009272336959838867, 0.08188182860612869, 0.0022126995027065277, 0.0158497616648674,
- -0.023201555013656616, 0.020441165193915367, 0.04937409237027168, 0.05148798227310181,
- 0.09040766954421997, 0.005294977221637964, 0.05680954456329346, 0.076766736805439,
- -0.07665038853883743, -0.04809631407260895, -0.043351951986551285, -0.04937564954161644,
- -0.0528552383184433, -0.04261822625994682, 0.01909169740974903, -0.012973769567906857,
- -0.1541963368654251, -0.03740826994180679, 0.08753795176744461, -0.041643306612968445,
- -0.041961222887039185, -0.026975059881806374, -0.04580884799361229,
- 0.002031034557148814, -0.022314021363854408, 0.03184669092297554, 0.038622431457042694,
- 0.009812413714826107, 0.027426501736044884, 0.13113698363304138, 0.05261906608939171,
- -0.06862331926822662, -0.05316305533051491, 0.028072498738765717, -0.03621670976281166,
- 0.1360882967710495, -0.10127607733011246, -0.04260289669036865, -0.041518986225128174,
- 0.019442282617092133, 0.8261235356330872, 0.10493842512369156, 0.2186778336763382,
- 0.010801623575389385, -0.052575964480638504, 0.16571572422981262, 0.019008485600352287,
- 0.05979013070464134, -0.07284992188215256, -0.04633134603500366, 0.02527107298374176,
- -0.07737512141466141, -0.0925687626004219, 0.01840098761022091, 0.03633251413702965,
- 0.09861572831869125, 0.00893094390630722, 0.07827746868133545, 0.020410532131791115,
- -0.08905738592147827, -0.04737786576151848, 0.05917888879776001, 0.013961306773126125,
- -0.09846585988998413, -0.024929644539952278, 0.06559909880161285, 0.08254146575927734,
- -0.07400215417146683, -0.022842107340693474, -0.06039987877011299, 0.07074159383773804,
- -0.015632109716534615, 0.07015537470579147, -0.03134291246533394, 0.08395261317491531,
- -0.01386222243309021, 0.052265506237745285, -0.00889542605727911, -0.13205097615718842,
- -0.02018783800303936, 0.11008313298225403, -0.016272233799099922, -0.035944294184446335,
- 0.05282148718833923, -0.09818240255117416, 0.043915703892707825, -0.01739448867738247,
- 0.2010924220085144, -0.16824768483638763, -0.015342344529926777, -0.03005448542535305,
- -0.010794676840305328, 0.043779026716947556, 0.017676761373877525, -0.05332036688923836,
- -0.05182904005050659, 0.08104654401540756, 0.01874793879687786, 0.09274965524673462,
- 0.0186904463917017, 0.007532529067248106, 0.046064574271440506, 0.09184440970420837,
- -0.0131380008533597, -0.03445817157626152, 0.08083364367485046, 0.026214653626084328,
- -0.09343288093805313, -0.039686474949121475, 0.03424088656902313, 0.009961896575987339,
- 0.014168032445013523, 0.0035156141966581345, 0.035806432366371155, 0.001592312939465046,
- -0.054215338081121445, 0.07840114086866379, 0.055583056062459946, 0.05502255633473396,
- 0.08468157798051834, -0.05429241433739662, -0.0533449612557888, -0.050391245633363724,
- -0.06442137807607651, 0.03518285974860191, -0.037179458886384964, 0.0781230553984642,
- 0.110721655189991, 0.08186986297369003, 0.03082638420164585, 0.029156804084777832,
- 0.058330535888671875, -0.05825048312544823, 0.020613210275769234, 0.03359491005539894,
- -0.04779456928372383, -0.03525606170296669, -0.016133850440382957, 0.015230712480843067,
- 0.058742254972457886, -0.03950268030166626, -0.05779874324798584, -0.014703954569995403,
- -0.08031260967254639, -0.06831593066453934, -0.09674753993749619, -0.0564969964325428,
- -0.0035065878182649612, 0.0466119758784771, -0.04052840545773506, -0.06202320381999016,
- -0.06240687891840935, -0.0012514012632891536, 0.07744603604078293, -0.02015460841357708,
- -0.007062403950840235, -0.1510564684867859, -0.005131598096340895,
- -0.010547328740358353, 0.055353134870529175, -0.008091616444289684,
- 0.022751329466700554, 0.02392502687871456, -0.07268865406513214, 0.0017338000470772386,
- -0.022057129070162773, -0.08704901486635208, -0.03180698677897453, -0.07584825903177261,
- -0.012971027754247189, -0.03195548430085182, 0.027495576068758965,
- -0.047864872962236404, 0.019838102161884308, 0.04136979952454567, 0.07173079997301102,
- -0.03670424595475197, -0.057935576885938644, 0.047623515129089355, 0.008165241219103336,
- -0.021941334009170532, 0.09752600640058517, -0.026245057582855225, 0.04773641750216484,
- 0.01082175225019455, -0.0712454617023468, -0.09676475077867508, 0.009416374377906322,
- -0.0292587298899889, 0.023987121880054474, -0.004365058150142431, 0.005079404450953007,
- -0.01989513821899891, 0.00859068799763918, 0.0502837710082531, -0.056756388396024704,
- -0.14233289659023285, -0.09118665009737015, 0.14046745002269745, 0.010090216994285583,
- 0.005430333316326141, 0.05563915893435478, -0.04665626212954521, 0.0560971237719059,
- -0.002547597512602806, 0.031716782599687576, 0.042125869542360306, 0.07397794723510742,
- 0.025109484791755676, 0.0321090966463089, 0.044158462435007095, -0.040245767682790756,
- 0.03817526623606682, 0.10068273544311523, 0.47796711325645447, -0.07036621868610382,
- 0.04729040339589119, 0.11466580629348755, 0.010120240040123463, 0.009982852265238762,
- -0.07527996599674225, 0.07482292503118515, 0.1164873018860817, 0.1405155509710312,
- 0.15281781554222107, -0.030539274215698242, 0.021451078355312347, -0.10369906574487686,
- 0.10199391096830368, -0.025826850906014442, 0.036796364933252335, 0.02523239515721798,
- -0.10712500661611557, -0.029077669605612755, 0.053136616945266724, -0.04330499470233917,
- 0.02052965946495533, -0.039580974727869034, -0.06631691753864288, -0.007807914633303881,
- 0.0012748818844556808, 0.009364526718854904, -0.0035312892869114876,
- 0.04588964581489563, -0.04786809906363487, 0.04827706888318062, -0.013064070604741573,
- 0.021239416673779488, -0.13916461169719696, 0.01083535049110651, -0.057400088757276535,
- -0.08927319198846817, 0.09208422154188156, -0.01067753229290247, 0.05526493862271309,
- 0.041185881942510605, -0.03995942324399948, 0.05376451089978218, 0.011504544876515865,
- -0.04420126974582672, 0.01787743903696537, 0.04925054311752319, 0.00617189472541213,
- 0.07757332921028137, 0.16439305245876312, -0.02414281852543354, -0.0002339297643629834,
- -0.10101070255041122, 0.05509467050433159, 0.14950858056545258, 0.057182759046554565,
- 0.007165396120399237, 0.0031039705500006676, -0.05136263743042946,
- -0.0043523311614990234, -0.052365511655807495, -0.0912642553448677,
- -0.01019843015819788, -0.07442539185285568, 0.08498237282037735, 0.0380532406270504,
- -0.02656768076121807, -0.11591271311044693, -0.016461966559290886, -0.03487793728709221,
- 0.04449174180626869, 0.11997119337320328, -0.07930697500705719, 0.035456907004117966,
- -0.007411696016788483, -0.02380119264125824, 0.0183554794639349, -0.09119188785552979,
- 0.014948715455830097, -0.0482076071202755, 0.03986498340964317, 0.04748828336596489,
- 0.06241694092750549, -0.01849626563489437, 0.1153937578201294, -0.11728308349847794,
- 0.06565085798501968, -0.0034630403388291597, -0.05240751802921295,
- -0.009573617950081825, -0.032844457775354385, 0.002303979592397809,
- 0.004433868452906609, -0.0383785218000412, -0.011709972284734249, -0.01451983954757452,
- -0.047879789024591446, -0.07683480530977249, -0.09067317843437195, 0.006223061587661505,
- -0.10968533158302307, 0.050372764468193054, -0.12421264499425888, -0.00872517004609108,
- -0.0316723994910717, -0.08297573775053024, -0.0243979524821043, 0.013362823985517025,
- 0.0011744644725695252, -0.1572577804327011, 0.0014477022923529148, 0.02369646169245243,
- 0.05608344450592995, -0.03260942921042442, -0.09336850047111511, -0.0032657310366630554,
- 0.04679843783378601, 0.021114662289619446, -0.019039010629057884, -0.02538180537521839,
- -0.100612111389637, 0.02825859747827053, -0.08721283078193665, -0.29269298911094666,
- 0.0655999407172203, 0.03200765326619148, 0.060137588530778885, -0.019628217443823814,
- -0.09107322245836258, 0.043370265513658524, 0.02192956767976284, -0.07339400798082352,
- 0.08823218196630478, -0.06908684223890305, 0.026814600452780724, -0.08131705969572067,
- -0.11031961441040039, -0.0455600768327713, -0.03629661723971367, -0.04036596417427063,
- 0.026065802201628685, -0.04724147543311119, -0.08865741640329361, -0.14492732286453247,
- 0.05051624774932861, -0.034857138991355896, 0.005532696843147278, 0.01803281158208847,
- 0.05509844422340393, -0.04526977613568306, -0.07365284115076065, 0.06493646651506424,
- 0.09026630967855453, 0.05945056676864624, -0.08721693605184555, 0.028904279693961143,
- 0.09452149271965027, 0.025717884302139282, 0.10515978187322617, -0.0053404648788273335,
- 0.03843886777758598, -0.07528871297836304, 0.09926562756299973, 0.03703901171684265,
- 0.18282262980937958, 0.006748440209776163, -0.057367682456970215, 0.041483715176582336,
- 0.12075471132993698, 0.05291016027331352, 0.014554359018802643, -0.016892872750759125,
- -0.026577278971672058, -0.017396308481693268, -0.01364810299128294, 0.10883122682571411,
- -0.03691752254962921, -0.01978052407503128, -0.05257308855652809, -0.018795035779476166,
- -0.04906952381134033, -0.07676652073860168, 0.21990014612674713, 0.013943016529083252,
- 0.025900842621922493, 0.033605579286813736, -0.06139210984110832, -0.01301587838679552,
- -0.08368390053510666, -0.10858291387557983, -0.00997170526534319, 0.003133864374831319,
- 0.06504645198583603, -0.052214715629816055, -0.1113094910979271, -0.02028108574450016,
- -0.0018768577137961984, 0.03433828428387642, 0.16885145008563995, -0.03561076149344444,
- 0.021519839763641357, -0.005917972419410944, 0.13850517570972443, 0.04430806264281273,
- -0.009610306471586227, 0.04869578406214714, 0.10445904731750488, -0.018896358087658882,
- 0.047540199011564255, -0.000030514163881889544, -0.08269447833299637,
- -0.0301973819732666, 0.1345333755016327, -0.017139805480837822, 0.10215296596288681,
- 0.03891586884856224, -0.03914390876889229, -0.05191633477807045, 0.02330092526972294,
- -0.04577045515179634, 0.013486712239682674, -0.4144478738307953, -0.04149310290813446,
- 0.10121286660432816, 0.0514538399875164, -0.0027130451053380966, 0.0873224139213562,
- 0.011231168173253536, -0.047735538333654404, -0.02605576626956463, -0.1144460067152977,
- 0.10511413961648941, 0.04526256397366524, 0.05587267503142357, -0.0458504855632782,
- -0.019291110336780548, 0.10122566670179367, -0.019038813188672066, 0.04539888724684715,
- 0.07552159577608109, -0.23509030044078827, 0.0037251438479870558, -0.02860260009765625,
- 0.06790663301944733, 0.026277713477611542, 0.04193805158138275, 0.11019591242074966,
- -0.06839486211538315, 0.052762944251298904, 0.051748234778642654, -0.01908527873456478,
- 0.036754000931978226, -0.03696337714791298, -0.006715591996908188, 0.12404680252075195,
- 0.11710914969444275, 0.08417163044214249, -0.021968089044094086, 12.14768123626709,
- 0.02631949447095394, 0.0359933115541935, -0.13058175146579742, -0.00930823851376772,
- -0.04845801368355751, 0.02984495460987091, -0.13313943147659302, 0.048724252730607986,
- 0.1506994217634201, -0.019011864438652992, -0.08809980750083923, -0.04542754963040352,
- -0.07617991417646408, 0.029350683093070984, -0.04792679846286774, -0.09007104486227036,
- -0.01190689206123352, 0.012430417351424694, -0.057762786746025085,
- -0.040771275758743286, 0.046506281942129135, 0.09670430421829224, -0.002796340733766556,
- -0.03961898013949394, -0.02427932620048523, 0.01700788363814354, -0.004340650979429483,
- 0.047171950340270996, 0.0053153447806835175, 0.0025067601818591356,
- -0.006140113342553377, 0.08231689035892487, -0.028298383578658104, 0.04971691593527794,
- 0.07689487189054489, 0.09162720292806625, 0.01957310177385807, 0.03476053476333618,
- 0.06478720158338547, -0.020903175696730614, 0.03368912264704704, 0.045757170766592026,
- 0.055668365210294724, 0.08349913358688354, 0.08251190185546875, 0.05860653147101402,
- 0.1099366620182991, 0.015329535119235516, 0.053559135645627975, 0.10050803422927856,
- 0.032347094267606735, 0.1276332139968872, 0.017626583576202393, -0.022499486804008484,
- 0.04194829985499382, -0.004638653248548508, -0.09289351850748062, 0.08967506885528564,
- 0.04165269061923027, -0.1108139231801033, 0.15238012373447418, 0.02962718904018402,
- 0.10248342901468277, 0.05826745554804802, 0.04853392764925957, 0.06433352082967758,
- 0.05680010840296745, -0.17353560030460358, -0.09024494141340256, 0.04153263196349144,
- -0.11543688923120499, -0.09873005002737045, 0.11469421535730362, 0.081972636282444,
- -0.0606171078979969, 0.054037317633628845, -0.007773226127028465,
- -0.0028403569012880325, -0.026732975617051125, -0.017031850293278694,
- 0.04318287596106529, 0.00022651503968518227, -0.0034271094482392073, 0.079427070915699,
- 0.020092613995075226, 0.01962880976498127, 0.10730040073394775, -0.062105339020490646,
- -0.053647223860025406, -0.053337957710027695, 0.06190481409430504,
- -0.00033858628012239933, -0.05923837423324585, 0.043931081891059875,
- -0.08724967390298843, 0.05163174495100975, -0.18873567879199982, 0.06453321129083633,
- 0.10307382792234421, -0.1088319644331932, -0.01265533547848463, -0.05225839093327522,
- 0.06590614467859268, 0.02453748881816864, 0.01730908453464508, -0.05742232874035835,
- 0.004553691018372774, -0.00656590610742569, 0.05448012426495552, -0.015437704510986805,
- 0.09325653314590454, 0.08821197599172592, -0.0497085340321064, 0.002162773860618472,
- 0.04679374769330025, -0.016367342323064804, -0.03837910667061806, 0.056626636534929276,
- 0.05433213710784912, -0.05722277984023094, -0.055222827941179276, -0.012457390315830708,
- -0.04342127963900566, 0.0009944327175617218, -0.0302935391664505, 0.005548583809286356,
- 0.05706602334976196, -0.0398254431784153, -0.01783507876098156, 0.0668802335858345,
- 0.08384128659963608, 0.11272115260362625, -0.0033235084265470505, 0.06675469130277634,
- -0.04588206484913826, -0.02975321374833584, 0.03632884845137596, 0.018672805279493332,
- 0.04474304988980293, -0.044414255768060684, -0.024934805929660797, -0.1081877127289772,
- -0.14129222929477692, 0.06803341954946518, 0.11964485794305801, 0.044007111340761185,
- 0.03209344670176506, -0.009866762906312943, -0.06633046269416809, -0.0599718876183033,
- 0.11145090311765671, 0.051348913460969925, 0.025212353095412254, 0.07803580909967422,
- -0.04043328016996384, -0.04677477106451988, 0.08082558959722519, -0.04355107620358467,
- 0.008829816244542599, 0.03726677969098091, -0.11611908674240112, 0.0839461013674736,
- 0.12392900139093399, 0.07217755913734436, 0.06254833936691284, 0.05555982515215874,
- 0.009174945764243603, 0.014758086763322353, -0.023755110800266266, 0.016057973727583885,
- -0.048466552048921585, -0.08122200518846512, -0.10319546610116959, 0.022983675822615623,
- 0.13186591863632202, 0.06186702847480774, -0.07189670950174332, -0.0031424546614289284,
- -0.06515427678823471
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 161,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 13,
- "similarity": 0.9975959658622742
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 40,
- "similarity": 0.9975639581680298
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 59,
- "similarity": 0.997552216053009
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Karen Hao"],
- "epoch_date_downloaded": 1663804800,
- "epoch_date_modified": 1665619200,
- "epoch_date_submitted": 1663804800,
- "flag": null,
- "report_number": 2139,
- "source_domain": "technologyreview.com",
- "submitters": ["Devon Colmer (CSET)"],
- "title": "Facebook’s ad algorithms are still excluding women from seeing jobs",
- "url": "https://www.technologyreview.com/2021/04/09/1022217/facebook-ad-algorithm-sex-discrimination"
- },
- {
- "__typename": "Report",
- "authors": ["Basileal Imana", " Aleksandra Korolova", " John Heidemann"],
- "epoch_date_downloaded": 1663804800,
- "epoch_date_modified": 1665619200,
- "epoch_date_submitted": 1663804800,
- "flag": null,
- "report_number": 2138,
- "source_domain": "arxiv.org",
- "submitters": ["Devon Colmer (CSET)"],
- "title": "Auditing for Discrimination in Algorithms Delivering Job Ads",
- "url": "https://arxiv.org/abs/2104.04502"
- },
- {
- "__typename": "Report",
- "authors": [
- "Muhammad Ali",
- "Piotr Sapiezynski",
- "Miranda Bogen",
- "Aleksandra Korolova",
- "Alan Mislove",
- "Aaron Rieke"
- ],
- "epoch_date_downloaded": 1644969600,
- "epoch_date_modified": 1644969600,
- "epoch_date_submitted": 1644969600,
- "flag": true,
- "report_number": 1530,
- "source_domain": "arxiv.org",
- "submitters": ["Anonymous"],
- "title": "Discrimination through optimization: How Facebook's ad delivery can lead to skewed outcomes",
- "url": "https://arxiv.org/abs/1904.02095"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "ets",
- "name": "ETS"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "ets",
- "name": "ETS"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "uk-home-office",
- "name": "UK Home Office"
- },
- {
- "__typename": "Entity",
- "entity_id": "uk-ets-test-takers",
- "name": "UK ETS test takers"
- },
- {
- "__typename": "Entity",
- "entity_id": "uk-ets-past-test-takers",
- "name": "UK ETS past test takers"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1531],
- "vector": [
- -0.038426537066698074, 0.032823868095874786, 0.030652310699224472, -0.1011267900466919,
- 0.10543202608823776, -0.07251783460378647, 0.010196219198405743, 0.06344471126794815,
- 0.08590760827064514, -0.05025283247232437, 0.04318656772375107, 0.042119137942790985,
- 0.041887056082487106, -0.05122082307934761, 0.055461060255765915, -0.10666497051715851,
- -0.0890398621559143, -0.015072738751769066, -0.0698636844754219, -0.03702700883150101,
- -0.09804552793502808, 0.0671985000371933, -0.01400667242705822, 0.09808938950300217,
- -0.05526275187730789, 0.01377377100288868, 0.027936633676290512, 0.08342833817005157,
- -0.030597705394029617, -0.02261265739798546, -0.030808402225375175, 0.02533070556819439,
- 0.08293208479881287, 0.011159335263073444, -0.025043457746505737, 0.10503975301980972,
- -0.014558643102645874, -0.040215421468019485, -0.025034746155142784,
- 0.008293705061078072, 0.024641841650009155, 0.15766417980194092, 0.005354184657335281,
- 0.007038118317723274, 0.00948441494256258, -0.06275805830955505, -0.01236872747540474,
- 0.06631822884082794, -0.011482213623821735, -0.0008598737185820937,
- 0.00048479335964657366, 0.07911728322505951, 0.004757110029459, 0.041923679411411285,
- -0.10893168300390244, 0.0296853668987751, 0.04174649715423584, 0.010927587747573853,
- 0.01474407222121954, -0.12740294635295868, 0.05631880834698677, -0.20954853296279907,
- -0.13923947513103485, -0.11168555915355682, 0.08731362968683243, -0.10116297751665115,
- -0.04568694904446602, 0.000014269721759774256, 0.03959605470299721, 0.08352674543857574,
- 0.09363424777984619, 0.008935365825891495, -0.010962274856865406, -0.01842726767063141,
- 0.0233494620770216, -0.01319609023630619, 0.008622179739177227, 0.15396134555339813,
- -0.10452429205179214, -0.016129739582538605, 0.11751104891300201, -0.10036010295152664,
- 0.3349023759365082, -0.04826066642999649, -0.006354597397148609, -0.019651364535093307,
- 0.08524193614721298, 0.007117297034710646, 0.05297483876347542, 0.000747264944948256,
- 0.0186916496604681, 0.016948966309428215, -0.08547378331422806, 0.05256064236164093,
- 0.07403960078954697, 0.017071684822440147, -0.06775054335594177, 0.09952264279127121,
- 0.002340698381885886, -0.060477837920188904, 0.006071155890822411, -0.05134132504463196,
- 0.07155977189540863, 0.08718366175889969, -0.02294852025806904, 0.011267565190792084,
- 0.032475944608449936, -0.014460652135312557, 0.0734458640217781, -0.010312177240848541,
- 0.020265944302082062, 0.03838157653808594, 0.0807378962635994, 0.057970769703388214,
- 0.03739674389362335, -0.06310539692640305, 0.011866718530654907, 0.11376502364873886,
- 0.09731188416481018, -0.0008081780397333205, 0.014368242584168911, 0.07632675766944885,
- 0.0465504452586174, -0.02285843901336193, 0.0495787113904953, 0.0029265957418829203,
- -0.06274672597646713, -0.030831171199679375, -0.04008207470178604, 0.05606973171234131,
- -0.06057916209101677, -0.16668565571308136, 0.017392076551914215, 0.07333123683929443,
- 0.02974720112979412, -0.046659357845783234, 0.031036581844091415, 0.007618731819093227,
- 0.07044782489538193, -0.012054858729243279, -0.05341075733304024, 0.033486850559711456,
- -0.02075856365263462, 0.06989160180091858, 0.1442379355430603, 0.04025077819824219,
- -0.08735472708940506, -0.029491152614355087, -0.020695868879556656,
- -0.015508870594203472, 0.10539077967405319, -0.08801286667585373, -0.03649291396141052,
- 0.00789010338485241, 0.028495101258158684, 0.6496574282646179, 0.07683238387107849,
- 0.13751132786273956, 0.03020976297557354, 0.03383968770503998, 0.15439671277999878,
- 0.02827097289264202, 0.07993254065513611, -0.026771072298288345, -0.08613337576389313,
- 0.12477611005306244, -0.04725812003016472, -0.0345207042992115, 0.02862650342285633,
- 0.024856561794877052, 0.06061417981982231, -0.013460979796946049, 0.05282260850071907,
- -0.03917185589671135, -0.12980952858924866, -0.024980386719107628, 0.027182631194591522,
- 0.0053128330036997795, -0.09187101572751999, -0.04404506832361221, 0.06804097443819046,
- 0.09908992052078247, -0.07964402437210083, -0.013247908093035221, -0.07603911310434341,
- 0.01428583450615406, 0.04723816365003586, 0.05543775483965874, -0.006633121520280838,
- 0.03662433102726936, 0.014241285622119904, -0.02750239148736, 0.04347241669893265,
- -0.04611166939139366, 0.05806805193424225, 0.09076500684022903, 0.002576543251052499,
- -0.025812359526753426, 0.05393045023083687, -0.07871927320957184, -0.02387271448969841,
- 0.022378331050276756, 0.09329347312450409, -0.13233980536460876, -0.04003303870558739,
- -0.006899882573634386, 0.03042403608560562, 0.08083734661340714, 0.03313231095671654,
- -0.05040658265352249, -0.03735005483031273, 0.053873851895332336, 0.07601438462734222,
- 0.07343623042106628, 0.019887231290340424, 0.007798518054187298, 0.06647194921970367,
- 0.09883155673742294, 0.019623873755335808, -0.007979177869856358, 0.01606050319969654,
- 0.06795303523540497, -0.05648417770862579, 0.07156523317098618, 0.04744367673993111,
- 0.017754044383764267, -0.03645838797092438, -0.023591935634613037, 0.04364556446671486,
- 0.016885630786418915, -0.0637056827545166, 0.053387247025966644, -0.017833255231380463,
- -0.06994754076004028, 0.10352596640586853, -0.07689861953258514, -0.0538935549557209,
- -0.030613679438829422, -0.015157314017415047, -0.008873222395777702,
- -0.06098226457834244, 0.06734735518693924, 0.05328312888741493, 0.009549804031848907,
- 0.03038954548537731, 0.033779822289943695, 0.06534445285797119, 0.03520744666457176,
- 0.08672744035720825, 0.020194441080093384, -0.025138230994343758, 0.025829782709479332,
- 0.003861264791339636, 0.013626680709421635, 0.06648541241884232, 0.04641670361161232,
- -0.09162695705890656, 0.005772715900093317, 0.09878619015216827, -0.07509955763816833,
- -0.02744169905781746, -0.0035617973189800978, 0.03290892392396927,
- -0.026093346998095512, -0.027855757623910904, -0.06947019696235657,
- -0.07832080870866776, -0.016814174130558968, -0.007975748740136623,
- -0.07522836327552795, 0.02140001207590103, -0.07570765167474747, -0.04869457706809044,
- -0.027328649535775185, 0.06653449684381485, 0.017294812947511673, 0.011955010704696178,
- 0.10696038603782654, -0.03277931734919548, 0.019958551973104477, 0.009710769169032574,
- -0.13238228857517242, -0.10326159000396729, -0.00805908814072609, -0.052626870572566986,
- 0.01241433247923851, 0.0032743015326559544, -0.018684087321162224, 0.04625557363033295,
- 0.09400632232427597, 0.014325492084026337, 0.007522486615926027, -0.03583628684282303,
- 0.06944943964481354, -0.05098790302872658, 0.01664602756500244, 0.10473714768886566,
- -0.04387620836496353, 0.011912789195775986, -0.012593082152307034, -0.09925366938114166,
- -0.04188846796751022, -0.03948734328150749, -0.05714840814471245, 0.004812145140022039,
- 0.007011184003204107, 0.011453349143266678, 0.002570107113569975, -0.11239463090896606,
- 0.04644390940666199, -0.1034001037478447, -0.030118504539132118, -0.05281299725174904,
- 0.116326242685318, 0.09607245773077011, -0.001677370397374034, -0.015070556662976742,
- -0.021769806742668152, 0.030240826308727264, -0.036535218358039856,
- -0.0013442456256598234, 0.0905580073595047, 0.01811940036714077, -0.012449695728719234,
- -0.020255841314792633, 0.07009405642747879, 0.052268266677856445, -0.006712467409670353,
- 0.049937088042497635, 0.4490867257118225, -0.23727460205554962, 0.07462373375892639,
- 0.0482511930167675, 0.013111907988786697, 0.06326593458652496, -0.004271895624697208,
- 0.04985713213682175, 0.12869302928447723, 0.10634799301624298, 0.13638995587825775,
- -0.07646461576223373, -0.05888761579990387, -0.11945818364620209, 0.0906609445810318,
- 0.027284761890769005, -0.025506963953375816, -0.008362958207726479,
- -0.09271640330553055, -0.07597921788692474, 0.02498818002641201, -0.02446637488901615,
- 0.03714467212557793, 0.12922538816928864, -0.02840162254869938, 0.007089851889759302,
- -0.014620838686823845, -0.049918852746486664, -0.01595366559922695,
- 0.042683299630880356, 0.006910108961164951, 0.08201742172241211, -0.022743701934814453,
- 0.0286310575902462, -0.08831387013196945, -0.02161911502480507, -0.05507010221481323,
- -0.07993346452713013, 0.15551170706748962, -0.02138628624379635, -0.0053426725789904594,
- 0.046102218329906464, 0.048978570848703384, 0.03830448165535927, -0.041028447449207306,
- -0.05184424668550491, 0.0188633780926466, 0.06646479666233063, -0.009043136611580849,
- 0.043754126876592636, 0.13801142573356628, -0.07841900736093521, -0.025030234828591347,
- -0.06780800223350525, 0.033543217927217484, 0.1542632281780243, -0.0014950551558285952,
- -0.02403249219059944, 0.021961282938718796, -0.04739202558994293, 0.0115711260586977,
- -0.017509065568447113, -0.11619946360588074, -0.027709925547242165,
- 0.007066539954394102, 0.08748330175876617, 0.01971307396888733, -0.07079973071813583,
- -0.1428535282611847, 0.025841085240244865, -0.07366333156824112, 0.004555286839604378,
- 0.06513382494449615, -0.05169546976685524, 0.08673926442861557, -0.04248457029461861,
- -0.006712648551911116, -0.04781516268849373, -0.0339781790971756, -0.051911432296037674,
- -0.0708853080868721, 0.03440246358513832, 0.017112795263528824, 0.04412652924656868,
- -0.015489109791815281, 0.10688215494155884, -0.10238315910100937, 0.05532269552350044,
- 0.03928329423069954, -0.022135766223073006, 0.08901887387037277, -0.0032974393106997013,
- 0.01203140802681446, 0.023064006119966507, -0.008810402825474739, 0.007458421867340803,
- 0.01422459539026022, 0.0293513722717762, -0.1179179772734642, 0.012879758141934872,
- -0.009165851399302483, -0.11045119166374207, 0.03174927085638046, 0.033904410898685455,
- -0.05325460061430931, -0.012671463191509247, -0.03198450058698654, 0.03364080935716629,
- 0.0320071205496788, 0.00735668558627367, -0.1731831282377243, -0.10858852416276932,
- -0.019244950264692307, 0.05602945014834404, 0.04735879600048065, 0.029746199026703835,
- 0.01742093451321125, 0.01600954309105873, 0.07328956574201584, -0.0329110324382782,
- -0.03943128138780594, -0.0474073626101017, -0.016131386160850525, -0.013777553103864193,
- -0.5676761269569397, 0.07348090410232544, -0.015356404706835747, -0.016131196171045303,
- 0.04330801963806152, -0.05554283410310745, 0.03197860345244408, -0.022319935262203217,
- -0.05172426998615265, 0.05876273289322853, -0.03848208114504814, 0.07150194048881531,
- 0.05064716562628746, -0.034414589405059814, -0.011899122036993504,
- -0.009585960768163204, -0.021041586995124817, 0.09199567884206772, -0.05667348578572273,
- -0.11243886500597, -0.08209872245788574, 0.017001215368509293, -0.038087159395217896,
- 0.05707667022943497, 0.04030604660511017, -0.01165763195604086, -0.08441832661628723,
- -0.04089666157960892, 0.07345766574144363, 0.0822596326470375, 0.0216190367937088,
- -0.032514121383428574, 0.030362937599420547, 0.07011660188436508, -0.014422927983105183,
- 0.09435658901929855, 0.031214209273457527, -0.08957953751087189, -0.04893463850021362,
- 0.08839234709739685, 0.00743397232145071, 0.18742138147354126, -0.007470946758985519,
- 0.0064297947101294994, 0.0634220540523529, 0.15635286271572113, -0.054089710116386414,
- 0.01076009962707758, -0.052580296993255615, 0.03446072340011597, 0.08327612280845642,
- 0.05576711520552635, 0.07029535621404648, -0.06316226720809937, -0.006037812680006027,
- -0.04741886258125305, 0.012211870402097702, -0.033330902457237244, -0.04557567462325096,
- 0.23406913876533508, 0.024735748767852783, 0.07190842926502228, -0.04384260252118111,
- -0.09665635973215103, 0.004868646152317524, -0.05128251761198044, -0.12165354192256927,
- -0.022432886064052582, 0.023758070543408394, 0.017434334382414818,
- -0.009243298321962357, -0.13859139382839203, -0.05394746735692024, 0.033687345683574677,
- 0.01626024767756462, 0.03216046839952469, -0.026392001658678055, 0.10731867700815201,
- -0.05254711955785751, 0.07480499148368835, 0.0548112690448761, 0.054411131888628006,
- 0.0292191281914711, 0.11527952551841736, 0.02462410181760788, -0.033872008323669434,
- -0.0793011486530304, -0.08264639973640442, 0.021462956443428993, 0.15980811417102814,
- -0.0659313052892685, 0.08216883987188339, 0.026380162686109543, -0.07744023203849792,
- -0.046859387308359146, -0.018123598769307137, -0.006946934852749109,
- 0.03411286696791649, -0.45750653743743896, -0.05335932970046997, 0.17545431852340698,
- -0.0017089452594518661, 0.007624662481248379, 0.03542960435152054, -0.02335280179977417,
- -0.05983343720436096, -0.00616092886775732, -0.08948265016078949, 0.2049720734357834,
- -0.03126863017678261, 0.07087994366884232, -0.07413757592439651, 0.03576295077800751,
- 0.08264332264661789, -0.03184613212943077, -0.03653380274772644, 0.05081295222043991,
- -0.2280573844909668, 0.043539609760046005, -0.017005575820803642, 0.0797090083360672,
- 0.03462687507271767, 0.03470718488097191, 0.10404232144355774, -0.02248823083937168,
- -0.000675133487675339, 0.07448944449424744, -0.04188215360045433, 0.037036992609500885,
- 0.051754023879766464, -0.05366300791501999, 0.05142049863934517, 0.0525718629360199,
- 0.13143090903759003, -0.08122725039720535, 11.903685569763184, 0.07057145237922668,
- 0.04961918666958809, -0.020077671855688095, 0.011750881560146809, -0.07152126729488373,
- 0.03604823350906372, -0.0752420723438263, 0.03852834925055504, 0.1135103702545166,
- 0.026640988886356354, -0.016254575923085213, -0.0291035957634449, -0.07188725471496582,
- 0.00748770497739315, 0.07042299211025238, -0.012058182619512081, -0.0396847128868103,
- 0.05017045512795448, -0.03247428685426712, -0.03297876939177513, 0.02954661287367344,
- 0.03497965633869171, 0.04239261895418167, -0.08221124857664108, -0.002992010675370693,
- -0.007397095672786236, -0.033110231161117554, 0.027093980461359024,
- -0.013675310648977757, -0.09964747726917267, -0.01143374852836132, 0.04789212346076965,
- 0.01443601306527853, 0.04141458496451378, -0.03684699907898903, 0.07590165734291077,
- -0.004965646658092737, -0.00300613883882761, 0.08684941381216049, 0.030482729896903038,
- 0.01094994880259037, 0.012655354104936123, 0.0750136449933052, 0.06549440324306488,
- 0.04434675723314285, 0.04010682553052902, 0.023208322003483772, 0.057701509445905685,
- 0.07332005351781845, 0.09811427444219589, 0.018134208396077156, 0.13352683186531067,
- -0.021533994004130363, 0.04323507845401764, 0.0666474997997284, 0.03686518594622612,
- -0.02959965541958809, 0.07895839959383011, 0.05463419482111931, -0.045504696667194366,
- 0.1262703239917755, 0.03711502254009247, 0.1700185388326645, -0.03816407173871994,
- 0.09314119815826416, 0.10462840646505356, 0.08852877467870712, -0.1338096261024475,
- -0.020076125860214233, -0.057193245738744736, -0.09961593896150589,
- -0.020566100254654884, -0.010197075083851814, 0.0040291366167366505,
- -0.05824446305632591, 0.0019009480020031333, -0.03578055277466774, 0.01153527945280075,
- -0.04475892707705498, -0.02422504872083664, 0.007698938716202974, -0.08320721238851547,
- -0.0009752761106938124, 0.14832550287246704, 0.01305171474814415, 0.09825203567743301,
- 0.11677905172109604, 0.028411900624632835, -0.10109402239322662, -0.061661288142204285,
- 0.1353946328163147, 0.014088553376495838, -0.04542776942253113, -0.048469651490449905,
- -0.023590173572301865, -0.022494805976748466, -0.14067165553569794,
- 0.004486162681132555, 0.17258673906326294, -0.11611975729465485, 0.0027378930244594812,
- -0.04778071492910385, 0.11988795548677444, 0.00931974034756422, -0.012582940049469471,
- -0.05863732844591141, 0.036639504134655, -0.050307746976614, -0.038152117282152176,
- -0.0904173031449318, 0.057908013463020325, 0.0962451919913292, -0.022756686434149742,
- 0.08597403764724731, 0.04846656695008278, -0.0217632744461298, -0.05957264453172684,
- 0.05979139730334282, 0.016396446153521538, -0.08400611579418182, 0.003089149249717593,
- 0.012612487189471722, -0.01140426006168127, -0.006260760128498077, -0.0641360804438591,
- -0.004951776936650276, 0.047134485095739365, -0.03739575669169426, 0.010441386140882969,
- 0.02394774928689003, 0.06609249860048294, 0.04815002530813217, -0.022921884432435036,
- 0.03268814459443092, -0.061026643961668015, -0.07333272695541382, 0.04610668867826462,
- 0.039873361587524414, 0.0473647266626358, -0.0894349068403244, -0.08066613972187042,
- 0.03991246595978737, -0.12229333817958832, -0.07202383875846863, 0.13670459389686584,
- 0.02276673913002014, 0.07042942941188812, 0.028671154752373695, -0.07906409353017807,
- -0.0633898377418518, 0.06166154891252518, -0.014242059551179409, -0.04287843778729439,
- 0.046868789941072464, -0.04837719351053238, 0.015490553341805935, 0.10829538851976395,
- -0.05361860990524292, -0.017290033400058746, -0.032794415950775146,
- -0.005020657554268837, 0.08752364665269852, 0.003088601864874363, 0.05548688396811485,
- -0.07512707263231277, 0.03974023461341858, 0.05264032632112503, -0.08919206261634827,
- 0.048764199018478394, 0.049021221697330475, -0.0615280419588089, -0.10851427167654037,
- -0.07157909125089645, 0.005891535896807909, 0.09281543642282486, 0.020873073488473892,
- -0.07951101660728455, -0.04023685306310654, -0.018489297479391098
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 162,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 189,
- "similarity": 0.9979352355003357
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 87,
- "similarity": 0.997539758682251
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 43,
- "similarity": 0.996450662612915
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Ed Main", "Richard Watson"],
- "epoch_date_downloaded": 1645142400,
- "epoch_date_modified": 1645142400,
- "epoch_date_submitted": 1645142400,
- "flag": null,
- "report_number": 1531,
- "source_domain": "bbc.com",
- "submitters": ["Anonymous"],
- "title": "The English test that ruined thousands of lives",
- "url": "https://www.bbc.com/news/uk-60264106"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "facebook",
- "name": "Facebook"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "facebook",
- "name": "Facebook"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "facebook-users-of-minority-groups",
- "name": "Facebook users of minority groups"
- },
- {
- "__typename": "Entity",
- "entity_id": "facebook-users",
- "name": "Facebook users"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1652, 1535, 1533],
- "vector": [
- -0.04010085389018059, 0.06913309544324875, 0.00606011925265193, -0.10270261019468307,
- 0.08551263809204102, -0.026876933872699738, 0.0057027810253202915, 0.08253852277994156,
- 0.05838164687156677, -0.13927681744098663, 0.006760876625776291, 0.025149337947368622,
- 0.005786504130810499, -0.06457608938217163, 0.01235243957489729, -0.08179451525211334,
- -0.09155628830194473, -0.06746944040060043, 0.01425968762487173, -0.12215539067983627,
- -0.04760260507464409, 0.002423352561891079, 0.0019411469111219049, 0.11407921463251114,
- -0.01828787662088871, 0.03294189274311066, 0.14618586003780365, 0.13908131420612335,
- -0.06646303832530975, 0.074940025806427, 0.0020549744367599487, -0.06750521808862686,
- 0.1332002431154251, 0.022969508543610573, 0.014842639677226543, 0.09307258576154709,
- 0.002759420545771718, -0.023308316245675087, 0.00012464325118344277,
- -0.012608197517693043, 0.010862910188734531, 0.26630520820617676, -0.023954281583428383,
- -0.004628906026482582, 0.029866458848118782, -0.01136939600110054,
- -0.003360479138791561, 0.06909576803445816, -0.0027775082271546125,
- 0.0016601625829935074, -0.025307605043053627, 0.0734163299202919, -0.029835449531674385,
- 0.045718204230070114, -0.09803038835525513, 0.09697622060775757, 0.04472431540489197,
- -0.046186309307813644, 0.0461561381816864, -0.05355799198150635, -0.038766954094171524,
- -0.25997036695480347, -0.045734863728284836, -0.06456643342971802, 0.0716538354754448,
- -0.08355753868818283, -0.0027023889124393463, 0.04175291582942009, 0.031656477600336075,
- 0.07546959072351456, 0.037066493183374405, -0.041485369205474854, -0.014125441201031208,
- 0.04904492199420929, 0.023888805881142616, -0.02221093513071537, 0.012775617651641369,
- 0.1952754408121109, -0.11922577768564224, 0.0007130551966838539, 0.11285567283630371,
- -0.10170724987983704, 0.3973604738712311, -0.004326303023844957, -0.04411611333489418,
- 0.005717266350984573, 0.08046335726976395, 0.015712838619947433, 0.023437460884451866,
- 0.036481257528066635, -0.058142807334661484, 0.053214240819215775, -0.05396473780274391,
- -0.023492543026804924, 0.06745224446058273, 0.038694459944963455,
- -0.0025763146113604307, 0.05937196686863899, -0.010638020932674408,
- -0.04326516389846802, 0.024612663313746452, -0.017163613811135292, 0.10422760993242264,
- 0.08214833587408066, -0.024997694417834282, 0.010318218730390072, 0.07178980112075806,
- -0.0628122091293335, 0.05929470434784889, -0.04803166911005974, 0.0032345515210181475,
- -0.029088281095027924, 0.05314895510673523, -0.011843201704323292, 0.04607047140598297,
- -0.03821791335940361, -0.0037036060821264982, 0.04078395664691925, 0.09968259930610657,
- 0.04001447930932045, 0.03330860286951065, 0.07237663120031357, 0.0623466856777668,
- -0.03169383481144905, -0.0252983495593071, -0.07556301355361938, -0.04380595311522484,
- -0.0418928824365139, -0.027785038575530052, 0.05817056819796562, -0.07868868857622147,
- -0.17769384384155273, 0.015067157335579395, 0.11440250277519226, -0.030605999752879143,
- -0.04215562343597412, 0.024861717596650124, -0.048235226422548294, 0.03583822771906853,
- -0.011945751495659351, -0.016239674761891365, 0.05686364695429802, 0.019362377002835274,
- 0.038701996207237244, 0.11370068043470383, 0.04517403244972229, -0.041109975427389145,
- -0.07029501348733902, 0.026376238092780113, -0.010408811271190643, 0.11284250020980835,
- -0.1645336002111435, -0.017226316034793854, -0.003580650547519326, 0.007328494917601347,
- 0.7215891480445862, 0.10247202962636948, 0.17274780571460724, 0.00878708716481924,
- -0.049638781696558, 0.18642325699329376, -0.010777789168059826, 0.09267967194318771,
- -0.11271101981401443, -0.05319199338555336, 0.04028492793440819, -0.08794114738702774,
- -0.056881144642829895, 0.020168380811810493, -0.009090680629014969, 0.11609518527984619,
- 0.06324159353971481, 0.09214205294847488, 0.03629342094063759, -0.11430982500314713,
- -0.02661254070699215, 0.06924758851528168, -0.027428166940808296, -0.12869040668010712,
- -0.029573893174529076, 0.061572492122650146, 0.1097593680024147, -0.09249904751777649,
- 0.01751924306154251, -0.06364326924085617, 0.03577001392841339, -0.020960232242941856,
- 0.038859736174345016, -0.019000807777047157, 0.058892954140901566,
- -0.008413024246692657, 0.06747417896986008, 0.022837787866592407, -0.1157568097114563,
- -0.017248453572392464, 0.11102012544870377, -0.020807085558772087, -0.03979161009192467,
- 0.12196066975593567, -0.07463593780994415, 0.03105105273425579, 0.02873368375003338,
- 0.15295541286468506, -0.13780350983142853, -0.04366976395249367, -0.027497710660099983,
- -0.05971991643309593, 0.0395575687289238, -0.025108255445957184, -0.05154377222061157,
- -0.06071718409657478, 0.08438194543123245, 0.034303609281778336, 0.07872515171766281,
- 0.05572493001818657, -0.04023686423897743, -0.0009634357993490994, 0.010983590967953205,
- 0.0355575866997242, -0.06605133414268494, 0.07143522053956985, 0.04345610365271568,
- -0.05504119396209717, -0.047312211245298386, 0.030334657058119774, 0.08259952068328857,
- 0.005766016896814108, -0.018253309652209282, 0.055582720786333084, 0.02023470401763916,
- -0.05415784940123558, 0.022483544424176216, 0.029594087973237038, -0.03193438798189163,
- 0.09970221668481827, -0.07114435732364655, -0.056444812566041946, -0.040630195289850235,
- -0.0039395964704453945, 0.026390671730041504, -0.00488728191703558, 0.06538739800453186,
- 0.10339730232954025, 0.0752221867442131, 0.03179395571351051, 0.05227011442184448,
- 0.06447760760784149, 0.014622625894844532, -0.016062593087553978, 0.0937587097287178,
- 0.005672382190823555, -0.06998191773891449, -0.012366575188934803, 0.012474852614104748,
- 0.03047199547290802, 0.020280547440052032, -0.054988861083984375, -0.052763402462005615,
- -0.06455304473638535, -0.022490546107292175, -0.0748039186000824, -0.06756442040205002,
- 0.04156101867556572, 0.04530477523803711, -0.044660408049821854, -0.09378745406866074,
- -0.07816987484693527, 0.004877792205661535, 0.08065077662467957, -0.02366333268582821,
- -0.06505032628774643, -0.13113851845264435, 0.025687435641884804, -0.05774086341261864,
- 0.05553649365901947, -0.030202100053429604, 0.03257622569799423, 0.014840662479400635,
- -0.03350084275007248, 0.0297553688287735, -0.009917800314724445,
- -0.00001260234694200335, -0.07531566917896271, -0.10452672094106674,
- -0.06438977271318436, -0.0064289686270058155, -0.005740898195654154,
- -0.02092888206243515, 0.04722803831100464, 0.028442487120628357, 0.0233807023614645,
- -0.008949792012572289, -0.042021822184324265, 0.07484094053506851, -0.03271080181002617,
- -0.02504175901412964, 0.09031758457422256, -0.05665064975619316, 0.029793724417686462,
- -0.006556923966854811, -0.04339616373181343, -0.03533157333731651, 0.015373554080724716,
- -0.04151243343949318, 0.08675962686538696, 0.001754164695739746, 0.02160114049911499,
- -0.05330421030521393, -0.01579536497592926, 0.057833075523376465, -0.09488231688737869,
- -0.11270648241043091, -0.024234255775809288, 0.12813934683799744, 0.003632662817835808,
- 0.015294570475816727, -0.030049750581383705, -0.0681629404425621, 0.035803258419036865,
- -0.030393565073609352, 0.017761854454874992, 0.01690206117928028, 0.052174609154462814,
- -0.028383968397974968, 0.0018325677374377847, 0.08350218087434769, -0.0367451049387455,
- 0.019017193466424942, 0.07535943388938904, 0.41502103209495544, -0.14234726130962372,
- 0.08461340516805649, 0.0911928042769432, -0.026471907272934914, 0.038239896297454834,
- -0.05224154517054558, 0.09220671653747559, 0.08155929297208786, 0.12743355333805084,
- 0.07655453681945801, -0.08571629971265793, 0.022664383053779602, -0.08972171694040298,
- 0.13303710520267487, -0.004734352696686983, 0.04933319613337517, 0.0046472311951220036,
- -0.07055670768022537, -0.02637437917292118, 0.023102620616555214, -0.033667758107185364,
- -0.009478372521698475, -0.00044270665966905653, -0.04801246523857117,
- 0.007053457200527191, -0.008166935294866562, 0.03386489674448967, -0.04209190607070923,
- 0.04596888646483421, -0.029151782393455505, 0.0427292101085186, -0.005806947126984596,
- 0.05532817915081978, -0.15231622755527496, 0.006058295723050833, -0.08997877687215805,
- -0.08168607950210571, 0.08890523761510849, -0.017868809401988983, 0.0655369758605957,
- 0.023020794615149498, 0.021305084228515625, 0.059079259634017944, 0.0009640318457968533,
- -0.05263328179717064, 0.03185427933931351, 0.07217895239591599, 0.023750504478812218,
- 0.10738568753004074, 0.14736290276050568, -0.05102262273430824, -0.03665892407298088,
- -0.09478161484003067, 0.058131877332925797, 0.14376090466976166, -0.002681971760466695,
- 0.006372814532369375, 0.008644113317131996, -0.030770622193813324,
- 0.0023717249277979136, -0.07430727034807205, -0.08724649995565414, -0.02452155016362667,
- -0.02121877484023571, 0.07733873277902603, 0.024315476417541504, -0.02710583060979843,
- -0.16649095714092255, -0.03172088786959648, -0.029576659202575684, 0.006392326205968857,
- 0.13719730079174042, -0.083469919860363, 0.05404549837112427, -0.007027795072644949,
- -0.011073872447013855, 0.025305910035967827, -0.08727427572011948,
- 0.00037069222889840603, -0.058682288974523544, 0.03278427571058273, 0.05700496956706047,
- 0.0459783673286438, -0.07144821435213089, 0.10106461495161057, -0.10358572006225586,
- 0.08013967424631119, -0.040080729871988297, -0.030997954308986664, 0.018338697031140327,
- -0.048079729080200195, 0.0038053933531045914, 0.04076031967997551, -0.05124326050281525,
- 0.015114721842110157, -0.017716428264975548, -0.059315428137779236,
- -0.06132273003458977, -0.0658847987651825, -0.0574946291744709, -0.09917505830526352,
- 0.010575576685369015, -0.14556752145290375, 0.011626660823822021, 0.006688516587018967,
- 0.00007695735985180363, -0.00016476400196552277, 0.03899585083127022,
- 0.02932150848209858, -0.1537671685218811, -0.003582127159461379, 0.0006557771121151745,
- 0.06359229236841202, -0.05131151154637337, -0.05948382988572121, 0.029335418716073036,
- 0.08042136579751968, 0.026498163118958473, -0.0006674521719105542, 0.045892808586359024,
- -0.06981521099805832, 0.060793813318014145, -0.10081642121076584, -0.4061650037765503,
- 0.050720829516649246, 0.01723022200167179, 0.06202445551753044, 0.0033878388348966837,
- -0.058758337050676346, 0.08979979157447815, -0.014897073619067669,
- -0.053421080112457275, 0.11070737987756729, -0.05392201617360115, 0.03377383574843407,
- -0.01063931081444025, -0.03162350505590439, -0.027239928022027016, -0.06123090162873268,
- -0.05759919062256813, 0.020733051002025604, -0.031745269894599915, -0.06555788218975067,
- -0.11165710538625717, 0.012798412702977657, -0.03527426719665527, 0.00315043400041759,
- 0.013843640685081482, 0.009072392247617245, -0.04793858900666237, -0.03281450644135475,
- 0.0638246163725853, 0.05388892814517021, 0.022143259644508362, -0.0810348317027092,
- 0.001916468725539744, 0.08339035511016846, -0.00417194003239274, 0.1508680135011673,
- 0.045009344816207886, 0.04101432487368584, -0.062348395586013794, 0.09452559798955917,
- 0.06343043595552444, 0.18687987327575684, 0.02555176056921482, 0.011557561345398426,
- 0.02905205450952053, 0.1390368789434433, 0.05261022970080376, 0.029105408117175102,
- -0.046138763427734375, 0.025176817551255226, 0.008344355039298534,
- -0.007282823324203491, 0.08750241994857788, -0.08057183772325516, 0.0022294765803962946,
- -0.06511906534433365, -0.005640432238578796, -0.0029442075174301863,
- -0.03615683317184448, 0.20549266040325165, 0.018483713269233704, 0.0026461046654731035,
- 0.044635165482759476, -0.0877310112118721, 0.015519029460847378, -0.11054866760969162,
- -0.11580786854028702, 0.010469558648765087, 0.026258409023284912, 0.02858215756714344,
- -0.033040259033441544, -0.12509042024612427, -0.006687407847493887,
- -0.024630464613437653, -0.0030720022041350603, 0.09945566207170486,
- -0.03861656412482262, 0.018485618755221367, -0.016253437846899033, 0.13158635795116425,
- 0.04305163025856018, -0.02212998829782009, 0.04440570995211601, 0.08514529466629028,
- 0.027531510218977928, 0.027138715609908104, -0.021071458235383034, -0.09739453345537186,
- -0.03141186758875847, 0.17553125321865082, -0.025289347395300865, 0.16383904218673706,
- 0.047343600541353226, -0.043070148676633835, -0.0520542711019516, -0.012070088647305965,
- -0.019508956000208855, 0.0320521779358387, -0.4128786623477936, -0.007818697951734066,
- 0.11412761360406876, 0.020185979083180428, 0.022977076470851898, 0.09607607126235962,
- 0.03399045392870903, -0.06000887230038643, -0.07441822439432144, -0.0754653736948967,
- 0.25226032733917236, -0.002564065158367157, 0.05312797799706459, -0.13957242667675018,
- -0.004195607267320156, 0.08746561408042908, -0.03813584893941879, 0.0047969636507332325,
- 0.06838501989841461, -0.24747073650360107, -0.03288331255316734, -0.03922267630696297,
- 0.1242499127984047, 0.009823217988014221, 0.035288989543914795, 0.08355509489774704,
- -0.03913326561450958, 0.01031490508466959, 0.02706010639667511, -0.03238378465175629,
- 0.06465159356594086, 0.020507626235485077, -0.0009609175031073391, 0.12064212560653687,
- 0.10976574569940567, 0.0425400473177433, -0.052163153886795044, 11.89716625213623,
- 0.0680924504995346, 0.05776461586356163, -0.1109471544623375, 0.0009300671517848969,
- -0.03889463469386101, 0.012913491576910019, -0.10657665878534317, 0.05500825121998787,
- 0.10850366204977036, -0.021903960034251213, -0.05865165591239929, -0.059351712465286255,
- -0.09533677250146866, 0.010121060535311699, -0.03589896857738495, -0.07701880484819412,
- -0.019470734521746635, 0.051794324070215225, -0.02371957153081894, -0.07152458280324936,
- 0.04916590079665184, 0.05816776677966118, 0.003781211795285344, -0.0510069914162159,
- 0.05976122245192528, 0.01947585493326187, -0.02643141709268093, -0.0020801564678549767,
- 0.03160770982503891, 0.021928226575255394, 0.05787503719329834, 0.08383306115865707,
- 0.02955424226820469, 0.02055862359702587, 0.06011487916111946, 0.0789993479847908,
- 0.034829579293727875, 0.034704744815826416, 0.06545271724462509, 0.011197510175406933,
- 0.025420822203159332, 0.01331763993948698, 0.05589352175593376, 0.054601144045591354,
- 0.05408751964569092, 0.028532901778817177, 0.13711529970169067, 0.01122572273015976,
- 0.06864169985055923, 0.10484393686056137, -0.0253759678453207, 0.09735798835754395,
- 0.0043688928708434105, -0.014951365999877453, 0.08049282431602478, -0.05972249433398247,
- -0.08166005462408066, 0.08837930113077164, 0.01688515953719616, -0.04878438636660576,
- 0.08694052696228027, 0.009621591307222843, 0.09818229079246521, 0.011125985532999039,
- 0.07525938749313354, 0.06066050007939339, 0.08157741278409958, -0.11821252107620239,
- -0.10989901423454285, 0.011736825108528137, -0.1104760468006134, -0.0646197721362114,
- 0.0755155012011528, 0.12490242719650269, -0.025932682678103447, 0.061288654804229736,
- -0.016350725665688515, 0.03750811889767647, -0.048658620566129684,
- -0.019141772761940956, 0.08510126918554306, -0.020174717530608177, 0.007244924549013376,
- 0.04207274690270424, 0.031135598197579384, 0.06811029464006424, 0.09245762974023819,
- -0.028022602200508118, -0.07529423385858536, -0.07853066921234131, 0.12117352336645126,
- -0.0037811174988746643, -0.038576386868953705, -0.004043357912451029,
- -0.06928030401468277, 0.03574791178107262, -0.17538000643253326, 0.09157737344503403,
- 0.10660835355520248, -0.10799390077590942, -0.019267501309514046, -0.004140867386013269,
- 0.07460075616836548, -0.003734932979568839, -0.01151362806558609, -0.09380984306335449,
- 0.010397250764071941, 0.015138626098632812, 0.035387177020311356, -0.02461247146129608,
- 0.04864916577935219, 0.07599469274282455, -0.03952837362885475, 0.024396924301981926,
- 0.07524242997169495, -0.07607924938201904, -0.03005843795835972, 0.08050548285245895,
- -0.012759915553033352, -0.07476628571748734, -0.048284243792295456,
- -0.048353925347328186, -0.061643749475479126, -0.0034299532417207956,
- -0.06785807013511658, 0.019010378047823906, 0.018265653401613235, -0.04039294645190239,
- -0.012570589780807495, 0.08462980389595032, 0.06609281897544861, 0.06451627612113953,
- 0.014101450331509113, 0.041071563959121704, -0.058113958686590195,
- -0.026303773745894432, 0.04699966683983803, 0.03972666338086128, 0.06310161203145981,
- -0.05534164234995842, -0.0316256582736969, -0.07339388132095337, -0.12108626216650009,
- 0.009735562838613987, 0.1060495674610138, 0.014470146037638187, -0.006686508189886808,
- -0.0038108909502625465, -0.07531482726335526, -0.041832488030195236, 0.074000783264637,
- 0.06076155602931976, 0.035646237432956696, 0.032798927277326584, -0.042999137192964554,
- -0.03119438700377941, 0.12810419499874115, -0.020390473306179047, -0.007144447416067123,
- 0.011398243717849255, -0.04744203761219978, 0.08844327181577682, 0.045679669827222824,
- 0.04446735605597496, 0.025443552061915398, 0.046553611755371094, -0.0062207006849348545,
- 0.025783294811844826, -0.011775515973567963, 0.021025577560067177, -0.03251111879944801,
- -0.03676746413111687, -0.08200831711292267, 0.006501975003629923, 0.07558175921440125,
- 0.012545295059680939, -0.1286095827817917, -0.0011791372671723366, -0.052352529019117355
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 163,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 199,
- "similarity": 0.9987220764160156
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 164,
- "similarity": 0.9982979893684387
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 195,
- "similarity": 0.9981716871261597
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Noah Giansiracusa"],
- "epoch_date_downloaded": 1644624000,
- "epoch_date_modified": 1653177600,
- "epoch_date_submitted": 1644624000,
- "flag": null,
- "report_number": 1652,
- "source_domain": "wired.com",
- "submitters": ["Kate Perkins"],
- "title": "How Facebook Hides How Terrible It Is With Hate Speech",
- "url": "https://www.wired.com/story/facebooks-deceptive-math-when-it-comes-to-hate-speech/"
- },
- {
- "__typename": "Report",
- "authors": ["Meghan Bobrowsky"],
- "epoch_date_downloaded": 1645315200,
- "epoch_date_modified": 1645315200,
- "epoch_date_submitted": 1645315200,
- "flag": null,
- "report_number": 1535,
- "source_domain": "wsj.com",
- "submitters": ["Anonymous"],
- "title": "Ohio Sues Meta Alleging Facebook Parent Misled Public About Its Products’ Effect on Children",
- "url": "https://www.wsj.com/articles/ohio-sues-meta-alleging-facebook-parent-misled-public-about-its-products-effect-on-children-11637011332"
- },
- {
- "__typename": "Report",
- "authors": ["Elizabeth Dwoskin", "Nitasha Tiku", "Craig Timberg"],
- "epoch_date_downloaded": 1645228800,
- "epoch_date_modified": 1645315200,
- "epoch_date_submitted": 1645315200,
- "flag": null,
- "report_number": 1533,
- "source_domain": "washingtonpost.com",
- "submitters": ["Anonymous"],
- "title": "Facebook’s race-blind practices around hate speech came at the expense of Black users, new documents show",
- "url": "https://www.washingtonpost.com/technology/2021/11/21/facebook-algorithm-biased-race/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "facebook",
- "name": "Facebook"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "facebook",
- "name": "Facebook"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "facebook-users",
- "name": "Facebook users"
- },
- {
- "__typename": "Entity",
- "entity_id": "facebook-content-creators",
- "name": "Facebook content creators"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1534],
- "vector": [
- -0.050832390785217285, 0.05255260691046715, -0.0027732341550290585,
- -0.09599406272172928, 0.11802244931459427, 0.02666398137807846, -0.02336595021188259,
- 0.018738897517323494, 0.06285937875509262, -0.1297813504934311, 0.016325950622558594,
- -0.011277996003627777, 0.012224198319017887, -0.06824048608541489,
- -0.0007482993532903492, -0.03806249424815178, -0.09037437289953232, 0.00950270052999258,
- -0.022040078416466713, -0.12287993729114532, -0.008654732257127762,
- 0.004144433420151472, 0.015826107934117317, 0.1058078184723854, -0.014662605710327625,
- 0.016715846955776215, 0.12396702170372009, 0.17222128808498383, -0.03682326152920723,
- 0.043479178100824356, -0.0498054213821888, -0.08176849782466888, 0.102891705930233,
- 0.03640399128198624, 0.0034907697699964046, 0.05561670660972595, 0.016557499766349792,
- -0.03027242049574852, -0.008715911768376827, 0.009397103451192379,
- -0.016768788918852806, 0.2401900440454483, 0.0007474349113181233, -0.03832908347249031,
- 0.04980059340596199, -0.008694224990904331, 0.007130637299269438, 0.0010753839742392302,
- -0.004677765537053347, -0.014026765711605549, -0.056888725608587265,
- 0.04734979569911957, -0.004841536749154329, 0.06872949749231339, -0.12530140578746796,
- 0.054562654346227646, 0.049312662333250046, -0.08070604503154755, 0.05828336626291275,
- -0.08796598017215729, -0.018696965649724007, -0.2505340576171875, -0.062329165637493134,
- -0.051858700811862946, 0.09888653457164764, -0.0790473222732544, -0.02710828371345997,
- -0.003144067246466875, 0.01872085966169834, 0.061951253563165665, 0.02601969614624977,
- -0.05131746828556061, -0.00887682382017374, 0.06458824127912521, 0.0033511952497065067,
- 0.011057207360863686, 0.0434240885078907, 0.23048336803913116, -0.14077609777450562,
- -0.0508265383541584, 0.08084950596094131, -0.12589161098003387, 0.4300956428050995,
- -0.011972285807132721, -0.06047385185956955, 0.007781210821121931, 0.09822125732898712,
- 0.04873734712600708, 0.03232140466570854, 0.07503996789455414, -0.033529188483953476,
- 0.07541216164827347, -0.0569535531103611, 0.016329241916537285, 0.0631079375743866,
- 0.03248723968863487, -0.013550798408687115, 0.12233509123325348, -0.0025152736343443394,
- -0.01941472850739956, 0.03497767075896263, -0.01808457262814045, 0.11356394737958908,
- 0.05955972895026207, -0.030065666884183884, -0.0017034884076565504, 0.0966627448797226,
- -0.06773166358470917, 0.0261751189827919, -0.02593204565346241, 0.0014993390068411827,
- -0.11871170252561569, 0.03979414328932762, -0.023604147136211395, 0.06435172259807587,
- -0.03718656301498413, 0.0020783781073987484, 0.05711419880390167, 0.09539997577667236,
- 0.055623359978199005, -0.012726891785860062, 0.09587687253952026, 0.05724415183067322,
- -0.03524127975106239, -0.06697570532560349, -0.015924444422125816,
- -0.062423523515462875, -0.05380713939666748, -0.033350955694913864, 0.06692098826169968,
- -0.05289508029818535, -0.17010031640529633, 0.015179651789367199, 0.1457592397928238,
- -0.005015896167606115, -0.07346861064434052, 0.048020798712968826, -0.0689278095960617,
- 0.0570518784224987, -0.020662769675254822, -0.05300632119178772, 0.04859146848320961,
- 0.03782441467046738, 0.013464368879795074, 0.10180481523275375, 0.08440662920475006,
- -0.03304191306233406, -0.07716327160596848, 0.028842821717262268, -0.027714435011148453,
- 0.12787847220897675, -0.13854533433914185, -0.03513416275382042, -0.03926631063222885,
- -0.000898568076081574, 0.6796891093254089, 0.14465881884098053, 0.16978593170642853,
- -0.007165266200900078, -0.05829888954758644, 0.14977949857711792, 0.01362528558820486,
- 0.052009981125593185, -0.10236146301031113, -0.034683287143707275, 0.03529498726129532,
- -0.05477388575673103, -0.05780785158276558, 0.023477761074900627, -0.021876992657780647,
- 0.09745875000953674, 0.02146575227379799, 0.12021978199481964, 0.04599868133664131,
- -0.11375823616981506, -0.04000085964798927, 0.1233571395277977, -0.028850039467215538,
- -0.10623747855424881, -0.0320722833275795, 0.039139412343502045, 0.10525042563676834,
- -0.053089872002601624, 0.008652892895042896, -0.07774491608142853, 0.0651540458202362,
- -0.0010714458767324686, 0.029793625697493553, 0.00965961441397667, 0.0723726823925972,
- 0.01669956184923649, 0.07464601844549179, -0.0008936872472986579, -0.06437795609235764,
- -0.046554792672395706, 0.11308594793081284, -0.035811591893434525, -0.04100588709115982,
- 0.10788405686616898, -0.07049320638179779, 0.008637369610369205, 0.03255963698029518,
- 0.1425870805978775, -0.13856735825538635, 0.013083706609904766, -0.011638006195425987,
- -0.026521733030676842, 0.06790949404239655, -0.03304063901305199, -0.030817050486803055,
- -0.04819349944591522, 0.13158801198005676, -0.016378583386540413, 0.03270789980888367,
- 0.060354385524988174, -0.013168840669095516, -0.014235337264835835, 0.09429644793272018,
- 0.058630138635635376, -0.008488639257848263, 0.06482937932014465, 0.06311323493719101,
- -0.07689729332923889, -0.04563688486814499, 0.0010524484096094966, 0.05937020108103752,
- 0.027550125494599342, 0.0061594038270413876, 0.03233960270881653, 0.020310502499341965,
- -0.029308050870895386, 0.03851485252380371, 0.0076863425783813, -0.00908680260181427,
- 0.07425550371408463, -0.1247805804014206, -0.04807208478450775, -0.04188939556479454,
- 0.0026571566704660654, -0.018125075846910477, -0.016899071633815765,
- 0.07299871742725372, 0.0911707952618599, 0.08992436528205872, 0.05842429772019386,
- 0.05886881425976753, 0.06453324109315872, -0.02103695273399353, -0.04659536853432655,
- 0.11907574534416199, -0.011017675511538982, -0.03148660808801651, 0.019148021936416626,
- 0.025855552405118942, 0.028025131672620773, 0.0037487398367375135,
- -0.009400426410138607, -0.023336302489042282, -0.048941727727651596,
- -0.032157428562641144, -0.08029764890670776, -0.03660073131322861, 0.049288008362054825,
- 0.06615212559700012, -0.057452525943517685, -0.09832390397787094, -0.0406462736427784,
- 0.029469547793269157, 0.09924253076314926, -0.05304715782403946, -0.05070164054632187,
- -0.11097928136587143, 0.03278755024075508, -0.014203852973878384, 0.051314931362867355,
- -0.05074446648359299, -0.010057580657303333, -0.018940502777695656,
- -0.028007106855511665, 0.024523740634322166, -0.004397739190608263,
- 0.024619558826088905, -0.018745379522442818, -0.07936382293701172, -0.05005798116326332,
- -0.020764093846082687, 0.0006379801779985428, -0.005325166042894125,
- 0.05259401351213455, 0.009082069620490074, 0.009128403849899769, -0.017828144133090973,
- -0.0472443588078022, 0.04380067437887192, -0.04499703645706177, -0.04635275527834892,
- 0.08215529471635818, -0.05745411291718483, 0.03556714951992035, 0.017667090520262718,
- -0.07736814022064209, -0.03572998568415642, 0.03817130997776985, -0.01161206979304552,
- 0.09768200665712357, -0.00904996320605278, -0.018337616696953773, -0.03982410952448845,
- 0.004885801114141941, 0.06022392958402634, -0.05350317806005478, -0.09650260955095291,
- -0.07129455357789993, 0.14349877834320068, -0.012557551264762878, -0.013266138732433319,
- -0.0068435827270150185, -0.02852257713675499, 0.06595247983932495, -0.0285215824842453,
- 0.020643500611186028, 0.0324784517288208, 0.05319761857390404, -0.004671601578593254,
- -0.0019935753662139177, 0.07816906273365021, -0.02882978692650795, 0.020345347002148628,
- 0.07017328590154648, 0.4262882173061371, -0.22126232087612152, 0.10188017785549164,
- 0.04766903817653656, -0.01852595806121826, 0.04944031685590744, -0.026433812454342842,
- 0.08952334523200989, 0.08800209313631058, 0.11415175348520279, 0.09966573119163513,
- -0.08325155079364777, -0.017094740644097328, -0.09218145906925201, 0.11923512816429138,
- -0.0018231577705591917, 0.06482449918985367, 0.0003139569307677448, -0.0453936941921711,
- -0.020805723965168, 0.02966129034757614, -0.037556424736976624, 0.006346498150378466,
- -0.04097526893019676, -0.022656099870800972, 0.020462995395064354, 0.004066175315529108,
- -0.006010060664266348, -0.042658064514398575, 0.033373571932315826,
- -0.039842601865530014, 0.01181771233677864, -0.035318534821271896, 0.06741534173488617,
- -0.1500588059425354, 0.007184606045484543, -0.07553184032440186, -0.10076920688152313,
- 0.07950018346309662, -0.017502713948488235, 0.042442213743925095, 0.03651323914527893,
- 0.017722588032484055, 0.02816786989569664, 0.01851366087794304, -0.06307560205459595,
- 0.045245710760354996, 0.06186932325363159, 0.026890220120549202, 0.0725056529045105,
- 0.13947750627994537, -0.04234510660171509, -0.05201858654618263, -0.0808347687125206,
- 0.028510991483926773, 0.14377117156982422, 0.012774558737874031, 0.01610536314547062,
- 0.020168446004390717, -0.03293634206056595, 0.009409813210368156, -0.07060664892196655,
- -0.08452286571264267, -0.05625384673476219, -0.03939324617385864, 0.06091323867440224,
- 0.04875774681568146, 0.007687052246183157, -0.16669684648513794, -0.02954801358282566,
- -0.018603570759296417, -0.005898735485970974, 0.11880765855312347, -0.07104719430208206,
- 0.05894778296351433, 0.009741612710058689, -0.01851727068424225, 0.010049599222838879,
- -0.11321017891168594, -0.014126292429864407, -0.03930346295237541, 0.019334016367793083,
- 0.06644129753112793, 0.03205493092536926, -0.06308791786432266, 0.07989221066236496,
- -0.11191439628601074, 0.07689142972230911, -0.06401576101779938, -0.04856032133102417,
- 0.007182394154369831, -0.08586198091506958, 0.02676592767238617, 0.024060072377324104,
- -0.045759834349155426, 0.04415368661284447, 0.0556134358048439, -0.06915893405675888,
- -0.08529362082481384, -0.05503576993942261, -0.07029824703931808, -0.10024601221084595,
- 0.01199309155344963, -0.09235045313835144, 0.009626448154449463, 0.0041037495248019695,
- 0.01859522983431816, -0.03243095055222511, 0.024776864796876907, 0.028680702671408653,
- -0.15065184235572815, -0.019499298185110092, -0.010664423927664757, 0.06638921052217484,
- 0.0019330639624968171, -0.018231337890028954, 0.0020382998045533895, 0.1411990374326706,
- 0.05838686227798462, 0.0012723366962745786, 0.042535390704870224, -0.06062474474310875,
- 0.08300264179706573, -0.11135437339544296, -0.463791161775589, 0.06740479916334152,
- 0.06146352365612984, 0.040543656796216965, -0.010549875907599926, -0.06985321640968323,
- 0.09148614853620529, -0.029669184237718582, -0.0548405684530735, 0.10034207999706268,
- -0.034674521535634995, -0.007123908028006554, -0.026382742449641228,
- -0.011877624318003654, -0.014796819537878036, -0.05394294112920761,
- -0.06804939359426498, 0.011878635734319687, -0.02010248228907585, -0.049626532942056656,
- -0.07629602402448654, 0.03360274061560631, 0.020267896354198456, -0.007766666356474161,
- 0.025927765294909477, 0.004780804738402367, -0.02938777022063732, -0.07716348022222519,
- 0.05310383066534996, 0.030346354469656944, 0.04516984522342682, -0.05101405456662178,
- 0.007895072922110558, 0.041439663618803024, 0.03720010444521904, 0.1049337238073349,
- -0.007832713425159454, 0.023023664951324463, -0.08049683272838593, 0.1313377320766449,
- 0.059072330594062805, 0.18710951507091522, 0.03998378664255142, 0.01782701350748539,
- -0.005177229642868042, 0.17972104251384735, 0.04199326038360596, -0.007669293787330389,
- -0.054023627191782, 0.01676333323121071, 0.02180054411292076, 0.005220521241426468,
- 0.0548834353685379, -0.07668566703796387, -0.010591473430395126, 0.0006704832194373012,
- -0.0073171379044651985, -0.04962347447872162, -0.014132385142147541,
- 0.20142000913619995, 0.032079845666885376, 0.026639506220817566, 0.025249892845749855,
- -0.05924983322620392, 0.03008602373301983, -0.08538864552974701, -0.08703501522541046,
- -0.022053187713027, -0.03003617934882641, 0.029030270874500275, -0.02347433567047119,
- -0.10346675664186478, -0.01701798103749752, -0.008817394264042377,
- -0.0017604440217837691, 0.11169297248125076, -0.01589297316968441, -0.022889394313097,
- -0.051118843257427216, 0.11241823434829712, 0.032455600798130035, -0.032955508679151535,
- 0.0483618788421154, 0.08601096272468567, 0.023028269410133362, 0.03669866546988487,
- -0.08571663498878479, -0.09513214975595474, 0.006297118030488491, 0.16749125719070435,
- -0.03063284233212471, 0.13487067818641663, 0.03548547998070717, -0.04277671128511429,
- -0.05805323272943497, 0.015539396554231644, -0.004026982467621565, 0.05803641676902771,
- -0.4415316879749298, -0.01901019737124443, 0.11521008610725403, 0.020778540521860123,
- -0.0014331161510199308, 0.06777021288871765, 0.044389087706804276,
- -0.027457427233457565, -0.0846516564488411, -0.051387086510658264, 0.10883978009223938,
- -0.019361326470971107, 0.04915819689631462, -0.1864985227584839, 0.024822132661938667,
- 0.12571577727794647, -0.04058773070573807, -0.03763853386044502, 0.06434936076402664,
- -0.22696617245674133, -0.04741816222667694, -0.018382307142019272, 0.1284412443637848,
- -0.031223593279719353, 0.03576664254069328, 0.09183366596698761, -0.024511802941560745,
- 0.02651984803378582, 0.016450054943561554, -0.05735384300351143, 0.06260144710540771,
- -0.03025159426033497, -0.02006799541413784, 0.1089213415980339, 0.10232178121805191,
- 0.10878850519657135, -0.056774068623781204, 11.909363746643066, 0.05014820769429207,
- 0.06972900032997131, -0.11728727072477341, 0.049721792340278625, -0.05085958167910576,
- 0.010713481344282627, -0.09059423953294754, 0.03667140379548073, 0.12534768879413605,
- -0.002593268407508731, -0.06516242027282715, -0.05260200798511505, -0.1085033193230629,
- 0.0212992113083601, -0.05640030652284622, -0.07082472741603851, -0.014011540450155735,
- 0.0571957565844059, -0.0364253856241703, -0.04639965295791626, 0.07722151279449463,
- 0.06371163576841354, -0.002105518477037549, -0.026515552774071693, 0.06414613872766495,
- 0.049715805798769, -0.0012122599873691797, -0.0006984091596677899, 0.043848708271980286,
- 0.03286967799067497, 0.028886936604976654, 0.09219378232955933, 0.03798512741923332,
- -0.007756236474961042, 0.06419134885072708, 0.07358437031507492, -0.009898955933749676,
- 0.016480574384331703, 0.0887584239244461, -0.0023276039864867926, 0.013705151155591011,
- -0.01185613963752985, 0.03178337216377258, 0.03215073049068451, 0.05231131240725517,
- 0.032043393701314926, 0.1383926272392273, 0.015180595219135284, 0.048613663762807846,
- 0.07655647397041321, -0.0343896746635437, 0.11629769951105118, 0.04465068504214287,
- -0.025594158098101616, 0.0356869101524353, -0.06163150444626808, -0.08350201696157455,
- 0.07436976581811905, -0.0010597053915262222, -0.021087780594825745, 0.07355859875679016,
- 0.045179158449172974, 0.08809415996074677, 0.0031379242427647114, 0.10933458805084229,
- 0.03994596004486084, 0.0584920272231102, -0.1296726018190384, -0.1284618228673935,
- 0.049199894070625305, -0.10050995647907257, -0.06653106212615967, 0.08033204078674316,
- 0.16638553142547607, -0.033489156514406204, -0.0036995341069996357,
- 0.008089990355074406, 0.0021657871548086405, -0.05281633883714676,
- -0.008844289928674698, 0.08559942990541458, -0.02510187402367592, -0.024402864277362823,
- 0.09113651514053345, 0.05413113161921501, 0.054988738149404526, 0.10863124579191208,
- 0.001317291404120624, -0.08806188404560089, -0.07430194318294525, 0.030061854049563408,
- -0.006885291077196598, -0.018425170332193375, 0.02108510583639145, -0.08417979627847672,
- 0.05811726674437523, -0.18199321627616882, 0.05607394501566887, 0.058589234948158264,
- -0.11127565056085587, -0.028336582705378532, 0.011010974645614624, 0.07356180995702744,
- 0.012573719955980778, 0.01099719200283289, -0.0714622288942337, 0.002233775332570076,
- -0.012554123997688293, 0.024851957336068153, 0.010337311774492264, 0.058801207691431046,
- 0.09643131494522095, -0.05221712961792946, 0.05429524555802345, 0.05506512522697449,
- -0.044320400804281235, -0.044852904975414276, 0.08054062724113464, 0.04895387589931488,
- -0.08911064267158508, -0.041949234902858734, -0.058415964245796204,
- -0.005824359133839607, -0.004678096156567335, -0.059472087770700455,
- 0.006485897582024336, 0.06077919900417328, -0.03723423182964325, -0.002192647894844413,
- 0.051337845623493195, 0.05989561602473259, 0.06256824731826782, 0.011080914177000523,
- 0.07162105292081833, -0.06756246089935303, -0.02098127268254757, 0.05039473995566368,
- 0.03993620723485947, 0.1000891923904419, -0.03255366533994675, -0.03910114988684654,
- -0.02176140621304512, -0.1335829347372055, 0.05745488032698631, 0.04185636714100838,
- -0.006901305168867111, -0.03646361827850342, 0.023683665320277214, -0.10375087708234787,
- -0.09246357530355453, 0.07068149000406265, 0.05081917345523834, 0.013236233964562416,
- -0.01664399728178978, -0.03868397697806358, -0.05680352449417114, 0.09521714597940445,
- -0.026208816096186638, 0.006556027568876743, 0.026538293808698654, -0.01194616500288248,
- 0.09233538806438446, 0.06142820045351982, 0.034652721136808395, 0.0558646097779274,
- 0.02717079035937786, -0.03470399230718613, 0.041109152138233185, -0.018190452829003334,
- 0.027425412088632584, -0.06343057751655579, -0.10174346715211868, -0.06410837918519974,
- 0.03176301717758179, 0.06956211477518082, 0.036859553307294846, -0.10049134492874146,
- -0.00442573381587863, -0.03395962715148926
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 164,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 163,
- "similarity": 0.9983298182487488
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 199,
- "similarity": 0.9979668855667114
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 190,
- "similarity": 0.9978857040405273
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Keach Hagey", "Jeff Horwitz"],
- "epoch_date_downloaded": 1645315200,
- "epoch_date_modified": 1645315200,
- "epoch_date_submitted": 1645315200,
- "flag": null,
- "report_number": 1534,
- "source_domain": "wsj.com",
- "submitters": ["Anonymous"],
- "title": "Facebook Tried to Make Its Platform a Healthier Place. It Got Angrier Instead.",
- "url": "https://www.wsj.com/articles/facebook-algorithm-change-zuckerberg-11631654215"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "duke-researchers",
- "name": "Duke researchers"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "duke-researchers",
- "name": "Duke researchers"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "people-having-non-caucasian-facial-features",
- "name": "people having non-Caucasian facial features"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1536],
- "vector": [
- -0.07483565807342529, 0.09019765257835388, -0.01892845146358013, -0.13999125361442566,
- 0.08670379966497421, -0.01920403353869915, -0.008208896964788437, 0.07241484522819519,
- 0.08778408914804459, -0.17150047421455383, 0.03217011317610741, 0.01397763192653656,
- -0.006818694528192282, -0.12664556503295898, 0.022985054180026054, -0.0707782730460167,
- -0.10920638591051102, -0.08309731632471085, -0.024631395936012268, -0.1917952299118042,
- -0.08160232752561569, -0.010046440176665783, -0.03197567164897919, 0.09553659707307816,
- -0.07345306128263474, 0.023038586601614952, 0.1271163821220398, 0.05749950185418129,
- -0.0840378999710083, 0.07882491499185562, -0.037074510008096695, -0.12906931340694427,
- 0.15438522398471832, 0.030790897086262703, -0.007855065166950226, 0.08080258965492249,
- -0.0022199517115950584, -0.003935570362955332, -0.031583819538354874,
- -0.0041382163763046265, 0.0031710853800177574, 0.28542762994766235,
- -0.0024225253146141768, -0.014104177244007587, 0.06535451114177704,
- -0.08322060853242874, -0.028208287432789803, 0.024480082094669342, 0.008180360309779644,
- 0.03104838728904724, -0.021157417446374893, 0.00939109455794096, -0.05759096518158913,
- 0.0462820939719677, -0.1168118566274643, 0.08063576370477676, 0.05599953606724739,
- 0.009432128630578518, 0.06679917126893997, -0.07712876051664352, -0.023320397362113,
- -0.2238420844078064, -0.016788695007562637, -0.141256645321846, 0.08209749311208725,
- -0.06906421482563019, 0.016331199556589127, 0.06500091403722763, 0.014967494644224644,
- 0.06474632024765015, 0.03622739017009735, -0.03725041076540947, -0.07893677055835724,
- 0.04519039765000343, 0.023235995322465897, -0.05917448550462723, 0.003085648873820901,
- 0.22932951152324677, -0.0812053307890892, 0.03458843380212784, 0.0737108439207077,
- -0.1154148057103157, 0.4024030864238739, -0.022447282448410988, -0.061000462621450424,
- 0.0023753505665808916, 0.08810220658779144, 0.028493037447333336, 0.04390793293714523,
- -0.0017359608318656683, -0.010112514719367027, 0.062202244997024536,
- -0.05990900099277496, -0.033300042152404785, 0.052781589329242706,
- -0.014385595917701721, -0.013433367013931274, 0.026572799310088158,
- -0.013964884914457798, -0.0630594864487648, -0.03880468010902405, -0.007136365864425898,
- 0.12682662904262543, 0.07975629717111588, -0.076632060110569, 0.002216306049376726,
- 0.1260022521018982, -0.0709129050374031, 0.0759744867682457, -0.1224839985370636,
- 0.06244729831814766, -0.054219603538513184, 0.05626329407095909, -0.028485119342803955,
- 0.027293452993035316, -0.06645936518907547, 0.03158063068985939, 0.05073033273220062,
- 0.1292000114917755, 0.09522140026092529, 0.010110242292284966, 0.04580037668347359,
- 0.07450076937675476, -0.09915553033351898, -0.07298582792282104, -0.0568956695497036,
- -0.06314796954393387, -0.04934123530983925, -0.03331310302019119, 0.06656818836927414,
- -0.061598293483257294, -0.20370110869407654, 0.03670690581202507, 0.0649351254105568,
- -0.08386516571044922, -0.045902349054813385, 0.003531714202836156, -0.07257498055696487,
- -0.0049927495419979095, -0.056060872972011566, -0.008909717202186584,
- 0.07714422792196274, 0.03316040709614754, 0.03755788132548332, 0.12292768806219101,
- 0.09818781167268753, -0.07173898816108704, -0.017320949584245682, -0.05492933839559555,
- -0.08006323873996735, 0.1269255131483078, -0.19242459535598755, -0.02599908784031868,
- -0.042895350605249405, 0.00451654102653265, 0.6960440278053284, 0.09295200556516647,
- 0.23145653307437897, 0.017311397939920425, -0.018901092931628227, 0.1684415191411972,
- 0.00946546159684658, 0.0974651500582695, -0.10109684616327286, -0.004529838915914297,
- 0.020448146387934685, -0.10435767471790314, -0.05666351318359375, 0.023003580048680305,
- -0.03772074729204178, 0.07576704025268555, 0.006287450436502695, 0.06717516481876373,
- 0.034358009696006775, -0.14224356412887573, -0.01659802533686161, 0.08001917600631714,
- 0.004765351302921772, -0.14266818761825562, -0.049720458686351776, 0.0683208778500557,
- 0.12607024610042572, -0.08984717726707458, -0.01725406013429165, -0.0653761625289917,
- 0.04446226730942726, 0.0030522632878273726, 0.10508918762207031, -0.020073669031262398,
- 0.046951774507761, 0.08751339465379715, 0.049555812031030655, -0.008212880231440067,
- -0.11131970584392548, 0.0002104603045154363, 0.08497375249862671, -0.04779999703168869,
- -0.06420861184597015, 0.10288643836975098, -0.09606489539146423, 0.022351577877998352,
- -0.0022903436329215765, 0.18218626081943512, -0.13188421726226807, 0.03394597768783569,
- 0.02298109419643879, -0.03832555562257767, 0.0859282910823822, -0.022604946047067642,
- -0.038211237639188766, -0.04036397114396095, 0.11783473193645477, 0.04301100969314575,
- 0.11719413101673126, 0.040641650557518005, -0.02685733139514923, 0.07299856841564178,
- 0.07921069115400314, 0.028005938977003098, -0.042696453630924225, 0.09166044741868973,
- 0.05975661054253578, -0.11930885165929794, -0.0861750915646553, 0.06129104644060135,
- 0.03203659504652023, 0.051831889897584915, -0.01867605186998844, 0.009926751255989075,
- -0.015629123896360397, -0.07812239974737167, 0.025632133707404137, 0.03534408658742905,
- 0.03374681621789932, 0.07891980558633804, -0.03103530965745449, -0.06419243663549423,
- -0.026347925886511803, -0.011961430311203003, 0.005625497549772263,
- -0.015417112037539482, 0.1167052686214447, 0.11682969331741333, 0.0709681361913681,
- 0.028716150671243668, 0.000668846711050719, 0.07645655423402786, 0.03952406719326973,
- -0.03155459091067314, 0.10047416388988495, 0.006375576835125685, -0.13160909712314606,
- -0.01770836114883423, -0.0090320510789752, 0.019047144800424576, 0.016527121886610985,
- -0.08713671565055847, -0.037313517183065414, -0.09066170454025269, 0.010431239381432533,
- -0.113155297935009, -0.08572283387184143, 0.030287211760878563, 0.025320786982774734,
- -0.029940050095319748, -0.06918130815029144, -0.08369830995798111, 0.03134826198220253,
- 0.10470538586378098, -0.02067781426012516, -0.034115325659513474, -0.12012115865945816,
- 0.04512537270784378, -0.09723827242851257, 0.06749845296144485, -0.029830411076545715,
- 0.006394801661372185, -0.011894598603248596, -0.08208382874727249, 0.06740697473287582,
- -0.0024365161079913378, -0.018012801185250282, -0.005139964632689953,
- -0.08798381686210632, -0.022966112941503525, -0.01646566577255726,
- -0.016755344346165657, -0.03534993529319763, 0.06484277546405792, 0.024344641715288162,
- 0.09708436578512192, 0.00005208572110859677, -0.04805736616253853, 0.04789995774626732,
- -0.02958248183131218, -0.012311660684645176, 0.10605990141630173, -0.02161419950425625,
- 0.001734224148094654, -0.02449188195168972, -0.09992584586143494, -0.05272088572382927,
- 0.11700024455785751, -0.025636784732341766, 0.08092498034238815, -0.022121530026197433,
- 0.009438062086701393, -0.034005504101514816, -0.019124608486890793, 0.08593320101499557,
- -0.06206924468278885, -0.1123560220003128, -0.0796934962272644, 0.10808585584163666,
- -0.024933625012636185, -0.005851428024470806, -0.006044752895832062,
- -0.03287019953131676, 0.036739569157361984, -0.039453696459531784, 0.03183945268392563,
- 0.006659070961177349, 0.07992371171712875, -0.003584363730624318, 0.05066493898630142,
- 0.04412860795855522, -0.0798216238617897, 0.01747346855700016, 0.06777501106262207,
- 0.45957839488983154, -0.2480398565530777, 0.07053765654563904, 0.11608931422233582,
- 0.022770512849092484, 0.08916977792978287, -0.038527604192495346, 0.11755140125751495,
- 0.06482479721307755, 0.14770451188087463, 0.13832077383995056, -0.05741686001420021,
- 0.01121574454009533, -0.11946944147348404, 0.12884964048862457, 0.0015244076494127512,
- 0.0944322869181633, -0.04966582730412483, -0.04365256801247597, -0.012760225683450699,
- 0.04107670113444328, -0.027029288932681084, 0.0122712142765522, -0.046124882996082306,
- -0.03082823008298874, -0.03949032351374626, -0.03504917398095131, 0.013776805251836777,
- -0.01230052299797535, 0.06796276569366455, 0.03986689820885658, 0.04498526081442833,
- 0.020535999909043312, 0.05279213935136795, -0.15631689131259918, 0.020150858908891678,
- -0.039580393582582474, -0.17800450325012207, 0.0708416998386383, 0.001959550892934203,
- 0.08662568032741547, 0.04759295657277107, -0.035509511828422546, 0.04682284593582153,
- -0.010473410598933697, -0.03401051461696625, 0.01917988806962967, 0.07717147469520569,
- -0.007452911697328091, 0.03451741486787796, 0.12949493527412415, -0.05081190913915634,
- 0.011137301102280617, -0.10367678105831146, 0.06908517330884933, 0.22965334355831146,
- 0.019025932997465134, 0.01725771464407444, 0.02532421238720417, -0.005825848318636417,
- 0.0006903404137119651, -0.05218372866511345, -0.03855231776833534, -0.0907079204916954,
- -0.049628760665655136, 0.10733436048030853, 0.05279801785945892, -0.021335585042834282,
- -0.15117986500263214, -0.017051827162504196, -0.036907196044921875, 0.04258611425757408,
- 0.09947480261325836, -0.06644774228334427, 0.08953291177749634, -0.007876971736550331,
- 0.05145132169127464, 0.04274657741189003, -0.06520143896341324, -0.02111036330461502,
- -0.09519005566835403, 0.00005593065725406632, 0.07983693480491638, 0.05717434361577034,
- -0.004666317254304886, 0.049596358090639114, -0.07717958837747574, 0.07306128740310669,
- -0.012276575900614262, -0.030741890892386436, -0.005021240096539259,
- -0.02148563601076603, 0.05970572680234909, 0.02389313280582428, -0.10042984038591385,
- 0.04527147486805916, -0.055345479398965836, -0.05224168673157692, -0.0714048370718956,
- -0.0820867270231247, -0.04790898412466049, -0.1436825841665268, 0.0018168335082009435,
- -0.10748358815908432, 0.0007414661231450737, -0.061499763280153275,
- -0.002173428190872073, -0.017157675698399544, 0.04725140333175659, 0.038210224360227585,
- -0.15504249930381775, 0.016195276752114296, -0.02526472508907318, 0.03905358910560608,
- -0.02294062450528145, -0.050423763692379, 0.03632999584078789, 0.07311151921749115,
- 0.05837257206439972, -0.03127744421362877, 0.05704468488693237, -0.10479173064231873,
- 0.07840903103351593, -0.10460513085126877, -0.3079400956630707, 0.04906746745109558,
- -0.022526374086737633, 0.022941147908568382, -0.01854495145380497, -0.03041500225663185,
- 0.05680488422513008, -0.03016700968146324, -0.03843197599053383, 0.0813993439078331,
- -0.04397725686430931, 0.0264289490878582, -0.09559778869152069, -0.09686779230833054,
- -0.014311455190181732, -0.02627314068377018, -0.09374544769525528, 0.054376810789108276,
- 0.01817587949335575, -0.05095215141773224, -0.12618564069271088, 0.055550362914800644,
- -0.031865037977695465, 0.02891606278717518, 0.008746682666242123, 0.024136587977409363,
- -0.022152379155158997, -0.0781402513384819, 0.06280270218849182, 0.0692947655916214,
- 0.04605715721845627, -0.08379087597131729, -0.015373006463050842, 0.05752991884946823,
- 0.05626332759857178, 0.1251223087310791, -0.012353261932730675, 0.013010158203542233,
- -0.10639011859893799, 0.13265463709831238, 0.08801263570785522, 0.1803891956806183,
- -0.03800254315137863, -0.005787123925983906, 0.020180542021989822, 0.13006940484046936,
- 0.09819655120372772, -0.0029349003452807665, -0.013686313293874264,
- -0.012372128665447235, 0.0076324716210365295, -0.02075996808707714, 0.12035726755857468,
- -0.09514280408620834, -0.01473100297152996, -0.045433204621076584, -0.06798814982175827,
- -0.0022800969891250134, -0.02894970402121544, 0.23047031462192535, 0.025417713448405266,
- -0.006305093877017498, 0.028574880212545395, -0.06523766368627548, 0.03770022839307785,
- -0.10557502508163452, -0.09220313280820847, 0.02771194465458393, -0.03301839530467987,
- 0.0010442977072671056, -0.03369871899485588, -0.13492628931999207,
- -0.016468973830342293, 0.027047036215662956, -0.003051202977076173, 0.13546916842460632,
- -0.033873945474624634, -0.01265749055892229, -0.01986868306994438, 0.14165158569812775,
- 0.02855485863983631, -0.0670490488409996, 0.05258624628186226, 0.09291209280490875,
- -0.014253338798880577, 0.04141362011432648, 0.02667193114757538, -0.09963850677013397,
- -0.05925258994102478, 0.1854437291622162, -0.017633814364671707, 0.11689463257789612,
- 0.05264829471707344, -0.05414769798517227, -0.08187699317932129, 0.03147297725081444,
- -0.034607429057359695, 0.023747313767671585, -0.42287471890449524,
- -0.009291508235037327, 0.12625548243522644, 0.005981971509754658, 0.011946618556976318,
- 0.04464053362607956, 0.04744585603475571, -0.053638458251953125, -0.053943462669849396,
- -0.05095406621694565, 0.13286921381950378, -0.03064904920756817, 0.06261400133371353,
- -0.08607109636068344, 0.029609650373458862, 0.07589101046323776, -0.011299319565296173,
- 0.08088205754756927, 0.05742286518216133, -0.23060405254364014, -0.04988576099276543,
- -0.015517390333116055, 0.10876381397247314, 0.022240661084651947, 0.027004843577742577,
- 0.07093130797147751, -0.05862807855010033, 0.021931957453489304, 0.07015743106603622,
- -0.014176778495311737, 0.03260304406285286, -0.06333493441343307, 0.0028672083280980587,
- 0.12111891061067581, 0.15361787378787994, 0.006279009394347668, 0.02528587356209755,
- 12.308307647705078, 0.03643927350640297, 0.04020945355296135, -0.09425786882638931,
- -0.025323232635855675, -0.06334549933671951, 0.02119332179427147, -0.1945202350616455,
- 0.08953570574522018, 0.1551809310913086, -0.005327890627086163, -0.08588983863592148,
- 0.03808726742863655, -0.08870049566030502, 0.034203480929136276, -0.0543685220181942,
- -0.04156442731618881, -0.037722066044807434, 0.08295375108718872, -0.05750642716884613,
- -0.0903073400259018, 0.08780895173549652, 0.09717471897602081, 0.01718921959400177,
- -0.03344009071588516, 0.003805518848821521, 0.024931207299232483, -0.05646195262670517,
- -0.03968418389558792, 0.05608292669057846, 0.0019865131471306086, 0.08749265968799591,
- 0.0900968611240387, -0.003615322057157755, 0.039129339158535004, 0.09075452387332916,
- 0.07130817323923111, 0.0717809870839119, 0.024042567238211632, 0.04950254037976265,
- 0.011570041067898273, 0.03465797007083893, 0.04633748531341553, 0.04340304061770439,
- 0.09017707407474518, 0.0061735305935144424, 0.031732771545648575, 0.18708059191703796,
- -0.012931867502629757, 0.09243865311145782, 0.12946027517318726, 0.013188978657126427,
- 0.10992342233657837, 0.036969564855098724, 0.0017501204274594784, 0.054005250334739685,
- 0.01937875710427761, -0.11833649128675461, 0.10684337466955185, -0.02084198407828808,
- -0.05007481202483177, 0.12477558851242065, 0.03095502406358719, 0.1356360912322998,
- -0.0053273532539606094, 0.0634702667593956, 0.0834585502743721, 0.07774631679058075,
- -0.10651373118162155, -0.09845035523176193, 0.009018803015351295, -0.12753286957740784,
- -0.06757958978414536, 0.12052786350250244, 0.09880448132753372, -0.049262307584285736,
- 0.05416799336671829, -0.04150297865271568, 0.01404943224042654, -0.037103716284036636,
- -0.01225760206580162, 0.02766115963459015, -0.008981181308627129, 0.016392018646001816,
- 0.017947670072317123, 0.04698331281542778, 0.0754806324839592, 0.08749664574861526,
- 0.02225613221526146, -0.07977910339832306, -0.1024981141090393, 0.14101402461528778,
- -0.06643222272396088, -0.07639097422361374, 0.03171392157673836, -0.07889983057975769,
- 0.0705442801117897, -0.18331709504127502, 0.09917302429676056, 0.14787517488002777,
- -0.09834005683660507, -0.051892347633838654, -0.04559284448623657, 0.09328244626522064,
- 0.003663427196443081, 0.038490068167448044, -0.09508482366800308, 0.002769072074443102,
- 0.07446221262216568, 0.08027875423431396, -0.03921351581811905, 0.036380548030138016,
- 0.10194110125303268, -0.07629479467868805, 0.007350021041929722, 0.08148420602083206,
- -0.03315092995762825, -0.02442607469856739, 0.07444781810045242, 0.09990288317203522,
- -0.0730978474020958, -0.05343608930706978, -0.020569872111082077, -0.03235422074794769,
- -0.008050371892750263, -0.07568544149398804, 0.03391164168715477, 0.058626510202884674,
- -0.053970642387866974, -0.009694178588688374, 0.05906044319272041, 0.07026292383670807,
- 0.12065044045448303, -0.04624629393219948, 0.06450781971216202, -0.05846681445837021,
- -0.04768143594264984, 0.025381382554769516, 0.023063577711582184, 0.05742890015244484,
- -0.08045761287212372, -0.08412817120552063, -0.08885317295789719, -0.13812124729156494,
- 0.023617539554834366, 0.08082223683595657, 0.01769213378429413, 0.055719055235385895,
- 0.014973675832152367, -0.09391989558935165, -0.028127815574407578, 0.09776127338409424,
- 0.05891995504498482, 0.012951456010341644, 0.04211508482694626, -0.018605679273605347,
- -0.04656060412526131, 0.12236486375331879, -0.00503194984048605, -0.022875769063830376,
- -0.034082021564245224, -0.03998987004160881, 0.1208513155579567, 0.11150165647268295,
- 0.06082639843225479, 0.08835212141275406, 0.07552294433116913, -0.0664949119091034,
- 0.07940321415662766, 0.0020858710631728172, 0.033260080963373184, -0.0441192090511322,
- -0.04998711869120598, -0.08154615759849548, -0.023871684446930885, 0.05542115494608879,
- 0.06142877787351608, -0.09333537518978119, 0.00413863081485033, -0.051667436957359314
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 165,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 39,
- "similarity": 0.9983770251274109
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 13,
- "similarity": 0.9980758428573608
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 41,
- "similarity": 0.9980006814002991
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["James Vincent"],
- "epoch_date_downloaded": 1645401600,
- "epoch_date_modified": 1645401600,
- "epoch_date_submitted": 1645401600,
- "flag": null,
- "report_number": 1536,
- "source_domain": "theverge.com",
- "submitters": ["Anonymous"],
- "title": "What a machine learning tool that turns Obama white can (and can’t) tell us about AI bias",
- "url": "https://www.theverge.com/21298762/face-depixelizer-ai-machine-learning-tool-pulse-stylegan-obama-bias"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "giggle",
- "name": "Giggle"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "kairos",
- "name": "Kairos"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "women-of-color",
- "name": "women of color"
- },
- {
- "__typename": "Entity",
- "entity_id": "trans-women",
- "name": "trans women"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1563, 1538],
- "vector": [
- -0.07325505465269089, 0.07103267312049866, 0.010625403374433517, -0.15843558311462402,
- 0.07689961791038513, -0.04270029813051224, 0.022154323756694794, 0.09544788300991058,
- 0.0752486065030098, -0.13811710476875305, -0.02290445566177368, 0.03418171778321266,
- 0.008651463314890862, -0.055555615574121475, 0.0673120766878128, -0.07874363660812378,
- -0.10205335915088654, -0.06710216403007507, 0.022038478404283524, -0.1575956642627716,
- -0.10302583873271942, 0.014861821196973324, -0.019930435344576836, 0.13097277283668518,
- -0.015199335291981697, 0.05048919469118118, 0.11390814930200577, 0.09377682209014893,
- -0.0007754229009151459, 0.059263817965984344, -0.00943234097212553, -0.1331404596567154,
- 0.14581815898418427, 0.001812115777283907, -0.0010162703692913055, 0.1173371970653534,
- 0.04463546350598335, -0.02056914195418358, -0.004189757630228996, 0.012690319679677486,
- 0.0603923574090004, 0.2345713973045349, -0.010866133496165276, -0.0025249875616282225,
- 0.05319679528474808, -0.06303265690803528, 0.007841819897294044, 0.01786462776362896,
- 0.0065680332481861115, 0.016980482265353203, -0.004406532272696495,
- 0.019146516919136047, -0.04904278367757797, 0.04781182482838631, -0.09690149128437042,
- 0.06479127705097198, 0.02592964470386505, -0.01335702370852232, 0.05886438861489296,
- -0.0677134245634079, -0.04120924323797226, -0.16381345689296722, -0.06528870761394501,
- -0.035012222826480865, 0.045304179191589355, -0.08049049973487854,
- -0.0009317332878708839, 0.022500311955809593, -0.0000561615452170372,
- 0.06994037330150604, 0.05426574498414993, -0.04831588640809059, -0.03882751613855362,
- -0.003979175351560116, -0.033260446041822433, -0.05681780353188515, 0.01472393423318863,
- 0.2190113067626953, -0.1348985731601715, 0.009661930613219738, 0.13252797722816467,
- -0.12866194546222687, 0.3790368437767029, 0.031922660768032074, -0.037775054574012756,
- 0.01665625162422657, 0.06688769906759262, 0.022220028564333916, 0.04047346115112305,
- 0.046120233833789825, -0.02459447830915451, 0.027734968811273575, -0.06343653798103333,
- -0.010155891999602318, 0.07504533976316452, 0.04718698561191559, -0.04449579864740372,
- -0.03391532599925995, -0.00634914031252265, -0.0688561201095581, -0.018802281469106674,
- -0.03136241436004639, 0.1034349799156189, 0.10883267223834991, -0.055891141295433044,
- 0.0012481985613703728, 0.03455145284533501, -0.03206035867333412, 0.027101317420601845,
- -0.05413239449262619, 0.0025297757238149643, -0.01701938547194004, 0.07243025302886963,
- -0.021991655230522156, 0.01661059632897377, -0.07478450238704681, -0.034492865204811096,
- 0.04601537063717842, 0.09147323668003082, 0.06211148202419281, 0.025512978434562683,
- 0.03644122928380966, 0.028524888679385185, -0.05589152127504349, -0.021704042330384254,
- -0.03842521458864212, -0.03138658404350281, -0.016888678073883057, -0.01840270310640335,
- 0.03908999264240265, -0.09085331857204437, -0.2419394850730896, 0.019788745790719986,
- 0.06146363541483879, -0.00617580208927393, -0.04288870841264725, 0.02092980407178402,
- -0.07821439206600189, 0.01881217025220394, -0.016977401450276375, -0.042491838335990906,
- 0.03142894431948662, -0.03427121788263321, 0.043198540806770325, 0.10605528950691223,
- 0.051673561334609985, -0.06434427946805954, -0.0683673769235611, -0.019655656069517136,
- -0.06792224198579788, 0.14110279083251953, -0.17531874775886536, -0.06587029248476028,
- 0.010807107202708721, -0.06456384062767029, 0.7251158952713013, 0.11646673083305359,
- 0.18712152540683746, 0.014788396656513214, 0.0007962365634739399, 0.1742907017469406,
- -0.028053462505340576, 0.07295897603034973, -0.10490384697914124, -0.06751485168933868,
- 0.01414123922586441, -0.11138780415058136, -0.06091086566448212, 0.009583121165633202,
- 0.028148937970399857, 0.06799712777137756, 0.025254929438233376, 0.08827590942382812,
- -0.01624966599047184, -0.11208036541938782, -0.041588637977838516, 0.01920100301504135,
- 0.05145219340920448, -0.1286073625087738, -0.060823313891887665, 0.03842420130968094,
- 0.08766065537929535, -0.12045472860336304, 0.005323442630469799, -0.09116323292255402,
- 0.11453477293252945, -0.02316070906817913, 0.0672716423869133, -0.01582525670528412,
- 0.051767438650131226, 0.03247459977865219, 0.07415130734443665, -0.019158465787768364,
- -0.1048981100320816, 0.015440062619745731, 0.08195599168539047, -0.018010638654232025,
- -0.03440527990460396, 0.07119293510913849, -0.08552630990743637, 0.0660669133067131,
- 0.025958679616451263, 0.17530018091201782, -0.1180870309472084, 0.03994547203183174,
- -0.025544431060552597, 0.007657651789486408, 0.016787979751825333,
- -0.023943886160850525, -0.0842846930027008, -0.09277674555778503, 0.1502840220928192,
- -0.017486656084656715, 0.010327727533876896, 0.032552268356084824, -0.02944875694811344,
- 0.031001711264252663, 0.1162068098783493, 0.025036517530679703, -0.010493829846382141,
- 0.10016968846321106, 0.03876152262091637, -0.02027767524123192, -0.04386962205171585,
- 0.03582540154457092, 0.06562930345535278, 0.029790915548801422, -0.009487997740507126,
- 0.08284089714288712, -0.03698675334453583, -0.04123618081212044, 0.008622228167951107,
- 0.05253348872065544, 0.020621251314878464, 0.0957709476351738, -0.039385244250297546,
- -0.07741416245698929, -0.022423427551984787, -0.033332694321870804,
- 0.006755689159035683, -0.010634874925017357, 0.09692931920289993, 0.09932567179203033,
- 0.05503056198358536, 0.02192264422774315, -0.0007406529039144516, 0.08097954094409943,
- 0.02809339202940464, 0.01316550001502037, 0.1248452365398407, -0.005898579955101013,
- -0.03596815839409828, -0.057407841086387634, -0.007187204901129007,
- 0.011465376242995262, 0.023789290338754654, -0.06290817260742188, -0.040514566004276276,
- -0.04500399902462959, -0.02269848622381687, -0.0915476456284523, -0.049916960299015045,
- 0.0729181319475174, 0.0027299271896481514, -0.06378136575222015, -0.09038710594177246,
- -0.08951910585165024, -0.007577115669846535, 0.1040017306804657, -0.0388772189617157,
- -0.05844816565513611, -0.1264023780822754, 0.03497777134180069, -0.028641344979405403,
- 0.07686988264322281, -0.035950079560279846, 0.024651076644659042, 0.007933765649795532,
- -0.04173571616411209, 0.04854842275381088, -0.0380723737180233, -0.024939559400081635,
- 0.0277695432305336, -0.05831725895404816, -0.03797204792499542, -0.0025480445474386215,
- -0.04782077670097351, -0.026652010157704353, 0.03305913507938385, 0.043353643268346786,
- 0.10149705410003662, -0.0173112191259861, -0.011231806129217148, 0.026717092841863632,
- -0.027819061651825905, -0.012573294341564178, 0.07115137577056885, -0.03927147760987282,
- 0.06588447093963623, -0.024270331487059593, -0.08607231080532074, -0.01316949725151062,
- 0.020090918987989426, -0.08390733599662781, 0.03735393285751343, -0.025580886751413345,
- 0.02259780280292034, -0.07425627112388611, 0.01552923209965229, 0.0848361998796463,
- -0.052522070705890656, -0.12205146253108978, -0.08118021488189697, 0.1119852066040039,
- -0.01338585652410984, 0.006226855330169201, 0.04118762165307999, -0.09948667883872986,
- 0.03339926898479462, -0.05160703882575035, -0.011785583570599556, 0.050280146300792694,
- 0.04984419047832489, 0.006636213045567274, 0.053857024759054184, 0.052260275930166245,
- -0.04590098187327385, 0.02252216264605522, 0.05435452610254288, 0.44233882427215576,
- -0.23908618092536926, 0.11363959312438965, 0.13449989259243011, 0.07752548158168793,
- 0.035310398787260056, -0.03451469540596008, 0.10027504712343216, 0.07704640924930573,
- 0.1522359997034073, 0.1008179634809494, -0.06961128860712051, -0.007114498410373926,
- -0.09164232015609741, 0.09889499843120575, 0.02499188482761383, 0.03421188145875931,
- 0.01151325087994337, -0.07513229548931122, 0.004494454711675644, 0.012835938483476639,
- -0.06562042236328125, -0.006483694538474083, -0.0423479825258255, -0.05145963281393051,
- 0.02984851971268654, 0.05790138244628906, 0.0811186358332634, 0.008480211719870567,
- 0.023518208414316177, 0.010359596461057663, 0.03920089825987816, 0.03710709512233734,
- 0.03360392898321152, -0.12604650855064392, 0.031489185988903046, -0.06438873708248138,
- -0.09480683505535126, 0.05175398290157318, -0.005221215076744556, 0.0942973867058754,
- 0.05715589225292206, -0.04330079257488251, 0.0007745276670902967, -0.01365591213107109,
- -0.0673501044511795, 0.01706567406654358, 0.06054825708270073, 0.0266218651086092,
- 0.05718247592449188, 0.1876348853111267, -0.05936576426029205, 0.004145417362451553,
- -0.05562923848628998, 0.10473904013633728, 0.12493109703063965, -0.024575091898441315,
- 0.05938150733709335, 0.011649303138256073, -0.007560682948678732, -0.014736899174749851,
- -0.02964738942682743, -0.10884030163288116, -0.03281734883785248, -0.06363663077354431,
- 0.06915910542011261, 0.03921927511692047, -0.04201624169945717, -0.18236516416072845,
- -0.09186048060655594, -0.08198002725839615, 0.0075752511620521545, 0.11898349225521088,
- -0.08806358277797699, 0.003085792064666748, -0.002482101321220398, 0.025416886433959007,
- 0.022923795506358147, -0.08992505073547363, 0.02172788791358471, -0.03882671147584915,
- 0.05357515811920166, 0.08036496490240097, 0.05435626208782196, -0.006065294146537781,
- 0.0914873331785202, -0.09142535924911499, 0.06820137798786163, 0.030052121728658676,
- -0.0536617748439312, 0.023934556171298027, -0.016010433435440063, 0.032657451927661896,
- 0.03155532851815224, -0.10851183533668518, 0.013855175115168095, -0.03537404164671898,
- -0.04480975866317749, -0.03007487580180168, -0.09835405647754669, -0.054212260991334915,
- -0.055821195244789124, 0.011174974031746387, -0.09004855901002884,
- -0.028646348044276237, -0.030592653900384903, 0.004832887090742588,
- -0.04487369582056999, 0.04664155840873718, 0.05677951127290726, -0.15822647511959076,
- 0.022439610213041306, -0.020264334976673126, 0.03968990594148636, -0.05893611162900925,
- -0.013961386866867542, 0.032883789390325546, 0.06905755400657654, 0.026412131264805794,
- -0.01461479626595974, 0.011448348872363567, -0.04980165511369705, 0.07896092534065247,
- -0.1342647671699524, -0.40576809644699097, 0.0605032742023468, -0.013254502788186073,
- 0.030194032937288284, 0.030274245887994766, -0.08907079696655273, 0.05161835253238678,
- 0.039976224303245544, -0.07240687310695648, 0.10436288267374039, -0.05547879636287689,
- 0.035670891404151917, -0.048026129603385925, -0.08570685237646103,
- -0.0070746103301644325, -0.05993744730949402, -0.054839640855789185,
- -0.008349335752427578, -0.01745726726949215, -0.030360382050275803,
- -0.12589393556118011, 0.024244802072644234, -0.001011265441775322, 0.06665723025798798,
- 0.015637503936886787, 0.006742916535586119, -0.058009933680295944, -0.05737878009676933,
- 0.03641855716705322, 0.09935788810253143, 0.04150007665157318, -0.09005793929100037,
- 0.008997711353003979, 0.10327382385730743, 0.0287272147834301, 0.13359545171260834,
- 0.0558282770216465, -0.014452685602009296, -0.06425963342189789, 0.06818384677171707,
- 0.08868280053138733, 0.18374457955360413, -0.02864767611026764, 0.002021564869210124,
- -0.0052647776901721954, 0.14464117586612701, 0.06713448464870453, 0.010440954007208347,
- -0.03991088643670082, -0.023441806435585022, 0.022688984870910645,
- -0.010304028168320656, 0.09940174221992493, -0.045074716210365295, -0.01611211895942688,
- -0.005008515436202288, -0.0014964556321501732, -0.011575683951377869,
- 0.005200474057346582, 0.19559749960899353, 0.027871470898389816, 0.047220587730407715,
- 0.04785783588886261, -0.05275626480579376, 0.027995020151138306, -0.09232359379529953,
- -0.10729321837425232, -0.00782686471939087, -0.004557652864605188, 0.025196731090545654,
- -0.07225735485553741, -0.09810370206832886, -0.024967048317193985, 0.037565283477306366,
- -0.020897287875413895, 0.1275961995124817, -0.02759464830160141, 0.04768591374158859,
- -0.00574638694524765, 0.13566954433918, 0.03976409137248993, 0.0044595603831112385,
- 0.08192779123783112, 0.08213329315185547, 0.004786300007253885, 0.01994931884109974,
- -0.04949911683797836, -0.10422351211309433, -0.05834333598613739, 0.1240798607468605,
- -0.04468933492898941, 0.13579143583774567, 0.0627308040857315, -0.05139622837305069,
- -0.0406167097389698, 0.010513707995414734, -0.030604548752307892, -0.02181508019566536,
- -0.441200315952301, -0.00965309701859951, 0.09411948919296265, -0.0023990217596292496,
- 0.014894325286149979, 0.11890392005443573, 0.03548991680145264, -0.06408201158046722,
- -0.0665622353553772, -0.08778002858161926, 0.18394547700881958, -0.0009054066613316536,
- 0.06502442061901093, -0.0683809295296669, -0.021643951535224915, 0.051942139863967896,
- -0.02045127935707569, -0.004251119215041399, 0.08426307141780853, -0.28220272064208984,
- -0.007100990042090416, -0.018099559471011162, 0.13064755499362946, 0.019293541088700294,
- 0.028506169095635414, 0.09624920785427094, -0.013840071856975555, 0.053449541330337524,
- 0.02960088662803173, -0.014382071793079376, 0.03351510688662529, -0.035939279943704605,
- -0.028934422880411148, 0.11758081614971161, 0.10227224230766296, 0.022137336432933807,
- -0.016141723841428757, 12.098575592041016, 0.09077908098697662, 0.09178143739700317,
- -0.08613231778144836, -0.006518985610455275, -0.01769719272851944, -0.01215390581637621,
- -0.11728847026824951, 0.05923984944820404, 0.14871686697006226, -0.05287373811006546,
- -0.06305818259716034, -0.014514662325382233, -0.08676581084728241, 0.02754858508706093,
- -0.06344534456729889, -0.07891134917736053, -0.0429220050573349, 0.04821068421006203,
- -0.013327986001968384, -0.0817677229642868, 0.033833373337984085, 0.059519119560718536,
- 0.017588837072253227, -0.0923844501376152, 0.06697103381156921, 0.018382437527179718,
- 0.007789127994328737, -0.02078189328312874, 0.003602768527343869, 0.017842881381511688,
- 0.004412726499140263, 0.05609123408794403, -0.020436497405171394, 0.053660161793231964,
- 0.07284853607416153, 0.09738682955503464, 0.0949835479259491, 0.06719546020030975,
- 0.07508888095617294, -0.004502500407397747, -0.009751459583640099, 0.05516224727034569,
- 0.0266954954713583, 0.03001968190073967, 0.0336320623755455, 0.08182866871356964,
- 0.1232438012957573, 0.001260322518646717, 0.0604623407125473, 0.08999107778072357,
- 0.015784582123160362, 0.07780735194683075, 0.03883882984519005, -0.06354719400405884,
- 0.06715794652700424, -0.040811434388160706, -0.08609891682863235, 0.09814560413360596,
- 0.04535391181707382, -0.06283443421125412, 0.0951961874961853, -0.006650654599070549,
- 0.1178625226020813, 0.051701486110687256, 0.02571859024465084, 0.04076876491308212,
- 0.12614905834197998, -0.09777020663022995, -0.13022390007972717, 0.013002434745430946,
- -0.1232166588306427, -0.09044057875871658, 0.09562495350837708, 0.1426650881767273,
- -0.02402140200138092, 0.05408783257007599, -0.027249550446867943, 0.04158740118145943,
- -0.06119425594806671, 0.04492981359362602, 0.05715039744973183, 0.01981176808476448,
- 0.04689459502696991, 0.007745868060737848, 0.013729484751820564, 0.07875591516494751,
- 0.11287692189216614, 0.029931694269180298, -0.08254276216030121, -0.034489355981349945,
- 0.11977960914373398, 0.01625228114426136, -0.0681452751159668, 0.02337787114083767,
- -0.08852237462997437, -0.0076346974819898605, -0.15075033903121948, 0.11171883344650269,
- 0.11166417598724365, -0.09837180376052856, -0.029212411493062973, -0.02861616015434265,
- 0.05741968750953674, 0.015553737059235573, -0.01464013196527958, -0.04488760605454445,
- -0.01841157302260399, 0.035655733197927475, 0.08379156142473221, -0.044285766780376434,
- 0.05503029376268387, 0.13390125334262848, -0.06252553313970566, 0.021427888423204422,
- 0.0481572225689888, -0.036335162818431854, -0.000664272578433156, 0.05204199627041817,
- 0.020687751471996307, -0.09548625349998474, -0.046725109219551086, -0.08151435852050781,
- -0.04451020434498787, -0.0026753912679851055, -0.03313880413770676,
- 0.011850029230117798, 0.05630581080913544, -0.041056372225284576, -0.023244941607117653,
- 0.05265018343925476, 0.08140172064304352, 0.08716027438640594, 0.007443442475050688,
- 0.07645447552204132, -0.05842554569244385, -0.02942071482539177, 0.03292961046099663,
- 0.04184520244598389, 0.08512930572032928, -0.08267102390527725, -0.05001157522201538,
- -0.08570791035890579, -0.1324966549873352, 0.0038663195446133614, 0.1247006356716156,
- 0.0015061059966683388, -0.0017474358901381493, 0.0404425710439682, -0.1433020830154419,
- -0.03780420869588852, 0.1324910819530487, 0.046952199190855026, -0.0066238632425665855,
- 0.04392210394144058, -0.04841763526201248, -0.034805141389369965, 0.12934137880802155,
- -0.021061286330223083, 0.0179973766207695, 0.011554116383194923, -0.07342389971017838,
- 0.12084537744522095, 0.15712174773216248, 0.039849117398262024, 0.00093813706189394,
- 0.015190639533102512, 0.0216832272708416, 0.12418796867132187, -0.0033098699059337378,
- 0.03661360219120979, -0.03444237262010574, -0.08159187436103821, -0.08611924201250076,
- -0.0020100318361073732, 0.0911436676979065, 0.05269069969654083, -0.09384727478027344,
- 0.00418110191822052, -0.054504767060279846
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 166,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 115,
- "similarity": 0.9982122778892517
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 6,
- "similarity": 0.9981034994125366
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 58,
- "similarity": 0.9980778098106384
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Connor Perrett"],
- "epoch_date_downloaded": 1652313600,
- "epoch_date_modified": 1652400000,
- "epoch_date_submitted": 1652400000,
- "flag": null,
- "report_number": 1563,
- "source_domain": "businessinsider.com",
- "submitters": ["Irina Borisova King"],
- "title": "A social media app just for 'females' intentionally excludes trans women — and some say its face-recognition AI discriminates against women of color, too",
- "url": "https://www.businessinsider.com/giggle-app-uses-ai-to-exclude-trans-women-ceo-says-2022-1"
- },
- {
- "__typename": "Report",
- "authors": ["Zoe Schiffer"],
- "epoch_date_downloaded": 1645747200,
- "epoch_date_modified": 1645747200,
- "epoch_date_submitted": 1645747200,
- "flag": null,
- "report_number": 1538,
- "source_domain": "theverge.com",
- "submitters": ["Anonymous"],
- "title": "This girls-only app uses AI to screen a user’s gender — what could go wrong?",
- "url": "https://www.theverge.com/2020/2/7/21128236/gender-app-giggle-women-ai-screen-trans-social"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "yilun-wang",
- "name": "Yilun Wang"
- },
- {
- "__typename": "Entity",
- "entity_id": "michal-kosinski",
- "name": "Michal Kosinski"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "yilun-wang",
- "name": "Yilun Wang"
- },
- {
- "__typename": "Entity",
- "entity_id": "michal-kosinski",
- "name": "Michal Kosinski"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "non-american-lgbtq-people",
- "name": "non-American LGBTQ people"
- },
- {
- "__typename": "Entity",
- "entity_id": "lgbtq-people-of-color",
- "name": "LGBTQ people of color"
- },
- {
- "__typename": "Entity",
- "entity_id": "lgbtq-people",
- "name": "LGBTQ people"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1539],
- "vector": [
- -0.035517383366823196, 0.03319830447435379, 0.01085597462952137, -0.1191892921924591,
- 0.0783439576625824, 0.006567411590367556, -0.011657271534204483, 0.07456135004758835,
- 0.08996539562940598, -0.1473163366317749, -0.008354629389941692, 0.004363366402685642,
- 0.03256111592054367, -0.028876153752207756, 0.02107369899749756, 0.012800251133739948,
- -0.03847898915410042, -0.0447736419737339, 0.01241332944482565, -0.15830527245998383,
- -0.06306682527065277, -0.03620590642094612, 0.004469393752515316, 0.07430814206600189,
- -0.016213854774832726, 0.02191167324781418, 0.10138202458620071, 0.12874053418636322,
- -0.06374477595090866, 0.003698393004015088, -0.058947138488292694, -0.05860840901732445,
- 0.08067743480205536, -0.00535146938636899, 0.005135490093380213, 0.10231133550405502,
- 0.01670200005173683, -0.006394801661372185, 0.006767395418137312,
- -0.0031397794373333454, -0.038651254028081894, 0.23149988055229187, 0.02697782963514328,
- 0.007642648182809353, 0.054937176406383514, -0.01071177702397108, 0.04207446053624153,
- 0.028426852077245712, -0.018644295632839203, 0.016060270369052887,
- -0.014084458351135254, 0.010712508112192154, -0.08848883211612701, 0.05178430676460266,
- -0.07521018385887146, 0.030470451340079308, 0.009228287264704704, 0.0019036423182114959,
- 0.022425448521971703, -0.06643916666507721, -0.03674964979290962, -0.20569336414337158,
- -0.008504405617713928, -0.06849794834852219, 0.10609347373247147, -0.06044868752360344,
- -0.02496742643415928, -0.028940675780177116, 0.03565705195069313, 0.05287650600075722,
- 0.049874886870384216, -0.03835523873567581, -0.025636211037635803, 0.02710501290857792,
- -0.014083030633628368, -0.004168856423348188, 0.05052340403199196, 0.21673151850700378,
- -0.10732125490903854, -0.009180599823594093, 0.10305193811655045, -0.10764914751052856,
- 0.4101015031337738, 0.028962517157197, -0.04640089347958565, 0.04118237644433975,
- 0.0667496770620346, 0.040591493248939514, 0.03151681274175644, 0.05995917692780495,
- -0.011952602304518223, 0.06152832880616188, -0.10822399705648422, -0.026839137077331543,
- 0.05377525836229324, 0.0436127744615078, -0.014239076524972916, 0.0673958957195282,
- 0.007787540089339018, -0.02416655793786049, 0.025963986292481422, -0.06467682868242264,
- 0.08916645497083664, 0.13495811820030212, -0.03403247520327568, -0.018392879515886307,
- 0.09663951396942139, -0.0726989209651947, 0.05537763237953186, -0.08748425543308258,
- 0.0013662572018802166, -0.009845542721450329, 0.05738440901041031, 0.015129229053854942,
- 0.0026083956472575665, -0.05317118018865585, 0.029723070561885834, 0.04464803263545036,
- 0.08863957226276398, 0.014645813032984734, -0.013414361514151096, 0.06615124642848969,
- 0.04203181713819504, -0.08775067329406738, -0.011075705289840698, -0.05703144147992134,
- -0.04951687529683113, -0.02550165355205536, -0.021899517625570297, 0.061689671128988266,
- -0.058235201984643936, -0.18161946535110474, 0.025624210014939308, 0.0881417840719223,
- -0.024000290781259537, -0.05570855736732483, 0.03788188472390175, -0.05983760580420494,
- 0.06026866286993027, 0.002512086648494005, -0.036852430552244186, 0.052202675491571426,
- 0.0717139020562172, 0.05078504607081413, 0.11601186543703079, 0.0590999610722065,
- -0.013717073947191238, -0.05167790874838829, 0.013717064633965492, -0.0455261766910553,
- 0.13861440122127533, -0.1642487645149231, -0.059309374541044235, -0.04703284800052643,
- -0.002780498471111059, 0.6514450907707214, 0.10109017044305801, 0.1425534337759018,
- -0.014771522954106331, -0.0355464443564415, 0.18198327720165253, -0.03147834166884422,
- 0.06150686740875244, -0.06213139742612839, -0.02529386803507805, 0.013446764089167118,
- -0.06010077893733978, -0.013879998587071896, -0.01774005778133869, 0.022274382412433624,
- 0.11721380054950714, 0.00604952871799469, 0.0976664274930954, 0.023320680484175682,
- -0.09604265540838242, -0.01822572946548462, 0.02141316421329975, -0.0017698645824566483,
- -0.15151579678058624, -0.05711192637681961, 0.04955820366740227, 0.05672982335090637,
- -0.10857181996107101, 0.005457435734570026, -0.05645323544740677, 0.046921007335186005,
- -0.03216118738055229, 0.05456813797354698, 0.002354208379983902, 0.03580222278833389,
- 0.04935207962989807, 0.05918636918067932, -0.005178958643227816, -0.11542533338069916,
- -0.030220219865441322, 0.06805113703012466, -0.02699156664311886, -0.017097702249884605,
- 0.0869373008608818, -0.038510292768478394, 0.05269332602620125, 0.00473112054169178,
- 0.14565949141979218, -0.10110580921173096, 0.05041176825761795, 0.019561998546123505,
- -0.017147492617368698, 0.054066989570856094, 0.024032369256019592, -0.07361656427383423,
- -0.07531512528657913, 0.1006460189819336, 0.01585824228823185, 0.0015885889297351241,
- 0.06686148792505264, -0.062349505722522736, 0.054458603262901306, 0.07856214046478271,
- 0.0050729792565107346, -0.014266611076891422, 0.028746556490659714, 0.03242951259016991,
- -0.015262906439602375, -0.0015044367173686624, 0.03550859913229942,
- 0.0015165320364758372, 0.012575794942677021, -0.028903137892484665, 0.0462370365858078,
- -0.030228903517127037, -0.05943712592124939, 0.07891936600208282, 0.05401623994112015,
- -0.0161946639418602, 0.10588638484477997, -0.08099579811096191, -0.04974989965558052,
- -0.012484196573495865, -0.03534023091197014, 0.015415772795677185,
- -0.007697407156229019, 0.07403436303138733, 0.11370640248060226, 0.09633119404315948,
- 0.08788472414016724, 0.028242280706763268, 0.042632345110177994, 0.10541269183158875,
- 0.012884984724223614, 0.06812780350446701, -0.014883761294186115, -0.013362351804971695,
- -0.006996935699135065, -0.004192691296339035, 0.024349015206098557,
- 0.012774200178682804, -0.0518253818154335, -0.042359959334135056, -0.08159701526165009,
- -0.015302835032343864, -0.06691444665193558, -0.06802517920732498, 0.013148089870810509,
- 0.04922807961702347, -0.03514492139220238, -0.1231880784034729, -0.07483766973018646,
- 0.038349393755197525, 0.05403876304626465, -0.05034326761960983, -0.051028016954660416,
- -0.09628144651651382, 0.03938310965895653, 0.011108648963272572, 0.04642507806420326,
- 0.01056799478828907, 0.04240589216351509, -0.05194823071360588, -0.05929236859083176,
- 0.04784869775176048, 0.010731671936810017, 0.03432360664010048, 0.03427527844905853,
- -0.059879645705223083, -0.0024608122184872627, -0.06947605311870575,
- 0.03404738008975983, -0.026264695450663567, 0.04850991070270538, 0.0473671555519104,
- 0.03663991391658783, 0.01054690033197403, -0.031116170808672905, 0.04232734441757202,
- -0.01341757457703352, -0.022907085716724396, 0.09291020780801773, -0.050747938454151154,
- 0.03235282376408577, 0.007971975952386856, -0.0840643122792244, -0.06743372976779938,
- 0.013256506063044071, -0.039647117257118225, 0.07290544360876083, -0.006678072270005941,
- 0.018946150317788124, -0.055369775742292404, -0.01600220799446106, 0.0559665746986866,
- -0.0647132471203804, -0.046299125999212265, -0.10588672012090683, 0.11819525063037872,
- -0.020267238840460777, -0.002650802256539464, -0.004208967089653015,
- -0.042319148778915405, 0.06804676353931427, -0.01730075292289257, 0.02880409173667431,
- 0.004807383753359318, 0.04116214066743851, 0.01888151653110981, 0.00706727197393775,
- 0.06270512193441391, -0.026515737175941467, 0.020282283425331116, 0.08896417170763016,
- 0.4676603674888611, -0.1666392982006073, 0.12099934369325638, 0.10154585540294647,
- 0.059059008955955505, 0.03046436607837677, -0.04152069240808487, 0.07349920272827148,
- 0.07479643821716309, 0.108085036277771, 0.11740692704916, -0.06791906803846359,
- -0.04697716236114502, -0.0962093397974968, 0.12551571428775787, -0.007499071303755045,
- 0.04567559435963631, -0.01938573457300663, -0.04723983630537987, -0.003624318866059184,
- 0.018590465188026428, -0.04746048152446747, 0.022807879373431206, 0.028608223423361778,
- -0.02957560122013092, 0.010370003059506416, 0.06001070514321327, 0.06722106039524078,
- -0.05591044947504997, 0.01587432622909546, -0.023383721709251404, 0.043901052325963974,
- 0.012177666649222374, 0.04099671170115471, -0.12403985857963562, -0.0016568673308938742,
- -0.12299928069114685, -0.05261034145951271, 0.04994356259703636, -0.04132281616330147,
- 0.095773845911026, -0.0019252187339589, -0.03371957689523697, 0.018649796023964882,
- -0.019292989745736122, -0.026165980845689774, 0.002692860085517168, 0.08228769153356552,
- 0.036246202886104584, 0.04947250708937645, 0.1378650814294815, -0.014894057996571064,
- -0.06939168274402618, -0.07994657754898071, 0.07204291969537735, 0.18419110774993896,
- -0.017163725569844246, 0.011674439534544945, 0.04096292704343796, -0.026840796694159508,
- -0.02160465717315674, -0.07276690006256104, -0.04968016967177391, -0.010075407102704048,
- -0.023613369092345238, 0.08435844630002975, 0.03422890603542328, -0.005836951080709696,
- -0.144230455160141, -0.015222299844026566, -0.030746057629585266, 0.01634904369711876,
- 0.1383751779794693, -0.06443549692630768, 0.024312224239110947, -0.02706422656774521,
- -0.04049886018037796, -0.004394741263240576, -0.078504279255867, -0.006970079615712166,
- -0.02128809317946434, -0.002616403391584754, 0.08014103770256042, 0.05339358001947403,
- -0.031494371592998505, 0.09154801070690155, -0.11734073609113693, 0.0387946292757988,
- -0.008137081749737263, -0.04715050384402275, 0.021724751219153404, -0.04265217110514641,
- 0.0416911244392395, 0.03755681589245796, -0.06484821438789368, 0.008891691453754902,
- -0.01943182200193405, -0.034107789397239685, -0.05444056913256645, -0.06401292234659195,
- -0.040540363639593124, -0.0732644647359848, 0.025024253875017166, -0.13733027875423431,
- 0.012586919590830803, -0.04616926610469818, -0.0272812657058239, -0.01862349361181259,
- 0.022333446890115738, 0.0035464942920953035, -0.08100870996713638, 0.029634516686201096,
- -0.02168908528983593, 0.024320853874087334, -0.04622287303209305, -0.07254035025835037,
- 0.04257528483867645, 0.058592505753040314, 0.07198867946863174, -0.018513213843107224,
- 0.019711125642061234, -0.06176476553082466, 0.09772871434688568, -0.1301092952489853,
- -0.5296599864959717, 0.09137781709432602, 0.04497701674699783, 0.00999095756560564,
- 0.0015266913687810302, -0.05230044201016426, 0.08089640736579895, -0.018957899883389473,
- -0.033944178372621536, 0.08069932460784912, -0.05845193192362785, 0.013767266646027565,
- -0.021686693653464317, -0.020188357681035995, -0.013064147904515266,
- -0.020185425877571106, -0.050392672419548035, 0.05205615237355232,
- 0.0012525772908702493, -0.046400852501392365, -0.11343694478273392,
- 0.027335545048117638, 0.018998414278030396, 0.01946519874036312, 0.0536845438182354,
- 0.015897104516625404, -0.005079024471342564, -0.043738026171922684,
- 0.026549821719527245, 0.05668746680021286, 0.00813618116080761, -0.07144703716039658,
- 0.025208277627825737, 0.043396301567554474, -0.031463127583265305, 0.10188725590705872,
- 0.047345973551273346, 0.011222844012081623, -0.09021798521280289, 0.11635811626911163,
- 0.05912701040506363, 0.18991154432296753, -0.005523027386516333, 0.03645719587802887,
- -0.00004519984940998256, 0.1401696652173996, 0.058229923248291016, 0.04435710608959198,
- -0.010587898083031178, -0.0019395063864067197, 0.05048135295510292,
- -0.012616032734513283, 0.053930483758449554, -0.10052607208490372,
- -0.011719641275703907, -0.041031282395124435, -0.024522531777620316,
- -0.08779291808605194, 0.023302070796489716, 0.22562535107135773, 0.013735052198171616,
- 0.015543528832495213, 0.024173755198717117, 0.02485477738082409, 0.007119842804968357,
- -0.0834110826253891, -0.09612902998924255, -0.019253592938184738, -0.0195392444729805,
- 0.024389542639255524, -0.03803454339504242, -0.1096859723329544, -0.02082405425608158,
- 0.025093266740441322, -0.013814055360853672, 0.0697072371840477, 0.00847083330154419,
- 0.010228484869003296, -0.04402114450931549, 0.11522586643695831, 0.0002760962233878672,
- -0.017019199207425117, 0.05214624106884003, 0.09672657400369644, 0.037190064787864685,
- 0.0704289898276329, -0.04707151651382446, -0.08003895729780197, -0.03342604637145996,
- 0.15752151608467102, -0.03531681373715401, 0.11241437494754791, 0.06499828398227692,
- -0.07478836923837662, -0.05346805974841118, 0.006882944609969854, 0.01943269930779934,
- 0.04467697814106941, -0.45740121603012085, -0.06681542098522186, 0.12777051329612732,
- -0.02528035268187523, 0.03727396950125694, 0.07332003861665726, 0.045187171548604965,
- -0.021713662892580032, -0.028901372104883194, -0.060224324464797974,
- 0.06553003937005997, -0.011679321527481079, 0.06642020493745804, -0.10735220462083817,
- 0.011812899261713028, 0.08946090936660767, -0.045503463596105576, -0.027211850509047508,
- 0.0665719285607338, -0.27301323413848877, -0.031073229387402534, -0.05351682007312775,
- 0.17429454624652863, 0.012727215886116028, 0.029697135090827942, 0.11178190261125565,
- -0.028235413134098053, 0.03940485417842865, 0.07090570032596588, -0.015690498054027557,
- 0.07310772687196732, -0.05386071652173996, -0.0005597220151685178, 0.09426317363977432,
- 0.18679891526699066, 0.0295940600335598, -0.02964092046022415, 11.729206085205078,
- 0.037770483642816544, 0.08263075351715088, -0.1121869757771492, 0.00897937547415495,
- -0.06283767521381378, 0.07280783355236053, -0.07139991968870163, 0.09129691123962402,
- 0.15391619503498077, -0.027215929701924324, -0.044425442814826965, -0.04776051640510559,
- -0.08745745569467545, 0.011392605490982533, -0.04325524717569351, -0.04585304483771324,
- 0.005694940220564604, 0.05459576100111008, -0.025495566427707672, -0.035153310745954514,
- 0.025565924122929573, 0.032879505306482315, -0.0005856109783053398,
- -0.09380530565977097, 0.042000893503427505, 0.060159455984830856, 0.02192540466785431,
- 0.004003224894404411, 0.024016350507736206, 0.024591689929366112, 0.036068592220544815,
- 0.06086210533976555, 0.025081736966967583, 0.025789514183998108, 0.029822956770658493,
- 0.0638667494058609, 0.017377706244587898, 0.016697384417057037, 0.10889320075511932,
- 0.0034455182030797005, 0.03212998807430267, -0.0008278964087367058,
- 0.020917240530252457, 0.06572823971509933, 0.021719327196478844, 0.031434349715709686,
- 0.0949253961443901, -0.007485587615519762, 0.07050463557243347, 0.08310075104236603,
- -0.028409836813807487, 0.10816958546638489, -0.02531423419713974, -0.020186465233564377,
- 0.028268367052078247, 0.0032663249876350164, -0.08424797654151917, 0.03872796520590782,
- 0.025103095918893814, -0.0005593342939391732, 0.15492644906044006, 0.020856481045484543,
- 0.09744703769683838, -0.022114790976047516, 0.09709184616804123, 0.054601605981588364,
- 0.05302425101399422, -0.09062585979700089, -0.08237925916910172, 0.03256447985768318,
- -0.08781769871711731, -0.09656472504138947, 0.07188579440116882, 0.09937532246112823,
- -0.027109289541840553, 0.03526277095079422, -0.028940418735146523, 0.017344536259770393,
- -0.024673283100128174, 0.0004882269713561982, 0.08913208544254303, -0.03494539484381676,
- 0.013516958802938461, 0.01663925312459469, 0.05129975453019142, 0.08383798599243164,
- 0.07744818925857544, -0.03839860111474991, -0.06275330483913422, -0.0860930010676384,
- 0.07059749960899353, -0.022348055616021156, -0.0868561640381813, 0.017438851296901703,
- -0.04312930256128311, 0.0090656578540802, -0.17810463905334473, 0.12937912344932556,
- 0.048175860196352005, -0.07960031926631927, -0.031837135553359985,
- -0.012487400323152542, 0.08323821425437927, -0.02207889035344124, 0.0511169396340847,
- -0.019053278490900993, -0.018778257071971893, 0.022552410140633583, 0.05485934019088745,
- -0.01420998852699995, 0.05712554231286049, 0.11705131828784943, -0.08573895692825317,
- 0.0029707024805247784, 0.031653884798288345, -0.06080808490514755,
- -0.005238664336502552, 0.055532459169626236, 0.036320146173238754, -0.09332670271396637,
- -0.02282760478556156, -0.05275603011250496, -0.021429626271128654,
- 0.0013479783665388823, -0.0781659260392189, -0.029419803991913795, 0.019589103758335114,
- -0.04265719652175903, -0.011349768377840519, -0.025281677022576332,
- 0.043011151254177094, 0.10490533709526062, 0.02529069595038891, 0.06433399766683578,
- -0.044050201773643494, -0.024543629959225655, 0.05032217875123024, 0.050847236067056656,
- 0.08413438498973846, -0.08894333243370056, -0.042856186628341675, -0.0399593822658062,
- -0.120703786611557, 0.027546143159270287, 0.08076635003089905, -0.031351860612630844,
- 0.004208688624203205, 0.0324527882039547, -0.08361808210611343, -0.056943099945783615,
- 0.1076321005821228, 0.03785064071416855, -0.010361647233366966, 0.028238419443368912,
- -0.06369076669216156, -0.04194221273064613, 0.07299727946519852, -0.0671193078160286,
- -0.03282465413212776, -0.02228972502052784, -0.024723468348383904, 0.07516489177942276,
- 0.040248364210128784, 0.06411227583885193, 0.028672995045781136, 0.017458420246839523,
- 0.002772222738713026, 0.044912174344062805, -0.01735670305788517, 0.049279630184173584,
- -0.05348750948905945, -0.082169309258461, -0.07521416246891022, -0.028223508968949318,
- 0.10044499486684799, 0.010510443709790707, -0.1041332334280014, -0.015743602067232132,
- -0.05287543684244156
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 167,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 146,
- "similarity": 0.9982580542564392
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 174,
- "similarity": 0.9980884790420532
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 199,
- "similarity": 0.9980615377426147
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Heather Murphy"],
- "epoch_date_downloaded": 1644969600,
- "epoch_date_modified": 1645920000,
- "epoch_date_submitted": 1645920000,
- "flag": null,
- "report_number": 1539,
- "source_domain": "nytimes.com",
- "submitters": ["Anonymous"],
- "title": "Why Stanford Researchers Tried to Create a ‘Gaydar’ Machine",
- "url": "https://www.nytimes.com/2017/10/09/science/stanford-sexual-orientation-study.html"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "youtube",
- "name": "YouTube"
- },
- {
- "__typename": "Entity",
- "entity_id": "twitter",
- "name": "Twitter"
- },
- {
- "__typename": "Entity",
- "entity_id": "netflix",
- "name": "Netflix"
- },
- {
- "__typename": "Entity",
- "entity_id": "linkedin",
- "name": "LinkedIn"
- },
- {
- "__typename": "Entity",
- "entity_id": "facebook",
- "name": "Facebook"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "youtube",
- "name": "YouTube"
- },
- {
- "__typename": "Entity",
- "entity_id": "twitter",
- "name": "Twitter"
- },
- {
- "__typename": "Entity",
- "entity_id": "netflix",
- "name": "Netflix"
- },
- {
- "__typename": "Entity",
- "entity_id": "linkedin",
- "name": "LinkedIn"
- },
- {
- "__typename": "Entity",
- "entity_id": "facebook",
- "name": "Facebook"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "youtube-users",
- "name": "YouTube users"
- },
- {
- "__typename": "Entity",
- "entity_id": "twitter-users",
- "name": "Twitter Users"
- },
- {
- "__typename": "Entity",
- "entity_id": "netflix-users",
- "name": "Netflix users"
- },
- {
- "__typename": "Entity",
- "entity_id": "linkedin-users",
- "name": "LinkedIn users"
- },
- {
- "__typename": "Entity",
- "entity_id": "facebook-users",
- "name": "Facebook users"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1541, 1540],
- "vector": [
- -0.00099952332675457, 0.1500202715396881, -0.036983124911785126, -0.06487885862588882,
- 0.05484924465417862, 0.002694502007216215, -0.0031288862228393555, 0.0577818900346756,
- 0.0775538757443428, -0.12826456129550934, 0.006397615186870098, 0.00588985625654459,
- 0.058456264436244965, -0.09604308009147644, 0.03510250896215439, -0.12344512343406677,
- -0.128516286611557, -0.001482115127146244, 0.008978080004453659, -0.15239882469177246,
- -0.11339850723743439, -0.006609165109694004, -0.010452521964907646, 0.11449164897203445,
- -0.0828121155500412, 0.052095793187618256, 0.12710942327976227, 0.12704750895500183,
- -0.02373436465859413, 0.028919171541929245, -0.054565489292144775, -0.06916140019893646,
- 0.14146378636360168, 0.02533489651978016, -0.029605012387037277, 0.02858646586537361,
- 0.022696828469634056, -0.019057627767324448, 0.0016603535041213036,
- -0.05899440124630928, 0.07641126215457916, 0.30366331338882446, -0.06443013995885849,
- 0.006989757064729929, 0.0491735003888607, -0.06907206773757935, 0.0033635664731264114,
- 0.034480273723602295, -0.002092658542096615, 0.052761390805244446,
- 0.000014415010809898376, 0.021524131298065186, -0.06665975600481033,
- 0.004066022578626871, -0.10427819937467575, 0.007075429894030094, 0.02765190228819847,
- -0.06756968051195145, -0.0023017372004687786, -0.1356823444366455,
- -0.021693572402000427, -0.15250559151172638, -0.05059804767370224, -0.10867035388946533,
- 0.1009843572974205, -0.05815665423870087, -0.0367252454161644, 0.02551637962460518,
- 0.03093363344669342, 0.06133691594004631, 0.01606418937444687, -0.002477948786690831,
- -0.07096506655216217, 0.035692986100912094, -0.010804186575114727,
- -0.041731882840394974, -0.0029973506461828947, 0.21395769715309143,
- -0.08143439888954163, 0.03692059963941574, 0.039765357971191406, -0.047787874937057495,
- 0.336980938911438, 0.009464109316468239, -0.017534330487251282, 0.05924464017152786,
- 0.07583894580602646, 0.05979837104678154, 0.03499709814786911, 0.0016507062828168273,
- -0.008888136595487595, 0.05250643193721771, -0.06838183104991913, -0.06429632008075714,
- 0.06254170835018158, -0.009336479939520359, 0.01767638511955738, -0.15986958146095276,
- -0.04174071550369263, -0.013260127045214176, -0.02577473223209381, -0.03187483176589012,
- 0.11763261258602142, 0.10553868114948273, -0.08009982109069824, 0.06346507370471954,
- 0.10330599546432495, -0.021606050431728363, 0.07954281568527222, -0.015639906749129295,
- 0.0727570578455925, 0.019756220281124115, 0.12119728326797485, -0.014387683942914009,
- 0.02563580498099327, 0.004757999908179045, 0.004446631297469139, 0.04389980062842369,
- 0.05810472369194031, 0.11397403478622437, 0.03443716838955879, 0.055345989763736725,
- 0.024785857647657394, -0.09790104627609253, -0.10787302255630493, 0.022287001833319664,
- -0.01835838332772255, -0.04306182265281677, -0.01747334562242031, 0.07560482621192932,
- -0.01852715015411377, -0.23699021339416504, -0.004573528654873371, 0.06150096654891968,
- -0.07680973410606384, -0.016142375767230988, -0.0015268749557435513,
- -0.09407442808151245, 0.019713137298822403, -0.05749354511499405, -0.03532678633928299,
- 0.04280712828040123, 0.06366496533155441, 0.025879696011543274, 0.09364108741283417,
- 0.06467410922050476, -0.06764794886112213, -0.06876254081726074, 0.0014481998514384031,
- -0.08243727684020996, 0.10568403452634811, -0.07376693189144135, -0.0549059696495533,
- -0.028590118512511253, 0.007496992126107216, 0.7105065584182739, 0.11267295479774475,
- 0.123069167137146, -0.04467034712433815, -0.023118436336517334, 0.14637982845306396,
- 0.034891143441200256, 0.05490241199731827, -0.06347212940454483, -0.007665746845304966,
- -0.020584020763635635, -0.05775362253189087, -0.051396843045949936,
- -0.015801366418600082, 0.023674054071307182, 0.05817079171538353, 0.015881910920143127,
- 0.09140326082706451, -0.017930665984749794, -0.07467221468687057, -0.055566877126693726,
- 0.08915196359157562, 0.017822707071900368, -0.11902536451816559, -0.03050961345434189,
- 0.07294787466526031, 0.06793011724948883, -0.029460709542036057, -0.005606151185929775,
- -0.03872678428888321, 0.07704655081033707, 0.010205070488154888, 0.10244222730398178,
- -0.040501669049263, 0.049056168645620346, -0.019135942682623863, 0.02126024104654789,
- -0.044154562056064606, -0.08848320692777634, -0.014887658879160881, 0.09041085839271545,
- -0.01747647300362587, -0.03279051184654236, 0.053913816809654236, -0.09873775392770767,
- 0.024607833474874496, -0.007681926712393761, 0.15354713797569275, -0.1718442440032959,
- -0.008903130888938904, 0.0021859288681298494, -0.054513879120349884,
- 0.08802741765975952, -0.031822819262742996, -0.03700739145278931, -0.0462331548333168,
- 0.04310845583677292, 0.018660470843315125, 0.0797271728515625, 0.03480246663093567,
- -0.035512104630470276, 0.06215371936559677, 0.13260714709758759, 0.03478153422474861,
- -0.04819757491350174, 0.06868445128202438, 0.04444034397602081, -0.01637893356382847,
- -0.030801333487033844, 0.013451031409204006, 0.017411837354302406,
- -0.032635148614645004, 0.02280404046177864, 0.08326389640569687, 0.00853881984949112,
- -0.08696503937244415, 0.06499455124139786, 0.07699127495288849, 0.03958887979388237,
- 0.06267600506544113, -0.09453097730875015, 0.016549522057175636, -0.02730211429297924,
- 0.009618978947401047, 0.010434540919959545, -0.04583971947431564, 0.04425257071852684,
- 0.09373049437999725, 0.07660374045372009, -0.0023245438933372498, 0.06023884564638138,
- 0.07217758148908615, -0.027883918955922127, -0.005976315587759018, 0.07055842131376266,
- -0.05358409881591797, -0.09254014492034912, -0.03579740971326828, 0.01372365653514862,
- 0.05251084268093109, -0.020347148180007935, -0.09322239458560944, -0.010802175849676132,
- -0.09682274609804153, 0.00645011942833662, -0.11182129383087158, -0.06728629767894745,
- -0.027047693729400635, 0.00669687008485198, -0.07706674933433533, -0.056957535445690155,
- -0.07229925692081451, 0.05047842115163803, 0.0993393063545227, -0.010779233649373055,
- -0.009712210856378078, -0.13208331167697906, -0.003559389617294073,
- -0.05765241011977196, 0.03986356034874916, 0.02308030053973198, -0.025992587208747864,
- -0.027564551681280136, -0.11069066822528839, -0.0024245651438832283,
- 0.044151004403829575, -0.04930569976568222, -0.024582374840974808,
- -0.046529702842235565, -0.018852274864912033, 0.0075599923729896545,
- 0.04125762730836868, -0.11672219634056091, 0.011378157883882523, 0.0315525121986866,
- 0.08886969834566116, -0.06138325855135918, -0.09455087780952454, 0.047929711639881134,
- -0.02857554890215397, 0.0008572153747081757, 0.09930730611085892, -0.05830443650484085,
- 0.020206810906529427, -0.013689564540982246, -0.06538736075162888, -0.06463892757892609,
- -0.009982196614146233, -0.0038429361302405596, 0.037564098834991455,
- -0.029957372695207596, -0.00891121570020914, -0.01734704151749611,
- -0.010217569768428802, 0.036307916045188904, -0.017261750996112823,
- -0.08341430127620697, -0.06595563888549805, 0.13652583956718445, -0.02078288421034813,
- 0.0011942479759454727, 0.014991438016295433, -0.025733208283782005, 0.06567288190126419,
- -0.014390463940799236, 0.032426998019218445, 0.04705997556447983, 0.12173938751220703,
- 0.035073842853307724, -0.0031588124111294746, 0.053955573588609695,
- -0.011597401462495327, -0.01143090520054102, 0.08714630454778671, 0.45910489559173584,
- -0.0740399956703186, 0.04651392623782158, 0.12031495571136475, 0.009729630313813686,
- 0.046241745352745056, -0.005083238705992699, 0.044548578560352325, 0.1088533103466034,
- 0.13669991493225098, 0.12905831634998322, -0.004255351610481739, -0.0033668233081698418,
- -0.04547526687383652, 0.08817712962627411, -0.002609927672892809, 0.03677642345428467,
- -0.01931847259402275, -0.11007417738437653, -0.04679044336080551, 0.09713001549243927,
- -0.040742505341768265, 0.03174178674817085, -0.008648308925330639, -0.08588011562824249,
- 0.019162587821483612, -0.016155937686562538, 0.034453585743904114,
- -0.013098351657390594, 0.04955286532640457, -0.0343511626124382, 0.06571567803621292,
- 0.052354514598846436, 0.03365311771631241, -0.11664769053459167, -0.001733960583806038,
- -0.006294176913797855, -0.10351830720901489, 0.07743474841117859,
- -0.0008962005376815796, -0.0036281440407037735, 0.0528080016374588,
- -0.037761688232421875, 0.0748751237988472, -0.01879972591996193, -0.04071395844221115,
- 0.03486308455467224, 0.020163778215646744, -0.0017745909281075, 0.041674572974443436,
- 0.1362326443195343, -0.022892652079463005, 0.0008670110255479813, -0.1089181900024414,
- 0.05807994306087494, 0.16601048409938812, 0.023376598954200745, 0.03278879076242447,
- 0.015777569264173508, 0.024331502616405487, 0.02651551552116871, -0.045876502990722656,
- -0.022008230909705162, -0.01726641319692135, -0.05815847963094711, 0.15732470154762268,
- 0.07993587851524353, -0.002089083893224597, -0.0688612088561058, 0.0070808399468660355,
- -0.0611027255654335, 0.050683632493019104, 0.11699940264225006, -0.06676322221755981,
- 0.04678754881024361, -0.04139105975627899, 0.01932249404489994, 0.08789152652025223,
- -0.07967882603406906, 0.01545605156570673, -0.054379530251026154, 0.023039449006319046,
- 0.015643147751688957, 0.052097663283348083, -0.008633706718683243, 0.10018877685070038,
- -0.10925368219614029, 0.021895060315728188, -0.01191258616745472, -0.08925266563892365,
- -0.029609879478812218, -0.028269128873944283, 0.017440803349018097, 0.01878472790122032,
- -0.034535571932792664, -0.030361713841557503, -0.011253273114562035,
- -0.025737255811691284, -0.09155741333961487, -0.09248419851064682, -0.02588588185608387,
- -0.14824886620044708, 0.04967714846134186, -0.050566643476486206, 0.007761250250041485,
- -0.005185999907553196, -0.04454049468040466, -0.027441035956144333,
- -0.003889581188559532, 0.05292132496833801, -0.08991492539644241, 0.022099146619439125,
- -0.0046853781677782536, 0.033835772424936295, -0.03327231481671333,
- -0.08802922815084457, -0.06653314083814621, 0.07666034251451492, -0.0010296711698174477,
- -0.061257243156433105, 0.0230318084359169, -0.04580497369170189, 0.06487376242876053,
- -0.13996893167495728, -0.14795377850532532, 0.011050188913941383, 0.04586073011159897,
- 0.04267776757478714, -0.05466681718826294, -0.09038244187831879, 0.07532373815774918,
- 0.07554423809051514, -0.02821381203830242, 0.07197309285402298, -0.059426579624414444,
- 0.028326798230409622, -0.06730613112449646, -0.11298967152833939, 0.0006057322025299072,
- -0.0689285397529602, -0.07556165754795074, 0.05390055477619171, 0.02507784217596054,
- -0.07459812611341476, -0.0934586375951767, 0.025303469970822334, -0.028702665120363235,
- -0.035342201590538025, 0.01970422826707363, 0.03086402826011181, 0.007885371334850788,
- -0.06719870120286942, 0.029378514736890793, 0.0773828774690628, 0.015893999487161636,
- -0.08158156275749207, -0.005529460497200489, 0.03771975263953209, 0.007708556484431028,
- 0.10252063721418381, -0.011994605883955956, -0.028537271544337273, -0.08597740530967712,
- 0.10252838581800461, 0.03854261338710785, 0.1824188083410263, -0.012407085858285427,
- -0.07485135644674301, 0.0075160362757742405, 0.108922079205513, 0.005236342083662748,
- 0.015062743797898293, 0.0015893848612904549, -0.011816149577498436, 0.06033041328191757,
- 0.005488363094627857, 0.15276023745536804, -0.12152254581451416, -0.061159297823905945,
- -0.014082459732890129, -0.02096814475953579, -0.04715438187122345, -0.07479234039783478,
- 0.20578433573246002, 0.06289967149496078, 0.004800514318048954, 0.05556003004312515,
- -0.05878887325525284, 0.038163550198078156, -0.15803077816963196, -0.06993535161018372,
- -0.04409999027848244, -0.04916724935173988, 0.07384880632162094, -0.008075176738202572,
- -0.0917196050286293, -0.04236653819680214, -0.023276379331946373, 0.02627645991742611,
- 0.14211396872997284, -0.07035452127456665, -0.011802008375525475, -0.0679340735077858,
- 0.11272017657756805, 0.04874548316001892, -0.028711553663015366, 0.00703024584800005,
- 0.09670235216617584, 0.01657298021018505, 0.03873739019036293, 0.032654501497745514,
- -0.12114130705595016, -0.02234247699379921, 0.12376254796981812, 0.010402907617390156,
- 0.1305447518825531, 0.0450400710105896, -0.01770654134452343, -0.04497567564249039,
- 0.03933368995785713, -0.11743998527526855, 0.03160596266388893, -0.39553552865982056,
- -0.031851764768362045, 0.06683588027954102, 0.008159350603818893, 0.0049465009942650795,
- 0.0685773640871048, 0.030604638159275055, -0.05771928280591965, -0.0357271172106266,
- -0.07672999054193497, 0.1961706578731537, 0.01612894795835018, 0.08135400712490082,
- -0.0845179408788681, 0.0137871615588665, 0.08998267352581024, -0.005139992106705904,
- 0.015258456580340862, 0.026994165033102036, -0.16287121176719666, 0.014803037978708744,
- -0.02366480603814125, 0.1278495341539383, 0.023439625278115273, -0.011934582144021988,
- 0.1394416093826294, -0.029135126620531082, 0.01977706328034401, 0.040277622640132904,
- 0.04640307277441025, 0.08462867885828018, -0.00493079936131835, -0.006060578860342503,
- 0.09112593531608582, 0.0729893296957016, 0.05250202864408493, -0.004845835734158754,
- 12.199045181274414, -0.012398665770888329, 0.04239781200885773, -0.11630871891975403,
- 0.0017328746616840363, -0.05748572573065758, 0.03566878288984299, -0.14331121742725372,
- 0.026835089549422264, 0.1174742579460144, 0.0012771447654813528, -0.02853328362107277,
- -0.003130364930257201, -0.10559961199760437, 0.026154490187764168,
- -0.057154394686222076, -0.05443079397082329, -0.015123942866921425, 0.05929543823003769,
- -0.07765068858861923, -0.06296093761920929, 0.04286056384444237, 0.07080990076065063,
- 0.02185632660984993, -0.0770830512046814, 0.03332114219665527, 0.023330966010689735,
- -0.01382196880877018, 0.008463751524686813, 0.09152083098888397, -0.0020454982295632362,
- 0.018163571134209633, 0.09437045454978943, -0.04309295490384102, 0.08989939093589783,
- 0.04795520752668381, 0.09923986345529556, 0.03273217752575874, 0.0004722415469586849,
- 0.036545757204294205, -0.020290516316890717, 0.02559686079621315, 0.03939112648367882,
- -0.0015449346974492073, 0.09977328032255173, 0.019438009709119797, 0.02553846687078476,
- 0.0891333594918251, -0.029991235584020615, 0.02124732732772827, 0.07269545644521713,
- -0.05498378723859787, 0.09470239281654358, 0.07593392580747604, -0.006270972546190023,
- 0.018299438059329987, 0.010790904983878136, -0.10173854231834412, 0.11024121940135956,
- -0.004706047475337982, -0.05199421942234039, 0.14315924048423767, 0.1088809221982956,
- 0.08257652074098587, 0.059845469892024994, 0.06735802441835403, 0.1304384022951126,
- -0.003676200285553932, -0.13731279969215393, -0.020541606470942497,
- 0.023170949891209602, -0.09512273967266083, -0.09217815101146698, 0.10386701673269272,
- 0.09316138923168182, -0.0554637610912323, 0.07744988799095154, -0.01547474879771471,
- 0.006872095633298159, 0.017704764381051064, -0.0030783596448600292,
- 0.026668064296245575, -0.07624763995409012, 0.0064905546605587006, 0.08817429840564728,
- 0.057864438742399216, 0.011299869045615196, 0.08312291651964188, -0.011929931119084358,
- -0.05764441937208176, -0.08105041086673737, 0.04792225360870361, -0.03939772769808769,
- -0.027017729356884956, -0.0008122575236484408, -0.07958365976810455,
- 0.11077821254730225, -0.17433789372444153, 0.08711770921945572, 0.08803145587444305,
- -0.07970671355724335, -0.04058700054883957, -0.04628530144691467, 0.07834959775209427,
- 0.025472695007920265, 0.03418976068496704, -0.04686926305294037, -0.018779397010803223,
- 0.018722601234912872, 0.06732390820980072, -0.03463056683540344, 0.10943326354026794,
- 0.05755477771162987, -0.008602437563240528, 0.014330055564641953, 0.04757506400346756,
- -0.03855137899518013, 0.015862172469496727, 0.03114420920610428, 0.07180842757225037,
- -0.06878817826509476, -0.029648859053850174, -0.048623211681842804,
- -0.0028838589787483215, -0.020443176850676537, -0.0363897904753685,
- -0.01922479271888733, 0.023690268397331238, -0.04507248103618622, -0.016958443447947502,
- 0.05746642127633095, 0.10148726403713226, 0.10936254262924194, -0.03782809525728226,
- 0.03144630417227745, -0.024228336289525032, 0.012154767289757729, 0.021207498386502266,
- 0.033365022391080856, 0.041718125343322754, -0.11352478712797165, -0.048292700201272964,
- -0.06436969339847565, -0.16655346751213074, 0.045042019337415695, 0.1508910059928894,
- 0.012033834122121334, 0.08461885899305344, 0.07213304936885834, -0.045368459075689316,
- -0.06865649670362473, 0.04594380781054497, 0.0773036777973175, 0.07157282531261444,
- 0.08907178789377213, -0.04070627689361572, -0.0857664942741394, 0.09493519365787506,
- -0.00987295713275671, -0.015512142330408096, -0.04858088493347168, -0.12035366892814636,
- 0.11220884323120117, 0.08808805793523788, 0.0799473375082016, 0.060548633337020874,
- 0.10178595781326294, -0.014327598735690117, 0.03718293085694313, 0.017300821840763092,
- 0.02370857074856758, -0.0409008264541626, -0.06760567426681519, -0.0732191652059555,
- 0.03803643211722374, 0.09731894731521606, 0.06454373151063919, -0.03360579162836075,
- -0.026227813214063644, -0.059261955320835114
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 168,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 179,
- "similarity": 0.9972438812255859
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 13,
- "similarity": 0.9972422122955322
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 40,
- "similarity": 0.9971039295196533
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Dominik Kowald", "Emanuel Lacic"],
- "epoch_date_downloaded": 1646956800,
- "epoch_date_modified": 1646956800,
- "epoch_date_submitted": 1646956800,
- "flag": null,
- "report_number": 1541,
- "source_domain": "arxiv.org",
- "submitters": ["Anonymous"],
- "title": "Popularity Bias in Collaborative Filtering-Based Multimedia Recommender Systems",
- "url": "https://arxiv.org/abs/2203.00376"
- },
- {
- "__typename": "Report",
- "authors": ["Martin Anderson"],
- "epoch_date_downloaded": 1646956800,
- "epoch_date_modified": 1646956800,
- "epoch_date_submitted": 1646956800,
- "flag": null,
- "report_number": 1540,
- "source_domain": "unite.ai",
- "submitters": ["Anonymous"],
- "title": "Why AI Isn’t Providing Better Product Recommendations",
- "url": "https://www.unite.ai/why-ai-isnt-providing-better-product-recommendations/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "meta",
- "name": "Meta"
- },
- {
- "__typename": "Entity",
- "entity_id": "facebook",
- "name": "Facebook"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "meta",
- "name": "Meta"
- },
- {
- "__typename": "Entity",
- "entity_id": "facebook",
- "name": "Facebook"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "rohingya-people",
- "name": "Rohingya people"
- },
- {
- "__typename": "Entity",
- "entity_id": "rohingya-facebook-users",
- "name": "Rohingya Facebook users"
- },
- {
- "__typename": "Entity",
- "entity_id": "myanmar-public",
- "name": "Myanmar public"
- },
- {
- "__typename": "Entity",
- "entity_id": "facebook-users-in-myanmar",
- "name": "Facebook users in Myanmar"
- },
- {
- "__typename": "Entity",
- "entity_id": "burmese-speaking-facebook-users",
- "name": "Burmese-speaking Facebook users"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1545, 1544],
- "vector": [
- -0.06964068859815598, 0.07443453371524811, 0.02749563194811344, -0.09252786636352539,
- 0.08286143094301224, -0.06243642419576645, 0.011431440711021423, 0.05441960319876671,
- 0.06180991232395172, -0.12524764239788055, 0.007110407575964928, 0.062361977994441986,
- 0.009507330134510994, -0.04914768412709236, 0.014774434268474579, -0.0755297988653183,
- -0.07369481027126312, -0.03318824619054794, -0.0014214343391358852, -0.1152091920375824,
- -0.052286505699157715, 0.0009295458439737558, 0.03885645791888237, 0.12111843377351761,
- 0.00910551380366087, 0.07070185244083405, 0.10613352060317993, 0.12260344624519348,
- -0.09956308454275131, 0.0948471873998642, -0.0017810980789363384, -0.05525554344058037,
- 0.1315288245677948, 0.0018827300518751144, -0.007363739423453808, 0.0829298198223114,
- 0.025222020223736763, -0.009307559579610825, 0.03156081587076187, 0.0010083182714879513,
- 0.052531495690345764, 0.21857140958309174, -0.03107626736164093, -0.01703694649040699,
- 0.04603487253189087, -0.018359823152422905, -0.035430751740932465, 0.07478891313076019,
- -0.001677769236266613, 0.010250745341181755, -0.04472294822335243, 0.05784562602639198,
- -0.019624188542366028, 0.021316520869731903, -0.07951724529266357, 0.0789104774594307,
- 0.04954758286476135, -0.038627803325653076, 0.04557204246520996, -0.10155485570430756,
- 0.010015053674578667, -0.22732895612716675, -0.027125541120767593, -0.06928776204586029,
- 0.08892498910427094, -0.07417257130146027, -0.035992685705423355, 0.01021572295576334,
- 0.024679381400346756, 0.050789885222911835, 0.054873183369636536, -0.03147800266742706,
- 0.017123570665717125, 0.012084919027984142, 0.024296628311276436, -0.03839408978819847,
- 0.021597716957330704, 0.14283102750778198, -0.09283587336540222, 0.020430684089660645,
- 0.07771497219800949, -0.07168508321046829, 0.4235389232635498, -0.027975065633654594,
- -0.018090877681970596, -0.019239259883761406, 0.09216118603944778, 0.03621397539973259,
- 0.05630544573068619, 0.049532897770404816, -0.003585429862141609, 0.0477924607694149,
- -0.05308101326227188, 0.0017611791845411062, 0.06987722218036652, 0.049212340265512466,
- -0.022468291223049164, 0.09804078936576843, -0.009747328236699104, -0.07351511716842651,
- -0.015679078176617622, -0.02297363430261612, 0.12267809361219406, 0.08169493079185486,
- -0.03988361358642578, -0.011498583480715752, 0.02829497680068016, -0.08020071685314178,
- 0.010127031244337559, -0.02694113366305828, 0.013403141871094704, -0.05346139520406723,
- 0.09197178483009338, 0.0015194285660982132, 0.06173807382583618, -0.04247745871543884,
- 0.018803061917424202, 0.021167684346437454, 0.07062669098377228, 0.04448666423559189,
- 0.0021206624805927277, 0.06423713266849518, 0.09400641918182373, -0.024316802620887756,
- -0.04090151935815811, -0.09157034754753113, -0.05393674224615097, -0.019449876621365547,
- -0.0522342324256897, -0.0022489898838102818, -0.04255814477801323, -0.17841151356697083,
- -0.012291885912418365, 0.06913033872842789, 0.041209787130355835, -0.011931849643588066,
- 0.0018810881301760674, -0.07596240937709808, 0.01766161061823368, -0.03845321759581566,
- -0.062427669763565063, 0.09800904244184494, -0.01698695681989193, 0.04730109125375748,
- 0.09202845394611359, 0.01332260761409998, -0.03672745078802109, -0.06982221454381943,
- -0.016962608322501183, -0.004305376671254635, 0.11150047183036804, -0.07962049543857574,
- -0.04170532524585724, 0.047802574932575226, -0.004376668017357588, 0.7020325064659119,
- 0.07307769358158112, 0.1702384054660797, -0.017031250521540642, -0.016444910317659378,
- 0.18385744094848633, 0.05216195806860924, 0.07039658725261688, -0.06237107515335083,
- -0.10844286531209946, 0.028938520699739456, -0.06922274827957153, -0.021133122965693474,
- 0.02126896381378174, 0.04486362636089325, 0.13449880480766296, 0.03969802334904671,
- 0.08389341831207275, -0.017013924196362495, -0.08237019181251526, -0.02450128272175789,
- 0.061801910400390625, 0.002591789700090885, -0.11870676279067993, -0.025238316506147385,
- 0.04531483352184296, 0.1073455810546875, -0.043520063161849976, 0.02034786529839039,
- -0.06340508162975311, 0.10948511958122253, -0.028352342545986176, 0.07179001718759537,
- -0.031118858605623245, 0.07321309298276901, -0.008178545162081718, 0.02648426964879036,
- 0.046004585921764374, -0.10699541866779327, -0.023981524631381035, 0.1357307881116867,
- 0.03664591163396835, -0.013259926810860634, 0.08481857180595398, -0.0831466019153595,
- 0.040575992316007614, 0.02086804248392582, 0.13774248957633972, -0.1210625022649765,
- -0.014046954922378063, -0.03902409225702286, -0.06541887670755386, 0.05169357359409332,
- -0.013486203737556934, -0.06248456984758377, -0.07019206881523132, 0.0948648601770401,
- 0.044991619884967804, 0.06800177693367004, -0.0029347387608140707,
- -0.013435772620141506, 0.001706535927951336, 0.04203811660408974, 0.02582760527729988,
- -0.03326927125453949, 0.06859469413757324, 0.06509865820407867, -0.0637282133102417,
- -0.024027332663536072, 0.04675261303782463, 0.07681068032979965, 0.014397810213267803,
- 0.0013652308844029903, 0.03069321997463703, 0.009689990431070328, -0.03695017099380493,
- 0.008335500955581665, 0.012916692532598972, -0.015273072756826878, 0.09973977506160736,
- -0.08952935039997101, -0.01638023555278778, -0.06893254816532135, -0.05010935664176941,
- 0.0424780510365963, -0.0606398731470108, 0.08102598786354065, 0.07544674724340439,
- 0.06605986505746841, 0.04354329779744148, 0.048693008720874786, 0.05124681442975998,
- 0.00872010737657547, 0.004236213862895966, 0.0921165868639946, -0.01781640201807022,
- -0.0023224875330924988, -0.04662337899208069, -0.012889066711068153,
- 0.07771404087543488, 0.02915809489786625, -0.05235674977302551, -0.012304897420108318,
- 0.0027107540518045425, -0.09775747358798981, -0.08832499384880066,
- -0.011960466392338276, 0.07124971598386765, 0.07978779077529907, -0.06518064439296722,
- -0.04732203856110573, -0.09157523512840271, -0.030993763357400894, 0.049386102706193924,
- -0.06858231872320175, -0.06058026850223541, -0.11558100581169128, 0.0012891441583633423,
- -0.023091169074177742, 0.05073445290327072, -0.028182005509734154, 0.020457396283745766,
- -0.006021813955157995, -0.019735202193260193, 0.036264535039663315,
- -0.009337585419416428, -0.048358313739299774, -0.03108294866979122,
- -0.06362594664096832, -0.03401690721511841, 0.017203496769070625, -0.01480301097035408,
- -0.0046476442366838455, 0.03254435956478119, 0.06049371510744095, 0.03347679600119591,
- -0.009611646644771099, -0.009166993200778961, 0.050966620445251465,
- -0.03486507385969162, -0.008710604161024094, 0.08966293185949326, -0.022099293768405914,
- 0.029888208955526352, 0.006780931726098061, -0.026766888797283173, -0.0375235415995121,
- 0.010283056646585464, -0.06351186335086823, 0.04176734387874603, -0.0063734883442521095,
- 0.019112378358840942, -0.09123577177524567, -0.007546859327703714, 0.0738598108291626,
- -0.06876284629106522, -0.06544561684131622, -0.061647456139326096, 0.09897293150424957,
- 0.023700425401329994, -0.02191152609884739, 0.032382603734731674, -0.053727589547634125,
- 0.032378990203142166, -0.005833171308040619, 0.01992795430123806, 0.07803323864936829,
- 0.04533516988158226, -0.02737477235496044, -0.00933245662599802, 0.07737436145544052,
- -0.02243560180068016, 0.01784573681652546, 0.0808735117316246, 0.43993353843688965,
- -0.14417698979377747, 0.10227946192026138, 0.0992884486913681, -0.055574625730514526,
- 0.025141455233097076, -0.039389073848724365, 0.076978899538517, 0.07724973559379578,
- 0.08256196975708008, 0.07277794927358627, -0.05390030890703201, -0.027244485914707184,
- -0.0815189927816391, 0.08777029812335968, 0.020615950226783752, 0.06101371720433235,
- 0.012981262058019638, -0.06942368298768997, -0.04288793355226517, 0.030533770099282265,
- -0.029198704287409782, -0.025848740711808205, -0.027457375079393387,
- -0.047285884618759155, 0.015735898166894913, -0.00568492291495204, 0.025482967495918274,
- -0.014220352284610271, 0.030488386750221252, -0.06569081544876099, 0.03957212716341019,
- 0.021868810057640076, 0.026818662881851196, -0.13542063534259796, 0.03613976389169693,
- -0.058072857558727264, -0.06974855065345764, 0.10531806200742722, 0.007528968155384064,
- 0.028395552188158035, 0.0764056146144867, 0.0028822189196944237, 0.04014907777309418,
- 0.009238108992576599, -0.05337917059659958, 0.03550677001476288, 0.06106057018041611,
- 0.058774322271347046, 0.09608085453510284, 0.15915831923484802, -0.016707347705960274,
- -0.04198353737592697, -0.06947508454322815, 0.05808461457490921, 0.10655637085437775,
- -0.019264111295342445, 0.028257420286536217, 0.03493603318929672, -0.02741841785609722,
- -0.020420797169208527, -0.04539583623409271, -0.09756997972726822,
- -0.004942059516906738, -0.04248084872961044, 0.05323252081871033, 0.006369384936988354,
- -0.04264231026172638, -0.14144816994667053, -0.018138272687792778, -0.04098904877901077,
- 0.009848197922110558, 0.12649621069431305, -0.06739073991775513, 0.0498693510890007,
- 0.0006213448941707611, 0.004878317937254906, 0.028339233249425888,
- -0.060248538851737976, -0.0021110177040100098, -0.06847266107797623,
- 0.0018478459678590298, 0.010360406711697578, 0.030329205095767975, -0.06038820743560791,
- 0.06070057302713394, -0.1058242917060852, 0.0780426561832428, 0.007353259716182947,
- -0.032474614679813385, 0.025990555062890053, -0.02086677774786949, 0.01797158643603325,
- 0.01330974418669939, -0.02868092991411686, 0.0021540913730859756, 0.006296738516539335,
- -0.026111161336302757, -0.0880078375339508, -0.04075496643781662, -0.013551169075071812,
- -0.07078677415847778, 0.03057233616709709, -0.07060054689645767, -0.0023856349289417267,
- -0.00033817533403635025, -0.004467647988349199, -0.019930478185415268,
- 0.027430424466729164, 0.001913832500576973, -0.16062629222869873, 0.011518566869199276,
- 0.014572841115295887, 0.049450069665908813, 0.0027560582384467125, -0.08149668574333191,
- 0.047308292239904404, 0.1082688495516777, 0.05381779372692108, -0.024349544197320938,
- -0.005188724026083946, -0.03896484524011612, 0.046378232538700104, -0.08668454736471176,
- -0.5137289762496948, 0.07045707106590271, 0.014903685078024864, 0.05203238129615784,
- 0.004296092316508293, -0.08248642086982727, 0.08062134683132172, 0.000843370333313942,
- -0.06993438303470612, 0.03994658589363098, -0.04915928840637207, 0.003311432432383299,
- -0.015282407402992249, -0.05500238761305809, -0.015892690047621727, -0.0962868183851242,
- -0.05460844933986664, 0.03183433413505554, -0.01244102232158184, -0.07270407676696777,
- -0.11372244358062744, 0.024662427604198456, -0.026905585080385208, 0.03178488835692406,
- -0.007179564796388149, -0.007556479889899492, -0.08247452974319458,
- -0.06429849565029144, 0.03892750293016434, 0.03132302314043045, 0.011673537082970142,
- -0.02698579803109169, -0.003308802843093872, 0.08530071377754211, -0.029889561235904694,
- 0.11889297515153885, 0.021951790899038315, 0.03307221457362175, -0.08140382170677185,
- 0.05710440129041672, 0.06479863077402115, 0.18654415011405945, 0.00947264488786459,
- 0.04334472119808197, 0.027295276522636414, 0.13716192543506622, 0.0312766470015049,
- 0.032806530594825745, -0.05352921783924103, -0.002547940006479621, 0.011669407598674297,
- -0.011559156700968742, 0.0703018307685852, -0.05232757702469826, -0.006450238637626171,
- -0.05510575324296951, -0.017405355349183083, -0.06856522709131241,
- -0.019171161577105522, 0.1719394326210022, 0.006422052159905434, 0.04241107404232025,
- 0.009212780743837357, -0.06608818471431732, -0.006886201910674572, -0.05362880229949951,
- -0.10973769426345825, -0.013143813237547874, -0.008901146240532398,
- -0.012367969378829002, -0.02694428339600563, -0.1073453426361084, -0.01804118975996971,
- 0.006515516433864832, -0.00037767738103866577, 0.1047476977109909,
- -0.035778798162937164, 0.046202678233385086, -0.01904299482703209, 0.09597897529602051,
- 0.054526437073946, 0.04664088785648346, 0.04875271022319794, 0.12348820269107819,
- 0.016874276101589203, -0.03966440260410309, -0.0556623600423336, -0.06938143074512482,
- -0.03046559914946556, 0.14055028557777405, -0.06762076169252396, 0.14223086833953857,
- 0.05486859753727913, -0.062858946621418, -0.052776966243982315, 0.0331813283264637,
- -0.030623139813542366, -0.00309141562320292, -0.4786013662815094, -0.014040006324648857,
- 0.09233644604682922, 0.02227226458489895, 0.021800652146339417, 0.1006503626704216,
- 0.037747450172901154, -0.05753578245639801, -0.03768295794725418, -0.12450459599494934,
- 0.1482759565114975, 0.0049861520528793335, 0.08785442262887955, -0.12629036605358124,
- 0.03306397423148155, 0.11213059723377228, -0.046824607998132706, -0.0017313905991613865,
- 0.05363825336098671, -0.274381160736084, -0.027224969118833542, -0.03709787875413895,
- 0.09802058339118958, -0.0026143230497837067, 0.052628517150878906, 0.09441685676574707,
- -0.04501655697822571, 0.0025282432325184345, 0.047382742166519165, -0.04769197851419449,
- 0.05324847996234894, -0.044249121099710464, -0.015770405530929565, 0.09862376004457474,
- 0.10066336393356323, 0.04736796393990517, -0.04798700287938118, 11.929189682006836,
- 0.10164108872413635, 0.08759643137454987, -0.07359658181667328, 0.035600680857896805,
- -0.06767833232879639, 0.02366054244339466, -0.07422775030136108, 0.060590147972106934,
- 0.11805837601423264, -0.0004991437308490276, -0.07629136741161346, -0.04209880530834198,
- -0.08438794314861298, 0.006038323510438204, -0.036421798169612885, -0.07383863627910614,
- -0.02917413040995598, 0.025262843817472458, -0.053815361112356186, -0.080132395029068,
- 0.027933262288570404, 0.0719999447464943, 0.019760191440582275, -0.0475655198097229,
- 0.0363759845495224, 0.0012039572466164827, -0.014701728709042072, 0.011554154567420483,
- 0.02309325337409973, 0.017083942890167236, 0.006630033254623413, 0.07928046584129333,
- -0.018714793026447296, 0.023748021572828293, 0.024170706048607826, 0.05603069067001343,
- 0.054829299449920654, 0.0031520994380116463, 0.07822063565254211, -0.009453918784856796,
- 0.010824419558048248, -0.002007841831073165, 0.06696602702140808, 0.044724252074956894,
- 0.01963578537106514, 0.049055300652980804, 0.09553668648004532, 0.02133028768002987,
- 0.0913047045469284, 0.09117905795574188, -0.025741202756762505, 0.12514008581638336,
- 0.06400315463542938, 0.005855252034962177, 0.0652177557349205, -0.012121535837650299,
- -0.09205818176269531, 0.07851075381040573, 0.00811055488884449, -0.06772720813751221,
- 0.12030290812253952, 0.0327598974108696, 0.1017925962805748, -0.026988599449396133,
- 0.061081308871507645, 0.06641747057437897, 0.09919248521327972, -0.198745995759964,
- -0.1078285425901413, 0.0534793846309185, -0.11636822670698166, -0.08592402935028076,
- 0.06207349896430969, 0.09105326980352402, -0.04752383381128311, 0.03867989778518677,
- -0.024496685713529587, 0.03289052098989487, -0.04993496090173721, -0.011537892743945122,
- 0.04505784809589386, -0.03260650485754013, 0.022177351638674736, 0.04493878409266472,
- 0.025755666196346283, 0.07684747874736786, 0.14074596762657166, -0.04933203011751175,
- -0.06471436470746994, -0.10841269791126251, 0.08590014278888702, -0.05730815976858139,
- -0.031273722648620605, 0.03280305862426758, -0.032988615334033966, 0.019333288073539734,
- -0.15424633026123047, 0.07013237476348877, 0.13174252212047577, -0.07962609082460403,
- -0.006032029166817665, -0.014556949958205223, 0.05932382121682167, 0.012090781703591347,
- 0.041236359626054764, -0.07724905759096146, 0.011519982479512691, -0.009547093883156776,
- 0.022863250225782394, -0.057622022926807404, 0.0979943573474884, 0.061005719006061554,
- -0.0632818192243576, 0.0325939878821373, 0.06346476078033447, 0.0002890573814511299,
- -0.004609042778611183, 0.07271291315555573, 0.013105355203151703, -0.07422738522291183,
- -0.04342568665742874, -0.05119596794247627, -0.03499767929315567, -0.01948368176817894,
- -0.06264908611774445, 0.00904165580868721, 0.013254455290734768, -0.04769730195403099,
- -0.00700752716511488, -0.0121252266690135, 0.05146107077598572, 0.07102012634277344,
- -0.008121836930513382, 0.06454721838235855, -0.026645584031939507,
- -0.031832125037908554, 0.0594014972448349, 0.029620548710227013, 0.04820920154452324,
- -0.0403820276260376, -0.03463759273290634, -0.08198270201683044, -0.10107409954071045,
- 0.01802651584148407, 0.07291515171527863, 0.025948762893676758, 0.009490247815847397,
- 0.031889501959085464, -0.06476850807666779, -0.056334249675273895, 0.09692901372909546,
- 0.047636691480875015, 0.03255806490778923, 0.03661353141069412, -0.09354054182767868,
- -0.02972661331295967, 0.10622861981391907, -0.0027241662610322237,
- -0.012633777223527431, 0.030546121299266815, 0.006489034742116928, 0.08211628347635269,
- 0.09539811313152313, 0.0936853289604187, 0.021774500608444214, 0.011165888048708439,
- 0.03371865674853325, 0.030550513416528702, 0.004881862085312605, 0.02313457801938057,
- -0.0639825314283371, -0.10705698281526566, -0.035572148859500885, 0.05681421607732773,
- 0.06176105886697769, 0.07626210898160934, -0.12640586495399475, -0.033670708537101746,
- -0.02223604917526245
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 169,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 15,
- "similarity": 0.9983727335929871
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 16,
- "similarity": 0.9982267022132874
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 45,
- "similarity": 0.9982087016105652
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Elizabeth Culliford"],
- "epoch_date_downloaded": 1644624000,
- "epoch_date_modified": 1653177600,
- "epoch_date_submitted": 1644624000,
- "flag": null,
- "report_number": 1545,
- "source_domain": "reuters.com",
- "submitters": ["Kate Perkins"],
- "title": "Rohingya refugees sue Facebook for $150 billion over Myanmar violence",
- "url": "https://www.reuters.com/world/asia-pacific/rohingya-refugees-sue-facebook-150-billion-over-myanmar-violence-2021-12-07/"
- },
- {
- "__typename": "Report",
- "authors": [
- "Steve Stecklow",
- "Tin Htet Paing",
- "Simon Lewis",
- "Shoon Naing",
- "Aye Min Thant"
- ],
- "epoch_date_downloaded": 1644624000,
- "epoch_date_modified": 1644624000,
- "epoch_date_submitted": 1644624000,
- "flag": null,
- "report_number": 1544,
- "source_domain": "reuters.com",
- "submitters": ["Kate Perkins"],
- "title": "Why Facebook is losing the war on hate speech in Myanmar",
- "url": "https://www.reuters.com/investigates/special-report/myanmar-facebook-hate"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "target",
- "name": "Target"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "target",
- "name": "Target"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "target-customers",
- "name": "Target customers"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1548, 1547, 1546],
- "vector": [
- -0.09588714689016342, 0.07141197472810745, 0.021107470616698265, -0.11685854196548462,
- 0.12114586681127548, -0.03131783381104469, -0.00608520582318306, 0.062593474984169,
- 0.0969013199210167, -0.1278582066297531, -0.0500369556248188, 0.0653332844376564,
- 0.019583771005272865, -0.08902787417173386, -0.006894879508763552,
- 0.0005950157647021115, -0.1006016954779625, -0.0463935025036335, -0.03764570876955986,
- -0.17121858894824982, -0.049310971051454544, 0.004374708980321884, 0.030624056234955788,
- 0.14109712839126587, -0.001464733388274908, 0.04798491671681404, 0.13346873223781586,
- 0.12861905992031097, -0.030382467433810234, 0.06733425706624985, -0.015912121161818504,
- -0.08739030361175537, 0.10194728523492813, 0.002715102396905422, -0.02216685749590397,
- 0.09647836536169052, -0.04280557855963707, -0.013895728625357151, 0.012843812815845013,
- -0.008060711435973644, 0.06391731649637222, 0.28987932205200195, 0.01985848881304264,
- -0.012620327062904835, 0.02333151362836361, -0.04436078295111656, 0.016564467921853065,
- 0.060739148408174515, -0.016003048047423363, 0.014466171152889729, -0.02982657589018345,
- 0.0370449535548687, -0.04010411724448204, 0.06427628546953201, -0.09857866168022156,
- 0.07555022835731506, 0.05378524959087372, -0.06112149357795715, 0.03585794195532799,
- -0.09199762344360352, -0.06477551907300949, -0.19005067646503448, -0.02726580761373043,
- -0.11420039087533951, 0.128179132938385, -0.0671980157494545, -0.052191112190485,
- -0.02572285570204258, -0.007127880584448576, 0.08884647488594055, 0.0772547572851181,
- -0.030147546902298927, -0.05016278102993965, 0.05911663547158241, -0.01598885841667652,
- -0.05297193303704262, 0.014885671436786652, 0.2322600930929184, -0.11444511264562607,
- -0.008054298348724842, 0.10008061677217484, -0.07700592279434204, 0.509154200553894,
- 0.01810043305158615, -0.020043903961777687, -0.009183671325445175, 0.08142849057912827,
- 0.06830257922410965, 0.05071721971035004, 0.042221467941999435, -0.031107334420084953,
- 0.08668460696935654, -0.10889991372823715, 0.03140107914805412, 0.08872300386428833,
- 0.013464719988405704, -0.04779161512851715, 0.0833110511302948, 0.011187021620571613,
- -0.08285611867904663, -0.013329011388123035, -0.03343323990702629, 0.11957374215126038,
- 0.08778902143239975, -0.0493595190346241, -0.010202025063335896, 0.07410236448049545,
- -0.040582895278930664, 0.053564608097076416, -0.05774536728858948, 0.017381742596626282,
- -0.06924466043710709, 0.02770504541695118, -0.02373322658240795, 0.0009989123791456223,
- -0.03185654804110527, 0.015511286444962025, 0.015139120630919933, 0.0924118384718895,
- 0.08566480129957199, -0.019483061507344246, 0.04108050838112831, 0.0686526820063591,
- -0.08478838950395584, -0.0700710341334343, -0.04420839622616768, -0.09562704712152481,
- -0.0561557300388813, -0.005398633424192667, 0.04303203150629997, -0.055918384343385696,
- -0.21518532931804657, 0.004360770341008902, 0.07493602484464645, -0.04329516366124153,
- -0.04221220314502716, 0.012716623954474926, -0.06100382283329964, 0.014610741287469864,
- -0.012481295503675938, -0.0312630869448185, 0.04419030621647835, 0.05825406312942505,
- 0.06698272377252579, 0.10941758751869202, 0.09835726767778397, -0.055042464286088943,
- -0.009079468436539173, 0.036013707518577576, -0.014242383651435375, 0.15922416746616364,
- -0.1521245390176773, -0.02259097993373871, 0.0020460900850594044,
- 0.00011421678209444508, 0.7328896522521973, 0.14440573751926422, 0.22369718551635742,
- 0.004074860364198685, -0.03601429983973503, 0.20061242580413818, -0.018987994641065598,
- 0.05694713070988655, -0.06785229593515396, -0.056902434676885605, 0.01503488328307867,
- -0.05553548410534859, -0.034531209617853165, 0.08961960673332214, 0.007060011848807335,
- 0.12462810426950455, 0.0159719567745924, 0.1017032191157341, -0.02573028765618801,
- -0.12328091263771057, -0.065365269780159, 0.1264593005180359, 0.0022751919459551573,
- -0.12522290647029877, -0.019354557618498802, 0.028904518112540245, 0.07276015728712082,
- -0.121304951608181, -0.0038010962307453156, -0.09446079283952713, 0.058809567242860794,
- -0.03413476422429085, 0.028562402352690697, -0.010535039938986301, 0.07948515564203262,
- 0.10078195482492447, 0.0815768912434578, 0.024022363126277924, -0.09091625362634659,
- -0.01905454881489277, 0.10186409205198288, -0.03782780095934868, -0.0539950430393219,
- 0.0379757434129715, -0.1242559552192688, 0.058375973254442215, 0.021432263776659966,
- 0.19257213175296783, -0.14003057777881622, 0.00512548116967082, -0.010027539916336536,
- -0.052278269082307816, 0.039984557777643204, 0.013010581023991108,
- -0.023238256573677063, -0.07716003060340881, 0.11844734102487564, 0.00396951287984848,
- 0.09746041893959045, 0.07445424050092697, -0.04662999510765076, 0.07427649945020676,
- 0.15819652378559113, 0.022857844829559326, 0.04723726212978363, 0.042544152587652206,
- 0.04908421263098717, -0.029481535777449608, -0.016165750101208687, 0.01122259721159935,
- 0.013869608752429485, 0.06555747985839844, -0.0031190456356853247, 0.03380260989069939,
- 0.043187517672777176, -0.07735467702150345, 0.03536330536007881, 0.03373364731669426,
- 0.026516949757933617, 0.11219722032546997, -0.09025628119707108, -0.030384719371795654,
- -0.05707838758826256, -0.044522348791360855, -0.006678466219455004,
- -0.021174639463424683, 0.1094517931342125, 0.12145622819662094, 0.08565852046012878,
- 0.043298378586769104, 0.0209213700145483, 0.05302775278687477, 0.04259251430630684,
- 0.010245873592793941, 0.07837069034576416, -0.011781719513237476, -0.04887957498431206,
- -0.03350791335105896, 0.004514115396887064, 0.027912044897675514, 0.002650108188390732,
- -0.07286795973777771, -0.04647243395447731, -0.07758299261331558, -0.08950886130332947,
- -0.0884561762213707, -0.06872936338186264, -0.013173681683838367, 0.07141540199518204,
- -0.11701101809740067, -0.09852715581655502, -0.10979632288217545, 0.016052579507231712,
- 0.12845772504806519, -0.001123763620853424, -0.025561800226569176, -0.1560240387916565,
- 0.000241781584918499, -0.024893803521990776, 0.052590321749448776,
- -0.0012437537079676986, 0.021430805325508118, 0.009546482004225254,
- -0.030910305678844452, 0.06083650514483452, 0.010397725738584995, -0.011819973587989807,
- -0.09088612347841263, -0.009214322082698345, -0.009118768386542797,
- -0.03884076699614525, -0.0040818084962666035, -0.02009500563144684, 0.03012893907725811,
- 0.047824468463659286, 0.07700008153915405, -0.02855856716632843, -0.08827486634254456,
- 0.06503710150718689, -0.028440842404961586, 0.016034679487347603, 0.1090850755572319,
- -0.03394196555018425, 0.041324298828840256, 0.002866168273612857, -0.08221077173948288,
- -0.051394689828157425, 0.009842628613114357, -0.013935615308582783, 0.07672891020774841,
- 0.005150582175701857, 0.001551724155433476, -0.06119708716869354, -0.0522601418197155,
- 0.010063908994197845, -0.03142663836479187, -0.10408845543861389, -0.08220264315605164,
- 0.11402950435876846, 0.011566441506147385, -0.010830412618815899, 0.05337962508201599,
- -0.0018015593523159623, 0.06800050288438797, -0.00973194744437933, 0.02656218223273754,
- 0.0613994300365448, 0.05098666623234749, 0.0006621500360779464, 0.044274941086769104,
- 0.1047869622707367, -0.01932324655354023, 0.011270582675933838, 0.04849185422062874,
- 0.49380889534950256, -0.25337132811546326, 0.098269023001194, 0.13482649624347687,
- 0.005228517111390829, 0.058816906064748764, -0.024832939729094505, 0.07346027344465256,
- 0.08652647584676743, 0.14355407655239105, 0.12974251806735992, -0.033648502081632614,
- -0.0038285355549305677, -0.17231385409832, 0.13005779683589935, -0.019183002412319183,
- 0.053150326013565063, 0.0031400409061461687, -0.13761375844478607, -0.0344538651406765,
- 0.021366814151406288, -0.06365081667900085, -0.00857061892747879, 0.0010251402854919434,
- -0.05645449832081795, -0.000030577491997973993, 0.02168731577694416,
- 0.034973323345184326, -0.044996798038482666, 0.023866549134254456, -0.08140958100557327,
- 0.07052279263734818, 0.033073700964450836, 0.020414281636476517, -0.15979325771331787,
- -0.0009783381829038262, -0.07188407331705093, -0.04523654654622078, 0.07702675461769104,
- -0.009153791703283787, 0.048534635454416275, 0.024709805846214294, -0.0901731327176094,
- 0.043264612555503845, 0.043980251997709274, -0.05842772126197815, 0.059897858649492264,
- 0.08739682286977768, 0.015081093646585941, 0.03469134867191315, 0.1626051515340805,
- -0.02581305243074894, -0.057400092482566833, -0.07930798083543777, 0.05126732587814331,
- 0.17956019937992096, 0.023408913984894753, 0.007061155047267675, -0.005489530507475138,
- -0.015947794541716576, 0.002127433894202113, -0.08812085539102554, -0.03592674806714058,
- -0.06499174237251282, -0.06122929975390434, 0.10714004188776016, 0.007996679283678532,
- 0.008470827713608742, -0.14868025481700897, -0.00823252648115158, -0.06299682706594467,
- 0.04508472606539726, 0.12880752980709076, -0.06383612006902695, 0.08480026572942734,
- -0.026850616559386253, -0.05433247983455658, 0.03786540403962135, -0.09107465296983719,
- -0.005989109631627798, -0.07708809524774551, 0.0073020667769014835, 0.09264460951089859,
- 0.04099728539586067, -0.04975734278559685, 0.10721871256828308, -0.1114412322640419,
- 0.08459017425775528, -0.0030549857765436172, -0.06641661375761032, 0.00897239614278078,
- -0.019630806520581245, 0.041933249682188034, 0.0033937853295356035,
- -0.06446807831525803, 0.04810499772429466, -0.006359803024679422, -0.07562017440795898,
- -0.07062496989965439, -0.06585118174552917, -0.01309020072221756, -0.03087914176285267,
- -0.01070741843432188, -0.09770336002111435, -0.017875436693429947, -0.02856406755745411,
- -0.03701115772128105, -0.018417611718177795, 0.05178255960345268, 0.014814849011600018,
- -0.10808127373456955, 0.050706297159194946, -0.061581242829561234, 0.0742073729634285,
- 0.014514786191284657, -0.030559053644537926, 0.017030274495482445, 0.142003133893013,
- 0.057229164987802505, -0.019701318815350533, -0.023234015330672264, -0.0477440319955349,
- 0.0541050098836422, -0.1525924801826477, -0.46584001183509827, 0.06382683664560318,
- 0.03876054659485817, 0.037470798939466476, -0.02019105851650238, -0.05658410117030144,
- 0.061696767807006836, 0.00826775562018156, -0.10337257385253906, 0.1128896102309227,
- -0.06007104739546776, 0.020186293870210648, -0.040602657943964005, -0.12067558616399765,
- -0.03743331879377365, -0.04415425285696983, -0.047541696578264236, 0.057234715670347214,
- -0.03269946575164795, -0.07261469215154648, -0.15638522803783417, 0.06150278449058533,
- 0.010112258605659008, 0.03580120578408241, 0.02616066299378872, 0.008580212481319904,
- -0.01725471392273903, -0.05332024767994881, 0.04551611468195915, 0.0517042875289917,
- 0.05115398392081261, -0.10023653507232666, -0.010493910871446133, 0.04577082395553589,
- 0.015387565828859806, 0.13071663677692413, 0.027697255834937096, 0.013251028954982758,
- -0.06896529346704483, 0.12778790295124054, 0.03264176845550537, 0.18101012706756592,
- -0.03550881892442703, 0.00717125041410327, -0.018431084230542183, 0.17619599401950836,
- 0.07004175335168839, -0.02129131555557251, -0.014592975378036499, -0.026390867307782173,
- 0.021392153576016426, -0.05560539662837982, 0.06912211328744888, -0.06266932934522629,
- -0.03299809992313385, -0.03630455210804939, -0.01002355758100748, -0.008542164228856564,
- -0.018737802281975746, 0.1754130721092224, 0.027551187202334404, 0.022989546880126,
- 0.017343295738101006, -0.023415135219693184, -0.0011369598796591163, -0.064103864133358,
- -0.11385758966207504, -0.016682105138897896, -0.033885788172483444,
- 0.007395714521408081, -0.06817757338285446, -0.10796301811933517, -0.021801965311169624,
- 0.022017814218997955, -0.024851182475686073, 0.14199237525463104, 0.01867932267487049,
- 0.013576842844486237, -0.028067156672477722, 0.13910460472106934, 0.08762866258621216,
- -0.034604091197252274, 0.06225934997200966, 0.1053818091750145, 0.014838479459285736,
- 0.10261843353509903, -0.042959798127412796, -0.08523520082235336, -0.028638487681746483,
- 0.12579894065856934, -0.025738423690199852, 0.1433623880147934, 0.08839258551597595,
- -0.10876219719648361, -0.10674116760492325, 0.0003499425947666168, -0.03856402263045311,
- 0.044055890291929245, -0.4972415864467621, -0.02710098959505558, 0.10736414790153503,
- -0.012257151305675507, 0.009741733781993389, 0.0562693327665329, 0.0672370120882988,
- -0.03107624500989914, -0.07850464433431625, -0.09668263047933578, 0.08233366161584854,
- 0.021706953644752502, 0.034465763717889786, -0.1696319580078125, 0.018998518586158752,
- 0.08995085954666138, -0.020015547052025795, -0.012349005788564682, 0.09038019180297852,
- -0.258102685213089, 0.013834591023623943, -0.005275158677250147, 0.10557768493890762,
- -0.015496477484703064, 0.0156475231051445, 0.12149368971586227, -0.0527455098927021,
- 0.05014221370220184, 0.04784151911735535, -0.008445748127996922, 0.02045867033302784,
- -0.02275172807276249, -0.01517521683126688, 0.11278891563415527, 0.10926792770624161,
- 0.0258334968239069, -0.02386755496263504, 12.234129905700684, 0.043161775916814804,
- 0.06527715176343918, -0.12382292747497559, 0.0029469775035977364, -0.046260904520750046,
- 0.005624322686344385, -0.11467649787664413, 0.037532296031713486, 0.16616924107074738,
- -0.04525548219680786, -0.06437843292951584, -0.08353225141763687, -0.14808252453804016,
- 0.037365786731243134, -0.08841704577207565, -0.1248309314250946, -0.0331876277923584,
- 0.03332160785794258, -0.03875963017344475, -0.06372996419668198, 0.058874014765024185,
- 0.04994049668312073, -0.008691118098795414, -0.0431428998708725, -0.0027885951567441225,
- 0.055913448333740234, -0.042474016547203064, 0.007849117740988731, 0.033706184476614,
- 0.013046306557953358, -0.014730365015566349, 0.016545182093977928, -0.03641605004668236,
- 0.047046784311532974, 0.041408490389585495, 0.12395568937063217, 0.026099903509020805,
- 0.05012144520878792, 0.1169624850153923, 0.022715307772159576, 0.05712383612990379,
- 0.04739632084965706, -0.003979016561061144, 0.034078631550073624, 0.06840144097805023,
- 0.0036906700115650892, 0.12485384941101074, -0.010354667901992798, 0.051905032247304916,
- 0.1379292905330658, -0.01800926961004734, 0.15385718643665314, 0.012862873263657093,
- -0.006213810760527849, 0.04967739060521126, -0.002680809935554862, -0.1086425855755806,
- 0.06510549038648605, 0.05386893078684807, -0.06891747564077377, 0.12028920650482178,
- -0.010964401997625828, 0.12131625413894653, -0.03366117551922798, 0.08290275186300278,
- 0.07074307650327682, 0.10755618661642075, -0.14134755730628967, -0.11934089660644531,
- -0.0017939856043085456, -0.09718959778547287, -0.07887394726276398, 0.10975134372711182,
- 0.1486746072769165, -0.06596840918064117, 0.02787497080862522, -0.0007417282904498279,
- 0.01676243357360363, -0.024672599509358406, -0.02229055017232895, 0.09194865077733994,
- 0.014520690776407719, -0.0007892760331742465, 0.07255706191062927, 0.016612179577350616,
- 0.007217113394290209, 0.055069517344236374, -0.03191602602601051, -0.11818809062242508,
- -0.09160175919532776, 0.05101726949214935, -0.02771052159368992, -0.07811710238456726,
- 0.06021849438548088, -0.1030244454741478, 0.07875365763902664, -0.16970156133174896,
- 0.10983409732580185, 0.0854523554444313, -0.06602200120687485, -0.015214167535305023,
- -0.047593336552381516, 0.053481001406908035, 0.05312797799706459, 0.01758813112974167,
- -0.05051327124238014, -0.06256016343832016, -0.012378878891468048, 0.027031907811760902,
- -0.025816336274147034, 0.08228757232427597, 0.11865446716547012, -0.04047314450144768,
- -0.030179738998413086, 0.08641376346349716, -0.04054136574268341,
- -0.0043134987354278564, 0.09831422567367554, 0.0601554699242115, -0.043509047478437424,
- -0.05507548525929451, -0.04745945706963539, -0.05679265782237053, -0.05037348344922066,
- -0.04534804821014404, 0.004267834592610598, 0.05710982158780098, -0.11481315642595291,
- 0.024393586441874504, 0.04837280139327049, 0.03981245681643486, 0.04853150248527527,
- -0.014266684651374817, 0.06197738274931908, -0.11203012615442276, -0.06394954025745392,
- 0.029544837772846222, 0.05698223412036896, 0.04405350610613823, -0.06427749991416931,
- -0.07162849605083466, -0.07789654284715652, -0.14825086295604706, 0.06455283612012863,
- 0.125422865152359, 0.01993735507130623, 0.06917455047369003, 0.043934404850006104,
- -0.10221607238054276, -0.07098328322172165, 0.10861832648515701, 0.09180957823991776,
- 0.035592999309301376, 0.006497586145997047, -0.03987830504775047, -0.05437973141670227,
- 0.11817284673452377, -0.04028574749827385, 0.027769604697823524, 0.06954094022512436,
- 0.02138114906847477, 0.12782026827335358, 0.13430733978748322, 0.056051481515169144,
- 0.06019992753863335, 0.048877935856580734, -0.016249509528279305, 0.015394956804811954,
- -0.009382575750350952, 0.03772658109664917, -0.0032271314412355423,
- -0.09635128825902939, -0.06944829225540161, 0.06767115741968155, 0.12598441541194916,
- -0.022404039278626442, -0.13977812230587006, -0.025418905541300774, -0.04277889057993889
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 170,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 11,
- "similarity": 0.9981483817100525
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 54,
- "similarity": 0.9981050491333008
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 10,
- "similarity": 0.9977297782897949
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Colin Fraser"],
- "epoch_date_downloaded": 1647648000,
- "epoch_date_modified": 1647648000,
- "epoch_date_submitted": 1647648000,
- "flag": null,
- "report_number": 1548,
- "source_domain": "medium.com",
- "submitters": ["Sean McGregor"],
- "title": "Target didn’t figure out a teen girl was pregnant before her father did",
- "url": "https://medium.com/@colin.fraser/target-didnt-figure-out-a-teen-girl-was-pregnant-before-her-father-did-a6be13b973a5"
- },
- {
- "__typename": "Report",
- "authors": ["Kashmir Hill"],
- "epoch_date_downloaded": 1647648000,
- "epoch_date_modified": 1647648000,
- "epoch_date_submitted": 1647648000,
- "flag": null,
- "report_number": 1547,
- "source_domain": "forbes.com",
- "submitters": ["Sean McGregor"],
- "title": "How Target Figured Out A Teen Girl Was Pregnant Before Her Father Did",
- "url": "https://www.forbes.com/sites/kashmirhill/2012/02/16/how-target-figured-out-a-teen-girl-was-pregnant-before-her-father-did/"
- },
- {
- "__typename": "Report",
- "authors": ["Charles Duhigg"],
- "epoch_date_downloaded": 1647648000,
- "epoch_date_modified": 1647648000,
- "epoch_date_submitted": 1647648000,
- "flag": null,
- "report_number": 1546,
- "source_domain": "nytimes.com",
- "submitters": ["Sean McGregor"],
- "title": "How Companies Learn Your Secrets",
- "url": "https://www.nytimes.com/2012/02/19/magazine/shopping-habits.html"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "bath-government",
- "name": "Bath government"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "unknown",
- "name": "Unknown"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "uk-public",
- "name": "UK public"
- },
- {
- "__typename": "Entity",
- "entity_id": "paula-knight",
- "name": "Paula Knight"
- },
- {
- "__typename": "Entity",
- "entity_id": "bath-officials",
- "name": "Bath officials"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1549],
- "vector": [
- -0.057104915380477905, 0.10206767916679382, -0.0004751707601826638,
- -0.12225592881441116, 0.09110601246356964, -0.04113036394119263, -0.012961414642632008,
- 0.049087539315223694, 0.07282064110040665, -0.12222383916378021, -0.013181788846850395,
- 0.024680837988853455, 0.031001167371869087, -0.08390750735998154, 0.057713329792022705,
- -0.07002168148756027, -0.05638306215405464, -0.013370458036661148,
- -0.016643082723021507, -0.14132797718048096, -0.07186557352542877, 0.009403168223798275,
- 0.046099789440631866, 0.10994475334882736, -0.03571104630827904, 0.02395462803542614,
- 0.12153760343790054, 0.06130892038345337, -0.011365490034222603, 0.01142150815576315,
- -0.021964963525533676, -0.07081062346696854, 0.14195427298545837, -0.000571883050724864,
- 0.031589627265930176, 0.11832517385482788, 0.052727922797203064, -0.028343910351395607,
- -0.07842284440994263, -0.013066527433693409, 0.08170999586582184, 0.23515595495700836,
- -0.0010103116510435939, -0.02171243354678154, 0.03665771335363388, -0.0252350065857172,
- 0.010349989868700504, 0.02224624715745449, 0.014633120968937874, 0.06159388646483421,
- 0.0024460526183247566, -0.008275633677840233, -0.021307146176695824,
- 0.004096396267414093, -0.10530950874090195, 0.08047477900981903, 0.04443196952342987,
- 0.005274161230772734, 0.018960893154144287, -0.08961233496665955, -0.04769738391041756,
- -0.2152387946844101, -0.06027489900588989, -0.06992940604686737, 0.11467066407203674,
- -0.07660509645938873, -0.048534587025642395, 0.00005090876220492646, 0.005556620657444,
- 0.08725325763225555, 0.09031227231025696, -0.06619521975517273, -0.014158389531075954,
- 0.030867215245962143, -0.004104383755475283, -0.023727867752313614,
- -0.06645205616950989, 0.22757849097251892, -0.07124171406030655, 0.006593888625502586,
- 0.09627464413642883, -0.1245976909995079, 0.3870845437049866, 0.07457731664180756,
- -0.017820436507463455, -0.034132760018110275, 0.06220809370279312, 0.04379892721772194,
- 0.05099847540259361, 0.06251285970211029, -0.043030042201280594, 0.048379331827163696,
- -0.09209756553173065, 0.058565542101860046, 0.06995804607868195, 0.023422859609127045,
- -0.04102262109518051, 0.021015590056777, -0.03933784365653992, -0.06312030553817749,
- 0.019880039617419243, -0.0596342459321022, 0.09545285254716873, 0.02033442072570324,
- -0.042271729558706284, 0.029392126947641373, 0.0829269140958786, -0.029517095535993576,
- 0.06855680793523788, -0.08198920637369156, 0.030347784981131554, 0.020233549177646637,
- 0.06382398307323456, -0.015016037970781326, 0.02225271798670292, -0.06060076132416725,
- 0.021327104419469833, 0.0007233305368572474, 0.08871154487133026, 0.028630563989281654,
- 0.00005982097354717553, 0.06299721449613571, 0.07121124863624573, -0.045260943472385406,
- -0.06787311285734177, -0.06723783910274506, -0.06965354084968567, -0.02862030267715454,
- -0.043591685593128204, 0.02025853656232357, -0.004965946078300476, -0.21457189321517944,
- -0.006047292146831751, 0.09934642165899277, -0.011090731248259544,
- -0.014835759066045284, 0.003962269518524408, -0.06193786859512329, 0.019029080867767334,
- 0.013617265969514847, -0.0029913452453911304, 0.034661732614040375,
- 0.024584276601672173, 0.017425887286663055, 0.09986911714076996, 0.0893028974533081,
- -0.05214156582951546, -0.023173730820417404, 0.0236357431858778, -0.0670708417892456,
- 0.09972692281007767, -0.07705728709697723, -0.06016015261411667, 0.019365902990102768,
- -0.03294231370091438, 0.6809674501419067, 0.10343717783689499, 0.20101593434810638,
- 0.0011700823670253158, -0.014037699438631535, 0.1790332943201065, 0.00955395121127367,
- 0.05184682831168175, -0.03567139059305191, -0.07528289407491684, 0.04015441611409187,
- -0.05697791278362274, -0.05253899097442627, 0.05476010590791702, 0.022461773827672005,
- 0.09106151759624481, 0.054323747754096985, 0.07412517070770264, 0.002044995781034231,
- -0.11399639397859573, -0.01345910131931305, 0.04954928532242775, 0.006145688239485025,
- -0.1259022057056427, -0.03034219518303871, 0.04058627784252167, 0.08545465767383575,
- -0.07863346487283707, -0.008230630308389664, -0.011922700330615044,
- 0.043510645627975464, -0.020442690700292587, 0.03573308512568474, -0.03029327094554901,
- 0.044028084725141525, 0.06903304904699326, 0.04337020590901375, 0.007636764086782932,
- -0.11233442276716232, -0.019427631050348282, 0.11983875185251236, -0.042101893573999405,
- 0.0018848925828933716, 0.025119598954916, -0.12391141802072525, 0.04687197878956795,
- 0.011373153887689114, 0.142950177192688, -0.14834971725940704, 0.05355192720890045,
- 0.037034254521131516, 0.011044484563171864, 0.050394222140312195, 0.024014150723814964,
- -0.06764892488718033, -0.053381193429231644, 0.12684762477874756, 0.02812989614903927,
- 0.07543383538722992, 0.08285924792289734, -0.04439978301525116, 0.03475165367126465,
- 0.13078056275844574, -0.016177969053387642, 0.00812651589512825, 0.04420197010040283,
- 0.07430201023817062, 0.011133468709886074, -0.01823132485151291, 0.005222204606980085,
- 0.011047491803765297, 0.07253289967775345, -0.0008369741844944656, 0.01946929097175598,
- -0.028767623007297516, -0.033154815435409546, -0.00006304519774857908,
- 0.04241814464330673, 0.018164627254009247, 0.12128125131130219, -0.06057805195450783,
- -0.06751623004674911, -0.0321362130343914, -0.05361694097518921, 0.027806824073195457,
- -0.038581233471632004, 0.07755540311336517, 0.07818029075860977, 0.11422205716371536,
- 0.03349854052066803, 0.06643462181091309, 0.05212726816534996, 0.059045907109975815,
- 0.029424423351883888, 0.05959630012512207, -0.03745710477232933, -0.042422860860824585,
- -0.03731806203722954, 0.016916407272219658, 0.0324978306889534, 0.02818448469042778,
- -0.08333849906921387, -0.02640695683658123, -0.05108620598912239, -0.04040561988949776,
- -0.07278205454349518, -0.07555503398180008, -0.002152692526578903, 0.030816802754998207,
- -0.0692618191242218, -0.09014581143856049, -0.0698263943195343, 0.010566417127847672,
- 0.061294328421354294, -0.02889634296298027, -0.02895207144320011, -0.1143549308180809,
- -0.02506401389837265, -0.02460627071559429, 0.027099734172225, 0.014899061992764473,
- -0.016265198588371277, 0.017533861100673676, -0.04587375372648239, 0.02980937622487545,
- -0.035112399607896805, -0.05067224055528641, -0.06730848550796509,
- -0.036802005022764206, -0.008927887305617332, 0.0008203330799005926,
- -0.008430829271674156, -0.017838874831795692, 0.012173199094831944, 0.03203563019633293,
- 0.02963334135711193, -0.030992552638053894, -0.0655769407749176, 0.052949268370866776,
- -0.007817110046744347, -0.020042480900883675, 0.05199165642261505,
- -0.0036314325407147408, 0.09014593809843063, -0.010155868716537952, -0.1092873364686966,
- -0.04671543464064598, 0.05737517401576042, -0.026200927793979645,
- -0.0018763181287795305, -0.022105654701590538, 0.04859475791454315, -0.038099505007267,
- -0.0268722977489233, 0.04532217979431152, -0.07134366780519485, -0.11055364459753036,
- -0.10392243415117264, 0.12689454853534698, 0.006436119321733713, -0.02706141397356987,
- 0.05139784887433052, -0.039337292313575745, 0.04097874090075493, -0.038370635360479355,
- -0.0074648065492510796, 0.05077401548624039, 0.02961687184870243, 0.04298467934131622,
- 0.011985507793724537, 0.036576878279447556, -0.04645933955907822, 0.02356339618563652,
- 0.05236657336354256, 0.42505335807800293, -0.2150956392288208, 0.08681497722864151,
- 0.08332953602075577, 0.006818789057433605, 0.06341049075126648, -0.016947368159890175,
- 0.07652020454406738, 0.08593401312828064, 0.1112523153424263, 0.13078896701335907,
- -0.02981754019856453, 0.009383336640894413, -0.1406852751970291, 0.10253950953483582,
- 0.0013761332957074046, 0.007385886739939451, 0.015233631245791912, -0.07172463089227676,
- -0.03952442482113838, 0.024623701348900795, -0.07102988660335541, 0.009095001965761185,
- 0.03181953728199005, -0.019374851137399673, -0.0007113898172974586,
- -0.005844025872647762, 0.019076328724622726, -0.036113690584897995,
- 0.014718545600771904, -0.03160490095615387, 0.0884288027882576, 0.015025068074464798,
- 0.028041699901223183, -0.15226630866527557, 0.05969463661313057, -0.09652618318796158,
- -0.07114335149526596, 0.09496279060840607, -0.02655636891722679, 0.05815068259835243,
- 0.0356673002243042, -0.05756087973713875, 0.024194518104195595, -0.005508922506123781,
- -0.052175916731357574, 0.02180464006960392, 0.07159340381622314, 0.04100452736020088,
- 0.11300409585237503, 0.14019346237182617, -0.03663291409611702, -0.019267618656158447,
- -0.04818665608763695, 0.0852961540222168, 0.14180579781532288, -0.0049950857646763325,
- -0.02123851142823696, -0.016060620546340942, -0.007187828421592712,
- 0.000706876686308533, -0.03887997195124626, -0.0860968604683876, -0.01684316247701645,
- -0.07764844596385956, 0.04844015836715698, -0.01545086968690157, 0.003937436267733574,
- -0.14606519043445587, -0.02844969555735588, -0.06557082384824753, 0.010785674676299095,
- 0.1089097335934639, -0.04673618823289871, 0.03070943057537079, 0.026751551777124405,
- -0.034937504678964615, 0.0058614592999219894, -0.07546944171190262,
- -0.007130041252821684, -0.037694234400987625, 0.06259087473154068, 0.07660870999097824,
- 0.0480436347424984, -0.02673153020441532, 0.05952799692749977, -0.0760309249162674,
- 0.06519954651594162, 0.010633358731865883, 0.03582271561026573, 0.026694554835557938,
- -0.05474444106221199, 0.014279431663453579, 0.02116386592388153, -0.037648219615221024,
- -0.0031526521779596806, -0.023920612409710884, -0.08871111273765564,
- -0.05897139012813568, -0.07758431136608124, -0.029732856899499893,
- -0.058402303606271744, 0.06983058899641037, -0.12260477244853973, -0.03840125724673271,
- -0.0089256027713418, -0.04738710820674896, 0.016500862315297127, 0.026559531688690186,
- 0.018436072394251823, -0.17692728340625763, 0.030599230900406837,
- -0.0031547052785754204, 0.06560175865888596, 0.00418939720839262, -0.02875903993844986,
- -0.015703586861491203, 0.11613282561302185, 0.054508984088897705, -0.023300647735595703,
- -0.024397242814302444, -0.07791223376989365, -0.01876971311867237, -0.13626067340373993,
- -0.409269779920578, 0.08381359279155731, 0.028477240353822708, 0.040626849979162216,
- 0.0134565569460392, -0.05692475289106369, 0.026358628645539284, -0.0028934243600815535,
- -0.031734615564346313, 0.09361275285482407, -0.07964468002319336, 0.016218794509768486,
- -0.04036436229944229, -0.08255480229854584, -0.06022430583834648, -0.039698973298072815,
- -0.05468171089887619, 0.02507961355149746, -0.061230048537254333, -0.07572048902511597,
- -0.10527349263429642, 0.016399506479501724, -0.03668634966015816, 0.037639375776052475,
- 0.031732749193906784, 0.018475357443094254, -0.05026781186461449, -0.046725183725357056,
- 0.056250981986522675, 0.06648969650268555, 0.07234160602092743, -0.08406482636928558,
- 0.0169974435120821, 0.01937885954976082, 0.01654365099966526, 0.15686166286468506,
- 0.012733847834169865, -0.01268930546939373, -0.08938618749380112, 0.06306521594524384,
- 0.055996399372816086, 0.18698395788669586, -0.014072107151150703, 0.020772438496351242,
- 0.02758173830807209, 0.1354980319738388, 0.06278015673160553, -0.011908252723515034,
- -0.006638143677264452, -0.005742931738495827, 0.022793056443333626,
- -0.03379005193710327, 0.07668066024780273, -0.04454702511429787, -0.03543154522776604,
- -0.01851068250834942, 0.00303644803352654, -0.018376756459474564, 0.023489439859986305,
- 0.19730502367019653, 0.01331659872084856, 0.02038431726396084, -0.012184126302599907,
- -0.07032324373722076, 0.0006516713765449822, -0.04083854705095291, -0.10337886214256287,
- -0.03373049944639206, -0.004660888109356165, 0.012719039805233479, -0.06359049677848816,
- -0.1350684016942978, 0.0019711917266249657, 0.010014328174293041, -0.004440151620656252,
- 0.1310320794582367, 0.007099784445017576, 0.0438278429210186, -0.053584031760692596,
- 0.14879095554351807, 0.011545337736606598, -0.021364035084843636, 0.08555836230516434,
- 0.10791293531656265, -0.004923200700432062, 0.04113909602165222, 0.005135121289640665,
- -0.010575966909527779, 0.04252368584275246, 0.07121068984270096, -0.05265956372022629,
- 0.1020798459649086, 0.08343438804149628, -0.054892655462026596, -0.08078248798847198,
- 0.05392482131719589, 0.017719384282827377, 0.02676490508019924, -0.46017730236053467,
- -0.04891471937298775, 0.12603500485420227, 0.04602814093232155, 0.018072910606861115,
- 0.07955815643072128, -0.011573727242648602, -0.029697934165596962, -0.02917531318962574,
- -0.07094532996416092, 0.06666091829538345, -0.0034633774776011705, 0.04003608971834183,
- -0.08766943961381912, 0.03884101286530495, 0.06421029567718506, -0.014901782386004925,
- -0.0008974845986813307, 0.0785905048251152, -0.21561339497566223, 0.036027777940034866,
- -0.020807355642318726, 0.12445738166570663, 0.033913224935531616, 0.018416987732052803,
- 0.07624451816082001, -0.10190213471651077, 0.018331626430153847, 0.06084904447197914,
- 0.003660359885543585, 0.06158343330025673, 0.006736763287335634, -0.03631218895316124,
- 0.10782907903194427, 0.07306677103042603, 0.12269023805856705, -0.02227834239602089,
- 11.927130699157715, 0.06183841452002525, 0.03035009279847145, -0.08090656995773315,
- 0.009205186739563942, -0.03273988142609596, 0.018364697694778442, -0.11331289261579514,
- 0.09042751044034958, 0.14320801198482513, -0.020343707874417305, -0.04942528158426285,
- -0.05837692320346832, -0.12163114547729492, 0.04125344380736351, -0.03526555001735687,
- -0.060978006571531296, -0.04541168361902237, 0.018815096467733383, -0.04545319080352783,
- -0.03247172757983208, 0.06891914457082748, 0.06890247762203217, -0.006359160877764225,
- -0.015094093047082424, 0.02838088385760784, 0.008178623393177986, -0.02302011288702488,
- 0.015443294309079647, 0.007706468924880028, -0.011865121312439442, 0.009910434484481812,
- 0.06543608754873276, -0.015908312052488327, 0.023359928280115128, 0.08404615521430969,
- 0.08347617089748383, 0.06135198473930359, -0.0010725302854552865, 0.062039777636528015,
- 0.039995141327381134, -0.013081091456115246, 0.052073072642087936, 0.020157702267169952,
- 0.053136322647333145, 0.07048068940639496, 0.08251453191041946, 0.10858875513076782,
- 0.025421710684895515, 0.06834788620471954, 0.08909844607114792, -0.027785181999206543,
- 0.12181048840284348, -0.05243411287665367, -0.019482312723994255, 0.04257342591881752,
- 0.04531093314290047, -0.0846475139260292, 0.05895528197288513, 0.08862531930208206,
- -0.090607188642025, 0.10843849182128906, -0.022096795961260796, 0.10490520298480988,
- -0.03028925508260727, 0.08142662048339844, 0.08213157206773758, 0.06759022921323776,
- -0.12131217867136002, -0.10097722709178925, 0.050581999123096466, -0.10516451299190521,
- -0.07938424497842789, 0.05983283370733261, 0.10425427556037903, -0.06825660169124603,
- 0.048089172691106796, -0.053955066949129105, 0.0063098119571805, -0.038962118327617645,
- -0.00008377543417736888, 0.0184234119951725, 0.030331986024975777, 0.008723658509552479,
- 0.0530485175549984, 0.014607368968427181, 0.02242758683860302, 0.07829096913337708,
- -0.01528692152351141, -0.07322855293750763, -0.05688374489545822, 0.10738956183195114,
- -0.03945343196392059, -0.07272689789533615, -0.006066398229449987, -0.08498844504356384,
- 0.0498204305768013, -0.11591403186321259, 0.04428306594491005, 0.08545433729887009,
- -0.07108236104249954, 0.00572247477248311, -0.056548215448856354, 0.027490446344017982,
- -0.008941350504755974, 0.028835684061050415, -0.05935708433389664, 0.022593647241592407,
- -0.01796402595937252, 0.018452756106853485, -0.022890442982316017, 0.09168194979429245,
- 0.10729105770587921, -0.05841004103422165, 0.000100877252407372, 0.046744633466005325,
- -0.0016091195866465569, -0.05738827586174011, 0.05030065029859543, 0.06633181869983673,
- -0.06522417068481445, -0.03167449310421944, -0.008744518272578716,
- -0.038654305040836334, -0.02840903401374817, -0.048915062099695206, 0.03493095189332962,
- 0.08230181038379669, -0.10021916776895523, -0.024238066747784615, 0.04072912782430649,
- 0.060407958924770355, 0.10017621517181396, -0.014363013207912445, 0.044477593153715134,
- -0.07017440348863602, -0.06778164207935333, 0.0339440181851387, 0.032785385847091675,
- 0.07542134821414948, -0.00902128592133522, -0.03469863533973694, -0.08023549616336823,
- -0.10801931470632553, 0.044354476034641266, 0.10571973770856857, 0.05282596871256828,
- 0.04218688979744911, -0.008032916113734245, -0.11355938762426376, -0.05360103398561478,
- 0.13894809782505035, 0.00603161845356226, 0.009120969101786613, 0.04560214653611183,
- -0.06392038613557816, -0.026725314557552338, 0.10611994564533234, -0.04034969210624695,
- 0.023188147693872452, 0.07706279307603836, -0.017244325950741768, 0.10596290975809097,
- 0.08277339488267899, 0.07002048194408417, 0.024885788559913635, 0.009380768053233624,
- -0.00884559378027916, 0.05848931521177292, -0.014388125389814377, 0.026719342917203903,
- 0.016931908205151558, -0.13608437776565552, -0.09073243290185928, 0.061952147632837296,
- 0.13178086280822754, 0.02071445621550083, -0.06912390887737274, -0.03337077051401138,
- 0.004580785986036062
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 171,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 20,
- "similarity": 0.9985857605934143
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 36,
- "similarity": 0.9985215663909912
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 51,
- "similarity": 0.9984791278839111
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Rob Stumpf"],
- "epoch_date_downloaded": 1647388800,
- "epoch_date_modified": 1647388800,
- "epoch_date_submitted": 1647388800,
- "flag": null,
- "report_number": 1549,
- "source_domain": "thedrive.com",
- "submitters": ["Khoa Lam"],
- "title": "Driver Fined After Traffic Camera Thinks Pedestrian’s Shirt Is a License Plate",
- "url": "https://www.thedrive.com/news/42796/driver-fined-after-traffic-camera-thinks-pedestrians-shirt-is-a-license-plate"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "appriss",
- "name": "Appriss"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "appriss",
- "name": "Appriss"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "american-physicians",
- "name": "American physicians"
- },
- {
- "__typename": "Entity",
- "entity_id": "american-pharmacists",
- "name": "American pharmacists"
- },
- {
- "__typename": "Entity",
- "entity_id": "american-patients-of-minority-groups",
- "name": "American patients of minority groups"
- },
- {
- "__typename": "Entity",
- "entity_id": "american-patients",
- "name": "American patients"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1550],
- "vector": [
- -0.0358746275305748, 0.0789494514465332, 0.02922281064093113, -0.08980045467615128,
- 0.15599028766155243, -0.048214610666036606, 0.04335978627204895, 0.06425243616104126,
- -0.006537706591188908, -0.13131357729434967, 0.0004035109013784677,
- 0.030471298843622208, 0.00992322713136673, -0.10188741981983185, 0.058628637343645096,
- -0.04241195693612099, -0.08981819450855255, -0.07963882386684418, -0.01984567567706108,
- -0.233303502202034, -0.07482685148715973, 0.07484961301088333, -0.033328115940093994,
- 0.12063568085432053, -0.05261070281267166, 0.03251975029706955, 0.16624625027179718,
- 0.09774192422628403, 0.035402584820985794, 0.04863131791353226, -0.03468883037567139,
- -0.12944360077381134, 0.14793485403060913, -0.023038804531097412, 0.03133771941065788,
- 0.13917230069637299, -0.042503587901592255, -0.018473999574780464, 0.03891779109835625,
- 0.0018402320565655828, 0.012248474173247814, 0.2940594255924225, -0.02861364185810089,
- -0.0859924852848053, -0.0020102730486541986, -0.04809100180864334, 0.02479429915547371,
- 0.031556352972984314, 0.00836773868650198, -0.02557693049311638, 0.0017503488343209028,
- 0.09505198150873184, -0.026223396882414818, 0.0469181202352047, -0.18876773118972778,
- 0.0898396298289299, 0.055027589201927185, 0.010434085503220558, 0.057879749685525894,
- -0.07437781244516373, -0.009716769680380821, -0.27810990810394287, -0.04620511084794998,
- -0.050978586077690125, 0.13832499086856842, -0.07279007881879807, -0.007204413414001465,
- -0.018976593390107155, -0.020635655149817467, 0.07493255287408829, 0.09231226146221161,
- -0.010889023542404175, -0.03579103201627731, 0.07783086597919464, -0.018341176211833954,
- -0.05814705044031143, 0.04017218202352524, 0.30495715141296387, -0.1254010647535324,
- -0.0004414140712469816, 0.12980303168296814, -0.08517555892467499, 0.5589652061462402,
- -0.03414838761091232, -0.05663752928376198, -0.05524031072854996, 0.07323897629976273,
- -0.03662027046084404, 0.03753897175192833, 0.05567791312932968, -0.037544701248407364,
- 0.055981509387493134, -0.08038835972547531, 0.06327897310256958, 0.10204293578863144,
- 0.010646534152328968, -0.01919514872133732, 0.12599901854991913, 0.021916549652814865,
- -0.06482081115245819, 0.06632926315069199, -0.06463239341974258, 0.0781766027212143,
- 0.07616697996854782, -0.09342033416032791, 0.014076403342187405, 0.05695159733295441,
- -0.047902096062898636, 0.04235532134771347, -0.09931284934282303, -0.023685259744524956,
- -0.07594388723373413, 0.0033304530661553144, -0.031515855342149734,
- -0.007293365895748138, -0.10475585609674454, 0.009428651072084904, 0.07459293305873871,
- 0.12881022691726685, -0.04181571677327156, -0.02279439941048622, 0.03247903659939766,
- 0.10288917273283005, -0.03318629413843155, -0.1325313001871109, -0.027591077610850334,
- -0.08622091263532639, -0.03969629108905792, 0.012093955650925636, 0.07559256255626678,
- -0.0982513502240181, -0.23742859065532684, -0.0226186104118824, 0.0811629518866539,
- -0.015842467546463013, -0.07607191801071167, -0.07462712377309799, -0.0684056431055069,
- 0.033859431743621826, -0.02510051615536213, -0.005132459569722414, -0.01595969684422016,
- 0.03215106949210167, 0.009256437420845032, 0.1326756626367569, 0.0979921743273735,
- -0.07517944276332855, -0.019600486382842064, -0.026867413893342018,
- 0.0003184557717759162, 0.17829036712646484, -0.18467943370342255, -0.042170699685811996,
- -0.0037660349626094103, -0.042530208826065063, 0.7315639853477478, 0.15479664504528046,
- 0.2536628246307373, -0.05226629227399826, -0.027431001886725426, 0.25052782893180847,
- -0.05457429960370064, 0.06153465062379837, -0.12616147100925446, 0.016232727095484734,
- 0.07433252781629562, -0.08245449513196945, -0.053371135145425797, 0.08683610707521439,
- 0.046187203377485275, 0.16252319514751434, 0.033575572073459625, 0.13125839829444885,
- 0.06356685608625412, -0.10812879353761673, 0.018884900957345963, 0.16367433965206146,
- 0.025133656337857246, -0.1332995593547821, -0.05350155755877495, 0.01760101318359375,
- 0.11598493903875351, -0.03994694724678993, -0.011658525094389915, -0.14423096179962158,
- 0.08205080032348633, -0.01929020695388317, 0.008099055849015713, -0.049905940890312195,
- 0.041653506457805634, 0.002476004883646965, 0.07915763556957245, -0.04802412912249565,
- -0.160856232047081, -0.00623940397053957, 0.10098910331726074, -0.05242973566055298,
- -0.03648220747709274, 0.0555904246866703, -0.13645868003368378, 0.041742462664842606,
- 0.0402865894138813, 0.24408653378486633, -0.13908083736896515, 0.033533092588186264,
- -0.031828299164772034, 0.013402814976871014, 0.010029595345258713, 0.044885724782943726,
- -0.07355573773384094, -0.13553386926651, 0.13870155811309814, 0.06895285099744797,
- 0.09838882833719254, 0.11835965514183044, -0.003294240450486541, 0.04876914247870445,
- 0.052437733858823776, 0.022626906633377075, -0.015186063945293427, 0.09507282078266144,
- 0.08665693551301956, 0.013280028477311134, -0.029067378491163254, 0.0580512098968029,
- 0.033892545849084854, 0.05233091115951538, 0.033392854034900665, 0.05088779330253601,
- -0.04008917510509491, -0.0014999937266111374, 0.036484234035015106,
- 0.011204784736037254, -0.01023923885077238, 0.08332107961177826, -0.03484194725751877,
- -0.11877143383026123, -0.0223391130566597, -0.03900155797600746, 0.016600117087364197,
- -0.04771476984024048, 0.13179662823677063, 0.05909515544772148, 0.1359413117170334,
- -0.016272548586130142, 0.060671254992485046, 0.0366295762360096, 0.025233592838048935,
- 0.024181485176086426, 0.08575062453746796, 0.004624352324754, -0.010046275332570076,
- -0.013853280805051327, 0.04598237946629524, -0.048089399933815, -0.03945104405283928,
- -0.04683764651417732, -0.0385749414563179, -0.06491291522979736, -0.20742984116077423,
- -0.09483833611011505, -0.028446925804018974, 0.11413542181253433, -0.029666751623153687,
- -0.03589245304465294, -0.13469845056533813, -0.11780833452939987, -0.01200652401894331,
- 0.13265085220336914, 0.03514128550887108, -0.08737556636333466, -0.10556301474571228,
- 0.025935661047697067, -0.00829295814037323, 0.07296979427337646, -0.03520888462662697,
- -0.008367341943085194, 0.055369019508361816, -0.049957629293203354,
- -0.0023514735512435436, -0.07339190691709518, -0.045919232070446014,
- -0.11075606942176819, -0.1301196813583374, -0.010143113322556019, -0.09016751497983932,
- -0.05734763666987419, 0.030393201857805252, 0.07380571216344833, 0.03913849964737892,
- 0.07923674583435059, -0.04097999632358551, -0.090077705681324, 0.019070051610469818,
- -0.006992970127612352, -0.0060472735203802586, 0.09802500903606415,
- -0.02983436919748783, 0.0898166298866272, -0.023386221379041672, -0.025314537808299065,
- -0.0028212203178554773, -0.016093164682388306, -0.04747623950242996,
- 0.09554126113653183, -0.03019341640174389, -0.038823239505290985, -0.027366014197468758,
- 0.019663577899336815, 0.0646471157670021, -0.0023961770348250866, -0.13004733622074127,
- -0.07710844278335571, 0.16039592027664185, -0.03681357949972153, -0.03946859389543533,
- 0.0216502845287323, -0.04531266912817955, 0.07967323809862137, 0.01238997932523489,
- 0.004632208496332169, 0.12248709052801132, 0.03832520544528961, 0.009843846783041954,
- 0.0400208942592144, 0.0703640729188919, -0.049606531858444214, 0.02622014842927456,
- 0.05251074954867363, 0.525579035282135, -0.2384600043296814, 0.09187490493059158,
- 0.11890992522239685, 0.10834749788045883, 0.01237291470170021, -0.04283807426691055,
- 0.06417955458164215, 0.06723478436470032, 0.15065160393714905, 0.16585586965084076,
- -0.06920474767684937, -0.0481647290289402, -0.17761561274528503, 0.11150786280632019,
- -0.01310978177934885, 0.04611428454518318, -0.022414853796362877, -0.11265331506729126,
- -0.010309306904673576, 0.0001542926038382575, -0.020294129848480225,
- -0.07447627931833267, -0.00822655763477087, -0.04274965822696686, -0.04597849398851395,
- 0.013313344679772854, -0.040225837379693985, -0.03139259293675423, 0.023090865463018417,
- -0.026847541332244873, 0.07351807504892349, -0.01563376374542713, -0.028544358909130096,
- -0.13322646915912628, 0.05189858749508858, -0.06413225084543228, -0.10579036176204681,
- 0.07841741293668747, -0.037978872656822205, 0.06168978288769722, 0.08352812379598618,
- 0.025439556688070297, -0.02968578413128853, 0.05157139152288437, -0.13440337777137756,
- 0.059019673615694046, 0.05784362554550171, 0.0372774638235569, 0.03840945288538933,
- 0.19055981934070587, -0.10310865193605423, 0.005251693539321423, -0.1101628765463829,
- 0.05535071715712547, 0.1936458945274353, 0.008961553685367107, 0.05373290181159973,
- 0.0367836095392704, -0.015674754977226257, 0.036461640149354935, -0.03882288560271263,
- -0.033804744482040405, -0.09584589302539825, -0.059771981090307236,
- 0.036689355969429016, 0.00811020564287901, 0.04963156208395958, -0.21664012968540192,
- -0.03241155669093132, -0.1033233106136322, 0.06951608508825302, 0.08450265973806381,
- -0.0724022164940834, 0.13932572305202484, 0.043015167117118835, 0.03166259080171585,
- 0.04213223233819008, -0.0814163014292717, 0.06530652195215225, -0.0006030014483258128,
- -0.015356402844190598, 0.07857614755630493, 0.051705192774534225, -0.020920030772686005,
- 0.08246885985136032, -0.08132447302341461, 0.1514436900615692, -0.008881024084985256,
- 0.012116092257201672, 0.014513863250613213, -0.029913244768977165,
- -0.003024332458153367, -0.022233422845602036, -0.056434422731399536,
- 0.05955367535352707, -0.00301590864546597, -0.07815402001142502, -0.1212737038731575,
- -0.05145399644970894, -0.02843615598976612, 0.0020792046561837196, 0.050092753022909164,
- -0.16487617790699005, -0.019841941073536873, -0.11033762246370316,
- -0.013667103834450245, -0.05652832239866257, 0.028833866119384766, 0.02244841866195202,
- -0.2223457396030426, 0.007666256278753281, -0.01906176283955574, 0.1334613710641861,
- 0.00907798483967781, 0.04972772300243378, -0.011057368479669094, 0.21007969975471497,
- 0.0761454626917839, 0.031375959515571594, 0.019135551527142525, -0.09640844166278839,
- 0.06587215512990952, -0.11134780198335648, -0.40580981969833374, 0.07277382910251617,
- -0.0733461081981659, 0.04371814802289009, -0.012118345126509666, -0.03104417957365513,
- 0.05735605210065842, -0.04261888936161995, -0.05746784061193466, 0.11260801553726196,
- -0.12636570632457733, 0.018123548477888107, 0.03259080648422241, -0.10265341401100159,
- -0.04945245012640953, 0.02211465872824192, -0.09608439356088638, -0.0005796118057332933,
- -0.10884200036525726, -0.10687287896871567, -0.2104053646326065, 0.12369759380817413,
- 0.014323009178042412, -0.01905743218958378, 0.005090845283120871, 0.020363638177514076,
- -0.10224653035402298, -0.07843046635389328, 0.04202009737491608, 0.02962004579603672,
- 0.09193281829357147, -0.027540912851691246, -0.016054801642894745, 0.07959587872028351,
- -0.006904027424752712, 0.09915152937173843, 0.02031874470412731, 0.011364039033651352,
- -0.0577518567442894, 0.061660297214984894, 0.07418135553598404, 0.17378666996955872,
- -0.05398290976881981, 0.07930556684732437, -0.001013853820040822, 0.15727292001247406,
- 0.13715721666812897, -0.04789385572075844, -0.05719592049717903, -0.039747901260852814,
- -0.010661476291716099, -0.037022918462753296, 0.09242735803127289,
- -0.029739005491137505, 0.00700558302924037, -0.07115688920021057, 0.1084698811173439,
- 0.06637062132358551, 0.10392571985721588, 0.16122233867645264, 0.016106678172945976,
- 0.036298856139183044, -0.010723115876317024, -0.060178324580192566,
- -0.021729471161961555, -0.048729367554187775, -0.18615299463272095,
- -0.004636075347661972, -0.026518510654568672, -0.041034627705812454,
- -0.046098001301288605, -0.13313312828540802, -0.059974826872348785,
- 0.0012385360896587372, -0.025974977761507034, 0.161812424659729, -0.01832675002515316,
- 0.039881374686956406, 0.005753837525844574, 0.10814840346574783, 0.051256485283374786,
- 0.029706567525863647, 0.10291023552417755, 0.14230069518089294, 0.04440939426422119,
- 0.043039720505476, 0.015713997185230255, -0.07977596670389175, -0.023798059672117233,
- 0.20868277549743652, -0.1423163264989853, 0.05696425586938858, 0.09800947457551956,
- -0.13659049570560455, -0.10260151326656342, 0.03302697837352753, -0.01794690266251564,
- 0.010570426471531391, -0.4744224548339844, -0.05838664248585701, 0.1124359518289566,
- 0.009736968204379082, -0.01092838030308485, 0.1363036334514618, 0.008175191469490528,
- -0.10496740788221359, -0.08657099306583405, -0.08462503552436829, 0.1713593304157257,
- -0.007892477326095104, 0.0438968650996685, -0.10528095811605453, 0.04721079766750336,
- 0.13167965412139893, -0.04039670526981354, -0.004468201659619808, 0.14295490086078644,
- -0.32179346680641174, 0.02119857631623745, -0.023519326001405716, 0.16591651737689972,
- -0.024811603128910065, 0.030119961127638817, 0.06961871683597565, -0.0407777763903141,
- 0.038511112332344055, 0.08353600651025772, 0.020607946440577507, 0.04541900381445885,
- -0.09337892383337021, -0.06767211854457855, 0.12975916266441345, 0.03718177601695061,
- 0.03591882809996605, -0.09972010552883148, 12.649935722351074, 0.12310624867677689,
- 0.08732163161039352, -0.07850669324398041, 0.06285715848207474, 0.00238131545484066,
- -0.013284535147249699, -0.26946744322776794, -0.054782845079898834, 0.15957288444042206,
- -0.10611677169799805, -0.12263134121894836, -0.04255979135632515, -0.1085340827703476,
- 0.030969422310590744, -0.05050375685095787, -0.0619855634868145, -0.03459309786558151,
- 0.011570829898118973, -0.0387810654938221, -0.01310901902616024, 0.03547000139951706,
- 0.022237543016672134, -0.003940353635698557, -0.019951464608311653, 0.14117127656936646,
- 0.05806554853916168, -0.039801012724637985, -0.009108730591833591,
- -0.046190764755010605, -0.028668450191617012, -0.022193849086761475,
- -0.07309842109680176, 0.008483491837978363, 0.0745396688580513, 0.11667955666780472,
- 0.05281512811779976, 0.08076613396406174, 0.05461115017533302, 0.12628160417079926,
- -0.010191217996180058, 0.048889365047216415, 0.06517033278942108, 0.08322719484567642,
- 0.013304699212312698, 0.09036686271429062, 0.06636828929185867, 0.1552087515592575,
- 0.03730078041553497, 0.023093605414032936, 0.07986974716186523, -0.009737326763570309,
- 0.16228576004505157, -0.009811279363930225, -0.011415783315896988, 0.028055232018232346,
- 0.004284321330487728, -0.054892510175704956, 0.05697006732225418, 0.08422934263944626,
- -0.015711555257439613, 0.026748033240437508, -0.02637561969459057, 0.10096409916877747,
- -0.05099525302648544, 0.09342212975025177, 0.08874412626028061, 0.05500051751732826,
- -0.18102999031543732, -0.1308896243572235, 0.012767557986080647, -0.15617240965366364,
- -0.09520295262336731, 0.11090632528066635, 0.19214677810668945, -0.06695103645324707,
- 0.008677029050886631, -0.023915687575936317, 0.07429663836956024, -0.16501756012439728,
- 0.03474648296833038, 0.09539900720119476, 0.019073786213994026, 0.009890330955386162,
- 0.021181780844926834, 0.05148552730679512, 0.043261874467134476, 0.06281796097755432,
- -0.09958706796169281, -0.0895586833357811, -0.05272391811013222, -0.016281545162200928,
- 0.04697521775960922, -0.09581676870584488, 0.027930624783039093, -0.07717667520046234,
- 0.05903797596693039, -0.1353829950094223, 0.03340509906411171, 0.1021355614066124,
- -0.11249727010726929, -0.05508366972208023, -0.09609205275774002, 0.06430155038833618,
- 0.02272270992398262, -0.007968312129378319, -0.030356135219335556, 0.02039734274148941,
- 0.037072181701660156, 0.03499735891819, 0.04301389679312706, 0.05807564780116081,
- 0.08509768545627594, -0.02759041078388691, 0.0016574987675994635, 0.05708000808954239,
- -0.009465184062719345, -0.018154390156269073, 0.10039762407541275, 0.03645382449030876,
- -0.06936913728713989, -0.0879206582903862, -0.07793401926755905, -0.043814945966005325,
- -0.0641963854432106, -0.09818137437105179, 0.043671175837516785, 0.11086244881153107,
- -0.1105254665017128, -0.011757719330489635, 0.011691994965076447, 0.049063824117183685,
- 0.09656750410795212, 0.05870286375284195, 0.1245490163564682, -0.11423569917678833,
- -0.03290553763508797, 0.013681306503713131, -0.01027725450694561, 0.054442934691905975,
- -0.01912332884967327, -0.050198446959257126, -0.1055992841720581, -0.08438441157341003,
- 0.047855306416749954, 0.1155063807964325, 0.06464985758066177, 0.003732580691576004,
- -0.017189038917422295, -0.0430447980761528, -0.07117050886154175, 0.12601764500141144,
- 0.054713789373636246, -0.0072947898879647255, 0.01998891867697239, 0.009614854119718075,
- -0.07336468994617462, 0.11078382283449173, -0.1029462218284607, 0.035829007625579834,
- 0.09626556932926178, 0.022797785699367523, 0.04783286899328232, 0.19024047255516052,
- 0.009160341694951057, 0.11434630304574966, 0.04896841198205948, 0.055098600685596466,
- -0.020671265199780464, -0.0611540749669075, 0.031410735100507736, 0.019327981397509575,
- 0.025122076272964478, -0.07774565368890762, 0.035018790513277054, 0.11510098725557327,
- -0.051182471215724945, -0.10051790624856949, 0.051475346088409424, -0.06903906911611557
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 172,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 110,
- "similarity": 0.9965776801109314
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 4,
- "similarity": 0.9961435794830322
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 173,
- "similarity": 0.9959220886230469
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Maia Szalavitz"],
- "epoch_date_downloaded": 1648339200,
- "epoch_date_modified": 1648339200,
- "epoch_date_submitted": 1648339200,
- "flag": null,
- "report_number": 1550,
- "source_domain": "wired.com",
- "submitters": ["Sean McGregor"],
- "title": "The Pain Was Unbearable. So Why Did Doctors Turn Her Away?",
- "url": "https://www.wired.com/story/opioid-drug-addiction-algorithm-chronic-pain/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "unknown",
- "name": "Unknown"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "unknown",
- "name": "Unknown"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "doctors",
- "name": "Doctors"
- },
- {
- "__typename": "Entity",
- "entity_id": "covid-patients",
- "name": "COVID patients"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1551],
- "vector": [
- -0.07148551940917969, 0.0682452917098999, 0.02998233400285244, -0.10976124554872513,
- 0.06317859888076782, -0.004337708931416273, 0.01976141892373562, 0.09372224658727646,
- 0.08579173684120178, -0.13878978788852692, 0.005447190720587969, 0.027225172147154808,
- 0.03748322278261185, -0.12799973785877228, -0.004013596568256617, -0.0994194820523262,
- -0.11022020876407623, -0.06313564628362656, -0.030113497748970985, -0.1952408105134964,
- -0.08409658819437027, -0.006863882765173912, 0.002430082531645894, 0.11314782500267029,
- 0.01975572109222412, 0.04505768045783043, 0.15179215371608734, 0.1109556034207344,
- -0.03374705836176872, 0.05628959462046623, -0.05446203425526619, -0.14688996970653534,
- 0.1334245353937149, 0.010517959482967854, 0.053814347833395004, 0.11983340233564377,
- -0.04156317189335823, -0.032382525503635406, 0.06527184695005417, -0.0373297855257988,
- -0.023519881069660187, 0.3384721577167511, 0.004259306006133556, -0.009956452995538712,
- 0.02860632725059986, -0.07159897685050964, -0.0013849094975739717, 0.05467182770371437,
- -0.007135247811675072, 0.00804260652512312, -0.028826646506786346, 0.07900968939065933,
- -0.0522737018764019, 0.052131537348032, -0.11921711266040802, 0.10299783200025558,
- 0.02545592561364174, -0.017850397154688835, 0.06027055159211159, -0.06829998642206192,
- 0.007316031958907843, -0.24109816551208496, 0.022718645632267, -0.11483839154243469,
- 0.12165401130914688, -0.10553231090307236, -0.010145141743123531, -0.012156876735389233,
- 0.04579125717282295, 0.07685153186321259, 0.07402444630861282, -0.012785213068127632,
- -0.043973132967948914, 0.012836073525249958, 0.00761443143710494,
- -0.0012407846515998244, 0.025813031941652298, 0.21599359810352325, -0.1314781904220581,
- 0.017820235341787338, 0.06772781908512115, -0.09637270122766495, 0.4797753393650055,
- -0.03280515968799591, 0.02208651788532734, 0.01961517706513405, 0.12571477890014648,
- 0.03515154495835304, 0.05292781814932823, 0.04914304241538048, -0.015331930480897427,
- 0.0805252268910408, -0.07090933620929718, 0.010615972802042961, 0.06729765236377716,
- 0.022988617420196533, -0.02544338069856167, 0.17212319374084473, 0.001995083410292864,
- -0.04644857347011566, -0.029733804985880852, -0.023248855024576187, 0.10390792042016983,
- 0.17074726521968842, -0.06512945145368576, -0.02038992941379547, 0.07497778534889221,
- -0.09262941032648087, 0.08455020934343338, -0.09021861106157303, 0.020912030711770058,
- -0.057937830686569214, -0.03264886885881424, -0.011470647528767586,
- 0.001178072183392942, -0.1239890456199646, 0.06758885830640793, 0.05259764567017555,
- 0.07363931089639664, 0.0623738132417202, -0.019559713080525398, 0.07654783129692078,
- 0.0974864661693573, -0.05844830349087715, -0.08806286752223969, -0.01457896362990141,
- -0.058284662663936615, -0.05380139499902725, 0.0028440996538847685, 0.06461653858423233,
- -0.0741366520524025, -0.1948426216840744, 0.002732916735112667, 0.10233286768198013,
- -0.04052858054637909, -0.032052572816610336, -0.027590371668338776,
- -0.030692726373672485, 0.0007454851293005049, -0.056026019155979156,
- 0.00727431196719408, 0.02769642509520054, 0.018921984359622, 0.04533836245536804,
- 0.07012863457202911, 0.06490223109722137, -0.03736357390880585, -0.04004613682627678,
- 0.002721801633015275, 0.01122747641056776, 0.1716071218252182, -0.23817932605743408,
- -0.04484580084681511, -0.03318630903959274, 0.007386899087578058, 0.7332819104194641,
- 0.18958589434623718, 0.20168526470661163, -0.06301116198301315, -0.04947857931256294,
- 0.22504118084907532, -0.0032990691252052784, 0.039370350539684296, -0.08474530279636383,
- -0.08716115355491638, 0.027992304414510727, -0.10230566561222076, -0.027685903012752533,
- 0.01878177747130394, 0.011259699240326881, 0.14674146473407745, 0.017281312495470047,
- 0.10140754282474518, 0.04995492845773697, -0.08243464678525925, -0.010661082342267036,
- 0.1337365359067917, 0.03669647127389908, -0.1077757179737091, 0.0003584708902053535,
- 0.042039189487695694, 0.06675509363412857, -0.08119982481002808, 0.01506685558706522,
- -0.11162380874156952, 0.08685529232025146, 0.002479532966390252, 0.06336933374404907,
- -0.03153059259057045, 0.04964738339185715, 0.014339013956487179, 0.05088186264038086,
- 0.007078074850142002, -0.10836070030927658, -0.05864406004548073, 0.09127070754766464,
- -0.03722476214170456, -0.05549141392111778, 0.047858547419309616, -0.13625897467136383,
- -0.003736010519787669, 0.10513205081224442, 0.25925305485725403, -0.12426410615444183,
- 0.05954527109861374, -0.030230673030018806, -0.04807545989751816, 0.055616267025470734,
- 0.0237923301756382, -0.00010516858310438693, -0.0572289414703846, 0.11570955067873001,
- 0.07487957924604416, 0.064308300614357, 0.12175199389457703, -0.006368922535330057,
- 0.05246511846780777, 0.054629433900117874, 0.05550756677985191, -0.019890541210770607,
- 0.07369379699230194, 0.10103331506252289, -0.036843836307525635, -0.088325135409832,
- 0.03194355219602585, 0.017679361626505852, 0.03636480122804642, 0.034498222172260284,
- 0.03812819719314575, -0.041484713554382324, -0.08915991336107254, 0.10762254148721695,
- 0.08805487304925919, 0.031190112233161926, 0.10155892372131348, -0.03678609058260918,
- -0.0380554273724556, -0.03612562641501427, -0.011426173150539398, 0.0351148322224617,
- -0.01704196073114872, 0.10879843682050705, 0.14090590178966522, 0.1350497454404831,
- -0.014403671026229858, 0.028043892234563828, 0.07795984297990799, 0.068468376994133,
- -0.060562849044799805, 0.037640299648046494, -0.031232954934239388,
- -0.06649606674909592, -0.03749581798911095, -0.019005874171853065,
- 0.0028397704008966684, -0.014763022772967815, -0.028608882799744606,
- -0.044259775429964066, -0.1342436522245407, -0.0813019797205925, -0.08603604882955551,
- -0.07012102007865906, 0.04418468847870827, 0.06716786324977875, -0.05621730536222458,
- -0.08520771563053131, -0.1257360279560089, -0.029418302699923515, 0.09258757531642914,
- 0.035466402769088745, -0.057701025158166885, -0.15067854523658752, 0.058446820825338364,
- -0.0015508574433624744, 0.05887962132692337, -0.0481577105820179, 0.023410648107528687,
- 0.03471257910132408, -0.040609732270240784, 0.015181501396000385, -0.01367045845836401,
- -0.07623795419931412, -0.07832120358943939, -0.1027522161602974, -0.013982322998344898,
- -0.07484721392393112, 0.025503430515527725, -0.03922118991613388, 0.03381289914250374,
- 0.05460590124130249, 0.05840485170483589, -0.06351040303707123, -0.0628887489438057,
- 0.0335276834666729, 0.010319393128156662, -0.009578919038176537, 0.13088536262512207,
- -0.06002524495124817, 0.06380809098482132, 0.039670657366514206, -0.07839665561914444,
- -0.05551648885011673, 0.04147763550281525, -0.025370335206389427, 0.03562553599476814,
- -0.04677310958504677, -0.006539708469063044, -0.04804221913218498, 0.001395154045894742,
- 0.06691424548625946, -0.04544425010681152, -0.09548600018024445, -0.0710332989692688,
- 0.15520721673965454, -0.009499257430434227, -0.013894005678594112,
- -0.008231873624026775, 0.002745377365499735, 0.07497578859329224, 0.009953108616173267,
- 0.01339196227490902, 0.06126445531845093, 0.09319227933883667, -0.028703242540359497,
- 0.04313960298895836, 0.11146412789821625, -0.07020808756351471, 0.04216117039322853,
- 0.06748180836439133, 0.4914170205593109, -0.24152271449565887, 0.08471976965665817,
- 0.10947547107934952, 0.026729172095656395, 0.042841631919145584, -0.0961126983165741,
- 0.07489795982837677, 0.0843096598982811, 0.11440987139940262, 0.1584334820508957,
- -0.06433316320180893, -0.010262017138302326, -0.13846226036548615, 0.11567684262990952,
- -0.03144598752260208, 0.06769952178001404, -0.04303017631173134, -0.13774451613426208,
- -0.013746469281613827, 0.04532598331570625, -0.0035434653982520103,
- 0.007945694029331207, -0.003741940949112177, -0.0840168222784996, -0.03210093826055527,
- -0.025012077763676643, -0.010118380188941956, 0.005590818356722593, 0.10654542595148087,
- -0.07294563204050064, 0.02482754923403263, 0.03632945939898491, 0.01937716268002987,
- -0.19006696343421936, 0.06598246842622757, -0.10204378515481949, -0.1278214156627655,
- 0.07528144121170044, -0.02075972408056259, 0.09992235898971558, 0.015755407512187958,
- -0.003307249629870057, 0.07643558830022812, 0.04201261326670647, -0.05127694085240364,
- 0.037075288593769073, 0.11097739636898041, 0.017498234286904335, 0.04041612148284912,
- 0.15863806009292603, -0.06576751917600632, -0.02321591041982174, -0.14037162065505981,
- 0.04982782155275345, 0.23634128272533417, -0.01958734542131424, 0.03482898324728012,
- 0.019076354801654816, -0.005968926008790731, 0.03219299018383026, -0.039817795157432556,
- -0.0920938029885292, -0.029978126287460327, -0.023937363177537918, 0.05530889332294464,
- 0.01850271038711071, -0.017797475680708885, -0.08118510246276855, -0.03739314153790474,
- -0.04586263746023178, -0.0073935831896960735, 0.10811392962932587, -0.10237811505794525,
- 0.03649959713220596, 0.006978618446737528, -0.0029361422639340162, 0.09387526661157608,
- -0.06410085409879684, 0.012891242280602455, -0.07471148669719696, 0.026737580075860023,
- 0.07101749628782272, 0.031728606671094894, -0.047421347349882126, 0.13175247609615326,
- -0.12964630126953125, 0.11119238287210464, -0.02201666869223118, -0.06644110381603241,
- 0.028630642220377922, -0.025599200278520584, 0.006441453937441111, 0.06310301274061203,
- -0.05178195610642433, 0.06993485242128372, -0.04922681674361229, -0.04651924595236778,
- -0.11825936287641525, -0.11321957409381866, -0.052346330136060715, -0.1034761369228363,
- 0.003225669264793396, -0.174139142036438, -0.0059706708416342735, -0.03501390293240547,
- -0.04974183067679405, -0.016743803396821022, 0.060806386172771454, 0.04956637695431709,
- -0.17144112288951874, -0.007013548165559769, -0.007204959634691477, 0.04717810079455376,
- -0.01492824126034975, -0.017138399183750153, 0.0037832907401025295, 0.05921484902501106,
- 0.034630581736564636, 0.03415130823850632, -0.006969964597374201, -0.10236309468746185,
- 0.07983389496803284, -0.08981336653232574, -0.41694962978363037, 0.03546183928847313,
- 0.02237577550113201, 0.003079029731452465, -0.027245137840509415, -0.038727883249521255,
- 0.08400336652994156, -0.022132601588964462, -0.03297717496752739, 0.11933355033397675,
- -0.07140185683965683, -0.01213766448199749, -0.0172346830368042, -0.09095866233110428,
- -0.06163087114691734, -0.03122558631002903, -0.09263163805007935, 0.06869480013847351,
- 0.010913423262536526, -0.07552352547645569, -0.09534575045108795, 0.052802082151174545,
- 0.04436264932155609, -0.021071380004286766, 0.02357509173452854, 0.018204819411039352,
- -0.03142005205154419, -0.0505460686981678, 0.00457877479493618, 0.006682273931801319,
- 0.08803021907806396, -0.08165950328111649, 0.02707795612514019, 0.007917648181319237,
- -0.004811419639736414, 0.12610244750976562, 0.04259689152240753, 0.041254039853811264,
- -0.10656186193227768, 0.08073092997074127, 0.10250412672758102, 0.17981095612049103,
- -0.030132289975881577, 0.05026866868138313, 0.019446391612291336, 0.20055551826953888,
- 0.07174281030893326, 0.016540396958589554, -0.02190685272216797, -0.008356067351996899,
- 0.029547637328505516, 0.00009381157724419609, 0.11290405690670013, -0.08214595168828964,
- -0.024078723043203354, -0.03972846642136574, 0.007283010520040989, 0.011888944543898106,
- 0.05964495241641998, 0.2002372443675995, 0.04748612642288208, 0.0124247120693326,
- 0.0023850705474615097, -0.06914535909891129, 0.011936266906559467, -0.05857337638735771,
- -0.16207453608512878, -0.019220393151044846, 0.0009703020914457738,
- 0.007329543121159077, -0.01776295155286789, -0.15517862141132355, 0.039617571979761124,
- -0.0251166932284832, -0.012831433676183224, 0.12431526184082031, -0.029849061742424965,
- -0.00013955477334093302, -0.04153713956475258, 0.17041316628456116, 0.10723679512739182,
- 0.03634000942111015, 0.07185706496238708, 0.09587569534778595, 0.04731357842683792,
- 0.06803794205188751, -0.03125763311982155, -0.13463902473449707, 0.054391901940107346,
- 0.15870510041713715, -0.07871830463409424, 0.11796088516712189, 0.039385855197906494,
- -0.1169741228222847, -0.10853753238916397, 0.024517003446817398, -0.027162179350852966,
- 0.029466161504387856, -0.48334887623786926, -0.062194813042879105, 0.15548717975616455,
- 0.008238493464887142, 0.022519564256072044, 0.06866554915904999, -0.004893412813544273,
- -0.049113545566797256, -0.07189842313528061, -0.15822039544582367, 0.16011366248130798,
- 0.00323614664375782, 0.06460058689117432, -0.1307809054851532, 0.04519950971007347,
- 0.06083449348807335, -0.07575936615467072, -0.016545655205845833, 0.12101701647043228,
- -0.35668420791625977, -0.013882458209991455, -0.011713000014424324, 0.0938694104552269,
- -0.01842067763209343, 0.08469828218221664, 0.10330520570278168, -0.05436043068766594,
- 0.07018283754587173, 0.025888847187161446, -0.059604812413454056, 0.0043970681726932526,
- -0.05451524257659912, -0.029994428157806396, 0.14477814733982086, 0.09592732787132263,
- -0.01833721250295639, -0.06621070206165314, 12.296212196350098, 0.06829001754522324,
- 0.0748399943113327, -0.13740867376327515, -0.050657667219638824, -0.007558731362223625,
- 0.03346695378422737, -0.17179663479328156, 0.003250118112191558, 0.1395382434129715,
- -0.05200962349772453, -0.07231033593416214, -0.002011168748140335, -0.14492285251617432,
- 0.05288266763091087, -0.06561300903558731, -0.08988790959119797, -0.025750253349542618,
- 0.04223426431417465, -0.00412265257909894, -0.02984089031815529, -0.006571384612470865,
- 0.0330781564116478, 0.03271201252937317, -0.02816636674106121, 0.028354918584227562,
- 0.05253375321626663, -0.03485836088657379, 0.022231876850128174, -0.01524630282074213,
- -0.012501204386353493, -0.014929472468793392, 0.02446737512946129, -0.05195115506649017,
- 0.03824041038751602, 0.05690256506204605, 0.08230194449424744, 0.045259736478328705,
- 0.05673918128013611, 0.1167384535074234, -0.009923744015395641, 0.04254009574651718,
- 0.03868640586733818, 0.03542095422744751, 0.08275185525417328, 0.06965229660272598,
- 0.05506718158721924, 0.1061086505651474, -0.004972800146788359, 0.05061754211783409,
- 0.10325600951910019, -0.027774397283792496, 0.18188226222991943, -0.03217114135622978,
- 0.016392674297094345, 0.08388421684503555, -0.031582169234752655, -0.0925188660621643,
- 0.07501072436571121, -0.026777034625411034, -0.05332569405436516, 0.07763589173555374,
- 0.00027214744477532804, 0.12299022823572159, -0.009973996318876743, 0.1009465754032135,
- 0.07197822630405426, 0.08843688666820526, -0.12651412189006805, -0.08509811758995056,
- -0.02875683084130287, -0.1327120065689087, -0.09464574605226517, 0.09706776589155197,
- 0.13944905996322632, -0.04727949947118759, -0.02660387009382248, -0.00611796835437417,
- 0.06917181611061096, -0.11162721365690231, -0.016613313928246498, 0.060448985546827316,
- 0.008433012291789055, 0.0443117655813694, 0.04130582883954048, 0.04529554396867752,
- 0.08549215644598007, 0.0680944174528122, -0.0056516677141189575, -0.06013496592640877,
- -0.08811001479625702, -0.009046845138072968, -0.05867570638656616, -0.08127167075872421,
- 0.018930038437247276, -0.08645682781934738, 0.04686369001865387, -0.17265044152736664,
- 0.09844256192445755, 0.059505634009838104, -0.12955684959888458, -0.07402206212282181,
- -0.040662895888090134, 0.07047879695892334, -0.02095833607017994, 0.07908487319946289,
- -0.013526166789233685, -0.05058636888861656, 0.019858339801430702, 0.07809842377901077,
- -0.007616798859089613, 0.1539970487356186, 0.13675791025161743, -0.09296395629644394,
- -0.009521286934614182, 0.038139235228300095, -0.025511860847473145,
- -0.004181215539574623, 0.1325165331363678, 0.06980950385332108, -0.07585640251636505,
- -0.09412803500890732, -0.05906732380390167, -0.07943136990070343, -0.0632624551653862,
- -0.0837140679359436, 0.08194340765476227, 0.0632479190826416, -0.06658302247524261,
- -0.014163714833557606, 0.00006339765241136774, 0.04830302298069, 0.07391130924224854,
- -0.0047511933371424675, 0.06939023733139038, -0.10748331248760223,
- -0.037681978195905685, 0.07901651412248611, 0.018675735220313072, -0.026283780112862587,
- -0.10999894887208939, -0.04790352284908295, -0.09749841690063477, -0.08724278211593628,
- 0.05805303528904915, 0.12384294718503952, 0.0022661169059574604, 0.019277045503258705,
- 0.043554577976465225, -0.09110517054796219, -0.10722067207098007, 0.08078470826148987,
- 0.040203798562288284, 0.008861354552209377, 0.058612436056137085, -0.04130760207772255,
- -0.08262299001216888, 0.09086290746927261, -0.06649482250213623, 0.02243526093661785,
- 0.04805442690849304, 0.1023123487830162, 0.07869239151477814, 0.14472466707229614,
- 0.11448189616203308, 0.09381289035081863, 0.04147780314087868, 0.009179872460663319,
- -0.0004657954559661448, -0.015147571451961994, 0.04669829457998276,
- -0.05608689785003662, -0.03129248321056366, -0.05634325370192528, 0.054613206535577774,
- 0.07393952459096909, -0.03757154941558838, -0.14463724195957184, -0.024473877623677254,
- -0.07547420263290405
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 173,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 101,
- "similarity": 0.9973910450935364
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 54,
- "similarity": 0.9973469972610474
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 11,
- "similarity": 0.9973324537277222
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["William Douglas Heaven"],
- "epoch_date_downloaded": 1648598400,
- "epoch_date_modified": 1648598400,
- "epoch_date_submitted": 1648598400,
- "flag": null,
- "report_number": 1551,
- "source_domain": "technologyreview.com",
- "submitters": ["Anonymous"],
- "title": "Hundreds of AI tools have been built to catch covid. None of them helped.",
- "url": "https://www.technologyreview.com/2021/07/30/1030329/machine-learning-ai-failed-covid-hospital-diagnosis-pandemic/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "unknown",
- "name": "Unknown"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "unknown",
- "name": "Unknown"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "linkedin-users",
- "name": "LinkedIn users"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1599, 1595, 1585, 1552],
- "vector": [
- -0.07773495465517044, 0.07525186240673065, 0.003888322738930583, -0.11371291428804398,
- 0.11607358604669571, -0.03540758788585663, 0.007157067768275738, 0.07018153369426727,
- 0.06388071924448013, -0.1431078463792801, -0.03153463080525398, 0.0468594916164875,
- 0.017664175480604172, -0.04534084349870682, 0.031731657683849335, -0.06628955900669098,
- -0.09514965862035751, -0.020815085619688034, -0.011228266172111034,
- -0.15753155946731567, -0.0753883495926857, -0.006002361420542002, -0.01967288739979267,
- 0.10863921046257019, -0.03245820105075836, 0.005374541971832514, 0.08358173817396164,
- 0.09874861687421799, -0.07095412909984589, 0.0529986135661602, -0.03443283215165138,
- -0.04307561740279198, 0.13503716886043549, 0.0061119357123970985, 0.002802644157782197,
- 0.0791366696357727, 0.026469383388757706, -0.011945233680307865, -0.032336898148059845,
- 0.023802440613508224, 0.02687349170446396, 0.2328028529882431, -0.0007639890536665916,
- 0.006627510767430067, 0.038466814905405045, -0.012197067961096764,
- -0.014978458173573017, 0.036004163324832916, -0.008051116019487381, 0.01778324879705906,
- -0.009603564627468586, 0.03342549875378609, -0.06507547199726105, 0.025777921080589294,
- -0.10524091869592667, 0.04152496159076691, 0.026940157637000084, -0.04700329154729843,
- 0.04755894094705582, -0.07384158670902252, -0.027089707553386688, -0.22929638624191284,
- -0.02222900651395321, -0.06412282586097717, 0.10865773260593414, -0.07215055078268051,
- -0.021563947200775146, -0.008207416161894798, 0.011776801198720932, 0.03748144954442978,
- 0.06799335777759552, -0.04546002298593521, 0.004561798181384802, 0.05591616779565811,
- 0.010042194277048111, 0.006030392367392778, 0.011277965269982815, 0.17835968732833862,
- -0.08777553588151932, 0.018902594223618507, 0.10674352943897247, -0.11228077113628387,
- 0.4139302372932434, 0.026022396981716156, -0.011742223054170609, 0.04410908371210098,
- 0.07752134650945663, 0.02573084831237793, 0.06410711258649826, 0.0456826351583004,
- -0.009288747794926167, 0.048399992287158966, -0.07363510876893997, 0.010506195947527885,
- 0.07072071731090546, 0.04470133036375046, -0.031777188181877136, 0.0073036327958106995,
- -0.005515300203114748, -0.027578063309192657, 0.00600697984918952,
- -0.024907782673835754, 0.12550956010818481, 0.05467758700251579, -0.04350012540817261,
- 0.021438458934426308, 0.05502801761031151, -0.05255699157714844, 0.07834523916244507,
- -0.047373734414577484, 0.02907375991344452, -0.03783410042524338, 0.05352743715047836,
- 0.0038294370751827955, 0.03704380989074707, -0.03968890383839607, 0.020393183454871178,
- 0.04780407249927521, 0.07354134321212769, 0.06080227717757225, 0.01956920512020588,
- 0.06610603630542755, 0.07421932369470596, -0.09519343823194504, -0.05347133055329323,
- 0.0025018788874149323, -0.06188509240746498, -0.03151348978281021, -0.03526417165994644,
- 0.032083239406347275, -0.05602925643324852, -0.1933649331331253, -0.004043009597808123,
- 0.05574656277894974, -0.03193003684282303, -0.05316838622093201, 0.03256645053625107,
- -0.09001917392015457, 0.017361678183078766, -0.031553179025650024, -0.05998026579618454,
- 0.08151499927043915, 0.027603019028902054, 0.04944661259651184, 0.11754567921161652,
- 0.06385264545679092, -0.024104340001940727, -0.05246390402317047, -0.013892644084990025,
- -0.06947536021471024, 0.09306267648935318, -0.09928036481142044, -0.0451541431248188,
- -0.029044661670923233, -0.037838228046894073, 0.7097662687301636, 0.1302298754453659,
- 0.15913332998752594, 0.03249244764447212, -0.06235899776220322, 0.15298078954219818,
- -0.008354175835847855, 0.09605593979358673, -0.04575961083173752, -0.058565448969602585,
- 0.052296463400125504, -0.07833284139633179, -0.036492206156253815, 0.03509676828980446,
- 0.03279073163866997, 0.09584154188632965, 0.016616424545645714, 0.09035207331180573,
- 0.032239772379398346, -0.10140169411897659, -0.015281758271157742, 0.06348510086536407,
- 0.006781503092497587, -0.1117459163069725, -0.03699721023440361, 0.08383023738861084,
- 0.10221715271472931, -0.09909579902887344, 0.009156743064522743, -0.05834512040019035,
- 0.07143662869930267, -0.035294562578201294, 0.06375482678413391, -0.005073375999927521,
- 0.022232623770833015, 0.044376883655786514, -0.004131464287638664, -0.00544704357162118,
- -0.1099429503083229, -0.038160860538482666, 0.05238645151257515, -0.019834287464618683,
- -0.045907169580459595, 0.08294767886400223, -0.08410005271434784, 0.05344086512923241,
- -0.016953475773334503, 0.1490153819322586, -0.1179669126868248, 0.02665746584534645,
- -0.004998255521059036, 0.001343450858257711, 0.05283459275960922, 0.007672539446502924,
- -0.05868277698755264, -0.06668690592050552, 0.06364374607801437, 0.012390481308102608,
- 0.031594518572092056, 0.01024707593023777, -0.027300264686346054, 0.05582172051072121,
- 0.06944853067398071, -0.024599043652415276, -0.025200795382261276, 0.08556868880987167,
- 0.036835648119449615, -0.04624591022729874, -0.00839996337890625, 0.023813115432858467,
- -0.001421197084710002, 0.013165886513888836, -0.006757832132279873, 0.04909329488873482,
- -0.011251850053668022, -0.052852850407361984, 0.0802830383181572, 0.012511873617768288,
- 0.01764421910047531, 0.07605308294296265, -0.07350371032953262, -0.04809955880045891,
- -0.04443942755460739, 0.0013157149078324437, 0.02491084299981594,
- 0.000028815236873924732, 0.09012298285961151, 0.08932521194219589, 0.09205976873636246,
- 0.04053955897688866, 0.055596545338630676, 0.08844509720802307, 0.03453349322080612,
- -0.020680662244558334, 0.08200124651193619, -0.019573213532567024,
- -0.037206172943115234, -0.03279753029346466, 0.019981510937213898, 0.04363349825143814,
- 0.025351321324706078, -0.06845159083604813, -0.03805026784539223, -0.04210435599088669,
- -0.011216755956411362, -0.09085340797901154, -0.061814431101083755, 0.05011194199323654,
- 0.0522630475461483, -0.06714488565921783, -0.07733390480279922, -0.07238905131816864,
- 0.00879642739892006, 0.0735757127404213, -0.01722075045108795, -0.023837696760892868,
- -0.13885265588760376, 0.04096042364835739, -0.020066360011696815, 0.06331824511289597,
- 0.008360570296645164, 0.01727473922073841, 0.015250371769070625, -0.07969115674495697,
- 0.05324315279722214, 0.022087756544351578, -0.014930851757526398, -0.010736959055066109,
- -0.060168251395225525, -0.07692000269889832, -0.018796131014823914,
- -0.005051134154200554, -0.048164062201976776, 0.02466842345893383, 0.04062817618250847,
- 0.049515366554260254, -0.020822672173380852, -0.05852407589554787, 0.05702182650566101,
- -0.03945979103446007, -0.040703512728214264, 0.07918310165405273, -0.04145624488592148,
- 0.03463900834321976, 0.007849443703889847, -0.1081845834851265, -0.026854757219552994,
- 0.0043541789054870605, -0.03550996258854866, 0.0654301568865776, 0.002967352978885174,
- 0.0017727084923535585, -0.053894005715847015, -0.036220483481884, 0.049160994589328766,
- -0.06809298694133759, -0.0797930508852005, -0.10811423510313034, 0.13800787925720215,
- -0.021526657044887543, 0.016637630760669708, 0.018173882737755775, -0.04434956610202789,
- 0.06288141012191772, -0.059691935777664185, -0.009152734652161598, 0.05658101662993431,
- 0.03374447673559189, 0.015174277126789093, 0.013100305572152138, 0.04144730791449547,
- -0.028323011472821236, 0.018492693081498146, 0.05563483014702797, 0.46183449029922485,
- -0.19646015763282776, 0.08506295830011368, 0.08665948361158371, 0.03049394115805626,
- 0.05185713618993759, -0.030228391289711, 0.0801500529050827, 0.10604647547006607,
- 0.12060386687517166, 0.10726793855428696, -0.05232363939285278, -0.005397052504122257,
- -0.0875643715262413, 0.09445264935493469, 0.01990457996726036, 0.027333058416843414,
- -0.028768962249159813, -0.049651745706796646, 0.006363458000123501, 0.04348102957010269,
- -0.04298632591962814, -0.00716797448694706, -0.00867950078099966, -0.026861216872930527,
- -0.00453070318326354, 0.023711150512099266, 0.05211074650287628, -0.020744813606142998,
- 0.0532953143119812, -0.030632076784968376, 0.025372978299856186, 0.04698556289076805,
- 0.024851622059941292, -0.1517220139503479, 0.020702512934803963, -0.09322566539049149,
- -0.091770701110363, 0.0578734390437603, -0.0037622200325131416, 0.03489895164966583,
- 0.05074205622076988, -0.013962944969534874, 0.048279836773872375, -0.026778893545269966,
- -0.0468740314245224, 0.03479980304837227, 0.0863100066781044, -0.014367250725626945,
- 0.11592819541692734, 0.17621742188930511, -0.043294601142406464, -0.03578520193696022,
- -0.08634884655475616, 0.0674353837966919, 0.15410777926445007, 0.003369429148733616,
- 0.016045449301600456, 0.03111477568745613, -0.059271324425935745, 0.01158467959612608,
- -0.04508233442902565, -0.08325200527906418, -0.04879850149154663, -0.019549816846847534,
- 0.07922258228063583, 0.043173693120479584, -0.005465501919388771, -0.18189159035682678,
- -0.029667897149920464, -0.04796862602233887, 0.03465896472334862, 0.1213744506239891,
- -0.07539787143468857, 0.04868265241384506, -0.028481461107730865, -0.046462174504995346,
- 0.023985743522644043, -0.09797631204128265, 0.014471514150500298,
- -0.0013027042150497437, 0.011301660910248756, 0.04795591160655022, 0.03726646676659584,
- -0.07282648980617523, 0.09153197705745697, -0.09647756814956665, 0.04760407656431198,
- 0.01215980015695095, -0.016087649390101433, -0.012212996371090412, -0.04126548022031784,
- 0.046849481761455536, 0.0013908140826970339, -0.04852460324764252,
- -0.011810951866209507, -0.03227073326706886, -0.04376518353819847, -0.0741952657699585,
- -0.044903457164764404, -0.011609344743192196, -0.06781667470932007, 0.05534733086824417,
- -0.08039344847202301, -0.017072677612304688, -0.06112632527947426, -0.04155011102557182,
- -0.007882760837674141, 0.027672119438648224, 0.01829761266708374, -0.15206225216388702,
- -0.012710369192063808, 0.0040950290858745575, 0.036582596600055695,
- -0.026391111314296722, -0.0799318253993988, 0.01965344324707985, 0.09929193556308746,
- 0.036995384842157364, -0.05166713148355484, 0.024618521332740784, -0.05820566415786743,
- 0.08206740021705627, -0.12599819898605347, -0.5066480040550232, 0.0742407739162445,
- 0.004558694548904896, 0.04278150945901871, 0.004737608600407839, -0.034750014543533325,
- 0.04932812601327896, -0.02014978416264057, -0.05772527679800987, 0.08446276932954788,
- -0.05486121028661728, -0.005522320978343487, -0.019101541489362717,
- -0.04524654150009155, -0.018746623769402504, -0.03197629004716873, -0.05960468575358391,
- 0.022806981578469276, -0.025058260187506676, -0.05640846863389015, -0.09872773289680481,
- 0.02758169174194336, 0.0031690895557403564, 0.0321812778711319, 0.005575296003371477,
- 0.012174928560853004, -0.08506933599710464, -0.048893194645643234, 0.05945926532149315,
- 0.06813280284404755, 0.035240594297647476, -0.06973366439342499, 0.0026473579928278923,
- 0.08250812441110611, 0.013533029705286026, 0.14285536110401154, 0.015300015918910503,
- 0.015518492087721825, -0.08187109231948853, 0.07416746765375137, 0.07710020244121552,
- 0.18603794276714325, 0.011053497903048992, 0.02844100072979927, 0.008536083623766899,
- 0.1368037760257721, 0.05806051194667816, 0.025460785254836082, -0.041165269911289215,
- 0.0012146546505391598, 0.02922705002129078, -0.021922167390584946, 0.06412407010793686,
- -0.09306862950325012, -0.035362426191568375, -0.02778678759932518,
- 0.0003996635787189007, -0.04614173248410225, -0.023784570395946503, 0.27999788522720337,
- 0.015189586207270622, 0.02149467170238495, 0.034594085067510605, -0.04638969153165817,
- 0.05888039246201515, -0.08553842455148697, -0.09420210868120193, 0.0040098559111356735,
- -0.009381331503391266, 0.011304082348942757, -0.04892795905470848, -0.12522323429584503,
- -0.020477786660194397, 0.0007757407147437334, -0.019060935825109482,
- 0.12204775214195251, -0.021501122042536736, 0.029534857720136642, -0.04670754820108414,
- 0.12690520286560059, 0.031203893944621086, 0.029506664723157883, 0.08424469083547592,
- 0.10743588209152222, 0.008683872409164906, 0.0067655909806489944, -0.025731857866048813,
- -0.06299686431884766, -0.02653869427740574, 0.1539924591779709, -0.03634215518832207,
- 0.12080156803131104, 0.05731341987848282, -0.04053673520684242, -0.040819503366947174,
- 0.026280343532562256, -0.011248522438108921, 0.04051715135574341, -0.4771672785282135,
- -0.05102287977933884, 0.10487480461597443, 0.021833185106515884, -0.010099124163389206,
- 0.07610511779785156, 0.025452613830566406, -0.07509005069732666, -0.04750020056962967,
- -0.08256182074546814, 0.07981345802545547, -0.012751488015055656, 0.08183754235506058,
- -0.09483957290649414, 0.005593349691480398, 0.11274605989456177, -0.03665047138929367,
- -0.009515577927231789, 0.05056343600153923, -0.19438745081424713, -0.006616029888391495,
- -0.02015613205730915, 0.1409776508808136, 0.01240635197609663, 0.03508170321583748,
- 0.0835026279091835, -0.043228838592767715, 0.028824491426348686, 0.05758899822831154,
- -0.00444071926176548, 0.06514984369277954, 0.0014648493379354477, -0.01501335110515356,
- 0.09454822540283203, 0.12013726681470871, 0.07157163321971893, -0.06493052840232849,
- 11.969457626342773, 0.066116563975811, 0.048566773533821106, -0.10829170048236847,
- -0.02167361229658127, -0.02991003915667534, 0.024828534573316574, -0.10892480611801147,
- 0.06296667456626892, 0.11647918075323105, -0.00711084296926856, -0.021035468205809593,
- -0.06020040437579155, -0.10379902273416519, 0.019206088036298752, -0.04992552474141121,
- -0.03610141947865486, -0.049197472631931305, 0.03511887788772583, -0.03636535629630089,
- -0.04257018119096756, 0.054009221494197845, 0.0689951702952385, 0.006018997635692358,
- -0.048000872135162354, 0.030983228236436844, -0.0065203942358493805,
- -0.0026868083514273167, 0.006578951142728329, 0.036480266600847244,
- 0.021846260875463486, 0.04407375678420067, 0.09120994061231613, 0.006608553230762482,
- 0.03653934597969055, 0.056654173880815506, 0.04831807687878609, 0.0417729914188385,
- 0.026307016611099243, 0.0785834863781929, 0.005390690639615059, -0.000828904565423727,
- -0.014151965267956257, 0.040550921112298965, 0.050959065556526184, 0.04418852925300598,
- 0.01926943100988865, 0.14264154434204102, 0.02454148791730404, 0.10250624269247055,
- 0.08890283107757568, -0.014877596870064735, 0.0831749215722084, 0.024059340357780457,
- -0.0069824885576963425, 0.09206903725862503, 0.010787883773446083, -0.10780970007181168,
- 0.09956198185682297, 0.04187900200486183, -0.04765646159648895, 0.10320188105106354,
- 0.03135073930025101, 0.13297529518604279, -0.03995446860790253, 0.06965632736682892,
- 0.08168762922286987, 0.05369304120540619, -0.12089914083480835, -0.12003322690725327,
- 0.04929964989423752, -0.11456108838319778, -0.09173253178596497, 0.03524376079440117,
- 0.10065960139036179, -0.05388277396559715, 0.0086263632401824, -0.04642978310585022,
- 0.034567419439554214, 0.01386322919279337, 0.00004170004103798419, 0.06776610761880875,
- -0.07431469857692719, 0.03802769258618355, 0.033869419246912, 0.022481931373476982,
- 0.10447412729263306, 0.09085778892040253, -0.022259315475821495, -0.0868401974439621,
- -0.07064557075500488, 0.10503752529621124, -0.010187184438109398, -0.04976378381252289,
- -0.009888138622045517, -0.07962428033351898, 0.03255179524421692, -0.1667778640985489,
- 0.08036613464355469, 0.12127886712551117, -0.10748281329870224, -0.004547041840851307,
- -0.05690068379044533, 0.06379500031471252, 0.0016737852711230516, 0.04576782137155533,
- -0.04225291684269905, 0.015454630367457867, 0.01225345116108656, 0.027845270931720734,
- -0.0259788129478693, 0.05441956967115402, 0.09804078191518784, -0.06302373111248016,
- -0.0012275618501007557, 0.04480338096618652, -0.03654451668262482,
- -0.039388857781887054, 0.05786091834306717, 0.02411692589521408, -0.09347839653491974,
- -0.030525803565979004, -0.027404848486185074, -0.01699380949139595,
- -0.0011931622866541147, -0.05326036363840103, -0.002521564718335867,
- 0.03315065801143646, -0.06302229315042496, -0.005785858258605003, 0.046761780977249146,
- 0.05721037834882736, 0.09666803479194641, 0.008444704115390778, 0.05603677034378052,
- -0.054160624742507935, -0.03238707035779953, 0.05127621069550514, 0.06318280845880508,
- 0.08776681125164032, -0.062252551317214966, -0.017603028565645218,
- -0.045371733605861664, -0.11169808357954025, 0.04006557911634445, 0.0764770358800888,
- 0.03383030742406845, 0.043816231191158295, 0.02492458000779152, -0.09987090528011322,
- -0.04294231906533241, 0.12377931922674179, 0.024042274802923203, 0.00275489897467196,
- 0.03957511484622955, -0.05333239585161209, -0.04900621250271797, 0.08945059031248093,
- -0.06188042461872101, -0.0202371496707201, 0.009549672715365887, -0.0478246733546257,
- 0.09181611984968185, 0.10299582779407501, 0.052082277834415436, 0.009833242744207382,
- 0.011112850159406662, 0.022841475903987885, 0.011979742906987667, 0.012302766554057598,
- 0.008268090896308422, -0.008203789591789246, -0.11660136282444, -0.08394848555326462,
- 0.0074737598188221455, 0.09318578243255615, 0.062026236206293106, -0.1307588368654251,
- 0.002581492532044649, -0.030213840305805206
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 174,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 4,
- "similarity": 0.9971973896026611
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 17,
- "similarity": 0.9970888495445251
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 54,
- "similarity": 0.9970698356628418
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Mack DeGeurin"],
- "epoch_date_downloaded": 1652659200,
- "epoch_date_modified": 1652832000,
- "epoch_date_submitted": 1652659200,
- "flag": null,
- "report_number": 1599,
- "source_domain": "gizmodo.com",
- "submitters": ["AIAAIC"],
- "title": "Move Over Global Disinformation Campaigns, Deepfakes Have a New Role: Corporate Spamming",
- "url": "https://gizmodo.com/move-over-global-disinformation-campaigns-deepfakes-ha-1848716481"
- },
- {
- "__typename": "Report",
- "authors": ["Viraj Gaur"],
- "epoch_date_downloaded": 1652659200,
- "epoch_date_modified": 1652832000,
- "epoch_date_submitted": 1652659200,
- "flag": null,
- "report_number": 1595,
- "source_domain": "thequint.com",
- "submitters": ["AIAAIC"],
- "title": "Deepfakes Invade LinkedIn: Delhi Firm Offers ‘Ready to Use’ AI Made Profiles",
- "url": "https://www.thequint.com/tech-and-auto/tech-news/deepfakes-invade-linkedin-delhi-firm-offers-ready-to-use-ai-made-profiles"
- },
- {
- "__typename": "Report",
- "authors": ["Leigh Mc Gowran"],
- "epoch_date_downloaded": 1652659200,
- "epoch_date_modified": 1652918400,
- "epoch_date_submitted": 1652659200,
- "flag": null,
- "report_number": 1585,
- "source_domain": "siliconrepublic.com",
- "submitters": ["AIAAIC"],
- "title": "Researchers find 1,000 LinkedIn profiles using computer-generated faces",
- "url": "https://www.siliconrepublic.com/machines/research-1000-computer-generated-images-linkedin-deepfake"
- },
- {
- "__typename": "Report",
- "authors": ["Shannon Bond"],
- "epoch_date_downloaded": 1648684800,
- "epoch_date_modified": 1648684800,
- "epoch_date_submitted": 1648684800,
- "flag": null,
- "report_number": 1552,
- "source_domain": "npr.org",
- "submitters": ["Khoa Lam"],
- "title": "That smiling LinkedIn profile face might be a computer-generated fake",
- "url": "https://www.npr.org/2022/03/27/1088140809/fake-linkedin-profiles"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "cruise",
- "name": "Cruise"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "cruise",
- "name": "Cruise"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "san-francisco-public",
- "name": "San Francisco public"
- },
- {
- "__typename": "Entity",
- "entity_id": "cruise-customers",
- "name": "Cruise customers"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1608, 1607, 1606, 1554, 1553],
- "vector": [
- -0.08043430745601654, 0.052269965410232544, 0.009098649024963379, -0.11936831474304199,
- 0.04579395428299904, 0.01629434898495674, -0.006982362829148769, 0.0441429577767849,
- 0.044312484562397, -0.14585484564304352, 0.032123662531375885, 0.074385866522789,
- 0.02697058953344822, -0.07206900417804718, 0.06949324905872345, -0.09416476637125015,
- -0.044420190155506134, -0.07726060599088669, -0.011095336638391018,
- -0.09286296367645264, -0.06304182857275009, -0.031663425266742706, 0.045167483389377594,
- 0.11390838772058487, -0.07329078018665314, 0.013433938845992088, 0.07300521433353424,
- 0.08742940425872803, -0.04459066316485405, 0.03910556435585022, -0.015113000757992268,
- -0.07549216598272324, 0.1497524231672287, 0.011080811731517315, -0.0030630759429186583,
- 0.0901421308517456, 0.008993183262646198, -0.02615366317331791, -0.06496001780033112,
- 0.019982870668172836, -0.005107126198709011, 0.18072018027305603, 0.014477578923106194,
- -0.046740345656871796, 0.05850021913647652, -0.058197617530822754, 0.0267125703394413,
- 0.049192365258932114, 0.010328334756195545, 0.02898312732577324, -0.012459561228752136,
- 0.031677573919296265, -0.04981786757707596, 0.030158912762999535, -0.1181371808052063,
- 0.0664295107126236, 0.036360301077365875, 0.0027895027305930853, 0.04269595816731453,
- -0.05308022350072861, -0.03869093582034111, -0.22035305202007294, -0.057964157313108444,
- -0.052617937326431274, 0.08422038704156876, -0.09100382775068283, -0.04090564325451851,
- 0.04300881549715996, 0.023276103660464287, 0.039808489382267, 0.05188405513763428,
- -0.04714415967464447, -0.032208267599344254, -0.035377342253923416, -0.0081091970205307,
- -0.02028738707304001, -0.005221744067966938, 0.21170315146446228, -0.143317312002182,
- -0.032458145171403885, 0.1043812483549118, -0.1356426179409027, 0.3950772285461426,
- 0.0241270549595356, -0.020197849720716476, -0.05409861356019974, 0.09994100034236908,
- 0.0030722827650606632, 0.043270695954561234, 0.045599810779094696,
- -0.007033601403236389, 0.00406887661665678, -0.05225392431020737, 0.015637224540114403,
- 0.053651124238967896, -0.003267179010435939, -0.024849040433764458,
- 0.014687958173453808, -0.006113547366112471, -0.06532600522041321, 0.012297945097088814,
- -0.05518275499343872, 0.07170013338327408, 0.039940476417541504, -0.011700473725795746,
- -0.02948479726910591, 0.11466746032238007, -0.029137078672647476, 0.05264652520418167,
- -0.07113520801067352, 0.025197261944413185, 0.05786135792732239, 0.055450379848480225,
- 0.004218976013362408, 0.04821547120809555, -0.05629589408636093, 0.0012775532668456435,
- 0.06129251793026924, 0.13056889176368713, 0.023642441257834435, -0.009484678506851196,
- 0.07077130675315857, 0.08853830397129059, -0.08696575462818146, 0.0337500274181366,
- -0.046490442007780075, -0.06258947402238846, -0.021665161475539207,
- -0.044721998274326324, 0.0328284427523613, -0.056339286267757416, -0.23050418496131897,
- 0.02021779865026474, 0.11064712703227997, 0.014185761101543903, -0.041628219187259674,
- 0.015337293967604637, -0.0826643779873848, 0.02937394008040428, -0.030909767374396324,
- -0.055820245295763016, 0.07324143499135971, 0.0331721231341362, 0.04359794035553932,
- 0.11840574443340302, 0.037029288709163666, -0.061191022396087646, -0.05171338468790054,
- -0.007103140465915203, -0.0689028725028038, 0.09276838600635529, -0.11531315743923187,
- -0.050974003970623016, 0.009802119806408882, -0.011653244495391846, 0.6755005121231079,
- 0.08045823872089386, 0.1962878704071045, 0.0049945698119699955, -0.021694352850317955,
- 0.15929874777793884, -0.0015634618466719985, 0.03528213128447533, -0.057927824556827545,
- -0.05452044680714607, 0.041280221194028854, -0.09432701766490936, -0.052946943789720535,
- 0.02946680225431919, 0.031812913715839386, 0.08289307355880737, 0.03387296199798584,
- 0.0831654965877533, -0.014802521094679832, -0.13481585681438446, -0.04274880886077881,
- 0.04507105052471161, -0.024274813011288643, -0.11671166121959686, -0.05081106349825859,
- 0.05118200182914734, 0.10995659977197647, -0.08187194168567657, -0.006837075110524893,
- -0.0488896369934082, 0.06225363165140152, -0.0021703720558434725, 0.030193421989679337,
- -0.05417051166296005, 0.022512901574373245, 0.06808917224407196, 0.04952343553304672,
- -0.030889928340911865, -0.09340514242649078, -0.024457070976495743, 0.12328384071588516,
- 0.008855589665472507, -0.03238339349627495, 0.0722881481051445, -0.0816887766122818,
- 0.05771597474813461, -0.00038131847395561635, 0.12427455186843872, -0.13345031440258026,
- 0.006225164979696274, 0.03835979476571083, -0.009611494839191437, 0.04683522507548332,
- -0.014411847107112408, -0.08270202577114105, -0.05065145343542099, 0.07725894451141357,
- 0.018614107742905617, 0.07537144422531128, 0.06923068314790726, -0.05401567742228508,
- 0.021643642336130142, 0.07758097350597382, -0.0048987227492034435,
- -0.012408810667693615, 0.050770796835422516, 0.0914098247885704, -0.024058368057012558,
- -0.029807452112436295, 0.04524749144911766, 0.011363429017364979, 0.04142140597105026,
- -0.01587684452533722, 0.07784389704465866, 0.014141124673187733, -0.04957621544599533,
- 0.01628265157341957, 0.03399785980582237, 0.039563894271850586, 0.11138391494750977,
- -0.026716643944382668, -0.06997664272785187, 0.0030802020337432623,
- -0.02490118145942688, -0.005094972439110279, -0.021930547431111336, 0.09144856035709381,
- 0.0576104037463665, 0.07088496536016464, 0.04178769141435623, 0.044679440557956696,
- 0.05780670791864395, 0.05088323354721069, 0.06607601046562195, 0.053124893456697464,
- -0.03816105052828789, -0.0631355568766594, -0.011500160209834576, -0.001940763322636485,
- 0.052092961966991425, 0.0638013631105423, -0.08800778537988663, -0.04111804440617561,
- -0.03374997153878212, -0.024108216166496277, -0.0936107486486435, -0.03864303231239319,
- -0.02062525786459446, 0.05032427981495857, -0.019691620022058487, -0.08656413853168488,
- -0.10668949782848358, 0.011024927720427513, 0.04881444573402405, -0.021155651658773422,
- -0.006481636315584183, -0.10956412553787231, 0.016082311049103737, -0.07334480434656143,
- 0.023741843178868294, 0.00928752776235342, -0.03587925061583519, -0.0076125385239720345,
- -0.05469381809234619, 0.015437401831150055, -0.008456744253635406, 0.010714104399085045,
- -0.0347367599606514, -0.047820188105106354, -0.02871520444750786, 0.0033187582157552242,
- -0.009646330028772354, -0.03482438996434212, 0.03477395325899124, 0.04755328968167305,
- 0.05743817239999771, -0.0021797046065330505, -0.029513483867049217,
- 0.058907799422740936, -0.0242726169526577, -0.02013354003429413, 0.08478009700775146,
- 0.0009787909220904112, 0.05866527557373047, -0.007471153046935797, -0.11215446889400482,
- -0.03160973638296127, 0.022372886538505554, -0.050567544996738434, 0.03974205628037453,
- -0.030487840995192528, 0.003181071951985359, -0.03615745157003403, 0.020691175013780594,
- 0.09422704577445984, -0.07042806595563889, -0.06747549772262573, -0.0828038901090622,
- 0.12488405406475067, 0.010348180308938026, -0.016187001019716263, 0.027905672788619995,
- -0.05533025786280632, 0.036336906254291534, -0.021369637921452522,
- -0.0069058663211762905, 0.017905021086335182, 0.036895688623189926,
- -0.026612449437379837, 0.02229137532413006, 0.04854973405599594, -0.026912059634923935,
- 0.026326045393943787, 0.07154746353626251, 0.4267562925815582, -0.22611859440803528,
- 0.06569285690784454, 0.08139979839324951, 0.015702752396464348, 0.07043590396642685,
- -0.01868600770831108, 0.06069381162524223, 0.07428884506225586, 0.09933757781982422,
- 0.10584434121847153, -0.018928680568933487, -0.022330429404973984, -0.06338904798030853,
- 0.08255529403686523, -0.006826132535934448, -0.021735286340117455, -0.03505415469408035,
- -0.03332989662885666, -0.03801729902625084, 0.02964688464999199, -0.06805627048015594,
- 0.0044455574825406075, 0.006553086452186108, -0.08347011357545853, 0.006801626179367304,
- 0.023664887994527817, 0.042260948568582535, -0.03590700775384903, 0.015873825177550316,
- 0.0007145813433453441, 0.06058548763394356, 0.02355554699897766, 0.04857765510678291,
- -0.1061997190117836, 0.013906063511967659, -0.06957654654979706, -0.12490858882665634,
- 0.10127399116754532, -0.025565430521965027, 0.04723123461008072, 0.04018595069646835,
- -0.03315827623009682, 0.03495844081044197, -0.0490666925907135, -0.05210196226835251,
- 0.021767213940620422, 0.038310565054416656, 0.03634124994277954, 0.11335734277963638,
- 0.1554601490497589, -0.06866441667079926, -0.056671034544706345, -0.07575777173042297,
- 0.08248771727085114, 0.08622847497463226, -0.05497952178120613, 0.006052094511687756,
- -0.0233742855489254, -0.01224803738296032, -0.02838193252682686, -0.041096560657024384,
- -0.06619885563850403, 0.017173338681459427, -0.028425654396414757, 0.06409580260515213,
- 0.0112265320494771, -0.045998137444257736, -0.2225610911846161, -0.037738729268312454,
- -0.025602329522371292, -0.00037028975202701986, 0.15331946313381195,
- -0.04101375490427017, 0.024914858862757683, 0.022606579586863518, -0.003226403845474124,
- 0.0032530701719224453, -0.06657698005437851, 0.04655017331242561, -0.07091047614812851,
- 0.06395319849252701, 0.06723541766405106, 0.06047413498163223, -0.020766228437423706,
- 0.04362256079912186, -0.10199519246816635, 0.06917621940374374, 0.04417768120765686,
- -0.0009041355806402862, 0.055308956652879715, -0.04599454253911972, 0.03846009448170662,
- 0.024059701710939407, -0.058764196932315826, 0.016348332166671753,
- -0.042924169450998306, -0.0616275779902935, -0.0669296383857727, -0.06223350763320923,
- -0.04150942340493202, -0.08413909375667572, 0.07571110874414444, -0.09172851592302322,
- -0.03760645538568497, -0.0338110625743866, -0.009252697229385376, 0.051935095340013504,
- 0.0508417971432209, 0.03981863707304001, -0.17226390540599823, 0.02328168973326683,
- -0.015199897810816765, 0.041399355977773666, -0.001686811214312911,
- -0.040812958031892776, 0.0015418876428157091, 0.06490439921617508, 0.062124062329530716,
- 0.001757453428581357, 0.008011690340936184, -0.07267937809228897, 0.02750742994248867,
- -0.09847161918878555, -0.5345062017440796, 0.044610194861888885, -0.004065189976245165,
- 0.02471461333334446, 0.028593644499778748, -0.05435597896575928, 0.0326978825032711,
- -0.002801342401653528, -0.0394807830452919, 0.09650324285030365, -0.07210586965084076,
- 0.01582861691713333, -0.009374139830470085, -0.0516502670943737, -0.0257733017206192,
- -0.07887530326843262, -0.044086724519729614, 0.032750729471445084, -0.0094634760171175,
- -0.07468383014202118, -0.09333682805299759, 0.030274664983153343, -0.030995910987257957,
- 0.04404480382800102, -0.012295643799006939, 0.021077830344438553, -0.045443110167980194,
- -0.02535276673734188, 0.039226412773132324, 0.08974595367908478, 0.05373600125312805,
- -0.0614485926926136, -0.023710476234555244, 0.0629117339849472, -0.012078942731022835,
- 0.14753130078315735, 0.0174038577824831, -0.021858740597963333, -0.0900283083319664,
- 0.06742741167545319, 0.07396628707647324, 0.18465614318847656, -0.005822197068482637,
- 0.052293311804533005, 0.02973833680152893, 0.1969664841890335, 0.035407211631536484,
- 0.02982443943619728, -0.03826594352722168, 0.008526353165507317, 0.021542714908719063,
- -0.020526614040136337, 0.05984431505203247, -0.07688016444444656, -0.04474794119596481,
- -0.02625374123454094, -0.0476573221385479, -0.039114005863666534, 0.028177548199892044,
- 0.23261597752571106, 0.040368057787418365, 0.024960603564977646, -0.007818124257028103,
- -0.0632234588265419, 0.032849524170160294, -0.08056116104125977, -0.08701334148645401,
- -0.019963538274168968, -0.004246591590344906, 0.019275447353720665,
- -0.03941828012466431, -0.13205383718013763, 0.004260459449142218, -0.003761041210964322,
- 0.01740868203341961, 0.09521710872650146, 0.022054899483919144, 0.04056857153773308,
- -0.025899449363350868, 0.12159726768732071, 0.01667635701596737, 0.022806206718087196,
- 0.09242046624422073, 0.08538208901882172, 0.02067721076309681, -0.0013429343234747648,
- -0.0638647973537445, -0.035135529935359955, 0.01918959617614746, 0.12701472640037537,
- -0.06107092648744583, 0.07469101995229721, 0.03367093950510025, -0.02016536518931389,
- -0.04286280274391174, 0.053939223289489746, 0.0010858805617317557, 0.054112304002046585,
- -0.4732021391391754, -0.0020417789928615093, 0.10685143619775772, 0.02358560636639595,
- 0.032211728394031525, 0.11746980994939804, 0.028301995247602463, -0.030175525695085526,
- -0.03979995846748352, -0.025821972638368607, 0.12702405452728271, -0.03432248532772064,
- 0.06008998304605484, -0.10323823988437653, 0.03098030760884285, 0.0784182995557785,
- 0.014909593388438225, 0.011861724779009819, 0.060872633010149, -0.2276027649641037,
- 0.011331339366734028, -0.032229263335466385, 0.1509321928024292, 0.05273140221834183,
- 0.022595012560486794, 0.0778532549738884, -0.06326653063297272, 0.00477652857080102,
- 0.04415062814950943, 0.007811573334038258, 0.051189977675676346, -0.006357817444950342,
- -0.04300285130739212, 0.09521607309579849, 0.07235632836818695, 0.11201129108667374,
- 0.00034763143048621714, 12.059295654296875, 0.06419837474822998, 0.05784022808074951,
- -0.06074561923742294, 0.07990364730358124, -0.05706027150154114, 0.027867823839187622,
- -0.06140376999974251, 0.11716070026159286, 0.14409418404102325, -0.020489927381277084,
- -0.006357989273965359, 0.01615864597260952, -0.08437361568212509, 0.016168104484677315,
- -0.05581211298704147, -0.03952506184577942, -0.04519589617848396, 0.009051354601979256,
- -0.026318633928894997, -0.01835797354578972, 0.046232808381319046, 0.06930842250585556,
- 0.030588533729314804, -0.08395104855298996, 0.04695194959640503, 0.03821523115038872,
- -0.01836385950446129, -0.012025770731270313, 0.04580307379364967, -0.03380727022886276,
- 0.03975106403231621, 0.05306167155504227, 0.031116992235183716, -0.014119138941168785,
- 0.07535158097743988, 0.06238088011741638, 0.06136859580874443, -0.005403206218034029,
- 0.08638949692249298, 0.025239059701561928, 0.02217239700257778, 0.017328908666968346,
- 0.04066109284758568, 0.04506876319646835, 0.044532954692840576, 0.08588641881942749,
- 0.1055108904838562, 0.008248833008110523, 0.0313398502767086, 0.09993370622396469,
- -0.04400498420000076, 0.11674008518457413, 0.038473017513751984, 0.003967669326812029,
- 0.02918844297528267, -0.0009415492531843483, -0.03768303990364075, 0.07581119984388351,
- 0.09321939945220947, -0.05933820456266403, 0.09170904010534286, 0.007827894762158394,
- 0.13964834809303284, -0.03565850481390953, 0.06340160965919495, 0.05575764924287796,
- 0.07516386359930038, -0.08605115115642548, -0.06339298188686371, 0.03629123419523239,
- -0.09929363429546356, -0.05094417184591293, 0.0011074614012613893, 0.07392603904008865,
- -0.017690438777208328, 0.045206524431705475, -0.058151327073574066,
- 0.012883427552878857, -0.03898605704307556, -0.0018428999464958906,
- 0.033261194825172424, -0.010477310046553612, 0.01725681498646736, 0.03717181831598282,
- 0.0038824391085654497, 0.13011765480041504, 0.0780901163816452, 0.022797586396336555,
- -0.11551375687122345, -0.027409518137574196, 0.12901809811592102, -0.05241281911730766,
- -0.07587310671806335, 0.01673910953104496, -0.057937245815992355, 0.07280474156141281,
- -0.16364799439907074, 0.04769386351108551, 0.14432081580162048, -0.05433107167482376,
- -0.01613112911581993, -0.035172563046216965, 0.06924112141132355, -0.019581351429224014,
- 0.034061186015605927, -0.049215905368328094, 0.012162926606833935, 0.013361575081944466,
- 0.02022194303572178, -0.04939236491918564, 0.04128227010369301, 0.09669806063175201,
- -0.07755176723003387, 0.05801355838775635, 0.05474282056093216, -0.038726676255464554,
- -0.06838704645633698, 0.0523836687207222, 0.0655425563454628, -0.08749756217002869,
- -0.036631036549806595, -0.030154656618833542, -0.025305304676294327,
- -0.005394588224589825, -0.02136288955807686, 0.013817034661769867, 0.05459139496088028,
- -0.037711288779973984, -0.02758621610701084, -0.009656376205384731,
- 0.031411681324243546, 0.08356012403964996, -0.023531053215265274, 0.07397811114788055,
- -0.07286404818296432, -0.03625797480344772, 0.04130951315164566, 0.0912819653749466,
- 0.09604843705892563, -0.046455252915620804, -0.029263699427247047, -0.04322390630841255,
- -0.11127537488937378, -0.0022443500347435474, 0.14488151669502258, 0.025654111057519913,
- 0.07562845200300217, 0.026918470859527588, -0.08687378466129303, -0.04050546884536743,
- 0.10484234988689423, -0.014852556400001049, -0.002917412668466568, 0.013557287864387035,
- -0.10172642767429352, -0.03816350921988487, 0.1553991138935089, -0.050400614738464355,
- -0.004663877189159393, 0.010122637264430523, -0.04365401342511177, 0.10212975740432739,
- 0.0987507700920105, 0.02798590436577797, 0.007620262913405895, 0.020091230049729347,
- -0.010516593232750893, 0.007724344730377197, -0.0038797303568571806,
- 0.007341173943132162, -0.013811705633997917, -0.17979034781455994, -0.0914178416132927,
- 0.037102021276950836, 0.08334443718194962, 0.009344778954982758, -0.11562299728393555,
- -0.014459666796028614, -0.02345879003405571
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 175,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 68,
- "similarity": 0.9985070824623108
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 178,
- "similarity": 0.9984670877456665
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 16,
- "similarity": 0.998415470123291
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Igor Bonifacic"],
- "epoch_date_downloaded": 1652659200,
- "epoch_date_modified": 1652918400,
- "epoch_date_submitted": 1652659200,
- "flag": null,
- "report_number": 1608,
- "source_domain": "engadget.com",
- "submitters": ["AIAAIC"],
- "title": "An autonomous Cruise vehicle left police confused when they tried to pull it over",
- "url": "https://www.engadget.com/cruise-vehicle-drives-away-from-police-194657296.html"
- },
- {
- "__typename": "Report",
- "authors": ["Giulia Carbonaro"],
- "epoch_date_downloaded": 1652659200,
- "epoch_date_modified": 1652918400,
- "epoch_date_submitted": 1652659200,
- "flag": null,
- "report_number": 1607,
- "source_domain": "msn.com",
- "submitters": ["AIAAIC"],
- "title": "Video of Police Pulling Over Driverless Car Viewed 1.2 Million Times",
- "url": "https://www.msn.com/en-us/news/technology/video-of-police-pulling-over-driverless-car-viewed-12-million-times/ar-AAW60RC"
- },
- {
- "__typename": "Report",
- "authors": ["Anonymous"],
- "epoch_date_downloaded": 1652659200,
- "epoch_date_modified": 1652918400,
- "epoch_date_submitted": 1652659200,
- "flag": null,
- "report_number": 1606,
- "source_domain": "news.sky.com",
- "submitters": ["AIAAIC"],
- "title": "Driverless car starts to pull away after being stopped by police",
- "url": "https://news.sky.com/story/driverless-car-starts-to-pull-away-after-being-stopped-by-police-12588083"
- },
- {
- "__typename": "Report",
- "authors": ["Emma Roth"],
- "epoch_date_downloaded": 1649635200,
- "epoch_date_modified": 1649635200,
- "epoch_date_submitted": 1649635200,
- "flag": null,
- "report_number": 1554,
- "source_domain": "theverge.com",
- "submitters": ["Anonymous"],
- "title": "Here’s what happens when cops pull over a driverless Cruise vehicle",
- "url": "https://www.theverge.com/2022/4/10/23019303/heres-what-happens-cops-pull-over-a-driverless-cruise-vehicle-general-motors"
- },
- {
- "__typename": "Report",
- "authors": ["Seth Weintraub"],
- "epoch_date_downloaded": 1649548800,
- "epoch_date_modified": 1649548800,
- "epoch_date_submitted": 1649548800,
- "flag": null,
- "report_number": 1553,
- "source_domain": "electrek.co",
- "submitters": ["Anonymous"],
- "title": "GM Cruise autonomous taxi pulled over by police in San Francisco without humans, 'bolts' off",
- "url": "https://electrek.co/2022/04/10/gm-cruise-autonomous-taxi-pulled-over-by-police-in-san-francisco-without-humans-bolts-off-u-cruise-responds/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "oregon-state-university",
- "name": "Oregon State University"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "starship-technologies",
- "name": "Starship Technologies"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "oregon-state-university",
- "name": "Oregon State University"
- },
- {
- "__typename": "Entity",
- "entity_id": "freight-train-crew",
- "name": "freight train crew"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1557],
- "vector": [
- -0.1333778351545334, 0.04089546203613281, 0.024311833083629608, -0.1283806562423706,
- 0.14279372990131378, -0.009898951277136803, -0.03613586723804474, 0.05899198725819588,
- 0.07770665735006332, -0.1374407559633255, -0.038835927844047546, 0.07564226537942886,
- 0.022146204486489296, -0.05119949206709862, 0.1026446595788002, -0.04621925577521324,
- -0.07778274267911911, -0.05523715913295746, 0.004790422972291708, -0.1574912667274475,
- -0.0967012345790863, 0.01199384219944477, 0.055594101548194885, 0.10996511578559875,
- -0.06270495802164078, 0.03115939162671566, 0.06376641243696213, 0.1322755515575409,
- -0.033993277698755264, 0.041959214955568314, -0.004785044584423304,
- -0.09410707652568817, 0.12531906366348267, 0.009042480029165745, -0.006165485829114914,
- 0.1101362556219101, 0.058663833886384964, -0.026667721569538116, -0.011309338733553886,
- -0.014641248621046543, 0.0660729706287384, 0.2300506830215454, 0.0012987933587282896,
- -0.05409951135516167, 0.01903650537133217, -0.00790772121399641, 0.0043552774004638195,
- 0.04877116158604622, -0.016448387876152992, 0.0707876905798912, 0.004768419545143843,
- 0.014611415565013885, -0.041320763528347015, 0.032609254121780396, -0.15483632683753967,
- 0.06886670738458633, 0.07992645353078842, -0.003007416147738695, -0.016659783199429512,
- -0.1053432896733284, -0.05032370239496231, -0.25216591358184814, -0.04016827791929245,
- -0.06820313632488251, 0.0938657820224762, -0.11610253900289536, -0.031028039753437042,
- 0.022641897201538086, 0.0055280341766774654, 0.0757671520113945, 0.04648632928729057,
- -0.05292082577943802, -0.02056887187063694, 0.014621715061366558, -0.031161393970251083,
- -0.0749867856502533, -0.028866110369563103, 0.25924935936927795, -0.10089559108018875,
- 0.03584764525294304, 0.13141486048698425, -0.0761820375919342, 0.4568455219268799,
- 0.04438713565468788, -0.040459129959344864, -0.08701898157596588, 0.07476980239152908,
- 0.01812669262290001, 0.04052053391933441, 0.06658323854207993, 0.009444321505725384,
- 0.004301767796278, -0.03398215025663376, 0.07839158177375793, 0.10683315992355347,
- 0.04579740762710571, -0.050952717661857605, 0.023046091198921204, -0.015144365839660168,
- -0.09994904696941376, -0.02230057492852211, -0.04577049985527992, 0.044839393347501755,
- 0.0031036268919706345, -0.047323234379291534, -0.0495423749089241, 0.07169006019830704,
- -0.05156336724758148, 0.08085427433252335, -0.06705078482627869, 0.022661393508315086,
- 0.028918223455548286, 0.04954959824681282, -0.06022437661886215, 0.03155552223324776,
- -0.07155098766088486, 0.004958008881658316, 0.021779393777251244, 0.11248404532670975,
- 0.05319320037961006, -0.016961468383669853, 0.03695239499211311, 0.07773733884096146,
- -0.10166198015213013, -0.06774044036865234, -0.09694787114858627, -0.06803247332572937,
- -0.015855159610509872, -0.00393686955794692, -0.029632074758410454,
- -0.05600006878376007, -0.20381249487400055, 0.02631436288356781, 0.09118074178695679,
- 0.004037700593471527, -0.012841216288506985, 0.006216441746801138, -0.12078844010829926,
- 0.0034575085155665874, -0.02332121506333351, 0.01962749846279621, 0.057092420756816864,
- -0.019263075664639473, 0.005715089850127697, 0.15077327191829681, 0.0441461056470871,
- -0.06520681828260422, -0.08789098262786865, -0.0018966860370710492,
- -0.06195618212223053, 0.12058338522911072, -0.0847354382276535, -0.07598313689231873,
- -0.0007421976188197732, -0.0338105782866478, 0.7437060475349426, 0.13341130316257477,
- 0.22133716940879822, -0.01793469861149788, -0.014722430147230625, 0.167239248752594,
- 0.042877793312072754, -0.017798976972699165, -0.06898780912160873, -0.10040710121393204,
- 0.011335404589772224, -0.051599178463220596, -0.04864804446697235, 0.07787370681762695,
- -0.00045779687934555113, 0.10566215217113495, 0.05124225094914436, 0.10403744876384735,
- 0.01646323688328266, -0.13222023844718933, -0.04197780042886734, 0.056945882737636566,
- 0.018933802843093872, -0.11545589566230774, 0.007137687411159277, 0.04056732356548309,
- 0.11103904247283936, -0.08333581686019897, -0.011685056611895561, -0.04838120564818382,
- 0.061552874743938446, -0.02924995869398117, 0.013644821010529995, -0.019875789061188698,
- 0.04862194135785103, 0.06430180370807648, 0.049774155020713806, -0.051628053188323975,
- -0.08555874228477478, -0.01650981605052948, 0.15715338289737701, -0.009984598495066166,
- -0.034082069993019104, 0.025043945759534836, -0.10500578582286835, 0.060747820883989334,
- -0.030175315216183662, 0.16124878823757172, -0.1479695588350296, -0.027191178873181343,
- -0.005873650312423706, 0.018792346119880676, 0.021737132221460342, 0.00905083678662777,
- -0.136308491230011, -0.04359811171889305, 0.11276565492153168, 0.021293755620718002,
- 0.11579756438732147, 0.04604839161038399, -0.008352860808372498, 0.02527455985546112,
- 0.09275443851947784, -0.042378392070531845, -0.014371261931955814, 0.09432560205459595,
- 0.0733099952340126, -0.02249150536954403, 0.0013820496387779713, -0.015132252126932144,
- -0.0017827135743573308, 0.046487290412187576, 0.0034802604932338, 0.07771044969558716,
- 0.003300463780760765, -0.02434895932674408, -0.032280609011650085,
- -0.0023034934420138597, 0.05176662653684616, 0.0948287844657898, -0.07936041802167892,
- -0.10312444716691971, -0.05582243949174881, -0.11429829895496368, -0.03245081007480621,
- -0.05533682182431221, 0.13862144947052002, 0.09585858881473541, 0.11910039186477661,
- 0.041773051023483276, 0.026298891752958298, 0.0751827210187912, 0.04080527275800705,
- 0.02041121944785118, 0.033287495374679565, -0.06870335340499878, -0.069744773209095,
- -0.022135760635137558, 0.02194063365459442, 0.011320571415126324,
- -0.0037953380960971117, -0.05790138989686966, -0.06427869200706482,
- -0.03820051625370979, -0.06453633308410645, -0.1146266758441925, -0.014881772920489311,
- 0.05227428674697876, 0.0706225335597992, -0.1290251910686493, -0.13842540979385376,
- -0.13396647572517395, -0.0037604758981615305, 0.1188422366976738, -0.011810539290308952,
- -0.01137428916990757, -0.10314687341451645, 0.03965981304645538, -0.042907293885946274,
- 0.039812132716178894, -0.034343354403972626, -0.04127187281847, 0.016230737790465355,
- -0.11025514453649521, -0.0024526535999029875, -0.05080677941441536,
- -0.05374900624155998, -0.059769224375486374, -0.0687989741563797, -0.01669173873960972,
- -0.015445844270288944, -0.023135414347052574, -0.04099774360656738,
- 0.006425606552511454, 0.017908858135342598, 0.10725463926792145, -0.02995222434401512,
- -0.08947404474020004, 0.0828019306063652, -0.007106502540409565, 0.019843200221657753,
- 0.07563471794128418, -0.020952243357896805, 0.08941612392663956, -0.026551034301519394,
- -0.1051030308008194, -0.02615431882441044, 0.03709125891327858, -0.04083922877907753,
- 0.0716831386089325, -0.023777080699801445, 0.02873789705336094, -0.05721283704042435,
- 0.06809060275554657, 0.1077573224902153, -0.025612246245145798, -0.12686409056186676,
- -0.11186159402132034, 0.15256187319755554, -0.009649330750107765, -0.016097145155072212,
- 0.028608381748199463, -0.02816798910498619, 0.04100322350859642, 0.009220922365784645,
- -0.0017759425099939108, 0.042552802711725235, 0.02984805963933468,
- -0.017004627734422684, 0.009204944595694542, 0.030448485165834427, -0.09325989335775375,
- 0.05882866680622101, 0.05488341301679611, 0.44976669549942017, -0.2585209012031555,
- 0.11476638168096542, 0.10686595737934113, 0.003555884351953864, 0.02003786899149418,
- -0.08957115560770035, 0.08388900756835938, 0.08335691690444946, 0.15966664254665375,
- 0.13781626522541046, -0.0070844073779881, 0.009178096428513527, -0.08096907287836075,
- 0.07844807207584381, 0.0287941824644804, -0.015793876722455025, 0.041939083486795425,
- -0.08849728852510452, -0.006260097958147526, 0.03863462433218956, -0.05458148568868637,
- -0.025951825082302094, -0.012590188533067703, -0.06925955414772034, 0.05535661429166794,
- 0.03445716202259064, 0.03726625815033913, -0.045502517372369766, 0.0023985696025192738,
- 0.034626323729753494, 0.04892013594508171, 0.06120653450489044, 0.0354890339076519,
- -0.16853351891040802, 0.07156027853488922, -0.052638985216617584, -0.0973074734210968,
- 0.10023621469736099, 0.01089160330593586, 0.028383392840623856, 0.03529619053006172,
- -0.03345789015293121, 0.0041701034642755985, 0.002954754512757063, -0.05803152918815613,
- 0.03752197325229645, 0.08466845005750656, 0.0560058131814003, 0.07492285966873169,
- 0.1784801185131073, -0.056975360959768295, 0.004002995323389769, -0.10792514681816101,
- 0.07531046122312546, 0.07603776454925537, -0.03379589691758156, 0.0030510888900607824,
- -0.025905268266797066, 0.014787760563194752, 0.0003318327362649143,
- -0.03336183726787567, -0.07480719685554504, -0.06158629059791565, -0.10164857655763626,
- 0.032079409807920456, 0.05843599885702133, -0.05819886177778244, -0.189289391040802,
- -0.061742451041936874, -0.03878287598490715, 0.03208141773939133, 0.11150150746107101,
- -0.07052353024482727, -0.0039191581308841705, 0.041914962232112885,
- -0.030017748475074768, 0.06678161770105362, -0.06473691761493683, 0.04483471438288689,
- -0.14997582137584686, 0.060977496206760406, 0.05224396660923958, 0.0635366290807724,
- -0.04873038828372955, 0.07079852372407913, -0.056631218641996384, 0.07185947895050049,
- 0.006716555915772915, -0.005736298859119415, -0.007217771373689175,
- -0.08207771182060242, -0.0014604759635403752, -0.007445821538567543,
- -0.08077923208475113, 0.03016763925552368, -0.0598335936665535, -0.08831020444631577,
- -0.10395265370607376, -0.09214462339878082, -0.030488207936286926, -0.07217009365558624,
- 0.08185160905122757, -0.11973446607589722, -0.048605889081954956, -0.02224699594080448,
- -0.03338676318526268, 0.006707761902362108, 0.06278184801340103, 0.041001468896865845,
- -0.19351796805858612, 0.009683891199529171, -0.028404610231518745, 0.06696426123380661,
- 0.05187619850039482, -0.028625955805182457, 0.014471125788986683, 0.09671121090650558,
- 0.06980535387992859, 0.017751544713974, 0.03563136234879494, -0.06728033721446991,
- 0.01680903509259224, -0.13506340980529785, -0.40885472297668457, 0.06349239498376846,
- 0.0027715032920241356, 0.041309941560029984, 0.021641479805111885, -0.06752467155456543,
- 0.018180983141064644, -0.00017312202544417232, -0.11054020375013351,
- 0.09992119669914246, -0.08154582232236862, 0.0010782822500914335, -0.059546615928411484,
- -0.13882406055927277, -0.09021791815757751, -0.04364047572016716, -0.0330975241959095,
- 0.030016455799341202, -0.021274250000715256, -0.045663923025131226, -0.1033860519528389,
- 0.04047417640686035, -0.02838805317878723, 0.03788062185049057, -0.024045800790190697,
- 0.031258631497621536, -0.0824948325753212, -0.053933534771203995, 0.03787486255168915,
- 0.08323704451322556, 0.09957480430603027, -0.11351197957992554, -0.04079695791006088,
- 0.0643714964389801, 0.00032637754338793457, 0.16633866727352142, 0.019560622051358223,
- -0.011736154556274414, -0.044747594743967056, 0.057026077061891556, 0.06774922460317612,
- 0.18053513765335083, -0.02221866324543953, 0.06809843331575394, 0.025691121816635132,
- 0.22085633873939514, 0.06585177034139633, -0.009547246620059013, -0.05570591241121292,
- 0.01215063501149416, 0.017074212431907654, -0.048931729048490524, 0.07015961408615112,
- -0.07523880153894424, -0.07192893326282501, 0.010760813020169735, -0.029410287737846375,
- -0.01931445486843586, 0.011351779103279114, 0.2233734130859375, 0.017222044989466667,
- 0.06930302083492279, -0.003955727443099022, -0.06271208822727203, -0.00132470962125808,
- -0.10631842911243439, -0.034687589854002, -0.060370590537786484, -0.00983151514083147,
- -0.01941996067762375, -0.03188198432326317, -0.09335638582706451, -0.005224133841693401,
- 0.00591224106028676, 0.021481208503246307, 0.15579529106616974, 0.006428068038076162,
- 0.048747047781944275, 0.021326404064893723, 0.15441323816776276, 0.02921566553413868,
- -0.02120482362806797, 0.06631924957036972, 0.08914869278669357, 0.06255152821540833,
- 0.05125510320067406, -0.045340314507484436, -0.07858877629041672, 0.02458675391972065,
- 0.15289448201656342, -0.08295132964849472, 0.11593647301197052, 0.05261662229895592,
- 0.018698275089263916, -0.07480674982070923, 0.059095967561006546, -0.020743904635310173,
- 0.019762925803661346, -0.4931616187095642, 0.006505429744720459, 0.11742492765188217,
- 0.020729757845401764, 0.013541484251618385, 0.12644372880458832, 0.019657589495182037,
- -0.010333042591810226, 0.019964125007390976, -0.05084221810102463, 0.1466902643442154,
- 0.025001849979162216, 0.04941900447010994, -0.10560330748558044, -0.008468007668852806,
- 0.04649781435728073, 0.02172044850885868, 0.052513159811496735, 0.09481928497552872,
- -0.23046262562274933, 0.03717755898833275, -0.006184178404510021, 0.19746704399585724,
- -0.00947560928761959, 0.04900031536817551, 0.06292837113142014, -0.05551725625991821,
- 0.0556165874004364, 0.0071810767985880375, -0.00715303560718894, 0.004749522544443607,
- -0.03272330388426781, -0.0709054246544838, 0.10747256875038147, 0.07079292088747025,
- 0.1545315533876419, 0.018626058474183083, 12.2904691696167, 0.0825049951672554,
- 0.04869978129863739, -0.043240927159786224, 0.03269960358738899, -0.06307834386825562,
- 0.0032934253104031086, -0.08064714819192886, 0.09248442202806473, 0.15688945353031158,
- 0.00047707214253023267, -0.03323621675372124, 0.0021808971650898457,
- -0.13673116266727448, 0.04883092641830444, -0.13130594789981842, -0.08836455643177032,
- -0.01681128703057766, 0.03415367752313614, -0.029328210279345512, -0.02387961372733116,
- 0.10487114638090134, 0.06781763583421707, 0.012216036207973957, -0.02839072048664093,
- 0.013087252154946327, 0.020839747041463852, -0.03178970143198967, 0.021799523383378983,
- -0.0009459123248234391, 0.008139167912304401, 0.017516182735562325, 0.07762002944946289,
- -0.007330748718231916, 0.04301868751645088, 0.12064995616674423, 0.08445005863904953,
- 0.08596155047416687, 0.018032917752861977, 0.03510251268744469, 0.0245855413377285,
- 0.005616883747279644, 0.06265444308519363, 0.02575584501028061, 0.016778087243437767,
- 0.05165308341383934, 0.052255745977163315, 0.15439367294311523, 0.047802671790122986,
- 0.04796776548027992, 0.12044437974691391, -0.01805303990840912, 0.13073110580444336,
- 0.03220042213797569, -0.03646749258041382, 0.04817706346511841, -0.014217397198081017,
- -0.05997806787490845, 0.09681984782218933, 0.08243345469236374, -0.09157168120145798,
- 0.07629913836717606, 0.008211614564061165, 0.16432540118694305, 0.004372202791273594,
- 0.06548193097114563, 0.11561539769172668, 0.025170190259814262, -0.11477213352918625,
- -0.13127729296684265, -0.006860596127808094, -0.14532408118247986, -0.08856692910194397,
- 0.035004232078790665, 0.1495552361011505, -0.03543831780552864, 0.057761430740356445,
- -0.063728466629982, -0.0042925686575472355, -0.02376117743551731, -0.005283670499920845,
- 0.0697241947054863, 0.008530711755156517, -0.013190411031246185, 0.05777214840054512,
- 0.017506958916783333, 0.0691254511475563, 0.0987149327993393, -0.010549264028668404,
- -0.1229417473077774, -0.0248106662184, 0.1347414255142212, -0.05845671519637108,
- -0.0740777775645256, 0.05844274163246155, -0.07208367437124252, 0.11397890746593475,
- -0.16810834407806396, 0.08667627722024918, 0.12083832174539566, -0.048948902636766434,
- 0.024021198973059654, -0.0379682257771492, 0.021438417956233025, 0.0536484532058239,
- 0.06515676528215408, -0.08634050190448761, 0.02478625625371933, 0.046011652797460556,
- 0.009970123879611492, -0.0223377738147974, 0.10493011027574539, 0.10356371849775314,
- -0.056318867951631546, 0.04968133568763733, 0.06769341230392456, 0.0117739737033844,
- -0.034074701368808746, 0.08799125254154205, 0.02948862873017788, -0.058158185333013535,
- -0.038488294929265976, -0.002045932924374938, -0.06514028459787369,
- -0.053936172276735306, -0.012804288417100906, -0.01263600867241621, 0.03777012228965759,
- -0.0783662274479866, -0.038728728890419006, 0.03774017468094826, 0.006898274179548025,
- 0.05612499266862869, -0.06199575215578079, 0.06786251068115234, -0.09284278005361557,
- -0.07502871006727219, 0.03586074709892273, 0.055927060544490814, 0.06970728933811188,
- -0.03837498277425766, -0.0374925322830677, -0.08677554875612259, -0.08224160224199295,
- 0.04650722071528435, 0.1409253180027008, 0.05461873859167099, 0.06273411959409714,
- 0.045356348156929016, -0.1044132187962532, -0.06662512570619583, 0.11029472947120667,
- 0.0809582844376564, -0.013562807813286781, 0.02884301170706749, -0.07715209573507309,
- -0.03938274458050728, 0.15052518248558044, -0.050100177526474, 0.04422455653548241,
- -0.0027992737013846636, 0.03198235481977463, 0.09824740141630173, 0.1672229915857315,
- 0.022344842553138733, 0.01406436413526535, 0.042192548513412476, -0.005217450670897961,
- 0.01259832363575697, -0.03530015051364899, -0.004572362173348665, 0.014074037782847881,
- -0.14421916007995605, -0.08833267539739609, 0.07650941610336304, 0.11833089590072632,
- 0.04901830106973648, -0.055109426379203796, -0.021762695163488388, 0.031893618404865265
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 176,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 68,
- "similarity": 0.9979968667030334
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 51,
- "similarity": 0.997808039188385
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 20,
- "similarity": 0.9977770447731018
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Byron Hurd"],
- "epoch_date_downloaded": 1649980800,
- "epoch_date_modified": 1649980800,
- "epoch_date_submitted": 1649980800,
- "flag": null,
- "report_number": 1557,
- "source_domain": "autoblog.com",
- "submitters": ["Sean McGregor"],
- "title": "Autonomous food delivery pod meets fiery end under train",
- "url": "https://www.autoblog.com/2022/03/04/train-hits-autonomous-robot-crossing/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "google-docs",
- "name": "Google Docs"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "google-docs",
- "name": "Google Docs"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "google-docs-users",
- "name": "Google Docs users"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1602, 1601, 1600, 1583, 1558],
- "vector": [
- -0.03777927905321121, 0.09735237061977386, 0.02699543535709381, -0.11605437099933624,
- 0.08871351182460785, -0.0327882394194603, 0.028958190232515335, 0.07750939577817917,
- 0.06414968520402908, -0.12215793132781982, -0.00018643346265889704, 0.03154418617486954,
- 0.02239925041794777, -0.06363832950592041, 0.05588607117533684, -0.10265301167964935,
- -0.08877001702785492, -0.04570412635803223, -0.009352849796414375, -0.13642370700836182,
- -0.07226470857858658, -0.028401171788573265, -0.010542620904743671, 0.0940227061510086,
- -0.029840171337127686, 0.03146855905652046, 0.11316205561161041, 0.1132822036743164,
- -0.022215258330106735, 0.022052377462387085, -0.02367880381643772, -0.08063844591379166,
- 0.1117827445268631, 0.042852818965911865, 0.02059067226946354, 0.08490343391895294,
- 0.01101179700344801, -0.0025112603325396776, -0.006533837411552668,
- 0.017123017460107803, 0.04627210646867752, 0.24167947471141815, -0.006941960193216801,
- 0.002542399102821946, 0.03677765280008316, -0.03479116037487984, -0.016122955828905106,
- 0.021950744092464447, 0.014512831345200539, 0.03732417896389961, -0.01759202778339386,
- 0.037659935653209686, -0.0250704288482666, 0.05741935223340988, -0.09016584604978561,
- 0.040249817073345184, 0.02977282926440239, 0.0238143689930439, 0.052142489701509476,
- -0.08430226892232895, -0.016129985451698303, -0.15871620178222656, -0.08194942772388458,
- -0.07484219968318939, 0.09375113248825073, -0.07828034460544586, -0.04434708505868912,
- 0.018797941505908966, -0.012898864224553108, 0.06595122814178467, 0.0632743239402771,
- -0.05831869691610336, -0.03340489789843559, 0.01581110991537571, -0.024804700165987015,
- -0.03281429409980774, -0.023463984951376915, 0.18638786673545837, -0.09376303851604462,
- -0.012919875793159008, 0.13652047514915466, -0.10516347736120224, 0.35513728857040405,
- 0.04889644309878349, -0.0020966078154742718, 0.038516122847795486, 0.08718035370111465,
- 0.04227280616760254, 0.037354324012994766, 0.022313836961984634, 0.01484697125852108,
- 0.05264333635568619, -0.06459271907806396, -0.017022252082824707, 0.06621743738651276,
- -0.007144036237150431, -0.020884018391370773, -0.023151423782110214,
- -0.004142083693295717, -0.09453022480010986, -0.028940420597791672,
- -0.008259347639977932, 0.1255885362625122, 0.12143944203853607, -0.03449191898107529,
- 0.007933746092021465, 0.06554502248764038, -0.02592209354043007, 0.01292748749256134,
- -0.04802324250340462, 0.04139913618564606, -0.008179813623428345, 0.10675214231014252,
- -0.0032880965154618025, 0.06387174129486084, -0.0740065649151802,
- -0.0033896281383931637, 0.06311191618442535, 0.0845673605799675, 0.06774033606052399,
- 0.0031147263944149017, 0.06954429298639297, 0.026672761887311935, -0.05426395684480667,
- -0.048079170286655426, -0.013728095218539238, -0.034329283982515335,
- -0.01445807982236147, -0.021732252091169357, 0.043644100427627563, -0.07439284771680832,
- -0.19562900066375732, 0.009933861903846264, 0.07704005390405655, -0.0717112272977829,
- -0.013592195697128773, 0.006140491925179958, -0.06250052899122238, 0.06864854693412781,
- -0.031094159930944443, -0.02437257207930088, 0.04608466103672981, 0.0024826563894748688,
- 0.06625354290008545, 0.09253734350204468, 0.05746622011065483, -0.04998236894607544,
- -0.07467330992221832, 0.007435531355440617, -0.029962483793497086, 0.1497378647327423,
- -0.1157279834151268, -0.018873797729611397, -0.004315952770411968, -0.03329771012067795,
- 0.734017014503479, 0.13887178897857666, 0.20501355826854706, 0.0006538266316056252,
- -0.028315061703324318, 0.16857683658599854, 0.026684075593948364, 0.06792204827070236,
- -0.09795202314853668, -0.058500975370407104, 0.01484504621475935, -0.08772288262844086,
- -0.04131939634680748, -0.007977521046996117, 0.041735514998435974, 0.09668424725532532,
- 0.04422276094555855, 0.061310432851314545, -0.012097276747226715, -0.12239503860473633,
- -0.021328147500753403, 0.09994027763605118, 0.008225098252296448, -0.16863980889320374,
- -0.036041151732206345, 0.0433669313788414, 0.08797819912433624, -0.09230002015829086,
- 0.015352967195212841, -0.05247356742620468, 0.08886067569255829, -0.02563995122909546,
- 0.0252574123442173, -0.017782429233193398, 0.04053984582424164, 0.042156994342803955,
- 0.0555683895945549, -0.007330801337957382, -0.06989005953073502, 0.005365395452827215,
- 0.10647206008434296, -0.020412376150488853, -0.02779139019548893, 0.060250379145145416,
- -0.07474980503320694, 0.03755570948123932, 0.03754317760467529, 0.11769744008779526,
- -0.10002343356609344, 0.011414247564971447, -0.01432143896818161, -0.0102762496098876,
- 0.02174670621752739, 0.0028460496105253696, -0.07671449333429337, -0.05662836506962776,
- 0.07351548224687576, -0.026990393176674843, 0.04852353781461716, 0.04403969645500183,
- -0.024887636303901672, 0.05847122520208359, 0.1191382184624672, 0.007560037076473236,
- -0.017946207895874977, 0.06384475529193878, 0.07043472677469254, -0.053020574152469635,
- -0.04883041977882385, -0.004465910606086254, 0.055029310286045074,
- -0.005605108104646206, -0.001794746844097972, 0.05815867334604263,
- 0.0033269748091697693, -0.0681019201874733, 0.025348061695694923, 0.08061656355857849,
- 0.018086660653352737, 0.10806169360876083, -0.04609382897615433, -0.06186215952038765,
- -0.014615160413086414, -0.0011196410050615668, 0.02833142876625061, -0.0211521927267313,
- 0.08126421272754669, 0.1185099333524704, 0.06144929677248001, 0.04393336549401283,
- 0.024596460163593292, 0.09662522375583649, 0.01924518309533596, 0.0038943060208112,
- 0.09066382050514221, -0.0425914041697979, -0.057653773576021194, -0.013524730689823627,
- -0.005708236247301102, 0.04326022416353226, 0.0017436087364330888, -0.05192732810974121,
- -0.012235457077622414, -0.001308412873186171, -0.07758025825023651,
- -0.09374425560235977, -0.06520306318998337, 0.03994564339518547, 0.01678973063826561,
- -0.04467160254716873, -0.10343887656927109, -0.09538071602582932, -0.001842443598434329,
- 0.1006275862455368, -0.045040376484394073, -0.02144930697977543, -0.10658393055200577,
- -0.0037535890005528927, -0.006637576036155224, 0.06863710284233093,
- -0.003981706686317921, 0.028100889176130295, 0.03805450722575188, -0.10124655812978745,
- 0.03679288178682327, 0.026317542418837547, -0.05306851863861084, -0.009316523559391499,
- -0.06483881175518036, -0.017422333359718323, 0.020031247287988663, 0.03306780755519867,
- -0.03057364746928215, 0.028868477791547775, 0.04555588215589523, 0.06070539355278015,
- -0.008584740571677685, -0.05071187764406204, 0.03347962349653244, -0.019626347348093987,
- 0.00039955676766112447, 0.08041577786207199, -0.050065331161022186,
- 0.029340442270040512, -0.023535285145044327, -0.06699969619512558, -0.01338629424571991,
- -0.012322180904448032, -0.038898222148418427, 0.031331807374954224,
- -0.01651340164244175, 0.025242727249860764, -0.06097564846277237, -0.05459699034690857,
- 0.03934440761804581, -0.03993644937872887, -0.09855788946151733, -0.07904765009880066,
- 0.12273390591144562, 0.0002486586454324424, -0.049762748181819916, 0.03566906973719597,
- -0.08143866062164307, 0.04931236058473587, -0.0355544313788414, 0.0005463346606120467,
- 0.041590556502342224, 0.0634024441242218, -0.02552463486790657, 0.048187144100666046,
- 0.09734687209129333, 0.014370846562087536, -0.006615805439651012, 0.05725531652569771,
- 0.4470895826816559, -0.24109168350696564, 0.0813818871974945, 0.10307270288467407,
- 0.006807010620832443, 0.07742525637149811, -0.04510093852877617, 0.09232177585363388,
- 0.09234608709812164, 0.1156793087720871, 0.08151029795408249, -0.03870391100645065,
- -0.0030553569085896015, -0.07073047012090683, 0.10862930864095688, 0.00121202296577394,
- 0.04345424845814705, -0.027076642960309982, -0.0790514424443245, -0.006019045598804951,
- 0.01038378942757845, -0.0666051134467125, 0.0052750189788639545, -0.016476335003972054,
- -0.04944200441241264, 0.02917620912194252, 0.00808834470808506, 0.04122006893157959,
- -0.04067668318748474, 0.043887123465538025, 0.02847512625157833, 0.03007218800485134,
- 0.027492830529808998, 0.030782196670770645, -0.15229329466819763, 0.02721671387553215,
- -0.09542601555585861, -0.13079287111759186, 0.0682472512125969, -0.02242470532655716,
- 0.06238359957933426, 0.05443255230784416, -0.01589866355061531, 0.06471753120422363,
- -0.028166938573122025, -0.05205642059445381, 0.016782591119408607, 0.04092356562614441,
- 0.02804088220000267, 0.07348991185426712, 0.16078218817710876, -0.03733239322900772,
- -0.0415058508515358, -0.0916515588760376, 0.051305435597896576, 0.10574664920568466,
- 0.009646530263125896, 0.03343280404806137, 0.03554336354136467, -0.024441655725240707,
- 0.0027017525862902403, -0.016594449058175087, -0.07987624406814575,
- -0.023291561752557755, -0.07002906501293182, 0.10172168165445328, 0.02450544759631157,
- -0.039561040699481964, -0.18956376612186432, -0.021480584517121315,
- -0.02594592794775963, 0.01442832313477993, 0.11569299548864365, -0.05818260833621025,
- 0.07409488409757614, -0.005809383932501078, -0.003745514201000333,
- -0.0018732429016381502, -0.09129337966442108, 0.0001382779300911352,
- -0.045653361827135086, 0.052584148943424225, 0.026019910350441933, 0.052073895931243896,
- -0.04011036083102226, 0.1035100445151329, -0.09571202844381332, 0.09557367116212845,
- 0.008140688762068748, -0.012663310393691063, 0.03266153112053871, -0.05599622055888176,
- 0.05674881488084793, 0.01909138262271881, -0.08031219244003296, 0.0038090317975729704,
- -0.017073867842555046, -0.08425714820623398, -0.06598269194364548, -0.07598599046468735,
- -0.03947713226079941, -0.11355719715356827, 0.03954019397497177, -0.08268170803785324,
- -0.02673259936273098, -0.02208128571510315, 0.019550302997231483, -0.019004985690116882,
- 0.025615504011511803, 0.0006077870493754745, -0.15036045014858246, 0.010914042592048645,
- -0.0015766378492116928, 0.057233501225709915, -0.04712703078985214, -0.0552324540913105,
- 0.0016900196205824614, 0.0453856997191906, 0.05735898017883301, -0.06492621451616287,
- 0.0002864232228603214, -0.11142847687005997, 0.04267513006925583, -0.14092417061328888,
- -0.43769702315330505, 0.04764353483915329, 0.04230954870581627, 0.025190141052007675,
- 0.023096483200788498, -0.09952272474765778, 0.0478932186961174, 0.026785308495163918,
- -0.07207992672920227, 0.072114959359169, -0.06512639671564102, 0.07355073094367981,
- -0.046542804688215256, -0.02987925335764885, -0.018681755289435387,
- -0.08916119486093521, -0.02917221188545227, 0.023729771375656128, -0.05249200016260147,
- -0.05155836418271065, -0.09965958446264267, 0.0003439031424932182, 0.004811806138604879,
- -0.027402451261878014, 0.010572666302323341, 0.010959568433463573, -0.05444808676838875,
- -0.04106312245130539, 0.045620568096637726, 0.08028651773929596, 0.015111872926354408,
- -0.09639780968427658, 0.008851747028529644, 0.07365179806947708, 0.017835669219493866,
- 0.11585301160812378, 0.000896584999281913, 0.019911935552954674, -0.0982612743973732,
- 0.08129850029945374, 0.052924733608961105, 0.18393853306770325, -0.04741072654724121,
- -0.00307067041285336, 0.013419894501566887, 0.14850741624832153, 0.08389627933502197,
- 0.013749778270721436, -0.030686378479003906, -0.02411557361483574, 0.048004698008298874,
- 0.00793641060590744, 0.10725245624780655, -0.08999557793140411, -0.01823137328028679,
- -0.021977055817842484, -0.03427346795797348, -0.019344478845596313,
- -0.007041505072265863, 0.20937494933605194, 0.007275968790054321, 0.04515760391950607,
- 0.011263757012784481, -0.09370969235897064, 0.03484570235013962, -0.05566718056797981,
- -0.09251947700977325, -0.026207726448774338, -0.010878382250666618,
- -0.0036022081039845943, -0.045369915664196014, -0.11639253795146942,
- 0.003344922559335828, 0.02145419642329216, 0.0020690225064754486, 0.10490121692419052,
- -0.04795222729444504, 0.04475577920675278, -0.030497420579195023, 0.11606154590845108,
- 0.02491837367415428, 0.040890492498874664, 0.05084750056266785, 0.10378672927618027,
- 0.02693839743733406, 0.03578837588429451, -0.05852361395955086, -0.11734800040721893,
- -0.00423180777579546, 0.1615985929965973, -0.025136074051260948, 0.12306258827447891,
- 0.013259844854474068, -0.052760206162929535, -0.051751576364040375,
- 0.020618174225091934, -0.008493859320878983, 0.01900048926472664, -0.4732425808906555,
- -0.03816484659910202, 0.12235969305038452, 0.026752080768346786, 0.011331900954246521,
- 0.07276496291160583, 0.00783616118133068, -0.047460295259952545, -0.02693236991763115,
- -0.12310411781072617, 0.11144004017114639, 0.012029876001179218, 0.04022373631596565,
- -0.09633549302816391, 0.011196951381862164, 0.056859541684389114, -0.040362004190683365,
- 0.009415972046554089, 0.06570065766572952, -0.2650024890899658, -0.0013816561549901962,
- -0.001147147617302835, 0.12727180123329163, -0.028948482125997543, 0.02845042012631893,
- 0.09336181730031967, -0.05441241338849068, -0.0033577377907931805,
- 0.0019436602015048265, -0.021040918305516243, 0.01971423253417015, 0.02083108201622963,
- -0.016292640939354897, 0.10516457259654999, 0.1041751280426979, 0.1064266711473465,
- -0.01049119234085083, 12.097010612487793, 0.02429015375673771, 0.05864884331822395,
- -0.1119321808218956, 0.010401448234915733, -0.05232100561261177, 0.0077652232721447945,
- -0.08026810735464096, 0.07370761781930923, 0.15526562929153442, -0.019951295107603073,
- 0.0033191642723977566, -0.009549109265208244, -0.09940827637910843,
- 0.028823357075452805, -0.053617559373378754, -0.05750196427106857, -0.06467632204294205,
- 0.060139529407024384, -0.054450251162052155, -0.048252172768116, 0.06041505187749863,
- 0.07939279824495316, 0.03637463599443436, -0.08579521626234055, 0.004794631619006395,
- -0.01745775155723095, -0.044807806611061096, 0.009119248017668724, 0.03122057393193245,
- 0.018329346552491188, 0.009584945626556873, 0.06139412522315979, -0.01569766364991665,
- 0.015866640955209732, 0.056953586637973785, 0.09480347484350204, 0.04513741284608841,
- 0.03543572872877121, 0.05364185571670532, -0.0239573922008276, 0.0031763785518705845,
- 0.030542686581611633, 0.057960547506809235, 0.06519229710102081, 0.031778980046510696,
- 0.03701852262020111, 0.1000385507941246, 0.03150961548089981, 0.10854574292898178,
- 0.09922929853200912, -0.014733890071511269, 0.13598759472370148, 0.01692170836031437,
- -0.015549388714134693, 0.0676141232252121, -0.022489452734589577, -0.08793123811483383,
- 0.08718045800924301, 0.020428847521543503, -0.07619509100914001, 0.12902185320854187,
- 0.014927494339644909, 0.12081070989370346, 0.03836222365498543, 0.05254768580198288,
- 0.0515817329287529, 0.06344129890203476, -0.12975060939788818, -0.08448626846075058,
- -0.008302951231598854, -0.08485130965709686, -0.06903143227100372, 0.09147290885448456,
- 0.12180523574352264, -0.026306280866265297, -0.018761057406663895,
- -0.007514168508350849, 0.05000681430101395, -0.020914344117045403, -0.01058903243392706,
- 0.04037824273109436, -0.0226569976657629, -0.00048743904335424304, 0.0763784795999527,
- 0.01751571148633957, 0.01599530503153801, 0.13879290223121643, 0.0086789820343256,
- -0.112643763422966, -0.06975845992565155, 0.11513514816761017, -0.021759118884801865,
- -0.06051412969827652, 0.05912289768457413, -0.08145711570978165, 0.015653830021619797,
- -0.16415268182754517, 0.09307949244976044, 0.14124923944473267, -0.10626610368490219,
- -0.05149800330400467, -0.02957860194146633, 0.0955878347158432, 0.027707630768418312,
- -0.001975254388526082, -0.06415160745382309, 0.023060869425535202,
- -0.006864078342914581, 0.03858562558889389, -0.06669902801513672, 0.07265201210975647,
- 0.08309590816497803, -0.03236506134271622, 0.045792680233716965, 0.05454698204994202,
- -0.02790810726583004, -0.015033453702926636, 0.042610276490449905, 0.03658843785524368,
- -0.0765690803527832, -0.03918733447790146, -0.03786008805036545, -0.05701387673616409,
- -0.015255141071975231, -0.06356225162744522, 0.029182959347963333, 0.04136139526963234,
- -0.027563640847802162, 0.0047780973836779594, 0.05524392053484917, 0.07325015962123871,
- 0.08147480338811874, -0.027718057855963707, 0.07863364368677139, -0.06754307448863983,
- -0.031018933281302452, 0.0318012610077858, 0.034605175256729126, 0.058524928987026215,
- -0.04707831144332886, -0.06176887825131416, -0.0354650542140007, -0.14396034181118011,
- 0.07044254243373871, 0.1219293624162674, 0.05738668516278267, 0.022434845566749573,
- 0.028072113171219826, -0.10233708471059799, -0.04462612792849541, 0.08875393867492676,
- 0.034858282655477524, 0.008568191900849342, 0.03108113445341587, -0.06541888415813446,
- -0.03568800166249275, 0.07488124072551727, -0.04645442217588425, 0.006453895475715399,
- -0.019334401935338974, -0.07538288831710815, 0.12276669591665268, 0.10513629764318466,
- 0.04521955922245979, 0.015496279112994671, -0.012045222334563732, 0.011044414713978767,
- 0.07343979179859161, 0.005351848900318146, 0.04300813376903534, -0.048101186752319336,
- -0.08606450259685516, -0.0867183580994606, 0.054974742233753204, 0.0916888564825058,
- 0.07030395418405533, -0.09460550546646118, -0.006497617810964584, -0.036397166550159454
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 177,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 17,
- "similarity": 0.9977903962135315
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 13,
- "similarity": 0.9975641965866089
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 6,
- "similarity": 0.9973966479301453
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Katyanna Quach"],
- "epoch_date_downloaded": 1652400000,
- "epoch_date_modified": 1652918400,
- "epoch_date_submitted": 1652400000,
- "flag": null,
- "report_number": 1602,
- "source_domain": "theregister.com",
- "submitters": ["AIAAIC"],
- "title": "Google Docs' inclusive writing auto-correct under fire",
- "url": "https://www.theregister.com/2022/04/25/the_latest_automated_ai_writing/"
- },
- {
- "__typename": "Report",
- "authors": ["Snejana Farberov"],
- "epoch_date_downloaded": 1652400000,
- "epoch_date_modified": 1652918400,
- "epoch_date_submitted": 1652400000,
- "flag": null,
- "report_number": 1601,
- "source_domain": "nypost.com",
- "submitters": ["AIAAIC"],
- "title": "Google launches ‘woke’ writing function touting ‘inclusive language’",
- "url": "https://nypost.com/2022/04/25/google-unveils-woke-writing-feature-for-inclusive-language/"
- },
- {
- "__typename": "Report",
- "authors": ["Patrick Sawer"],
- "epoch_date_downloaded": 1652400000,
- "epoch_date_modified": 1652918400,
- "epoch_date_submitted": 1652400000,
- "flag": null,
- "report_number": 1600,
- "source_domain": "telegraph.co.uk",
- "submitters": ["AIAAIC"],
- "title": "Big Brother (sorry, Big Person) is correcting you on Google",
- "url": "https://www.telegraph.co.uk/news/2022/04/23/big-brother-sorry-big-person-correcting-google/"
- },
- {
- "__typename": "Report",
- "authors": ["Sky News"],
- "epoch_date_downloaded": 1652400000,
- "epoch_date_modified": 1652832000,
- "epoch_date_submitted": 1652400000,
- "flag": null,
- "report_number": 1583,
- "source_domain": "news.sky.com",
- "submitters": ["AIAAIC"],
- "title": "Google Docs criticised for 'woke' inclusive language suggestions",
- "url": "https://news.sky.com/story/google-docs-criticised-for-woke-inclusive-language-suggestions-12598687"
- },
- {
- "__typename": "Report",
- "authors": ["Samantha Cole"],
- "epoch_date_downloaded": 1650585600,
- "epoch_date_modified": 1650585600,
- "epoch_date_submitted": 1650585600,
- "flag": null,
- "report_number": 1558,
- "source_domain": "vice.com",
- "submitters": ["Anonymous"],
- "title": "Google’s AI-Powered ‘Inclusive Warnings’ Feature Is Very Broken",
- "url": "https://www.vice.com/en/article/v7dk8m/googles-ai-powered-inclusive-warnings-feature-is-very-broken"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "tesla",
- "name": "Tesla"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "tesla",
- "name": "Tesla"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "vision-jet-owner",
- "name": "Vision Jet owner"
- },
- {
- "__typename": "Entity",
- "entity_id": "tesla-owner",
- "name": "Tesla owner"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1594, 1570, 1569, 1568, 1567, 1566, 1565, 1560],
- "vector": [
- -0.0715390294790268, 0.05172715336084366, -0.011931425891816616, -0.11737009882926941,
- 0.07075801491737366, -0.016860974952578545, -0.01696288213133812, 0.04146778956055641,
- 0.054561711847782135, -0.15913665294647217, 0.012289637699723244, 0.05272071063518524,
- 0.011575276032090187, -0.07064147293567657, 0.043835848569869995, -0.08953547477722168,
- -0.08762253820896149, -0.04684238135814667, -0.006014791317284107, -0.11448368430137634,
- -0.08875120431184769, -0.005116645246744156, 0.048172738403081894, 0.1100139394402504,
- -0.0782179981470108, 0.0007368167862296104, 0.07811228185892105, 0.10302084684371948,
- -0.055665042251348495, 0.032592110335826874, -0.028108902275562286,
- -0.06237170472741127, 0.13335824012756348, 0.04320676624774933, 0.017863966524600983,
- 0.0546906553208828, 0.023462872952222824, -0.009543824940919876, -0.08198069036006927,
- 0.005661264527589083, 0.008899375796318054, 0.16538959741592407, 0.03328082710504532,
- -0.007212981581687927, 0.06570650637149811, -0.06771590560674667, 0.01645149476826191,
- 0.04748152941465378, 0.022948862984776497, 0.02562307007610798, -0.011580339632928371,
- 0.024706875905394554, -0.03022477962076664, 0.009758557192981243, -0.11948186159133911,
- 0.061473581939935684, 0.042517419904470444, -0.011168294586241245, 0.05353081226348877,
- -0.05431317910552025, -0.05371399223804474, -0.2335948944091797, -0.0863688737154007,
- -0.04274585843086243, 0.046112049371004105, -0.08748816698789597, -0.012861134484410286,
- 0.0708484798669815, 0.02353193797171116, 0.06575023382902145, 0.05855094641447067,
- -0.02425047568976879, -0.03497636318206787, -0.0021638870239257812,
- -0.00005405722185969353, 0.0051569147035479546, 0.014329956844449043,
- 0.1998354196548462, -0.13143238425254822, 0.009992837905883789, 0.11904805153608322,
- -0.10884836316108704, 0.40731433033943176, 0.014089121483266354, -0.03986899182200432,
- -0.0622270405292511, 0.08212567120790482, 0.02480687014758587, 0.04732919856905937,
- 0.025374768301844597, -0.0027693931479007006, 0.020988693460822105,
- -0.02974073402583599, 0.014642680995166302, 0.05053485929965973, 0.02313254587352276,
- 0.005015173461288214, -0.011181730777025223, -0.0032737392466515303,
- -0.052560675889253616, 0.04132954031229019, -0.08000770211219788, 0.10328923165798187,
- 0.0551459901034832, -0.004347927402704954, -0.018453197553753853, 0.10269583016633987,
- -0.025939084589481354, 0.06533846259117126, -0.08362770080566406, 0.032403990626335144,
- 0.01039569266140461, 0.06251917779445648, 0.0022781151346862316, 0.061612654477357864,
- -0.05252869799733162, 0.012768329121172428, 0.05675426870584488, 0.10059957206249237,
- 0.02864297479391098, 0.0014538002433255315, 0.07258763909339905, 0.06285679340362549,
- -0.061445269733667374, 0.011473753489553928, -0.04359661415219307, -0.03463873267173767,
- -0.025097453966736794, -0.05569802224636078, 0.043497223407030106, -0.04457040876150131,
- -0.2357768565416336, 0.03409961611032486, 0.13467378914356232, -0.0029328602831810713,
- -0.040309272706508636, 0.005493274889886379, -0.08453856408596039, 0.03673866018652916,
- -0.004116950556635857, -0.048805732280015945, 0.07725918292999268, 0.03760052099823952,
- 0.03625030815601349, 0.13486634194850922, 0.05080476775765419, -0.04615321755409241,
- -0.07372266799211502, 0.002017807215452194, -0.05636110529303551, 0.055533118546009064,
- -0.10881713032722473, -0.04220513999462128, 0.021138738840818405, 0.02097509056329727,
- 0.5961192846298218, 0.10757936537265778, 0.16080543398857117, 0.025796012952923775,
- -0.012160776183009148, 0.18193601071834564, -0.03239733725786209, 0.056133873760700226,
- -0.05776842311024666, -0.10123038291931152, 0.04240205138921738, -0.10097640007734299,
- -0.04455699771642685, -0.008279758505523205, 0.017115404829382896, 0.0779707133769989,
- 0.030186409130692482, 0.08257831633090973, -0.013077041134238243, -0.10449589788913727,
- -0.02178839035332203, 0.03120267763733864, 0.03803950548171997, -0.0965544581413269,
- -0.05153705179691315, 0.032500259578228, 0.11253543198108673, -0.05403325706720352,
- 0.00004248175537213683, -0.023051675409078598, 0.022378263995051384,
- 0.01213358249515295, 0.011766226962208748, -0.04638282582163811, -0.01095099188387394,
- 0.03444087877869606, 0.05537542700767517, -0.027140075340867043, -0.11412092298269272,
- -0.0006757545052096248, 0.11793351918458939, 0.009249204769730568, -0.0484251044690609,
- 0.049734391272068024, -0.08515793085098267, 0.028998803347349167, 0.0005751820281147957,
- 0.11105480045080185, -0.13379597663879395, 0.026627110317349434, 0.02389487251639366,
- -0.010244508273899555, 0.06552701443433762, -0.028645748272538185, -0.08660504221916199,
- -0.06264247745275497, 0.08650034666061401, 0.044184695929288864, 0.0596756674349308,
- 0.07661166042089462, -0.03445832058787346, 0.019889289513230324, 0.06986915320158005,
- -0.0021177316084504128, -0.02042710781097412, 0.05654351785778999, 0.0711621344089508,
- -0.034966032952070236, -0.019749030470848083, 0.022529447451233864,
- 0.020779158920049667, 0.008140664547681808, -0.017014166340231895, 0.07960924506187439,
- 0.007664828095585108, -0.04374004900455475, 0.013579304330050945, 0.04128758981823921,
- 0.008030958473682404, 0.09282933920621872, -0.06772986054420471, -0.053186215460300446,
- -0.010574485175311565, -0.007755378261208534, -0.02310277707874775,
- -0.024277906864881516, 0.09218809008598328, 0.05690222978591919, 0.06499716639518738,
- 0.03289200738072395, 0.048974938690662384, 0.05505631864070892, 0.06950706988573074,
- 0.020113641396164894, 0.07935762405395508, -0.030047660693526268, -0.06859816610813141,
- -0.026781989261507988, 0.011173061095178127, 0.004275909159332514, 0.05476061627268791,
- -0.08775261789560318, -0.0418257936835289, -0.02108318917453289, 0.014474957250058651,
- -0.0915033370256424, -0.03232823312282562, 0.01278274692595005, 0.05472325161099434,
- -0.03521456941962242, -0.06509684026241302, -0.11593635380268097, 0.032070670276880264,
- 0.06530998647212982, -0.0006426706677302718, 0.006885072682052851, -0.10872622579336166,
- -0.0221021119505167, -0.04527803510427475, 0.025019759312272072, 0.002158349845558405,
- -0.024953557178378105, -0.02095738612115383, -0.04840245842933655, 0.006257775705307722,
- 0.025913845747709274, -0.031206592917442322, -0.04510056972503662, -0.08723028004169464,
- -0.0313471294939518, 0.007509166374802589, 0.011671970598399639, 0.00025754928356036544,
- 0.04493999108672142, 0.03981143981218338, 0.036565762013196945, -0.0032205223105847836,
- -0.00892495084553957, 0.061660971492528915, -0.02901608683168888, -0.05930164456367493,
- 0.07821832597255707, 0.005374475382268429, 0.02736344188451767, -0.012607390061020851,
- -0.0983629897236824, -0.04923231527209282, 0.02237161435186863, -0.05251782387495041,
- 0.04593399167060852, -0.03915112465620041, 0.006099112331867218, -0.02333838865160942,
- -0.04333872348070145, 0.07220273464918137, -0.0493290089070797, -0.04657219350337982,
- -0.1062726303935051, 0.09987135976552963, -0.02095070481300354, -0.009995552711188793,
- 0.025150729343295097, -0.06805706769227982, 0.06935121864080429, -0.03716813027858734,
- -0.0156960878521204, 0.018481139093637466, 0.05469979718327522, -0.002528328448534012,
- -0.0018854656955227256, 0.05959450453519821, -0.010352318175137043,
- 0.025356175377964973, 0.08743263781070709, 0.4107632339000702, -0.18238559365272522,
- 0.05603992938995361, 0.08019671589136124, -0.008950455114245415, 0.0859861969947815,
- -0.017531219869852066, 0.05387372523546219, 0.08543308824300766, 0.102125383913517,
- 0.08670041710138321, -0.01732424646615982, 0.011938218958675861, -0.04030837118625641,
- 0.08700741827487946, 0.004355409648269415, 0.009635312482714653, -0.031742196530103683,
- -0.043725281953811646, 0.0007972148596309125, 0.07460793107748032, -0.0383371002972126,
- 0.006066055502742529, 0.009047412313520908, -0.022753993049263954,
- 0.0029905852861702442, 0.012192945927381516, 0.045281101018190384,
- -0.027631953358650208, -0.0034196979831904173, -0.008978749625384808,
- 0.04027561470866203, 0.0444163978099823, 0.033886056393384933, -0.08230788260698318,
- 0.0348900705575943, -0.08770611882209778, -0.08733925968408585, 0.07235840708017349,
- -0.03171350061893463, 0.044120654463768005, 0.035007648169994354, -0.0130927674472332,
- 0.03868218511343002, -0.014277465641498566, -0.050977468490600586, 0.015972282737493515,
- 0.045790743082761765, 0.0014142950531095266, 0.06083157658576965, 0.12751039862632751,
- -0.061504803597927094, -0.043221987783908844, -0.08485564589500427, 0.06095711886882782,
- 0.06463155895471573, -0.04767381399869919, 0.01545198168605566, -0.02921174466609955,
- -0.012341957539319992, -0.005565514788031578, -0.0687657818198204, -0.07247301936149597,
- 0.003136103507131338, -0.032943177968263626, 0.06686079502105713, -0.003581581637263298,
- -0.034230612218379974, -0.23475126922130585, -0.05719897896051407, -0.03834442049264908,
- 0.015717562288045883, 0.16081106662750244, -0.08570936322212219, -0.0026401267386972904,
- 0.034032803028821945, 0.005619896575808525, 0.017169073224067688, -0.09922042489051819,
- -0.004602221306413412, -0.05279839038848877, 0.04015214741230011, 0.05509684979915619,
- 0.026284921914339066, -0.01292986050248146, 0.06432364881038666, -0.09186546504497528,
- 0.033013805747032166, 0.0627312958240509, 0.003606949932873249, 0.05820777267217636,
- -0.03668895736336708, 0.03238698095083237, 0.03746304661035538, -0.05753728002309799,
- 0.0412055067718029, -0.06008473038673401, -0.032900579273700714, -0.08211181312799454,
- -0.06332196295261383, -0.055359769612550735, -0.11021347343921661, 0.05318460240960121,
- -0.0557941198348999, -0.0369638130068779, -0.03996175155043602, -0.022327106446027756,
- 0.03125303238630295, 0.048190634697675705, 0.03766946867108345, -0.15075179934501648,
- -0.006602982524782419, 0.0014680158346891403, 0.037165746092796326,
- -0.05763985589146614, -0.04956039413809776, -0.003298303345218301, 0.08593247830867767,
- 0.03779711574316025, -0.0038233317900449038, 0.022157801315188408, -0.07787758111953735,
- 0.0005396570195443928, -0.06583276391029358, -0.4789195656776428, 0.043851278722286224,
- 0.03985070437192917, 0.036738719791173935, 0.014790888875722885, -0.05802714824676514,
- 0.028263965621590614, 0.013146942481398582, -0.03077847696840763, 0.09289839118719101,
- -0.04873667657375336, 0.023621540516614914, 0.013380931690335274, -0.03351891040802002,
- -0.011012153699994087, -0.04831942915916443, -0.03482411056756973, 0.03599376603960991,
- 0.004536060616374016, -0.05486145615577698, -0.09805053472518921, 0.027210038155317307,
- -0.01831684447824955, 0.006633304059505463, -0.023886896669864655, 0.041758742183446884,
- -0.055166032165288925, -0.05704139545559883, 0.04104769602417946, 0.07032867521047592,
- 0.042459599673748016, -0.05398485064506531, -0.01616395078599453, 0.046867676079273224,
- -0.03638012707233429, 0.16574743390083313, 0.006000314839184284, -0.026876166462898254,
- -0.08701501786708832, 0.0565253384411335, 0.07375476509332657, 0.18667742609977722,
- -0.006986883003264666, 0.03256726637482643, 0.0009761751862242818, 0.134382963180542,
- 0.03341643139719963, 0.041293829679489136, -0.015469251200556755, 0.012870191596448421,
- 0.017526855692267418, -0.010601510293781757, 0.06552937626838684, -0.09714995324611664,
- -0.03558911010622978, -0.01631290651857853, -0.052036162465810776, -0.02972339652478695,
- 0.039657510817050934, 0.18578656017780304, 0.025608472526073456, 0.03668595477938652,
- 0.0065942793153226376, -0.03633132576942444, 0.0008304180228151381,
- -0.06948551535606384, -0.09578250348567963, 0.0015535434940829873, 0.007180770859122276,
- 0.027793630957603455, -0.04749996215105057, -0.12292024493217468, -0.006282571703195572,
- -0.025038916617631912, 0.01601051539182663, 0.07026541978120804, 0.0024876187089830637,
- 0.06898853182792664, -0.04341857507824898, 0.11045585572719574, 0.03513262793421745,
- 0.0426960252225399, 0.054155364632606506, 0.056336887180805206, 0.01611752063035965,
- -0.009857992641627789, -0.04004979133605957, -0.05020146444439888, 0.047402698546648026,
- 0.1216326504945755, -0.01945236697793007, 0.1101405918598175, 0.05166378989815712,
- -0.022178983315825462, -0.042298272252082825, 0.046432171016931534,
- 0.014006970450282097, 0.013866332359611988, -0.44330060482025146, -0.008212778717279434,
- 0.09628574550151825, 0.02651604451239109, 0.03441868722438812, 0.09463158994913101,
- 0.044805172830820084, -0.027567662298679352, -0.05224347487092018, -0.03573169931769371,
- 0.1696370542049408, -0.060760196298360825, 0.06575899571180344, -0.10111590474843979,
- 0.012531762942671776, 0.07500658929347992, -0.00290608499199152, -0.004743569064885378,
- 0.06864351034164429, -0.18547257781028748, -0.009385453537106514, -0.03832272067666054,
- 0.18509206175804138, 0.07716185599565506, 0.028421981260180473, 0.08063136041164398,
- -0.07871280610561371, 0.04166526347398758, 0.025571182370185852, -0.0027568060904741287,
- 0.09009391069412231, 0.011259864084422588, -0.02198287658393383, 0.10650508105754852,
- 0.06876464933156967, 0.08103689551353455, -0.017448322847485542, 11.953398704528809,
- 0.06656575202941895, 0.04157993197441101, -0.06898096203804016, 0.03111637569963932,
- -0.07329860329627991, 0.04134675860404968, -0.09650285542011261, 0.06457222253084183,
- 0.11973001062870026, -0.017223278060555458, 0.0072827828116714954,
- -0.013017767108976841, -0.10007725656032562, 0.01384957879781723, -0.06550003588199615,
- -0.027620544657111168, -0.04491926357150078, 0.01971958950161934, -0.05036289989948273,
- -0.04627585411071777, 0.047413360327482224, 0.07343603670597076, 0.03683270886540413,
- -0.08811981230974197, 0.06455555558204651, 0.01156141608953476, 0.018943678587675095,
- -0.020172325894236565, 0.056225262582302094, -0.008709204383194447, 0.03868492320179939,
- 0.05379895120859146, 0.006142856553196907, 0.005723428446799517, 0.07158006727695465,
- 0.059105195105075836, 0.07400155067443848, 0.008505033329129219, 0.07804584503173828,
- 0.024823060259222984, 0.01652364246547222, 0.0353742390871048, 0.0632234737277031,
- 0.037046268582344055, 0.0225084125995636, 0.10241761058568954, 0.11067353934049606,
- -0.011404926888644695, 0.03363168612122536, 0.08155052363872528, -0.04796142131090164,
- 0.12272553145885468, 0.04383020102977753, -0.011887593194842339, 0.04750601947307587,
- -0.011022793129086494, -0.05289443954825401, 0.09484955668449402, 0.11078515648841858,
- -0.06461060792207718, 0.08576232194900513, 0.027092304080724716, 0.12043067812919617,
- -0.007312017492949963, 0.021654905751347542, 0.07287728041410446, 0.05937832221388817,
- -0.05975605919957161, -0.06262224912643433, 0.04282711073756218, -0.10855328291654587,
- -0.03659048676490784, 0.015344655141234398, 0.09809426218271255, -0.02906929887831211,
- 0.05401884391903877, -0.0732274129986763, 0.025102732703089714, -0.0061241877265274525,
- -0.004368550609797239, 0.005229159723967314, -0.007908937521278858, 0.03432910144329071,
- 0.04829570651054382, 0.00983349233865738, 0.10693521797657013, 0.03397144377231598,
- 0.015238448977470398, -0.07255378365516663, -0.05566917732357979, 0.13503283262252808,
- -0.04196014627814293, -0.06906988471746445, -0.017290392890572548, -0.06333309412002563,
- 0.07247649133205414, -0.13864105939865112, 0.0626671314239502, 0.09580954909324646,
- -0.06589987128973007, -0.0014851820887997746, -0.004862607456743717,
- 0.04895320534706116, -0.026948338374495506, 0.044182565063238144, -0.0421830378472805,
- 0.0006553730927407742, 0.03531480208039284, 0.06786985695362091, -0.03342147916555405,
- 0.06318368762731552, 0.07745803892612457, -0.06975504755973816, 0.07256065309047699,
- 0.07364021241664886, -0.02234998531639576, -0.05002651363611221, 0.04561890661716461,
- 0.03642623871564865, -0.08659078925848007, -0.03634346276521683, -0.008579084649682045,
- -0.059306927025318146, -0.002378266304731369, -0.05229216814041138,
- 0.009572243317961693, 0.04446752741932869, -0.0357184112071991, -0.0441075824201107,
- 0.053018562495708466, 0.04924621433019638, 0.0638740137219429, 0.0042436374351382256,
- 0.06648614257574081, -0.06703134626150131, -0.033200234174728394, 0.019692428410053253,
- 0.08710576593875885, 0.0755714476108551, -0.05040602385997772, -0.014569963328540325,
- -0.0052559711039066315, -0.11554471403360367, -0.005410294514149427,
- 0.11466650664806366, 0.0548819825053215, 0.05035699903964996, 0.05908888578414917,
- -0.09240101277828217, -0.03236028924584389, 0.10447442531585693, 0.03308209031820297,
- 0.0267182569950819, 0.022873926907777786, -0.07630890607833862, -0.021503299474716187,
- 0.13841059803962708, -0.02928755432367325, -0.003787458408623934, 0.0193229541182518,
- -0.038617074489593506, 0.09851954877376556, 0.06390002369880676, 0.03636293113231659,
- 0.012912534177303314, -0.01516688708215952, -0.014988187700510025, 0.017896302044391632,
- -0.0024082758463919163, 0.017469018697738647, 0.024758728221058846, -0.1366015374660492,
- -0.09197252988815308, 0.042114220559597015, 0.08011920750141144, -0.0012473540846258402,
- -0.15302246809005737, -0.02391514927148819, -0.02894214354455471
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 178,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 175,
- "similarity": 0.9984602928161621
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 187,
- "similarity": 0.9983932375907898
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 68,
- "similarity": 0.9982765316963196
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Cody Godwin"],
- "epoch_date_downloaded": 1652659200,
- "epoch_date_modified": 1652832000,
- "epoch_date_submitted": 1652659200,
- "flag": null,
- "report_number": 1594,
- "source_domain": "usatoday.com",
- "submitters": ["AIAAIC"],
- "title": "Tesla collides with private jet while owner uses 'Smart Summon' mode",
- "url": "https://www.usatoday.com/videos/news/have-you-seen/2022/04/25/tesla-collides-private-jet-while-owner-using-smart-summon-mode/7439216001/"
- },
- {
- "__typename": "Report",
- "authors": ["Fred Lambert"],
- "epoch_date_downloaded": 1652400000,
- "epoch_date_modified": 1652745600,
- "epoch_date_submitted": 1652400000,
- "flag": null,
- "report_number": 1570,
- "source_domain": "electrek.co",
- "submitters": ["AIAAIC"],
- "title": "Tesla vehicle crashes into $3.5 million jet after being dangerously 'summoned' by owner",
- "url": "https://electrek.co/2022/04/22/tesla-vehicle-crashes-into-jet-dangerously-summoned-by-owner/"
- },
- {
- "__typename": "Report",
- "authors": ["Mikael Thalen"],
- "epoch_date_downloaded": 1652400000,
- "epoch_date_modified": 1652745600,
- "epoch_date_submitted": 1652400000,
- "flag": null,
- "report_number": 1569,
- "source_domain": "dailydot.com",
- "submitters": ["AIAAIC"],
- "title": "Tesla owner uses 'Smart Summon' feature, crashes into $3.5 million jet",
- "url": "https://www.dailydot.com/debug/tesla-crash-vision-jet-autpilot-video/"
- },
- {
- "__typename": "Report",
- "authors": ["Bhavya Sukheja"],
- "epoch_date_downloaded": 1652400000,
- "epoch_date_modified": 1652745600,
- "epoch_date_submitted": 1652400000,
- "flag": null,
- "report_number": 1568,
- "source_domain": "ndtv.com",
- "submitters": ["AIAAIC"],
- "title": "Viral Video: Driverless Tesla Crashes Into Private Jet As Owner Uses \"Smart Summon\" Feature",
- "url": "https://www.ndtv.com/offbeat/viral-video-driverless-tesla-crashes-into-private-jet-as-owner-uses-smart-summon-feature-2921071"
- },
- {
- "__typename": "Report",
- "authors": ["Natalie Colarossi"],
- "epoch_date_downloaded": 1652400000,
- "epoch_date_modified": 1652745600,
- "epoch_date_submitted": 1652400000,
- "flag": null,
- "report_number": 1567,
- "source_domain": "newsweek.com",
- "submitters": ["AIAAIC"],
- "title": "Video of Tesla in \"Smart Summon\" mode ramming $3M jet viewed 3.4M times",
- "url": "https://www.newsweek.com/video-tesla-smart-summon-mode-ramming-3m-jet-viewed-34m-times-1700310"
- },
- {
- "__typename": "Report",
- "authors": ["Ryan Fahey"],
- "epoch_date_downloaded": 1652400000,
- "epoch_date_modified": 1652745600,
- "epoch_date_submitted": 1652400000,
- "flag": null,
- "report_number": 1566,
- "source_domain": "mirror.co.uk",
- "submitters": ["AIAAIC"],
- "title": "Tesla on autopilot slams into £2.7million private jet before pushing it across Tarmac",
- "url": "https://www.mirror.co.uk/news/us-news/tesla-autopilot-slams-27million-private-26800475"
- },
- {
- "__typename": "Report",
- "authors": ["Andrew J. Hawkins"],
- "epoch_date_downloaded": 1652400000,
- "epoch_date_modified": 1652745600,
- "epoch_date_submitted": 1652400000,
- "flag": null,
- "report_number": 1565,
- "source_domain": "theverge.com",
- "submitters": ["AIAAIC"],
- "title": "A Tesla vehicle using ‘Smart Summon’ appears to crash into a $3.5 million private jet",
- "url": "https://www.theverge.com/2022/4/22/23037654/tesla-crash-private-jet-reddit-video-smart-summon"
- },
- {
- "__typename": "Report",
- "authors": ["Loukia Papadopoulos"],
- "epoch_date_downloaded": 1651017600,
- "epoch_date_modified": 1651017600,
- "epoch_date_submitted": 1651017600,
- "flag": null,
- "report_number": 1560,
- "source_domain": "interestingengineering.com",
- "submitters": ["Sean McGregor"],
- "title": "A Tesla Model Y crashes into a $3.5 million jet after being ‘summoned’",
- "url": "https://interestingengineering.com/tesla-model-y-crash-jet-summoned"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "openai",
- "name": "OpenAI"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "openai",
- "name": "OpenAI"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "underrepresented-groups",
- "name": "underrepresented groups"
- },
- {
- "__typename": "Entity",
- "entity_id": "minority-groups",
- "name": "Minority Groups"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1874, 1562, 1561],
- "vector": [
- -0.050852324813604355, 0.07679883390665054, -0.011589676141738892, -0.1135813370347023,
- 0.07405812293291092, 0.029617147520184517, 0.011255641467869282, 0.06077639386057854,
- 0.06388378143310547, -0.15816281735897064, -0.02230074256658554, 0.025530723854899406,
- 0.007198333274573088, -0.10946881771087646, 0.035095665603876114, -0.1253359168767929,
- -0.10501793771982193, -0.04100961238145828, -0.0401742160320282, -0.14695094525814056,
- -0.09938883036375046, -0.006043221801519394, 0.011453350074589252, 0.04587647318840027,
- -0.07796955853700638, 0.03943851217627525, 0.09200150519609451, 0.10757545381784439,
- -0.06566203385591507, 0.05692018195986748, -0.033524807542562485, -0.060564130544662476,
- 0.14739519357681274, 0.02768387459218502, -0.0009832074865698814, 0.08662039786577225,
- 0.03869723156094551, -0.01587391458451748, -0.034324586391448975, -0.003191607305780053,
- 0.018707551062107086, 0.2577143609523773, -0.0416841059923172, -0.03176911920309067,
- 0.03891359269618988, -0.044436972588300705, -0.0017693393165245652, 0.03192620351910591,
- 0.02005842514336109, 0.024510322138667107, 0.009379175491631031, 0.004984011873602867,
- -0.04744408652186394, 0.03642456233501434, -0.09463522583246231, 0.056196462363004684,
- 0.033291880041360855, -0.02973843924701214, 0.05331021919846535, -0.07291699200868607,
- -0.022997887805104256, -0.1892581582069397, -0.015675604343414307, -0.06951505690813065,
- 0.06434600055217743, -0.08473045378923416, 0.017920177429914474, 0.07551446557044983,
- 0.026485756039619446, 0.05419095978140831, 0.05199296772480011, -0.03716857358813286,
- -0.0698133036494255, 0.015057038515806198, 0.0070924521423876286, -0.02956482023000717,
- -0.005262681748718023, 0.2015841007232666, -0.0999796986579895, 0.03616048023104668,
- 0.08916964381933212, -0.10358968377113342, 0.3812107741832733, 0.023637108504772186,
- -0.02829211764037609, 0.02991526760160923, 0.08880603313446045, 0.02730947732925415,
- 0.029620297253131866, 0.003166541224345565, -0.010865726508200169, 0.04575791954994202,
- -0.05090906843543053, -0.05181829258799553, 0.08176041394472122, 0.028776362538337708,
- 0.004956727381795645, -0.08498834818601608, -0.007311565801501274, -0.04612487554550171,
- -0.014722338877618313, -0.033448074012994766, 0.11346548795700073, 0.10250064730644226,
- -0.057330887764692307, 0.003178003476932645, 0.07969807833433151, -0.019601603969931602,
- 0.05521950498223305, -0.07011507451534271, 0.028725916519761086, -0.0027087971102446318,
- 0.0691356435418129, -0.009799190796911716, 0.0221573393791914, -0.04119109734892845,
- 0.017083650454878807, 0.07252078503370285, 0.10207460075616837, 0.09556952118873596,
- 0.017504600808024406, 0.04187799617648125, 0.07367771863937378, -0.08482112735509872,
- -0.05654296278953552, -0.015225045382976532, -0.017685560509562492,
- -0.023223504424095154, -0.007313219830393791, 0.07202626019716263, -0.05254319682717323,
- -0.2432670146226883, 0.020579537376761436, 0.05922265723347664, -0.054065246134996414,
- -0.03812381625175476, 0.013997998088598251, -0.08382666856050491, 0.01876145415008068,
- -0.02634567581117153, -0.013812114484608173, 0.056912899017333984,
- 0.0008828130667097867, 0.03761287406086922, 0.06711667031049728, 0.03589655086398125,
- -0.06881318241357803, -0.05056576803326607, -0.012363620102405548, -0.04889398813247681,
- 0.11849308758974075, -0.12668907642364502, -0.046788569539785385, -0.03433981165289879,
- -0.021899407729506493, 0.7027173042297363, 0.12824209034442902, 0.1808844804763794,
- 0.017676500603556633, -0.015660567209124565, 0.17763735353946686, -0.014716822654008865,
- 0.07922455668449402, -0.11904680728912354, -0.04321632906794548, 0.022249845787882805,
- -0.08427354693412781, -0.03848959133028984, -0.01360393688082695, 0.004161466378718615,
- 0.08658444881439209, 0.043199557811021805, 0.08954372256994247, 0.026356741786003113,
- -0.10070985555648804, -0.04503842815756798, 0.07469003647565842, 0.02474607527256012,
- -0.1547088325023651, -0.020968688651919365, 0.05093100294470787, 0.08214985579252243,
- -0.06290382146835327, 0.006970121990889311, -0.06427673250436783, 0.05643761157989502,
- -0.017088551074266434, 0.0522804819047451, -0.010621309280395508, 0.05755707621574402,
- 0.06768736988306046, 0.05345723032951355, -0.018629638478159904, -0.1164846122264862,
- 0.01565798930823803, 0.0936170145869255, -0.015423913486301899, -0.039724964648485184,
- 0.08415483683347702, -0.08918841928243637, 0.03032430075109005, -0.005651410669088364,
- 0.17212991416454315, -0.11767971515655518, 0.039297960698604584, -0.011632838286459446,
- -0.019373809918761253, 0.03482348844408989, -0.016367821022868156, -0.07000471651554108,
- -0.05259561538696289, 0.07879357784986496, 0.01272610668092966, 0.06851612776517868,
- 0.05171138420701027, -0.024689974263310432, 0.049343448132276535, 0.08589600771665573,
- 0.019332759082317352, -0.043767958879470825, 0.06926184892654419, 0.06627140939235687,
- -0.05898534879088402, -0.037378933280706406, 0.03599664941430092, 0.013797718100249767,
- 0.016733944416046143, -0.025494277477264404, 0.051254477351903915, 0.008691759780049324,
- -0.04388662800192833, 0.048308346420526505, 0.029519924893975258, 0.010333654470741749,
- 0.08929100632667542, -0.03389114513993263, -0.05558536574244499, -0.014277455396950245,
- -0.02326424978673458, 0.02123185247182846, -0.004852890968322754, 0.08870621770620346,
- 0.13567598164081573, 0.06545079499483109, 0.03645084425806999, 0.02959406189620495,
- 0.07269671559333801, 0.025364642962813377, -0.015373658388853073, 0.05948014184832573,
- -0.01791854202747345, -0.07173682004213333, -0.014798431657254696, -0.00989509280771017,
- 0.02417604625225067, -0.0070280469954013824, -0.07228022068738937,
- -0.029738331213593483, -0.04072133079171181, -0.0348740853369236, -0.08925553411245346,
- -0.057207826524972916, 0.011755988001823425, 0.022750983014702797, -0.04053621366620064,
- -0.09916955232620239, -0.0746920108795166, 0.012657124549150467, 0.10643105953931808,
- -0.031005678698420525, -0.022899791598320007, -0.11075035482645035,
- 0.019769005477428436, -0.034228064119815826, 0.04078594595193863, 0.003334225155413151,
- -0.0025298837572336197, 0.0019068619003519416, -0.07078651338815689, 0.0519489161670208,
- 0.01934017427265644, -0.04537217691540718, -0.002749410690739751, -0.09018998593091965,
- -0.021291561424732208, -0.012237879447638988, 0.018358252942562103,
- -0.053089991211891174, 0.01893409714102745, 0.05050037428736687, 0.0748400092124939,
- -0.03946341201663017, -0.02646465040743351, 0.054684221744537354, -0.03922383859753609,
- -0.009759851731359959, 0.10221271961927414, -0.05980566143989563, 0.04420321807265282,
- -0.0009960971074178815, -0.06340193748474121, -0.04486092925071716,
- 0.004946211352944374, -0.03416723385453224, 0.058185875415802, -0.016402648761868477,
- -0.0022244038991630077, -0.04022073373198509, -0.019720742478966713,
- 0.06742366403341293, -0.056690335273742676, -0.0886685848236084, -0.07486734539270401,
- 0.10962415486574173, -0.030454719439148903, -0.02233281545341015, 0.0064324685372412205,
- -0.04555882140994072, 0.04536056146025658, -0.013179585337638855, 0.013884137384593487,
- 0.03771330043673515, 0.09567568451166153, -0.00037859156145714223, 0.04062647745013237,
- 0.07478605955839157, -0.038479775190353394, 0.02257957123219967, 0.08637642115354538,
- 0.44457051157951355, -0.11716306209564209, 0.09916486591100693, 0.11227604001760483,
- 0.0022241249680519104, 0.06071775034070015, -0.039578694850206375, 0.05510720610618591,
- 0.07554636150598526, 0.13240031898021698, 0.11646809428930283, -0.041902512311935425,
- 0.02469721995294094, -0.06471531838178635, 0.1001029834151268, -0.0070588053204119205,
- 0.026179691776633263, -0.01269035879522562, -0.046984609216451645, 0.014778248965740204,
- 0.0341687947511673, -0.06959624588489532, 0.02120688371360302, -0.030342308804392815,
- -0.028750509023666382, 0.008641391061246395, -0.013031641952693462,
- 0.030357494950294495, 0.004016289487481117, 0.05545052886009216, -0.03276200219988823,
- 0.04506045579910278, 0.039107900112867355, 0.04070684313774109, -0.11235055327415466,
- 0.014964585192501545, -0.06562390178442001, -0.11205556243658066, 0.04012513533234596,
- 0.004348366986960173, 0.07221904397010803, 0.05658404901623726, -0.034527432173490524,
- 0.08985207229852676, -0.014524921774864197, -0.03451184555888176, 0.012910454533994198,
- 0.05305439606308937, 0.015110716223716736, 0.06028323248028755, 0.14529843628406525,
- -0.03205924853682518, 0.009597496129572392, -0.10934946686029434, 0.06401273608207703,
- 0.11694037914276123, -0.00824215728789568, 0.023853644728660583, 0.03344864770770073,
- 0.010271471925079823, -0.016486169770359993, -0.03723403811454773, -0.10117020457983017,
- -0.027118908241391182, -0.059813279658555984, 0.07238361984491348, 0.04210646077990532,
- -0.024271167814731598, -0.1763053983449936, -0.004530605394393206, -0.02342914044857025,
- 0.03182695433497429, 0.11650586128234863, -0.08541993051767349, 0.06593967229127884,
- 0.0022920321207493544, -0.0034246400464326143, 0.018103672191500664,
- -0.07417956739664078, -0.021501632407307625, -0.03658886253833771, 0.04779057577252388,
- 0.037189971655607224, 0.03527184948325157, -0.039868537336587906, 0.10992908477783203,
- -0.07996277511119843, 0.08103177696466446, -0.028985828161239624, -0.02027531899511814,
- 0.021612970158457756, -0.06225581094622612, 0.04395867884159088, 0.0274196807295084,
- -0.060329925268888474, -0.01696082577109337, -0.037491533905267715,
- -0.031002044677734375, -0.08572974801063538, -0.09751351922750473,
- -0.041561271995306015, -0.09938307851552963, 0.039856817573308945, -0.07065633684396744,
- -0.008086749352514744, -0.04222462698817253, -0.015861062332987785,
- -0.015992620959877968, -0.007934504188597202, 0.0065661706030368805,
- -0.16151586174964905, -0.009576628915965557, -0.0004940647631883621,
- 0.047249507158994675, -0.051082294434309006, -0.05753473937511444, 0.009046030230820179,
- 0.07862117886543274, 0.02323579043149948, -0.008844071067869663, 0.015335649251937866,
- -0.08337236195802689, 0.04084039852023125, -0.14110498130321503, -0.317148357629776,
- 0.022980421781539917, 0.0049519711174070835, 0.0492846854031086, -0.002605508081614971,
- -0.06462293118238449, 0.06252291053533554, 0.02725452184677124, -0.05348949134349823,
- 0.08239731192588806, -0.05726124346256256, 0.0341886542737484, -0.06986316293478012,
- -0.05737129971385002, -0.01764407567679882, -0.08434519171714783, -0.031418006867170334,
- -0.0023156728129833937, -0.004179037641733885, -0.06505554169416428,
- -0.10522478818893433, 0.06153082847595215, -0.019923942163586617, 0.026421770453453064,
- 0.02982170693576336, 0.03102862648665905, -0.0556689091026783, -0.04384481534361839,
- 0.024997321888804436, 0.06853578239679337, 0.02035619504749775, -0.08277402073144913,
- -0.024328529834747314, 0.05413101986050606, 0.042590513825416565, 0.10358435660600662,
- 0.04500254988670349, -0.008778193034231663, -0.09676917642354965, 0.11888211220502853,
- 0.07538377493619919, 0.18357710540294647, -0.017721034586429596, -0.03289375826716423,
- -0.0028329582419246435, 0.12262163311243057, 0.07602940499782562, 0.036566849797964096,
- -0.018992483615875244, 0.008699472062289715, 0.030236124992370605, -0.01152616087347269,
- 0.10641171783208847, -0.09607305377721786, -0.03173302486538887, -0.021016262471675873,
- -0.0458139069378376, -0.037962839007377625, -0.020281286910176277, 0.21252459287643433,
- 0.030574416741728783, 0.024346748366951942, 0.03642519935965538, -0.06261247396469116,
- 0.005800426006317139, -0.11334627121686935, -0.06801258772611618, 0.001965584931895137,
- 0.007279546931385994, 0.01933821104466915, -0.03466011583805084, -0.12384823709726334,
- -0.022050684317946434, -0.015298045240342617, 0.007098274305462837, 0.12334895879030228,
- -0.030100181698799133, 0.021126873791217804, -0.041657790541648865, 0.14013181626796722,
- 0.021206244826316833, -0.002488949568942189, 0.042397115379571915, 0.08505713939666748,
- 0.03442341461777687, 0.03255220130085945, -0.006456224713474512, -0.11326088756322861,
- -0.03759009763598442, 0.14344121515750885, -0.028904765844345093, 0.10307488590478897,
- 0.026902392506599426, 0.0036253270227462053, -0.048613082617521286, 0.04105313494801521,
- -0.02957203984260559, -0.032845523208379745, -0.40499749779701233, -0.03415961191058159,
- 0.128972589969635, 0.03895600140094757, 0.005525562912225723, 0.06683362275362015,
- 0.021016277372837067, -0.05586531385779381, -0.004846852272748947, -0.10648730397224426,
- 0.12771885097026825, 0.011015408672392368, 0.08152291178703308, -0.05562887713313103,
- 0.00015818762767594308, 0.09196380525827408, -0.018553009256720543, 0.03764132782816887,
- 0.05135302618145943, -0.20718832314014435, -0.01378746796399355, -0.01713392324745655,
- 0.14013119041919708, 0.02498980611562729, 0.03272842988371849, 0.08347800374031067,
- -0.06214788556098938, 0.012842460535466671, 0.041963841766119, -0.010841958224773407,
- 0.06736203283071518, -0.005650699138641357, -0.00970542337745428, 0.07997375726699829,
- 0.10877901315689087, 0.03112463653087616, 0.010822254233062267, 12.12929630279541,
- 0.04583273455500603, 0.04838980361819267, -0.08857879787683487, -0.0023031358141452074,
- -0.050139542669057846, 0.0347905196249485, -0.14514677226543427, 0.0491381473839283,
- 0.14337609708309174, -0.0273730605840683, -0.05609353259205818, 0.0011095922673121095,
- -0.0858786329627037, 0.01172531396150589, -0.045340850949287415, -0.05005459487438202,
- -0.021931329742074013, 0.04984131455421448, -0.048551008105278015, -0.06535883247852325,
- 0.04766185209155083, 0.07287298887968063, 0.020573217421770096, -0.04457293078303337,
- 0.01828674040734768, 0.0033185749780386686, -0.03756248205900192,
- -0.0046448842622339725, 0.015440729446709156, 0.007876619696617126, 0.04539574682712555,
- 0.06694937497377396, -0.006957640405744314, 0.01743893139064312, 0.08224969357252121,
- 0.06412187963724136, 0.06016291677951813, 0.01554099004715681, 0.04644802212715149,
- -0.020522378385066986, 0.02037341333925724, 0.021434294059872627, 0.036898743361234665,
- 0.0693194791674614, 0.0411318801343441, 0.05104409158229828, 0.12743544578552246,
- 0.01894952915608883, 0.07666650414466858, 0.07661668211221695, -0.0008751365239731967,
- 0.08633381128311157, 0.008462629280984402, -0.0360143706202507, 0.08568469434976578,
- -0.01953199692070484, -0.10034026950597763, 0.10895910859107971, 0.06256373971700668,
- -0.055136438459157944, 0.14399385452270508, 0.04638126119971275, 0.09686371684074402,
- 0.04977977275848389, 0.00624195858836174, 0.08953956514596939, 0.0331195704638958,
- -0.1286022663116455, -0.06730970740318298, 0.008767877705395222, -0.10157022625207901,
- -0.07740768045186996, 0.10295144468545914, 0.11196287721395493, -0.03211067244410515,
- 0.07764119654893875, -0.02097035013139248, 0.02600918523967266, -0.03429647907614708,
- 0.021760446950793266, 0.04444218799471855, -0.04497511684894562, 0.047066718339920044,
- 0.020802119746804237, 0.029137030243873596, 0.04254169762134552, 0.09403234720230103,
- 0.025244610384106636, -0.1094508245587349, -0.05150382220745087, 0.11323272436857224,
- -0.016091855242848396, -0.07066569477319717, 0.032091815024614334, -0.08512929826974869,
- 0.030925149098038673, -0.16106970608234406, 0.08356409519910812, 0.10216311365365982,
- -0.07876523584127426, -0.03494894877076149, -0.028543921187520027, 0.08432036638259888,
- 0.009360741823911667, 0.025685584172606468, -0.0710819661617279, -0.0005573180387727916,
- 0.027891037985682487, 0.04396704211831093, -0.03061997890472412, 0.05964619293808937,
- 0.07907569408416748, -0.04696172475814819, 0.02970784343779087, 0.0565057136118412,
- -0.028017044067382812, -0.01644275151193142, 0.07146283239126205, 0.0511319674551487,
- -0.08678088337182999, -0.04900640249252319, -0.048230964690446854,
- -0.035960398614406586, -0.004412835463881493, -0.05297323688864708,
- -0.0017081418773159385, 0.022246262058615685, -0.021964073181152344,
- -0.019780581817030907, 0.03740164265036583, 0.09453782439231873, 0.12405232340097427,
- -0.0268563125282526, 0.06257397681474686, -0.0512467622756958, -0.00926214735955,
- 0.02512611448764801, 0.04425523057579994, 0.07876083254814148, -0.05641470476984978,
- -0.029695143923163414, -0.06918095052242279, -0.15564657747745514, 0.00864076241850853,
- 0.08734411746263504, 0.06671875715255737, 0.04632909595966339, 0.029687969014048576,
- -0.09085776656866074, -0.06623820215463638, 0.09823378175497055, 0.029717108234763145,
- 0.0020717617589980364, 0.06950625777244568, -0.055196866393089294,
- -0.029351389035582542, 0.08244243264198303, -0.06307913362979889, -0.041193604469299316,
- 0.004234701860696077, -0.11938511580228806, 0.12363237887620926, 0.10418052226305008,
- 0.04591098427772522, 0.04520717263221741, 0.05305333808064461, -0.0338510200381279,
- 0.04961513355374336, 0.005034379195421934, 0.03701232746243477, -0.03561563417315483,
- -0.07371698319911957, -0.08104979246854782, 0.0302747655659914, 0.088785320520401,
- 0.06037804111838341, -0.13023248314857483, -0.0015197467291727662, -0.07514241337776184
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 179,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 13,
- "similarity": 0.9984670281410217
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 146,
- "similarity": 0.9983060956001282
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 41,
- "similarity": 0.9982810020446777
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Matthew Sparkes"],
- "epoch_date_downloaded": 1660089600,
- "epoch_date_modified": 1660089600,
- "epoch_date_submitted": 1660089600,
- "flag": null,
- "report_number": 1874,
- "source_domain": "newscientist.com",
- "submitters": ["Khoa Lam"],
- "title": "AI art tool DALL-E 2 adds 'black' or 'female' to some image prompts",
- "url": "https://www.newscientist.com/article/2329690-ai-art-tool-dall-e-2-adds-black-or-female-to-some-image-prompts/"
- },
- {
- "__typename": "Report",
- "authors": [
- "Pamela Mishkin",
- "Lama Ahmad",
- "Miles Brundage",
- "Gretchen Krueger",
- "Girish Sastry"
- ],
- "epoch_date_downloaded": 1651017600,
- "epoch_date_modified": 1651017600,
- "epoch_date_submitted": 1651104000,
- "flag": null,
- "report_number": 1562,
- "source_domain": "github.com",
- "submitters": ["Sean McGregor"],
- "title": "DALL·E 2 Preview - Risks and Limitations",
- "url": "https://github.com/openai/dalle-2-preview/blob/main/system-card.md"
- },
- {
- "__typename": "Report",
- "authors": ["Sigal Samuel"],
- "epoch_date_downloaded": 1651104000,
- "epoch_date_modified": 1651017600,
- "epoch_date_submitted": 1649894400,
- "flag": null,
- "report_number": 1561,
- "source_domain": "vox.com",
- "submitters": ["Irina Borisova King"],
- "title": "A new AI draws delightful and not-so-delightful images",
- "url": "https://www.vox.com/future-perfect/23023538/ai-dalle-2-openai-bias-gpt-3-incentives"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "malaysian-judiciary",
- "name": "Malaysian judiciary"
- },
- {
- "__typename": "Entity",
- "entity_id": "malaysian-courts",
- "name": "Malaysian courts"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "sarawak-information-systems",
- "name": "Sarawak Information Systems"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "malaysian-convicted-people",
- "name": "Malaysian convicted people"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [2236, 1582, 1564],
- "vector": [
- -0.09138526767492294, 0.08325374871492386, 0.05311579629778862, -0.09582966566085815,
- 0.06180143356323242, -0.011708400212228298, -0.004364002030342817, 0.07358453422784805,
- 0.05331004783511162, -0.09685482829809189, 0.06703395396471024, 0.015675053000450134,
- 0.03781133517622948, -0.10194718837738037, 0.022670073434710503, -0.17703215777873993,
- -0.047439027577638626, -0.043937597423791885, -0.02928934060037136,
- -0.08589690178632736, -0.06267601251602173, -0.02084132842719555, 0.09045132249593735,
- 0.05305388569831848, -0.06523724645376205, 0.08346498012542725, 0.11273199319839478,
- 0.15814681351184845, -0.06393131613731384, 0.0367911271750927, -0.05271346494555473,
- -0.06744018942117691, 0.12628073990345, 0.030831659212708473, -0.02587173879146576,
- 0.08652028441429138, 0.04260784387588501, 0.0036679795011878014, 0.03567517548799515,
- -0.06979160755872726, 0.03555217757821083, 0.28313666582107544, 0.02266024984419346,
- -0.032652053982019424, 0.08944228291511536, -0.09162088483572006, 0.014338016510009766,
- 0.06505638360977173, -0.023714331910014153, 0.01213804166764021, 0.01728837750852108,
- 0.04657388851046562, -0.051490169018507004, 0.055803775787353516, -0.08957087248563766,
- 0.001981060253456235, 0.03791877627372742, 0.01104215532541275, 0.02567252703011036,
- -0.13537798821926117, -0.011991184204816818, -0.24602095782756805, -0.04500608146190643,
- -0.13952243328094482, 0.11820071190595627, -0.09694370627403259, -0.08811444044113159,
- -0.05922190845012665, 0.013756312429904938, 0.07626185566186905, 0.05805853009223938,
- 0.003181732026860118, 0.02671349234879017, -0.008619709871709347, 0.028501344844698906,
- 0.0031969405245035887, 0.051284149289131165, 0.25862565636634827, -0.14482314884662628,
- -0.05604439601302147, 0.13247333467006683, -0.10784059762954712, 0.4948348104953766,
- 0.0028240832034498453, 0.019536875188350677, -0.09969642013311386, 0.14820508658885956,
- 0.04263534024357796, 0.1004556342959404, 0.08824261277914047, -0.05314115062355995,
- 0.05293852090835571, -0.0720810666680336, -0.007452564779669046, 0.09731563180685043,
- 0.06579791009426117, -0.021273097023367882, 0.1252698302268982, -0.04763193055987358,
- -0.07966762781143188, -0.025715120136737823, -0.017427317798137665, 0.11660879105329514,
- 0.14595948159694672, -0.08687975257635117, -0.01687106303870678, 0.11237926036119461,
- -0.05859352648258209, 0.09113585948944092, -0.030965566635131836, 0.05424448847770691,
- 0.02462664060294628, 0.10923507064580917, -0.01058827806264162, -0.023473476991057396,
- -0.02986617386341095, 0.01692831702530384, 0.053468093276023865, 0.03443588688969612,
- 0.0002815950138028711, -0.05389481782913208, 0.022003786638379097, 0.12503111362457275,
- -0.04320305585861206, 0.024152042344212532, -0.059181828051805496, -0.02412438578903675,
- -0.07955384999513626, -0.01294215302914381, -0.02865510992705822, -0.0273407194763422,
- -0.14326724410057068, -0.03386636823415756, 0.05280214548110962, 0.06639615446329117,
- -0.0340425930917263, -0.01847829669713974, -0.04289516806602478, 0.06282702833414078,
- -0.030194690451025963, -0.05730360746383667, 0.07660484313964844, 0.02993788756430149,
- 0.06217831000685692, 0.15431435406208038, 0.05186901614069939, -0.047627393156290054,
- -0.058969855308532715, 0.00718342512845993, 0.049117278307676315, 0.1438269019126892,
- -0.1575014591217041, -0.05556809902191162, 0.04925774410367012, -0.040234845131635666,
- 0.6781112551689148, 0.05658669397234917, 0.19203032553195953, 0.011342372745275497,
- -0.04170664772391319, 0.2012958973646164, 0.10990068316459656, 0.06241534277796745,
- -0.08977329730987549, -0.04451926052570343, -0.0027229662518948317,
- -0.05415182188153267, -0.061353351920843124, 0.02662615478038788, 0.05679009482264519,
- 0.1651798039674759, -0.014743584208190441, 0.0991806760430336, -0.06001732125878334,
- -0.07747906446456909, -0.031907230615615845, 0.09620771557092667, 0.012715179473161697,
- -0.09045972675085068, -0.04873551428318024, 0.04839940369129181, 0.05623579025268555,
- -0.06632261723279953, 0.03812263533473015, -0.05284582078456879, 0.07089616358280182,
- -0.004514423664659262, 0.08966951817274094, -0.03066069446504116, 0.0034611050505191088,
- 0.04018508270382881, 0.06503239274024963, 0.03632204234600067, -0.09822454303503036,
- -0.046104054898023605, 0.048723746091127396, 0.04717667028307915, 0.010138887912034988,
- 0.10064958781003952, -0.13603872060775757, -0.016330821439623833, -0.02807287871837616,
- 0.12769265472888947, -0.09710481017827988, 0.00649751303717494, -0.040233153849840164,
- -0.07215910404920578, 0.11545722931623459, -0.012263624928891659, -0.08407773822546005,
- -0.0360579639673233, 0.04952172562479973, -0.0038649337366223335, 0.03953523561358452,
- 0.07529088109731674, 0.002173996763303876, 0.09316796064376831, 0.14990220963954926,
- 0.03241404891014099, 0.01974252052605152, 0.0646452084183693, 0.05762450024485588,
- -0.031815771013498306, 0.027021171525120735, 0.045090287923812866, -0.03171372786164284,
- 0.0011848248541355133, -0.011104755103588104, 0.03878645971417427,
- -0.026248076930642128, -0.041384514421224594, -0.037133846431970596,
- -0.0012658940395340323, -0.005296284332871437, 0.13896577060222626, -0.0506848581135273,
- -0.024687251076102257, -0.03239250183105469, -0.020607059821486473, 0.04205977916717529,
- -0.03860874101519585, 0.09830588102340698, 0.10818389803171158, 0.07220565527677536,
- 0.05539756640791893, 0.054304227232933044, -0.01228929590433836, 0.09006229788064957,
- 0.09902840852737427, 0.07451481372117996, -0.0012496630661189556, -0.10405480861663818,
- -0.02720317803323269, 0.04695379361510277, 0.07717806845903397, 0.058435019105672836,
- -0.06600788980722427, -0.034735795110464096, 0.0027247059624642134,
- -0.08645182847976685, -0.05662664771080017, 0.019085891544818878, -0.00392871955409646,
- 0.06237487122416496, -0.017448393628001213, -0.11296460777521133, -0.08496441692113876,
- 0.004814044572412968, 0.056724850088357925, -0.0025632318574935198,
- -0.050667136907577515, -0.12347028404474258, -0.008519436232745647,
- -0.025736616924405098, 0.09203585237264633, -0.018028877675533295, 0.05329311266541481,
- 0.025100156664848328, -0.05787206068634987, 0.04571833834052086, 0.006159523036330938,
- -0.014048751443624496, -0.011061140336096287, -0.05617733672261238,
- -0.07250652462244034, 0.01598142646253109, 0.010080541484057903, 0.02404067851603031,
- 0.03984412923455238, 0.03250427916646004, 0.05117407813668251, -0.01801089383661747,
- -0.034332383424043655, 0.0920209214091301, -0.03828483447432518, 0.009271043352782726,
- 0.12321213632822037, -0.12051073461771011, 0.0408778190612793, -0.03177792206406593,
- -0.07220946997404099, -0.038175638765096664, 0.010993941687047482, -0.0843527540564537,
- 0.003115355968475342, -0.06219063326716423, 0.005680053029209375, -0.05183054879307747,
- -0.04798847436904907, 0.11209472268819809, -0.11961323767900467, -0.035312749445438385,
- -0.09739309549331665, 0.07104960083961487, 0.015982216224074364, -0.024937288835644722,
- 0.012798297218978405, -0.053077638149261475, -0.020725155249238014,
- -0.017840905115008354, 0.03633084520697594, 0.04522204026579857, 0.06488945335149765,
- -0.015523563139140606, -0.040864553302526474, 0.06932803988456726,
- -0.056157615035772324, -0.01468617096543312, 0.12366694211959839, 0.4433670938014984,
- -0.11826074868440628, 0.13863034546375275, 0.11426713317632675, -0.017119379714131355,
- 0.05102381482720375, -0.04941505566239357, 0.062080979347229004, 0.06232088804244995,
- 0.11268452554941177, 0.09768489003181458, -0.02457229048013687, -0.08902063965797424,
- -0.09814450144767761, 0.0602414608001709, -0.011426548473536968, 0.0003247865824960172,
- 0.010571293532848358, -0.10645303875207901, -0.014098691754043102, 0.010256213136017323,
- -0.07407476752996445, 0.010664056986570358, 0.0027848302852362394,
- -0.029348447918891907, 0.06229317560791969, 0.019123757258057594, 0.02236541174352169,
- -0.003511509858071804, 0.04411492124199867, -0.10339009761810303, 0.06770933419466019,
- 0.023746497929096222, -0.00402667885646224, -0.1485162079334259, 0.0322585254907608,
- -0.13709621131420135, -0.10000690817832947, 0.14615920186042786, 0.035956140607595444,
- 0.057284656912088394, 0.09165050834417343, -0.11177369207143784, 0.08529693633317947,
- -0.10108832269906998, -0.0512569360435009, 0.051207512617111206, 0.020686114206910133,
- 0.028050802648067474, 0.031564172357320786, 0.1805812120437622, -0.0558258555829525,
- -0.0737236961722374, -0.14088977873325348, 0.10129085183143616, 0.14231081306934357,
- -0.022275371477007866, 0.019882572814822197, -0.05328303202986717,
- -0.0032392533030360937, 0.022901758551597595, -0.07284457236528397,
- -0.06822358816862106, 0.0234422255307436, -0.06916745752096176, 0.08501536399126053,
- 0.055230628699064255, 0.03255540877580643, -0.13203991949558258, -0.016927897930145264,
- -0.026878848671913147, 0.021088341251015663, 0.07309933006763458, 0.017623772844672203,
- 0.030215905979275703, -0.013681899756193161, -0.012558415532112122,
- 0.024482494220137596, -0.11026789993047714, 0.014338974840939045, -0.02819383144378662,
- 0.054173797369003296, 0.001682644709944725, 0.05732464790344238, -0.04323411360383034,
- 0.11683503538370132, -0.08742696046829224, 0.07122426480054855, 0.025011949241161346,
- -0.07513872534036636, 0.08922100812196732, -0.05315585806965828, 0.04980072006583214,
- 0.04267992079257965, -0.046102073043584824, 0.021177925169467926, 0.011548272334039211,
- -0.0654497966170311, -0.14198851585388184, -0.03139347955584526, -0.017763160169124603,
- -0.12204479426145554, 0.056750569492578506, -0.05192376300692558, -0.047616373747587204,
- -0.0029826899990439415, -0.030426235869526863, -0.03716165944933891,
- 0.00886180717498064, 0.08834657818078995, -0.13174553215503693, 0.0031079829204827547,
- -0.04102301225066185, 0.05751149356365204, -0.0463898628950119, -0.10011422634124756,
- 0.07657551020383835, 0.08012866228818893, 0.0788445919752121, -0.012404684908688068,
- 0.05159324035048485, -0.06717350333929062, 0.0730249434709549, -0.10119596123695374,
- -0.4492388069629669, 0.08507180958986282, 0.00040161237120628357, 0.06611928343772888,
- 0.03064427338540554, -0.08459611982107162, 0.0799831673502922, 0.032514046877622604,
- -0.10339867323637009, 0.06650009006261826, -0.07159365713596344, 0.03370720148086548,
- -0.011673751287162304, -0.07224966585636139, -0.033106956630945206,
- -0.061399269849061966, -0.033120110630989075, 0.11548880487680435, -0.03508422151207924,
- -0.10819043964147568, -0.10699786990880966, 0.027832651510834694, 0.030556296929717064,
- -0.03048921562731266, -0.023344457149505615, -0.04450489208102226, -0.07158147543668747,
- -0.007861542515456676, 0.06024957820773125, 0.015985019505023956, -0.0114314379170537,
- -0.07365623861551285, 0.01802944578230381, 0.07780064642429352, -0.01680014468729496,
- 0.09062368422746658, 0.05511419102549553, -0.034243393689394, -0.14108316600322723,
- 0.11117608100175858, 0.08782850950956345, 0.18036039173603058, -0.04347873106598854,
- 0.02361578680574894, -0.008872940205037594, 0.16345646977424622, 0.02087424136698246,
- 0.05312902852892876, -0.049681406468153, 0.005875490605831146, 0.05980229005217552,
- -0.012198149226605892, 0.07361561805009842, -0.06706663221120834, -0.010318807326257229,
- -0.05443131923675537, -0.03087463416159153, -0.059220943599939346, 0.00875900499522686,
- 0.2298620343208313, 0.0422024130821228, 0.015530253760516644, 0.05525966361165047,
- -0.08209813386201859, -0.018034793436527252, -0.06591016054153442, -0.12179818004369736,
- -0.022565314546227455, -0.032022323459386826, -0.005002748221158981,
- -0.06184052303433418, -0.125209778547287, -0.03468450531363487, -0.00112865527626127,
- 0.012496600858867168, 0.03626089170575142, -0.0474008284509182, 0.04941338300704956,
- -0.05274403095245361, 0.09395215660333633, 0.07713018357753754, 0.06546381115913391,
- 0.02364152856171131, 0.1023460328578949, -0.04334646835923195, -0.02219301462173462,
- -0.032898228615522385, -0.08551277965307236, -0.06052103638648987, 0.1404242068529129,
- -0.061367571353912354, 0.04815192148089409, 0.02040097862482071, -0.11389867216348648,
- -0.05503367260098457, -0.005385290831327438, -0.022425295785069466,
- 0.024629801511764526, -0.4484728276729584, -0.024156702682375908, 0.18813300132751465,
- 0.001061997376382351, -0.009602990932762623, 0.07818196713924408, 0.02842245064675808,
- -0.03658154606819153, 0.0565602071583271, -0.12764489650726318, 0.1734492927789688,
- 0.045965734869241714, 0.11459030956029892, -0.13073019683361053, 0.020623380318284035,
- 0.04670913890004158, -0.09325794130563736, 0.00934011209756136, 0.05052395164966583,
- -0.311469167470932, 0.0008089582552202046, -0.06011103093624115, 0.12338844686746597,
- 0.012887395918369293, 0.0654364749789238, 0.07886084914207458, -0.061203569173812866,
- 0.052362699061632156, 0.04074046388268471, -0.004889945965260267, 0.02060657925903797,
- -0.01810448430478573, -0.02555394172668457, 0.11942064762115479, 0.013159905560314655,
- 0.04384951665997505, -0.04509418085217476, 12.285292625427246, 0.05794062092900276,
- 0.07339907437562943, -0.11552229523658752, -0.007435385137796402, -0.07661078870296478,
- 0.033452633768320084, -0.08536847680807114, 0.036937251687049866, 0.11489459127187729,
- -0.004645362962037325, -0.09244820475578308, -0.04548393562436104, -0.17045380175113678,
- -0.017089612782001495, -0.036655690521001816, -0.04023310914635658,
- -0.0032044730614870787, 0.06579452008008957, -0.07929777354001999,
- -0.055270206183195114, -0.00510104326531291, 0.04115461930632591, 0.023476922884583473,
- -0.06288052350282669, 0.025148695334792137, 0.0017016734927892685,
- -0.002504214644432068, 0.005646390374749899, 0.08318430930376053, 0.04496949911117554,
- 0.0020808186382055283, 0.024779418483376503, -0.024654433131217957,
- 0.047568127512931824, 0.009855304844677448, 0.06265364587306976, 0.08663611859083176,
- 0.062377799302339554, 0.08637913316488266, 0.02639283984899521, 0.027167296037077904,
- 0.022519052028656006, 0.04389400780200958, 0.07565774768590927, -0.007302549201995134,
- 0.0732211023569107, 0.08897382020950317, -0.00665344437584281, 0.09055238217115402,
- 0.07840090245008469, 0.026501206681132317, 0.09444694966077805, -0.01793147437274456,
- 0.01733427308499813, 0.061656560748815536, 0.01604325883090496, -0.05787283182144165,
- 0.09419244527816772, 0.0996878445148468, -0.05485640466213226, 0.13771213591098785,
- 0.07765122503042221, 0.07447516173124313, -0.0006831406499259174, 0.08788425475358963,
- 0.14935772120952606, 0.029251808300614357, -0.2145981788635254, -0.07378082722425461,
- -0.003629842773079872, -0.06691192835569382, -0.0907122865319252, 0.07699913531541824,
- 0.0742763951420784, -0.024556031450629234, 0.08610596507787704, -0.03632340580224991,
- 0.04932970926165581, -0.04906861111521721, -0.0665469691157341, 0.06147652491927147,
- -0.05800969526171684, -0.00818933267146349, 0.06622648984193802, 0.07254382222890854,
- 0.07689668983221054, 0.06973236799240112, -0.00406049145385623, -0.12887556850910187,
- -0.09122604131698608, 0.09484276920557022, -0.03126617148518562, -0.05887885019183159,
- -0.019679902121424675, 0.026085011661052704, 0.05114717409014702, -0.21930475533008575,
- 0.10747311264276505, 0.09572464227676392, -0.1725655198097229, 0.013313960283994675,
- -0.038461100310087204, 0.04430234432220459, 0.02505892515182495, 0.02130422554910183,
- -0.06786556541919708, 0.0878874659538269, 0.022490041330456734, 0.02337053418159485,
- -0.044970642775297165, 0.10311784595251083, 0.17129899561405182, -0.07179181277751923,
- 0.05030243471264839, 0.06170376017689705, -0.02038147859275341, -0.002750791609287262,
- 0.04036220908164978, 0.00884811207652092, -0.09530212730169296, -0.10066322237253189,
- -0.03613130375742912, -0.00901073683053255, -0.07627461105585098, -0.08304750174283981,
- -0.0026654608082026243, 0.08770184963941574, -0.042522117495536804, 0.02929685264825821,
- 0.024196693673729897, 0.05623543635010719, -0.009268742986023426, -0.03274397552013397,
- 0.048450767993927, -0.08743961900472641, -0.07721617817878723, 0.06170317158102989,
- 0.052542854100465775, 0.041116852313280106, -0.07222866266965866, -0.08711590617895126,
- -0.03180282935500145, -0.12621720135211945, -0.012704622000455856, 0.10780245065689087,
- 0.05643104389309883, 0.06586996465921402, 0.06240801140666008, -0.0828390121459961,
- -0.10583894699811935, 0.06366819143295288, 0.012489356100559235, 0.05440293624997139,
- 0.04848964884877205, -0.10057127475738525, -0.017277339473366737, 0.16570837795734406,
- -0.05495418235659599, 0.020730068907141685, -0.08737030625343323, 0.07212386280298233,
- 0.12823455035686493, 0.05179779604077339, 0.11779423803091049, 0.030339837074279785,
- 0.025480711832642555, 0.015044968575239182, -0.014961694367229939, -0.02292746491730213,
- 0.03971444442868233, -0.031183362007141113, -0.12788671255111694, -0.0658172219991684,
- -0.01500452309846878, 0.03275749459862709, 0.02968076430261135, -0.06990281492471695,
- -0.03548159822821617, -0.06324901431798935
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 180,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Rina Chandran"],
- "epoch_date_downloaded": 1667952000,
- "epoch_date_modified": 1667952000,
- "epoch_date_submitted": 1659312000,
- "flag": null,
- "report_number": 2236,
- "source_domain": "news.trust.org",
- "submitters": ["Sonali Pednekar (CSET)", "AIAAIC"],
- "title": "As Malaysia tests AI court sentencing, lawyers fear for justice",
- "url": "https://news.trust.org/item/20220411160005-k1a5o/"
- },
- {
- "__typename": "Report",
- "authors": ["Julia Chan"],
- "epoch_date_downloaded": 1652832000,
- "epoch_date_modified": 1652832000,
- "epoch_date_submitted": 1652832000,
- "flag": null,
- "report_number": 1582,
- "source_domain": "malaymail.com",
- "submitters": ["Khoa Lam"],
- "title": "In a local first, Sabah court gives out sentence assisted by AI",
- "url": "https://www.malaymail.com/news/malaysia/2020/02/19/in-a-local-first-sabah-court-gives-out-sentence-assisted-by-ai/1838906"
- },
- {
- "__typename": "Report",
- "authors": ["Olivia Miwil"],
- "epoch_date_downloaded": 1652659200,
- "epoch_date_modified": 1652745600,
- "epoch_date_submitted": 1652659200,
- "flag": null,
- "report_number": 1564,
- "source_domain": "nst.com.my",
- "submitters": ["Khoa Lam"],
- "title": "Malaysian judiciary makes history, uses AI in sentencing",
- "url": "https://www.nst.com.my/news/nation/2020/02/567024/malaysian-judiciary-makes-history-uses-ai-sentencing"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "cruise",
- "name": "Cruise"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "cruise",
- "name": "Cruise"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "cruise-vehicle",
- "name": "Cruise vehicle"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1572, 1571],
- "vector": [
- -0.07850705087184906, 0.06710003316402435, 0.0098930848762393, -0.05468673259019852,
- 0.05161808431148529, 0.0005984835443086922, -0.020572582259774208, 0.04828714579343796,
- 0.06802277266979218, -0.13679060339927673, -0.00801154226064682, 0.05336138978600502,
- 0.02253042347729206, -0.08693651854991913, 0.07422594726085663, -0.1296655833721161,
- -0.09077262878417969, -0.06135335564613342, -0.0015063825994729996,
- -0.09065187722444534, -0.08698949217796326, -0.022416777908802032, 0.024258948862552643,
- 0.09420689940452576, -0.054046258330345154, 0.015471312217414379, 0.0730520710349083,
- 0.08035273849964142, -0.041000328958034515, 0.0792270079255104, 0.00247737905010581,
- -0.07022461295127869, 0.13252854347229004, 0.008313021622598171, 0.01596006378531456,
- 0.11054559797048569, -0.00015926780179142952, -0.0112985260784626,
- -0.029319345951080322, 0.034326933324337006, 0.03696075826883316, 0.22920510172843933,
- -0.01680907979607582, -0.013375462964177132, 0.03600151091814041, -0.07175587117671967,
- 0.018203742802143097, 0.04017907753586769, 0.0231314804404974, 0.042343273758888245,
- -0.006202765740454197, 0.08139988780021667, -0.014027776196599007, 0.035622093826532364,
- -0.12219303846359253, 0.05388491600751877, 0.01679493859410286, -0.03157525137066841,
- 0.0517984963953495, -0.08827393501996994, -0.055333200842142105, -0.27341270446777344,
- -0.06302544474601746, -0.09617018699645996, 0.10262294113636017, -0.09803494811058044,
- -0.02947123534977436, 0.0028212987817823887, 0.035146988928318024, 0.0827329084277153,
- 0.0836290717124939, -0.005216224119067192, -0.017572490498423576, 0.03637101128697395,
- -0.0071330987848341465, -0.0024312431924045086, -0.004652494564652443,
- 0.19195303320884705, -0.13232459127902985, -0.02285892330110073, 0.08613317459821701,
- -0.13210931420326233, 0.4502090513706207, 0.059669606387615204, -0.03994480147957802,
- -0.066798135638237, 0.09331768751144409, 0.001789819449186325, 0.04854990914463997,
- 0.05994610860943794, -0.08805377781391144, -0.002367682522162795, -0.08669670671224594,
- -0.0028115452732890844, 0.062378957867622375, 0.04647623747587204,
- -0.023037711158394814, 0.05222691595554352, -0.03442396596074104, -0.036704812198877335,
- 0.07658499479293823, -0.07450783252716064, 0.07074717432260513, 0.0051537174731493,
- -0.02390693873167038, 0.0085008405148983, 0.11837156862020493, -0.0028912541456520557,
- 0.04897690564393997, -0.055813126266002655, -0.00008835922926664352,
- 0.06104731932282448, 0.03003877028822899, 0.024358581751585007, 0.02546725980937481,
- -0.084745854139328, 0.012742230668663979, 0.04272625595331192, 0.09209410846233368,
- -0.00448588514700532, -0.04488775134086609, 0.04027988016605377, 0.06994802504777908,
- -0.10694634914398193, -0.015668045729398727, -0.04834436997771263,
- -0.005286307539790869, -0.05822038650512695, -0.0545136034488678, 0.04241335391998291,
- -0.05237933248281479, -0.22351768612861633, -0.006030873395502567, 0.1003006100654602,
- 0.04547363519668579, -0.025016337633132935, -0.01713031902909279, -0.11186162382364273,
- 0.035620059818029404, -0.0069538988173007965, -0.00973994005471468,
- 0.061642542481422424, -0.00005542673170566559, 0.034131959080696106,
- 0.09973626583814621, 0.07012377679347992, -0.04415103420615196, -0.032223764806985855,
- 0.031917765736579895, -0.011388066224753857, 0.09020034223794937, -0.07768326252698898,
- -0.05721188336610794, 0.008453520014882088, 0.010053717531263828, 0.7133700847625732,
- 0.12054669857025146, 0.156456857919693, -0.01373206079006195, -0.07360275089740753,
- 0.20533177256584167, 0.029459359124302864, 0.045060545206069946, -0.06153753027319908,
- -0.03980477899312973, -0.0008403044193983078, -0.08962322771549225, -0.091262087225914,
- 0.03813383728265762, 0.03385690599679947, 0.10168825834989548, 0.08952858299016953,
- 0.09910459816455841, -0.01802472025156021, -0.09079475700855255, -0.014151381328701973,
- 0.09627621620893478, 0.008709600195288658, -0.07741069793701172, -0.05079532414674759,
- 0.04822827875614166, 0.09357099235057831, -0.12228624522686005, -0.021766388788819313,
- -0.05168016999959946, 0.06496528536081314, -0.018698880448937416, 0.02738279290497303,
- -0.07447704672813416, 0.03438710421323776, 0.038115739822387695, 0.07372068613767624,
- -0.013835462741553783, -0.1021982878446579, -0.04214406758546829, 0.10457468032836914,
- 0.009281343780457973, -0.018898500129580498, 0.03621969744563103, -0.09430000931024551,
- 0.07488922774791718, -0.014659035950899124, 0.13519376516342163, -0.13237184286117554,
- 0.05507596582174301, 0.005877286661416292, -0.010403653606772423, 0.05091744661331177,
- 0.002709056716412306, -0.07528003305196762, -0.05547872185707092, 0.0801294595003128,
- 0.04980519413948059, 0.09825330227613449, 0.11249937117099762, -0.036008186638355255,
- 0.029119327664375305, 0.09918434917926788, 0.007609869819134474, -0.022384002804756165,
- 0.07618074119091034, 0.12104348093271255, 0.026970166712999344, -0.011119124479591846,
- 0.036446742713451385, -0.043845124542713165, 0.024781620129942894,
- -0.0035894911270588636, 0.06917091459035873, 0.0024597495794296265,
- -0.04347595199942589, 0.012236732989549637, 0.006810077466070652, 0.0537186861038208,
- 0.13162043690681458, -0.06963647902011871, -0.07594919949769974, -0.003601165022701025,
- -0.05729597806930542, -0.00015378417447209358, -0.03584836423397064,
- 0.08244936168193817, 0.05274655669927597, 0.09840346872806549, 0.029591087251901627,
- 0.04913262277841568, 0.06448709964752197, 0.047157831490039825, 0.006572635378688574,
- 0.054204557090997696, -0.048921387642621994, -0.08020416647195816,
- -0.016496900469064713, 0.002639827784150839, 0.042644619941711426, 0.04582289233803749,
- -0.06678257882595062, -0.043692510575056076, -0.04172161966562271, -0.03855463117361069,
- -0.08732429146766663, -0.051653191447257996, -0.0332946851849556, 0.06325066089630127,
- -0.05743775516748428, -0.047993004322052, -0.09485656023025513, 0.0056848060339689255,
- 0.054895952343940735, 0.007461243774741888, -0.011373765766620636, -0.09951477497816086,
- -0.04148430377244949, -0.06131342053413391, 0.01313183642923832, -0.01528655830770731,
- -0.04943403601646423, -0.013390634208917618, -0.0723474770784378, 0.00923379696905613,
- -0.02104208990931511, -0.023015262559056282, -0.07765781879425049,
- -0.052441976964473724, -0.006301437504589558, 0.002350104972720146, 0.03889995068311691,
- 0.000183887779712677, 0.018130965530872345, 0.01761925406754017, 0.03443213552236557,
- -0.0012534449342638254, -0.059323474764823914, 0.044908806681632996,
- -0.009014719165861607, -0.016412941738963127, 0.0795494019985199, -0.018165215849876404,
- 0.0557079017162323, 0.040139585733413696, -0.09061121940612793, -0.0444185696542263,
- -0.00625585438683629, -0.0493033304810524, 0.037605516612529755, -0.040814757347106934,
- -0.01197762694209814, -0.009295779280364513, 0.024853259325027466, 0.07251956313848495,
- -0.04595715552568436, -0.06064818799495697, -0.10256492346525192, 0.08960149437189102,
- 0.012048379518091679, -0.012247534468770027, 0.06676620244979858, -0.06502016633749008,
- 0.06734280288219452, -0.006914361380040646, 0.0007598393131047487, 0.04641703516244888,
- 0.05081736668944359, -0.02867579273879528, 0.02508186176419258, 0.05606474727392197,
- -0.023676589131355286, 0.0016858153976500034, 0.07934652268886566, 0.4062849283218384,
- -0.07801587879657745, 0.04510115832090378, 0.11765068024396896, 0.022594541311264038,
- 0.048929374665021896, -0.03532671183347702, 0.05081239715218544, 0.10600006580352783,
- 0.09121531248092651, 0.1202409565448761, 0.0022711087949573994, -0.0028440053574740887,
- -0.03751317411661148, 0.09655770659446716, 0.002616122830659151, -0.004157117567956448,
- -0.0009853467345237732, -0.06227727234363556, 0.01617942564189434, 0.04885803163051605,
- -0.06355838477611542, 0.003666467498987913, 0.01271886844187975, -0.09494921565055847,
- 0.0028723478317260742, -0.0017445676494389772, -0.012682518921792507,
- -0.01568593457341194, 0.007927180267870426, -0.09524466097354889, 0.052948884665966034,
- 0.032381195574998856, 0.03833484277129173, -0.09386566281318665, 0.04129505157470703,
- -0.11819032579660416, -0.08019572496414185, 0.07298779487609863, -0.062037065625190735,
- 0.028256885707378387, 0.07375320792198181, -0.060306116938591, 0.025246914476156235,
- -0.031050657853484154, -0.038073088973760605, 0.04547685384750366, 0.04420975595712662,
- 0.023587854579091072, 0.0944414734840393, 0.15319745242595673, -0.05395844578742981,
- -0.03330440819263458, -0.08960234373807907, 0.09363774955272675, 0.07771316170692444,
- -0.026277050375938416, 0.018954288214445114, -0.005050268955528736,
- 0.023429740220308304, 0.006712485570460558, -0.05211967974901199, -0.08029989898204803,
- 0.030893106013536453, -0.028264937922358513, 0.02849735878407955, 0.010389485396444798,
- -0.0035020746290683746, -0.22168561816215515, 0.011113107204437256,
- 0.0004333679098635912, 0.03427158296108246, 0.14904847741127014, -0.04704473912715912,
- 0.041706547141075134, 0.061417922377586365, -0.034461021423339844, 0.027640538290143013,
- -0.09679874777793884, 0.042252883315086365, -0.05837075412273407, 0.007550107315182686,
- 0.0636403039097786, 0.04684096574783325, -0.036156073212623596, 0.12004566192626953,
- -0.10398457944393158, 0.09453795850276947, 0.048079777508974075, 0.01693732850253582,
- 0.03852738440036774, -0.04965471848845482, 0.031750600785017014, 0.04427603632211685,
- -0.044155240058898926, 0.04593801498413086, -0.044990718364715576,
- -0.032848529517650604, -0.06307946890592575, -0.05914007127285004,
- -0.018883738666772842, -0.07904258370399475, 0.08391691744327545, -0.08996571600437164,
- -0.039837270975112915, -0.043023206293582916, -0.017481688410043716,
- 0.02761840634047985, 0.04414532333612442, 0.04047995060682297, -0.14494335651397705,
- 0.048129260540008545, 0.0016019416507333517, 0.07900954782962799, -0.023288168013095856,
- -0.0485893189907074, -0.036210574209690094, 0.11334297060966492, 0.0595225989818573,
- 0.016065645962953568, 0.01273689977824688, -0.052799634635448456, 0.022559044882655144,
- -0.10798552632331848, -0.34023135900497437, 0.023224035277962685, -0.00450506154447794,
- 0.029988741502165794, -0.0025147320702672005, -0.07081262767314911,
- 0.023507678881287575, 0.005798137281090021, -0.019100356847047806, 0.09890375286340714,
- -0.059218138456344604, -0.006027153693139553, 0.018747694790363312,
- -0.07763995975255966, -0.06122454255819321, -0.03278498351573944, -0.06795995682477951,
- 0.04585634171962738, -0.029670823365449905, -0.07073628902435303, -0.09382738918066025,
- 0.02000352367758751, -0.02781277522444725, 0.0789053738117218, 0.0022913154680281878,
- 0.039019353687763214, -0.07675544172525406, -0.021612349897623062, 0.017369413748383522,
- 0.07193490862846375, 0.02116929180920124, -0.0853329598903656, -0.01299936044961214,
- 0.06977824121713638, -0.03502493351697922, 0.1432797908782959, 0.03509446978569031,
- 0.02475133165717125, -0.11083071678876877, 0.06810063123703003, 0.07318256795406342,
- 0.18476448953151703, -0.014092555269598961, 0.007048983126878738, 0.044072702527046204,
- 0.14006496965885162, 0.05957590043544769, 0.018252188339829445, -0.004476815462112427,
- 0.0042916154488921165, 0.026371322572231293, -0.0211336612701416, 0.048659589141607285,
- -0.09492439776659012, -0.03806508332490921, -0.03604334220290184, 0.03595289960503578,
- -0.035274237394332886, 0.052424438297748566, 0.21961334347724915, 0.020636262372136116,
- 0.04642581194639206, 0.024758441373705864, -0.08326581865549088, -0.04337482526898384,
- -0.03853083401918411, -0.08530145138502121, -0.038242779672145844,
- -0.003943159710615873, 0.0008593727834522724, -0.058195605874061584,
- -0.14103743433952332, 0.013907033018767834, -0.02538139373064041, -0.005746224895119667,
- 0.0919419378042221, -0.008711217902600765, 0.04570645093917847, -0.013600816018879414,
- 0.09097873419523239, 0.06519974768161774, 0.036777060478925705, 0.040765248239040375,
- 0.08528751134872437, -0.01702289469540119, 0.010053989477455616, -0.05162147432565689,
- -0.07266256213188171, -0.015147773548960686, 0.12141038477420807, -0.07024077326059341,
- 0.04909989982843399, 0.03892378881573677, -0.033079080283641815, -0.0801592469215393,
- 0.06283263862133026, -0.01933974027633667, 0.030315201729536057, -0.44649410247802734,
- -0.007961230352520943, 0.10444764792919159, 0.042043741792440414, 0.00953834317624569,
- 0.10227246582508087, 0.08039088547229767, -0.04116278514266014, -0.040226247161626816,
- -0.008366424590349197, 0.09299544245004654, -0.047665759921073914, 0.03628174215555191,
- -0.06805653125047684, 0.04901515692472458, 0.08931392431259155, -0.025894770398736,
- -0.05681728944182396, 0.07299259305000305, -0.23815175890922546, 0.0020057070069015026,
- -0.06332091242074966, 0.11124122142791748, 0.049677081406116486, 0.02117287926375866,
- 0.0386633537709713, -0.06902923434972763, 0.036435745656490326, 0.07504677027463913,
- -0.005553094670176506, 0.08102011680603027, 0.050058513879776, -0.03258206322789192,
- 0.11039122194051743, 0.05449783429503441, 0.07131539285182953, -0.014532925561070442,
- 12.05012321472168, 0.06418266892433167, 0.0268082395195961, -0.07990598678588867,
- 0.06598512828350067, -0.06770860403776169, 0.025425780564546585, -0.09431134909391403,
- 0.04031272232532501, 0.12064163386821747, -0.020295683294534683, -0.03981027007102966,
- -0.032652050256729126, -0.11267870664596558, 0.011144552379846573, -0.05725841224193573,
- -0.0624409094452858, -0.04841061681509018, -0.019092349335551262, -0.04210542142391205,
- 0.007787753362208605, -0.018788229674100876, 0.06472049653530121, 0.00937672145664692,
- -0.061303265392780304, 0.04459207132458687, 0.049592383205890656, -0.04093936085700989,
- -0.03602253645658493, 0.05262664705514908, -0.05878356099128723, 0.00551089970394969,
- 0.0409078374505043, 0.03346163406968117, -0.012150526978075504, 0.050327181816101074,
- 0.049344852566719055, 0.08108903467655182, 0.006608366034924984, 0.08602546900510788,
- 0.040850114077329636, 0.04135088250041008, 0.040583498775959015, 0.030635029077529907,
- 0.03434283286333084, 0.03461203724145889, 0.09984946995973587, 0.11205463856458664,
- 0.015754057094454765, 0.05587831884622574, 0.11175672709941864, -0.06509370356798172,
- 0.15477174520492554, 0.03597025200724602, 0.0031326287426054478, 0.02164524607360363,
- 0.036767493933439255, -0.04543401673436165, 0.06360653042793274, 0.13484621047973633,
- -0.04436976835131645, 0.061423711478710175, 0.006737090647220612, 0.08668835461139679,
- -0.04078175872564316, 0.04551147669553757, 0.0728808268904686, 0.01575108990073204,
- -0.1649627387523651, -0.06110292300581932, 0.049814075231552124, -0.1097518801689148,
- -0.059801168739795685, 0.05185758322477341, 0.1021101325750351, -0.06581264734268188,
- 0.1010623574256897, -0.05740198493003845, -0.006952469237148762, -0.016353832557797432,
- -0.014413258992135525, 0.024060409516096115, -0.002894267439842224,
- 0.032323434948921204, 0.021809278056025505, 0.013967121951282024, 0.11538243293762207,
- 0.05991344153881073, -0.03479393571615219, -0.1008511483669281, -0.06659209728240967,
- 0.10605792701244354, -0.03480975329875946, -0.058103371411561966, 0.030705289915204048,
- -0.017023613676428795, 0.03696063533425331, -0.10072165727615356, 0.05399179086089134,
- 0.10550311207771301, -0.08617139607667923, 0.00210473220795393, -0.045109231024980545,
- 0.023302124813199043, -0.0004036503378301859, 0.025918930768966675,
- -0.03534132242202759, 0.038184426724910736, 0.017668165266513824, 0.02747863531112671,
- -0.024587338790297508, 0.07966408878564835, 0.0661669597029686, -0.08488453924655914,
- 0.07274194806814194, 0.05719517171382904, -0.02343039959669113, -0.08402401953935623,
- 0.043851353228092194, 0.09431309252977371, -0.07538232207298279, -0.07181604206562042,
- -0.0178479366004467, -0.04317128658294678, -0.02307848446071148, -0.02432192862033844,
- -0.0009358515962958336, 0.056343406438827515, -0.057495199143886566,
- -0.003653292078524828, -0.015917949378490448, -0.004968478810042143, 0.0775812417268753,
- -0.009165560826659203, 0.06328655034303665, -0.07908805459737778, -0.022053278982639313,
- 0.04471014440059662, 0.022199081256985664, 0.0549868643283844, 0.003954067826271057,
- 0.016966799274086952, -0.03986019641160965, -0.12168475985527039, 0.007883056998252869,
- 0.13469985127449036, 0.0736127644777298, 0.06383431702852249, 0.04690111428499222,
- -0.10850578546524048, -0.04348711296916008, 0.11404527723789215, 0.06819532066583633,
- 0.013231441378593445, 0.04092962294816971, -0.09646090865135193, -0.019397519528865814,
- 0.14990368485450745, -0.0589076392352581, -0.011034449562430382, 0.05538501590490341,
- 0.020165931433439255, 0.07999049127101898, 0.0769142210483551, 0.08752293139696121,
- 0.025342315435409546, -0.0023097856901586056, -0.02231496199965477,
- -0.0015910482034087181, -0.06529106199741364, 0.0007963636890053749,
- 0.007766368333250284, -0.18238535523414612, -0.09182301163673401, 0.009685119614005089,
- 0.11764419823884964, -0.029981601983308792, -0.05804513767361641, -0.01126676332205534,
- -0.055206142365932465
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 181,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Darryn John"],
- "epoch_date_downloaded": 1652745600,
- "epoch_date_modified": 1652745600,
- "epoch_date_submitted": 1652745600,
- "flag": null,
- "report_number": 1572,
- "source_domain": "driveteslacanada.ca",
- "submitters": ["Khoa Lam"],
- "title": "Driverless Cruise autonomous vehicle involved in two-car collision",
- "url": "https://driveteslacanada.ca/news/driverless-cruise-autonomous-vehicle-involved-in-two-car-collision/"
- },
- {
- "__typename": "Report",
- "authors": ["Department of Motor Vehicles"],
- "epoch_date_downloaded": 1652745600,
- "epoch_date_modified": 1652745600,
- "epoch_date_submitted": 1652745600,
- "flag": null,
- "report_number": 1571,
- "source_domain": "dmv.ca.gov",
- "submitters": ["Khoa Lam"],
- "title": "Report of Traffic Collision Involving an Autonomous Vehicle",
- "url": "https://www.dmv.ca.gov/portal/file/cruise_021122-pdf/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "cruise",
- "name": "Cruise"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "cruise",
- "name": "Cruise"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "cruise-vehicles",
- "name": "Cruise vehicles"
- },
- {
- "__typename": "Entity",
- "entity_id": "cruise-driver-employee",
- "name": "Cruise driver employee"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1574, 1573],
- "vector": [
- -0.060164306312799454, 0.10775190591812134, 0.007645308040082455, -0.06472080945968628,
- 0.06294693052768707, 0.0001383642666041851, -0.015987303107976913, 0.0408049076795578,
- 0.07690949738025665, -0.12161566317081451, 0.007933532819151878, 0.04727698862552643,
- 0.021797548979520798, -0.04979018121957779, 0.06718020141124725, -0.09647230058908463,
- -0.08427071571350098, -0.0687444806098938, -0.01216202788054943, -0.1427627056837082,
- -0.06731146574020386, -0.0366319939494133, 0.04339052364230156, 0.09134052693843842,
- -0.046957746148109436, 0.03162366524338722, 0.05780932307243347, 0.11222464591264725,
- -0.06948130577802658, 0.06720085442066193, 0.014841029420495033, -0.07457451522350311,
- 0.13873648643493652, 0.02932749316096306, 0.03277204558253288, 0.12803947925567627,
- -0.021616004407405853, -0.03686891496181488, -0.016232796013355255,
- -0.016754131764173508, 0.005450402852147818, 0.23054268956184387, -0.03370117396116257,
- -0.01391132827848196, 0.05248863250017166, -0.03919694200158119, -0.00824726466089487,
- 0.024189690127968788, 0.005233576521277428, 0.06295914947986603, -0.036122437566518784,
- 0.05902082473039627, -0.026932675391435623, 0.014095929451286793, -0.1149701476097107,
- 0.03464600816369057, 0.01515317801386118, 0.024061478674411774, 0.03434868901968002,
- -0.059288185089826584, -0.0479118749499321, -0.2009565830230713, -0.04457440227270126,
- -0.04481799155473709, 0.10335972905158997, -0.0764978900551796, -0.02032284066081047,
- 0.0038135494105517864, 0.04879192262887955, 0.07313445955514908, 0.05458156019449234,
- -0.02147226780653, -0.012346969917416573, 0.0016858354210853577, 0.014589576050639153,
- -0.0016224017599597573, -0.014802246354520321, 0.1750219464302063, -0.09410525858402252,
- -0.0136430524289608, 0.11287399381399155, -0.12429654598236084, 0.37744656205177307,
- 0.01921793818473816, -0.05756412819027901, -0.0017569803167134523, 0.1023419052362442,
- 0.039533741772174835, 0.05752215534448624, 0.045772530138492584, -0.024414075538516045,
- 0.014399850741028786, -0.04506499692797661, 0.019129469990730286, 0.04461119696497917,
- 0.03347361832857132, -0.01326221413910389, 0.026873627677559853, -0.00931312795728445,
- -0.04945533722639084, 0.04093483090400696, -0.02979067713022232, 0.0784372091293335,
- 0.04010988399386406, -0.016273364424705505, 0.005035954527556896, 0.07867436856031418,
- -0.022901631891727448, 0.034103959798812866, -0.040764033794403076,
- 0.016839666292071342, 0.03416603058576584, 0.021554142236709595, 0.03682621940970421,
- 0.04638516902923584, -0.09002912789583206, 0.03187137097120285, 0.055257827043533325,
- 0.10718975961208344, -0.01679476909339428, -0.011773967184126377, 0.0753323882818222,
- 0.06502064317464828, -0.06299564242362976, -0.03526972234249115, -0.03872492536902428,
- -0.07538655400276184, -0.035673655569553375, -0.023062994703650475, 0.06423313170671463,
- -0.07499189674854279, -0.2058895081281662, -0.0031202128157019615, 0.09107225388288498,
- -0.004020057152956724, -0.03212200850248337, -0.007576378993690014,
- -0.10278736054897308, 0.07285988330841064, -0.022157546132802963, -0.051173966377973557,
- 0.07042424380779266, 0.042211681604385376, 0.04375622794032097, 0.07231438905000687,
- 0.08159026503562927, -0.03147029131650925, -0.0299515463411808, 0.007449716795235872,
- -0.03892752155661583, 0.09084299206733704, -0.1293199360370636, -0.05954742804169655,
- -0.015701478347182274, -0.041037142276763916, 0.6889747977256775, 0.12402227520942688,
- 0.1488402783870697, 0.0022531896829605103, -0.05820954218506813, 0.1925044059753418,
- -0.0004754995461553335, 0.04923321306705475, -0.08208969235420227, -0.04094427451491356,
- 0.022021086886525154, -0.07769772410392761, -0.04841256141662598, 0.03277440369129181,
- 0.008805538527667522, 0.08996394276618958, 0.08025018870830536, 0.07289231568574905,
- -0.020963255316019058, -0.10728220641613007, -0.011853269301354885, 0.0708216056227684,
- -0.01553378626704216, -0.12004224210977554, -0.05096655339002609, 0.055310942232608795,
- 0.07674826681613922, -0.10018886625766754, 0.03153469040989876, -0.09581852704286575,
- 0.06410550326108932, -0.02655218541622162, 0.05720115453004837, -0.0543145090341568,
- -0.00672645028680563, 0.04518286883831024, 0.07364049553871155, -0.03316832706332207,
- -0.1069992333650589, -0.02602732926607132, 0.10960055887699127, -0.027010951191186905,
- -0.0490969642996788, 0.06919653713703156, -0.07019604742527008, 0.0549260750412941,
- 0.0006301077082753181, 0.12394390255212784, -0.10422950237989426, 0.016843706369400024,
- 0.011084817349910736, 0.005014204420149326, 0.051546432077884674, -0.012450894340872765,
- -0.0720110833644867, -0.04464239627122879, 0.10776138305664062, 0.02801160141825676,
- 0.09188070893287659, 0.08487595617771149, -0.07692734897136688, 0.05912994593381882,
- 0.06113582104444504, 0.011924024671316147, -0.02468031272292137, 0.06071941554546356,
- 0.09940917789936066, 0.0075263879261910915, -0.02364337630569935, 0.008046970702707767,
- 0.0019009166862815619, 0.033352192491292953, -0.015135612338781357, 0.07076804339885712,
- -0.027319449931383133, -0.051030367612838745, 0.0250291358679533, 0.05253143608570099,
- -0.002310108859091997, 0.10582175850868225, -0.038955219089984894,
- -0.026892704889178276, -0.01038569025695324, -0.004428524523973465,
- -0.01158934272825718, -0.050262391567230225, 0.08877933025360107, 0.08829139173030853,
- 0.05998329818248749, 0.04715975373983383, 0.012363672256469727, 0.07131493836641312,
- 0.06843620538711548, 0.019729038700461388, 0.042323656380176544, -0.025087086483836174,
- -0.08195308595895767, -0.05744259059429169, 0.01879376359283924, 0.026111632585525513,
- 0.029859114438295364, -0.06754808127880096, -0.05388227105140686, -0.07361900806427002,
- 0.013877851888537407, -0.06486623734235764, -0.06983499974012375,
- -0.0022498206235468388, 0.04977874457836151, -0.06130440533161163, -0.06889283657073975,
- -0.10255555808544159, 0.01453881710767746, 0.09825712442398071, -0.017891526222229004,
- -0.02055930346250534, -0.08448294550180435, 0.021918974816799164, -0.05401359498500824,
- 0.027185015380382538, 0.013066453859210014, -0.008328338153660297,
- -0.032331883907318115, -0.0827992856502533, 0.012665967456996441, -0.029791442677378654,
- 0.014321553520858288, -0.06195729225873947, -0.04896833747625351, -0.026969024911522865,
- -0.009853595867753029, 0.00002274429425597191, -0.05477133020758629,
- 0.05543055757880211, 0.015647338703274727, 0.049155592918395996, -0.011917931959033012,
- -0.011308310553431511, 0.043774984776973724, -0.024257663637399673,
- -0.025891859084367752, 0.07250663638114929, -0.024460501968860626, 0.03857116028666496,
- 0.01955511048436165, -0.09282985329627991, -0.01992204412817955, 0.019286734983325005,
- -0.050939347594976425, 0.05638834461569786, -0.052690163254737854, 0.01280317921191454,
- -0.03742603957653046, 0.016192222014069557, 0.04219026491045952, -0.07438258081674576,
- -0.08043170720338821, -0.08017891645431519, 0.13308557868003845, -0.00880633294582367,
- -0.01840290240943432, 0.02722901478409767, -0.05877138674259186, 0.04931259900331497,
- -0.013894842006266117, -0.005968028213828802, 0.018443334847688675, 0.03145850449800491,
- -0.03619168698787689, 0.0009088029619306326, 0.044754013419151306,
- -0.049360111355781555, 0.017409758642315865, 0.07006894052028656, 0.4043613076210022,
- -0.19939836859703064, 0.050916869193315506, 0.0565962940454483, 0.022620592266321182,
- 0.07670751214027405, -0.019277894869446754, 0.08394233882427216, 0.06623632460832596,
- 0.09092910587787628, 0.08948823809623718, -0.0328209213912487, -0.005888199899345636,
- -0.01746046543121338, 0.10451953113079071, -0.0046855127438902855, 0.027721477672457695,
- -0.0508185550570488, -0.03653324022889137, 0.007154219783842564, 0.002838145475834608,
- -0.04643788933753967, 0.003526597283780575, -0.0063617778941988945,
- -0.05974208936095238, -0.007627502549439669, 0.004366171080619097, 0.010986723937094212,
- -0.020106201991438866, -0.0016376296989619732, -0.03302944079041481,
- 0.05501473322510719, 0.02316383458673954, 0.048404477536678314, -0.12300717830657959,
- 0.03930913656949997, -0.15466071665287018, -0.09001141041517258, 0.06250178068876266,
- -0.041755348443984985, 0.03334243223071098, 0.05988955497741699, -0.030906934291124344,
- 0.018384093418717384, -0.0015780790708959103, -0.04046123847365379,
- 0.039059218019247055, 0.0442834347486496, -0.017207421362400055, 0.08002938330173492,
- 0.17253583669662476, -0.026332039386034012, -0.06103214994072914, -0.069148488342762,
- 0.08553964644670486, 0.10289344191551208, -0.031091582030057907, 0.018703749403357506,
- -0.009901950135827065, -0.0046480512246489525, -0.014322079718112946,
- -0.05248642712831497, -0.08268634974956512, 0.0035194773226976395,
- -0.025755085051059723, 0.08596622198820114, -0.002121447119861841, -0.04460490122437477,
- -0.18500570952892303, -0.0372299998998642, -0.050612643361091614, 0.007406632415950298,
- 0.14540207386016846, -0.04479856789112091, 0.03594718873500824, 0.023852890357375145,
- -0.01038332562893629, 0.0681239441037178, -0.07135341316461563, 0.05153754726052284,
- -0.08188498020172119, 0.015700319781899452, 0.03175950050354004, 0.03573096916079521,
- -0.05503499507904053, 0.0871160551905632, -0.09410417079925537, 0.0697738379240036,
- 0.045623842626810074, -0.013686303980648518, 0.03918146342039108, -0.04318154603242874,
- 0.05059592425823212, 0.0411568246781826, -0.03431778773665428, 0.01957218162715435,
- -0.06442198902368546, -0.040431469678878784, -0.07433809340000153, -0.07592474669218063,
- -0.04793326184153557, -0.032242123037576675, 0.06383169442415237, -0.1103203296661377,
- -0.019662946462631226, -0.05388043820858002, -0.001184685155749321,
- 0.031117571517825127, 0.04194694012403488, 0.04595421999692917, -0.1375637799501419,
- 0.046510014683008194, 0.005088132340461016, 0.08172259479761124, -0.038612768054008484,
- -0.046683911234140396, 0.04420476406812668, 0.14886198937892914, 0.04872187227010727,
- -0.00041629746556282043, 0.012409888207912445, -0.04388415068387985,
- 0.05666744336485863, -0.11433888971805573, -0.5315577983856201, 0.04112550616264343,
- -0.003351118415594101, 0.011821603402495384, -0.002478764858096838,
- -0.05528376251459122, 0.05044963210821152, 0.016817839816212654, -0.0128778126090765,
- 0.09241768717765808, -0.05668135732412338, 0.011353861540555954, 0.0007995869964361191,
- -0.0807461217045784, -0.03892761468887329, -0.04653066396713257, -0.06603721529245377,
- 0.04435288906097412, -0.014058846049010754, -0.06479765474796295, -0.10876034200191498,
- 0.021217036992311478, -0.008961981162428856, 0.03694475442171097, 0.017714787274599075,
- 0.03189576417207718, -0.033905595541000366, -0.04374609887599945, 0.011132833547890186,
- 0.04103220999240875, 0.03484191745519638, -0.04391121119260788, 0.00046421936713159084,
- 0.03694504499435425, -0.04317818582057953, 0.16220100224018097, 0.006033773999661207,
- 0.03258386626839638, -0.06609579175710678, 0.0883198082447052, 0.051850415766239166,
- 0.18823540210723877, -0.023234006017446518, 0.039532508701086044, 0.031583771109580994,
- 0.1460893601179123, 0.04933689907193184, 0.020220501348376274, -0.009898812510073185,
- 0.04624031111598015, 0.04312301427125931, -0.012125312350690365, 0.0706595778465271,
- -0.09251941740512848, -0.016469676047563553, -0.04537573829293251,
- -0.006705288775265217, -0.010238109156489372, 0.015723086893558502, 0.22151359915733337,
- 0.01651609130203724, 0.038145165890455246, 0.02541351318359375, -0.059956103563308716,
- 0.0033154303673654795, -0.07929641753435135, -0.10084564983844757,
- -0.022077316418290138, -0.0074871499091386795, 0.006203200202435255,
- -0.020685259252786636, -0.14384689927101135, -0.0117494510486722, -0.045687779784202576,
- 0.009040884673595428, 0.08498147130012512, 0.008284271694719791, 0.009535560384392738,
- -0.03234238922595978, 0.1194121241569519, 0.043254297226667404, 0.020936017856001854,
- 0.05216268450021744, 0.05125147104263306, 0.011613190174102783, -0.003387950826436281,
- -0.06257256865501404, -0.08116505295038223, 0.04473031684756279, 0.14973819255828857,
- -0.042202603071928024, 0.05470028519630432, 0.04847191646695137, -0.009734828025102615,
- -0.07228367030620575, 0.048361122608184814, -0.03292103111743927, 0.039076466113328934,
- -0.48590290546417236, 0.001378924585878849, 0.10426869243383408, 0.0311480313539505,
- 0.024113116785883904, 0.10260173678398132, 0.04918639361858368, -0.058141257613897324,
- -0.036087341606616974, -0.0378258153796196, 0.15728497505187988, -0.030559750273823738,
- 0.03952454403042793, -0.1061461865901947, 0.0409226194024086, 0.05567266792058945,
- -0.03009408712387085, -0.030799012631177902, 0.06492434442043304, -0.2223016619682312,
- -0.02488553896546364, -0.05499006062746048, 0.17604637145996094, 0.06822939217090607,
- -0.0014396323822438717, 0.0408569872379303, -0.059001654386520386, 0.038412146270275116,
- 0.08172821998596191, 0.019013747572898865, 0.07691831886768341, 0.005854405462741852,
- -0.012524704448878765, 0.12330189347267151, 0.09760232269763947, 0.10124553740024567,
- -0.016163386404514313, 11.837635040283203, 0.058685608208179474, 0.045955874025821686,
- -0.056910499930381775, 0.016517065465450287, -0.05002957955002785, 0.05531720817089081,
- -0.08155763149261475, 0.10774048417806625, 0.11534695327281952, -0.006137380842119455,
- -0.019784824922680855, -0.010531745851039886, -0.11000113189220428, 0.02151123806834221,
- -0.07869348675012589, -0.046105124056339264, -0.03214280679821968, 0.04318618029356003,
- -0.04476837441325188, 0.032393939793109894, -0.02074323035776615, 0.041497766971588135,
- 0.028473109006881714, -0.05970490723848343, 0.03995366394519806, 0.037728164345026016,
- -0.02100011706352234, -0.02238645777106285, -0.022085227072238922, -0.05093684047460556,
- 0.05698573961853981, 0.05852381885051727, 0.04055020213127136, -0.03502827510237694,
- 0.06455669552087784, 0.0739089697599411, 0.059704989194869995, -0.028583668172359467,
- 0.087530218064785, 0.032337307929992676, 0.020601049065589905, 0.01435356680303812,
- 0.040208302438259125, 0.06041097640991211, 0.05905420333147049, 0.039132021367549896,
- 0.141311913728714, 0.027747347950935364, 0.06342046707868576, 0.0967898890376091,
- -0.038503408432006836, 0.11501242220401764, 0.007598306052386761, 0.011715409345924854,
- 0.031293682754039764, 0.00375762558542192, -0.056140266358852386, 0.06994177401065826,
- 0.06617168337106705, -0.026036983355879784, 0.09415742009878159, 0.012653821147978306,
- 0.13516221940517426, -0.02304665371775627, 0.04907849431037903, 0.07305176556110382,
- 0.07435686141252518, -0.11778102815151215, -0.06995335221290588, 0.059708960354328156,
- -0.0802115723490715, -0.07761915773153305, 0.03947422653436661, 0.09011588245630264,
- -0.06328590214252472, 0.039115674793720245, -0.022449081763625145, 0.024491455405950546,
- -0.0313282310962677, -0.006469781044870615, 0.03595122694969177, -0.03326398879289627,
- 0.01136281993240118, 0.04939727485179901, 0.008283908478915691, 0.11825253069400787,
- 0.08873584866523743, -0.02752206288278103, -0.10008776187896729, -0.0939105898141861,
- 0.06952729821205139, -0.05175286531448364, -0.0837332084774971, -0.0039494652301073074,
- -0.03479059040546417, 0.015119974501430988, -0.1536942571401596, 0.05978914722800255,
- 0.10792262852191925, -0.09639501571655273, -0.015944352373480797, -0.036731768399477005,
- 0.08061809837818146, -0.009572254493832588, 0.031501635909080505, -0.07239499688148499,
- 0.06540220975875854, 0.011052696965634823, 0.0540178120136261, -0.05339554324746132,
- 0.05410410091280937, 0.07383108139038086, -0.05893214792013168, 0.025556299835443497,
- 0.05897079408168793, -0.043802667409181595, -0.048497989773750305, 0.06353003531694412,
- 0.06136920303106308, -0.09876129031181335, -0.03652605041861534, -0.028726082295179367,
- -0.04555404558777809, -0.017741836607456207, -0.030770381912589073, 0.03858259320259094,
- 0.019831005483865738, -0.045795612037181854, -0.008166923187673092,
- 0.0033156313002109528, 0.005673615727573633, 0.14042910933494568, 0.009746620431542397,
- 0.0932512879371643, -0.0815594419836998, -0.05398036912083626, 0.08900317549705505,
- 0.04857465624809265, 0.06534606218338013, -0.021615104749798775, 0.024090876802802086,
- -0.09329348802566528, -0.09946004301309586, 0.013420602306723595, 0.12172482907772064,
- 0.07476396858692169, 0.0050026047974824905, 0.009983934462070465, -0.07354073226451874,
- -0.05277709662914276, 0.10908662527799606, 0.030298886820673943, 0.013682624325156212,
- 0.01341765932738781, -0.08549728989601135, -0.026904962956905365, 0.13174480199813843,
- -0.047577738761901855, -0.01585572026669979, 0.020626796409487724, -0.03525716811418533,
- 0.09516666829586029, 0.052273161709308624, 0.041592251509428024, 0.04540097340941429,
- 0.014112059026956558, 0.007419799454510212, 0.016376947984099388, -0.022865168750286102,
- 0.0084465267136693, -0.010078899562358856, -0.13525225222110748, -0.07701589912176132,
- 0.029088784009218216, 0.11250925064086914, 0.031133171170949936, -0.05745290592312813,
- -0.026980098336935043, -0.0453706756234169
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 182,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Aarian Marshall"],
- "epoch_date_downloaded": 1652745600,
- "epoch_date_modified": 1652745600,
- "epoch_date_submitted": 1652745600,
- "flag": null,
- "report_number": 1574,
- "source_domain": "wired.com",
- "submitters": ["Khoa Lam"],
- "title": "A Cruise-on-Cruise Crash Reveals the Hardest Thing About Self-Driving Tech",
- "url": "https://www.wired.com/story/cruise-on-cruise-crash-hardest-thing-self-driving/"
- },
- {
- "__typename": "Report",
- "authors": ["Tom Quimby"],
- "epoch_date_downloaded": 1652745600,
- "epoch_date_modified": 1652745600,
- "epoch_date_submitted": 1652745600,
- "flag": null,
- "report_number": 1573,
- "source_domain": "hardworkingtrucks.com",
- "submitters": ["Khoa Lam"],
- "title": "Autonomous vehicles crash together in California",
- "url": "https://www.hardworkingtrucks.com/opinion/article/15050965/autonomous-vehicles-crash-together-in-california"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "airbnb",
- "name": "Airbnb"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "trooly",
- "name": "Trooly"
- },
- {
- "__typename": "Entity",
- "entity_id": "airbnb",
- "name": "Airbnb"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "sex-workers",
- "name": "sex workers"
- },
- {
- "__typename": "Entity",
- "entity_id": "airbnb-users",
- "name": "Airbnb users"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [2066, 1580, 1579, 1578, 1577, 1576],
- "vector": [
- -0.07970908284187317, 0.04387810453772545, 0.02388891391456127, -0.1407778114080429,
- 0.07979995757341385, -0.05945354327559471, -0.023765897378325462, 0.03250209614634514,
- 0.07194691151380539, -0.10558796674013138, -0.0000982046258286573, 0.03261103108525276,
- 0.04912060499191284, -0.07284968346357346, 0.04099298641085625, -0.12372414022684097,
- -0.11085333675146103, -0.025103265419602394, -0.012223981320858002,
- -0.11802572011947632, -0.09432957321405411, 0.013465207070112228, 0.04792371392250061,
- 0.1584729105234146, -0.04638926684856415, 0.016549546271562576, 0.10642258077859879,
- 0.09949290752410889, -0.027114249765872955, 0.07429949939250946, -0.05120602250099182,
- -0.06868971139192581, 0.13803644478321075, 0.03940235450863838, -0.002803850919008255,
- 0.10157646983861923, 0.037231963127851486, -0.030433671548962593, 0.014269459992647171,
- 0.002461044816300273, 0.04062992334365845, 0.20794647932052612, 0.010200567543506622,
- 0.011976812966167927, 0.04216040298342705, -0.06265757232904434, -0.001600995077751577,
- 0.04928683862090111, 0.0014433873584493995, 0.01632896065711975, -0.010009999386966228,
- 0.07390449196100235, -0.009275033138692379, 0.01853032596409321, -0.09665295481681824,
- 0.011809316463768482, 0.042929936200380325, 0.011032569222152233, 0.02949351631104946,
- -0.08581332117319107, -0.046477291733026505, -0.20249588787555695, -0.06583116203546524,
- -0.06940397620201111, 0.06520251929759979, -0.07057821750640869, -0.05005566403269768,
- 0.007247773464769125, -0.019978217780590057, 0.06275224685668945, 0.042675454169511795,
- -0.031021444126963615, -0.02797199785709381, 0.005969327408820391,
- -0.0013056114548817277, -0.018111566081643105, 0.028730206191539764, 0.2201516181230545,
- -0.1074163019657135, 0.02023164927959442, 0.09136594086885452, -0.11698543280363083,
- 0.4364842176437378, -0.007922982797026634, 0.012251912616193295, -0.03783566132187843,
- 0.07313691824674606, 0.07498282939195633, 0.0679284930229187, 0.034358177334070206,
- -0.01721309684216976, 0.025067120790481567, -0.07143870741128922, -0.011424110271036625,
- 0.07982487231492996, 0.028402792289853096, -0.016660921275615692, -0.034034162759780884,
- -0.029395559802651405, -0.06348426640033722, -0.021897941827774048,
- -0.034472282975912094, 0.11341478675603867, 0.09225843101739883, -0.018793392926454544,
- -0.0005084983422420919, 0.07991933077573776, -0.04153810814023018, 0.050266239792108536,
- -0.014812934212386608, 0.006280891131609678, -0.0013498013140633702,
- 0.08453664928674698, 0.006129464600235224, 0.03221432492136955, -0.04097001627087593,
- 0.013702932745218277, 0.06776001304388046, 0.07007169723510742, 0.04279470443725586,
- -0.01434674859046936, 0.018136756494641304, 0.044189468026161194, -0.07559895515441895,
- -0.025626471266150475, -0.03569905087351799, -0.032827433198690414,
- -0.06261041015386581, -0.0538763552904129, 0.03714330866932869, -0.05589955672621727,
- -0.22055654227733612, -0.00989452376961708, 0.06682165712118149, -0.010616547428071499,
- -0.049660492688417435, 0.003673793748021126, -0.06937403231859207, 0.029153352603316307,
- -0.005935030058026314, -0.019794967025518417, 0.06824502348899841, -0.0156314205378294,
- 0.06637438386678696, 0.13607926666736603, 0.07595827430486679, -0.04258107766509056,
- -0.014276355504989624, -0.0194671843200922, -0.03423469141125679, 0.08908125013113022,
- -0.07912084460258484, -0.055683404207229614, 0.02170170098543167, 0.012885796837508678,
- 0.6589739918708801, 0.08449044078588486, 0.12142717093229294, 0.0018869092455133796,
- -0.001548081636428833, 0.18405456840991974, 0.02370934933423996, 0.0782809779047966,
- -0.06726600974798203, -0.07553410530090332, 0.03599703684449196, -0.09050152450799942,
- -0.050847720354795456, 0.008677280507981777, -0.0018423455767333508,
- 0.07941857725381851, -0.004998787771910429, 0.10071942210197449, 0.01083337515592575,
- -0.10419497638940811, -0.017359750345349312, 0.03551047295331955, 0.001241154968738556,
- -0.10812187194824219, -0.04885668680071831, 0.048948924988508224, 0.09178648144006729,
- -0.11312976479530334, 0.003303373232483864, -0.07389328628778458, 0.050584178417921066,
- -0.00738797290250659, 0.05099976435303688, -0.00741078844293952, 0.04573975130915642,
- 0.024624334648251534, 0.020230261608958244, 0.005601221229881048, -0.07090844959020615,
- -0.005955477710813284, 0.12777413427829742, -0.002564480295404792, -0.04149692505598068,
- 0.07116586714982986, -0.08346015959978104, 0.030446641147136688, 0.012568195350468159,
- 0.11143136024475098, -0.13108627498149872, -0.04121645539999008, 0.008767937310039997,
- -0.028228797018527985, 0.07688677310943604, -0.022105760872364044, -0.08809969574213028,
- -0.08684701472520828, 0.08990693837404251, 0.014122902415692806, 0.052169278264045715,
- 0.047486428171396255, -0.028145568445324898, 0.031385548412799835, 0.11720450967550278,
- 0.019423123449087143, -0.008706306107342243, 0.06620833277702332, 0.01520460844039917,
- -0.043136391788721085, 0.0013466899981722236, 0.03921893611550331, 0.016017979010939598,
- 0.008379937149584293, -0.013290922157466412, 0.07107117772102356,
- -0.0002600317820906639, -0.05628089979290962, 0.04017915576696396, 0.025866881012916565,
- 0.006888727191835642, 0.0875258520245552, -0.07489648461341858, -0.03865858539938927,
- -0.02532806806266308, -0.006309766322374344, 0.014065450988709927,
- -0.019189750775694847, 0.09966402500867844, 0.08025125414133072, 0.04021497815847397,
- 0.01823677495121956, 0.014378059655427933, 0.03338806703686714, -0.029683014377951622,
- 0.028718143701553345, 0.08605283498764038, -0.030025646090507507, -0.03872412443161011,
- -0.03780070319771767, 0.04205853119492531, 0.05454428121447563, 0.03443865850567818,
- -0.07571624219417572, -0.019196754321455956, 0.01343164499849081, -0.006322483066469431,
- -0.08182179927825928, -0.03406841680407524, 0.014140650629997253, 0.01492874976247549,
- -0.07182727009057999, -0.08411096781492233, -0.08491573482751846, -0.006516192574054003,
- 0.04955832660198212, -0.04549896717071533, 0.007386376615613699, -0.11045458167791367,
- 0.03403038904070854, -0.023975251242518425, 0.05615239217877388, -0.016014084219932556,
- 0.011664818972349167, 0.029519548639655113, -0.02323071099817753, -0.006965927314013243,
- 0.03335748240351677, -0.042747076600790024, -0.05834869667887688, -0.04818469658493996,
- -0.051530852913856506, -0.0007982521783560514, -0.005065711680799723,
- -0.030620234087109566, 0.023243842646479607, 0.042915407568216324, 0.0515684075653553,
- 0.022625869140028954, -0.020889559760689735, 0.07299536466598511, -0.02356221340596676,
- 0.014264202676713467, 0.0865386500954628, -0.02915417216718197, 0.033697452396154404,
- -0.0018130829557776451, -0.07327208667993546, -0.074416384100914, 0.017460986971855164,
- -0.06467419862747192, 0.020787445828318596, -0.01899641565978527, 0.0025093622971326113,
- -0.05300026014447212, -0.04858351871371269, 0.07987616211175919, -0.07028406113386154,
- -0.08374550193548203, -0.08697676658630371, 0.11757639050483704, 0.009651842527091503,
- -0.019240975379943848, 0.021614404395222664, -0.05813964083790779, 0.06416372954845428,
- -0.01418565958738327, -0.004344560671597719, 0.037281375378370285, 0.0622134767472744,
- -0.034931350499391556, 0.04786032438278198, 0.04204040765762329, 0.016587289050221443,
- 0.014454121701419353, 0.07587888091802597, 0.42224109172821045, -0.15672394633293152,
- 0.09196633845567703, 0.10860675573348999, 0.03615064546465874, 0.030213743448257446,
- -0.010017710737884045, 0.06015101447701454, 0.08666729927062988, 0.12389910221099854,
- 0.09694875031709671, -0.04324987530708313, -0.016916925087571144, -0.07994607836008072,
- 0.07751958072185516, 0.0133378179743886, -0.010876658372581005, 0.01991405338048935,
- -0.057317059487104416, -0.0009747135336510837, 0.021408788859844208,
- -0.07764768600463867, 0.035381004214286804, -0.011846150271594524, -0.0900113582611084,
- 0.03175700455904007, 0.005143385846167803, 0.031626146286726, -0.0024526696652173996,
- 0.04728083685040474, -0.03335091099143028, 0.018550612032413483, -0.0028754808008670807,
- 0.0382806733250618, -0.07081743329763412, -0.00014271290274336934, -0.06448812037706375,
- -0.09223181754350662, 0.08837419748306274, -0.005637010093778372, 0.0070062973536551,
- 0.03045947104692459, -0.013227936811745167, 0.05247524380683899, -0.039483051747083664,
- -0.07482421398162842, 0.0266250167042017, 0.04501086473464966, 0.045457661151885986,
- 0.05832427740097046, 0.16081522405147552, -0.049311742186546326, -0.020803866907954216,
- -0.06771715730428696, 0.07070226222276688, 0.11803531646728516, -0.015399274416267872,
- 0.03910684958100319, 0.002705138409510255, -0.026750748977065086, 0.018522214144468307,
- -0.03451040759682655, -0.07525777816772461, -0.0039602890610694885,
- -0.014669201336801052, 0.07021257281303406, 0.05773681029677391, -0.05228131636977196,
- -0.14630696177482605, -0.0343422032892704, -0.04315037652850151, 0.003587726503610611,
- 0.11296483129262924, -0.05139574036002159, -0.0008066943846642971, -0.05128076672554016,
- 0.006574010942131281, -0.023893674835562706, -0.11021185666322708, 0.02826952375471592,
- -0.057116392999887466, 0.06738138943910599, 0.03876117989420891, 0.032676760107278824,
- -0.050946515053510666, 0.08572036772966385, -0.11529538780450821, 0.07822596281766891,
- 0.049354035407304764, -0.04371088370680809, 0.05476507917046547, -0.026789380237460136,
- 0.028144322335720062, -0.006227200385183096, -0.03523026034235954,
- -0.011073400266468525, -0.00955579336732626, -0.02634182572364807, -0.0946681872010231,
- -0.04862089455127716, -0.05137121304869652, -0.09095247834920883, 0.04989895597100258,
- -0.05579957738518715, -0.029595302417874336, 0.00201175338588655, -0.015928087756037712,
- 0.015420045703649521, 0.015550154261291027, 0.026323432102799416, -0.14735758304595947,
- -0.02971627749502659, -0.0019029671093448997, 0.04929018020629883,
- -0.036218833178281784, -0.052509646862745285, 0.04243554547429085, 0.05825028941035271,
- 0.0419154055416584, -0.03674599900841713, 0.031647976487874985, -0.06882358342409134,
- 0.062478747218847275, -0.12439624220132828, -0.36869871616363525, 0.05882022902369499,
- -0.033856526017189026, 0.04954488202929497, 0.0375269390642643, -0.08710683137178421,
- 0.021235637366771698, 0.060434307903051376, -0.05744146928191185, 0.09313520044088364,
- -0.06533246487379074, 0.03229338675737381, 0.008041683584451675, -0.055940985679626465,
- -0.004095869604498148, -0.05225689336657524, -0.04886292293667793, 0.036341600120067596,
- -0.025770319625735283, -0.03248153626918793, -0.10020583122968674, 0.0221477672457695,
- 0.016663536429405212, 0.044174496084451675, 0.003428929252550006, 0.0074803936295211315,
- -0.04944606497883797, -0.03017771802842617, 0.049543023109436035, 0.0672142431139946,
- -0.011189031414687634, -0.04914519190788269, 0.01333207730203867, 0.09612628817558289,
- -0.008988029323518276, 0.11707551032304764, 0.03338209167122841, -0.007314943242818117,
- -0.08255835622549057, 0.06372417509555817, 0.09457778930664062, 0.18369148671627045,
- -0.0050265975296497345, -0.0077309333719313145, 0.011233404278755188,
- 0.1334570348262787, 0.010742529295384884, 0.037753235548734665, -0.04453154280781746,
- -0.005704132374376059, 0.016229117289185524, 0.022774023935198784, 0.07724907994270325,
- -0.08252546936273575, -0.03419625386595726, -0.041346225887537, -0.03221827372908592,
- -0.04699508845806122, -0.040426138788461685, 0.21290437877178192, 0.04024316370487213,
- 0.034752633422613144, 0.012975734658539295, -0.0876128301024437, 0.010459610261023045,
- -0.06522245705127716, -0.1194198951125145, -0.0014540840638801455, -0.01064498070627451,
- 0.021854490041732788, -0.056168586015701294, -0.09531276673078537,
- -0.016334669664502144, 0.01619590073823929, -0.0057348632253706455, 0.09348591417074203,
- -0.055150970816612244, 0.0965147539973259, -0.03797224536538124, 0.14373987913131714,
- 0.04481584206223488, 0.0630880668759346, 0.029695851728320122, 0.09542488306760788,
- 0.0012824749574065208, 0.002750025363638997, -0.06760039180517197, -0.06011706963181496,
- -0.02492178976535797, 0.1274207979440689, -0.0043220133520662785, 0.10498408228158951,
- 0.040928129106760025, -0.007872144691646099, -0.04618386551737785, 0.040881264954805374,
- -0.03519624471664429, -0.006745960563421249, -0.4354519844055176, -0.02253960631787777,
- 0.12832346558570862, 0.028213663026690483, -0.0022641352843493223, 0.10721442848443985,
- 0.04890028014779091, -0.06450923532247543, -0.022645199671387672, -0.0914076566696167,
- 0.1625196933746338, 0.010359215550124645, 0.09194350242614746, -0.0541156530380249,
- 0.005151451099663973, 0.08434908837080002, -0.0329829566180706, -0.03253853693604469,
- 0.08366432040929794, -0.20699049532413483, 0.004466457292437553, -0.03324200585484505,
- 0.12945933640003204, 0.056386906653642654, 0.037843335419893265, 0.07738851755857468,
- -0.034788113087415695, 0.018857546150684357, 0.018421994522213936,
- -0.002580075990408659, 0.006131386384367943, 0.021571943536400795,
- -0.038515880703926086, 0.07345869392156601, 0.07804784178733826, 0.12818345427513123,
- -0.03523985669016838, 12.12453556060791, 0.06489931046962738, 0.08194754272699356,
- -0.1122472807765007, -0.009775747545063496, -0.07015272229909897, 0.02963424287736416,
- -0.09491267800331116, 0.006644573528319597, 0.1278267651796341, -0.023596011102199554,
- -0.054918188601732254, -0.030311204493045807, -0.10564374923706055,
- -0.007011494133621454, -0.019970765337347984, -0.03986642137169838,
- -0.04836983606219292, 0.07793200016021729, -0.03505882993340492, -0.03795997425913811,
- 0.059209201484918594, 0.0630430057644844, 0.013652139343321323, -0.09212687611579895,
- 0.008995342068374157, 0.0046140654012560844, -0.00851189810782671,
- -0.0037388212513178587, 0.048460762947797775, -0.014693748205900192,
- -0.006785117089748383, 0.0698145255446434, -0.004806177690625191, 0.044479090720415115,
- 0.03929312899708748, 0.08062785118818283, 0.04957151040434837, 0.011243577115237713,
- 0.0491458922624588, 0.011976457200944424, -0.0003697086649481207, 0.008763263933360577,
- 0.07721850275993347, 0.06491348892450333, 0.025186680257320404, 0.0384589247405529,
- 0.09888282418251038, 0.006802958901971579, 0.09374246746301651, 0.08067383617162704,
- 0.004297791514545679, 0.12352966517210007, -0.004057119134813547, 0.004068336915224791,
- 0.06597954779863358, -0.014920494519174099, -0.08679137378931046, 0.10432702302932739,
- 0.03936737775802612, -0.07165878266096115, 0.12332725524902344, 0.047131072729825974,
- 0.12758152186870575, 0.04906746372580528, 0.058444324880838394, 0.04202998802065849,
- 0.1161697581410408, -0.13748286664485931, -0.08058399707078934, 0.006267955526709557,
- -0.07570846378803253, -0.06227700412273407, 0.09007242321968079, 0.08481069654226303,
- -0.04236314073204994, 0.08392376452684402, -0.025990119203925133, 0.038972679525613785,
- -0.00443486962467432, 0.006281199399381876, 0.028665879741311073, -0.021931787952780724,
- 0.022417843341827393, 0.07849501818418503, -0.00578860891982913, 0.1041424348950386,
- 0.09901676326990128, 0.017808368429541588, -0.09859958291053772, -0.025118375197052956,
- 0.10521387308835983, 0.021479368209838867, -0.06624282151460648, -0.002274006837978959,
- -0.06562872976064682, 0.029988085851073265, -0.13650189340114594, 0.09448233246803284,
- 0.12948556244373322, -0.09779305011034012, 0.025403430685400963, -0.025507843121886253,
- 0.06349097937345505, 0.022030571475625038, 0.0014330461854115129, -0.05199229344725609,
- 0.028837064281105995, 0.018045611679553986, 0.03169909864664078, -0.05565069988369942,
- 0.06803897023200989, 0.07132764905691147, -0.06717289239168167, 0.03496159613132477,
- 0.08727692812681198, -0.011142301373183727, -0.02348378859460354, 0.04105057194828987,
- 0.011786245740950108, -0.09488338977098465, -0.03616276755928993, -0.04125313460826874,
- -0.02778896875679493, 0.02322281338274479, -0.0565023310482502, 0.0011720010079443455,
- 0.06279505789279938, -0.048598602414131165, -0.01038951426744461, 0.047197069972753525,
- 0.056375715881586075, 0.06195976212620735, 0.008622015826404095, 0.06902361661195755,
- -0.07709265500307083, -0.03444617614150047, 0.01647237502038479, 0.052046287804841995,
- 0.058710020035505295, -0.04478185251355171, -0.06389790028333664, -0.027995474636554718,
- -0.137716144323349, -0.027596374973654747, 0.08678271621465683, 0.04988715052604675,
- 0.04599347710609436, 0.03431665524840355, -0.0981655940413475, -0.05770552158355713,
- 0.11275819689035416, 0.02001267857849598, 0.016723109409213066, 0.05380531772971153,
- -0.052460987120866776, -0.017982475459575653, 0.09858999401330948, -0.05706113949418068,
- 0.008017560467123985, 0.005917463917285204, -0.0929705798625946, 0.08734812587499619,
- 0.081767238676548, 0.03564436361193657, 0.02690083533525467, 0.01081705093383789,
- -0.0048882304690778255, -0.009250855073332787, -0.0126789016649127,
- 0.015960650518536568, -0.0384075902402401, -0.12937413156032562, -0.0985894724726677,
- 0.007615963462740183, 0.09372254461050034, 0.06711523979902267, -0.124490886926651,
- -0.03474971652030945, -0.04419751465320587
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 183,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Bethany Hallam"],
- "epoch_date_downloaded": 1663372800,
- "epoch_date_modified": 1665273600,
- "epoch_date_submitted": 1663372800,
- "flag": null,
- "report_number": 2066,
- "source_domain": "twitter.com",
- "submitters": ["Daniel Atherton (BNH.ai)"],
- "title": "Tweet: @bethanyhallam",
- "url": "https://twitter.com/bethanyhallam/status/1569484512266194944"
- },
- {
- "__typename": "Report",
- "authors": ["Jessica Keane"],
- "epoch_date_downloaded": 1652745600,
- "epoch_date_modified": 1652832000,
- "epoch_date_submitted": 1652745600,
- "flag": null,
- "report_number": 1580,
- "source_domain": "consumer.org.nz",
- "submitters": ["AIAAIC"],
- "title": "Could you be banned from Airbnb for your Instagram posts?",
- "url": "https://www.consumer.org.nz/articles/could-you-be-banned-from-airbnb-for-your-instagram-posts"
- },
- {
- "__typename": "Report",
- "authors": ["Poppy Johnston"],
- "epoch_date_downloaded": 1652745600,
- "epoch_date_modified": 1652832000,
- "epoch_date_submitted": 1652745600,
- "flag": null,
- "report_number": 1579,
- "source_domain": "au.finance.yahoo.com",
- "submitters": ["AIAAIC"],
- "title": "Banned from Airbnb with no explanation? Here’s why",
- "url": "https://au.finance.yahoo.com/news/banned-from-airbnb-023208437.html"
- },
- {
- "__typename": "Report",
- "authors": ["Steffanie Tan"],
- "epoch_date_downloaded": 1652745600,
- "epoch_date_modified": 1652832000,
- "epoch_date_submitted": 1652745600,
- "flag": null,
- "report_number": 1578,
- "source_domain": "thenewdaily.com.au",
- "submitters": ["AIAAIC"],
- "title": "Airbnb blasted for using algorithm that judges if users are ‘trustworthy’",
- "url": "https://thenewdaily.com.au/news/2022/03/22/choice-airbnb-trust-algorithm/"
- },
- {
- "__typename": "Report",
- "authors": ["Electronic Privacy Information Center"],
- "epoch_date_downloaded": 1652745600,
- "epoch_date_modified": 1652745600,
- "epoch_date_submitted": 1652745600,
- "flag": null,
- "report_number": 1577,
- "source_domain": "epic.org",
- "submitters": ["AIAAIC"],
- "title": "EPIC Files Complaint with FTC about Airbnb’s Secret “Trustworthiness” Scores",
- "url": "https://epic.org/epic-files-complaint-with-ftc-about-airbnbs-secret-trustworthiness-scores/"
- },
- {
- "__typename": "Report",
- "authors": ["Jarni Blakkarly"],
- "epoch_date_downloaded": 1652745600,
- "epoch_date_modified": 1652745600,
- "epoch_date_submitted": 1652745600,
- "flag": null,
- "report_number": 1576,
- "source_domain": "choice.com.au",
- "submitters": ["AIAAIC"],
- "title": "Is Airbnb using an algorithm to ban users from the platform?",
- "url": "https://www.choice.com.au/airbnb"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "companhia-do-metropolitano-de-sao-paulo",
- "name": "Companhia do Metropolitano de São Paulo"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "securos",
- "name": "SecurOS"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "sao-paulo-metro-users",
- "name": "São Paulo Metro users"
- },
- {
- "__typename": "Entity",
- "entity_id": "sao-paulo-citizens",
- "name": "São Paulo citizens"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1899, 1584, 1581],
- "vector": [
- -0.030297404155135155, 0.07327748090028763, 0.051506418734788895, -0.08342248201370239,
- 0.011369946412742138, -0.05555613338947296, 0.017019612714648247, 0.03485899418592453,
- 0.035073477774858475, -0.1551947444677353, 0.012964367866516113, 0.013926801271736622,
- 0.012035854160785675, -0.01401511114090681, 0.046500105410814285, -0.09086814522743225,
- -0.0348852314054966, -0.002715151757001877, 0.010873484425246716, -0.048851098865270615,
- -0.05995634198188782, -0.022652434185147285, -0.023708514869213104, 0.06038568541407585,
- -0.051296133548021317, 0.06291671842336655, 0.07535882294178009, 0.11652866005897522,
- -0.05165046453475952, 0.09276019781827927, -0.007336846087127924, -0.061875227838754654,
- 0.08755727857351303, 0.0009156617452390492, -0.019367320463061333, 0.04769254848361015,
- 0.07085274904966354, -0.02660713903605938, 0.0005525533924810588, -0.006111708004027605,
- 0.027556389570236206, 0.17176644504070282, -0.045315247029066086, -0.016399281099438667,
- 0.07942170649766922, -0.04129604622721672, 0.024917712435126305, 0.07336802035570145,
- 0.003934296313673258, 0.014544707722961903, 0.017834201455116272, 0.03323422372341156,
- -0.0319223590195179, -0.024102872237563133, -0.12654179334640503, 0.039948470890522,
- -0.004141341894865036, 0.022040745243430138, 0.04035129025578499, -0.03068573772907257,
- -0.05779455602169037, -0.19362092018127441, -0.011162287555634975, -0.06680924445390701,
- 0.08878985792398453, -0.059422653168439865, -0.020551780238747597, 0.04135964810848236,
- 0.010025962255895138, 0.07383737713098526, 0.03278603032231331, -0.01074638869613409,
- 0.0036718808114528656, -0.028565796092152596, 0.01905578002333641,
- -0.013585836626589298, -0.00030473494553007185, 0.16603486239910126,
- -0.09233113378286362, 0.00878955703228712, 0.08677085489034653, -0.08579567819833755,
- 0.33296406269073486, 0.0338779091835022, -0.010368193499743938, 0.0029516592621803284,
- 0.07401327043771744, 0.02917536161839962, 0.050807952880859375, 0.06255935877561569,
- -0.002180936513468623, -0.0027875422965735197, -0.023890241980552673,
- -0.04001995921134949, 0.06723683327436447, 0.04511326178908348, -0.031422123312950134,
- 0.006115858908742666, 0.020265264436602592, -0.0042256941087543964,
- -0.017878541722893715, -0.02322547137737274, 0.075899638235569, 0.06355966627597809,
- -0.06811302155256271, -0.020269986242055893, 0.05934587121009827, -0.039145734161138535,
- 0.05620941147208214, -0.045696157962083817, 0.026583826169371605, 0.0443393848836422,
- 0.050920676440000534, 0.035331159830093384, 0.043603286147117615, -0.0535922609269619,
- 0.04481435939669609, 0.002960037672892213, 0.05503927543759346, 0.036393728107213974,
- 0.013105583377182484, 0.0868796706199646, 0.04886774346232414, -0.06295961141586304,
- 0.01622791774570942, -0.055653203278779984, 0.02847065031528473, -0.017399072647094727,
- -0.024504678323864937, 0.06039542332291603, -0.029395341873168945, -0.20222316682338715,
- -0.00013619889796245843, 0.021269435063004494, 0.03728143125772476,
- -0.029598305001854897, 0.020767247304320335, -0.033271674066782, 0.05186517536640167,
- -0.013354930095374584, -0.01718546636402607, 0.09510401636362076,
- -0.0012518560979515314, 0.0019314346136525273, 0.11982396245002747, 0.02889285981655121,
- -0.04455113410949707, -0.041269700974226, -0.02552712708711624, -0.0332043431699276,
- 0.11950967460870743, -0.11331397294998169, -0.07862656563520432, 0.020051782950758934,
- -0.02432265318930149, 0.6384541392326355, 0.10564911365509033, 0.10694176703691483,
- -0.03915318474173546, -0.007074372842907906, 0.16830165684223175, 0.012842911295592785,
- 0.05274345353245735, -0.0453253835439682, -0.025232398882508278, 0.0163982305675745,
- -0.0628088116645813, -0.03584185615181923, 0.03526915982365608, 0.0576653890311718,
- 0.11232786625623703, 0.010907139629125595, 0.04083206132054329, -0.034930337220430374,
- 0.001025959849357605, 0.002877362770959735, 0.07146602123975754, 0.010911967605352402,
- -0.16163383424282074, -0.027044719085097313, 0.02019588090479374, 0.04501344636082649,
- -0.12755025923252106, -0.015972862020134926, -0.031561221927404404,
- 0.021944070234894753, -0.044737208634614944, 0.050990696996450424,
- -0.020992398262023926, -0.0028350967913866043, 0.020487599074840546,
- 0.06482619047164917, -0.023988565430045128, -0.09273675829172134, 0.0036260830238461494,
- 0.06101986765861511, 0.021114496514201164, -0.014434096403419971, 0.1029236689209938,
- -0.09961080551147461, 0.04283618554472923, -0.007332248147577047, 0.1160832867026329,
- -0.0987217128276825, 0.07393068075180054, -0.01572800613939762, -0.0470799058675766,
- 0.08689279109239578, -0.008866469375789165, -0.07592808455228806, -0.06349483132362366,
- 0.034782782196998596, 0.054649800062179565, 0.06553787738084793, 0.054163943976163864,
- -0.03443422541022301, 0.03349103406071663, 0.009556653909385204, 0.0486367829144001,
- -0.06850021332502365, 0.05156845971941948, 0.07303573191165924, -0.0014421193627640605,
- -0.017718542367219925, -0.0023098206147551537, 0.019666004925966263,
- 0.020528579130768776, 0.010944090783596039, 0.04956716671586037, 0.008123389445245266,
- -0.03630457818508148, -0.00047658508992753923, 0.04690885543823242, 0.03348623588681221,
- 0.11251886934041977, -0.03823031112551689, 0.010159432888031006, -0.009058390744030476,
- -0.05367573723196983, 0.02866518497467041, -0.04158852621912956, 0.041572455316782,
- 0.09483348578214645, 0.058446381241083145, 0.04106655716896057, 0.0711119994521141,
- 0.08032242208719254, 0.0252277459949255, -0.01959570311009884, 0.06665874272584915,
- -0.011227930895984173, -0.09449125081300735, -0.029812170192599297,
- -0.01035174448043108, 0.012104476802051067, 0.049446333199739456, -0.07274865359067917,
- -0.02250988967716694, -0.003411070676520467, 0.0005070145125500858,
- -0.05941948667168617, -0.01059784460812807, -0.01794281415641308, 0.04753130301833153,
- -0.05119907855987549, -0.09040262550115585, -0.05867012217640877, 0.02619425766170025,
- 0.0802421048283577, -0.01911568082869053, -0.017316294834017754, -0.0991584062576294,
- -0.0004178658127784729, -0.031118100509047508, 0.03379155695438385, 0.01066751778125763,
- 0.03627638891339302, -0.009023758582770824, -0.058893829584121704, 0.0344795286655426,
- -0.038056861609220505, -0.02304188907146454, -0.04515673592686653, -0.04641882702708244,
- -0.038027770817279816, 0.03053618036210537, -0.019169658422470093,
- -0.050743769854307175, 0.026938587427139282, 0.035555094480514526, 0.04915860667824745,
- 0.011356706731021404, 0.0012365037109702826, 0.04605715349316597, -0.07308770716190338,
- 0.020856045186519623, 0.09788668900728226, -0.027210945263504982, -0.009416104294359684,
- -0.04552667215466499, -0.022866206243634224, -0.0619368702173233, -0.011725354008376598,
- -0.03306005522608757, 0.02460341900587082, -0.04550422355532646,
- -0.00032948609441518784, -0.06713996082544327, -0.022684017196297646,
- 0.0580141544342041, -0.09644416719675064, -0.05295036360621452, -0.06774915754795074,
- 0.09627167135477066, -0.0049324738793075085, 0.006909679155796766, 0.008781425654888153,
- -0.08207156509160995, 0.0030466020107269287, -0.04039585217833519, -0.00673397071659565,
- 0.02563345432281494, 0.05889970436692238, -0.03448992595076561, 0.009828602895140648,
- 0.03844035789370537, -0.014859459362924099, 0.016260413452982903, 0.10861680656671524,
- 0.397612601518631, -0.08247049152851105, 0.09311958402395248, 0.09978821873664856,
- -0.009660356678068638, 0.0715358778834343, -0.042821016162633896, 0.04958736523985863,
- 0.07952388375997543, 0.13151375949382782, 0.1032472774386406, 0.003111734986305237,
- -0.047604870051145554, -0.06382095813751221, 0.06970136612653732, 0.029328232631087303,
- -0.0006604711525142193, -0.018163971602916718, -0.04621070995926857,
- 0.017010821029543877, -0.012253977358341217, -0.04486244544386864, 0.018209131434559822,
- -0.0011164381867274642, -0.1132296696305275, 0.020108388736844063, 0.03152172267436981,
- 0.043133046478033066, 0.014862902462482452, 0.04061463102698326, -0.043533097952604294,
- 0.04875536635518074, 0.03452315926551819, 0.042867809534072876, -0.09178461879491806,
- 0.07234534621238708, -0.12693576514720917, -0.04565620794892311, 0.07287894934415817,
- -0.039018962532281876, 0.044058907777071, 0.05428354814648628, -0.04232415184378624,
- 0.056418705731630325, -0.06761760264635086, -0.04955849051475525, 0.028567498549818993,
- 0.04159651696681976, -0.008644609712064266, 0.07173854112625122, 0.11102499812841415,
- -0.029211722314357758, -0.03719385340809822, -0.08049590140581131, 0.06858710199594498,
- 0.09050190448760986, -0.024738674983382225, 0.0012861932627856731, 0.02836274541914463,
- -0.04770917817950249, 0.012351016514003277, -0.058856893330812454, -0.06471733003854752,
- 0.002162063727155328, -0.0005189416115172207, 0.0913793221116066, -0.001362665556371212,
- -0.02833162248134613, -0.17087388038635254, -0.08215554803609848, -0.039940644055604935,
- 0.0019950810819864273, 0.11068274825811386, -0.04676618054509163, 0.028497735038399696,
- 0.03436089679598808, 0.03647933527827263, -0.015801530331373215, -0.1051633358001709,
- 0.018255336210131645, -0.045330535620450974, 0.04817910119891167, 0.05780789256095886,
- 0.054033707827329636, 0.011674332432448864, 0.05010416731238365, -0.07183407247066498,
- 0.08463417738676071, 0.03112090565264225, -0.009557309560477734, 0.061001021414995193,
- -0.011435202322900295, 0.015360203571617603, 0.019041994586586952,
- -0.045833732932806015, -0.020780539140105247, -0.058169472962617874,
- -0.020804395899176598, -0.07705990225076675, -0.06850650161504745,
- -0.031164204701781273, -0.05838276818394661, 0.0820871964097023, -0.08720339089632034,
- -0.06422967463731766, 0.0015048763016238809, 0.03884055092930794, 0.006304069887846708,
- 0.029239913448691368, 0.039697419852018356, -0.10932914167642593, -0.029492905363440514,
- 0.013589512556791306, 0.0473051480948925, -0.07773756235837936, -0.04421583190560341,
- 0.058128342032432556, 0.07205627113580704, 0.02914080023765564, -0.01970374956727028,
- -0.003907315898686647, -0.024089112877845764, 0.0958189144730568, -0.09596643596887589,
- -0.36331382393836975, 0.03970889374613762, -0.026645896956324577, 0.07567650824785233,
- 0.03935852646827698, -0.09245163202285767, 0.025311345234513283, 0.0035801734775304794,
- 0.015062287449836731, 0.05921715497970581, -0.06941290944814682, 0.05973415449261665,
- -0.016258470714092255, -0.06818052381277084, -0.017477961257100105,
- -0.03152764216065407, -0.0428641140460968, 0.02370569109916687, -0.026953473687171936,
- -0.07532355934381485, -0.12408437579870224, 0.011620226316154003, 0.01771811582148075,
- -0.012613479048013687, 0.003827218897640705, -0.03314312919974327, -0.10365168005228043,
- -0.030790137127041817, 0.02619747631251812, 0.04143379256129265, 0.0015106428181752563,
- -0.08423241227865219, 0.003687482327222824, 0.05590564385056496, 0.006832340266555548,
- 0.098513163626194, 0.047296974807977676, 0.0015586056979373097, -0.06987350434064865,
- 0.07857773452997208, 0.058909643441438675, 0.1896866112947464, 0.016950009390711784,
- -0.0017600381979718804, -0.006309162359684706, 0.10418345779180527, 0.02024250477552414,
- 0.032073307782411575, -0.05293132737278938, 0.012291919440031052, 0.036363303661346436,
- 0.03679854795336723, 0.07238927483558655, -0.07158499956130981, -0.035345595329999924,
- -0.052812594920396805, 0.019778339192271233, -0.06827283650636673,
- -0.039841268211603165, 0.16361789405345917, 0.011402281932532787, 0.0033674200531095266,
- 0.056344181299209595, -0.0503506101667881, 0.023882707580924034, -0.07706063985824585,
- -0.07795285433530807, -0.011327902786433697, 0.035514991730451584, 0.027957526966929436,
- -0.04003923758864403, -0.11619458347558975, 0.02240033447742462, -0.008776932023465633,
- -0.005187380593270063, 0.077630914747715, -0.05658341944217682, 0.07580068707466125,
- -0.03606294468045235, 0.12735015153884888, 0.02685634233057499, 0.021035797894001007,
- 0.05423364043235779, 0.06562008708715439, -0.005155644845217466, -0.0259234681725502,
- -0.01031468715518713, 0.006024309899657965, -0.015606100670993328, 0.11026037484407425,
- -0.04311657324433327, 0.08709327131509781, 0.055999770760536194, -0.05955320969223976,
- -0.07260192185640335, 0.02795250155031681, -0.006371524650603533, 0.018555909395217896,
- -0.3763585090637207, -0.02495461143553257, 0.10344145447015762, -0.04851432144641876,
- 0.011447726748883724, 0.097207210958004, -0.016492776572704315, -0.04971270635724068,
- -0.034329671412706375, -0.07411380112171173, 0.10689208656549454, 0.006880019325762987,
- 0.08925428241491318, -0.09345636516809464, -0.00866593699902296, 0.0782870277762413,
- 0.0014017048524692655, -0.0317935012280941, 0.007093109656125307, -0.1940324306488037,
- -0.014682351611554623, -0.06198449805378914, 0.16591699421405792, 0.049006953835487366,
- 0.00565008819103241, 0.0746740996837616, -0.08336695283651352, 0.015399583615362644,
- 0.053153444081544876, 0.014413462020456791, 0.056369051337242126, 0.03762781620025635,
- -0.04551416635513306, 0.04471518471837044, 0.014499510638415813, 0.08926334232091904,
- -0.0035279132425785065, 11.761242866516113, 0.04744499921798706, 0.07168302685022354,
- -0.07155666500329971, 0.01666681468486786, -0.04266603663563728, 0.03249122202396393,
- -0.06148338317871094, 0.06373986601829529, 0.06991604715585709, 0.007536344230175018,
- -0.045648813247680664, -0.015441715717315674, -0.07561039924621582,
- 0.005859501659870148, -0.012395229190587997, -0.04572395607829094, -0.06592113524675369,
- 0.08188842982053757, -0.0440000556409359, -0.008575127460062504, 0.0029307538643479347,
- 0.0574067048728466, 0.011051255278289318, -0.08337416499853134, -0.026788810268044472,
- 0.009076104499399662, -0.01882489211857319, -0.018161481246352196, 0.035331178456544876,
- 0.01282466109842062, -0.028408126905560493, 0.06982751935720444, -0.006679005455225706,
- 0.040682483464479446, 0.028908753767609596, 0.007438309956341982, 0.08328718692064285,
- 0.01877078227698803, 0.060604993253946304, 0.054546672850847244, 0.05307551100850105,
- -0.010237214155495167, 0.04205954074859619, 0.03485216572880745, 0.03582145646214485,
- 0.013095077127218246, 0.09765651822090149, 0.013529292307794094, 0.08325950056314468,
- 0.08530905842781067, -0.013877163641154766, 0.06804211437702179, -0.028509588912129402,
- 0.013034376315772533, 0.04385581612586975, 0.009570959955453873, -0.07280021160840988,
- 0.04320349171757698, 0.09569349139928818, -0.02782513201236725, 0.09130728989839554,
- 0.004283621907234192, 0.058270666748285294, -0.0009756297222338617, 0.07040929049253464,
- 0.08855387568473816, 0.030180582776665688, -0.13245975971221924, -0.04159778356552124,
- 0.06298340857028961, -0.0850205048918724, -0.07665109634399414, 0.018805237486958504,
- 0.057726915925741196, 0.021380504593253136, 0.09694401174783707, -0.019126465544104576,
- 0.015052414499223232, -0.025629505515098572, 0.01689848117530346, 0.04237518087029457,
- 0.00003529728201101534, -0.0015489788493141532, 0.006605483125895262,
- 0.024974897503852844, 0.10428779572248459, 0.08578262478113174, -0.014629689045250416,
- -0.037283528596162796, -0.07213620096445084, 0.08963850885629654, -0.009500805288553238,
- -0.05063812434673309, 0.020167667418718338, -0.004305917304009199,
- -0.018987556919455528, -0.11547467857599258, 0.09094344824552536, 0.08383915573358536,
- -0.07398752123117447, -0.014827966690063477, -0.033215757459402084, 0.06549309939146042,
- -0.012261691503226757, -0.013142402283847332, -0.06411247700452805,
- 0.059645891189575195, -0.010143647901713848, 0.031735051423311234, -0.05218832567334175,
- 0.05078893527388573, 0.045371606945991516, -0.047639623284339905, 0.06140494346618652,
- 0.05426950380206108, -0.022060781717300415, -0.06228793039917946, 0.03165857121348381,
- -0.000005014551334170392, -0.11921370029449463, -0.029396681115031242,
- -0.030855758115649223, -0.024008125066757202, -0.026441508904099464,
- -0.03687204048037529, 0.007332166191190481, -0.0037444892805069685,
- -0.05083824321627617, 0.001887718215584755, 0.04043203219771385, 0.04424722120165825,
- 0.041393738240003586, 0.006106589455157518, 0.06162172928452492, -0.017405610531568527,
- -0.03908824548125267, 0.029206102713942528, 0.032116714864969254, 0.09944651275873184,
- -0.048663198947906494, 0.005377090070396662, -0.05748745799064636, -0.1005852147936821,
- 0.06387334316968918, 0.1027517020702362, 0.04407182335853577, 0.06656254082918167,
- 0.012703306041657925, -0.057891491800546646, 0.014807074330747128, 0.10067921876907349,
- 0.02146509848535061, 0.040889669209718704, 0.02784026227891445, -0.08143515139818192,
- -0.04335561394691467, 0.1373160481452942, -0.04062691703438759, 0.002416325034573674,
- 0.04509168490767479, -0.04126574471592903, 0.07068922370672226, 0.07029729336500168,
- 0.010339204221963882, 0.04115593060851097, -0.009699344635009766, 0.021886879578232765,
- 0.05339670181274414, -0.010163995437324047, 0.0019163585966452956, -0.03765391558408737,
- -0.07451187819242477, -0.09216660261154175, 0.04940908029675484, 0.10001661628484726,
- 0.06899625062942505, -0.09725263714790344, 0.008016835898160934, -0.03417230769991875
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 184,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["L'Entrepreneur"],
- "epoch_date_downloaded": 1660176000,
- "epoch_date_modified": 1660521600,
- "epoch_date_submitted": 1652745600,
- "flag": null,
- "report_number": 1899,
- "source_domain": "lentrepreneur.co",
- "submitters": ["AIAAIC"],
- "title": "Le tribunal ordonne la suspension de l'utilisation de la reconnaissance faciale dans le métro de São Paulo",
- "url": "https://lentrepreneur.co/innovation/intelligence-artificielle/le-tribunal-ordonne-la-suspension-de-lutilisation-de-la-reconnaissance-faciale-dans-le-metro-de-sao-paulo-25032022"
- },
- {
- "__typename": "Report",
- "authors": ["Ayang Macdonald"],
- "epoch_date_downloaded": 1652745600,
- "epoch_date_modified": 1652832000,
- "epoch_date_submitted": 1652745600,
- "flag": null,
- "report_number": 1584,
- "source_domain": "biometricupdate.com",
- "submitters": ["AIAAIC"],
- "title": "Court orders suspension of facial recognition use in São Paulo metro",
- "url": "https://www.biometricupdate.com/202203/court-orders-suspension-of-facial-recognition-use-in-sao-paulo-metro"
- },
- {
- "__typename": "Report",
- "authors": ["Angelica Mari"],
- "epoch_date_downloaded": 1652745600,
- "epoch_date_modified": 1652832000,
- "epoch_date_submitted": 1652745600,
- "flag": null,
- "report_number": 1581,
- "source_domain": "zdnet.com",
- "submitters": ["AIAAIC"],
- "title": "São Paulo subway ordered to suspend use of facial recognition",
- "url": "https://www.zdnet.com/article/sao-paulo-subway-ordered-to-suspend-use-of-facial-recognition/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "tiktok",
- "name": "TikTok"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "tiktok",
- "name": "TikTok"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "tiktok-users",
- "name": "TikTok users"
- },
- {
- "__typename": "Entity",
- "entity_id": "tiktok-new-users",
- "name": "TikTok new users"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1589, 1588, 1587, 1586],
- "vector": [
- -0.044346317648887634, 0.04015915095806122, -0.0023923683911561966, -0.0952562466263771,
- 0.07757183909416199, 0.019350795075297356, 0.011483288370072842, 0.05734394118189812,
- 0.055447328835725784, -0.1410054862499237, 0.02553294226527214, 0.03154918923974037,
- -0.00701181311160326, -0.09432835131883621, 0.043247222900390625, -0.08243242651224136,
- -0.07756543159484863, -0.03875080496072769, -0.013080984354019165, -0.14562150835990906,
- -0.06798195093870163, 0.010510867461562157, 0.013041600584983826, 0.11787806451320648,
- -0.04724603146314621, 0.010232561267912388, 0.08430370688438416, 0.12093670666217804,
- -0.07846547663211823, 0.03299635648727417, -0.01263395044952631, -0.05133943632245064,
- 0.1442330777645111, 0.031107693910598755, -0.01542645413428545, 0.08777238428592682,
- 0.04457167908549309, -0.029261328279972076, -0.019222117960453033, 0.015385047532618046,
- -0.007750530727207661, 0.22232526540756226, 0.018886592239141464, -0.04834945127367973,
- 0.06311534345149994, -0.04320899024605751, 0.01685595139861107, 0.057010941207408905,
- 0.0028203772380948067, -0.029782423749566078, -0.028330758213996887,
- 0.043795086443424225, -0.03460352495312691, 0.024397119879722595, -0.10946530848741531,
- 0.05414015054702759, 0.03628236800432205, -0.04808225482702255, 0.009525238536298275,
- -0.07145741581916809, -0.0642763301730156, -0.2457706183195114, -0.027707818895578384,
- -0.04838542640209198, 0.061375122517347336, -0.09265841543674469, 0.005465524271130562,
- 0.02235281839966774, 0.03524161875247955, 0.05692747235298157, 0.0521509014070034,
- -0.021690361201763153, -0.03300938755273819, 0.01951843872666359, 0.030946364626288414,
- -0.07034651935100555, 0.048900723457336426, 0.16822823882102966, -0.09079862385988235,
- 0.009432753548026085, 0.1046193465590477, -0.0816703513264656, 0.3828616738319397,
- -0.05952804535627365, -0.0032579568214714527, 0.01630440354347229, 0.09600237011909485,
- 0.0009805522859096527, 0.012284129858016968, 0.021764272823929787, -0.03413180634379387,
- 0.04814089089632034, -0.04882241412997246, -0.006145827006548643, 0.05190320685505867,
- 0.018791206181049347, -0.0006262911483645439, -0.01835794560611248, 0.01523219421505928,
- -0.03822862729430199, 0.02107180468738079, -0.007303658407181501, 0.11386698484420776,
- 0.08721580356359482, -0.04692010208964348, -0.004033922217786312, 0.055475570261478424,
- -0.06355511397123337, 0.03475980460643768, -0.04688296467065811, -0.011016372591257095,
- -0.005823839455842972, 0.041337743401527405, -0.0028487828094512224,
- 0.043503474444150925, -0.01371000986546278, -0.010416422039270401, 0.07797343283891678,
- 0.09778082370758057, 0.05587252974510193, 0.03686803579330444, 0.04592195898294449,
- 0.07731812447309494, -0.06510469317436218, -0.03631269931793213, -0.019146941602230072,
- -0.05067680776119232, 0.01221389602869749, -0.054098065942525864, 0.07765311002731323,
- -0.06464722007513046, -0.22132639586925507, 0.007712620310485363, 0.04827909171581268,
- 0.022364674136042595, -0.05273419991135597, 0.04842181131243706, -0.05792169272899628,
- 0.006308460142463446, -0.00036807567812502384, -0.020317599177360535,
- 0.07578647136688232, 0.004695807583630085, 0.031742826104164124, 0.09338752180337906,
- 0.05011843889951706, -0.03420558571815491, -0.050012290477752686, -0.011380637995898724,
- -0.06476815044879913, 0.09021255373954773, -0.13285784423351288, -0.053375981748104095,
- -0.010968426242470741, -0.002494925633072853, 0.6867775917053223, 0.11093372106552124,
- 0.2057218700647354, 0.018637465313076973, -0.03164909780025482, 0.15401983261108398,
- -0.032836850732564926, 0.06228502094745636, -0.09171698242425919, -0.061659205704927444,
- 0.033887915313243866, -0.0786169171333313, -0.02444637194275856, 0.014619489200413227,
- -0.009536446072161198, 0.07931463420391083, 0.02482476457953453, 0.07274895161390305,
- -0.005947151221334934, -0.12202177196741104, -0.03128282353281975, 0.03148128092288971,
- 0.012366561219096184, -0.12890753149986267, -0.03207910805940628, 0.06719572842121124,
- 0.12712091207504272, -0.06922134011983871, 0.0002287016250193119, -0.10349772870540619,
- 0.03566640615463257, -0.012284066528081894, 0.08290329575538635, -0.03436099737882614,
- 0.03636125847697258, 0.023999275639653206, 0.01823102869093418, -0.004907447844743729,
- -0.10488138347864151, -0.015856847167015076, 0.11483049392700195, 0.007242697291076183,
- -0.06768632680177689, 0.04019923135638237, -0.06682700663805008, 0.04946940764784813,
- 0.02227417752146721, 0.14958617091178894, -0.13337890803813934, 0.010263321921229362,
- -0.01854085922241211, -0.011851031333208084, 0.05123329907655716, -0.02256910130381584,
- -0.045306496322155, -0.0771041065454483, 0.11037204414606094, 0.02786901593208313,
- 0.02398468181490898, 0.015538000501692295, -0.04942569509148598, 0.03439807519316673,
- 0.08648772537708282, 0.009433068335056305, -0.0189119391143322, 0.0662570521235466,
- 0.037597861140966415, -0.051342133432626724, -0.0672948807477951, 0.05757014825940132,
- 0.059152133762836456, 0.015506090596318245, -0.016397925093770027, 0.04644604027271271,
- 0.0036825162824243307, -0.04174351692199707, 0.044690269976854324, 0.019682127982378006,
- 0.007447428535670042, 0.1102396696805954, -0.06114814803004265, 0.0004955235053785145,
- -0.02246774733066559, 0.023016860708594322, 0.01628175750374794, 0.014741601422429085,
- 0.09711401909589767, 0.10306092351675034, 0.041925426572561264, 0.020370405167341232,
- 0.03130274638533592, 0.06742250919342041, 0.021779855713248253, 0.003104263450950384,
- 0.10599301755428314, -0.008226471953094006, -0.015519149601459503, -0.03135611489415169,
- 0.009698135778307915, 0.017474854364991188, 0.005401291884481907, -0.03380773589015007,
- -0.024561163038015366, -0.048911307007074356, -0.030883483588695526,
- -0.08429630100727081, -0.05021732300519943, 0.05104908347129822, 0.0597994439303875,
- -0.05508965626358986, -0.08763107657432556, -0.056448373943567276, 0.009761727415025234,
- 0.10649047046899796, -0.01529567502439022, -0.032084908336400986, -0.10606563091278076,
- 0.033053819090127945, -0.06464016437530518, 0.03490264341235161, 0.0018617967143654823,
- -0.0034304114524275064, -0.0012276355409994721, -0.07452565431594849,
- 0.037184976041316986, -0.008232183754444122, 0.015360146760940552, -0.02025878056883812,
- -0.02947949431836605, -0.06819408386945724, -0.02397390455007553, 0.008723447099328041,
- -0.06593461334705353, 0.011642583645880222, 0.025679197162389755, 0.05210389941930771,
- -0.025509990751743317, -0.007381229195743799, 0.06604939699172974, -0.05005011707544327,
- -0.042949382215738297, 0.09361731261014938, -0.020440738648176193, 0.018251776695251465,
- 0.000172615225892514, -0.09593655169010162, -0.0028526121750473976,
- 0.0034652813337743282, -0.05740953981876373, 0.07308367639780045, -0.024654846638441086,
- 0.0058170510455966, -0.045445241034030914, -0.0276248287409544, 0.07567506283521652,
- -0.07044977694749832, -0.06889115273952484, -0.04702996835112572, 0.1299363225698471,
- -0.008267639204859734, 0.0267828069627285, -0.018929796293377876, -0.05268193036317825,
- 0.05538397282361984, -0.0007004535291343927, -0.014054391533136368, 0.03164052218198776,
- 0.03482794761657715, -0.020707016810774803, 0.01601075381040573, 0.09099815040826797,
- -0.009953944943845272, 0.05909565091133118, 0.06653152406215668, 0.41042524576187134,
- -0.12811316549777985, 0.07926789671182632, 0.09824644029140472, 0.008095407858490944,
- 0.027624890208244324, -0.027251027524471283, 0.062037382274866104, 0.08135190606117249,
- 0.1302514672279358, 0.0840277224779129, -0.07055626809597015, -0.017961010336875916,
- -0.06514652818441391, 0.08146382123231888, 0.019127441570162773, 0.020132115110754967,
- -0.0320725291967392, -0.028158849105238914, -0.022537313401699066, 0.044972360134124756,
- -0.04434393346309662, 0.013624666258692741, 0.007509204559028149, -0.048705093562603,
- 0.034241221845149994, -0.0005236230790615082, 0.02301543764770031, -0.01191854290664196,
- 0.0395541749894619, -0.009898032061755657, 0.028033550828695297, 0.019941002130508423,
- 0.04669264331459999, -0.12209659069776535, 0.002152875764295459, -0.04731226712465286,
- -0.09991706162691116, 0.0372198149561882, -0.003325230907648802, 0.06131861358880997,
- 0.05913246423006058, 0.008243127726018429, 0.03590261563658714, 0.02002459391951561,
- -0.07052010297775269, 0.009060142561793327, 0.07582022249698639, 0.027895987033843994,
- 0.11461793631315231, 0.1270274966955185, -0.04911404103040695, -0.041922762989997864,
- -0.08413001894950867, 0.07960814237594604, 0.12364600598812103, -0.03326156735420227,
- 0.03130519390106201, 0.02162967622280121, -0.036388881504535675, -0.015048051252961159,
- -0.04811977222561836, -0.07953393459320068, -0.06070521101355553, -0.02352910302579403,
- 0.062069375067949295, 0.05884423106908798, -0.0235664751380682, -0.22078418731689453,
- -0.030533937737345695, -0.05905360355973244, 0.016439974308013916, 0.15526168048381805,
- -0.11081291735172272, 0.0788981169462204, -0.021539894863963127, -0.006515340879559517,
- -0.0026263026520609856, -0.08674117922782898, 0.024691130965948105, -0.0412278026342392,
- -0.0017847050912678242, 0.0532359853386879, 0.06050587072968483, -0.08643710613250732,
- 0.09911633282899857, -0.11542138457298279, 0.07434286922216415, 0.007467145565897226,
- -0.04863405600190163, 0.0014046200085431337, -0.045002248138189316,
- 0.023897139355540276, 0.0329572856426239, -0.07137914001941681, -0.000186628894880414,
- -0.013524564914405346, -0.03802156075835228, -0.09683673083782196, -0.08639700710773468,
- -0.06899525225162506, -0.08321008086204529, 0.04875176027417183, -0.0798046737909317,
- 0.012981567531824112, -0.02749059908092022, -0.004084511660039425,
- -0.0044447858817875385, 0.007457542233169079, 0.009448069147765636,
- -0.12094851583242416, 0.0018141837790608406, 0.0410345196723938, 0.03498413413763046,
- -0.007362604606896639, -0.03283094987273216, 0.0074333203956484795, 0.06316621601581573,
- 0.018094411119818687, -0.034300025552511215, 0.03883262723684311, -0.0548039935529232,
- 0.10241041332483292, -0.1178319901227951, -0.4341048300266266, 0.006220368202775717,
- 0.025301964953541756, 0.0576682910323143, 0.03650667145848274, -0.0729585736989975,
- 0.044692639261484146, 0.002613003831356764, -0.04548706114292145, 0.07975276559591293,
- -0.0402800552546978, 0.022116560488939285, -0.012630709446966648, -0.02357448637485504,
- -0.01209667045623064, -0.06279534846544266, -0.052406542003154755, 0.03366360068321228,
- 0.02541688084602356, -0.05667485296726227, -0.1457277238368988, 0.04902827739715576,
- -0.021053049713373184, 0.018240705132484436, 0.013107827864587307, 0.050566259771585464,
- -0.04703264683485031, -0.028546201065182686, 0.06167721748352051, 0.06096046417951584,
- 0.014114917255938053, -0.04268685355782509, -0.016932079568505287, 0.08809734880924225,
- -0.020697787404060364, 0.14176522195339203, 0.031215103343129158, -0.04698943719267845,
- -0.10181643813848495, 0.10291125625371933, 0.08603774011135101, 0.18746869266033173,
- 0.014692291617393494, -0.0005142869194969535, 0.048936083912849426, 0.1478063315153122,
- 0.039824482053518295, 0.04658147692680359, -0.04024685546755791, 0.0012634724844247103,
- 0.013944990932941437, 0.029912767931818962, 0.04420706257224083, -0.10702964663505554,
- -0.039098601788282394, -0.045435916632413864, -0.02418433502316475,
- -0.015287828631699085, -0.017628518864512444, 0.22615393996238708, 0.013181031681597233,
- 0.009705748409032822, 0.033219099044799805, -0.060705602169036865, 0.03464428707957268,
- -0.07142575830221176, -0.08870217949151993, 0.004893901292234659, 0.0033079038839787245,
- 0.026235811412334442, -0.013051722198724747, -0.12631821632385254,
- -0.013541456311941147, -0.000637185643427074, 0.009916422888636589, 0.12453873455524445,
- -0.032948318868875504, -0.0050584557466208935, -0.022925017401576042,
- 0.11452431231737137, 0.03970850259065628, 0.028350573033094406, 0.04906696081161499,
- 0.07709650695323944, 0.028693437576293945, -0.029981357976794243, -0.040449365973472595,
- -0.08288674801588058, -0.015832899138331413, 0.17174038290977478, -0.007532188203185797,
- 0.15027643740177155, 0.05715148150920868, -0.045130446553230286, -0.05059800297021866,
- 0.006693439558148384, -0.011361487209796906, 0.019644543528556824, -0.40714147686958313,
- -0.02745029516518116, 0.09335428476333618, 0.03502706438302994, -0.0033387138973921537,
- 0.0959646999835968, 0.03260713443160057, -0.05385829880833626, -0.04803890362381935,
- -0.09462372958660126, 0.15500472486019135, -0.02514675445854664, 0.047788847237825394,
- -0.1174231767654419, 0.02791258692741394, 0.07899641990661621, -0.023578708991408348,
- -0.0023652827367186546, 0.06733854860067368, -0.22032780945301056, -0.02118542231619358,
- -0.016152121126651764, 0.13405948877334595, -0.017705798149108887, 0.01326809823513031,
- 0.07766003906726837, -0.057047050446271896, 0.00638983678072691, 0.04808136820793152,
- -0.012417219579219818, 0.05451151728630066, -0.005456614773720503,
- -0.024699721485376358, 0.10723549127578735, 0.13802656531333923, 0.07250139862298965,
- -0.08122984319925308, 11.88851547241211, 0.07366040349006653, 0.0523412749171257,
- -0.07680021226406097, 0.02034391462802887, -0.034841813147068024, 0.046069853007793427,
- -0.07250500470399857, 0.04308340325951576, 0.1242448166012764, -0.010956577956676483,
- -0.020123329013586044, -0.024307429790496826, -0.10448415577411652,
- 0.007971033453941345, -0.03248327225446701, -0.05523906275629997, -0.04853742569684982,
- 0.036301419138908386, -0.03270982205867767, -0.05742266774177551, 0.07443386316299438,
- 0.056362085044384, 0.0078027984127402306, -0.08926594257354736, 0.07187369465827942,
- 0.008190984837710857, 0.01954471878707409, -0.022420570254325867, -0.00789607223123312,
- 0.01511994656175375, 0.027379240840673447, 0.0759691596031189, 0.05621280148625374,
- 0.016444429755210876, 0.07648459076881409, 0.050387296825647354, 0.016561618074774742,
- 0.012432606890797615, 0.08240461349487305, -0.015002114698290825, 0.029406508430838585,
- 0.016908416524529457, 0.0504266694188118, 0.08543169498443604, 0.03382452204823494,
- 0.022229870781302452, 0.14658348262310028, -0.004575894679874182, 0.0726546049118042,
- 0.08790081739425659, -0.020511271432042122, 0.11117935925722122, 0.02794604003429413,
- -0.010298497974872589, 0.035401009023189545, -0.04238225519657135, -0.1059710830450058,
- 0.09168140590190887, 0.020865438506007195, -0.028180060908198357, 0.11382327228784561,
- 0.046094927936792374, 0.1374719887971878, 0.028446011245250702, 0.04015243425965309,
- 0.046046074479818344, 0.07084371149539948, -0.10917128622531891, -0.08667957037687302,
- 0.04160948097705841, -0.09404979646205902, -0.07168018072843552, 0.05426326394081116,
- 0.0920572280883789, -0.03552905470132828, 0.055027008056640625, -0.02044537663459778,
- 0.007359218783676624, -0.008016001433134079, -0.00025232386542484164,
- 0.05830647051334381, -0.091337189078331, 0.008347747847437859, 0.054729342460632324,
- 0.03488461673259735, 0.10100118070840836, 0.13041351735591888, 0.005690451245754957,
- -0.07489721477031708, -0.09479871392250061, 0.11827357113361359, -0.0011355211026966572,
- -0.05987760052084923, -0.007599399425089359, -0.040609586983919144, 0.03660278394818306,
- -0.17711317539215088, 0.06968532502651215, 0.06675545871257782, -0.05051392689347267,
- -0.04810173064470291, -0.03567400202155113, 0.09124840795993805, 0.011971944943070412,
- 0.015625957399606705, -0.08065713942050934, -0.0033199891913682222,
- 0.027507862076163292, 0.053540654480457306, -0.05413060635328293, 0.03996437415480614,
- 0.07430063188076019, -0.08038505166769028, 0.07699351012706757, 0.0701213926076889,
- -0.06678534299135208, -0.033089928328990936, 0.05097244307398796,
- -0.0007388456724584103, -0.094185970723629, -0.04919992387294769, -0.011066719889640808,
- -0.037799324840307236, -0.01955384761095047, -0.04134586825966835,
- -0.006279877852648497, -0.005400070920586586, -0.029316019266843796,
- -0.03893732652068138, 0.03970884904265404, 0.06973058730363846, 0.08816930651664734,
- 0.026257246732711792, 0.07144209742546082, -0.07116986811161041, -0.0037448504008352757,
- 0.05057379975914955, 0.07099296152591705, 0.07734820246696472, -0.051089510321617126,
- -0.017642725259065628, -0.024170078337192535, -0.11579109728336334,
- 0.011010484769940376, 0.06908589601516724, 0.022573746740818024, 0.06010982394218445,
- 0.0467250719666481, -0.080323725938797, -0.07120538502931595, 0.1200513243675232,
- 0.03938101604580879, 0.00016409647651016712, -0.0015139353927224874,
- -0.03547854349017143, -0.030982717871665955, 0.11530779302120209, -0.04256241023540497,
- -0.040603335946798325, -0.028355266898870468, -0.0845889076590538, 0.1135474443435669,
- 0.11998637765645981, 0.011657646857202053, 0.032037120312452316, 0.06246446818113327,
- 0.02652730420231819, 0.03315611556172371, 0.010227097198367119, 0.02013695240020752,
- -0.045653603971004486, -0.09787937998771667, -0.11193428188562393,
- 0.0025136196054518223, 0.0848245769739151, 0.055843740701675415, -0.11979847401380539,
- 0.0024226955138146877, -0.012472927570343018
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 185,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": [
- "Alex Cadier",
- " Chine Labbé",
- " Virginia Padovese",
- " Giulia Pozzi",
- " Sara Badilini",
- " Roberta Schmid",
- " Madeline Roache",
- " Jack Brewster"
- ],
- "epoch_date_downloaded": 1652832000,
- "epoch_date_modified": 1652832000,
- "epoch_date_submitted": 1652832000,
- "flag": null,
- "report_number": 1589,
- "source_domain": "newsguardtech.com",
- "submitters": ["AIAAIC"],
- "title": "WarTok: TikTok is feeding war disinformation to new users within minutes — even if they don’t search for Ukraine-related content",
- "url": "https://www.newsguardtech.com/misinformation-monitor/march-2022/"
- },
- {
- "__typename": "Report",
- "authors": ["Sophie Mellor"],
- "epoch_date_downloaded": 1652832000,
- "epoch_date_modified": 1652832000,
- "epoch_date_submitted": 1652832000,
- "flag": null,
- "report_number": 1588,
- "source_domain": "fortune.com",
- "submitters": ["AIAAIC"],
- "title": "TikTok slammed for videos sharing false information about Russia’s war on Ukraine",
- "url": "https://fortune.com/2022/03/21/tiktok-misinformation-ukraine/amp/"
- },
- {
- "__typename": "Report",
- "authors": ["Alex Hern"],
- "epoch_date_downloaded": 1652832000,
- "epoch_date_modified": 1652832000,
- "epoch_date_submitted": 1652832000,
- "flag": null,
- "report_number": 1587,
- "source_domain": "theguardian.com",
- "submitters": ["AIAAIC"],
- "title": "TikTok algorithm directs users to fake news about Ukraine war, study says",
- "url": "https://www.theguardian.com/technology/2022/mar/21/tiktok-algorithm-directs-users-to-fake-news-about-ukraine-war-study-says"
- },
- {
- "__typename": "Report",
- "authors": ["Sheera Frenkel"],
- "epoch_date_downloaded": 1652832000,
- "epoch_date_modified": 1652832000,
- "epoch_date_submitted": 1652832000,
- "flag": null,
- "report_number": 1586,
- "source_domain": "nytimes.com",
- "submitters": ["AIAAIC"],
- "title": "TikTok Is Gripped by the Violence and Misinformation of Ukraine War",
- "url": "https://www.nytimes.com/2022/03/05/technology/tiktok-ukraine-misinformation.html"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "spanish-ministry-of-interior",
- "name": "Spanish Ministry of Interior"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "spanish-secretary-of-state-for-security",
- "name": "Spanish Secretary of State for Security"
- },
- {
- "__typename": "Entity",
- "entity_id": "spanish-ministry-of-interior",
- "name": "Spanish Ministry of Interior"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "spanish-victims-of-gender-violence",
- "name": "Spanish victims of gender violence"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1934, 1933, 1788, 1593, 1592, 1591, 1590],
- "vector": [
- -0.038211364299058914, 0.08333967626094818, 0.024645483121275902, -0.07205498218536377,
- 0.016907231882214546, -0.03113044984638691, -0.007064647041261196, 0.028283139690756798,
- 0.06009466573596001, -0.128687784075737, -0.023862147703766823, 0.008594089187681675,
- 0.041338857263326645, -0.06912755221128464, 0.0600573904812336, -0.08963929861783981,
- -0.08112146705389023, -0.016273777931928635, 0.010605946183204651, -0.06887060403823853,
- -0.06889794021844864, -0.006927643436938524, -0.018414083868265152, 0.08646547794342041,
- -0.029359975829720497, 0.0668448880314827, 0.10685600340366364, 0.11881954967975616,
- -0.08139574527740479, 0.052550818771123886, -0.040800873190164566, -0.05801276117563248,
- 0.12322519719600677, -0.0028664518613368273, 0.04420388489961624, 0.12085480242967606,
- 0.03990564122796059, -0.037955183535814285, -0.019520055502653122,
- -0.0003671438607852906, 0.03782106190919876, 0.20865853130817413, -0.053642962127923965,
- 0.004305165261030197, 0.05454020947217941, -0.023594681173563004, 0.00202684267424047,
- 0.06610976159572601, -0.009378359653055668, 0.031970489770174026, 0.02754719741642475,
- 0.012160255573689938, -0.024658584967255592, 0.010833545587956905, -0.12871088087558746,
- 0.04951042681932449, 0.03286290913820267, 0.0007508886628784239, 0.0056050019338727,
- -0.06185048446059227, -0.032220225781202316, -0.18702948093414307,
- -0.046613652259111404, -0.07348106801509857, 0.09505526721477509, -0.06664904206991196,
- -0.039151083678007126, -0.00013564593973569572, 0.025257278233766556,
- 0.05274422839283943, 0.045439302921295166, -0.032145969569683075, -0.024441884830594063,
- -0.027188587933778763, -0.0062110209837555885, -0.014524124562740326,
- 0.005881819874048233, 0.20052741467952728, -0.10277493298053741, 0.02508367970585823,
- 0.07793334871530533, -0.06746546924114227, 0.34917399287223816, 0.0006219097413122654,
- -0.023692071437835693, 0.010169395245611668, 0.06988929212093353, 0.014523489400744438,
- 0.036627136170864105, 0.043840695172548294, -0.02597924694418907, 0.06741166859865189,
- -0.059061553329229355, -0.011285691522061825, 0.07929660379886627, 0.02873811684548855,
- 0.006595245096832514, -0.0141950948163867, -0.033850666135549545, -0.027472343295812607,
- -0.011606705375015736, -0.036601126194000244, 0.05995010957121849, 0.08412734419107437,
- -0.07552094012498856, -0.0030532197561115026, 0.07643482834100723, -0.03956468030810356,
- 0.04266680032014847, -0.047221191227436066, 0.013116092421114445, 0.03800184279680252,
- 0.06361319124698639, 0.04577387496829033, 0.012053084559738636, -0.043176472187042236,
- 0.05202103406190872, 0.015998786315321922, 0.03587432950735092, 0.04685981199145317,
- -0.005330262240022421, 0.1020011231303215, 0.07099272310733795, -0.05459463968873024,
- -0.0640316978096962, -0.020109564065933228, -0.02572564408183098, -0.03518306463956833,
- -0.004989865701645613, 0.06927479803562164, -0.01461674552410841, -0.19752824306488037,
- -0.017811188474297523, 0.018325431272387505, -0.009765383787453175,
- -0.018097488209605217, 0.020715096965432167, -0.03554663807153702, 0.07124164700508118,
- 0.007400627713650465, -0.018859462812542915, 0.08323387056589127, 0.026723919436335564,
- -0.0020220803562551737, 0.12499430030584335, 0.07205387204885483, -0.052766501903533936,
- -0.06872250139713287, -0.01584649831056595, -0.014920794405043125, 0.1297013759613037,
- -0.10439272969961166, -0.05936910957098007, 0.015089950524270535, -0.04159347340464592,
- 0.6787947416305542, 0.1319694072008133, 0.13379384577274323, 0.008260778151452541,
- -0.02201828360557556, 0.1916382610797882, 0.014524698257446289, 0.04460173845291138,
- -0.057454101741313934, -0.02491101250052452, 0.01667957194149494, -0.060029275715351105,
- -0.014916456304490566, 0.03889302536845207, 0.03822459653019905, 0.09073535352945328,
- 0.02200353518128395, 0.053731318563222885, 0.0018919517751783133, -0.04032246395945549,
- -0.04072260484099388, 0.08443246781826019, -0.008816195651888847, -0.09781355410814285,
- -0.017128029838204384, 0.03299454227089882, 0.03890452906489372, -0.06333113461732864,
- -0.013298305682837963, -0.06086626276373863, 0.02297254092991352, -0.014956504106521606,
- 0.06433556973934174, -0.03301425278186798, 0.02095983736217022, 0.027807367965579033,
- 0.06473375111818314, -0.011540274135768414, -0.08374134451150894, -0.02096666768193245,
- 0.09211254119873047, -0.02710559032857418, -0.03433121740818024, 0.0920722484588623,
- -0.10041632503271103, 0.033902205526828766, -0.024899987503886223, 0.12485402077436447,
- -0.12868507206439972, 0.10874756425619125, -0.02488606795668602, -0.025569457560777664,
- 0.08969009667634964, 0.03728277608752251, -0.07256162166595459, -0.062129270285367966,
- 0.10114892572164536, 0.032580066472291946, 0.09544689953327179, 0.05193287506699562,
- -0.030954275280237198, 0.05634836480021477, 0.02334660291671753, 0.04331957548856735,
- -0.07409509271383286, 0.05892620235681534, 0.08936601132154465, -0.003547246800735593,
- -0.017238188534975052, 0.033524688333272934, 0.04515853524208069, 0.03103536367416382,
- 0.04349843040108681, 0.03609444946050644, 0.013563187792897224, -0.029987791553139687,
- 0.03369758650660515, 0.04885188862681389, 0.023052388802170753, 0.08927290141582489,
- -0.07416055351495743, -0.015422073192894459, -0.011626945808529854,
- -0.04456785321235657, 0.033334847539663315, -0.06374318897724152, 0.045628275722265244,
- 0.08616698533296585, 0.08617937564849854, 0.002551258308812976, 0.0651605874300003,
- 0.04010415077209473, 0.10836493968963623, -0.004440510645508766, 0.07698272913694382,
- -0.02100961096584797, -0.01754123903810978, -0.01949918270111084, -0.01300955843180418,
- 0.04895837977528572, -0.004147256724536419, -0.06601279228925705, -0.011503920890390873,
- -0.040086451917886734, -0.0900641530752182, -0.07573731243610382, -0.02556006796658039,
- -0.034236032515764236, 0.009267529472708702, -0.06188099831342697, -0.03027953766286373,
- -0.051999159157276154, 0.001793672563508153, 0.06191551685333252, -0.03397367522120476,
- -0.03058556094765663, -0.11400120705366135, 0.03081566095352173, -0.03292405232787132,
- 0.040344029664993286, -0.005770067218691111, -0.014351963065564632, 0.02268805168569088,
- -0.05161415413022041, -0.00012976489961147308, -0.019929425790905952,
- -0.07987096160650253, -0.05008140578866005, -0.006304363254457712,
- -0.0018445176538079977, 0.021767303347587585, -0.012300653383135796,
- -0.03339714556932449, -0.009524301625788212, 0.010315941646695137, 0.04441779479384422,
- -0.0222967229783535, -0.01899329386651516, 0.05845233425498009, -0.02131720446050167,
- 0.013592706061899662, 0.10323137789964676, -0.019580291584134102, 0.025131743401288986,
- 0.014690512791275978, -0.06354620307683945, -0.06426123529672623, -0.0374709852039814,
- -0.0352795384824276, 0.01907748356461525, -0.03802371770143509, 0.01291899848729372,
- -0.03592522814869881, -0.020991334691643715, 0.018140748143196106, -0.06816232204437256,
- -0.08496736735105515, -0.08857936412096024, 0.11035660654306412, 0.03196578472852707,
- 0.027611808851361275, 0.010143384337425232, -0.07508892565965652, 0.03664369136095047,
- 0.019083580002188683, 0.008336498402059078, 0.0399785041809082, 0.09044113010168076,
- -0.02135147713124752, 0.006486148573458195, 0.03581099584698677, -0.011374802328646183,
- 0.0070007359609007835, 0.09028124809265137, 0.4436076581478119, -0.09870697557926178,
- 0.10649765282869339, 0.11554314941167831, 0.009185999631881714, 0.03225437179207802,
- -0.07810576260089874, 0.024810267612338066, 0.08192716538906097, 0.1341700702905655,
- 0.09733789414167404, -0.017267799004912376, -0.012311614118516445,
- -0.055785004049539566, 0.05415326729416847, 0.017960820347070694, 0.025433620437979698,
- -0.02060532383620739, -0.0849902555346489, -0.010977488942444324, 0.03262252360582352,
- -0.027429848909378052, 0.011928839609026909, 0.035139571875333786, -0.10854379087686539,
- -0.006194370798766613, 0.043722230941057205, 0.021154437214136124,
- -0.011247152462601662, 0.055642448365688324, -0.05322300270199776, 0.01422715000808239,
- 0.030501406639814377, 0.003964668605476618, -0.13865938782691956, 0.03585642948746681,
- -0.0541246123611927, -0.054841604083776474, 0.050215158611536026, -0.001458039740100503,
- 0.035135213285684586, 0.05338846892118454, -0.041562873870134354, 0.030130846425890923,
- -0.028316931799054146, -0.06408711522817612, 0.021189222112298012, 0.05397418886423111,
- 0.0005607888451777399, 0.0744919553399086, 0.13026387989521027, -0.005841830279678106,
- 0.0017527149757370353, -0.06531880050897598, 0.06951430439949036, 0.11438965052366257,
- -0.0080886110663414, -0.013571815565228462, 0.03195676580071449, -0.013608703389763832,
- 0.03430920094251633, -0.007020763121545315, -0.05783699080348015, -0.030197162181138992,
- -0.02352750673890114, 0.10546435415744781, 0.04625502601265907, -0.0384070947766304,
- -0.1551571637392044, -0.028126360848546028, -0.06450586766004562, -0.004927407950162888,
- 0.11308860033750534, -0.07731584459543228, 0.06742533296346664, 0.027084635570645332,
- 0.043849822133779526, 0.008905895054340363, -0.061039332300424576, 0.004614151548594236,
- -0.08260829001665115, 0.025961492210626602, 0.05102498084306717, 0.0365557037293911,
- -0.030590670183300972, 0.08019285649061203, -0.0810064822435379, 0.07994768768548965,
- 0.015489442273974419, 0.019500885158777237, -0.01174419466406107, 0.0013610746245831251,
- 0.010483651421964169, 0.023032287135720253, -0.023018714040517807, 0.00739482045173645,
- -0.034704532474279404, -0.0443507544696331, -0.06403671950101852, -0.054621048271656036,
- -0.01776452735066414, -0.08358310163021088, 0.06326466053724289, -0.0678483173251152,
- -0.03206237405538559, -0.033910639584064484, -0.015813197940587997,
- 0.0034058738965541124, -0.006065291818231344, -0.017188193276524544,
- -0.09059326350688934, 0.004048085305839777, -0.003251139773055911, 0.061619602143764496,
- -0.050652313977479935, -0.03518225997686386, 0.01934780739247799, 0.051153577864170074,
- 0.026008103042840958, -0.003542914753779769, -0.023182256147265434, 0.01773841865360737,
- 0.03386199101805687, -0.08213833719491959, -0.3001003563404083, 0.04049386829137802,
- 0.004564687144011259, 0.04450902342796326, 0.020074447616934776, -0.092129647731781,
- 0.01565728150308132, -0.0019191745668649673, 0.008762944489717484, 0.08202517777681351,
- -0.06389108300209045, 0.032103199511766434, -0.025309478864073753, -0.11699030548334122,
- 0.014778323471546173, -0.03764232620596886, -0.04250720888376236, 0.03606454282999039,
- -0.0025513614527881145, -0.08090276271104813, -0.11885251849889755, 0.03544401377439499,
- 0.0058318874798715115, 0.003339149057865143, 0.012620491907000542,
- -0.009424797259271145, -0.0593445710837841, -0.0606878399848938, 0.021132241934537888,
- 0.03465423360466957, 0.014550939202308655, -0.07046950608491898, -0.024374643340706825,
- 0.03169162943959236, 0.05261832848191261, 0.07596492767333984, 0.031680312007665634,
- 0.010823970660567284, -0.04509371519088745, 0.08000510185956955, 0.05571993812918663,
- 0.18723300099372864, -0.009097673930227757, -0.013723907060921192, 0.05253233388066292,
- 0.10623210668563843, 0.011346935294568539, 0.01531556248664856, -0.04419417306780815,
- -0.021222589537501335, 0.037512119859457016, 0.03871820494532585, 0.06705424934625626,
- -0.05754930153489113, -0.02106020227074623, -0.04585545137524605, 0.020141785964369774,
- -0.037283215671777725, -0.0458974614739418, 0.193918839097023, -0.0019657558295875788,
- 0.02063658833503723, 0.02747119776904583, -0.06825586408376694, -0.016764488071203232,
- -0.08208580315113068, -0.10531700402498245, -0.016140347346663475, 0.003918657545000315,
- 0.037662260234355927, -0.08106975257396698, -0.10718200355768204, 0.017629431560635567,
- -0.01761247217655182, -0.003338231472298503, 0.09002940356731415, -0.01161033846437931,
- 0.07220105826854706, -0.053038451820611954, 0.15384677052497864, 0.024533700197935104,
- 0.01992657408118248, 0.04099303111433983, 0.06830625981092453, 0.02043459378182888,
- -0.028421709313988686, -0.025483453646302223, -0.028073903173208237,
- -0.017663614824414253, 0.1303143948316574, -0.021506449207663536, 0.06981262564659119,
- 0.029940592125058174, -0.036368247121572495, -0.06882967054843903, 0.022674815729260445,
- -0.04907624050974846, 0.027139533311128616, -0.4061238467693329, -0.029936879873275757,
- 0.11456327885389328, -0.04979950189590454, 0.036899030208587646, 0.08554551750421524,
- 0.011990373022854328, -0.06684519350528717, -0.008871487341821194, -0.06531649827957153,
- 0.07487696409225464, 0.00036183730117045343, 0.0789918527007103, -0.05496707931160927,
- 0.024835254997015, 0.09307802468538284, -0.034785229712724686, -0.0007133626495487988,
- 0.03816535696387291, -0.20974135398864746, -0.004882447887212038, -0.07129182666540146,
- 0.10170238465070724, 0.030969690531492233, 0.005052259657531977, 0.08817733824253082,
- -0.04440218582749367, 0.029236529022455215, 0.05637311935424805, 0.0128286462277174,
- 0.053837064653635025, 0.03614317998290062, -0.019961604848504066, 0.06119324639439583,
- 0.048572175204753876, 0.039803266525268555, -0.0005869065644219518, 11.912076950073242,
- 0.036095745861530304, 0.04140020161867142, -0.07410462200641632, 0.03094780445098877,
- -0.035447023808956146, 0.04718548431992531, -0.10871975868940353, 0.07266435772180557,
- 0.06852520257234573, 0.0025149695575237274, -0.05422544479370117, -0.03319626674056053,
- -0.06789803504943848, 0.010315312072634697, -0.025391334667801857, -0.04352707043290138,
- -0.023809043690562248, 0.023490523919463158, -0.06140155345201492,
- -0.007940050214529037, 0.017037086188793182, 0.06325553357601166, -0.002667609602212906,
- -0.05907586216926575, -0.027729863300919533, 0.04674417898058891, -0.016161847859621048,
- 0.0063813733868300915, 0.03288410231471062, -0.04129437729716301, -0.031771209090948105,
- 0.053016550838947296, -0.022318750619888306, 0.06263168156147003, 0.05146053060889244,
- 0.05438931658864021, 0.05826357379555702, 0.0232081301510334, 0.0762525424361229,
- 0.01843830570578575, 0.062459077686071396, 0.02550581283867359, 0.0051894234493374825,
- 0.0682404562830925, 0.056673068553209305, 0.037846047431230545, 0.10213514417409897,
- 0.005876870360225439, 0.030908623710274696, 0.0928046777844429, -0.00806181039661169,
- 0.09264619648456573, -0.05580132454633713, 0.009175638668239117, 0.022535022348165512,
- 0.006279091816395521, -0.089596226811409, 0.03808916360139847, 0.0955713614821434,
- -0.04399139806628227, 0.13221858441829681, 0.028750644996762276, 0.05228262022137642,
- 0.01782250963151455, 0.07816969603300095, 0.12497083842754364, 0.04060504958033562,
- -0.17147326469421387, -0.04266393184661865, 0.04353852942585945, -0.09764646738767624,
- -0.09046025574207306, 0.05450404807925224, 0.058776576071977615,
- -0.00016581553791183978, 0.06411624699831009, 0.008148432709276676,
- -0.00632436154410243, -0.07037349045276642, 0.006719575263559818, 0.02340206317603588,
- -0.007713991217315197, 0.023474980145692825, 0.053108930587768555, 0.04807165637612343,
- 0.03459256887435913, 0.08111793547868729, 0.017433220520615578, -0.06337378919124603,
- -0.0671352967619896, 0.08663801103830338, -0.030454877763986588, -0.06002267077565193,
- 0.009389746002852917, -0.06263383477926254, -0.00027970204246230423,
- -0.10395635664463043, 0.03974786773324013, 0.09029144793748856, -0.054143209010362625,
- -0.005672163795679808, -0.032290019094944, 0.06761182099580765, 0.0026013783644884825,
- -0.0006584437214769423, -0.10186140984296799, 0.02222914807498455, -0.00534758809953928,
- 0.024713801220059395, -0.047219324856996536, 0.06324248760938644, 0.056775156408548355,
- -0.056807614862918854, 0.026581231504678726, 0.04528679698705673, -0.011162386275827885,
- -0.06678492575883865, 0.07119198143482208, 0.05770016461610794, -0.09174032509326935,
- -0.03178346902132034, -0.029181616380810738, -0.02919830195605755, -0.05606688931584358,
- -0.037164561450481415, 0.014889584854245186, -0.009847129695117474, -0.0734756737947464,
- -0.010373478755354881, 0.05288267135620117, 0.0630243644118309, 0.045940108597278595,
- -0.021392127498984337, 0.0669756531715393, -0.06424573808908463, -0.05440443009138107,
- 0.033557239919900894, 0.004966824781149626, 0.08006154745817184, -0.029176726937294006,
- 0.005118195433169603, -0.1002541109919548, -0.12262921780347824, 0.06404135376214981,
- 0.10337444394826889, 0.0494341216981411, 0.06719281524419785, 0.021353306248784065,
- -0.11347884684801102, -0.004123683553189039, 0.07392316311597824, 0.03715759888291359,
- -0.006674802862107754, 0.009706346318125725, -0.05703607201576233, -0.04304569587111473,
- 0.10633230209350586, -0.038843635469675064, -0.01245672907680273, 0.0356861837208271,
- -0.04434236139059067, 0.048478562384843826, 0.10725779831409454, 0.04527777060866356,
- 0.04726770520210266, 0.02435722015798092, 0.044233374297618866, -0.014830528758466244,
- 0.007658620364964008, -0.02496195212006569, -0.0357079803943634, -0.0722421258687973,
- -0.09313655644655228, 0.015121238306164742, 0.1093955710530281, 0.03579225391149521,
- -0.04771420359611511, 0.01813255436718464, -0.04531785100698471
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 186,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Carlos del Castillo"],
- "epoch_date_downloaded": 1660867200,
- "epoch_date_modified": 1660867200,
- "epoch_date_submitted": 1652832000,
- "flag": null,
- "report_number": 1934,
- "source_domain": "eldiario.es",
- "submitters": ["AIAAIC"],
- "title": "Las víctimas denuncian fallos en VioGén, el algoritmo contra la violencia de género",
- "url": "https://www.eldiario.es/tecnologia/victimas-denuncian-fallos-viogen-algoritmo-violencia-genero_1_8815201.html"
- },
- {
- "__typename": "Report",
- "authors": ["Rafael J. Álvarez"],
- "epoch_date_downloaded": 1660867200,
- "epoch_date_modified": 1660867200,
- "epoch_date_submitted": 1652832000,
- "flag": null,
- "report_number": 1933,
- "source_domain": "elmundo.es",
- "submitters": ["AIAAIC"],
- "title": "Las asesinadas que denunciaron se valoraron como 'riesgo bajo o nulo'",
- "url": "https://www.elmundo.es/espana/2014/12/09/54861553ca4741734b8b457e.html"
- },
- {
- "__typename": "Report",
- "authors": ["RTVE.es"],
- "epoch_date_downloaded": 1652832000,
- "epoch_date_modified": 1658793600,
- "epoch_date_submitted": 1652832000,
- "flag": null,
- "report_number": 1788,
- "source_domain": "rtve.es",
- "submitters": ["AIAAIC"],
- "title": "Nuevo protocolo para valorar riesgo de víctimas de género",
- "url": "https://www.rtve.es/noticias/20190313/entra-vigor-nuevo-protocolo-policial-para-valorar-riesgo-victimas-violencia-genero/1900900.shtml"
- },
- {
- "__typename": "Report",
- "authors": ["Melissa Heikkilä"],
- "epoch_date_downloaded": 1652832000,
- "epoch_date_modified": 1652832000,
- "epoch_date_submitted": 1652832000,
- "flag": null,
- "report_number": 1593,
- "source_domain": "politico.eu",
- "submitters": ["AIAAIC"],
- "title": "AI: Decoded: Spain’s flawed domestic abuse algorithm — Ban debate heats up — Holding the police accountable",
- "url": "https://www.politico.eu/newsletter/ai-decoded/spains-flawed-domestic-abuse-algorithm-ban-debate-heats-up-holding-the-police-accountable-2/"
- },
- {
- "__typename": "Report",
- "authors": [
- "Juan José López-Ossorio",
- " José Luis González-Álvarez",
- " José Manuel Muñoz Vicente",
- " Carlota Urruela Cortés",
- " Antonio Andrés-Pueyo"
- ],
- "epoch_date_downloaded": 1652832000,
- "epoch_date_modified": 1652832000,
- "epoch_date_submitted": 1652832000,
- "flag": null,
- "report_number": 1592,
- "source_domain": "link.springer.com",
- "submitters": ["AIAAIC"],
- "title": "Validation and Calibration of the Spanish Police Intimate Partner Violence Risk Assessment System (VioGén)",
- "url": "https://link.springer.com/article/10.1007/s11896-019-09322-9"
- },
- {
- "__typename": "Report",
- "authors": ["Eticas Foundation"],
- "epoch_date_downloaded": 1652832000,
- "epoch_date_modified": 1656115200,
- "epoch_date_submitted": 1652832000,
- "flag": null,
- "report_number": 1591,
- "source_domain": "eticasfoundation.org",
- "submitters": ["AIAAIC"],
- "title": "The External Audit of the VioGen System",
- "url": "https://eticasfoundation.org/wp-content/uploads/2022/03/ETICAS-FND-The-External-Audit-of-the-VioGen-System.pdf"
- },
- {
- "__typename": "Report",
- "authors": ["Michele Catanzaro"],
- "epoch_date_downloaded": 1652832000,
- "epoch_date_modified": 1652832000,
- "epoch_date_submitted": 1652832000,
- "flag": null,
- "report_number": 1590,
- "source_domain": "algorithmwatch.org",
- "submitters": ["AIAAIC"],
- "title": "In Spain, the VioGén algorithm attempts to forecast gender violence",
- "url": "https://algorithmwatch.org/en/viogen-algorithm-gender-violence/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "ai-addict",
- "name": "AI Addict"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "tesla",
- "name": "Tesla"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "san-jose-public",
- "name": "San Jose public"
- },
- {
- "__typename": "Entity",
- "entity_id": "john-bernal",
- "name": "John Bernal"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1598, 1597, 1596],
- "vector": [
- -0.08307968825101852, 0.07316997647285461, -0.013775370083749294, -0.08463630825281143,
- 0.10516297817230225, -0.009612160734832287, -0.010422535240650177, 0.044192153960466385,
- 0.07796202600002289, -0.1383877396583557, 0.014292843639850616, 0.06893856078386307,
- 0.020269304513931274, -0.0627351626753807, 0.07060568034648895, -0.016528932377696037,
- -0.06361397355794907, -0.061730723828077316, -0.028817271813750267,
- -0.08087441325187683, -0.07352281361818314, 0.019218411296606064, 0.018011189997196198,
- 0.09839197248220444, -0.0752914547920227, 0.014087055809795856, 0.10202714055776596,
- 0.09242066740989685, -0.04982185736298561, 0.03393362835049629, -0.012417621910572052,
- -0.06411967426538467, 0.10647132247686386, 0.03224261477589607, -0.0024215057492256165,
- 0.10316687822341919, 0.018076246604323387, -0.011866424232721329, -0.07417292147874832,
- 0.00950965378433466, 0.03987247496843338, 0.19795210659503937, 0.01471232995390892,
- -0.039812102913856506, 0.06679987162351608, -0.04581316187977791, 0.0381624810397625,
- 0.054807260632514954, 0.019539153203368187, 0.017105840146541595, -0.026951923966407776,
- 0.031349487602710724, -0.03213925287127495, 0.04487469792366028, -0.11166208982467651,
- 0.0684577077627182, 0.03530688211321831, 0.01420765370130539, 0.06832996755838394,
- -0.0470556914806366, -0.06101474165916443, -0.19341428577899933, -0.02777528576552868,
- -0.02358252741396427, 0.06174718961119652, -0.0591617077589035, -0.023459747433662415,
- 0.031836386770009995, 0.047039974480867386, 0.03977220132946968, 0.03438347950577736,
- -0.04125722125172615, -0.054223787039518356, 0.014487364329397678,
- -0.016025876626372337, -0.012635995633900166, 0.0194696057587862, 0.1676662713289261,
- -0.1051410436630249, -0.013013388030230999, 0.09226685017347336, -0.10249678045511246,
- 0.3767074644565582, 0.011052615940570831, -0.0260578915476799, -0.00391536857932806,
- 0.0986914336681366, 0.021816805005073547, 0.021002046763896942, 0.014945079572498798,
- -0.03569341450929642, 0.03712158650159836, -0.04980767145752907, -0.007610055152326822,
- 0.06996806710958481, 0.008464129641652107, 0.010614518076181412, -0.021941402927041054,
- 0.0003713903424795717, -0.07123959809541702, 0.004390145186334848, -0.0491730235517025,
- 0.12777335941791534, 0.05498982593417168, -0.014724664390087128, -0.0005900575779378414,
- 0.09645521640777588, -0.04378146305680275, 0.04981404170393944, -0.05072246864438057,
- 0.03289828076958656, 0.03632801026105881, 0.02950759418308735, -0.00995008647441864,
- 0.036098968237638474, -0.06007321551442146, 0.003545838175341487, 0.03691871091723442,
- 0.08530757576227188, 0.05465170741081238, -0.020641475915908813, 0.05619285628199577,
- 0.03697611764073372, -0.08810168504714966, -0.04409819841384888, -0.04263659939169884,
- -0.05544876679778099, -0.010786507278680801, -0.03618684038519859, 0.05570061132311821,
- -0.07608038932085037, -0.20995014905929565, 0.0019438527524471283, 0.10141851752996445,
- -0.010364869609475136, -0.021082879975438118, 0.0038330378010869026,
- -0.07184170931577682, 0.06501233577728271, -0.004302703309804201, -0.0396396778523922,
- 0.04031538590788841, 0.06204932928085327, 0.04304063692688942, 0.14916975796222687,
- 0.048113349825143814, -0.029513942077755928, -0.03960220515727997, 0.024063855409622192,
- -0.04798516631126404, 0.09590378403663635, -0.11897449940443039, -0.0466543473303318,
- -0.004744748119264841, -0.035239484161138535, 0.6728463172912598, 0.13884811103343964,
- 0.19275237619876862, 0.02963349036872387, -0.04531123861670494, 0.15066753327846527,
- -0.03007199801504612, 0.04454522207379341, -0.09718954563140869, -0.050801295787096024,
- 0.010234173387289047, -0.09435022622346878, -0.042035434395074844, 0.01883406937122345,
- -0.014701622538268566, 0.09692221134901047, 0.03114592470228672, 0.0881170853972435,
- -0.00832811277359724, -0.09861461073160172, -0.026603177189826965, 0.03517720475792885,
- 0.016058599576354027, -0.09546869248151779, -0.04668053984642029, 0.032521817833185196,
- 0.10445504635572433, -0.04598871245980263, 0.020833874121308327, -0.053808119148015976,
- 0.03250950202345848, -0.01525764912366867, 0.02058703638613224, -0.006255039945244789,
- 0.03995038941502571, 0.04064830765128136, 0.08336061984300613, -0.021858809515833855,
- -0.10031741112470627, -0.002131292363628745, 0.1212441623210907, -0.027198517695069313,
- -0.053385764360427856, 0.05345824360847473, -0.061261773109436035, 0.0463215708732605,
- 0.01494821161031723, 0.10964753478765488, -0.11688917875289917, 0.026917889714241028,
- -0.009944585151970387, -0.008414252661168575, 0.057529035955667496,
- -0.015044831670820713, -0.08341167122125626, -0.06885615736246109, 0.11770083755254745,
- 0.026473186910152435, 0.05225105956196785, 0.03897589445114136, -0.027720695361495018,
- 0.01981915719807148, 0.1177988275885582, 0.007732031866908073, 0.007259654346853495,
- 0.0501055009663105, 0.07783985137939453, -0.053012460470199585, -0.02886548638343811,
- 0.0012291428865864873, 0.03081992268562317, 0.031491272151470184, 0.0022557091433554888,
- 0.060565173625946045, 0.02704710327088833, -0.05823320150375366, 0.00881014484912157,
- 0.04585837200284004, 0.013850967399775982, 0.12170547991991043, -0.03930457681417465,
- -0.050809595733881, -0.03582138940691948, -0.018333012238144875, 0.008381597697734833,
- -0.03616185113787651, 0.07665754109621048, 0.07968900352716446, 0.045359257608652115,
- 0.03489520773291588, 0.034535039216279984, 0.042296525090932846, 0.05788849666714668,
- 0.016030870378017426, 0.09468230605125427, -0.031867846846580505, -0.04142623022198677,
- -0.011169134639203548, -0.00880496483296156, 0.034389350563287735, 0.007029692176729441,
- -0.06324741244316101, -0.029411740601062775, -0.050106894224882126,
- -0.0019554707687348127, -0.088567815721035, -0.03386825695633888, -0.004390797112137079,
- 0.06106163188815117, -0.029779063537716866, -0.07627172023057938, -0.08905162662267685,
- 0.02616281621158123, 0.07905219495296478, -0.015356537885963917, 0.015332707203924656,
- -0.11768553406000137, -0.006661002058535814, -0.058443885296583176, 0.04372427985072136,
- 0.01226786244660616, -0.013903102837502956, -0.01833474263548851, -0.04663601890206337,
- 0.0036956267431378365, -0.001455053687095642, 0.004131775349378586,
- -0.040377210825681686, -0.07871545106172562, -0.06789839267730713,
- -0.012182511389255524, -0.014253388158977032, -0.028720447793602943,
- 0.039106935262680054, 0.023745452985167503, 0.047533899545669556, 0.006211983505636454,
- -0.037991542369127274, 0.07171332091093063, -0.04472045227885246, -0.029258111491799355,
- 0.09705416113138199, -0.004212693776935339, 0.05157635733485222, 0.007367779966443777,
- -0.08493083715438843, -0.0342952162027359, 0.026598235592246056, -0.06073776260018349,
- 0.05011060833930969, -0.04678431525826454, -0.013687520287930965, -0.0143614886328578,
- -0.0043698386289179325, 0.03043769858777523, -0.040778905153274536,
- -0.05457363650202751, -0.08123578131198883, 0.14923003315925598, 0.009846142493188381,
- -0.012055695056915283, 0.036123063415288925, -0.04408945143222809, 0.03917494788765907,
- -0.009958256036043167, 0.013473129831254482, -0.010293419472873211, 0.06654874235391617,
- -0.013772740960121155, -0.00003077462315559387, 0.06449825316667557,
- -0.05238952860236168, -0.002496185712516308, 0.09371668100357056, 0.42557981610298157,
- -0.22176122665405273, 0.05975838378071785, 0.10675680637359619, 0.03067801147699356,
- 0.06039316579699516, -0.047320157289505005, 0.0578325055539608, 0.0646347925066948,
- 0.1005256399512291, 0.1180841326713562, -0.021331727504730225, -0.015187516808509827,
- -0.025246210396289825, 0.07694926112890244, -0.009746965020895004, 0.009089008904993534,
- -0.020924037322402, -0.07570583373308182, -0.0026475039776414633, 0.06140865758061409,
- -0.0551789291203022, 0.025947341695427895, -0.03206886351108551, -0.07669467478990555,
- -0.0022570143919438124, 0.03959967568516731, 0.026606716215610504,
- -0.032179009169340134, -0.0011288780951872468, -0.02952202595770359,
- 0.029989071190357208, 0.01866544969379902, 0.034314364194869995, -0.09805580228567123,
- 0.032637789845466614, -0.10440820455551147, -0.10874738544225693, 0.09314610809087753,
- -0.030433669686317444, 0.05653349682688713, 0.05252944305539131, -0.04172298312187195,
- 0.049023211002349854, 0.0025893275160342455, -0.03955340385437012,
- -0.0032373585272580385, 0.05571593716740608, 0.04222799465060234, 0.07193433493375778,
- 0.12288110703229904, -0.03573859855532646, -0.04124735668301582, -0.052722323685884476,
- 0.0712452158331871, 0.11097315698862076, -0.038331933319568634, -0.010553148575127125,
- -0.021963471546769142, -0.02939506620168686, -0.012993755750358105,
- -0.08799659460783005, -0.07883632183074951, -0.009271539747714996, -0.04840897396206856,
- 0.0802571177482605, 0.03464573249220848, -0.05892929434776306, -0.18219506740570068,
- -0.058812160044908524, -0.045485060662031174, 0.028083672747015953, 0.1339537352323532,
- -0.057940419763326645, 0.04714474081993103, 0.04203391447663307, -0.03337040916085243,
- 0.007746455725282431, -0.1039481833577156, -0.0029920125380158424, -0.06834518164396286,
- 0.0312555693089962, 0.07875280827283859, 0.0447835810482502, -0.02384665608406067,
- 0.05449099466204643, -0.08354425430297852, 0.07347599416971207, 0.002215539338067174,
- -0.020338689908385277, 0.040720224380493164, -0.02768794260919094, 0.04259919002652168,
- 0.04264175519347191, -0.04548056051135063, 0.0034084233921021223, -0.04948853328824043,
- -0.03855485841631889, -0.09669021517038345, -0.07822969555854797, -0.027815215289592743,
- -0.1056455597281456, 0.03265994042158127, -0.10628190636634827, -0.04331499710679054,
- -0.011015434749424458, -0.009654530324041843, 0.018020039424300194, 0.03554189205169678,
- 0.024796782061457634, -0.13975350558757782, 0.03549565002322197, -0.012203323654830456,
- 0.06391049176454544, 0.009968509897589684, -0.04901969060301781, -0.008861146867275238,
- 0.094422847032547, 0.05878534913063049, -0.022405026480555534, 0.021382799372076988,
- -0.0691438838839531, 0.027979357168078423, -0.081609807908535, -0.5008322596549988,
- 0.04776899144053459, 0.01575036533176899, 0.03417172655463219, 0.011739562265574932,
- -0.07930909842252731, 0.03505203500390053, 0.013089899905025959, -0.04713830351829529,
- 0.07836271822452545, -0.049075882881879807, 0.03481847420334816, -0.03866860643029213,
- -0.05843523517251015, -0.034156788140535355, -0.03415598347783089, -0.04165370389819145,
- 0.05674856901168823, -0.03187267482280731, -0.05679495260119438, -0.1180475577712059,
- 0.05937999114394188, -0.045089852064847946, -0.018237996846437454,
- -0.004117961972951889, 0.013479202054440975, -0.062361255288124084,
- -0.029533958062529564, 0.034790944308042526, 0.06303022056818008, 0.05332257226109505,
- -0.07152095437049866, -0.029452679678797722, 0.02549896389245987, -0.03124246560037136,
- 0.10491438955068588, -0.020722560584545135, -0.0006427441840060055,
- -0.08067408204078674, 0.07234905660152435, 0.05572396144270897, 0.18685610592365265,
- -0.027332760393619537, -0.013345918618142605, 0.011015419848263264, 0.1286570280790329,
- 0.05049332603812218, 0.021022893488407135, -0.03354613855481148, -0.01706920936703682,
- 0.06669530272483826, -0.03315873071551323, 0.042498473078012466, -0.08110614120960236,
- -0.046840399503707886, 0.01071358472108841, -0.03212067112326622,
- 0.00008141187572618946, 0.02512945979833603, 0.18957389891147614, 0.01864549331367016,
- 0.018497303128242493, 0.0026448925491422415, -0.07438641786575317, 0.007557329256087542,
- -0.0422755666077137, -0.07576030492782593, -0.010964724235236645, -0.001316756010055542,
- 0.03766791895031929, -0.052804794162511826, -0.11269116401672363, -0.023264644667506218,
- -0.006270980928093195, 0.03241623938083649, 0.10664435476064682, 0.01519980002194643,
- 0.037063729017972946, -0.002740569179877639, 0.11918998509645462, 0.039151281118392944,
- 0.01613934524357319, 0.038297388702631, 0.07515538483858109, 0.03882386535406113,
- 0.03643601015210152, -0.04516468942165375, -0.05805617943406105, 0.029305679723620415,
- 0.13159817457199097, -0.03661895915865898, 0.08985275030136108, 0.0379067100584507,
- 0.008366399444639683, -0.05790818855166435, 0.035472121089696884, 0.018642175942659378,
- 0.003955385182052851, -0.46189606189727783, -0.01042329240590334, 0.0975222960114479,
- 0.015989242121577263, 0.016119694337248802, 0.08174199610948563, 0.030759146437048912,
- -0.003674117149785161, -0.048627253621816635, -0.04696410894393921, 0.10033271461725235,
- -0.012017135508358479, 0.03472756966948509, -0.11826974153518677, 0.01113033015280962,
- 0.059999942779541016, -0.004103459883481264, -0.006210703402757645, 0.07898808270692825,
- -0.18136918544769287, 0.003778395475819707, -0.0657421126961708, 0.165213942527771,
- 0.06345797330141068, 0.02194198966026306, 0.07317643612623215, -0.058774400502443314,
- 0.03697679936885834, 0.07031465321779251, -0.008424085564911366, 0.05068336799740791,
- 0.024787619709968567, -0.025244170799851418, 0.11131735891103745, 0.10186716914176941,
- 0.1156001016497612, -0.0005266164080239832, 11.91308307647705, 0.06419143825769424,
- 0.05425170063972473, -0.07858790457248688, 0.013016823679208755, -0.07205437123775482,
- 0.040268294513225555, -0.09471023827791214, 0.0792527124285698, 0.1555078774690628,
- -0.020531492307782173, -0.014276196248829365, -0.021026544272899628,
- -0.07729411870241165, 0.0179749708622694, -0.07360178232192993, -0.06054322049021721,
- -0.03831334784626961, 0.05433804914355278, -0.053382813930511475, -0.003656109794974327,
- 0.02444920875132084, 0.06434235721826553, -0.010051481425762177, -0.09085347503423691,
- 0.0530255101621151, 0.00023515305656474084, 0.01640164852142334, -0.004395905416458845,
- 0.051652420312166214, -0.02267141453921795, 0.03804581239819527, 0.05346683785319328,
- 0.008305709809064865, 0.025331327691674232, 0.09303345531225204, 0.06556375324726105,
- 0.06123879551887512, 0.04043588414788246, 0.08111418783664703, 0.02289767563343048,
- 0.04031175747513771, 0.03752735257148743, 0.028061961755156517, 0.030904849991202354,
- 0.05135367438197136, 0.05323566123843193, 0.12832744419574738, 0.0033564800396561623,
- 0.035399213433265686, 0.08773893117904663, -0.009156519547104836, 0.12301177531480789,
- 0.004533491097390652, -0.027533849701285362, 0.004234578926116228,
- -0.016865437850356102, -0.07315824180841446, 0.08217590302228928, 0.06875395774841309,
- -0.034094344824552536, 0.09750717878341675, 0.027093440294265747, 0.07112129777669907,
- 0.029690751805901527, 0.04722681641578674, 0.04208634793758392, 0.095610611140728,
- -0.10047087073326111, -0.08415883779525757, 0.04314799979329109, -0.09194961935281754,
- -0.061082709580659866, 0.04338763281702995, 0.10737377405166626, -0.06627818197011948,
- 0.07343398779630661, -0.05277286469936371, 0.017444923520088196, -0.041164178401231766,
- -0.023268716409802437, 0.0417451374232769, 0.00021556175488512963, 0.011118081398308277,
- 0.0318155400454998, 0.02631625346839428, 0.09324011206626892, 0.07812382280826569,
- -0.017612455412745476, -0.06089441850781441, -0.08190795034170151, 0.08627627044916153,
- -0.01505398377776146, -0.04939967393875122, 0.036630917340517044, -0.03946000337600708,
- 0.08326876163482666, -0.1453429013490677, 0.06758721172809601, 0.07505177706480026,
- -0.08545238524675369, -0.030222797766327858, -0.015800386667251587, 0.06736072897911072,
- 0.008945100009441376, 0.04306776821613312, -0.03235595300793648, 0.013709519989788532,
- 0.03137877956032753, 0.05843725800514221, -0.037175197154283524, 0.07465867698192596,
- 0.0635264441370964, -0.06629706919193268, 0.05976870656013489, 0.0725066289305687,
- -0.015319370664656162, -0.03188696503639221, 0.03852007910609245, 0.08183286339044571,
- -0.08608125895261765, -0.0303888488560915, -0.031641636043787, -0.05587073042988777,
- -0.03880604729056358, -0.04313204810023308, 0.01863391138613224, -0.001643093884922564,
- -0.004582252819091082, -0.01293154526501894, 0.06301076710224152, 0.06299502402544022,
- 0.07688925415277481, -0.019219551235437393, 0.04945109412074089, -0.076058529317379,
- -0.04478316381573677, 0.05529886856675148, 0.05506930872797966, 0.07294216006994247,
- -0.061880141496658325, -0.01180002000182867, -0.03624499961733818, -0.14730925858020782,
- 0.02559017948806286, 0.09001687914133072, 0.06310968846082687, 0.010674056597054005,
- 0.007129115518182516, -0.09289318323135376, -0.052239466458559036, 0.12594561278820038,
- 0.03313608467578888, 0.00885001104325056, -0.020640498027205467, -0.044054895639419556,
- -0.014141433872282505, 0.1171562671661377, -0.054728079587221146, 0.013170040212571621,
- 0.0033048447221517563, -0.07652027159929276, 0.07888367027044296, 0.1061963215470314,
- 0.024576066061854362, 0.05228760838508606, 0.005623526871204376, -0.007926053367555141,
- 0.04456918314099312, -0.024448836222290993, 0.032855939120054245, 0.011855398304760456,
- -0.1203908920288086, -0.10181140899658203, -0.03172525763511658, 0.08423536270856857,
- 0.04705989733338356, -0.14570485055446625, -0.029553009197115898, -0.02592177875339985
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 187,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["AI Addict"],
- "epoch_date_downloaded": 1652832000,
- "epoch_date_modified": 1652832000,
- "epoch_date_submitted": 1652832000,
- "flag": null,
- "report_number": 1598,
- "source_domain": "youtu.be",
- "submitters": ["AIAAIC"],
- "title": "Tesla Full Self Driving Crash",
- "url": "https://youtu.be/sbSDsbDQjSU"
- },
- {
- "__typename": "Report",
- "authors": ["James Vincent"],
- "epoch_date_downloaded": 1652832000,
- "epoch_date_modified": 1652832000,
- "epoch_date_submitted": 1652832000,
- "flag": null,
- "report_number": 1597,
- "source_domain": "theverge.com",
- "submitters": ["AIAAIC"],
- "title": "Tesla fired employee who reviewed its driver assist features on YouTube",
- "url": "https://www.theverge.com/2022/3/16/22980580/tesla-fired-employee-john-bernal-ai-addict-youtube-full-self-driving-beta-reviews"
- },
- {
- "__typename": "Report",
- "authors": ["Lora Kolodny"],
- "epoch_date_downloaded": 1652832000,
- "epoch_date_modified": 1652832000,
- "epoch_date_submitted": 1652832000,
- "flag": null,
- "report_number": 1596,
- "source_domain": "cnbc.com",
- "submitters": ["AIAAIC"],
- "title": "Tesla fired an employee after he posted driverless tech reviews on YouTube",
- "url": "https://www.cnbc.com/2022/03/15/tesla-fired-employee-who-posted-fsd-beta-videos-as-ai-addict-on-youtube.html"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "salta-city-government",
- "name": "Salta city government"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "microsoft",
- "name": "Microsoft"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "salta-teenage-girls",
- "name": "Salta teenage girls"
- },
- {
- "__typename": "Entity",
- "entity_id": "salta-girls-of-minority-groups",
- "name": "Salta girls of minority groups"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1782, 1605, 1604, 1603],
- "vector": [
- -0.044405680149793625, 0.06645185500383377, 0.023598868399858475, -0.10207941383123398,
- 0.036037083715200424, -0.016027068719267845, 0.006653076037764549, 0.05797494947910309,
- 0.10423906147480011, -0.17362460494041443, -0.01900465413928032, 0.016637591645121574,
- 0.03701040893793106, -0.07104188203811646, 0.011648973450064659, -0.06572659313678741,
- -0.11973345279693604, -0.05757656693458557, -0.002501558978110552, -0.11239898204803467,
- -0.058714233338832855, -0.027221381664276123, -0.021174706518650055,
- 0.062412604689598083, -0.05306750908493996, 0.056322477757930756, 0.08844839036464691,
- 0.13172590732574463, -0.05052635818719864, 0.046028416603803635, -0.04366181045770645,
- -0.09642507135868073, 0.12227430939674377, 0.022512905299663544, 0.0380399152636528,
- 0.10074115544557571, 0.007734191138297319, -0.037205081433057785, -0.005325707141309977,
- -0.02512507699429989, 0.007323423866182566, 0.2576702833175659, -0.04171200096607208,
- 0.0079428069293499, 0.05990366265177727, -0.055100638419389725, 0.0016958833439275622,
- 0.026745906099677086, -0.007644768804311752, 0.0298160407692194, 0.02435399778187275,
- 0.009217419661581516, -0.03411222621798515, 0.009914390742778778, -0.09241863340139389,
- 0.06330862641334534, 0.010837345384061337, -0.00792586337774992, 0.010246331803500652,
- -0.01859668456017971, -0.02851535938680172, -0.2040536254644394, -0.04409627988934517,
- -0.06785738468170166, 0.09701438993215561, -0.05620381236076355, -0.027972353622317314,
- 0.026086382567882538, 0.009776587598025799, 0.06263251602649689, 0.04127698019146919,
- -0.014126268215477467, -0.02236621081829071, -0.017152467742562294,
- -0.008986024186015129, -0.03242691606283188, 0.03779231756925583, 0.20410104095935822,
- -0.1040378138422966, 0.02314933016896248, 0.09457123279571533, -0.09661802649497986,
- 0.3689512312412262, 0.002784615382552147, -0.008424871601164341, 0.029524002224206924,
- 0.06792782992124557, 0.02059178613126278, 0.016766756772994995, 0.040472839027643204,
- -0.02082866244018078, 0.07252278178930283, -0.03276092931628227, 0.003015244146808982,
- 0.05577254295349121, 0.044890012592077255, 0.0033939413260668516, 0.03528060019016266,
- -0.010177889838814735, -0.041839294135570526, 0.01645578444004059,
- -0.023479729890823364, 0.08059938997030258, 0.061841532588005066, -0.060057610273361206,
- -0.009517852216959, 0.0669051930308342, -0.05509880930185318, 0.031908344477415085,
- -0.0603414922952652, -0.00008671986870467663, 0.0032167769968509674,
- 0.05201570689678192, 0.0199251938611269, 0.010115403681993484, -0.053126562386751175,
- 0.054458342492580414, -0.0019360862206667662, 0.07788489758968353, 0.04587651789188385,
- 0.00045900954864919186, 0.09224572777748108, 0.0810573473572731, -0.05050456523895264,
- -0.03509940207004547, -0.056821584701538086, -0.03030015341937542,
- -0.041321225464344025, -0.005442914552986622, 0.08711780607700348, -0.06323285400867462,
- -0.188384011387825, 0.016135038807988167, 0.04822502285242081, -0.012543374672532082,
- -0.029374778270721436, 0.021803155541419983, -0.04072587937116623, 0.0903288871049881,
- 0.015793276950716972, -0.019602490589022636, 0.06415355205535889, 0.03318624198436737,
- 0.050258081406354904, 0.08885587751865387, 0.04834090173244476, -0.009832954034209251,
- -0.05919913947582245, 0.012025156058371067, -0.009791895747184753, 0.14163151383399963,
- -0.15370669960975647, -0.04958226904273033, -0.011242189444601536, -0.0351027250289917,
- 0.641556978225708, 0.11767885833978653, 0.1531478315591812, 0.02190253883600235,
- -0.05224381014704704, 0.1638166606426239, -0.013792023994028568, 0.05925785005092621,
- -0.06808477640151978, -0.03818829357624054, 0.034096237272024155, -0.06240825355052948,
- -0.016719302162528038, 0.047703854739665985, 0.036702822893857956, 0.10301445424556732,
- 0.0374886728823185, 0.07046002149581909, 0.01236069668084383, -0.0509616881608963,
- -0.04920019954442978, 0.04994535446166992, 0.022272329777479172, -0.13120883703231812,
- -0.039356403052806854, 0.017745988443493843, 0.03706881403923035, -0.08035323023796082,
- -0.031012054532766342, -0.06512781232595444, 0.06024736166000366, -0.008442352525889874,
- 0.05560506507754326, -0.050245776772499084, 0.013296665623784065, 0.013729824684560299,
- 0.07048861682415009, -0.036361612379550934, -0.10183445364236832, -0.010386129841208458,
- 0.08419803529977798, -0.011875053867697716, -0.0729830414056778, 0.07069580256938934,
- -0.1023184135556221, 0.03554742783308029, -0.0184306837618351, 0.16590195894241333,
- -0.11947986483573914, 0.09500769525766373, -0.03592405468225479, -0.06275156140327454,
- 0.07716413587331772, 0.008930201642215252, -0.06773214042186737, -0.058617398142814636,
- 0.061431970447301865, 0.03852645307779312, 0.05808171257376671, 0.07026281952857971,
- -0.05483488738536835, 0.06851568073034286, -0.026399098336696625, 0.0514988973736763,
- -0.09066865593194962, 0.07776635885238647, 0.05384214594960213, -0.020498283207416534,
- -0.025212988257408142, 0.045518793165683746, 0.031475719064474106, 0.04982408881187439,
- 0.030765581876039505, 0.033467188477516174, -0.01463397964835167, -0.02891542762517929,
- 0.055122263729572296, 0.04208328574895859, 0.04278508201241493, 0.08134175091981888,
- -0.0678684189915657, -0.038774024695158005, -0.024942632764577866, -0.03763463348150253,
- 0.010060890577733517, -0.04415445774793625, 0.07300032675266266, 0.10617713630199432,
- 0.11010592430830002, 0.013774121180176735, 0.042793817818164825, 0.04017658904194832,
- 0.1150568425655365, -0.02148975059390068, 0.07791326195001602, -0.01398337073624134,
- -0.0036910530179739, -0.03423909842967987, -0.019286496564745903, 0.024772215634584427,
- 0.016619708389043808, -0.06856705248355865, -0.025321168825030327, -0.08580684661865234,
- -0.053086865693330765, -0.10422871261835098, -0.037403468042612076,
- 0.007021645084023476, 0.013362070545554161, -0.09719038009643555, -0.08421328663825989,
- -0.08100014925003052, 0.019085045903921127, 0.07148332893848419, -0.022923965007066727,
- -0.050037551671266556, -0.12891313433647156, 0.027193952351808548, -0.02400308847427368,
- 0.04545940086245537, -0.010118230246007442, 0.00867151003330946, 0.001091900048777461,
- -0.07279466092586517, -0.00941250566393137, 0.004374569747596979, -0.03227430582046509,
- -0.015404222533106804, -0.033268194645643234, -0.0037323369178920984,
- -0.015564974397420883, 0.01850322261452675, -0.019705340266227722, 0.016198428347706795,
- 0.03443688154220581, 0.050710324198007584, -0.005028093699365854,
- -0.0009678122587502003, 0.04794492945075035, -0.03377235308289528,
- -0.0003982298367191106, 0.09732644259929657, -0.01757693476974964, 0.007040113210678101,
- -0.02873077616095543, -0.07251421362161636, -0.0552588514983654, -0.015318354591727257,
- -0.02771788276731968, 0.08095617592334747, -0.029853325337171555, 0.017788542434573174,
- -0.03592386096715927, -0.026441045105457306, 0.04729478061199188, -0.07901132851839066,
- -0.06334269046783447, -0.08893262594938278, 0.11242829263210297, -0.009452685713768005,
- 0.05699372664093971, -0.015601038932800293, -0.08250512182712555, 0.05569798871874809,
- 0.005263970699161291, 0.007160618901252747, 0.012410512194037437, 0.08827276527881622,
- -0.030986690893769264, 0.01769040897488594, 0.0509706549346447, -0.0009361881529912353,
- 0.021016642451286316, 0.08343707025051117, 0.45807743072509766, -0.13611146807670593,
- 0.10332325100898743, 0.11592622846364975, 0.02662704698741436, 0.03651078790426254,
- -0.049475207924842834, 0.041615650057792664, 0.06439056247472763, 0.12411412596702576,
- 0.10012634098529816, -0.061624810099601746, 0.0013179051456972957, -0.04973701015114784,
- 0.08365126699209213, 0.0013060414930805564, 0.04292421042919159, -0.03609379380941391,
- -0.06835637241601944, 0.006598232313990593, 0.007573973387479782, -0.04886702448129654,
- 0.00010816528811119497, 0.0248692836612463, -0.08501451462507248, 0.004197773057967424,
- 0.03170709311962128, 0.04588238149881363, -0.03719473257660866, 0.06907181441783905,
- -0.028880104422569275, 0.030361834913492203, 0.03549567610025406, 0.01753758266568184,
- -0.12831588089466095, 0.04692521691322327, -0.08115362375974655, -0.078640878200531,
- 0.014029180631041527, -0.0035049866419285536, 0.06623006612062454, 0.04498951882123947,
- -0.0364452600479126, 0.034910038113594055, 0.002783742733299732, -0.07319073379039764,
- 0.03307071328163147, 0.09225386381149292, 0.00100750382989645, 0.06097840517759323,
- 0.13579171895980835, -0.02065887302160263, 0.0049058315344154835, -0.10886482149362564,
- 0.07378341257572174, 0.15132467448711395, 0.0370505154132843, -0.005113053135573864,
- 0.01618255116045475, 0.012304596602916718, 0.028062334284186363, -0.027059970423579216,
- -0.04509285092353821, -0.045162707567214966, -0.03295203298330307, 0.09586574137210846,
- 0.014787491410970688, -0.03493701294064522, -0.16876275837421417, -0.03204547241330147,
- -0.04868340864777565, 0.024926405400037766, 0.13810911774635315, -0.07612860202789307,
- 0.08082766830921173, 0.028965875506401062, 0.004170827567577362, 0.040177442133426666,
- -0.08524133265018463, 0.009449710138142109, -0.07021315395832062, 0.03471777215600014,
- 0.07682063430547714, 0.030584804713726044, -0.05053260922431946, 0.09797805547714233,
- -0.09740370512008667, 0.06342881172895432, -0.0009022424928843975,
- -0.0011475521605461836, -0.003649180755019188, 0.008208596147596836,
- 0.01593717560172081, 0.02730906382203102, -0.039693817496299744, 0.027607114985585213,
- -0.05079393461346626, -0.04477804899215698, -0.07167929410934448, -0.07364560663700104,
- -0.047796815633773804, -0.059555746614933014, 0.045460838824510574,
- -0.09286480396986008, -0.026201972737908363, -0.06986841559410095, -0.01892927847802639,
- -0.009337831288576126, 0.017042359337210655, 0.01851862668991089, -0.11216998100280762,
- -0.015421721152961254, 0.016478661447763443, 0.06223766878247261, -0.08509323000907898,
- -0.03807568922638893, -0.0065290359780192375, 0.0589606910943985, 0.03588080406188965,
- -0.0239263866096735, -0.00791345164179802, -0.02619185298681259, 0.07395727932453156,
- -0.0750383585691452, -0.3810632824897766, 0.041302576661109924, 0.017081614583730698,
- 0.03779999166727066, 0.011075071059167385, -0.08448026329278946, 0.025799483060836792,
- 0.017511911690235138, 0.021049804985523224, 0.08393172919750214, -0.056185346096754074,
- 0.034783054143190384, 0.01791214570403099, -0.08802938461303711, 0.0034450306557118893,
- -0.031107664108276367, -0.04041197523474693, 0.024557262659072876, 0.022892368957400322,
- -0.04924022778868675, -0.09608060121536255, 0.026959681883454323, 0.019972924143075943,
- 0.023369258269667625, 0.011915884912014008, 0.02683279849588871, -0.03827447444200516,
- -0.05625360086560249, 0.037046536803245544, 0.05983847379684448, 0.006176299415528774,
- -0.07214701920747757, -0.023034902289509773, 0.0339813306927681, 0.03137843683362007,
- 0.0884896069765091, 0.024284664541482925, 0.021574728190898895, -0.06101906672120094,
- 0.09710030257701874, 0.060066744685173035, 0.1865396797657013, -0.010322991758584976,
- 0.01889096386730671, 0.043403565883636475, 0.12440166622400284, 0.04221416264772415,
- 0.026416117325425148, -0.04666446894407272, -0.023287177085876465, 0.008304275572299957,
- 0.005426395684480667, 0.061751384288072586, -0.0790773555636406, -0.02145460993051529,
- -0.033335424959659576, -0.008066024631261826, -0.022538499906659126,
- -0.012707063928246498, 0.173595130443573, 0.022182384505867958, 0.036349065601825714,
- 0.03841709345579147, -0.04624022915959358, -0.00881116185337305, -0.10295318067073822,
- -0.11389733850955963, -0.0035110414028167725, 0.026093455031514168,
- 0.035318609327077866, -0.05285836383700371, -0.12426599860191345, 0.017322001978754997,
- 0.013591124676167965, -0.01383145246654749, 0.08527784049510956, -0.028025725856423378,
- 0.06257816404104233, -0.061140403151512146, 0.164773628115654, 0.010646366514265537,
- 0.044833943247795105, 0.04365386441349983, 0.04254959523677826, 0.025735192000865936,
- -0.02129473350942135, -0.03859841823577881, -0.04759366810321808, -0.03346309810876846,
- 0.15275196731090546, -0.014939088374376297, 0.10836555063724518, 0.014791000634431839,
- -0.04686792194843292, -0.055931635200977325, 0.03120196983218193, -0.04431556165218353,
- 0.01048600859940052, -0.4209689497947693, -0.04449869319796562, 0.10052429139614105,
- -0.024932164698839188, 0.02297205664217472, 0.08494585007429123, 0.030790705233812332,
- -0.06671395897865295, -0.041803762316703796, -0.08503489196300507, 0.1513773798942566,
- -0.02502291090786457, 0.07697544246912003, -0.0821429118514061, 0.018729396164417267,
- 0.07207474112510681, -0.028569672256708145, -0.013747349381446838, 0.05982411280274391,
- -0.23368774354457855, -0.011306142434477806, -0.011826802045106888, 0.13821697235107422,
- 0.012610984966158867, 0.0011415830813348293, 0.09788667410612106, -0.06737180054187775,
- 0.05765413120388985, 0.026711653918027878, 0.04723403602838516, 0.06796474754810333,
- 0.007074186112731695, -0.007852849550545216, 0.10139036923646927, 0.05791000649333,
- 0.015203463844954967, -0.024568699300289154, 11.941609382629395, 0.04850799962878227,
- 0.06870569288730621, -0.10198270529508591, 0.018172265961766243, -0.04983242601156235,
- 0.04165057837963104, -0.10437038540840149, 0.07423567771911621, 0.08828522264957428,
- -0.034991372376680374, -0.06451425701379776, -0.012074355967342854,
- -0.05825715512037277, 0.0162369217723608, -0.04038083553314209, -0.03926472365856171,
- -0.0564676858484745, 0.05848684161901474, -0.03601325303316116, -0.06149907782673836,
- 0.007970624603331089, 0.053515005856752396, 0.01385573111474514, -0.09778904169797897,
- 0.028115155175328255, 0.02615601010620594, 0.0038439971394836903, -0.019650908187031746,
- 0.019397428259253502, 0.0012367286253720522, -0.011427328921854496, 0.04678473249077797,
- -0.0025866851210594177, 0.06725161522626877, 0.04467970132827759, 0.05878377705812454,
- 0.0225677490234375, 0.024166278541088104, 0.11568398773670197, -0.0018666721880435944,
- 0.05298566073179245, 0.026657715439796448, 0.027471330016851425, 0.05205339193344116,
- 0.026615124195814133, 0.023470276966691017, 0.12500637769699097, -0.0036304532550275326,
- 0.03393850475549698, 0.09571497142314911, -0.013705717399716377, 0.10182975232601166,
- -0.03934925049543381, -0.019892672076821327, 0.026085790246725082,
- -0.006790638901293278, -0.08036084473133087, 0.07296530902385712, 0.04840313270688057,
- -0.051587026566267014, 0.10832002013921738, 0.015082799829542637, 0.07904446870088577,
- 0.029152579605579376, 0.07885249704122543, 0.08758949488401413, 0.07068616151809692,
- -0.11329424381256104, -0.060333773493766785, 0.020518522709608078, -0.07917170971632004,
- -0.05694836750626564, 0.060319364070892334, 0.08894028514623642, 0.017785273492336273,
- 0.04210890084505081, 0.02567202039062977, 0.020394373685121536, -0.04208234325051308,
- 0.01829230785369873, 0.035221077501773834, -0.019169213250279427, 0.05007461458444595,
- 0.04044555872678757, 0.02585093304514885, 0.04757934808731079, 0.07759205251932144,
- 0.009128829464316368, -0.08770790696144104, -0.08363546431064606, 0.08684093505144119,
- -0.027313321828842163, -0.09132041037082672, 0.00535599933937192, -0.05891679227352142,
- -0.03505215048789978, -0.12933242321014404, 0.08451993018388748, 0.08070871978998184,
- -0.055128853768110275, -0.027462316676974297, -0.01909898966550827, 0.08455942571163177,
- 0.0316406711935997, -0.013073135167360306, -0.10457757115364075, -0.0026556099765002728,
- 0.024202309548854828, 0.05874950438737869, -0.05498073250055313, 0.05188656225800514,
- 0.08708846569061279, -0.05630602315068245, 0.02176652103662491, 0.047282613813877106,
- -0.048589155077934265, -0.05864853411912918, 0.09387476742267609, 0.04555017501115799,
- -0.08863015472888947, -0.04249483719468117, -0.043617695569992065,
- -0.054009392857551575, -0.037883419543504715, -0.04168224707245827,
- 0.030184276401996613, 0.0000830221688374877, -0.03804454579949379,
- -0.016759876161813736, 0.06350035220384598, 0.06399589776992798, 0.07691467553377151,
- 0.0011065450962632895, 0.08109097927808762, -0.06627131998538971, -0.04494946077466011,
- 0.014516637660562992, 0.04811282083392143, 0.07583709806203842, -0.0469328798353672,
- -0.0039027801249176264, -0.0640554279088974, -0.10795117914676666, 0.07741343230009079,
- 0.08234317600727081, 0.04099062457680702, 0.060350462794303894, 0.012145253829658031,
- -0.08632045984268188, 0.01270892284810543, 0.045498933643102646, 0.045500826090574265,
- 0.002224578056484461, 0.021934637799859047, -0.04064363241195679, -0.03569186478853226,
- 0.14498043060302734, -0.02967822179198265, -0.012374820187687874, 0.029784047976136208,
- -0.032902199774980545, 0.07198141515254974, 0.11643818765878677, 0.028737224638462067,
- 0.03148268535733223, 0.003997025080025196, 0.041554104536771774, 0.0053037675097584724,
- 0.01193743571639061, -0.012277917005121708, -0.052081018686294556, -0.05299926921725273,
- -0.08937328308820724, -0.007861979305744171, 0.10601848363876343, 0.02630835957825184,
- -0.10532581806182861, 0.02108064293861389, -0.06400290876626968
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 188,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Laboratorio de Inteligencia Artificial Aplicada"],
- "epoch_date_downloaded": 1652659200,
- "epoch_date_modified": 1658793600,
- "epoch_date_submitted": 1652659200,
- "flag": null,
- "report_number": 1782,
- "source_domain": "liaa.dc.uba.ar",
- "submitters": ["AIAAIC"],
- "title": "Sobre la predicción automática de embarazos adolescentes",
- "url": "https://liaa.dc.uba.ar/es/sobre-la-prediccion-automatica-de-embarazos-adolescentes/"
- },
- {
- "__typename": "Report",
- "authors": ["Lewis White"],
- "epoch_date_downloaded": 1660176000,
- "epoch_date_modified": 1660176000,
- "epoch_date_submitted": 1652659200,
- "flag": true,
- "report_number": 1605,
- "source_domain": "stealthoptional.com",
- "submitters": ["AIAAIC"],
- "title": "Microsoft made an AI algorithm to predict pregnancies of specific preteen girls",
- "url": "https://stealthoptional.com/news/microsoft-ai-algorithm-predict-pregnancy/"
- },
- {
- "__typename": "Report",
- "authors": ["Noor Al-Sibai"],
- "epoch_date_downloaded": 1652659200,
- "epoch_date_modified": 1652918400,
- "epoch_date_submitted": 1652659200,
- "flag": null,
- "report_number": 1604,
- "source_domain": "futurism.com",
- "submitters": ["AIAAIC"],
- "title": "Microsoft Created Creepy Algorithm to Predict Which Specific Teens Would Get Pregnant",
- "url": "https://futurism.com/microsoft-algorithm-teens-pregnant"
- },
- {
- "__typename": "Report",
- "authors": ["Diego Jemio", "Alexa Hagerty", "Florencia Aranda"],
- "epoch_date_downloaded": 1652659200,
- "epoch_date_modified": 1652918400,
- "epoch_date_submitted": 1652659200,
- "flag": null,
- "report_number": 1603,
- "source_domain": "wired.com",
- "submitters": ["AIAAIC"],
- "title": "The Case of the Creepy Algorithm That ‘Predicted’ Teen Pregnancy",
- "url": "https://www.wired.com/story/argentina-algorithms-pregnancy-prediction/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "uk-department-of-work-and-pensions",
- "name": "UK Department of Work and Pensions"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "uipath",
- "name": "UiPath"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "people-with-disabilities",
- "name": "people with disabilities"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1674, 1673, 1672, 1671, 1670, 1609],
- "vector": [
- -0.04557853937149048, 0.048531483858823776, 0.03647466003894806, -0.141786590218544,
- 0.0841602012515068, -0.07753004878759384, 0.006853712256997824, 0.08999824523925781,
- 0.08720636367797852, -0.09463250637054443, 0.031077181920409203, 0.05411481857299805,
- 0.051183637231588364, -0.09244224429130554, 0.05641193315386772, -0.18214355409145355,
- -0.09015996009111404, -0.026994923129677773, -0.030848564580082893, -0.0924161896109581,
- -0.09161246567964554, 0.05161811411380768, -0.005596016068011522, 0.10759508609771729,
- -0.07311130315065384, 0.022960731759667397, 0.07380358129739761, 0.1213192567229271,
- -0.02344880811870098, 0.0382874496281147, -0.01659669540822506, -0.06711740046739578,
- 0.11639305204153061, 0.04793925955891609, -0.005307110026478767, 0.07390090078115463,
- -0.028226932510733604, -0.04066598042845726, 0.006652927491813898, 0.003419670043513179,
- 0.00262928637675941, 0.22362525761127472, -0.0019727349281311035, 0.011130833066999912,
- 0.019013913348317146, -0.060470178723335266, 0.009974576532840729, 0.05661850795149803,
- 0.01900271512567997, 0.022154515609145164, -0.004002060275524855, 0.04394904151558876,
- -0.015727289021015167, 0.04174207150936127, -0.08724639564752579, 0.04201941564679146,
- 0.01230726856738329, 0.034856777638196945, 0.01946781761944294, -0.09827659279108047,
- 0.05421008542180061, -0.1941191405057907, -0.1488441824913025, -0.08836709707975388,
- 0.08044002950191498, -0.07412923872470856, -0.014422748237848282, 0.06490305811166763,
- -0.01482436154037714, 0.09786069393157959, 0.06387744843959808, 0.007799659390002489,
- -0.00570945767685771, 0.013215027749538422, 0.047253046184778214, 0.009350297041237354,
- -0.021640313789248466, 0.1349145919084549, -0.1187080666422844, -0.01258547231554985,
- 0.12851980328559875, -0.12607339024543762, 0.35561561584472656, -0.03145647048950195,
- -0.001538508222438395, 0.012304040603339672, 0.07695118337869644, 0.010942828841507435,
- 0.057076532393693924, 0.014921657741069794, 0.0015784819843247533, 0.028835462406277657,
- -0.07463561743497849, 0.0021019745618104935, 0.05794985964894295, 0.009539003483951092,
- -0.057346079498529434, 0.03070162795484066, -0.008729873225092888, -0.06548532843589783,
- 0.0038051533047109842, -0.010199899785220623, 0.08328094333410263, 0.11270462721586227,
- -0.04174309968948364, -0.0021502941381186247, 0.05201390013098717, -0.04159802198410034,
- 0.039906274527311325, -0.04084262251853943, 0.03665192797780037, 0.02530818246304989,
- 0.08568062633275986, 0.05386385694146156, 0.0524585098028183, -0.042947638779878616,
- 0.0101618068292737, 0.09890569001436234, 0.09424663335084915, 0.01810542680323124,
- 0.02339343912899494, 0.07174290716648102, 0.0030087188351899385, -0.027395250275731087,
- 0.02632674016058445, -0.028013067319989204, -0.0803203210234642, -0.03821433335542679,
- -0.038394927978515625, 0.05150222405791283, -0.0965302512049675, -0.19556255638599396,
- 0.00426190672442317, 0.06616294384002686, 0.00919998437166214, -0.03100425750017166,
- -0.0009053965914063156, -0.00514235207810998, 0.08583685010671616,
- -0.008248616941273212, -0.04994497820734978, 0.07665499299764633, -0.02320496179163456,
- 0.09179273247718811, 0.13126839697360992, 0.049952272325754166, -0.07184413820505142,
- -0.022737674415111542, -0.03426200523972511, 0.0021660516504198313, 0.09240914136171341,
- -0.13355466723442078, -0.017864244058728218, 0.019062377512454987, 0.021785005927085876,
- 0.6795274615287781, 0.07752326875925064, 0.16390196979045868, 0.05150324106216431,
- -0.018556753173470497, 0.1715020090341568, -0.005679462570697069, 0.08911556005477905,
- -0.0735345110297203, -0.06486909836530685, 0.07953610271215439, -0.10502544045448303,
- -0.04484950006008148, 0.019440071657299995, 0.03880973160266876, 0.061951544135808945,
- 0.008410564623773098, 0.0757671520113945, -0.017953846603631973, -0.12994982302188873,
- -0.003710502991452813, 0.0827450230717659, 0.004751075524836779, -0.11924213916063309,
- -0.07996901869773865, 0.05634940788149834, 0.10646101087331772, -0.11769327521324158,
- -0.011446301825344563, -0.12707272171974182, 0.043824512511491776,
- -0.005387000273913145, 0.04918745532631874, 0.00414258474484086, 0.008443066850304604,
- 0.02524520270526409, 0.008085883222520351, 0.05075109004974365, -0.05222730711102486,
- 0.0714266449213028, 0.0861889123916626, 0.005042753182351589, -0.05702148750424385,
- 0.12770578265190125, -0.07766413688659668, 0.008119931444525719, 0.03472217172384262,
- 0.11955469846725464, -0.12832459807395935, -0.04273010417819023, -0.008221221156418324,
- -0.02324032224714756, 0.07053273916244507, 0.023920202627778053, -0.054431069642305374,
- -0.04535433650016785, 0.009248963557183743, 0.03527485951781273, 0.08334892988204956,
- 0.06426872313022614, -0.0239099208265543, 0.060744911432266235, 0.12073462456464767,
- 0.025446325540542603, -0.0016028044046834111, 0.05903567746281624, 0.06881647557020187,
- -0.10986007004976273, 0.012371155433356762, 0.033403608947992325, 0.05260191485285759,
- -0.045795779675245285, -0.01659681461751461, 0.06409963220357895, -0.009642005898058414,
- -0.08045781403779984, 0.054514024406671524, 0.03599853068590164, -0.047626469284296036,
- 0.09422722458839417, -0.06360156089067459, -0.055925384163856506, -0.026969080790877342,
- -0.0060661002062261105, 0.04221056029200554, -0.029488971456885338, 0.09372603893280029,
- 0.08396095037460327, 0.029794633388519287, 0.035282883793115616, 0.005057077389210463,
- 0.10410717874765396, 0.05236665531992912, 0.08748289197683334, 0.07289237529039383,
- -0.044494953006505966, -0.06341034919023514, -0.025505149737000465, 0.03702639788389206,
- 0.04792758822441101, 0.07692421227693558, -0.09776884317398071, -0.014943723566830158,
- 0.012857348658144474, -0.03723703697323799, -0.0889727771282196, -0.015023354440927505,
- 0.0092764338478446, -0.028891511261463165, -0.029945572838187218, -0.0516725592315197,
- -0.11055731773376465, -0.011682049371302128, 0.06305861473083496, -0.03427967429161072,
- 0.008643634617328644, -0.09331011027097702, 0.001151607371866703, -0.04899587854743004,
- 0.06520143896341324, -0.004809161182492971, 0.04461980238556862, 0.0756954625248909,
- -0.045751601457595825, 0.0036753537133336067, 0.019008740782737732,
- -0.07634960860013962, -0.0791119709610939, -0.022223688662052155, -0.06276779621839523,
- 0.023667478933930397, 0.02607203833758831, -0.07408791035413742, 0.03533816337585449,
- 0.0632227435708046, 0.05766141042113304, -0.007798496633768082, -0.00032314923009835184,
- 0.056766364723443985, -0.03609304502606392, 0.011997812427580357, 0.12324583530426025,
- -0.060189008712768555, -0.006623184308409691, -0.06314755976200104,
- -0.05837723985314369, -0.02651260979473591, 0.00814247690141201, -0.05413409695029259,
- -0.005741956178098917, -0.013864375650882721, 0.029842281714081764,
- -0.011374576948583126, -0.09146267175674438, 0.04963283613324165, -0.06042502820491791,
- -0.06802093982696533, -0.06598120927810669, 0.09621425718069077, 0.050061386078596115,
- 0.018504172563552856, -0.028271019458770752, -0.08338180184364319, 0.04752478376030922,
- -0.008888971991837025, -0.006929408758878708, 0.0431303046643734, 0.051110610365867615,
- -0.039167437702417374, 0.0008066734299063683, 0.05098927021026611, 0.0673021748661995,
- 0.010257086716592312, 0.07802475243806839, 0.42100584506988525, -0.18293774127960205,
- 0.07769377529621124, 0.07319037616252899, 0.014392376877367496, 0.06165575608611107,
- -0.0007511372677981853, 0.06655412912368774, 0.14117591083049774, 0.12814462184906006,
- 0.11957553029060364, -0.07640626281499863, -0.07025320082902908, -0.1112438514828682,
- 0.0754106268286705, 0.03961215540766716, -0.004208039958029985, -0.01196486409753561,
- -0.08520150929689407, -0.017991382628679276, -0.013318885117769241,
- -0.03750425577163696, 0.028452707454562187, 0.08774888515472412, -0.07278988510370255,
- -0.00007729302160441875, -0.024274209514260292, -0.005870368331670761,
- -0.019031809642910957, 0.0828872099518776, -0.04226471111178398, 0.027612289413809776,
- 0.0005092992796562612, 0.057644929736852646, -0.05224039778113365, 0.008882961235940456,
- -0.042705293744802475, -0.13688118755817413, 0.11591407656669617, -0.001510738511569798,
- 0.043990254402160645, 0.03783649578690529, 0.006599155720323324, 0.0761556327342987,
- -0.09538104385137558, -0.041449740529060364, 0.029638230800628662, 0.009984634816646576,
- 0.010623331181704998, 0.06113804504275322, 0.17037779092788696, -0.06665652245283127,
- -0.039952341467142105, -0.0955745056271553, 0.036153391003608704, 0.17367570102214813,
- -0.007253826130181551, -0.0076722982339560986, 0.039797574281692505,
- -0.048264890909194946, 0.0006448300555348396, -0.03816616162657738, -0.0864470973610878,
- 0.0014746951637789607, -0.006765433121472597, 0.10909271240234375, 0.0367424450814724,
- -0.07117029279470444, -0.13122914731502533, 0.015882622450590134, -0.08417254686355591,
- -0.005239931400865316, 0.12654076516628265, -0.06957907229661942, 0.027152253314852715,
- -0.06377720087766647, -0.014593484811484814, 0.012108703143894672, -0.0682949349284172,
- 0.006162111181765795, -0.08366966247558594, 0.04027245566248894, 0.02432207576930523,
- 0.04509466886520386, 0.002977681113407016, 0.0916762426495552, -0.10885114222764969,
- 0.07336733490228653, 0.04829052463173866, -0.04502590000629425, 0.09895239025354385,
- -0.0028868019580841064, 0.006049907300621271, 0.03239968791604042, -0.04925413057208061,
- 0.014262855052947998, -0.00024461676366627216, -0.025352364405989647,
- -0.11377093940973282, 0.0019458094611763954, -0.04928063973784447, -0.0884718969464302,
- 0.027303649112582207, 0.009053811430931091, -0.03274151682853699, -0.02072482742369175,
- -0.014228727668523788, 0.02467653900384903, 0.01726493053138256, 0.04557925462722778,
- -0.1733444333076477, -0.04728939011693001, -0.01038086786866188, 0.05199200287461281,
- -0.02680223621428013, -0.004223021678626537, 0.024384930729866028, 0.004441491328179836,
- 0.07411070168018341, -0.02664930187165737, -0.013570272363722324, -0.0848253071308136,
- 0.0708179846405983, -0.06012784317135811, -0.40886160731315613, 0.05005557835102081,
- -0.02333647757768631, 0.014764778316020966, 0.054764434695243835, -0.07489719241857529,
- 0.044931281358003616, 0.0135254031047225, -0.03540625795722008, 0.08889669179916382,
- -0.02598225511610508, 0.06234888732433319, 0.04090319201350212, -0.06217655539512634,
- -0.005410366225987673, -0.0752740204334259, -0.06751513481140137, 0.06253063678741455,
- -0.052349627017974854, -0.11369452625513077, -0.099764384329319, 0.018890395760536194,
- -0.009216337464749813, 0.0628795176744461, 0.008306317962706089, 0.015916863456368446,
- -0.042516645044088364, -0.034544844180345535, 0.08669582009315491, 0.03770320490002632,
- -0.0034114662557840347, -0.07146164029836655, 0.0321664959192276, 0.07528793811798096,
- -0.005010929424315691, 0.13954970240592957, 0.03509201481938362, -0.03304576873779297,
- -0.059321146458387375, 0.08104664087295532, 0.06836649775505066, 0.18435253202915192,
- -0.014877243898808956, -0.021623482927680016, 0.040927544236183167, 0.13558299839496613,
- -0.00450497679412365, 0.0035748842637985945, -0.036102380603551865, 0.03969240188598633,
- 0.020212361589074135, 0.055474117398262024, 0.12259379029273987, -0.06210825964808464,
- -0.006068339571356773, -0.05785144492983818, -0.010832998901605606,
- -3.6482620657807274e-7, -0.05478614568710327, 0.23406042158603668, 0.02401099167764187,
- 0.031602274626493454, -0.02518393099308014, -0.13113388419151306, -0.002700786804780364,
- -0.08486223965883255, -0.17096076905727386, -0.0009109820821322501, 0.02921316586434841,
- 0.024741383269429207, -0.051225122064352036, -0.15889713168144226,
- -0.029479166492819786, 0.053342338651418686, 0.030024295672774315, 0.05329866334795952,
- -0.06094236299395561, 0.10022350400686264, -0.05143192037940025, 0.13911786675453186,
- 0.05673334002494812, 0.03948375955224037, 0.03309961408376694, 0.11200626939535141,
- 0.012310349382460117, -0.027315810322761536, -0.07263553887605667, -0.12165015935897827,
- -0.02463880367577076, 0.14489853382110596, -0.021159665659070015, 0.09367815405130386,
- 0.01188117265701294, -0.09865174442529678, -0.049615781754255295, 0.022892579436302185,
- -0.006562873255461454, 0.015874559059739113, -0.3842715919017792, -0.053607821464538574,
- 0.16237349808216095, 0.0030814071651548147, 0.02456744946539402, 0.0783076360821724,
- -0.0002856550272554159, -0.09283717721700668, -0.03871465101838112,
- -0.09485500305891037, 0.20031370222568512, -0.05614432692527771, 0.0884309634566307,
- -0.09748387336730957, 0.02033553458750248, 0.0984131395816803, -0.0705067440867424,
- -0.03718962147831917, 0.06920602917671204, -0.23767264187335968, 0.03699689358472824,
- -0.009057678282260895, 0.09781092405319214, 0.056127410382032394, 0.05756432190537453,
- 0.07768931984901428, -0.04457531496882439, 0.015207324177026749, 0.05334227904677391,
- -0.03865179792046547, 0.012690593488514423, 0.04293617606163025, -0.04446202144026756,
- 0.08291114866733551, 0.04294326901435852, 0.07649832218885422, -0.05324511602520943,
- 12.078722953796387, 0.07830115407705307, 0.07497068494558334, -0.09298933297395706,
- -0.021128876134753227, -0.05256534740328789, 0.01484022755175829, -0.1076686903834343,
- 0.038737546652555466, 0.08654242008924484, 0.009111396037042141, 0.005696109961718321,
- -0.000025709237888804637, -0.11395291239023209, 0.020318130031228065,
- -0.026734909042716026, -0.05732386186718941, -0.04843011870980263, 0.05990230664610863,
- -0.04136820510029793, -0.010176140815019608, -0.014270721934735775, 0.04680411517620087,
- 0.03129018470644951, -0.09850545972585678, -0.007805012632161379, -0.005710435565561056,
- -0.024887988343834877, -0.0019729300402104855, 0.004244494251906872,
- -0.0955623984336853, 0.024442488327622414, 0.04663778841495514, 0.008714616298675537,
- 0.0598188154399395, -0.020720956847071648, 0.06759699434041977, 0.031001081690192223,
- -0.013231735676527023, 0.07036462426185608, -0.0024841956328600645, 0.02165580727159977,
- 0.04530796408653259, 0.09674028307199478, 0.07388780266046524, 0.03560181334614754,
- 0.016527703031897545, 0.05103057995438576, 0.035317759960889816, 0.1024949848651886,
- 0.10551691055297852, -0.007242586463689804, 0.12567110359668732, -0.03868323937058449,
- 0.01815047115087509, 0.10220011323690414, 0.004041950684040785, -0.05381614342331886,
- 0.057377010583877563, 0.04327395558357239, -0.053501442074775696, 0.11373728513717651,
- 0.03032725490629673, 0.1520300656557083, 0.02135801501572132, 0.08704354614019394,
- 0.10473775118589401, 0.08038085699081421, -0.13585858047008514, -0.05139951407909393,
- -0.023364955559372902, -0.06888269633054733, -0.02306087501347065,
- 0.0066195703111588955, 0.028597936034202576, -0.06587155908346176, 0.04181666299700737,
- -0.024594875052571297, 0.03605997934937477, -0.04948456957936287, -0.009462498128414154,
- 0.013453231193125248, -0.03858897462487221, 0.018787890672683716, 0.10453343391418457,
- -0.0026966314762830734, 0.10261628776788712, 0.05435127019882202, 0.05639077350497246,
- -0.10787878185510635, -0.07033518701791763, 0.16601456701755524, 0.0007575604249723256,
- -0.06500700116157532, -0.04250539466738701, -0.07776973396539688, -0.019123783335089684,
- -0.13293053209781647, 0.029614223167300224, 0.1541779637336731, -0.1230819821357727,
- -0.009237654507160187, -0.05212778225541115, 0.12104886770248413,
- -0.0069858357310295105, -0.01640397682785988, -0.0644729882478714, 0.029179083183407784,
- -0.021619031205773354, 0.0027516521513462067, -0.07858774811029434, 0.0715375617146492,
- 0.0958688035607338, -0.013309840112924576, 0.055409789085388184, 0.09026096016168594,
- -0.03515448421239853, -0.06158588454127312, 0.05121085047721863, 0.013811945915222168,
- -0.07024907320737839, -0.04252881184220314, -0.0024577395524829626,
- -0.04661909118294716, 0.00869822595268488, -0.09220054745674133, 0.002804357558488846,
- 0.056172385811805725, -0.07099027186632156, -0.01964164711534977, 0.07712995260953903,
- 0.054979220032691956, 0.06373713910579681, -0.016929103061556816, 0.07563454657793045,
- -0.0937071219086647, -0.05251334235072136, 0.03666434437036514, 0.04194658622145653,
- 0.039170440286397934, -0.09198608994483948, -0.0876307487487793, -0.02166423387825489,
- -0.11146444827318192, -0.014989584684371948, 0.16844679415225983, 0.04341801628470421,
- 0.07956837862730026, 0.02485135942697525, -0.06993245333433151, -0.032082270830869675,
- 0.07504955679178238, 0.025411970913410187, -0.03600011765956879, 0.04921436682343483,
- -0.04277743399143219, -0.025149762630462646, 0.11104138940572739, -0.028596891090273857,
- -0.01145236473530531, -0.014104188419878483, -0.03136841580271721, 0.11279114335775375,
- 0.06208479031920433, 0.11401738971471786, -0.03528325632214546, 0.06257838755846024,
- 0.025216305628418922, -0.04418876767158508, 0.016696063801646233, -0.00845161359757185,
- -0.04184578359127045, -0.06943325698375702, -0.08955547958612442,
- -0.0012085202615708113, 0.09355031698942184, 0.03370893746614456, -0.09011121839284897,
- -0.027097104117274284, -0.04741037264466286
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 189,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Dan Bloom"],
- "epoch_date_downloaded": 1653523200,
- "epoch_date_modified": 1654128000,
- "epoch_date_submitted": 1653523200,
- "flag": null,
- "report_number": 1674,
- "source_domain": "mirror.co.uk",
- "submitters": ["AIAAIC"],
- "title": "DWP faces legal action to reveal 'algorithms' that flag claims of benefit fraud",
- "url": "https://www.mirror.co.uk/news/politics/dwp-faces-legal-action-reveal-26199571"
- },
- {
- "__typename": "Report",
- "authors": ["Josh Gabert-Doyon"],
- "epoch_date_downloaded": 1653523200,
- "epoch_date_modified": 1654128000,
- "epoch_date_submitted": 1653523200,
- "flag": null,
- "report_number": 1673,
- "source_domain": "vice.com",
- "submitters": ["AIAAIC"],
- "title": "How the Government Spies on Welfare Claimants",
- "url": "https://www.vice.com/en/article/y3g9n5/how-the-government-spies-on-welfare-claimants"
- },
- {
- "__typename": "Report",
- "authors": ["Alice Richardson"],
- "epoch_date_downloaded": 1653523200,
- "epoch_date_modified": 1654128000,
- "epoch_date_submitted": 1653523200,
- "flag": null,
- "report_number": 1672,
- "source_domain": "theoldhamtimes.co.uk",
- "submitters": ["AIAAIC"],
- "title": "Disabled people ‘forced on gruelling and invasive hamster wheel’ of benefits appeals",
- "url": "https://www.theoldhamtimes.co.uk/news/19761688.disabled-forced-gruelling-invasive-hamster-wheel-benefits-appeals-dwp/"
- },
- {
- "__typename": "Report",
- "authors": ["John Pring"],
- "epoch_date_downloaded": 1653523200,
- "epoch_date_modified": 1654128000,
- "epoch_date_submitted": 1653523200,
- "flag": null,
- "report_number": 1671,
- "source_domain": "disabilitynewsservice.com",
- "submitters": ["AIAAIC"],
- "title": "Legal letter asks DWP for information on ‘discriminatory’ secret algorithm",
- "url": "https://www.disabilitynewsservice.com/legal-letter-asks-dwp-for-information-on-discriminatory-secret-algorithm/"
- },
- {
- "__typename": "Report",
- "authors": ["John Pring"],
- "epoch_date_downloaded": 1653523200,
- "epoch_date_modified": 1654128000,
- "epoch_date_submitted": 1653523200,
- "flag": null,
- "report_number": 1670,
- "source_domain": "disabilitynewsservice.com",
- "submitters": ["AIAAIC"],
- "title": "DWP bosses quizzed by MPs over secret benefit fraud algorithm",
- "url": "https://www.disabilitynewsservice.com/dwp-bosses-quizzed-by-mps-over-secret-benefit-fraud-algorithm/"
- },
- {
- "__typename": "Report",
- "authors": ["Michael Savage"],
- "epoch_date_downloaded": 1637452800,
- "epoch_date_modified": 1652918400,
- "epoch_date_submitted": 1637452800,
- "flag": null,
- "report_number": 1609,
- "source_domain": "amp-theguardian-com.cdn.ampproject.org",
- "submitters": ["Khoa Lam"],
- "title": "DWP urged to reveal algorithm that ‘targets’ disabled for benefit fraud",
- "url": "https://www.theguardian.com/society/2021/nov/21/dwp-urged-to-reveal-algorithm-that-targets-disabled-for-benefit"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "bytedance",
- "name": "ByteDance"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "bytedance",
- "name": "ByteDance"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "snapchat-users",
- "name": "Snapchat users"
- },
- {
- "__typename": "Entity",
- "entity_id": "instagram-users",
- "name": "Instagram users"
- },
- {
- "__typename": "Entity",
- "entity_id": "american-social-media-users",
- "name": "American social media users"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1613, 1612, 1611, 1610],
- "vector": [
- -0.07201895117759705, 0.04696836322546005, 0.003386614378541708, -0.11704817414283752,
- 0.09727300703525543, -0.014750845730304718, 0.0017971907509490848, 0.06023084744811058,
- 0.0733441412448883, -0.11948712170124054, -0.01350987795740366, 0.022761575877666473,
- 0.015277935191988945, -0.06540113687515259, 0.020027874037623405, -0.033112794160842896,
- -0.10471028089523315, -0.007774861063808203, 0.019128065556287766, -0.13411538302898407,
- -0.0368732213973999, 0.016792135313153267, 0.027527080848813057, 0.14492547512054443,
- -0.06773333996534348, 0.02867651917040348, 0.11892656981945038, 0.1449349820613861,
- -0.08582165092229843, 0.0631406381726265, -0.029227599501609802, -0.060682740062475204,
- 0.1075270026922226, 0.02961168810725212, 0.0141111109405756, 0.07809267193078995,
- 0.04292493313550949, -0.03563062846660614, -0.04706435278058052, -0.0002659254241734743,
- 0.0037683749105781317, 0.16149473190307617, -0.004005471710115671, -0.03342020511627197,
- 0.03584316372871399, -0.05061086639761925, 0.022386832162737846, 0.04897678643465042,
- 0.018951531499624252, -0.014640547335147858, -0.04760315269231796, 0.07565925270318985,
- -0.026556851342320442, 0.05624673143029213, -0.1282845437526703, 0.07125584781169891,
- 0.02038317546248436, -0.06686542183160782, 0.05561280995607376, -0.04957587271928787,
- -0.07355211675167084, -0.25164979696273804, -0.05150661617517471, -0.04566007852554321,
- 0.03565530851483345, -0.07802096754312515, -0.02819739282131195, 0.036618951708078384,
- 0.04522130638360977, 0.041052207350730896, 0.004611114505678415, -0.003201734507456422,
- -0.02957077883183956, -0.026594465598464012, 0.029881669208407402, -0.05699525773525238,
- 0.07083940505981445, 0.17054249346256256, -0.10279478877782822, 0.008393663913011551,
- 0.08330541849136353, -0.10403221100568771, 0.4074396789073944, -0.02103205770254135,
- -0.013906287960708141, -0.019881078973412514, 0.11910771578550339, 0.003512940602377057,
- 0.02929367870092392, 0.023829614743590355, -0.010717947967350483, 0.014511515386402607,
- -0.06969909369945526, -0.00791897252202034, 0.05421970412135124, 0.032497506588697433,
- -0.012202229350805283, -0.007346462924033403, 0.008048562332987785,
- -0.05169713497161865, 0.01058005727827549, -0.018874138593673706, 0.10583477467298508,
- 0.07984846085309982, -0.026346590369939804, -0.014890441671013832, 0.04083087295293808,
- -0.06584389507770538, 0.039757318794727325, -0.03905011713504791,
- -0.0037741288542747498, 0.001291941269300878, 0.07388393580913544,
- -0.013416334055364132, 0.05774956941604614, -0.03313582390546799,
- -0.0006232969462871552, 0.05446838587522507, 0.12341541051864624, 0.0541403666138649,
- 0.0557442307472229, 0.0684342086315155, 0.0718524381518364, -0.034039948135614395,
- 0.010886317119002342, -0.0010477598989382386, -0.031658582389354706,
- -0.03748742863535881, -0.03921591863036156, 0.04823803901672363, -0.06384042650461197,
- -0.20010463893413544, 0.025674203410744667, 0.07097865641117096, 0.0036707045510411263,
- -0.06075412034988403, 0.043680354952812195, -0.046273503452539444, 0.02548067644238472,
- -0.0000033600845199543983, -0.051087625324726105, 0.07179027050733566,
- -0.004785571713000536, 0.04061741381883621, 0.1166827455163002, 0.06311575323343277,
- -0.04080228507518768, -0.07968273013830185, 0.027410555630922318, -0.04926750808954239,
- 0.10164055228233337, -0.12621808052062988, -0.03523426875472069, -0.03181949630379677,
- -0.016868295148015022, 0.6765042543411255, 0.11298435926437378, 0.16781064867973328,
- 0.011846616864204407, -0.013547683134675026, 0.16857656836509705, -0.04894664138555527,
- 0.05672699958086014, -0.08419739454984665, -0.08375944197177887, 0.037595540285110474,
- -0.0557142049074173, -0.04718029499053955, 0.03789852187037468, -0.004375108052045107,
- 0.06979163736104965, 0.03403919190168381, 0.11767031252384186, 0.024503089487552643,
- -0.09433376044034958, -0.030143028125166893, 0.04426867514848709, 0.005623275879770517,
- -0.11767604947090149, -0.04504746198654175, 0.04551682993769646, 0.1183977872133255,
- -0.07736469060182571, 0.030437342822551727, -0.06259580701589584, 0.05388760566711426,
- 0.004573339130729437, 0.047206707298755646, -0.0025360500440001488, 0.06646870076656342,
- -0.008358985185623169, 0.02592521160840988, -0.01650753617286682, -0.10454881191253662,
- -0.018096664920449257, 0.0881941020488739, -0.012742189690470695, -0.04420187324285507,
- 0.045803528279066086, -0.07679398357868195, 0.05884093791246414, 0.00004381878534331918,
- 0.12142347544431686, -0.15178614854812622, -0.031216882169246674, -0.000584385241381824,
- -0.028521109372377396, 0.034715279936790466, -0.03324107825756073, -0.09492574632167816,
- -0.08660700172185898, 0.06085378676652908, 0.015447747893631458, 0.01933378539979458,
- 0.046030208468437195, -0.013846966437995434, 0.001901922281831503, 0.029103055596351624,
- 0.021448079496622086, -0.048303041607141495, 0.07344861328601837, 0.05363364890217781,
- -0.030711494386196136, -0.034854065626859665, 0.01956842839717865, 0.062407735735177994,
- -0.008061371743679047, -0.044431090354919434, 0.03261428326368332, -0.00151824951171875,
- -0.008429202251136303, 0.05220937728881836, 0.021312354132533073, 0.0051361313089728355,
- 0.07831986993551254, -0.08047420531511307, -0.03559325635433197, -0.03525124490261078,
- 0.006684597581624985, 0.021363086998462677, -0.003536533797159791, 0.0739927589893341,
- 0.10875935852527618, 0.05911463126540184, 0.013243069872260094, 0.06292247772216797,
- 0.049524590373039246, -0.011324997060000896, -0.013943505473434925, 0.09288538247346878,
- -0.010235031135380268, 0.00407005101442337, -0.02868344634771347, 0.01795376092195511,
- 0.04417230561375618, 0.022315191105008125, -0.04666962847113609, -0.016737472265958786,
- -0.03943932428956032, -0.028681056573987007, -0.08793649077415466, -0.04102068394422531,
- 0.09548677504062653, 0.07573579251766205, -0.029845362529158592, -0.11273354291915894,
- -0.061750203371047974, -0.007696483284235001, 0.05077054724097252,
- -0.026479672640562057, -0.010688066482543945, -0.12657183408737183, 0.03487851843237877,
- -0.0714309960603714, 0.05629255622625351, -0.014856141991913319, 0.005069832783192396,
- 0.009133500047028065, -0.05214187875390053, 0.052880026400089264, -0.0094074048101902,
- 0.025035476312041283, -0.033645596355199814, -0.062262967228889465,
- -0.07786515355110168, -0.0032036674674600363, 0.013963640667498112,
- -0.022386055439710617, 0.040688082575798035, 0.01747279241681099, 0.034890495240688324,
- 0.007168286480009556, -0.015917304903268814, 0.03951757401227951, -0.05435418710112572,
- -0.04496833682060242, 0.061859019100666046, -0.01731964200735092, 0.02994440868496895,
- 0.04451930895447731, -0.11327069252729416, -0.0493011400103569, 0.04450240358710289,
- -0.04316335916519165, 0.08496358245611191, 0.005018620751798153, -0.0005314929876476526,
- -0.05281044915318489, -0.05369850993156433, 0.05985809490084648, -0.0592825710773468,
- -0.09918373078107834, -0.04439622908830643, 0.15759611129760742, -0.007206291425973177,
- 0.009840955026447773, 0.0002545573515817523, -0.03864339739084244, 0.049574628472328186,
- -0.07294265180826187, -0.005182583816349506, 0.026282453909516335, 0.05143105983734131,
- -0.01900787279009819, -0.00639625359326601, 0.06538163870573044, -0.010674424469470978,
- 0.050147317349910736, 0.08052649348974228, 0.4466201364994049, -0.15954051911830902,
- 0.0980803593993187, 0.10878117382526398, -0.006938498932868242, 0.0352051667869091,
- -0.016536548733711243, 0.09558423608541489, 0.0765654668211937, 0.12167033553123474,
- 0.13427770137786865, -0.08136193454265594, 0.007197588682174683, -0.08528108149766922,
- 0.08326805382966995, 0.004185016267001629, 0.013683028519153595, -0.002430554712191224,
- -0.032333001494407654, -0.024324573576450348, 0.07347801327705383,
- -0.028773948550224304, 0.013215739279985428, -0.022656990215182304,
- -0.04883784055709839, 0.01367110013961792, 0.03558303788304329, 0.037618182599544525,
- 0.003464173059910536, 0.030232330784201622, -0.04108522832393646, 0.029564984142780304,
- 0.000641387130599469, 0.05314080789685249, -0.0672629177570343, 0.017912056297063828,
- -0.05203152820467949, -0.08809918910264969, 0.049618400633335114, 0.024650046601891518,
- 0.043955590575933456, 0.030155476182699203, -0.002315470017492771, 0.03186316415667534,
- -0.0185704305768013, -0.0644020363688469, 0.016038289293646812, 0.10626276582479477,
- 0.022106079384684563, 0.09182386100292206, 0.11413955688476562, -0.05185585841536522,
- -0.03926550969481468, -0.09094300121068954, 0.05821765214204788, 0.0973757728934288,
- 0.004104094114154577, 0.03586798533797264, -0.014797257259488106, -0.06672225892543793,
- -0.013299576006829739, -0.07289071381092072, -0.08534476906061172,
- -0.030167054384946823, -0.03197016566991806, 0.0869268923997879, 0.033020980656147,
- -0.026857148855924606, -0.22823703289031982, -0.04536831006407738, -0.03660471737384796,
- 0.031117554754018784, 0.11497332900762558, -0.07886378467082977, 0.05849011614918709,
- 0.010277989320456982, 0.006125372368842363, -0.03691624850034714, -0.1211388111114502,
- 0.006389394402503967, -0.025696828961372375, 0.04456033557653427, 0.06554334610700607,
- 0.044328246265649796, -0.06586630642414093, 0.08226463943719864, -0.1233517974615097,
- 0.13236474990844727, 0.011286761611700058, -0.02955756150186062, 0.0027933698147535324,
- -0.03436443954706192, -0.001147278817370534, 0.034145254641771317, -0.05874089151620865,
- 0.04145295172929764, 0.0038349900860339403, -0.04373404011130333, -0.0775223895907402,
- -0.07408852875232697, -0.0627060979604721, -0.09146174788475037, 0.026306383311748505,
- -0.07871825993061066, -0.012016737833619118, -0.005682793911546469,
- -0.007583944126963615, -0.014897266402840614, 0.02058626338839531, 0.03536200895905495,
- -0.18582937121391296, -0.024648409336805344, 0.012921073473989964, 0.06285016983747482,
- -0.02040322683751583, -0.04887242615222931, 0.015987437218427658, 0.10807876288890839,
- 0.03585421293973923, 0.006223631557077169, -0.0006701466627418995, -0.04752400517463684,
- 0.07048499584197998, -0.12005338072776794, -0.472953736782074, 0.06203508749604225,
- -0.013124195858836174, 0.03764181584119797, -0.01627623662352562, -0.08011740446090698,
- 0.06225264444947243, 0.011851958930492401, -0.0351245179772377, 0.09351115673780441,
- -0.05550165846943855, 0.009891745634377003, -0.011384396813809872, -0.03291058912873268,
- 0.013643684796988964, -0.03587809577584267, -0.035377178341150284, 0.01966974511742592,
- -0.0071942368522286415, -0.048406727612018585, -0.11432488262653351,
- 0.02858065627515316, -0.030816521495580673, 0.008123770356178284, 0.05239878594875336,
- 0.029677176848053932, -0.07068566232919693, -0.04513079300522804, 0.05908077210187912,
- 0.056273799389600754, 0.011069773696362972, -0.07581998407840729, -0.010579456575214863,
- 0.09359176456928253, 0.006568458862602711, 0.1272796392440796, 0.014806286431849003,
- -0.06149166449904442, -0.08267230540513992, 0.08221583068370819, 0.09004509449005127,
- 0.18863341212272644, -0.00406609708443284, 0.015389557927846909, 0.02588612586259842,
- 0.14349889755249023, 0.05870063230395317, 0.042490508407354355, -0.034807704389095306,
- 0.027084846049547195, 0.018896128982305527, 0.012280349619686604, 0.07824346423149109,
- -0.08332231640815735, -0.026983043178915977, -0.0073380847461521626,
- -0.027580903843045235, -0.06889288872480392, 0.003148361574858427, 0.21093998849391937,
- 0.012544475495815277, 0.010825159028172493, 0.022096479311585426, -0.04386445879936218,
- 0.033544350415468216, -0.09059733152389526, -0.09273530542850494, -0.01736137643456459,
- 0.032907892018556595, 0.027261875569820404, -0.054287075996398926, -0.11843652278184891,
- -0.010829911567270756, -0.018233276903629303, -0.0076292273588478565,
- 0.13478834927082062, -0.018744543194770813, 0.012944409623742104, -0.005551970563828945,
- 0.13199329376220703, 0.016321150586009026, 0.01993991620838642, 0.04409535974264145,
- 0.045984167605638504, 0.049137044697999954, -0.004610842559486628, -0.07176019251346588,
- -0.07432705909013748, -0.006898215506225824, 0.17445293068885803, -0.010490814223885536,
- 0.2013985514640808, 0.0441177561879158, -0.012185716070234776, -0.019546639174222946,
- -0.005507847759872675, -0.0046938457526266575, 0.0350886695086956, -0.43453487753868103,
- -0.004413349088281393, 0.09543384611606598, 0.021975794807076454, -0.006291240453720093,
- 0.11386526376008987, 0.023766176775097847, -0.026978453621268272, -0.04939161241054535,
- -0.07055185735225677, 0.1690850555896759, -0.03572918847203255, 0.07996765524148941,
- -0.17253121733665466, 0.011208622716367245, 0.09014515578746796, -0.009899670258164406,
- -0.015197023749351501, 0.05746948719024658, -0.21498849987983704, 0.0011195560218766332,
- -0.027138229459524155, 0.13318133354187012, 0.020013291388750076, 0.025214720517396927,
- 0.07568998634815216, -0.061503563076257706, 0.016044678166508675, 0.03555877506732941,
- -0.01321838703006506, 0.06733617186546326, -0.015932578593492508, -0.035602059215307236,
- 0.10085070133209229, 0.07560054957866669, 0.08120538294315338, -0.08025331795215607,
- 11.802074432373047, 0.055880576372146606, 0.06428008526563644, -0.0944034680724144,
- 0.0016762904124334455, -0.05959014967083931, 0.03643937408924103, -0.07384508848190308,
- 0.03892967477440834, 0.13589909672737122, -0.037593498826026917, -0.019419986754655838,
- -0.04693523421883583, -0.07945892214775085, 0.018932722508907318, -0.022429168224334717,
- -0.07317811250686646, -0.03983469307422638, 0.039040639996528625, -0.0272443238645792,
- -0.07602454721927643, 0.0819680318236351, 0.06315947324037552, 0.009322491474449635,
- -0.04696202278137207, 0.04039493575692177, 0.027208508923649788, -0.0022246153093874454,
- -0.015669548884034157, 0.030550507828593254, 0.0410650297999382, 0.035352833569049835,
- 0.1048375815153122, 0.010223629884421825, 0.01785908453166485, 0.05912761390209198,
- 0.038277845829725266, 0.01378246583044529, 0.02328569069504738, 0.04537476971745491,
- 0.009248028509318829, 0.018542654812335968, 0.0038516127970069647, 0.052293386310338974,
- 0.03252555429935455, 0.03352983668446541, 0.030250724405050278, 0.1196826696395874,
- 0.006738143973052502, 0.047952599823474884, 0.09634123742580414, -0.022473851218819618,
- 0.11144503951072693, 0.0387423038482666, -0.03339606523513794, 0.07355836778879166,
- -0.047491349279880524, -0.08129628002643585, 0.13463623821735382, 0.03528096526861191,
- -0.03705327957868576, 0.08128687739372253, 0.020194673910737038, 0.11933529376983643,
- -0.023267028853297234, 0.011968430131673813, 0.01383239310234785, 0.05592179298400879,
- -0.07274319976568222, -0.10004385560750961, 0.017008349299430847, -0.11290834844112396,
- -0.06915668398141861, 0.05461835488677025, 0.12389920651912689, -0.019946465268731117,
- 0.059440143406391144, -0.02357727475464344, -0.0007236172677949071,
- -0.028988443315029144, 0.009661355055868626, 0.07866962254047394, -0.03769790753722191,
- 0.02703884057700634, 0.04674164205789566, 0.021423667669296265, 0.11077547818422318,
- 0.09983744472265244, 0.028390638530254364, -0.056119050830602646, -0.05468899756669998,
- 0.12314356863498688, 0.014350958168506622, -0.03144592419266701, -0.01688450016081333,
- -0.028418896719813347, 0.05079825222492218, -0.14278070628643036, 0.0550551563501358,
- 0.09469521045684814, -0.02684265933930874, -0.055332258343696594, -0.011184950359165668,
- 0.06824196130037308, 0.0038093000184744596, -0.0020705920178443193,
- -0.08879169821739197, -0.01801787130534649, 0.015351410955190659, 0.03176607936620712,
- -0.03615468740463257, 0.06176714226603508, 0.10160285234451294, -0.04721031337976456,
- 0.0497082956135273, 0.060199521481990814, -0.06390818953514099, -0.02729061245918274,
- 0.059918224811553955, 0.04384416714310646, -0.08536139875650406, -0.05001256987452507,
- -0.037590786814689636, -0.020678695291280746, 0.004845090210437775,
- -0.036399923264980316, -0.011142084375023842, 0.005312325432896614,
- 0.0035248284693807364, -0.03416689112782478, 0.06853107362985611, 0.060777969658374786,
- 0.051889292895793915, 0.022122735157608986, 0.035826217383146286, -0.04327588528394699,
- 0.008909902535378933, 0.03813999146223068, 0.06992402672767639, 0.11163558065891266,
- -0.04190552979707718, -0.01529060211032629, -0.014674575068056583, -0.11831017583608627,
- 0.01686929725110531, 0.07111291587352753, 0.0372842401266098, -0.014917544089257717,
- -0.015161830000579357, -0.07848802208900452, -0.0725478008389473, 0.09830613434314728,
- 0.04564270004630089, 0.061242081224918365, 0.028289422392845154, -0.06368967890739441,
- -0.02472265064716339, 0.12122956663370132, -0.045064955949783325, -0.013177198357880116,
- 0.02272837981581688, -0.1088346317410469, 0.12174360454082489, 0.08946612477302551,
- 0.0009936559945344925, 0.019103188067674637, 0.03125103563070297, -0.00305830966681242,
- 0.042764607816934586, -0.010676105506718159, 0.03379648178815842, -0.029792945832014084,
- -0.06419391185045242, -0.09520517289638519, 0.015597416087985039, 0.060312651097774506,
- 0.03747967630624771, -0.17062577605247498, -0.03654410317540169, -0.007842659950256348
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 190,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Amrita Khalid"],
- "epoch_date_downloaded": 1652659200,
- "epoch_date_modified": 1652918400,
- "epoch_date_submitted": 1652659200,
- "flag": null,
- "report_number": 1613,
- "source_domain": "engadget.com",
- "submitters": ["AIAAIC"],
- "title": "TikTok owner ByteDance scraped content from Instagram and others to push predecessor app",
- "url": "https://www.engadget.com/tik-tok-owner-byte-dance-scraped-content-from-instagram-and-others-to-push-predecessor-app-232135784.html"
- },
- {
- "__typename": "Report",
- "authors": ["Aisha Malik"],
- "epoch_date_downloaded": 1652659200,
- "epoch_date_modified": 1652918400,
- "epoch_date_submitted": 1652659200,
- "flag": null,
- "report_number": 1612,
- "source_domain": "techcrunch.com",
- "submitters": ["AIAAIC"],
- "title": "TikTok owner ByteDance accused of scraping content from Instagram and Snapchat for its older app Flipagram",
- "url": "https://techcrunch.com/2022/04/04/tiktok-owner-bytedance-reportedly-scraped-content-from-instagram-snapchat-posted-flipagram/"
- },
- {
- "__typename": "Report",
- "authors": ["IANS"],
- "epoch_date_downloaded": 1652659200,
- "epoch_date_modified": 1652918400,
- "epoch_date_submitted": 1652659200,
- "flag": null,
- "report_number": 1611,
- "source_domain": "businessinsider.in",
- "submitters": ["AIAAIC"],
- "title": "TikTok's parent ByteDance made fake accounts scraping content from Instagram, Snapchat and other platforms, claims report",
- "url": "https://www.businessinsider.in/tech/apps/news/tiktoks-parent-bytedance-made-fake-accounts-scraping-content-from-instagram-snapchat-and-other-platforms-claims-report/articleshow/90656168.cms"
- },
- {
- "__typename": "Report",
- "authors": ["Emily Baker-White"],
- "epoch_date_downloaded": 1652659200,
- "epoch_date_modified": 1652918400,
- "epoch_date_submitted": 1652659200,
- "flag": null,
- "report_number": 1610,
- "source_domain": "buzzfeednews.com",
- "submitters": ["AIAAIC"],
- "title": "ByteDance Made Fake Accounts With Content Scraped From Instagram and Snapchat, Former Employees Say",
- "url": "https://www.buzzfeednews.com/article/emilybakerwhite/bytedance-scraped-fake-accounts-instagram-snapchat"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "naver",
- "name": "Naver"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "naver",
- "name": "Naver"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "naver-customers",
- "name": "Naver customers"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1615, 1614],
- "vector": [
- -0.015534075908362865, 0.11979113519191742, 0.04393896460533142, -0.11558932811021805,
- 0.047139499336481094, -0.017969071865081787, -0.0064392127096652985,
- 0.04893039911985397, 0.05807848274707794, -0.12661251425743103, 0.01568315550684929,
- 0.032968949526548386, 0.025563552975654602, -0.058500513434410095, 0.04979047179222107,
- -0.08091212809085846, -0.07007661461830139, -0.0010761613957583904,
- -0.03252540901303291, -0.1020192801952362, -0.08574283123016357, 0.026221781969070435,
- 0.03017120622098446, 0.1019177958369255, -0.08225494623184204, 0.0341348871588707,
- 0.1071949303150177, 0.14085274934768677, -0.05670967325568199, 0.07436800003051758,
- -0.03577915579080582, -0.048353832215070724, 0.12670555710792542, 0.022323844954371452,
- -0.006178614683449268, 0.08861054480075836, 0.0700116902589798, -0.001373125589452684,
- -0.028168298304080963, -0.023305777460336685, 0.053839311003685, 0.2320217490196228,
- 0.0058147800154984, -0.019221749156713486, 0.059057001024484634, -0.047254778444767,
- 0.002062601037323475, 0.08310642838478088, -0.03228437528014183, 0.012162300758063793,
- -0.031796324998140335, 0.04719442501664162, -0.011867078021168709, 0.046037860214710236,
- -0.10135906934738159, 0.012118767946958542, 0.0329965278506279, 0.03320900350809097,
- 0.06424760073423386, -0.09521040320396423, -0.02758837305009365, -0.2707446813583374,
- 0.002050255425274372, -0.12288770079612732, 0.049609798938035965, -0.08360683172941208,
- -0.030736949294805527, 0.04548139125108719, 0.036392346024513245, 0.06221047788858414,
- 0.03906446695327759, 0.006630405317991972, 0.021875489503145218, -0.0017426228150725365,
- -0.005407693795859814, -0.025988776236772537, 0.012868255376815796, 0.17514267563819885,
- -0.08064987510442734, -0.008443119004368782, 0.11110742390155792, -0.06876368075609207,
- 0.4440774917602539, 0.05039649084210396, -0.05221555382013321, -0.05592893809080124,
- 0.0985567644238472, 0.08286783844232559, 0.039688192307949066, 0.015044230036437511,
- -0.07248742878437042, -0.037677034735679626, -0.04040092974901199,
- -0.009325077757239342, 0.04769780486822128, 0.03745630383491516, -0.04944188892841339,
- 0.03671063482761383, 0.004328332841396332, -0.04270990937948227, 0.019090089946985245,
- -0.021749788895249367, 0.07926907390356064, 0.0519832968711853, -0.06394628435373306,
- 0.01236457284539938, 0.03167321905493736, -0.07507399469614029, 0.03747814893722534,
- -0.027941405773162842, 0.02651790715754032, 0.038996681571006775, 0.06357371807098389,
- -0.0016118180938065052, 0.05958262085914612, -0.026827482506632805,
- -0.005162706598639488, 0.062093377113342285, 0.06514916568994522, -0.02173512987792492,
- -0.0045945243909955025, 0.055020418018102646, 0.04132433980703354, -0.0858171135187149,
- 0.0019287411123514175, -0.05908537656068802, -0.00033167889341712,
- -0.055091384798288345, -0.014268058352172375, -0.003575262613594532,
- -0.04518842324614525, -0.1887475997209549, 0.033725809305906296, 0.06973368674516678,
- 0.08920957148075104, -0.03450426086783409, 0.01303437352180481, -0.062655508518219,
- 0.0055383644066751, -0.018444351851940155, -0.002494718413800001, 0.06380569934844971,
- 0.0027907327748835087, 0.022201338782906532, 0.1916176676750183, 0.030598357319831848,
- -0.05674101784825325, -0.06699217855930328, 0.015410834923386574, 0.006143809296190739,
- 0.10921289771795273, -0.10714475810527802, -0.07320024073123932, 0.0161110982298851,
- -0.005678897723555565, 0.7164697051048279, 0.10130399465560913, 0.14842617511749268,
- -0.00700129522010684, -0.02608972229063511, 0.1549811214208603, 0.03505735844373703,
- 0.05958563834428787, -0.08362726867198944, -0.08338996767997742, 0.03746645152568817,
- -0.07447804510593414, -0.03528737649321556, 0.04187137261033058, -0.05349148064851761,
- 0.10682719945907593, -0.0005351873114705086, 0.08826212584972382, -0.023906756192445755,
- -0.04187098890542984, -0.005750955082476139, 0.05816637724637985, -0.012650048360228539,
- -0.11108920723199844, -0.004996794741600752, -0.025228135287761688, 0.09911458194255829,
- -0.06037730723619461, 0.019907910376787186, -0.08936905860900879,
- -0.0051694209687411785, -0.025414500385522842, 0.03335379809141159,
- -0.020125193521380424, 0.0736941397190094, 0.021928410977125168, 0.035106755793094635,
- -0.011130353435873985, -0.09490169584751129, -0.02141304686665535, 0.09863970428705215,
- 0.02691490948200226, -0.01577538251876831, 0.07265972346067429, -0.11270752549171448,
- 0.06296936422586441, -0.013610533438622952, 0.1350441873073578, -0.11020664125680923,
- -0.03344150632619858, 0.024187594652175903, -0.006680899299681187, 0.06263609975576401,
- 0.0022781824227422476, -0.08963923156261444, -0.0346548855304718, 0.0668807402253151,
- 0.03664114326238632, 0.041395753622055054, 0.04212990775704384, -0.0036356807686388493,
- 0.03188388794660568, 0.11850856244564056, -0.02572491019964218, -0.0034979465417563915,
- 0.056476205587387085, 0.018504556268453598, -0.0488576702773571, -0.022521626204252243,
- 0.007683694362640381, -0.0016502758953720331, -0.003955215681344271,
- -0.007200605235993862, 0.016427235677838326, -0.00310512981377542, -0.0218803733587265,
- -0.006361962761729956, 0.04574224352836609, 0.02267424389719963, 0.11514098197221756,
- -0.062016431242227554, -0.05433487147092819, -0.05448932200670242, -0.07686249911785126,
- -0.020776763558387756, -0.0005634627304971218, 0.11348716914653778, 0.10661710053682327,
- 0.07187262177467346, 0.04926992207765579, 0.014301996678113937, 0.07664395868778229,
- -0.02095491625368595, 0.030101075768470764, 0.037658002227544785, -0.017132841050624847,
- -0.05906248092651367, -0.029622720554471016, 0.03113420680165291, 0.029111184179782867,
- 0.03263036534190178, -0.06542231142520905, 0.012295893393456936, -0.03200489282608032,
- -0.056977011263370514, -0.10300298035144806, 0.030873214825987816, 0.044185858219861984,
- 0.08396777510643005, -0.033220794051885605, -0.071261465549469, -0.09162063896656036,
- -0.0002621002495288849, 0.09307955205440521, -0.05286392569541931, 0.008479333482682705,
- -0.08920850604772568, -0.04012171924114227, -0.03518141806125641, 0.051192477345466614,
- -0.009307954460382462, 0.012142803519964218, 0.019036762416362762, -0.04411400109529495,
- 0.057398926466703415, -0.04286911338567734, -0.015193617902696133, -0.11426091939210892,
- -0.0855228453874588, -0.08445911109447479, 0.04091671481728554, 0.046658024191856384,
- -0.05350553244352341, 0.070156991481781, -0.01120682805776596, 0.08281254768371582,
- 0.01213765237480402, -0.02082620933651924, 0.07384966313838959, -0.04322358965873718,
- 0.030641548335552216, 0.10324013233184814, 0.006968947593122721, 0.009104224853217602,
- -0.02173881232738495, -0.07234993577003479, -0.02488444186747074, 0.03383117541670799,
- -0.08499413728713989, 0.05377919226884842, 0.016643833369016647, 0.024705322459340096,
- -0.05020010098814964, -0.00033293943852186203, 0.07757607102394104,
- -0.09172064065933228, -0.1383921205997467, -0.05124344304203987, 0.04722055047750473,
- 0.022259604185819626, -0.010038341395556927, 0.023941442370414734, -0.05990387871861458,
- 0.03073674999177456, -0.047162674367427826, -0.03609649837017059, 0.043738096952438354,
- 0.05566590651869774, -0.03180811181664467, 0.0023464474361389875, 0.027536656707525253,
- -0.027518346905708313, 0.04633810371160507, 0.09019861370325089, 0.4146386682987213,
- -0.07669336348772049, 0.10389189422130585, 0.06284237653017044, -0.003139778971672058,
- 0.041643284261226654, -0.048583533614873886, 0.06943897902965546, 0.07413798570632935,
- 0.11454199254512787, 0.08622269332408905, -0.026746347546577454, -0.008076845668256283,
- -0.11016327142715454, 0.10916103422641754, 0.0050487457774579525, -0.050940558314323425,
- 0.03414376080036163, -0.0759391114115715, -0.030031077563762665, 0.0625428631901741,
- -0.006768383551388979, -0.0004253275692462921, -0.057050805538892746,
- -0.0420885905623436, 0.059570491313934326, 0.03870287537574768, 0.034499648958444595,
- -0.0054320371709764, 0.0058225588873028755, -0.06684692203998566, 0.024390773847699165,
- 0.004509445745497942, 0.07115274667739868, -0.14791636168956757, 0.06019645929336548,
- -0.1156822144985199, -0.08001336455345154, 0.06277300417423248, -0.03622065484523773,
- 0.04353000968694687, 0.07468412071466446, -0.02749785967171192, 0.04821847379207611,
- -0.03161503002047539, -0.05081882327795029, 0.05062418431043625, 0.04154045507311821,
- 0.039627183228731155, 0.08847449719905853, 0.14732998609542847, -0.0520663857460022,
- -0.019213905557990074, -0.06948185712099075, 0.06935276836156845, 0.06997903436422348,
- 0.012493174523115158, 0.06607325375080109, -0.04663751274347305, -0.05070474371314049,
- -0.004892357625067234, -0.026743825525045395, -0.11022346466779709,
- -0.014975300058722496, -0.06390248984098434, 0.03340492397546768, 0.028615646064281464,
- -0.022551346570253372, -0.08065194636583328, -0.00948824267834425, -0.01392486970871687,
- -0.016003429889678955, 0.10595953464508057, -0.07149650901556015, -0.01950059086084366,
- 0.01932872086763382, -0.046037688851356506, -0.04562661051750183, -0.1454487144947052,
- 0.018995586782693863, -0.06369370967149734, 0.03826900199055672, 0.01115689892321825,
- 0.07038578391075134, -0.025826269760727882, 0.09163108468055725, -0.11734946817159653,
- 0.0683957189321518, 0.00154176726937294, -0.046677201986312866, 0.055293112993240356,
- -0.02192031964659691, -0.01115367840975523, 0.03445253521203995, -0.040695928037166595,
- -0.029242489486932755, -0.019283641129732132, -0.060829147696495056,
- -0.12217813730239868, -0.08404583483934402, -0.026158083230257034, -0.08319227397441864,
- 0.0729852020740509, -0.062318798154592514, 0.007565817795693874, 0.039716046303510666,
- -0.007759399712085724, -0.04669181630015373, 0.00719114625826478, 0.04416963458061218,
- -0.19075742363929749, -0.028786059468984604, 0.029010731726884842, 0.06473224610090256,
- -0.006747167091816664, -0.002382077509537339, 0.061000481247901917, 0.13384176790714264,
- 0.03545791283249855, 0.011442899703979492, 0.06144896149635315, -0.0006559193134307861,
- 0.0516912117600441, -0.10892049968242645, -0.35458534955978394, 0.061957910656929016,
- 0.031101735308766365, 0.039782069623470306, 0.021899722516536713, -0.11485692113637924,
- 0.03884900361299515, 0.04225052520632744, -0.07337341457605362, 0.0706087201833725,
- -0.04612792283296585, 0.023730061948299408, 0.0047908020205795765, -0.07616262882947922,
- -0.045065052807331085, -0.07742159068584442, -0.023042649030685425,
- 0.009956302121281624, -0.07104488462209702, -0.03186751902103424, -0.11958108097314835,
- 0.0202457457780838, -0.049011193215847015, 0.04230083152651787, 0.039703480899333954,
- -0.008031189441680908, -0.10210122168064117, -0.03569655492901802, 0.0478564128279686,
- 0.03800860047340393, 0.034791018813848495, -0.08058309555053711, 0.01303786225616932,
- 0.1011032834649086, 0.008453615009784698, 0.13555608689785004, 0.02859332039952278,
- -0.03142477571964264, -0.07282919436693192, 0.02938193269073963, 0.04054467752575874,
- 0.18710681796073914, 0.04419663920998573, -0.043152470141649246, 0.05586802959442139,
- 0.14802256226539612, 0.02527136355638504, -0.012106920592486858, -0.03712048381567001,
- 0.04748544096946716, -0.01077430322766304, 0.0037287964951246977, 0.05523580685257912,
- -0.09255503118038177, -0.02496228739619255, -0.02487712725996971, 0.010395994409918785,
- -0.04855097085237503, -0.04910339042544365, 0.16840694844722748, 0.018036745488643646,
- 0.036159999668598175, 0.05471508949995041, -0.11471433192491531, -0.002574736252427101,
- -0.08826959878206253, -0.10381698608398438, -0.007843105122447014, 0.012686008587479591,
- 0.04766405373811722, -0.06148618459701538, -0.11842118203639984, -0.0459902361035347,
- -0.0006214164895936847, 0.03382625803351402, 0.1288556605577469, -0.04623964801430702,
- 0.020948663353919983, -0.0020780516788363457, 0.10250436514616013, 0.037413157522678375,
- 0.024867497384548187, -0.0017133879009634256, 0.10727445781230927, 0.004662595689296722,
- -0.008546775206923485, -0.014614737592637539, -0.10690861940383911,
- 0.007408555131405592, 0.11235828697681427, -0.02599298395216465, 0.10257822275161743,
- 0.09273503720760345, -0.03439890593290329, -0.013486301526427269, 0.02477547898888588,
- 0.0026386803947389126, 0.02616795524954796, -0.3860689401626587, -0.002803751267492771,
- 0.07562541961669922, 0.03882269561290741, -0.02900080941617489, 0.1384924054145813,
- 0.03338244557380676, -0.014798592776060104, -0.04458029940724373, -0.09052616357803345,
- 0.17562898993492126, 0.015409193001687527, 0.08212072402238846, -0.1307736337184906,
- 0.001553333830088377, 0.08336172997951508, -0.020433679223060608, 0.017602896317839622,
- 0.04866468906402588, -0.15961304306983948, 0.002990919863805175, -0.03702045604586601,
- 0.12612532079219818, 0.01490276399999857, 0.029001697897911072, 0.06865730881690979,
- -0.03942716494202614, 0.018644921481609344, 0.04189940541982651, -0.021308450028300285,
- 0.0601520910859108, -0.007561404258012772, -0.0025214890483766794, 0.12473029643297195,
- 0.04245767742395401, 0.11385062336921692, -0.04667773097753525, 11.911924362182617,
- 0.05862823873758316, 0.060088589787483215, -0.06021852791309357, 0.010636862367391586,
- -0.04146241396665573, 0.03571309149265289, -0.09538375586271286, 0.009211300872266293,
- 0.12029363214969635, -0.0010849284008145332, -0.07157096266746521,
- -0.011500157415866852, -0.11320007592439651, -0.005199061706662178,
- -0.057140037417411804, -0.0702609196305275, -0.03317965567111969, 0.026947788894176483,
- -0.030669040977954865, -0.07153262197971344, 0.04510335624217987, 0.06675723195075989,
- 0.02491847798228264, -0.052040211856365204, 0.007992256432771683, 0.07682418078184128,
- -0.015564028173685074, -0.010197337716817856, -0.023744039237499237,
- 0.06436426192522049, 0.0097686517983675, 0.07309174537658691, 0.0010830108076334,
- 0.034551769495010376, 0.013557461090385914, 0.06579012423753738, 0.0634130984544754,
- 0.016499411314725876, 0.028157945722341537, 0.043565478175878525, -0.01535963173955679,
- 0.032506875693798065, 0.028850622475147247, 0.04661417752504349, 0.0277470201253891,
- 0.030316513031721115, 0.09254415333271027, 0.0321781262755394, 0.05870195850729942,
- 0.0851307362318039, 0.035697631537914276, 0.0853990912437439, 0.07000245898962021,
- 0.012383458204567432, 0.04855839163064957, 0.0035289512015879154, -0.08427324891090393,
- 0.12553396821022034, 0.017517106607556343, -0.0440286360681057, 0.09880484640598297,
- 0.027862410992383957, 0.1060173436999321, 0.039041195064783096, 0.11830689758062363,
- 0.055817827582359314, 0.05456514656543732, -0.12259826809167862, -0.11338843405246735,
- 0.07877255976200104, -0.12461259216070175, -0.052435312420129776, 0.07544247806072235,
- 0.10926884412765503, -0.0590587817132473, 0.06651841104030609, -0.027109341695904732,
- 0.029415298253297806, -0.0472295917570591, -0.010511789470911026, 0.04647989571094513,
- -0.02089686132967472, 0.014560994692146778, 0.09311063587665558, 0.04197291284799576,
- 0.057570330798625946, 0.05282394215464592, 0.011939262971282005, -0.009749747812747955,
- -0.040370624512434006, 0.10063397884368896, 0.018352093175053596, -0.05835964158177376,
- -0.05780579149723053, 0.0035186735913157463, -0.010539674200117588,
- -0.15677839517593384, 0.051576465368270874, 0.08617827296257019, -0.10039380192756653,
- -0.04746834933757782, -0.025349082425236702, 0.07816615700721741, 0.012862928211688995,
- 0.021301280707120895, -0.04731455445289612, -0.010510553605854511, 0.023170817643404007,
- 0.04307844489812851, -0.030923988670110703, 0.05339378863573074, 0.08367027342319489,
- -0.08182385563850403, 0.030582277104258537, 0.04862859472632408, -0.009316240437328815,
- -0.005682586692273617, 0.027976352721452713, 0.0027216337621212006,
- -0.04590339586138725, -0.07721592485904694, -0.005982500500977039, 0.008995437063276768,
- -0.005468151997774839, -0.049692302942276, -0.004394080955535173, 0.047840870916843414,
- -0.016878526657819748, -0.03432700037956238, 0.07175807654857635, 0.02083929255604744,
- 0.034842051565647125, 0.0071953097358345985, 0.029283173382282257, -0.09389950335025787,
- -0.059774402529001236, 0.04519516974687576, 0.03004535287618637, 0.04878922551870346,
- -0.011007200926542282, -0.02077881060540676, -0.062322042882442474,
- -0.12471852451562881, -0.007541879080235958, 0.11299419403076172, 0.0571565181016922,
- 0.03569309785962105, 0.009348989464342594, -0.06606055796146393, -0.04556409642100334,
- 0.08398297429084778, 0.007142367772758007, 0.012343545444309711, 0.019406866282224655,
- -0.09784722328186035, -0.014847401529550552, 0.1284123957157135, -0.053559668362140656,
- 0.037719473242759705, -0.030016353353857994, -0.0269928015768528, 0.1272040605545044,
- 0.09206072241067886, -0.09136374294757843, 0.03130657225847244, 0.023236803710460663,
- 0.007737504318356514, 0.03761414811015129, -0.03574094921350479, 0.0305778905749321,
- -0.05003337934613228, -0.11959642171859741, -0.07310640066862106, 0.06727233529090881,
- 0.09193384647369385, 0.020037690177559853, -0.08089067041873932, -0.05066448450088501,
- 0.0014046903233975172
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 191,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Nam Hyun-woo"],
- "epoch_date_downloaded": 1652400000,
- "epoch_date_modified": 1652918400,
- "epoch_date_submitted": 1652400000,
- "flag": null,
- "report_number": 1615,
- "source_domain": "koreatimes.co.kr",
- "submitters": ["AIAAIC"],
- "title": "Naver fined W26.7 bil. for manipulating search algorithm",
- "url": "https://www.koreatimes.co.kr/www/tech/2020/10/133_297112.html"
- },
- {
- "__typename": "Report",
- "authors": ["Shim Woo-hyun"],
- "epoch_date_downloaded": 1652400000,
- "epoch_date_modified": 1652918400,
- "epoch_date_submitted": 1652400000,
- "flag": null,
- "report_number": 1614,
- "source_domain": "theinvestor.co.kr",
- "submitters": ["AIAAIC"],
- "title": "Naver fined for manipulating search algorithms",
- "url": "https://m.theinvestor.co.kr/view.php?ud=20201006000926\u0026np=1"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "estee-lauder",
- "name": "Estée Lauder"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "hirevue",
- "name": "HireVue"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "pseudonymous-estee-lauder's-former-staff",
- "name": "pseudonymous Estée Lauder's former staff"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1617, 1616],
- "vector": [
- -0.08145762979984283, 0.09000720083713531, 0.05744614079594612, -0.18026822805404663,
- 0.05328458547592163, -0.07993803918361664, 0.03623019531369209, 0.0858110636472702,
- 0.108426034450531, -0.10242806375026703, -0.008540877141058445, 0.054086700081825256,
- 0.02799379825592041, -0.053489476442337036, 0.03298567980527878, -0.15459325909614563,
- -0.1170307844877243, -0.04166770726442337, -0.06263762712478638, -0.1536017656326294,
- -0.0809548944234848, 0.03150634467601776, -0.00266588618978858, 0.15703082084655762,
- -0.08690270781517029, 0.022931989282369614, 0.0900336354970932, 0.1347423493862152,
- -0.03426551818847656, 0.06040719896554947, -0.02695469744503498, -0.059541672468185425,
- 0.08743524551391602, 0.0307063776999712, -0.05314972996711731, 0.0846034586429596,
- -0.054415278136730194, -0.04873026907444, 0.01903291419148445, 0.025837156921625137,
- 0.04929386451840401, 0.2868470549583435, 0.010466726496815681, 0.03439628705382347,
- -0.019396193325519562, -0.06949704885482788, 0.0052106124348938465,
- 0.046887390315532684, 0.026092059910297394, 0.01438422966748476, -0.011318894103169441,
- 0.06370429694652557, -0.008369441144168377, 0.054914042353630066, -0.11162586510181427,
- 0.06949929893016815, 0.04275467246770859, -0.022420644760131836, -0.0006396318785846233,
- -0.10507825762033463, 0.020911477506160736, -0.2686343789100647, -0.09182418137788773,
- -0.1214544028043747, 0.07978023588657379, -0.08522352576255798, -0.013416226953268051,
- 0.07496245205402374, 0.040141940116882324, 0.10755555331707001, 0.07621613144874573,
- -0.012279736809432507, -0.01728724129498005, -0.0008690236136317253,
- 0.031091904267668724, 0.0038969633169472218, 0.004835859872400761, 0.1639595478773117,
- -0.15345747768878937, -0.006315744481980801, 0.13532033562660217, -0.17496660351753235,
- 0.4985889792442322, -0.015707872807979584, -0.033495545387268066, -0.062088824808597565,
- 0.08875221014022827, 0.020797615870833397, 0.08241432905197144, 0.01750730164349079,
- -0.018741492182016373, 0.05860501527786255, -0.07618321478366852, 0.016347333788871765,
- 0.10022526234388351, 0.0070448098704218864, -0.04383029788732529, 0.16592302918434143,
- -0.031252019107341766, -0.010267185047268867, 0.020231932401657104,
- -0.009265957400202751, 0.1571439802646637, 0.14015474915504456, -0.04513140767812729,
- -0.034117065370082855, 0.08379402756690979, -0.048120152205228806, 0.07397519052028656,
- -0.026635877788066864, 0.0369144082069397, -0.016433117911219597, 0.08287378400564194,
- 0.056103989481925964, 0.03759022057056427, -0.06030090153217316, 0.018802747130393982,
- 0.11417810618877411, 0.11852376163005829, 0.012929283082485199, 0.02339978702366352,
- 0.03800826519727707, 0.04500140622258186, -0.037877049297094345, 0.03621289134025574,
- -0.04310820251703262, -0.07984238862991333, -0.12284816801548004, 0.007998814806342125,
- 0.06848667562007904, -0.10774333775043488, -0.24627608060836792, 0.018126722425222397,
- 0.05302407220005989, 0.004895889665931463, -0.03384113684296608, -0.022674381732940674,
- -0.027840569615364075, 0.09357872605323792, -0.0691320151090622, -0.057902395725250244,
- 0.09465587139129639, -0.03182628005743027, 0.057107578963041306, 0.14270077645778656,
- 0.07822878658771515, -0.050577014684677124, 0.03556879237294197, 0.00021247693803161383,
- -0.02016284689307213, 0.1482895016670227, -0.16299384832382202, -0.007700578309595585,
- -0.008350037038326263, 0.038080036640167236, 0.7479643225669861, 0.11681254208087921,
- 0.19009314477443695, 0.03767206892371178, -0.013993239030241966, 0.2154495120048523,
- -0.07037097960710526, 0.10321392863988876, -0.09333765506744385, -0.08968654274940491,
- 0.07643312960863113, -0.1069478690624237, -0.0920310914516449, 0.07004792243242264,
- -0.029042977839708328, 0.08759801089763641, 0.0053708916530013084, 0.080714650452137,
- -0.018246714025735855, -0.15361715853214264, 0.004975843708962202, 0.11391369253396988,
- 0.04603051394224167, -0.1368984431028366, -0.043003182858228683, 0.021771486848592758,
- 0.10802827775478363, -0.13869956135749817, -0.007761693559587002, -0.10623320937156677,
- 0.048548948019742966, 0.01948307827115059, 0.08717004954814911, -0.04832939803600311,
- 0.03812368959188461, 0.027476634830236435, 0.025038160383701324, 0.0060507757589221,
- -0.08138909935951233, 0.011510570533573627, 0.11052663624286652, 0.008372115902602673,
- -0.05859252065420151, 0.08516880124807358, -0.12299836426973343, 0.008339139632880688,
- 0.05843508243560791, 0.12629687786102295, -0.14617261290550232, -0.008971204981207848,
- -0.03926261141896248, -0.016783682629466057, 0.06014788895845413, 0.02049151062965393,
- -0.04876328259706497, -0.06856299191713333, 0.0537906289100647, 0.024809550493955612,
- 0.06084424629807472, 0.05515214055776596, 0.00882647279649973, 0.07129345089197159,
- 0.07232062518596649, 0.01715790666639805, -0.00894299428910017, 0.05374401435256004,
- 0.07954424619674683, -0.04142218828201294, 0.004253281280398369, 0.04779007285833359,
- 0.015013616532087326, -0.03817738592624664, -0.010410977527499199, 0.04192742705345154,
- 0.0038741696625947952, -0.07146701216697693, 0.08614598214626312, -0.018167780712246895,
- -0.003707576310262084, 0.09036451578140259, -0.04168229550123215, -0.08382697403430939,
- -0.03387577831745148, -0.0009062080644071102, 0.04800952225923538,
- -0.025023970752954483, 0.11106140911579132, 0.09842488169670105, 0.08401539921760559,
- -0.011661423370242119, 0.024576766416430473, 0.11002752184867859, 0.03867816552519798,
- -0.005090360529720783, 0.05654946714639664, -0.017501583322882652, -0.05926349014043808,
- -0.05257490277290344, 0.05396921932697296, 0.07508957386016846, 0.0783313512802124,
- -0.10847301781177521, -0.005332332104444504, 0.04182342439889908, -0.03294394165277481,
- -0.11994366347789764, 0.011273855343461037, -0.008807515725493431, 0.020855536684393883,
- -0.035531774163246155, -0.1001356914639473, -0.14126557111740112, -0.009006434120237827,
- 0.05497990548610687, -0.041030850261449814, 0.0063404482789337635, -0.17477849125862122,
- 0.018601108342409134, -0.0429779477417469, 0.10678073018789291, -0.05310753732919693,
- 0.10380227863788605, 0.1291550248861313, -0.04122269153594971, 0.06294935941696167,
- 0.05738086253404617, -0.07437674701213837, -0.0805048868060112, -0.11206446588039398,
- -0.01865866594016552, -0.0005952464416623116, 0.03045281395316124, 0.03127549588680267,
- 0.05702905356884003, 0.049983732402324677, 0.09926410019397736, -0.0015371672343462706,
- -0.038544781506061554, 0.0533502958714962, -0.022365810349583626, 0.01694841869175434,
- 0.1403539478778839, -0.06691046059131622, -0.002347766887396574, -0.005386075470596552,
- -0.06708984822034836, -0.05880502611398697, -0.04091525822877884, -0.04586148262023926,
- 0.04964236915111542, -0.024862762540578842, -0.00895695947110653, 0.01713092252612114,
- -0.08582504093647003, 0.06869085133075714, -0.051646627485752106, -0.11323876678943634,
- -0.09013715386390686, 0.07985921204090118, 0.00931205041706562, 0.010669366456568241,
- 0.03611268848180771, 0.003573404159396887, 0.054128192365169525, -0.04073714464902878,
- -0.0028794449754059315, 0.13613270223140717, 0.05426747724413872, -0.024987448006868362,
- -0.012806318700313568, 0.08708266913890839, 0.011551473289728165, 0.04317156970500946,
- 0.05039334297180176, 0.4690708518028259, -0.2226983904838562, 0.08511810004711151,
- 0.10584355890750885, -0.041076838970184326, 0.062122225761413574, 0.013062066398561,
- 0.07349102199077606, 0.13963323831558228, 0.1391420066356659, 0.1748192012310028,
- -0.10228584706783295, -0.034447312355041504, -0.1432274878025055, 0.0581246018409729,
- 0.01873568631708622, 0.015952736139297485, 0.03862325847148895, -0.1078108623623848,
- 0.0005219725426286459, 0.01726052723824978, -0.05488460510969162, -0.006812410429120064,
- 0.028314433991909027, -0.038961805403232574, -0.012689366936683655,
- -0.03497886285185814, -0.0004808437079191208, -0.031448494642972946,
- 0.10954922437667847, -0.12185569107532501, 0.03277432173490524, -0.006982808001339436,
- 0.05150027573108673, -0.0958082303404808, -0.03462604060769081, -0.04494917392730713,
- -0.12118470668792725, 0.09740246832370758, -0.03428428992629051, 0.047172632068395615,
- 0.03869912028312683, -0.06777779757976532, 0.057068269699811935, -0.01934955082833767,
- -0.07370883971452713, 0.02642030268907547, 0.06718671321868896, 0.017499612644314766,
- 0.05124394968152046, 0.20629645884037018, -0.11464012414216995, -0.033449605107307434,
- -0.1067105084657669, 0.07389724254608154, 0.17837105691432953, 0.06413175165653229,
- -0.011508368887007236, 0.030142564326524734, -0.04650213196873665,
- 0.0011367886327207088, -0.06939008831977844, -0.06952983140945435,
- -0.056153129786252975, -0.03392800688743591, 0.10858120769262314, 0.0002249353565275669,
- -0.0391126424074173, -0.20505616068840027, 0.024122577160596848, -0.03224444389343262,
- 0.06737451255321503, 0.09478455781936646, -0.04776647686958313, 0.07075822353363037,
- -0.07735378295183182, -0.05031592398881912, 0.01884014904499054, -0.08047962188720703,
- 0.00014353543519973755, -0.09529539197683334, 0.03783927857875824, 0.06930665671825409,
- 0.008527603931725025, -0.028545796871185303, 0.09143650531768799, -0.16019585728645325,
- 0.09294798970222473, 0.07668082416057587, -0.062296610325574875, 0.10928332805633545,
- 0.0023575006052851677, -0.0022764510940760374, 0.07472851127386093,
- -0.049107614904642105, 0.03306764364242554, -0.016765465959906578, -0.04112629592418671,
- -0.13293370604515076, -0.05241850018501282, -0.043083976954221725, -0.10801741480827332,
- 0.000666776904836297, -0.029767580330371857, -0.00801926851272583,
- -0.021636396646499634, -0.03630845248699188, -0.008466296829283237, 0.06112535297870636,
- 0.013757460750639439, -0.22834208607673645, -0.04315631091594696, -0.035638488829135895,
- 0.06054149568080902, -0.04522831365466118, -0.018699154257774353, 0.030808448791503906,
- 0.06670071929693222, 0.08914954960346222, 0.026344966143369675, -0.02716881036758423,
- -0.06625865399837494, 0.03868348151445389, -0.06548737734556198, -0.4415310025215149,
- 0.02949153631925583, -0.04603084176778793, 0.007966176606714725, 0.0592636913061142,
- -0.08090309798717499, 0.077596515417099, -0.04442201554775238, -0.06221122294664383,
- 0.11294132471084595, -0.032979972660541534, 0.04093744605779648, -0.004435229115188122,
- -0.08292393386363983, -0.051115069538354874, -0.01919293776154518, -0.07735905051231384,
- 0.05702425539493561, -0.03885948657989502, -0.08893764764070511, -0.1308925747871399,
- 0.033340174704790115, -0.025775102898478508, 0.08387676626443863, -0.011157052591443062,
- 0.004507394973188639, -0.07566694170236588, -0.028780987486243248, 0.07141240686178207,
- 0.004503942094743252, 0.04449452459812164, -0.09717050194740295, 0.07144957035779953,
- 0.12125174701213837, 0.0063515352085232735, 0.14037194848060608, 0.04922529309988022,
- -0.024344418197870255, -0.10606050491333008, 0.10899503529071808, 0.09949257969856262,
- 0.17954084277153015, 0.0001346869394183159, 0.0039733340963721275, -0.01714744232594967,
- 0.15373176336288452, 0.061449795961380005, 0.010422047227621078, -0.0453401580452919,
- 0.03434685617685318, 0.05156904086470604, 0.021707579493522644, 0.09262500703334808,
- -0.11016511917114258, -0.0054266913793981075, -0.01432458870112896,
- 0.0018454371020197868, -0.0007676584646105766, -0.03792336955666542,
- 0.23685306310653687, 0.02313224971294403, 0.0351455993950367, 0.0000402289442718029,
- -0.10123281180858612, -0.019122615456581116, -0.05285368859767914, -0.10726838558912277,
- -0.003235040931031108, -0.03058408573269844, 0.0026895783375948668,
- -0.07807445526123047, -0.12688414752483368, -0.047593653202056885, 0.027278387919068336,
- -0.037402763962745667, 0.10557720065116882, -0.01796627603471279, 0.0901268795132637,
- -0.03485219553112984, 0.15568667650222778, 0.07381521910429001, 0.08430322259664536,
- 0.04786492511630058, 0.06928937137126923, 0.019337322562932968, 0.02426881715655327,
- -0.10233484208583832, -0.11585954576730728, -0.07474260032176971, 0.19908829033374786,
- -0.049213849008083344, 0.13730889558792114, 0.020453795790672302, -0.11797274649143219,
- -0.06360998004674911, -0.012835247442126274, -0.02360415831208229, 0.023879723623394966,
- -0.464404821395874, -0.034972984343767166, 0.1567518711090088, 0.009146222844719887,
- -0.011100832372903824, 0.06431090086698532, 0.0077124787494540215, -0.07690516114234924,
- -0.08835604041814804, -0.14224326610565186, 0.13395772874355316, -0.045970767736434937,
- 0.12868383526802063, -0.10528554022312164, 0.06816038489341736, 0.10907748341560364,
- -0.07646603137254715, -0.0010346721392124891, 0.0855318158864975, -0.23924800753593445,
- -0.00006802903953939676, -0.005274896509945393, 0.09614656865596771,
- 0.05625827610492706, 0.07151901721954346, 0.1175980269908905, -0.05754614621400833,
- 0.008239099755883217, 0.04654696583747864, -0.04304291307926178, 0.05140586197376251,
- -0.0011582630686461926, -0.03834737092256546, 0.1094772145152092, 0.07100692391395569,
- 0.0195908360183239, -0.07557083666324615, 12.306259155273438, 0.10800403356552124,
- 0.09308616816997528, -0.0691903829574585, -0.026316218078136444, -0.05239446461200714,
- 0.009490197524428368, -0.12027899920940399, -0.013832423835992813, 0.126505047082901,
- -0.010537201538681984, -0.08379828184843063, -0.03260314464569092, -0.17492394149303436,
- 0.017498742789030075, -0.05889267474412918, -0.07475090026855469, -0.06086228787899017,
- 0.05175263434648514, -0.06823019683361053, -0.041457176208496094, 0.036151155829429626,
- 0.06617337465286255, 0.005898564122617245, -0.03552796691656113, -0.010198182426393032,
- 0.003749387338757515, -0.07727647572755814, 0.039286572486162186, 0.05454522371292114,
- -0.04305841773748398, 0.08749374747276306, 0.052540373057127, -0.0565510168671608,
- 0.031268902122974396, -0.05304209887981415, 0.08744043111801147, 0.060128748416900635,
- 0.017354294657707214, 0.11429020017385483, 0.01178532000631094, 0.01809713803231716,
- 0.08289322257041931, 0.06541930139064789, 0.06650811433792114, 0.0268448144197464,
- 0.04241461306810379, 0.05906036123633385, 0.0033191568218171597, 0.06269200146198273,
- 0.1382066011428833, 0.03372440114617348, 0.15883561968803406, -0.019695637747645378,
- 0.012272116728127003, 0.12302950769662857, -0.02116766758263111, -0.11787213385105133,
- 0.07611648738384247, 0.09103972464799881, -0.08340559899806976, 0.07678292691707611,
- 0.020100999623537064, 0.14874139428138733, 0.02364070899784565, 0.018911924213171005,
- 0.13013514876365662, 0.030507128685712814, -0.18505612015724182, -0.1176094263792038,
- 0.009819647297263145, -0.09310107678174973, -0.05188652127981186, 0.0364035926759243,
- 0.0722724050283432, -0.11617019772529602, 0.05961243808269501, -0.05270414426922798,
- 0.003070526523515582, -0.06087978184223175, -0.019129637628793716, 0.04378928989171982,
- -0.028786923736333847, 0.054130829870700836, 0.08526769280433655, -0.009314877912402153,
- 0.08926131576299667, 0.042841266840696335, 0.00947544351220131, -0.11335138976573944,
- -0.03845369815826416, 0.15423119068145752, -0.012466205283999443, -0.05908535048365593,
- -0.038191281259059906, -0.07018977403640747, 0.07561928033828735, -0.1592426896095276,
- 0.05832388252019882, 0.13724449276924133, -0.16498124599456787, -0.005498925223946571,
- -0.043912358582019806, 0.09992591291666031, -0.004058529157191515,
- -0.019235970452427864, -0.008330230601131916, 0.007648293860256672,
- -0.009580597281455994, 0.011254102922976017, -0.08493500202894211, 0.10327258706092834,
- 0.20345290005207062, -0.020913248881697655, -0.025151247158646584, 0.10519567131996155,
- -0.012422362342476845, -0.06168610602617264, 0.04448876529932022, 0.007872579619288445,
- -0.08883138000965118, -0.0562034510076046, -0.0071637448854744434,
- -0.019517241045832634, 0.0013960576616227627, -0.06521184742450714,
- -0.012410868890583515, 0.0820775032043457, -0.0772886872291565, -0.031712498515844345,
- 0.1118478775024414, 0.010404949076473713, 0.0461837574839592, 0.011432746425271034,
- 0.1083473339676857, -0.06646042317152023, -0.06535691767930984, 0.01707121916115284,
- 0.077421635389328, 0.049362629652023315, -0.06657247245311737, -0.09008102864027023,
- -0.026546042412519455, -0.12769009172916412, 0.01727292872965336, 0.13897228240966797,
- 0.005749285686761141, 0.06830835342407227, 0.029857903718948364, -0.10633144527673721,
- -0.1153935045003891, 0.09830760955810547, 0.0700920969247818, 0.009682346135377884,
- 0.10324309766292572, -0.07552470266819, -0.019402053207159042, 0.14605185389518738,
- -0.060649313032627106, 0.03052208386361599, 0.06253111362457275, 0.0482926070690155,
- 0.07579575479030609, 0.12448647618293762, 0.10572043061256409, -0.026726292446255684,
- 0.06550120562314987, 0.013123394921422005, -0.0368136391043663, -0.020684082061052322,
- -0.006080198101699352, -0.051211774349212646, -0.07410366833209991,
- -0.11947974562644958, 0.017508411779999733, 0.10053357481956482, 0.021956752985715866,
- -0.10275822877883911, -0.04380200803279877, -0.09096834063529968
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 192,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Becky Bargh"],
- "epoch_date_downloaded": 1652832000,
- "epoch_date_modified": 1652918400,
- "epoch_date_submitted": 1652832000,
- "flag": null,
- "report_number": 1617,
- "source_domain": "cosmeticsbusiness.com",
- "submitters": ["Khoa Lam"],
- "title": "Estée Lauder settles out of court with staff who were ‘sacked by algorithm’",
- "url": "https://www.cosmeticsbusiness.com/news/article_page/Estee_Lauder_settles_out_of_court_with_staff_who_were_sacked_by_algorithm/199624"
- },
- {
- "__typename": "Report",
- "authors": ["Tom Whipple"],
- "epoch_date_downloaded": 1652832000,
- "epoch_date_modified": 1652918400,
- "epoch_date_submitted": 1652832000,
- "flag": null,
- "report_number": 1616,
- "source_domain": "thetimes.co.uk",
- "submitters": ["AIAAIC"],
- "title": "Payout for Estée Lauder women ‘sacked by algorithm’",
- "url": "https://www.thetimes.co.uk/article/payout-for-estee-lauder-women-sacked-by-algorithm-wnq0ffzt3"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "target",
- "name": "Target"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "fireeye",
- "name": "FireEye"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "target-customers",
- "name": "Target customers"
- },
- {
- "__typename": "Entity",
- "entity_id": "target",
- "name": "Target"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1620],
- "vector": [
- -0.091062031686306, 0.09700287133455276, -0.013398385606706142, -0.07198835164308548,
- 0.13347019255161285, -0.03704777732491493, -0.021941915154457092, 0.02626490779221058,
- 0.060334041714668274, -0.12396309524774551, -0.02999563328921795, 0.012195328250527382,
- 0.0161579716950655, -0.023922808468341827, -0.018180886283516884, -0.2071426659822464,
- -0.06993333250284195, -0.05563253164291382, -0.09840624779462814, -0.11929867416620255,
- -0.054409146308898926, 0.02897275984287262, 0.01973862014710903, 0.165261372923851,
- -0.028710750862956047, -0.004605035297572613, 0.1354268193244934, 0.09981502592563629,
- -0.0762222483754158, 0.04318375512957573, 0.002961827674880624, -0.06640182435512543,
- 0.11614170670509338, 0.005409081466495991, 0.043666720390319824, 0.13255460560321808,
- 0.05990079790353775, -0.0755329430103302, -0.02834297902882099, -0.03011513501405716,
- -0.04168173670768738, 0.27484261989593506, -0.01423348393291235, -0.06942816823720932,
- 0.04088523983955383, -0.02402033656835556, -0.043945930898189545, 0.07083055377006531,
- 0.016836848109960556, -0.04217604547739029, -0.029099056497216225, 0.10723736137151718,
- -0.045024942606687546, 0.05614645406603813, -0.11574070155620575, 0.05249468609690666,
- 0.019535765051841736, -0.04079706594347954, 0.0935678705573082, -0.14243410527706146,
- -0.10656046122312546, -0.26092657446861267, -0.0032518398948013783,
- -0.12624269723892212, 0.13598792254924774, -0.09096066653728485, -0.0661187618970871,
- 0.005213777534663677, 0.010602517053484917, 0.049816761165857315, 0.11753815412521362,
- -0.022792527452111244, -0.0025125250685960054, 0.08933361619710922, 0.025235615670681,
- 0.04385046288371086, 0.023124223574995995, 0.29196667671203613, -0.131960928440094,
- 0.01183413341641426, 0.07128763943910599, -0.03918207064270973, 0.5308492183685303,
- 0.010642297565937042, 0.04260091856122017, -0.10819528251886368, 0.10782566666603088,
- 0.06330478936433792, 0.01857726462185383, 0.03993093967437744, -0.06211183965206146,
- 0.0462028793990612, -0.05823773145675659, -0.009871039539575577, 0.09175045788288116,
- -0.010848465375602245, -0.020349690690636635, 0.009435214102268219,
- -0.008910031989216805, -0.04242939129471779, -0.06805962324142456,
- -0.031159190461039543, 0.08928032219409943, 0.03644333779811859, -0.03121303766965866,
- -0.033237360417842865, 0.017986591905355453, -0.05058673769235611, 0.06364328414201736,
- -0.019502630457282066, 0.019382186233997345, -0.05782460421323776, 0.0209044162184,
- -0.00167380110360682, 0.039185695350170135, -0.02728538028895855, 0.007276971358805895,
- 0.02649252489209175, 0.10477036237716675, 0.10031113773584366, -0.03189036250114441,
- 0.07694122940301895, 0.13424915075302124, -0.12406551837921143, -0.08938120305538177,
- -0.0980745479464531, -0.05023001506924629, -0.1326044201850891, -0.009878595359623432,
- -0.024723337963223457, -0.07065516710281372, -0.31568098068237305, 0.011759678833186626,
- 0.09638816118240356, -0.012946141883730888, -0.0664331465959549, 0.05272950604557991,
- -0.07358787953853607, 0.0553145632147789, 0.0021314998157322407, -0.08743317425251007,
- 0.0970642939209938, 0.05113920941948891, 0.021331194788217545, 0.1621602326631546,
- 0.07059439271688461, -0.06385566294193268, -0.07155055552721024, 0.022509776055812836,
- -0.024712879210710526, 0.1135203018784523, -0.16669562458992004, -0.0412059985101223,
- 0.01697123609483242, -0.03333499655127525, 0.7156975865364075, 0.14032891392707825,
- 0.19668066501617432, 0.07855691015720367, -0.07496240735054016, 0.17837993800640106,
- 0.030200764536857605, 0.09711030125617981, -0.07638518512248993, -0.10061854124069214,
- 0.012398025020956993, -0.08264715224504471, -0.0369584895670414, 0.07626526802778244,
- 0.007728126365691423, 0.16364267468452454, -0.004164284095168114, 0.05549122393131256,
- 0.008515489287674427, -0.07784475386142731, -0.015362119302153587, 0.11739768832921982,
- -0.011097229085862637, -0.11335983127355576, -0.024526789784431458,
- 0.051437415182590485, 0.099331334233284, -0.10901559144258499, 0.06693047285079956,
- -0.040724609047174454, 0.03638840094208717, -0.019415460526943207, 0.04883413761854172,
- -0.04105186089873314, 0.10400182008743286, 0.09155967086553574, 0.1102486401796341,
- 0.017085256054997444, -0.1503041386604309, -0.02866283245384693, 0.09853707998991013,
- -0.02385147660970688, -0.027711203321814537, 0.08595771342515945, -0.12590810656547546,
- 0.04168257117271423, 0.0010920863132923841, 0.22003351151943207, -0.14062269032001495,
- -0.02005906030535698, 0.018704688176512718, -0.015067163854837418, 0.05155804008245468,
- 0.008108582347631454, -0.07301881164312363, -0.07269445806741714, 0.040798503905534744,
- 0.008030947297811508, 0.11403019726276398, 0.11273573338985443, -0.02800990454852581,
- 0.054914478212594986, 0.08709990978240967, -0.027585452422499657, 0.012621266767382622,
- 0.08207462728023529, 0.06949072331190109, 0.003228225978091359, -0.00484166806563735,
- 0.041313495486974716, 0.06575080007314682, 0.04404747486114502, 0.030285488814115524,
- -0.0008405308471992612, 0.049758732318878174, -0.052816201001405716,
- 0.05626905709505081, -0.019712941721081734, 0.003969016019254923, 0.13699892163276672,
- -0.039493244141340256, -0.05082719773054123, -0.05454869568347931,
- -0.024342142045497894, 0.04843159019947052, 0.010976416058838367, 0.11733361333608627,
- 0.09806551784276962, 0.11873114854097366, 0.05121536925435066, 0.06401433795690536,
- 0.01662864163517952, 0.01522038970142603, 0.014314624480903149, -0.0072960262186825275,
- -0.0235248114913702, -0.09575226902961731, 0.012693704105913639, -0.02327454835176468,
- 0.0526568666100502, 0.018084770068526268, -0.05924544483423233, -0.009639560244977474,
- -0.028905943036079407, -0.02057601697742939, -0.09419506788253784, -0.07271598279476166,
- -0.01949847862124443, 0.06222402676939964, -0.05022258684039116, -0.11327701807022095,
- -0.0927860215306282, 0.03816790506243706, 0.08339829742908478, 0.027524182572960854,
- -0.02264145389199257, -0.11878696084022522, 0.029644213616847992, 0.004700887482613325,
- 0.06952286511659622, -0.006802569609135389, -0.0029951059259474277,
- 0.033233143389225006, -0.028018953278660774, 0.07899149507284164, 0.006529306061565876,
- -0.044027913361787796, -0.0953388512134552, -0.08809895068407059, -0.06255955249071121,
- -0.0415647067129612, 0.006299261469393969, -0.04343399032950401, 0.04602116718888283,
- 0.025200342759490013, 0.04053124785423279, 0.0011233976110816002, -0.0293654166162014,
- 0.08967728912830353, -0.0395505428314209, 0.027353409677743912, 0.04636673256754875,
- -0.09444783627986908, 0.06710473448038101, 0.019394466653466225, -0.12825383245944977,
- -0.009495854377746582, 0.04118640348315239, -0.03012438863515854, 0.05905872583389282,
- -0.022346695885062218, -0.0016138029750436544, -0.04604119807481766,
- -0.01854517124593258, 0.020673641934990883, -0.059941768646240234, -0.08393019437789917,
- -0.07582474499940872, 0.09626920521259308, 0.022704703733325005, 0.005562137346714735,
- 0.056813791394233704, -0.03908158838748932, 0.03075985237956047, -0.04631693661212921,
- 0.013566390611231327, 0.025730665773153305, 0.11543235927820206, -0.06154311075806618,
- 0.05175352096557617, 0.06403498351573944, -0.10718431323766708, -0.03747303783893585,
- 0.05379371717572212, 0.4546608328819275, -0.2165844589471817, 0.08317887037992477,
- 0.12262891232967377, -0.008267668075859547, 0.007901288568973541, -0.08836638927459717,
- 0.07465464621782303, 0.0673682689666748, 0.14921458065509796, 0.04511888325214386,
- -0.007202703971415758, -0.016351774334907532, -0.1444171965122223, 0.0942358672618866,
- -0.052952639758586884, 0.004764586221426725, -0.0074473493732512, -0.16226401925086975,
- 0.0049988506361842155, 0.07500902563333511, -0.05239066854119301, -0.009533208794891834,
- -0.009422622621059418, -0.04602446034550667, 0.02771516889333725, -0.01920478604733944,
- 0.0060053616762161255, -0.026289859786629677, 0.034538570791482925,
- -0.07094497978687286, 0.007323823403567076, 0.03090905025601387, -0.007903019897639751,
- -0.1429050862789154, 0.019386902451515198, -0.04110206291079521, -0.15255695581436157,
- 0.15197347104549408, -0.05783608928322792, 0.03264303877949715, 0.08557868003845215,
- -0.11918040364980698, 0.050740040838718414, 0.00230304803699255, -0.0884208083152771,
- 0.07158681750297546, 0.08601408451795578, 0.008793084882199764, 0.03917303681373596,
- 0.19659848511219025, -0.0497351698577404, -0.1106274276971817, -0.108466237783432,
- 0.06684253364801407, 0.12181486189365387, -0.05355208367109299, 0.009626079350709915,
- -0.008833395317196846, -0.049078792333602905, 0.01410166546702385,
- -0.030796056613326073, -0.07559036463499069, -0.013752784579992294, 0.02776806615293026,
- 0.09429190307855606, 0.01927923411130905, -0.016268137842416763, -0.1809735894203186,
- -0.006221493240445852, -0.04040880501270294, -0.010873082093894482, 0.13909576833248138,
- -0.05112409591674805, 0.08166900277137756, 0.020352059975266457, -0.05686349794268608,
- 0.03149266541004181, -0.08747970312833786, 0.011868313886225224, -0.07041563093662262,
- 0.030561024323105812, 0.026855329051613808, 0.032368287444114685, -0.023915983736515045,
- 0.11274310946464539, -0.1007966697216034, 0.10159821063280106, 0.016427909955382347,
- 0.006249213125556707, 0.03663106635212898, -0.06630821526050568, 0.032918307930231094,
- -0.028098879382014275, -0.014089155942201614, 0.010091065429151058,
- 0.005025235936045647, -0.05845573917031288, -0.09998513013124466, -0.013663657940924168,
- 0.006036017555743456, -0.10924993455410004, 0.012684324756264687, -0.141616553068161,
- -0.004192118998616934, 0.016491172835230827, -0.10304177552461624, -0.00985274463891983,
- 0.04172791913151741, 0.04912024363875389, -0.17018960416316986, 0.06328017264604568,
- -0.021645762026309967, 0.09997577965259552, 0.048465561121702194, -0.03233218565583229,
- 0.04043646901845932, 0.13672293722629547, 0.03155040368437767, 0.0015750756720080972,
- 0.0425901897251606, -0.08992375433444977, 0.03211298584938049, -0.15993498265743256,
- -0.4130132496356964, 0.05680803582072258, -0.008959099650382996, 0.05483363941311836,
- -0.010953613556921482, -0.06655197590589523, 0.07491497695446014, -0.033546604216098785,
- -0.06819745153188705, 0.14331604540348053, -0.0957198292016983, 0.024908028542995453,
- -0.004518047906458378, -0.07034122198820114, -0.08020105212926865, -0.0793108195066452,
- -0.01572747528553009, 0.056849174201488495, -0.0021018243860453367,
- -0.09929808974266052, -0.15900187194347382, 0.03253468871116638, -0.0002958628465421498,
- -0.00860230065882206, -0.016881709918379784, -0.0025181625969707966,
- -0.08689980953931808, -0.06749986112117767, -0.006527729332447052, 0.0624014250934124,
- 0.06860135495662689, -0.07484554499387741, -0.003976522479206324, 0.043221693485975266,
- 0.01821700856089592, 0.15286783874034882, 0.0170664731413126, 0.03472768887877464,
- -0.09413590282201767, 0.08321070671081543, 0.03428659215569496, 0.18080392479896545,
- 0.0033612109255045652, 0.05468089133501053, 0.008349079638719559, 0.19166743755340576,
- 0.05657052621245384, 0.028857357800006866, -0.05855783820152283, -0.03339599445462227,
- 0.07784223556518555, -0.033220790326595306, 0.06971319764852524, -0.103871650993824,
- -0.048723701387643814, -0.007370129693299532, -0.036604464054107666,
- -0.034322552382946014, 0.0285220704972744, 0.22027873992919922, 0.04960242658853531,
- 0.05894770473241806, 0.06793451309204102, -0.07340358942747116, -0.013966608792543411,
- -0.03181014955043793, -0.1445150524377823, -0.017573175951838493, -0.010401943698525429,
- 0.005020099226385355, -0.0025960137136280537, -0.13228026032447815,
- -0.03911906108260155, -0.00965606328099966, -0.026841631159186363, 0.1624913364648819,
- -0.021032750606536865, 0.04758058488368988, -0.0826982706785202, 0.12473621964454651,
- 0.047394394874572754, 0.005896023474633694, 0.058190684765577316, 0.11934159696102142,
- 0.06632981449365616, -0.012821116484701633, -0.09165936708450317, -0.09008919447660446,
- -0.037442147731781006, 0.09255329519510269, -0.05047702044248581, 0.1149178147315979,
- 0.0717325359582901, -0.07010682672262192, -0.06972187012434006, 0.025595353916287422,
- -0.02843169867992401, 0.06669176369905472, -0.47652021050453186, 0.0010433236602693796,
- 0.16377975046634674, 0.012645955197513103, -0.016371209174394608, 0.12534195184707642,
- 0.07789940387010574, -0.06688528507947922, -0.07017607241868973, -0.08110812306404114,
- 0.13594554364681244, 0.052982963621616364, 0.107056625187397, -0.10103558748960495,
- -0.01597137190401554, 0.0789339542388916, -0.017907297238707542, -0.043702881783246994,
- 0.08416397124528885, -0.23253221809864044, 0.025060754269361496, -0.07339580357074738,
- 0.04803706333041191, 0.07137137651443481, 0.06232042983174324, 0.08638820052146912,
- -0.10686080157756805, 0.07236583530902863, 0.07691469043493271, 0.004319184459745884,
- 0.045529644936323166, 0.035794079303741455, -0.012085163965821266, 0.10407090932130814,
- 0.1005496233701706, 0.08079451322555542, -0.05677872151136398, 12.256338119506836,
- 0.03741922974586487, 0.03955814614892006, -0.14118680357933044, 0.017171166837215424,
- -0.039882637560367584, 0.03328327089548111, -0.09905555844306946, 0.040977105498313904,
- 0.11071185022592545, -0.01539203803986311, -0.07884008437395096, -0.09261336177587509,
- -0.13921530544757843, 0.03161746263504028, -0.020068716257810593, -0.06349389255046844,
- -0.06206940487027168, 0.025378037244081497, -0.04866012558341026, -0.08296433091163635,
- 0.04775218293070793, 0.0545947402715683, -0.0013154210755601525, -0.04385078325867653,
- 0.02296716347336769, 0.040100086480379105, -0.06512803584337234, 0.01285851001739502,
- 0.11432906985282898, 0.011052077636122704, -0.006406881846487522, 0.05070623382925987,
- -0.03049384243786335, 0.06778179109096527, 0.05777472257614136, 0.09613863378763199,
- 0.009460674598813057, 0.06381484121084213, 0.06188839301466942, 0.007450138218700886,
- 0.04449081048369408, 0.013830414041876793, -0.02435026504099369, 0.058411065489053726,
- 0.050555404275655746, 0.027862513437867165, 0.1678837686777115, 0.015934661030769348,
- 0.07711141556501389, 0.1228468120098114, -0.020639529451727867, 0.14365601539611816,
- 0.05255788937211037, 0.03870382159948349, 0.07271353900432587, 0.01453408133238554,
- -0.05816738307476044, 0.10923951119184494, 0.11973344534635544, -0.03053240105509758,
- 0.15383653342723846, -0.00013732763181906193, 0.15753144025802612, -0.06013675034046173,
- 0.10446006059646606, 0.07812110334634781, 0.1297762393951416, -0.20970728993415833,
- -0.1464805006980896, -0.034527502954006195, -0.1087268814444542, -0.05903959274291992,
- 0.12476812303066254, 0.1937779039144516, -0.07594546675682068, 0.03439319133758545,
- -0.02361593209207058, 0.03068709187209606, -0.05650095269083977, -0.05334470048546791,
- 0.0891382247209549, -0.024998722597956657, 0.009782531298696995, 0.028141748160123825,
- 0.040645383298397064, 0.06397813558578491, 0.09111528843641281, -0.02575758472084999,
- -0.11529070138931274, -0.07154250890016556, 0.09626955538988113, -0.06499273329973221,
- -0.05686730518937111, 0.007511117961257696, -0.06693744659423828, 0.13526099920272827,
- -0.15250128507614136, 0.07772956788539886, 0.006445650476962328, -0.057776596397161484,
- 0.0045404499396681786, -0.035761915147304535, 0.01242872979491949, 0.014089470729231834,
- 0.089149110019207, -0.1004454642534256, -0.00474521005526185, 0.009261219762265682,
- 0.030643507838249207, -0.013792965561151505, 0.08027738332748413, 0.05368473380804062,
- -0.06292804330587387, 0.026054220274090767, 0.03896591439843178, -0.037303127348423004,
- -0.013922713696956635, 0.10049745440483093, 0.07225289195775986, -0.09939752519130707,
- -0.04679437354207039, -0.039560962468385696, -0.04178735241293907, -0.05381690338253975,
- -0.03814093768596649, -0.0014758268371224403, 0.05760733038187027, -0.08066881448030472,
- 0.0017915560165420175, 0.06645374000072479, 0.05319356173276901, 0.02136273868381977,
- -0.017702564597129822, 0.10199946910142899, -0.04125165566802025, -0.09089212119579315,
- 0.056663163006305695, 0.03482603654265404, 0.03927665948867798, -0.025011859834194183,
- -0.039679210633039474, -0.09069973230361938, -0.07653489708900452, 0.039055660367012024,
- 0.077675461769104, 0.08048689365386963, 0.06761337071657181, 0.025606714189052582,
- -0.04559176787734032, -0.03758208081126213, 0.11859755218029022, 0.05936868116259575,
- 0.03532461076974869, 0.031347375363111496, -0.07849004119634628, -0.05439247190952301,
- 0.07431682199239731, -0.08706945180892944, 0.06787936389446259, 0.029089443385601044,
- -0.0007405904470942914, 0.12302012741565704, 0.1415238380432129, 0.05868731439113617,
- 0.057530228048563004, 0.03711356967687607, -0.014366963878273964, -0.004701911937445402,
- -0.029781842604279518, 0.05647745355963707, 0.0010159440571442246, -0.1308380365371704,
- -0.0520537793636322, 0.024673467501997948, 0.08615871518850327, 0.0034403938334435225,
- -0.19566144049167633, -0.02923000045120716, -0.0165480375289917
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 193,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Ryan Francis"],
- "epoch_date_downloaded": 1604016000,
- "epoch_date_modified": 1653177600,
- "epoch_date_submitted": 1604016000,
- "flag": null,
- "report_number": 1620,
- "source_domain": "csoonline.com",
- "submitters": ["Ingrid Dickinson (CSET)"],
- "title": "False positives still cause threat alert fatigue",
- "url": "https://www.csoonline.com/article/3191379/false-positives-still-cause-alert-fatigue.html#:~:text=Rob%20Kerr%2C%20chief%20technology%20officer,data%20for%2070%20million%20customers."
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "unnamed-australian-telecommunications-company",
- "name": "unnamed Australian telecommunications company"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "unknown",
- "name": "Unknown"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "unnamed-australian-telecommunications-company",
- "name": "unnamed Australian telecommunications company"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1621],
- "vector": [
- -0.09864683449268341, 0.08657544106245041, 0.0017784037627279758, -0.07437676936388016,
- 0.0796908512711525, 0.022960523143410683, -0.033675964921712875, 0.06425479799509048,
- 0.08755427598953247, -0.17078255116939545, -0.042662300169467926, 0.03355722874403,
- 0.03128288686275482, -0.05411499738693237, 0.01779940351843834, -0.15207450091838837,
- -0.16644254326820374, -0.0829797238111496, -0.07863250374794006, -0.16446183621883392,
- -0.048339590430259705, -0.03730755299329758, 0.009516599588096142, 0.1574634164571762,
- -0.030506540089845657, 0.04938477277755737, 0.12309564650058746, 0.12726497650146484,
- -0.09302431344985962, 0.030465643852949142, -0.005363645032048225, -0.13403937220573425,
- 0.13908207416534424, 0.027356920763850212, 0.016662130132317543, 0.11207171529531479,
- -0.0011205603368580341, -0.028226280584931374, 0.04074850305914879,
- 0.005985370371490717, 0.044324833899736404, 0.28317704796791077, 0.006745516322553158,
- -0.039134301245212555, 0.02963784523308277, -0.07996805757284164, 0.007072723936289549,
- 0.06663762778043747, 0.020369289442896843, -0.022357724606990814, -0.015816451981663704,
- 0.03301023691892624, -0.027598170563578606, 0.0687151700258255, -0.09201353788375854,
- 0.02829182893037796, 0.03745556250214577, -0.026938622817397118, 0.06309891492128372,
- -0.1065157800912857, -0.013550013303756714, -0.31385520100593567, -0.01862885244190693,
- -0.11218520253896713, 0.08780387789011002, -0.06760469079017639, -0.0478876568377018,
- 0.05180472135543823, -0.011292329989373684, 0.07971762865781784, 0.08261971920728683,
- -0.014176776632666588, -0.0082011753693223, 0.06668282300233841, -0.018599050119519234,
- -0.037882424890995026, 0.0033809056039899588, 0.13319577276706696, -0.13437893986701965,
- -0.04436545446515083, 0.048412032425403595, -0.10385546833276749, 0.5075804591178894,
- -0.0028192116878926754, -0.029272770509123802, -0.06495270133018494,
- 0.12813572585582733, 0.018491927534341812, 0.06501074135303497, 0.05534154176712036,
- -0.03125826641917229, 0.030948234722018242, -0.0902920737862587, 0.026281137019395828,
- 0.08662650734186172, 0.026068776845932007, -0.016322046518325806, 0.044975556433200836,
- -0.004340671468526125, -0.05331913381814957, 0.024418331682682037, -0.05275629088282585,
- 0.13083980977535248, 0.11592741310596466, -0.03688223659992218, -0.03360048308968544,
- 0.13310593366622925, -0.04176098853349686, 0.07513495534658432, -0.05612146854400635,
- 0.0372687429189682, -0.014672069810330868, 0.046551190316677094, -0.02087807096540928,
- 0.008918724954128265, -0.06877949833869934, 0.017378011718392372, 0.018681418150663376,
- 0.08895397186279297, 0.040344249457120895, -0.043945711106061935, 0.06698359549045563,
- 0.09832209348678589, -0.04470892250537872, -0.03625459596514702, -0.10471609234809875,
- -0.0031937872990965843, -0.08934064209461212, -0.012371095828711987,
- 0.018196482211351395, -0.10665876418352127, -0.2651248276233673, -0.009793042205274105,
- 0.06189988926053047, -0.03888455778360367, -0.04032761976122856, 0.0015327011933550239,
- -0.07714176177978516, 0.09243831783533096, 0.004011084325611591, -0.08444269001483917,
- 0.09221769124269485, -0.021639851853251457, 0.044933021068573, 0.12006013840436935,
- 0.047309670597314835, -0.0363045260310173, -0.026274364441633224, 0.03248352184891701,
- -0.015702705830335617, 0.1728784292936325, -0.16970603168010712, -0.05127035453915596,
- -0.01678387075662613, 0.03178007900714874, 0.8087125420570374, 0.12251188606023788,
- 0.21190649271011353, 0.011828873306512833, -0.0590452179312706, 0.21480394899845123,
- -0.006099842954427004, 0.08010350167751312, -0.03755909204483032, -0.051357660442590714,
- 0.021226011216640472, -0.10159888863563538, -0.08844716101884842, 0.082316555082798,
- 0.02154718153178692, 0.12204781174659729, 0.012594721280038357, 0.10324585437774658,
- -0.02084660716354847, -0.07104270905256271, 0.016769124194979668, 0.16163018345832825,
- 0.05451475456357002, -0.13278743624687195, -0.02823849394917488, 0.0499752052128315,
- 0.10393401980400085, -0.09426271170377731, -0.010780869983136654, -0.07125639170408249,
- 0.08256267756223679, -0.0006460524164140224, 0.07277035713195801, -0.08058284968137741,
- 0.051857903599739075, 0.06452874839305878, 0.09255263954401016, 0.0050827632658183575,
- -0.09022838622331619, -0.03346436470746994, 0.0853109061717987, -0.0026716722641140223,
- -0.024981817230582237, 0.06365186721086502, -0.08349300175905228, 0.038866519927978516,
- -0.03767036274075508, 0.2191331386566162, -0.143948033452034, -0.020370356738567352,
- -0.014500518329441547, -0.07025551050901413, 0.04256007820367813, 0.03710305318236351,
- -0.0701250433921814, -0.08172424137592316, 0.13689370453357697, 0.030150996521115303,
- 0.09444485604763031, 0.09543300420045853, 0.0043049161322414875, 0.05017118901014328,
- 0.048058535903692245, -0.0031734290532767773, -0.03259275108575821, 0.05521455779671669,
- 0.03925059735774994, -0.002933114068582654, -0.009306204505264759, 0.0581117607653141,
- -0.022438833490014076, 0.04627243056893349, 0.0006544959032908082, 0.07479538768529892,
- -0.026546981185674667, -0.038004763424396515, 0.032001007348299026, 0.06750431656837463,
- 0.06160387024283409, 0.11471663415431976, -0.040862198919057846, -0.05796365067362785,
- -0.04580900818109512, -0.061721280217170715, 0.028947843238711357,
- -0.003566598519682884, 0.13698770105838776, 0.09199977666139603, 0.13145866990089417,
- 0.015782330185174942, 0.05656987056136131, 0.018566127866506577, 0.0397871732711792,
- -0.006670237984508276, 0.010224821977317333, -0.023717021569609642,
- -0.03774084523320198, -0.029398657381534576, 0.041013315320014954, 0.07653705030679703,
- -0.007516793441027403, -0.06362725049257278, -0.044328540563583374,
- -0.050022270530462265, -0.07013823091983795, -0.1279260665178299, -0.009891504421830177,
- 0.023220520466566086, 0.057975783944129944, -0.05620378255844116, -0.11958632618188858,
- -0.10868833214044571, 0.008128857240080833, 0.1301720142364502, 0.009374506771564484,
- -0.0062108333222568035, -0.14076942205429077, 0.056253667920827866,
- -0.06334352493286133, 0.0416775718331337, -0.028661491349339485, 0.02882794663310051,
- 0.027800150215625763, -0.028612060472369194, 0.06941462308168411, -0.025028882548213005,
- -0.024860607460141182, -0.1057315394282341, -0.10383566468954086, -0.031296439468860626,
- 0.0007143989205360413, 0.050477392971515656, 0.002541320165619254, 0.01159046683460474,
- 0.027947021648287773, 0.08319534361362457, -0.03216197341680527, -0.0348745621740818,
- 0.05464012920856476, -0.011261695995926857, -0.0557076632976532, 0.0715981051325798,
- -0.05629488080739975, 0.037978701293468475, 0.00752721494063735, -0.17366519570350647,
- -0.018310531973838806, 0.0842762365937233, -0.05473862588405609, 0.046125493943691254,
- -0.0126567417755723, 0.007012521382421255, -0.02708219364285469, 0.011845582164824009,
- 0.07163555920124054, -0.024873191490769386, -0.16470065712928772, -0.11617033928632736,
- 0.15130561590194702, 0.013504959642887115, -0.04425292834639549, 0.06307387351989746,
- -0.04014436900615692, 0.049811724573373795, -0.023706717416644096, 0.04050919786095619,
- 0.06766945123672485, 0.14914245903491974, -0.01603102870285511, 0.07382373511791229,
- 0.053430113941431046, -0.08609720319509506, 0.03714167699217796, 0.09158413112163544,
- 0.4800187349319458, -0.19308635592460632, 0.05350850895047188, 0.17623037099838257,
- -0.026191741228103638, 0.029580971226096153, -0.10817742347717285, 0.04922429099678993,
- 0.08033306151628494, 0.16639703512191772, 0.16095973551273346, -0.05712878331542015,
- -0.024763617664575577, -0.11670315265655518, 0.09911108016967773, -0.05112883448600769,
- 0.0365450382232666, -0.02745014987885952, -0.0978938415646553, 0.01863664761185646,
- 0.07541725784540176, -0.050367191433906555, -0.008030845783650875, -0.02274741604924202,
- -0.06844184547662735, -0.00028353568632155657, 0.08065125346183777,
- -0.011508399620652199, -0.0054247332736849785, 0.0260276198387146, -0.05554375424981117,
- 0.031683843582868576, 0.03919667750597, -0.025668099522590637, -0.09244588762521744,
- 0.03206190466880798, -0.09942737221717834, -0.11981450021266937, 0.09596960991621017,
- -0.019149642437696457, 0.07078912854194641, 0.041589755564928055, -0.05520230531692505,
- 0.033422816544771194, 0.028087399899959564, -0.08987979590892792, 0.02045673131942749,
- 0.08806002140045166, 0.024990737438201904, 0.05174555256962776, 0.1791328489780426,
- -0.07248401641845703, -0.07653484493494034, -0.14401546120643616, 0.07793696969747543,
- 0.10684940963983536, -0.015250034630298615, 0.014475568197667599, -0.011804779060184956,
- -0.05339799448847771, 0.0017606350593268871, -0.052931614220142365,
- -0.08575299382209778, -0.05099232494831085, -0.05710320174694061, 0.09618844836950302,
- 0.05486520007252693, -0.04291864112019539, -0.14840668439865112, -0.04111180827021599,
- -0.013779073022305965, 0.04330579191446304, 0.13181382417678833, -0.048436447978019714,
- 0.12061703950166702, -0.00915449857711792, -0.023380938917398453, 0.014820338226854801,
- -0.09360238164663315, 0.017508279532194138, -0.07981916517019272, 0.052743520587682724,
- 0.0830768346786499, 0.05328543484210968, -0.056018680334091187, 0.09984967857599258,
- -0.12830953299999237, 0.08555785566568375, 0.06389308720827103, -0.06221798062324524,
- 0.0522947758436203, -0.0009322975529357791, 0.01048839371651411, 0.002734237117692828,
- -0.03529122471809387, 0.07932277768850327, -0.031861256808042526, -0.1117294505238533,
- -0.12344393879175186, -0.12647190690040588, -0.043720610439777374, -0.08380275219678879,
- 0.0030190101824700832, -0.13426145911216736, -0.04009394720196724, -0.06068514660000801,
- -0.04278947412967682, -0.007366036530584097, -0.0052042799070477486,
- 0.07737065106630325, -0.18242792785167694, 0.0255034901201725, -0.015122944489121437,
- 0.0834565982222557, 0.010447172448039055, -0.041117362678050995, 0.012771479785442352,
- 0.10817443579435349, 0.0987490713596344, 0.062288351356983185, 0.004074850119650364,
- -0.08404522389173508, 0.06901168823242188, -0.14560842514038086, -0.4482051730155945,
- 0.006217389367520809, 0.02332073636353016, 0.029309667646884918, 0.01130705513060093,
- -0.07134489715099335, 0.052762795239686966, 0.014383923262357712, -0.08041683584451675,
- 0.11042710393667221, -0.07333691418170929, 0.027561087161302567, -0.04078138619661331,
- -0.12729422748088837, -0.06364351511001587, -0.07143852859735489, -0.05231378227472305,
- 0.07876624166965485, 0.022944800555706024, -0.12120455503463745, -0.13556164503097534,
- 0.07030805945396423, -0.018165014684200287, 0.0244364645332098, -0.014266664162278175,
- -0.019172364845871925, -0.07423433661460876, -0.029805175960063934,
- -0.005066451150923967, 0.008417544886469841, 0.04540468752384186, -0.09634672850370407,
- 0.006469727028161287, 0.12456581741571426, -0.017110014334321022, 0.14567683637142181,
- 0.026652511209249496, 0.016402944922447205, -0.11993413418531418, 0.07553481310606003,
- 0.0702245831489563, 0.17993994057178497, -0.05049029737710953, 0.019619060680270195,
- 0.0007098467904143035, 0.16778089106082916, 0.09410480409860611, 0.05647265911102295,
- -0.030911240726709366, -0.005104302428662777, 0.03699846193194389, -0.04571429267525673,
- 0.07223119586706161, -0.05090939626097679, -0.02798990160226822, -0.002581459004431963,
- -0.031362902373075485, -0.043572183698415756, 0.01843269355595112, 0.19497807323932648,
- 0.044132743030786514, 0.04091162234544754, 0.01997731626033783, -0.05064849182963371,
- -0.007746521849185228, -0.05251574516296387, -0.14662227034568787, -0.034510537981987,
- -0.04624835029244423, 0.009519845247268677, -0.05105910822749138, -0.11418639868497849,
- -0.015638040378689766, 0.014530779793858528, -0.028055241331458092, 0.15579360723495483,
- 0.020742157474160194, -0.000489560014102608, -0.047524917870759964, 0.14233283698558807,
- 0.059251803904771805, 0.03665795549750328, 0.026865975931286812, 0.049466848373413086,
- 0.03992384672164917, 0.008401625789701939, -0.09967441111803055, -0.11783701926469803,
- 0.013863541185855865, 0.15587079524993896, -0.07000359147787094, 0.11072000861167908,
- 0.016818035393953323, -0.07406467199325562, -0.10120318830013275, 0.045795880258083344,
- -0.049460455775260925, 0.03311866521835327, -0.5320588946342468, 0.06273213028907776,
- 0.1509171575307846, 0.018574649468064308, -0.02068202942609787, 0.14688673615455627,
- 0.03165394812822342, -0.09182228147983551, -0.04977872222661972, -0.12412945926189423,
- 0.17674897611141205, 0.008879738859832287, 0.09069762378931046, -0.13804501295089722,
- -0.0026490241289138794, 0.09732121974229813, -0.07078894972801208, 0.04045231640338898,
- 0.09249161183834076, -0.32275518774986267, -0.0009053682442754507, -0.05345771089196205,
- 0.08270057290792465, 0.0037050587125122547, 0.04618150740861893, 0.09529442340135574,
- -0.07870183140039444, 0.08252976834774017, 0.06722569465637207, 0.028284214437007904,
- 0.04305901378393173, -0.017840096727013588, -0.03169246017932892, 0.14253541827201843,
- 0.0557580292224884, -0.01585344225168228, -0.043707940727472305, 12.278035163879395,
- 0.06923844665288925, 0.09535897523164749, -0.12897758185863495, 0.009062498807907104,
- -0.04311591014266014, 0.0022852104157209396, -0.08022620528936386,
- 0.0017161978175863624, 0.18687671422958374, -0.01140759326517582, -0.08351161330938339,
- -0.05885365605354309, -0.17692162096500397, 0.06996170431375504, -0.043872494250535965,
- -0.04715754836797714, -0.019377145916223526, -0.007079851347953081,
- -0.08007816970348358, -0.04679232835769653, 0.05151940509676933, 0.04174572229385376,
- 0.02876247465610504, -0.03726455196738243, 0.07670143991708755, 0.016664555296301842,
- -0.01145270373672247, -0.023371385410428047, 0.04753115773200989, -0.016430476680397987,
- 0.02860971726477146, 0.04957753047347069, -0.036483146250247955, 0.06306175142526627,
- 0.06623237580060959, 0.09961012750864029, 0.040325261652469635, 0.06157665327191353,
- 0.07354427129030228, -0.00659421319141984, 0.07499244064092636, 0.08900836855173111,
- 0.04631449282169342, 0.02282332442700863, 0.027729004621505737, 0.09201451390981674,
- 0.11672297865152359, -0.01598885841667652, 0.058398813009262085, 0.1129036694765091,
- 0.024626055732369423, 0.15753895044326782, 0.04441327229142189, -0.0025813360698521137,
- 0.0733393207192421, -0.04042796790599823, -0.03687892481684685, 0.13637861609458923,
- 0.10359665006399155, -0.06512118130922318, 0.12450147420167923, 0.026134055107831955,
- 0.0935554951429367, 0.0022353380918502808, 0.0555252805352211, 0.10423456877470016,
- 0.07181902229785919, -0.22138358652591705, -0.18192924559116364, -0.025377487763762474,
- -0.10370422154664993, -0.12236395478248596, 0.11631999909877777, 0.1226491630077362,
- -0.07651465386152267, 0.0222257561981678, -0.051221784204244614, 0.01492997631430626,
- -0.026953525841236115, -0.004887496121227741, 0.05971803516149521, 0.02744992822408676,
- 0.013404207304120064, 0.05695977061986923, 0.055834654718637466, 0.10423977673053741,
- 0.08787021040916443, 0.013491020537912846, -0.08739514648914337, -0.07360707968473434,
- 0.06866337358951569, -0.04609338194131851, -0.07177526503801346, 0.019300144165754318,
- -0.018675897270441055, 0.12963438034057617, -0.1653243601322174, 0.060437507927417755,
- 0.085588239133358, -0.07303691655397415, -0.04582997038960457, -0.04778851941227913,
- -0.011731932871043682, 0.04053119942545891, 0.041364070028066635, -0.05188703164458275,
- 0.01400977373123169, 0.08408956229686737, 0.05816599354147911, 0.018334852531552315,
- 0.10871177911758423, 0.1333530843257904, -0.0419330820441246, 0.06793387234210968,
- 0.044925302267074585, -0.0014139742124825716, -0.002864207373932004,
- 0.07161158323287964, 0.044890280812978745, -0.06951065361499786, -0.11768127977848053,
- -0.05621296912431717, -0.09897887706756592, -0.02652619406580925, -0.04228702932596207,
- -0.008880804292857647, 0.04628780111670494, -0.06257803738117218, -0.028807394206523895,
- 0.06301922351121902, 0.03196898475289345, 0.0424274243414402, -0.028745407238602638,
- 0.09615078568458557, -0.09786907583475113, -0.05672411620616913, 0.017180277034640312,
- 0.025737052783370018, 0.029854467138648033, -0.057878781110048294,
- -0.038499899208545685, -0.10642462223768234, -0.10737182945013046, 0.06143442541360855,
- 0.09593545645475388, 0.06115013360977173, 0.03443630412220955, 0.02443188615143299,
- -0.10821299254894257, -0.10298832505941391, 0.08726436644792557, 0.12460256367921829,
- 0.020535532385110855, 0.055711861699819565, -0.10105158388614655, -0.048788975924253464,
- 0.13085198402404785, -0.05232056975364685, 0.049364570528268814, 0.013962196186184883,
- -0.023309744894504547, 0.09419366717338562, 0.18121126294136047, 0.10029959678649902,
- 0.08009245991706848, 0.04751269891858101, 0.015809420496225357, 0.00024726404808461666,
- -0.059695225208997726, 0.029516497626900673, -0.0477999746799469, -0.1331482231616974,
- -0.05567594990134239, 0.06434900313615799, 0.09144966304302216, -0.014961205422878265,
- -0.13914071023464203, -0.01946835033595562, -0.04297510161995888
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 194,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Anand Tamboli"],
- "epoch_date_downloaded": 1653177600,
- "epoch_date_modified": 1653177600,
- "epoch_date_submitted": 1604016000,
- "flag": null,
- "report_number": 1621,
- "source_domain": "medium.com",
- "submitters": ["Ingrid Dickinson (CSET)"],
- "title": "A Lesson Worth $11 Million",
- "url": "https://medium.com/tomorrow-plus-plus/a-lesson-worth-11-million-7851be19921f"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "pasco-sheriff's-office",
- "name": "Pasco Sheriff's Office"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "unknown",
- "name": "Unknown"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "pasco-students-with-disabilities",
- "name": "Pasco students with disabilities"
- },
- {
- "__typename": "Entity",
- "entity_id": "pasco-residents",
- "name": "Pasco residents"
- },
- {
- "__typename": "Entity",
- "entity_id": "pasco-black-students",
- "name": "Pasco Black students"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1843, 1632, 1631, 1630, 1629, 1628, 1627, 1626, 1625, 1624, 1623, 1622],
- "vector": [
- -0.06392129510641098, 0.06428586691617966, 0.018591007217764854, -0.07611822336912155,
- 0.10452446341514587, 0.00398830883204937, -0.015048344619572163, 0.04792832210659981,
- 0.1066412627696991, -0.11408168822526932, 0.02979101799428463, 0.020934170112013817,
- 0.010973318479955196, -0.0742088109254837, -0.006031505763530731, -0.10445605963468552,
- -0.099659763276577, -0.05590696632862091, -0.06099601089954376, -0.13133515417575836,
- -0.03699536994099617, -0.02953498065471649, 0.020546844229102135, 0.10438605397939682,
- -0.056857120245695114, 0.0596814900636673, 0.07635875046253204, 0.14425726234912872,
- -0.05802766978740692, 0.05028107389807701, -0.0413331501185894, -0.06692234426736832,
- 0.13653258979320526, 0.033549223095178604, 0.004743325989693403, 0.12108591943979263,
- -0.00914821308106184, -0.04324658587574959, 0.007115891203284264,
- 0.00029787406674586236, -0.00915603619068861, 0.2641220986843109, 0.02010251022875309,
- -0.003353434382006526, 0.05664314702153206, -0.058921828866004944, 0.008373119868338108,
- 0.0774913802742958, -0.024328434839844704, 0.012908678501844406, -0.025337159633636475,
- 0.075755774974823, -0.015035864897072315, 0.037757739424705505, -0.10664963722229004,
- 0.05747126415371895, 0.028345853090286255, -0.014235656708478928, 0.03984261676669121,
- -0.07006015628576279, -0.05664833262562752, -0.27077147364616394, -0.04422299191355705,
- -0.07717877626419067, 0.07623671740293503, -0.07336486130952835, -0.03178390488028526,
- -0.010874203406274319, 0.02655784972012043, 0.05160288140177727, 0.04625478759407997,
- -0.03656626120209694, -0.01178373396396637, 0.016066843643784523, 0.025763368234038353,
- -0.020760150626301765, 0.009436754509806633, 0.21599726378917694, -0.10104089975357056,
- 0.019277693703770638, 0.10497888922691345, -0.0855397880077362, 0.4658859968185425,
- 0.010639919899404049, -0.01909118890762329, -0.023226434364914894, 0.07975891977548599,
- 0.05990735813975334, 0.06511324644088745, 0.059031322598457336, -0.03684122487902641,
- 0.01363031193614006, -0.08185473084449768, -0.026437824591994286, 0.07391869276762009,
- 0.03599223494529724, 0.018311556428670883, 0.06532028317451477, -0.023393377661705017,
- -0.05331017076969147, -0.030752500519156456, -0.01775921694934368, 0.07378602027893066,
- 0.08789091557264328, -0.05497052147984505, 0.005129641387611628, 0.09501325339078903,
- -0.04377824440598488, 0.056068625301122665, -0.04681466147303581, 0.020297721028327942,
- 0.01527494192123413, 0.031646955758333206, 0.001850148313678801, 0.03020760603249073,
- -0.030560120940208435, 0.013996572233736515, 0.012347341515123844, 0.09556867927312851,
- -0.007990803569555283, -0.007809851784259081, 0.059588316828012466, 0.09003619104623795,
- -0.06302561610937119, -0.06177821755409241, -0.06255554407835007, -0.04398222640156746,
- -0.057356949895620346, -0.010370583273470402, 0.0351344496011734, -0.049255531281232834,
- -0.1835058480501175, 0.0023245448246598244, 0.08487040549516678, -0.004288192372769117,
- -0.03462531417608261, 0.016194352880120277, -0.055178284645080566, 0.06382523477077484,
- -0.029472334310412407, -0.04074106737971306, 0.10188866406679153, 0.05692240968346596,
- 0.04229262098670006, 0.13810613751411438, 0.03690994158387184, -0.05457818880677223,
- -0.0019230501493439078, -0.018358910456299782, -0.0035100083332508802,
- 0.07409197837114334, -0.1659664511680603, -0.04842197522521019, 0.013045999221503735,
- -0.002296751132234931, 0.6719762682914734, 0.1585450917482376, 0.15720058977603912,
- 0.0019951050635427237, -0.025512823835015297, 0.18661725521087646, 0.01304745301604271,
- 0.09924466162919998, -0.07825680822134018, -0.03385843709111214, 0.03021046333014965,
- -0.06326121836900711, -0.04635542258620262, 0.03349217399954796, 0.03275439888238907,
- 0.1147409975528717, 0.005884307902306318, 0.061083968728780746, 0.000637246179394424,
- -0.11823303252458572, -0.022904014214873314, 0.08858567476272583, -0.022802645340561867,
- -0.12977008521556854, -0.028462057933211327, 0.06402245908975601, 0.08230531960725784,
- -0.10938182473182678, 0.027245253324508667, -0.060583796352148056, 0.05301657319068909,
- -0.03405428305268288, -0.014410546980798244, -0.02667614072561264, 0.02935977093875408,
- 0.0632307305932045, 0.08046645671129227, 0.033299993723630905, -0.11706594377756119,
- -0.0399792306125164, 0.058159489184617996, 0.0014746634988114238, -0.041454870253801346,
- 0.07245101034641266, -0.07367327809333801, 0.04585481807589531, 0.030094096437096596,
- 0.14425194263458252, -0.10489801317453384, 0.00019773766689468175, -0.0155860036611557,
- -0.03111935220658779, 0.08576201647520065, -0.005180832464247942, -0.04294154420495033,
- -0.029606590047478676, 0.07920586317777634, 0.02503080666065216, 0.10917357355356216,
- 0.015453468076884747, -0.040520742535591125, 0.04804767668247223, 0.07735331356525421,
- 0.025423718616366386, -0.013993010856211185, 0.06979217380285263, 0.06335724890232086,
- -0.027620933949947357, 0.020734554156661034, 0.029039086773991585, 0.06864113360643387,
- 0.02415662817656994, -0.0024146533105522394, 0.024649323895573616, 0.012167238630354404,
- -0.07122493535280228, 0.0006035277037881315, 0.02637641876935959, -0.023645931854844093,
- 0.11860290914773941, -0.05741819739341736, -0.008096215315163136, -0.021966518834233284,
- -0.0003533178532961756, -0.01755799539387226, -0.0039520044811069965,
- 0.08009100705385208, 0.0954248309135437, 0.055524393916130066, 0.06417658925056458,
- 0.04030581936240196, 0.05595673248171806, 0.02944309078156948, 0.0239820908755064,
- 0.09319008141756058, -0.0027950352523475885, -0.06724978238344193,
- -0.004376704338937998, 0.0028686753939837217, 0.02869708649814129, 0.04645504057407379,
- -0.0833469107747078, -0.036241039633750916, -0.033912308514118195, -0.05883059278130531,
- -0.08038157224655151, -0.0515783466398716, 0.002759189112111926, 0.034516554325819016,
- -0.05121587589383125, -0.10037356615066528, -0.06341066211462021, 0.0346880778670311,
- 0.12714870274066925, -0.026709629222750664, -0.03542039170861244, -0.11750993877649307,
- 0.02993813343346119, -0.02339615672826767, 0.05181954801082611, -0.006802693475037813,
- 0.033813681453466415, -0.0018971655517816544, -0.07110501080751419, 0.05571198835968971,
- 0.002160728443413973, -0.002424665028229356, -0.09269734472036362, -0.03387296572327614,
- -0.04987180233001709, -0.029476167634129524, 0.010259808041155338, -0.03748759999871254,
- 0.03065686859190464, 0.010723025538027287, 0.03221133351325989, 0.026767805218696594,
- -0.02051404118537903, 0.09156452864408493, -0.05792606994509697, -0.00543822580948472,
- 0.11607679724693298, -0.03970247507095337, 0.008354243822395802, -0.004289689008146524,
- -0.0759761855006218, -0.06806080788373947, -0.011827911250293255, -0.046397071331739426,
- 0.05226869508624077, -0.03941388800740242, 0.01076375413686037, -0.062023892998695374,
- -0.01998632401227951, 0.06017328426241875, -0.08390560001134872, -0.04657919332385063,
- -0.06209907308220863, 0.10404562205076218, -0.012958607636392117, 0.003015277674421668,
- -0.017317282035946846, -0.08210831135511398, 0.04435306787490845, -0.01872129738330841,
- 0.020065905526280403, 0.019332902505993843, 0.06043415889143944, -0.03472695127129555,
- -0.0035277362912893295, 0.08571034669876099, -0.04559275880455971, 0.032842617481946945,
- 0.04050670936703682, 0.4367159307003021, -0.14631296694278717, 0.10062795132398605,
- 0.08864610642194748, 0.03991170600056648, 0.06702127307653427, -0.04343181475996971,
- 0.0711054801940918, 0.10310394316911697, 0.16842098534107208, 0.07599081844091415,
- -0.06419969350099564, -0.019959617406129837, -0.08309987932443619, 0.13080663979053497,
- -0.011025208979845047, 0.06008119508624077, -0.03220020607113838, -0.10544601082801819,
- -0.008150088600814342, 0.0313597209751606, -0.026893213391304016, 0.010409594513475895,
- 0.035126734524965286, -0.0468740314245224, 0.026912027969956398, -0.0063454024493694305,
- 0.0034912806004285812, -0.03977728635072708, 0.03613743558526039, -0.04020807147026062,
- 0.06158091127872467, 0.02241390012204647, 0.0502944253385067, -0.12167150527238846,
- -0.01302335038781166, -0.12717576324939728, -0.0909033939242363, 0.09024479985237122,
- -0.0157218798995018, 0.03092067874968052, 0.05085161700844765, -0.08298269659280777,
- 0.06925792247056961, -0.018105728551745415, -0.06164287030696869, 0.049115415662527084,
- 0.04398390278220177, 0.02619638480246067, 0.04951806738972664, 0.12618979811668396,
- -0.03213435038924217, -0.053856149315834045, -0.09193423390388489, 0.052364278584718704,
- 0.12817807495594025, 0.0030975539702922106, 0.005888971034437418, 0.02968636155128479,
- -0.02879962883889675, 0.004328468348830938, -0.053665801882743835, -0.0692775771021843,
- 0.011498627252876759, -0.009816124103963375, 0.1224234402179718, 0.033852193504571915,
- -0.04504425451159477, -0.1332373023033142, -0.012128882110118866, -0.05510905757546425,
- 0.0044439868070185184, 0.13382086157798767, -0.04341769590973854, 0.06974703818559647,
- -0.02923870086669922, 0.017688386142253876, 0.020712919533252716, -0.05922597646713257,
- 0.00647396594285965, -0.04659805819392204, 0.019756214693188667, 0.05974646285176277,
- 0.020597556605935097, -0.04308284819126129, 0.09880494326353073, -0.12054955214262009,
- 0.044584665447473526, 0.02201184444129467, -0.015384304337203503, 0.005857199430465698,
- -0.028468402102589607, 0.03575850650668144, 0.005657410714775324, -0.03067316859960556,
- -0.026023486629128456, -0.006144044920802116, -0.06237933412194252, -0.0822753980755806,
- -0.04354364052414894, -0.030186256393790245, -0.09248188883066177, 0.011227287352085114,
- -0.11622028797864914, -0.006268578115850687, -0.020214349031448364,
- -0.008325804956257343, 0.016414301469922066, 0.03597668930888176, 0.04420576989650726,
- -0.11790629476308823, 0.007917364127933979, -0.02941162697970867, 0.06513391435146332,
- 0.003867835970595479, -0.05774259194731712, 0.05195842310786247, 0.08040130883455276,
- 0.05796636641025543, -0.03837761655449867, -0.021657677367329597, -0.059900131076574326,
- 0.04516414925456047, -0.14170235395431519, -0.40976348519325256, 0.06537286937236786,
- -0.033897168934345245, 0.06640026718378067, 0.0214224960654974, -0.09567680954933167,
- 0.03477798402309418, 0.010386123321950436, -0.047416940331459045, 0.09796014428138733,
- -0.054249078035354614, 0.04278688505291939, 0.014971391297876835, -0.0663805678486824,
- -0.04752759262919426, -0.04010837525129318, -0.042982589453458786, 0.03688099980354309,
- -0.005784062668681145, -0.07842821627855301, -0.13112406432628632, 0.015601464547216892,
- 0.010385869070887566, 0.013987838290631771, 0.0052286903373897076, 0.00931788980960846,
- -0.04505488649010658, -0.025182412937283516, 0.05245685949921608, 0.04175688698887825,
- 0.008431668393313885, -0.06787829846143723, 0.010266469791531563, 0.055504318326711655,
- 0.005075458437204361, 0.13710851967334747, 0.003664168296381831, 0.04388708993792534,
- -0.09173861145973206, 0.13283152878284454, 0.04271109402179718, 0.18528540432453156,
- -0.0034777019172906876, 0.02245413511991501, 0.03940253332257271, 0.14015373587608337,
- 0.0353107675909996, 0.03528808057308197, -0.027997596189379692, 0.021464655175805092,
- 0.043690647929906845, 0.02183651179075241, 0.09213726967573166, -0.09898090362548828,
- -0.005799416918307543, -0.08657985925674438, -0.051478493958711624,
- -0.01836555451154709, -0.023185700178146362, 0.19996881484985352, 0.02865108847618103,
- 0.010204068385064602, 0.05100986734032631, -0.09584171324968338, 0.025234825909137726,
- -0.07143625617027283, -0.1386287808418274, 0.009320979006588459, -0.0002460033865645528,
- 0.024038532748818398, -0.02599182538688183, -0.13913486897945404, -0.02535107731819153,
- -0.0006525463541038334, -0.0170073751360178, 0.0811767503619194, -0.018262675032019615,
- 0.019896751269698143, -0.05974015220999718, 0.12251752614974976, 0.05401123687624931,
- 0.017334170639514923, 0.036440443247556686, 0.08518505096435547, 0.017159467563033104,
- 0.00623914273455739, -0.06522401422262192, -0.09520795941352844, -0.03299083933234215,
- 0.1416667252779007, -0.029376083984971046, 0.09666481614112854, 0.043617695569992065,
- -0.059861328452825546, -0.05762910842895508, 0.022872617468237877,
- -0.058132562786340714, 0.024625489488244057, -0.43399298191070557, -0.008918521925807,
- 0.1320086568593979, -0.00046016063424758613, 0.009139051660895348, 0.08135781437158585,
- 0.04920397326350212, -0.04274085536599159, -0.02003103494644165, -0.09005188941955566,
- 0.16540010273456573, 0.002093670656904578, 0.056044116616249084, -0.10543981939554214,
- 0.05118085816502571, 0.0793653205037117, -0.0017881669336929917, 0.006596790160983801,
- 0.05114327371120453, -0.19398169219493866, -0.032217077910900116, -0.04815028980374336,
- 0.19488763809204102, 0.01606195978820324, -0.0035157010424882174, 0.05846394598484039,
- -0.039135538041591644, 0.0015768768498674035, 0.06067414954304695,
- -0.006274510640650988, 0.018034297972917557, -0.0010844158241525292,
- -0.030512629076838493, 0.071628637611866, 0.08884073048830032, 0.035763777792453766,
- -0.01876874826848507, 12.006145477294922, 0.06823626905679703, 0.05846187472343445,
- -0.11767105013132095, 0.007835074327886105, -0.06339855492115021, 0.010903717018663883,
- -0.07971688359975815, 0.06572572141885757, 0.09491529315710068, 0.0012731399619951844,
- -0.06289209425449371, -0.04446215555071831, -0.09613142162561417, -0.01540710125118494,
- -0.023665936663746834, -0.06743994355201721, -0.025981394574046135, 0.04872670769691467,
- -0.02970821224153042, -0.02888382039964199, 0.024664828553795815, 0.01970352977514267,
- 0.016286708414554596, -0.0958402082324028, -0.018091218546032906, 0.04964923858642578,
- -0.044306863099336624, -0.024913646280765533, 0.030376801267266273,
- -0.01806396059691906, 0.007775427773594856, 0.08747098594903946, 0.01247811783105135,
- 0.03609364107251167, 0.047565340995788574, 0.0703636035323143, 0.038438908755779266,
- 0.0028110984712839127, 0.09046623855829239, 0.026027128100395203, 0.06028421223163605,
- 0.03025716356933117, 0.033876702189445496, 0.04687375947833061, 0.031174952164292336,
- 0.05119199678301811, 0.10307850688695908, 0.036336202174425125, 0.07894452661275864,
- 0.11797985434532166, -0.03488829731941223, 0.0992467999458313, -0.004394890274852514,
- 0.021897850558161736, 0.09585145860910416, 0.0056688510812819, -0.0552416555583477,
- 0.05958504602313042, 0.05965227261185646, -0.04800476133823395, 0.12724095582962036,
- 0.009671376086771488, 0.08846396952867508, 0.0021012260112911463, 0.05217999592423439,
- 0.0950213149189949, 0.09072303026914597, -0.14946001768112183, -0.06846032291650772,
- -0.0009916919516399503, -0.113575279712677, -0.045599550008773804, 0.08599881082773209,
- 0.06448721140623093, -0.03333393111824989, 0.06139601767063141, -0.004450323060154915,
- 0.024747127667069435, -0.024595720693469048, -0.02037474885582924, 0.07200887054204941,
- -0.03859926760196686, -0.01843150518834591, 0.07233603298664093, 0.018533654510974884,
- 0.07783367484807968, 0.07773437350988388, -0.03470644727349281, -0.14231587946414948,
- -0.11940974742174149, 0.10899936407804489, -0.04352983832359314, -0.034151267260313034,
- 0.011548773385584354, -0.07643450051546097, 0.05219141021370888, -0.14995966851711273,
- 0.08738938719034195, 0.09566614776849747, -0.09636760503053665, -0.014871341176331043,
- -0.028292356058955193, 0.08169623464345932, 0.017132652923464775, 0.024767892435193062,
- -0.0694807693362236, 0.04424719884991646, 0.010293903760612011, 0.03787442669272423,
- -0.035681236535310745, 0.06910409033298492, 0.09099908918142319, -0.05963897705078125,
- 0.013110506348311901, 0.08047546446323395, -0.03846566006541252, -0.03769608214497566,
- 0.06895889341831207, 0.027903931215405464, -0.09153902530670166, -0.032735396176576614,
- -0.017871716991066933, -0.04421501234173775, -0.01611475460231304, -0.07274968177080154,
- 0.009029846638441086, 0.047501951456069946, -0.09256177395582199, 0.0010246401652693748,
- 0.07334935665130615, 0.03231528401374817, 0.05382192134857178, -0.01801457814872265,
- 0.0759926289319992, -0.06562772393226624, -0.07639893144369125, 0.04909631237387657,
- 0.03412439674139023, 0.07285857945680618, 0.007035624235868454, -0.023591525852680206,
- -0.04320552572607994, -0.09367820620536804, -0.020725920796394348, 0.11581691354513168,
- 0.026148371398448944, 0.03459304943680763, 0.026990262791514397, -0.0838577076792717,
- -0.04047650098800659, 0.09173335880041122, 0.031470999121665955, 0.02048615552484989,
- 0.010795924812555313, -0.07175471633672714, -0.0503835491836071, 0.0986444354057312,
- -0.04342706874012947, -0.021455956622958183, -0.008960140869021416,
- 0.006523746997117996, 0.1298253983259201, 0.05538943409919739, 0.023079538717865944,
- 0.0381288081407547, 0.03547376021742821, -0.009648858569562435, 0.001810218789614737,
- 0.0025451898109167814, 0.007455563638359308, -0.05020924285054207, -0.07294416427612305,
- -0.06504595279693604, 0.014362111687660217, 0.08110420405864716, -0.0008285341318696737,
- -0.08628188818693161, 0.007068734150379896, -0.06054195761680603
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 195,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Kathleen Mcgrory", "Neil Bedi"],
- "epoch_date_downloaded": 1659398400,
- "epoch_date_modified": 1659398400,
- "epoch_date_submitted": 1627344000,
- "flag": null,
- "report_number": 1843,
- "source_domain": "projects.tampabay.com",
- "submitters": ["Kate Perkins"],
- "title": "The man behind the machine",
- "url": "https://projects.tampabay.com/projects/2020/investigations/police-pasco-sheriff-targeted/chris-nocco/"
- },
- {
- "__typename": "Report",
- "authors": ["Romy Ellenbogen", "Kathleen McGrory"],
- "epoch_date_downloaded": 1627344000,
- "epoch_date_modified": 1653177600,
- "epoch_date_submitted": 1627344000,
- "flag": null,
- "report_number": 1632,
- "source_domain": "tampabay.com",
- "submitters": ["Kate Perkins"],
- "title": "Lawsuit: Pasco intelligence program violated citizens’ rights",
- "url": "https://www.tampabay.com/investigations/2021/03/11/lawsuit-pasco-intelligence-program-violated-citizens-rights/"
- },
- {
- "__typename": "Report",
- "authors": ["Kathleen McGrory", "Neil Bedi", "Romy Ellenbogen"],
- "epoch_date_downloaded": 1627344000,
- "epoch_date_modified": 1653177600,
- "epoch_date_submitted": 1627344000,
- "flag": null,
- "report_number": 1631,
- "source_domain": "tampabay.com",
- "submitters": ["Kate Perkins"],
- "title": "Congressman urges probe of Pasco school data program",
- "url": "https://www.tampabay.com/investigations/2021/01/19/congressman-urges-probe-of-pasco-school-data-program/"
- },
- {
- "__typename": "Report",
- "authors": ["Pasco Sherriff Office"],
- "epoch_date_downloaded": 1627344000,
- "epoch_date_modified": 1653177600,
- "epoch_date_submitted": 1627344000,
- "flag": null,
- "report_number": 1630,
- "source_domain": "facebook.com",
- "submitters": ["Kate Perkins"],
- "title": "Pasco Sheriff's Office Response",
- "url": "https://www.facebook.com/pascosheriff/posts/3372128789491974"
- },
- {
- "__typename": "Report",
- "authors": ["Peter Schorsch"],
- "epoch_date_downloaded": 1627344000,
- "epoch_date_modified": 1653177600,
- "epoch_date_submitted": 1627344000,
- "flag": null,
- "report_number": 1629,
- "source_domain": "floridapolitics.com",
- "submitters": ["Kate Perkins"],
- "title": "Pasco Sheriff’s Office pushes back against allegations of harassment, targeting",
- "url": "https://floridapolitics.com/archives/366255-pasco-sheriffs-office-pushes-back-against-allegations-of-harassment-targeting/"
- },
- {
- "__typename": "Report",
- "authors": ["Nedi Bedi", "Kathleen McGrory"],
- "epoch_date_downloaded": 1627344000,
- "epoch_date_modified": 1653177600,
- "epoch_date_submitted": 1627344000,
- "flag": null,
- "report_number": 1628,
- "source_domain": "projects.tampabay.com",
- "submitters": ["Kate Perkins"],
- "title": "Pasco’s sheriff uses grades and abuse histories to label schoolchildren potential criminals",
- "url": "https://projects.tampabay.com/projects/2020/investigations/police-pasco-sheriff-targeted/school-data/"
- },
- {
- "__typename": "Report",
- "authors": ["Neil Bedi", "Kathleen McGrory", "Jennifer Glenfield"],
- "epoch_date_downloaded": 1627344000,
- "epoch_date_modified": 1653177600,
- "epoch_date_submitted": 1627344000,
- "flag": null,
- "report_number": 1627,
- "source_domain": "projects.tampabay.com",
- "submitters": ["Kate Perkins"],
- "title": "How a Florida Sheriff harasses families: Watch the body-cam video",
- "url": "https://projects.tampabay.com/projects/2020/investigations/police-pasco-sheriff-targeted/body-cam-footage/"
- },
- {
- "__typename": "Report",
- "authors": ["Kathleen McGrory"],
- "epoch_date_downloaded": 1627344000,
- "epoch_date_modified": 1653177600,
- "epoch_date_submitted": 1627344000,
- "flag": null,
- "report_number": 1626,
- "source_domain": "tampabay.com",
- "submitters": ["Kate Perkins"],
- "title": "Pasco Sheriff’s Office letter targets residents for ‘increased accountability’",
- "url": "https://www.tampabay.com/investigations/2021/07/24/pasco-sheriffs-office-letter-targets-residents-for-increased-accountability/"
- },
- {
- "__typename": "Report",
- "authors": ["Kathleen McGrory and Neil Bedi"],
- "epoch_date_downloaded": 1627344000,
- "epoch_date_modified": 1653177600,
- "epoch_date_submitted": 1627344000,
- "flag": null,
- "report_number": 1625,
- "source_domain": "projects.tampabay.com",
- "submitters": ["Kate Perkins"],
- "title": "Targeted",
- "url": "https://projects.tampabay.com/projects/2020/investigations/police-pasco-sheriff-targeted/intelligence-led-policing/"
- },
- {
- "__typename": "Report",
- "authors": ["Joe Henderson"],
- "epoch_date_downloaded": 1627344000,
- "epoch_date_modified": 1653177600,
- "epoch_date_submitted": 1627344000,
- "flag": null,
- "report_number": 1624,
- "source_domain": "floridapolitics.com",
- "submitters": ["Kate Perkins"],
- "title": "Joe Henderson: Do Pasco Sheriff’s Office surveillance tactics go over the line?",
- "url": "https://floridapolitics.com/archives/365879-joe-henderson-do-pasco-sheriffs-office-surveillance-tactics-go-over-the-line/"
- },
- {
- "__typename": "Report",
- "authors": ["Matthew Guariglia"],
- "epoch_date_downloaded": 1627344000,
- "epoch_date_modified": 1653177600,
- "epoch_date_submitted": 1627344000,
- "flag": null,
- "report_number": 1623,
- "source_domain": "eff.org",
- "submitters": ["Kate Perkins"],
- "title": "Pasco County’s Sheriff Must End Its Targeted Child Harassment Program",
- "url": "https://www.eff.org/deeplinks/2021/03/pasco-countys-sheriff-must-end-its-targeted-child-harassment-program"
- },
- {
- "__typename": "Report",
- "authors": ["Olivia Solon and Cyrus Farivar"],
- "epoch_date_downloaded": 1627344000,
- "epoch_date_modified": 1653177600,
- "epoch_date_submitted": 1627344000,
- "flag": null,
- "report_number": 1622,
- "source_domain": "nbcnews.com",
- "submitters": ["Kate Perkins"],
- "title": "Predictive policing strategies for children face pushback",
- "url": "https://www.nbcnews.com/tech/tech-news/predictive-policing-strategies-children-face-pushback-n1269674"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "pakistan-national-database-and-registration-authority",
- "name": "Pakistan National Database and Registration Authority"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "pakistan-national-database-and-registration-authority",
- "name": "Pakistan National Database and Registration Authority"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "pakistani-citizens",
- "name": "Pakistani citizens"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1637, 1636, 1635, 1634, 1633],
- "vector": [
- -0.060522835701704025, 0.10831288248300552, 0.029116090387105942, -0.09701553732156754,
- 0.08005759865045547, -0.08214722573757172, 0.018795525655150414, 0.09405079483985901,
- 0.03848055377602577, -0.10155466943979263, 0.01486978866159916, 0.03850375488400459,
- 0.014473086223006248, -0.07857184112071991, 0.019624099135398865, -0.12405981123447418,
- -0.08022979646921158, -0.03827289864420891, -0.0120118148624897, -0.1339220106601715,
- -0.07277677208185196, 0.0024022585712373257, 0.06863497942686081, 0.013079975731670856,
- -0.050979238003492355, 0.05589621141552925, 0.12094342708587646, 0.16523656249046326,
- -0.09608874469995499, 0.06889175623655319, -0.004647114314138889, -0.03006060980260372,
- 0.13808125257492065, 0.03561154752969742, 0.001294997287914157, 0.10369088500738144,
- -0.003986732568591833, -0.016311107203364372, 0.03343012183904648,
- -0.048712316900491714, 0.031706321984529495, 0.23796632885932922, 0.0045179701410233974,
- -0.04179034382104874, 0.065646231174469, -0.07692380994558334, 0.013846812769770622,
- 0.03440115600824356, 0.014027940109372139, 0.032868657261133194, -0.012538671493530273,
- 0.03566969186067581, -0.020144538953900337, 0.032383598387241364, -0.08252440392971039,
- 0.07569851726293564, 0.032089341431856155, 0.011821932159364223, 0.045494746416807175,
- -0.08707928657531738, 0.007816585712134838, -0.272697776556015, -0.0707111582159996,
- -0.1323624551296234, 0.08649950474500656, -0.1274661272764206, -0.03695983439683914,
- -0.01873243786394596, 0.027048742398619652, 0.11614078283309937, 0.04593920335173607,
- 0.0051571959629654884, 0.03558919578790665, -0.013302868232131004,
- 0.0010875518200919032, -0.032724522054195404, 0.027962425723671913, 0.21198983490467072,
- -0.12372799217700958, -0.03723111376166344, 0.09855089336633682, -0.1072765439748764,
- 0.4386087954044342, -0.014118502847850323, -0.005910600535571575, -0.053036779165267944,
- 0.1074465960264206, 0.03109847567975521, 0.0894651859998703, 0.04154494032263756,
- -0.03674954175949097, 0.040261052548885345, -0.040769755840301514, -0.02049080654978752,
- 0.07781044393777847, 0.0483805313706398, -0.038371745496988297, 0.1036897748708725,
- -0.027844509109854698, -0.044827334582805634, 0.07415660470724106,
- -0.041297413408756256, 0.1303190439939499, 0.11790233850479126, -0.05849839001893997,
- -0.005282840691506863, 0.10699323564767838, -0.10672138631343842, 0.09459204971790314,
- -0.028009697794914246, 0.03585013002157211, 0.039861343801021576, 0.09187575429677963,
- 0.00994248129427433, 0.001956850988790393, -0.044934071600437164, 0.033132847398519516,
- 0.025502607226371765, 0.07318063825368881, 0.0003617210895754397, 0.0007198862731456757,
- 0.01749802567064762, 0.0546947717666626, -0.016621310263872147, -0.0037274404894560575,
- -0.054381392896175385, -0.006505618803203106, -0.031093399971723557,
- -0.038850925862789154, 0.009518001228570938, -0.036155570298433304,
- -0.14325007796287537, 0.010414956137537956, 0.02557637169957161, 0.030240390449762344,
- -0.011560464277863503, -0.0394807830452919, -0.027423661202192307, 0.019534798339009285,
- 0.008591012097895145, -0.044193852692842484, 0.10727013647556305, 0.015085640363395214,
- 0.08114038407802582, 0.09984508156776428, 0.05827421694993973, -0.055147260427474976,
- -0.06062338501214981, 0.02316501922905445, 0.040694646537303925, 0.09522512555122375,
- -0.14808134734630585, -0.016520138829946518, 0.015461012721061707, 0.01864156872034073,
- 0.7187250852584839, 0.06989589333534241, 0.16555091738700867, -0.022802412509918213,
- -0.04887386038899422, 0.17095503211021423, 0.08423009514808655, 0.025166049599647522,
- -0.07754690945148468, -0.07709066569805145, 0.008534797467291355, -0.044939879328012466,
- -0.03861552104353905, 0.010835947468876839, 0.06588775664567947, 0.10720602422952652,
- 0.013342991471290588, 0.10474495589733124, -0.0171856340020895, -0.060977887362241745,
- -0.005608331877738237, 0.0860501080751419, -0.013697564601898193, -0.07119046896696091,
- -0.03209753707051277, 0.05508638545870781, 0.05168869346380234, -0.018070075660943985,
- 0.01932571269571781, -0.047234125435352325, 0.015785735100507736, -0.034783609211444855,
- 0.06819887459278107, -0.039181772619485855, -0.0317070297896862, 0.04246518388390541,
- 0.032417573034763336, 0.043039292097091675, -0.09261663258075714, -0.0328417606651783,
- 0.11470042169094086, 0.06690137088298798, 0.011927394196391106, 0.11343060433864594,
- -0.11907955259084702, 0.02075427956879139, -0.026736771687865257, 0.1572326421737671,
- -0.10355225950479507, 0.004809836391359568, -0.008041461929678917, -0.06448622792959213,
- 0.07967394590377808, -0.027309637516736984, -0.06431117653846741, -0.050416480749845505,
- 0.1005299910902977, 0.031170254573225975, 0.05196911841630936, 0.04421205073595047,
- -0.0029711290262639523, 0.05813602730631828, 0.042511407285928726, 0.056199442595243454,
- -0.04601538926362991, 0.042698442935943604, 0.018029052764177322, -0.021332448348402977,
- -0.002437674906104803, -0.0038193711079657078, 0.03879684954881668,
- -0.0015565480571240187, -0.021697038784623146, 0.026765067130327225,
- -0.027036916464567184, -0.05838621407747269, 0.020765842869877815, 0.023462925106287003,
- -0.007541244383901358, 0.09069875627756119, -0.07905907928943634, -0.04212457686662674,
- -0.03918706625699997, -0.03627725690603256, 0.05500953644514084, -0.02338966354727745,
- 0.09028159081935883, 0.1021202802658081, 0.04179287701845169, 0.058596543967723846,
- 0.05787339061498642, 0.03296565264463425, 0.07668213546276093, 0.037258394062519073,
- 0.07973839342594147, -0.04481016844511032, -0.10859213769435883, -0.038195475935935974,
- 0.031789712607860565, 0.007985290139913559, 0.05016731098294258, -0.043239571154117584,
- -0.0559745654463768, -0.0066274479031562805, -0.015859995037317276,
- -0.10388834774494171, -0.023779164999723434, 0.007590026594698429, 0.06553109735250473,
- -0.05888219550251961, -0.088230662047863, -0.07223739475011826, 0.018884727731347084,
- 0.09643356502056122, 0.009864323772490025, -0.020517811179161072, -0.11972001940011978,
- -0.040329668670892715, -0.011664335615932941, 0.059306781738996506,
- -0.022986823692917824, 0.019764361903071404, -0.010270761325955391,
- -0.10447055101394653, 0.03181407228112221, -0.0010500575881451368,
- -0.012051673606038094, -0.0839717835187912, -0.10625342279672623, -0.024462435394525528,
- 0.02204739861190319, -0.013855567201972008, 0.0390968918800354, 0.0038568158634006977,
- 0.032820142805576324, 0.03720229119062424, -0.035590760409832, -0.008100627921521664,
- 0.0365888737142086, -0.034298427402973175, 0.033595647662878036, 0.10391315072774887,
- -0.06865863502025604, 0.01694042608141899, -0.05731751769781113, -0.06214488670229912,
- -0.06467472016811371, 0.005414123181253672, -0.061714790761470795,
- -0.007233171723783016, -0.04540553316473961, -0.008121831342577934,
- -0.04579503461718559, -0.017688026651740074, 0.07165299355983734, -0.09585238248109818,
- -0.01338975690305233, -0.10530193150043488, 0.07083015143871307, 0.0033038363326340914,
- 0.013544711284339428, 0.039058562368154526, -0.05454698204994202, 0.014610695652663708,
- -0.009297773241996765, -0.014855319634079933, 0.05884401872754097, 0.07775335013866425,
- -0.032362259924411774, -0.04254757985472679, 0.06063590198755264, -0.011637406423687935,
- 0.028538232669234276, 0.11022859811782837, 0.4242761731147766, -0.073033906519413,
- 0.062158435583114624, 0.13096937537193298, -0.019054582342505455, 0.04705250263214111,
- -0.02797817811369896, 0.07105912268161774, 0.045517392456531525, 0.08290141075849533,
- 0.11999515444040298, -0.007676503621041775, -0.018728751689195633, -0.06510791927576065,
- 0.08492577075958252, 0.007926737889647484, 0.04344795271754265, -0.016637464985251427,
- -0.08922035992145538, -0.011325751431286335, 0.011483329348266125, -0.07342903316020966,
- -0.060174793004989624, -0.022840134799480438, -0.046927619725465775,
- 0.022806765511631966, 0.021641286090016365, 0.025457432493567467, -0.021830257028341293,
- -0.002620745450258255, -0.08038438111543655, 0.011128738522529602, 0.036812081933021545,
- 0.007130038924515247, -0.12227587401866913, 0.06524130702018738, -0.10524012893438339,
- -0.07108864188194275, 0.12227026373147964, -0.02603658102452755, 0.08796937763690948,
- 0.09473724663257599, -0.08425068855285645, 0.06265357881784439, -0.012855042703449726,
- -0.025400757789611816, 0.07440873235464096, 0.014078621752560139, 0.02400328405201435,
- 0.020215151831507683, 0.12921413779258728, -0.05848291516304016, -0.03200896456837654,
- -0.09420016407966614, 0.04451267421245575, 0.15704724192619324, -0.0406632125377655,
- -0.001761909807100892, 0.009171435609459877, 0.004538376349955797, 0.014308782294392586,
- -0.05485042184591293, -0.09227585792541504, -0.013974463567137718, -0.05580748990178108,
- 0.06402493268251419, 0.043832454830408096, -0.020612629130482674, -0.1572478711605072,
- -0.004084878601133823, -0.07146115601062775, 0.04383431002497673, 0.06465108692646027,
- -0.06838242709636688, -0.03744400292634964, 0.03031254932284355, 0.006465396378189325,
- 0.021356919780373573, -0.1094127669930458, -0.02569573000073433, -0.07205928862094879,
- 0.023849772289395332, 0.05508016422390938, 0.03273935243487358, -0.0339554026722908,
- 0.12153991311788559, -0.06381185352802277, 0.0606425404548645, 0.10585689544677734,
- -0.0425596609711647, -0.002490054816007614, -0.012028921395540237, 0.014534917660057545,
- 0.03253091499209404, -0.05761898308992386, 0.04503040388226509, -0.015604933723807335,
- -0.007956909015774727, -0.10126199573278427, -0.018133852630853653,
- -0.036746688187122345, -0.1032503992319107, 0.032160788774490356, -0.10499405860900879,
- -0.047200266271829605, -0.011785546317696571, 0.027063388377428055,
- -0.033308252692222595, 0.028083547949790955, 0.027656253427267075, -0.10041483491659164,
- -0.01706784963607788, -0.018688321113586426, 0.09671755135059357, -0.07985846698284149,
- -0.07207686454057693, 0.09912113845348358, 0.08910076320171356, 0.04346362501382828,
- 0.0049129510298371315, 0.06679178774356842, -0.011223042383790016, 0.04765508323907852,
- -0.11209706962108612, -0.3667040467262268, 0.05806199833750725, 0.011107807978987694,
- 0.06363125890493393, 0.008723214268684387, -0.01860969141125679, 0.041184891015291214,
- 0.009499728679656982, -0.05967724323272705, 0.0913221687078476, -0.06691031157970428,
- 0.023265182971954346, -0.03537328168749809, -0.08569225668907166, -0.031462203711271286,
- -0.047488510608673096, -0.03525197133421898, 0.0928625613451004, -0.047840386629104614,
- -0.12205203622579575, -0.1638685166835785, 0.03487687557935715, 0.00981854647397995,
- -0.006997751537710428, 0.015758149325847626, -0.0006316810613498092,
- -0.032382696866989136, -0.019937798380851746, 0.06055893748998642,
- -0.0013832838740199804, -0.015610530972480774, -0.07572220265865326,
- -0.011981533840298653, 0.041269440203905106, -0.020978236570954323, 0.09866993129253387,
- 0.008602946065366268, 0.01263089943677187, -0.09083294868469238, 0.09563814103603363,
- 0.05526686832308769, 0.18410858511924744, -0.06233328580856323, 0.02933080866932869,
- 0.018664268776774406, 0.06827323883771896, 0.052907031029462814, 0.045553386211395264,
- -0.042581405490636826, 0.06119115278124809, 0.0028405054472386837, 0.04823870211839676,
- 0.07896102964878082, -0.038929931819438934, -0.016045814380049706, -0.03793541342020035,
- -0.008890435099601746, -0.01975882612168789, -0.014107422903180122, 0.21670036017894745,
- 0.007437550462782383, 0.04895650967955589, 0.019274283200502396, -0.06662628799676895,
- -0.04585403949022293, -0.0752609372138977, -0.07367634773254395, -0.02791956067085266,
- -0.017700012773275375, 0.06576931476593018, -0.08406170457601547, -0.10307265818119049,
- -0.024727337062358856, -0.03183073550462723, -0.00919250212609768, 0.07976503670215607,
- -0.010786168277263641, 0.06565726548433304, -0.03592836111783981, 0.08182044327259064,
- 0.06370799243450165, 0.03612736240029335, 0.05105387419462204, 0.07135798037052155,
- 0.005337516311556101, -0.00533454492688179, -0.009782880544662476, -0.06272374093532562,
- -0.03153020888566971, 0.15002664923667908, 0.014886483550071716, 0.10592427104711533,
- 0.07246328890323639, -0.04861115291714668, -0.06994748115539551, 0.006707241293042898,
- -0.06613167375326157, -0.00007937550253700465, -0.45234179496765137,
- -0.03289517015218735, 0.16633208096027374, -0.03772538900375366, 0.030670683830976486,
- 0.06129845231771469, 0.02795867621898651, -0.026434410363435745, 0.051482826471328735,
- -0.12063556909561157, 0.12690193951129913, -0.014607307501137257, 0.07515061646699905,
- -0.11178246885538101, 0.02774493396282196, 0.059836409986019135, -0.012192619033157825,
- 0.004360419698059559, 0.029542971402406693, -0.22828082740306854,
- -0.0057066939771175385, -0.0857439786195755, 0.1338256448507309, 0.013120119459927082,
- 0.07467284053564072, 0.0565461739897728, -0.06439100205898285, 0.03751031681895256,
- 0.07505179196596146, 0.011074386537075043, 0.0341823510825634, 0.027222037315368652,
- -0.04045386239886284, 0.09953899681568146, 0.05083681270480156, 0.056463319808244705,
- -0.03542276471853256, 12.079080581665039, 0.11355068534612656, 0.09382591396570206,
- -0.08400575816631317, 0.052362389862537384, -0.031958866864442825, 0.05234571173787117,
- -0.0749109759926796, 0.04267111420631409, 0.10576369613409042, -0.008396835997700691,
- -0.09281754493713379, -0.02317475900053978, -0.10808555781841278, 0.01290702261030674,
- -0.008641568012535572, -0.03347042202949524, -0.04502571001648903, 0.03934304043650627,
- -0.06002587825059891, -0.024691391736268997, 0.04866088181734085, 0.032131750136613846,
- 0.018098749220371246, -0.04518039524555206, 0.01249045692384243, 0.037628062069416046,
- -0.05464938282966614, -0.0087699880823493, 0.026433253660798073, 0.04691418260335922,
- -0.02207825519144535, 0.027076762169599533, 0.020831843838095665, 0.05182718113064766,
- 0.038167618215084076, 0.0228740181773901, 0.020796626806259155, 0.03169899806380272,
- 0.030387576669454575, 0.03670596331357956, 0.042546652257442474, 0.04454084858298302,
- 0.0613115057349205, 0.026835579425096512, 0.012548540718853474, 0.0330130010843277,
- 0.06774622201919556, -0.013270294293761253, 0.014777636155486107, 0.08062078058719635,
- 0.029068391770124435, 0.07461173087358475, -0.012034939602017403, 0.03370355814695358,
- 0.11487635225057602, -0.006269312463700771, -0.05111532285809517, 0.08811135590076447,
- 0.07714187353849411, -0.05413543060421944, 0.10694732517004013, 0.05016668513417244,
- 0.05505595728754997, -0.025040138512849808, 0.07134446501731873, 0.11284613609313965,
- 0.03418200835585594, -0.18506485223770142, -0.048058148473501205, -0.01325495820492506,
- -0.08623997122049332, -0.06850041449069977, 0.027523985132575035, 0.03287831321358681,
- -0.0375705361366272, 0.07360228896141052, -0.0424322746694088, 0.0290641188621521,
- -0.029795821756124496, -0.06797321885824203, 0.04097878187894821, -0.053806405514478683,
- -0.03176754340529442, -0.00044721979065798223, 0.08142827451229095, 0.0611535906791687,
- 0.05934096500277519, 0.03812280669808388, -0.0761951357126236, -0.07753007858991623,
- 0.12143413722515106, -0.0207888912409544, -0.06534779816865921, -0.03456473350524902,
- -0.040152501314878464, -0.009876484982669353, -0.1540466845035553, 0.08176475763320923,
- 0.1069883480668068, -0.16052836179733276, 0.023092299699783325, -0.037050750106573105,
- 0.03889733552932739, 0.005439724773168564, -0.03979707509279251, -0.085298553109169,
- 0.06088428944349289, 0.012254876084625721, 0.028721731156110764, -0.05220168083906174,
- 0.10967916250228882, 0.08324398100376129, -0.046875450760126114, 0.015344822779297829,
- 0.06418946385383606, -0.017255397513508797, 0.0026789072435349226, 0.06137779355049133,
- -0.0005947072058916092, -0.11102624237537384, -0.08138163387775421,
- -0.022337039932608604, -0.06767825782299042, -0.053277451545000076,
- -0.048010751605033875, 0.016012266278266907, 0.008622715249657631, -0.0829608291387558,
- 0.008646545000374317, 0.01739710010588169, 0.033623017370700836, 0.011608698405325413,
- 0.011329129338264465, 0.05579477548599243, -0.10392745584249496, -0.08273814618587494,
- 0.04415811598300934, 0.03349398821592331, 0.07995086163282394, -0.027648678049445152,
- -0.067410908639431, -0.03977847471833229, -0.09330680221319199, 0.010152745060622692,
- 0.10311053693294525, 0.05527372285723686, 0.07275988161563873, 0.09519515186548233,
- -0.0958954319357872, -0.044250406324863434, 0.10810486227273941, 0.05547900125384331,
- 0.041176654398441315, 0.0035860512871295214, -0.05152177810668945,
- -0.012475920841097832, 0.1658463180065155, 0.03312157094478607, -0.009670363739132881,
- 0.0017342030769214034, 0.039844393730163574, 0.11854841560125351, 0.05197318643331528,
- 0.07142297178506851, 0.04383711889386177, 0.022575730457901955, 0.02324507012963295,
- 0.00660643819719553, 0.0024179944302886724, -0.01521172933280468, -0.014423864893615246,
- -0.06040216237306595, -0.05512465909123421, 0.014326381497085094, 0.08037885278463364,
- 0.014232037588953972, -0.04174799844622612, -0.031153568997979164, -0.06154457479715347
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 196,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Shahid Rao"],
- "epoch_date_downloaded": 1644624000,
- "epoch_date_modified": 1653177600,
- "epoch_date_submitted": 1644624000,
- "flag": null,
- "report_number": 1637,
- "source_domain": "nation.com.pk",
- "submitters": ["Kate Perkins"],
- "title": "IHC accepts petition challenging jurisdiction of NADRA to impound CNIC of girl",
- "url": "https://nation.com.pk/02-Jan-2021/ihc-accepts-petition-challenging-jurisdiction-of-nadra-to-impound-cnic-of-girl"
- },
- {
- "__typename": "Report",
- "authors": ["Terence J Sigamony"],
- "epoch_date_downloaded": 1644624000,
- "epoch_date_modified": 1653177600,
- "epoch_date_submitted": 1644624000,
- "flag": null,
- "report_number": 1636,
- "source_domain": "brecorder.com",
- "submitters": ["Kate Perkins"],
- "title": "Nadra has no power to adjudicate upon paternity: IHC",
- "url": "https://www.brecorder.com/news/40046708"
- },
- {
- "__typename": "Report",
- "authors": ["Obaid Abrar Khan"],
- "epoch_date_downloaded": 1644624000,
- "epoch_date_modified": 1653177600,
- "epoch_date_submitted": 1644624000,
- "flag": null,
- "report_number": 1635,
- "source_domain": "thenews.com.pk",
- "submitters": ["Kate Perkins"],
- "title": "IHC imposes 0.5m fine on Nadra for blocking woman’s CNIC",
- "url": "https://www.thenews.com.pk/print/768497-ihc-imposes-0-5m-fine-on-nadra-for-blocking-woman-s-cnic"
- },
- {
- "__typename": "Report",
- "authors": ["Tariq Malik"],
- "epoch_date_downloaded": 1644624000,
- "epoch_date_modified": 1653177600,
- "epoch_date_submitted": 1644624000,
- "flag": null,
- "report_number": 1634,
- "source_domain": "cgdev.org",
- "submitters": ["Kate Perkins"],
- "title": "Technology in the Service of Development: The NADRA Story",
- "url": "https://www.cgdev.org/publication/ft/technology-service-development-nadra-story"
- },
- {
- "__typename": "Report",
- "authors": ["Alizeh Kohari"],
- "epoch_date_downloaded": 1644624000,
- "epoch_date_modified": 1653177600,
- "epoch_date_submitted": 1644624000,
- "flag": null,
- "report_number": 1633,
- "source_domain": "codastory.com",
- "submitters": ["Kate Perkins"],
- "title": "Pakistan’s biometric ID scheme is stripping citizenship from thousands of people",
- "url": "https://www.codastory.com/authoritarian-tech/pakistan-biometric-identification-nadra/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "facebook",
- "name": "Facebook"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "facebook",
- "name": "Facebook"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "facebook-users",
- "name": "Facebook users"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1641, 1640, 1639, 1638],
- "vector": [
- -0.052069876343011856, 0.044627755880355835, -0.012423988431692123,
- -0.10424643009901047, 0.08024576306343079, -0.03152722120285034, 0.010692652314901352,
- 0.0393831692636013, 0.0360836386680603, -0.12793053686618805, 0.011542703956365585,
- 0.0037785321474075317, 0.02452949993312359, -0.058757755905389786, 0.05938546359539032,
- -0.11741158366203308, -0.14083397388458252, -0.04089184105396271, -0.019353099167346954,
- -0.1324021965265274, -0.03356526792049408, 0.008056480437517166, 0.017056666314601898,
- 0.15296584367752075, -0.03123529441654682, -0.0024090835358947515, 0.09891295433044434,
- 0.12138023972511292, -0.051822226494550705, 0.06761030852794647, 0.000405564671382308,
- -0.042648181319236755, 0.13159601390361786, 0.030087340623140335, 0.027031341567635536,
- 0.07069140672683716, 0.0226758886128664, -0.0335674025118351, -0.053476061671972275,
- 0.0027971495874226093, 0.013486078009009361, 0.23337824642658234, -0.010219456627964973,
- -0.04042676091194153, 0.011212009936571121, -0.03356046974658966, 0.05741420388221741,
- 0.06678405404090881, 0.001646094024181366, -0.003541627898812294, -0.016179002821445465,
- 0.054055288434028625, -0.050583288073539734, 0.02168317511677742, -0.08530187606811523,
- 0.04401921480894089, 0.030742842704057693, -0.04569099843502045, 0.01260528713464737,
- -0.08411087095737457, 0.009689209051430225, -0.289347380399704, -0.03366716578602791,
- -0.07191174477338791, 0.06322157382965088, -0.09165319055318832, -0.006187657359987497,
- 0.057217713445425034, 0.04650355875492096, 0.077463299036026, 0.03668728470802307,
- -0.06066635251045227, -0.03564453125, 0.031222453340888023, 0.04145428165793419,
- -0.03188946098089218, 0.033019326627254486, 0.14403992891311646, -0.08755844831466675,
- 0.0028389219660311937, 0.07558692991733551, -0.0950387567281723, 0.4020434021949768,
- -0.039566077291965485, -0.02728656679391861, 0.011646046303212643, 0.09034043550491333,
- 0.03265448659658432, 0.005881511606276035, 0.0447094589471817, -0.01923529803752899,
- 0.05061779171228409, -0.06155983731150627, 0.0331336185336113, 0.046497032046318054,
- 0.038255732506513596, -0.03604767844080925, 0.04726731777191162, 0.0031951398123055696,
- -0.012778520584106445, 0.015164731070399284, -0.019871963188052177, 0.09794378280639648,
- 0.09142549335956573, -0.029479926452040672, -0.010430102236568928, 0.07089132070541382,
- -0.05636212229728699, 0.07930125296115875, -0.05371634289622307, 0.0011045741848647594,
- -0.01884491927921772, 0.10873982310295105, 0.022688481956720352, 0.05694214254617691,
- -0.03647499158978462, -0.014441749081015587, 0.044282734394073486, 0.09991206973791122,
- 0.02224048413336277, 0.03252958878874779, 0.07251983135938644, 0.025552380830049515,
- -0.04455278813838959, -0.015220146626234055, -0.05165616795420647, -0.05680757388472557,
- -0.019293708726763725, -0.050341587513685226, 0.0630703866481781, -0.08187741041183472,
- -0.1965045928955078, 0.038335736840963364, 0.10623878240585327, -0.017763392999768257,
- -0.06143694743514061, 0.055359870195388794, -0.06036923825740814, 0.034187812358140945,
- -0.029943199828267097, -0.046933986246585846, 0.06236740201711655, 0.00574285164475441,
- 0.057384222745895386, 0.07964359223842621, 0.0526081807911396, -0.03954944387078285,
- -0.06442652642726898, 0.017803192138671875, -0.05974063277244568, 0.11498570442199707,
- -0.13176539540290833, -0.04177606478333473, -0.03507246822118759,
- -0.0027045966126024723, 0.7095565795898438, 0.12881843745708466, 0.17846223711967468,
- 0.04032052308320999, -0.026506606489419937, 0.17488709092140198, -0.0073759062215685844,
- 0.06904125958681107, -0.09860683232545853, -0.08585193753242493, 0.0619487389922142,
- -0.05050540342926979, -0.06607191264629364, -0.010411137714982033, 0.028551680967211723,
- 0.08099019527435303, 0.0166938379406929, 0.0931759923696518, 0.01089925691485405,
- -0.11854442954063416, 0.005576048977673054, 0.09577780216932297, -0.026243552565574646,
- -0.14364899694919586, -0.05631880462169647, 0.0645182877779007, 0.1251469850540161,
- -0.09534195065498352, -0.0029508001171052456, -0.08035355061292648, 0.08541113883256912,
- 0.02505505457520485, 0.09746410697698593, -0.04491094872355461, 0.07715146243572235,
- 0.0008964405860751867, 0.016278231516480446, -0.00853821448981762, -0.08085685968399048,
- -0.045122336596250534, 0.10205696523189545, -0.017390863969922066, -0.04919450357556343,
- 0.06780269742012024, -0.05901900678873062, 0.02465265803039074, 0.012710272334516048,
- 0.1547124981880188, -0.14666008949279785, -0.07168376445770264, -0.013028910383582115,
- -0.01339125819504261, 0.0815102607011795, -0.034468457102775574, -0.041880276054143906,
- -0.07566094398498535, 0.09096760302782059, 0.017724541947245598, 0.042127132415771484,
- 0.05873704329133034, -0.006866064853966236, 0.03097914159297943, 0.008753299713134766,
- 0.03941195458173752, -0.0721367746591568, 0.056538261473178864, 0.036907196044921875,
- -0.03661957383155823, -0.04775981232523918, 0.0716400295495987, 0.0610659122467041,
- 0.006301296874880791, -0.00824357196688652, 0.06697767972946167, -0.0007208592724055052,
- -0.05009663105010986, 0.1092529147863388, 0.03640887141227722, 0.004344954155385494,
- 0.10657062381505966, -0.09469103068113327, -0.03347109630703926, -0.03410914167761803,
- -0.0014886867720633745, 0.047793298959732056, -0.029968418180942535,
- 0.08906948566436768, 0.08999542891979218, 0.08256214112043381, 0.006807771511375904,
- 0.05486714094877243, 0.0368669293820858, -0.010133772157132626, 0.004429940599948168,
- 0.0922749936580658, -0.024012386798858643, -0.0409029982984066, -0.012934462167322636,
- 0.03659885749220848, 0.04199356213212013, 0.013698640279471874, -0.023314429447054863,
- -0.02373225800693035, -0.010745584964752197, -0.029940834268927574,
- -0.08896765857934952, -0.030774351209402084, 0.08687878400087357, 0.04155581444501877,
- -0.03064604662358761, -0.06186443567276001, -0.07885799556970596, -0.012875314801931381,
- 0.042107295244932175, -0.011930672451853752, -0.005167659372091293,
- -0.09896451979875565, -0.007023543119430542, -0.03266369178891182, 0.054501619189977646,
- -0.020022191107273102, -0.01457549910992384, 0.009437577798962593,
- -0.023356301710009575, 0.015391212888062, -0.015643808990716934, -0.0051458305679261684,
- -0.06297525763511658, -0.09250298887491226, -0.06816360354423523, -0.009411700069904327,
- 0.00633734418079257, -0.010339445434510708, 0.02392464689910412, 0.03130491077899933,
- 0.03969809040427208, -0.005257185082882643, -0.0018001070711761713,
- 0.056848861277103424, -0.07459431886672974, -0.018061192706227303, 0.07185814529657364,
- -0.0722891241312027, 0.04807482287287712, -0.007828163914382458, -0.09709683060646057,
- -0.005112728103995323, -0.028878293931484222, -0.05496664345264435, 0.07800906151533127,
- 0.0163569375872612, 0.0059967306442558765, -0.024969857186079025, -0.006898313295096159,
- 0.0661444365978241, -0.06910853832960129, -0.08311417698860168, -0.07149837166070938,
- 0.14424967765808105, -0.009634923189878464, 0.013575321063399315, 0.02896874025464058,
- -0.03404102474451065, 0.045813895761966705, -0.02451389655470848, 0.009322972036898136,
- 0.022000838071107864, 0.04539443179965019, -0.013225967064499855, -0.014118971303105354,
- 0.07705100625753403, -0.03399379178881645, 0.04824536293745041, 0.09005571901798248,
- 0.43064144253730774, -0.18168209493160248, 0.04983652010560036, 0.09481525421142578,
- 0.016959741711616516, 0.047446489334106445, -0.046185825020074844, 0.08395176380872726,
- 0.09414354711771011, 0.12542489171028137, 0.08465027809143066, -0.057669445872306824,
- 0.013636397197842598, -0.056170567870140076, 0.10113166272640228, 0.018195899203419685,
- 0.017816055566072464, -0.014684248715639114, -0.06372833997011185, -0.04432428628206253,
- 0.02613275870680809, -0.00921744853258133, -0.01641814596951008, 0.04315158352255821,
- -0.02292187511920929, 0.018348582088947296, -0.004791946150362492, 0.02607496827840805,
- -0.033342622220516205, 0.031922634690999985, 0.011953277513384819, 0.018471525982022285,
- -0.017139140516519547, 0.014148620888590813, -0.11663264781236649, 0.008737049996852875,
- -0.052857838571071625, -0.09192163497209549, 0.0754658579826355, -0.029038194566965103,
- 0.07010792195796967, 0.02325328066945076, 0.04757130891084671, 0.0340099073946476,
- -0.012863592244684696, -0.07231441140174866, 0.026607543230056763, 0.06799162179231644,
- -0.0036224457435309887, 0.10926832258701324, 0.1667470932006836, -0.057810306549072266,
- -0.05594421923160553, -0.1126883327960968, 0.04063040763139725, 0.1555120348930359,
- -0.03731970116496086, -0.01104656420648098, -0.01711738482117653, -0.07111132144927979,
- 0.0011668829247355461, -0.049644771963357925, -0.09469056129455566,
- -0.03734150528907776, -0.012733452022075653, 0.0763162150979042, 0.02875109203159809,
- -0.07423299551010132, -0.2514391243457794, -0.043671198189258575, -0.05569557845592499,
- -0.014299361035227776, 0.14803631603717804, -0.06683472543954849, 0.04573407769203186,
- 0.01743420399725437, -0.012419436126947403, -0.014212027192115784, -0.0841178372502327,
- -0.009399637579917908, -0.05133456364274025, 0.027403151616454124, 0.006464783102273941,
- 0.03892487660050392, -0.06103384867310524, 0.11492053419351578, -0.13199277222156525,
- 0.08371207118034363, -0.0006957892328500748, -0.025871142745018005,
- 0.015272913500666618, -0.05068318173289299, 0.012262560427188873, 0.015452870167791843,
- -0.04433182254433632, 0.023534640669822693, -0.014507965184748173, -0.05087379366159439,
- -0.06631818413734436, -0.05647415667772293, -0.07798094302415848, -0.11608783900737762,
- 0.04674898833036423, -0.10089763253927231, 0.011401530355215073, 0.014858064241707325,
- -0.01926577277481556, -0.0118438471108675, 0.031780730932950974, 0.01424962468445301,
- -0.2043241262435913, 0.009793305769562721, 0.02870720624923706, 0.08902562409639359,
- -0.02119038626551628, -0.025037268176674843, -0.00012079748557880521,
- 0.08858704566955566, 0.03587208688259125, 0.044916361570358276, -0.0011939805699512362,
- -0.07386958599090576, 0.08844315260648727, -0.09529629349708557, -0.42431050539016724,
- 0.01702454313635826, -0.03802352026104927, 0.04626348987221718, 0.010381489060819149,
- -0.05665179342031479, 0.0783061534166336, -0.028634313493967056, -0.04299651458859444,
- 0.06563357263803482, -0.05014774948358536, 0.016659993678331375, -0.008017942309379578,
- -0.03169535472989082, -0.024640612304210663, -0.08445706218481064, -0.06729839742183685,
- 0.027672162279486656, -0.014933433383703232, -0.06838863343000412, -0.08526059985160828,
- 0.041508980095386505, 0.009397982619702816, -0.020520038902759552, 0.02507060393691063,
- 0.02703169733285904, -0.08748307824134827, -0.04789145290851593, 0.054524198174476624,
- 0.05894586443901062, 0.018593616783618927, -0.05938952416181564, 0.0020561746787279844,
- 0.09704649448394775, -0.02182633988559246, 0.1226985827088356, 0.01641554944217205,
- 0.022011365741491318, -0.058620795607566833, 0.09768454730510712, 0.04376373812556267,
- 0.18642431497573853, 0.018265251070261, 0.004330811556428671, 0.026019558310508728,
- 0.14197547733783722, 0.04664983972907066, 0.027068577706813812, -0.06449859589338303,
- -0.011505359783768654, 0.0033670568373054266, 0.022230129688978195, 0.07563485205173492,
- -0.10045306384563446, -0.028928574174642563, -0.020467912778258324,
- -0.014980996027588844, -0.02817670814692974, -0.02221967838704586, 0.23453277349472046,
- 0.026837391778826714, 0.04152483865618706, 0.027939453721046448, -0.0879681408405304,
- 0.00024385876895394176, -0.06292782723903656, -0.10773709416389465,
- 0.010639466345310211, 0.0038483981043100357, 0.018465306609869003, -0.0274793803691864,
- -0.11733949929475784, -0.01184358261525631, 0.006974050309509039, 0.0033070333302021027,
- 0.10387460887432098, -0.04432346299290657, 0.035306211560964584, -0.012936828657984734,
- 0.11942605674266815, 0.04628323018550873, 0.061068564653396606, 0.043550167232751846,
- 0.08299708366394043, 0.04208609461784363, 0.028893575072288513, -0.0573914535343647,
- -0.08988279104232788, 0.00529247522354126, 0.18240301311016083, -0.05417594313621521,
- 0.15318647027015686, 0.01756572350859642, -0.03700067847967148, -0.051789816468954086,
- 0.0236329548060894, -0.03457093611359596, 0.024973951280117035, -0.4247038662433624,
- -0.03842313960194588, 0.10477028787136078, 0.07229125499725342, 0.0011846356792375445,
- 0.085420161485672, 0.0038129622116684914, -0.08196601271629333, -0.09346398711204529,
- -0.12286201864480972, 0.12291086465120316, -0.023077143356204033, 0.09780748188495636,
- -0.10206793248653412, 0.030324850231409073, 0.1197531595826149, -0.029564522206783295,
- -0.022941427305340767, 0.05403095483779907, -0.23940128087997437, -0.006066432222723961,
- -0.03619500994682312, 0.09007558226585388, 0.026766125112771988, 0.056294284760951996,
- 0.08636201918125153, -0.07039690762758255, 0.011031040921807289, 0.031859952956438065,
- -0.01829659938812256, 0.08322753757238388, -0.0038026301190257072, -0.0559188611805439,
- 0.09052590280771255, 0.10508784651756287, 0.12604743242263794, -0.07563953846693039,
- 11.935182571411133, 0.06539392471313477, 0.05575142428278923, -0.10013958811759949,
- 0.03034335747361183, -0.04939541220664978, 0.04550081491470337, -0.09430618584156036,
- 0.08221916854381561, 0.1298534870147705, 0.006308996118605137, -0.023415999487042427,
- -0.04547695443034172, -0.08932461589574814, 0.014727716334164143,
- -0.0061636618338525295, -0.07434217631816864, -0.06321876496076584,
- 0.021342918276786804, -0.05113618075847626, -0.06975772976875305, 0.057322729378938675,
- 0.0782393291592598, 0.043823905289173126, -0.05872265249490738, 0.05961289629340172,
- -0.008252392522990704, -0.0007712393999099731, -0.016874948516488075,
- 0.027983225882053375, -0.03147462382912636, 0.05448596179485321, 0.09810195863246918,
- 0.020385200157761574, 0.044296056032180786, 0.04600491747260094, 0.07815278321504593,
- 0.0016364637995138764, 0.014417733065783978, 0.052015695720911026,
- -0.025351431220769882, 0.02117833122611046, 0.003353752661496401, 0.07887906581163406,
- 0.04424499720335007, 0.0480879507958889, 0.043568044900894165, 0.11889705806970596,
- 0.0375562384724617, 0.08115993440151215, 0.08213931322097778, -0.022696994245052338,
- 0.13649362325668335, 0.02024970017373562, -0.01732633076608181, 0.08110125362873077,
- -0.04527048021554947, -0.07352311909198761, 0.09551861137151718, 0.040050722658634186,
- -0.03464600071310997, 0.1293896734714508, 0.06270112097263336, 0.11203530430793762,
- -0.01718410663306713, 0.04787420853972435, 0.06595822423696518, 0.07750704884529114,
- -0.13848575949668884, -0.10284416377544403, -0.003215028438717127, -0.10360241681337357,
- -0.055229853838682175, 0.0660080537199974, 0.08809266984462738, -0.03401336446404457,
- 0.033522333949804306, 0.004878448788076639, 0.02912209928035736, -0.07152138650417328,
- -0.011050301603972912, 0.029652263969182968, -0.06471065431833267, 0.023291461169719696,
- 0.07056153565645218, 0.03105565719306469, 0.06782923638820648, 0.12257452309131622,
- -0.0006601931527256966, -0.06013729050755501, -0.0754772424697876, 0.12705905735492706,
- -0.006827270612120628, -0.044876374304294586, -0.01571894995868206,
- -0.04938729852437973, 0.02962118200957775, -0.1812673956155777, 0.052112966775894165,
- 0.09041301906108856, -0.10836940258741379, -0.05438411235809326, -0.008215751498937607,
- 0.08953876048326492, 0.01838882826268673, -0.002358254510909319, -0.0767265036702156,
- 0.026896357536315918, 0.004840727895498276, 0.035236623138189316, -0.048811912536621094,
- 0.05331655964255333, 0.10692480951547623, -0.061839036643505096, 0.06010229140520096,
- 0.08864464610815048, -0.050546977669000626, -0.03776828572154045, 0.09132814407348633,
- 0.04967495799064636, -0.09638065099716187, -0.04645790159702301, -0.050694577395915985,
- -0.05138041079044342, -0.004027286544442177, -0.023542476817965508,
- -0.010213792324066162, 0.037754952907562256, -0.03692413866519928,
- -0.015785764902830124, 0.06728492677211761, 0.08478178083896637, 0.10700606554746628,
- -0.001080322079360485, 0.05218467861413956, -0.048973262310028076, -0.02342819981276989,
- 0.060412317514419556, 0.04917140677571297, 0.10378679633140564, -0.07617615908384323,
- -0.02755056694149971, -0.05114620551466942, -0.11802765727043152, 0.010934747755527496,
- 0.05277448520064354, 0.0375547856092453, 0.016531437635421753, 0.009561555460095406,
- -0.06693326681852341, -0.04493476450443268, 0.081946462392807, 0.07601111382246017,
- 0.004249929916113615, 0.018468013033270836, -0.03194119408726692, -0.03561631590127945,
- 0.11855960637331009, -0.05152132734656334, 0.00804204773157835, 0.04380884766578674,
- -0.06294373422861099, 0.04300707206130028, 0.12716545164585114, 0.03688286244869232,
- 0.0013690246269106865, 0.029322633519768715, 0.027377670630812645,
- -0.008299618028104305, 0.009940124116837978, 0.02014295384287834, -0.051783591508865356,
- -0.07370597124099731, -0.058392852544784546, 0.028486117720603943, 0.07806706428527832,
- 0.04871882125735283, -0.14379683136940002, 0.0012851926730945706, -0.016957245767116547
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 197,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["John Glenday"],
- "epoch_date_downloaded": 1652659200,
- "epoch_date_modified": 1653177600,
- "epoch_date_submitted": 1652659200,
- "flag": null,
- "report_number": 1641,
- "source_domain": "thedrum.com",
- "submitters": ["AIAAIC"],
- "title": "Facebook system designed to smother harmful misinformation actually spread it",
- "url": "https://www.thedrum.com/news/2022/04/01/facebook-system-designed-smother-harmful-misinformation-actually-spread-it"
- },
- {
- "__typename": "Report",
- "authors": ["Jonathan Chadwick"],
- "epoch_date_downloaded": 1652659200,
- "epoch_date_modified": 1653177600,
- "epoch_date_submitted": 1652659200,
- "flag": null,
- "report_number": 1640,
- "source_domain": "dailymail.co.uk",
- "submitters": ["AIAAIC"],
- "title": "Meta admits Facebook bug led to a 'surge of misinformation'",
- "url": "https://www.dailymail.co.uk/sciencetech/article-10675719/Meta-admits-Facebook-bug-led-surge-misinformation.html"
- },
- {
- "__typename": "Report",
- "authors": ["Issie Lapowsky"],
- "epoch_date_downloaded": 1652659200,
- "epoch_date_modified": 1653177600,
- "epoch_date_submitted": 1652659200,
- "flag": null,
- "report_number": 1639,
- "source_domain": "protocol.com",
- "submitters": ["AIAAIC"],
- "title": "Facebook boosted harmful posts due to 'massive ranking failure' bug",
- "url": "https://www.protocol.com/bulletins/facebook-ranking-failure-bug"
- },
- {
- "__typename": "Report",
- "authors": ["Alex Heath"],
- "epoch_date_downloaded": 1652659200,
- "epoch_date_modified": 1653177600,
- "epoch_date_submitted": 1652659200,
- "flag": null,
- "report_number": 1638,
- "source_domain": "theverge.com",
- "submitters": ["AIAAIC"],
- "title": "A Facebook bug led to increased views of harmful content over six months",
- "url": "https://www.theverge.com/2022/3/31/23004326/facebook-news-feed-downranking-integrity-bug"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "hackers",
- "name": "hackers"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "unknown",
- "name": "Unknown"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "volodymyr-zelenskyy",
- "name": "Volodymyr Zelenskyy"
- },
- {
- "__typename": "Entity",
- "entity_id": "ukrainian-social-media-users",
- "name": "Ukrainian social media users"
- },
- {
- "__typename": "Entity",
- "entity_id": "ukrainian-public",
- "name": "Ukrainian public"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1646, 1645, 1644, 1643, 1642],
- "vector": [
- -0.05340636521577835, 0.049375493079423904, 0.023967409506440163, -0.12169059365987778,
- 0.0926584005355835, -0.025403063744306564, 0.012597940862178802, 0.04521799087524414,
- 0.09714923799037933, -0.1363118588924408, -0.0019499652553349733, 0.03627689927816391,
- -0.00877038948237896, -0.1197936087846756, 0.048163242638111115, -0.06654070317745209,
- -0.06484855711460114, -0.044664833694696426, -0.00920454878360033, -0.13036803901195526,
- -0.03976798802614212, 0.03767149895429611, 0.00007664589065825567, 0.08937816321849823,
- -0.04085492342710495, 0.013891008682549, 0.06890188157558441, 0.14573384821414948,
- -0.09423790127038956, 0.04760802164673805, -0.0066010961309075356,
- -0.0070288414135575294, 0.1408631056547165, -0.0015518253203481436,
- 0.008202090859413147, 0.08535180240869522, 0.02719859406352043, -0.01595490798354149,
- -0.04637319594621658, 0.015503168106079102, 0.01603543572127819, 0.21592286229133606,
- 0.004407829605042934, -0.04800441116094589, 0.07528950273990631, -0.04183363914489746,
- 0.003597027389332652, 0.061502158641815186, 0.00868694856762886, -0.013084727339446545,
- -0.004086368251591921, -0.004295901861041784, -0.048954714089632034,
- 0.02669578790664673, -0.08074996620416641, 0.09011964499950409, 0.026141036301851273,
- -0.02422557957470417, 0.04890037700533867, -0.04166645556688309, -0.04980234429240227,
- -0.2606532573699951, -0.04918359965085983, -0.0663376972079277, 0.061248064041137695,
- -0.10694507509469986, -0.0023694043047726154, 0.026711110025644302, 0.04911665618419647,
- 0.03485316410660744, 0.043523117899894714, -0.08682586252689362, 0.0010404173517599702,
- 0.039576154202222824, 0.03864843398332596, -0.020887069404125214, 0.031128287315368652,
- 0.1935320347547531, -0.09792511910200119, 0.012997843325138092, 0.11817021667957306,
- -0.06869365274906158, 0.3852352499961853, -0.03774266317486763, -0.032064612954854965,
- 0.02312544360756874, 0.11238783597946167, -0.01983083225786686, 0.01680568978190422,
- 0.033014241605997086, -0.03849256783723831, 0.05804574489593506, -0.08075745403766632,
- 0.026670878753066063, 0.04770130291581154, 0.013121798634529114, -0.010595514439046383,
- 0.069831483066082, -0.01590552367269993, -0.05079852417111397, 0.03865347430109978,
- -0.02105378359556198, 0.10257941484451294, 0.05611847713589668, -0.03837959095835686,
- -0.024317840114235878, 0.03330478444695473, -0.08433443307876587, 0.04740195348858833,
- -0.07685680687427521, 0.007094537373632193, 0.0033511824440211058, 0.08432051539421082,
- 0.0020147536415606737, 0.041685622185468674, -0.024005379527807236,
- -0.01601492054760456, 0.017589658498764038, 0.07572610676288605, 0.06843820959329605,
- 0.028238479048013687, 0.07934083789587021, 0.08361180126667023, -0.035543762147426605,
- -0.020874083042144775, -0.06670333445072174, -0.062332820147275925,
- -0.002577404724434018, -0.03303085267543793, 0.06581761687994003, -0.05403547361493111,
- -0.20127591490745544, 0.05075066164135933, 0.048696164041757584, 0.03425038233399391,
- -0.05084440857172012, 0.037522971630096436, -0.04892655089497566, 0.006535767577588558,
- -0.016433652490377426, -0.02081090211868286, 0.07841305434703827, 0.016131380572915077,
- 0.05100774019956589, 0.09145514667034149, 0.06669767200946808, -0.03848981112241745,
- -0.052827708423137665, 0.012425274588167667, -0.050903670489788055, 0.11107946932315826,
- -0.10483658313751221, -0.035198260098695755, -0.017187608405947685,
- 0.0012696788180619478, 0.6784024834632874, 0.10947172343730927, 0.18998290598392487,
- 0.009522968903183937, 0.0035239066928625107, 0.14535245299339294,
- -0.0001259965792996809, 0.05854874849319458, -0.056436795741319656,
- -0.09344986826181412, 0.03940645232796669, -0.04469411447644234, 0.004251996986567974,
- 0.019319703802466393, 0.002595964353531599, 0.08373788744211197, 0.03143549710512161,
- 0.09688685089349747, 0.005750440992414951, -0.1432332694530487, -0.06473114341497421,
- 0.03520295396447182, 0.025017615407705307, -0.09574192017316818, -0.016262659803032875,
- 0.05586225911974907, 0.11149580776691437, -0.057557471096515656, -0.016833428293466568,
- -0.045125655829906464, 0.029618212953209877, -0.02333053946495056, 0.05617687106132507,
- -0.02941128984093666, 0.05003016069531441, 0.0585884228348732, 0.024733904749155045,
- 0.017947429791092873, -0.09917838871479034, -0.030640995129942894, 0.11337671428918839,
- -0.01695193164050579, -0.05954895541071892, 0.022098157554864883, -0.07143819332122803,
- 0.011354166083037853, 0.023262035101652145, 0.1539926826953888, -0.13517233729362488,
- -0.009771710261702538, -0.01873549073934555, -0.06565738469362259, 0.06813813000917435,
- -0.013695260509848595, -0.034107502549886703, -0.05372098833322525, 0.08754630386829376,
- 0.06602169573307037, 0.04197414964437485, 0.03740020468831062, -0.01129175815731287,
- 0.0683373287320137, 0.013001054525375366, 0.008777174167335033, -0.053874921053647995,
- 0.047321829944849014, 0.03768926486372948, -0.02879990264773369, -0.0881592184305191,
- 0.03986627981066704, 0.0744873434305191, 0.034305743873119354, -0.005792724899947643,
- 0.0461086630821228, -0.01769876480102539, -0.01245092786848545, 0.05034707859158516,
- 0.010917585343122482, 0.014265616424381733, 0.07263181358575821, -0.10312630981206894,
- -0.034734759479761124, -0.04513232782483101, -0.00017115189984906465,
- 0.02868024632334709, -0.013474958017468452, 0.07574249804019928, 0.0936976745724678,
- 0.06604629009962082, 0.06961046904325485, 0.016625378280878067, 0.06345213949680328,
- 0.06755613535642624, 0.0017927404260262847, 0.10715973377227783, -0.012044158764183521,
- -0.05541367083787918, -0.056037597358226776, -0.017829712480306625,
- 0.022639431059360504, 0.023351505398750305, -0.06294368207454681, -0.0154867023229599,
- -0.012930469587445259, -0.04058554768562317, -0.09002048522233963,
- -0.024327773600816727, 0.06956730782985687, 0.09305479377508163, -0.04231059178709984,
- -0.09358594566583633, -0.06814027577638626, 0.03269843012094498, 0.07924486696720123,
- 0.0014972590142861009, -0.037496961653232574, -0.09695494174957275, 0.02673761546611786,
- -0.03372148424386978, 0.05714651942253113, 0.0025640917010605335, -0.025570165365934372,
- 0.023137951269745827, -0.038395024836063385, 0.010131681337952614,
- -0.008522182703018188, -0.005386310629546642, -0.013100174255669117,
- -0.06255090981721878, -0.0470612570643425, -0.012110881507396698,
- -0.0013163279509171844, -0.03490973636507988, 0.0197829008102417, 0.019939720630645752,
- 0.04187812656164169, -0.010214971378445625, -0.018072377890348434, 0.06662420183420181,
- -0.07003415375947952, -0.010655421763658524, 0.08543837815523148, -0.024600867182016373,
- 0.019275762140750885, -0.024798130616545677, -0.08906903862953186,
- -0.005223582033067942, -0.010861515998840332, -0.07291699945926666, 0.06660153716802597,
- -0.03171471878886223, 0.017355067655444145, -0.03446171432733536,
- -0.0017410137224942446, 0.06278939545154572, -0.06561647355556488, -0.06387611478567123,
- -0.09476383775472641, 0.1430927813053131, 0.01415318064391613, -0.008344854228198528,
- -0.009437045082449913, -0.03765391558408737, -0.0029045077972114086,
- 0.004927210509777069, 0.02266503870487213, 0.046471476554870605, 0.055585794150829315,
- -0.01432089228183031, 0.005126344971358776, 0.07089205086231232, -0.03141438588500023,
- 0.05113466456532478, 0.0751500129699707, 0.4184414744377136, -0.18979354202747345,
- 0.06548832356929779, 0.11046145111322403, 0.008267337456345558, 0.031177684664726257,
- -0.0582255944609642, 0.08769486844539642, 0.07038220018148422, 0.10884680598974228,
- 0.10677170753479004, -0.04954703524708748, 0.03734896704554558, -0.08869028091430664,
- 0.07672671228647232, 0.01449450384825468, 0.020839111879467964, -0.03484771400690079,
- -0.03407011181116104, -0.043303586542606354, 0.08056802302598953, -0.03567127138376236,
- -0.026467103511095047, 0.0023906591814011335, -0.023507695645093918,
- 0.030279498547315598, 0.043741725385189056, 0.0433708094060421, -0.04512893408536911,
- 0.009871048852801323, 0.0006605893140658736, 0.02351389266550541, 0.032988619059324265,
- 0.05339907482266426, -0.14421817660331726, 0.008961176499724388, -0.020256521180272102,
- -0.14364352822303772, 0.06392072141170502, 0.01675373874604702, 0.09909256547689438,
- 0.03664524108171463, 0.003304865676909685, 0.02208574488759041, 0.008184535428881645,
- -0.027760306373238564, 0.030802130699157715, 0.10591952502727509, 0.03469804301857948,
- 0.09854502230882645, 0.13988974690437317, -0.03611860051751137, -0.034842729568481445,
- -0.08395536988973618, 0.07375498116016388, 0.11523947864770889, -0.03483913466334343,
- -0.004639946855604649, 0.04269082099199295, 0.009094443172216415, -0.029422422870993614,
- -0.0439743846654892, -0.05418806150555611, -0.05071992799639702, -0.04921551048755646,
- 0.07633238285779953, 0.030172526836395264, -0.05605646222829819, -0.19740715622901917,
- -0.03264543414115906, -0.04721272736787796, 0.005774148739874363, 0.17114348709583282,
- -0.08585421741008759, 0.028622984886169434, 0.0043309829197824, -0.005022634286433458,
- -0.011699382215738297, -0.08359352499246597, -0.0019220929825678468,
- -0.07044483721256256, -0.029984736815094948, 0.06918618828058243, 0.0408884659409523,
- -0.08169279992580414, 0.10007329285144806, -0.09022100269794464, 0.08164086937904358,
- -0.02210460975766182, 0.02660137414932251, -0.0022656400687992573, -0.04711540788412094,
- -0.001200714847072959, 0.03972034156322479, -0.08081154525279999, 0.028755977749824524,
- -0.04343383386731148, -0.04305204004049301, -0.08200859278440475, -0.04707455635070801,
- -0.03754740580916405, -0.07792160660028458, 0.04294704645872116, -0.09464996308088303,
- 0.013400395400822163, -0.03962116315960884, -0.028916165232658386, -0.02200482413172722,
- 0.03606608510017395, -0.010503056459128857, -0.14869113266468048, -0.04014609009027481,
- -0.0021937908604741096, 0.01715836487710476, 0.019527902826666832, -0.04127713665366173,
- -0.03829093649983406, 0.06910093873739243, 0.03250635415315628, -0.02870669588446617,
- 0.014443060383200645, -0.06655636429786682, 0.08611521869897842, -0.0808684378862381,
- -0.5028489828109741, 0.0689694732427597, 0.09238772094249725, 0.026776578277349472,
- 0.01444303710013628, -0.09370244294404984, 0.03859509527683258, -0.022716084495186806,
- -0.07224403321743011, 0.09741263091564178, -0.04849547892808914, 0.01519536692649126,
- -0.03264682739973068, -0.03696326166391373, -0.04581187292933464, -0.10266710817813873,
- -0.04199903458356857, 0.055913377553224564, 0.00451646838337183, -0.05300566554069519,
- -0.10455845296382904, 0.06979250907897949, -0.04638151824474335, 0.01568056456744671,
- -0.0024026515893638134, 0.031969670206308365, -0.05744009092450142,
- -0.03221433609724045, 0.043288491666316986, 0.052640628069639206, 0.023791532963514328,
- -0.08843620121479034, -0.022306373342871666, 0.06765633821487427,
- -0.0031847774516791105, 0.13795757293701172, -0.002343305153772235,
- -0.038138218224048615, -0.13884535431861877, 0.08013875037431717, 0.05451972037553787,
- 0.18753455579280853, 0.004673018120229244, 0.05539059638977051, 0.04137961193919182,
- 0.15591244399547577, 0.0338081419467926, 0.018985146656632423, -0.03834893926978111,
- 0.043445147573947906, 0.002893960801884532, -0.011214716359972954, 0.029317181557416916,
- -0.11702737957239151, -0.025034800171852112, 0.004960395861417055, -0.0407472625374794,
- 0.016222607344388962, -0.012463643215596676, 0.21280381083488464, 0.0006823899457231164,
- 0.013757221400737762, 0.017742972820997238, -0.00701106945052743, 0.012443681247532368,
- -0.05937886983156204, -0.09455256164073944, -0.013090071268379688,
- 0.0009017855045385659, 0.01765732280910015, -0.053068697452545166, -0.11626875400543213,
- 0.007547476794570684, 0.018131593242287636, 0.008474578149616718, 0.12487943470478058,
- 0.008661007508635521, 0.022254105657339096, -0.035444289445877075, 0.1113656759262085,
- 0.03832568973302841, 0.010920670814812183, 0.07653163373470306, 0.07752607762813568,
- 0.04879066348075867, -0.06057192012667656, 0.014056498184800148, -0.08716484904289246,
- 0.023461107164621353, 0.15138447284698486, -0.031085863709449768, 0.13611342012882233,
- 0.05228102207183838, -0.054773084819316864, -0.061899639666080475,
- -0.0054778545163571835, 0.025403082370758057, 0.045230817049741745, -0.4577813744544983,
- -0.04123838618397713, 0.10179366916418076, 0.022097919136285782, 0.01889098808169365,
- 0.07784601300954819, 0.04487951844930649, -0.05138765648007393, -0.01365361176431179,
- -0.08397366106510162, 0.14591416716575623, -0.01578761637210846, 0.04500789940357208,
- -0.10723771154880524, 0.025021210312843323, 0.07907842099666595, -0.04199923202395439,
- 0.0062379683367908, 0.019691074267029762, -0.21618743240833282, 0.005843861028552055,
- -0.01408411841839552, 0.14867763221263885, -0.012534764595329762, 0.035010285675525665,
- 0.07419735938310623, -0.07781534641981125, 0.02294960990548134, 0.052181489765644073,
- -0.04378741607069969, 0.03481454402208328, -0.011109246872365475, -0.05326718091964722,
- 0.1219305768609047, 0.11772129684686661, 0.07995617389678955, -0.06404917687177658,
- 11.885293960571289, 0.08123043924570084, 0.05915815755724907, -0.05635634809732437,
- 0.0443149209022522, -0.04705320671200752, 0.031070183962583542, -0.09233420342206955,
- 0.07791315019130707, 0.11341257393360138, -0.020965684205293655, -0.030364438891410828,
- -0.03316638991236687, -0.07954517751932144, 0.01229107566177845, 0.004300183150917292,
- -0.04215946048498154, -0.045989781618118286, 0.011750645935535431, -0.04832320660352707,
- -0.057618528604507446, 0.03577504679560661, 0.06588351726531982, 0.009363839402794838,
- -0.04995019733905792, 0.06220100447535515, -0.0018037151312455535,
- 0.0011086274171248078, -0.015637259930372238, 0.052341900765895844,
- 0.019743919372558594, 0.05046371743083, 0.061961591243743896, 0.03804323822259903,
- -0.004284857306629419, 0.016379235312342644, 0.04024286940693855, 0.03215809911489487,
- 0.02114136703312397, 0.05490446090698242, -0.005940294358879328, 0.0044622113928198814,
- 0.022180553525686264, 0.04827680066227913, 0.0519753098487854, 0.04942147806286812,
- 0.03016047552227974, 0.10706327855587006, -0.014311268925666809, 0.07841311395168304,
- 0.09626305848360062, -0.028085757046937943, 0.09797702729701996, 0.02466224879026413,
- 0.002095005242154002, 0.07126117497682571, -0.04649004712700844, -0.09164939075708389,
- 0.11007606983184814, 0.06231389194726944, -0.03715898469090462, 0.0751510038971901,
- 0.008897699415683746, 0.12980730831623077, -0.029237348586320877, 0.037843894213438034,
- 0.0964912623167038, 0.10089355707168579, -0.11197973787784576, -0.09251368045806885,
- 0.023552505299448967, -0.08444453775882721, -0.09943121671676636, 0.01847987249493599,
- 0.10071399062871933, -0.0348343662917614, 0.02552364394068718, -0.032659608870744705,
- 0.007366515696048737, -0.037576690316200256, -0.013691911473870277, 0.02139926515519619,
- -0.027358252555131912, 0.016155537217855453, 0.03363855183124542, 0.004315756261348724,
- 0.05692509934306145, 0.08902541548013687, 0.04599481448531151, -0.061879098415374756,
- -0.06564203649759293, 0.12527287006378174, -0.006447955965995789, -0.05091361328959465,
- 0.034566543996334076, -0.045928508043289185, 0.03737903758883476, -0.17275014519691467,
- 0.06781099736690521, 0.07814179360866547, -0.04867511987686157, -0.039373576641082764,
- -0.028707563877105713, 0.07341969013214111, -0.006605210714042187, 0.05106469243764877,
- -0.0668836161494255, 0.009121879003942013, -0.00024352855689357966, 0.03355974704027176,
- -0.05897917225956917, 0.0737525150179863, 0.06898800283670425, -0.10518032312393188,
- 0.08796340227127075, 0.0526626780629158, -0.04016191512346268, -0.017831888049840927,
- 0.062446098774671555, -0.008575051091611385, -0.08906761556863785, -0.01640414074063301,
- -0.023572269827127457, -0.07384244352579117, -0.04882499575614929, -0.01906328648328781,
- -0.007313521113246679, 0.028972169384360313, -0.04270809143781662, -0.03531254082918167,
- 0.05121613293886185, 0.04708294942975044, 0.08836032450199127, -0.03447052836418152,
- 0.029014024883508682, -0.04728872328996658, 0.0009900268632918596, 0.06846503913402557,
- 0.07198768854141235, 0.060935866087675095, -0.024703441187739372, 0.005632591433823109,
- -0.025460440665483475, -0.10013791173696518, 0.030336657539010048, 0.0596710667014122,
- 0.007234837859869003, 0.033445727080106735, 0.03694619983434677, -0.0667133629322052,
- -0.022365644574165344, 0.0612037293612957, 0.034609198570251465, 0.035772643983364105,
- 0.021398749202489853, -0.06234002113342285, -0.0403505302965641, 0.12276039272546768,
- -0.03929007798433304, -0.00965835526585579, -0.00761344563215971, -0.016647540032863617,
- 0.0793100968003273, 0.06708796322345734, 0.060594845563173294, -0.008495042100548744,
- 0.04855715483427048, 0.018712889403104782, 0.02976086735725403, 0.014984801411628723,
- 0.019515521824359894, -0.04105383902788162, -0.08002761006355286, -0.10652758926153183,
- 0.05827421694993973, 0.08099599927663803, 0.0627022534608841, -0.1296294629573822,
- -0.014333829283714294, 0.014327289536595345
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 198,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Victor Tangermann"],
- "epoch_date_downloaded": 1653004800,
- "epoch_date_modified": 1653177600,
- "epoch_date_submitted": 1653004800,
- "flag": null,
- "report_number": 1646,
- "source_domain": "futurism.com",
- "submitters": ["AIAAIC"],
- "title": "Hackers Deepfaked a Video of the Ukrainian President Telling His Soldiers to Surrender",
- "url": "https://futurism.com/deepfaked-video-ukrainian-president-surrender"
- },
- {
- "__typename": "Report",
- "authors": ["Samantha Cole"],
- "epoch_date_downloaded": 1653004800,
- "epoch_date_modified": 1653177600,
- "epoch_date_submitted": 1653004800,
- "flag": null,
- "report_number": 1645,
- "source_domain": "vice.com",
- "submitters": ["AIAAIC"],
- "title": "Hacked News Channel and Deepfake of Zelenskyy Surrendering Is Causing Chaos Online",
- "url": "https://www.vice.com/en/article/93bmda/hacked-news-channel-and-deepfake-of-zelenskyy-surrendering-is-causing-chaos-online"
- },
- {
- "__typename": "Report",
- "authors": ["Dan Evon"],
- "epoch_date_downloaded": 1653004800,
- "epoch_date_modified": 1653177600,
- "epoch_date_submitted": 1653004800,
- "flag": null,
- "report_number": 1644,
- "source_domain": "snopes.com",
- "submitters": ["AIAAIC"],
- "title": "Bad Deepfake of Zelenskyy Shared on Ukraine News Site in Reported Hack",
- "url": "https://www.snopes.com/news/2022/03/16/zelenskyy-deepfake-shared/"
- },
- {
- "__typename": "Report",
- "authors": ["Rachel Metz"],
- "epoch_date_downloaded": 1653004800,
- "epoch_date_modified": 1653177600,
- "epoch_date_submitted": 1653004800,
- "flag": null,
- "report_number": 1643,
- "source_domain": "edition.cnn.com",
- "submitters": ["AIAAIC"],
- "title": "Facebook and YouTube say they removed Zelensky deepfake",
- "url": "https://edition.cnn.com/2022/03/16/tech/deepfake-zelensky-facebook-meta/index.html"
- },
- {
- "__typename": "Report",
- "authors": ["Roman Osadchuk"],
- "epoch_date_downloaded": 1653004800,
- "epoch_date_modified": 1653177600,
- "epoch_date_submitted": 1653004800,
- "flag": null,
- "report_number": 1642,
- "source_domain": "atlanticcouncil.org",
- "submitters": ["AIAAIC"],
- "title": "Russian War Report: Hacked news program and deepfake video spread false Zelenskyy claims",
- "url": "https://www.atlanticcouncil.org/blogs/new-atlanticist/russian-war-report-hacked-news-program-and-deepfake-video-spread-false-zelenskyy-claims/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "ever-ai",
- "name": "Ever AI"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "ever-ai",
- "name": "Ever AI"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "ever-ai-users",
- "name": "Ever AI users"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [2031, 2024, 1651, 1650, 1649, 1648, 1647],
- "vector": [
- -0.05888534337282181, 0.07982555776834488, 0.0027021397836506367, -0.11191128939390182,
- 0.06966742128133774, -0.01642448827624321, -0.0018161525949835777, 0.04978353530168533,
- 0.06068030372262001, -0.1455458700656891, 0.007973089814186096, 0.052684810012578964,
- 0.02481772005558014, -0.050635840743780136, 0.01671917550265789, -0.0935673862695694,
- -0.10508871078491211, -0.05735725164413452, -0.01774541661143303, -0.14773957431316376,
- -0.060237664729356766, -0.011441297829151154, 0.03269403055310249, 0.12021929770708084,
- -0.05626823753118515, 0.021233411505818367, 0.11524664610624313, 0.13369444012641907,
- -0.0773920863866806, 0.06703595817089081, -0.019650476053357124, -0.06511057913303375,
- 0.1317242830991745, 0.023090939968824387, 0.004561209585517645, 0.09536635130643845,
- 0.015820182859897614, -0.05760239437222481, 0.016866687685251236, -0.02025284245610237,
- 0.005569354631006718, 0.24212589859962463, 0.007673357613384724, -0.008349476382136345,
- 0.03196384012699127, -0.041272129863500595, 0.02616715431213379, 0.03776707872748375,
- 0.00025752102374099195, -0.009996360167860985, -0.030546149238944054,
- 0.05005497857928276, -0.04242413118481636, 0.06391232460737228, -0.1002616211771965,
- 0.043459128588438034, 0.007401748560369015, -0.04971155896782875, 0.04185914248228073,
- -0.07017414271831512, -0.05319814756512642, -0.2492915689945221, -0.027681898325681686,
- -0.08649113029241562, 0.0565696619451046, -0.0868053063750267, -0.026407510042190552,
- 0.020351151004433632, 0.021290315315127373, 0.059700097888708115, 0.05329454317688942,
- -0.025223566219210625, -0.021242300048470497, 0.008037827908992767, 0.01756441220641136,
- -0.028348581865429878, 0.05542322248220444, 0.18235354125499725, -0.11414239555597305,
- 0.01300009060651064, 0.1083274558186531, -0.10282360017299652, 0.4363749325275421,
- -0.0163299348205328, -0.025398289784789085, 0.008186940103769302, 0.08967916667461395,
- 0.05840439349412918, 0.02521076425909996, 0.020904213190078735, -0.045868851244449615,
- 0.022162051871418953, -0.06134968623518944, -0.03731975704431534, 0.08251160383224487,
- 0.022257687523961067, -0.02104506455361843, -0.004201744217425585,
- -0.0022933122236281633, -0.026989450678229332, 0.00561652984470129,
- -0.022202298045158386, 0.1125839427113533, 0.10319018363952637, -0.02772696129977703,
- -0.0057320864871144295, 0.06085816025733948, -0.058939315378665924, 0.04612265154719353,
- -0.046170394867658615, 0.009332162328064442, -0.028564440086483955, 0.04831131920218468,
- -0.013012128882110119, 0.04884805902838707, -0.06498541682958603,
- -0.0019021063344553113, 0.039949655532836914, 0.10141997784376144, 0.027216924354434013,
- 0.0019570125732570887, 0.05648854374885559, 0.061048321425914764, -0.07579859346151352,
- -0.010668793693184853, -0.036523520946502686, -0.0410468652844429,
- -0.040248338133096695, -0.03327196091413498, 0.04845413938164711, -0.06524364650249481,
- -0.2031169980764389, 0.03414737060666084, 0.07723956555128098, -0.01792428456246853,
- -0.055499784648418427, 0.00541584612801671, -0.061061110347509384, 0.034377362579107285,
- 0.00861449632793665, -0.026267850771546364, 0.07227660715579987, 0.03005235083401203,
- 0.05889419838786125, 0.11521991342306137, 0.04972807317972183, -0.057903289794921875,
- -0.05517910048365593, 0.00017907431174535304, -0.036714933812618256,
- 0.10815286636352539, -0.16253256797790527, -0.037288568913936615, 0.009118723683059216,
- 0.003962577786296606, 0.7244969606399536, 0.11284221708774567, 0.1629716157913208,
- -0.008654510602355003, -0.024447666481137276, 0.18232475221157074,
- -0.036037344485521317, 0.10479866713285446, -0.10972646623849869, -0.07414768636226654,
- 0.024217575788497925, -0.08118616044521332, -0.04978356882929802, 0.03576808050274849,
- -0.0014642123132944107, 0.11387895047664642, 0.039662279188632965, 0.09638658910989761,
- 0.012859589420258999, -0.10942297428846359, 0.001700031803920865, 0.0655745193362236,
- 0.001758342026732862, -0.12014700472354889, -0.033493269234895706, 0.04066642001271248,
- 0.10053586959838867, -0.12291312217712402, 0.024939250200986862, -0.08758697658777237,
- 0.04896542429924011, -0.029931290075182915, 0.047266632318496704, -0.015981441363692284,
- 0.04383578151464462, 0.04539170116186142, 0.06149937957525253, 0.01462488155812025,
- -0.10740593820810318, -0.04027172178030014, 0.11078087985515594, -0.013792337849736214,
- -0.0326111800968647, 0.10166530311107635, -0.08179379999637604, 0.030963150784373283,
- 0.02955545112490654, 0.13148827850818634, -0.11446911096572876, -0.006365942303091288,
- 0.007599846459925175, -0.008628067560493946, 0.04155794531106949, -0.02604924514889717,
- -0.08022505044937134, -0.06723117083311081, 0.05732080712914467, 0.03378058597445488,
- 0.053491946309804916, 0.06383651494979858, -0.04008592292666435, 0.01757609099149704,
- 0.0682833269238472, 0.0005703303031623363, -0.02178986184298992, 0.08351815491914749,
- 0.05727106332778931, -0.01759139820933342, -0.03711896389722824, 0.03563927859067917,
- 0.047821659594774246, -0.005544596817344427, -0.00849516224116087, 0.06573306769132614,
- -0.00755160441622138, -0.06458907574415207, 0.025554561987519264, 0.06437133997678757,
- -0.0046799867413938046, 0.1011013612151146, -0.05437805876135826, -0.03849547728896141,
- -0.019267750903964043, 0.0012772856280207634, 0.021065473556518555,
- -0.010103284381330013, 0.08072195947170258, 0.10855051130056381, 0.0514686144888401,
- 0.027926888316869736, 0.057952459901571274, 0.07250632345676422, 0.034555695950984955,
- 0.002623489359393716, 0.09188293665647507, -0.02339722216129303, -0.060431499034166336,
- 0.0047933682799339294, 0.0009565126965753734, 0.030709823593497276, 0.03269492834806442,
- -0.053265757858753204, -0.030830340459942818, -0.042109496891498566,
- -0.0002711320121306926, -0.08994344621896744, -0.05859380587935448,
- 0.024288108572363853, 0.03523886203765869, -0.04654432088136673, -0.09534931927919388,
- -0.0757528766989708, 0.003647087374702096, 0.09572140872478485, -0.026078851893544197,
- -0.010882542468607426, -0.11377294361591339, 0.02227143384516239, -0.030541917309165,
- 0.04772846773266792, -0.02825014479458332, 0.06776785105466843, 0.0023238484282046556,
- -0.07315422594547272, 0.05342605337500572, -0.008398449048399925, -0.015050609596073627,
- -0.0464816577732563, -0.07191408425569534, -0.05484002083539963, -0.03709748759865761,
- 0.02330833673477173, -0.004177285823971033, 0.0470404289662838, 0.025890683755278587,
- 0.05315866693854332, -0.02456759102642536, -0.022232284769415855, 0.07051809132099152,
- -0.036768753081560135, -0.029960492625832558, 0.08925352990627289, -0.03120812401175499,
- 0.019902195781469345, 0.013584887608885765, -0.07117827981710434, -0.04093508794903755,
- 0.02607749216258526, -0.043306391686201096, 0.056509021669626236, -0.009348198771476746,
- 0.024110177531838417, -0.0664001926779747, -0.051050249487161636, 0.06525379419326782,
- -0.07699169218540192, -0.10110432654619217, -0.056303467601537704, 0.08869952708482742,
- -0.012133716605603695, -0.009947270154953003, 0.015569502487778664,
- -0.05227525904774666, 0.055498700588941574, -0.023909132927656174, 0.00858145672827959,
- 0.03740796074271202, 0.04437806084752083, -0.040166858583688736, 0.038905415683984756,
- 0.06897800415754318, -0.007102235220372677, 0.047727085649967194, 0.05877494066953659,
- 0.41555681824684143, -0.17424683272838593, 0.09352134168148041, 0.09045463800430298,
- -0.005186374299228191, 0.02776220440864563, -0.0334865041077137, 0.07512328773736954,
- 0.08994046598672867, 0.13503368198871613, 0.08760926872491837, -0.05845357105135918,
- -0.014431736432015896, -0.09177915751934052, 0.10296135395765305, 0.007520223502069712,
- 0.019160602241754532, 0.002954706782475114, -0.053072839975357056,
- -0.008982755243778229, 0.05018995329737663, -0.04514947161078453, 0.008830470032989979,
- -0.021500464528799057, -0.05519985035061836, 0.029381440952420235,
- -0.010465343482792377, 0.037231363356113434, -0.03256483003497124, 0.020805325359106064,
- -0.021891146898269653, 0.03810877725481987, 0.0419272817671299, 0.05516830459237099,
- -0.0918944925069809, -0.007913079112768173, -0.07552777975797653, -0.08306054770946503,
- 0.061519112437963486, -0.009014700539410114, 0.06891943514347076, 0.04179719462990761,
- -0.030329760164022446, 0.0540727898478508, -0.004860508721321821, -0.07657044380903244,
- 0.027217090129852295, 0.08094310015439987, 0.017467819154262543, 0.09134411066770554,
- 0.167918398976326, -0.04866586998105049, -0.06523052603006363, -0.07112335413694382,
- 0.08461964875459671, 0.09722919762134552, -0.017989782616496086, 0.030204763635993004,
- 0.006369359325617552, -0.033812399953603745, -0.008689528331160545,
- -0.06992624700069427, -0.09500829130411148, -0.006131521426141262, -0.02501814253628254,
- 0.0840032547712326, 0.031665973365306854, -0.031033890321850777, -0.1473582535982132,
- -0.03199223428964615, -0.02321779727935791, 0.0053935120813548565, 0.11542601883411407,
- -0.046241044998168945, 0.04157601669430733, -0.010870669968426228,
- -0.0034559268970042467, -0.003843806916847825, -0.1113000437617302,
- 0.018180523067712784, -0.016341742128133774, 0.02669895812869072, 0.06328592449426651,
- 0.0486968457698822, -0.034954775124788284, 0.09243478626012802, -0.11110611259937286,
- 0.056405238807201385, 0.05608152598142624, -0.049411527812480927, 0.02012065425515175,
- -0.05785804241895676, 0.023538781329989433, 0.02110016532242298, -0.054498810321092606,
- 0.0008372682495974004, -0.021625535562634468, -0.04626486077904701,
- -0.08043153584003448, -0.05453307554125786, -0.05234115943312645, -0.08992744982242584,
- 0.030254807323217392, -0.09453947097063065, -0.016729827970266342,
- -0.0069392467848956585, -0.022689389064908028, 0.013239686377346516,
- 0.02490043267607689, 0.033423420041799545, -0.15530332922935486, -0.003379776608198881,
- -0.011707776226103306, 0.05097518488764763, -0.05787542834877968, -0.05767077952623367,
- 0.0393499955534935, 0.07100524008274078, 0.037448156625032425, -0.02225574478507042,
- 0.027480749413371086, -0.0649857372045517, 0.058983299881219864, -0.1310006082057953,
- -0.4325413703918457, 0.05839637294411659, -0.013787133619189262, 0.04516268149018288,
- 0.0035901207011193037, -0.06362081319093704, 0.058460451662540436,
- 0.0024520251899957657, -0.04861430451273918, 0.09829646348953247, -0.051121097058057785,
- 0.008216135203838348, -0.015182997100055218, -0.03261810168623924,
- 0.00043062979239039123, -0.060525644570589066, -0.0638258308172226,
- 0.032086290419101715, -0.018994301557540894, -0.05294320359826088, -0.12039061635732651,
- 0.00411064550280571, -0.01921551115810871, 0.039869729429483414, 0.04735980182886124,
- 0.026533275842666626, -0.05812391638755798, -0.023818597197532654, 0.04735284298658371,
- 0.046762432903051376, 0.004202620126307011, -0.07305339723825455, 0.014481259509921074,
- 0.08265839517116547, -0.024358047172427177, 0.134200781583786, 0.030190452933311462,
- 0.008011666126549244, -0.07131209224462509, 0.09905684739351273, 0.07447807490825653,
- 0.18574464321136475, -0.0017379105556756258, 0.006364259868860245, 0.020511701703071594,
- 0.14861437678337097, 0.06137751787900925, 0.03128834813833237, -0.038992740213871,
- 0.01913694106042385, 0.03237544000148773, 0.012689723633229733, 0.087552510201931,
- -0.09779614955186844, -0.0219244547188282, -0.04057050123810768, -0.018263543024659157,
- -0.043063726276159286, 0.014488844200968742, 0.22211308777332306, 0.02969626896083355,
- 0.024122923612594604, 0.06334409862756729, -0.03903844952583313, 0.001949709258042276,
- -0.09573715180158615, -0.08463239669799805, 0.013256402686238289,
- -0.0010786490747705102, 0.04194924607872963, -0.06003124266862869, -0.1375265270471573,
- -0.03102918341755867, -0.008793259970843792, -0.015615256503224373, 0.10439319908618927,
- -0.025066563859581947, 0.03948262333869934, -0.04136469587683678, 0.13411793112754822,
- 0.04384251683950424, 0.012540989555418491, 0.05187129229307175, 0.0892852395772934,
- 0.026726463809609413, 0.005693444050848484, -0.04056646674871445, -0.09717796742916107,
- -0.022769374772906303, 0.14252261817455292, -0.0078106047585606575, 0.12310057133436203,
- 0.03076356276869774, -0.06045585125684738, -0.058190252631902695, -0.004094396717846394,
- -0.018679959699511528, 0.023751413449645042, -0.43428853154182434, 0.002066698158159852,
- 0.13825300335884094, -0.0009522524778731167, 0.029002567753195763, 0.08321548253297806,
- 0.041752420365810394, -0.030457837507128716, -0.06253893673419952, -0.07423815876245499,
- 0.18140268325805664, -0.003800238249823451, 0.08062883466482162, -0.1408931314945221,
- 0.0159144289791584, 0.07452579587697983, -0.01782233454287052, -0.0027316329069435596,
- 0.05315003916621208, -0.23956754803657532, -0.02275911346077919, -0.03768356889486313,
- 0.1450037956237793, 0.04608706384897232, 0.030375713482499123, 0.08674485981464386,
- -0.03342710807919502, -0.005918721202760935, 0.017727507278323174,
- -0.026128562167286873, 0.03259240835905075, 0.012472120113670826, -0.020166529342532158,
- 0.11570019274950027, 0.10085157305002213, 0.06496838480234146, -0.0480443499982357,
- 11.98015022277832, 0.06339303404092789, 0.07250218838453293, -0.08829081058502197,
- 0.007252011448144913, -0.03634250909090042, 0.02419820800423622, -0.06525979936122894,
- 0.06537849456071854, 0.12317319959402084, -0.040674977004528046, -0.026030169799923897,
- -0.041467856615781784, -0.10240960866212845, 0.023272577673196793, -0.0462426133453846,
- -0.043148983269929886, -0.03329743072390556, 0.048830363899469376,
- -0.031238963827490807, -0.03341355919837952, 0.04259693622589111, 0.07254164665937424,
- 0.020652947947382927, -0.07144776731729507, 0.015470536425709724, 0.029622597619891167,
- -0.013258935883641243, -0.011529942974448204, 0.014634649269282818,
- 0.007882806472480297, 0.039724208414554596, 0.0738908052444458, -0.017005721107125282,
- 0.002339431783184409, 0.026395315304398537, 0.0833887830376625, 0.04017658159136772,
- 0.033305779099464417, 0.05494169145822525, 0.007094674743711948, 0.05215608328580856,
- 0.008233405649662018, 0.060918401926755905, 0.061218004673719406, 0.024932628497481346,
- 0.0035542442928999662, 0.10612419992685318, 0.011597618460655212, 0.06494113802909851,
- 0.09544754028320312, -0.02657657489180565, 0.09555597603321075, 0.026486409828066826,
- -0.018045397475361824, 0.045148830860853195, -0.021593984216451645,
- -0.07374797016382217, 0.07890595495700836, 0.051034919917583466, -0.047567036002874374,
- 0.11939535290002823, 0.03284992650151253, 0.12796650826931, 0.012479051016271114,
- 0.046364862471818924, 0.057539407163858414, 0.09270024299621582, -0.1432795524597168,
- -0.1176477000117302, 0.03146225959062576, -0.09322678297758102, -0.06914403289556503,
- 0.09729015082120895, 0.13916002213954926, -0.01229108776897192, 0.07484565675258636,
- -0.016003308817744255, 0.02639855444431305, -0.02566361427307129, 0.004347241949290037,
- 0.07144006341695786, -0.02988290600478649, 0.02333986945450306, 0.0627652034163475,
- 0.028535272926092148, 0.1055033877491951, 0.10232227295637131, -0.004881219007074833,
- -0.09618360549211502, -0.07705199718475342, 0.10314234346151352, 0.0016941381618380547,
- -0.052022866904735565, -0.012216411530971527, -0.06309476494789124, 0.02754353918135166,
- -0.15303578972816467, 0.0879892110824585, 0.11081280559301376, -0.060441795736551285,
- -0.03880031034350395, -0.025850985199213028, 0.07352245599031448,
- -0.0011710457038134336, 0.02028486132621765, -0.07677609473466873, 0.004898342303931713,
- 0.053547732532024384, 0.05521490424871445, -0.05072380229830742, 0.07472725212574005,
- 0.07903994619846344, -0.060567546635866165, 0.012880166061222553, 0.07069841027259827,
- -0.07561492919921875, -0.027375664561986923, 0.06605904549360275, 0.030794521793723106,
- -0.10634984076023102, -0.04635469987988472, -0.037649575620889664,
- -0.043161313980817795, 0.004877589643001556, -0.06850128620862961, 0.01678268052637577,
- 0.004967339802533388, -0.04770263284444809, -0.03949222341179848, 0.039313990622758865,
- 0.059187937527894974, 0.03778694197535515, 0.011937662959098816, 0.06448160856962204,
- -0.07525692880153656, -0.032568689435720444, 0.04720216616988182, 0.07451577484607697,
- 0.0768204778432846, -0.06728298962116241, -0.036905787885189056, -0.053986433893442154,
- -0.11068256944417953, 0.0237536933273077, 0.10758453607559204, 0.052105795592069626,
- 0.016263704746961594, 0.010989057831466198, -0.09606475383043289, -0.06518900394439697,
- 0.09970510751008987, 0.01678522862493992, 0.05418121814727783, 0.05919928103685379,
- -0.06187910586595535, -0.023541999980807304, 0.10530231148004532, -0.05455483868718147,
- 0.010287096723914146, -0.016819849610328674, -0.044402461498975754, 0.10829741507768631,
- 0.0697227269411087, 0.027190903201699257, 0.04131784290075302, 0.04925676807761192,
- -0.004721741192042828, 0.03973718360066414, -0.032600630074739456, 0.0328027568757534,
- -0.043966587632894516, -0.08099542558193207, -0.08254075795412064, 0.016169779002666473,
- 0.08325458317995071, 0.028226401656866074, -0.15276344120502472, -0.006190675310790539,
- -0.03731181100010872
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 199,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Damien Demolder"],
- "epoch_date_downloaded": 1662508800,
- "epoch_date_modified": 1663027200,
- "epoch_date_submitted": 1662508800,
- "flag": null,
- "report_number": 2031,
- "source_domain": "dpreview.com",
- "submitters": ["Nickie Demakos"],
- "title": "Paravision AI ordered to delete face recognition software derived from user pictures without permission",
- "url": "https://www.dpreview.com/news/0874174431/paravision-ai-ordered-delete-face-recognition-software-user-pictures-without-permission"
- },
- {
- "__typename": "Report",
- "authors": ["Olivia Solon", " Cyrus Farivar"],
- "epoch_date_downloaded": 1662508800,
- "epoch_date_modified": 1663027200,
- "epoch_date_submitted": 1662508800,
- "flag": null,
- "report_number": 2024,
- "source_domain": "nbcnews.com",
- "submitters": ["Nickie Demakos"],
- "title": "Millions of people uploaded photos to the Ever app. Then the company used them to develop facial recognition tools.",
- "url": "https://www.nbcnews.com/tech/security/millions-people-uploaded-photos-ever-app-then-company-used-them-n1003371"
- },
- {
- "__typename": "Report",
- "authors": ["Thomas Claburn"],
- "epoch_date_downloaded": 1653004800,
- "epoch_date_modified": 1653177600,
- "epoch_date_submitted": 1653004800,
- "flag": null,
- "report_number": 1651,
- "source_domain": "theregister.com",
- "submitters": ["AIAAIC"],
- "title": "Privacy pilfering project punished by FTC purge penalty: AI upstart told to delete data and algorithms",
- "url": "https://www.theregister.com/2021/01/13/paravision_ftc_settlement/"
- },
- {
- "__typename": "Report",
- "authors": ["Federal Trade Commission"],
- "epoch_date_downloaded": 1653004800,
- "epoch_date_modified": 1653177600,
- "epoch_date_submitted": 1653004800,
- "flag": null,
- "report_number": 1650,
- "source_domain": "ftc.gov",
- "submitters": ["AIAAIC"],
- "title": "California Company Settles FTC Allegations It Deceived Consumers about use of Facial Recognition in Photo Storage App",
- "url": "https://www.ftc.gov/news-events/news/press-releases/2021/01/california-company-settles-ftc-allegations-it-deceived-consumers-about-use-facial-recognition-photo"
- },
- {
- "__typename": "Report",
- "authors": ["David Lazarus"],
- "epoch_date_downloaded": 1653004800,
- "epoch_date_modified": 1653177600,
- "epoch_date_submitted": 1653004800,
- "flag": null,
- "report_number": 1649,
- "source_domain": "latimes.com",
- "submitters": ["AIAAIC"],
- "title": "Column: Millions of faces scanned without approval. We need rules for facial recognition",
- "url": "https://www.latimes.com/business/story/2021-01-29/column-facial-recognition-privacy"
- },
- {
- "__typename": "Report",
- "authors": ["Sarah Perez"],
- "epoch_date_downloaded": 1653004800,
- "epoch_date_modified": 1653177600,
- "epoch_date_submitted": 1653004800,
- "flag": null,
- "report_number": 1648,
- "source_domain": "techcrunch.com",
- "submitters": ["AIAAIC"],
- "title": "Ever, once accused of building facial recognition tech using customer data, shuts down consumer app",
- "url": "https://techcrunch.com/2020/08/24/ever-once-accused-of-building-facial-recognition-tech-using-customer-data-shuts-down-consumer-app/"
- },
- {
- "__typename": "Report",
- "authors": ["Olivia Solon", " Cyrus Farivar"],
- "epoch_date_downloaded": 1653004800,
- "epoch_date_modified": 1653177600,
- "epoch_date_submitted": 1653004800,
- "flag": null,
- "report_number": 1647,
- "source_domain": "nbcnews.com",
- "submitters": ["AIAAIC"],
- "title": "Millions of people uploaded photos to the Ever app. Then the company used them to develop facial recognition tools.",
- "url": "https://www.nbcnews.com/tech/security/millions-people-uploaded-photos-ever-app-then-company-used-them-n1003371"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "scammers",
- "name": "scammers"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "unknown",
- "name": "Unknown"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "unnamed-uk-based-energy-firm's-ceo",
- "name": "unnamed UK-based energy firm's CEO"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1653],
- "vector": [
- -0.04401920363306999, 0.10971619188785553, 0.020146170631051064, -0.06659247726202011,
- 0.0702836811542511, -0.10060441493988037, -0.0011213603429496288, 0.04489363729953766,
- 0.09794633090496063, -0.1431480199098587, 0.010020785965025425, 0.05236530303955078,
- 0.04596198722720146, -0.03523077070713043, -0.014787406660616398, -0.06101052463054657,
- -0.07288844138383865, 0.02556128427386284, -0.001571223372593522, -0.10001302510499954,
- -0.07006587088108063, 0.023917552083730698, 0.011077585630118847, 0.10153911262750626,
- -0.06272044777870178, 0.030295440927147865, 0.09008185565471649, 0.11141777038574219,
- -0.06766141206026077, 0.017403407022356987, -0.022804301232099533, 0.008655529469251633,
- 0.10222955793142319, 0.002192163374274969, 0.020721586421132088, 0.08045276999473572,
- -0.009203380905091763, -0.03073069266974926, -0.05944157764315605,
- -0.020921681076288223, 0.010676486417651176, 0.1975608468055725, 0.009396410547196865,
- -0.006644987501204014, 0.03295883908867836, 0.014362347312271595, -0.006750426720827818,
- 0.05290538817644119, 0.004119327757507563, -0.005886971019208431, -0.04378712922334671,
- 0.027993008494377136, -0.06766191869974136, 0.01174347847700119, -0.06409280747175217,
- 0.025239180773496628, 0.0008173983078449965, 0.039401937276124954, 0.09585893899202347,
- -0.0980183407664299, -0.012040841393172741, -0.1739950329065323, -0.08797246217727661,
- -0.08241891115903854, 0.11952802538871765, -0.053148675709962845, -0.04218162223696709,
- 0.021481556817889214, 0.016318833455443382, 0.05486265942454338, 0.043596457690000534,
- -0.04156816005706787, 0.023425431922078133, 0.025290697813034058, 0.017521465197205544,
- 0.023350384086370468, -0.026439674198627472, 0.21440942585468292, -0.09736049920320511,
- 0.0024837066885083914, 0.10138969868421555, -0.056909818202257156, 0.3281737267971039,
- 0.029233036562800407, -0.033666424453258514, -0.009474269114434719, 0.13648903369903564,
- 0.08370517194271088, 0.03871401399374008, 0.057652898132801056, 0.003274207701906562,
- -0.0182749405503273, -0.07658901065587997, 0.010314753279089928, 0.05275537818670273,
- 0.01448027789592743, -0.013099510222673416, 0.030260592699050903, -0.04438412934541702,
- -0.05394596979022026, -0.014645736664533615, -0.05832287669181824, 0.08133199065923691,
- 0.05790288746356964, -0.04973892867565155, -0.012513316236436367, 0.04752490669488907,
- -0.10225129872560501, 0.047174639999866486, -0.05842016637325287, 0.028564201667904854,
- -0.02631670981645584, 0.07667166739702225, 0.041133809834718704, 0.06709771603345871,
- -0.0542776957154274, 0.025734027847647667, 0.046096932142972946, 0.0721108615398407,
- 0.05664091184735298, -0.010472184978425503, 0.09093770384788513, 0.07263129949569702,
- -0.02493985742330551, -0.03236517310142517, -0.03309211879968643, -0.027670687064528465,
- -0.041514940559864044, -0.030319325625896454, 0.008619495667517185,
- 0.004862051922827959, -0.21025244891643524, 0.015794862061738968, 0.11712916940450668,
- -0.0042230188846588135, -0.018829304724931717, 0.02209451049566269,
- -0.04242826625704765, 0.0684409812092781, -0.03607102110981941, -0.05942438170313835,
- 0.09542995691299438, 0.013884779997169971, 0.05420573428273201, 0.11621108651161194,
- 0.047650568187236786, -0.01372385211288929, -0.07670367509126663,
- -0.00014893549086991698, -0.06463580578565598, 0.09244364500045776,
- -0.10381462424993515, -0.026486830785870552, 0.03460519015789032, 0.033996131271123886,
- 0.6243975162506104, 0.09369457513093948, 0.14528042078018188, 0.019470850005745888,
- -0.02326022833585739, 0.13715656101703644, -0.011868699453771114, 0.12148457020521164,
- 0.0003851036017294973, -0.07005739212036133, 0.0675504058599472, -0.07281257957220078,
- -0.009077574126422405, -0.003657370572909713, 0.008854340761899948, 0.1493481546640396,
- 0.05208897218108177, 0.08296507596969604, -0.0011462847469374537, -0.05816757678985596,
- 0.02457716315984726, 0.036008626222610474, 0.027525009587407112, -0.09019610285758972,
- -0.013920726254582405, 0.0813293308019638, 0.07260390371084213, -0.055700648576021194,
- 0.023853907361626625, 0.0019115811446681619, -0.017197754234075546,
- -0.01660912111401558, 0.060824040323495865, 0.03376367688179016, 0.06789238005876541,
- 0.05620944872498512, 0.011890590190887451, 0.016090551391243935, -0.10813433676958084,
- -0.03457975387573242, 0.09054877609014511, -0.01464904099702835, -0.03648751601576805,
- 0.07864724844694138, -0.06300467997789383, 0.009720586240291595, 0.0003530630492605269,
- 0.12662279605865479, -0.11055201292037964, 0.01662597805261612, -0.006464185193181038,
- -0.036967068910598755, 0.04012452811002731, 0.028578173369169235, -0.07320030778646469,
- -0.060927748680114746, 0.03985259309411049, 0.051071397960186005, 0.004300964530557394,
- 0.10240835696458817, -0.039816178381443024, 0.015014194883406162, 0.04656454920768738,
- -0.00551864318549633, -0.03986440598964691, 0.04459197074174881, 0.052991773933172226,
- 0.0029342344496399164, -0.006433079019188881, -0.004123219754546881,
- 0.030889371410012245, 0.01121196523308754, 0.0015321976970881224, 0.0194313433021307,
- -0.008449805900454521, -0.044284969568252563, 0.056196797639131546,
- 0.029260676354169846, -0.01543287094682455, 0.09231408685445786, -0.0679529532790184,
- -0.025134865194559097, -0.027296749874949455, -0.002776896581053734,
- 0.044444143772125244, -0.016845041885972023, 0.03433078154921532, 0.08430960029363632,
- 0.06681787967681885, 0.04443839192390442, 0.08014066517353058, 0.041967473924160004,
- 0.06202007830142975, -0.039272282272577286, -0.013824589550495148, -0.05647408589720726,
- -0.06516613811254501, -0.034818507730960846, -0.02256053313612938, 0.08924766629934311,
- 0.038569994270801544, -0.05990219488739967, -0.005595489405095577, -0.03959557041525841,
- -0.07691510021686554, -0.05816509574651718, -0.05068797245621681, 0.007335392292588949,
- 0.05703408271074295, -0.055050428956747055, -0.09869706630706787, -0.043339405208826065,
- 0.03935797140002251, 0.04966066777706146, 0.0356266014277935, -0.007171190809458494,
- -0.10255435854196548, 0.013573105446994305, 0.00039951808867044747,
- 0.055522847920656204, 0.007810303941369057, -0.05805760622024536, 0.004843453876674175,
- 0.008730494417250156, 0.05552670732140541, 0.04131944105029106, -0.00550150265917182,
- -0.07872718572616577, -0.06276355683803558, -0.0680905357003212, 0.024268893525004387,
- 0.02549171820282936, -0.056334611028432846, 0.003183157881721854, 0.026380471885204315,
- 0.012374876998364925, -0.016585543751716614, 0.0014950413024052978, 0.06590929627418518,
- -0.03858039155602455, 0.04076778143644333, 0.04687349125742912, -0.06261642277240753,
- 0.013958592899143696, -0.027352528646588326, -0.11580478399991989, -0.02604968473315239,
- 0.004521423950791359, -0.06151096895337105, 0.04660271480679512, -0.0307548139244318,
- 0.03608378767967224, -0.04537549614906311, -0.05271727219223976, 0.009981134906411171,
- -0.04633374512195587, -0.03700265660881996, -0.0725012794137001, 0.10272584110498428,
- 0.02144397422671318, -0.005941600538790226, -0.017135314643383026,
- -0.027479572221636772, 0.011589426547288895, -0.02627585455775261, 0.014732143841683865,
- 0.062225520610809326, -0.0020408921409398317, 0.005854752846062183, 0.02850576862692833,
- 0.0656609758734703, -0.0018292366294190288, 0.0191308856010437, 0.0651225596666336,
- 0.4021376669406891, -0.11665929108858109, 0.09472870081663132, 0.10689179599285126,
- -0.022178228944540024, 0.04520508274435997, -0.04199601337313652, 0.08049247413873672,
- 0.06231211498379707, 0.05152071267366409, 0.09662977606058121, -0.045068901032209396,
- -0.02551334910094738, -0.12025903165340424, 0.11082863807678223, -0.03390393406152725,
- 0.07069968432188034, -0.06720690429210663, -0.06964316964149475, -0.03322090581059456,
- 0.04372810944914818, -0.0032362318597733974, 0.01082307193428278, -0.006915932521224022,
- -0.052511218935251236, -0.005670018494129181, -0.0058605726808309555,
- 0.05560920387506485, -0.03633313998579979, 0.051357805728912354, -0.09078096598386765,
- 0.008741356432437897, 0.008060140535235405, 0.043679263442754745, -0.1711767166852951,
- 0.012198385782539845, -0.04426350072026253, -0.08699054270982742, 0.10393358767032623,
- -0.004127372521907091, 0.061468835920095444, 0.05290229618549347, -0.010770316235721111,
- 0.04140149801969528, -0.09651589393615723, -0.050716448575258255, 0.023069793358445168,
- 0.07926204055547714, 0.07346552610397339, 0.0833660438656807, 0.19071057438850403,
- -0.011816248297691345, -0.11695554852485657, -0.07756948471069336, 0.024797165766358376,
- 0.1407383382320404, -0.011360046453773975, 0.021333234384655952, 0.019690023735165596,
- -0.05476194620132446, -0.007177593186497688, -0.09305502474308014, -0.04488825052976608,
- -0.004006555769592524, -0.036277879029512405, 0.07985451817512512, 0.008105154149234295,
- -0.03717159107327461, -0.08067181706428528, -0.008260965347290039, -0.02432788908481598,
- -0.004971690941601992, 0.12311434000730515, -0.06095360592007637, 0.030219772830605507,
- -0.017440158873796463, -0.04035013169050217, -0.001333072897978127,
- -0.10150094330310822, 0.017187422141432762, -0.0086049884557724, 0.03036874160170555,
- 0.022025754675269127, 0.006405868101865053, -0.057780440896749496, 0.08521731197834015,
- -0.08796931058168411, 0.06730001419782639, -0.011306663043797016, 0.008678711019456387,
- 0.050573792308568954, 0.0047816019505262375, 0.026909921318292618, 0.022009937092661858,
- -0.058821916580200195, 0.019108518958091736, -0.02622169628739357, -0.05159797891974449,
- -0.10486961156129837, -0.023935699835419655, -0.00342348450794816, -0.0955970287322998,
- 0.03422793745994568, -0.07733473926782608, 0.026227237656712532, -0.00521626602858305,
- -0.043475501239299774, -0.015699049457907677, 0.023326506838202477,
- 0.007570774760097265, -0.1425880789756775, -0.01304617989808321, 0.020581170916557312,
- 0.04290890693664551, -0.055499061942100525, -0.05131245777010918, 0.04395470768213272,
- 0.08718333393335342, 0.019080519676208496, -0.01107960194349289, 0.013809997588396072,
- -0.072645403444767, 0.06488865613937378, -0.058219876140356064, -0.416935533285141,
- 0.08027675747871399, 0.04088082164525986, 0.015400955453515053, 0.009145145304501057,
- -0.068125881254673, 0.08322449773550034, 0.0028449075762182474, -0.0320357047021389,
- 0.08873743563890457, -0.04536672681570053, 0.0000869157156557776,
- 0.00012287803110666573, -0.02537923865020275, -0.026978114619851112,
- -0.05507252737879753, -0.036341458559036255, 0.06573701649904251, -0.039463110268116,
- -0.05722291022539139, -0.10774160176515579, 0.01771349273622036, -0.006407934240996838,
- 0.0018039997667074203, 0.021774647757411003, -0.037265751510858536,
- -0.05986154079437256, -0.02375449426472187, -0.0018131553661078215, 0.02295343019068241,
- 0.004355825018137693, -0.08692199736833572, 0.05435771495103836, 0.02885935828089714,
- -0.03404921293258667, 0.14175553619861603, 0.026086585596203804, 0.01600322127342224,
- -0.14294195175170898, 0.07338255643844604, 0.0608910508453846, 0.18962323665618896,
- -0.0028439145535230637, 0.03553389385342598, -0.026341285556554794, 0.08004913479089737,
- -0.0018664338858798146, 0.04946510121226311, -0.039998963475227356, 0.03474509343504906,
- 0.005486904643476009, -0.0005809998256154358, 0.085142582654953, -0.08875105530023575,
- -0.03625382110476494, -0.02257031761109829, 0.016601242125034332, -0.07276413589715958,
- -0.04475842043757439, 0.19761916995048523, 0.01037471555173397, 0.05105851590633392,
- 0.04070861637592316, -0.03433394432067871, 0.023714251816272736, -0.043879251927137375,
- -0.15295711159706116, -0.03918609395623207, -0.0028995792381465435, 0.02507171407341957,
- -0.04518700763583183, -0.12776274979114532, -0.022195108234882355,
- -0.008732618764042854, -0.019762789830565453, 0.10649949312210083,
- 0.0003148527175653726, 0.059851258993148804, -0.07937280833721161, 0.07724275439977646,
- 0.02892828732728958, 0.018421310931444168, 0.048864543437957764, 0.1396019011735916,
- 0.023403959348797798, -0.0035639742854982615, -0.02380491979420185,
- -0.05013013258576393, 0.018308162689208984, 0.11917290091514587, -0.0021477194968611,
- 0.10398443788290024, 0.08504533022642136, -0.057495180517435074, -0.045379482209682465,
- 0.05419759824872017, 0.08876027166843414, 0.10315818339586258, -0.429938405752182,
- -0.02955349162220955, 0.11355587840080261, -0.07197801023721695, 0.030674688518047333,
- 0.07739037275314331, 0.05320914834737778, -0.052756864577531815, -0.031900763511657715,
- -0.05341925099492073, 0.12272228300571442, 0.0008919104002416134, 0.10445430129766464,
- -0.10065578669309616, -0.02424071915447712, 0.08688344806432724, -0.04157724231481552,
- -0.03749043121933937, 0.0028311109635978937, -0.21632330119609833, -0.01389134582132101,
- -0.03409092500805855, 0.10800038278102875, 0.043686963617801666, 0.08187471330165863,
- 0.09172199666500092, -0.06501943618059158, 0.0819975808262825, 0.05798894166946411,
- -0.020488208159804344, 0.0748746246099472, -0.006340183317661285,
- 0.00029860029462724924, 0.11310529708862305, 0.09638074785470963, 0.07867007702589035,
- -0.04287467151880264, 11.781920433044434, 0.021088458597660065, 0.033478993922472,
- -0.12347666919231415, 0.009554127231240273, -0.04608425498008728, 0.03441084921360016,
- -0.09585181623697281, 0.07200752198696136, 0.06465047597885132, -0.00013279204722493887,
- -0.02085602469742298, -0.07074957340955734, -0.07564490288496017, 0.021203305572271347,
- -0.037371233105659485, -0.05290206894278526, -0.02361496537923813, 0.03714979067444801,
- -0.05177958682179451, 0.005568899679929018, 0.03390834480524063, 0.050725702196359634,
- -0.004678528755903244, -0.02975720725953579, 0.06878495961427689, -0.009348546154797077,
- 0.028058918192982674, 0.011453586630523205, 0.06030367687344551, -0.028774484992027283,
- 0.044284455478191376, 0.05094001442193985, 0.0006608882686123252, 0.028358928859233856,
- 0.001315699308179319, 0.03998756781220436, 0.06366589665412903, 0.02950175292789936,
- 0.05350767821073532, 0.02716132253408432, 0.008803585544228554, 0.009613236412405968,
- 0.07790286839008331, 0.038163863122463226, 0.004226941615343094, 0.019573809579014778,
- 0.10962462425231934, -0.028968513011932373, 0.0871247723698616, 0.07475986331701279,
- -0.023187795653939247, 0.058827437460422516, 0.022069359198212624, 0.010544028133153915,
- 0.04927586391568184, 0.0261582862585783, -0.07236618548631668, 0.056663841009140015,
- 0.11065445095300674, -0.04249334707856178, 0.12681879103183746, 0.002004643203690648,
- 0.10256218910217285, -0.04526961222290993, 0.07716645300388336, 0.06507112085819244,
- 0.06584326922893524, -0.11200719326734543, -0.08741343021392822, 0.021671609953045845,
- -0.09376099705696106, -0.08910389989614487, 0.055439844727516174, 0.004584547132253647,
- -0.09558500349521637, 0.04916653782129288, -0.021171603351831436, 0.03961796313524246,
- -0.08824598044157028, -0.0316108763217926, 0.029300179332494736, -0.032488614320755005,
- 0.04807552695274353, 0.042710818350315094, 0.025853512808680534, 0.02843206375837326,
- 0.05715534836053848, 0.02083989605307579, -0.04725852236151695, -0.06292681396007538,
- 0.05565258860588074, -0.04678216576576233, -0.08209197223186493, -0.015384777449071407,
- -0.061604633927345276, 0.014090669341385365, -0.1267460435628891, 0.05197934806346893,
- 0.019805721938610077, -0.08419225364923477, 0.010983791202306747, -0.035648901015520096,
- 0.10206437110900879, -0.013489645905792713, 0.050285473465919495, -0.053402841091156006,
- -0.013734690845012665, -0.01610197313129902, 0.037564270198345184, -0.04830627143383026,
- 0.06707548350095749, -0.004909846931695938, -0.10074719786643982, 0.046826936304569244,
- 0.04709998890757561, -0.04726000875234604, 0.011551551520824432, 0.032022394239902496,
- 0.05409761890769005, -0.11205077171325684, -0.016613896936178207, -0.019642740488052368,
- -0.011760640889406204, -0.035936594009399414, -0.04371671378612518,
- 0.010132516734302044, 0.05146212503314018, -0.0634496733546257, 0.0031762407161295414,
- 0.023371318355202675, 0.01640975847840309, 0.08998288214206696, -0.0421198233962059,
- 0.05447027459740639, -0.04508016258478165, -0.08180002123117447, 0.07943591475486755,
- 0.05781806260347366, 0.09128273278474808, -0.011494867503643036, 0.008117510005831718,
- -0.05373233184218407, -0.08319718390703201, 0.02779851295053959, 0.09014088660478592,
- 0.014132543466985226, 0.028376488015055656, 0.040898989886045456, -0.03140051290392876,
- 0.0012374026700854301, 0.0845973864197731, 0.04930184781551361, 0.03553156182169914,
- 0.04802301153540611, -0.09959782660007477, -0.040560200810432434, 0.08184107393026352,
- -0.015465807169675827, 0.03321908786892891, 0.009050185792148113, -0.026263682171702385,
- 0.054910287261009216, 0.033631451427936554, 0.05049552395939827, 0.009649614803493023,
- 0.05192878469824791, 0.0016171503812074661, 0.04380597174167633, -0.004164292477071285,
- 0.020428776741027832, -0.009113822132349014, -0.07696706801652908, -0.07308825850486755,
- 0.05351314693689346, 0.07237644493579865, 0.035098597407341, -0.07715078443288803,
- -0.0667240172624588, 0.02602778933942318
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 200,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Catherine Stupp"],
- "epoch_date_downloaded": 1637452800,
- "epoch_date_modified": 1653177600,
- "epoch_date_submitted": 1637452800,
- "flag": null,
- "report_number": 1653,
- "source_domain": "wsj.com",
- "submitters": ["Khoa Lam"],
- "title": "Fraudsters Used AI to Mimic CEO’s Voice in Unusual Cybercrime Case",
- "url": "https://www.wsj.com/articles/fraudsters-use-ai-to-mimic-ceos-voice-in-unusual-cybercrime-case-11567157402"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "extinction-rebellion-belgium",
- "name": "Extinction Rebellion Belgium"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "unknown",
- "name": "Unknown"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "shophie-wilmes",
- "name": "Shophie Wilmès"
- },
- {
- "__typename": "Entity",
- "entity_id": "belgian-government",
- "name": "Belgian government"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1654],
- "vector": [
- -0.03183591738343239, 0.0683078020811081, 0.031192602589726448, -0.10727258771657944,
- 0.062290314584970474, -0.04273013025522232, 0.0336189791560173, 0.07878344506025314,
- 0.10156022757291794, -0.14105187356472015, 0.005819662008434534, 0.03000081144273281,
- -0.009517327882349491, -0.13887692987918854, 0.007432113867253065, -0.1351993829011917,
- -0.06668205559253693, -0.05348740518093109, 0.010875429026782513, -0.08247850090265274,
- -0.07468298077583313, 0.007993526756763458, 0.0024490130599588156, 0.06173890084028244,
- -0.057863082736730576, 0.052198655903339386, 0.019687632098793983, 0.12340966612100601,
- -0.09256446361541748, 0.04698983579874039, -0.0021666253451257944, -0.04312809184193611,
- 0.16325560212135315, 0.012083560228347778, 0.010228518396615982, 0.053257331252098083,
- 0.0029206695035099983, -0.02213442698121071, -0.01549372635781765, -0.01613982766866684,
- 0.01972484216094017, 0.24450308084487915, -0.017465155571699142, -0.017418017610907555,
- 0.05451172962784767, -0.011255590245127678, -0.012510161846876144, 0.009249924682080746,
- 0.032120898365974426, 0.0011808061972260475, -0.010092077776789665,
- 0.040078483521938324, -0.07451600581407547, -0.020736081525683403, -0.07988186180591583,
- 0.07274959981441498, -0.0031758970580995083, 0.02294990047812462, 0.034451138228178024,
- -0.02120814472436905, -0.02035452052950859, -0.20207080245018005, -0.026348644867539406,
- -0.042851973325014114, 0.0737432986497879, -0.09856864809989929, 0.0007560380036011338,
- 0.0662459284067154, 0.02181112766265869, 0.035616304725408554, 0.05601700395345688,
- -0.04813146963715553, 0.0051938858814537525, 0.026726940646767616, 0.04330575466156006,
- -0.013345066457986832, 0.028243958950042725, 0.153056800365448, -0.029921039938926697,
- 0.0067536369897425175, 0.1409362405538559, -0.12061474472284317, 0.2814420461654663,
- -0.04769554361701012, 0.02596699632704258, 0.04589863494038582, 0.10152972489595413,
- 0.019605295732617378, 0.02795352414250374, 0.06368232518434525, -0.010411092080175877,
- 0.09108956158161163, -0.08597791194915771, -0.06062701717019081, 0.031279608607292175,
- 0.02286418527364731, -0.024783417582511902, 0.049599599093198776, -0.000143443321576342,
- -0.07473929971456528, 0.06636828929185867, -0.014221349731087685, 0.11327426880598068,
- 0.10457775741815567, -0.05679817125201225, -0.017788946628570557, 0.02333911880850792,
- -0.07772927731275558, 0.07319121062755585, -0.09147587418556213, 0.016129672527313232,
- 0.021280495449900627, 0.019516268745064735, 0.04842817410826683, 0.03998890891671181,
- -0.06324131786823273, 0.0259438157081604, 0.03153003007173538, 0.0699961930513382,
- 0.044764451682567596, -0.003392559476196766, 0.10762469470500946, 0.055758263915777206,
- -0.034678079187870026, 0.011140831746160984, -0.021741358563303947,
- -0.01927177980542183, -0.02197416126728058, -0.017278427258133888, 0.07508739084005356,
- -0.07046385854482651, -0.21272626519203186, 0.041119784116744995, 0.038387879729270935,
- 0.01719512604176998, -0.015218347311019897, 0.02771391160786152, -0.06203046068549156,
- 0.04444897547364235, -0.018822260200977325, -0.011356177739799023, 0.10599567741155624,
- -0.024828370660543442, 0.03325966000556946, 0.10406043380498886, 0.032395992428064346,
- -0.03669116646051407, -0.06618542969226837, 0.0005763079971075058, -0.05036004260182381,
- 0.1301548033952713, -0.13829448819160461, -0.029266932979226112, -0.005399138666689396,
- 0.0052199228666722775, 0.6149613857269287, 0.1422410011291504, 0.13082367181777954,
- 0.011171414516866207, 0.017400361597537994, 0.1751585155725479, -0.020069502294063568,
- 0.02282590977847576, -0.09826484322547913, -0.08120431751012802, 0.023694433271884918,
- -0.038156695663928986, -0.03441197797656059, 0.020281696692109108,
- -0.011881038546562195, 0.10222756862640381, 0.08771132677793503, 0.033802274614572525,
- -0.00016942963702604175, -0.08583660423755646, -0.001895110821351409,
- 0.037195079028606415, 0.010529149323701859, -0.1329772174358368, -0.035011328756809235,
- 0.11402540653944016, 0.07050786912441254, -0.11310473084449768, -0.04159075766801834,
- -0.03687238693237305, 0.05085424333810806, -0.03000616282224655, 0.07274436950683594,
- -0.02188750170171261, -0.0019226378062739968, 0.03715037181973457, 0.009609357453882694,
- -0.02409411035478115, -0.09786491096019745, 0.007462907582521439, 0.08754326403141022,
- 0.03317899629473686, -0.06922779232263565, 0.13335734605789185, -0.12451811879873276,
- 0.01232698280364275, 0.03167752921581268, 0.16307739913463593, -0.11701734364032745,
- 0.00951840728521347, -0.062454953789711, -0.07576997578144073, 0.08618326485157013,
- 0.0034869650844484568, -0.02964664064347744, -0.05723629891872406, 0.079125314950943,
- 0.08774489909410477, 0.05504867434501648, 0.0376015305519104, -0.040486838668584824,
- 0.05976557359099388, -0.03374504670500755, 0.04958868771791458, -0.09120067209005356,
- 0.06087843328714371, 0.059463147073984146, -0.024433426558971405, -0.08683514595031738,
- 0.010000963695347309, 0.09595131874084473, 0.018262770026922226, 0.017773859202861786,
- 0.03353100270032883, -0.023878956213593483, -0.07264231890439987, 0.06426616758108139,
- 0.03932827338576317, -0.014401779510080814, 0.10560447722673416, -0.10575448721647263,
- -0.0018785317661240697, -0.02345408871769905, 0.02456841617822647, 0.05370341241359711,
- -0.019816402345895767, 0.0477725975215435, 0.12342379242181778, 0.07485958933830261,
- 0.021903235465288162, 0.020429017022252083, 0.049620404839515686, 0.11153794080018997,
- 0.002508740173652768, 0.09403945505619049, 0.005820309277623892, -0.10498343408107758,
- -0.10573261976242065, -0.008512740954756737, -0.00451255775988102, 0.06832829117774963,
- -0.03247687220573425, -0.038842834532260895, -0.008054799400269985,
- 0.005778580904006958, -0.05672939866781235, -0.007942904718220234, 0.06644139438867569,
- 0.06405114382505417, -0.06508728116750717, -0.06372491270303726, -0.1165681704878807,
- 0.02416432648897171, 0.09352413564920425, 0.030780160799622536, -0.034136123955249786,
- -0.12986771762371063, 0.04122329503297806, -0.05812457948923111, 0.053602058440446854,
- 0.0006427995394915342, -0.007745007984340191, 0.01836455427110195,
- -0.034988630563020706, -0.0025364237371832132, -0.014788154512643814,
- -0.010779495351016521, -0.009455423802137375, -0.054821863770484924,
- -0.04382762312889099, -0.03359135612845421, 0.00946416612714529, -0.06380246579647064,
- 0.04352843761444092, 0.06926663219928741, 0.05625326558947563, -0.03195757791399956,
- -0.014734264463186264, 0.023826144635677338, -0.0741489827632904, 0.01677907630801201,
- 0.07943116873502731, -0.06653069704771042, 0.002233827719464898, -0.07310818880796432,
- -0.03754047304391861, -0.07183261215686798, -0.013583483174443245,
- -0.023435069248080254, 0.06061800569295883, -0.03782122954726219,
- -0.0073161316104233265, -0.06129707023501396, -0.050701022148132324,
- 0.10220459848642349, -0.0673714280128479, -0.02237769402563572, -0.06140657141804695,
- 0.12915916740894318, -0.007815372198820114, 0.04260515049099922, -0.05077916383743286,
- -0.07541848719120026, 0.01596624217927456, -0.002847897820174694, 0.007173942867666483,
- 0.03293671831488609, 0.05015384405851364, -0.028558388352394104, -0.006689293310046196,
- 0.08678089082241058, 0.010020805522799492, -0.024847960099577904, 0.06433486193418503,
- 0.41589388251304626, -0.15557029843330383, 0.11205659061670303, 0.09389885514974594,
- 0.03952550143003464, 0.03541155159473419, -0.05787394940853119, 0.0621287077665329,
- 0.05611826851963997, 0.0962832123041153, 0.07303515821695328, -0.06793151795864105,
- -0.001154277939349413, -0.04304785281419754, 0.07754053175449371, 0.013765552081167698,
- 0.028631113469600677, -0.04770227149128914, -0.03669245168566704, -0.017898714169859886,
- -0.01351930946111679, -0.017095625400543213, -0.011535069905221462,
- -0.01701153628528118, -0.0524749793112278, 0.02360696904361248, -0.027432583272457123,
- 0.06745979189872742, -0.008352783508598804, 0.036745335906744, -0.035381514579057693,
- 0.011689772829413414, 0.05217014625668526, 0.061352092772722244, -0.17597563564777374,
- 0.04580195993185043, -0.03349808230996132, -0.11615387350320816, 0.0740184411406517,
- 0.011129563674330711, 0.06601493805646896, 0.03976054489612579, 0.016194410622119904,
- 0.07070420682430267, 0.023709900677204132, -0.021382570266723633, 0.04506312310695648,
- 0.07088325172662735, 0.0032056181225925684, 0.09811306744813919, 0.15549609065055847,
- -0.06104346737265587, 0.0011178737040609121, -0.07780459523200989, 0.08539650589227676,
- 0.1595848649740219, -0.04488184303045273, 0.024774756282567978, 0.05410809442400932,
- 0.03481631726026535, -0.003910354804247618, -0.0553693063557148, -0.04012180492281914,
- -0.017790812999010086, -0.019923826679587364, 0.10661478340625763, 0.015051363967359066,
- -0.045911312103271484, -0.19363975524902344, -0.035393327474594116,
- -0.08273282647132874, 0.0019219612004235387, 0.16056744754314423, -0.05587086081504822,
- 0.02623254992067814, -0.0016340207075700164, -0.0012347205774858594,
- 0.021382005885243416, -0.04679383710026741, 0.009445094503462315, -0.04381755739450455,
- 0.037786196917295456, 0.09489855915307999, 0.013846912421286106, -0.0953051969408989,
- 0.09881582111120224, -0.06414884328842163, 0.05893409624695778, -0.06672167032957077,
- 0.03250763565301895, 0.04832388088107109, -0.00642086286097765, 0.008257338777184486,
- 0.05549443140625954, -0.07218048721551895, 0.013834035024046898, -0.054794665426015854,
- -0.0388823077082634, -0.08670508861541748, -0.07894158363342285, -0.06557686626911163,
- -0.07560963928699493, -0.00234891171567142, -0.13074307143688202,
- -0.0022211032919585705, -0.03256811946630478, 0.0059438166208565235,
- 0.010953985154628754, 0.06680170446634293, 0.03661814332008362, -0.12592211365699768,
- -0.07884128391742706, -0.0028146468102931976, 0.004355659708380699,
- -0.009275916963815689, -0.06777479499578476, 0.002931942930445075, 0.07328552007675171,
- 0.005110836587846279, -0.019217977300286293, 0.04428428038954735, -0.07238619029521942,
- 0.07861249148845673, -0.07785402983427048, -0.45971500873565674, 0.014763076789677143,
- 0.010228674858808517, 0.013880324549973011, 0.026947198435664177, -0.13390055298805237,
- 0.07487881928682327, -0.030699795112013817, 0.006740898359566927, 0.04954969137907028,
- -0.06747884303331375, 0.02828800678253174, -0.01586260460317135, -0.05609885975718498,
- -0.03774441406130791, -0.09340047091245651, -0.0250724907964468, 0.03501913696527481,
- -0.023715119808912277, -0.03569116070866585, -0.06070564314723015, 0.029692944139242172,
- -0.03090585768222809, -0.0076706730760633945, -0.02232573740184307,
- -0.013882294297218323, -0.04336788132786751, -0.02487552911043167, 0.04473746940493584,
- 0.03341740369796753, 0.01714589074254036, -0.07879935950040817, -0.003157789120450616,
- 0.024207189679145813, 0.004960659425705671, 0.12997326254844666, 0.028898421674966812,
- -0.023615345358848572, -0.10307490080595016, 0.04897680506110191, 0.09371142089366913,
- 0.18964166939258575, 0.0035218345001339912, 0.04969967529177666, 0.020223498344421387,
- 0.07856213301420212, 0.006363139487802982, 0.01599510945379734, -0.05963636934757233,
- 0.042592231184244156, 0.04412024840712547, 0.005656770430505276, 0.06892848014831543,
- -0.13189288973808289, -0.02768939547240734, -0.0415772870182991, -0.0031192577444016933,
- -0.0011166176991537213, -0.04169237241148949, 0.15795160830020905, 0.030015207827091217,
- -0.014180898666381836, 0.08204275369644165, 0.001957670785486698, 0.01107881497591734,
- -0.06691483408212662, -0.1189989447593689, 0.006134531460702419, 0.041925761848688126,
- -0.013688044622540474, 0.0036768510472029448, -0.1071004867553711,
- -0.0017379861092194915, 0.04009678587317467, -0.011801122687757015, 0.07045101374387741,
- -0.039548568427562714, 0.00581807317212224, -0.03805844485759735, 0.15131698548793793,
- 0.019837388768792152, 0.03185503929853439, 0.057004500180482864, 0.057498749345541,
- 0.03864208981394768, -0.027149977162480354, -0.019894756376743317, -0.05310020595788956,
- -0.034539949148893356, 0.16611957550048828, -0.051946189254522324, 0.15668873488903046,
- 0.03298377990722656, -0.026915550231933594, -0.0530720017850399, -0.007709866855293512,
- -0.01636739820241928, 0.030221695080399513, -0.4149358570575714, -0.04478670656681061,
- 0.12898561358451843, 0.025900429114699364, 0.06436575949192047, 0.07134991884231567,
- 0.018172448500990868, -0.10316713899374008, -0.06300298869609833, -0.08162517845630646,
- 0.18381226062774658, 0.01130735781043768, 0.048557739704847336, -0.10859861969947815,
- 0.016081934794783592, 0.07160455733537674, -0.06388244777917862, -0.027798401191830635,
- 0.06534983962774277, -0.24654026329517365, -0.025240270420908928, 0.007013682741671801,
- 0.0850382074713707, 0.018279708921909332, 0.04630487039685249, 0.10246635973453522,
- -0.11561502516269684, 0.05454092472791672, 0.047997310757637024, -0.004958481527864933,
- 0.05804736912250519, -0.01612284779548645, -0.04687797278165817, 0.09093205630779266,
- 0.12802864611148834, -0.00970651675015688, -0.02042856067419052, 11.761598587036133,
- 0.0886712446808815, 0.07529313117265701, -0.09258847683668137, -0.02801278792321682,
- -0.02769833244383335, 0.03431817516684532, -0.0959693118929863, 0.09592285752296448,
- 0.06600572913885117, -0.014426294714212418, -0.017481453716754913,
- -0.012695003300905228, -0.10408526659011841, 0.022700689733028412,
- -0.0005698555032722652, 0.009694218635559082, -0.0586567223072052, 0.07236489653587341,
- -0.02113969996571541, -0.021090475842356682, 0.024460159242153168, 0.03365332633256912,
- 0.013082530349493027, -0.057408131659030914, 0.07150956243276596, -0.02507810667157173,
- -0.03116689622402191, -0.056820716708898544, 0.04052527993917465, 0.01297095138579607,
- 0.024081865325570107, 0.06806942820549011, 0.0028043524362146854, 0.036190908402204514,
- 0.009512790478765965, 0.042398691177368164, 0.030506150797009468, 0.010746640153229237,
- 0.11709209531545639, -0.016981786116957664, 0.01448197104036808, 0.0003306347061879933,
- 0.0868447870016098, 0.06243961304426193, 0.037140585482120514, 0.045292384922504425,
- 0.13749638199806213, -0.02132081240415573, 0.05370871722698212, 0.08117188513278961,
- -0.045311830937862396, 0.086403027176857, 0.008410206064581871, 0.008236942812800407,
- 0.046437110751867294, -0.03992777317762375, -0.10916072130203247, 0.07401026785373688,
- 0.07626016438007355, -0.01753190904855728, 0.08011027425527573, 0.019568730145692825,
- 0.12302481383085251, -0.026027856394648552, 0.06308948993682861, 0.04760389402508736,
- 0.11419449001550674, -0.09861413389444351, -0.03886430710554123, 0.003671734593808651,
- -0.05836344510316849, -0.04025455564260483, 0.04346922039985657, 0.056470125913619995,
- -0.017995458096265793, 0.04833120480179787, 0.007484116591513157, 0.08626960963010788,
- -0.04435914382338524, 0.016244804486632347, -0.0033773931208997965,
- -0.07688533514738083, 0.04752939194440842, -0.03040507808327675, 0.036358822137117386,
- 0.15481162071228027, 0.04805350303649902, 0.03541136160492897, -0.08505672961473465,
- -0.07354305684566498, 0.10830755531787872, -0.05531958118081093, -0.05114389955997467,
- 0.013100884854793549, -0.05648835375905037, -0.013185329735279083, -0.17463691532611847,
- 0.09457450360059738, 0.07703275233507156, -0.06073342636227608, 0.01250244490802288,
- -0.0024349293671548367, 0.11169356107711792, 0.01509202178567648, -0.002136883558705449,
- -0.08609706163406372, 0.010552829131484032, -0.025859417393803596, 0.051687780767679214,
- -0.08425819873809814, 0.06011737138032913, 0.07404296845197678, -0.029570475220680237,
- 0.04549191892147064, 0.0651659369468689, -0.03613990917801857, -0.040924280881881714,
- 0.07681635022163391, -0.012011818587779999, -0.11467904597520828, -0.006974788382649422,
- -0.039945486932992935, -0.08221765607595444, -0.05461401864886284, -0.07220913469791412,
- 0.027251098304986954, 0.002094320487231016, -0.012538962066173553, 0.036967821419239044,
- 0.01969810575246811, 0.05599294975399971, 0.092173270881176, -0.020839622244238853,
- 0.051741987466812134, -0.02409103326499462, -0.05231156945228577, 0.07347072660923004,
- 0.02003803662955761, 0.054866138845682144, -0.09997966140508652, -0.0007582803373225033,
- -0.06746058911085129, -0.07553693652153015, 0.035387586802244186, 0.06575710326433182,
- 0.028038863092660904, 0.030594661831855774, 0.01648613065481186, 0.005233027972280979,
- 0.059371136128902435, 0.09741408377885818, 0.03483717143535614, -0.005422919988632202,
- 0.08401749283075333, -0.031870629638433456, -0.01558134239166975, 0.10336155444383621,
- 0.0022838767617940903, -0.023271018639206886, -0.010399184189736843,
- -0.007908323779702187, 0.07032358646392822, 0.06360728293657303, 0.04168742522597313,
- -0.015556653961539268, 0.023851744830608368, 0.04082582890987396, 0.005174712277948856,
- 0.0239477027207613, 0.014386606402695179, -0.01820448413491249, -0.008043136447668076,
- -0.07650576531887054, 0.03746689110994339, 0.06348884105682373, 0.06304893642663956,
- -0.11870438605546951, 0.021889878436923027, -0.05823009833693504
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 201,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Alexander Puutio", "David Alexandru Timis"],
- "epoch_date_downloaded": 1633305600,
- "epoch_date_modified": 1633305600,
- "epoch_date_submitted": 1633305600,
- "flag": null,
- "report_number": 2435,
- "source_domain": "weforum.org",
- "submitters": ["Kate Perkins"],
- "title": "Deepfake democracy: Here's how modern elections could be decided by fake news",
- "url": "https://www.weforum.org/agenda/2020/10/deepfake-democracy-could-modern-elections-fall-prey-to-fiction/"
- },
- {
- "__typename": "Report",
- "authors": ["Gabriela Galindo"],
- "epoch_date_downloaded": 1633305600,
- "epoch_date_modified": 1653177600,
- "epoch_date_submitted": 1633305600,
- "flag": null,
- "report_number": 1654,
- "source_domain": "brusselstimes.com",
- "submitters": ["Kate Perkins"],
- "title": "XR Belgium posts deepfake of Belgian premier linking Covid-19 with climate crisis",
- "url": "https://www.brusselstimes.com/news/belgium-all-news/politics/106320/xr-belgium-posts-deepfake-of-belgian-premier-linking-covid-19-with-climate-crisis/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "yoon-suk-yeol's-campaign",
- "name": "Yoon Suk-yeol's campaign"
- },
- {
- "__typename": "Entity",
- "entity_id": "yoon-suk-yeol",
- "name": "Yoon Suk-yeol"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "unknown",
- "name": "Unknown"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "korean-public",
- "name": "Korean public"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1721, 1658, 1657, 1656, 1655],
- "vector": [
- -0.056627459824085236, 0.09131097793579102, 0.03856489807367325, -0.12616565823554993,
- 0.08128054440021515, -0.005260954145342112, -0.003646198660135269, 0.07458709180355072,
- 0.11155563592910767, -0.12417600303888321, 0.044699423015117645, 0.039340484887361526,
- 0.024352695792913437, -0.10318373143672943, 0.028702879324555397, -0.04421011731028557,
- -0.04623967409133911, -0.009421479888260365, -0.037367578595876694,
- -0.10242275893688202, -0.06545869261026382, -0.006444537080824375,
- -0.011565963737666607, 0.06382766366004944, -0.1149483174085617, 0.025335421785712242,
- 0.0781559869647026, 0.10468435287475586, -0.0694945827126503, 0.029903661459684372,
- -0.04252921789884567, -0.07958907634019852, 0.14080385863780975, 0.04114605486392975,
- -0.0010154887568205595, 0.08546431362628937, 0.005207418464124203, 0.041728802025318146,
- 0.022921577095985413, -0.022331831976771355, 0.0238427072763443, 0.2247237265110016,
- -0.004595292266458273, -0.03462270274758339, 0.06268849968910217, -0.030191466212272644,
- -0.010020739398896694, 0.04645257443189621, -0.019089818000793457, 0.040797024965286255,
- 0.010879057459533215, 0.01037576887756586, -0.06062953546643257, 0.04385846480727196,
- -0.0745461955666542, 0.055708445608615875, 0.03066692128777504, 0.018374305218458176,
- 0.06039653345942497, -0.0760304182767868, 0.004438330419361591, -0.22194509208202362,
- -0.01997045800089836, -0.07439884543418884, 0.05259653925895691, -0.07473164796829224,
- -0.07477568835020065, 0.03556859493255615, 0.06256193667650223, 0.049062248319387436,
- 0.03137188404798508, -0.03713347762823105, -0.0069697522558271885, 0.022722754627466202,
- -0.02481165900826454, -0.0235038660466671, -0.002924335189163685, 0.16974008083343506,
- -0.08753712475299835, -0.0134822903200984, 0.13273151218891144, -0.10244183242321014,
- 0.3505045473575592, 0.04399748146533966, -0.020266402512788773, 0.01724100485444069,
- 0.1060691624879837, 0.023046212270855904, 0.04034228250384331, 0.042053479701280594,
- -0.018657082691788673, 0.029012631624937057, -0.07779402285814285,
- -0.008907635696232319, 0.045814644545316696, 0.04871146008372307, 0.007293994072824717,
- 0.06461201608181, -0.01256647426635027, -0.06978707760572433, -0.012131745927035809,
- -0.008845075033605099, 0.10552694648504257, 0.06385543197393417, -0.06189056485891342,
- -0.017849748954176903, 0.0663394182920456, -0.09857100248336792, 0.06697149574756622,
- -0.08172285556793213, 0.04202834889292717, 0.001416418352164328, 0.04775206744670868,
- -0.00875991303473711, -0.011043589562177658, -0.06723853200674057, 0.027379170060157776,
- 0.030240317806601524, 0.05912424251437187, 0.0367504358291626, -0.01059369370341301,
- 0.0701666846871376, 0.07984782755374908, -0.08264001458883286, 0.0014361587818711996,
- -0.07335442304611206, -0.06249188631772995, -0.02040736936032772, -0.05299743264913559,
- 0.046369586139917374, -0.030761593952775, -0.15257412195205688, 0.032221004366874695,
- 0.04364391043782234, 0.02931101620197296, -0.03497142344713211, 0.03318893164396286,
- -0.03317058086395264, 0.057960253208875656, -0.042736876755952835,
- -0.035064492374658585, 0.08058198541402817, 0.05976194143295288, 0.013340922072529793,
- 0.13190169632434845, 0.03851254656910896, -0.030522093176841736, -0.07435306161642075,
- -0.020852690562605858, -0.004710790701210499, 0.10017991065979004, -0.15465830266475677,
- -0.03546978533267975, -0.016940969973802567, -0.0035141974221915007, 0.6424463391304016,
- 0.07228779792785645, 0.18874070048332214, 0.020598407834768295, -0.03386961668729782,
- 0.15532128512859344, 0.03309854492545128, 0.05937030166387558, -0.09129466116428375,
- -0.009751914069056511, 0.032419007271528244, -0.0362233892083168, -0.015526617877185345,
- -0.0012663619127124548, -0.010701346211135387, 0.07636325061321259,
- -0.007153348531574011, 0.08135668188333511, -0.0038145743310451508,
- -0.10439610481262207, -0.058651912957429886, 0.007391937077045441, 0.012478121556341648,
- -0.0931147038936615, -0.028629640117287636, 0.02645120583474636, 0.07406367361545563,
- -0.08978797495365143, -0.026614759117364883, -0.0503624752163887, 0.02933063544332981,
- -0.014420710504055023, 0.06863678991794586, -0.015773054212331772, 0.0259854793548584,
- 0.02498135343194008, 0.006598903331905603, -0.014693262986838818, -0.07578398287296295,
- -0.04733873903751373, 0.07475249469280243, -0.019627440720796585, -0.024732720106840134,
- 0.06854499876499176, -0.08253784477710724, 0.027381490916013718, -0.02877151407301426,
- 0.14987441897392273, -0.07584827393293381, 0.02861160598695278, -0.0072476984933018684,
- -0.05748967453837395, 0.0807936042547226, 0.016911184415221214, -0.05583121255040169,
- -0.04717911407351494, 0.07185186445713043, 0.05736905336380005, 0.06345875561237335,
- 0.012557740323245525, -0.008466430008411407, 0.0681009516119957, 0.03943246603012085,
- 0.024430179968476295, -0.052213918417692184, 0.059118472039699554, 0.041037239134311676,
- -0.1049918681383133, -0.020876089110970497, -0.006706425454467535,
- -0.006135765463113785, 0.0201023630797863, -0.020976336672902107, 0.03839237987995148,
- -0.012472663074731827, -0.03806402534246445, 0.02697882615029812, 0.0394277460873127,
- 0.02967553213238716, 0.07452365756034851, -0.06669624149799347, -0.041958436369895935,
- -0.045469317585229874, -0.009512653574347496, 0.0141205545514822, -0.030634084716439247,
- 0.043998632580041885, 0.07514429092407227, 0.03394163027405739, 0.0840219184756279,
- 0.016086718067526817, 0.05407729744911194, 0.12188281863927841, 0.0415072925388813,
- 0.1315101981163025, -0.021807996556162834, -0.053526025265455246, -0.05441495031118393,
- -0.010120829567313194, -0.010924888774752617, 0.017281536012887955,
- -0.09444371610879898, -0.02272064797580242, -0.04958357661962509, -0.07142619043588638,
- -0.05263881757855415, 0.0036883025895804167, 0.04939565807580948, 0.061823535710573196,
- -0.04062757268548012, -0.10718701034784317, -0.07696156203746796, 0.025965383276343346,
- 0.0868869200348854, -0.03323585167527199, -0.041733406484127045, -0.10601385682821274,
- 0.04777418076992035, -0.057877324521541595, 0.043432921171188354, -0.002898529637604952,
- 0.0025772484950721264, -0.04386836662888527, -0.09175332635641098, 0.05179513618350029,
- 0.012058405205607414, 0.021986817941069603, 0.05215854197740555, -0.050958383828401566,
- -0.04051825776696205, -0.025786101818084717, 0.007327444851398468, -0.03584451600909233,
- 0.02369481697678566, 0.024011155590415, 0.0721459835767746, 0.016944393515586853,
- -0.022653410211205482, 0.02917703427374363, -0.07029179483652115, -0.024144193157553673,
- 0.11451993882656097, -0.0366404727101326, -0.02187163755297661, -0.03677366301417351,
- -0.06577584147453308, -0.06640709936618805, 0.03352787718176842, -0.06398914009332657,
- 0.05818537622690201, -0.030734136700630188, 0.001983342692255974, -0.0219990573823452,
- -0.015124091878533363, 0.08180814236402512, -0.046010322868824005, -0.06002948433160782,
- -0.0704401507973671, 0.09173739701509476, -0.02365826815366745, -0.021534204483032227,
- 0.032096561044454575, -0.03996957093477249, 0.03987415134906769, 0.01276617031544447,
- 0.03623116761445999, 0.0068970643915236, 0.04271610826253891, 0.006139662116765976,
- 0.021128971129655838, 0.044955551624298096, -0.04366235062479973, 0.03576282784342766,
- 0.07928279787302017, 0.4429200291633606, -0.1649044305086136, 0.06905689835548401,
- 0.10861334949731827, 0.01847732998430729, 0.051244985312223434, -0.049323536455631256,
- 0.0700756087899208, 0.044997043907642365, 0.12044896185398102, 0.12384490668773651,
- -0.032908953726291656, -0.023346729576587677, -0.050777263939380646,
- 0.09599976241588593, 0.014520524069666862, 0.06499892473220825, -0.057569969445466995,
- -0.0663842260837555, -0.043342895805835724, 0.009612958878278732, -0.0679549127817154,
- 0.008465707302093506, 0.0021017289254814386, -0.04209762066602707, 0.014241734519600868,
- 0.05173102766275406, 0.06961299479007721, -0.018765922635793686, 0.04134051501750946,
- -0.0382532998919487, 0.0657346248626709, 0.05470765754580498, 0.06456609070301056,
- -0.14378349483013153, 0.006677529308944941, -0.063479945063591, -0.11108849942684174,
- 0.07874871790409088, 0.019540399312973022, 0.0768493264913559, 0.06574749201536179,
- -0.055847734212875366, 0.062058549374341965, -0.018797028809785843,
- -0.013692942447960377, 0.019182758405804634, 0.055169034749269485, 0.017735587432980537,
- 0.09243227541446686, 0.115847148001194, -0.029135316610336304, -0.027742421254515648,
- -0.08579070121049881, 0.05883440375328064, 0.1288326233625412, 0.004120687488466501,
- 0.036567073315382004, -0.0075742872431874275, -0.031730327755212784,
- -0.020304057747125626, -0.05847027152776718, -0.0396062470972538, -0.03137422725558281,
- -0.06750790029764175, 0.08357959985733032, 0.028479162603616714, -0.03738373517990112,
- -0.13933059573173523, -0.022088518366217613, -0.04891931638121605,
- -0.007402364164590836, 0.10319717228412628, -0.03862747922539711, 0.00926643144339323,
- -0.007360507734119892, -0.059036094695329666, -0.0018847975879907608,
- -0.10198509693145752, -0.001270915032364428, -0.021959815174341202,
- 0.0058609177358448505, 0.06455974280834198, 0.03219335153698921, -0.02166186273097992,
- 0.08856742084026337, -0.09313839673995972, 0.010044028982520103, -0.011932323686778545,
- -0.027627045288681984, 0.048008378595113754, -0.04172830656170845, 0.028236007317900658,
- 0.04682711884379387, -0.08870333433151245, -0.0010552942985668778,
- -0.055488042533397675, -0.040243782103061676, -0.05962812155485153,
- -0.06479892879724503, -0.021921653300523758, -0.08101842552423477,
- 0.0019628654699772596, -0.0816589742898941, -0.0014444608241319656,
- -0.05509152263402939, 0.007439573295414448, -0.03215240687131882, 0.040739428251981735,
- 0.01643083617091179, -0.10201163589954376, -0.043941061943769455, -0.01910017803311348,
- 0.03105732426047325, -0.0074482262134552, -0.10550123453140259, 0.01822419837117195,
- 0.07616718113422394, 0.06777959316968918, -0.054290033876895905, 0.0016165536362677813,
- -0.048825453966856, 0.07476215809583664, -0.09696599096059799, -0.48876065015792847,
- 0.07522374391555786, 0.04788007214665413, 0.03844578564167023, 0.016728201881051064,
- -0.06853888928890228, 0.04305865615606308, 0.023002391681075096, -0.018757574260234833,
- 0.06554873287677765, -0.026610832661390305, 0.018208380788564682, -0.016902273520827293,
- -0.057288385927677155, -0.0030211354605853558, -0.07590560615062714,
- -0.009405593387782574, 0.07058675587177277, 0.012805785052478313, -0.07422495633363724,
- -0.08050069212913513, 0.022452756762504578, -0.04123220965266228, 0.03214240446686745,
- -0.014245262369513512, 0.004463376943022013, -0.02826373651623726,
- -0.024406971409916878, 0.04320476949214935, 0.04793185740709305, 0.027277493849396706,
- -0.09658154845237732, -0.015551154501736164, 0.0405602864921093,
- -0.00026367203099653125, 0.123529814183712, -0.002485118806362152, 0.024279173463582993,
- -0.08567190915346146, 0.06988660991191864, 0.07024862617254257, 0.18725937604904175,
- 0.01744883693754673, 0.02464831806719303, 0.025577763095498085, 0.12786152958869934,
- 0.03798063471913338, 0.01678440347313881, -0.011187334544956684, 0.02114180661737919,
- 0.02745453082025051, -0.02021779492497444, 0.052281953394412994, -0.10011740028858185,
- -0.03566703200340271, -0.005283305887132883, -0.01668541133403778, -0.04435800388455391,
- 0.02915799617767334, 0.18343353271484375, 0.017513327300548553, -0.0007833277923054993,
- 0.044830381870269775, -0.04129400476813316, 0.02122834138572216, -0.07692445814609528,
- -0.0694490373134613, -0.01098922360688448, -0.02518383227288723, -0.0025623575784265995,
- -0.03623576834797859, -0.09022913873195648, -0.026314279064536095, 0.030070548877120018,
- 0.02185836061835289, 0.0793537050485611, 0.031571339815855026, -0.0054415324702858925,
- -0.024576133117079735, 0.1010969877243042, 0.028931165114045143, 0.010992986150085926,
- 0.027438348159193993, 0.07057943940162659, -0.004502545110881329, -0.02825205959379673,
- -0.010003341361880302, -0.09683857858181, -0.014091020449995995, 0.14776000380516052,
- -0.03285733610391617, 0.10497695207595825, 0.051769159734249115, -0.0172714963555336,
- -0.014460861682891846, 0.019667943939566612, -0.009362122043967247,
- 0.003523790743201971, -0.4410555958747864, -0.0035820133052766323, 0.08566226810216904,
- -0.0008226580685004592, 0.00019849184900522232, 0.04813022166490555,
- 0.04881714656949043, -0.02791384980082512, -0.00014761350757908076, -0.0626463070511818,
- 0.15273210406303406, -0.010767231695353985, 0.05999283865094185, -0.11239615827798843,
- 0.03290526941418648, 0.06720644235610962, -0.06103428080677986, 0.00921141728758812,
- 0.0052077313885092735, -0.23337197303771973, -0.00036272965371608734,
- -0.027329543605446815, 0.15937110781669617, 0.0019838474690914154, 0.016486424952745438,
- 0.07554380595684052, -0.023455586284399033, 0.029756659641861916, 0.08170502632856369,
- 0.02801983430981636, 0.04256470873951912, -0.04255244880914688, 0.011006433516740799,
- 0.11073000729084015, 0.0868818610906601, 0.05108519643545151, 0.004195948131382465,
- 11.915267944335938, 0.04856143891811371, 0.0797710046172142, -0.09698529541492462,
- 0.010972043499350548, -0.06189917400479317, 0.03443373367190361, -0.09364209324121475,
- 0.03610636666417122, 0.11063031852245331, 0.022071421146392822, -0.061944253742694855,
- 0.02253805100917816, -0.07445193827152252, 0.0064201876521110535, -0.05511707812547684,
- -0.014974717982113361, -0.03897897154092789, 0.05542712286114693, -0.03012632392346859,
- -0.0310809426009655, 0.0380387082695961, 0.012813514098525047, 0.04284331947565079,
- -0.07652119547128677, 0.03060770593583584, -0.004592301789671183, 0.014988109469413757,
- -0.012600322254002094, 0.05918358638882637, 0.04652916267514229, 0.05591636151075363,
- 0.06795516610145569, 0.03144834190607071, 0.038152873516082764, 0.03794536739587784,
- 0.03531010448932648, 0.044255126267671585, -0.006638680584728718, 0.1054978147149086,
- 0.01011625211685896, -0.009682945907115936, 0.017428241670131683, 0.0485868975520134,
- 0.06335829198360443, 0.03678993135690689, 0.054920244961977005, 0.1190664991736412,
- -0.0024376572109758854, 0.06565575301647186, 0.09613536298274994, -0.013472137041389942,
- 0.07523859292268753, 0.050507672131061554, 0.02599790133535862, 0.07848341763019562,
- -0.004469307139515877, -0.08428694307804108, 0.12366865575313568, 0.06213469058275223,
- -0.0442037470638752, 0.13435755670070648, 0.011591950431466103, 0.09455250203609467,
- -0.01278003491461277, 0.06558220088481903, 0.05575300380587578, 0.09838558733463287,
- -0.08352990448474884, -0.09103557467460632, 0.039444901049137115, -0.08129043132066727,
- -0.09513553977012634, 0.013087479397654533, 0.059500206261873245, -0.050826989114284515,
- 0.04175320267677307, -0.061993636190891266, 0.05415274575352669, -0.02999274991452694,
- 0.00005718194734072313, 0.04666264355182648, -0.04169374704360962, 0.018779797479510307,
- 0.02694929763674736, 0.05779263377189636, 0.06819462031126022, 0.05692748352885246,
- 0.023804757744073868, -0.04643366485834122, -0.07663939893245697, 0.0744461864233017,
- -0.02340693026781082, -0.03420650213956833, 0.027812356129288673, -0.03154992312192917,
- 0.006983647588640451, -0.18846917152404785, 0.07586000114679337, 0.122442327439785,
- -0.12523165345191956, -0.019962456077337265, -0.01311713457107544, 0.06550233066082001,
- 0.008894594386219978, 0.06019078567624092, -0.036210332065820694, 0.0002197615831391886,
- 0.02614302933216095, 0.03208848461508751, -0.03807468339800835, 0.04085599631071091,
- 0.0589032843708992, -0.0920267105102539, 0.008755777962505817, 0.04767671227455139,
- -0.03433244302868843, 0.019981473684310913, 0.04120359942317009, 0.010500052012503147,
- -0.060427188873291016, -0.025082385167479515, -0.035192668437957764,
- -0.03941242769360542, -0.024400459602475166, -0.03013249672949314,
- 0.0018962103640660644, 0.006453323177993298, -0.025173703208565712,
- -0.009032412432134151, 0.04897609353065491, 0.06559139490127563, 0.0839482843875885,
- 0.0009292945032939315, 0.05275804549455643, -0.05058509111404419, -0.049664516001939774,
- 0.06309191137552261, 0.05637931823730469, 0.06821932643651962, -0.019001681357622147,
- -0.029923614114522934, -0.009677055291831493, -0.11396398395299911,
- 0.029637420549988747, 0.07247836142778397, 0.031793393194675446, 0.02494720183312893,
- 0.04229788854718208, -0.044412750750780106, -0.014704300090670586, 0.04917149990797043,
- 0.027268553152680397, 0.026826035231351852, 0.041045237332582474, -0.060924649238586426,
- -0.04236801713705063, 0.11568722873926163, -0.020989369601011276, -0.011865245178341866,
- -0.04886762052774429, 0.00028071552515029907, 0.15519240498542786, 0.060106318444013596,
- 0.022406423464417458, 0.031390588730573654, -0.015317822806537151, 0.02840258739888668,
- 0.07177044451236725, -0.003746441099792719, 0.025966307148337364, -0.019151415675878525,
- -0.07494820654392242, -0.0820537582039833, 0.014268426224589348, 0.05263974517583847,
- 0.031147411093115807, -0.11135399341583252, -0.036057550460100174, -0.04071113094687462
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 202,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Nam Hyun-woo"],
- "epoch_date_downloaded": 1654128000,
- "epoch_date_modified": 1654473600,
- "epoch_date_submitted": 1654128000,
- "flag": null,
- "report_number": 1721,
- "source_domain": "koreatimes.co.kr",
- "submitters": ["AIAAIC"],
- "title": "Presidential candidates' computer-generated avatars heat up debate",
- "url": "https://www.koreatimes.co.kr/www/nation/2021/12/356_320192.html"
- },
- {
- "__typename": "Report",
- "authors": ["Jo He-rim"],
- "epoch_date_downloaded": 1653264000,
- "epoch_date_modified": 1654041600,
- "epoch_date_submitted": 1653350400,
- "flag": null,
- "report_number": 1658,
- "source_domain": "koreaherald.com",
- "submitters": ["AIAAIC"],
- "title": "[Election 2022] AI spokesman, avatars enter election campaigns",
- "url": "http://www.koreaherald.com/view.php?ud=20211208000709"
- },
- {
- "__typename": "Report",
- "authors": ["Alma Fabiani"],
- "epoch_date_downloaded": 1653264000,
- "epoch_date_modified": 1654041600,
- "epoch_date_submitted": 1653350400,
- "flag": null,
- "report_number": 1657,
- "source_domain": "screenshot-media.com",
- "submitters": ["AIAAIC"],
- "title": "In South Korea, AI deepfakes of politicians are being used to win the hearts of the people",
- "url": "https://screenshot-media.com/technology/ai/south-korea-deepfakes-politicians/"
- },
- {
- "__typename": "Report",
- "authors": ["Agence France-Presse"],
- "epoch_date_downloaded": 1653264000,
- "epoch_date_modified": 1654041600,
- "epoch_date_submitted": 1653350400,
- "flag": null,
- "report_number": 1656,
- "source_domain": "scmp.com",
- "submitters": ["AIAAIC"],
- "title": "Is South Korean the world’s first official deepfake candidate?",
- "url": "https://www.scmp.com/news/asia/east-asia/article/3166928/south-korean-worlds-first-official-deepfake-candidate-meet-ai"
- },
- {
- "__typename": "Report",
- "authors": ["Timothy W. Martin", " Dasl Yoon"],
- "epoch_date_downloaded": 1653264000,
- "epoch_date_modified": 1654041600,
- "epoch_date_submitted": 1653350400,
- "flag": null,
- "report_number": 1655,
- "source_domain": "wsj.com",
- "submitters": ["AIAAIC"],
- "title": "These Campaigns Hope ‘Deepfake’ Candidates Help Get Out the Vote",
- "url": "https://www.wsj.com/articles/these-campaigns-hope-deepfake-candidates-help-get-out-the-vote-11646756345"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "uber",
- "name": "Uber"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "uber",
- "name": "Uber"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "uber-drivers",
- "name": "Uber drivers"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1661, 1660, 1659],
- "vector": [
- -0.07028400152921677, 0.08183810859918594, -0.00012189374683657661,
- -0.12161695957183838, 0.05723037198185921, -0.012740932404994965, -0.012224714271724224,
- 0.04968972131609917, 0.06529739499092102, -0.15378211438655853, 0.01416629645973444,
- 0.02828516624867916, 0.05063120648264885, -0.08180510997772217, 0.039217397570610046,
- -0.07241017371416092, -0.07627922296524048, -0.03733985126018524, 0.007495137397199869,
- -0.12980593740940094, -0.10301458835601807, -0.029233047738671303, 0.03810812905430794,
- 0.11429804563522339, -0.08781701326370239, 0.03042139671742916, 0.07262817770242691,
- 0.12198085337877274, 0.009696436114609241, 0.04320523142814636, -0.05157306790351868,
- -0.10378404706716537, 0.14013786613941193, 0.038605522364377975, -0.021638482809066772,
- 0.08248002082109451, -0.01041446253657341, -0.03853074833750725, -0.007499143481254578,
- 0.024123234674334526, 0.05851997062563896, 0.28339120745658875, 0.015757067129015923,
- -0.004320869687944651, 0.051833271980285645, -0.04957011342048645, 0.007963189855217934,
- 0.047216832637786865, 0.0011641556629911065, 0.02831798978149891, -0.031099587678909302,
- 0.08950742334127426, -0.025638746097683907, 0.0569433718919754, -0.1215272769331932,
- -0.004063377622514963, 0.05056699737906456, 0.015806633979082108, 0.03748660162091255,
- -0.11672002822160721, -0.03668205067515373, -0.19973023235797882, -0.0304032564163208,
- -0.06398805975914001, 0.09202597290277481, -0.06696407496929169, -0.04760926589369774,
- 0.030547307804226875, -0.016397956758737564, 0.08701316267251968, 0.07329680770635605,
- -0.01944742165505886, -0.02148502506315708, 0.001739171682856977, -0.023181436583399773,
- -0.02578609623014927, -0.0023138870019465685, 0.16010162234306335, -0.1195453628897667,
- -0.020624076947569847, 0.11623513698577881, -0.07522528618574142, 0.4383625090122223,
- 0.018139773979783058, -0.021902451291680336, -0.04241302236914635, 0.0787026658654213,
- 0.08015114814043045, 0.07519976049661636, 0.05878501012921333, -0.04173588752746582,
- 0.03294595703482628, -0.07286006957292557, -0.013991318643093109, 0.08880049735307693,
- 0.03225944936275482, -0.021072113886475563, 0.04610719904303551, -0.0070836483500897884,
- -0.11069973558187485, 0.022509999573230743, -0.04906001314520836, 0.13139711320400238,
- 0.04826512560248375, -0.04502144828438759, -0.013259731233119965, 0.11031607538461685,
- -0.02927771769464016, 0.019402066245675087, -0.048872578889131546,
- 0.0057420264929533005, 0.006551674101501703, 0.061854343861341476, 0.004017848055809736,
- 0.024895837530493736, -0.06943700462579727, -0.005820888560265303, 0.06131666526198387,
- 0.09109988808631897, 0.03477559611201286, 0.009543679654598236, 0.0730157122015953,
- 0.04031592980027199, -0.05110812187194824, -0.008481290191411972, -0.026783166453242302,
- -0.06164741516113281, -0.017142588272690773, -0.05825045332312584, 0.04955035448074341,
- -0.05369419977068901, -0.18537773191928864, -0.025071797892451286, 0.12254633754491806,
- -0.021656395867466927, -0.039028018712997437, -0.039621502161026, -0.05364421382546425,
- 0.03763609752058983, -0.03303191438317299, 0.0005431038443930447, 0.02254575490951538,
- 0.007597699761390686, 0.05454285442829132, 0.1642734408378601, 0.06690075993537903,
- -0.0539100281894207, -0.03707744926214218, 0.02348674088716507, -0.05144493654370308,
- 0.1273021548986435, -0.1189919039607048, -0.03345487639307976, 0.030816325917840004,
- -0.03762325271964073, 0.7267929911613464, 0.07072330266237259, 0.20650272071361542,
- -0.013935841619968414, -0.024472704157233238, 0.17711792886257172, 0.002792835235595703,
- 0.08272180706262589, -0.08332512527704239, -0.07403814047574997, 0.03067827969789505,
- -0.10868176817893982, -0.05704937502741814, -0.006802517920732498,
- -0.009295230731368065, 0.12423023581504822, 0.050646793097257614, 0.0933498740196228,
- -0.00695417495444417, -0.09258383512496948, -0.02342599630355835, 0.09845786541700363,
- 0.029729118570685387, -0.10904278606176376, -0.016707515344023705, 0.05774427577853203,
- 0.09207290410995483, -0.07308560609817505, 0.02251657098531723, -0.06984428316354752,
- 0.04742716625332832, -0.01493080984801054, 0.04947507381439209, -0.030794253572821617,
- 0.06834232062101364, 0.014866883866488934, 0.09337636083364487, 0.030481621623039246,
- -0.12138935178518295, -0.033651042729616165, 0.15871940553188324, 0.018209893256425858,
- -0.0368916355073452, 0.07787420600652695, -0.09283941239118576, 0.07023507356643677,
- 0.02431759238243103, 0.1975591629743576, -0.10178966075181961, -0.012844341807067394,
- -0.014365795999765396, 0.00781351700425148, 0.0609082393348217, -0.003990949597209692,
- -0.09785685688257217, -0.03975726664066315, 0.0710039809346199, 0.016556577757000923,
- 0.10879126191139221, 0.08542466908693314, -0.05188794434070587, 0.0017299405299127102,
- 0.10435742884874344, 0.04557052254676819, -0.019459931179881096, 0.07676095515489578,
- 0.05022265389561653, -0.10889504104852676, -0.017956120893359184,
- -0.0077873170375823975, 0.06701728701591492, 0.04427574202418327, -0.026578634977340698,
- 0.0548531711101532, -0.005071084946393967, -0.0613192617893219, -0.0038582945708185434,
- 0.0575227253139019, 0.03292061388492584, 0.13068297505378723, -0.029403023421764374,
- -0.020599642768502235, -0.015777762979269028, -0.005039406940340996,
- 0.03848191350698471, -0.016084184870123863, 0.07393104583024979, 0.07631240040063858,
- 0.07566530257463455, 0.022478431463241577, 0.06842774897813797, 0.07200435549020767,
- -0.034652166068553925, 0.04503783956170082, 0.08613047748804092, -0.056907761842012405,
- -0.05919346585869789, -0.01829036884009838, 0.0034011814277619123, 0.025919772684574127,
- 0.03033236227929592, -0.06799586862325668, -0.02978920191526413, -0.07964114099740982,
- -0.0728340819478035, -0.07467412203550339, -0.039722900837659836, -0.010497449897229671,
- 0.0689135193824768, -0.03275342658162117, -0.11635719984769821, -0.09677640348672867,
- 0.014986674301326275, 0.08281445503234863, -0.009220831096172333, -0.027331290766596794,
- -0.13547451794147491, -0.009603694081306458, -0.03793586790561676, 0.06778756529092789,
- -0.0044077858328819275, -0.015246090479195118, 0.005900694523006678,
- -0.02835671603679657, 0.039676349610090256, -0.012916025705635548,
- -0.007964735850691795, -0.09052779525518417, -0.05946086347103119, -0.03223010152578354,
- 0.05130770802497864, 0.03247464820742607, -0.07977909594774246, 0.02719263732433319,
- 0.056170299649238586, 0.050174813717603683, 0.006454425398260355, -0.02912474423646927,
- 0.05586085841059685, -0.009565123356878757, -0.053712595254182816, 0.07446655631065369,
- 0.007610565051436424, 0.05303097888827324, -0.010576446540653706, -0.07617709785699844,
- -0.05175622180104256, 0.03317755088210106, -0.08707791566848755, 0.0508095808327198,
- -0.015832150354981422, 0.024144018068909645, -0.06016505882143974,
- -0.002363023580983281, 0.043989282101392746, -0.05061602219939232, -0.09281165152788162,
- -0.08768560737371445, 0.1297183781862259, 0.004455899354070425, -0.010189677588641644,
- 0.0302432868629694, -0.06509964168071747, 0.05749509856104851, -0.016289183869957924,
- 0.008436971344053745, 0.03503812476992607, 0.01685851253569126, -0.009576377458870411,
- 0.03583512082695961, 0.04149651899933815, -0.02642560750246048, 0.018621565774083138,
- 0.0826234295964241, 0.4299872815608978, -0.15614651143550873, 0.0927259549498558,
- 0.11178270727396011, 0.020434435456991196, 0.06820294260978699, -0.0386773981153965,
- 0.06548474729061127, 0.08649606257677078, 0.13247635960578918, 0.14029516279697418,
- -0.04107372835278511, -0.048913225531578064, -0.09579974412918091, 0.11473547667264938,
- -0.021427644416689873, 0.016115741804242134, -0.02005351148545742, -0.08749549835920334,
- 0.008403527550399303, 0.02254561521112919, -0.09244763851165771, -0.0011546972673386335,
- -0.013789276592433453, -0.08504611253738403, 0.014641772024333477,
- -0.013662025332450867, -0.003151336684823036, -0.03316435590386391, 0.08488895744085312,
- -0.03990865871310234, 0.07695754617452621, 0.003510228591039777, 0.053325068205595016,
- -0.12022912502288818, 0.0065489704720675945, -0.09535825252532959, -0.11028524488210678,
- 0.10159168392419815, -0.02337065152823925, 0.030567312613129616, 0.06891825795173645,
- -0.011964906938374043, 0.05882394313812256, -0.021550720557570457, -0.05294254422187805,
- 0.020700128749012947, 0.061355363577604294, 0.06601571291685104, 0.08204665780067444,
- 0.1702379584312439, -0.05051570013165474, -0.05311490222811699, -0.06633292883634567,
- 0.07093136757612228, 0.10437554121017456, 0.018911587074398994, -0.010596401989459991,
- 0.0014112014323472977, -0.07095017284154892, 0.0023579311091452837,
- -0.06810799241065979, -0.106731116771698, 0.02960759401321411, -0.07699934393167496,
- 0.07264402508735657, 0.02859635092318058, -0.030166437849402428, -0.14545941352844238,
- -0.0358126126229763, -0.027321601286530495, 0.02319812774658203, 0.108054019510746,
- -0.024404466152191162, 0.0495346337556839, -0.03968477249145508, -0.005328240338712931,
- 0.0067052836529910564, -0.09898236393928528, 0.04071978107094765, -0.046957265585660934,
- 0.045032963156700134, 0.017493784427642822, 0.04638252779841423, -0.006794470828026533,
- 0.07550559192895889, -0.09834147244691849, 0.061121124774217606, -0.0003221134247723967,
- -0.021490566432476044, 0.02080949954688549, -0.03185902535915375, 0.03321186080574989,
- 0.01604045368731022, -0.04643372818827629, -0.008521582931280136, 0.0051645622588694096,
- -0.09865833073854446, -0.10725816339254379, -0.07073383778333664, -0.034732941538095474,
- -0.11954957246780396, 0.0387059822678566, -0.09596975892782211, -0.043314844369888306,
- -0.013082240708172321, -0.020362483337521553, 0.009961925446987152, 0.04083999618887901,
- 0.06182718649506569, -0.14758582413196564, 0.022743763402104378, -0.013051152229309082,
- 0.08505561202764511, -0.03443741798400879, -0.05670497938990593, 0.058282893151044846,
- 0.1006406843662262, 0.05690925940871239, 0.01906239427626133, 0.017353927716612816,
- -0.0617532916367054, 0.03283548727631569, -0.10683295875787735, -0.3995033800601959,
- 0.04652513936161995, -0.002086084568873048, 0.04783320799469948, 0.008012642152607441,
- -0.0983709916472435, 0.049720410257577896, -0.007636334281414747, -0.06606300920248032,
- 0.06401260942220688, -0.05453731492161751, 0.039628852158784866, 0.01456527877599001,
- -0.0652984157204628, -0.019188061356544495, -0.043374817818403244, -0.0499507337808609,
- 0.0561114139854908, -0.010662592947483063, -0.06639206409454346, -0.10123295336961746,
- 0.03650405630469322, -0.023667385801672935, 0.017331911250948906, 0.010458719916641712,
- 0.008821472525596619, -0.0788986012339592, -0.043892428278923035, 0.021352453157305717,
- 0.054077405482530594, 0.03699658066034317, -0.06821710616350174, 0.018284698948264122,
- 0.07468152791261673, -0.04134667292237282, 0.11898806691169739, 0.03163173794746399,
- 0.0494367741048336, -0.04683176055550575, 0.11875676363706589, 0.056016046553850174,
- 0.18406802415847778, -0.00759029621258378, -0.029935942962765694, 0.012029211036860943,
- 0.10900229960680008, 0.046075478196144104, 0.029395556077361107, -0.02368859015405178,
- 0.003132835030555725, -0.025560088455677032, -0.014456748962402344, 0.118632972240448,
- -0.055656611919403076, -0.056884706020355225, -0.051015716046094894,
- -0.030068526044487953, -0.029949000105261803, -0.05349062755703926, 0.2135012000799179,
- 0.03931920602917671, 0.009778228588402271, 0.008051779121160507, -0.08439317345619202,
- 0.03196590766310692, -0.07374808937311172, -0.15863393247127533, -0.00806249026209116,
- -0.01978522725403309, 0.03268267586827278, -0.05017518624663353, -0.11626996845006943,
- 0.002635573036968708, 0.006396303419023752, 0.016879161819815636, 0.12115258723497391,
- -0.03530236333608627, 0.024748727679252625, 0.0001797235308913514, 0.1094861850142479,
- 0.04370899125933647, 0.00516015850007534, 0.053036004304885864, 0.0939178541302681,
- -0.014254018664360046, 0.01104307547211647, -0.05810968205332756, -0.06964769959449768,
- 0.018114283680915833, 0.11344623565673828, -0.021318016573786736, 0.11054734140634537,
- 0.034626301378011703, -0.06341277807950974, -0.0440930612385273, 0.027320533990859985,
- 0.003248912515118718, 0.09135192632675171, -0.4502897560596466, -0.023284384980797768,
- 0.07624462246894836, 0.007495187688618898, 0.00748264417052269, 0.06843197345733643,
- 0.01822621189057827, -0.044347573071718216, -0.07034556567668915, -0.08086789399385452,
- 0.1986912041902542, 0.031370051205158234, 0.05678464099764824, -0.1226002499461174,
- 0.014133279211819172, 0.08397982269525528, -0.0533471442759037, 0.02118762396275997,
- 0.07019222527742386, -0.2700844705104828, -0.02415674924850464, -0.016789859160780907,
- 0.08664476871490479, 0.006555045489221811, 0.04530961439013481, 0.09607074409723282,
- -0.06039132550358772, 0.019340574741363525, 0.008424904197454453, -0.036531925201416016,
- 0.033248886466026306, -0.032302647829055786, -0.003762593260034919, 0.09927564859390259,
- 0.06480206549167633, 0.0685485377907753, 0.009757409803569317, 12.070197105407715,
- 0.042839836329221725, 0.052440255880355835, -0.11498016119003296, 0.023311184719204903,
- -0.05415622889995575, -0.00037486106157302856, -0.08811991661787033,
- 0.054874539375305176, 0.1586710661649704, -0.04264063015580177, -0.0823279619216919,
- 0.016630345955491066, -0.09177026897668839, 0.03017985261976719, -0.07605160027742386,
- -0.13360930979251862, -0.023473532870411873, 0.07471466809511185, -0.03538806363940239,
- -0.019586289301514626, 0.05630022659897804, 0.06508803367614746, 0.06229272484779358,
- -0.06873968243598938, 0.02600143291056156, 0.039722636342048645,
- -0.000020079314708709717, -0.017653489485383034, 0.0056143454276025295,
- 0.004937834572046995, -0.026490986347198486, 0.04785303398966789, -0.010204493068158627,
- 0.00203649397008121, 0.09132359176874161, 0.09481482952833176, 0.09478986263275146,
- 0.037346065044403076, 0.0770585834980011, 0.02793910913169384, 0.0165293850004673,
- 0.03646589443087578, 0.08013314008712769, 0.06194280460476875, 0.02686730958521366,
- 0.006359759718179703, 0.12495080381631851, -0.013667761348187923, 0.07044091820716858,
- 0.10479434579610825, -0.018809569999575615, 0.12985193729400635, 0.03520206734538078,
- -0.009050815366208553, 0.04040735587477684, -0.01928498037159443, -0.08018336445093155,
- 0.09282615035772324, 0.04955897852778435, -0.09067105501890182, 0.12926913797855377,
- 0.010170632041990757, 0.11681247502565384, 0.0539255291223526, 0.08593062311410904,
- 0.0415254570543766, 0.06353937834501266, -0.12447509914636612, -0.058159518986940384,
- 0.03727791830897331, -0.1114690825343132, -0.08016224950551987, 0.06906566768884659,
- 0.10792133212089539, -0.0493394173681736, 0.008941291831433773, -0.013604608364403248,
- 0.02099919319152832, -0.04956637695431709, -0.03206859156489372, 0.06773818284273148,
- 0.028557797893881798, 0.00798648688942194, 0.11070773750543594, 0.04739922285079956,
- 0.11383908987045288, 0.11451112478971481, -0.01537178922444582, -0.07600433379411697,
- -0.0372101366519928, 0.07440901547670364, -0.020819032564759254, -0.08163967728614807,
- -0.032723456621170044, -0.07008740305900574, 0.024014564231038094, -0.19853824377059937,
- 0.09777375310659409, 0.12394217401742935, -0.09713124483823776, -0.03743017092347145,
- -0.02591756172478199, 0.07463160157203674, 0.04724079370498657, -0.01690034568309784,
- -0.03926059603691101, -0.026691854000091553, -0.007192735094577074, 0.02399345301091671,
- -0.061747048050165176, 0.10661687701940536, 0.06595739722251892, -0.06390484422445297,
- 0.05250036343932152, 0.04910678789019585, -0.036968111991882324, -0.036706529557704926,
- 0.03713512420654297, 0.04762077331542969, -0.08609751611948013, -0.041156087070703506,
- -0.026269426569342613, -0.06436004489660263, -0.04342014715075493,
- -0.038023993372917175, 0.016413835808634758, 0.04325801134109497, -0.040525346994400024,
- -0.009478423744440079, 0.046391088515520096, 0.06196725741028786, 0.060963574796915054,
- 0.010768531821668148, 0.09216874837875366, -0.09715365618467331, -0.036158487200737,
- 0.03457820415496826, 0.02152879722416401, 0.06653789430856705, -0.044083964079618454,
- -0.04111870750784874, -0.08274321258068085, -0.167055144906044, 0.03145338222384453,
- 0.08950012922286987, 0.01875760592520237, -0.01211973000317812, -0.0033151425886899233,
- -0.07608915120363235, -0.061840664595365524, 0.13237367570400238, 0.09032696485519409,
- 0.06520611047744751, 0.026629656553268433, -0.10045792907476425, -0.042278725653886795,
- 0.1375948041677475, -0.05158519744873047, 0.019209781661629677, 0.014963570982217789,
- -0.0495261587202549, 0.08500317484140396, 0.11217836290597916, 0.011413984932005405,
- 0.03923572599887848, 0.012829317711293697, -0.0076192147098481655, 0.06474513560533524,
- -0.024004125967621803, 0.061594124883413315, -0.046890947967767715, -0.129950150847435,
- -0.07921543717384338, 0.016027726233005524, 0.07505305856466293, -0.0007046039099805057,
- -0.11787233501672745, -0.011695845983922482, -0.052601784467697144
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 203,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Reuters"],
- "epoch_date_downloaded": 1653264000,
- "epoch_date_modified": 1654128000,
- "epoch_date_submitted": 1653350400,
- "flag": null,
- "report_number": 1661,
- "source_domain": "labsnews.com",
- "submitters": ["AIAAIC"],
- "title": "Uber tests new algorithm in the US that can change driver payments",
- "url": "https://labsnews.com/en/news/business/uber-tests-algorithm/"
- },
- {
- "__typename": "Report",
- "authors": ["Tina Bellon"],
- "epoch_date_downloaded": 1653264000,
- "epoch_date_modified": 1654128000,
- "epoch_date_submitted": 1653350400,
- "flag": null,
- "report_number": 1660,
- "source_domain": "reuters.com",
- "submitters": ["AIAAIC"],
- "title": "Uber revamps driver pay algorithm in large U.S. pilot to attract drivers",
- "url": "https://www.reuters.com/business/autos-transportation/exclusive-uber-revamps-driver-pay-algorithm-large-us-pilot-attract-drivers-2022-02-26/"
- },
- {
- "__typename": "Report",
- "authors": ["Dara Kerr"],
- "epoch_date_downloaded": 1653264000,
- "epoch_date_modified": 1654041600,
- "epoch_date_submitted": 1653350400,
- "flag": null,
- "report_number": 1659,
- "source_domain": "themarkup.org",
- "submitters": ["AIAAIC"],
- "title": "Secretive Algorithm Will Now Determine Uber Driver Pay in Many Cities – The Markup",
- "url": "https://themarkup.org/working-for-an-algorithm/2022/03/01/secretive-algorithm-will-now-determine-uber-driver-pay-in-many-cities"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "zhihu",
- "name": "Zhihu"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "sangfor-technologies",
- "name": "Sangfor Technologies"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "zhihu-employees",
- "name": "Zhihu employees"
- },
- {
- "__typename": "Entity",
- "entity_id": "chinese-tech-workers",
- "name": "Chinese tech workers"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1665, 1664, 1663, 1662],
- "vector": [
- -0.06505399197340012, 0.05816178023815155, 0.025428054854273796, -0.1308668553829193,
- 0.08099372684955597, -0.00041601306293159723, 0.010320090688765049,
- 0.056052662432193756, 0.06700372695922852, -0.15344861149787903, -0.038515716791152954,
- 0.026782551780343056, 0.016909940168261528, -0.03881656005978584,
- -0.00039143231697380543, -0.09767689555883408, -0.057878341525793076,
- -0.0032048365101218224, -0.0266125425696373, -0.101936936378479, -0.07586175203323364,
- 0.04991892725229263, -0.010156686417758465, 0.1039758026599884, -0.04709231108427048,
- 0.030670711770653725, 0.09633442759513855, 0.11422303318977356, -0.09260370582342148,
- 0.05583185702562332, -0.014651929028332233, -0.03386734426021576, 0.1480754017829895,
- 0.005082341376692057, 0.04786420240998268, 0.08974820375442505, 0.04240706190466881,
- -0.014744482934474945, 0.01365729607641697, 0.02533343806862831, 0.020076878368854523,
- 0.22350502014160156, -0.017119605094194412, -0.049719031900167465, 0.061875637620687485,
- -0.048834700137376785, 0.019535355269908905, 0.07436267286539078, 0.013862388208508492,
- 0.025796616449952126, -0.02959981933236122, 0.010259211994707584, -0.030622031539678574,
- 0.051863521337509155, -0.12150032073259354, 0.05026797950267792, 0.03295636549592018,
- -0.031835418194532394, 0.06681656837463379, -0.10491931438446045, -0.05074431747198105,
- -0.2650693953037262, 0.007489647716283798, -0.0716218426823616, 0.08103031665086746,
- -0.09705618768930435, -0.05557434633374214, 0.015973104164004326, 0.021620266139507294,
- 0.05295976251363754, 0.054312653839588165, -0.02018139883875847, -0.011757908388972282,
- 0.02186211757361889, -0.02863260544836521, -0.015262536704540253, -0.0202986728399992,
- 0.12484410405158997, -0.08705154061317444, 0.01920074038207531, 0.10257047414779663,
- -0.089531809091568, 0.4140450358390808, 0.03123278170824051, -0.021256662905216217,
- -0.02436203509569168, 0.10246361792087555, 0.03802217170596123, 0.038132186979055405,
- 0.03954912722110748, -0.008462770842015743, -0.02180803008377552, -0.08674093335866928,
- -0.03543783724308014, 0.060189612209796906, 0.045464906841516495, -0.031736645847558975,
- -0.002397343749180436, 0.0003338119713589549, -0.08649355173110962, -0.0210315752774477,
- -0.028607714921236038, 0.10552094876766205, 0.08410440385341644, -0.03949742019176483,
- -0.02533874660730362, 0.04614850506186485, -0.1058235839009285, 0.07382766157388687,
- -0.035518962889909744, 0.023441189900040627, 0.005811053793877363, 0.10096161812543869,
- -0.005176370497792959, 0.019229194149374962, -0.03865906596183777, 0.005053791217505932,
- 0.03958787024021149, 0.07747671008110046, 0.051767319440841675, -0.005270771682262421,
- 0.06935879588127136, 0.057472921907901764, -0.05615418404340744, -0.006310477387160063,
- -0.044714994728565216, -0.08718039095401764, -0.038462914526462555,
- -0.03241864964365959, 0.008268410339951515, -0.06774421781301498, -0.25641804933547974,
- 0.01087079755961895, 0.01595965027809143, -0.003099854104220867, -0.03352124243974686,
- 0.012282729148864746, -0.05804349109530449, 0.026466932147741318, -0.010721784085035324,
- -0.034725069999694824, 0.06701540946960449, 0.010206134989857674, 0.030735813081264496,
- 0.18341074883937836, 0.07053079456090927, -0.042771659791469574, -0.061795104295015335,
- -0.029645772650837898, -0.035966306924819946, 0.10203512012958527, -0.11111128330230713,
- -0.05833025649189949, -0.007603173144161701, -0.03263970464468002, 0.7358531951904297,
- 0.09521190822124481, 0.22060061991214752, 0.007247478701174259, -0.022500745952129364,
- 0.15522700548171997, 0.028657987713813782, 0.08364041149616241, -0.06525591760873795,
- -0.08915804326534271, 0.03394265100359917, -0.07868028432130814, -0.021567026153206825,
- 0.06632428616285324, -0.02320832572877407, 0.09643375128507614, 0.012707501649856567,
- 0.1254778504371643, 0.016042426228523254, -0.07962183654308319, -0.014508047141134739,
- 0.07788995653390884, 0.017481805756688118, -0.09300507605075836, -0.0335540696978569,
- 0.006631013005971909, 0.09208556264638901, -0.0972357764840126, -0.005133101716637611,
- -0.06989408284425735, 0.037763603031635284, -0.04068611562252045, 0.052799031138420105,
- 0.008388280868530273, 0.05807311087846756, 0.07282441854476929, 0.0492444671690464,
- 0.01699180155992508, -0.11156702041625977, -0.021588750183582306, 0.09313938766717911,
- -0.010431424714624882, -0.044740863144397736, 0.08137916028499603, -0.0824493020772934,
- 0.07805067300796509, -0.0045313662849366665, 0.14750133454799652, -0.12568023800849915,
- -0.008763531222939491, -0.005984536372125149, -0.02627493254840374, 0.05206079035997391,
- 0.02079896442592144, -0.07592206448316574, -0.07686924189329147, 0.0815577507019043,
- 0.029418734833598137, 0.030186964198946953, 0.026350203901529312, -0.018071100115776062,
- 0.04934541881084442, 0.10825441777706146, -0.023011790588498116, -0.0016169259324669838,
- 0.06395629048347473, 0.003529453417286277, -0.05898025631904602, -0.03608839213848114,
- 0.004076099954545498, 0.04287726432085037, 0.007513879332691431, -0.01237274706363678,
- 0.05280616879463196, -0.01122990995645523, -0.024775303900241852, 0.05126691609621048,
- 0.002274880651384592, 0.022273370996117592, 0.1288144886493683, -0.050180450081825256,
- -0.03245840594172478, -0.05675114318728447, -0.07805600017309189, 0.0047405487857759,
- 0.016831180080771446, 0.09537989646196365, 0.12501844763755798, 0.07237451523542404,
- 0.04313311725854874, 0.04628211259841919, 0.06940830498933792, 0.0761641412973404,
- 0.05289849638938904, 0.07676497101783752, -0.039322808384895325, -0.03541407734155655,
- -0.02107376605272293, 0.01217701006680727, 0.03620132803916931, 0.004284285940229893,
- -0.08595592528581619, -0.03189319744706154, -0.05373739078640938, -0.020851140841841698,
- -0.0818597823381424, 0.006618638522922993, 0.02821286953985691, 0.06205615773797035,
- -0.056100040674209595, -0.08695045858621597, -0.10038307309150696,
- -0.002708213869482279, 0.10121558606624603, 0.0022470152471214533, 0.005282626487314701,
- -0.12753818929195404, 0.039670951664447784, -0.04091958329081535, 0.051990482956171036,
- 0.006871426478028297, -0.018541261553764343, 0.010599635541439056, -0.01103370450437069,
- 0.03949083387851715, -0.01866097003221512, -0.030573328956961632, -0.08565422892570496,
- -0.07511522620916367, -0.04986158758401871, -0.039896491914987564, 0.010488631203770638,
- -0.034657228738069534, 0.01201393362134695, 0.04546763375401497, 0.06073077768087387,
- 0.004677322693169117, -0.03150426968932152, 0.0685490071773529, -0.03556026890873909,
- -0.03213631734251976, 0.10232101380825043, -0.0433146171271801, 0.010139590129256248,
- -0.034821901470422745, -0.10915818065404892, -0.035149917006492615, 0.02238609455525875,
- -0.06080184876918793, 0.038373809307813644, 0.006166291423141956, -0.033049702644348145,
- -0.03898222744464874, -0.01347931008785963, 0.06571745872497559, -0.04144895449280739,
- -0.1001381129026413, -0.057783715426921844, 0.12445828318595886, -0.010918106883764267,
- 0.0008541997522115707, 0.03312390297651291, -0.06251583993434906, 0.032418910413980484,
- -0.03644108399748802, -0.014609077014029026, 0.007481561508029699, 0.07394441217184067,
- -0.025073828175663948, 0.008402355015277863, 0.029875759035348892,
- -0.028007563203573227, 0.037598442286252975, 0.1055796891450882, 0.4204488694667816,
- -0.1330660879611969, 0.08361159265041351, 0.11217580735683441, -0.02161807380616665,
- 0.021635999903082848, -0.055004630237817764, 0.061714548617601395, 0.09104450047016144,
- 0.1271226704120636, 0.1458924561738968, -0.05087782070040703, -0.009747500531375408,
- -0.1253238320350647, 0.09652452170848846, 0.008601934649050236, 0.001247630687430501,
- 0.0040181172080338, -0.08379209041595459, -0.02884603850543499, 0.03045026957988739,
- -0.05831657350063324, 0.013583585619926453, -0.04875144362449646, -0.045379169285297394,
- 0.03216911852359772, 0.0777914822101593, 0.05673696845769882, -0.025705788284540176,
- 0.02478468418121338, -0.06343795359134674, 0.00009952264372259378, 0.011402765288949013,
- 0.030471602454781532, -0.13461172580718994, 0.013629212975502014, -0.08726164698600769,
- -0.08808638155460358, 0.06844883412122726, 0.010637326166033745, 0.05433248355984688,
- 0.049052923917770386, -0.062459494918584824, 0.04513426125049591, -0.039917394518852234,
- -0.0372156947851181, 0.05266226455569267, 0.07335006445646286, 0.02852681279182434,
- 0.12182985991239548, 0.15889188647270203, -0.04882396012544632, -0.03308366239070892,
- -0.07381089776754379, 0.0667138621211052, 0.0931154191493988, -0.023421043530106544,
- 0.03188707306981087, -0.009354383684694767, -0.07239557802677155, -0.01832456886768341,
- -0.04899540916085243, -0.0699073001742363, -0.007440900430083275, -0.059200700372457504,
- 0.07834145426750183, 0.027500128373503685, -0.045443497598171234, -0.16342245042324066,
- -0.03744318336248398, -0.03753722459077835, 0.010083257220685482, 0.12204858660697937,
- -0.06039758026599884, 0.029666602611541748, 0.0325675867497921, -0.018690288066864014,
- -0.005574879236519337, -0.11402951180934906, 0.011871875263750553, -0.06289508938789368,
- 0.030899059027433395, 0.07305751740932465, 0.07978448271751404, -0.02054845541715622,
- 0.10357235372066498, -0.11536077409982681, 0.06231983006000519, -0.008090799674391747,
- -0.059754207730293274, 0.014968803152441978, 0.0005907422164455056,
- 0.016408702358603477, 0.00933197233825922, -0.06117244064807892, -0.005922443233430386,
- -0.014760039746761322, -0.06641454994678497, -0.0912836566567421, -0.06318015605211258,
- -0.030832439661026, -0.079961858689785, 0.07422339916229248, -0.08343610167503357,
- -0.017716336995363235, -0.009768698364496231, -0.03262731432914734,
- -0.022717555984854698, 0.020018352195620537, 0.016448475420475006, -0.16664454340934753,
- 0.02554171346127987, -0.005149535369127989, 0.03435460105538368, -0.056650035083293915,
- -0.03147413581609726, 0.0390874519944191, 0.08370976150035858, 0.04087797552347183,
- 0.028950637206435204, -0.00915517844259739, -0.061305783689022064, 0.08859597891569138,
- -0.155204176902771, -0.3858432173728943, 0.07434175908565521, 0.04357023164629936,
- 0.05621485412120819, 0.0335296168923378, -0.08433322608470917, 0.047106724232435226,
- 0.027908354997634888, -0.07570110261440277, 0.08633172512054443, -0.05965821444988251,
- 0.0315278135240078, -0.03103804960846901, -0.08519736677408218, -0.04303018003702164,
- -0.08065744489431381, -0.01368455309420824, 0.06101830303668976, -0.022446606308221817,
- -0.07026158273220062, -0.1307586133480072, 0.04077347368001938, -0.035226307809352875,
- 0.04076354205608368, -0.024448862299323082, 0.044057730585336685, -0.06388981640338898,
- -0.033684227615594864, 0.02512504532933235, 0.037043921649456024, 0.0421137660741806,
- -0.10671063512563705, 0.009995308704674244, 0.06340896338224411, 0.016226768493652344,
- 0.13275599479675293, -0.007115561980754137, -0.022051336243748665, -0.08540251106023788,
- 0.0873103216290474, 0.047221019864082336, 0.1851726472377777, -0.012438317760825157,
- -0.028371024876832962, 0.03957948088645935, 0.12997741997241974, 0.06363880634307861,
- 0.028541089966893196, -0.02990996092557907, -0.02365419641137123, 0.032088227570056915,
- -0.005932764615863562, 0.08160648494958878, -0.08091297000646591, -0.019525978714227676,
- -0.005378166679292917, -0.01929166354238987, -0.05811460316181183, -0.03558048978447914,
- 0.22477677464485168, 0.010506841354072094, 0.015090497210621834, 0.018297595903277397,
- -0.07235078513622284, 0.026992369443178177, -0.07330098003149033, -0.10744345188140869,
- -0.012313596904277802, 0.029319651424884796, 0.014828596264123917, -0.09017372876405716,
- -0.10352916270494461, -0.03094291314482689, -0.0005244559142738581,
- -0.010644283145666122, 0.12484493106603622, -0.015564370900392532, 0.03714016452431679,
- -0.026928745210170746, 0.14580339193344116, 0.02997821755707264, 0.028676176443696022,
- 0.04762822017073631, 0.08250311017036438, 0.01746239699423313, 0.0045622969046235085,
- -0.03394210711121559, -0.04172603785991669, 0.006899760104715824, 0.14515268802642822,
- -0.018339630216360092, 0.14549298584461212, 0.05729958042502403, 0.004003572277724743,
- -0.07207056879997253, 0.01448281854391098, 0.008286720141768456, 0.031732212752103806,
- -0.34942495822906494, -0.0034858970902860165, 0.11154575645923615, 0.02777738869190216,
- -0.02051836997270584, 0.11052995920181274, 0.03742154687643051, -0.01829194650053978,
- -0.02864076942205429, -0.10336125642061234, 0.1843392699956894, 0.007181599736213684,
- 0.05653518810868263, -0.07292579114437103, -0.0066123241558671, 0.07717052102088928,
- -0.021314697340130806, 0.0053245690651237965, 0.037247031927108765, -0.1743060052394867,
- 0.02770560421049595, -0.014365365728735924, 0.16721603274345398, -0.01241527870297432,
- 0.0428272970020771, 0.057291820645332336, -0.07251022756099701, 0.06268620491027832,
- 0.058801792562007904, -0.007203222252428532, 0.04134605452418327, 0.02268565446138382,
- -0.04309100657701492, 0.0811433494091034, 0.11354333907365799, 0.12060815840959549,
- -0.05417316406965256, 12.015421867370605, 0.06312664598226547, 0.07441523671150208,
- -0.1266435831785202, -0.012213476002216339, -0.055728599429130554, 0.039707474410533905,
- -0.0998687744140625, 0.029863206669688225, 0.12916415929794312, -0.006522070616483688,
- -0.0648181140422821, -0.02647852525115013, -0.11029288172721863, 0.03899320214986801,
- -0.032263755798339844, -0.04372279345989227, -0.049652550369501114,
- 0.028109146282076836, -0.05301086604595184, -0.049114324152469635, 0.05282118171453476,
- 0.0664743036031723, 0.010633384808897972, -0.06907978653907776, 0.032604120671749115,
- 0.025456426665186882, 0.009019237942993641, -0.0031334173399955034,
- 0.0028136237524449825, 0.04554326832294464, 0.0106577193364501, 0.07984887063503265,
- 0.02218657359480858, 0.09293323010206223, 0.06914430856704712, 0.0436735637485981,
- 0.05014640465378761, 0.04386304318904877, 0.02996756136417389, 0.008766014128923416,
- -0.03131275996565819, 0.028276683762669563, 0.059651993215084076, 0.04098261892795563,
- 0.03996143117547035, 0.046532221138477325, 0.13035714626312256, 0.023607345297932625,
- 0.0527813620865345, 0.1046985611319542, 0.04063798859715462, 0.08942489326000214,
- 0.04247910529375076, 0.004688240587711334, 0.08254648000001907, -0.05922716110944748,
- -0.09291525930166245, 0.09934132546186447, 0.08064494282007217, -0.07326263934373856,
- 0.09569446742534637, 0.016090137884020805, 0.12900078296661377, 0.03045160323381424,
- 0.04202444478869438, 0.07374759763479233, 0.07020359486341476, -0.16542856395244598,
- -0.12281312048435211, 0.05044660344719887, -0.10521766543388367, -0.08587699383497238,
- 0.040201056748628616, 0.10529576987028122, -0.04203150421380997, 0.08408889919519424,
- -0.05763386934995651, 0.023101720958948135, -0.026328595355153084, -0.00831453688442707,
- 0.07080508023500443, -0.024813760071992874, 0.019113965332508087, 0.04423649609088898,
- 0.022165631875395775, 0.09476809948682785, 0.07932021468877792, 0.022817933931946754,
- -0.09263831377029419, -0.03821941092610359, 0.10122835636138916, -0.01216911617666483,
- -0.05614285543560982, 0.008251824416220188, -0.04918229952454567, 0.018358375877141953,
- -0.17329418659210205, 0.05455613508820534, 0.09486371278762817, -0.09893099218606949,
- -0.01569804735481739, -0.045177046209573746, 0.06676839292049408, 0.03795745223760605,
- 0.03637835755944252, -0.07467340677976608, 0.025406867265701294, 0.008468938060104847,
- 0.01246259268373251, -0.01774369552731514, 0.06715425103902817, 0.11175911128520966,
- -0.06653480231761932, 0.03651818260550499, 0.0498642660677433, -0.028831670060753822,
- -0.05601181834936142, 0.036951854825019836, 0.07198217511177063, -0.04803831875324249,
- -0.04068506509065628, -0.0384213849902153, -0.06596387922763824, -0.014929202385246754,
- -0.0034795100800693035, -0.025838064029812813, 0.02163906767964363,
- -0.05843820422887802, -0.020447922870516777, 0.090394988656044, 0.06842593848705292,
- 0.09428589046001434, -0.02092156745493412, 0.06524874269962311, -0.05777796357870102,
- -0.04569151997566223, 0.051300179213285446, 0.06049926578998566, 0.06309514492750168,
- -0.02102210745215416, -0.060275848954916, -0.05193447321653366, -0.1105094850063324,
- 0.039369769394397736, 0.1398218274116516, 0.0658135712146759, 0.045023541897535324,
- -0.0002780675422400236, -0.09627868980169296, -0.07603348046541214, 0.0959409549832344,
- 0.03133632615208626, 0.036502406001091, -0.002374790608882904, -0.08023550361394882,
- -0.05175404250621796, 0.10964652895927429, -0.07453998178243637, 0.008167458698153496,
- -0.012420392595231533, -0.05396880581974983, 0.1715700924396515, 0.13314169645309448,
- 0.04921910911798477, 0.02247612364590168, -0.001230941154062748, 0.03702040761709213,
- 0.013395272195339203, -0.008206111378967762, 0.036020100116729736, -0.02579069510102272,
- -0.12186527997255325, -0.08658333122730255, 0.03534877300262451, 0.08354078233242035,
- 0.008177077397704124, -0.12959766387939453, -0.015205392614006996, 0.018910789862275124
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 204,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Liu Mengmeng"],
- "epoch_date_downloaded": 1653350400,
- "epoch_date_modified": 1654128000,
- "epoch_date_submitted": 1653350400,
- "flag": null,
- "report_number": 1665,
- "source_domain": "min.news",
- "submitters": ["AIAAIC"],
- "title": "\"Monitoring the tendency of employees to switch jobs\" caused controversy, Sangfor urgently removed the product from the shelves, and the lawyer said that the employee was not informed of the suspected violation of the law",
- "url": "https://min.news/en/economy/a9cbaa4d0f1560e8e82c50b2f5f02f12.html"
- },
- {
- "__typename": "Report",
- "authors": ["Fang Shiqi"],
- "epoch_date_downloaded": 1653350400,
- "epoch_date_modified": 1654128000,
- "epoch_date_submitted": 1653350400,
- "flag": null,
- "report_number": 1664,
- "source_domain": "min.news",
- "submitters": ["AIAAIC"],
- "title": "Zhihu said that it has never installed a perception system to monitor employee behavior! Sangfor related cases are no longer visible",
- "url": "https://min.news/en/news/74e2da852e7989f59e5dc538d54263a5.html"
- },
- {
- "__typename": "Report",
- "authors": ["Pandaily"],
- "epoch_date_downloaded": 1653350400,
- "epoch_date_modified": 1654128000,
- "epoch_date_submitted": 1653350400,
- "flag": null,
- "report_number": 1663,
- "source_domain": "pandaily.com",
- "submitters": ["AIAAIC"],
- "title": "Zhihu Denies Using Behavior Perception System to Monitor Employees",
- "url": "https://pandaily.com/zhihu-denies-using-behavior-perception-system-to-monitor-employees/"
- },
- {
- "__typename": "Report",
- "authors": ["Greg James"],
- "epoch_date_downloaded": 1653350400,
- "epoch_date_modified": 1654128000,
- "epoch_date_submitted": 1653350400,
- "flag": null,
- "report_number": 1662,
- "source_domain": "supchina.com",
- "submitters": ["AIAAIC"],
- "title": "Chinese tech workers outraged by surveillance tool that flags employees who look likely to quit",
- "url": "https://supchina.com/2022/02/21/chinese-tech-workers-outraged-by-surveillance-tool-that-flags-employees-who-look-likely-to-quit/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "media-organizations-in-crimea",
- "name": "media organizations in Crimea"
- },
- {
- "__typename": "Entity",
- "entity_id": "individuals-in-the-donbass-region",
- "name": "individuals in the Donbass region"
- },
- {
- "__typename": "Entity",
- "entity_id": "individuals-in-russia",
- "name": "individuals in Russia"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "unknown",
- "name": "Unknown"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "ukrainian-social-media-users",
- "name": "Ukrainian social media users"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1669, 1668, 1667, 1666],
- "vector": [
- -0.05878439173102379, 0.05918751657009125, 0.015119786374270916, -0.09316365420818329,
- 0.08536151796579361, -0.04670914635062218, 0.01348777674138546, 0.03428816422820091,
- 0.06517717242240906, -0.1236238181591034, -0.012290616519749165, 0.05797567591071129,
- 0.001259792479686439, -0.0932607650756836, 0.058307670056819916, -0.09038268774747849,
- -0.12107246369123459, -0.02235334925353527, -0.008716460317373276, -0.14957305788993835,
- -0.05263824015855789, 0.020085172727704048, -0.00385812995955348, 0.13442926108837128,
- 0.0051111262291669846, 0.006702193059027195, 0.0880437046289444, 0.15979062020778656,
- -0.1043439656496048, 0.09577639400959015, -0.0006356536177918315, -0.0357125960290432,
- 0.15518110990524292, 0.029030488803982735, 0.021482151001691818, 0.09650371968746185,
- 0.052655939012765884, -0.026751963421702385, -0.010980895720422268, 0.01742103509604931,
- 0.014491794630885124, 0.22457638382911682, -0.012329276651144028, -0.03726331517100334,
- 0.03923184797167778, -0.026831967756152153, 0.006101381964981556, 0.0819678008556366,
- -0.004595345817506313, -0.013813549652695656, -0.04995159059762955, 0.02026311494410038,
- -0.05296552926301956, 0.006680138409137726, -0.09180290251970291, 0.054883264005184174,
- 0.02963990531861782, -0.027415994554758072, 0.06330478191375732, -0.062267255038022995,
- -0.07492386549711227, -0.2662511169910431, -0.05301853269338608, -0.09896582365036011,
- 0.07216974347829819, -0.09738711267709732, 0.004352782852947712, 0.02724730782210827,
- 0.022848021239042282, 0.04244475066661835, 0.010571960359811783, -0.05889962613582611,
- 0.003303670324385166, 0.05203861743211746, 0.05692024156451225, -0.019846804440021515,
- 0.03405478224158287, 0.17144463956356049, -0.10366715490818024, 0.02002818137407303,
- 0.0790412500500679, -0.07011457532644272, 0.45316389203071594, -0.045988909900188446,
- -0.040619928389787674, 0.010899842716753483, 0.12168624997138977, 0.01268548984080553,
- 0.0185821782797575, 0.026666805148124695, -0.03229426220059395,
- -0.000046467146603390574, -0.05181305110454559, 0.0038421177305281162,
- 0.04823547974228859, 0.013852832838892937, -0.022473955526947975, 0.024149000644683838,
- -0.0042776428163051605, -0.0619145892560482, -0.017167486250400543,
- -0.0015562064945697784, 0.06564005464315414, 0.058973055332899094, -0.03417016193270683,
- 0.016472026705741882, -0.015105209313333035, -0.09159502387046814, 0.0271495021879673,
- -0.06941407918930054, 0.01447673887014389, -0.02154039964079857, 0.10170567035675049,
- -0.006282262038439512, 0.05204899609088898, -0.02067374810576439, -0.03184806555509567,
- 0.03931708633899689, 0.08813364803791046, 0.04666599631309509, 0.04084068536758423,
- 0.06917274743318558, 0.07795506715774536, -0.046490252017974854, -0.01777653396129608,
- -0.07371406257152557, -0.0706949532032013, -0.02754223719239235, -0.03709997981786728,
- -0.005417115055024624, -0.055366918444633484, -0.20389609038829803,
- 0.029303669929504395, 0.05138975754380226, -0.00014314614236354828,
- -0.060430191457271576, 0.05294310301542282, -0.0668112263083458, -0.02137625589966774,
- -0.013762427493929863, -0.03108133003115654, 0.08958448469638824, -0.020883411169052124,
- 0.05510713905096054, 0.10353174805641174, 0.04741587117314339, -0.03819916397333145,
- -0.09242971241474152, 0.0041272384114563465, -0.06801538169384003, 0.06277638673782349,
- -0.05638692528009415, -0.036982759833335876, -0.001600753515958786,
- -0.03760480880737305, 0.7436572313308716, 0.12027190625667572, 0.20496222376823425,
- 0.037893734872341156, -0.025929830968379974, 0.13973653316497803, 0.007220933213829994,
- 0.09068676829338074, -0.05733608826994896, -0.09878401458263397, 0.04649998992681503,
- -0.04327533394098282, -0.017650242894887924, 0.026954879984259605, 0.020583046600222588,
- 0.10063445568084717, 0.02899850346148014, 0.09457185119390488, 0.01641661673784256,
- -0.12173145264387131, -0.03957272693514824, 0.07916302233934402, -0.014535415917634964,
- -0.08015789091587067, -0.03338397666811943, 0.06597088277339935, 0.12898963689804077,
- -0.05249173566699028, 0.022459888830780983, -0.057273976504802704, 0.06598733365535736,
- -0.018811946734786034, 0.07668276131153107, -0.009239290840923786, 0.0827634185552597,
- -0.002930697752162814, 0.01349952444434166, 0.03321998566389084, -0.08450380712747574,
- -0.03503350913524628, 0.09038873016834259, 0.016629492864012718, -0.05389738082885742,
- 0.06131310760974884, -0.06678380072116852, 0.04237055778503418, -0.007964465767145157,
- 0.16451981663703918, -0.15577489137649536, -0.0249328650534153, 0.007784517481923103,
- -0.03864740580320358, 0.00046742684207856655, -0.011870143003761768,
- -0.026080995798110962, -0.07010960578918457, 0.05704443156719208, 0.0419621542096138,
- -0.0015546728391200304, 0.06178382784128189, -0.024619629606604576, 0.04198209196329117,
- 0.02506093680858612, -0.020565683022141457, -0.03257650509476662, 0.07743383198976517,
- 0.016961313784122467, -0.052256617695093155, -0.043175943195819855,
- 0.062475379556417465, 0.08509396016597748, 0.02311861701309681, -0.01743217743933201,
- 0.04684850201010704, -0.01622037962079048, -0.019167646765708923, 0.04467208683490753,
- 0.02926865965127945, 0.022332852706313133, 0.07937218993902206, -0.12160278856754303,
- -0.04926265403628349, -0.04559212550520897, -0.0007638722890987992,
- 0.054680898785591125, 0.016216173768043518, 0.07661338150501251, 0.09240243583917618,
- 0.05543186143040657, 0.05278084799647331, 0.052920885384082794, 0.07197904586791992,
- -0.05639766901731491, -0.0036916316021233797, 0.07452206313610077,
- -0.0027882445137947798, -0.05674097687005997, -0.054865896701812744,
- -0.003002105513587594, -0.010491532273590565, 0.018912598490715027,
- -0.037430405616760254, -0.021997932344675064, -0.032480571419000626,
- -0.0651743933558464, -0.1324264258146286, -0.04944343864917755, 0.08189316093921661,
- 0.11529047787189484, -0.019525354728102684, -0.049655985087156296, -0.04701067507266998,
- -0.018195930868387222, 0.08166734129190445, 0.006077084690332413, -0.04484178125858307,
- -0.1167604848742485, 0.029850125312805176, -0.01664257049560547, 0.0534607395529747,
- 0.001995312748476863, -0.0428231880068779, 0.023651307448744774, 0.0008172040106728673,
- 0.040708594024181366, -0.03957837447524071, -0.016680138185620308, -0.04706541821360588,
- -0.09083745628595352, -0.08310484886169434, -0.019306667149066925,
- -0.0009640647331252694, -0.05954848229885101, 0.01091607753187418, 0.02372589334845543,
- 0.021114742383360863, -0.009660372510552406, -0.020922986790537834, 0.07630201429128647,
- -0.04662337154150009, -0.01803925260901451, 0.06848417222499847, -0.03393775224685669,
- 0.03443966805934906, 0.014335433952510357, -0.09215663373470306, 0.0011409067083150148,
- 0.009255921468138695, -0.08506230264902115, 0.03909149020910263, 0.02878362499177456,
- 0.01586046814918518, -0.06697461754083633, 0.010103167034685612, 0.0828622356057167,
- -0.07491640746593475, -0.06561789661645889, -0.07561583817005157, 0.12155076861381531,
- 0.016465548425912857, -0.0048032719641923904, -0.0016370359808206558,
- -0.027997955679893494, 0.006107362452894449, -0.018113693222403526,
- 0.002999295946210623, 0.039166711270809174, 0.039488956332206726,
- -0.0062178559601306915, -0.005240305792540312, 0.058129921555519104,
- -0.017773812636733055, 0.06141994521021843, 0.05910379812121391, 0.4071253538131714,
- -0.1216287910938263, 0.09326668083667755, 0.06842786073684692, 0.0034408948849886656,
- 0.0073938677087426186, -0.07357937842607498, 0.09912561625242233, 0.08904561400413513,
- 0.10614750534296036, 0.0899561196565628, -0.03526579588651657, 0.03286072984337807,
- -0.09255415201187134, 0.08985522389411926, 0.0062906211242079735, 0.010502736084163189,
- -0.010461867786943913, -0.05765942484140396, -0.04945846274495125, 0.08793504536151886,
- -0.011931111104786396, -0.03253253549337387, 0.0037399546708911657,
- -0.022482378408312798, 0.029024764895439148, 0.030353263020515442, 0.019821442663669586,
- -0.028498008847236633, 0.01560249738395214, -0.03325081244111061, 0.004411410074681044,
- 0.03343542292714119, 0.05550815165042877, -0.1690981686115265, -0.0011885508429259062,
- -0.01952250488102436, -0.15829698741436005, 0.06499789655208588, 0.0056154439225792885,
- 0.06546065956354141, 0.0391283817589283, 0.028492480516433716, 0.023058943450450897,
- -0.00715283490717411, -0.03794555366039276, 0.04372546076774597, 0.0912926122546196,
- 0.03266552835702896, 0.13230258226394653, 0.15828505158424377, -0.04725629836320877,
- -0.05276631563901901, -0.0803220123052597, 0.06699858605861664, 0.09889237582683563,
- -0.04667824134230614, 0.02532026916742325, 0.042352404445409775, -0.062112435698509216,
- -0.04148663952946663, -0.03920666128396988, -0.06430590897798538, -0.03308384120464325,
- -0.03923158347606659, 0.06278438866138458, 0.04481417313218117, -0.06265281140804291,
- -0.1979750096797943, -0.004015527665615082, -0.013946078717708588,
- -0.011790333315730095, 0.16670860350131989, -0.09114360064268112, 0.04344552755355835,
- -0.00280566792935133, -0.03198494389653206, -0.008457210846245289, -0.08313485980033875,
- 0.004588155075907707, -0.041777562350034714, -0.016737811267375946,
- 0.014040681533515453, 0.04685264453291893, -0.09449243545532227, 0.12209093570709229,
- -0.11930206418037415, 0.09004189819097519, -0.008351357653737068, 0.004164302721619606,
- -0.01738031581044197, -0.05826795473694801, -0.013848473317921162, -0.02109636552631855,
- -0.07093232125043869, 0.02604343555867672, -0.008773460052907467, -0.038471419364213943,
- -0.07723554223775864, -0.06456760317087173, -0.03403269499540329, -0.07152493298053741,
- 0.04572020098567009, -0.07733989506959915, 0.045890189707279205, -0.006544474977999926,
- -0.042117707431316376, -0.030811745673418045, 0.0027112222742289305,
- -0.022177577018737793, -0.1895926594734192, 0.013855970464646816, 0.03886891528964043,
- 0.04833582043647766, 0.02582998387515545, -0.027387656271457672, 0.004186410456895828,
- 0.09565574675798416, 0.03876711428165436, -0.01573801040649414, 0.013598288409411907,
- -0.06396350264549255, 0.08202384412288666, -0.10202847421169281, -0.39435023069381714,
- 0.05469917505979538, 0.0358247347176075, 0.043199870735406876, -0.010937587358057499,
- -0.06158533692359924, 0.050582293421030045, -0.01901872456073761, -0.08239904046058655,
- 0.08455533534288406, -0.053767912089824677, -0.007092779502272606,
- -0.046035755425691605, -0.036316338926553726, -0.036572687327861786,
- -0.08832352608442307, -0.04635659605264664, 0.026592310518026352, 0.004666055087000132,
- -0.02983730286359787, -0.10678115487098694, 0.06756004691123962, -0.04216209053993225,
- 0.020729059353470802, 0.018037112429738045, 0.06297056376934052, -0.08545416593551636,
- -0.030450057238340378, 0.036337412893772125, 0.05234698951244354, 0.027235105633735657,
- -0.04194864258170128, 0.008494501002132893, 0.09934944659471512, -0.013592012226581573,
- 0.14497432112693787, 0.01489520724862814, -0.003101032692939043, -0.09998062252998352,
- 0.09059222042560577, 0.06124899536371231, 0.18558266758918762, 0.022190021350979805,
- 0.02071457915008068, 0.05280044302344322, 0.14409515261650085, 0.055654287338256836,
- 0.03981585428118706, -0.05418425798416138, 0.008795969188213348, -0.025818461552262306,
- 0.011149559170007706, 0.0880923867225647, -0.08506246656179428, -0.031248845160007477,
- -0.021134747192263603, 0.013017941266298294, -0.026819046586751938,
- -0.001019072369672358, 0.22617483139038086, 0.0036221982445567846, 0.02604532800614834,
- 0.04399019852280617, -0.05002283304929733, 0.019345078617334366, -0.0969730019569397,
- -0.12621894478797913, -0.009552238509058952, 0.02866285666823387, 0.029591195285320282,
- -0.06543833017349243, -0.12632101774215698, -0.0018267666455358267,
- -0.0037766844034194946, -0.000397101859562099, 0.15902960300445557,
- -0.009126542136073112, 0.018337860703468323, 0.004284815862774849, 0.10877363383769989,
- 0.029543858021497726, 0.013466624543070793, 0.06758274883031845, 0.12977656722068787,
- 0.04644913971424103, -0.06164758652448654, 0.00046593090519309044, -0.08001869916915894,
- 0.013630894012749195, 0.12062197923660278, -0.04132469743490219, 0.14054331183433533,
- 0.06145882606506348, 0.00022305786842480302, -0.03573658689856529, 0.03493942320346832,
- -0.011344918981194496, 0.039460763335227966, -0.3777155876159668, -0.06495445221662521,
- 0.08972007781267166, 0.02440922148525715, -0.005159446969628334, 0.11458855122327805,
- 0.05502187833189964, -0.05644692853093147, -0.06473749876022339, -0.08678825199604034,
- 0.0920243188738823, -0.0164126455783844, 0.06779500842094421, -0.07017450034618378,
- 0.031342364847660065, 0.1304035484790802, -0.036578428000211716, 0.004152014385908842,
- 0.036815471947193146, -0.15331649780273438, -0.005175787024199963, -0.04142314940690994,
- 0.11410453915596008, -0.011788880452513695, 0.030261747539043427, 0.07494162023067474,
- -0.08679179847240448, 0.035723816603422165, 0.04486098885536194, -0.08933118730783463,
- 0.035619717091321945, 0.00024260487407445908, -0.05675943195819855, 0.12027131021022797,
- 0.12188629060983658, 0.08381786197423935, -0.0976896584033966, 11.99929141998291,
- 0.06922204047441483, 0.049885015934705734, -0.09391087293624878, 0.037613239139318466,
- -0.025982730090618134, 0.0026951890904456377, -0.08127987384796143, 0.06838437169790268,
- 0.1020520031452179, -0.0013936110772192478, -0.030923400074243546, -0.0725613608956337,
- -0.0962105393409729, -0.0009768207091838121, 0.02647535130381584, -0.09604356437921524,
- -0.05655808001756668, -0.004939613398164511, -0.038759466260671616,
- -0.06683621555566788, 0.025028977543115616, 0.07671277225017548, -0.003566375933587551,
- -0.038404881954193115, 0.08355396240949631, -0.0005366896511986852,
- -0.018430029973387718, 0.00560222240164876, 0.04110066965222359, 0.0240025632083416,
- 0.04735316336154938, 0.07723480463027954, 0.025510592386126518, -0.01496646087616682,
- 0.015932772308588028, 0.06741398572921753, 0.037210315465927124, 0.03147181123495102,
- 0.000011768854164984077, -0.03409222513437271, -0.008052671328186989,
- -0.006195539608597755, 0.09139242768287659, 0.057517919689416885, 0.04362410679459572,
- 0.020312918350100517, 0.10938063263893127, 0.02818848378956318, 0.08094864338636398,
- 0.10185793042182922, -0.019012192264199257, 0.1249493882060051, 0.03144856169819832,
- -0.024738039821386337, 0.07495544850826263, -0.04144784063100815, -0.10687664151191711,
- 0.11821249127388, 0.02518327534198761, -0.029989976435899734, 0.06328392773866653,
- 0.02132493443787098, 0.12489943206310272, -0.034971144050359726, 0.021889768540859222,
- 0.07414858788251877, 0.0926644504070282, -0.10729033499956131, -0.11877042055130005,
- 0.018835870549082756, -0.10643615573644638, -0.08235558122396469, 0.03739436715841293,
- 0.09147068858146667, -0.04990585893392563, 0.05799810215830803, 0.01464083231985569,
- 0.004196105990558863, -0.04718560352921486, -0.004193699918687344, 0.0587475560605526,
- -0.0512077733874321, 0.027019944041967392, 0.06379860639572144, 0.011714136227965355,
- 0.07800710201263428, 0.12332459539175034, 0.039294976741075516, -0.06006675586104393,
- -0.02976384572684765, 0.12774264812469482, 0.001879214309155941, -0.019597984850406647,
- 0.010285657830536366, -0.04833153635263443, 0.0453856997191906, -0.1436227560043335,
- 0.0468091256916523, 0.08117660135030746, -0.06991047412157059, -0.031545571982860565,
- -0.02293851040303707, 0.07344798743724823, 0.011831733398139477, 0.046411704272031784,
- -0.07901059836149216, 0.014083540998399258, -0.014605719596147537, 0.034631531685590744,
- -0.059188827872276306, 0.04108070954680443, 0.05784282460808754, -0.08883403241634369,
- 0.057073142379522324, 0.05479519069194794, -0.0417514331638813, -0.02089354395866394,
- 0.08336002379655838, -0.012619446031749249, -0.08778072893619537, -0.03405317664146423,
- -0.03059498965740204, -0.03883875161409378, -0.00408099265769124, -0.002625335706397891,
- -0.015864785760641098, 0.042820315808057785, -0.04697522148489952,
- -0.014307770878076553, 0.0575091727077961, 0.0605589896440506, 0.12150182574987411,
- -0.0073855845257639885, 0.02933388389647007, -0.052152518182992935,
- 0.016673054546117783, 0.06510494649410248, 0.06376156955957413, 0.07737180590629578,
- -0.04340800642967224, -0.010461177676916122, -0.07250016927719116, -0.09146051853895187,
- 0.011429629288613796, 0.06307828426361084, 0.025027738884091377, 0.014145147055387497,
- 0.030906282365322113, -0.0869021788239479, -0.03964519128203392, 0.09339028596878052,
- 0.06804613023996353, 0.0397864505648613, 0.041681937873363495, -0.07587836682796478,
- -0.05431736633181572, 0.09693868458271027, -0.06772372126579285, 0.003931669518351555,
- 0.01877249777317047, -0.027012471109628677, 0.058803264051675797, 0.09856285154819489,
- 0.018416723236441612, -0.005310530308634043, 0.05591241642832756, 0.036856647580862045,
- 0.03156668320298195, 0.02254142239689827, -0.00015570560935884714,
- -0.034748174250125885, -0.09656387567520142, -0.08182039111852646, 0.03887861222028732,
- 0.09785240888595581, 0.06439322978258133, -0.12611202895641327, -0.00410256814211607,
- 0.0020599975250661373
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 205,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Elizabeth Culliford"],
- "epoch_date_downloaded": 1653350400,
- "epoch_date_modified": 1654128000,
- "epoch_date_submitted": 1653350400,
- "flag": null,
- "report_number": 1669,
- "source_domain": "reuters.com",
- "submitters": ["AIAAIC"],
- "title": "Facebook-owner Meta says Ukraine's military, politicians targeted in hacking campaign",
- "url": "https://www.reuters.com/technology/facebook-owner-meta-says-ukraines-military-politicians-targeted-hacking-campaign-2022-02-28/"
- },
- {
- "__typename": "Report",
- "authors": ["Adam Rawnsley"],
- "epoch_date_downloaded": 1653350400,
- "epoch_date_modified": 1654128000,
- "epoch_date_submitted": 1653350400,
- "flag": null,
- "report_number": 1668,
- "source_domain": "thedailybeast.com",
- "submitters": ["AIAAIC"],
- "title": "Facebook Blocks ‘Ghostwriter’ Hackers Targeting Ukraine’s Army",
- "url": "https://www.thedailybeast.com/ghostwriter-hackers-targeting-ukraines-army-blocked-by-facebook"
- },
- {
- "__typename": "Report",
- "authors": ["Brian Fung"],
- "epoch_date_downloaded": 1653350400,
- "epoch_date_modified": 1654128000,
- "epoch_date_submitted": 1653350400,
- "flag": null,
- "report_number": 1667,
- "source_domain": "edition.cnn.com",
- "submitters": ["AIAAIC"],
- "title": "Meta says it's shut down a pro-Russian disinformation network, warns of a social media hacking operation",
- "url": "https://edition.cnn.com/2022/02/28/tech/meta-russia-ukraine-disinformation-network/index.html"
- },
- {
- "__typename": "Report",
- "authors": ["Nathaniel Gleicher", " David Agranovich"],
- "epoch_date_downloaded": 1653350400,
- "epoch_date_modified": 1654128000,
- "epoch_date_submitted": 1653350400,
- "flag": null,
- "report_number": 1666,
- "source_domain": "about.fb.com",
- "submitters": ["Khoa Lam"],
- "title": "Updates on Our Security Work in Ukraine",
- "url": "https://about.fb.com/news/2022/02/security-updates-ukraine/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "tinder",
- "name": "Tinder"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "tinder",
- "name": "Tinder"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "tinder-users-over-30-years-old",
- "name": "Tinder users over 30 years old"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1678, 1677, 1676, 1675],
- "vector": [
- -0.06206507980823517, 0.06200854852795601, 0.00650248397141695, -0.136964812874794,
- 0.0380554124712944, -0.06522166728973389, -0.00036092300433665514, 0.03889879584312439,
- 0.06462191790342331, -0.102118119597435, -0.029947713017463684, 0.016759177669882774,
- 0.0444803349673748, -0.037692733108997345, 0.041300930082798004, -0.10628119856119156,
- -0.12381809204816818, -0.01929548755288124, -0.005734136328101158, -0.11077012866735458,
- -0.08256151527166367, 0.011780931614339352, 0.04832491651177406, 0.14399446547031403,
- -0.03452472388744354, 0.03274361416697502, 0.12827792763710022, 0.10573325306177139,
- -0.01031558495014906, 0.0655352994799614, -0.025005316361784935, -0.07255912572145462,
- 0.11274184286594391, 0.028051352128386497, 0.007213500794023275, 0.09767520427703857,
- 0.03309603035449982, -0.02849533222615719, -0.013917053118348122, 0.011837087571620941,
- 0.07238346338272095, 0.2759392559528351, -0.003611483611166477, 0.01683720573782921,
- 0.031157948076725006, -0.04543709754943848, 0.03612658008933067, 0.029152315109968185,
- 0.001192786730825901, 0.024097520858049393, 0.024111689999699593, 0.03506359085440636,
- -0.036870311945676804, 0.03431611508131027, -0.08647435158491135, -0.011497349478304386,
- 0.022394884377717972, -0.02649206854403019, 0.015623034909367561, -0.11693968623876572,
- -0.006179251242429018, -0.21781906485557556, -0.06673653423786163, -0.11104653775691986,
- 0.09467417001724243, -0.06999383121728897, -0.038232654333114624, 0.004774454515427351,
- 0.029932543635368347, 0.08306287229061127, 0.08290640264749527, -0.022438062354922295,
- -0.01059211976826191, 0.023113470524549484, -0.0007669136975891888,
- -0.012369882315397263, 0.0029472094029188156, 0.17765191197395325, -0.09772330522537231,
- -0.006950438022613525, 0.09526588022708893, -0.11874081194400787, 0.44577017426490784,
- 0.0017963231075555086, 0.005055774003267288, -0.03449267894029617, 0.06328079104423523,
- 0.04635641723871231, 0.05153610184788704, 0.06306570768356323, -0.02855239063501358,
- 0.05840083211660385, -0.0823916345834732, -0.010235685855150223, 0.07750207185745239,
- 0.02432643063366413, -0.02616821974515915, -0.013755949214100838, -0.013418887741863728,
- -0.05316625535488129, -0.014314278028905392, -0.04520297423005104, 0.1062629222869873,
- 0.10051386058330536, -0.042776986956596375, 0.0030010160990059376, 0.07663430273532867,
- -0.0002761117648333311, 0.030986258760094643, -0.023967202752828598,
- 0.013644170947372913, 0.00831330381333828, 0.08132533729076385, -0.012752563692629337,
- 0.034237656742334366, -0.02692616730928421, 0.024680737406015396, 0.0840907096862793,
- 0.07070360332727432, 0.05656135827302933, -0.005071535240858793, 0.057644955813884735,
- 0.07671841233968735, -0.07198133319616318, -0.0033512082882225513,
- -0.011315672658383846, -0.06273869425058365, -0.04909391328692436, -0.03585436940193176,
- 0.02271789312362671, -0.05660926550626755, -0.1988486349582672, 0.017325330525636673,
- 0.041832394897937775, 0.011742104776203632, -0.07114763557910919, -0.020223114639520645,
- -0.07326939702033997, 0.04805256053805351, -0.02350670099258423, -0.0401238277554512,
- 0.046546656638383865, -0.043051064014434814, 0.05930560827255249, 0.14060825109481812,
- 0.07893788814544678, -0.04523073136806488, -0.03159189969301224, -0.01721877232193947,
- -0.045493464916944504, 0.12007966637611389, -0.10695671290159225, -0.08301816880702972,
- 0.002223493531346321, 0.01078458596020937, 0.6980798244476318, 0.08206748962402344,
- 0.15612554550170898, -0.014418763108551502, -0.025599690154194832, 0.16704170405864716,
- 0.014743821695446968, 0.07639434933662415, -0.06819683313369751, -0.0825200155377388,
- 0.03441133722662926, -0.07771577686071396, -0.06967093795537949, 0.00382427591830492,
- -0.0001330649247393012, 0.07767627388238907, 0.005571170710027218, 0.09314505010843277,
- -0.014654441736638546, -0.10621239989995956, -0.023895015940070152, 0.09701456129550934,
- 0.004660771228373051, -0.1434442102909088, -0.05857438966631889, 0.030978459864854813,
- 0.07810895144939423, -0.1413772851228714, 0.01633789949119091, -0.11175887286663055,
- 0.041383370757102966, 0.008620061911642551, 0.06341693550348282, -0.009700478054583073,
- 0.04737416282296181, 0.02956889010965824, 0.031807154417037964, 0.01964431069791317,
- -0.036139946430921555, -0.010088637471199036, 0.13065941631793976,
- -0.023271553218364716, -0.009424341842532158, 0.0793294608592987, -0.11515218764543533,
- 0.03258749470114708, 0.016374774277210236, 0.1634501963853836, -0.1206122487783432,
- 0.004662127234041691, -0.003286567982286215, 0.02321494184434414, 0.07554756104946136,
- -0.013875799253582954, -0.09474650025367737, -0.06363032013177872, 0.07170239835977554,
- 0.019244259223341942, 0.06327015906572342, 0.02146824076771736, 0.009289230220019817,
- 0.029375018551945686, 0.1265239268541336, 0.03892047330737114, -0.006486624013632536,
- 0.06005895137786865, 0.038368333131074905, -0.04281966760754585, -0.006357118487358093,
- 0.03423525393009186, 0.005234919488430023, -0.007332806475460529, -0.026910148561000824,
- 0.06739823520183563, 0.01246512308716774, -0.04777060076594353, 0.04442936182022095,
- 0.03369932994246483, 0.004508646205067635, 0.10735689103603363, -0.07980000972747803,
- -0.030728420242667198, -0.045778539031744, -0.04807303845882416, 0.016392307355999947,
- -0.020006701350212097, 0.10085827112197876, 0.06920191645622253, 0.0815373957157135,
- -0.006471219938248396, -0.0020079200621694326, 0.05027441307902336,
- 0.008963899686932564, 0.04684360697865486, 0.08469255268573761, -0.035861242562532425,
- -0.04240766167640686, -0.023706968873739243, 0.024634672328829765, 0.06337043642997742,
- 0.05251331627368927, -0.0647612065076828, -0.002235749736428261, -0.001725710229948163,
- -0.059493958950042725, -0.07154251635074615, -0.010155321098864079,
- -0.0009331988403573632, 0.01256624236702919, -0.04189181327819824, -0.06148406118154526,
- -0.07806137204170227, 0.0011561652645468712, 0.08595078438520432, -0.08013227581977844,
- -0.005896276794373989, -0.09666337072849274, -0.0035542291589081287,
- -0.018229162320494652, 0.07658520340919495, -0.018467187881469727, 0.047790493816137314,
- 0.05686328187584877, -0.03157355263829231, 0.019334908574819565, -0.008272410370409489,
- -0.06773190200328827, -0.04999193921685219, -0.018003497272729874,
- -0.024149397388100624, 0.033332668244838715, -0.009463544934988022,
- -0.01796841248869896, 0.03921980410814285, 0.05496160686016083, 0.06939774751663208,
- -0.0045618703588843346, -0.01660894602537155, 0.07928243279457092, -0.02968607284128666,
- 0.005338629242032766, 0.0987773910164833, -0.02761896140873432, 0.03514538332819939,
- -0.02158256620168686, -0.07630202919244766, -0.06228009983897209, 0.027312949299812317,
- -0.05812126025557518, 0.006498759612441063, -0.017733776941895485, 0.007054269313812256,
- -0.0542171411216259, -0.04049019515514374, 0.08109074831008911, -0.05749129131436348,
- -0.08243069052696228, -0.08964500576257706, 0.1033102422952652, 0.0336504727602005,
- -0.012313952669501305, -0.002424469916149974, -0.04116947948932648, 0.07513783872127533,
- -0.0180762130767107, -0.024486150592565536, 0.06384557485580444, 0.0670551136136055,
- -0.007297452073544264, 0.04773019999265671, 0.06341159343719482, 0.00013431673869490623,
- 0.02005961909890175, 0.07358254492282867, 0.4489130675792694, -0.15133625268936157,
- 0.0878424346446991, 0.08099528402090073, 0.022696401923894882, 0.04478570446372032,
- 0.004439163953065872, 0.05042190104722977, 0.10003100335597992, 0.13743630051612854,
- 0.12652303278446198, -0.052957259118556976, -0.027295831590890884, -0.07441246509552002,
- 0.0954451858997345, 0.041675735265016556, 0.00425721937790513, 0.03152715414762497,
- -0.07982505112886429, 0.0005324247176758945, 0.018418053165078163,
- -0.060495223850011826, 0.02993287332355976, 0.0017471978208050132, -0.07593653351068497,
- 0.019475024193525314, -0.00831279344856739, -0.00015773202176205814,
- -0.03150822967290878, 0.06999858468770981, -0.07702849805355072, 0.052196159958839417,
- 0.0074724918231368065, 0.036927495151758194, -0.063827283680439, -0.005622473079711199,
- -0.07925762236118317, -0.055455826222896576, 0.07451382279396057, -0.028506392613053322,
- 0.024988658726215363, 0.0550445020198822, -0.03746359422802925, 0.03538864105939865,
- -0.02033001370728016, -0.06153731048107147, 0.007067234721034765, 0.05925896763801575,
- 0.032340146601200104, 0.04824557155370712, 0.18845149874687195, -0.05367336422204971,
- -0.018269207328557968, -0.10590595006942749, 0.05596955865621567, 0.13466830551624298,
- -0.00313318008556962, 0.01908448152244091, -0.03841245174407959, -0.005501034203916788,
- 0.007657745853066444, -0.04138747602701187, -0.11193916201591492, 0.014272600412368774,
- -0.013973299413919449, 0.08697951585054398, 0.04841536656022072, -0.02011815831065178,
- -0.08643222600221634, -0.011372053995728493, -0.047966159880161285,
- 0.036619022488594055, 0.12418964505195618, -0.07116983830928802, 0.017426587641239166,
- -0.04974547028541565, -0.026170015335083008, -0.008756008930504322,
- -0.10689250379800797, 0.008420507423579693, -0.07296111434698105, 0.05166696012020111,
- 0.03977621719241142, 0.04576209932565689, -0.032897986471652985, 0.07494808733463287,
- -0.11690160632133484, 0.05519898608326912, 0.059247247874736786, -0.09022471308708191,
- 0.007897069677710533, -0.0069665745832026005, 0.033839479088783264,
- 0.0055108810774981976, -0.0367964543402195, -0.0025878935120999813,
- 0.006881171837449074, -0.030891595408320427, -0.07623380422592163, -0.0810052752494812,
- -0.041002050042152405, -0.11389890313148499, 0.07884509861469269, -0.028027687221765518,
- -0.038752421736717224, -0.017513105645775795, -0.0128727862611413,
- -0.004363993648439646, 0.03169705346226692, 0.05762138217687607, -0.15054145455360413,
- -0.027784720063209534, 0.009667656384408474, 0.0630200058221817, -0.013833499513566494,
- -0.02026401087641716, 0.016393333673477173, 0.09157582372426987, 0.044727783650159836,
- -0.015974421054124832, 0.025204161182045937, -0.02280922420322895, 0.05123145878314972,
- -0.11011475324630737, -0.3674083650112152, 0.044423408806324005, -0.011570564471185207,
- 0.031087122857570648, 0.013480635359883308, -0.10573352873325348, 0.02802712470293045,
- 0.029772542417049408, -0.07125929743051529, 0.07589902728796005, -0.03383129462599754,
- 0.024636799469590187, -0.01073109544813633, -0.09837360680103302, 0.004890140146017075,
- -0.06123574823141098, -0.040730688720941544, 0.030329113826155663, -0.01815981976687908,
- -0.08216521143913269, -0.11175934970378876, 0.018039599061012268, 0.0007848672103136778,
- 0.06342513114213943, 0.017839204519987106, 0.025009511038661003, -0.07478803396224976,
- -0.05652580037713051, 0.050629623234272, 0.06157143414020538, 0.015385371632874012,
- -0.04761552810668945, -0.00027691246941685677, 0.08835214376449585,
- 0.003011427354067564, 0.11167992651462555, 0.042237211018800735, -0.056828681379556656,
- -0.08202147483825684, 0.10700170695781708, 0.08465029299259186, 0.18345940113067627,
- -0.002923630177974701, -0.047168463468551636, 0.024467574432492256, 0.17461243271827698,
- 0.029085030779242516, 0.009347168728709221, -0.02150438353419304, -0.003397363005205989,
- 0.027255330234766006, 0.03745235875248909, 0.09620270133018494, -0.056258656084537506,
- -0.019457897171378136, -0.037019867449998856, 0.007906322367489338,
- -0.05242791771888733, -0.07508813589811325, 0.22318518161773682, 0.05279351770877838,
- 0.047653377056121826, 0.01668434962630272, -0.07308422029018402, -0.001774211646988988,
- -0.09928198903799057, -0.11134392768144608, 0.010122384876012802, -0.011714956723153591,
- 0.021670173853635788, -0.04585500434041023, -0.12364204227924347, -0.020391417667269707,
- 0.03546033054590225, -0.0005531906499527395, 0.08520957082509995, -0.004958131816238165,
- 0.05889720097184181, -0.03156021609902382, 0.14605097472667694, 0.04959583654999733,
- 0.02139901928603649, 0.021971477195620537, 0.08160611987113953, -0.020824667066335678,
- 0.01144363172352314, -0.06513293087482452, -0.09724946320056915, 0.0015431195497512817,
- 0.09475996345281601, -0.023577595129609108, 0.1160806268453598, 0.00831238180398941,
- -0.06454162299633026, -0.05729549378156662, -0.010061146691441536,
- -0.036156393587589264, 0.01727798394858837, -0.4268527030944824, -0.02952641434967518,
- 0.11042861640453339, -0.007957924157381058, 0.011438581161201, 0.08424794673919678,
- 0.03204149007797241, -0.06565286219120026, -0.054768141359090805, -0.10675784200429916,
- 0.14214910566806793, -0.009875783696770668, 0.11269743740558624, -0.08235587179660797,
- 0.004291768651455641, 0.09939204901456833, -0.06703334301710129, -0.02732435241341591,
- 0.06666778773069382, -0.240287184715271, -0.0013689519837498665, -0.05363939702510834,
- 0.08911748230457306, 0.02537170983850956, 0.03865674510598183, 0.08701850473880768,
- -0.05979091301560402, 0.016158001497387886, 0.017747391015291214, -0.03828630596399307,
- 0.029907353222370148, -0.006145952735096216, -0.0012824878795072436,
- 0.09736251831054688, 0.06401273608207703, 0.07012677192687988, -0.013227432034909725,
- 12.131988525390625, 0.07617808133363724, 0.061530597507953644, -0.059214428067207336,
- 0.032917413860559464, -0.05945761874318123, 0.0328165628015995, -0.11146202683448792,
- 0.010741569101810455, 0.10969093441963196, -0.030047299340367317, -0.06562799215316772,
- -0.029542967677116394, -0.14340732991695404, 0.005701808258891106, -0.04948075860738754,
- -0.06959574669599533, -0.019447633996605873, 0.04406370222568512, -0.038840971887111664,
- -0.03883057460188866, 0.02790968306362629, 0.07519195228815079, 0.03129516914486885,
- -0.07294116169214249, -0.03918295353651047, 0.002222648123279214, -0.015463055111467838,
- 0.007757552899420261, 0.034125082194805145, -0.015709713101387024,
- -0.013031371869146824, 0.053788214921951294, -0.02304387092590332, 0.0683320015668869,
- -0.01619420200586319, 0.09730348736047745, 0.013714662753045559,
- -0.00029658188577741385, 0.08297867327928543, -0.010222888551652431,
- 0.006583440117537975, 0.05611233413219452, 0.047680601477622986, 0.08155561983585358,
- 0.023990489542484283, 0.03793748468160629, 0.12190870195627213, -0.01053621619939804,
- 0.09344284236431122, 0.10241876542568207, 0.018513599410653114, 0.11416207253932953,
- -0.005146866664290428, -0.02172958292067051, 0.05394907295703888, 0.008230848237872124,
- -0.0771929994225502, 0.05809883028268814, 0.03843408823013306, -0.07628337293863297,
- 0.14771215617656708, 0.06263779103755951, 0.10770788788795471, 0.027648117393255234,
- 0.07695460319519043, 0.07216562330722809, 0.05058741569519043, -0.1347639411687851,
- -0.07733506709337234, 0.03253626823425293, -0.12953311204910278, -0.07114090025424957,
- 0.09065283834934235, 0.0719507560133934, -0.046063922345638275, 0.07013329863548279,
- -0.0009750396711751819, 0.013043494895100594, -0.04656469076871872,
- 0.0028186417184770107, 0.045150674879550934, 0.0012152433628216386,
- 0.017439618706703186, 0.10192453861236572, 0.014628862030804157, 0.061999671161174774,
- 0.1204698458313942, 0.0007175782229751348, -0.09262660145759583, -0.049875155091285706,
- 0.09339291602373123, 0.008587714284658432, -0.054150067269802094, -0.030352968722581863,
- -0.03470536321401596, 0.026602432131767273, -0.1561371237039566, 0.08573604375123978,
- 0.16501593589782715, -0.15161386132240295, -0.020625336095690727,
- -0.0032745804637670517, 0.0676046833395958, 0.007445366121828556, -0.01021814625710249,
- -0.06377284973859787, 0.007839317433536053, -0.015579389408230782, 0.0420445092022419,
- -0.04770969972014427, 0.11589665710926056, 0.11925062537193298, -0.03683694824576378,
- 0.012817625887691975, 0.06505323946475983, -0.009761697612702847, -0.026151854544878006,
- 0.040913376957178116, 0.03203056380152702, -0.08235974609851837, -0.04049176350235939,
- -0.0047170016914606094, -0.016655558720231056, -0.006794239394366741,
- -0.04580879956483841, -0.020657965913414955, 0.06378166377544403, -0.05239497497677803,
- -0.009707004763185978, -0.004647124093025923, 0.04031960666179657, 0.035638511180877686,
- -0.02345114015042782, 0.042177509516477585, -0.0804729163646698, -0.029869742691516876,
- 0.04298781976103783, 0.05468660965561867, 0.04927114024758339, -0.06711386889219284,
- -0.05558932572603226, -0.04492192342877388, -0.1688704788684845, -0.02363884076476097,
- 0.10017846524715424, 0.04088911414146423, 0.06825723499059677, 0.03463130444288254,
- -0.08682508766651154, -0.07995668053627014, 0.09632761776447296, 0.023711619898676872,
- -0.0014861298259347677, 0.05350176617503166, -0.05596700683236122, -0.0479455292224884,
- 0.10214688628911972, -0.0458877757191658, 0.0178493894636631, 0.0023742634803056717,
- -0.0922856479883194, 0.08557693660259247, 0.078752800822258, 0.07368830591440201,
- -0.0019593595061451197, 0.030887478962540627, 0.015225620940327644,
- 0.031017156317830086, -0.018048850819468498, 0.05091775208711624, -0.04382094740867615,
- -0.09073509275913239, -0.058091625571250916, 0.05316074565052986, 0.10863867402076721,
- 0.04367884248495102, -0.0658295750617981, -0.04222141578793526, -0.06351086497306824
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 206,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Saimi Jeong"],
- "epoch_date_downloaded": 1653523200,
- "epoch_date_modified": 1654128000,
- "epoch_date_submitted": 1653523200,
- "flag": null,
- "report_number": 1678,
- "source_domain": "choice.com.au",
- "submitters": ["AIAAIC"],
- "title": "Tinder Plus pricing higher for older people",
- "url": "https://www.choice.com.au/consumers-and-data/data-collection-and-use/how-your-data-is-used/articles/tinder-plus-costs-more-if-youre-older"
- },
- {
- "__typename": "Report",
- "authors": ["Chiara Cavaglieri"],
- "epoch_date_downloaded": 1653523200,
- "epoch_date_modified": 1654128000,
- "epoch_date_submitted": 1653523200,
- "flag": null,
- "report_number": 1677,
- "source_domain": "which.co.uk",
- "submitters": ["AIAAIC"],
- "title": "Tinder's unfair pricing algorithm exposed",
- "url": "https://www.which.co.uk/news/article/tinders-unfair-pricing-algorithm-exposed-adCwG8b7VRYo"
- },
- {
- "__typename": "Report",
- "authors": ["Consumer NZ"],
- "epoch_date_downloaded": 1653523200,
- "epoch_date_modified": 1654128000,
- "epoch_date_submitted": 1653523200,
- "flag": null,
- "report_number": 1676,
- "source_domain": "consumer.org.nz",
- "submitters": ["AIAAIC"],
- "title": "Over thirty? You could be paying more to swipe right",
- "url": "https://www.consumer.org.nz/articles/over-thirty-you-could-be-paying-more-to-swipe-right"
- },
- {
- "__typename": "Report",
- "authors": ["Consumers International"],
- "epoch_date_downloaded": 1653523200,
- "epoch_date_modified": 1654128000,
- "epoch_date_submitted": 1653523200,
- "flag": null,
- "report_number": 1675,
- "source_domain": "consumersinternational.org",
- "submitters": ["AIAAIC"],
- "title": "A Consumer Investigation into Personalised Pricing",
- "url": "https://www.consumersinternational.org/media/369078/personalised_pricing_15_02_2022.pdf"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "honolulu-police-department",
- "name": "Honolulu Police Department"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "boston-dynamics",
- "name": "Boston Dynamics"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "honolulu-homeless-people",
- "name": "Honolulu homeless people"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1682, 1681, 1680, 1679],
- "vector": [
- -0.07120774686336517, 0.07178396731615067, 0.016872864216566086, -0.13428790867328644,
- 0.08966664969921112, 0.00858992338180542, -0.007180005311965942, 0.054020218551158905,
- 0.1011156514286995, -0.1242479756474495, 0.06130385398864746, 0.03073863498866558,
- 0.015542112290859222, -0.11284169554710388, -0.0033387672156095505,
- -0.12753257155418396, -0.03478490188717842, -0.0409320667386055, -0.04173853248357773,
- -0.17126446962356567, -0.06895104050636292, -0.011635644361376762, 0.042500875890254974,
- 0.08641710132360458, -0.04181010276079178, 0.024458320811390877, 0.0947914570569992,
- 0.12181645631790161, -0.024379607290029526, 0.025668660178780556, -0.0290214903652668,
- -0.08038166165351868, 0.15692417323589325, 0.0409541055560112, -0.04058266803622246,
- 0.10241186618804932, 0.018981531262397766, -0.017696477472782135, 0.015518128871917725,
- 0.006988133303821087, 0.009366336278617382, 0.21503999829292297, -0.004585900343954563,
- -0.029334506019949913, 0.07471837103366852, -0.06547465920448303, 0.0005854633636772633,
- 0.07635483890771866, -0.0013408282538875937, 0.0036544878967106342,
- -0.01013864204287529, 0.038114480674266815, -0.026895660907030106, 0.035054031759500504,
- -0.0847141295671463, 0.08726509660482407, 0.05032476782798767, 0.027011819183826447,
- 0.04950623959302902, -0.048851292580366135, -0.041509922593832016, -0.24141226708889008,
- -0.029378265142440796, -0.08356086164712906, 0.06484880298376083, -0.09267044067382812,
- -0.0226494949311018, 0.06368736922740936, -0.00425336230546236, 0.05994968116283417,
- 0.06119328737258911, 0.04377978295087814, -0.006479301955550909, -0.04175898805260658,
- -0.018704811111092567, -0.023965902626514435, 0.0065384674817323685,
- 0.17397426068782806, -0.11820326745510101, 0.003809271613135934, 0.12908276915550232,
- -0.11087266355752945, 0.42000141739845276, 0.008091365918517113, 0.04502549022436142,
- -0.02783872000873089, 0.09152978658676147, 0.01708613522350788, 0.057613763958215714,
- 0.043813157826662064, -0.04741181805729866, 0.013617278076708317, -0.06587599217891693,
- -0.007088708691298962, 0.07007410377264023, 0.013533719815313816, 0.01739933155477047,
- 0.03303488716483116, -0.00962800532579422, -0.05507807806134224, 0.004578566178679466,
- -0.04192791134119034, 0.10071780532598495, 0.07758870720863342, -0.03153481334447861,
- 0.016077248379588127, 0.07902166247367859, -0.06951389461755753, 0.07941215485334396,
- -0.09117698669433594, 0.021678244695067406, 0.005170226097106934, 0.019948575645685196,
- 0.005415329709649086, 0.0309881791472435, -0.0818445011973381, 0.05078655481338501,
- 0.07030688971281052, 0.09956420212984085, 0.0008799314964562654, 0.011707830242812634,
- 0.05682834982872009, 0.07979022711515427, -0.07109227776527405, -0.041674088686704636,
- -0.063356913626194, -0.04362952709197998, 0.0022295648232102394, -0.023211300373077393,
- 0.06486944854259491, -0.06995419412851334, -0.24187083542346954, -0.015208904631435871,
- 0.0924726277589798, 0.009650643914937973, -0.03801703825592995, 0.018420860171318054,
- -0.10370665788650513, 0.024914944544434547, -0.0368741936981678, -0.018721390515565872,
- 0.08106593787670135, 0.015550119802355766, 0.040532439947128296, 0.10369511693716049,
- 0.011327403597533703, -0.05026262626051903, -0.06278286874294281, -0.028376853093504906,
- 0.0010197097435593605, 0.10677863657474518, -0.15755736827850342, -0.06449785828590393,
- 0.025712769478559494, -0.038571182638406754, 0.6417136192321777, 0.09211906790733337,
- 0.18662330508232117, -0.023631155490875244, -0.02398419752717018, 0.16293445229530334,
- -0.028237758204340935, 0.037332285195589066, -0.06651255488395691, -0.05659106746315956,
- 0.016883332282304764, -0.09430178999900818, -0.02508082054555416, 0.033278241753578186,
- -0.0018717542989179492, 0.1080833375453949, -0.01684350147843361, 0.08832234144210815,
- -0.0058092474937438965, -0.08640329539775848, -0.017300670966506004, 0.0739704966545105,
- -0.007979579269886017, -0.1448545902967453, -0.045905083417892456, 0.02989000454545021,
- 0.08770322799682617, -0.09088925272226334, 0.006648979615420103, -0.08606033027172089,
- 0.052092958241701126, -0.044757064431905746, 0.025053398683667183,
- -0.006775760091841221, 0.026200171560049057, 0.06072703003883362, 0.05440274626016617,
- 0.00985639076679945, -0.14100326597690582, -0.041189104318618774, 0.09326252341270447,
- 0.006203270982950926, -0.039527777582407, 0.10223448276519775, -0.07055686414241791,
- 0.02505822852253914, -0.015991756692528725, 0.17649132013320923, -0.10671468079090118,
- -0.03007352724671364, -0.008111828938126564, -0.028855301439762115, 0.04534051939845085,
- -0.0013064936501905322, -0.05641297250986099, -0.03923838213086128, 0.05276060476899147,
- 0.052271768450737, 0.07600577920675278, 0.03167572245001793, -0.04571858048439026,
- 0.042623765766620636, 0.025058884173631668, -0.00024258304620161653,
- -0.03557515889406204, 0.05841151252388954, 0.062140557914972305, -0.05916041508316994,
- -0.013116314075887203, 0.0016384882619604468, 0.06973060965538025, 0.04367278516292572,
- -0.01125967875123024, 0.03367508202791214, -0.03802165761590004, -0.07055936753749847,
- 0.03591667488217354, 0.0675688087940216, 0.020123716443777084, 0.09158588945865631,
- -0.07141491025686264, -0.048914581537246704, -0.04400160536170006,
- -0.018615685403347015, -0.012514992617070675, -0.03455812484025955, 0.08505752682685852,
- 0.06486722081899643, 0.09133588522672653, 0.03790125995874405, 0.05077647790312767,
- 0.0661841556429863, 0.059903234243392944, 0.03529262915253639, 0.09564509242773056,
- -0.042607828974723816, -0.05439169332385063, -0.04747642204165459, 0.012598792091012001,
- 0.014547557570040226, 0.07366007566452026, -0.07328715920448303, -0.050077173858881,
- -0.05924278870224953, -0.05219823867082596, -0.11188909411430359, -0.05759492889046669,
- 0.019079357385635376, 0.008018938824534416, -0.06821532547473907, -0.11676868796348572,
- -0.08671753853559494, 0.0001294732792302966, 0.08424600213766098, -0.03202718868851662,
- 0.010324543341994286, -0.12436233460903168, 0.03973780944943428, 0.009504636749625206,
- 0.05730109661817551, 0.02309611812233925, 0.03972413390874863, 0.008297170512378216,
- -0.06166910007596016, 0.03636592626571655, -0.03562859445810318, -0.00456787645816803,
- -0.057308293879032135, -0.036763906478881836, -0.02769353799521923,
- -0.011691220104694366, 0.012856923043727875, -0.016873454675078392, 0.01958836242556572,
- 0.03235096111893654, 0.06253513693809509, -0.0055933669209480286, -0.01102213654667139,
- 0.07276131212711334, -0.04605286568403244, 0.0038115510251373053, 0.09436150640249252,
- -0.020961344242095947, 0.04536017030477524, -0.020617609843611717, -0.08610367774963379,
- -0.052036527544260025, -0.00322977383621037, -0.05037258565425873, 0.06628108769655228,
- -0.031211860477924347, -0.023207614198327065, -0.03760398551821709,
- -0.009266870096325874, 0.08131114393472672, -0.0541568249464035, -0.08248759806156158,
- -0.08006364852190018, 0.12003783136606216, -0.01869935728609562, 0.015509728342294693,
- 0.0247882641851902, -0.09932483732700348, 0.07516764849424362, -0.004709914326667786,
- -0.006340669002383947, 0.014709868468344212, 0.0192110612988472, -0.06319393962621689,
- 0.06553229689598083, 0.09324977546930313, -0.0415605865418911, 0.01614135503768921,
- 0.07858548313379288, 0.4296407401561737, -0.16364219784736633, 0.10080837458372116,
- 0.10570123046636581, 0.036597445607185364, 0.06107683479785919, -0.027837947010993958,
- 0.04989858716726303, 0.07424621284008026, 0.10895662754774094, 0.07448698580265045,
- -0.06229765713214874, -0.01956191286444664, -0.07197840511798859, 0.10072558373212814,
- 0.02621021680533886, 0.020679788663983345, -0.0362822450697422, -0.07657435536384583,
- -0.02415371499955654, -0.002401383826509118, -0.04892444610595703, 0.012792808935046196,
- 0.011361204087734222, -0.0733134001493454, 0.02830435335636139, -0.017290128394961357,
- 0.04595419764518738, -0.032269492745399475, 0.027485070750117302, 0.007545096799731255,
- 0.08679058402776718, 0.013235882855951786, 0.044474244117736816, -0.08465404808521271,
- -0.002090295311063528, -0.13580600917339325, -0.12981924414634705, 0.09297913312911987,
- -0.045289166271686554, 0.04285532981157303, 0.06727717816829681, -0.0576552078127861,
- 0.06553170830011368, -0.0451892651617527, -0.042459093034267426, 0.03725220263004303,
- 0.02303212881088257, 0.07359279692173004, 0.0782366394996643, 0.16987073421478271,
- -0.03722081705927849, -0.06978205591440201, -0.06749223172664642, 0.07291796058416367,
- 0.09469889104366302, 0.0060461037792265415, -0.0018218581099063158, 0.03412267938256264,
- -0.03430183604359627, -0.011934343725442886, -0.043964192271232605,
- -0.09293541312217712, 0.020390590652823448, -0.04525183513760567, 0.07218538224697113,
- 0.044878602027893066, -0.0519857257604599, -0.12060083448886871, -0.026338594034314156,
- -0.04221244901418686, -0.015584858134388924, 0.1425146907567978, -0.04325025528669357,
- -0.010545187629759312, -0.017425334081053734, 0.027090439572930336,
- -0.02125607803463936, -0.04576733335852623, 0.0035021486692130566,
- -0.024387678131461143, 0.04366791620850563, 0.10333580523729324, 0.026773879304528236,
- -0.05032428354024887, 0.06023583188652992, -0.09754473716020584, 0.06273047626018524,
- 0.020534083247184753, -0.07250329107046127, 0.0837312564253807, -0.029111381620168686,
- 0.022893140092492104, 0.02534729614853859, -0.06003133952617645, -0.011619308963418007,
- -0.021608926355838776, -0.07516121864318848, -0.0705617219209671, -0.058228883892297745,
- -0.06775255501270294, -0.07791122794151306, 0.06513331830501556, -0.12502196431159973,
- 0.027389803901314735, -0.04026796668767929, 0.00039804994594305754,
- 0.0010834138374775648, 0.025877822190523148, 0.02327781356871128, -0.13792048394680023,
- -0.03059183992445469, -0.023194748908281326, 0.05016817897558212, -0.001597462105564773,
- -0.06471095979213715, 0.06297320872545242, 0.10031291842460632, 0.06718118488788605,
- -0.04808004945516586, -0.006964680273085833, -0.0431310273706913, 0.0869036540389061,
- -0.14869947731494904, -0.46616020798683167, 0.08596914261579514, -0.0011817443883046508,
- 0.03670739009976387, 0.031932830810546875, -0.052654337137937546, 0.054952166974544525,
- 0.005694682709872723, -0.024181300774216652, 0.08829062432050705, -0.05170813575387001,
- 0.02188444696366787, 0.0033349874429404736, -0.03889452666044235, -0.03493545949459076,
- -0.10168811678886414, -0.03919936344027519, 0.02775845304131508, 0.00864525604993105,
- -0.09255356341600418, -0.11468205600976944, 0.010014127939939499, 0.004008101765066385,
- 0.04206686466932297, -0.039988428354263306, 0.03739453852176666, -0.032529205083847046,
- -0.02613925375044346, 0.004402042366564274, 0.05797595903277397, 0.0250881165266037,
- -0.05215475708246231, 0.007470675744116306, 0.05314293131232262, -0.03359052911400795,
- 0.1532880663871765, 0.039334069937467575, 0.01265423372387886, -0.0629226416349411,
- 0.04891850799322128, 0.08585904538631439, 0.18543194234371185, -0.015155980363488197,
- 0.038903072476387024, -0.0016233554342761636, 0.08144364506006241, 0.01963949017226696,
- 0.06493585556745529, -0.011986014433205128, -0.014012295752763748,
- 0.0067622046917676926, -0.03188435360789299, 0.09652658551931381, -0.07376065850257874,
- -0.004830982070416212, -0.03359178453683853, -0.02120257541537285, 0.002206112490966916,
- -0.02876647375524044, 0.16100984811782837, 0.05660583823919296, 0.024011820554733276,
- 0.00704061146825552, -0.07559844106435776, 0.05742255970835686, -0.05510100722312927,
- -0.1014072597026825, -0.021596379578113556, -0.012035468593239784, 0.027635034173727036,
- 0.009960392490029335, -0.1324244886636734, -0.0028110111597925425, 0.027664586901664734,
- 0.021861258894205093, 0.07715505361557007, -0.06070701777935028, 0.0540836825966835,
- 0.004529520869255066, 0.14422737061977386, 0.026709051802754402, 0.030795510858297348,
- 0.0702361911535263, 0.08830773830413818, 0.001946139382198453, 0.006966102868318558,
- -0.03265221789479256, -0.06028101593255997, -0.010035593062639236, 0.10487427562475204,
- -0.03963736444711685, 0.11962994933128357, 0.028306029736995697, 0.00012435740791261196,
- -0.08277934044599533, 0.07216668128967285, -0.03127095848321915, 0.023968638852238655,
- -0.3774700462818146, -0.011871776543557644, 0.14092451333999634, 0.034283921122550964,
- 0.029710639268159866, 0.1063334047794342, -0.002584966132417321, -0.03043774887919426,
- -0.025429729372262955, -0.09726623445749283, 0.1508447229862213, -0.0002668113447725773,
- 0.053594231605529785, -0.08880320191383362, 0.0538906455039978, 0.09163077175617218,
- 0.01815485768020153, -0.016514049842953682, 0.05383853241801262, -0.2157570868730545,
- 0.0070641739293932915, -0.03555718809366226, 0.17665013670921326, 0.04651296138763428,
- 0.014808906242251396, 0.05528635531663895, -0.06563091278076172, 0.004518062807619572,
- 0.07380618155002594, 0.026736270636320114, 0.04790054261684418, -0.009818226099014282,
- -0.05578415468335152, 0.11222556233406067, 0.054872505366802216, 0.08174028247594833,
- 0.009188983589410782, 12.017199516296387, 0.07143647223711014, 0.0808764174580574,
- -0.10253538191318512, -0.0030357693322002888, -0.044845737516880035,
- 0.02655205875635147, -0.07531734555959702, 0.07263370603322983, 0.12466348707675934,
- -0.037781890481710434, -0.051753804087638855, -0.0014970171032473445,
- -0.09461140632629395, -0.0019358376739546657, -0.06604693084955215,
- -0.03966875374317169, -0.04156864807009697, 0.00232786126434803, -0.046523839235305786,
- -0.03701099008321762, 0.11005576699972153, 0.051847174763679504, 0.015111947432160378,
- -0.07798396795988083, 0.06446261703968048, 0.010566557757556438, -0.004319880157709122,
- -0.06063268333673477, -0.0037982065696269274, -0.00663008214905858,
- 0.015723805874586105, 0.028774386271834373, 0.011913612484931946, 0.031200997531414032,
- 0.07189495861530304, 0.02243940532207489, 0.04017975181341171, 0.03927838057279587,
- 0.07261466979980469, 0.01551862247288227, 0.04767830669879913, 0.011217869818210602,
- 0.03510412201285362, 0.07284537702798843, 0.033817969262599945, 0.026783479377627373,
- 0.139131098985672, 0.006163378246128559, 0.08480075746774673, 0.12089116126298904,
- -0.03205222636461258, 0.09608210623264313, -0.009174002334475517, 0.02297026477754116,
- 0.07522868365049362, 0.007420871872454882, -0.06405365467071533, 0.09141145646572113,
- 0.08770962059497833, -0.048331618309020996, 0.09488088637590408, 0.01175050251185894,
- 0.13594822585582733, 0.01819920726120472, 0.06811890751123428, 0.043280940502882004,
- 0.10586629062891006, -0.15221384167671204, -0.040786076337099075, 0.013588602654635906,
- -0.1046132892370224, -0.05254126712679863, 0.04268895089626312, 0.0802544429898262,
- -0.02392898127436638, 0.04115266352891922, -0.04702555015683174, 0.07142757624387741,
- -0.05292722210288048, 0.002423596801236272, 0.07193171977996826, -0.011382367461919785,
- 0.008708929643034935, 0.06216384842991829, 0.013542940840125084, 0.1303199678659439,
- 0.061807624995708466, -0.004312308505177498, -0.1364147663116455, -0.01987963542342186,
- 0.09666319936513901, -0.05286484584212303, -0.06877536326646805, -0.027011150494217873,
- -0.03295088931918144, 0.0443689227104187, -0.14752787351608276, 0.07003316283226013,
- 0.12403596192598343, -0.06088290736079216, -0.028023604303598404, -0.04002993926405907,
- 0.08136565238237381, -0.013407260179519653, 0.05513719469308853, -0.05140778422355652,
- 0.009948677383363247, 0.010183500126004219, 0.06322021037340164, -0.059583038091659546,
- 0.06850995868444443, 0.07106196135282516, -0.060465339571237564, 0.017349055036902428,
- 0.05793652683496475, -0.03978707268834114, -0.04079865664243698, 0.06911561638116837,
- 0.01358208991587162, -0.10455746203660965, -0.05177642032504082, -0.022058775648474693,
- -0.054042767733335495, -0.030996685847640038, -0.04436931014060974, 0.01744299754500389,
- 0.026052629575133324, -0.0834510549902916, -0.02231639251112938, 0.05845170468091965,
- 0.04973731189966202, 0.05969135835766792, 0.004965903703123331, 0.06359531730413437,
- -0.07479733228683472, -0.05260324105620384, 0.07518073171377182, 0.05608367919921875,
- 0.08883340656757355, -0.01967245154082775, -0.01013986486941576, -0.06343679875135422,
- -0.06606018543243408, 0.003477964084595442, 0.10809313505887985, 0.03889276459813118,
- 0.07241940498352051, 0.008291644044220448, -0.049509696662425995, -0.04197077453136444,
- 0.09006467461585999, 0.015425321646034718, 0.017355579882860184, 0.026950065046548843,
- -0.05782877653837204, -0.06609993427991867, 0.09878572076559067, -0.04991576075553894,
- -0.007857618853449821, -0.014067202806472778, -0.0303011666983366, 0.10814032703638077,
- 0.10422271490097046, 0.05592060834169388, 0.04119434580206871, -0.018946221098303795,
- -0.0205683670938015, 0.025811640545725822, -0.03460625559091568, 0.05222589150071144,
- -0.05556650459766388, -0.08724800497293472, -0.0857592523097992, 0.0748840868473053,
- 0.0808202251791954, -0.040623739361763, -0.1184140145778656, -0.021069010719656944,
- -0.020978279411792755
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 207,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Euronews", " Associated Press"],
- "epoch_date_downloaded": 1653523200,
- "epoch_date_modified": 1654387200,
- "epoch_date_submitted": 1653523200,
- "flag": null,
- "report_number": 1682,
- "source_domain": "euronews.com",
- "submitters": ["AIAAIC"],
- "title": "A useful tool or dehumanising? Robot police dog that scans homeless people sparks debate",
- "url": "https://www.euronews.com/next/2021/08/06/a-useful-tool-or-dehumanising-robot-police-dog-that-scans-homeless-people-sparks-debate"
- },
- {
- "__typename": "Report",
- "authors": ["Matthew Gault"],
- "epoch_date_downloaded": 1653523200,
- "epoch_date_modified": 1654387200,
- "epoch_date_submitted": 1653523200,
- "flag": null,
- "report_number": 1681,
- "source_domain": "vice.com",
- "submitters": ["AIAAIC"],
- "title": "Police Outsourcing Human Interaction With Homeless People to Boston Dynamics’ Robot Dog",
- "url": "https://www.vice.com/en/article/v7dz7b/police-outsourcing-human-interaction-with-homeless-people-to-boston-dynamics-robot-dog"
- },
- {
- "__typename": "Report",
- "authors": ["Christina Jedra"],
- "epoch_date_downloaded": 1653523200,
- "epoch_date_modified": 1654387200,
- "epoch_date_submitted": 1653523200,
- "flag": null,
- "report_number": 1680,
- "source_domain": "civilbeat.org",
- "submitters": ["AIAAIC"],
- "title": "Honolulu Police Spent $150,000 In CARES Funds On A Robot Dog",
- "url": "https://www.civilbeat.org/2021/01/honolulu-police-spent-150000-in-cares-funds-on-a-robot-dog/"
- },
- {
- "__typename": "Report",
- "authors": ["Todd Feathers"],
- "epoch_date_downloaded": 1653523200,
- "epoch_date_modified": 1654387200,
- "epoch_date_submitted": 1653523200,
- "flag": null,
- "report_number": 1679,
- "source_domain": "vice.com",
- "submitters": ["AIAAIC"],
- "title": "Honolulu Police Used a Robot Dog to Patrol a Homeless Encampment",
- "url": "https://www.vice.com/en/article/wx5xym/honolulu-police-used-a-robot-dog-to-patrol-a-homeless-encampment"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "tesla",
- "name": "Tesla"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "tesla",
- "name": "Tesla"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "tesla-drivers",
- "name": "Tesla drivers"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1761, 1760, 1759, 1687, 1686, 1685, 1684, 1683],
- "vector": [
- -0.07392936944961548, 0.09151340276002884, -0.015286407433450222, -0.10397425293922424,
- 0.07196548581123352, -0.010098217986524105, -0.007956873625516891, 0.05493704229593277,
- 0.061606649309396744, -0.1192479059100151, 0.008245379664003849, 0.05149964988231659,
- 0.025629227980971336, -0.07418764382600784, 0.059153638780117035, -0.16261154413223267,
- -0.06119894981384277, -0.03243258222937584, -0.032213855534791946, -0.1360807567834854,
- -0.06232951581478119, -0.006971320603042841, 0.013332018628716469, 0.13672670722007751,
- -0.07475746423006058, 0.016612231731414795, 0.0711895003914833, 0.10111359506845474,
- -0.0551409088075161, 0.050434257835149765, -0.0011658058501780033, -0.04670913144946098,
- 0.14137540757656097, 0.03546229377388954, -0.0014580599963665009, 0.10178356617689133,
- -0.014243961311876774, -0.007069602608680725, -0.0599258616566658,
- 0.0020252903923392296, 0.024627381935715675, 0.2650776207447052, -0.016819214448332787,
- -0.0035658623091876507, 0.029155045747756958, -0.07265304774045944,
- 0.008672123774886131, 0.03531010448932648, 0.005506968591362238, 0.013125913217663765,
- -0.02947736717760563, 0.05662299320101738, -0.03138730674982071, 0.02017945796251297,
- -0.11215730011463165, 0.056773923337459564, 0.021784583106637, -0.00730327982455492,
- 0.029526690021157265, -0.0731472596526146, -0.06133915111422539, -0.25755536556243896,
- -0.0420682318508625, -0.040575459599494934, 0.07140417397022247, -0.09349190443754196,
- -0.022743424400687218, 0.02674034982919693, 0.009375997819006443, 0.09437817335128784,
- 0.07979026436805725, -0.04006393626332283, -0.03900871053338051, 0.0449194498360157,
- 0.014299677684903145, -0.01869177259504795, -0.021581565961241722, 0.18909163773059845,
- -0.10047711431980133, -0.009734412655234337, 0.1255149394273758, -0.09205927699804306,
- 0.4572768211364746, 0.014815487898886204, -0.043325286358594894, -0.003256795462220907,
- 0.059372466057538986, 0.041366539895534515, 0.045305728912353516, 0.03930896148085594,
- -0.0322301983833313, 0.01081489771604538, -0.03294512629508972, 0.012697351165115833,
- 0.07769650220870972, 0.04652470350265503, -0.0022531806025654078, 0.012415715493261814,
- 0.0010957276681438088, -0.08158813416957855, 0.03871655464172363, -0.03818639740347862,
- 0.08063897490501404, 0.09469794481992722, -0.03199959918856621, 0.017055487260222435,
- 0.09300769865512848, -0.026349399238824844, 0.06058904528617859, -0.06453937292098999,
- 0.03265988081693649, 0.00966021977365017, 0.029946893453598022, 0.011421476490795612,
- 0.051711130887269974, -0.06963745504617691, -0.009678233414888382, 0.05973706766963005,
- 0.10153313726186752, 0.010156434960663319, -0.011610308662056923, 0.056799422949552536,
- 0.05152708292007446, -0.07122582197189331, -0.03767327964305878, -0.03920220583677292,
- -0.10593944042921066, -0.014113971032202244, -0.0469910204410553, 0.05581872537732124,
- -0.09769860655069351, -0.20837658643722534, 0.023080937564373016, 0.11108998209238052,
- -0.035234954208135605, -0.03479347750544548, -0.01029718667268753, -0.07339665293693542,
- 0.04564506188035011, -0.03730425611138344, -0.052986450493335724, 0.06107034906744957,
- 0.05244280397891998, 0.04823644459247589, 0.1365794539451599, 0.07200945168733597,
- -0.06819934397935867, -0.03041679412126541, -0.003852542955428362,
- -0.043208274990320206, 0.07213788479566574, -0.13231787085533142, -0.04810185357928276,
- 0.03028714656829834, -0.015810059383511543, 0.699404239654541, 0.13278412818908691,
- 0.18192316591739655, 0.05110654607415199, -0.05021826550364494, 0.1788298487663269,
- -0.004702485632151365, 0.08786780387163162, -0.11247426271438599, -0.09058461338281631,
- 0.059862084686756134, -0.1197752133011818, -0.05623703822493553, 0.007041893899440765,
- 0.012653420679271221, 0.09806067496538162, 0.048939261585474014, 0.08871989697217941,
- 0.001449895789846778, -0.1218441054224968, 0.0006684783147647977, 0.06680601835250854,
- 0.02716110646724701, -0.12471058964729309, -0.05029876530170441, 0.050998836755752563,
- 0.1198442131280899, -0.10034232586622238, 0.031042976304888725, -0.0782734602689743,
- 0.01791035756468773, -0.012510960921645164, 0.033665552735328674, -0.05024011433124542,
- -0.0014807297848165035, 0.024691352620720863, 0.08279111981391907, 0.00898196455091238,
- -0.12491922825574875, -0.02381887100636959, 0.1260407716035843, -0.007909037172794342,
- -0.0435556136071682, 0.07816604524850845, -0.08254989236593246, 0.07402447611093521,
- 0.04294488579034805, 0.1501246839761734, -0.12304526567459106, -0.023592496290802956,
- -0.012545635923743248, -0.009190371260046959, 0.05503750219941139,
- -0.0027365300338715315, -0.05807897076010704, -0.07557565718889236, 0.07931925356388092,
- 0.03320607915520668, 0.09792694449424744, 0.07341605424880981, -0.04117764160037041,
- 0.039625681936740875, 0.0827721357345581, 0.011143948882818222, -0.020505396649241447,
- 0.07354217022657394, 0.06227490305900574, -0.07805955410003662, -0.030598198994994164,
- 0.03451618179678917, 0.03648970276117325, 0.018201088532805443, -0.007990225218236446,
- 0.07729755342006683, 0.005513045936822891, -0.07662168145179749, 0.035879943519830704,
- 0.03369269520044327, 0.001354343956336379, 0.11232458055019379, -0.040794096887111664,
- -0.058545053005218506, -0.021799465641379356, -0.009395966306328773,
- 0.009028538130223751, -0.009918926283717155, 0.09936480224132538, 0.08382916450500488,
- 0.05895673856139183, 0.023960229009389877, 0.025524508208036423, 0.06995920836925507,
- 0.04765060544013977, 0.06329913437366486, 0.08773449808359146, -0.021690569818019867,
- -0.08225937187671661, -0.03991308808326721, 0.021491456776857376, 0.00922794733196497,
- 0.028048988431692123, -0.07708831131458282, -0.04461444914340973, -0.03577466309070587,
- -0.009109850972890854, -0.09759408980607986, -0.05921248346567154, 0.006316293962299824,
- 0.057670269161462784, -0.027019185945391655, -0.07950721681118011, -0.11186034232378006,
- 0.02105197124183178, 0.0929826945066452, -0.000004139677912462503,
- -0.0012014323147013783, -0.12616436183452606, 0.01541794091463089,
- -0.024129126220941544, 0.04922400042414665, 0.005066526588052511, -0.005566289648413658,
- -0.005331461317837238, -0.04398202523589134, 0.02970810793340206, -0.008089694194495678,
- -0.038860056549310684, -0.0811665877699852, -0.07927852869033813, -0.06414725631475449,
- 0.009899584576487541, 0.03286142647266388, -0.040366776287555695, 0.06304889917373657,
- 0.05037864297628403, 0.047047052532434464, -0.009102918207645416, -0.04012800753116608,
- 0.07190265506505966, -0.04175136610865593, -0.029174624010920525, 0.10101189464330673,
- -0.047934602946043015, 0.025865867733955383, 0.0002629552618600428, -0.0771343931555748,
- -0.01793937385082245, 0.0027908296324312687, -0.08480491489171982, 0.04661880061030388,
- -0.027390144765377045, 0.01915503293275833, -0.03787551820278168, -0.013957182876765728,
- 0.03543046861886978, -0.05932474508881569, -0.08343321830034256, -0.09099157899618149,
- 0.10408087819814682, -0.01720445044338703, -0.020877176895737648, 0.03540677949786186,
- -0.07570593804121017, 0.04817238450050354, -0.032441653311252594, 0.004267923533916473,
- 0.023972343653440475, 0.04265595227479935, -0.043773408979177475, 0.02667326293885708,
- 0.05739821493625641, -0.030452389270067215, 0.02172143943607807, 0.07663841545581818,
- 0.42782315611839294, -0.17015613615512848, 0.06334365904331207, 0.08155596256256104,
- 0.0070794192142784595, 0.08765986561775208, -0.0392298586666584, 0.07637277990579605,
- 0.07794999331235886, 0.13149811327457428, 0.09981220215559006, -0.03848467394709587,
- 0.007684418931603432, -0.051046669483184814, 0.11079481244087219, -0.013073270209133625,
- 0.02858816087245941, -0.040838856250047684, -0.07875900715589523, 0.01658063568174839,
- 0.04424239695072174, -0.044221196323633194, -0.009942017495632172,
- -0.0033400324173271656, -0.055702682584524155, -0.011567490175366402,
- -0.01126838754862547, 0.026495004072785378, -0.03363799303770065, 0.0202475655823946,
- -0.006349553819745779, 0.026619458571076393, 0.02681058645248413, 0.022121617570519447,
- -0.12372498959302902, 0.034942880272865295, -0.12303613871335983, -0.08883433043956757,
- 0.061159420758485794, -0.03687531501054764, 0.04415110871195793, 0.049821171909570694,
- -0.025337615981698036, 0.04339614883065224, 0.0029298942536115646, -0.06433624029159546,
- 0.05381326377391815, 0.04557187110185623, 0.01589966006577015, 0.07844856381416321,
- 0.15953151881694794, -0.05518858879804611, -0.05541127920150757, -0.05650407075881958,
- 0.07003316283226013, 0.10599197447299957, -0.05012848228216171, 0.009099617600440979,
- -0.0228095892816782, -0.042978182435035706, 0.008084396831691265, -0.0761764794588089,
- -0.07028475403785706, 0.04077620431780815, -0.025868015363812447, 0.07854094356298447,
- 0.014111685566604137, -0.03831241652369499, -0.16821560263633728, -0.02667049691081047,
- -0.0622204914689064, 0.006118469871580601, 0.15989750623703003, -0.07826628535985947,
- 0.040015220642089844, 0.006786859594285488, -0.024043895304203033, 0.042946673929691315,
- -0.08959358185529709, 0.011609334498643875, -0.053773630410432816, 0.0365314707159996,
- 0.019526012241840363, 0.05224147439002991, -0.021890154108405113, 0.10014456510543823,
- -0.10303428024053574, 0.05232517421245575, 0.034055445343256, 0.00243709166534245,
- 0.04225505143404007, -0.0484679639339447, 0.05759385973215103, 0.04062289744615555,
- -0.04354216530919075, -0.0020035768393427134, -0.048262376338243484,
- -0.04077782481908798, -0.10072910785675049, -0.06250602006912231, -0.05309409275650978,
- -0.0888347327709198, 0.05641283467411995, -0.10130153596401215, -0.04331338033080101,
- -0.031654562801122665, -0.018044931814074516, 0.025029970332980156,
- 0.017260700464248657, 0.027820222079753876, -0.17778508365154266, 0.0468192920088768,
- -0.001588558661751449, 0.06841987371444702, -0.03719049319624901, -0.03697826340794563,
- 0.020073305815458298, 0.09531000256538391, 0.039610933512449265, -0.001576946466229856,
- -0.00005139864515513182, -0.07350326329469681, 0.028084034100174904,
- -0.09329647570848465, -0.4132237732410431, 0.05280396342277527, -0.010443320497870445,
- 0.04508642479777336, 0.005457437131553888, -0.07629798352718353, 0.033306386321783066,
- 0.009525367990136147, -0.06275870651006699, 0.09832650423049927, -0.055608730763196945,
- 0.05196525529026985, 0.02320469357073307, -0.06149095296859741, -0.04637235030531883,
- -0.08033035695552826, -0.044561102986335754, 0.035036906599998474, -0.04870351776480675,
- -0.07154561579227448, -0.0924268290400505, 0.030258730053901672, -0.03269515931606293,
- 0.01645679958164692, 0.012620643712580204, 0.0306856632232666, -0.09427601099014282,
- -0.03638765588402748, 0.03934062644839287, 0.04524671286344528, 0.039227358996868134,
- -0.060705285519361496, -0.012049190700054169, 0.0682465136051178, -0.05939916893839836,
- 0.16419559717178345, 0.002869586693122983, 0.03080211579799652, -0.07019734382629395,
- 0.12039723992347717, 0.05157671496272087, 0.18393132090568542, -0.01125762052834034,
- 0.006452464032918215, 0.030787790194153786, 0.1517627239227295, 0.03891720622777939,
- 0.028673779219388962, -0.008132994174957275, 0.00741655845195055, 0.018749654293060303,
- 0.007349254097789526, 0.06900899112224579, -0.10058116167783737, -0.037174198776483536,
- -0.05239919573068619, -0.015019398182630539, 0.010568506084382534,
- 0.0029174056835472584, 0.23271441459655762, 0.013656824827194214, 0.026202049106359482,
- 0.02415599673986435, -0.08458314090967178, 0.012993080541491508, -0.03956569731235504,
- -0.16747869551181793, 0.019980233162641525, 0.0009655224857851863, 0.02345491759479046,
- -0.03875849395990372, -0.1607344150543213, -0.02604144811630249, -0.017173347994685173,
- 0.023244572803378105, 0.10618419945240021, -0.008504905737936497, 0.026244137436151505,
- -0.01852070540189743, 0.12263262271881104, 0.05868298560380936, 0.03892122581601143,
- 0.04521747678518295, 0.07947920262813568, 0.024387884885072708, 0.029064970090985298,
- -0.05394564941525459, -0.06856302917003632, 0.02738356962800026, 0.14230942726135254,
- -0.04023745283484459, 0.08573124557733536, 0.051358532160520554, -0.03822023421525955,
- -0.06436508148908615, 0.047478314489126205, -0.03813188150525093, 0.045282408595085144,
- -0.447009414434433, -0.020524973049759865, 0.09658043086528778, 0.030755747109651566,
- 0.032055072486400604, 0.08547919988632202, 0.05384974181652069, -0.05924514681100845,
- -0.10451937466859818, -0.07359639555215836, 0.18767105042934418, -0.03268158435821533,
- 0.040578778833150864, -0.12211119383573532, 0.039941079914569855, 0.09350046515464783,
- -0.040150195360183716, -0.025132305920124054, 0.08463752269744873, -0.2174774408340454,
- 0.0034865010529756546, -0.05581584572792053, 0.1655108630657196, 0.042778562754392624,
- 0.03852801397442818, 0.06848310679197311, -0.05828454717993736, 0.02130783349275589,
- 0.04707598313689232, -0.011143513023853302, 0.07493229955434799, -0.0022941322531551123,
- -0.03378010541200638, 0.12120793759822845, 0.08041710406541824, 0.08551115542650223,
- -0.021848192438483238, 12.08647632598877, 0.09663276374340057, 0.04145580530166626,
- -0.08758354187011719, 0.01003458071500063, -0.03836178034543991, 0.04224594309926033,
- -0.0996449813246727, 0.06185532361268997, 0.12159298360347748, -0.029329100623726845,
- -0.015437017194926739, 0.008288239128887653, -0.10376856476068497,
- -0.003181158797815442, -0.07440361380577087, -0.04481500759720802, -0.04667668417096138,
- 0.04473765566945076, -0.03567858785390854, -0.020807020366191864, 0.006144013721495867,
- 0.06321916729211807, 0.03421829640865326, -0.07681343704462051, 0.052028220146894455,
- 0.03341535106301308, 0.0015064134495332837, -0.0028709450270980597,
- -0.016383051872253418, -0.02770882099866867, 0.02048264443874359, 0.07206457108259201,
- 0.02703479491174221, 0.0029303499031811953, 0.11408313363790512, 0.08432377874851227,
- 0.09012706577777863, 0.014381800778210163, 0.08539792895317078, 0.024498507380485535,
- 0.01962950825691223, 0.017211776226758957, 0.03441852331161499, 0.06703631579875946,
- 0.0384192019701004, 0.0491776205599308, 0.12451904267072678, 0.032832689583301544,
- 0.0919109433889389, 0.10152009129524231, -0.013532990589737892, 0.12303309887647629,
- 0.041531339287757874, 0.0039777252823114395, 0.08414015918970108, -0.017496006563305855,
- -0.08575679361820221, 0.07166016101837158, 0.10523194819688797, -0.05943663790822029,
- 0.11298089474439621, 0.029378928244113922, 0.13504287600517273, 0.03473205491900444,
- 0.04020296782255173, 0.08431944251060486, 0.08457119762897491, -0.1375683695077896,
- -0.09611785411834717, 0.02735067531466484, -0.10981105268001556, -0.037530433386564255,
- 0.059766918420791626, 0.10977104306221008, -0.08339723199605942, 0.055252112448215485,
- -0.03335285931825638, 0.02550273947417736, -0.04310958459973335, -0.029199931770563126,
- 0.0396818071603775, -0.0007531761657446623, 0.021707478910684586, 0.07165104150772095,
- 0.01585780829191208, 0.0892605111002922, 0.09026017040014267, -0.025622427463531494,
- -0.07799362391233444, -0.0877617821097374, 0.10326343029737473, -0.02155696600675583,
- -0.06024312973022461, -0.016658592969179153, -0.06287378072738647, 0.03301253914833069,
- -0.1583201289176941, 0.05521152541041374, 0.10411728918552399, -0.12166562676429749,
- -0.040035806596279144, -0.012911318801343441, 0.06887903064489365,
- -0.020262129604816437, 0.0438612699508667, -0.04416002705693245, -0.004927583038806915,
- 0.009890232235193253, 0.048298414796590805, -0.05655921250581741, 0.08756650239229202,
- 0.082337886095047, -0.0794481486082077, 0.04947727546095848, 0.08661419153213501,
- -0.026574403047561646, -0.056079454720020294, 0.039349909871816635, 0.04079233855009079,
- -0.09871073812246323, -0.051819074898958206, -0.023528022691607475,
- -0.07635222375392914, -0.020316502079367638, -0.07385839521884918, 0.020314896479249,
- 0.0323856957256794, -0.0565183162689209, -0.017994647845625877, 0.05988920480012894,
- 0.0443241223692894, 0.14273804426193237, 0.007181850727647543, 0.07149969041347504,
- -0.10320251435041428, -0.048691246658563614, 0.06273125857114792, 0.061683155596256256,
- 0.0635504350066185, -0.03914128988981247, -0.017558038234710693, -0.08542488515377045,
- -0.1239042654633522, 0.008606424555182457, 0.13207831978797913, 0.06978210806846619,
- 0.01687738671898842, 0.019408144056797028, -0.07812795042991638, -0.06517694890499115,
- 0.11686012893915176, 0.042973872274160385, 0.028647717088460922, 0.014003537595272064,
- -0.06754063069820404, -0.014095894992351532, 0.15415814518928528, -0.05992981791496277,
- -0.009962587617337704, 0.009899106808006763, -0.03915396332740784, 0.11487269401550293,
- 0.12717901170253754, 0.040883298963308334, 0.026032010093331337, 0.01677512377500534,
- -0.004435598384588957, 0.038998838514089584, -0.008657669648528099, 0.03481150418519974,
- -0.006509255617856979, -0.11660993099212646, -0.06812699139118195, 0.034473177045583725,
- 0.08091168850660324, 0.026476426050066948, -0.12207839637994766, -0.028441043570637703,
- -0.05658900737762451
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 208,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Elizabeth Blackstock"],
- "epoch_date_downloaded": 1654560000,
- "epoch_date_modified": 1655251200,
- "epoch_date_submitted": 1654560000,
- "flag": null,
- "report_number": 1761,
- "source_domain": "gizmodo.com.au",
- "submitters": ["Daniel Atherton (BNH.ai)"],
- "title": "Teslas Are Braking for No Reason, But That’s Not Autopilot’s Only Problem",
- "url": "https://www.gizmodo.com.au/2022/06/teslas-are-braking-for-no-reason-but-thats-not-autopilots-only-problem/"
- },
- {
- "__typename": "Report",
- "authors": ["Tom Krisher"],
- "epoch_date_downloaded": 1654560000,
- "epoch_date_modified": 1655251200,
- "epoch_date_submitted": 1654560000,
- "flag": null,
- "report_number": 1760,
- "source_domain": "apnews.com",
- "submitters": ["Daniel Atherton (BNH.ai)"],
- "title": "US has over 750 complaints of Teslas braking for no reason",
- "url": "https://apnews.com/article/technology-politics-health-cd1a51e26baa07678de50cab8ae90ee0"
- },
- {
- "__typename": "Report",
- "authors": ["Graham Hope"],
- "epoch_date_downloaded": 1654560000,
- "epoch_date_modified": 1655251200,
- "epoch_date_submitted": 1654560000,
- "flag": null,
- "report_number": 1759,
- "source_domain": "iotworldtoday.com",
- "submitters": ["Daniel Atherton (BNH.ai)"],
- "title": "Hundreds of Tesla Owners Report Phantom Braking",
- "url": "https://www.iotworldtoday.com/2022/06/06/hundreds-of-tesla-owners-report-phantom-braking/"
- },
- {
- "__typename": "Report",
- "authors": ["Fred Lambert"],
- "epoch_date_downloaded": 1653523200,
- "epoch_date_modified": 1654387200,
- "epoch_date_submitted": 1653523200,
- "flag": null,
- "report_number": 1687,
- "source_domain": "electrek.co",
- "submitters": ["Khoa Lam"],
- "title": "Tesla has a serious phantom braking problem in Autopilot",
- "url": "https://electrek.co/2021/11/15/tesla-serious-phantom-braking-problem-autopilot/"
- },
- {
- "__typename": "Report",
- "authors": ["Fred Lambert"],
- "epoch_date_downloaded": 1653523200,
- "epoch_date_modified": 1654387200,
- "epoch_date_submitted": 1653523200,
- "flag": null,
- "report_number": 1686,
- "source_domain": "electrek.co",
- "submitters": ["AIAAIC"],
- "title": "Tesla (TSLA) falls as more attention is brought to Autopilot's serious phantom braking issue",
- "url": "https://electrek.co/2022/02/02/tesla-tsla-falls-attention-autopilot-serious-phantom-braking-issue/"
- },
- {
- "__typename": "Report",
- "authors": ["Veronica Irwin"],
- "epoch_date_downloaded": 1653523200,
- "epoch_date_modified": 1654387200,
- "epoch_date_submitted": 1653523200,
- "flag": null,
- "report_number": 1685,
- "source_domain": "protocol.com",
- "submitters": ["AIAAIC"],
- "title": "107 drivers recently complained about their Teslas making random, jolting stops",
- "url": "https://www.protocol.com/bulletins/tesla-phantom-braking"
- },
- {
- "__typename": "Report",
- "authors": ["Andrew J. Hawkins"],
- "epoch_date_downloaded": 1653523200,
- "epoch_date_modified": 1654387200,
- "epoch_date_submitted": 1653523200,
- "flag": null,
- "report_number": 1684,
- "source_domain": "theverge.com",
- "submitters": ["AIAAIC"],
- "title": "Tesla owners report dozens of instances of ‘phantom braking’",
- "url": "https://www.theverge.com/2022/2/2/22914236/tesla-phantom-braking-complaints-nhtsa-fsd"
- },
- {
- "__typename": "Report",
- "authors": ["Faiz Siddiqui", " Jeremy B. Merrill", " Chris Alcantara"],
- "epoch_date_downloaded": 1653523200,
- "epoch_date_modified": 1654387200,
- "epoch_date_submitted": 1653523200,
- "flag": null,
- "report_number": 1683,
- "source_domain": "washingtonpost.com",
- "submitters": ["AIAAIC"],
- "title": "Tesla drivers report a surge in ‘phantom braking’",
- "url": "https://www.washingtonpost.com/technology/2022/02/02/tesla-phantom-braking/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "tesla",
- "name": "Tesla"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "tesla",
- "name": "Tesla"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "tesla-drivers",
- "name": "Tesla drivers"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1692, 1691, 1690, 1689, 1688],
- "vector": [
- -0.06369967013597488, 0.09090520441532135, -0.012896833010017872, -0.06652514636516571,
- 0.05222083255648613, -0.0007155148196034133, -0.006495296955108643, 0.04368926212191582,
- 0.07739689201116562, -0.14246097207069397, 0.0055986507795751095, 0.03585009649395943,
- 0.006328469607979059, -0.10141931474208832, 0.08685541152954102, -0.12212809175252914,
- -0.09703078120946884, -0.0415521115064621, 0.007250618189573288, -0.08857178688049316,
- -0.08813133090734482, -0.013964873738586903, -0.0008695306023582816, 0.089174285531044,
- -0.060408227145671844, 0.035463664680719376, 0.06445328146219254, 0.0832836702466011,
- -0.030407438054680824, 0.02289229817688465, -0.002286416944116354, -0.08493081480264664,
- 0.125106543302536, 0.02204267308115959, 0.011033279821276665, 0.08747120201587677,
- 0.009646931663155556, 0.003339160233736038, -0.08701926469802856, -0.017429852858185768,
- 0.03436562418937683, 0.2295950949192047, 0.002370025496929884, -0.007670268416404724,
- 0.060411494225263596, -0.048156045377254486, 0.03298337385058403, 0.04746756702661514,
- 0.03350415825843811, 0.0479777567088604, -0.0300890002399683, 0.0497840978205204,
- -0.05044171214103699, 0.00755319744348526, -0.0898495763540268, 0.03141605108976364,
- 0.004494850058108568, 0.010513628832995892, 0.035402923822402954, -0.030673736706376076,
- -0.0747542753815651, -0.21579666435718536, -0.05600660294294357, -0.013602325692772865,
- 0.04670986905694008, -0.08287420123815536, 0.002692239359021187, 0.06990467011928558,
- 0.02205982245504856, 0.07069031149148941, 0.03968072682619095, -0.062060821801424026,
- -0.044857751578092575, 0.006825665943324566, 0.0013305641477927566,
- -0.026500817388296127, -0.005040607415139675, 0.18359580636024475, -0.08007970452308655,
- 0.007120156195014715, 0.12218263000249863, -0.09176979213953018, 0.3279224932193756,
- 0.024659696966409683, -0.026140382513403893, 0.008618970401585102, 0.09375915676355362,
- 0.04606872797012329, 0.006523419171571732, 0.019731920212507248, -0.020972535014152527,
- 0.0236164890229702, -0.029807988554239273, -0.05968008190393448, 0.05937163904309273,
- 0.02856757864356041, 0.007204094436019659, -0.11410007625818253, 0.002295172307640314,
- -0.043883319944143295, 0.014576129615306854, -0.02844046615064144, 0.0772777795791626,
- 0.08868374675512314, -0.018271101638674736, 0.011105497367680073, 0.09181930869817734,
- 0.0006383277359418571, 0.024962808936834335, -0.07155030220746994, 0.025102978572249413,
- 0.07267056405544281, 0.031989775598049164, 0.0354534387588501, 0.027072498574852943,
- -0.08321513235569, -0.006938458885997534, 0.04140837863087654, 0.09057445079088211,
- 0.030336132273077965, -0.0014992483193054795, 0.06707394868135452, 0.06204260513186455,
- -0.0856754332780838, -0.02264038845896721, -0.0005390808219090104,
- -0.022900443524122238, 0.0016244191210716963, -0.05309939384460449, 0.09193719923496246,
- -0.0711759626865387, -0.2169293612241745, 0.029429346323013306, 0.06843753159046173,
- -0.04248032346367836, -0.018682682886719704, 0.009232436306774616, -0.06558181345462799,
- 0.07721325010061264, -0.006108244881033897, -0.026356369256973267, 0.041992269456386566,
- 0.031721197068691254, 0.053239576518535614, 0.05020736902952194, 0.05230095237493515,
- -0.03828924894332886, -0.0426279716193676, 0.026249194517731667, -0.08192409574985504,
- 0.07601068913936615, -0.1147654801607132, -0.02987094596028328, 0.01591312140226364,
- -0.03220077231526375, 0.6248918175697327, 0.13908149302005768, 0.13880357146263123,
- 0.008270343765616417, -0.0506753996014595, 0.16122180223464966, -0.012940151616930962,
- 0.04416055604815483, -0.11042122542858124, -0.03962356224656105, 0.025467578321695328,
- -0.09731298685073853, -0.05556759238243103, -0.0018921360606327653,
- 0.012913525104522705, 0.05474573373794556, 0.07253710180521011, 0.05265364795923233,
- -0.007475261576473713, -0.09978613257408142, -0.01058757584542036, 0.03114910051226616,
- 0.04861803725361824, -0.12098173797130585, -0.055722735822200775, 0.061310797929763794,
- 0.08991484344005585, -0.08656803518533707, 0.003880498930811882, -0.06676296889781952,
- 0.0304523054510355, 0.0022360750008374453, 0.04346280172467232, -0.0505569651722908,
- 0.02119571343064308, 0.033314298838377, 0.0821545273065567, -0.038266781717538834,
- -0.10471395403146744, 0.011723051778972149, 0.13231535255908966, 0.00021216421737335622,
- -0.073130764067173, 0.05339174345135689, -0.06760437786579132, 0.04061257839202881,
- -0.016021128743886948, 0.1252516508102417, -0.10574977099895477, 0.026264388114213943,
- -0.0002669643727131188, -0.020889556035399437, 0.05140961334109306,
- -0.019749782979488373, -0.08198800683021545, -0.06690459698438644, 0.09028889238834381,
- 0.030409235507249832, 0.06450988352298737, 0.07059719413518906, -0.03694654256105423,
- 0.03503027185797691, 0.061128269881010056, 0.008581520058214664, -0.05876173451542854,
- 0.05073853209614754, 0.08300672471523285, -0.040353573858737946, -0.030126741155982018,
- 0.015718404203653336, 0.038217693567276, 0.02008849009871483, 0.005023951642215252,
- 0.07498382031917572, 0.0002647876681294292, -0.0677214115858078, 0.014749621972441673,
- 0.06309441477060318, 0.003247565822675824, 0.10313191264867783, -0.07571626454591751,
- -0.03790144622325897, -0.011384716257452965, -0.02065819688141346,
- -0.003354801330715418, -0.033663295209407806, 0.05575662851333618, 0.09955659508705139,
- 0.05029020458459854, 0.02517256699502468, 0.04777006059885025, 0.045538462698459625,
- 0.02298858016729355, 0.04864080622792244, 0.0871875062584877, -0.03504185378551483,
- -0.051846444606781006, -0.03435523062944412, 0.006589353084564209, 0.027690788730978966,
- 0.011134566739201546, -0.07985766977071762, -0.03365901857614517, -0.07855252176523209,
- -0.010544897057116032, -0.08981163054704666, -0.06363994628190994, -0.02311778999865055,
- 0.035739824175834656, -0.02954743802547455, -0.08166863024234772, -0.09436263889074326,
- 0.05074352025985718, 0.0725625678896904, 0.0053078667260706425, 0.0049428497441112995,
- -0.10538244247436523, -0.016878187656402588, -0.05845019221305847, 0.028181949630379677,
- 0.024522705003619194, -0.02961050532758236, -0.05029444769024849, -0.051971159875392914,
- 0.014691375195980072, -0.0014563968870788813, 0.020127248018980026,
- -0.06408731639385223, -0.0877041295170784, -0.04176803678274155, 0.02057752199470997,
- 0.028137272223830223, -0.03214452043175697, 0.04027269035577774, -0.0038820679765194654,
- 0.05046126991510391, -0.009049189276993275, -0.008602950721979141, 0.052310068160295486,
- -0.048562999814748764, -0.026637542992830276, 0.07126569002866745,
- -0.027424350380897522, 0.017914224416017532, 0.01765955053269863, -0.05863114073872566,
- -0.04766906052827835, 0.013493689708411694, -0.08671428263187408, 0.05010266229510307,
- -0.04677576199173927, 0.00834774412214756, -0.04194348305463791, 0.013940101489424706,
- 0.05798422545194626, -0.034296173602342606, -0.0755845457315445, -0.0592338852584362,
- 0.1260298639535904, -0.016104301437735558, -0.020505625754594803, 0.008788017556071281,
- -0.0996028408408165, 0.0420503094792366, 0.003141215071082115, 0.015440347604453564,
- -0.0025598518550395966, 0.07440819591283798, -0.02782386913895607, 0.017070019617676735,
- 0.058833085000514984, 0.007974067702889442, -0.013626769185066223, 0.0886455774307251,
- 0.40919870138168335, -0.13077190518379211, 0.05225779861211777, 0.11693035066127777,
- -0.002433230634778738, 0.07931956648826599, -0.024222852662205696, 0.06335751712322235,
- 0.04977426677942276, 0.10926222801208496, 0.12704245746135712, -0.015638340264558792,
- 0.013134976848959923, 0.026794886216521263, 0.09242419898509979, -0.01575515791773796,
- 0.059297122061252594, -0.03813488036394119, -0.01326744444668293, 0.0021416989620774984,
- 0.02940981648862362, -0.06557144224643707, 0.002243581460788846, -0.047684915363788605,
- -0.07954324781894684, -0.011558599770069122, 0.003919823095202446, 0.04806305095553398,
- -0.026405349373817444, 0.016976412385702133, -0.06805877387523651, 0.028056960552930832,
- 0.054788440465927124, 0.02950025163590908, -0.06493650376796722, 0.022186333313584328,
- -0.07176274806261063, -0.10798156261444092, 0.055480845272541046, -0.016705814749002457,
- 0.06408931314945221, 0.05331820249557495, -0.03983735293149948, 0.029540305957198143,
- 0.0021661496721208096, -0.02004528045654297, 0.013378891162574291, 0.040786974132061005,
- 0.04612431675195694, 0.07171393185853958, 0.1370466947555542, -0.038232408463954926,
- -0.010975261218845844, -0.06900427490472794, 0.07392197847366333, 0.08975732326507568,
- -0.03292238712310791, 0.031247448176145554, 0.007883029989898205, 0.04702558368444443,
- -0.01628723368048668, -0.05453665181994438, -0.0688706561923027, 0.033095307648181915,
- -0.06854178011417389, 0.08956989645957947, 0.023528801277279854, -0.06821983307600021,
- -0.18021085858345032, -0.014009113423526287, -0.053353309631347656,
- 0.024055954068899155, 0.16336475312709808, -0.06450247019529343, 0.024611376225948334,
- 0.04094931483268738, -0.025101009756326675, 0.010283378884196281, -0.10422216355800629,
- 0.023721080273389816, -0.07254715263843536, 0.011262159794569016, 0.03292578086256981,
- 0.02930857241153717, -0.013536001555621624, 0.06644352525472641, -0.08674982935190201,
- 0.07578776031732559, 0.04974941536784172, 0.006242519710212946, 0.004136474337428808,
- -0.014453073963522911, 0.041675809770822525, 0.05400167033076286, -0.0558614619076252,
- -0.010484733618795872, -0.06101102754473686, -0.03212714195251465,
- -0.061224598437547684, -0.07341457158327103, -0.05900275707244873, -0.07618041336536407,
- 0.03892114385962486, -0.08742667734622955, -0.02312774583697319, -0.03424882888793945,
- 0.024823766201734543, 0.0007033947622403502, 0.01039015594869852, 0.011029592715203762,
- -0.1340833604335785, 0.03440982848405838, 0.007501475512981415, 0.06878429651260376,
- -0.062037475407123566, -0.06251318752765656, -0.007702928967773914, 0.09954331815242767,
- -0.0024276587646454573, -0.02275899052619934, 0.017992325127124786, -0.0807638168334961,
- 0.037037067115306854, -0.10717799514532089, -0.3648170232772827, 0.01231937576085329,
- 0.008759220130741596, 0.04908131808042526, 0.009980411268770695, -0.0764305517077446,
- 0.04301179200410843, 0.043478380888700485, 0.0021550296805799007, 0.07947403192520142,
- -0.056232750415802, 0.041966505348682404, -0.016027312725782394, -0.04533325135707855,
- -0.011735855601727962, -0.07565692067146301, -0.03242024779319763, 0.042162224650382996,
- -0.012567959725856781, -0.051322948187589645, -0.08592558652162552, 0.03679409250617027,
- -0.027955055236816406, 0.02402687445282936, 0.01999208703637123, 0.027811134234070778,
- -0.06106152385473251, -0.009496130980551243, 0.029710153117775917, 0.03424526005983353,
- 0.02368616685271263, -0.04489806666970253, 0.0005313764559105039, 0.04103720188140869,
- -0.0024496656842529774, 0.12096650898456573, 0.00022961646027397364,
- 0.015081328339874744, -0.09262547641992569, 0.10721991956233978, 0.06233402341604233,
- 0.1881883442401886, -0.028474628925323486, -0.02109251357614994, 0.015482944436371326,
- 0.08236920088529587, 0.05159600451588631, 0.018334824591875076, -0.01038261316716671,
- 0.005340023897588253, 0.025157172232866287, 0.007021290250122547, 0.061046160757541656,
- -0.1082461029291153, -0.029681285843253136, -0.007738322950899601, -0.03430647403001785,
- 0.011073592118918896, -0.0021539684385061264, 0.1585247814655304, 0.005069855134934187,
- 0.020004013553261757, 0.04681570082902908, -0.04840903729200363, -0.017336584627628326,
- -0.059828948229551315, -0.07190577685832977, 0.004346751142293215, 0.004695809446275234,
- 0.028280843049287796, -0.0456223227083683, -0.1301911175251007, -0.01607893779873848,
- -0.003587576327845454, 0.015822965651750565, 0.09233716130256653, -0.010182773694396019,
- 0.012361745350062847, -0.012272056192159653, 0.11263873428106308, 0.023330815136432648,
- 0.05114269256591797, 0.04537758231163025, 0.05275198817253113, 0.002574547426775098,
- -0.042021743953228, -0.030749643221497536, -0.06323559582233429, 0.035946935415267944,
- 0.12970402836799622, -0.017115015536546707, 0.09035948663949966, 0.022185921669006348,
- -0.00005502067506313324, -0.05062258988618851, 0.0466938354074955,
- -0.011148284189403057, -0.009228465147316456, -0.43408918380737305,
- -0.0004656507517211139, 0.08935528993606567, 0.037407658994197845, 0.05265568569302559,
- 0.09383706748485565, 0.04686485975980759, -0.056871283799409866, -0.04189823195338249,
- -0.04179803654551506, 0.14979970455169678, -0.03685101494193077, 0.027595054358243942,
- -0.09101724624633789, 0.03325175493955612, 0.06284140050411224, -0.058908384293317795,
- -0.019347701221704483, 0.04724252596497536, -0.18053799867630005, -0.02429843321442604,
- -0.05619264766573906, 0.16758930683135986, 0.029319223016500473, 0.03217311576008797,
- 0.08546076714992523, -0.04905052110552788, 0.03602141886949539, 0.059635140001773834,
- -0.02052328549325466, 0.10036616027355194, 0.008296504616737366, -0.027044719085097313,
- 0.11069351434707642, 0.09662500023841858, 0.07746218144893646, 0.013013946823775768,
- 11.86601734161377, 0.05479755997657776, 0.0503421351313591, -0.0855824202299118,
- 0.01972167193889618, -0.067546047270298, 0.044067077338695526, -0.110504649579525,
- 0.060860149562358856, 0.127252995967865, -0.020858284085989, -0.03253985941410065,
- 0.01576922833919525, -0.06608736515045166, 0.0005196446436457336, -0.04515302926301956,
- -0.05386028438806534, -0.036474697291851044, 0.05284516140818596, -0.0442163459956646,
- -0.0003404662129469216, -0.03475997969508171, 0.05215947702527046, 0.04579899460077286,
- -0.08181660622358322, 0.05660993978381157, 0.020658237859606743, 0.008447818458080292,
- -0.025968652218580246, 0.008798548951745033, -0.033109914511442184, 0.0273839570581913,
- 0.06110525131225586, 0.02762567438185215, -0.03499588742852211, 0.0808635726571083,
- 0.05024699121713638, 0.053412020206451416, 0.024517646059393883, 0.03339396044611931,
- 0.017916865646839142, 0.02135680615901947, 0.03262734413146973, 0.05777822807431221,
- 0.04959926754236221, 0.014689338393509388, 0.049599871039390564, 0.13541872799396515,
- -0.00448985630646348, 0.05649961903691292, 0.07023255527019501, -0.012017514556646347,
- 0.1057894378900528, 0.044093407690525055, 0.004760388284921646, 0.020853232592344284,
- 0.0014203399186953902, -0.07745098322629929, 0.09652654826641083, 0.12001986801624298,
- -0.04938403517007828, 0.12383607774972916, 0.02072294056415558, 0.0598313994705677,
- 0.03426188975572586, 0.032070986926555634, 0.04909667372703552, 0.057695258408784866,
- -0.07619162648916245, -0.05505998805165291, 0.05422794073820114, -0.05188864469528198,
- -0.034940607845783234, 0.050928108394145966, 0.07839721441268921, -0.06695237010717392,
- 0.10879162698984146, -0.014699943363666534, 0.03967775031924248, -0.028177162632346153,
- 0.0026848851703107357, 0.026209810748696327, -0.0034112618304789066,
- 0.017968665808439255, 0.013556057587265968, 0.012026513926684856, 0.06643329560756683,
- 0.09935494512319565, 0.017300616949796677, -0.06117060035467148, -0.08356989920139313,
- 0.09895850718021393, -0.018065471202135086, -0.06826452165842056, 0.014113391749560833,
- -0.0560007318854332, 0.01949840411543846, -0.13579274713993073, 0.10057791322469711,
- 0.10678986459970474, -0.0626099556684494, -0.04581890255212784, -0.008606025017797947,
- 0.05445333570241928, 0.021163493394851685, 0.031749725341796875, -0.047448284924030304,
- 0.019345689564943314, 0.03215037286281586, 0.08127997815608978, -0.05349688604474068,
- 0.051495082676410675, 0.04432868957519531, -0.05421459674835205, 0.05772600695490837,
- 0.06687962263822556, -0.028319016098976135, -0.027511820197105408, 0.03289542719721794,
- 0.04577680677175522, -0.10341967642307281, -0.049090467393398285, -0.03558563441038132,
- -0.06220966577529907, -0.024765778332948685, -0.03897758200764656, 0.0170150063931942,
- -0.02294270507991314, -0.017277240753173828, -0.02427428588271141, 0.035428695380687714,
- 0.06511937081813812, 0.11944027245044708, -0.0025551053695380688, 0.05585182458162308,
- -0.06812573224306107, -0.026747822761535645, 0.04828289896249771, 0.04106656461954117,
- 0.09526774287223816, -0.05682948976755142, 0.017527882009744644, -0.04988120123744011,
- -0.15522554516792297, 0.051711879670619965, 0.08157981932163239, 0.07187195122241974,
- 0.03178008273243904, 0.03445746377110481, -0.07239995896816254, -0.017300551757216454,
- 0.09173350781202316, 0.03327786922454834, 0.016456473618745804, -0.00021000047854613513,
- -0.07309472560882568, -0.00811123289167881, 0.12985974550247192, -0.023645007982850075,
- -0.03208635002374649, 0.02461332641541958, -0.12730151414871216, 0.10703277587890625,
- 0.08096517622470856, 0.01475406251847744, 0.036614932119846344, 0.0045789433643221855,
- -0.003340615425258875, 0.06335864216089249, 0.0042394427582621574, 0.003940703812986612,
- 0.0025673112832009792, -0.08825932443141937, -0.05757218599319458, 0.00935690850019455,
- 0.07967684417963028, 0.02491619996726513, -0.10329270362854004, -0.0070058973506093025,
- -0.042543668299913406
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 209,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Joyce Li"],
- "epoch_date_downloaded": 1653609600,
- "epoch_date_modified": 1654473600,
- "epoch_date_submitted": 1653609600,
- "flag": null,
- "report_number": 1692,
- "source_domain": "hypebeast.com",
- "submitters": ["AIAAIC"],
- "title": "Tesla’s Full Self-Driving “Assertive” Mode Is the Driving Style No One Appreciates",
- "url": "https://hypebeast.com/2022/1/tesla-full-self-driving-beta-assertive-mode-perform-rolling-stops"
- },
- {
- "__typename": "Report",
- "authors": ["Steve Dent"],
- "epoch_date_downloaded": 1653609600,
- "epoch_date_modified": 1654473600,
- "epoch_date_submitted": 1653609600,
- "flag": null,
- "report_number": 1691,
- "source_domain": "techcrunch.com",
- "submitters": ["AIAAIC"],
- "title": "Tesla ‘Full Self-Driving’ beta features an ‘Assertive’ mode with rolling stops",
- "url": "https://techcrunch.com/2022/01/10/tesla-full-self-driving-beta-features-an-assertive-mode-with-rolling-stops/"
- },
- {
- "__typename": "Report",
- "authors": ["Emma Roth"],
- "epoch_date_downloaded": 1653609600,
- "epoch_date_modified": 1654473600,
- "epoch_date_submitted": 1653609600,
- "flag": null,
- "report_number": 1690,
- "source_domain": "theverge.com",
- "submitters": ["AIAAIC"],
- "title": "Tesla’s ‘Full Self-Driving’ beta has an ‘assertive’ driving mode that ‘may perform rolling stops’",
- "url": "https://www.theverge.com/2022/1/9/22875382/tesla-full-self-driving-beta-assertive-profile"
- },
- {
- "__typename": "Report",
- "authors": ["Mack DeGeurin"],
- "epoch_date_downloaded": 1653609600,
- "epoch_date_modified": 1654473600,
- "epoch_date_submitted": 1653609600,
- "flag": null,
- "report_number": 1689,
- "source_domain": "gizmodo.com",
- "submitters": ["AIAAIC"],
- "title": "Tesla's 'Assertive' Mode Brings 'Rolling Stops' to Self-Driving Options",
- "url": "https://gizmodo.com/teslas-assertive-mode-brings-rolling-stops-to-self-driv-1848331537"
- },
- {
- "__typename": "Report",
- "authors": ["National Highway Traffic Safety Administration"],
- "epoch_date_downloaded": 1653609600,
- "epoch_date_modified": 1654646400,
- "epoch_date_submitted": 1653609600,
- "flag": null,
- "report_number": 1688,
- "source_domain": "static.nhtsa.gov",
- "submitters": ["AIAAIC"],
- "title": "Part 573 Safety Recall Report",
- "url": "https://static.nhtsa.gov/odi/rcl/2022/RCLRPT-22V037-4462.PDF"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "bharatiya-janata-yuva-morcha",
- "name": "Bharatiya Janata Yuva Morcha"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "persistent-systems",
- "name": "Persistent Systems"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "indian-women-journalists",
- "name": "Indian women journalists"
- },
- {
- "__typename": "Entity",
- "entity_id": "indian-voters",
- "name": "Indian voters"
- },
- {
- "__typename": "Entity",
- "entity_id": "indian-social-media-users",
- "name": "Indian social media users"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1695, 1694, 1693],
- "vector": [
- -0.05360647663474083, 0.05818073824048042, 0.015967056155204773, -0.10919972509145737,
- 0.061326563358306885, -0.06529571861028671, 0.002327695256099105, 0.04500167444348335,
- 0.06722111254930496, -0.12847204506397247, -0.04836184158921242, 0.007363028358668089,
- 0.01298705954104662, -0.052876830101013184, 0.04120209813117981, -0.08869407325983047,
- -0.11987248063087463, -0.04895881190896034, 0.022292589768767357, -0.08423423767089844,
- -0.06871763616800308, 0.01847296766936779, -0.01339288055896759, 0.11216187477111816,
- -0.02938898839056492, 0.03863251954317093, 0.09713640064001083, 0.1471797674894333,
- -0.09417405724525452, 0.04635138437151909, 0.004821206908673048, -0.05879479646682739,
- 0.14235819876194, 0.05826852098107338, 0.03984273970127106, 0.07719895243644714,
- 0.020416835322976112, -0.020585237070918083, 0.017685433849692345,
- -0.006832938175648451, -0.0018285997211933136, 0.23928123712539673,
- -0.023094693198800087, -0.04653916880488396, 0.027020690962672234,
- -0.030052395537495613, 0.03574542701244354, 0.056396033614873886, 0.011544056236743927,
- 0.002141041914001107, -0.026241818442940712, 0.0398840457201004, -0.028045259416103363,
- 0.05020524188876152, -0.07394079864025116, 0.04577082023024559, 0.034440238028764725,
- -0.011016588658094406, 0.044113222509622574, -0.056584522128105164,
- -0.023578988388180733, -0.21712784469127655, -0.042171504348516464,
- -0.061751510947942734, 0.07419934123754501, -0.08663221448659897, -0.055243607610464096,
- 0.023404231294989586, 0.029162639752030373, 0.044180769473314285, 0.01970382034778595,
- -0.05824606493115425, -0.01633717492222786, 0.02890598773956299, 0.015630608424544334,
- -0.007080601528286934, 0.007563181687146425, 0.19477032124996185, -0.09010358899831772,
- -0.010630751959979534, 0.10643693804740906, -0.10713791847229004, 0.36089006066322327,
- 0.0038094858173280954, 0.004727088380604982, -0.0046692234463989735, 0.0918668881058693,
- 0.036204662173986435, 0.04826664552092552, 0.03276386111974716, 0.03422771021723747,
- 0.03321772441267967, -0.054782941937446594, -0.014224379323422909, 0.044963058084249496,
- 0.014819868840277195, -0.017274605110287666, 0.01034423429518938, 0.006952071562409401,
- -0.06247004494071007, -0.01614786498248577, -0.002607218222692609, 0.06672900915145874,
- 0.04477754235267639, -0.04244181513786316, -0.01457259338349104, 0.07418400794267654,
- -0.08454308658838272, 0.03628222271800041, -0.033567558974027634, 0.007023187819868326,
- -0.0120846601203084, 0.08569169044494629, -0.011461276561021805, 0.03737080469727516,
- -0.03372484818100929, 0.008715097792446613, 0.028162196278572083, 0.09668555110692978,
- 0.017617443576455116, 0.021046698093414307, 0.0519741028547287, 0.04311574995517731,
- -0.05033862218260765, 0.005080224480479956, -0.029223129153251648,
- -0.036612093448638916, -0.024212950840592384, -0.023193323984742165,
- 0.029602184891700745, -0.0577220618724823, -0.2068985253572464, 0.026515701785683632,
- 0.055875834077596664, -0.017089305445551872, -0.04070569947361946, 0.03511267527937889,
- -0.01646582782268524, 0.024787450209259987, -0.0038176251109689474,
- -0.035943955183029175, 0.08975201845169067, -0.00403590127825737, 0.05813274905085564,
- 0.10591205209493637, 0.06640283018350601, -0.049587544053792953, -0.06840641051530838,
- 0.007514031603932381, -0.015225649811327457, 0.0925905779004097, -0.12887583673000336,
- -0.03122684918344021, 0.0012433227384462953, -0.007840373553335667, 0.6885331273078918,
- 0.07920780032873154, 0.18943683803081512, 0.049890633672475815, -0.03916687145829201,
- 0.15683387219905853, 0.020083555951714516, 0.05362088605761528, -0.08662345260381699,
- -0.06571963429450989, 0.029918184503912926, -0.0781208947300911, -0.024808034300804138,
- 0.03201090916991234, 0.05307973921298981, 0.1053033098578453, 0.018604306504130363,
- 0.08122695237398148, 0.022688644006848335, -0.08411573618650436, -0.0670008435845375,
- 0.0720728263258934, -0.005060980096459389, -0.13481813669204712, -0.03479988873004913,
- 0.08885687589645386, 0.09591195732355118, -0.09056215733289719, 0.00466364249587059,
- -0.05997908487915993, 0.07730507850646973, 0.010104113258421421, 0.052077289670705795,
- -0.03148339316248894, 0.06621965765953064, 0.01788700558245182, 0.006634879391640425,
- 0.01870841719210148, -0.0802360475063324, -0.05068986117839813, 0.11825388669967651,
- -0.006344062741845846, -0.03894651308655739, 0.08459192514419556, -0.0661916732788086,
- 0.01493595540523529, -0.01905817538499832, 0.12415411323308945, -0.1319081336259842,
- -0.027505651116371155, -0.01727924682199955, -0.055410970002412796, 0.06158358231186867,
- -0.020717667415738106, -0.03389282152056694, -0.07626350969076157, 0.07468713074922562,
- 0.0508665032684803, 0.021024616435170174, 0.05947317183017731, -0.030565375462174416,
- 0.02100728452205658, 0.014846342615783215, 0.021357042714953423, -0.06421960890293121,
- 0.057459939271211624, 0.024638405069708824, -0.03549264743924141, -0.04936610534787178,
- 0.05993841215968132, 0.04099741205573082, -0.007161513436585665, -0.029824456200003624,
- 0.03761829063296318, -0.02362724207341671, -0.06372649222612381, 0.02506656013429165,
- 0.09004667401313782, 0.0008570228819735348, 0.06540260463953018, -0.06175091862678528,
- -0.021557793021202087, -0.046320948749780655, -0.003373232437297702,
- 0.052525367587804794, -0.014311123639345169, 0.07729334384202957, 0.09918364137411118,
- 0.04379403591156006, 0.03497008606791496, 0.02721899189054966, 0.04113072529435158,
- 0.022129051387310028, 0.022818252444267273, 0.12392163276672363, -0.02797316014766693,
- -0.020783519372344017, -0.03640184924006462, 0.01272756326943636, 0.013913069851696491,
- 0.02471434511244297, -0.06009770557284355, -0.04332689940929413, -0.017713289707899094,
- -0.05924522504210472, -0.08404380083084106, -0.06218111515045166, 0.06470035761594772,
- 0.05443667247891426, -0.06507658213376999, -0.06972247362136841, -0.05337851867079735,
- -0.008719104342162609, 0.07430417090654373, -0.01678054966032505, 0.008139679208397865,
- -0.10084417462348938, 0.004609976429492235, -0.02785203792154789, 0.049216169863939285,
- -0.007311232853680849, -0.005147360730916262, 0.009264408610761166,
- -0.059142887592315674, 0.020556479692459106, -0.03598558530211449, 0.02147378772497177,
- -0.021668097004294395, -0.06344419717788696, -0.08323278278112411,
- -0.008299794979393482, -0.02012309804558754, -0.025994017720222473,
- -0.002678428078070283, 0.02593318559229374, 0.012978710234165192, -0.017209205776453018,
- -0.010788594372570515, 0.05550506338477135, -0.05543243885040283, -0.029761875048279762,
- 0.09902440756559372, -0.0340881273150444, 0.03367273136973381, 0.0027591995894908905,
- -0.056488022208213806, -0.04725424572825432, -0.006519800517708063, -0.0341104120016098,
- 0.030082283541560173, -0.0016440724721178412, 0.004860616754740477,
- -0.01685997284948826, -0.018940869718790054, 0.09965723007917404, -0.06619473546743393,
- -0.0632956251502037, -0.07383555918931961, 0.1329166293144226, -0.004488655831664801,
- -0.011618881486356258, 0.006660888437181711, -0.050163984298706055, 0.02985195815563202,
- -0.0498761422932148, 0.008044272661209106, 0.0122196851298213, 0.04887528344988823,
- -0.02151208184659481, -0.0360058955848217, 0.032869961112737656, 0.0015516359126195312,
- 0.04286031052470207, 0.10601133108139038, 0.4430654048919678, -0.14237453043460846,
- 0.059897780418395996, 0.10254451632499695, -0.0010036993771791458, 0.03673923388123512,
- -0.01885262131690979, 0.08528503030538559, 0.08864808082580566, 0.11477174609899521,
- 0.12071875482797623, -0.06506847590208054, 0.015295949764549732, -0.07353531569242477,
- 0.09726741164922714, 0.018569210544228554, 0.05214296653866768, -0.012133327312767506,
- -0.05049740895628929, -0.037283722311258316, 0.021569950506091118,
- -0.019739724695682526, -0.01796569488942623, -0.005998233798891306,
- -0.04968917742371559, 0.0046931067481637, 0.02737756073474884, 0.046511705964803696,
- -0.03621628135442734, 0.01958996243774891, -0.028024330735206604, 0.04026753827929497,
- 0.04614241048693657, 0.046174872666597366, -0.13263766467571259, 0.036086324602365494,
- -0.04562490060925484, -0.08654218167066574, 0.08292713761329651, 0.01365507673472166,
- 0.04019571468234062, 0.03272652253508568, -0.022223234176635742, 0.03885442018508911,
- -0.005089704412966967, -0.04608829692006111, 0.05537628009915352, 0.06349730491638184,
- 0.032095350325107574, 0.1092265248298645, 0.14765045046806335, -0.04972686246037483,
- -0.08111676573753357, -0.09600643068552017, 0.03151056542992592, 0.16330669820308685,
- -0.017234915867447853, 0.0031652748584747314, 0.021468795835971832,
- -0.06526786088943481, -0.0003778770042117685, -0.04919765889644623,
- -0.03990519046783447, -0.02994629740715027, -0.03586244583129883, 0.08778806775808334,
- 0.04439476504921913, -0.07231658697128296, -0.193463996052742, -0.03535996377468109,
- -0.04837923124432564, 0.023165017366409302, 0.14747513830661774, -0.08252410590648651,
- 0.01937648467719555, -0.009529929608106613, 0.009456380270421505, 0.006617363076657057,
- -0.10339352488517761, -0.010143905878067017, -0.10612449049949646, 0.03976404294371605,
- 0.07331271469593048, 0.034410376101732254, -0.043040286749601364, 0.06716100871562958,
- -0.09516095370054245, 0.06340017169713974, 0.03596609830856323, -0.010268607176840305,
- -0.010454441420733929, -0.03480749949812889, 0.0037869999650865793,
- 0.012791457585990429, -0.049869369715452194, 0.01581682451069355, -0.02389596961438656,
- -0.028066648170351982, -0.048874277621507645, -0.06083306670188904,
- -0.06395966559648514, -0.041382208466529846, 0.0347873829305172, -0.12961594760417938,
- -0.011095386929810047, -0.004563869442790747, -0.008370270021259785,
- -0.03282672539353371, 0.04090725630521774, 0.03201454132795334, -0.1423092633485794,
- -0.003757288446649909, -0.0034666687715798616, 0.07333967834711075,
- -0.031141391023993492, -0.06649615615606308, -0.003303613280877471, 0.08091474324464798,
- 0.04259346053004265, -0.03501851484179497, 0.010712973773479462, -0.05527280643582344,
- 0.08280899375677109, -0.1372588872909546, -0.4001108407974243, 0.07809356600046158,
- -0.004259397741407156, 0.05431551858782768, 0.00020558852702379227,
- -0.06100701913237572, 0.058758094906806946, 0.023409403860569, -0.020015427842736244,
- 0.08553412556648254, -0.07096172124147415, 0.008794835768640041, -0.00626416364684701,
- -0.054397065192461014, 0.007940302602946758, -0.0643276497721672, -0.03617687150835991,
- 0.03170975297689438, -0.019544029608368874, -0.06340713053941727, -0.14166904985904694,
- 0.038722846657037735, -0.016724491491913795, 0.0023756036534905434,
- 0.030241267755627632, 0.020988188683986664, -0.03173245117068291, -0.03516935929656029,
- 0.05036889389157295, 0.03481568768620491, -0.0087900310754776, -0.07039394974708557,
- -0.015047418884932995, 0.06916168332099915, -0.02570715732872486, 0.11795321851968765,
- 0.002471367595717311, 0.012549221515655518, -0.07188460975885391, 0.08892568945884705,
- 0.07135701179504395, 0.18759484589099884, -0.00301381410099566, 0.033581171184778214,
- 0.047304242849349976, 0.1186893954873085, 0.05274773761630058, 0.0369742177426815,
- -0.0477144718170166, -0.000772436847910285, 0.03249668702483177, 0.020058905705809593,
- 0.09864059835672379, -0.09980878978967667, -0.031018385663628578, -0.05637350678443909,
- -0.016117939725518227, -0.03619912266731262, -0.026181170716881752, 0.17076055705547333,
- 0.028399044647812843, 0.0010394157143309712, 0.018584661185741425, -0.06058591231703758,
- 0.02253417856991291, -0.0709739401936531, -0.11456521600484848, -0.021286586299538612,
- 0.015505081973969936, 0.030323361977934837, -0.04892544448375702, -0.10621892660856247,
- -0.0011806361144408584, 0.028814515098929405, 0.020593393594026566, 0.08951134234666824,
- -0.03421531245112419, -0.0024942855816334486, -0.007603170350193977, 0.1023513451218605,
- 0.03787383809685707, 0.01706395111978054, 0.05263517424464226, 0.09918403625488281,
- 0.006035847123712301, -0.019464150071144104, -0.024158036336302757,
- -0.08381976932287216, 0.020632358267903328, 0.19478285312652588, -0.019439002498984337,
- 0.13000907003879547, 0.04351408779621124, -0.03538420796394348, -0.07693355530500412,
- 0.031945228576660156, -0.007279107812792063, 0.024950316175818443, -0.4580499827861786,
- -0.022709190845489502, 0.08630973100662231, 0.02607821859419346, 0.01406454760581255,
- 0.10170725733041763, 0.044789787381887436, -0.06396996229887009, -0.018294336274266243,
- -0.0927126407623291, 0.13360203802585602, -0.03606719151139259, 0.07648637890815735,
- -0.10314173251390457, 0.010874626226723194, 0.10211685299873352, -0.024997105821967125,
- -0.006004247814416885, -0.00012453521776478738, -0.26979848742485046,
- -0.004424015060067177, -0.060768257826566696, 0.14347903430461884, -0.01900935359299183,
- 0.040513601154088974, 0.07109090685844421, -0.0720314010977745, 0.039548005908727646,
- 0.06773415207862854, 0.0031975663732737303, 0.04062851145863533, -0.0003732568584382534,
- -0.03666502609848976, 0.0920095443725586, 0.06573909521102905, 0.08596422523260117,
- -0.05070814490318298, 11.8843994140625, 0.07157456874847412, 0.06790993362665176,
- -0.10254619270563126, -0.0013050795532763004, -0.057668525725603104, 0.0097261443734169,
- -0.08308102935552597, 0.0574190728366375, 0.13501282036304474, 0.013677719049155712,
- -0.04566211625933647, -0.05252697691321373, -0.06706804782152176, 0.012005937285721302,
- -0.01861254684627056, -0.06448573619127274, -0.09837206453084946, 0.07043465971946716,
- -0.030106447637081146, -0.06071613356471062, 0.01915672980248928, 0.04680212214589119,
- 0.012071697972714901, -0.05990217253565788, 0.03732427954673767, -0.007163603324443102,
- -0.02639474906027317, 0.0053552244789898396, 0.06741762161254883, 0.040775299072265625,
- 0.004020176827907562, 0.08958730846643448, 0.05107240006327629, 0.02812693454325199,
- 0.030985785648226738, 0.05091695114970207, -0.012084531597793102, 0.03428233042359352,
- 0.03134333714842796, -0.0036384027916938066, 0.00543471472337842, -0.004240015987306833,
- 0.09300228208303452, 0.003697359701618552, 0.04663272202014923, 0.037905436009168625,
- 0.12598547339439392, 0.004214948508888483, 0.05036725103855133, 0.09292745590209961,
- -0.04101606085896492, 0.11782079935073853, 0.0033582348842173815, 0.017972296103835106,
- 0.10727543383836746, -0.010015533305704594, -0.06787533313035965, 0.08785351365804672,
- 0.05793149769306183, -0.040506523102521896, 0.10826783627271652, 0.04116440564393997,
- 0.1242816224694252, -0.01519307866692543, 0.040505584329366684, 0.08355680853128433,
- 0.07649986445903778, -0.09085794538259506, -0.07037734985351562, 0.022569730877876282,
- -0.09720543026924133, -0.061549607664346695, 0.061360057443380356, 0.07135652750730515,
- -0.023488730192184448, 0.058745283633470535, -0.002434313530102372, 0.02686854638159275,
- -0.025304501876235008, -0.011521385051310062, 0.04981805756688118,
- -0.057488832622766495, -0.0002777863701339811, 0.04163529723882675,
- 0.0023860700894147158, 0.0499451570212841, 0.10029157251119614, 0.00366664188914001,
- -0.06683066487312317, -0.07393481582403183, 0.11005765944719315, 0.007689198013395071,
- -0.046477239578962326, 0.02237457036972046, -0.08254898339509964, 0.007393809501081705,
- -0.1570621132850647, 0.06233953312039375, 0.09809539467096329, -0.0938013568520546,
- -0.03827032819390297, -0.04244124889373779, 0.0886969342827797, 0.008632409386336803,
- 0.010845593176782131, -0.09377661347389221, -0.007007061969488859, 0.0354858823120594,
- 0.03611406311392784, -0.04141349717974663, 0.07794376462697983, 0.06093120574951172,
- 0.005063180346041918, 0.043810632079839706, 0.07572285085916519, -0.0626235231757164,
- -0.004615655168890953, 0.06540923565626144, 0.029606042429804802, -0.07250405848026276,
- -0.05074593424797058, -0.0391790010035038, -0.057824715971946716, 0.001646609976887703,
- -0.012101695872843266, -0.010889646597206593, 0.01724860817193985, -0.02601926214993,
- -0.006847637239843607, 0.05915253236889839, 0.058091044425964355, 0.06799594312906265,
- 0.018576396629214287, 0.04340340197086334, -0.057159099727869034, -0.0171076487749815,
- 0.03857465460896492, 0.055356431752443314, 0.06939218938350677, -0.05360445752739906,
- -0.02788872830569744, -0.022010939195752144, -0.09829390794038773, 0.05444653704762459,
- 0.10704047232866287, 0.02373870275914669, 0.022771574556827545, 0.024444572627544403,
- -0.0460166297852993, -0.03728901222348213, 0.07896967977285385, 0.04858146607875824,
- 0.018884114921092987, 0.008357721380889416, -0.05546879395842552, -0.033695563673973083,
- 0.13503997027873993, -0.023362869396805763, 0.0018014899687841535, 0.040843844413757324,
- -0.044111479073762894, 0.1063944473862648, 0.09509215503931046, 0.04735324904322624,
- 0.04021318256855011, 0.012554418295621872, 0.03836508467793465, 0.010303925722837448,
- 0.013767868280410767, 0.007753752637654543, -0.03998942673206329, -0.03863827511668205,
- -0.08033092319965363, 0.022598979994654655, 0.0770169124007225, 0.02674177847802639,
- -0.10176990181207657, -0.0027022697031497955, -0.03435312584042549
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 210,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Samanth Subramanian"],
- "epoch_date_downloaded": 1653609600,
- "epoch_date_modified": 1654473600,
- "epoch_date_submitted": 1653609600,
- "flag": null,
- "report_number": 1695,
- "source_domain": "qz.com",
- "submitters": ["AIAAIC"],
- "title": "Right-wing Indians have their own app to manipulate WhatsApp and Twitter",
- "url": "https://qz.com/india/2110005/bjp-supporters-use-tek-fog-to-manipulate-whatsapp-and-twitter/"
- },
- {
- "__typename": "Report",
- "authors": ["Ayushman Kaul", " Devesh Kumar"],
- "epoch_date_downloaded": 1653609600,
- "epoch_date_modified": 1654473600,
- "epoch_date_submitted": 1653609600,
- "flag": null,
- "report_number": 1694,
- "source_domain": "thewire.in",
- "submitters": ["AIAAIC"],
- "title": "Tek Fog: An App With BJP Footprints for Cyber Troops to Automate Hate, Manipulate Trends",
- "url": "https://thewire.in/tekfog/en/1.html"
- },
- {
- "__typename": "Report",
- "authors": ["Tim Culpan", " Andy Mukherjee"],
- "epoch_date_downloaded": 1653609600,
- "epoch_date_modified": 1654473600,
- "epoch_date_submitted": 1653609600,
- "flag": null,
- "report_number": 1693,
- "source_domain": "bloomberg.com",
- "submitters": ["AIAAIC"],
- "title": "India’s Tek Fog Shrouds an Escalating Political War",
- "url": "https://www.bloomberg.com/opinion/articles/2022-01-12/india-s-tek-fog-shrouds-an-escalating-political-war-against-modi-s-critics"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "taxis-g7",
- "name": "Taxis G7"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "tesla",
- "name": "Tesla"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "pedestrians",
- "name": "pedestrians"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1702, 1701, 1700, 1699, 1698, 1697, 1696],
- "vector": [
- -0.09955821186304092, 0.08048716932535172, 0.024645894765853882, -0.08550582081079483,
- 0.036969296634197235, -0.022933216765522957, -0.004704304039478302, 0.01776224561035633,
- 0.04286873713135719, -0.15464963018894196, 0.009348256513476372, 0.037609849125146866,
- 0.023721247911453247, -0.08306724578142166, 0.033220209181308746, -0.14623822271823883,
- -0.06371509283781052, 0.00939536839723587, 0.009013444185256958, -0.05055088549852371,
- -0.08406079560518265, 0.001261430443264544, 0.0647142305970192, 0.09245248883962631,
- -0.037491947412490845, 0.04583786055445671, 0.07710158824920654, 0.12448441982269287,
- -0.03039613366127014, 0.014143818989396095, -0.042400479316711426, -0.03328791633248329,
- 0.10851266235113144, 0.004155975300818682, -0.010954820550978184, 0.0644933208823204,
- 0.021952252835035324, -0.009591303765773773, -0.029448997229337692,
- 0.021842891350388527, 0.030606474727392197, 0.22314080595970154, 0.002803630894050002,
- -0.0031646897550672293, 0.04001696780323982, -0.030006710439920425,
- 0.024944258853793144, 0.06925715506076813, 0.02754100225865841, 0.024075698107481003,
- -0.03733666613698006, 0.06466282159090042, -0.015577906742691994, 0.014149239286780357,
- -0.1382512003183365, 0.052754130214452744, 0.03657771274447441, 0.031036609783768654,
- 0.06399808824062347, -0.06477504223585129, -0.09591426700353622, -0.20730724930763245,
- -0.06204638630151749, -0.03739335387945175, 0.08338180929422379, -0.08824245631694794,
- -0.04846343770623207, -0.03536704182624817, 0.02983885630965233, 0.07266759872436523,
- 0.06335009634494781, -0.02777564711868763, 0.0008629695512354374, 0.03611138090491295,
- 0.05131307616829872, 0.03947485238313675, 0.0032541092950850725, 0.22107018530368805,
- -0.1351487785577774, -0.03826688602566719, 0.11683093756437302, -0.08671983331441879,
- 0.4393167793750763, -0.01483935583382845, -0.03228018432855606, -0.02249019965529442,
- 0.1350286900997162, 0.013079030439257622, 0.05319676175713539, 0.07619280368089676,
- -0.027482042089104652, -0.013456354849040508, -0.041046351194381714,
- 0.056999482214450836, 0.07019828259944916, 0.06105823069810867, -0.032166220247745514,
- 0.11511338502168655, 0.016905341297388077, -0.06350543349981308, 0.018841097131371498,
- -0.06389046460390091, 0.10171785205602646, 0.057156164199113846, -0.03069867007434368,
- -0.03456224128603935, 0.06468463689088821, -0.048396121710538864, 0.04315253347158432,
- -0.07352812588214874, 0.015917157754302025, 0.020259249955415726, 0.07815725356340408,
- 0.02552174963057041, 0.05217193439602852, -0.04325765371322632, 0.0343865342438221,
- 0.07960480451583862, 0.07548928260803223, 0.022036340087652206, -0.05157558247447014,
- 0.10491681098937988, 0.07652955502271652, -0.05445059761404991, 0.0376894474029541,
- -0.0032846552785485983, -0.08615043014287949, -0.027095848694443703,
- -0.04054226726293564, 0.056204114109277725, -0.04781263321638107, -0.27127400040626526,
- -0.005051991902291775, 0.12507832050323486, -0.008974140509963036, -0.04100846126675606,
- -0.01891656592488289, -0.056018587201833725, 0.02760588563978672, -0.07355765998363495,
- -0.021050984039902687, 0.07419048994779587, 0.008966749534010887, 0.05619245022535324,
- 0.1010609045624733, 0.08993617445230484, -0.04608185961842537, -0.0699969157576561,
- -0.007166213355958462, -0.018487615510821342, 0.1096973568201065, -0.11931489408016205,
- -0.037542570382356644, 0.022499313578009605, -0.00686570955440402, 0.7074851393699646,
- 0.1263830065727234, 0.17512163519859314, -0.023675596341490746, -0.037006914615631104,
- 0.19490325450897217, 0.0003775277582462877, 0.06904102116823196, -0.08080784976482391,
- -0.09030395746231079, 0.060610685497522354, -0.10449149459600449, -0.04809773713350296,
- 0.008629713207483292, 0.035442057996988297, 0.137384295463562, 0.04232127591967583,
- 0.09380493313074112, -0.012189897708594799, -0.10405890643596649, -0.04479040950536728,
- 0.11221218854188919, 0.046441227197647095, -0.09834474325180054, -0.046290960162878036,
- 0.04043521359562874, 0.10480410605669022, -0.045395661145448685, 0.014422421343624592,
- -0.028181657195091248, 0.04681053385138512, -0.03340139612555504, 0.055140573531389236,
- -0.03906865045428276, 0.006769073661416769, 0.021984325721859932, 0.0839221328496933,
- -0.0312892347574234, -0.10397803038358688, -0.03043176606297493, 0.1087493747472763,
- 0.03414931893348694, -0.04518565908074379, 0.034698378294706345, -0.10718701779842377,
- 0.04060592129826546, 0.02177615277469158, 0.12213914841413498, -0.10265219956636429,
- 0.07150859385728836, -0.0009830070193856955, 0.008816681802272797, 0.06236060708761215,
- -0.005098763387650251, -0.061042420566082, -0.046033598482608795, 0.08870422840118408,
- 0.06048806756734848, 0.04990296810865402, 0.11934174597263336, -0.05737599357962608,
- 0.06877023726701736, 0.10436274856328964, 0.0036565549671649933, -0.005171132739633322,
- 0.028256472200155258, 0.08792895078659058, -0.05280466005206108, -0.007207644637674093,
- 0.005645313300192356, 0.01443761121481657, 0.04616310074925423, -0.010289854370057583,
- 0.057539425790309906, 0.024478210136294365, -0.03742668777704239, 0.005418151151388884,
- -0.029405774548649788, 0.01201294269412756, 0.13608349859714508, -0.04872547835111618,
- -0.01804000325500965, 0.020895671099424362, -0.011058577336370945,
- 0.0013005259679630399, -0.017212817445397377, 0.08866547048091888, 0.08947807550430298,
- 0.08282705396413803, 0.06651663035154343, 0.03754658252000809, 0.07904990017414093,
- -0.004304313100874424, 0.03570525720715523, 0.05960391089320183, -0.01235518604516983,
- -0.11429349333047867, -0.023778123781085014, -0.011830687522888184,
- 0.051161475479602814, 0.036706097424030304, -0.06932808458805084, -0.022355185821652412,
- -0.01938694529235363, -0.060695912688970566, -0.08536897599697113, 0.015317059122025967,
- 0.0164408627897501, 0.09277457743883133, -0.021300548687577248, -0.09340212494134903,
- -0.10693900287151337, 0.01716800592839718, 0.05061912536621094, 0.026034487411379814,
- -0.044346388429403305, -0.10375950485467911, 0.000500257418025285, -0.05939987674355507,
- 0.025950757786631584, -0.016509180888533592, 0.0053462800569832325,
- -0.003620896954089403, -0.02637402154505253, 0.005740162916481495, -0.03650185465812683,
- -0.011464239098131657, -0.09990300238132477, -0.1027367115020752, -0.04725870490074158,
- 0.030176162719726562, 0.030889322981238365, -0.035547636449337006, 0.05658528581261635,
- 0.018192637711763382, 0.020281832665205002, 0.0012799928663298488, -0.01141962967813015,
- 0.07670267671346664, -0.037598736584186554, -0.007101187948137522, 0.08382203429937363,
- -0.010736336000263691, 0.037862181663513184, 0.010567599907517433, -0.07878635823726654,
- 0.005237786564975977, 0.009739808738231659, -0.088863804936409, 0.018835367634892464,
- -0.041176844388246536, -0.005340771283954382, -0.06264709681272507,
- -0.008468485437333584, 0.03713740035891533, -0.07310275733470917, -0.05587957054376602,
- -0.0795428678393364, 0.14520731568336487, 0.031151439994573593, 0.004278171341866255,
- 0.014618956483900547, -0.03377221152186394, 0.022899577394127846, -0.03701058775186539,
- 0.002396153286099434, 0.055928222835063934, 0.02197081223130226, -0.04841921105980873,
- -0.025331005454063416, 0.050741489976644516, -0.01874055340886116, 0.013165014795958996,
- 0.0633499026298523, 0.4268976151943207, -0.16377675533294678, 0.0959877222776413,
- 0.09731443971395493, -0.014767900109291077, 0.06573142856359482, -0.04958168789744377,
- 0.09462916851043701, 0.08114246279001236, 0.1104828491806984, 0.14722992479801178,
- -0.027007604017853737, -0.04470658302307129, -0.10296643525362015, 0.11032568663358688,
- -0.0020983838476240635, 0.004710576497018337, 0.00043101454502902925,
- -0.08289702236652374, 0.002508135512471199, 0.020445629954338074, -0.05418263003230095,
- -0.004556608851999044, -0.033554088324308395, -0.10882211476564407,
- 0.0034793722443282604, 0.03661055117845535, 0.025541426613926888, 0.0002484757569618523,
- 0.027453850954771042, -0.1050039529800415, 0.03347456827759743, -0.005456939805299044,
- 0.07515629380941391, -0.1722785383462906, 0.036554038524627686, -0.06731925159692764,
- -0.07168281078338623, 0.12200699001550674, 0.007886995561420918, 0.048246193677186966,
- 0.08448009192943573, -0.0053618913516402245, 0.03705332800745964, -0.05126773193478584,
- -0.04951149970293045, 0.040648553520441055, 0.07158118486404419, 0.020689425989985466,
- 0.09689099341630936, 0.16400744020938873, -0.061029911041259766, -0.08575547486543655,
- -0.06919307261705399, 0.06984592974185944, 0.07800847291946411, -0.0510205402970314,
- 0.013853549025952816, -0.011327090673148632, -0.030051184818148613,
- 0.018654480576515198, -0.09637875854969025, -0.05417475476861, 0.021444175392389297,
- -0.03564148396253586, 0.06613128632307053, 0.006381109822541475, -0.04189460352063179,
- -0.21800430119037628, -0.031515173614025116, -0.0043728710152208805,
- 0.00444625923410058, 0.10953531414270401, -0.05004994198679924, 0.0098733427003026,
- 0.04824808984994888, -0.05061972886323929, 0.02013915404677391, -0.14414511620998383,
- 0.00973594095557928, -0.05300663039088249, 0.06477053463459015, -0.016552280634641647,
- 0.05162747949361801, -0.06299010664224625, 0.07714547961950302, -0.07765223830938339,
- 0.07999461144208908, 0.024445902556180954, 0.02092440240085125, 0.04563412070274353,
- -0.012459606863558292, 0.02040010131895542, 0.06189378350973129, -0.04993312805891037,
- 0.03322771191596985, -0.04874756932258606, -0.04310118407011032, -0.1001439243555069,
- -0.09124404191970825, -0.011866546235978603, -0.10374162346124649, 0.05172136798501015,
- -0.07092862576246262, -0.009354091249406338, -0.015329231508076191, 0.02844255603849888,
- 0.02738994173705578, 0.03681004419922829, 0.08016238361597061, -0.15702059864997864,
- -0.00545578682795167, 0.00955137424170971, 0.07627644389867783, -0.04191327840089798,
- -0.014452188275754452, 0.03916655108332634, 0.12283606827259064, 0.07223324477672577,
- 0.05479809269309044, 0.006375024560838938, -0.07155212014913559, 0.021532878279685974,
- -0.06661976128816605, -0.46318551898002625, 0.025753771886229515, 0.034559231251478195,
- 0.03909391909837723, 0.005540680140256882, -0.09468227624893188, 0.0633573830127716,
- -0.018821878358721733, -0.05358336120843887, 0.11908774077892303, -0.056414466351270676,
- 0.010234115645289421, -0.0022892451379448175, -0.05464384704828262,
- -0.040779441595077515, -0.028410842642188072, -0.04426829144358635, 0.08597312122583389,
- -0.02269044704735279, -0.07332456111907959, -0.09657568484544754, 0.06444506347179413,
- -0.032366618514060974, -0.014221638441085815, -0.009987706318497658,
- 0.02911868877708912, -0.08170519769191742, -0.04035710170865059, 0.0007381555042229593,
- 0.04056313633918762, 0.03878409042954445, -0.07067228108644485, -0.016454515978693962,
- 0.06584867089986801, -0.03143524006009102, 0.13688994944095612, 0.022366788238286972,
- 0.006439730990678072, -0.12514649331569672, 0.08541088551282883, 0.03863413259387016,
- 0.18486599624156952, -0.02007129415869713, 0.04126948118209839, 0.028949633240699768,
- 0.14265510439872742, 0.00480026425793767, 0.01857704296708107, -0.044662851840257645,
- 0.03463563695549965, 0.05434444919228554, -0.008753901347517967, 0.07583333551883698,
- -0.061994973570108414, -0.016305115073919296, -0.06453264504671097,
- 0.035504210740327835, -0.03635146841406822, -0.016957877203822136, 0.2073097676038742,
- 0.007179259322583675, 0.006546742282807827, 0.011371830478310585, -0.05606340989470482,
- 0.035314373672008514, -0.10794039070606232, -0.12447667866945267, -0.03697022423148155,
- 0.023588256910443306, -0.024573374539613724, -0.0460263229906559, -0.13539330661296844,
- 0.008963976986706257, -0.06063806265592575, -0.006459215190261602, 0.11150719225406647,
- 0.0024796617217361927, 0.06818051636219025, -0.03781665116548538, 0.12362468987703323,
- 0.03209390118718147, 0.0031009295489639044, 0.06603002548217773, 0.10108863562345505,
- -0.0037573655135929585, -0.023042989894747734, -0.03373311460018158,
- -0.039233241230249405, 0.008330163545906544, 0.10956567525863647, -0.09732311964035034,
- 0.055511679500341415, 0.040548644959926605, -0.06729846447706223, -0.06749401241540909,
- 0.010710771195590496, 0.018754351884126663, 0.10303647071123123, -0.4664621651172638,
- 0.004988624714314938, 0.11936488002538681, -0.05894828587770462, 0.0319320373237133,
- 0.12438394129276276, 0.014522419311106205, -0.05564728006720543, -0.06510425359010696,
- -0.04490086808800697, 0.1280045062303543, -0.019211286678910255, 0.038507331162691116,
- -0.11786212027072906, 0.04171004146337509, 0.07597706466913223, -0.043111395090818405,
- -0.04772790148854256, 0.05503644421696663, -0.20396558940410614, -0.01622411422431469,
- -0.053164299577474594, 0.12354432046413422, 0.057685188949108124, 0.07061251252889633,
- 0.09536649286746979, -0.050407759845256805, 0.045053962618112564, 0.024044033139944077,
- -0.02687068283557892, 0.08294142782688141, -0.033185720443725586, -0.04232184216380119,
- 0.09857697039842606, 0.0707494467496872, 0.08451712131500244, -0.02777603641152382,
- 12.020233154296875, 0.08695285022258759, 0.0586811825633049, -0.09642000496387482,
- 0.05598501116037369, -0.07642430812120438, 0.014394915662705898, -0.10876452177762985,
- 0.03152313828468323, 0.10075034946203232, -0.012317770160734653, -0.01807841844856739,
- -0.004858650267124176, -0.12795531749725342, -0.025327807292342186,
- -0.06983045488595963, -0.0496940053999424, -0.015823369845747948, 0.07180756330490112,
- -0.07451032102108002, 0.023636510595679283, -0.00686136307194829, 0.08114386349916458,
- 0.03225186839699745, -0.06225370243191719, 0.05326218158006668, 0.05518181249499321,
- -0.006245345342904329, -0.003929455764591694, 0.034657932817935944,
- -0.020845437422394753, -0.0037553575821220875, 0.05342011898756027,
- 0.025873396545648575, -0.04105106368660927, 0.04700999706983566, 0.025439923629164696,
- 0.11467087268829346, 0.0028848035726696253, 0.08132807165384293, 0.03859737887978554,
- 0.020544858649373055, 0.01614900305867195, 0.0650148019194603, 0.022374052554368973,
- 0.011491237208247185, 0.08621400594711304, 0.0943811684846878, 0.0121684018522501,
- 0.05581109598278999, 0.07761257886886597, -0.017964119091629982, 0.13113091886043549,
- 0.0218752883374691, 0.012677177786827087, 0.04648343846201897, -0.00992545299232006,
- -0.08019690960645676, 0.055372364819049835, 0.12416715174913406, -0.07416003942489624,
- 0.05032339319586754, -0.006152441259473562, 0.10214897245168686, -0.029592419043183327,
- 0.04994025453925133, 0.0675964504480362, 0.06382270902395248, -0.13426174223423004,
- -0.05341606214642525, 0.07016050070524216, -0.12621597945690155, -0.08502478152513504,
- 0.028008248656988144, 0.05059361085295677, -0.024961363524198532, 0.047506183385849,
- -0.07458622753620148, 0.02922135777771473, -0.05207230523228645, -0.05414137616753578,
- 0.023033330217003822, -0.010708308778703213, 0.026498034596443176, 0.0172387957572937,
- -0.000018204895241069607, 0.10954488813877106, 0.11255475133657455,
- -0.010726125910878181, -0.07167954742908478, -0.10425815731287003, 0.06951475888490677,
- -0.0494411364197731, -0.05835806578397751, 0.002479691756889224, -0.023178262636065483,
- 0.06057436019182205, -0.16746023297309875, 0.05957615375518799, 0.08118682354688644,
- -0.07685866206884384, 0.008820402435958385, -0.05112089589238167, 0.06010282784700394,
- -0.0157692302018404, 0.030559496954083443, -0.028876839205622673, 0.014972029253840446,
- -0.013795650564134121, 0.03191225975751877, -0.053206510841846466, 0.06973103433847427,
- 0.05548524111509323, -0.09279374778270721, 0.0936836376786232, 0.07248848676681519,
- -0.04371923208236694, -0.07691759616136551, 0.033582910895347595, 0.01775643788278103,
- -0.11558675765991211, -0.04862741008400917, -0.01472472958266735, -0.035265203565359116,
- -0.04912280663847923, -0.019903134554624557, 0.017329096794128418, 0.04661932960152626,
- -0.042358335107564926, -0.01516170334070921, 0.00934438593685627, -0.008120215497910976,
- 0.06630606949329376, -0.009510199539363384, 0.053641267120838165, -0.05964909866452217,
- -0.022130299359560013, 0.051159221678972244, 0.07757408171892166, 0.09142903238534927,
- -0.039563097059726715, -0.007803749293088913, -0.06220712140202522,
- -0.11212463676929474, 0.006594792008399963, 0.14068147540092468, 0.047746121883392334,
- 0.03598641976714134, 0.04604974761605263, -0.08664090186357498, -0.046386681497097015,
- 0.11156778782606125, 0.05291296914219856, 0.050380151718854904, -0.017826315015554428,
- -0.12709064781665802, -0.05696026608347893, 0.14805814623832703, -0.056138020008802414,
- -0.006403139792382717, 0.04269057884812355, 0.010752149857580662, 0.07567176967859268,
- 0.0835844874382019, 0.10720326006412506, 0.03595970198512077, 0.04414009675383568,
- 0.012366319075226784, 0.014284956268966198, -0.017831163480877876,
- -0.002618512837216258, -0.0017446562414988875, -0.1588790863752365,
- -0.07023987174034119, 0.05860012024641037, 0.08620346337556839, -0.029022840782999992,
- -0.07223905622959137, -0.04260873794555664, -0.014032618142664433
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 211,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Monique Beals"],
- "epoch_date_downloaded": 1653609600,
- "epoch_date_modified": 1654473600,
- "epoch_date_submitted": 1653609600,
- "flag": null,
- "report_number": 1702,
- "source_domain": "thehill.com",
- "submitters": ["AIAAIC"],
- "title": "Paris taxi company suspending use of Teslas after fatal accident",
- "url": "https://thehill.com/policy/technology/585964-paris-taxi-company-suspending-use-of-teslas-after-fatal-accident/"
- },
- {
- "__typename": "Report",
- "authors": ["Rachel Pannett"],
- "epoch_date_downloaded": 1653609600,
- "epoch_date_modified": 1654473600,
- "epoch_date_submitted": 1653609600,
- "flag": null,
- "report_number": 1701,
- "source_domain": "washingtonpost.com",
- "submitters": ["AIAAIC"],
- "title": "Tesla Model 3 fleet suspended by major Paris taxi firm after fatal accident",
- "url": "https://www.washingtonpost.com/world/2021/12/15/paris-taxi-g7-tesla-accident/"
- },
- {
- "__typename": "Report",
- "authors": ["Colleen Hagerty"],
- "epoch_date_downloaded": 1653609600,
- "epoch_date_modified": 1654473600,
- "epoch_date_submitted": 1653609600,
- "flag": null,
- "report_number": 1700,
- "source_domain": "popsci.com",
- "submitters": ["AIAAIC"],
- "title": "What we know so far about the fatal Tesla crash in Paris",
- "url": "https://www.popsci.com/technology/fatal-tesla-crash-paris/"
- },
- {
- "__typename": "Report",
- "authors": ["Reuters"],
- "epoch_date_downloaded": 1653609600,
- "epoch_date_modified": 1654473600,
- "epoch_date_submitted": 1653609600,
- "flag": null,
- "report_number": 1699,
- "source_domain": "reuters.com",
- "submitters": ["AIAAIC"],
- "title": "Paris crash Tesla driver says car accelerated on its own - lawyer",
- "url": "https://www.reuters.com/world/europe/paris-crash-tesla-driver-says-car-accelerated-its-own-lawyer-2021-12-16/"
- },
- {
- "__typename": "Report",
- "authors": ["Gustavo Henrique Ruffo"],
- "epoch_date_downloaded": 1653609600,
- "epoch_date_modified": 1654473600,
- "epoch_date_submitted": 1653609600,
- "flag": null,
- "report_number": 1698,
- "source_domain": "autoevolution.com",
- "submitters": ["AIAAIC"],
- "title": "Tesla Model 3 Taxi Cab Accident Hurts About 20 People in Paris Due to Braking Issues",
- "url": "https://www.autoevolution.com/news/tesla-model-3-taxi-cab-accident-hurts-about-20-people-in-paris-due-to-braking-issues-176380.html"
- },
- {
- "__typename": "Report",
- "authors": ["Mathieu Rosemain", " Elizabeth Pineau"],
- "epoch_date_downloaded": 1653609600,
- "epoch_date_modified": 1654473600,
- "epoch_date_submitted": 1653609600,
- "flag": null,
- "report_number": 1697,
- "source_domain": "reuters.com",
- "submitters": ["AIAAIC"],
- "title": "Tesla told France there was no sign of technical fault in Paris crash",
- "url": "https://www.reuters.com/business/autos-transportation/french-transport-minister-says-not-worried-about-tesla-after-paris-car-accident-2021-12-15/"
- },
- {
- "__typename": "Report",
- "authors": ["Geert De Clercq"],
- "epoch_date_downloaded": 1653609600,
- "epoch_date_modified": 1654473600,
- "epoch_date_submitted": 1653609600,
- "flag": null,
- "report_number": 1696,
- "source_domain": "reuters.com",
- "submitters": ["AIAAIC"],
- "title": "Paris taxi firm suspends use of Tesla cars after fatal accident",
- "url": "https://www.reuters.com/business/autos-transportation/paris-taxi-firm-suspends-use-tesla-model-3-after-accident-2021-12-14/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "xpeng-motors",
- "name": "XPeng Motors"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "unknown",
- "name": "Unknown"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "xpeng-motors-customers",
- "name": "XPeng Motors customers"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1714, 1713, 1712, 1711],
- "vector": [
- -0.06233496218919754, 0.05184558406472206, 0.01960882917046547, -0.10965805500745773,
- 0.05038374289870262, -0.0278011504560709, -2.0058359950780869e-7, 0.032133616507053375,
- 0.022043146193027496, -0.14674638211727142, -0.02389644831418991, 0.025772487744688988,
- 0.035948801785707474, -0.10657555609941483, -0.008755159564316273, -0.09885674715042114,
- -0.04698878526687622, 0.010682550258934498, -0.01754695735871792, -0.0960283875465393,
- -0.07734891772270203, 0.05350766330957413, 0.0368240624666214, 0.10156308114528656,
- -0.07605936378240585, 0.030515041202306747, 0.1193680539727211, 0.11665516346693039,
- -0.07708306610584259, 0.06006671115756035, -0.019950954243540764, -0.014603415504097939,
- 0.13355907797813416, 0.013706577941775322, 0.013218067586421967, 0.0972454845905304,
- 0.06233097240328789, -0.012991615571081638, -0.025886166840791702,
- -0.011573556810617447, 0.01563885621726513, 0.20296719670295715, -0.017483394593000412,
- -0.04309042915701866, 0.050766829401254654, -0.04839310795068741, 0.0272637028247118,
- 0.0656556710600853, 0.010689002461731434, -0.015330096706748009, -0.0206336360424757,
- 0.05067216604948044, -0.024963192641735077, 0.06375569850206375, -0.0926704853773117,
- 0.026401476934552193, 0.023383816704154015, -0.025507904589176178, 0.03594556078314781,
- -0.09430557489395142, -0.026710618287324905, -0.2584904134273529, 0.026938151568174362,
- -0.08653552830219269, 0.07352365553379059, -0.08692770451307297, -0.049684107303619385,
- 0.02541806548833847, 0.06716286391019821, 0.05112959444522858, 0.0482838973402977,
- -0.022429250180721283, -0.013636341318488121, -0.019720200449228287,
- 0.026890115812420845, -0.04831929877400398, -0.007680030539631844, 0.16560590267181396,
- -0.12209180742502213, 0.00805070623755455, 0.10214351117610931, -0.08000699430704117,
- 0.4540509581565857, 0.04314771294593811, -0.05702032521367073, 0.0047508105635643005,
- 0.11323073506355286, 0.020068351179361343, 0.04521190747618675, 0.0605928897857666,
- -0.046905890107154846, -0.014130571857094765, -0.05789283663034439,
- 0.016574429348111153, 0.05692243203520775, 0.05329138785600662, -0.024116311222314835,
- 0.03945216163992882, 0.0014432467287406325, -0.028858203440904617, 0.015449658036231995,
- -0.04300922527909279, 0.11200889945030212, 0.05538184940814972, -0.04096366837620735,
- -0.021479995921254158, 0.03742296248674393, -0.05467896908521652, 0.056817203760147095,
- -0.04590087756514549, 0.016878074035048485, 0.046255968511104584, 0.07482859492301941,
- 0.021541867405176163, 0.028505688533186913, -0.01771886646747589, 0.020798450335860252,
- 0.05520929768681526, 0.0824018120765686, 0.025721948593854904, -0.016891440376639366,
- 0.0656343549489975, 0.06749773025512695, -0.019542932510375977, 0.04651683568954468,
- -0.06232120469212532, -0.015612591058015823, -0.0406569167971611, -0.032014451920986176,
- 0.03359021618962288, -0.042973343282938004, -0.2067842185497284, -0.027144482359290123,
- 0.10020765662193298, 0.02281550131738186, -0.03951325640082359, 0.035913776606321335,
- -0.052531495690345764, 0.016775652766227722, -0.03597713261842728,
- -0.0050332085229456425, 0.07154425978660583, 0.032030075788497925, 0.025990590453147888,
- 0.11328735202550888, 0.05976172536611557, -0.051454149186611176, -0.06311586499214172,
- 0.02878815121948719, 0.015109477564692497, 0.12057307362556458, -0.14084076881408691,
- -0.03257282078266144, 0.02917322888970375, -0.025236736983060837, 0.7227158546447754,
- 0.1430618017911911, 0.18547162413597107, -0.009495093487203121, -0.028102846816182137,
- 0.15626130998134613, 0.013803014531731606, 0.08746232092380524, -0.08625300973653793,
- -0.06548836827278137, 0.055951572954654694, -0.038633279502391815, -0.03247496485710144,
- 0.03487195074558258, -0.0010099934879690409, 0.11388670653104782,
- -0.0006476623238995671, 0.11894844472408295, 0.006297734100371599, -0.10434043407440186,
- 0.010036413557827473, 0.052678242325782776, -0.026197116822004318, -0.11032207310199738,
- -0.024929877370595932, -0.02707573212683201, 0.08649781346321106, -0.06252988427877426,
- -0.0004328614450059831, -0.045699045062065125, 0.0356227271258831,
- -0.028495104983448982, 0.06049446389079094, -0.02587711438536644, 0.02323344349861145,
- 0.011015075258910656, 0.07795680314302444, 0.0065817637369036674, -0.118487149477005,
- -0.05381350964307785, 0.1074700877070427, 0.007290149573236704, -0.0032969636376947165,
- 0.08407026529312134, -0.11476733535528183, 0.0448467917740345, -0.031100459396839142,
- 0.13900022208690643, -0.13085834681987762, -0.0030262612272053957,
- -0.005364813841879368, -0.0100270826369524, 0.06321905553340912, -0.019901860505342484,
- -0.07719860225915909, -0.051523592323064804, 0.0627855733036995, 0.05859255790710449,
- 0.0577927902340889, 0.06160518899559975, 0.013258537277579308, 0.06013837456703186,
- 0.057644858956336975, -0.0007489155977964401, -0.024391045793890953,
- 0.050103288143873215, 0.05398857221007347, -0.025851327925920486, -0.042769093066453934,
- -0.012141989544034004, 0.04173404723405838, -0.021042967215180397,
- -0.014015857130289078, 0.008981863968074322, 0.024359524250030518,
- -0.025102192535996437, 0.03116501122713089, 0.007287768647074699, 0.03446226194500923,
- 0.14391864836215973, -0.03550117835402489, -0.07330617308616638, -0.022802012041211128,
- -0.057540927082300186, 0.005853182636201382, 0.016693685203790665, 0.1024649366736412,
- 0.093076691031456, 0.07664521783590317, 0.03485359251499176, 0.05131066218018532,
- 0.07113708555698395, 0.043174467980861664, 0.047773756086826324, 0.08229372650384903,
- -0.013369252905249596, -0.07327540963888168, -0.0271880142390728, 0.0013649399625137448,
- 0.06154896691441536, 0.019309133291244507, -0.05492787063121796, -0.0013984639663249254,
- -0.04443078488111496, -0.08132094144821167, -0.112050361931324, 0.0314067043364048,
- 0.019169898703694344, 0.08035534620285034, -0.043885212391614914, -0.058668363839387894,
- -0.08406931161880493, -0.0051026735454797745, 0.06168155372142792,
- 0.0037007664795964956, 0.019107531756162643, -0.0938103199005127,
- 0.00041020114440470934, -0.019945943728089333, 0.049385420978069305,
- -0.008496182039380074, 0.03709828108549118, -0.006665629800409079, -0.02315814048051834,
- 0.057908181101083755, -0.010721747763454914, -0.02805735543370247, -0.09475389868021011,
- -0.10836935043334961, -0.06735967099666595, 0.0025598544161766768, 0.021162021905183792,
- -0.026009371504187584, 0.07893289625644684, 0.013655832037329674, 0.057675573974847794,
- -0.012394588440656662, 0.006642297841608524, 0.07319759577512741, -0.04610314965248108,
- -0.023382384330034256, 0.1057082861661911, -0.01286306045949459, -0.0014688337687402964,
- 0.017807060852646828, -0.0899868980050087, -0.01284225843846798, 0.04984217882156372,
- -0.0746997818350792, 0.039779648184776306, 0.0064883544109761715, -0.02016064152121544,
- -0.013652129098773003, -0.016475016251206398, 0.11399739235639572, -0.09106770902872086,
- -0.09063658863306046, -0.05588896572589874, 0.1285865306854248, 0.007313380483537912,
- 0.014211704023182392, 0.03411034122109413, -0.06294938921928406, 0.043149806559085846,
- -0.056987375020980835, -0.005950987339019775, 0.023203950375318527, 0.08273010700941086,
- -0.047466181218624115, 0.0065222494304180145, 0.025002261623740196,
- -0.058128274977207184, -0.004235610831528902, 0.08006107062101364, 0.46124348044395447,
- -0.0828777551651001, 0.10231830924749374, 0.09703564643859863, -0.04458251968026161,
- 0.027909107506275177, -0.0119395162910223, 0.06525389105081558, 0.054823897778987885,
- 0.12510599195957184, 0.12183545529842377, -0.04330945014953613, 0.006537324283272028,
- -0.10655048489570618, 0.10020022094249725, -0.0013156766071915627, -0.03150103986263275,
- 0.04855818301439285, -0.07274715602397919, -0.03689345717430115, 0.04598327726125717,
- -0.017519233748316765, 0.007296898402273655, -0.02691703662276268, -0.07799944281578064,
- 0.023201661184430122, 0.05142376571893692, 0.013634821400046349, -0.01567811891436577,
- 0.000016998150385916233, -0.06318783760070801, 0.012032194063067436,
- -0.0030398715753108263, 0.04309166967868805, -0.09395187348127365, 0.03526785969734192,
- -0.1148991659283638, -0.05495227500796318, 0.08754429221153259, -0.0031105075031518936,
- 0.042642295360565186, 0.05989564582705498, -0.0415312722325325, 0.03523125499486923,
- -0.060886360704898834, -0.038567930459976196, 0.03589692711830139, 0.08273632824420929,
- -0.004941233899444342, 0.12260066717863083, 0.18209725618362427, -0.03889406844973564,
- -0.046025339514017105, -0.06889545917510986, 0.07086895406246185, 0.0824984759092331,
- 0.008253583684563637, 0.039911337196826935, -0.07316702604293823, -0.04075968265533447,
- -0.038164786994457245, -0.08439268171787262, -0.08881925046443939,
- -0.013855334371328354, -0.02419804036617279, 0.06173879653215408, 0.020687898620963097,
- -0.02947508543729782, -0.18303394317626953, -0.015641910955309868, -0.02578953467309475,
- 0.025930767878890038, 0.10000912845134735, -0.04540325701236725, 0.013907491229474545,
- 0.03144114091992378, -0.0318831205368042, -0.046670980751514435, -0.15511395037174225,
- 0.03638099879026413, -0.05695224925875664, 0.030513782054185867, 0.03079872578382492,
- 0.07296515256166458, -0.02308405004441738, 0.06583524495363235, -0.12361445277929306,
- 0.0907202735543251, 0.05158036947250366, -0.05711019039154053, 0.044526197016239166,
- -0.020962217822670937, 0.004894893616437912, 0.04552283510565758, -0.03022368997335434,
- -0.005860261153429747, -0.01940016821026802, -0.04942744970321655, -0.11084559559822083,
- -0.053562577813863754, -0.02246447280049324, -0.08874595165252686, 0.09551550447940826,
- -0.0585300587117672, -0.008888507261872292, 0.010049771517515182, 0.007685151882469654,
- -0.03166333585977554, 0.020167578011751175, 0.04533585160970688, -0.19173145294189453,
- 0.014835838228464127, 0.018285971134901047, 0.052832089364528656, -0.06389143317937851,
- -0.007943578995764256, 0.04823092371225357, 0.11278329789638519, 0.0354795940220356,
- 0.031807102262973785, 0.03623278811573982, -0.029600072652101517, 0.07920417934656143,
- -0.11068380624055862, -0.3992061913013458, 0.06967036426067352, 0.03640750050544739,
- 0.0334843173623085, 0.004042306449264288, -0.09352509677410126, 0.05226432532072067,
- 0.02613123133778572, -0.056802961975336075, 0.09423384070396423, -0.055148523300886154,
- -0.001401302870362997, -0.003492620075121522, -0.051359254866838455,
- -0.039933934807777405, -0.05221159756183624, -0.04719887673854828, 0.03805822134017944,
- -0.05816889926791191, -0.05857251584529877, -0.1560870110988617, 0.01663152687251568,
- -0.044112130999565125, 0.04566333442926407, 0.036865271627902985, 0.0004689682100433856,
- -0.11086483299732208, -0.005088968202471733, 0.033936306834220886, 0.04350139945745468,
- 0.02096623368561268, -0.08818456530570984, 0.013185467571020126, 0.06944012641906738,
- -0.013545491732656956, 0.13261964917182922, 0.03194718807935715, -0.04612477496266365,
- -0.09962956607341766, 0.03236905112862587, 0.023350177332758904, 0.1862836331129074,
- -0.012286903336644173, -0.0059738620184361935, 0.041111499071121216,
- 0.16582539677619934, 0.038430649787187576, 0.02812899835407734, -0.03531965613365173,
- 0.03933664783835411, 0.029767589643597603, -0.02194855734705925, 0.02711915783584118,
- -0.07906474173069, -0.026122966781258583, -0.03095533326268196, -0.0027210877742618322,
- -0.05832458287477493, -0.01608998328447342, 0.17499887943267822, 0.01194221805781126,
- 0.004134860821068287, 0.04252328723669052, -0.08553415536880493, -0.013738064095377922,
- -0.0944998487830162, -0.08851001411676407, -0.03251980245113373, 0.028472399339079857,
- 0.020838232710957527, -0.08449762314558029, -0.153132364153862, -0.023639116436243057,
- -0.05744938924908638, 0.005302227567881346, 0.10806109756231308, -0.005240821745246649,
- 0.04460747539997101, -0.034356921911239624, 0.13622918725013733, 0.047480687499046326,
- 0.035143110901117325, 0.041993506252765656, 0.10295172035694122, -0.010728700086474419,
- 0.017523355782032013, -0.033328548073768616, -0.06271268427371979, 0.014533279463648796,
- 0.12383939325809479, -0.037753183394670486, 0.12021586298942566, 0.05310127139091492,
- -0.051262788474559784, -0.063907191157341, 0.004419801756739616, -0.016693735495209694,
- 0.05060604214668274, -0.3985425531864166, 0.009875936433672905, 0.13847139477729797,
- 0.008198786526918411, -0.006617027800530195, 0.10981468856334686, 0.007449929136782885,
- 0.002864498645067215, -0.05329548195004463, -0.1089792400598526, 0.21883049607276917,
- -0.009954201988875866, 0.06805001199245453, -0.1297629028558731, 0.02396993152797222,
- 0.10786047577857971, -0.04288482666015625, -0.01688709296286106, 0.03688698261976242,
- -0.17422708868980408, -0.0031273148488253355, -0.045593369752168655,
- 0.16164660453796387, 0.031090786680579185, 0.0409112423658371, 0.06021088734269142,
- -0.03866402059793472, 0.013214661739766598, 0.03370257839560509, -0.017493315041065216,
- 0.07303664088249207, -0.01799670420587063, -0.02763339690864086, 0.08861671388149261,
- 0.07829147577285767, 0.1226934865117073, -0.07507102191448212, 11.941102981567383,
- 0.05101432651281357, 0.07125551253557205, -0.07498882710933685, -0.026925314217805862,
- -0.05655267462134361, 0.05328529328107834, -0.09877659380435944, 0.03610985726118088,
- 0.11385039985179901, 0.002540452405810356, -0.06773488223552704, -0.03673844784498215,
- -0.08475083857774734, 0.0037135453894734383, -0.0342397503554821, -0.026982029899954796,
- -0.01860751584172249, 0.05176083743572235, -0.04558514803647995, -0.03958497941493988,
- 0.0037268861196935177, 0.05863307788968086, 0.031935419887304306, -0.06814973801374435,
- 0.009352338500320911, 0.03886895626783371, -0.013570740818977356,
- -0.0007241989369504154, -0.012635497376322746, 0.040027543902397156,
- 0.01158146932721138, 0.07039166986942291, 0.02767084911465645, 0.05946685001254082,
- 0.050979871302843094, 0.016443634405732155, 0.033573176711797714, 0.0354703813791275,
- 0.02477843128144741, 0.048987794667482376, -0.018008431419730186, 0.026138633489608765,
- 0.06726957112550735, 0.036146774888038635, 0.003193253418430686, 0.051065582782030106,
- 0.09917245805263519, 0.04740968346595764, 0.06329725682735443, 0.08579221367835999,
- 0.01180616021156311, 0.0980910062789917, 0.042838141322135925, 0.02901095151901245,
- 0.05346258357167244, -0.00018308393191546202, -0.08346211910247803, 0.07962293177843094,
- 0.1211254671216011, -0.04847495257854462, 0.08180210739374161, 0.012656217440962791,
- 0.1037217453122139, -0.007088884245604277, 0.02562970481812954, 0.057361580431461334,
- 0.06830500066280365, -0.14903408288955688, -0.11064013093709946, 0.0782104879617691,
- -0.10668186843395233, -0.08421860635280609, 0.05893339961767197, 0.09964755177497864,
- -0.03659673035144806, 0.08482159674167633, -0.06896695494651794, 0.02887532114982605,
- -0.054228104650974274, -0.013550017960369587, 0.05096761882305145,
- -0.049726974219083786, 0.027337444946169853, 0.020129624754190445, 0.04563923925161362,
- 0.11688020080327988, 0.08518095314502716, -0.010946234688162804, -0.03996666893362999,
- -0.058728598058223724, 0.1057305559515953, -0.0016399422893300653, -0.07680966705083847,
- -0.06397762894630432, 0.01301020011305809, 0.024978341534733772, -0.15388226509094238,
- 0.03744686767458916, 0.05679861456155777, -0.08969651162624359, -0.06083648279309273,
- -0.026802530512213707, 0.08765766024589539, -0.025025783106684685, 0.051184870302677155,
- -0.02543966844677925, 0.029679425060749054, 0.03863232210278511,
- -0.00016764563042670488, -0.024884430691599846, 0.07099856436252594, 0.112186498939991,
- -0.08617674559354782, 0.04864354431629181, 0.04343497008085251, -0.04964064434170723,
- -0.060021840035915375, 0.018668435513973236, 0.06051705405116081, -0.04662143439054489,
- -0.07870304584503174, -0.030732957646250725, -0.052741046994924545,
- -0.015731580555438995, -0.03256744518876076, 0.0029944791458547115, 0.0348307266831398,
- -0.056303512305021286, -0.037650346755981445, 0.0692722350358963, 0.04909587651491165,
- 0.05611855164170265, 0.01731860637664795, 0.03998595103621483, -0.06062525510787964,
- -0.023372439667582512, 0.06096334382891655, 0.05856655538082123, 0.07280471175909042,
- -0.02447139099240303, -0.03365595266222954, -0.04227396100759506, -0.11336938291788101,
- 0.033477019518613815, 0.10969444364309311, 0.0730002373456955, 0.0571100190281868,
- 0.014158660545945168, -0.07549713551998138, -0.07274772226810455, 0.09316433221101761,
- 0.015597193501889706, 0.05797147750854492, 0.019750474020838737, -0.12131939828395844,
- -0.05515682324767113, 0.10995794832706451, -0.06079428642988205, -0.03121226839721203,
- -0.0027131938841193914, -0.05748116970062256, 0.1675068587064743, 0.08028445392847061,
- 0.04421200230717659, 0.03536417707800865, 0.00827421061694622, 0.01974800042808056,
- 0.02786622941493988, -0.03071749396622181, 0.024851540103554726, -0.039240773767232895,
- -0.1361960768699646, -0.07545948773622513, 0.06352061778306961, 0.0724533274769783,
- -0.02195517159998417, -0.14917023479938507, -0.06566788256168365, 0.008662584237754345
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 212,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Titanium Media"],
- "epoch_date_downloaded": 1653782400,
- "epoch_date_modified": 1654473600,
- "epoch_date_submitted": 1653782400,
- "flag": null,
- "report_number": 1714,
- "source_domain": "sohu.com",
- "submitters": ["AIAAIC"],
- "title": "Xpeng Motors Fined for Collecting Facial Images Without Consent",
- "url": "https://www.sohu.com/a/508284884_116132"
- },
- {
- "__typename": "Report",
- "authors": ["Pandaily"],
- "epoch_date_downloaded": 1653782400,
- "epoch_date_modified": 1654473600,
- "epoch_date_submitted": 1653782400,
- "flag": null,
- "report_number": 1713,
- "source_domain": "pandaily.com",
- "submitters": ["AIAAIC"],
- "title": "Xpeng Motors Fined for Collecting Face Photos",
- "url": "https://pandaily.com/xpeng-motors-fined-for-collecting-face-photos/"
- },
- {
- "__typename": "Report",
- "authors": ["IANS"],
- "epoch_date_downloaded": 1653782400,
- "epoch_date_modified": 1654473600,
- "epoch_date_submitted": 1653782400,
- "flag": null,
- "report_number": 1712,
- "source_domain": "timesofindia.indiatimes.com",
- "submitters": ["Khoa Lam"],
- "title": "China fines EV firm for illegal collection of facial images of visitors",
- "url": "https://timesofindia.indiatimes.com/auto/news/china-fines-ev-firm-for-illegal-collection-of-facial-images-of-visitors/articleshow/88304170.cms"
- },
- {
- "__typename": "Report",
- "authors": ["Global Times"],
- "epoch_date_downloaded": 1653782400,
- "epoch_date_modified": 1654473600,
- "epoch_date_submitted": 1653782400,
- "flag": null,
- "report_number": 1711,
- "source_domain": "globaltimes.cn",
- "submitters": ["AIAAIC"],
- "title": "Xpeng apologizes for illegal collection of facial images after penalty",
- "url": "https://www.globaltimes.cn/page/202112/1241489.shtml"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "facebook",
- "name": "Facebook"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "facebook",
- "name": "Facebook"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "facebook-users",
- "name": "Facebook users"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1719, 1718, 1717, 1716, 1715],
- "vector": [
- -0.043816812336444855, 0.07055560499429703, 0.0013010867405682802, -0.10476336628198624,
- 0.0457037054002285, -0.020582523196935654, 0.00023509077436756343, 0.06912973523139954,
- 0.0366460457444191, -0.13477352261543274, 0.004217577166855335, 0.017824523150920868,
- 0.022094544023275375, -0.1406446397304535, 0.03784658759832382, -0.11086060851812363,
- -0.12969239056110382, -0.023355647921562195, -0.017936956137418747, -0.1336129754781723,
- -0.09454327076673508, 0.009441819041967392, 0.0021160722244530916, 0.13518135249614716,
- -0.0294451005756855, 0.03496023267507553, 0.11096283048391342, 0.09864968061447144,
- -0.04922306537628174, 0.06885597109794617, -0.03607340529561043, -0.05564790219068527,
- 0.14270934462547302, 0.014832286164164543, 0.034283868968486786, 0.12278090417385101,
- 0.023205697536468506, -0.039551980793476105, -0.03771097585558891,
- -0.023655734956264496, 0.07963980734348297, 0.26963716745376587, -0.03166390210390091,
- -0.022544527426362038, 0.02948896586894989, -0.026578282937407494,
- 0.0024137620348483324, 0.05278528481721878, -0.00017319871403742582,
- -0.015526289120316505, 0.00038370341644622386, 0.06381140649318695,
- -0.02370002493262291, 0.004868064541369677, -0.09083253890275955, 0.05163692310452461,
- 0.029959291219711304, -0.027543645352125168, 0.008134023286402225, -0.10074210166931152,
- -0.026690691709518433, -0.2550193667411804, -0.03896764665842056, -0.08265256136655807,
- 0.11095163971185684, -0.08700807392597198, -0.05460461974143982, 0.015451645478606224,
- 0.04701609909534454, 0.07844662666320801, 0.054239772260189056, -0.026519114151597023,
- -0.01604625955224037, 0.03692132607102394, 0.0026448650751262903, -0.02554265782237053,
- 0.003994311206042767, 0.21688750386238098, -0.08186881244182587, 0.010090225376188755,
- 0.08449687063694, -0.10300853103399277, 0.4545862674713135, 0.025641372427344322,
- -0.010851859115064144, -0.03223160281777382, 0.09229280799627304, 0.046987906098365784,
- 0.01549195684492588, 0.035579897463321686, -0.06604167073965073, 0.053389985114336014,
- -0.09912334382534027, -0.0054048956371843815, 0.07129527628421783, 0.025612547993659973,
- -0.03460823372006416, 0.013724574819207191, -0.009331827983260155,
- -0.041245877742767334, -0.018779734149575233, -0.03456558659672737, 0.07725275307893753,
- 0.08515305817127228, -0.05883128568530083, 0.011687268503010273, 0.07077981531620026,
- -0.055554963648319244, 0.053549252450466156, -0.05616385489702225, 0.015482321381568909,
- -0.018903881311416626, 0.058885108679533005, 0.004271847661584616, 0.018731312826275826,
- -0.032107867300510406, 0.01316912192851305, 0.05314267799258232, 0.07899162918329239,
- 0.046077389270067215, 0.0162990540266037, 0.06707723438739777, 0.05862502381205559,
- -0.04801398888230324, -0.05648214742541313, -0.0530250258743763, -0.04747043922543526,
- -0.017986491322517395, -0.033607736229896545, 0.05172242596745491,
- -0.044447991997003555, -0.1408461183309555, -0.013424104079604149, 0.10512779653072357,
- 0.0011900471290573478, -0.048256464302539825, 0.032690178602933884,
- -0.03968854621052742, 0.019464222714304924, -0.025794317945837975,
- -0.016283420845866203, 0.08166158199310303, -0.005431642290204763, 0.03196951374411583,
- 0.10018161684274673, 0.056143224239349365, -0.05051733925938606, -0.049791041761636734,
- 0.039261460304260254, -0.06625567376613617, 0.1238640695810318, -0.11415038257837296,
- -0.04078998044133186, -0.010250510647892952, 0.002654902171343565, 0.7359272837638855,
- 0.0907418355345726, 0.1809985339641571, 0.008227280341088772, -0.03863085061311722,
- 0.17569337785243988, 0.02096645161509514, 0.05965537577867508, -0.06863260269165039,
- -0.05724829435348511, 0.05394413322210312, -0.07244317978620529, -0.06378800421953201,
- 0.0059992121532559395, 0.02430095337331295, 0.09063021838665009, 0.027452751994132996,
- 0.06476788967847824, 0.01600215956568718, -0.09274456650018692, -0.05680086463689804,
- 0.06824274361133575, -0.041443485766649246, -0.12183843553066254, -0.032186783850193024,
- 0.07655749469995499, 0.10481169074773788, -0.09700535237789154, -0.01305390615016222,
- -0.05834794044494629, 0.07719630002975464, -0.008601589128375053, 0.08183072507381439,
- -0.024116680026054382, 0.07538161426782608, 0.005123359151184559, 0.03158215805888176,
- -0.006473278161138296, -0.0990871712565422, -0.02809159830212593, 0.08723481744527817,
- -0.020920079201459885, -0.025849267840385437, 0.05182585120201111, -0.09671233594417572,
- 0.04211650416254997, -0.0025929431430995464, 0.18718260526657104, -0.16306200623512268,
- -0.011334644630551338, 0.00395869929343462, -0.043985892087221146, 0.04423091933131218,
- -0.005928303115069866, -0.04972846806049347, -0.03382602706551552, 0.08564753830432892,
- 0.034612029790878296, 0.07059715688228607, 0.06219712644815445, -0.013930276036262512,
- 0.029847973957657814, 0.07816542685031891, 0.006514274515211582, -0.038153570145368576,
- 0.06266698241233826, 0.04100458696484566, -0.06515543907880783, -0.030078623443841934,
- 0.0323541983962059, 0.03293577954173088, 0.037602148950099945, 0.0042585330083966255,
- 0.03472257778048515, 0.007652886211872101, -0.04423951730132103, 0.05962802842259407,
- 0.025727590546011925, 0.03942502290010452, 0.10095672309398651, -0.08648563921451569,
- -0.04600582271814346, -0.03727713227272034, -0.03539644926786423, 0.0375555120408535,
- -0.03531369939446449, 0.0685882419347763, 0.09516964107751846, 0.09550371766090393,
- 0.00992097519338131, 0.022914478555321693, 0.034940145909786224, -0.009995854459702969,
- 0.0192608330398798, 0.03893905133008957, -0.019785085693001747, -0.041540514677762985,
- -0.026333767920732498, 0.006766460835933685, 0.04027985408902168, -0.005028155632317066,
- -0.036864664405584335, -0.02076486311852932, -0.08209880441427231, -0.07984437048435211,
- -0.0777926817536354, -0.06077102944254875, 0.034007228910923004, 0.03764675185084343,
- -0.05415606498718262, -0.0848654955625534, -0.0654086172580719, -0.004881519824266434,
- 0.06409677118062973, -0.023919349536299706, -0.020758219063282013, -0.13003146648406982,
- 0.018228404223918915, -0.027184616774320602, 0.0517815463244915, -0.025013625621795654,
- 0.02016439475119114, 0.013039027340710163, -0.04908686503767967, 0.0290102269500494,
- -0.02942478656768799, -0.02609340287744999, -0.0844835564494133, -0.07939852029085159,
- -0.05796007066965103, -0.03037676215171814, 0.03366420790553093, -0.02050618827342987,
- 0.051322270184755325, 0.008629264310002327, 0.05930592492222786, -0.0322076790034771,
- -0.047939956188201904, 0.082056425511837, -0.02555638924241066, -0.011780927889049053,
- 0.09316950291395187, -0.03182400017976761, 0.053427763283252716, 0.015358309261500835,
- -0.07842205464839935, -0.045563917607069016, 0.033784110099077225, -0.03682754561305046,
- 0.024076662957668304, 0.013305561617016792, 0.01832638680934906, -0.046473897993564606,
- -0.018077800050377846, 0.08631925284862518, -0.05963074415922165, -0.11277147382497787,
- -0.0596475787460804, 0.12335668504238129, 0.026957843452692032, 0.006560802459716797,
- 0.052182793617248535, -0.038604844361543655, 0.02774868905544281,
- -0.0006373299402184784, 0.017644979059696198, 0.02070600353181362, 0.06386449187994003,
- -0.013549272902309895, -0.005636874586343765, 0.05242191627621651, -0.04739641025662422,
- 0.024953730404376984, 0.08546337485313416, 0.4579050540924072, -0.15536803007125854,
- 0.09643256664276123, 0.09528341144323349, -0.005674431100487709, 0.04074646905064583,
- -0.06974069774150848, 0.06179725006222725, 0.0948747992515564, 0.14033851027488708,
- 0.11627550423145294, -0.051272980868816376, -0.002228708937764168, -0.09574185311794281,
- 0.10324201732873917, -0.02340252697467804, 0.011340197175741196, 0.00681795459240675,
- -0.08947910368442535, -0.026938607916235924, 0.048987310379743576, -0.03313881531357765,
- 0.015210771933197975, -0.011234588921070099, -0.07177630811929703, 0.014523858204483986,
- -0.004597520921379328, 0.006311102770268917, -0.008490572683513165,
- 0.044469721615314484, -0.022577812895178795, 0.04645438864827156, -0.019394587725400925,
- 0.04895579069852829, -0.14294739067554474, 0.008830411359667778, -0.07871784269809723,
- -0.07538914680480957, 0.08030257374048233, -0.00802578590810299, 0.0755748301744461,
- 0.055614572018384933, -0.00880504958331585, 0.035275306552648544,
- -0.0033478345721960068, -0.045652613043785095, 0.03448553755879402, 0.06334252655506134,
- 0.007893732748925686, 0.09462036937475204, 0.15735924243927002, -0.03269471228122711,
- -0.023074185475707054, -0.08986533433198929, 0.06373919546604156, 0.1746675968170166,
- -0.00416824733838439, 0.002956469776108861, -0.0015744309639558196,
- -0.053355179727077484, 0.00346887344494462, -0.057121384888887405, -0.09721504896879196,
- -0.0038294661790132523, -0.040029216557741165, 0.09166796505451202,
- 0.052317649126052856, -0.019960761070251465, -0.10219483077526093, -0.03605565428733826,
- -0.0427701510488987, 0.01154537033289671, 0.09915778785943985, -0.07165737450122833,
- 0.042290400713682175, -0.005332749802619219, -0.0029306914657354355,
- -0.008528681471943855, -0.07030262798070908, -0.007847556844353676,
- -0.044874005019664764, 0.04900876432657242, 0.03874949738383293, 0.05242225527763367,
- -0.03478572517633438, 0.12193667888641357, -0.1039208173751831, 0.07040650397539139,
- -0.00552805420011282, -0.043181538581848145, 0.020217983052134514, -0.05065244436264038,
- 0.025192048400640488, 0.02366030402481556, -0.048720527440309525, -0.002382406033575535,
- -0.021157827228307724, -0.042812276631593704, -0.07195241004228592,
- -0.11283846199512482, -0.03018569014966488, -0.11574961245059967, 0.013904345221817493,
- -0.10901305824518204, 0.001177960424683988, -0.0018541973549872637,
- -0.05300943925976753, -0.01731928065419197, 0.015082143247127533, 0.02676853910088539,
- -0.16903343796730042, -0.019443068653345108, 0.052530594170093536, 0.049778252840042114,
- 0.016178127378225327, -0.036662183701992035, 0.008217224851250648, 0.08207681030035019,
- 0.03996272012591362, -0.01005577016621828, -0.0014619510620832443, -0.0778898149728775,
- 0.06959807872772217, -0.10438702255487442, -0.3574107587337494, 0.05792796611785889,
- 0.0007363015902228653, 0.042550865560770035, -0.010771973058581352,
- -0.10152320563793182, 0.03866950795054436, 0.02178155817091465, -0.04357012361288071,
- 0.08663057535886765, -0.06447581201791763, 0.01603405550122261, -0.04422280937433243,
- -0.06865037977695465, -0.03755675628781319, -0.06335652619600296, -0.059090595692396164,
- 0.02257702313363552, -0.03562865033745766, -0.0705074742436409, -0.11383599042892456,
- 0.0247504785656929, -0.014568904414772987, 0.010211938060820103, 0.034524865448474884,
- 0.040442515164613724, -0.058866314589977264, -0.05320555716753006, 0.04636571556329727,
- 0.07266407459974289, 0.04422547668218613, -0.06514967978000641, 0.014476907439529896,
- 0.08624722063541412, 0.00020609349303413182, 0.10354965925216675, 0.005077940411865711,
- 0.006017863284796476, -0.05945686250925064, 0.09476935863494873, 0.03837467357516289,
- 0.18500053882598877, 0.028497612103819847, -0.016228675842285156, 0.04670656472444534,
- 0.1643175184726715, 0.028932983055710793, 0.025780320167541504, -0.02857935056090355,
- -0.010727658867835999, 0.003508590627461672, 0.004090362228453159, 0.10876160860061646,
- -0.07000730186700821, -0.03765655308961868, -0.06510446220636368, 0.0158512182533741,
- -0.031805187463760376, -0.021796127781271935, 0.24032244086265564, 0.017215291038155556,
- -0.0009266668930649757, 0.023917313665151596, -0.06403903663158417,
- 0.002744006458669901, -0.11186778545379639, -0.12730146944522858, 0.018566250801086426,
- 0.007651244290173054, 0.028161028400063515, -0.032870836555957794, -0.09806574136018753,
- -0.013597738929092884, 0.00657865684479475, 0.00885485578328371, 0.13916729390621185,
- -0.03626597672700882, 0.011542069725692272, -0.01722557470202446, 0.14455950260162354,
- 0.0431981198489666, -0.005350650753825903, 0.03479762375354767, 0.12085463106632233,
- 0.005769824143499136, -0.005316735710948706, -0.013924583792686462,
- -0.09077431261539459, 0.007771441247314215, 0.12119951099157333, -0.05042167752981186,
- 0.14576426148414612, 0.024197882041335106, -0.0440727099776268, -0.05776304006576538,
- 0.029106969013810158, -0.06090821698307991, 0.008469226770102978, -0.45521363615989685,
- -0.027567196637392044, 0.10748860985040665, 0.04617108404636383, -0.0011012520408257842,
- 0.09724487364292145, -0.002672490430995822, -0.06541387736797333, -0.07938960194587708,
- -0.12018189579248428, 0.10343153774738312, 0.020828895270824432, 0.05628489330410957,
- -0.11019974946975708, 0.01903431862592697, 0.09574291855096817, -0.046502482146024704,
- 0.0004448305699042976, 0.07271558791399002, -0.2272295504808426, 0.010699231177568436,
- -0.04915495216846466, 0.08829154074192047, 0.036748409271240234, 0.052645742893218994,
- 0.08267872035503387, -0.041921429336071014, 0.01880614459514618, 0.0523761585354805,
- -0.03528878092765808, 0.05078618600964546, -0.009945856407284737, -0.02455954998731613,
- 0.11527644097805023, 0.09732017666101456, 0.08400311321020126, -0.061049651354551315,
- 12.025066375732422, 0.055400680750608444, 0.049742113798856735, -0.10082248598337173,
- -0.00574095081537962, -0.03625655174255371, 0.03138672187924385, -0.11201068013906479,
- 0.056146472692489624, 0.13285483419895172, -0.015530556440353394, -0.04518437385559082,
- -0.04164426773786545, -0.11027403175830841, 0.012821127660572529, -0.011523322202265263,
- -0.05390738695859909, -0.025237420573830605, 0.010777049697935581,
- -0.040697600692510605, -0.0347759909927845, 0.07722565531730652, 0.07480975240468979,
- 0.030187463387846947, -0.03809722885489464, 0.0011004932457581162, 0.037241555750370026,
- -0.01783755049109459, 0.02460925653576851, -0.01423581875860691, 0.007106202654540539,
- 0.01538501214236021, 0.08885923773050308, 0.005872884299606085, 0.033930134028196335,
- 0.04717835783958435, 0.06738922744989395, 0.016899170354008675, 0.020627323538064957,
- 0.05889422819018364, 0.006832913961261511, 0.03003912791609764, 0.016938012093305588,
- 0.055135954171419144, 0.08690788596868515, 0.0671125054359436, 0.05599873140454292,
- 0.1205143928527832, 0.027594462037086487, 0.05624391511082649, 0.09113121777772903,
- 0.008390690200030804, 0.12220370769500732, 0.015152594074606895, -0.003045222256332636,
- 0.05525786429643631, -0.0006811041384935379, -0.08166200667619705, 0.10432185977697372,
- 0.040940623730421066, -0.05756635218858719, 0.1288672238588333, 0.03194216638803482,
- 0.1172904521226883, 0.00933957938104868, 0.08767728507518768, 0.0511341318488121,
- 0.09706543385982513, -0.15924397110939026, -0.09966801851987839, 0.03625018522143364,
- -0.13029256463050842, -0.06634296476840973, 0.09222333133220673, 0.07457596063613892,
- -0.03790775686502457, 0.038614191114902496, 0.0010931387078016996, 0.02936231717467308,
- -0.06241290643811226, -0.000758887268602848, 0.037395134568214417,
- -0.007618045900017023, -0.002410390181466937, 0.08027777075767517, 0.037194106727838516,
- 0.0942448303103447, 0.12502478063106537, -0.014205632731318474, -0.053717613220214844,
- -0.055498503148555756, 0.07641066610813141, -0.013353352434933186, -0.06303603947162628,
- 0.014116721227765083, -0.027274679392576218, 0.00888986885547638, -0.1803329437971115,
- 0.0805513933300972, 0.0994512066245079, -0.07919095456600189, -0.03835847228765488,
- -0.013615021482110023, 0.059624552726745605, 0.014050105586647987, 0.018143968656659126,
- -0.06158435344696045, 0.009079641662538052, -0.0047426288947463036, 0.04145769029855728,
- -0.028030017390847206, 0.06330575048923492, 0.06080644205212593, -0.07726942002773285,
- 0.04313717409968376, 0.04825732856988907, -0.02053573913872242, -0.036594636738300323,
- 0.05383005738258362, 0.041314221918582916, -0.09682544320821762, -0.07387752830982208,
- -0.0101458840072155, -0.029037952423095703, -0.006485775113105774,
- -0.047192055732011795, 0.02960231900215149, 0.0424901619553566, -0.04551296681165695,
- -0.014662976376712322, 0.05722230672836304, 0.06896902620792389, 0.09905599802732468,
- -0.00019516349129844457, 0.04812658578157425, -0.06647922098636627,
- -0.04314044117927551, 0.0578979067504406, 0.0352623350918293, 0.05031438544392586,
- -0.05818134546279907, -0.02477450668811798, -0.08270131051540375, -0.14535865187644958,
- 0.0373351164162159, 0.09634681791067123, 0.04883721470832825, 0.0101906294003129,
- -0.015264207497239113, -0.0820644274353981, -0.03620712459087372, 0.08583744615316391,
- 0.04268960282206535, 0.030180897563695908, 0.04562508314847946, -0.035214878618717194,
- -0.03889618068933487, 0.09436076879501343, -0.032622143626213074, 0.013531645759940147,
- 0.037794727832078934, -0.08234543353319168, 0.07837848365306854, 0.09244558960199356,
- 0.014362119138240814, 0.03629381209611893, 0.0604281947016716, 0.034183669835329056,
- 0.03166760504245758, -0.015274407342076302, 0.0233731959015131, -0.033005159348249435,
- -0.09592055529356003, -0.06894685328006744, 0.03569713234901428, 0.11688347160816193,
- 0.046847932040691376, -0.07370274513959885, 0.003658986184746027, -0.047729942947626114
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 213,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Shoshana Wodinsky"],
- "epoch_date_downloaded": 1653782400,
- "epoch_date_modified": 1654473600,
- "epoch_date_submitted": 1653782400,
- "flag": null,
- "report_number": 1719,
- "source_domain": "gizmodo.com",
- "submitters": ["AIAAIC"],
- "title": "Facebook's Political Ad Promises Mostly Miss the Mark, Study Shows",
- "url": "https://gizmodo.com/facebooks-political-ad-promises-mostly-miss-the-mark-s-1848188441"
- },
- {
- "__typename": "Report",
- "authors": ["The Straits Times"],
- "epoch_date_downloaded": 1653782400,
- "epoch_date_modified": 1654473600,
- "epoch_date_submitted": 1653782400,
- "flag": null,
- "report_number": 1718,
- "source_domain": "straitstimes.com",
- "submitters": ["AIAAIC"],
- "title": "Facebook misidentified thousands of political ads: Study",
- "url": "https://www.straitstimes.com/tech/tech-news/facebook-misidentified-thousands-of-political-ads-study"
- },
- {
- "__typename": "Report",
- "authors": ["Issie Lapowsky"],
- "epoch_date_downloaded": 1653782400,
- "epoch_date_modified": 1654473600,
- "epoch_date_submitted": 1653782400,
- "flag": null,
- "report_number": 1717,
- "source_domain": "protocol.com",
- "submitters": ["AIAAIC"],
- "title": "How political advertisers get away with skirting Facebook’s rules",
- "url": "https://www.protocol.com/policy/facebook-political-ad-study"
- },
- {
- "__typename": "Report",
- "authors": ["Cybersecurity for Democracy"],
- "epoch_date_downloaded": 1653782400,
- "epoch_date_modified": 1654473600,
- "epoch_date_submitted": 1653782400,
- "flag": null,
- "report_number": 1716,
- "source_domain": "cybersecurityfordemocracy.org",
- "submitters": ["AIAAIC"],
- "title": "Summary of findings: An audit of Facebook’s political ad policy enforcement",
- "url": "https://cybersecurityfordemocracy.org/audit-facebook-political-ad-policy-enforcement"
- },
- {
- "__typename": "Report",
- "authors": [
- "Victor Le Pochat",
- " Laura Edelson",
- " Tom Van Goethem",
- " Wouter Joosen",
- " Damon McCoy",
- " Tobias Lauinger"
- ],
- "epoch_date_downloaded": 1653782400,
- "epoch_date_modified": 1654473600,
- "epoch_date_submitted": 1653782400,
- "flag": null,
- "report_number": 1715,
- "source_domain": "osf.io",
- "submitters": ["Khoa Lam"],
- "title": "An Audit of Facebook’s Political Ad Policy Enforcement",
- "url": "https://osf.io/7tw3e/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "lockport-city-school-district",
- "name": "Lockport City School District"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "sn-technologies",
- "name": "SN Technologies"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "black-students",
- "name": "Black students"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1722],
- "vector": [
- -0.07254641503095627, 0.050193388015031815, 0.009617473930120468, -0.1052028089761734,
- 0.10432124882936478, -0.054216306656599045, 0.038153648376464844, 0.08154451102018356,
- 0.08036591857671738, -0.11546463519334793, -0.00888600293546915, 0.11278866976499557,
- 0.00710449181497097, -0.087870292365551, 0.019518809393048286, -0.11453428864479065,
- -0.08899640291929245, -0.07987504452466965, -0.006870632525533438, -0.15633393824100494,
- -0.05856557935476303, -0.031920161098241806, -0.005906728096306324, 0.09802699834108353,
- -0.038122326135635376, 0.050976529717445374, 0.09879560768604279, 0.1291961818933487,
- -0.11208921670913696, 0.058783818036317825, -0.01936444453895092, -0.02853783406317234,
- 0.10737355053424835, 0.01999221183359623, -0.001959957415238023, 0.11661742627620697,
- 0.04310405254364014, -0.04374696686863899, 0.042920324951410294, 0.01963619329035282,
- -0.024454006925225258, 0.3016580045223236, -0.02958967722952366, 0.010620729066431522,
- -0.010725069791078568, -0.09966770559549332, 0.017255375161767006, 0.05906406044960022,
- -0.0001075703912647441, 0.01195922028273344, 0.019545815885066986, 0.01996604911983013,
- -0.07255140691995621, 0.06437083333730698, -0.12558022141456604, 0.07008523494005203,
- -0.000179225520696491, 0.016028065234422684, 0.006121070124208927, -0.06376304477453232,
- -0.03427959978580475, -0.22771573066711426, -0.007045187521725893, -0.05990205332636833,
- 0.09336691349744797, -0.07988769561052322, -0.04019203409552574, 0.016213448718190193,
- 0.013398362323641777, 0.059170711785554886, 0.0945487692952156, -0.07799122482538223,
- -0.036535292863845825, 0.014006132259964943, -0.007084171287715435,
- -0.022130373865365982, 0.055512793362140656, -0.01145519595593214, -0.12372428923845291,
- 0.006613163743168116, 0.09893961250782013, -0.057102497667074203, 0.36350393295288086,
- -0.0015094393165782094, 0.0038353921845555305, -0.0062320842407643795,
- 0.05863367021083832, 0.023302344605326653, 0.04052759334445, 0.056995417922735214,
- -0.04596618190407753, 0.024185162037611008, -0.09042488038539886, 0.034904640167951584,
- 0.09538760036230087, 0.08171071857213974, 0.002788585377857089, 0.02890247292816639,
- -0.015326708555221558, -0.08471813797950745, 0.02364686317741871, -0.024043746292591095,
- 0.08322569727897644, 0.08847260475158691, -0.07730916142463684, 0.03306516259908676,
- 0.052675727754831314, -0.04815578833222389, 0.050768040120601654, -0.07356252521276474,
- -0.01691044121980667, 0.00986463762819767, 0.0783412903547287, -0.03732842206954956,
- 0.0452389232814312, -0.07535959035158157, 0.024600964039564133, 0.02475711889564991,
- 0.08795703202486038, 0.03749900311231613, -0.008712118491530418, 0.034957341849803925,
- 0.047111038118600845, -0.0327470563352108, -0.02493503876030445, -0.03571280092000961,
- -0.07533521950244904, -0.027263915166258812, -0.02557828277349472, 0.09353957325220108,
- -0.054700810462236404, -0.17852850258350372, 0.045347750186920166, 0.07937780767679214,
- -0.03195395693182945, -0.011021594516932964, -0.001149337855167687,
- -0.033836472779512405, 0.07631495594978333, -0.027950890362262726,
- -0.0022680244874209166, 0.08201780915260315, 0.026041598990559578, 0.05360357090830803,
- 0.12182949483394623, 0.03938162699341774, -0.04052162915468216, -0.024459874257445335,
- -0.008417187258601189, 0.01266960334032774, 0.10623209178447723, -0.16899456083774567,
- -0.05829905718564987, 0.02922884002327919, -0.026647068560123444, 0.8325557708740234,
- 0.15518830716609955, 0.17389057576656342, 0.023453237488865852, -0.04452015832066536,
- 0.16715162992477417, 0.006619748659431934, 0.05587537959218025, -0.09784974157810211,
- -0.09671317785978317, 0.027898719534277916, -0.03249622508883476, 0.0006864062743261456,
- 0.02119033969938755, 0.020975623279809952, 0.11293292790651321, 0.01900705136358738,
- 0.11515691876411438, 0.02590751461684704, -0.09451361000537872, -0.038311269134283066,
- 0.06571000069379807, 0.006856223102658987, -0.13083191215991974, -0.03494114428758621,
- 0.07294198870658875, 0.0770282968878746, -0.12080143392086029, -0.014068933203816414,
- -0.07172855734825134, 0.03548901155591011, -0.06076832115650177, -0.007400594186037779,
- -0.03521006181836128, 0.03712194040417671, 0.010159582830965519, 0.09212718158960342,
- 0.01341412402689457, -0.16591776907444, -0.05801486596465111, 0.06878050416707993,
- -0.021489253267645836, -0.05763256177306175, 0.08285250514745712, -0.07737375050783157,
- 0.09056761115789413, 0.04606638848781586, 0.2110181301832199, -0.12271871417760849,
- -0.026113547384738922, -0.03067888505756855, 0.013549975119531155,
- -0.0027754087932407856, 0.023541908711194992, -0.06917140632867813,
- -0.041802071034908295, 0.08057700097560883, 0.018680093809962273, 0.08032868057489395,
- 0.05768728256225586, -0.032596156001091, 0.055541835725307465, -0.024544376879930496,
- -0.013825125992298126, -0.07127323001623154, 0.09733045846223831, 0.06102947145700455,
- -0.04548606649041176, 0.00808642990887165, 0.029478376731276512, 0.12536677718162537,
- 0.043296929448843, -0.019375475123524666, 0.04384295269846916, -0.05993585288524628,
- -0.03540972247719765, 0.03055408038198948, 0.08324187994003296, 0.021651551127433777,
- 0.10659955441951752, 0.034759458154439926, -0.08078593760728836, -0.015987474471330643,
- -0.018270188942551613, -0.0019626272842288017, -0.04540058970451355,
- 0.10596251487731934, 0.05027339980006218, 0.055761173367500305, 0.01160347368568182,
- 0.023895394057035446, 0.12095579504966736, 0.09103762358427048, 0.06553871184587479,
- 0.10932730883359909, -0.04093177989125252, -0.020182842388749123,
- 0.00004532517050392926, -0.028510145843029022, 0.013478795066475868,
- -0.006910417694598436, -0.01563744992017746, -0.03405139595270157, 0.005835668183863163,
- -0.038000281900167465, -0.09283025562763214, -0.08642414212226868,
- -0.005801800638437271, 0.023194413632154465, -0.0887947678565979, -0.09293186664581299,
- -0.07441167533397675, 0.02320839837193489, 0.13883833587169647, 0.00018679344793781638,
- -0.011605539359152317, -0.1292424499988556, -0.0015414535300806165,
- 0.028153717517852783, 0.0727340579032898, 0.017101328819990158, 0.037817347794771194,
- 0.026237206533551216, -0.11619026213884354, 0.039198797196149826, -0.04973652958869934,
- -0.016217032447457314, -0.07482685893774033, -0.027745291590690613,
- -0.06577616930007935, 0.006338354200124741, 0.0019365305779501796, -0.0396651029586792,
- 0.05319402739405632, 0.027093105018138885, 0.03348000347614288, -0.015151326544582844,
- 0.021353254094719887, 0.031967904418706894, -0.061147291213274, -0.021888574585318565,
- 0.11961506307125092, -0.008759107440710068, 0.05932561680674553, -0.04782894253730774,
- -0.10166416317224503, -0.02922184206545353, -0.03261146694421768, -0.08451194316148758,
- 0.05796489119529724, -0.022908944636583328, 0.018952036276459694, -0.05173785239458084,
- -0.03473269194364548, 0.03185879439115524, -0.05835985764861107, -0.08917973935604095,
- -0.10719399899244308, 0.1400548815727234, -0.017572198063135147, -0.02682410553097725,
- -0.008239603601396084, -0.0931646078824997, 0.05758822336792946, 0.015412145294249058,
- 0.013803411275148392, 0.040752701461315155, 0.0028493038844317198, -0.03311712667346001,
- 0.04082343354821205, 0.09173434972763062, -0.008825214579701424, 0.06494569778442383,
- 0.0827455222606659, 0.44413992762565613, -0.1688806563615799, 0.052962712943553925,
- 0.09217070788145065, 0.04347986727952957, 0.07011280208826065, -0.01951269805431366,
- 0.09819579869508743, 0.1145872175693512, 0.12534569203853607, 0.11899911612272263,
- -0.0771099403500557, 0.006391179747879505, -0.09049492329359055, 0.08699863404035568,
- 0.026299061253666878, -0.008950483053922653, -0.05826100707054138, -0.10442040860652924,
- 0.011990335769951344, 0.04412068799138069, -0.031239677220582962, -0.022609218955039978,
- -0.012473844923079014, -0.04655172675848007, -0.0057303118519485, -0.011366660706698895,
- -0.006725962273776531, -0.07119631767272949, 0.02652657777070999, 0.05518343299627304,
- 0.0848647877573967, 0.06562618166208267, 0.03711732104420662, -0.13636642694473267,
- 0.04168180376291275, -0.10086290538311005, -0.07078777253627777, 0.07524105161428452,
- -0.006983252242207527, 0.07117616385221481, 0.0841159075498581, -0.04015415906906128,
- 0.07469332218170166, -0.009607388637959957, -0.02817811630666256, 0.025794077664613724,
- 0.03212772682309151, 0.025341220200061798, 0.07100816816091537, 0.16803471744060516,
- -0.03871634975075722, -0.021111097186803818, -0.05611113831400871, 0.08106422424316406,
- 0.1320015788078308, -0.022392069920897484, -0.04866746440529823, -0.001025551580823958,
- -0.03232201933860779, -0.025396112352609634, -0.0869532972574234, -0.099814273416996,
- 0.01707550697028637, -0.029391389340162277, 0.08974183350801468, 0.044847119599580765,
- -0.055538225919008255, -0.18707406520843506, -0.04673117399215698, -0.06058920919895172,
- 0.02620100975036621, 0.11090923100709915, -0.049511417746543884, 0.03524312004446983,
- 0.020189305767416954, 0.008348089642822742, -0.009425072930753231, -0.11395900696516037,
- 0.04146617650985718, -0.04148507118225098, 0.03623558580875397, 0.05898738279938698,
- 0.06287842243909836, -0.049066733568906784, 0.12456469237804413, -0.11080524325370789,
- 0.04113458842039108, -0.01806189864873886, 0.010294187813997269, -0.020973263308405876,
- 0.012273071333765984, 0.0114758824929595, 0.02228742092847824, 0.011267773807048798,
- -0.04382367432117462, -0.060780033469200134, -0.06396465748548508,
- -0.049539510160684586, -0.07100391387939453, -0.006941534578800201,
- -0.03949525207281113, 0.04535473510622978, -0.11330521106719971, -0.03378813713788986,
- -0.06560473889112473, -0.012239324860274792, -0.006969021633267403,
- 0.010479896329343319, 0.01628984697163105, -0.1515510082244873, -0.018046310171484947,
- 0.0025287081953138113, 0.0580158568918705, -0.0326480008661747, -0.03971009701490402,
- 0.006867268588393927, 0.0681329220533371, 0.04108142480254173, -0.06188001483678818,
- -0.042998477816581726, -0.02289828285574913, 0.042135562747716904, -0.09869054704904556,
- -0.5519512295722961, 0.08879119902849197, 0.021959219127893448, 0.07031609117984772,
- 0.013831720687448978, -0.0772305279970169, 0.021259242668747902, 0.02727997489273548,
- -0.06370773166418076, 0.08794984221458435, -0.025620849803090096, 0.06692402064800262,
- -0.0091023501008749, -0.06813396513462067, -0.03716113418340683, -0.06019696965813637,
- -0.04259490594267845, 0.025117605924606323, -0.0937664806842804, -0.10575167089700699,
- -0.07513407617807388, 0.021115155890583992, -0.029420500621199608, 0.006706617306917906,
- 0.04230084270238876, 0.009367773309350014, -0.12385554611682892, -0.05772371590137482,
- 0.053480979055166245, 0.04124908149242401, 0.00433581555262208, -0.1481749713420868,
- -0.03427189961075783, 0.05256979912519455, -0.029342710971832275, 0.13302859663963318,
- 0.011199195869266987, 0.03453989326953888, -0.07704461365938187, 0.10205560177564621,
- 0.06513521075248718, 0.18651938438415527, -0.023799363523721695, 0.014347202144563198,
- 0.07651691138744354, 0.10479201376438141, 0.05912596732378006, 0.023693319410085678,
- -0.03520789369940758, -0.021878603845834732, -0.0030593774281442165,
- -0.008457408286631107, 0.06055138632655144, -0.05079249292612076, -0.0235216673463583,
- -0.050829868763685226, 0.02580789104104042, -0.032521966844797134, 0.01919819973409176,
- 0.19679005444049835, 0.009742031805217266, 0.041704438626766205, 0.02619929239153862,
- -0.07010698318481445, 0.05421571061015129, -0.031792476773262024, -0.13231490552425385,
- -0.0070978738367557526, 0.0016481078928336501, 0.011777198873460293,
- -0.06299065798521042, -0.1606171727180481, 0.01160301174968481, -0.018755506724119186,
- 0.0030141975730657578, 0.11596270650625229, -0.047206226736307144, 0.08155053108930588,
- -0.021837247535586357, 0.14859600365161896, 0.03644958510994911, 0.027991201728582382,
- 0.06829170137643814, 0.14382758736610413, 0.02774251066148281, 0.017571663483977318,
- -0.05535152554512024, -0.1297142058610916, 0.0011193123646080494, 0.15263672173023224,
- -0.05826282873749733, 0.12726204097270966, 0.03709276393055916, -0.04235554859042168,
- -0.08608680218458176, 0.016767064109444618, -0.016657231375575066, 0.01126737892627716,
- -0.47667911648750305, -0.08401970565319061, 0.1206672415137291, 0.034429874271154404,
- 0.027602730318903923, 0.052671078592538834, -0.024708010256290436,
- -0.036958638578653336, -0.030005916953086853, -0.11888127028942108, 0.22529874742031097,
- -0.008248850703239441, 0.059468768537044525, -0.09958600997924805, 0.0448642298579216,
- 0.09988586604595184, -0.002663693856447935, -0.008724715560674667, 0.05535507947206497,
- -0.22084563970565796, 0.0038334722630679607, 0.010954643599689007, 0.11946664750576019,
- -0.008891786448657513, 0.037709858268499374, 0.053136568516492844, -0.07884214073419571,
- 0.008301843889057636, 0.02188696339726448, -0.011079993098974228, 0.003667602315545082,
- -0.003354421118274331, -0.04599002003669739, 0.09807975590229034, 0.08736377209424973,
- 0.03937743976712227, -0.06204283982515335, 11.906700134277344, 0.08377204835414886,
- 0.06513584405183792, -0.09076356142759323, -0.03361152485013008, -0.009719513356685638,
- 0.017417481169104576, -0.09684794396162033, 0.10946454852819443, 0.14693701267242432,
- -0.012665306217968464, -0.001828678883612156, -0.019005397334694862,
- -0.09860367327928543, 0.02371898852288723, -0.042056892067193985, -0.0475706048309803,
- -0.06676217168569565, 0.021451210603117943, -0.034398071467876434, -0.06450655311346054,
- 0.019285887479782104, 0.05151974782347679, 0.04919392988085747, -0.13449148833751678,
- -0.06633569300174713, 0.015106534585356712, -0.05109209939837456, 0.03873666375875473,
- -0.016903802752494812, 0.020868979394435883, -0.0017661262536421418,
- 0.07851214706897736, -0.005945487413555384, 0.045511577278375626, 0.07098394632339478,
- 0.05397376790642738, 0.0699988380074501, 0.0767587274312973, 0.1244598999619484,
- -0.002417802345007658, 0.047683991491794586, -0.018620343878865242, 0.0767798125743866,
- 0.06242556497454643, 0.07830000668764114, 0.006247431971132755, 0.1537121683359146,
- 0.0525401309132576, 0.14932775497436523, 0.11718381941318512, -0.020137809216976166,
- 0.10406692326068878, 0.0021319121588021517, -0.009999512694776058, 0.10004924982786179,
- 0.05063052847981453, -0.06525896489620209, 0.0658784806728363, 0.07418584078550339,
- -0.07048230618238449, 0.11431209743022919, -0.0307222418487072, 0.12505480647087097,
- 0.018472924828529358, 0.042439430952072144, 0.07163253426551819, 0.10025925934314728,
- -0.16117297112941742, -0.10910730808973312, -0.01903757080435753, -0.14619334042072296,
- -0.10332328826189041, 0.0877782553434372, 0.11108481884002686, -0.03270596265792847,
- -0.009567758068442345, -0.010193916969001293, 0.04058166965842247, -0.05128980427980423,
- 0.01704031601548195, 0.06939820945262909, 0.019588971510529518, 0.007319556083530188,
- 0.1117996796965599, 0.02578323520720005, 0.058024339377880096, 0.11298144608736038,
- -0.011999831534922123, -0.09418783336877823, -0.09566293656826019, 0.133120596408844,
- 0.005565122701227665, -0.052556026726961136, -0.006877085659652948,
- -0.045546483248472214, 0.007044758647680283, -0.15874618291854858, 0.07940179854631424,
- 0.1311267763376236, -0.0800878256559372, -0.05984075367450714, -0.040660303086042404,
- 0.09906250983476639, 0.010355294682085514, 0.0753137618303299, -0.027522027492523193,
- 0.009469391778111458, 0.029799217358231544, 0.04671896621584892, -0.04961881414055824,
- 0.09787106513977051, 0.07126724720001221, -0.021490825340151787, -0.02518966607749462,
- 0.0840892642736435, -0.02319101244211197, -0.022603323683142662, 0.06369555741548538,
- 0.02282746694982052, -0.06652086973190308, -0.04319993779063225, -0.008035752922296524,
- -0.08511020988225937, -0.009709320962429047, -0.03983457013964653,
- -0.008535095490515232, 0.017131565138697624, -0.0708451122045517, -0.02022434026002884,
- 0.08143892884254456, 0.03082907758653164, 0.10485497117042542, -0.03445739299058914,
- 0.04052598401904106, -0.06355336308479309, -0.06032690778374672, 0.052901167422533035,
- 0.08962338417768478, 0.08888589590787888, -0.04670530930161476, -0.019655685871839523,
- -0.0948907807469368, -0.05866217613220215, 0.010176206938922405, 0.1196213886141777,
- 0.09322571009397507, 0.02330341748893261, 0.035378195345401764, -0.09063829481601715,
- -0.01987891085445881, 0.0957183688879013, 0.04729677736759186, -0.03565971553325653,
- 0.043441832065582275, -0.0694955587387085, -0.048431236296892166, 0.12569740414619446,
- -0.06145232915878296, 0.03857894241809845, 0.07605930417776108, -0.05881352350115776,
- 0.12141245603561401, 0.15371228754520416, -0.006738427095115185, 0.017223063856363297,
- 0.022384800016880035, 0.02680167928338051, 0.02972300350666046, -0.047612980008125305,
- 0.01855579949915409, -0.05218314379453659, -0.05232115089893341, -0.05998876690864563,
- 0.027301644906401634, 0.09397470206022263, -0.011055493727326393, -0.1433609277009964,
- -0.03048045001924038, -0.026917601004242897
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 214,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Todd Feathers"],
- "epoch_date_downloaded": 1606780800,
- "epoch_date_modified": 1654560000,
- "epoch_date_submitted": 1653868800,
- "flag": null,
- "report_number": 1722,
- "source_domain": "vice.com",
- "submitters": ["Nickie Demakos"],
- "title": "Facial Recognition Company Lied to School District About its Racist Tech",
- "url": "https://www.vice.com/en/article/qjpkmx/fac-recognition-company-lied-to-school-district-about-its-racist-tech"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "facebook",
- "name": "Facebook"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "facebook",
- "name": "Facebook"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "facebook-content-moderators",
- "name": "Facebook content moderators"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1723],
- "vector": [
- -0.08994664996862411, 0.10766695439815521, 0.034070998430252075, -0.11168764531612396,
- 0.07177513092756271, -0.13662070035934448, 0.012791131623089314, 0.056523945182561874,
- 0.053156692534685135, -0.14626607298851013, -0.004663890227675438,
- 0.0056812274269759655, 0.015970706939697266, -0.15505467355251312,
- 0.0028146784752607346, -0.11640404909849167, -0.1280251145362854, -0.06148175150156021,
- -0.022753270342946053, -0.10661956667900085, -0.0775599256157875, 0.03788243234157562,
- 0.023292301222682, 0.11551803350448608, -0.04390699043869972, 0.057604074478149414,
- 0.11964023858308792, 0.12329135835170746, -0.03718692436814308, 0.11870163679122925,
- 0.015579485334455967, -0.1050553098320961, 0.1322249174118042, 0.05793507397174835,
- 0.035065099596977234, 0.07162807136774063, -0.03786511346697807, -0.01709357090294361,
- 0.04327544942498207, -0.027266662567853928, 0.081283800303936, 0.2645059823989868,
- -0.04572230577468872, -0.05675021559000015, 0.02011962980031967, -0.002461271360516548,
- 0.024096958339214325, 0.07095203548669815, 0.03479200229048729, 0.024875394999980927,
- 0.005698128137737513, 0.06610462069511414, -0.06626494973897934, 0.045598242431879044,
- -0.1066572368144989, 0.06595639884471893, 0.06347392499446869, -0.04920075833797455,
- 0.057492855936288834, -0.1057497039437294, -0.0024164128117263317, -0.2048008143901825,
- -0.05344061553478241, -0.028551392257213593, 0.10146953910589218, -0.08930782973766327,
- -0.03295047581195831, 0.012533612549304962, 0.03608828783035278, 0.09989640861749649,
- 0.0091418931260705, -0.022826872766017914, -0.029000917449593544, 0.04611480236053467,
- 0.04185791686177254, -0.043348126113414764, -0.020947203040122986, 0.22008691728115082,
- -0.07180169224739075, 0.03149102255702019, 0.09083696454763412, -0.1090453490614891,
- 0.41822949051856995, 0.011614768765866756, 0.008586460724473, 0.04063054546713829,
- 0.11582618951797485, 0.05685625970363617, 0.02791074849665165, -0.01767670549452305,
- -0.016268344596028328, 0.12544606626033783, -0.048296716064214706,
- -0.055764034390449524, 0.04595787078142166, 0.02568468451499939, -0.004219974856823683,
- 0.10443292558193207, -0.010230147279798985, -0.06079922243952751, 0.035616930574178696,
- -0.050222717225551605, 0.09506554156541824, 0.07583037763834, -0.005325860343873501,
- 0.0017394188325852156, 0.09114241600036621, -0.10501620173454285, 0.0684320405125618,
- -0.10660148411989212, 0.09209345281124115, -0.010969634167850018, 0.04694341868162155,
- -0.0068842945620417595, 0.04395028576254845, 0.013706863857805729, 0.06454293429851532,
- 0.08264709264039993, 0.09263096004724503, 0.05705846846103668, -0.013765815645456314,
- 0.09541547298431396, 0.09974213689565659, -0.09007664024829865, -0.06165817752480507,
- 0.010659671388566494, -0.13017335534095764, -0.034528087824583054, -0.04254165291786194,
- 0.053613435477018356, -0.05835137888789177, -0.12894698977470398, -0.035654060542583466,
- 0.07785223424434662, -0.07266653329133987, -0.04804793745279312, -0.013979138806462288,
- -0.036806751042604446, 0.05893142148852348, -0.09177399426698685, 0.007910527288913727,
- 0.0618022195994854, 0.05567688122391701, -0.007674310356378555, 0.1537887006998062,
- 0.06748630106449127, -0.021227115765213966, -0.028565237298607826,
- -0.010857673361897469, -0.010124281980097294, 0.10978823155164719, -0.1263349950313568,
- 0.024767940863966942, -0.06588075309991837, -0.062184449285268784, 0.7578722238540649,
- 0.1759764403104782, 0.22139325737953186, 0.024116678163409233, -0.09473882615566254,
- 0.2391251027584076, -0.012740880250930786, 0.14022545516490936, -0.06349137425422668,
- -0.060421183705329895, 0.010344250127673149, -0.10237188637256622, -0.0310109443962574,
- 0.006778934504836798, 0.018698465079069138, 0.11383961886167526, 0.054455675184726715,
- 0.10734328627586365, 0.020943010225892067, -0.09464721381664276, -0.07634716480970383,
- 0.10605967789888382, -0.05427432432770729, -0.09598346799612045, -0.01138942688703537,
- 0.021121233701705933, 0.06024779751896858, -0.05076143518090248, 0.045943062752485275,
- -0.0940592959523201, 0.03331407904624939, -0.05573674291372299, 0.03867242857813835,
- -0.00005711388075724244, 0.09560859203338623, 0.006999296136200428, 0.05479634180665016,
- 0.015144266188144684, -0.06438305228948593, -0.047204744070768356, 0.1428336501121521,
- -0.03111269883811474, -0.03348923847079277, 0.16515053808689117, -0.08586304634809494,
- -0.02460162714123726, 0.04743683338165283, 0.2578091621398926, -0.13728055357933044,
- -0.06095650792121887, -0.055698905140161514, -0.05350174754858017,
- 0.0001573929184814915, 0.004915223922580481, -0.0032135494984686375,
- -0.04525056853890419, 0.07023341953754425, 0.025716060772538185, 0.12688440084457397,
- 0.0830077975988388, -0.02375143952667713, 0.06597261130809784, -0.0554397776722908,
- 0.016812577843666077, -0.10603443533182144, 0.05224471911787987, 0.03295796364545822,
- -0.02555263414978981, -0.06794565171003342, 0.01619759388267994, 0.15548305213451385,
- -0.010924792848527431, 0.028109155595302582, 0.06768403202295303, 0.02621009759604931,
- -0.08427141606807709, 0.06878779828548431, 0.03930826485157013, -0.011449813842773438,
- 0.11065075546503067, -0.008710138499736786, -0.04295213893055916, -0.06289567053318024,
- -0.04798964783549309, 0.09149281680583954, 0.0010234364308416843, 0.0739169642329216,
- 0.07679896056652069, 0.079175665974617, 0.014457407407462597, 0.07663101702928543,
- 0.04091453552246094, 0.014830286614596844, -0.04259413853287697, 0.12300371378660202,
- -0.04154621809720993, -0.08483541011810303, -0.016013920307159424, 0.009786893613636494,
- -0.0160535778850317, -0.040847763419151306, -0.11973601579666138, -0.04584360495209694,
- -0.061931367963552475, -0.116112120449543, -0.14954040944576263, 0.01261818502098322,
- 0.0027468621265143156, 0.0287740770727396, -0.04462835565209389, -0.014661341905593872,
- -0.0868908241391182, 0.018386458978056908, 0.06803716719150543, 0.021943947300314903,
- -0.01004746649414301, -0.10911604017019272, 0.045446209609508514, -0.052381183952093124,
- 0.03790659457445145, -0.016061075031757355, 0.029161088168621063, 0.030552376061677933,
- -0.09946141391992569, 0.046787064522504807, 0.036322418600320816, -0.1321866661310196,
- -0.04725673794746399, -0.11721832305192947, -0.021344764158129692, -0.05863570049405098,
- -0.03819975629448891, -0.05285762995481491, 0.02568061463534832, 0.06572344154119492,
- 0.03569434955716133, -0.019545653834939003, -0.03815179318189621, 0.015190966427326202,
- -0.027678120881319046, 0.034684982150793076, 0.10762284696102142, -0.052530158311128616,
- 0.0042426870204508305, -0.011663597077131271, -0.04165133833885193,
- -0.011775856837630272, 0.0068142348900437355, -0.05192866176366806,
- 0.013339812867343426, 0.0005419161170721054, 0.02399827539920807, -0.03987766057252884,
- -0.02049555629491806, 0.07838093489408493, -0.046181026846170425, -0.11146966367959976,
- -0.05218823254108429, 0.1915089339017868, 0.023258935660123825, 0.016439663246273994,
- 0.048667583614587784, -0.07657042890787125, 0.020324889570474625, -0.03822010010480881,
- 0.017409078776836395, 0.04020898416638374, 0.07566338777542114, -0.07670172303915024,
- 0.05023595690727234, 0.06335795670747757, -0.0015717719215899706, -0.017425039783120155,
- 0.07321597635746002, 0.4310751259326935, -0.14197446405887604, 0.05952738597989082,
- 0.09182664752006531, -0.051671352237463, 0.017718523740768433, -0.06751758605241776,
- 0.08455371856689453, 0.0632326751947403, 0.07161705940961838, 0.14572694897651672,
- -0.06221309304237366, 0.05653974786400795, -0.06808856874704361, 0.12676014006137848,
- -0.001426944974809885, 0.06793688982725143, -0.058713894337415695, -0.09921719133853912,
- -0.04470411688089371, 0.022850176319479942, -0.04660020023584366, -0.029342230409383774,
- -0.08361990004777908, -0.11332202702760696, -0.04596975818276405, 0.03869778662919998,
- 0.025250008329749107, -0.027613628655672073, 0.059124283492565155, -0.14838016033172607,
- -0.002379292156547308, -0.010498417541384697, 0.05206518620252609, -0.15554265677928925,
- 0.013287129811942577, -0.06530734151601791, -0.13910751044750214, 0.06998712569475174,
- -0.0042200093157589436, 0.07825058698654175, 0.08141183853149414, -0.056502074003219604,
- 0.020449824631214142, -0.011549662798643112, -0.060317207127809525, 0.06946644186973572,
- 0.05690857768058777, 0.03480350226163864, 0.12736058235168457, 0.15702785551548004,
- -0.058321818709373474, -0.024211451411247253, -0.11043833941221237,
- 0.016428416594862938, 0.14281713962554932, 0.034118104726076126, 0.007919604890048504,
- 0.10201673209667206, 0.036407701671123505, 0.0058721997775137424, -0.10224650800228119,
- -0.01180606335401535, 0.004841468296945095, -0.04616573080420494, 0.079936183989048,
- 0.026692591607570648, -0.06941790878772736, -0.16059140861034393, 0.0257573239505291,
- -0.024378789588809013, 0.02428365871310234, 0.13338065147399902, -0.10665302723646164,
- 0.006145881023257971, 0.028987880796194077, -0.05117915943264961, 0.07864585518836975,
- -0.042298804968595505, -0.002980408724397421, -0.08156411349773407,
- 0.021409690380096436, 0.047016069293022156, 0.043732792139053345, -0.07989533245563507,
- 0.16019324958324432, -0.1276014894247055, 0.055532969534397125, -0.0485406331717968,
- -0.07912507653236389, -0.03883526101708412, -0.10291654616594315, 0.016367163509130478,
- 0.031069427728652954, -0.028597451746463776, 0.046404603868722916, 0.004699999000877142,
- -0.024421051144599915, -0.04371273145079613, -0.05566064640879631, -0.04399449750781059,
- -0.10256047546863556, 0.08335158228874207, -0.17256559431552887, 0.028177183121442795,
- -0.06673912703990936, -0.046333737671375275, -0.020009072497487068, 0.06175549700856209,
- -0.024544786661863327, -0.19337959587574005, -0.04089588299393654, -0.01602891832590103,
- 0.03751815855503082, -0.12345395237207413, -0.06690014898777008, -0.04596329107880592,
- 0.08341898024082184, 0.04767290875315666, 0.009113708510994911, 0.10100585222244263,
- -0.08912014961242676, 0.08601241558790207, -0.06140673905611038, -0.36795079708099365,
- 0.05298665538430214, 0.017556656152009964, 0.025342144072055817, -0.011033586226403713,
- -0.04119226336479187, 0.10146088153123856, -0.0005390503793023527, -0.05735360458493233,
- 0.11480855196714401, -0.08669445663690567, 0.04747465252876282, -0.023454776033759117,
- -0.07021907716989517, -0.05710158869624138, -0.12031859904527664, -0.0826076865196228,
- 0.045301105827093124, -0.03886684775352478, -0.12337824702262878, -0.13929978013038635,
- 0.038971275091171265, -0.02778671123087406, 0.04348085820674896, 0.020057817921042442,
- 0.05203225836157799, -0.07935686409473419, -0.008482325822114944,
- -0.0026198741979897022, 0.042316485196352005, 0.0704893097281456, -0.07525026798248291,
- 0.02650918997824192, 0.02648692950606346, 0.030616430565714836, 0.1636633425951004,
- -0.028168167918920517, 0.07788491249084473, -0.059440698474645615, 0.0841129943728447,
- 0.04881773516535759, 0.176509827375412, -0.032274000346660614, 0.05423211678862572,
- 0.026902340352535248, 0.1602616012096405, 0.09213253855705261, -0.0017198267159983516,
- -0.018454579636454582, 0.02760072983801365, 0.004528637509793043, -0.04402521997690201,
- 0.0850352868437767, -0.08775372058153152, 0.0630669817328453, -0.07923953980207443,
- -0.014923887327313423, 0.009680530056357384, -0.06903202086687088, 0.169851616024971,
- -0.002166921738535166, 0.04431707412004471, 0.023626314476132393, -0.08812740445137024,
- -0.014408772811293602, -0.15392275154590607, -0.08370092511177063, -0.07264066487550735,
- 0.03188779205083847, 0.03197631612420082, -0.03754448890686035, -0.12558604776859283,
- 0.003672354854643345, -0.056308381259441376, 0.018788335844874382, 0.11289196461439133,
- -0.06575313210487366, 0.06422103941440582, -0.037097763270139694, 0.16144882142543793,
- 0.057047829031944275, 0.01577635481953621, 0.04738412797451019, 0.07789534330368042,
- 0.019639313220977783, 0.023691250011324883, -0.01725410483777523, -0.14381299912929535,
- 0.036348070949316025, 0.15395979583263397, -0.030774839222431183, 0.1777270883321762,
- 0.03513072803616524, -0.043479327112436295, -0.035847995430231094, -0.02699839510023594,
- -0.019093522801995277, 0.012990501709282398, -0.4098813235759735, -0.005705933086574078,
- 0.10962142050266266, -0.03241791948676109, 0.027872297912836075, 0.14495591819286346,
- 0.037794630974531174, -0.07370886951684952, -0.055760327726602554, -0.13076873123645782,
- 0.19008003175258636, -0.0033257154282182455, 0.012898254208266735, -0.12042903900146484,
- 0.0035036648623645306, 0.13286565244197845, -0.04578298702836037, -0.04700254648923874,
- 0.012989489361643791, -0.22981195151805878, -0.0291267242282629, -0.04990949109196663,
- 0.11851464211940765, 0.06674131006002426, 0.037429068237543106, 0.14019706845283508,
- -0.04929744452238083, 0.03936157375574112, 0.07379043102264404, -0.009692301042377949,
- 0.058114442974328995, 0.05453614145517349, -0.01699742116034031, 0.1660756915807724,
- 0.10582637041807175, 0.06367319822311401, -0.06354822963476181, 12.539406776428223,
- 0.08674871176481247, 0.06158892437815666, -0.11686430126428604, 0.05143558606505394,
- -0.055175140500068665, 0.010340262204408646, -0.1750786006450653, -0.04121594503521919,
- 0.060880132019519806, -0.010166948661208153, -0.07445137202739716,
- -0.00007278743578353897, -0.11376678198575974, 0.025168951600790024,
- -0.0329497754573822, -0.03883223608136177, -0.0011699842289090157, 0.005747263785451651,
- -0.0690111592411995, -0.04440489411354065, 0.013704214245080948, 0.09961073100566864,
- -0.003825870808213949, -0.021252384409308434, 0.07611411064863205, 0.010948166251182556,
- -0.042125530540943146, 0.07696928083896637, 0.02359824813902378, 0.019643107429146767,
- 0.0720679834485054, 0.013584813103079796, -0.047043703496456146, 0.06218424439430237,
- 0.04485594108700752, 0.06828459352254868, 0.03272959589958191, 0.040339283645153046,
- 0.11441025882959366, -0.086570143699646, -0.02629421092569828, 0.03450939804315567,
- 0.08376608788967133, 0.08454249799251556, 0.044128820300102234, -0.006913496647030115,
- 0.1631348580121994, -0.02360868640244007, 0.059872597455978394, 0.12100517004728317,
- -0.0037983497604727745, 0.14575637876987457, 0.043940555304288864, 0.012148307636380196,
- 0.12001118063926697, -0.03154424577951431, -0.14245587587356567, 0.0997999832034111,
- 0.10028490424156189, -0.06280310451984406, 0.10142114013433456, -0.018692169338464737,
- 0.15484601259231567, 0.002539028413593769, 0.07957912981510162, 0.1334201991558075,
- 0.11744136363267899, -0.1958947479724884, -0.061343979090452194, 0.03633749857544899,
- -0.06444330513477325, -0.129963219165802, 0.07196293771266937, 0.13374251127243042,
- -0.033445123583078384, -0.007293299771845341, -0.0037628118880093098,
- 0.03458989039063454, -0.0548810251057148, -0.03478009253740311, 0.022555075585842133,
- -0.04598411172628403, 0.01275282260030508, 0.0438937246799469, 0.06429757922887802,
- 0.08284486830234528, 0.13688500225543976, 0.015815114602446556, -0.09110525250434875,
- -0.11909466981887817, -0.001535511459223926, -0.03932110592722893,
- -0.009625344537198544, -0.018053269013762474, -0.14004825055599213, 0.0905616357922554,
- -0.21242986619472504, 0.044703736901283264, 0.13398203253746033, -0.16932664811611176,
- -0.03307781368494034, -0.031930454075336456, 0.14068511128425598, -0.0332627147436142,
- 0.05526593327522278, -0.11282745748758316, 0.06778986752033234, -0.051018089056015015,
- 0.03611251711845398, -0.09986500442028046, 0.08739437907934189, 0.03041374869644642,
- -0.05147026851773262, -0.009039533324539661, 0.06915848702192307, -0.012016541324555874,
- -0.027599282562732697, 0.06676431745290756, 0.009907552041113377, -0.1279395967721939,
- -0.007263718638569117, -0.0487573966383934, -0.11363989114761353, -0.019861824810504913,
- -0.051072098314762115, -0.02577207051217556, -0.020549248903989792,
- -0.04676297679543495, 0.012844815850257874, 0.0167358610779047, 0.0933903157711029,
- 0.14922788739204407, -0.019602129235863686, 0.05237447842955589, -0.08039137721061707,
- -0.0603586807847023, 0.09584067016839981, 0.006969543173909187, 0.0458582378923893,
- 0.0018627208191901445, 0.005780742038041353, -0.08150698989629745, -0.10572659224271774,
- 0.038944002240896225, 0.09156878292560577, 0.08481263369321823, 0.01345237996429205,
- -0.05231859162449837, -0.021391471847891808, -0.041152745485305786, 0.0340115949511528,
- 0.07504579424858093, 0.0346330851316452, 0.05165698379278183, -0.04111074283719063,
- -0.09603799879550934, 0.07065323740243912, -0.021169694140553474, -0.039208970963954926,
- 0.02947840839624405, -0.04150785505771637, 0.0897241160273552, 0.09984957426786423,
- 0.07520496845245361, 0.047195300459861755, 0.045558035373687744, 0.041457921266555786,
- 0.015916625037789345, 0.000001318810973316431, -0.06850218027830124,
- -0.004719789605587721, 0.03101685456931591, 0.0021620464976876974, 0.09989672899246216,
- 0.09395293891429901, 0.038691114634275436, -0.09465457499027252, -0.03021201491355896,
- -0.039277102798223495
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 215,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["David Babbs"],
- "epoch_date_downloaded": 1607212800,
- "epoch_date_modified": 1654560000,
- "epoch_date_submitted": 1653868800,
- "flag": null,
- "report_number": 1723,
- "source_domain": "foxglove.org.uk",
- "submitters": ["Ingrid Dickinson (CSET)"],
- "title": "Open letter from content moderators re: pandemic",
- "url": "https://www.foxglove.org.uk/2020/11/18/open-letter-from-content-moderators-re-pandemic/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "wechat",
- "name": "WeChat"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "wechat",
- "name": "WeChat"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "black-wechat-users",
- "name": "Black WeChat users"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1927, 1926, 1925, 1924, 1724],
- "vector": [
- -0.06911565363407135, 0.04808103293180466, 0.01586865819990635, -0.09508063644170761,
- 0.09448760002851486, -0.04719050973653793, 0.021392913535237312, 0.05183938145637512,
- 0.0736774355173111, -0.13662908971309662, -0.02424566261470318, 0.05430375412106514,
- 0.01390981674194336, -0.06592877954244614, -0.010243760421872139, -0.08473154157400131,
- -0.09729458391666412, -0.03390457481145859, -0.01500729937106371, -0.13151228427886963,
- -0.0703602135181427, -0.0018604580545797944, 0.035412393510341644, 0.10223601758480072,
- -0.05830595642328262, 0.03887258097529411, 0.12357552349567413, 0.11157308518886566,
- -0.08504999428987503, 0.06114090234041214, -0.0042038569226861, -0.04036996141076088,
- 0.13283810019493103, -0.00234290212392807, 0.01686510071158409, 0.08062738180160522,
- 0.03910057246685028, -0.01468615047633648, -0.03033457137644291, 0.004185791593044996,
- 0.011834563687443733, 0.2254619151353836, -0.01229940913617611, -0.03973697870969772,
- 0.06850339472293854, -0.0481698252260685, 0.003247490618377924, 0.07028878480195999,
- 0.04023968428373337, -0.023534614592790604, 0.003226678818464279, 0.012399759143590927,
- -0.023535599932074547, 0.026274945586919785, -0.1164683848619461, 0.07695366442203522,
- 0.024226471781730652, -0.01460342574864626, 0.04758134111762047, -0.08279122412204742,
- 0.001045073731802404, -0.20811423659324646, -0.06306936591863632, -0.07752218097448349,
- 0.09177986532449722, -0.08719314634799957, -0.043758511543273926, 0.04500298202037811,
- 0.03922993317246437, 0.040683306753635406, 0.06212311238050461, -0.04197191074490547,
- -0.017155800014734268, -0.04669814184308052, -0.020098745822906494,
- -0.04044290632009506, -0.020482486113905907, 0.16011595726013184, -0.08091916888952255,
- -0.0005815820768475533, 0.12424703687429428, -0.12492088973522186, 0.4281706213951111,
- 0.016086600720882416, -0.017552999779582024, 0.08762539178133011, 0.10404527187347412,
- 0.020997170358896255, 0.06699178367853165, 0.03076198324561119, 0.0010876149171963334,
- 0.056513674557209015, -0.046348631381988525, 0.022590655833482742, 0.05529823899269104,
- 0.009148792363703251, -0.020340513437986374, 0.04288994520902634, -0.017172107473015785,
- -0.09112691879272461, 0.024095213040709496, -0.021802309900522232, 0.14372050762176514,
- 0.06725575029850006, -0.006522116716951132, 0.007112280931323767, 0.07668673992156982,
- -0.08155520260334015, 0.021500781178474426, -0.061066173017024994, 0.0159440990537405,
- 0.0016374016413465142, 0.11632134765386581, 0.010932557284832, 0.0639650970697403,
- -0.048628948628902435, 0.011207044124603271, 0.06089518219232559, 0.08990581333637238,
- 0.028889257460832596, -0.002712804125621915, 0.07436974346637726, 0.08580213040113449,
- -0.014703584834933281, -0.011633893474936485, -0.008366448804736137,
- -0.026154184713959694, -0.0026835438329726458, -0.031112855300307274,
- 0.03702591732144356, -0.08602745085954666, -0.21306148171424866, -0.003214410971850157,
- 0.03884949907660484, -0.01822906732559204, -0.021848898380994797, -0.00935809500515461,
- -0.0889783501625061, 0.04519345611333847, -0.04206864535808563, -0.033229976892471313,
- 0.08589185774326324, -0.021256189793348312, 0.058908116072416306, 0.05968586355447769,
- 0.04788120836019516, -0.02818163111805916, -0.0595785453915596, -0.031963519752025604,
- -0.0032611421775072813, 0.11251185089349747, -0.11604879796504974,
- -0.029291700571775436, 0.005060148891061544, 0.0096725570037961, 0.674181342124939,
- 0.12157579511404037, 0.1805642545223236, 0.0026733041740953922, 0.0026847864501178265,
- 0.18772956728935242, 0.006759214214980602, 0.09104345738887787, -0.05989062786102295,
- -0.05922048166394234, 0.00828741304576397, -0.06994550675153732, -0.04163926839828491,
- 0.011484493501484394, 0.03655169531702995, 0.10829240083694458, 0.03592870384454727,
- 0.11419679969549179, 0.002064518863335252, -0.11520569026470184, 0.006842704024165869,
- 0.07773914188146591, 0.004884629510343075, -0.1500793993473053, -0.05097268894314766,
- 0.029240628704428673, 0.07589767128229141, -0.059084732085466385, 0.03256384655833244,
- -0.05854972079396248, 0.09586797654628754, -0.035093169659376144, 0.04734606295824051,
- -0.021456748247146606, 0.049449145793914795, 0.02433096244931221, 0.045283373445272446,
- -0.006309390068054199, -0.11661870777606964, -0.025899752974510193, 0.0901331901550293,
- -0.01611739955842495, -0.03686036914587021, 0.07349095493555069, -0.08455480635166168,
- 0.05333979055285454, 0.029075389727950096, 0.14194628596305847, -0.11977989971637726,
- 0.011526240035891533, -0.0075616128742694855, -0.014349812641739845,
- 0.05205085873603821, -0.0176527202129364, -0.07823832333087921, -0.09049764275550842,
- 0.11313539743423462, 0.009089207276701927, 0.05728898197412491, 0.027500784024596214,
- -0.017118345946073532, 0.035187602043151855, 0.0180978886783123, 0.032186973839998245,
- -0.05588993430137634, 0.04819146543741226, 0.06334234774112701, -0.046402402222156525,
- -0.07972447574138641, 0.023300398141145706, 0.08563274145126343, 0.02029457502067089,
- -0.001757842837832868, 0.04207238182425499, 0.0003421286237426102, -0.05161457136273384,
- 0.05189461633563042, 0.009533809497952461, 0.02834194526076317, 0.1180969700217247,
- -0.06499151885509491, -0.04174262657761574, -0.035861607640981674,
- 0.0006050618248991668, 0.0015260791406035423, -0.05521639436483383, 0.07845646142959595,
- 0.10262322425842285, 0.04592060297727585, 0.00346033344976604, 0.01816222444176674,
- 0.07760001718997955, 0.06888151168823242, 0.0019355937838554382, 0.09300626814365387,
- -0.028955534100532532, -0.06017402559518814, -0.02383636310696602,
- -0.010818125680088997, 0.08380497992038727, 0.031762659549713135, -0.06312260776758194,
- -0.027322212234139442, -0.0012893987586721778, -0.036658138036727905,
- -0.0821828842163086, 0.03113715350627899, 0.02411649003624916, 0.0351283960044384,
- -0.07257930934429169, -0.10509059578180313, -0.09344394505023956,
- -0.0018735710764303803, 0.07445362210273743, -0.022132599726319313,
- 0.011866018176078796, -0.10759423673152924, 0.009230444207787514, -0.0499410443007946,
- 0.07895966619253159, -0.00725215207785368, 0.06216919422149658, -0.018636588007211685,
- -0.06750882416963577, 0.018587980419397354, 0.015529312193393707, -0.02369944006204605,
- -0.007361954543739557, -0.062469035387039185, -0.02603886090219021,
- 0.006751413457095623, -0.0017897274810820818, -0.027143653482198715,
- 0.05603814870119095, 0.06577225029468536, 0.05509603023529053, -0.02012230083346367,
- 0.009263555519282818, 0.06417769193649292, -0.04155229777097702, 0.013812601566314697,
- 0.0923449844121933, -0.033065102994441986, 0.0017692428082227707, -0.03353547677397728,
- -0.09916697442531586, -0.047528184950351715, -0.022220514714717865,
- -0.05562375858426094, 0.07358353585004807, -0.03257144242525101, -0.03118434175848961,
- -0.03746615722775459, -0.03253522142767906, 0.06814638525247574, -0.04309055581688881,
- -0.0593029148876667, -0.06990991532802582, 0.14599528908729553, -0.0325203575193882,
- 0.010435879230499268, 0.020588602870702744, -0.07584282755851746, 0.05952347069978714,
- -0.007604648359119892, -0.020762238651514053, 0.06656734645366669, 0.07702918350696564,
- -0.034500665962696075, 0.03429655358195305, 0.07845400273799896, -0.050870150327682495,
- -0.01038624532520771, 0.07552189379930496, 0.4416046738624573, -0.19437524676322937,
- 0.07098611444234848, 0.09276018291711807, -0.01151500828564167, 0.08254025876522064,
- -0.0203036330640316, 0.07048210501670837, 0.03897736221551895, 0.08127941936254501,
- 0.12076939642429352, -0.054398275911808014, -0.002552557736635208, -0.05967201665043831,
- 0.08704917877912521, 0.011456315405666828, 0.0415051095187664, -0.022910581901669502,
- -0.05488322302699089, -0.03269225358963013, 0.017953425645828247, -0.05594079568982124,
- 0.002980475779622793, -0.05452018231153488, -0.09316228330135345, 0.026757333427667618,
- 0.034364186227321625, 0.06278203427791595, -0.03188980370759964, 0.037264518439769745,
- -0.024256393313407898, 0.006452398840337992, -0.0017120487755164504,
- 0.021302709355950356, -0.08842778950929642, 0.038823507726192474, -0.06828545033931732,
- -0.07926653325557709, 0.056057654321193695, 0.005172547418624163, 0.043925691395998,
- 0.08316125720739365, 0.010630087926983833, 0.06586717814207077, -0.042964957654476166,
- -0.08059284836053848, -0.004913797602057457, 0.025555070489645004, 0.02997083030641079,
- 0.11098086833953857, 0.1774035096168518, -0.031853415071964264, -0.04791581630706787,
- -0.09572438150644302, 0.05587399750947952, 0.1022510752081871, -0.0197518952190876,
- 0.035563915967941284, -0.019379951059818268, 0.022734450176358223, 0.000938291079364717,
- -0.034594036638736725, -0.10589765012264252, -0.03989967703819275,
- -0.054345257580280304, 0.08361463248729706, 0.02448148839175701, -0.04040315002202988,
- -0.1604204922914505, -0.040847908705472946, -0.04302798956632614, 0.043900877237319946,
- 0.1333680897951126, -0.059916507452726364, -0.002377233002334833, 0.003949846141040325,
- 0.02926771342754364, -0.046151451766490936, -0.10338723659515381, -0.025314530357718468,
- -0.05624070018529892, 0.05915486067533493, 0.07225470244884491, 0.04909257963299751,
- -0.0749703198671341, 0.06180042773485184, -0.11265106499195099, 0.06844811141490936,
- 0.023250969126820564, -0.02949112094938755, 0.04258467257022858, -0.02111549861729145,
- 0.05640242248773575, 0.008238190785050392, -0.06611926853656769, 0.011535974219441414,
- -0.04469241946935654, -0.0416189543902874, -0.10391946882009506, -0.09242753684520721,
- -0.06013350561261177, -0.10884413868188858, 0.04426413029432297, -0.09665457159280777,
- -0.0071825250051915646, -0.029629414901137352, 0.032781802117824554,
- -0.020521728321909904, 0.06951727718114853, 0.0073656318709254265, -0.12739749252796173,
- -0.0031020266469568014, -0.019682468846440315, 0.05451763793826103,
- -0.09056226909160614, -0.0784892588853836, 0.022082526236772537, 0.058857936412096024,
- 0.02443697117269039, -0.003220515325665474, 0.03595579415559769, -0.03444046527147293,
- 0.06230831891298294, -0.11041047424077988, -0.5299772620201111, 0.034202318638563156,
- 0.017783578485250473, 0.025620531290769577, 0.015055626630783081, -0.0566474013030529,
- 0.07610337436199188, -0.0028715699445456266, -0.04307807236909866, 0.07109548151493073,
- -0.057177625596523285, 0.04235968738794327, -0.012122588232159615, -0.04488876089453697,
- 0.008977731689810753, -0.09960862994194031, -0.034129548817873, 0.05314602702856064,
- -0.01474410854279995, -0.09393947571516037, -0.10282601416110992, 0.023046942427754402,
- 0.00007218118116725236, 0.02790878340601921, 0.0023573008365929127,
- 0.0024930208455771208, -0.07745788991451263, -0.06568896770477295, 0.04253212735056877,
- 0.037642549723386765, 0.011893647722899914, -0.07303453981876373, -0.007595251314342022,
- 0.09195876866579056, -0.012345056049525738, 0.13006377220153809, 0.005485582165420055,
- 0.00016475487791467458, -0.12239841371774673, 0.04026676341891289, 0.07591693103313446,
- 0.18534499406814575, -0.06025724858045578, 0.055498797446489334, -0.0004022713692393154,
- 0.12803423404693604, 0.047687701880931854, 0.03428236395120621, -0.04541169852018356,
- 0.004823340568691492, -0.003687932388857007, -0.015900295227766037, 0.05070912837982178,
- -0.09026703238487244, 0.007206476293504238, -0.011047257110476494,
- -0.023034965619444847, -0.04853994771838188, -0.014613136649131775, 0.18563027679920197,
- 0.04053463414311409, 0.024838024750351906, -0.0038505126722157, -0.06497420370578766,
- 0.0015775241190567613, -0.04541172832250595, -0.0522448793053627, -0.020491790026426315,
- -0.0021600029431283474, -0.013160966336727142, -0.04440336301922798,
- -0.09275918453931808, -0.01884489879012108, -0.018677527084946632,
- -0.0015963481273502111, 0.09875582158565521, -0.05888969823718071, 0.03828989341855049,
- -0.04068482667207718, 0.13487713038921356, 0.050353121012449265, 0.0463552288711071,
- 0.05554703623056412, 0.049972955137491226, -0.011620107106864452, 0.00441239308565855,
- -0.02812114916741848, -0.06563542038202286, -0.009364286437630653, 0.168528214097023,
- -0.05790575593709946, 0.12947528064250946, 0.015172632411122322, -0.03624948486685753,
- -0.06788696348667145, -0.00608803192153573, 0.02602662704885006, 0.044590212404727936,
- -0.47920045256614685, -0.018875310197472572, 0.13072681427001953, -0.004418557975441217,
- 0.03912687301635742, 0.10803753137588501, 0.007105408702045679, -0.051184140145778656,
- -0.04091376066207886, -0.1298084855079651, 0.15777523815631866, -0.007385128643363714,
- 0.06683547794818878, -0.14975512027740479, 0.05119306966662407, 0.09201214462518692,
- -0.0039453450590372086, 0.010121770203113556, 0.044034235179424286,
- -0.19527308642864227, -0.012641608715057373, 0.004217504058033228, 0.1214057058095932,
- -0.01112310029566288, 0.024613793939352036, 0.07609573751688004, -0.04371242597699165,
- -0.02001706138253212, 0.026909876614809036, 0.002795197069644928, 0.068362295627594,
- -0.005936195142567158, 0.016315583139657974, 0.08976668864488602, 0.10944287478923798,
- 0.0679696649312973, -0.028282100334763527, 12.011853218078613, 0.07134177535772324,
- 0.09523651003837585, -0.059926290065050125, -0.0013825977221131325,
- -0.04714473336935043, 0.04396114870905876, -0.11860676109790802, 0.06898131966590881,
- 0.11939837038516998, -0.014268073253333569, -0.02715376950800419, -0.03193683177232742,
- -0.09492293745279312, 0.03400125727057457, -0.05529215186834335, -0.058371175080537796,
- -0.05285976082086563, 0.09684038907289505, -0.055344779044389725, -0.04504355043172836,
- 0.02774687670171261, 0.07899536192417145, 0.036696091294288635, -0.09596409648656845,
- 0.010480061173439026, -0.016298562288284302, -0.023159602656960487,
- 0.013974828645586967, 0.05713803693652153, -0.0029326018411666155, 0.008642733097076416,
- 0.07733110338449478, -0.008581796661019325, 0.06630609929561615, 0.06571785360574722,
- 0.016417503356933594, 0.035857293754816055, 0.03715379908680916, 0.07757087051868439,
- -0.020445508882403374, -0.016457602381706238, 0.016473164781928062, 0.0526106171309948,
- 0.05666162818670273, 0.012967348098754883, 0.07083315402269363, 0.13361962139606476,
- 0.020213482901453972, 0.08494264632463455, 0.09842745959758759, 0.0048109074123203754,
- 0.12252119928598404, 0.04226655513048172, 0.02012963593006134, 0.06105586886405945,
- -0.039367757737636566, -0.08300862461328506, 0.07180926203727722, 0.05409696698188782,
- -0.04815763980150223, 0.1055242046713829, 0.0560922846198082, 0.15521788597106934,
- -0.010020163841545582, 0.008810892701148987, 0.05528588220477104, 0.08830620348453522,
- -0.13666075468063354, -0.08629274368286133, 0.0702662542462349, -0.07476891577243805,
- -0.06983084231615067, 0.07884173840284348, 0.07610058039426804, -0.03076258674263954,
- 0.02812652662396431, -0.05006176978349686, 0.06318928301334381, -0.03879842162132263,
- -0.017307857051491737, 0.035980429500341415, -0.06525693833827972, 0.02286609634757042,
- 0.04766089841723442, 0.02514326013624668, 0.09232816845178604, 0.1331387311220169,
- 0.0038883730303496122, -0.11713594198226929, -0.08827704191207886, 0.0915541723370552,
- -0.01676906645298004, -0.08772813528776169, 0.0319402739405632, -0.048841170966625214,
- 0.03484629839658737, -0.20487967133522034, 0.09081307053565979, 0.13431477546691895,
- -0.12463559210300446, -0.038751840591430664, -0.003338275011628866, 0.12771296501159668,
- 0.004081823863089085, 0.030638212338089943, -0.05009956285357475, 0.013816816732287407,
- 0.03205639123916626, 0.020812369883060455, -0.053762029856443405, 0.08045478165149689,
- 0.08373020589351654, -0.05033709481358528, 0.05693354085087776, 0.06933384388685226,
- -0.027376431971788406, -0.019324954599142075, 0.05104844644665718, 0.04768634960055351,
- -0.08257265388965607, -0.059375911951065063, -0.07690833508968353, -0.06561078131198883,
- -0.011770939454436302, -0.03447195887565613, 0.01844729110598564, 0.03215984255075455,
- -0.04457653686404228, -0.04343912750482559, 0.052644677460193634, 0.06347336620092392,
- 0.1165473461151123, -0.016891449689865112, 0.05654486268758774, -0.020190363749861717,
- -0.03988734632730484, 0.04680110886693001, 0.038355108350515366, 0.08440212160348892,
- -0.025518149137496948, -0.04462248831987381, -0.04348231479525566, -0.10205956548452377,
- 0.04598383978009224, 0.06294556707143784, 0.05423855781555176, 0.045206353068351746,
- 0.027969995513558388, -0.06461533159017563, -0.030551781877875328, 0.1235918253660202,
- 0.05637910217046738, 0.016834180802106857, 0.03189544752240181, -0.07252995669841766,
- -0.03241162747144699, 0.08375094830989838, -0.03626216948032379, -0.018508756533265114,
- 0.0024721608497202396, -0.08642999082803726, 0.09850002080202103, 0.10929658263921738,
- 0.06417734920978546, 0.015407020226120949, 0.017900655046105385, 0.01456547249108553,
- 0.010463080368936062, 0.024475788697600365, 0.07042545080184937, -0.0688294917345047,
- -0.07424099743366241, -0.07943769544363022, 0.06842251121997833, 0.054276108741760254,
- 0.0367395281791687, -0.16350975632667542, -0.01937258429825306, -0.031118998304009438
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 216,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Sidney Fussell"],
- "epoch_date_downloaded": 1660694400,
- "epoch_date_modified": 1660694400,
- "epoch_date_submitted": 1660694400,
- "flag": null,
- "report_number": 1927,
- "source_domain": "gizmodo.com",
- "submitters": ["Thomas Giallella (CSET)"],
- "title": "China's Most Popular App Apologizes After Translating 'Black Foreigner' as the N-Word",
- "url": "https://gizmodo.com/chinas-most-popular-app-apologizes-after-translating-bl-1819400310"
- },
- {
- "__typename": "Report",
- "authors": ["Charlotte Beale"],
- "epoch_date_downloaded": 1660694400,
- "epoch_date_modified": 1660694400,
- "epoch_date_submitted": 1660694400,
- "flag": null,
- "report_number": 1926,
- "source_domain": "independent.co.uk",
- "submitters": ["Thomas Giallella (CSET)"],
- "title": "WeChat translates 'black foreigner' into the N-word",
- "url": "https://www.independent.co.uk/news/world/wechat-black-foreigner-translate-nword-a8000366.html"
- },
- {
- "__typename": "Report",
- "authors": ["BBC News"],
- "epoch_date_downloaded": 1660694400,
- "epoch_date_modified": 1660694400,
- "epoch_date_submitted": 1660694400,
- "flag": null,
- "report_number": 1925,
- "source_domain": "bbc.com",
- "submitters": ["Thomas Giallella (CSET)"],
- "title": "WeChat translates 'black foreigner' into racial slur",
- "url": "https://www.bbc.com/news/world-asia-china-41606161"
- },
- {
- "__typename": "Report",
- "authors": ["Benjamin Haas"],
- "epoch_date_downloaded": 1660694400,
- "epoch_date_modified": 1660694400,
- "epoch_date_submitted": 1660694400,
- "flag": null,
- "report_number": 1924,
- "source_domain": "theguardian.com",
- "submitters": ["Thomas Giallella (CSET)"],
- "title": "China's WeChat app translates 'black foreigner' to N-word",
- "url": "https://www.theguardian.com/world/2017/oct/13/chinas-wechat-app-translates-black-foreigner-to-n-word"
- },
- {
- "__typename": "Report",
- "authors": ["Qian Jinghua"],
- "epoch_date_downloaded": 1607644800,
- "epoch_date_modified": 1654560000,
- "epoch_date_submitted": 1653868800,
- "flag": null,
- "report_number": 1724,
- "source_domain": "sixthtone.com",
- "submitters": ["Ingrid Dickinson (CSET)"],
- "title": "WeChat Apologizes for Translating ‘Black Foreigner’ as N-Word",
- "url": "https://www.sixthtone.com/news/1000991/wechat-apologizes-for-translating-black-foreigner-as-n-word"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "evolver",
- "name": "Evolver"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "evolver",
- "name": "Evolver"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "fair-visitors",
- "name": "fair visitors"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1726, 1725],
- "vector": [
- -0.07129210978746414, 0.05266571044921875, 0.025586625561118126, -0.14668647944927216,
- 0.06276430189609528, -0.011062348261475563, -0.010582901537418365, 0.039600670337677,
- 0.09012854099273682, -0.14573881030082703, -0.020484214648604393, 0.07445909827947617,
- 0.03442493826150894, -0.08933033049106598, 0.032607078552246094, -0.11210942268371582,
- -0.08132097870111465, 0.012602481059730053, -0.007301762700080872, -0.13680621981620789,
- -0.10204964131116867, 0.00544907059520483, 0.05641517788171768, 0.07297658175230026,
- -0.09451740980148315, -0.015197467990219593, 0.07385936379432678, 0.13193932175636292,
- -0.07790321111679077, 0.01875244453549385, -0.021332761272788048, -0.04483091086149216,
- 0.12006065994501114, 0.035591673105955124, 0.025830041617155075, 0.0639636218547821,
- 0.044232577085494995, 0.0098568145185709, -0.05003105849027634, 0.006224263925105333,
- -0.016329851001501083, 0.20590966939926147, 0.0013657585950568318, -0.06825719773769379,
- 0.040716443210840225, -0.05337843298912048, 0.004996149335056543, 0.03297068923711777,
- 0.014303815551102161, 0.00693160155788064, 0.027072656899690628, 0.053901851177215576,
- -0.03670530766248703, 0.05382487550377846, -0.12997058033943176, 0.07091370224952698,
- 0.022214718163013458, -0.011198933236300945, 0.06247219815850258, -0.11204157024621964,
- 0.042779985815286636, -0.21754524111747742, -0.050370898097753525, -0.07428713142871857,
- 0.08780255913734436, -0.06908905506134033, -0.04573246091604233, 0.03336218744516373,
- 0.04728352651000023, 0.07743878662586212, 0.07192669063806534, -0.017379796132445335,
- 0.012243818491697311, -0.03512514755129814, 0.006595738232135773, 0.02261865697801113,
- 0.019312363117933273, 0.17683915793895721, -0.16907818615436554, -0.03474285826086998,
- 0.12798070907592773, -0.11055019497871399, 0.40368732810020447, -0.0006755921058356762,
- -0.02438957616686821, 0.0473879799246788, 0.09688149392604828, 0.033844735473394394,
- 0.045004334300756454, 0.030698981136083603, 0.01660161092877388, -0.018060224130749702,
- -0.034428566694259644, -0.0018646055832505226, 0.04885265231132507,
- 0.042721740901470184, -0.04134651646018028, 0.10113085806369781, 0.022544927895069122,
- -0.055436864495277405, 0.02551179751753807, -0.037918269634246826, 0.12271204590797424,
- 0.09336896985769272, -0.015538109466433525, 0.001039404422044754, 0.06523984670639038,
- -0.07970931380987167, 0.08812204003334045, -0.035714276134967804, 0.022199109196662903,
- 0.03672147914767265, 0.09687633067369461, -0.0021740123629570007, 0.033069610595703125,
- -0.01570671983063221, 0.030565740540623665, 0.06816422939300537, 0.08041222393512726,
- 0.03524007648229599, -0.001685040071606636, 0.03187539428472519, 0.014128420501947403,
- -0.04097013548016548, 0.07347084581851959, -0.053480539470911026, -0.03488274663686752,
- -0.014245493337512016, -0.010427471250295639, 0.03802529722452164,
- -0.057654377073049545, -0.2634005546569824, 0.010197402909398079, 0.08643347024917603,
- 0.03451507166028023, -0.01660248264670372, 0.03482703119516373, -0.06344456225633621,
- 0.015377173200249672, -0.057345546782016754, -0.06798219680786133, 0.025753315538167953,
- 0.039045341312885284, 0.08250290155410767, 0.09069550037384033, 0.07983489334583282,
- -0.03189760446548462, -0.0804702639579773, 0.00004882761277258396, -0.00940128043293953,
- 0.10922393202781677, -0.16342417895793915, -0.019169149920344353, 0.002081849379464984,
- 0.0040780333802104, 0.7098715305328369, 0.08770977705717087, 0.1837587058544159,
- 0.042257435619831085, -0.033234499394893646, 0.17968326807022095, -0.018089324235916138,
- 0.05791499465703964, -0.09743648767471313, -0.07810492068529129, 0.042883530259132385,
- -0.06083732470870018, -0.03933648020029068, 0.0034212865866720676, 0.02142893522977829,
- 0.09820648282766342, 0.007965425960719585, 0.13853207230567932, 0.007384059950709343,
- -0.08006193488836288, -0.05350598692893982, 0.05683652311563492, 0.010264890268445015,
- -0.08174948394298553, -0.03557484224438667, 0.01573321223258972, 0.11648871004581451,
- -0.028221439570188522, 0.0037404713220894337, -0.0633624792098999, 0.04838177561759949,
- -0.02848511002957821, 0.07264183461666107, -0.06797817349433899, 0.01085631176829338,
- 0.014627940021455288, 0.04443471133708954, 0.03684081509709358, -0.05620628595352173,
- -0.01810554787516594, 0.14336487650871277, 0.00729221710935235, 0.0020109517499804497,
- 0.07990622520446777, -0.09520873427391052, -0.004462074488401413, -0.008271276019513607,
- 0.11026719212532043, -0.10018177330493927, -0.009450282901525497, 0.008604494854807854,
- 0.017692536115646362, 0.064109206199646, -0.013261353597044945, -0.10394604504108429,
- -0.04707223176956177, 0.09904682636260986, 0.07326214760541916, 0.02759675309062004,
- 0.05649571865797043, 0.023698344826698303, 0.06633415818214417, 0.07489161938428879,
- 0.014258069917559624, -0.007578845135867596, 0.007597424555569887, 0.04354330524802208,
- -0.0738089382648468, -0.010064560920000076, 0.032659146934747696, 0.00985780730843544,
- -0.01938982494175434, -0.029179150238633156, 0.04350005090236664, 0.03761586919426918,
- -0.06075485050678253, 0.04333679750561714, -0.018376994878053665, 0.010048446245491505,
- 0.10267987847328186, -0.05369311571121216, -0.06862154603004456, -0.01835649088025093,
- -0.03153502941131592, 0.013533912599086761, -0.01785888522863388, 0.11579279601573944,
- 0.08191093802452087, 0.06807413697242737, 0.06411062926054001, 0.009732148610055447,
- 0.067445769906044, 0.09809090197086334, 0.002251496072858572, 0.032351572066545486,
- -0.022854512557387352, -0.12001333385705948, -0.03145262971520424, 0.039737358689308167,
- 0.048299193382263184, 0.049903322011232376, -0.08861047774553299, -0.018883103504776955,
- 0.0005580708384513855, -0.06591270118951797, -0.0979216992855072, 0.07903596758842468,
- 0.04049423336982727, 0.050596415996551514, -0.0386262908577919, -0.0908164232969284,
- -0.12575313448905945, -0.000580368097871542, 0.04051358625292778, -0.013023382984101772,
- -0.025167828425765038, -0.0959993451833725, -0.029083004221320152, -0.04442920908331871,
- 0.05092111974954605, -0.007102706003934145, -0.0008332012221217155,
- 0.008189036510884762, -0.03306623175740242, 0.022894563153386116, -0.02162829227745533,
- -0.04439293593168259, -0.09004899859428406, -0.10916665196418762, -0.06906882673501968,
- -0.027116090059280396, 0.01737467385828495, -0.07444791495800018, 0.058463744819164276,
- 0.06622566282749176, 0.05805835872888565, -0.015799880027770996, 0.026676706969738007,
- 0.03528156131505966, -0.02520940825343132, -0.0002114365343004465, 0.09830309450626373,
- -0.020824600011110306, 0.0057868314906954765, -0.0530991405248642, -0.10962561517953873,
- -0.032742079347372055, 0.015911098569631577, -0.05277183651924133, 0.050553951412439346,
- -0.021355904638767242, -0.01066655945032835, -0.01134350337088108, -0.03641505166888237,
- 0.08297820389270782, -0.08761043846607208, -0.03432247415184975, -0.0790209174156189,
- 0.11143232136964798, -0.013696140609681606, -0.0175067987293005, 0.026296185329556465,
- -0.044976674020290375, 0.0552770160138607, -0.0176928099244833, -0.01639150269329548,
- 0.03950084000825882, 0.08635975420475006, 0.001423160545527935, -0.03047131933271885,
- 0.021427825093269348, 0.008708992972970009, 0.012168308719992638, 0.06834008544683456,
- 0.4476126432418823, -0.1984620988368988, 0.05074215307831764, 0.10320161283016205,
- -0.030200837180018425, 0.07158993184566498, -0.027309756726026535, 0.06882497668266296,
- 0.07036265730857849, 0.08080591261386871, 0.108543761074543, -0.03519297391176224,
- -0.017461463809013367, -0.04887112230062485, 0.09404672682285309, 0.03855007886886597,
- -0.010235999710857868, -0.01978452503681183, -0.09345667064189911,
- -0.047524794936180115, 0.021048780530691147, -0.03433738648891449, 0.010398746468126774,
- 0.011512494646012783, -0.028134647756814957, 0.02051876112818718, 0.044561728835105896,
- 0.04469066858291626, -0.03694973140954971, -0.002885670168325305, -0.05910227820277214,
- 0.050597332417964935, 0.051209986209869385, 0.06578396260738373, -0.13988828659057617,
- 0.047681327909231186, -0.10583238303661346, -0.09204650670289993, 0.08056648820638657,
- 0.002483322285115719, 0.034405358135700226, 0.05111066624522209, -0.03656057268381119,
- 0.03748652711510658, -0.03435159847140312, -0.0503789484500885, 0.017424169927835464,
- 0.07843494415283203, -0.011046561412513256, 0.10106848925352097, 0.1699904501438141,
- -0.038534726947546005, -0.02808959037065506, -0.10729283094406128, 0.057184576988220215,
- 0.16791939735412598, -0.05915011465549469, 0.023399395868182182, -0.03598026931285858,
- -0.026759637519717216, -0.0006100619211792946, -0.037414900958538055,
- -0.0910140797495842, -0.06079976260662079, -0.033578746020793915, 0.07269425690174103,
- 0.015563366934657097, -0.04284128546714783, -0.21861691772937775, -0.007423211820423603,
- -0.010313140228390694, -0.008342202752828598, 0.12022542953491211, -0.06622669845819473,
- 0.02640676498413086, -0.002573654055595398, 0.010903988033533096,
- -0.00008677970618009567, -0.15537308156490326, 0.03567417711019516,
- -0.06321699917316437, 0.06361833214759827, -0.0047050234861671925, 0.04535233601927757,
- -0.035334642976522446, 0.06888028979301453, -0.09374554455280304, 0.05259361118078232,
- 0.011637437157332897, -0.04520111903548241, 0.05682676285505295, -0.050695329904556274,
- 0.01670556329190731, 0.021177295595407486, -0.0548073910176754, 0.05444879084825516,
- -0.01843850128352642, -0.04957124590873718, -0.10217808932065964, -0.05596034601330757,
- -0.027876513078808784, -0.09635741263628006, 0.0700053721666336, -0.031533483415842056,
- -0.04448645934462547, -0.03195074573159218, -0.002239987952634692, 0.012247966602444649,
- 0.04640646278858185, 0.07651121914386749, -0.14736367762088776, -0.014184653759002686,
- -0.00935530848801136, 0.0869346633553505, -0.10626521706581116, -0.04608182609081268,
- 0.0034951737616211176, 0.12089082598686218, 0.07656542956829071, 0.03410275653004646,
- 0.027429573237895966, -0.07425694167613983, 0.03184580057859421, -0.10601288080215454,
- -0.5852198600769043, 0.03659047186374664, 0.07588919252157211, 0.0022317252587527037,
- 0.029431642964482307, -0.04271944239735603, 0.029386378824710846, 0.036735087633132935,
- -0.02473711594939232, 0.09048350900411606, -0.06038840487599373, 0.010740785859525204,
- 0.022543437778949738, -0.07205143570899963, -0.017468051984906197, -0.07287462055683136,
- -0.027175847440958023, 0.06537063419818878, -0.03777940571308136, -0.09145569056272507,
- -0.12856373190879822, 0.027020178735256195, -0.035301271826028824, 0.020766695961356163,
- -0.01291789673268795, 0.017400003969669342, -0.07442054897546768, -0.048756834119558334,
- 0.061228420585393906, 0.05764546990394592, 0.04038206487894058, -0.09476658701896667,
- -0.03278612345457077, 0.09551826119422913, -0.04614797234535217, 0.14873498678207397,
- 0.030417494475841522, -0.03310079127550125, -0.0726098120212555, 0.036189258098602295,
- 0.040619656443595886, 0.1855386197566986, -0.034794118255376816, 0.058300457894802094,
- 0.020864512771368027, 0.12453076988458633, -0.02350858971476555, 0.030084745958447456,
- -0.0343782864511013, 0.027136733755469322, 0.020591378211975098, -0.017622822895646095,
- 0.08487766981124878, -0.09778091311454773, -0.019100265577435493, -0.007783930748701096,
- -0.018436770886182785, -0.03388632461428642, 0.051901061087846756, 0.20753799378871918,
- 0.03330925852060318, 0.06018487364053726, 0.002659270539879799, -0.07450889050960541,
- 0.005309799686074257, -0.058773644268512726, -0.05779596045613289,
- -0.024646073579788208, -0.01677083969116211, 0.001275723217986524, -0.05490317940711975,
- -0.10646615922451019, 0.006644190289080143, 0.00004577077925205231,
- 0.017025435343384743, 0.05325399339199066, 0.009449664503335953, 0.048694759607315063,
- -0.026752348989248276, 0.08892780542373657, 0.02201487123966217, 0.057024866342544556,
- 0.06043560057878494, 0.08005806803703308, 0.03145340830087662, -0.019521091133356094,
- -0.05764929950237274, -0.07764072716236115, 0.00807391107082367, 0.14137859642505646,
- -0.029204625636339188, 0.10961541533470154, 0.02730567567050457, -0.012020893394947052,
- -0.04095859080553055, 0.004256107844412327, -0.03541606292128563, 0.010484323836863041,
- -0.4950610399246216, -0.024670902639627457, 0.12888742983341217, 0.026277616620063782,
- 0.0014291065745055676, 0.09253145754337311, 0.01797243393957615, -0.053698085248470306,
- 0.005016021430492401, -0.08230391144752502, 0.1385078728199005, -0.025108467787504196,
- 0.09756624698638916, -0.0894390121102333, 0.019069397822022438, 0.10113726556301117,
- -0.05092518776655197, -0.006351103074848652, 0.07859032601118088, -0.20539206266403198,
- 0.06058947369456291, -0.0005318596959114075, 0.13424062728881836, 0.021099016070365906,
- 0.03756978362798691, 0.05697188153862953, -0.042652491480112076, 0.08229082822799683,
- 0.0558326281607151, 0.03839612007141113, 0.0626627653837204, 0.007749726064503193,
- -0.025625627487897873, 0.09794022887945175, 0.06682099401950836, 0.09384142607450485,
- -0.019706452265381813, 11.999213218688965, 0.05364897847175598, 0.08649344742298126,
- -0.0432191863656044, 0.019998088479042053, -0.09081904590129852, 0.04213322699069977,
- -0.08446872234344482, 0.022592322900891304, 0.10081426054239273, 0.03138274699449539,
- -0.007726762443780899, -0.026114851236343384, -0.09166552126407623,
- 0.026936093345284462, -0.057827774435281754, -0.03301543742418289, -0.02975730411708355,
- 0.0450899600982666, -0.0528375506401062, -0.07285098731517792, 0.03052399307489395,
- 0.043864183127880096, 0.049657903611660004, -0.09604866802692413, 0.0264132022857666,
- 0.03290608897805214, 0.015368258580565453, 0.010073607787489891, 0.024134831503033638,
- 0.01292731985449791, 0.04616357013583183, 0.02512698993086815, 0.03164522722363472,
- 0.04676190763711929, 0.008455462753772736, 0.042091600596904755, 0.03609621152281761,
- 0.06281448900699615, 0.07192344963550568, 0.04602804780006409, -0.04884081706404686,
- 0.019074706360697746, 0.07777883112430573, 0.03418801352381706, -0.01161772571504116,
- 0.031496789306402206, 0.10272310674190521, 0.016888896003365517, 0.03490813076496124,
- 0.0650036484003067, -0.0022142105735838413, 0.09972969442605972, 0.07182829082012177,
- 0.007846049964427948, 0.08515007793903351, -0.0016756729455664754, -0.07567951083183289,
- 0.10208729654550552, 0.07710013538599014, -0.063296377658844, 0.06284906715154648,
- 0.019903013482689857, 0.13316690921783447, -0.06740057468414307, 0.020713606849312782,
- 0.09585024416446686, 0.06499897688627243, -0.08695968985557556, -0.05817093700170517,
- 0.025930769741535187, -0.11665051430463791, -0.05984804779291153, 0.0123036103323102,
- 0.10100354254245758, -0.06314324587583542, 0.028074229136109352, -0.08534234762191772,
- 0.033841006457805634, -0.0023974725045263767, -0.0012806018348783255,
- 0.04599958658218384, -0.06102238595485687, 0.04212574660778046, 0.03786694258451462,
- 0.08387184143066406, 0.07068859040737152, 0.07782647013664246, 0.01639619469642639,
- -0.10451111197471619, -0.07961727678775787, 0.13575948774814606, -0.01652275025844574,
- -0.0895683765411377, 0.004555167630314827, -0.008179661817848682, 0.03673370182514191,
- -0.1738361418247223, 0.02975044958293438, 0.0943809375166893, -0.1252068281173706,
- -0.010014373809099197, -0.05634830892086029, 0.09593610465526581, -0.04889041930437088,
- 0.042886387556791306, -0.06960008293390274, 0.023715492337942123, -0.002505142707377672,
- 0.024363325908780098, -0.03246084600687027, 0.056902941316366196, 0.10382199287414551,
- -0.08166806399822235, 0.05370478332042694, 0.041661038994789124, -0.03197578340768814,
- -0.011731591075658798, 0.05942875146865845, 0.028287015855312347, -0.05601486563682556,
- -0.05606168136000633, -0.046672988682985306, -0.07050387561321259,
- -0.034827060997486115, -0.02415069378912449, 0.006748184096068144, 0.06929953396320343,
- -0.053441982716321945, -0.015385538339614868, 0.010073930025100708,
- 0.050698984414339066, 0.11289449781179428, 0.01927480660378933, 0.03964811563491821,
- -0.06337854266166687, -0.05085352808237076, 0.04457072913646698, 0.07801482081413269,
- 0.046250224113464355, -0.051001500338315964, -0.061838023364543915,
- 0.0058368416503071785, -0.10260461270809174, 0.002625572495162487, 0.09844858944416046,
- 0.04728000983595848, 0.08624577522277832, 0.0372411385178566, -0.0649929791688919,
- -0.04150626063346863, 0.07026278227567673, -0.006390002090483904, 0.04567380249500275,
- 0.06010104715824127, -0.09382185339927673, -0.021970132365822792, 0.1330871880054474,
- -0.06102496013045311, -0.0008352808654308319, -0.029883939772844315,
- 0.03574085235595703, 0.1292944848537445, 0.08671975135803223, 0.06987661868333817,
- 0.030839523300528526, 0.02202760800719261, 0.027330638840794563, -0.039156217128038406,
- -0.008205655962228775, -0.003094398183748126, -0.017731092870235443,
- -0.14516198635101318, -0.10234439373016357, 0.05372152477502823, 0.08048008382320404,
- 0.00013471429701894522, -0.08817176520824432, -0.06152774393558502, -0.02476777695119381
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 217,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Julian Luk"],
- "epoch_date_downloaded": 1654560000,
- "epoch_date_modified": 1654560000,
- "epoch_date_submitted": 1654560000,
- "flag": null,
- "report_number": 1726,
- "source_domain": "dailymail.co.uk",
- "submitters": ["Khoa Lam"],
- "title": "Tech-fair visitor is injured after a robot designed to teach CHILDREN 'loses control' and smashes a booth in China",
- "url": "https://www.dailymail.co.uk/news/article-3949570/Tech-fair-visitor-injured-robot-design-teach-CHILDREN-loses-control-smashes-booth-China.html"
- },
- {
- "__typename": "Report",
- "authors": ["Maya Koetse"],
- "epoch_date_downloaded": 1607299200,
- "epoch_date_modified": 1654560000,
- "epoch_date_submitted": 1653868800,
- "flag": null,
- "report_number": 1725,
- "source_domain": "whatsonweibo.com",
- "submitters": ["Ingrid Dickinson (CSET)"],
- "title": "Chinese Robot Smashes Booth and Injures Man at Shenzhen Hi-Tech Fair",
- "url": "https://www.whatsonweibo.com/chinese-robot-smashes-booth-injures-man-shenzhen-hi-tech-fair/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "tesla",
- "name": "Tesla"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "tesla",
- "name": "Tesla"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "tesla-drivers",
- "name": "Tesla drivers"
- },
- {
- "__typename": "Entity",
- "entity_id": "pedestrians",
- "name": "pedestrians"
- },
- {
- "__typename": "Entity",
- "entity_id": "delivery-truck",
- "name": "delivery truck"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1950, 1728, 1727],
- "vector": [
- -0.0782887265086174, 0.06022787094116211, 0.0008706797962076962, -0.07342207431793213,
- 0.09182589501142502, -0.0008692499250173569, -0.02432403713464737, 0.05488030984997749,
- 0.07528134435415268, -0.14566369354724884, -0.02265849895775318, 0.039865437895059586,
- 0.020319819450378418, -0.0737205371260643, 0.02874627895653248, -0.10863468796014786,
- -0.032003093510866165, -0.008493202738463879, 0.005463542882353067,
- -0.08279076963663101, -0.06800263375043869, 0.012204020284116268, 0.03637773171067238,
- 0.0796559751033783, -0.08597023040056229, 0.04708665981888771, 0.10375057905912399,
- 0.08677471429109573, -0.08537322282791138, 0.05925467610359192, -0.023599451407790184,
- -0.04561613127589226, 0.12861542403697968, -0.017870215699076653, 0.02510378696024418,
- 0.09309326857328415, 0.026055023074150085, -0.030371399596333504, -0.06811569631099701,
- -0.00524586858227849, 0.03618793562054634, 0.20230728387832642, 0.02514994703233242,
- -0.038716863840818405, 0.044648509472608566, -0.03915243223309517, 0.020173372700810432,
- 0.06100517511367798, 0.016504783183336258, 0.00832543894648552, -0.018413005396723747,
- 0.05009312555193901, -0.04317560791969299, 0.028636202216148376, -0.11207449436187744,
- 0.12264380604028702, 0.05657188594341278, -0.02908654324710369, 0.05008735880255699,
- -0.09372825175523758, -0.03051130659878254, -0.2542122006416321, -0.03512302786111832,
- -0.04278802499175072, 0.07175733894109726, -0.08879067748785019, -0.024483220651745796,
- 0.02714257687330246, 0.04384459927678108, 0.05844740942120552, 0.055545732378959656,
- -0.05454537272453308, -0.030208656564354897, -0.010547312907874584,
- -0.01418773178011179, -0.028658943250775337, -0.03707212582230568, 0.2212018519639969,
- -0.10611587762832642, 0.000798779830802232, 0.09832915663719177, -0.10906479507684708,
- 0.4586659371852875, 0.02408263273537159, -0.024067044258117676, -0.04243026301264763,
- 0.11510542780160904, 0.04007358476519585, 0.03716489300131798, 0.031216666102409363,
- -0.018385641276836395, 0.009288053959608078, -0.05094436928629875, 0.04474880173802376,
- 0.07642725855112076, 0.06102217361330986, -0.01673404686152935, 0.046410441398620605,
- -0.01462351530790329, -0.053384970873594284, 0.07482296228408813, -0.08949319273233414,
- 0.08220032602548599, 0.03832097351551056, -0.02762283943593502, -0.020823420956730843,
- 0.10862184315919876, -0.041085969656705856, 0.06291493028402328, -0.0589846670627594,
- 0.01360268797725439, 0.05705836042761803, 0.04289405420422554, -0.006360528524965048,
- 0.04331246390938759, -0.06245957687497139, 0.007162664085626602, 0.03822462633252144,
- 0.10518542677164078, 0.04729826748371124, -0.02046114392578602, 0.055001597851514816,
- 0.10207154601812363, -0.07914510369300842, -0.014670086093246937, -0.050836216658353806,
- -0.0378091000020504, 0.0033664300572127104, -0.03231676667928696, 0.016707390546798706,
- -0.07492449134588242, -0.24095140397548676, 0.05965723469853401, 0.059827256947755814,
- 0.024753496050834656, -0.04282835125923157, -0.02313028834760189, -0.09736467152833939,
- 0.04955911636352539, -0.025155363604426384, -0.017735010012984276, 0.03865842521190643,
- 0.05487309768795967, 0.02346048317849636, 0.12204819917678833, 0.06808903068304062,
- -0.035537298768758774, -0.05275523662567139, -0.01201252918690443,
- -0.019987186416983604, 0.10109556466341019, -0.11692029237747192, -0.05851395055651665,
- 0.01317338366061449, 0.02578790672123432, 0.6538427472114563, 0.08920492976903915,
- 0.18450957536697388, 0.036113351583480835, -0.038140006363391876, 0.1910759061574936,
- 0.007297169417142868, 0.07796011865139008, -0.0716196596622467, -0.06624958664178848,
- 0.03107142634689808, -0.08413487672805786, -0.04927803948521614, 0.043685853481292725,
- 0.020482955500483513, 0.09866461157798767, 0.032286759465932846, 0.1394086629152298,
- -0.0020864729303866625, -0.11016464978456497, -0.037363436073064804,
- 0.044986337423324585, 0.045816440135240555, -0.10081479698419571, -0.0491897352039814,
- 0.0005099375848658383, 0.08994633704423904, -0.049240726977586746, -0.01047020498663187,
- -0.022334998473525047, 0.06414306908845901, -0.04024984687566757, 0.0361928716301918,
- -0.05157946050167084, 0.02830561064183712, 0.050329361110925674, 0.06671927124261856,
- -0.029171712696552277, -0.09903412312269211, -0.02629953809082508, 0.09710037708282471,
- 0.006940560881048441, -0.030810898169875145, 0.013099282048642635, -0.07921317964792252,
- 0.03776601329445839, -0.01456085592508316, 0.13203930854797363, -0.11595267057418823,
- 0.04464904963970184, 0.01840188167989254, -0.022083217278122902, 0.09557365626096725,
- -0.007321880664676428, -0.09579511731863022, -0.0712178573012352, 0.09117362648248672,
- 0.0531817190349102, 0.0739719495177269, 0.11082708835601807, -0.018353110179305077,
- 0.07136118412017822, 0.06840994209051132, 0.02015376091003418, -0.01995501108467579,
- 0.06741068512201309, 0.07408270239830017, -0.04049016162753105, -0.01601683907210827,
- 0.01833798550069332, 0.027571335434913635, 0.04955591633915901, -0.023719623684883118,
- 0.05907312408089638, 0.035695966333150864, -0.028315549716353416, 0.012859967537224293,
- 0.02034301497042179, 0.029821917414665222, 0.13442422449588776, -0.08983369916677475,
- -0.06376511603593826, -0.027419328689575195, -0.04815682768821716,
- -0.009933833964169025, -0.0324229821562767, 0.09096363931894302, 0.07734238356351852,
- 0.12850059568881989, 0.035093244165182114, 0.03544366732239723, 0.05265900492668152,
- 0.110394187271595, 0.0281158909201622, 0.06827700883150101, -0.021791117265820503,
- -0.07850996404886246, -0.014769941568374634, 0.00828332919627428, 0.052559081465005875,
- 0.02372821606695652, -0.0741012692451477, -0.04576623812317848, -0.03428390994668007,
- -0.03094726800918579, -0.09396501630544662, 0.022631363943219185,
- -0.0012025138130411506, 0.06112690642476082, -0.05260498449206352, -0.08105514198541641,
- -0.08592521399259567, 0.007950854487717152, 0.030718781054019928,
- -0.0034951448906213045, -0.020303906872868538, -0.09096169471740723,
- -0.010288838297128677, -0.04860629513859749, 0.020158499479293823,
- -0.0030606547370553017, -0.02523433417081833, -0.042634110897779465,
- -0.0933266282081604, 0.0019897727761417627, -0.010877232067286968,
- -0.030973823741078377, -0.05565269663929939, -0.08769235759973526,
- -0.030594373121857643, -0.028679614886641502, 0.011602592654526234,
- -0.0025363683234900236, 0.022393004968762398, 0.0058078099973499775,
- 0.027038194239139557, -0.024119116365909576, -0.040443528443574905, 0.04631488397717476,
- -0.05241265892982483, -0.020923277363181114, 0.07506512850522995, -0.036073435097932816,
- 0.04364808276295662, -0.006389598827809095, -0.11187205463647842, -0.029390523210167885,
- 0.027307778596878052, -0.04403381049633026, 0.039486344903707504, -0.031487539410591125,
- -0.009180703200399876, -0.024623364210128784, 0.055128101259469986, 0.0655592754483223,
- -0.049939561635255814, -0.10177619010210037, -0.09774906188249588, 0.12168598175048828,
- 0.005315400660037994, 0.008812302723526955, 0.02909448929131031, -0.019728584215044975,
- 0.05000177025794983, -0.011256329715251923, 0.008398442529141903, 0.026821168139576912,
- 0.07849409431219101, -0.001036750734783709, 0.01820179633796215, 0.047754254192113876,
- -0.08715001493692398, 0.037886131554841995, 0.12076824903488159, 0.4341123104095459,
- -0.19385647773742676, 0.08321093767881393, 0.10222134739160538, -0.026175858452916145,
- 0.07397487759590149, -0.031851738691329956, 0.06335999816656113, 0.04575065150856972,
- 0.12215275317430496, 0.15022070705890656, -0.03869831562042236, -0.01890193112194538,
- -0.0810510441660881, 0.09148816019296646, -0.02072698436677456, 0.041267380118370056,
- -0.009687376208603382, -0.0938691720366478, -0.034283481538295746, 0.036492977291345596,
- -0.04078669473528862, -0.0010159051744267344, -0.018800685182213783,
- -0.09784799814224243, 0.01708955317735672, 0.021138498559594154, 0.03048872947692871,
- -0.044201891869306564, 0.0049544768407940865, -0.008028597570955753,
- 0.021375469863414764, -0.004659703467041254, 0.04957084730267525, -0.09736648201942444,
- 0.05359010025858879, -0.10376429557800293, -0.08586611598730087, 0.06506416201591492,
- -0.00915126595646143, 0.07250522077083588, 0.05051658675074577, -0.0626794621348381,
- 0.032100796699523926, -0.021762510761618614, -0.06080855429172516, 0.036993395537137985,
- 0.04284144937992096, 0.005262952763587236, 0.10933824628591537, 0.1446002721786499,
- -0.045285820960998535, -0.041585326194763184, -0.07144715636968613, 0.06070932745933533,
- 0.10430315136909485, -0.029745804145932198, 0.015698088333010674, -0.05514257028698921,
- 0.027304643765091896, 0.0008017843938432634, -0.05427871271967888,
- -0.056853726506233215, -0.00854098703712225, -0.04219002649188042, 0.0692727193236351,
- 0.004566846415400505, -0.020689787343144417, -0.15855325758457184,
- -0.033482588827610016, -0.04444878175854683, 0.02652210183441639, 0.1329609900712967,
- -0.0435829721391201, 0.0065781124867498875, 0.05783969163894653, -0.040015894919633865,
- 0.01899690367281437, -0.10525482147932053, 0.0033564127516001463, -0.05578722432255745,
- 0.025579242035746574, 0.038785263895988464, 0.06264111399650574, -0.04656961187720299,
- 0.06765293329954147, -0.08549413830041885, 0.033397022634744644, -0.0016975606558844447,
- -0.008584092371165752, 0.053950320929288864, -0.03253929689526558, 0.02906080149114132,
- 0.06531437486410141, -0.05579717829823494, 0.033214159309864044, -0.05002729222178459,
- -0.01829688251018524, -0.12035495042800903, -0.09683097153902054, -0.022496307268738747,
- -0.07470397651195526, 0.07935260981321335, -0.10857664793729782, -0.056288283318281174,
- -0.04066899046301842, 0.005370179656893015, 0.00004392676055431366, 0.06040000542998314,
- 0.09111788868904114, -0.15975165367126465, 0.026105498895049095, -0.06349880993366241,
- 0.05536825582385063, -0.04554376378655434, -0.039509061723947525, -0.029288792982697487,
- 0.10307342559099197, 0.05514329671859741, 0.034513454884290695, 0.011522260494530201,
- -0.038073282688856125, 0.009436286054551601, -0.10813441872596741, -0.5083261132240295,
- 0.04994722083210945, 0.028724340721964836, 0.029989803209900856, -0.004295866470783949,
- -0.04259015619754791, 0.06701591610908508, 0.01574861817061901, -0.048748552799224854,
- 0.09870127588510513, -0.05766499415040016, 0.021308565512299538, 0.0131709985435009,
- -0.07347256690263748, -0.04555618762969971, -0.05028780922293663, -0.0550619401037693,
- 0.07837569713592529, -0.031420331448316574, -0.10127919167280197, -0.10755737870931625,
- 0.03435226529836655, -0.04302361235022545, 0.00586528517305851, -0.003681897884234786,
- -0.00885083805769682, -0.07251327484846115, -0.06134290620684624, 0.034029245376586914,
- 0.04785255715250969, 0.054805826395750046, -0.09496704488992691, -0.046714652329683304,
- 0.0367046482861042, -0.014660612680017948, 0.1702733039855957, 0.04301510378718376,
- -0.005821194499731064, -0.11717752367258072, 0.0552535317838192, 0.05797920003533363,
- 0.18559007346630096, -0.03826281428337097, 0.06380663067102432, 0.049436986446380615,
- 0.13034692406654358, 0.031489837914705276, 0.030932193621993065, -0.036173414438962936,
- -0.016987722367048264, 0.016157425940036774, -0.044292837381362915,
- 0.032482173293828964, -0.070061095058918, -0.03907047212123871, 0.022154299542307854,
- 0.015088955871760845, -0.056950777769088745, 0.028749937191605568, 0.19472353160381317,
- 0.029900647699832916, 0.0225079283118248, -0.012017394416034222, -0.036186620593070984,
- -0.016112346202135086, -0.039183929562568665, -0.0598750114440918,
- -0.038139570504426956, -0.010425825603306293, -0.0031802039593458176,
- -0.05042010173201561, -0.11949330568313599, -0.017164820805191994, -0.02790045738220215,
- -0.004808506462723017, 0.1229104995727539, -0.010446034371852875, 0.024356922134757042,
- -0.018953965976834297, 0.12545771896839142, 0.03171473369002342, -0.020682549104094505,
- 0.075853131711483, 0.07330171018838882, 0.02742423675954342, -0.012328269891440868,
- -0.021587438881397247, -0.04989400506019592, 0.009417852386832237, 0.11728843301534653,
- -0.0592915415763855, 0.06967192143201828, 0.08355908840894699, -0.04236658290028572,
- -0.06778829544782639, 0.009239952079951763, 0.005138003267347813, 0.05863850191235542,
- -0.4959748685359955, -0.006695352494716644, 0.1247159019112587, 0.0037710682954639196,
- 0.017854314297437668, 0.11006564646959305, 0.03167873993515968, -0.019594915211200714,
- -0.01842525415122509, -0.06944333761930466, 0.17548902332782745, -0.018743392080068588,
- 0.07466906309127808, -0.10380967706441879, 0.01904640533030033, 0.08918539434671402,
- -0.00513020483776927, 0.0004355988057795912, 0.06587787717580795, -0.21722356975078583,
- 0.03435700014233589, -0.017425483092665672, 0.16916154325008392, 0.0028712081257253885,
- 0.04245176538825035, 0.058481913059949875, -0.05769580230116844, 0.057793039828538895,
- 0.07124985009431839, 0.012944762594997883, 0.07635141164064407, -0.006267803255468607,
- -0.04186639562249184, 0.11422912031412125, 0.0825410857796669, 0.08641649037599564,
- -0.01323457807302475, 11.987113952636719, 0.05725552514195442, 0.04419906437397003,
- -0.05940258502960205, 0.05404965206980705, -0.07524801045656204, 0.0485987663269043,
- -0.11535686254501343, 0.04799112677574158, 0.12330807000398636, -0.018095649778842926,
- -0.041671786457300186, -0.010085493326187134, -0.10065624862909317,
- 0.007295874413102865, -0.10759460926055908, -0.008094333112239838,
- -0.015208189375698566, 0.0025373331736773252, -0.0767255499958992, -0.02123996615409851,
- -0.011958715505897999, 0.06821577996015549, 0.04575871303677559, -0.07250134646892548,
- 0.06174576282501221, 0.041036207228899, 0.04529832676053047, 0.00969515461474657,
- 0.022065043449401855, -0.00822985079139471, 0.02872728742659092, 0.051827322691679,
- 0.05333572253584862, 0.026470385491847992, 0.09147175401449203, 0.03799339011311531,
- 0.06632818281650543, 0.01012666616588831, 0.04497307911515236, 0.028140952810645103,
- 0.00311918742954731, 0.04053320363163948, 0.034101586788892746, 0.02735687792301178,
- 0.037898775190114975, 0.08832702040672302, 0.11765480041503906, 0.028226517140865326,
- 0.00711134122684598, 0.09330969303846359, 0.006068187300115824, 0.12786416709423065,
- 0.0571199469268322, 0.008984754793345928, 0.049656156450510025, -0.019902566447854042,
- -0.06024259328842163, 0.09525369852781296, 0.09705477207899094, -0.04954217001795769,
- 0.08317854255437851, 0.017257248982787132, 0.09642947465181351, -0.04303078353404999,
- 0.036891888827085495, 0.10536111146211624, 0.04914969205856323, -0.12626992166042328,
- -0.08140438050031662, 0.06953451782464981, -0.13491009175777435, -0.0904417559504509,
- 0.013757259584963322, 0.09956944733858109, -0.03830130770802498, 0.08716455847024918,
- -0.10569537431001663, 0.010337932035326958, -0.06406951695680618, 0.010569983161985874,
- 0.03079952485859394, 0.003986080642789602, 0.006248634308576584, 0.014558643102645874,
- 0.02178918570280075, 0.133916974067688, 0.06813504546880722, -0.03559974953532219,
- -0.08530577272176743, -0.11445977538824081, 0.0651787668466568, -0.02442326955497265,
- -0.041616398841142654, 0.013794824481010437, -0.03276849910616875, 0.07125339657068253,
- -0.18926756083965302, 0.06513815373182297, 0.09649721533060074, -0.09347933530807495,
- 0.004680069629102945, -0.04503948986530304, 0.02503160387277603, -0.015020553953945637,
- 0.0825827568769455, -0.06246925890445709, -0.01249687746167183, 0.03736745938658714,
- 0.041078370064496994, -0.006870038341730833, 0.052925363183021545, 0.09691888839006424,
- -0.09186210483312607, 0.08741256594657898, 0.02633029781281948, -0.017342835664749146,
- -0.03662910684943199, 0.06318384408950806, 0.07512030750513077, -0.06058422103524208,
- -0.054236650466918945, -0.038710035383701324, -0.039322689175605774,
- -0.03856557980179787, -0.03759891167283058, -0.004767135251313448, 0.02549564279615879,
- -0.05243423581123352, -0.01684562675654888, 0.019021080806851387, 0.02857355959713459,
- 0.11400384455919266, -0.02419278211891651, 0.035040389746427536, -0.06719302386045456,
- -0.019243991002440453, 0.043810468167066574, 0.040940720587968826, 0.06470409780740738,
- -0.020871585234999657, -0.016685063019394875, -0.06548377871513367,
- -0.10801315307617188, 0.021975383162498474, 0.08837906271219254, 0.06973446160554886,
- 0.05994359031319618, 0.04784734174609184, -0.06857246905565262, -0.020625127479434013,
- 0.09848793596029282, 0.04334205389022827, 0.012018193490803242, 0.0375707782804966,
- -0.09253844618797302, -0.02181628905236721, 0.1532309502363205, -0.030961094424128532,
- 0.02070985920727253, -0.027600711211562157, -0.053145647048950195, 0.12214791774749756,
- 0.12837989628314972, 0.056604716926813126, 0.048709988594055176, 0.023177051916718483,
- 0.002432276261970401, 0.019303305074572563, -0.01078920066356659, 0.011989499442279339,
- -0.0013355063274502754, -0.15656106173992157, -0.08378934115171432,
- 0.039425428956747055, 0.09547409415245056, -0.05397745966911316, -0.11131268739700317,
- -0.013265629298985004, -0.032867614179849625
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 218,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Tony Markovich"],
- "epoch_date_downloaded": 1661212800,
- "epoch_date_modified": 1661212800,
- "epoch_date_submitted": 1661212800,
- "flag": null,
- "report_number": 1950,
- "source_domain": "autoblog.com",
- "submitters": ["Thomas Giallella (CSET)"],
- "title": "Watch a Model 3 drive straight into a flipped semi on a Taiwan highway",
- "url": "https://www.autoblog.com/2020/06/01/video-tesla-model-3-crashes-into-overturned-truck/"
- },
- {
- "__typename": "Report",
- "authors": ["Keoni Everington"],
- "epoch_date_downloaded": 1654560000,
- "epoch_date_modified": 1654560000,
- "epoch_date_submitted": 1654560000,
- "flag": null,
- "report_number": 1728,
- "source_domain": "taiwannews.com.tw",
- "submitters": ["Khoa Lam"],
- "title": "Video shows Tesla on autopilot slam into truck on Taiwan highway",
- "url": "https://www.taiwannews.com.tw/en/news/3943199"
- },
- {
- "__typename": "Report",
- "authors": ["Brad Templeton"],
- "epoch_date_downloaded": 1607385600,
- "epoch_date_modified": 1654560000,
- "epoch_date_submitted": 1653868800,
- "flag": null,
- "report_number": 1727,
- "source_domain": "forbes.com",
- "submitters": ["Ingrid Dickinson (CSET)"],
- "title": "Tesla In Taiwan Crashes Directly Into Overturned Truck, Ignores Pedestrian, With Autopilot On",
- "url": "https://www.forbes.com/sites/bradtempleton/2020/06/02/tesla-in-taiwan-crashes-directly-into-overturned-truck-ignores-pedestrian-with-autopilot-on/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "ezemvelo-kzn-wildlife",
- "name": "Ezemvelo KZN Wildlife"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "unknown",
- "name": "Unknown"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "rhinos-in-conservation",
- "name": "rhinos in conservation"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1730],
- "vector": [
- -0.06443767249584198, 0.09231781959533691, 0.04867636784911156, -0.13245701789855957,
- 0.02548033371567726, -0.09984264522790909, 0.0020327060483396053, 0.08469308167695999,
- 0.12097293883562088, -0.08873818814754486, 0.04730094224214554, 0.009441236965358257,
- 0.019159089773893356, -0.11555816978216171, 0.0070314775221049786, -0.20478476583957672,
- -0.04140001907944679, 0.0016231921035796404, -0.052684344351291656,
- -0.08078910410404205, -0.07272332906723022, 0.020836688578128815, 0.030091559514403343,
- 0.04943736642599106, -0.03318498283624649, 0.07424783706665039, 0.04782021790742874,
- 0.169200137257576, -0.10290110856294632, 0.05510390177369118, 0.04336729645729065,
- -0.07897244393825531, 0.14033710956573486, 0.034925203770399094, 0.013687655329704285,
- 0.08710362762212753, 0.008088997565209866, -0.04110993444919586, -0.0009914961410686374,
- -0.016750140115618706, -0.03563858941197395, 0.21402689814567566, -0.01550010684877634,
- -0.05171109735965729, 0.07044529169797897, -0.05352037772536278, -0.015281192027032375,
- 0.07262954860925674, 0.029460422694683075, -0.0009744588751345873, -0.06327822059392929,
- 0.0393003411591053, -0.05863203480839729, -0.02056499943137169, -0.07866901904344559,
- 0.04961463809013367, -0.0049758125096559525, 0.022356566041707993, 0.07302379608154297,
- -0.07043061405420303, -0.018460534512996674, -0.20030167698860168, -0.05528887361288071,
- -0.12576831877231598, 0.12831273674964905, -0.10947956889867783, -0.024931037798523903,
- 0.04666559398174286, 0.019475622102618217, 0.03231307864189148, 0.09952887892723083,
- 0.009832175448536873, -0.00486558536067605, -0.01811068132519722, 0.06435410678386688,
- -0.002173743909224868, -0.028645196929574013, 0.16540512442588806, -0.16987870633602142,
- 0.0031316333916038275, 0.12413930147886276, -0.11566396802663803, 0.3869971036911011,
- -0.043064314872026443, 0.05585673451423645, -0.06108395382761955, 0.13685627281665802,
- 0.01484029833227396, 0.08502635359764099, 0.1155005544424057, -0.010546771809458733,
- 0.04059582203626633, -0.05502701178193092, -0.02482636831700802, 0.06581638008356094,
- 0.03207024931907654, 0.0006047327187843621, 0.1003529503941536, -0.02328980341553688,
- -0.02540562115609646, 0.019116422161459923, -0.06063580513000488, 0.10764381289482117,
- 0.09270425885915756, -0.052523624151945114, -0.00929189007729292, 0.09048300981521606,
- -0.06423542648553848, 0.05512000992894173, -0.07302143424749374, 0.017944211140275,
- 0.05244361609220505, 0.08170855045318604, 0.04159548133611679, -0.0068754288367927074,
- -0.028760448098182678, 0.022428344935178757, 0.05410334840416908, 0.07022653520107269,
- 0.008823318406939507, 0.005907537881284952, 0.06428486108779907, 0.02948414348065853,
- -0.0306528490036726, 0.009579816833138466, -0.024508660659193993, -0.01922229491174221,
- -0.034801796078681946, -0.005045413505285978, 0.0774039626121521, -0.05739295110106468,
- -0.20184718072414398, -0.04011741653084755, 0.07137887179851532, 0.03471952676773071,
- -0.0075636678375303745, 0.01594068855047226, -0.05109407380223274, 0.07696613669395447,
- -0.06257298588752747, -0.09094834327697754, 0.10634976625442505, -0.016747355461120605,
- 0.05694296211004257, 0.07795140892267227, 0.09287670999765396, -0.04323820769786835,
- -0.007600855082273483, 0.050020694732666016, 0.03385515883564949, 0.047774698585271835,
- -0.10701717436313629, -0.060917746275663376, 0.036846231669187546, 0.002629613969475031,
- 0.6615238785743713, 0.09250852465629578, 0.15196235477924347, 0.02115454152226448,
- -0.03685487061738968, 0.19137077033519745, 0.022068627178668976, 0.05130113288760185,
- -0.07745923101902008, -0.0760640799999237, 0.008763463236391544, -0.05351949483156204,
- -0.007188940420746803, 0.06443433463573456, -0.03499607369303703, 0.08616159111261368,
- 0.000560001702979207, 0.09203607589006424, -0.06027442589402199, -0.12656225264072418,
- 0.00024901333381421864, 0.07422446459531784, 0.00008502998389303684,
- -0.09657607972621918, -0.043207913637161255, 0.08207999914884567, 0.07087410241365433,
- -0.08144770562648773, 0.003976172301918268, -0.03814775496721268, 0.05020228400826454,
- 0.006953659933060408, 0.04524746537208557, -0.048000119626522064, 0.01496641244739294,
- 0.01995999924838543, 0.05727921053767204, 0.002515094820410013, -0.12434825301170349,
- -0.005086188204586506, 0.0855366438627243, 0.009053295478224754, -0.04615277424454689,
- 0.11172565072774887, -0.12775884568691254, 0.0076388828456401825, -0.02820434980094433,
- 0.18930132687091827, -0.1039264053106308, -0.021246615797281265, -0.0008548093028366566,
- -0.05694255977869034, 0.086552195250988, -0.0060763065703213215, -0.007483192253857851,
- -0.032034922391176224, 0.1394272893667221, -0.009782382287085056, 0.09431667625904083,
- 0.0596981979906559, 0.03245539963245392, 0.10272502154111862, 0.10855317115783691,
- 0.027603792026638985, 0.0006772400811314583, 0.05889345705509186, 0.05256086215376854,
- -0.008088699541985989, 0.04230915755033493, 0.00131236482411623, 0.057408615946769714,
- 0.02145969681441784, -0.010686822235584259, 0.07181921601295471, 0.0027494742535054684,
- -0.043302830308675766, 0.010328014381229877, -0.00041828869143500924,
- -0.007071981206536293, 0.14381255209445953, -0.022675152868032455,
- -0.009271387942135334, -0.008491848595440388, 0.0006193388835527003,
- 0.02871660701930523, -0.03477282077074051, 0.06687475740909576, 0.10365071892738342,
- 0.0544009767472744, 0.060604698956012726, 0.029452336952090263, 0.03722701966762543,
- 0.05326429009437561, 0.07188589125871658, 0.08143191784620285, -0.05689908564090729,
- -0.1493687629699707, -0.07163847982883453, 0.011174694634974003, 0.0744333490729332,
- 0.06784839183092117, -0.07114409655332565, -0.06189914420247078, 0.04046240076422691,
- 0.023995008319616318, -0.03876233100891113, -0.023499812930822372,
- 0.0027149366214871407, 0.06337352842092514, -0.005365653429180384, -0.04405287653207779,
- -0.05909958854317665, 0.02247510850429535, 0.08020919561386108, -0.04185279831290245,
- 0.03891550004482269, -0.12684106826782227, 0.03631151095032692, -0.027784552425146103,
- 0.07413195818662643, -0.03587595373392105, 0.021128227934241295, -0.013706238009035587,
- 0.006785432808101177, 0.0338667593896389, 0.003894092282280326, -0.005438941065222025,
- -0.03665125370025635, -0.0609498955309391, -0.0533878430724144, -0.0072332327254116535,
- -0.013602211140096188, -0.06502703577280045, 0.0839761346578598, 0.039916541427373886,
- 0.060372401028871536, -0.09875687956809998, 0.010764675214886665, 0.06177990883588791,
- -0.05073961988091469, 0.04049256816506386, 0.15298916399478912, -0.053476229310035706,
- 0.013105479069054127, -0.05288676917552948, -0.042798709124326706,
- -0.034792251884937286, 0.031875185668468475, -0.005966546479612589,
- 0.019333714619278908, -0.06567302346229553, -0.007328526116907597,
- -0.062231551855802536, -0.045012522488832474, 0.09512007236480713, -0.093939408659935,
- -0.046928539872169495, -0.08114416897296906, 0.11059863120317459, 0.017287546768784523,
- 0.010644865222275257, -0.0006700538797304034, -0.09429015964269638,
- 0.030125712975859642, 0.018097883090376854, 0.015417935326695442, 0.04752381518483162,
- 0.08836156129837036, -0.018412968143820763, -0.0539088249206543, 0.09939113259315491,
- -0.007868997752666473, 0.012654881924390793, 0.09141415357589722, 0.4617002606391907,
- -0.15246620774269104, 0.06691815704107285, 0.13041381537914276, 0.02874937281012535,
- 0.10549555718898773, 0.006545454729348421, 0.04385829344391823, 0.10485798120498657,
- 0.12998373806476593, 0.1052989810705185, -0.01606200449168682, -0.024675402790308,
- -0.0752522274851799, 0.03614725172519684, 0.007616566959768534, -0.020720452070236206,
- -0.08667582273483276, -0.07282470166683197, 0.0077256374061107635,
- 0.0027034697122871876, -0.07312430441379547, 0.006319079548120499, 0.017190592363476753,
- -0.08103341609239578, 0.002116641029715538, -0.02495654858648777, 0.005885144229978323,
- -0.047631509602069855, 0.014524398371577263, -0.06940295547246933, 0.022108305245637894,
- 0.012216188944876194, 0.08435985445976257, -0.057595595717430115, 0.014787712134420872,
- -0.05755343660712242, -0.1362978219985962, 0.1719767451286316, -0.015426838770508766,
- 0.04458174481987953, 0.07745998352766037, -0.08727069944143295, 0.08303697407245636,
- -0.06087368354201317, -0.006999064236879349, 0.03983055055141449, 0.02976342849433422,
- 0.020894566550850868, 0.0775408074259758, 0.19838014245033264, -0.09294288605451584,
- -0.06830968707799911, -0.09799367189407349, 0.06482691317796707, 0.1367652714252472,
- 0.01237079780548811, -0.027920914813876152, -0.007872379384934902,
- 0.000025947967515094206, 0.011093630455434322, -0.10392475128173828,
- -0.06304460018873215, 0.06418991833925247, 0.03152605518698692, 0.14656956493854523,
- 0.015777820721268654, -0.04400383308529854, -0.17503613233566284, 0.0379643552005291,
- -0.05467991530895233, 0.03827492520213127, 0.07149665802717209, -0.019631240516901016,
- -0.010045532137155533, -0.07031361013650894, 0.028204811736941338, 0.035065557807683945,
- -0.06369132548570633, 0.02125845104455948, -0.07408235967159271, 0.05969074368476868,
- 0.03814898058772087, 0.06004885584115982, -0.02838972769677639, 0.09101724624633789,
- -0.13882452249526978, 0.073125921189785, 0.01525905542075634, -0.013467688113451004,
- 0.04876891151070595, 0.0046957265585660934, 0.05264176055788994, 0.03137192502617836,
- -0.016490358859300613, 0.021600596606731415, -0.015463337302207947,
- -0.03452541306614876, -0.09329818934202194, -0.07241470366716385, -0.035750001668930054,
- -0.09523724019527435, -0.016130022704601288, -0.09066127240657806, -0.04217901825904846,
- -0.02954293228685856, 0.01807253248989582, -0.028470005840063095, 0.08825984597206116,
- 0.054057832807302475, -0.1052057221531868, -0.02990008145570755, -0.05398973822593689,
- 0.016005896031856537, 0.035152703523635864, -0.017557810992002487, 0.04333636537194252,
- 0.04318570718169212, 0.06269276142120361, -0.0026358598843216896, 0.014451551251113415,
- -0.03307579457759857, 0.0457620732486248, -0.11473114043474197, -0.4355590343475342,
- -0.005113429855555296, 0.0211783479899168, 0.06437154859304428, 0.015258721075952053,
- -0.13778945803642273, 0.06570694595575333, 0.019047275185585022, 0.0016264106379821897,
- 0.04300833120942116, -0.04702006280422211, 0.02747650258243084, 0.00955826137214899,
- -0.03581980988383293, -0.039759766310453415, -0.04114919155836105, -0.04192318767309189,
- 0.06969790160655975, -0.05809514597058296, -0.10340266674757004, -0.047268543392419815,
- 0.018072566017508507, -0.00324278324842453, 0.044852033257484436, -0.04322817176580429,
- -0.010518514551222324, -0.09636866301298141, -0.046852461993694305,
- 0.021809175610542297, 0.0111657390370965, 0.04278456047177315, -0.09823404997587204,
- 0.014939109794795513, 0.033502768725156784, -0.005722729489207268, 0.09885731339454651,
- 0.08404169231653214, -0.034795720130205154, -0.08781386911869049, 0.10192005336284637,
- 0.09081009775400162, 0.1867108792066574, -0.05710691958665848, 0.06926505267620087,
- -0.05725111439824104, 0.0734616294503212, -0.019370321184396744, 0.021713528782129288,
- 0.02752911113202572, 0.009143469855189323, 0.03130698949098587, -0.02268322929739952,
- 0.09610911458730698, -0.11462964862585068, -0.023512503132224083, 0.012404996901750565,
- -0.04701298475265503, -0.021449193358421326, 0.0028756160754710436, 0.18794700503349304,
- 0.06497792899608612, -0.03556155413389206, 0.05344943702220917, -0.02959592454135418,
- 0.025563649833202362, -0.10524313151836395, -0.11586549878120422, -0.007821944542229176,
- -0.004785647615790367, -0.014651402831077576, -0.030425528064370155,
- -0.12573091685771942, 0.015197956003248692, 0.0017538208048790693,
- -0.025183282792568207, 0.027102036401629448, -0.07632149010896683, 0.06442534923553467,
- -0.04974493384361267, 0.15401355922222137, 0.052835527807474136, 0.08049384504556656,
- 0.05510854721069336, 0.047655895352363586, -0.029576024040579796, -0.06639581173658371,
- -0.06074443459510803, -0.04979662969708443, -0.01888558268547058, 0.0913601964712143,
- -0.05491924658417702, 0.09737926721572876, 0.011252014897763729, -0.09410970658063889,
- -0.1021260917186737, 0.03676457703113556, 0.005111262667924166, 0.02632211148738861,
- -0.4428074359893799, -0.007317590527236462, 0.13858281075954437, 0.004894515965133905,
- 0.02378971315920353, 0.040869515389204025, 0.014526963233947754, -0.08054696023464203,
- -0.036837387830019, -0.11671467125415802, 0.1685786098241806, -0.05273222178220749,
- 0.05302673578262329, -0.05672876909375191, 0.03992998227477074, 0.053050488233566284,
- 0.001090671168640256, -0.07323280721902847, 0.013988140039145947, -0.15919101238250732,
- -0.002056786557659507, -0.013124771416187286, 0.09795933961868286, 0.014224538579583168,
- 0.05518468841910362, 0.050296954810619354, -0.08488350361585617, 0.05081108212471008,
- 0.08684521913528442, -0.04466285929083824, 0.035742007195949554, 0.014362367801368237,
- -0.04438997432589531, 0.07733941823244095, 0.04769089072942734, 0.015705550089478493,
- -0.010693161748349667, 11.921425819396973, 0.0524822473526001, 0.08701808005571365,
- -0.10800725966691971, -0.011382819153368473, -0.058147743344306946,
- 0.048414744436740875, -0.1003400906920433, 0.0657743513584137, 0.09101736545562744,
- 0.006964708678424358, -0.04856659471988678, -0.04404224455356598, -0.10121482610702515,
- -0.015222321264445782, -0.03438820317387581, -0.05201447382569313, -0.0448848232626915,
- 0.043160129338502884, -0.05755187198519707, -0.000577072671148926,
- -0.004441866185516119, 0.03197444975376129, 0.08569884300231934, -0.08138497173786163,
- -0.05952100828289986, -0.029897797852754593, -0.060633666813373566,
- 0.000937862612772733, 0.07667714357376099, 0.00018696807092055678, 0.01025393232703209,
- 0.015515039674937725, -0.038376227021217346, 0.027667012065649033,
- -0.007312925532460213, -0.015103599987924099, 0.05686353147029877,
- -0.009115050546824932, 0.10233303159475327, 0.044204842299222946, 0.0016018878668546677,
- -0.0003226840344723314, 0.08059623837471008, 0.02975624054670334, -0.01430180761963129,
- 0.013291053473949432, 0.09443368017673492, 0.01013620663434267, 0.09961231797933578,
- 0.11002503335475922, -0.015610395930707455, 0.10169051587581635, 0.021906906738877296,
- 0.05064069852232933, 0.12632246315479279, 0.019942836835980415, -0.10759279131889343,
- 0.09755346924066544, 0.11305113881826401, -0.04683263599872589, 0.05490173026919365,
- 0.04272620752453804, 0.11548174917697906, -0.014302721247076988, 0.004017718601971865,
- 0.10286906361579895, 0.10071254521608353, -0.12564140558242798, -0.046372223645448685,
- 0.052158012986183167, -0.14035992324352264, -0.06850919127464294, 0.02292182855308056,
- 0.05640006810426712, -0.0472860150039196, 0.03655935078859329, -0.07672140747308731,
- 0.06568519026041031, 0.0012706395937129855, -0.010317976586520672, 0.03755537420511246,
- -0.13299982249736786, 0.07574480772018433, 0.027183998376131058, -0.002782014897093177,
- 0.09910055249929428, 0.023752056062221527, 0.04562351480126381, -0.1256021410226822,
- -0.1025562584400177, 0.10990709066390991, -0.03214891999959946, -0.0573703870177269,
- -0.08560659736394882, -0.04786170646548271, 0.07533939182758331, -0.2039480358362198,
- 0.10193009674549103, 0.1064104288816452, -0.14022086560726166, 0.013477979227900505,
- -0.05233403667807579, 0.09278576076030731, -0.018774446099996567, 0.089659184217453,
- -0.03132982552051544, 0.012280355207622051, 0.004504133015871048, 0.08924616873264313,
- -0.01829703338444233, 0.06460115313529968, 0.09055718779563904, 0.01164302323013544,
- 0.03495601564645767, 0.03764587268233299, 0.001128524076193571, -0.010992120951414108,
- 0.022901304066181183, 0.015014749020338058, -0.11136206984519958, -0.06353840231895447,
- 0.02291562780737877, -0.0877780169248581, -0.07598915696144104, -0.07204946130514145,
- -0.008004511706531048, -0.009684438817203045, -0.051107969135046005,
- 0.03314250707626343, 0.053929731249809265, 0.05083656683564186, 0.07461666315793991,
- -0.04923853650689125, 0.06855941563844681, -0.00891532190144062, -0.030455756932497025,
- 0.04796260595321655, 0.08479883521795273, 0.0904926061630249, -0.030404457822442055,
- -0.05212824046611786, -0.031394779682159424, -0.05672888085246086, 0.03167121484875679,
- 0.1143815666437149, -0.002998526208102703, 0.08525528013706207, 0.0700160339474678,
- -0.055000752210617065, -0.011691859923303127, 0.06490689516067505, 0.005137365311384201,
- 0.03518681600689888, 0.0605526939034462, -0.09057866036891937, -0.03547799587249756,
- 0.11220895498991013, -0.06312547624111176, -0.03223996236920357, -0.01842038705945015,
- 0.02738688327372074, 0.12667515873908997, 0.09555415064096451, 0.0911407619714737,
- 0.0010166811989620328, 0.007536142133176327, -0.034977324306964874,
- -0.03828927502036095, -0.03570667281746864, -0.014444666914641857, -0.0581715852022171,
- -0.09682831168174744, -0.05643341690301895, 0.019504908472299576, 0.0943814218044281,
- -0.02649434097111225, -0.11758963763713837, -0.03347467631101608, -0.04849233850836754
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 219,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Thobeka Ngema"],
- "epoch_date_downloaded": 1606262400,
- "epoch_date_modified": 1654646400,
- "epoch_date_submitted": 1653868800,
- "flag": null,
- "report_number": 1730,
- "source_domain": "iol.co.za",
- "submitters": ["Thomas Giallella (CSET)"],
- "title": "Poachers evade KZN park’s high-tech security and kill four rhinos for their horns",
- "url": "https://www.iol.co.za/dailynews/news/poachers-evade-kzn-parks-high-tech-security-and-kill-four-rhinos-for-their-horns--fae0d804-3917-438c-9d5f-dcf16909cac2"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "facebook",
- "name": "Facebook"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "facebook",
- "name": "Facebook"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "small-businesses-on-facebook",
- "name": "small businesses on Facebook"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [2061, 1969, 1732, 1731],
- "vector": [
- -0.07233776152133942, 0.0947914570569992, 0.022672099992632866, -0.1000615581870079,
- 0.1007818728685379, -0.06848162412643433, 0.0022900926414877176, 0.043270137161016464,
- 0.07610056549310684, -0.1281314641237259, -0.0035993107594549656, 0.043092288076877594,
- 0.05700507387518883, -0.1008116751909256, 0.007049440406262875, -0.06353872269392014,
- -0.10646235942840576, -0.01696830615401268, -0.014992516487836838, -0.12882469594478607,
- -0.06856728345155716, 0.03402533382177353, 0.0659901350736618, 0.12272980809211731,
- -0.02432887628674507, -0.0003480641171336174, 0.09524503350257874, 0.13343138992786407,
- -0.045418139547109604, 0.030651874840259552, -0.02670685388147831, -0.06545869261026382,
- 0.11754836142063141, 0.007769335526973009, 0.013202182948589325, 0.08371017873287201,
- -0.0011608904460445046, -0.04460722953081131, -0.025486189872026443,
- -0.00017530871264170855, 0.05490073561668396, 0.2186926156282425, -0.015978798270225525,
- -0.022399436682462692, 0.04848388954997063, 0.007629351690411568, 0.033195048570632935,
- 0.039764318615198135, -0.00240290816873312, -0.028888776898384094,
- -0.006458014715462923, 0.04408580809831619, -0.05613292008638382, 0.03500590845942497,
- -0.08136577904224396, 0.04535233974456787, 0.032654598355293274, 0.010867108590900898,
- 0.04485541582107544, -0.06702862679958344, 0.0018519142176955938, -0.22708825767040253,
- -0.029695779085159302, -0.04663009196519852, 0.06619811803102493, -0.08751429617404938,
- -0.023362061008810997, -0.0033813847694545984, 0.0026829917915165424,
- 0.06131339818239212, 0.05047799274325371, -0.036536719650030136, 0.014753115363419056,
- 0.019080355763435364, -0.022600622847676277, -0.03815988823771477, 0.041821420192718506,
- 0.19259722530841827, -0.07505697757005692, 0.0006659606005996466, 0.10993578284978867,
- -0.10488945245742798, 0.4103080928325653, 0.02670794352889061, -0.0120964664965868,
- 0.02080613188445568, 0.08848143368959427, 0.0741075724363327, 0.041462432593107224,
- 0.028370896354317665, -0.018725313246250153, 0.04029843211174011, -0.04284251481294632,
- 0.021376153454184532, 0.05853891372680664, 0.015990743413567543, -0.026739466935396194,
- 0.05469910055398941, 0.0026419032365083694, -0.08188625425100327, 0.022857151925563812,
- -0.022943301126360893, 0.10666851699352264, 0.08613791316747665, -0.03672085329890251,
- 0.002914042677730322, 0.09235657751560211, -0.06607963889837265, 0.06288246810436249,
- -0.027064625173807144, 0.020725872367620468, -0.022811561822891235, 0.03875156491994858,
- 0.00869680568575859, 0.030749071389436722, -0.02681048959493637, 0.0031150542199611664,
- 0.04709821939468384, 0.07467105239629745, 0.04028544947504997, 0.0069217681884765625,
- 0.04453400522470474, 0.09694661945104599, -0.0673736184835434, -0.02076920121908188,
- -0.03373752161860466, -0.04654394090175629, -0.015537222847342491,
- 0.0022737702820450068, 0.03169295936822891, -0.05869722738862038, -0.18435662984848022,
- -0.0015621065394952893, 0.07166140526533127, 0.0016258957330137491,
- -0.025971228256821632, 0.03151719644665718, -0.07288311421871185, 0.030524088069796562,
- -0.034869395196437836, -0.032044701278209686, 0.06120067089796066, 0.029747260734438896,
- 0.023488633334636688, 0.08827158808708191, 0.03571145981550217, -0.02163628861308098,
- -0.05561073496937752, 0.011237774044275284, -0.02806873247027397, 0.10490886867046356,
- -0.13516515493392944, -0.034232836216688156, 0.015769824385643005,
- -0.002412032801657915, 0.654697597026825, 0.13798940181732178, 0.1527554988861084,
- -0.002652338705956936, -0.05204156041145325, 0.19422081112861633, -0.008949732407927513,
- 0.047296587377786636, -0.06231416016817093, -0.07206299155950546, 0.011733921244740486,
- -0.06720823049545288, -0.03319558501243591, 0.053424056619405746, -0.006439699791371822,
- 0.10546322166919708, 0.026394806802272797, 0.12574785947799683, 0.03293408080935478,
- -0.06600620597600937, 0.014872273430228233, 0.0728774219751358, 0.0004408403765410185,
- -0.11912260204553604, -0.007129301317036152, 0.07266265153884888, 0.08971888571977615,
- -0.06958645582199097, -0.009028049185872078, -0.11558148264884949, 0.040924713015556335,
- -0.034329306334257126, 0.051421523094177246, -0.00853252038359642, 0.05006227642297745,
- 0.041113704442977905, 0.014015686698257923, 0.0006773255299776793, -0.0776652842760086,
- -0.04396769404411316, 0.10926580429077148, -0.01546027697622776, -0.049468424171209335,
- 0.08904491364955902, -0.09117830544710159, 0.04345189779996872, -0.0015392375644296408,
- 0.1455879509449005, -0.15010331571102142, -0.011159032583236694, -0.0038157368544489145,
- -0.0278726015239954, 0.030954765155911446, -0.004662272986024618, -0.05933142453432083,
- -0.09110352396965027, 0.0671834945678711, 0.01962313801050186, 0.049118757247924805,
- 0.05794680118560791, -0.050175633281469345, 0.03410615772008896, 0.06058488041162491,
- 0.02976168692111969, -0.026450542733073235, 0.08389237523078918, 0.02478632517158985,
- -0.04843438044190407, -0.07189410924911499, 0.02118575945496559, 0.026202598586678505,
- 0.03813687711954117, 0.021799761801958084, 0.022783156484365463, -0.022061975672841072,
- -0.029213711619377136, 0.05419619753956795, 0.031987253576517105, 0.034972041845321655,
- 0.079184390604496, -0.09530320018529892, -0.04980090260505676, -0.04492982476949692,
- -0.0013432352570816875, 0.029973627999424934, -0.03173675388097763, 0.0833439901471138,
- 0.10735823214054108, 0.06654281914234161, 0.007006291765719652, 0.0447114072740078,
- 0.06502687931060791, 0.028898146003484726, -0.009449392557144165, 0.05920415371656418,
- -0.05139043182134628, -0.03927507624030113, -0.0364643931388855, 0.029609614983201027,
- 0.05169922858476639, 0.012090647593140602, -0.05672215670347214, -0.038955021649599075,
- -0.03795616328716278, -0.0814611092209816, -0.08984074741601944, -0.01805989444255829,
- 0.04906454309821129, 0.036960162222385406, -0.10659253597259521, -0.06899433583021164,
- -0.08419205248355865, -0.020282285287976265, 0.0704585611820221, 0.009341181255877018,
- -0.001740367733873427, -0.11976945400238037, 0.036753099411726, -0.02720458060503006,
- 0.04777360334992409, -0.008592984639108181, -0.005430798511952162, 0.005475105717778206,
- -0.08068284392356873, 0.02718372829258442, -0.005087297409772873, -0.0457078218460083,
- -0.10049096494913101, -0.06070960685610771, -0.046699605882167816, -0.02467983029782772,
- 0.03871700540184975, -0.02660347707569599, 0.024161333218216896, 0.03076457977294922,
- 0.05234898626804352, -0.024825390428304672, -0.0071563804522156715, 0.05220324173569679,
- -0.04546590894460678, 0.020826376974582672, 0.08135847002267838, -0.0337749682366848,
- 0.03499706834554672, -0.007972916588187218, -0.06636903434991837, -0.05136791616678238,
- -0.009219177067279816, -0.04059893265366554, 0.07698112726211548, -0.019129397347569466,
- -0.004543321207165718, -0.03488190099596977, -0.022345438599586487, 0.0501987561583519,
- -0.03575877472758293, -0.08682537823915482, -0.06750866770744324, 0.1130371019244194,
- -0.030771546065807343, 0.015237902291119099, 0.053614016622304916,
- -0.044668108224868774, 0.05578373745083809, 0.004752343986183405, 0.0017420026706531644,
- 0.039591025561094284, 0.05732014775276184, -0.031739749014377594, 0.02796979807317257,
- 0.07304690033197403, -0.006033436395227909, 0.036568447947502136, 0.07413651049137115,
- 0.42434558272361755, -0.18526045978069305, 0.08930554986000061, 0.10022318363189697,
- -0.006895042490214109, 0.048078037798404694, -0.04218573868274689, 0.06221599131822586,
- 0.06286349892616272, 0.08900149911642075, 0.07581169158220291, -0.0625729039311409,
- 0.01510809175670147, -0.07935254275798798, 0.08254175633192062, 0.007404026575386524,
- 0.03041805326938629, -0.027656204998493195, -0.05000612139701843, -0.020648915320634842,
- 0.047191690653562546, -0.05402631312608719, -0.0378846675157547, -0.01154334470629692,
- -0.05888744071125984, 0.015108929015696049, 0.01194243598729372, 0.042841292917728424,
- -0.02219381183385849, 0.03055049106478691, -0.04692942276597023, 0.004764735233038664,
- -0.00439680740237236, 0.03378909081220627, -0.08844805508852005, 0.06391414999961853,
- -0.05061472952365875, -0.07406201958656311, 0.06235114857554436, 0.0019100336357951164,
- 0.03849761560559273, 0.05860583484172821, 0.012700941413640976, 0.029643084853887558,
- 0.01786446012556553, -0.06371069699525833, 0.026532504707574844, 0.05776151269674301,
- 0.03690490871667862, 0.08377628028392792, 0.20267781615257263, -0.02381519041955471,
- -0.03579028695821762, -0.061998121440410614, 0.04429992660880089, 0.12211363017559052,
- -0.025836512446403503, 0.02658081240952015, 0.0009318164084106684,
- -0.020234916359186172, 0.016335221007466316, -0.0516788549721241, -0.08833984285593033,
- -0.06177626550197601, -0.07680812478065491, 0.07505297660827637, 0.03225546330213547,
- -0.03970063105225563, -0.1618483066558838, -0.037901949137449265, -0.026462629437446594,
- 0.0349687822163105, 0.11020312458276749, -0.05920068919658661, 0.02544953115284443,
- -0.0031299409456551075, 0.0012684043031185865, 0.004942174535244703,
- -0.10288213938474655, 0.0017380055505782366, -0.03734918683767319, 0.030097810551524162,
- 0.06765405088663101, 0.04090455174446106, -0.07022210955619812, 0.07895871996879578,
- -0.11050444096326828, 0.06750088930130005, -0.0042457119561731815,
- -0.026282457634806633, 0.024440566077828407, -0.0370207354426384, 0.044321995228528976,
- 0.0320519283413887, -0.021190179511904716, 0.026931289583444595, -0.014312105253338814,
- -0.0424639955163002, -0.10512807220220566, -0.06811502575874329, -0.04000528156757355,
- -0.05511672422289848, 0.04113740846514702, -0.11604829877614975, 0.006932908669114113,
- -0.03484735265374184, 0.0075632925145328045, -0.008473205380141735,
- 0.046677399426698685, -0.01516666729003191, -0.12641523778438568, -0.006964622996747494,
- -0.014392382465302944, 0.052630938589572906, -0.012522602453827858,
- -0.048511259257793427, 0.015737077221274376, 0.08626337349414825, 0.015891073271632195,
- -0.015242638066411018, 0.006266225595027208, -0.035351987928152084, 0.10825252532958984,
- -0.10206832736730576, -0.4630330204963684, 0.04696180671453476, 0.008626068942248821,
- 0.033306606113910675, 0.008477874100208282, -0.055163197219371796, 0.05399567261338234,
- -0.0071348948404192924, -0.023492440581321716, 0.07536379992961884,
- -0.04305586963891983, 0.016061600297689438, -0.013542216271162033, -0.07965154200792313,
- 0.010953768156468868, -0.08763676136732101, -0.04240163043141365, 0.03778129070997238,
- -0.033489905297756195, -0.03699006512761116, -0.10689924657344818, 0.02344489097595215,
- -0.002879174891859293, 0.010229619219899178, -0.004003892187029123,
- -0.009433427825570107, -0.06099797412753105, -0.05798659101128578, 0.03713635355234146,
- 0.014290791936218739, 0.02213788963854313, -0.09267497062683105, 0.002875818172469735,
- 0.06966377794742584, -0.0006682934472337365, 0.13918933272361755, 0.023406842723488808,
- 0.01636996865272522, -0.07151657342910767, 0.06879186630249023, 0.060694269835948944,
- 0.18734577298164368, -0.03403428941965103, 0.041161712259054184, -0.015841368585824966,
- 0.07772861421108246, 0.03575426712632179, 0.01880798302590847, -0.051456011831760406,
- -0.006255621090531349, -0.029519163072109222, -0.0053627523593604565,
- 0.05865885689854622, -0.09142687171697617, -0.03503439947962761, -0.032314199954271317,
- -0.012528719380497932, -0.027203332632780075, 0.028122801333665848, 0.1630435436964035,
- 0.0219570342451334, 0.029415830969810486, 0.021162979304790497, -0.059879645705223083,
- -0.004840674344450235, -0.06936781108379364, -0.08388225734233856,
- -0.011757949367165565, 0.0028730258345603943, 0.023004963994026184,
- -0.045528512448072433, -0.101715587079525, -0.01401867251843214, -0.017787529155611992,
- -0.01610109955072403, 0.10909651219844818, -0.02622465416789055, 0.012168574146926403,
- -0.030589086934924126, 0.13904176652431488, 0.037955883890390396, 0.05408380553126335,
- 0.045406170189380646, 0.1084328293800354, 0.0319695845246315, 0.01796829141676426,
- -0.04476286098361015, -0.05092716962099075, -0.014111571945250034, 0.16688863933086395,
- -0.02588758058845997, 0.13305005431175232, 0.03739279881119728, -0.03378625214099884,
- -0.05039039999246597, 0.035899776965379715, -0.009222899563610554,
- -0.0008503542048856616, -0.45479393005371094, -0.02521553635597229, 0.09822247922420502,
- 0.011807295493781567, 0.019530227407813072, 0.09545963257551193, 0.003491726703941822,
- -0.048119448125362396, -0.07452481985092163, -0.08854876458644867, 0.09548262506723404,
- -0.001928586047142744, 0.06600357592105865, -0.14014697074890137, 0.03722851350903511,
- 0.09630581736564636, -0.03836049139499664, -0.023101532831788063, 0.03708421811461449,
- -0.2233649045228958, -0.0030349029693752527, -0.023692050948739052, 0.12578339874744415,
- 0.020746376365423203, 0.04632488638162613, 0.07555178552865982, -0.032399386167526245,
- 0.026299674063920975, 0.026536449790000916, 0.011981476098299026, 0.04142835736274719,
- -0.01819855161011219, -0.02554829604923725, 0.10331026464700699, 0.053478583693504333,
- 0.09172802418470383, -0.01751614734530449, 11.908304214477539, 0.061616696417331696,
- 0.0783703625202179, -0.08683745563030243, 0.011422687210142612, -0.04196629300713539,
- 0.03256131708621979, -0.10863494873046875, 0.023693595081567764, 0.10242617130279541,
- -0.020632121711969376, -0.0270716343075037, -0.05539959669113159, -0.08941906690597534,
- 0.03218306228518486, -0.07473574578762054, -0.05169425904750824, -0.06023526191711426,
- 0.024817900732159615, -0.06311342120170593, -0.027648204937577248, 0.03984943777322769,
- 0.0567975714802742, 0.018988439813256264, -0.054129019379615784, 0.07996243238449097,
- 0.027087373659014702, -0.007988885045051575, 0.006606596522033215,
- -0.006353131495416164, 0.012116188183426857, 0.03373047336935997, 0.07357186079025269,
- 0.018282094970345497, 0.02909940294921398, 0.0445282869040966, 0.0246224757283926,
- 0.016435950994491577, 0.030868344008922577, 0.06338375061750412, 0.010963790118694305,
- 0.00044105632696300745, 0.036920227110385895, 0.03406113386154175, 0.04061432182788849,
- 0.02535087615251541, -0.00677671330049634, 0.13429391384124756, 0.004765146411955357,
- 0.03451729565858841, 0.08894170820713043, -0.0026033760514110327, 0.09429295361042023,
- 0.06692720949649811, -0.019797341898083687, 0.06552598625421524, -0.020291607826948166,
- -0.07518284022808075, 0.08478818833827972, 0.0152185233309865, -0.038149453699588776,
- 0.09457378834486008, 0.02533562481403351, 0.12387268245220184, 0.012982523068785667,
- 0.03333349525928497, 0.06080791354179382, 0.09525717794895172, -0.12094905227422714,
- -0.08673879504203796, 0.037847910076379776, -0.0709390789270401, -0.046891480684280396,
- 0.06565120816230774, 0.11593978106975555, -0.05298086255788803, 0.05743572860956192,
- -0.015531143173575401, 0.04422484710812569, -0.06073017790913582, 0.005571600049734116,
- 0.05954040586948395, -0.04236547648906708, 0.02309536188840866, 0.04334409907460213,
- 0.04062015563249588, 0.09843875467777252, 0.0656459704041481, 0.006736208219081163,
- -0.0869598463177681, -0.04569442942738533, 0.02648930624127388, 0.001752969459630549,
- -0.040967199951410294, -0.003036408917978406, -0.06879797577857971, 0.02552744746208191,
- -0.14759142696857452, 0.09690794348716736, 0.06638045608997345, -0.06891287863254547,
- -0.026219990104436874, -0.037115342915058136, 0.11073575913906097, 0.0409579761326313,
- -0.01752161607146263, -0.07818043231964111, -0.0087948739528656, 0.021911608055233955,
- 0.035557810217142105, -0.016553500667214394, 0.06145665794610977, 0.057142216712236404,
- -0.05843944475054741, 0.03733368590474129, 0.07063302397727966, -0.03658319264650345,
- 0.008033131249248981, 0.06045418605208397, 0.05754241347312927, -0.07851007580757141,
- -0.0431654192507267, -0.05289335548877716, -0.05212663486599922, -0.012606976553797722,
- -0.06309263408184052, -0.005628190003335476, 0.002354999538511038, -0.04893918335437775,
- -0.031236253678798676, 0.02586379647254944, 0.05295879393815994, 0.11046778410673141,
- 0.03204244002699852, 0.0783814862370491, -0.057006679475307465, -0.03324921801686287,
- 0.07193520665168762, 0.04054407402873039, 0.05994615703821182, -0.011983700096607208,
- -0.0039346604607999325, -0.054306115955114365, -0.09335030615329742,
- 0.04029934108257294, 0.06861226260662079, 0.025944160297513008, 0.04659353196620941,
- 0.04496295750141144, -0.06153612583875656, -0.02656775526702404, 0.06900204718112946,
- 0.05789536237716675, 0.030083997175097466, 0.05054996907711029, -0.027797354385256767,
- -0.016677120700478554, 0.0923965573310852, -0.039244264364242554, 0.005434995982795954,
- 0.045179709792137146, -0.03928893432021141, 0.05130486562848091, 0.09805160015821457,
- 0.022853922098875046, 0.05624614655971527, 0.011637152172625065, 0.015674928203225136,
- 0.016996320337057114, -0.00917249359190464, 0.008549691177904606, -0.024464381858706474,
- -0.06762965023517609, -0.07075761258602142, 0.048033371567726135, 0.07569093257188797,
- 0.031122751533985138, -0.14543694257736206, -0.00638365326449275, -0.04335913807153702
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 220,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Tyler Sonnemaker"],
- "epoch_date_downloaded": 1664928000,
- "epoch_date_modified": 1665100800,
- "epoch_date_submitted": 1664928000,
- "flag": null,
- "report_number": 2061,
- "source_domain": "businessinsider.com",
- "submitters": ["Ingrid Dickinson (CSET)"],
- "title": "Facebook's AI-fueled attempt to block bad ads is hurting legitimate small business owners — and its 'pay-to-play' customer support is leaving them stranded ahead of the holiday shopping season",
- "url": "https://www.businessinsider.com/facebook-ad-purge-hurting-small-business-owners-holiday-shopping-season-2020-11"
- },
- {
- "__typename": "Report",
- "authors": ["Sarah Frier", " Bloomberg"],
- "epoch_date_downloaded": 1661731200,
- "epoch_date_modified": 1661731200,
- "epoch_date_submitted": 1661731200,
- "flag": null,
- "report_number": 1969,
- "source_domain": "fortune.com",
- "submitters": ["Ingrid Dickinson (CSET)"],
- "title": "Facebook’s AI is mistakenly banning some small business’ ads",
- "url": "https://fortune.com/2020/11/28/facebooks-ai-is-mistakenly-banning-some-small-business-ads/"
- },
- {
- "__typename": "Report",
- "authors": ["Sarah Frier"],
- "epoch_date_downloaded": 1606608000,
- "epoch_date_modified": 1654732800,
- "epoch_date_submitted": 1653868800,
- "flag": null,
- "report_number": 1732,
- "source_domain": "post-gazette.com",
- "submitters": ["Thomas Giallella (CSET)"],
- "title": "Facebook's AI mistakenly bans ads for struggling businesses",
- "url": "https://www.post-gazette.com/business/tech-news/2020/11/28/Facebook-s-AI-mistakenly-bans-ads-for-struggling-businesses/stories/202011280041"
- },
- {
- "__typename": "Report",
- "authors": ["Riya Baibhawi"],
- "epoch_date_downloaded": 1606608000,
- "epoch_date_modified": 1654732800,
- "epoch_date_submitted": 1653868800,
- "flag": null,
- "report_number": 1731,
- "source_domain": "republicworld.com",
- "submitters": ["Thomas Giallella (CSET)"],
- "title": "Facebook’s AI mistakenly blocks ads of struggling businesses; tech giant issues apology",
- "url": "https://www.republicworld.com/technology-news/social-media-news/facebooks-ai-mistakenly-blocks-ads-of-struggling-businesses-tech-giant-issues-apology.html"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "tesla",
- "name": "Tesla"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "tesla",
- "name": "Tesla"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "road-engineer",
- "name": "road engineer"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1734, 1733],
- "vector": [
- -0.08765345811843872, 0.08385635912418365, 0.02837410941720009, -0.09165464341640472,
- 0.08575715124607086, 0.02709212899208069, -0.02367052063345909, 0.05211949348449707,
- 0.04131324589252472, -0.16316020488739014, -0.02679929882287979, 0.0339602530002594,
- 0.0058654723688960075, -0.0701851099729538, 0.026055606082081795, -0.12786522507667542,
- -0.030869457870721817, 0.0071146320551633835, -0.00019629579037427902,
- -0.1122448593378067, -0.04904639720916748, -0.007796251680701971, 0.024613913148641586,
- 0.09241804480552673, -0.10784463584423065, 0.026933681219816208, 0.07761059701442719,
- 0.0904456079006195, -0.0701381266117096, 0.04895299673080444, -0.009261080995202065,
- -0.036957692354917526, 0.12306512892246246, -0.01938636042177677, 0.008041193708777428,
- 0.09011420607566833, 0.022503579035401344, 0.0008637320715934038, -0.06159013509750366,
- 0.02324908971786499, 0.0070578171871602535, 0.23982934653759003, 0.03065509721636772,
- -0.05423836410045624, 0.04532390087842941, -0.08239363133907318, 0.0250664371997118,
- 0.059293463826179504, 0.04508582875132561, 0.017472442239522934, -0.009852437302470207,
- 0.0898597463965416, -0.019704794511198997, 0.054822877049446106, -0.15676987171173096,
- 0.0995108038187027, 0.043626464903354645, -0.0011792350560426712, 0.07055023312568665,
- -0.11108367145061493, -0.04743538424372673, -0.2933282256126404, -0.015411130152642727,
- -0.0816442221403122, 0.0846041738986969, -0.097757987678051, -0.02019231952726841,
- 0.01398962177336216, 0.05328885093331337, 0.07041287422180176, 0.059166885912418365,
- -0.030702577903866768, -0.026689130812883377, 0.012453477829694748,
- 0.0032916488125920296, 0.012724218890070915, -0.03289032354950905, 0.21016713976860046,
- -0.14871764183044434, -0.012308727018535137, 0.1107400432229042, -0.11440500617027283,
- 0.5193630456924438, 0.006383405067026615, -0.047511376440525055, -0.04772482439875603,
- 0.14420674741268158, 0.012400257401168346, 0.06209588050842285, 0.04599873721599579,
- -0.05312033370137215, -0.00600600428879261, -0.05812682956457138, 0.07787270843982697,
- 0.04699045792222023, 0.05439375713467598, -0.028536193072795868, 0.09865741431713104,
- 0.006784358061850071, -0.062174104154109955, 0.046074703335762024, -0.03222116082906723,
- 0.12674467265605927, 0.04022849351167679, -0.03239438682794571, -0.023441825062036514,
- 0.11895427107810974, -0.06399650871753693, 0.08490605652332306, -0.034377895295619965,
- 0.007165839895606041, 0.03438606858253479, 0.0659923404455185, -0.002790501806885004,
- 0.045350391417741776, -0.06591573357582092, 0.028074879199266434, 0.05680393427610397,
- 0.08697222173213959, -0.004027372691780329, -0.020877957344055176, 0.06379231810569763,
- 0.06713619083166122, -0.057941194623708725, -0.009304771199822426, -0.06828092783689499,
- -0.0809284895658493, -0.04746727645397186, -0.03338362276554108, 0.03020898997783661,
- -0.0777822881937027, -0.2580316662788391, 0.012944575399160385, 0.07045647501945496,
- -0.008724691346287727, -0.06304200738668442, -0.013563678599894047,
- -0.10066230595111847, 0.041963644325733185, -0.05115741491317749, -0.01902274787425995,
- 0.04069653898477554, 0.054698675870895386, 0.038385938853025436, 0.130914106965065,
- 0.0910937488079071, -0.03694075345993042, -0.07516036927700043, -0.014383934438228607,
- 0.011847958900034428, 0.09703826904296875, -0.14918240904808044, -0.05495765805244446,
- 0.02007678523659706, -0.02647356316447258, 0.7110188007354736, 0.11189347505569458,
- 0.20435354113578796, 0.04485428333282471, -0.03850173577666283, 0.18190515041351318,
- 0.025175970047712326, 0.09696665406227112, -0.0813644677400589, -0.05506765842437744,
- 0.04569278657436371, -0.0813477635383606, -0.04432319104671478, 0.05402522534132004,
- 0.022727448493242264, 0.11752594262361526, 0.025921812281012535, 0.1397084891796112,
- -0.02409006655216217, -0.1147996187210083, 0.00018806452862918377, 0.10523244738578796,
- 0.03372646123170853, -0.07924742996692657, -0.05451115220785141, 0.008229754865169525,
- 0.09091748297214508, -0.06620079278945923, 0.02943599969148636, -0.027422450482845306,
- 0.05200052633881569, -0.04937177523970604, 0.03399192541837692, -0.027537694200873375,
- 0.03300781920552254, 0.0442681647837162, 0.10684821009635925, -0.009921383112668991,
- -0.11191363632678986, -0.0326397642493248, 0.09157904982566833, 0.009456152096390724,
- -0.03251158073544502, 0.014712966047227383, -0.09676676988601685, 0.04217272996902466,
- -0.015677519142627716, 0.14361247420310974, -0.10689394176006317, 0.03347477316856384,
- 0.010224667377769947, 0.03190292418003082, 0.06714317947626114, 0.006256279535591602,
- -0.0807395949959755, -0.05751309171319008, 0.04160097613930702, 0.05454191938042641,
- 0.07634337246417999, 0.1130392998456955, -0.013139726594090462, 0.08788979053497314,
- 0.06523533165454865, -0.010921912267804146, -0.008606946095824242, 0.05352671444416046,
- 0.08778823912143707, -0.04460245370864868, -0.03062538057565689, -0.015353560447692871,
- 0.025914136320352554, 0.01032772846519947, -0.03189035877585411, 0.04616251587867737,
- 0.02551683411002159, -0.02963585965335369, 0.0342586487531662, -0.006090842187404633,
- 0.04108596220612526, 0.166559100151062, -0.05587176978588104, -0.07168196141719818,
- -0.042748067528009415, -0.04841407388448715, -0.00026375107700005174,
- -0.03650444746017456, 0.13122963905334473, 0.08096760511398315, 0.1354212760925293,
- 0.05639610439538956, 0.04111709073185921, 0.06073208525776863, 0.15513727068901062,
- 0.03715777024626732, 0.09134204685688019, -0.053307924419641495, -0.11940952390432358,
- -0.014466745778918266, 0.012427345849573612, 0.04519955813884735, 0.030490480363368988,
- -0.04696249961853027, -0.04636242985725403, -0.05363716930150986, -0.05112505704164505,
- -0.07991262525320053, 0.04806874319911003, 0.015003811568021774, 0.07907211035490036,
- -0.01931668259203434, -0.07121014595031738, -0.1125268042087555, 0.01137860119342804,
- 0.0696045532822609, 0.035874009132385254, -0.02052205055952072, -0.1032821387052536,
- -0.027453068643808365, -0.07545341551303864, 0.0429852120578289, 0.011212489567697048,
- -0.005859849974513054, -0.03266524896025658, -0.08418655395507812, 0.026476096361875534,
- -0.05715564265847206, -0.0000158522161655128, -0.07617929577827454,
- -0.10686300694942474, -0.050033099949359894, -0.03782936558127403, 0.008113713935017586,
- -0.01884973794221878, 0.047701381146907806, 0.018685657531023026, 0.0467146672308445,
- -0.007565672043710947, -0.05533505231142044, 0.05879881978034973, -0.017006171867251396,
- -0.024105647578835487, 0.09825460612773895, -0.039396923035383224, 0.003504228312522173,
- 0.021744903177022934, -0.1381368786096573, -0.008571726270020008, 0.02066761441528797,
- -0.0823536217212677, 0.02994738146662712, -0.0018876648973673582, 0.01907912641763687,
- -0.013393638655543327, 0.026369256898760796, 0.06425248831510544, -0.05962003767490387,
- -0.10939639806747437, -0.07913529127836227, 0.09935438632965088, 0.002247882541269064,
- -0.013861025683581829, 0.06351344287395477, -0.06498187780380249, 0.07375790923833847,
- -0.017898233607411385, -0.015183626674115658, 0.023919427767395973, 0.0738484114408493,
- -0.019053654745221138, 0.009675116278231144, 0.04747598618268967, -0.08271153271198273,
- 0.029434125870466232, 0.11112739145755768, 0.4533526301383972, -0.1966678500175476,
- 0.08208960294723511, 0.10051991045475006, -0.043340060859918594, 0.06005021929740906,
- -0.06371849775314331, 0.10377441346645355, 0.05153724551200867, 0.10673905909061432,
- 0.13281197845935822, -0.026030635461211205, -0.03659900277853012, -0.09771545231342316,
- 0.1009206622838974, -0.027310647070407867, 0.0032613473013043404, -0.018624331802129745,
- -0.12934410572052002, -0.01996329054236412, 0.056948140263557434, -0.05201122909784317,
- -0.005888261832296848, -0.021551363170146942, -0.1071806401014328, 0.006668413523584604,
- 0.04163430631160736, 0.022341301664710045, -0.04804603010416031,
- -0.00010017072781920433, -0.04048433154821396, 0.040220826864242554,
- -0.011353770270943642, 0.03746779263019562, -0.12847092747688293, 0.04795309901237488,
- -0.14226572215557098, -0.08831533789634705, 0.08095378428697586, -0.03524573892354965,
- 0.05747213587164879, 0.08857254683971405, -0.07015195488929749, 0.02052808552980423,
- -0.03879287838935852, -0.058204181492328644, 0.06027437746524811, 0.05389770120382309,
- 0.010098768398165703, 0.12418034672737122, 0.15197139978408813, -0.03724869713187218,
- -0.07299456000328064, -0.08105754852294922, 0.09006088972091675, 0.1043471172451973,
- -0.03226330876350403, 0.03236520290374756, -0.0717456266283989, -0.038095589727163315,
- -0.002454092726111412, -0.04321267455816269, -0.036508072167634964,
- -0.01814776100218296, -0.03725408390164375, 0.05894578993320465,
- -0.00019984692335128784, -0.02213670313358307, -0.1509391963481903,
- -0.013775495812296867, -0.046367987990379333, 0.002454138360917568, 0.10835432261228561,
- -0.02709587663412094, 0.014532925561070442, 0.0769839733839035, -0.06491947174072266,
- -0.031167790293693542, -0.13783414661884308, 0.02176833525300026, -0.03794209659099579,
- 0.03521654009819031, 0.0292193703353405, 0.07154132425785065, -0.017112599685788155,
- 0.08854876458644867, -0.09573598206043243, 0.04229830577969551, 0.027726367115974426,
- -0.019878674298524857, 0.04563335329294205, -0.0327296145260334, 0.03131673112511635,
- 0.05701476335525513, -0.07478988170623779, 0.04504426196217537, -0.05132443830370903,
- -0.06181146204471588, -0.1223248615860939, -0.09925490617752075, -0.03280017152428627,
- -0.08587296307086945, 0.0818527340888977, -0.10021074116230011, -0.043152689933776855,
- -0.027646664530038834, -0.02256583608686924, 0.022087031975388527, 0.04963134229183197,
- 0.08910032361745834, -0.17638200521469116, 0.056811973452568054, -0.04695296287536621,
- 0.0934811532497406, -0.07058227062225342, 0.004644683562219143, 0.02361292764544487,
- 0.11734360456466675, 0.0795915499329567, 0.0652754157781601, 0.016283590346574783,
- -0.07067931443452835, 0.01700807735323906, -0.09057071805000305, -0.5297117233276367,
- 0.06423991918563843, 0.025900421664118767, 0.039506737142801285, 0.01336417905986309,
- -0.03537242114543915, 0.08290588110685349, 0.0059054819867014885, -0.06611128151416779,
- 0.0858285129070282, -0.06486355513334274, 0.030772710219025612, 0.013560933992266655,
- -0.07817071676254272, -0.08670168370008469, -0.06299041211605072, -0.04785338044166565,
- 0.09896711260080338, -0.02877233177423477, -0.11280573904514313, -0.1200074777007103,
- 0.042518410831689835, -0.03710657358169556, 0.0001423652865923941, -0.02685396373271942,
- 0.009110740385949612, -0.08387681841850281, -0.050402820110321045, 0.03600723296403885,
- 0.028504282236099243, 0.0632333904504776, -0.10716825723648071, -0.008718203753232956,
- 0.01609846204519272, -0.055860020220279694, 0.166934996843338, 0.008592711761593819,
- -0.024017883464694023, -0.13232633471488953, 0.06290845572948456, 0.019137190654873848,
- 0.18137896060943604, -0.01612202823162079, 0.03910788893699646, 0.05682695284485817,
- 0.1968103051185608, 0.08047527074813843, 0.006259936839342117, -0.03552461415529251,
- 0.0172071922570467, 0.028800027444958687, -0.05007695406675339, 0.031191173940896988,
- -0.05006493628025055, -0.024316437542438507, 0.0223444364964962, 0.020594855770468712,
- -0.017063451930880547, 0.04993057623505592, 0.21801641583442688, 0.011581052094697952,
- 0.03697257116436958, -0.023915091529488564, -0.06140180304646492, -0.015953481197357178,
- -0.013798736967146397, -0.12030787765979767, -0.06328173726797104,
- -0.008248942904174328, 0.007527189329266548, -0.08117768168449402, -0.13738439977169037,
- -0.0023928149603307247, -0.039144523441791534, 0.002072757575660944,
- 0.11805601418018341, 0.017277397215366364, 0.04659220203757286, -0.0003591239801608026,
- 0.09820660203695297, 0.06534428149461746, -0.004441184923052788, 0.08979223668575287,
- 0.08883358538150787, 0.004657500423491001, 0.0008853813633322716, -0.01586003787815571,
- -0.05836598947644234, 0.008047757670283318, 0.1408993899822235, -0.07557348161935806,
- 0.056525543332099915, 0.062376491725444794, -0.031721923500299454, -0.10163874924182892,
- -0.0032074032351374626, 0.003544260747730732, 0.08766508102416992, -0.4757448434829712,
- -0.0026547685265541077, 0.14333538711071014, 0.024396782740950584, 0.006238538306206465,
- 0.11917322874069214, 0.055285610258579254, -0.017186906188726425, -0.036224186420440674,
- -0.06808462738990784, 0.17205440998077393, -0.05926431342959404, 0.051263000816106796,
- -0.07639458775520325, 0.03907233104109764, 0.09213745594024658, -0.04135633260011673,
- -0.017493460327386856, 0.07743299007415771, -0.22014884650707245, 0.015911882743239403,
- -0.03940260410308838, 0.16872620582580566, 0.03646695613861084, 0.04561297595500946,
- 0.033458344638347626, -0.07215597480535507, 0.07637806236743927, 0.07234957814216614,
- -0.02992246113717556, 0.061524927616119385, -0.0002171071246266365,
- -0.015051891095936298, 0.13269111514091492, 0.08025243878364563, 0.1138656884431839,
- -0.05254916846752167, 12.218049049377441, 0.04415224492549896, 0.042662788182497025,
- -0.06375892460346222, 0.030514627695083618, -0.07425779849290848, 0.0459752231836319,
- -0.14163333177566528, 0.038703661412000656, 0.12802235782146454, -0.009127351455390453,
- -0.038700900971889496, 0.01828027330338955, -0.13975217938423157, 0.013843949884176254,
- -0.11106251180171967, -0.04071458429098129, -0.0181279219686985, 0.032087292522192,
- -0.09029603004455566, -0.003351236693561077, -0.00446452246978879, 0.1051206886768341,
- 0.047513946890830994, -0.07023151218891144, 0.07953803241252899, 0.04622992128133774,
- -0.006608747877180576, 0.0097800362855196, 0.018382130190730095, -0.03617028892040253,
- 0.0378161296248436, 0.04235899820923805, 0.0076613761484622955, -0.0011746506206691265,
- 0.06928737461566925, 0.031649935990571976, 0.07888337969779968, 0.03030451387166977,
- 0.06933416426181793, 0.01946280151605606, -0.003593810833990574, 0.0660773515701294,
- 0.06120092421770096, 0.0388803631067276, 0.058043427765369415, 0.09516122937202454,
- 0.12691593170166016, 0.03472438454627991, 0.023028099909424782, 0.11116485297679901,
- 0.015026919543743134, 0.15014709532260895, 0.018221072852611542, 0.016866518184542656,
- 0.06043906509876251, -0.04090113192796707, -0.1014399453997612, 0.10661238431930542,
- 0.12117628008127213, -0.04194756597280502, 0.08097319304943085, 0.02372724376618862,
- 0.10586396604776382, -0.07892893254756927, 0.02546033449470997, 0.10598218441009521,
- 0.03830520436167717, -0.1545436829328537, -0.11704754829406738, 0.0999394953250885,
- -0.11915844678878784, -0.09527735412120819, -0.007841704413294792, 0.13487324118614197,
- -0.04250456765294075, 0.08058975636959076, -0.09316705167293549, 0.034319788217544556,
- -0.06392756849527359, -0.038547925651073456, 0.040072668343782425,
- -0.0011580619029700756, 0.007189609110355377, 0.022767076268792152,
- 0.008565617725253105, 0.10342226922512054, 0.07634425908327103, -0.030125688761472702,
- -0.06884646415710449, -0.14487220346927643, 0.09013800323009491, -0.04608277976512909,
- -0.05362151563167572, 0.016284886747598648, -0.015568941831588745, 0.07729166746139526,
- -0.2008885145187378, 0.053087301552295685, 0.04909049719572067, -0.14054127037525177,
- -0.03546275570988655, -0.0326547771692276, 0.019031133502721786, -0.033672165125608444,
- 0.07255957275629044, -0.04600483924150467, 0.017817983403801918, 0.02718527987599373,
- 0.02797156386077404, -0.008016509935259819, 0.06289979070425034, 0.1550614833831787,
- -0.09898407757282257, 0.08222827315330505, 0.03737092390656471, -0.042160093784332275,
- -0.05470098927617073, 0.04403097182512283, 0.06497424095869064, -0.05912894010543823,
- -0.08165689557790756, -0.026844406500458717, -0.0709163248538971, -0.057454027235507965,
- -0.01903291419148445, 0.018654795363545418, 0.027954615652561188, -0.05910585820674896,
- 0.0010745774488896132, 0.02849266678094864, 0.03219136595726013, 0.07878495007753372,
- -0.002696171635761857, 0.06661362200975418, -0.09095302224159241, -0.036744240671396255,
- 0.0545777752995491, 0.06077742576599121, 0.037007056176662445, -0.002354925498366356,
- -0.024093367159366608, -0.08460485935211182, -0.11758464574813843, 0.0307016521692276,
- 0.15046891570091248, 0.09847937524318695, 0.07245950400829315, 0.0030280984938144684,
- -0.0862576961517334, -0.07086331397294998, 0.10367147624492645, 0.03432591259479523,
- 0.04178668186068535, -0.012686243280768394, -0.12343700230121613, -0.045451290905475616,
- 0.1729821264743805, -0.04001622647047043, 0.01859983243048191, -0.03231147304177284,
- -0.01705600693821907, 0.12988847494125366, 0.1572341024875641, 0.1157582551240921,
- 0.03855544701218605, 0.01885187439620495, 0.0083162821829319, 0.009994225576519966,
- -0.04946180433034897, 0.04169413447380066, -0.007959786802530289, -0.183039128780365,
- -0.067758709192276, 0.042166661471128464, 0.09912081062793732, -0.06604540348052979,
- -0.1079641804099083, -0.033764686435461044, -0.009477594867348671
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 221,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Keoni Everington"],
- "epoch_date_downloaded": 1653868800,
- "epoch_date_modified": 1654732800,
- "epoch_date_submitted": 1653868800,
- "flag": null,
- "report_number": 1734,
- "source_domain": "taiwannews.com.tw",
- "submitters": ["Khoa Lam"],
- "title": "Worker dies after Tesla on autopilot collides with repair truck in northern Taiwan",
- "url": "https://www.taiwannews.com.tw/en/news/4465912"
- },
- {
- "__typename": "Report",
- "authors": ["Gustavo Henrique Ruffo"],
- "epoch_date_downloaded": 1653868800,
- "epoch_date_modified": 1654732800,
- "epoch_date_submitted": 1653868800,
- "flag": null,
- "report_number": 1733,
- "source_domain": "autoevolution.com",
- "submitters": ["Khoa Lam"],
- "title": "Tesla Model 3 on Autopilot Crashes Against Emergency Vehicle in Taiwan",
- "url": "https://www.autoevolution.com/news/tesla-model-3-on-autopilot-crashes-against-emergency-vehicle-in-taiwan-183793.html"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "satria-technologies",
- "name": "Satria Technologies"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "openai",
- "name": "OpenAI"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "twitter-users",
- "name": "Twitter Users"
- },
- {
- "__typename": "Entity",
- "entity_id": "thoughts-users",
- "name": "Thoughts users"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1735],
- "vector": [
- -0.04906803369522095, 0.04153268784284592, 0.01683199405670166, -0.10322034358978271,
- 0.12992829084396362, -0.04158567637205124, 0.0007685693562962115, 0.0673736110329628,
- 0.011601283214986324, -0.13916614651679993, -0.028875526040792465, 0.029791487380862236,
- 0.025405557826161385, -0.06142731010913849, 0.04793424531817436, -0.047974713146686554,
- -0.07165537029504776, 0.014797819778323174, 0.023666827008128166, -0.05643877387046814,
- -0.08276409655809402, -0.031228601932525635, -0.006280519999563694, 0.10679767280817032,
- -0.00444045988842845, 0.02842087857425213, 0.11921971291303635, 0.11803445965051651,
- -0.060858845710754395, 0.029691608622670174, -0.023524988442659378,
- -0.04500307887792587, 0.12698134779930115, -0.03863471746444702, 0.010108469054102898,
- 0.09820500761270523, 0.06269501894712448, -0.01920313760638237, -0.05037287250161171,
- -0.014034244231879711, 0.04804994538426399, 0.1175076812505722, -0.0025920586194843054,
- -0.005541464313864708, 0.07525277882814407, 0.028803085908293724, -0.008979860693216324,
- 0.006130588240921497, -0.03751368075609207, -0.008066731505095959,
- -0.002014472149312496, 0.01301894523203373, -0.022180115804076195,
- -0.018819695338606834, -0.0342034175992012, 0.03668059781193733, 0.05007217079401016,
- 0.0523400716483593, 0.030913952738046646, -0.02246505580842495, -0.015344475395977497,
- -0.07780937850475311, -0.04842034727334976, -0.040160030126571655, 0.06437017768621445,
- -0.05222509428858757, -0.030163446441292763, -0.02900564670562744,
- -0.019286982715129852, 0.031912460923194885, 0.05084530636668205, -0.04354936257004738,
- -0.03285980224609375, -0.011333522386848927, -0.05558200553059578,
- -0.036640506237745285, -0.02153795026242733, 0.2950696647167206, -0.13488230109214783,
- 0.017275501042604446, 0.05897001177072525, -0.1088796854019165, 0.2540041208267212,
- 0.05422760173678398, -0.005625363904982805, 0.012290526181459427, 0.03891613334417343,
- 0.010168328881263733, 0.00006586159724975005, 0.04417787492275238, 0.06336326152086258,
- 0.04894031211733818, -0.008734413422644138, -0.008525335229933262, 0.025058187544345856,
- 0.014844335615634918, -0.01959112286567688, -0.12955151498317719, -0.009909610264003277,
- -0.04832276329398155, 0.015755023807287216, -0.06587095558643341, 0.10063998401165009,
- 0.09810497611761093, -0.018092602491378784, -0.0066595738753676414, 0.09750833362340927,
- -0.03948533535003662, 0.029571153223514557, -0.007284766528755426, 0.025254296138882637,
- 0.03250696510076523, 0.03271091729402542, 0.024601848796010017, 0.0003976745647378266,
- -0.030926203355193138, 0.009390384890139103, 0.051261261105537415, 0.06296868622303009,
- 0.09043975919485092, -0.0277726873755455, 0.06885172426700592, 0.10213738679885864,
- -0.08978218585252762, -0.00881048385053873, -0.030313989147543907,
- -0.009838310070335865, 0.006946535315364599, -0.05249933525919914, 0.03003525547683239,
- -0.027077792212367058, -0.15426132082939148, -0.03461010754108429, 0.04682328179478645,
- -0.051916707307100296, 0.034136515110731125, 0.05775868147611618, -0.04908088967204094,
- -0.016394654288887978, -0.02482270449399948, 0.005469182506203651, 0.02124042436480522,
- 0.05453356355428696, 0.03392581641674042, 0.084590382874012, 0.00977675337344408,
- -0.02415991574525833, -0.06766822934150696, -0.02811913564801216, -0.07882329821586609,
- 0.09696944057941437, -0.08011680841445923, -0.006055717822164297, 0.029362667351961136,
- -0.05899002030491829, 0.4817982614040375, 0.06339234113693237, 0.09783735871315002,
- -0.004317727405577898, 0.018068036064505577, 0.14737334847450256, 0.03273933380842209,
- -0.038271933794021606, -0.004588603042066097, -0.025596365332603455,
- -0.013311687856912613, -0.04748510196805, -0.013154991902410984, 0.043119706213474274,
- 0.02278073877096176, 0.09675460308790207, 0.004540664609521627, 0.07887375354766846,
- -0.04120820388197899, -0.06808474659919739, -0.020832087844610214,
- -0.016189830377697945, -0.03001074306666851, -0.10957956314086914, 0.008870436809957027,
- 0.06282258033752441, 0.08881688863039017, -0.03190506249666214, 0.02914784662425518,
- -0.0585293211042881, 0.030168134719133377, 0.012972462922334671, 0.042661216109991074,
- 0.029085926711559296, 0.033853646367788315, 0.07126316428184509, 0.005118762142956257,
- -0.010209081694483757, 0.0037925709038972855, -0.013163658790290356,
- 0.09056965261697769, 0.020687881857156754, -0.051515158265829086, 0.09022694081068039,
- -0.04237594082951546, 0.016866590827703476, -0.06206661835312843, 0.08969943970441818,
- -0.16194957494735718, 0.09137239307165146, -0.014460009522736073, -0.059348125010728836,
- 0.03658222034573555, -0.017659489065408707, -0.12268094718456268, -0.0817452073097229,
- 0.11894398927688599, 0.03640803322196007, 0.06800820678472519, 0.05281440541148186,
- -0.042447254061698914, -0.002830961486324668, 0.0619565024971962, 0.027687713503837585,
- -0.06286222487688065, 0.0483090803027153, 0.03384583815932274, -0.047193799167871475,
- 0.007855641655623913, 0.020458558574318886, 0.013098055496811867, 0.05215340852737427,
- 0.01702049747109413, 0.01610778644680977, -0.04211634770035744, 0.006002036388963461,
- 0.021186741068959236, 0.0294976644217968, 0.012451885268092155, 0.04615187644958496,
- -0.12344765663146973, -0.01302375178784132, -0.04566233977675438, -0.019668512046337128,
- 0.04780501499772072, -0.05420824885368347, 0.051511332392692566, 0.0852615237236023,
- 0.04169849306344986, 0.007047621998935938, 0.0434788279235363, 0.0028741369023919106,
- 0.03623224049806595, -0.04358922690153122, 0.06665058434009552, -0.004814385902136564,
- 0.031444914638996124, -0.04170989245176315, 0.0022587848361581564, 0.03712552413344383,
- -0.050830233842134476, -0.09028030186891556, -0.02108290232717991,
- -0.007427820935845375, 0.03865300863981247, -0.07836364954710007, -0.06917930394411087,
- 0.0008467069128528237, 0.0005115645471960306, -0.09264492988586426,
- -0.08829189091920853, -0.03875211626291275, -0.008175875060260296, 0.01757645420730114,
- -0.05010097101330757, -0.009851622395217419, -0.0708460658788681, 0.009155378676950932,
- 0.010780458338558674, -0.002617852296680212, -0.0071884263306856155,
- -0.04002006724476814, -0.08106507360935211, -0.06311716139316559, -0.006473596673458815,
- 0.04269563779234886, -0.02940455637872219, -0.06133705750107765, -0.055399924516677856,
- -0.0526997372508049, 0.019191313534975052, -0.01621384546160698, -0.027765357866883278,
- -0.01069630030542612, 0.048510149121284485, 0.019253341481089592, -0.017077138647437096,
- -0.017509523779153824, 0.045363713055849075, -0.0073354123160243034,
- 0.031153365969657898, 0.056248974055051804, -0.022733381018042564, 0.045770063996315,
- 0.021099787205457687, -0.061200860887765884, -0.05617896467447281,
- -0.010641955770552158, -0.029955781996250153, 0.02298399992287159, -0.03155242279171944,
- 0.011071444489061832, -0.029843419790267944, 0.035559263080358505, 0.0473569817841053,
- -0.01637408882379532, -0.02582661248743534, -0.06816662847995758, 0.11739357560873032,
- 0.030269892886281013, 0.022428734228014946, -0.015132665634155273,
- -0.003786305198445916, 0.02868044003844261, 0.026859872043132782, 0.02281581051647663,
- 0.054732318967580795, 0.11955540627241135, 0.0028682975098490715, -0.024551238864660263,
- 0.05191420763731003, 0.0193418450653553, 0.016443032771348953, 0.0825793668627739,
- 0.39373478293418884, -0.2275521606206894, 0.08743849396705627, 0.06721797585487366,
- -0.00153997796587646, 0.05223647505044937, -0.019155502319335938, 0.08632675558328629,
- -0.0015293639153242111, 0.05110641568899155, 0.10198657214641571, -0.055323291569948196,
- 0.03066871128976345, 0.012590249069035053, 0.03148750588297844, 0.03376789763569832,
- -0.008967523463070393, 0.0012010610662400723, -0.05805128067731857,
- 0.0007055985042825341, -0.008108522742986679, -0.0479557104408741, 0.03378557786345482,
- -0.027355019003152847, -0.07887065410614014, 0.0156685933470726, 0.08403270691633224,
- 0.03484836593270302, -0.05392013117671013, 0.07504361122846603, -0.020793691277503967,
- -0.027450067922472954, 0.015736011788249016, 0.010636096820235252, -0.07007806748151779,
- 0.1357092708349228, -0.07242145389318466, -0.03695552796125412, 0.0463075190782547,
- 0.012377683073282242, 0.0020753047429025173, 0.019774071872234344,
- -0.0017797437030822039, 0.02816227823495865, -0.007534713484346867,
- -0.011650609783828259, -0.02515784092247486, 0.006960867438465357, 0.0631246566772461,
- 0.034754395484924316, 0.12083795666694641, 0.01281803846359253, 0.01639958657324314,
- -0.03487399220466614, 0.058791615068912506, 0.10682252794504166, -0.06533636897802353,
- 0.032476551830768585, -0.01777459681034088, 0.018597429618239403, 0.006158991251140833,
- -0.035399049520492554, -0.07316017895936966, -0.030903732404112816,
- -0.08321639895439148, 0.050904057919979095, 0.05306742712855339, -0.06250491738319397,
- -0.14043311774730682, -0.04388943314552307, -0.04555622488260269, 0.05569031834602356,
- 0.06506659835577011, -0.08895952254533768, 0.03884455934166908, -0.009896832518279552,
- 0.0011774030281230807, 0.03206930682063103, -0.04073798656463623, 0.006311550736427307,
- -0.0867626816034317, 0.04438524320721626, 0.08410011976957321, 0.045583706349134445,
- -0.03593878820538521, 0.007789055351167917, -0.05557284876704216, 0.02091892808675766,
- -0.014688635244965553, -0.018410194665193558, 0.0005681054317392409,
- -0.028534816578030586, 0.025093160569667816, 0.02015465311706066, -0.015881281346082687,
- -0.04261394217610359, -0.022875361144542694, 0.00533301429823041, -0.05806161090731621,
- -0.058776214718818665, -0.029822027310729027, -0.03886706382036209, 0.07865860313177109,
- -0.04513148218393326, -0.010843849740922451, -0.012437393888831139,
- 0.003251552814617753, -0.003679186338558793, 0.029537197202444077, -0.04868458956480026,
- -0.0565079003572464, -0.006893082056194544, 0.026512466371059418, 0.012546193785965443,
- 0.0047016441822052, -0.05029657110571861, -0.0013079200871288776, 0.09073732048273087,
- -0.00853049661964178, -0.07991284132003784, 0.006635267287492752, -0.051298096776008606,
- 0.08444392681121826, -0.06728217005729675, -0.3603167235851288, 0.028392719104886055,
- 0.03333495184779167, 0.024566905573010445, -0.011383399367332458, -0.046086765825748444,
- 0.024515680968761444, 0.0019978247582912445, 0.01551070623099804, 0.02849671058356762,
- -0.06368191540241241, 0.008918631821870804, -0.04980054497718811, -0.052612707018852234,
- 0.007090151309967041, -0.06601843982934952, -0.03410617262125015, 0.035594504326581955,
- -0.0000956076110014692, -0.005302400793880224, -0.0462186224758625,
- 0.030147351324558258, -0.0371793769299984, -0.021846385672688484, -0.04592553898692131,
- -0.05908377096056938, -0.017729947343468666, -0.07138765603303909, 0.02121894620358944,
- 0.07194139808416367, -0.014178276062011719, -0.09806839376688004, -0.03145115077495575,
- 0.058382585644721985, 0.06457367539405823, 0.09238651394844055, 0.06942041963338852,
- -0.013718388974666595, -0.009053757414221764, 0.04874853417277336, 0.09545132517814636,
- 0.18792620301246643, -0.006611407734453678, 0.056172534823417664, 0.008517108857631683,
- 0.06675911694765091, 0.004906776361167431, 0.04251374676823616, -0.0462631918489933,
- -0.028124485164880753, -0.0064641861245036125, -0.02479401044547558,
- 0.012389613315463066, -0.07323561608791351, -0.03866760805249214, -0.03841659054160118,
- 0.0037775489035993814, -0.04953978583216667, -0.02674258127808571, 0.18177741765975952,
- 0.024788586422801018, 0.0027582813054323196, 0.003333092899993062,
- -0.022448785603046417, -0.008748507127165794, -0.07823183387517929,
- -0.05696973577141762, -0.04091320186853409, -0.04081976041197777, -0.015125852078199387,
- -0.04585809260606766, -0.060789886862039566, -0.009177803993225098,
- 0.0002575860416982323, 0.03222092613577843, 0.0888933390378952, -0.043433573096990585,
- -0.013771324418485165, -0.017205853015184402, 0.13122987747192383,
- -0.007294614799320698, 0.07228807359933853, 0.020386630669236183, 0.08226010203361511,
- 0.014787394553422928, 0.025559430941939354, -0.06333936005830765, -0.012591490522027016,
- -0.05384772643446922, 0.13938629627227783, -0.03238021582365036, 0.11260049045085907,
- 0.06842641532421112, -0.008669900707900524, 0.013877560384571552, 0.052780043333768845,
- 0.007975929416716099, -0.023820582777261734, -0.4965651333332062, -0.010846053250133991,
- 0.13153909146785736, 0.02989683486521244, 0.011208639480173588, 0.09675079584121704,
- 0.03017600066959858, -0.018043052405118942, 0.019991599023342133, -0.03568020462989807,
- 0.0283429566770792, 0.006999053526669741, 0.11395533382892609, -0.040490392595529556,
- 0.027774639427661896, 0.08947689086198807, -0.05616599693894386, -0.008552559651434422,
- 0.047571126371622086, -0.21974821388721466, -0.00635029561817646, -0.061080142855644226,
- 0.1743139624595642, 0.004405030980706215, 0.08956586569547653, 0.08344759792089462,
- 0.008598310872912407, 0.02510255016386509, 0.03300607204437256, 0.04586303234100342,
- 0.09871319681406021, -0.03384082764387131, -0.05789080634713173, 0.053872860968112946,
- 0.06490616500377655, 0.07177400588989258, 0.035806018859148026, 11.955909729003906,
- 0.025889582931995392, 0.05925692617893219, -0.07813695818185806, 0.015461466275155544,
- -0.07505050301551819, -0.007979308255016804, -0.08586832135915756, 0.028720855712890625,
- 0.14765259623527527, 0.0365450344979763, -0.04652123898267746, -0.04159950464963913,
- -0.040359143167734146, -0.014378421008586884, -0.018682345747947693,
- -0.02144389972090721, -0.02206840179860592, 0.08684307336807251, -0.060936540365219116,
- 0.0005580223514698446, 0.08856967836618423, 0.08048491179943085, 0.014924440532922745,
- 0.0034612317103892565, 0.06830888986587524, 0.027888670563697815, 0.01323857344686985,
- 0.02917303703725338, 0.050379909574985504, 0.02781178243458271, 0.03967335447669029,
- 0.08984149992465973, -0.011247611604630947, 0.06026031821966171, 0.07191398739814758,
- -0.01386850792914629, 0.05463803932070732, 0.04271087422966957, 0.06270541995763779,
- 0.02642417699098587, 0.05000375211238861, -0.006552558857947588, 0.00744199100881815,
- 0.062357135117053986, 0.027981488034129143, 0.02720843255519867, 0.07655323296785355,
- 0.02846549265086651, 0.017689699307084084, 0.10080274194478989, -0.02471517026424408,
- 0.09695375710725784, -0.006518184673041105, -0.029330361634492874,
- -0.007954029366374016, -0.0007031537825241685, -0.04573507979512215,
- 0.06446676701307297, 0.05832904949784279, -0.06077706068754196, 0.0976189374923706,
- 0.04360567405819893, 0.06061653047800064, 0.04245022311806679, 0.06660354882478714,
- 0.07366510480642319, 0.08278623223304749, -0.04976440966129303, -0.04878997430205345,
- 0.026598572731018066, -0.06345422565937042, -0.050267960876226425, 0.038385216146707535,
- -0.03121376596391201, -0.006530081387609243, 0.1112697571516037, -0.014660867862403393,
- 0.07221782207489014, -0.04325353354215622, 0.008441271260380745, 0.012700837105512619,
- -0.044137611985206604, 0.007910029031336308, -0.011793975718319416,
- 0.023030342534184456, 0.07924282550811768, 0.07596053183078766, 0.01915462128818035,
- -0.02286716364324093, -0.07108310610055923, 0.04742986708879471, -0.012136382982134819,
- -0.010172259993851185, 0.06315940618515015, -0.050341516733169556, 0.025097332894802094,
- -0.10954631119966507, 0.09084994345903397, 0.09662660956382751, -0.07675725221633911,
- 0.016172578558325768, -0.02031596191227436, 0.06372548639774323, 0.031590744853019714,
- 0.004192372318357229, -0.1010635495185852, -0.03192015364766121, 0.07144685834646225,
- 0.012697153724730015, -0.0048671262338757515, 0.044316720217466354,
- 0.023368649184703827, -0.055668555200099945, 0.0393279492855072, 0.04558263719081879,
- -0.023136692121624947, 0.02263377048075199, 0.04652731493115425, 0.044566575437784195,
- -0.09085888415575027, -0.007455109152942896, -0.09113244712352753,
- -0.015503671020269394, 0.0221593976020813, -0.027158396318554878, -0.020090999081730843,
- -0.012809021398425102, 0.0025551235303282738, -0.027351010590791702,
- 0.0019336412660777569, 0.06722749024629593, 0.08921597898006439, -0.044996850192546844,
- 0.08540640026330948, 0.020346777513623238, -0.000940242491196841, 0.038322653621435165,
- 0.07042218744754791, 0.13533779978752136, -0.05971425399184227, -0.03306318446993828,
- -0.039348844438791275, -0.12150342762470245, 0.0008150222129188478,
- 0.040350981056690216, 0.05539418384432793, 0.053825873881578445, 0.042432546615600586,
- -0.047545332461595535, -0.03379477560520172, 0.05253909155726433, 0.0017058156663551927,
- -0.027850400656461716, 0.008242104202508926, -0.057854585349559784,
- -0.00860628206282854, 0.0920642614364624, 0.003861157689243555, -0.04708864912390709,
- 0.018016794696450233, -0.14292572438716888, -0.022917939350008965, 0.08948156237602234,
- 0.0030989369843155146, -0.0029947778675705194, -0.004845930263400078,
- -0.0016377130523324013, 0.05187052860856056, 0.009161455556750298, 0.04790783300995827,
- -0.03461108356714249, -0.12043633311986923, -0.061788421124219894, -0.00904806051403284,
- 0.058050334453582764, 0.0846945196390152, -0.12358181923627853, 0.0014691478572785854,
- -0.042542532086372375
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 222,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["@an_open_mind"],
- "epoch_date_downloaded": 1607472000,
- "epoch_date_modified": 1654732800,
- "epoch_date_submitted": 1653868800,
- "flag": null,
- "report_number": 1735,
- "source_domain": "twitter.com",
- "submitters": ["Ingrid Dickinson (CSET)"],
- "title": "Tweet: an_open_mind",
- "url": "https://twitter.com/an_open_mind/status/1284487376312709120"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "hive-box",
- "name": "Hive Box"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "hive-box",
- "name": "Hive Box"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "hive-box-customers",
- "name": "Hive Box customers"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1737],
- "vector": [
- -0.03517122566699982, 0.052235327661037445, -0.031805116683244705, -0.11185576021671295,
- 0.06803681701421738, 0.0501646026968956, -0.0046417186968028545, 0.06803407520055771,
- 0.1304975152015686, -0.12100894749164581, 0.057015158236026764, 0.004357632715255022,
- 0.01275024563074112, -0.0894380733370781, -0.033304307609796524, -0.06949196755886078,
- -0.07060608267784119, -0.04080434888601303, -0.04647599160671234, -0.1257975995540619,
- -0.07499532401561737, -0.001323677133768797, -0.025790808722376823, 0.09912972897291183,
- -0.09112808108329773, 0.01952582225203514, 0.06068751588463783, 0.11594689637422562,
- -0.029117245227098465, 0.03893326222896576, -0.013056292198598385,
- -0.011514827609062195, 0.11094500869512558, 0.008959908969700336, 0.005412578117102385,
- 0.08631404489278793, 0.006408402696251869, -0.02977869100868702, -0.05275823920965195,
- -0.01778976246714592, -0.035260602831840515, 0.204396590590477, 0.004476469941437244,
- -0.07805272191762924, 0.04019322246313095, -0.02406255528330803, 0.01343577727675438,
- 0.04097285494208336, -0.0058303712867200375, -0.02304556965827942, 0.01812301017343998,
- -0.0027664308436214924, -0.03519827127456665, 0.046488042920827866,
- -0.09490769356489182, 0.06437847763299942, -0.01399681344628334, -0.0007364660850726068,
- 0.031200382858514786, -0.06053462252020836, -0.027962591499090195, -0.2406405359506607,
- -0.014491068199276924, -0.03943360596895218, 0.07830862700939178, -0.08860962092876434,
- -0.05274621397256851, 0.07426833361387253, 0.045859623700380325, 0.06713251769542694,
- 0.03970927745103836, -0.00009051391680259258, -0.025826888158917427,
- -0.008526508696377277, -0.004581328481435776, -0.055716000497341156,
- 0.037407997995615005, 0.1900610327720642, -0.06100516393780708, 0.03241439536213875,
- 0.09833920747041702, -0.10354994237422943, 0.3203224837779999, 0.0036089355126023293,
- -0.02352566085755825, 0.0028481709305197, 0.08679936081171036, 0.005438335705548525,
- 0.039314694702625275, 0.04428435117006302, -0.013887918554246426, -0.014294893480837345,
- -0.08626576513051987, -0.021117912605404854, 0.04948363080620766, 0.06723099201917648,
- -0.05506468936800957, -0.06014791876077652, -0.003481537802144885, -0.02850435860455036,
- 0.020421408116817474, -0.031409066170454025, 0.05871140584349632, 0.08070413023233414,
- -0.04744343087077141, 0.015551562421023846, 0.03908202424645424, -0.05203889310359955,
- 0.06905841082334518, -0.08350697159767151, 0.012603284791111946, -0.0015151463449001312,
- 0.036125026643276215, -0.001786372042261064, 0.05240914970636368, -0.040657058358192444,
- 0.005700007546693087, 0.04116218909621239, 0.1222536638379097, 0.021750666201114655,
- 0.03468034788966179, 0.07461458444595337, 0.02822304144501686, -0.022173117846250534,
- 0.040820322930812836, -0.017905885353684425, -0.053758520632982254,
- 0.013497432693839073, -0.01648227497935295, 0.09140758961439133, -0.03401588648557663,
- -0.21899886429309845, 0.037414588034152985, 0.11352920532226562, -0.002366621745750308,
- -0.040299803018569946, 0.04144023731350899, -0.028196338564157486, 0.07688500732183456,
- -0.01607315056025982, -0.06617525219917297, 0.04506958648562431, 0.07316065579652786,
- 0.021600065752863884, 0.06809201091527939, 0.03067079745233059, -0.031403303146362305,
- -0.0447746179997921, 0.020609483122825623, -0.06250107288360596, 0.09535225480794907,
- -0.13532304763793945, -0.05077362060546875, 0.01825745776295662, -0.028584055602550507,
- 0.6430137753486633, 0.10218559205532074, 0.19456201791763306, 0.025935612618923187,
- -0.029757363721728325, 0.13890394568443298, -0.017011694610118866, 0.06817911565303802,
- -0.07170305401086807, -0.0613679476082325, 0.04888223111629486, -0.009550719521939754,
- -0.031605079770088196, 0.012831094674766064, 0.005801948253065348, 0.10807725042104721,
- 0.008464056067168713, 0.07953953742980957, -0.0010032209102064371, -0.12073923647403717,
- -0.011049230583012104, -0.015804395079612732, 0.027390947565436363,
- -0.09411685913801193, -0.03505865857005119, 0.059454113245010376, 0.09535420686006546,
- -0.10229970514774323, -0.011522248387336731, -0.03843338415026665, 0.015609024092555046,
- -0.034558650106191635, 0.05435856804251671, -0.020045913755893707, 0.02900128997862339,
- 0.021322622895240784, 0.04737904295325279, 0.009913504123687744, -0.11290758103132248,
- -0.04059363156557083, 0.07476720958948135, -0.02732822671532631, -0.02011343277990818,
- 0.07650210708379745, -0.06788446009159088, 0.03256779536604881, -0.04638178274035454,
- 0.1205328106880188, -0.11627159267663956, 0.0008208344224840403, 0.019000878557562828,
- 0.009842882864177227, 0.022364508360624313, 0.0082238232716918, -0.06136009097099304,
- -0.020840883255004883, 0.06791923940181732, 0.04997347295284271, 0.05364568158984184,
- 0.052630361169576645, -0.005122818518429995, 0.07881882041692734, 0.04084483161568642,
- -0.01704242266714573, -0.04580933600664139, 0.04992561787366867, 0.05317535996437073,
- -0.060834091156721115, -0.030885206535458565, 0.0452595092356205, 0.08178002387285233,
- -0.014771351590752602, -0.05100113898515701, 0.02921854518353939,
- -0.0002666891668923199, -0.037248510867357254, 0.044654730707407, 0.023740939795970917,
- 0.020774777978658676, 0.1053362712264061, -0.04243912920355797, -0.034840427339076996,
- -0.028235239908099174, -0.0022592211607843637, 0.027628576382994652,
- 0.004472642205655575, 0.0476660430431366, 0.0957474559545517, -0.009464756585657597,
- 0.029183251783251762, 0.061707645654678345, 0.0736159011721611, 0.024174783378839493,
- 0.040836822241544724, 0.06513051688671112, -0.0014348753029480577, -0.03526913374662399,
- -0.019168997183442116, -0.011504676192998886, 0.024996381253004074,
- 0.019399717450141907, -0.054038871079683304, -0.01710428111255169, -0.01409839279949665,
- -0.021990695968270302, -0.10138753801584244, -0.03281412646174431, 0.037922732532024384,
- 0.04812045022845268, -0.08638717234134674, -0.13301514089107513, -0.06161747872829437,
- 0.008245683275163174, 0.08377546817064285, -0.0028449236415326595,
- -0.0016068018740043044, -0.10086261481046677, 0.04239094257354736,
- -0.028410643339157104, 0.04499917849898338, 0.019199302420020103, 0.0006611661519855261,
- -0.0047608292661607265, -0.035352159291505814, 0.03583294525742531,
- -0.03280312940478325, -0.001232060370966792, -0.07408442348241806,
- -0.039283622056245804, -0.06301360577344894, -0.03706134855747223, 0.021456114947795868,
- -0.06563777476549149, 0.028272774070501328, 0.06495371460914612, 0.025887880474328995,
- 0.003982643596827984, -0.014232898131012917, 0.05948006361722946, -0.07405758649110794,
- -0.030049091205000877, 0.07907094806432724, -0.04625263437628746, -0.00266816932708025,
- -0.010853899642825127, -0.1329522281885147, -0.08229472488164902, -0.009419039823114872,
- -0.06573086231946945, 0.0538543276488781, -0.012408189475536346, 0.018788741901516914,
- -0.01767653040587902, -0.0053382618352770805, 0.07409776002168655, -0.06606023758649826,
- -0.06301393359899521, -0.05685623362660408, 0.11937937140464783, -0.0370635949075222,
- 0.005347867961972952, 0.024118805304169655, -0.03816124051809311, 0.05977868661284447,
- -0.002995646558701992, 0.010197875089943409, -0.008705946616828442,
- 0.029797915369272232, -0.006297014653682709, 0.02593366615474224, 0.061450131237506866,
- -0.033214420080184937, -0.008792117238044739, 0.05012378841638565, 0.40060916543006897,
- -0.14637799561023712, 0.07110123336315155, 0.07068946957588196, 0.049555711448192596,
- 0.0607934407889843, -0.03126579150557518, 0.05432847514748573, 0.06163179501891136,
- 0.10482926666736603, 0.10752713680267334, -0.04259805381298065, -0.02443852834403515,
- -0.06849546730518341, 0.09643618017435074, -0.0247073732316494, 0.0447089858353138,
- -0.04448540508747101, -0.035535551607608795, -0.0617281049489975, -0.02393014170229435,
- -0.062207695096731186, 0.018831592053174973, 0.011785611510276794, 0.002721661701798439,
- 0.0037962025962769985, -0.0007758815190754831, 0.06002827361226082,
- -0.007406951859593391, -0.028167366981506348, -0.04879006743431091, 0.097429558634758,
- 0.020606696605682373, 0.015787314623594284, -0.0835687518119812, -0.0005594849935732782,
- -0.07556551694869995, -0.08777211606502533, 0.05400152876973152, 0.05349793657660484,
- 0.06595820933580399, 0.06179521232843399, -0.032210711389780045, 0.029380790889263153,
- -0.019267840310931206, -0.05743001028895378, 0.037106581032276154, 0.08253871649503708,
- -0.012773898430168629, 0.0864354819059372, 0.17288821935653687, -0.01007242314517498,
- -0.032864950597286224, -0.08792246878147125, 0.07097139954566956, 0.12015262246131897,
- -0.023360522463917732, -0.016242964193224907, -0.010950883850455284,
- -0.011235165409743786, -0.03379745036363602, -0.09797097742557526, -0.11064054816961288,
- -0.036058709025382996, -0.0765850692987442, 0.08646679669618607, -0.016989178955554962,
- -0.061346929520368576, -0.22563335299491882, -0.015615371987223625,
- -0.05294664949178696, -0.0017725905636325479, 0.12880133092403412,
- -0.037807758897542953, 0.054730065166950226, 0.010355767793953419, 0.006369731854647398,
- -0.03330332413315773, -0.0965600535273552, -0.004359161946922541,
- 0.00036812364123761654, 0.03332606330513954, 0.030304014682769775, 0.03208685666322708,
- -0.022880448028445244, 0.11610746383666992, -0.08939296007156372, 0.07124411314725876,
- 0.029171962291002274, -0.03553680330514908, -0.0059500024653971195,
- -0.056655555963516235, 0.041606079787015915, 0.010724683292210102,
- -0.015090805478394032, -0.00040668368455953896, -0.04746583104133606,
- -0.025041230022907257, -0.06286618858575821, -0.06443114578723907, -0.0342608317732811,
- -0.0892314463853836, 0.03175363317131996, -0.0777268335223198, 0.029387710615992546,
- -0.031609226018190384, -0.028234466910362244, 0.016930364072322845,
- 0.019834551960229874, 0.00973393302410841, -0.142087921500206, 0.0012341284891590476,
- 0.006644593086093664, 0.07538501173257828, -0.051702164113521576, -0.05558997765183449,
- 0.027223847806453705, 0.028473403304815292, 0.03774440661072731, -0.01239608321338892,
- 0.0060257078148424625, -0.049008116126060486, 0.09282618016004562, -0.14687319099903107,
- -0.4072299897670746, 0.05338263884186745, 0.03559908643364906, 0.029908588156104088,
- 0.03152424842119217, -0.07563946396112442, 0.06751847267150879, 0.02160174399614334,
- 0.0079022366553545, 0.08467020094394684, -0.05633199214935303, 0.030871456488966942,
- -0.023400578647851944, -0.03630095347762108, -0.02916102111339569, -0.04759814590215683,
- 0.00017433690663892776, 0.02610033005475998, -0.001334478030912578,
- -0.052334658801555634, -0.12713007628917694, 0.012029019184410572,
- -0.015564344823360443, 0.04821648821234703, 0.008887889795005322, 0.04673080891370773,
- -0.03064604662358761, 0.014168617315590382, 0.03252327814698219, 0.05987614765763283,
- 0.028346743434667587, -0.06602204591035843, 0.018845299258828163, 0.04380328953266144,
- -0.014901980757713318, 0.1326221227645874, 0.002837871201336384, -0.009097333066165447,
- -0.08927668631076813, 0.0954975038766861, 0.0347079373896122, 0.19008813798427582,
- -0.0241578109562397, 0.027493329718708992, -0.023029373958706856, 0.08448948711156845,
- 0.01486892905086279, 0.018211742863059044, -0.0178294088691473, 0.013067007064819336,
- 0.02218647114932537, -0.019116824492812157, 0.07025689631700516, -0.10894612967967987,
- -0.005305630620568991, -0.00830549281090498, -0.022812506183981895,
- -0.014403942041099072, 0.042702678591012955, 0.18137583136558533, 0.030823156237602234,
- 0.024882040917873383, 0.050504837185144424, -0.07395399361848831, 0.009269831702113152,
- -0.08880375325679779, -0.04301218315958977, -0.020145729184150696, 0.027535829693078995,
- 0.02782066911458969, -0.04397203028202057, -0.14900436997413635, -0.03804958611726761,
- -0.009363938122987747, -0.007061464712023735, 0.09702767431735992, 0.01047189999371767,
- 0.023761890828609467, -0.05313602834939957, 0.09368684887886047, 0.00243829726241529,
- 0.01179305836558342, 0.06648747622966766, 0.0744522213935852, 0.024791797623038292,
- -0.018758220598101616, -0.06003463640809059, -0.02338242530822754, 0.01567820832133293,
- 0.15469668805599213, -0.01284700259566307, 0.15203984081745148, 0.08334729820489883,
- -0.002777996240183711, -0.0665564313530922, 0.028981240466237068,
- -0.00040321669075638056, 0.028276735916733742, -0.4064714014530182,
- -0.02372664026916027, 0.11007829010486603, 0.04131451994180679, 0.03583795577287674,
- 0.12903815507888794, -0.013574826531112194, -0.033293504267930984, -0.04857011139392853,
- -0.07094421237707138, 0.16257935762405396, -0.0012708463473245502, 0.03612549602985382,
- -0.0820261761546135, 0.05189576372504234, 0.08797495067119598, -0.020462559536099434,
- 0.023210542276501656, 0.05687963590025902, -0.21234679222106934, 0.014288089238107204,
- -0.02075628563761711, 0.12722350656986237, 0.046450164169073105, 0.0014149303315207362,
- 0.09811166673898697, -0.03947696462273598, 0.052775897085666656, 0.06735342741012573,
- 0.004737728275358677, 0.09791228175163269, 0.0019965621177107096, -0.035283781588077545,
- 0.07226099073886871, 0.12270427495241165, 0.12473651021718979, -0.04307498410344124,
- 11.746896743774414, 0.04968801885843277, 0.05386648327112198, -0.08271366357803345,
- 0.0025653536431491375, -0.042166244238615036, 0.05758999288082123, -0.02611635997891426,
- 0.05243076756596565, 0.12024552375078201, 0.0037019364535808563, 0.010576586239039898,
- -0.02851262502372265, -0.06544256955385208, 0.04488262161612511, -0.03899802267551422,
- -0.04497900977730751, -0.04940316826105118, 0.08562543243169785, -0.01315388735383749,
- -0.04526723548769951, 0.03604285418987274, 0.029696177691221237, -0.007593511138111353,
- -0.0742124691605568, 0.039214204996824265, -0.0005772875156253576,
- -0.011329954490065575, -0.03317547217011452, -0.021634453907608986,
- 0.015262988395988941, 0.03341061621904373, 0.09594757109880447, -0.019953863695263863,
- 0.05313146114349365, 0.08237012475728989, 0.005166361108422279, 0.011119667440652847,
- 0.03422634303569794, 0.11531531065702438, 0.05891171470284462, -0.0259964931756258,
- 0.03170284628868103, 0.06942752748727798, 0.044897448271512985, 0.03150078281760216,
- 0.037270914763212204, 0.11595726013183594, 0.03882388025522232, 0.06907997280359268,
- 0.08906175196170807, -0.024783078581094742, 0.08635596185922623, 0.0295663233846426,
- -0.012869192287325859, 0.059784699231386185, -0.03671582415699959, -0.0299766194075346,
- 0.048804618418216705, 0.0928964838385582, -0.0391385555267334, 0.1120024025440216,
- 0.03119034506380558, 0.15026108920574188, -0.03263925015926361, -0.0002851896279025823,
- 0.0480354018509388, 0.05289030447602272, -0.07884003967046738, -0.0898478627204895,
- 0.04355271905660629, -0.06634922325611115, -0.031706251204013824, 0.057963259518146515,
- 0.07484462112188339, -0.038446005433797836, 0.09676135331392288, -0.06561583280563354,
- 0.024984635412693024, 0.010822580195963383, 0.021892543882131577, 0.0567530132830143,
- -0.08331375569105148, 0.020775306969881058, -0.01729889027774334, 0.04831431433558464,
- 0.08170615136623383, 0.0685214102268219, 0.0259616207331419, -0.12486737221479416,
- -0.06240738183259964, 0.11515376716852188, -0.04375411570072174, -0.07794202864170074,
- 0.009645016863942146, -0.020553942769765854, 0.030898872762918472, -0.1294422447681427,
- 0.00409547658637166, 0.04205687344074249, -0.08125974237918854, -0.051845308393239975,
- -0.021290862932801247, 0.06362742185592651, -0.009015625342726707, 0.04699376970529556,
- -0.06299640238285065, -0.0248758215457201, 0.03042788989841938, 0.010973439551889896,
- -0.04987609386444092, 0.07251059263944626, 0.10957148671150208, -0.0685005784034729,
- 0.04962865635752678, 0.06935710459947586, -0.06496461480855942, -0.030493611469864845,
- 0.06528224050998688, 0.054005805402994156, -0.07033248245716095, -0.031216349452733994,
- -0.03876276686787605, -0.04273971915245056, 0.016395514830946922, -0.015459433197975159,
- -0.010010771453380585, 0.0067061674781143665, -0.08233914524316788,
- -0.03363705426454544, 0.025709612295031548, 0.08437184244394302, 0.10453323274850845,
- 0.044725093990564346, 0.04176316782832146, -0.020259125158190727, -0.04099366068840027,
- 0.03111732378602028, 0.05015028268098831, 0.10884887725114822, -0.01726645603775978,
- -0.049789104610681534, -0.003068261779844761, -0.07734627276659012,
- 0.0006674860487692058, 0.07304991781711578, 0.029832934960722923, 0.05081779137253761,
- -0.00430586701259017, -0.06372055411338806, -0.0678311362862587, 0.07138026505708694,
- 0.009168083779513836, 0.03381367772817612, 0.07899898290634155, -0.063888318836689,
- -0.02758481353521347, 0.09993621706962585, -0.020899446681141853, -0.009457532316446304,
- -0.01073597464710474, -0.09446188807487488, 0.12784364819526672, 0.11234316974878311,
- -0.0028880885802209377, 0.01826702617108822, 0.049644939601421356, 0.00911647081375122,
- 0.022602682933211327, -0.007385026663541794, 0.013318863697350025,
- -0.010630431585013866, -0.10224943608045578, -0.10329123586416245, 0.01140463538467884,
- 0.10972890257835388, -0.008159753866493702, -0.13074424862861633, -0.042925287038087845,
- -0.03574424609541893
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 223,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Xue Yujie"],
- "epoch_date_downloaded": 1653868800,
- "epoch_date_modified": 1654732800,
- "epoch_date_submitted": 1653868800,
- "flag": null,
- "report_number": 1737,
- "source_domain": "sixthtone.com",
- "submitters": ["Khoa Lam"],
- "title": "Facial-Recognition Smart Lockers Hacked by Fourth-Graders",
- "url": "https://www.sixthtone.com/news/1004698/facial-recognition-smart-lockers-hacked-by-fourth-graders"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "wechat-pay",
- "name": "WeChat Pay"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "wechat",
- "name": "WeChat"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "wechat-pay-users",
- "name": "WeChat Pay users"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1738],
- "vector": [
- -0.03086112253367901, 0.08843015134334564, 0.015487822704017162, -0.16118277609348297,
- 0.06873923540115356, -0.009524382650852203, -0.023453395813703537, 0.06708353012800217,
- 0.06265395879745483, -0.10233115404844284, 0.038640011101961136, 0.053713444620370865,
- 0.02035980485379696, -0.13484317064285278, 0.018201233819127083, -0.05029841512441635,
- -0.060443829745054245, 0.004969037137925625, 0.014816241338849068, -0.1024150624871254,
- -0.03955041244626045, 0.013383886776864529, -0.011282630264759064, 0.13246680796146393,
- -0.11619731038808823, 0.043681807816028595, 0.12278614193201065, 0.10960693657398224,
- -0.09331513941287994, 0.03148217499256134, -0.023394174873828888, -0.055998217314481735,
- 0.177558034658432, 0.005269979126751423, 0.00033206085208803415, 0.11126398295164108,
- -0.0017948262393474579, -0.00905799400061369, -0.060757461935281754,
- -0.016298672184348106, -0.003292381064966321, 0.2058599442243576, 0.016014745458960533,
- -0.04203202947974205, 0.05444144457578659, -0.00781073234975338, 0.014713139273226261,
- 0.0688566267490387, 0.0057452404871582985, -0.011039183475077152, -0.04806072264909744,
- 0.0081936689093709, -0.07472451776266098, 0.07038523256778717, -0.11629189550876617,
- 0.06350461393594742, 0.0019049951806664467, -0.027822086587548256, 0.05132623389363289,
- -0.08896905183792114, -0.026737060397863388, -0.21138283610343933, -0.02525077946484089,
- -0.05602724477648735, 0.07515080273151398, -0.07641752809286118, -0.08040902018547058,
- -0.0414293110370636, 0.046402137726545334, 0.03189724683761597, 0.03842444345355034,
- -0.031745318323373795, 0.0011737231398001313, -0.003014711197465658,
- 0.038681451231241226, -0.05346756428480148, -0.004173148889094591, 0.20626071095466614,
- -0.06730977445840836, 0.04816700518131256, 0.11110223829746246, -0.0900651216506958,
- 0.4055079221725464, -0.00040715368231758475, -0.031203292310237885, 0.06115604564547539,
- 0.10874593257904053, 0.0585230328142643, 0.07320200651884079, 0.03914312273263931,
- -0.038774117827415466, -0.007261347491294146, -0.07746437191963196,
- -0.003076649270951748, 0.03924188390374184, 0.01087531354278326, -0.024206532165408134,
- -0.003045040648430586, -0.018638214096426964, -0.05984097719192505,
- -0.01210938859730959, -0.002450271276757121, 0.0627129003405571, 0.04623332992196083,
- -0.047787878662347794, -0.005313005298376083, 0.06860954314470291, -0.10540301352739334,
- 0.07945804297924042, -0.06981419026851654, 0.05360304191708565, 0.015400595031678677,
- 0.09069900214672089, -0.007092121057212353, -0.008358894847333431, -0.02786637842655182,
- 0.04158153012394905, 0.017398320138454437, 0.11171402782201767, 0.04531621187925339,
- 0.04038321599364281, 0.06160002201795578, 0.09949832409620285, -0.018923958763480186,
- 0.011874907650053501, -0.02633790858089924, -0.07200190424919128, -0.03383908420801163,
- -0.05883822590112686, -0.007388920057564974, -0.043760206550359726,
- -0.15755479037761688, 0.028361763805150986, 0.03468913212418556, 0.013059903867542744,
- -0.05825695022940636, 0.04747840389609337, -0.04870479553937912, 0.012884790077805519,
- -0.04214683920145035, -0.08716359734535217, 0.05846621096134186, 0.06853015720844269,
- 0.010930553078651428, 0.1308150589466095, 0.08636514097452164, -0.04350237920880318,
- -0.0115737896412611, -0.023308487609028816, -0.07355210930109024, 0.10620444267988205,
- -0.1236686259508133, -0.05625072121620178, 0.02126636542379856, -0.08627377450466156,
- 0.662334680557251, 0.10011299699544907, 0.19133278727531433, 0.060454364866018295,
- -0.01420404389500618, 0.20819099247455597, -0.028298979625105858, 0.12368829548358917,
- -0.07495205849409103, -0.0038862661458551884, 0.06893395632505417,
- -0.045151546597480774, -0.07324813306331635, 0.034884653985500336, 0.018904514610767365,
- 0.07972455769777298, -0.0009577382006682456, 0.1631968915462494, 0.043179336935281754,
- -0.13589049875736237, 0.031217629089951515, 0.06745874881744385, -0.018956536427140236,
- -0.10179414600133896, -0.024640928953886032, 0.07243494689464569, 0.08619670569896698,
- -0.0747377797961235, 0.029521800577640533, -0.0680016353726387, 0.08022691309452057,
- -0.03118417225778103, 0.07745969295501709, -0.003972649108618498, 0.06312962621450424,
- 0.009704314172267914, 0.008622247725725174, 0.038102854043245316, -0.10247799754142761,
- -0.07105283439159393, 0.07404103130102158, -0.012160922400653362, -0.05010896176099777,
- 0.04417186230421066, -0.1198311299085617, 0.04154230281710625, -0.0319049246609211,
- 0.12638826668262482, -0.1457485854625702, -0.041510093957185745, 0.01915077306330204,
- -0.00912697333842516, 0.027266869321465492, -0.004971345420926809, -0.11109871417284012,
- -0.09069029241800308, 0.09300151467323303, 0.010890843346714973, 0.04707413166761398,
- 0.06579288095235825, -0.004687309730798006, 0.036199286580085754, 0.0832388699054718,
- 0.009957313537597656, -0.00968929659575224, 0.07948321849107742, 0.053586557507514954,
- -0.04215778037905693, -0.03306766226887703, 0.03719816729426384, 0.07451198995113373,
- 0.006664005108177662, -0.04284672439098358, 0.03495173156261444, -0.008539094589650631,
- -0.03721511736512184, 0.06385073810815811, 0.022799625992774963, -0.0038461145013570786,
- 0.0788504034280777, 0.005781156476587057, -0.033604420721530914, -0.0517185814678669,
- 0.020517900586128235, 0.036575064063072205, 0.006036677397787571, 0.0725243091583252,
- 0.09421633183956146, 0.07491922378540039, 0.04751467704772949, 0.08465276658535004,
- 0.050694867968559265, -0.01584256812930107, 0.01829432137310505, 0.11418121308088303,
- -0.012452169321477413, -0.040109630674123764, -0.035579100251197815,
- -0.030195724219083786, 0.02858518436551094, 0.03394727036356926, -0.0784328505396843,
- -0.0334208682179451, -0.07149537652730942, -0.03681198135018349, -0.10960768163204193,
- -0.02313869260251522, 0.07119672745466232, 0.0987589880824089, -0.01596108265221119,
- -0.10378147661685944, -0.06768876314163208, -0.001758245169185102, 0.056714288890361786,
- 0.006088601425290108, 0.009382911957800388, -0.13429006934165955, 0.06537561863660812,
- -0.06244516745209694, 0.04737887904047966, -0.015938950702548027, 0.02061988227069378,
- -0.012527339160442352, -0.026959354057908058, 0.08653812855482101,
- -0.020935341715812683, 0.02514689229428768, -0.04836359992623329, -0.09619140625,
- -0.0828067809343338, -0.03454670310020447, -0.0025129844434559345, -0.08305762708187103,
- 0.03204541280865669, 0.031035948544740677, 0.06451541930437088, -0.0030220013577491045,
- -0.05267118662595749, 0.07895661145448685, -0.020850220695137978, -0.014205770567059517,
- 0.09855171293020248, -0.0538199208676815, 0.021084120497107506, 0.01916910894215107,
- -0.1428050845861435, -0.05191164091229439, 0.029310055077075958, -0.04871679097414017,
- 0.04237093776464462, 0.008166002109646797, -0.006615892052650452, -0.016893593594431877,
- -0.0581338033080101, 0.0925474539399147, -0.044393736869096756, -0.08066160976886749,
- -0.08641953021287918, 0.11312160640954971, -0.052622292190790176, -0.009120326489210129,
- 0.04769813269376755, -0.040645379573106766, 0.027403220534324646, -0.0624261200428009,
- 0.02400614507496357, 0.04261301830410957, 0.07271450757980347, 0.002498903078958392,
- 0.017906272783875465, 0.0005952563951723278, -0.10977138578891754, 0.018856262788176537,
- 0.06056194752454758, 0.48302435874938965, -0.19419772922992706, 0.10895521938800812,
- 0.11713944375514984, -0.02293643169105053, 0.03634371608495712, -0.0035481825470924377,
- 0.10097506642341614, 0.0660175159573555, 0.1114388033747673, 0.12784188985824585,
- -0.032440051436424255, 0.0018405582522973418, -0.0917341485619545, 0.08985646069049835,
- -0.003653454827144742, 0.06372610479593277, -0.027933701872825623, -0.10017894953489304,
- -0.07561267912387848, 0.05681389570236206, -0.0391700305044651, 0.03135928139090538,
- -0.03047989122569561, 0.013402559794485569, 0.02657468616962433, 0.02501887083053589,
- 0.07460308074951172, -0.04079818353056908, 0.020051922649145126, -0.07559265196323395,
- 0.02220728062093258, 0.0433867946267128, 0.05036752671003342, -0.11592201143503189,
- 0.011397895403206348, -0.054793648421764374, -0.08841206133365631, 0.06256761401891708,
- 0.06442878395318985, 0.053287893533706665, 0.05092119053006172, -0.0729297399520874,
- 0.043591033667325974, -0.0862061083316803, -0.0591234527528286, 0.060192279517650604,
- 0.10160057991743088, 0.02786305919289589, 0.18095329403877258, 0.17082278430461884,
- -0.02954597771167755, -0.055575598031282425, -0.05288504436612129, 0.05852889269590378,
- 0.1508701890707016, 0.020725110545754433, 0.011110419407486916, -0.05680803954601288,
- -0.04764007031917572, -0.0029750869143754244, -0.09982477128505707,
- -0.03829895332455635, -0.04189501330256462, -0.04402752220630646, 0.07931876182556152,
- 0.043781768530607224, -0.0029834741726517677, -0.21478717029094696,
- -0.012206957675516605, -0.0649707168340683, 0.00844510830938816, 0.06451529264450073,
- -0.05709654837846756, -0.02020288072526455, 0.0036307559348642826, -0.05529825761914253,
- -0.047025665640830994, -0.1058090403676033, 0.017011733725667, 0.037381064146757126,
- 0.031230926513671875, 0.052581436932086945, 0.02612246386706829, -0.0336291566491127,
- 0.06677372008562088, -0.12003623694181442, 0.06282300502061844, 0.0188269205391407,
- -0.031001148745417595, -0.0037178213242441416, -0.04186904802918434,
- 0.032943397760391235, 0.028679659590125084, -0.059295184910297394, 0.011883147060871124,
- -0.010257598012685776, -0.05578339472413063, -0.031875353306531906,
- -0.047931548207998276, -0.06361275911331177, -0.09028179198503494, 0.03654202073812485,
- -0.1090630292892456, -0.014933301135897636, 0.02560095302760601, -0.03301674500107765,
- -0.038111910223960876, 0.012321474961936474, 0.07681060582399368, -0.2045210301876068,
- 0.04366028308868408, -0.029341666027903557, 0.06508208066225052, -0.05266318470239639,
- -0.06477675586938858, 0.02614082209765911, 0.060223713517189026, 0.05385485291481018,
- 0.022233108058571815, 0.02047240547835827, -0.025402270257472992, 0.03622360900044441,
- -0.18502654135227203, -0.4251197278499603, 0.11723991483449936, 0.005945831071585417,
- 0.015145099721848965, -0.0030765661504119635, -0.016151221469044685,
- 0.11485093832015991, 0.048228826373815536, -0.03537091240286827, 0.12892450392246246,
- -0.07194788008928299, 0.01754378154873848, 0.023815501481294632, -0.017723850905895233,
- -0.0378074012696743, -0.06812786310911179, -0.08680080622434616, 0.033257078379392624,
- 0.0010972595773637295, -0.07780729234218597, -0.1260228157043457, 0.013117381371557713,
- -0.05231017246842384, 0.11531897634267807, 0.03653779998421669, -0.029269147664308548,
- -0.045129455626010895, -0.0069278148002922535, 0.09032624959945679, 0.05565226450562477,
- 0.015352255664765835, -0.08204915374517441, 0.01982296258211136, 0.04610007628798485,
- 0.002789510879665613, 0.13747766613960266, 0.039601217955350876, -0.01674475148320198,
- -0.07602892071008682, 0.04788248986005783, 0.05779357999563217, 0.18437103927135468,
- -0.005954050458967686, 0.02319169044494629, 0.01887367106974125, 0.15541258454322815,
- 0.0726165920495987, 0.010537154041230679, -0.01151497382670641, 0.05446474254131317,
- -0.03581938520073891, -0.03786816447973251, 0.06747317314147949, -0.07375466078519821,
- -0.05503533408045769, -0.009890983812510967, -0.019360652193427086,
- -0.06363017112016678, 0.024552930146455765, 0.2579018473625183, 0.01956264115869999,
- -0.028230544179677963, 0.02515687607228756, -0.0651417225599289, 0.031017720699310303,
- -0.07104215025901794, -0.12481454014778137, -0.009103270247578621, 0.033348917961120605,
- 0.03381084278225899, -0.09144991636276245, -0.16925986111164093, -0.031225651502609253,
- -0.02075682021677494, 0.017462264746427536, 0.12001250684261322, 0.025651928037405014,
- 0.01322011649608612, -0.031210100278258324, 0.1188444271683693, 0.010800439864397049,
- -0.05781296268105507, 0.08599776029586792, 0.0791647657752037, 0.0034639681689441204,
- 0.01226081233471632, -0.03652501106262207, -0.04750935733318329, -0.02031116746366024,
- 0.13908880949020386, -0.02748051844537258, 0.08688122779130936, 0.11499807238578796,
- 0.004438007716089487, -0.025502927601337433, 0.003526080632582307,
- -0.004163018427789211, 0.057879816740751266, -0.4074576199054718, -0.05734765902161598,
- 0.11901876330375671, 0.015774233266711235, -0.0006371488561853766, 0.14183653891086578,
- -0.010260192677378654, -0.03856179490685463, -0.0529143400490284, -0.12045985460281372,
- 0.17365621030330658, -0.004055596888065338, 0.06777681410312653, -0.17779231071472168,
- 0.018537210300564766, 0.1145874410867691, -0.05365340784192085, 0.03239622339606285,
- 0.047884125262498856, -0.2280561923980713, 0.022286871448159218, -0.01150935236364603,
- 0.12452155351638794, -0.031082330271601677, 0.019767967984080315, 0.07746769487857819,
- -0.07950611412525177, 0.0003709981683641672, 0.08627767860889435, -0.012701726518571377,
- 0.06213550642132759, -0.046531129628419876, -0.028414463624358177, 0.09654213488101959,
- 0.10286068916320801, 0.09992587566375732, -0.05707466974854469, 12.072211265563965,
- 0.039993930608034134, 0.04728756099939346, -0.11951889097690582, -0.01097597274929285,
- -0.05412102863192558, 0.008997201919555664, -0.11153869330883026, 0.037219587713479996,
- 0.12126149237155914, -0.026109572499990463, -0.03352086618542671, -0.01463485136628151,
- -0.06523089855909348, 0.020176071673631668, -0.03393411263823509, -0.10064464062452316,
- -0.02877805195748806, 0.09267615526914597, -0.026577165350317955, -0.06351479887962341,
- 0.032643433660268784, 0.030401768162846565, 0.012356712482869625, -0.04849255830049515,
- 0.04541078582406044, 0.009049898013472557, -0.004240165930241346, 0.018369248136878014,
- 0.07202109694480896, 0.015718359500169754, 0.007898624055087566, 0.09919441491365433,
- -0.008011693134903908, 0.00024788142764009535, 0.08032628148794174,
- 0.043000541627407074, 0.021335572004318237, 0.030755817890167236, 0.06984087079763412,
- 0.04466155543923378, -0.0515655092895031, 0.005570535082370043, 0.016622349619865417,
- 0.025773128494620323, 0.029980869963765144, 0.039029624313116074, 0.10465403646230698,
- 0.0030164681375026703, 0.03479751944541931, 0.08998873084783554, 0.019454121589660645,
- 0.08547040075063705, 0.06352075934410095, -0.012394573539495468, 0.100648432970047,
- -0.011233299970626831, -0.0936814621090889, 0.10966040194034576, 0.07713606208562851,
- -0.04880208522081375, 0.11175964772701263, -0.030340062454342842, 0.16858404874801636,
- -0.06855934858322144, 0.012071860022842884, 0.06346598267555237, 0.09850212186574936,
- -0.06950441002845764, -0.1352851241827011, 0.06525949388742447, -0.048245709389448166,
- -0.09984810650348663, 0.022326363250613213, 0.1294459104537964, -0.04376186057925224,
- 0.06929384917020798, -0.06806070357561111, 0.004277938045561314, -0.074856698513031,
- -0.015978561714291573, 0.07524816691875458, -0.04585910588502884, 0.05481870844960213,
- 0.007432837039232254, 0.04785623028874397, 0.0695023313164711, 0.06760481745004654,
- 0.021609725430607796, -0.08112470805644989, -0.06307640671730042, 0.09826479107141495,
- -0.04080645367503166, -0.04722091555595398, -0.0005597069975920022,
- -0.07598400861024857, 0.07464411854743958, -0.1783972680568695, 0.009486350230872631,
- 0.05955948680639267, -0.10030687600374222, -0.0404910147190094, -0.04322497546672821,
- 0.07592466473579407, -0.030335087329149246, 0.06020256504416466, -0.06785393506288528,
- -0.014200087636709213, 0.012411430478096008, 0.0014300632756203413,
- -0.012058793567121029, 0.042905293405056, 0.07333602011203766, -0.06890657544136047,
- -0.015349306166172028, 0.05746490880846977, -0.027604615315794945, -0.02767806500196457,
- 0.04907038062810898, 0.08203213661909103, -0.03189453110098839, -0.05504235997796059,
- -0.04675424471497536, 0.008236974477767944, -0.010189414955675602, -0.04261333867907524,
- 0.004247565288096666, 0.047613587230443954, -0.0661817416548729, -0.016897577792406082,
- 0.03556377440690994, 0.06679994612932205, 0.15079617500305176, -0.022196898236870766,
- 0.032110586762428284, -0.06170310452580452, -0.05969271436333656, 0.07164806127548218,
- 0.045848529785871506, 0.09556609392166138, -0.048763588070869446, -0.07220607250928879,
- -0.04858009144663811, -0.10149684548377991, 0.06382287293672562, 0.08326968550682068,
- 0.034951359033584595, -0.02038075216114521, 0.005898031406104565, -0.08045113831758499,
- -0.06708880513906479, 0.09803475439548492, 0.05626429617404938, 0.08865292370319366,
- 0.09453494846820831, -0.10007680207490921, -0.07492796331644058, 0.09471069276332855,
- -0.03496052697300911, -0.006223877891898155, -0.0450393483042717, -0.030270980671048164,
- 0.1748056411743164, 0.14930635690689087, -0.01581777073442936, -0.017148146405816078,
- 0.07832501083612442, 0.025511492043733597, 0.04611516743898392, 0.03195490315556526,
- 0.022509075701236725, -0.01813535764813423, -0.08660772442817688, -0.11305560171604156,
- 0.06399329751729965, 0.061630163341760635, -0.02718404494225979, -0.08445613086223602,
- -0.0589049831032753, 0.018173709511756897
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 224,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Fan Yiying"],
- "epoch_date_downloaded": 1607644800,
- "epoch_date_modified": 1654732800,
- "epoch_date_submitted": 1653868800,
- "flag": null,
- "report_number": 1738,
- "source_domain": "sixthtone.com",
- "submitters": ["Ingrid Dickinson (CSET)"],
- "title": "Scammers Busted Using Face GIFs to Steal From WeChat Accounts",
- "url": "https://www.sixthtone.com/news/1006310/scammers-busted-using-face-gifs-to-steal-from-wechat-accounts"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "memorial-sloan-kettering",
- "name": "Memorial Sloan Kettering"
- },
- {
- "__typename": "Entity",
- "entity_id": "jupiter-hospital",
- "name": "Jupiter Hospital"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "ibm-watson-health",
- "name": "IBM Watson Health"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "oncologists",
- "name": "oncologists"
- },
- {
- "__typename": "Entity",
- "entity_id": "cancer-patients",
- "name": "cancer patients"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1740, 1739],
- "vector": [
- -0.043557293713092804, 0.07506075501441956, 0.005272562149912119, -0.07952447235584259,
- 0.09692254662513733, -0.01693562977015972, 0.01437409594655037, 0.08440256118774414,
- 0.10223252326250076, -0.1221236139535904, -0.017695793882012367, 0.030160531401634216,
- 0.002493710722774267, -0.08450578898191452, 0.003867801744490862, -0.11178874969482422,
- -0.10048118233680725, -0.05971040576696396, -0.04901067167520523, -0.10379262268543243,
- -0.05558787286281586, 0.017072809860110283, 0.01880483329296112, 0.06437014788389206,
- -0.05109106004238129, 0.05020735040307045, 0.10378462821245193, 0.1503085494041443,
- -0.03523564711213112, 0.041298069059848785, 0.010077367536723614, -0.05945228412747383,
- 0.11114471405744553, 0.01799330860376358, 0.023411428555846214, 0.09709890186786652,
- -0.03337391838431358, -0.014266187325119972, 0.057487018406391144,
- -0.046401530504226685, 0.02797257900238037, 0.2963944375514984, 0.030786439776420593,
- 0.0050446996465325356, 0.021341323852539062, -0.06887741386890411, 0.015813037753105164,
- 0.07615505158901215, 0.011172971688210964, 0.018865730613470078, -0.03613673150539398,
- 0.10224612057209015, 0.01384415477514267, 0.05381321161985397, -0.10064773261547089,
- 0.07542143762111664, 0.005585059057921171, -0.07615596055984497, 0.06771478056907654,
- -0.0478258952498436, -0.016276009380817413, -0.27379095554351807, -0.014517691917717457,
- -0.11185407638549805, 0.05526842921972275, -0.08281345665454865, -0.03530317544937134,
- 0.04393606632947922, -0.002756084082648158, 0.07680407166481018, 0.03769467771053314,
- -0.022681117057800293, -0.040376320481300354, 0.05016544088721275, 0.005908510647714138,
- 0.003329760394990444, 0.04385630786418915, 0.13632157444953918, -0.10817141830921173,
- 0.008376779034733772, 0.08374176919460297, -0.08273157477378845, 0.4380382299423218,
- -0.030781004577875137, 0.0043167658150196075, 0.020763905718922615, 0.0963214784860611,
- 0.0015747305005788803, 0.03705491125583649, 0.002998367417603731, -0.042052336037158966,
- 0.06273777037858963, -0.042695581912994385, -0.029276302084326744, 0.08490394800901413,
- 0.06032014638185501, -0.00955332349985838, -0.014491617679595947, -0.004489963874220848,
- -0.019737733528017998, 0.028731629252433777, -0.02940542809665203, 0.13779842853546143,
- 0.10739166289567947, -0.02305012010037899, 0.01283873338252306, 0.06461656093597412,
- -0.044859856367111206, 0.04508976638317108, -0.02863195911049843, 0.0030673807486891747,
- -0.03340508043766022, 0.03993803262710571, 0.001995642203837633, 0.03904907777905464,
- -0.04465005174279213, 0.014511475339531898, 0.06520718336105347, 0.07427474111318588,
- 0.02007046528160572, 0.00759491603821516, 0.046652890741825104, 0.023589253425598145,
- -0.07364161312580109, -0.10805098712444305, -0.025628739967942238, -0.04334404692053795,
- -0.058726683259010315, -0.043191734701395035, 0.055309537798166275,
- -0.09816990792751312, -0.1947329342365265, 0.05106375738978386, 0.06806042790412903,
- -0.039809297770261765, -0.022478420287370682, 0.005975937470793724,
- -0.062458932399749756, 0.06542805582284927, -0.00624289084225893, 0.014460962265729904,
- 0.07453858107328415, -0.003866633865982294, 0.06150219589471817, 0.08948725461959839,
- 0.0018354589119553566, -0.06822039186954498, -0.05044116452336311, 0.04154986888170242,
- 0.01090911217033863, 0.11941354721784592, -0.1656396985054016, -0.04433589428663254,
- 0.01748051680624485, 0.01518685556948185, 0.7593299150466919, 0.11717954277992249,
- 0.19872143864631653, -0.013114419765770435, -0.06367108225822449, 0.17740857601165771,
- -0.02576277032494545, 0.09536062926054001, -0.12386712431907654, -0.05698814243078232,
- 0.03703301399946213, -0.05974941700696945, -0.04375245422124863, 0.03673272579908371,
- 0.014565867371857166, 0.13326802849769592, 0.028929654508829117, 0.07589869201183319,
- -0.008426371961832047, -0.10361666977405548, -0.03249043598771095, 0.10395894199609756,
- 0.047127336263656616, -0.12516123056411743, -0.03884149342775345, 0.04923852160573006,
- 0.06373442709445953, -0.08831378072500229, -0.0006735599599778652, -0.0854414701461792,
- 0.07920950651168823, -0.02355841174721718, 0.03697391226887703, -0.041285332292318344,
- 0.034510593861341476, 0.020763549953699112, 0.047084830701351166, 0.04029492288827896,
- -0.12913621962070465, -0.011832066811621189, 0.0939522385597229, -0.001203669235110283,
- -0.06611717492341995, 0.09319373965263367, -0.05675486475229263, 0.049665383994579315,
- 0.030221620574593544, 0.18739861249923706, -0.11743927001953125, 0.0005135340616106987,
- -0.038539182394742966, 0.0011949841864407063, 0.03744274005293846, 0.01756579987704754,
- -0.04037071764469147, -0.07420969009399414, 0.0926196277141571, 0.024433385580778122,
- 0.07280373573303223, 0.05749500170350075, -0.012969126924872398, 0.03158145397901535,
- 0.05483546853065491, -0.014597264118492603, -0.034588612616062164, 0.0847090557217598,
- 0.07895278930664062, -0.006959934253245592, -0.02447877638041973, 0.048939187079668045,
- 0.07208315283060074, -0.007416572887450457, -0.013657708652317524, 0.042860403656959534,
- -0.010314978659152985, -0.06791872531175613, 0.06005137041211128, 0.03222298622131348,
- -0.03564395010471344, 0.12598975002765656, -0.023034803569316864, -0.042403265833854675,
- -0.01185923907905817, -0.007937570102512836, 0.02720355987548828, -0.019013045355677605,
- 0.05684038996696472, 0.14065049588680267, 0.05649657920002937, 0.041404735296964645,
- 0.04550584405660629, 0.07677154242992401, 0.02084251493215561, -0.014632942155003548,
- 0.10746501386165619, -0.03877333924174309, -0.08005864918231964, -0.0008918135426938534,
- -0.02712671086192131, 0.05187119171023369, -0.016008345410227776, -0.046989090740680695,
- -0.042479947209358215, -0.028889961540699005, 0.02232825569808483, -0.07051755487918854,
- -0.07056091725826263, -0.007610796019434929, 0.023237833753228188,
- -0.057416245341300964, -0.09132172167301178, -0.0709567666053772, 0.027382103726267815,
- 0.12310349941253662, -0.000790982972830534, -0.018042173236608505, -0.12884323298931122,
- 0.025509092956781387, -0.0023057344369590282, 0.05989529937505722,
- 0.0061832936480641365, 0.007961920462548733, 0.010736536234617233,
- -0.046685755252838135, 0.021986093372106552, -0.0068653603084385395,
- -0.021110087633132935, -0.06409598141908646, -0.11805672198534012, -0.0614025853574276,
- -0.018218904733657837, 0.04261931777000427, -0.053163815289735794, 0.02235211245715618,
- 0.023529212921857834, 0.03481266647577286, -0.030100246891379356, -0.017354927957057953,
- 0.03761063143610954, -0.05042612552642822, -0.02672656625509262, 0.11341552436351776,
- -0.050224918872117996, 0.0456564836204052, 0.007416361942887306, -0.05553614720702171,
- -0.006631727330386639, -0.0247375275939703, -0.04136811941862106, 0.08497617393732071,
- -0.008697587065398693, -0.0007563778199255466, -0.05363858491182327,
- -0.0035979924723505974, -0.004720283672213554, -0.0864795371890068,
- -0.09296426177024841, -0.046316929161548615, 0.11851881444454193, -0.008812898769974709,
- -0.006785019300878048, -0.03576836735010147, -0.04336240887641907, 0.04581207036972046,
- -0.014691454358398914, 0.020822780206799507, 0.014069785363972187, 0.08833817392587662,
- -0.04271995648741722, 0.02966807782649994, 0.0842101126909256, -0.03533986955881119,
- 0.034902796149253845, 0.0755794495344162, 0.4122697710990906, -0.07551316171884537,
- 0.0717136487364769, 0.08827510476112366, 0.006856004241853952, 0.038059309124946594,
- -0.06325791031122208, 0.06927025318145752, 0.10229291021823883, 0.14740324020385742,
- 0.10190455615520477, -0.0726332888007164, -0.007711049169301987, -0.089236781001091,
- 0.10417884588241577, 0.008558199740946293, 0.047948338091373444, -0.023544523864984512,
- -0.08199529349803925, 0.010659479536116123, 0.03425604850053787, -0.031409718096256256,
- 0.008632338605821133, -0.011089226230978966, -0.06882011145353317, 0.018863186240196228,
- -0.022024907171726227, 0.007872989401221275, -0.010624667629599571, 0.08523617684841156,
- -0.047276854515075684, 0.011477364227175713, 0.07313291728496552, 0.013398608192801476,
- -0.11565075814723969, 0.0035662504378706217, -0.09466385841369629, -0.12332123517990112,
- 0.06769699603319168, -0.004921263083815575, 0.10847455263137817, 0.03792944923043251,
- -0.013369501568377018, 0.09198424965143204, 0.026466937735676765, -0.04911263287067413,
- 0.027546267956495285, 0.05650729313492775, 0.03135424852371216, 0.08006826043128967,
- 0.13389641046524048, -0.016270091757178307, -0.060976386070251465, -0.093381866812706,
- 0.07685630023479462, 0.10267284512519836, -0.028659170493483543, -0.029307115823030472,
- 0.009776374325156212, -0.02622959204018116, 0.0014686938375234604,
- -0.041375674307346344, -0.09187966585159302, -0.03232968971133232, -0.04506462812423706,
- 0.10011757910251617, 0.032603271305561066, -0.040715910494327545, -0.15567389130592346,
- -0.05826687812805176, -0.04331032186746597, 0.005468927323818207, 0.13219976425170898,
- -0.065951868891716, 0.09779880195856094, 0.0339212566614151, -0.013186119496822357,
- 0.04071404039859772, -0.07239063084125519, 0.003339841729030013, -0.023347066715359688,
- 0.048628196120262146, 0.030739974230527878, 0.032372135668992996, -0.07623189687728882,
- 0.09542299807071686, -0.09117887914180756, 0.092730812728405, 0.020178712904453278,
- -0.06688860058784485, 0.06762286275625229, -0.024773605167865753, 0.02459818869829178,
- 0.052097395062446594, -0.03721799701452255, -0.025878064334392548,
- -0.061312127858400345, -0.05127347260713577, -0.10655338317155838, -0.03208134323358536,
- -0.06593682616949081, -0.10572054982185364, 0.013086607679724693, -0.08894036710262299,
- -0.005800231825560331, -0.014974960125982761, -0.04558897763490677, 0.0171909648925066,
- 0.03378728777170181, 0.05390753597021103, -0.12468133866786957, -0.02014872059226036,
- -0.009832213632762432, 0.05747051537036896, -0.021915830671787262, -0.04907750338315964,
- 0.03808681294322014, 0.10326169431209564, 0.017975211143493652, -0.0034297939855605364,
- -0.013398735783994198, -0.05746547132730484, 0.060474999248981476, -0.1156342476606369,
- -0.397799015045166, -0.0015449048951268196, 0.01191718690097332, 0.07429886609315872,
- 0.020568884909152985, -0.0903019979596138, 0.0793878585100174, 0.020936623215675354,
- -0.05615730583667755, 0.10297094285488129, -0.04852188006043434, 0.004690141417086124,
- 0.00903352815657854, -0.06291521340608597, -0.020380310714244843, -0.07244384288787842,
- -0.03479862958192825, 0.0353335440158844, -0.036491867154836655, -0.09090781956911087,
- -0.08483272790908813, 0.048267871141433716, -0.02095361053943634, -0.01668129488825798,
- 0.04886525869369507, -0.0027918145060539246, -0.03648173436522484, -0.02632804960012436,
- 0.04100623354315758, 0.024550333619117737, 0.003500697435811162, -0.11778543889522552,
- 0.01113087311387062, 0.055659301578998566, -0.02573465183377266, 0.14601746201515198,
- 0.004117557313293219, 0.04635978117585182, -0.06741811335086823, 0.09518730640411377,
- 0.05238562822341919, 0.18842552602291107, -0.005091358441859484, -0.019467217847704887,
- 0.01590140536427498, 0.0926070585846901, 0.044811077415943146, 0.06109670549631119,
- -0.016894590109586716, -0.011364761739969254, 0.06207684427499771,
- 0.0033895294182002544, 0.09824338555335999, -0.08775864541530609, 0.002089620102196932,
- -0.0520617738366127, -0.03155352175235748, 0.00388493575155735, -0.03773404657840729,
- 0.16783642768859863, 0.02762593701481819, 0.023908481001853943, 0.08499746024608612,
- -0.08908658474683762, 0.0401783287525177, -0.07164657115936279, -0.1361282616853714,
- -0.0020772209390997887, -0.005767236463725567, 0.002690066583454609,
- -0.030741717666387558, -0.13644953072071075, -0.00217742589302361, -0.0475536584854126,
- -0.020952899008989334, 0.10624495148658752, -0.07559201866388321, 0.0014858869835734367,
- -0.026779675856232643, 0.12926332652568817, 0.054252710193395615, 0.06330914050340652,
- 0.04896754026412964, 0.03426586091518402, 0.029159804806113243, 0.04514404386281967,
- -0.05803360044956207, -0.13667519390583038, -0.04481334984302521, 0.16085797548294067,
- -0.034212350845336914, 0.13630609214305878, 0.014028720557689667, -0.0775822252035141,
- -0.08446425199508667, 0.011279069818556309, 0.0001624440774321556, 0.010255548171699047,
- -0.4122591018676758, 0.010487768799066544, 0.1452242136001587, 0.02762713097035885,
- 0.030461708083748817, 0.07906313240528107, 0.020423609763383865, -0.04654551297426224,
- -0.03965048864483833, -0.09415274113416672, 0.17173044383525848, 0.0021789916791021824,
- 0.0802321806550026, -0.10913215577602386, 0.03910359740257263, 0.06203227862715721,
- -0.02482123114168644, -0.0005958303809165955, 0.08577418327331543, -0.21833589673042297,
- -0.009356008842587471, -0.016546715050935745, 0.13619336485862732, 0.004077560268342495,
- 0.04606064409017563, 0.07439059764146805, -0.005099961534142494, 0.04657042771577835,
- 0.025598907843232155, -0.0026219342835247517, 0.06187400221824646, 0.001044473610818386,
- -0.04355926811695099, 0.09910456836223602, 0.1118406429886818, 0.05653709918260574,
- -0.026998763903975487, 11.799915313720703, 0.06345847994089127, 0.0565154105424881,
- -0.13457819819450378, -0.05341062694787979, -0.011632928624749184, 0.041124127805233,
- -0.09774690866470337, 0.04236249253153801, 0.10594479739665985, -0.030308475717902184,
- -0.04548874497413635, -0.013915255665779114, -0.11268281191587448, 0.01841847598552704,
- -0.07636144757270813, -0.07228757441043854, -0.06025052070617676, 0.0297737754881382,
- -0.04243869334459305, -0.0677630752325058, -0.005660538095980883, 0.06441567838191986,
- 0.00851259846240282, -0.07277172803878784, 0.024003416299819946,
- -0.00022147828713059425, -0.003055272623896599, -0.00344480131752789,
- -0.005298469681292772, 0.00009679840877652168, 0.05664512887597084,
- 0.058997318148612976, 0.0029961741529405117, 0.03698005527257919, 0.06435514986515045,
- 0.06514360755681992, 0.0501335933804512, 0.044954586774110794, 0.04842901602387428,
- 0.005961440037935972, 0.06610898673534393, 0.013300460763275623, 0.031020216643810272,
- 0.024950871244072914, 0.057798899710178375, 0.03240722417831421, 0.10867729038000107,
- -0.025579694658517838, 0.09173671901226044, 0.09300951659679413, -0.007392228115350008,
- 0.10796048492193222, -0.042480066418647766, -0.015190878883004189, 0.05201534926891327,
- -0.020413152873516083, -0.06264103949069977, 0.07899735867977142, 0.04057977721095085,
- -0.04829647019505501, 0.11648339033126831, 0.033813610672950745, 0.06329796463251114,
- 0.010092760436236858, 0.08070440590381622, 0.07491296529769897, 0.05489503592252731,
- -0.15209724009037018, -0.08481315523386002, -0.007373197004199028, -0.12183763086795807,
- -0.0850771814584732, 0.14004918932914734, 0.14524498581886292, -0.04958115518093109,
- 0.0653059333562851, -0.0061717042699456215, 0.060762811452150345, -0.02464751899242401,
- -0.036861564964056015, 0.07748426496982574, -0.02130989171564579, 0.030947647988796234,
- 0.0762556791305542, 0.018417593091726303, 0.10566338896751404, 0.09995020180940628,
- -0.04760665446519852, -0.105471670627594, -0.1266694962978363, 0.09996238350868225,
- 0.01472485065460205, -0.04896162450313568, -0.008494112640619278, -0.05169462040066719,
- 0.025573188439011574, -0.14953923225402832, 0.09347586333751678, 0.08651460707187653,
- -0.09909769892692566, -0.031501300632953644, -0.051571108400821686,
- 0.057485103607177734, 0.03538525104522705, 0.02709857188165188, -0.06608957052230835,
- 0.0014852196909487247, 0.008391673676669598, 0.04435320198535919, -0.01426660642027855,
- 0.05230497568845749, 0.06845654547214508, -0.0396595261991024, 0.030181968584656715,
- 0.08757153153419495, -0.055628784000873566, -0.018320206552743912, 0.08105727285146713,
- 0.0229182168841362, -0.12346220761537552, -0.072026826441288, -0.04164575785398483,
- -0.06465330719947815, -0.020466282963752747, -0.054525211453437805,
- 0.006166892126202583, 0.00427774665877223, -0.05854908749461174, -0.04563183709979057,
- 0.0767173022031784, 0.08604654669761658, 0.07594849914312363, -0.019006837159395218,
- 0.05798531323671341, -0.07788136601448059, -0.008046532981097698, 0.08405406773090363,
- 0.06394973397254944, 0.06610836088657379, -0.06579813361167908, -0.0129014290869236,
- -0.08075455576181412, -0.12091942131519318, 0.0021988688968122005, 0.09967654943466187,
- 0.028761083260178566, 0.018481221050024033, 0.023685019463300705, -0.07012967020273209,
- -0.06928892433643341, 0.040346141904592514, 0.020227236673235893, 0.03550363704562187,
- 0.01942376047372818, -0.04115188121795654, -0.011656839400529861, 0.09112810343503952,
- -0.044326331466436386, -0.009640264324843884, 0.0038509625010192394,
- -0.03966137021780014, 0.07991786301136017, 0.09974892437458038, 0.07363719493150711,
- 0.0547337532043457, 0.0487012080848217, -0.011826862581074238, 0.023739121854305267,
- -0.017008278518915176, 0.04501524195075035, -0.07021480053663254, -0.029211215674877167,
- -0.06597749888896942, -0.027628712356090546, 0.050397831946611404,
- -0.002668281551450491, -0.14297451078891754, -0.02330653741955757, -0.06719020754098892
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 225,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Casey Ross", " Ike Swetlitz"],
- "epoch_date_downloaded": 1653955200,
- "epoch_date_modified": 1654732800,
- "epoch_date_submitted": 1653955200,
- "flag": null,
- "report_number": 1740,
- "source_domain": "statnews.com",
- "submitters": ["Khoa Lam"],
- "title": "IBM's Watson supercomputer recommended 'unsafe and incorrect' cancer treatments, internal documents show",
- "url": "https://www.statnews.com/2018/07/25/ibm-watson-recommended-unsafe-incorrect-treatments/"
- },
- {
- "__typename": "Report",
- "authors": ["Fink Densford"],
- "epoch_date_downloaded": 1607904000,
- "epoch_date_modified": 1654732800,
- "epoch_date_submitted": 1653955200,
- "flag": null,
- "report_number": 1739,
- "source_domain": "massdevice.com",
- "submitters": ["Thomas Giallella (CSET)"],
- "title": "Report: IBM Watson delivered ‘unsafe and inaccurate’ cancer recommendations",
- "url": "https://www.massdevice.com/report-ibm-watson-delivered-unsafe-and-inaccurate-cancer-recommendations/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "waze",
- "name": "Waze"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "waze",
- "name": "Waze"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "waze-users",
- "name": "Waze users"
- },
- {
- "__typename": "Entity",
- "entity_id": "sherman-oaks-residents",
- "name": "Sherman Oaks residents"
- },
- {
- "__typename": "Entity",
- "entity_id": "los-angeles-city-government",
- "name": "Los Angeles city government"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1743, 1742, 1741],
- "vector": [
- -0.06425411254167557, 0.10983049124479294, 0.02954445220530033, -0.08253350853919983,
- 0.08277270942926407, -0.010605700314044952, -0.01342780888080597, 0.023881061002612114,
- 0.05039377883076668, -0.093601755797863, 0.030547356233000755, 0.014078761450946331,
- 0.016513856127858162, -0.05067071318626404, 0.01847020536661148, -0.058119338005781174,
- -0.08955079317092896, -0.08383136987686157, -0.03411560133099556, -0.1205141544342041,
- -0.06988315284252167, -0.03588658943772316, 0.008526470512151718, 0.09267154335975647,
- -0.06454119831323624, 0.02854578197002411, 0.09849518537521362, 0.09421812742948532,
- -0.01678643189370632, 0.05418902635574341, -0.0198386050760746, -0.08850393444299698,
- 0.12392678111791611, 0.0177773367613554, -0.004830875899642706, 0.08410444855690002,
- 0.001194089651107788, -0.033709816634655, 0.01677584834396839, 0.0065363626927137375,
- 0.055316220968961716, 0.2311033010482788, -0.0200843196362257, -0.024676254019141197,
- 0.051151614636182785, -0.04766947031021118, 0.004331020172685385, 0.0607750304043293,
- 0.0007557065109722316, 0.033024419099092484, -0.0451880544424057, 0.0769537165760994,
- -0.059404727071523666, 0.02249186672270298, -0.12602360546588898, 0.036580637097358704,
- 0.06130874156951904, 0.019322670996189117, 0.06471936404705048, -0.09701784700155258,
- -0.039862070232629776, -0.2365068942308426, -0.021296808496117592, -0.09835096448659897,
- 0.13140638172626495, -0.06722882390022278, -0.0734313428401947, -0.0065722037106752396,
- 0.008584598079323769, 0.08467214554548264, 0.05299060046672821, -0.04386988282203674,
- -0.042599767446517944, 0.011782880872488022, 0.006238522008061409,
- -0.006056451704353094, -0.015211116522550583, 0.18588566780090332, -0.10112297534942627,
- 0.0242473091930151, 0.10400258749723434, -0.12597256898880005, 0.41802823543548584,
- 0.01820683665573597, 0.028735898435115814, -0.05172412097454071, 0.0698818564414978,
- 0.0523366741836071, 0.04582548141479492, 0.06803029775619507, -0.03842422738671303,
- 0.03136669099330902, -0.08983185887336731, 0.032727573066949844, 0.09173569828271866,
- 0.02335803210735321, -0.02329382486641407, 0.019230812788009644, -0.01753786765038967,
- -0.09082634001970291, 0.04398332163691521, -0.047002505511045456, 0.05867892876267433,
- 0.04018187150359154, -0.016909528523683548, -0.00023740514006931335,
- 0.08119600266218185, -0.03222168609499931, 0.038858216255903244, -0.07275856286287308,
- -0.0020397722255438566, -0.021125515922904015, 0.04606891795992851,
- -0.025672517716884613, 0.008270274847745895, -0.043333303183317184,
- 0.008087540045380592, 0.012101232074201107, 0.09417230635881424, 0.012871329672634602,
- -0.013064061291515827, 0.07880435883998871, 0.10677164047956467, -0.05466289445757866,
- -0.03484191745519638, -0.03650454059243202, -0.06733798235654831, -0.013550267554819584,
- -0.059089865535497665, 0.033832449465990067, -0.04275619983673096, -0.17973469197750092,
- 0.002734625479206443, 0.07361374795436859, 0.011756408028304577, -0.027119547128677368,
- -0.017137758433818817, -0.06909164786338806, 0.04790568724274635, -0.031960323452949524,
- 0.001676643849350512, 0.03783362731337547, 0.06897244602441788, 0.02952016331255436,
- 0.13359397649765015, 0.06098924204707146, -0.04198851063847542, -0.01781243272125721,
- -0.0027203538920730352, -0.017271878197789192, 0.08839407563209534,
- -0.08695445209741592, -0.048142313957214355, 0.010834340937435627,
- -0.028501877561211586, 0.6877486109733582, 0.129930779337883, 0.1611510068178177,
- 0.010582485236227512, -0.0327664315700531, 0.1919342428445816, 0.04622649773955345,
- 0.05189559981226921, -0.08732619136571884, -0.057386040687561035, 0.004056222271174192,
- -0.07811165601015091, -0.050232503563165665, 0.026646405458450317, 0.013244125992059708,
- 0.10065905004739761, 0.03316497802734375, 0.07259553670883179, -0.017806174233555794,
- -0.09700626134872437, -0.008281282149255276, 0.05100143328309059, -0.006058478262275457,
- -0.12850771844387054, -0.0429990254342556, 0.03549725189805031, 0.06517031043767929,
- -0.10627100616693497, -0.03487478196620941, -0.06726809591054916, 0.06312313675880432,
- -0.04156946763396263, 0.030423054471611977, -0.03959308937191963, 0.05558992922306061,
- 0.023530950769782066, 0.06292971968650818, 0.0036959617864340544, -0.0937490239739418,
- -0.05946819856762886, 0.13149216771125793, -0.005902107805013657, -0.033130545169115067,
- 0.044482436031103134, -0.09451190382242203, 0.06737858802080154, 0.029919572174549103,
- 0.16165269911289215, -0.1202215775847435, 0.014887490309774876, 0.015275105834007263,
- 0.030612492933869362, 0.06595104187726974, 0.007201960776001215, -0.03253772482275963,
- -0.038023028522729874, 0.0555572547018528, 0.03409034013748169, 0.11759070307016373,
- 0.05101028457283974, -0.04394376277923584, 0.07853825390338898, 0.09778309613466263,
- -0.006725730374455452, -0.014465108513832092, 0.07996562123298645, 0.07198832929134369,
- -0.015830645337700844, 0.00438051950186491, 0.010466049425303936, 0.018898122012615204,
- 0.04995851591229439, -0.004052100703120232, 0.060940761119127274, 0.00771208293735981,
- -0.05783172324299812, -0.017511539161205292, 0.05182934179902077, 0.03855049982666969,
- 0.1226319670677185, -0.042055610567331314, -0.03984859585762024, -0.019710492342710495,
- -0.05354812741279602, 0.01914997771382332, -0.03548562526702881, 0.0825592577457428,
- 0.0467832051217556, 0.10123353451490402, 0.024983340874314308, 0.06659812480211258,
- 0.07289304584264755, 0.06085033342242241, 0.05672714486718178, 0.08582830429077148,
- -0.030299782752990723, -0.04438955709338188, -0.01585819385945797,
- 0.0066635035909712315, 0.02172253280878067, 0.03996463492512703, -0.073862724006176,
- -0.019746093079447746, -0.06563489139080048, -0.02621041052043438,
- -0.030123144388198853, -0.07050099223852158, -0.006264194846153259,
- 0.031459711492061615, -0.04404817149043083, -0.08765948563814163, -0.07552261650562286,
- 0.005795000120997429, 0.08045334368944168, -0.03495287522673607, -0.020004989579319954,
- -0.11709114164113998, 0.0004925529356114566, -0.022914094850420952, 0.0497567355632782,
- 0.014228478074073792, 0.04572804272174835, 0.01156846433877945, -0.09469465166330338,
- 0.04480712488293648, -0.021962448954582214, -0.014435204677283764,
- -0.053373679518699646, -0.007981815375387669, -0.02293848805129528, 0.01293362956494093,
- 0.01932535134255886, -0.013617339543998241, 0.03435702249407768, 0.018939098343253136,
- 0.055326104164123535, -0.001850898377597332, -0.053077951073646545,
- 0.060413021594285965, -0.014939193613827229, -0.04042242467403412, 0.09159091114997864,
- 0.0011667715152725577, 0.04721067473292351, -0.03073270060122013, -0.07501142472028732,
- -0.016976581886410713, 0.009331760928034782, -0.05290381237864494, 0.024221746250987053,
- -0.03335419297218323, 0.010939243249595165, -0.06893423944711685, 0.0024936955887824297,
- 0.06451141089200974, -0.06312402337789536, -0.07097690552473068, -0.08686411380767822,
- 0.14591260254383087, -0.017122574150562286, 0.017437400296330452, 0.0520717054605484,
- -0.05873944237828255, 0.052771251648664474, -0.02133248560130596, -0.03091229684650898,
- 0.02651083469390869, -0.004785898141562939, -0.030278021469712257, 0.001568832085467875,
- 0.06226183846592903, -0.02849631942808628, 0.02102998085319996, 0.052384018898010254,
- 0.4304167926311493, -0.20000006258487701, 0.09053625911474228, 0.1075253114104271,
- 0.058291245251894, 0.06239405646920204, -0.02784978784620762, 0.05592873692512512,
- 0.07094227522611618, 0.13870130479335785, 0.08485039323568344, -0.012421759776771069,
- -0.022791266441345215, -0.0901341438293457, 0.0903540626168251, -0.002167977625504136,
- 0.03310472145676613, -0.006350986659526825, -0.10367370396852493,
- -0.0013871361734345555, 0.034505125135183334, -0.06978245824575424,
- -0.008348233066499233, 0.018745696172118187, -0.06717495620250702, 0.024856561794877052,
- -0.010461273603141308, 0.0015482078306376934, -0.03036380559206009,
- 0.011720930226147175, -0.028435103595256805, 0.04157547280192375, 0.020936990156769753,
- 0.03371308371424675, -0.10575523972511292, 0.013278517872095108, -0.08422311395406723,
- -0.1019616648554802, 0.11452410370111465, -0.03461257740855217, 0.045719701796770096,
- 0.05899065360426903, -0.038086894899606705, 0.04069266468286514, 0.003257033647969365,
- -0.030437173321843147, 0.028536392375826836, 0.04294966533780098, 0.04407588765025139,
- 0.10289720445871353, 0.17408019304275513, -0.06847751140594482, -0.06059856340289116,
- -0.08039414137601852, 0.08739874511957169, 0.09015601873397827, -0.004095241893082857,
- 0.015492945909500122, 0.011063207872211933, -0.027060672640800476, 0.00815200712531805,
- -0.0327281579375267, -0.05980107560753822, 0.026929015293717384, -0.04353192448616028,
- 0.06879030913114548, -0.0010394168784841895, 0.00047294297837652266,
- -0.1939830332994461, 0.00256447889842093, -0.029290631413459778, 0.033195361495018005,
- 0.1362750083208084, -0.0014228072250261903, 0.039175208657979965,
- -0.0027114637196063995, -0.03894810378551483, 0.03334964066743851, -0.07312485575675964,
- 0.023821445181965828, -0.008653492666780949, 0.018464216962456703, 0.028888730332255363,
- 0.05075018107891083, -0.033411186188459396, 0.06494732201099396, -0.11200475692749023,
- 0.024243494495749474, -0.011606179177761078, -0.006289041135460138, 0.01807653345167637,
- -0.03374158963561058, 0.056321632117033005, 0.032037168741226196, -0.03823072090744972,
- 0.013357815332710743, -0.003159073879942298, -0.06813130527734756, -0.08217565715312958,
- -0.07616732269525528, -0.03611115738749504, -0.08619615435600281, 0.059708371758461,
- -0.11468272656202316, -0.011945456266403198, -0.022615423426032066,
- -0.013818816281855106, -0.0007769306539557874, 0.007350893225520849,
- 0.012726840563118458, -0.13037119805812836, 0.060677800327539444, 0.0021320621017366648,
- 0.06528589129447937, 0.029132679104804993, -0.05421602725982666, 0.0035220535937696695,
- 0.10215958207845688, 0.07135117053985596, -0.011859838850796223, -0.010499929077923298,
- -0.045373350381851196, 0.0130147160962224, -0.12759214639663696, -0.40178442001342773,
- 0.057395707815885544, 0.01714678481221199, 0.06725028902292252, -0.0015539848245680332,
- -0.0657365545630455, 0.03037501871585846, 0.0013074915623292327, -0.028907306492328644,
- 0.07188507914543152, -0.059005338698625565, 0.04544861242175102, 0.004522211384028196,
- -0.06929585337638855, -0.020777182653546333, -0.06966564804315567,
- -0.040752507746219635, 0.03955335170030594, -0.02343101054430008, -0.08500435203313828,
- -0.11409803479909897, 0.03315027430653572, -0.014447537250816822, 0.03178158029913902,
- -0.018302159383893013, 0.04690896347165108, -0.0656035766005516, -0.04962281510233879,
- 0.04359206184744835, 0.07176610082387924, 0.028776109218597412, -0.06119754910469055,
- 0.00925061572343111, 0.017228763550519943, -0.02891498990356922, 0.11674138158559799,
- 0.006062596570700407, 0.029426755383610725, -0.05223642662167549, 0.08608550578355789,
- 0.02745097316801548, 0.1861492544412613, -0.006213963031768799, 0.01887165941298008,
- 0.02812383510172367, 0.14371630549430847, 0.05227014794945717, 0.016363009810447693,
- -0.005565084982663393, -0.020209085196256638, 0.027385100722312927,
- -0.028291871771216393, 0.04927605018019676, -0.06270294636487961, -0.045601215213537216,
- -0.0637764036655426, -0.019164519384503365, -0.020742904394865036, 0.04261775314807892,
- 0.19689486920833588, 0.027695519849658012, 0.027460841462016106, 0.010272528044879436,
- -0.08002587407827377, -0.007134806364774704, -0.08331172913312912, -0.07768375426530838,
- -0.04231434687972069, -0.023070650175213814, -0.002194038825109601,
- -0.016668764874339104, -0.11156818270683289, 0.008001412265002728,
- -0.015340934507548809, -0.000993116176687181, 0.12123487144708633, 0.005040270742028952,
- 0.03574365749955177, -0.01630011945962906, 0.10491394996643066, 0.02967015467584133,
- -0.01598356105387211, 0.05335968732833862, 0.11081365495920181, 0.020672032609581947,
- 0.0024487499613314867, -0.03753886744379997, -0.04675537347793579, 0.014286947436630726,
- 0.10846474021673203, -0.0764380618929863, 0.08117232471704483, 0.0377935953438282,
- -0.012210182845592499, -0.06458168476819992, 0.04414774104952812, -0.02775193192064762,
- 0.0696495771408081, -0.42819836735725403, -0.024069087579846382, 0.0901075005531311,
- 0.026996416971087456, 0.02125728316605091, 0.07691267877817154, 0.02821435034275055,
- -0.013159523718059063, -0.014030938036739826, -0.07614386826753616, 0.14853204786777496,
- 0.009658417664468288, 0.007867853157222271, -0.10331207513809204, 0.05735253170132637,
- 0.07835587114095688, -0.009181099943816662, -0.02348741888999939, 0.06590680032968521,
- -0.17196035385131836, 0.002173306420445442, -0.05471549555659294, 0.12044399231672287,
- -0.044034574180841446, -0.00936698354780674, 0.07231878489255905, -0.10591238737106323,
- 0.019478490576148033, 0.0719735324382782, -0.007878340780735016, 0.034292008727788925,
- -0.021396735683083534, -0.012205290608108044, 0.09633022546768188, 0.0946384072303772,
- 0.07916749268770218, -0.03920852765440941, 11.972033500671387, 0.05150488018989563,
- 0.028950028121471405, -0.08549181371927261, 0.03952512517571449, -0.045587655156850815,
- 0.030343228951096535, -0.06053192541003227, 0.08329235762357712, 0.14154717326164246,
- 0.00391228636726737, -0.05589764937758446, -0.046429961919784546, -0.10838023573160172,
- -0.005246390122920275, -0.0781288743019104, -0.08064284175634384, -0.02748009003698826,
- 0.028748780488967896, -0.04222460463643074, -0.0018153308192268014,
- -0.0019598721992224455, 0.05181088671088219, 0.005890853237360716, -0.09609091281890869,
- 0.048576414585113525, 0.0260517168790102, -0.02400909923017025, -0.017403950914740562,
- 0.026163293048739433, -0.009924717247486115, 0.008885961025953293, 0.01165014784783125,
- 0.0032850864809006453, 0.028894707560539246, 0.044229280203580856, 0.06313597410917282,
- 0.04341535642743111, -0.029565729200839996, 0.12193385511636734, 0.030864858999848366,
- 0.014525964856147766, 0.03380987420678139, 0.016630692407488823, 0.08514928817749023,
- 0.051758889108896255, 0.043854970484972, 0.10307437181472778, 0.05186605080962181,
- 0.06410142779350281, 0.08351588249206543, -0.058373551815748215, 0.16826431453227997,
- 0.0037354242522269487, -0.005370349157601595, 0.04979008436203003,
- -0.0027219755575060844, -0.06979253143072128, 0.06605085730552673, 0.025050193071365356,
- -0.03925898298621178, 0.09397067874670029, 0.025699719786643982, 0.08292768150568008,
- -0.022012218832969666, 0.09197619557380676, 0.0508539080619812, 0.07129306346178055,
- -0.1343189924955368, -0.04831827059388161, 0.014334301464259624, -0.10487691313028336,
- -0.05505397543311119, 0.08212778717279434, 0.112898088991642, -0.03064197115600109,
- 0.032202232629060745, -0.040435150265693665, -0.0023920785170048475,
- -0.05431177094578743, -0.01901519112288952, 0.044384028762578964, 0.016066649928689003,
- -0.02646067552268505, 0.09715282917022705, 0.0219768974930048, 0.0587775819003582,
- 0.10611455887556076, -0.030437635257840157, -0.10367121547460556, -0.07566940039396286,
- 0.0951339602470398, -0.07339341938495636, -0.0533401183784008, -0.002616534009575844,
- -0.03369737043976784, 0.08234558254480362, -0.16821829974651337, 0.06024636700749397,
- 0.11181950569152832, -0.0685291588306427, -0.014284342527389526, -0.054232608526945114,
- 0.06104116141796112, 0.021835612133145332, 0.0401449091732502, -0.047278936952352524,
- 0.02712392807006836, -0.018527964130043983, 0.03689834848046303, -0.05088462308049202,
- 0.0782964900135994, 0.07645324617624283, -0.03856758400797844, 0.010778024792671204,
- 0.03487367182970047, -0.031472090631723404, -0.039992932230234146, 0.05581854656338692,
- 0.04911145940423012, -0.03852544352412224, -0.013101593591272831, -0.008350946940481663,
- -0.044423919171094894, -0.059766609221696854, -0.03148706629872322,
- 0.008090358227491379, 0.025334754958748817, -0.06741111725568771, -0.01123740617185831,
- 0.043719787150621414, 0.03814735636115074, 0.06286114454269409, 0.0024738393258303404,
- 0.08517077565193176, -0.05188637599349022, -0.03478435054421425, 0.03633784130215645,
- 0.03642389178276062, 0.060577552765607834, 0.004236298147588968, -0.037571981549263,
- -0.04272804781794548, -0.09327086806297302, 0.04596937075257301, 0.09407494217157364,
- 0.06983571499586105, 0.017807714641094208, 0.041889041662216187, -0.07626372575759888,
- -0.040314558893442154, 0.13504087924957275, 0.019378939643502235, 0.019396748393774033,
- 0.04051053151488304, -0.07454881072044373, -0.05163349583745003, 0.10760024189949036,
- -0.05535173416137695, 0.015893004834651947, -0.009009749628603458, -0.03466935455799103,
- 0.1027425229549408, 0.08730455487966537, 0.03132752701640129, 0.06418759375810623,
- -0.0006498121074400842, 0.01715591363608837, 0.04269425570964813, -0.03484518453478813,
- 0.0009203068912029266, -0.02301534079015255, -0.12673170864582062, -0.06263279914855957,
- 0.037879880517721176, 0.11211336404085159, 0.011590874753892422, -0.12348419427871704,
- -0.017495205625891685, -0.03522403538227081
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 226,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["NBC Los Angeles"],
- "epoch_date_downloaded": 1653955200,
- "epoch_date_modified": 1654819200,
- "epoch_date_submitted": 1653955200,
- "flag": null,
- "report_number": 1743,
- "source_domain": "nbclosangeles.com",
- "submitters": ["Khoa Lam"],
- "title": "LA City Council Seeks Solutions to Waze Traffic on Side Streets",
- "url": "https://www.nbclosangeles.com/local/la-city-council-seeks-solutions-to-waze-traffic-on-side-streets/49080/"
- },
- {
- "__typename": "Report",
- "authors": ["Tala Salem"],
- "epoch_date_downloaded": 1607904000,
- "epoch_date_modified": 1654819200,
- "epoch_date_submitted": 1653955200,
- "flag": null,
- "report_number": 1742,
- "source_domain": "usnews.com",
- "submitters": ["Ingrid Dickinson (CSET)"],
- "title": "Why Some Cities Have Had Enough of Waze",
- "url": "https://www.usnews.com/news/national-news/articles/2018-05-07/why-some-cities-have-had-enough-of-waze"
- },
- {
- "__typename": "Report",
- "authors": ["Dana Bartholomew"],
- "epoch_date_downloaded": 1653955200,
- "epoch_date_modified": 1654819200,
- "epoch_date_submitted": 1653955200,
- "flag": null,
- "report_number": 1741,
- "source_domain": "dailynews.com",
- "submitters": ["Khoa Lam"],
- "title": "Sherman Oaks residents blame Waze navigation app for clogging streets",
- "url": "https://www.dailynews.com/2017/01/11/sherman-oaks-residents-blame-waze-navigation-app-for-clogging-streets/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "waze",
- "name": "Waze"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "waze",
- "name": "Waze"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "waze-users",
- "name": "Waze users"
- },
- {
- "__typename": "Entity",
- "entity_id": "tourists",
- "name": "tourists"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1974, 1973, 1744],
- "vector": [
- -0.11675719171762466, 0.03976019099354744, 0.03233417496085167, -0.09760034084320068,
- 0.07878003269433975, 0.013883399777114391, -0.018022382631897926, 0.06476715952157974,
- 0.04835986718535423, -0.15184955298900604, 0.004455654416233301, 0.05200548097491264,
- 0.04281099513173103, -0.09993668645620346, 0.04087577387690544, -0.05922684073448181,
- -0.11271082609891891, -0.07565045356750488, -0.02389346994459629, -0.14946259558200836,
- -0.06361248344182968, 0.02078930102288723, 0.05576297640800476, 0.1281275749206543,
- -0.10541626065969467, 0.004564373288303614, 0.10195723176002502, 0.12768979370594025,
- -0.019113821908831596, 0.03819655254483223, -0.027086451649665833, -0.05270523205399513,
- 0.1273694783449173, 0.02500932849943638, 0.00773693947121501, 0.08232653141021729,
- 0.008376283571124077, -0.04233141615986824, -0.06815297156572342, 0.05473734065890312,
- 0.02846507914364338, 0.24313247203826904, 0.00030488427728414536, -0.030282145366072655,
- 0.03533199802041054, -0.05274171009659767, 0.04366825148463249, 0.03206796944141388,
- 0.024054741486907005, -0.0022314328234642744, -0.01734129898250103, 0.11939457803964615,
- -0.02881212718784809, 0.018640629947185516, -0.1379997581243515, 0.10847729444503784,
- 0.056426603347063065, -0.027643784880638123, 0.037283625453710556, -0.12386536598205566,
- -0.07093136757612228, -0.25237974524497986, -0.07562557607889175, -0.03144977614283562,
- 0.0595952533185482, -0.10062360763549805, -0.010557507164776325, -0.008332234807312489,
- 0.033213917165994644, 0.0881754532456398, 0.06645014882087708, -0.07282796502113342,
- -0.003654134226962924, 0.022397907450795174, 0.020589018240571022, -0.02645256370306015,
- 0.004202450159937143, 0.25937560200691223, -0.1469152718782425, 0.00010005399963119999,
- 0.14021417498588562, -0.09108362346887589, 0.5110179781913757, -0.012072385288774967,
- -0.011184652335941792, -0.028713872656226158, 0.13413892686367035, 0.06807922571897507,
- 0.07140904664993286, 0.10028331726789474, -0.007051174994558096, 0.029532937332987785,
- -0.03305237367749214, 0.05011628195643425, 0.06987938284873962, 0.03659481182694435,
- -0.02356579899787903, 0.10685118287801743, -0.010313155129551888, -0.06053518131375313,
- 0.03833993151783943, -0.05431047081947327, 0.09462475031614304, 0.06577900052070618,
- -0.03835240378975868, -0.006821134593337774, 0.11270681768655777, -0.011563475243747234,
- 0.06948941200971603, -0.04993041232228279, 0.004448784049600363, -0.032067783176898956,
- 0.0627572312951088, 0.00135069212410599, 0.052780840545892715, -0.027780205011367798,
- 0.002121001249179244, 0.0417301170527935, 0.10476410388946533, 0.023350730538368225,
- -0.002531089587137103, 0.0737529769539833, 0.1160108670592308, -0.056514326483011246,
- -0.06668593734502792, -0.02969018556177616, -0.10903677344322205, -0.020396243780851364,
- -0.05410770699381828, 0.021382493898272514, -0.04695437476038933, -0.22928600013256073,
- 0.006657079327851534, 0.11770761758089066, 0.0005722101777791977, -0.029428943991661072,
- -0.017729058861732483, -0.08190447837114334, 0.03208855167031288, -0.05884392186999321,
- -0.04686044529080391, 0.05585421994328499, 0.026421383023262024, 0.017324848100543022,
- 0.031178845092654228, 0.08089278638362885, -0.053920578211545944, -0.04340845346450806,
- -0.006645655259490013, -0.056783318519592285, 0.08382780104875565, -0.10364789515733719,
- -0.05107426270842552, 0.030129700899124146, 0.0194597989320755, 0.6623455882072449,
- 0.14645445346832275, 0.1598876267671585, -0.019389232620596886, -0.02309567667543888,
- 0.16886436939239502, -0.019107773900032043, 0.04808981716632843, -0.0865287259221077,
- -0.08966679126024246, 0.04066067561507225, -0.07922866195440292, -0.05191554129123688,
- 0.0611591599881649, 0.010075095109641552, 0.07491611689329147, 0.034495484083890915,
- 0.10167280584573746, -0.0037955977022647858, -0.14573334157466888,
- -0.009965663775801659, 0.07476871460676193, 0.004520242568105459, -0.09602845460176468,
- -0.032846201211214066, 0.05230840668082237, 0.10661645978689194, -0.0597945936024189,
- 0.01251171249896288, -0.04568669572472572, 0.04857813939452171, -0.0026122480630874634,
- 0.050197988748550415, -0.04987683519721031, 0.010233030654489994, 0.0006029431824572384,
- 0.02268988825380802, 0.0097273550927639, -0.12300565093755722, -0.020428000018000603,
- 0.05279575660824776, 0.0015842653810977936, -0.030322575941681862, 0.04804190620779991,
- -0.1339293271303177, 0.021133502945303917, 0.026705697178840637, 0.16920296847820282,
- -0.147494837641716, 0.003529308596625924, 0.018823863938450813, 0.012368980795145035,
- 0.08040813356637955, -0.043260883539915085, -0.07002174854278564, -0.07910629361867905,
- 0.03933318331837654, 0.028034908697009087, 0.07336369901895523, 0.08234386146068573,
- -0.011010639369487762, 0.04541298747062683, 0.1564585119485855, 0.007980654947459698,
- 0.04234478995203972, 0.060482561588287354, 0.07014310359954834, 0.015349683351814747,
- -0.038379259407520294, 0.02889426238834858, 0.05842369794845581, 0.05165346339344978,
- 0.023176392540335655, 0.05284793674945831, 0.03814242407679558, -0.0489669144153595,
- 0.004371689632534981, 0.01947677694261074, 0.027918485924601555, 0.09712538123130798,
- -0.0622498095035553, -0.057300809770822525, -0.017231963574886322, 0.01154693216085434,
- 0.002556905383244157, -0.04868357256054878, 0.09188252687454224, 0.0650179535150528,
- 0.08542414754629135, 0.026936031877994537, 0.04969824478030205, 0.06328438967466354,
- 0.02214241214096546, 0.030198844149708748, 0.08309970796108246, -0.03449812904000282,
- -0.08959010243415833, -0.04872797429561615, -0.023911943659186363, 0.0640776976943016,
- 0.04067552462220192, -0.08983806520700455, -0.03170188143849373, 0.0005687326192855835,
- -0.0341850109398365, -0.0794903039932251, 0.005438026040792465, 0.05607251450419426,
- 0.08910665661096573, -0.08921802043914795, -0.0595712848007679, -0.12917092442512512,
- -0.008411702699959278, 0.06279002875089645, 0.0030258141923695803,
- -0.018563488498330116, -0.12595151364803314, -0.01403032522648573, -0.06197170540690422,
- 0.022472212091088295, -0.01688412018120289, 0.019142216071486473, 0.016653848811984062,
- -0.06870695948600769, 0.007200127933174372, -0.022653432562947273,
- -0.015524198301136494, -0.08051440864801407, -0.06523004919290543,
- -0.024345427751541138, -0.010020952671766281, 0.026881886646151543, -0.009748550131917,
- 0.04306100681424141, 0.034290019422769547, 0.03339946269989014, -0.04409186914563179,
- -0.04479312524199486, 0.08539610356092453, -0.03994637727737427, -0.02427121065557003,
- 0.08901066333055496, 0.026706092059612274, 0.051611531525850296, 0.010132321156561375,
- -0.09444447606801987, -0.033028438687324524, -0.006977187003940344,
- -0.03957417234778404, 0.0540095716714859, -0.05454319715499878, -0.003044309327378869,
- -0.01611556112766266, -0.021549785509705544, 0.07018642872571945, -0.09194600582122803,
- -0.0805918276309967, -0.08165933191776276, 0.13840611279010773, -0.02811617963016033,
- 0.0056777228601276875, 0.01453081052750349, -0.05473817512392998, 0.06576259434223175,
- -0.03224882856011391, -0.02606338821351528, 0.057654332369565964, 0.04053281620144844,
- -0.02165268361568451, 0.027778225019574165, 0.053537797182798386, -0.037948619574308395,
- 0.023200392723083496, 0.05594368278980255, 0.4268440008163452, -0.26465317606925964,
- 0.09343579411506653, 0.08636341243982315, -0.007066430989652872, 0.08986377716064453,
- -0.029156716540455818, 0.07026062905788422, 0.08049961179494858, 0.10058989375829697,
- 0.1275189220905304, -0.07219157367944717, -0.012053881771862507, -0.10537765175104141,
- 0.11744832992553711, -0.020350931212306023, -0.010916517116129398, 0.024076247587800026,
- -0.10752052813768387, 0.00012062551832059398, 0.05627122521400452, -0.07132960110902786,
- -0.007779082749038935, 0.013796515762805939, -0.07358244061470032,
- -0.011733445338904858, -0.002798616187646985, 0.006343361455947161,
- -0.04702742025256157, -0.0026490234304219484, 0.007087247911840677, 0.02345781959593296,
- 0.00011507111048558727, 0.07559642195701599, -0.09845486283302307, 0.022009124979376793,
- -0.10277345776557922, -0.09012946486473083, 0.10124629735946655, -0.017749076709151268,
- 0.050218094140291214, 0.07769670337438583, -0.0039061519782990217, 0.044225167483091354,
- -0.06020723655819893, -0.07410649210214615, 0.050211478024721146, 0.06415257602930069,
- 0.0025922104250639677, 0.09107747673988342, 0.17851626873016357, -0.04784758761525154,
- -0.072687529027462, -0.07285372167825699, 0.08428888767957687, 0.10954076796770096,
- -0.05410541221499443, 0.03323143348097801, -0.026089848950505257, 0.006685744971036911,
- 0.012961235828697681, -0.07257622480392456, -0.12109502404928207, -0.02443099208176136,
- -0.0067558870650827885, 0.047331903129816055, -0.005184318404644728,
- -0.03641033172607422, -0.1739795207977295, -0.02205478586256504, -0.0347532220184803,
- 0.011504820547997952, 0.10483765602111816, -0.047669023275375366, 0.0009342854027636349,
- -0.014220564626157284, -0.03466150537133217, -0.03124370239675045, -0.11335056275129318,
- -0.0077745974995195866, -0.03158535435795784, 0.04767778515815735, 0.04451127350330353,
- 0.04669749736785889, -0.07392743974924088, 0.059115584939718246, -0.12540827691555023,
- 0.054885491728782654, 0.03512956574559212, 0.022092124447226524, 0.033494655042886734,
- -0.03265666216611862, 0.02728317677974701, 0.049742650240659714, -0.04349328950047493,
- 0.038551218807697296, -0.037871118634939194, -0.04932130500674248, -0.0798138678073883,
- -0.04834883287549019, -0.04856997728347778, -0.12588123977184296, 0.050959620624780655,
- -0.1105087399482727, -0.030172521248459816, -0.02959229238331318,
- -0.0019414909183979034, 0.041848838329315186, 0.09202712029218674, 0.05248335376381874,
- -0.16081304848194122, -0.03171233460307121, -0.033650901168584824, 0.07791056483983994,
- -0.022211527451872826, -0.024707868695259094, -0.005506407003849745, 0.0723249539732933,
- 0.05308021232485771, 0.012777075171470642, 0.036539316177368164, -0.10036256909370422,
- -0.020332807675004005, -0.08531966060400009, -0.5309453010559082, 0.05589744821190834,
- -0.005224646534770727, 0.05107111856341362, 0.007504604756832123, -0.04571784660220146,
- 0.05500884726643562, 0.02340506576001644, -0.05728118494153023, 0.12445018440485,
- -0.06530681997537613, -0.0000542538873560261, -0.012542623095214367,
- -0.06301167607307434, -0.013768605887889862, -0.052422866225242615,
- -0.05440500006079674, 0.04572291672229767, -0.022676274180412292, -0.08306027203798294,
- -0.06285053491592407, 0.011420558206737041, 0.01254194974899292, -0.006797300651669502,
- -0.019746869802474976, 0.018302980810403824, -0.0864114761352539, -0.0349481962621212,
- 0.0410241074860096, 0.06735854595899582, 0.05548906698822975, -0.07363449782133102,
- -0.000903236388694495, 0.020493902266025543, -0.002193594118580222, 0.17068208754062653,
- 0.04142574593424797, -0.01621103845536709, -0.05528158321976662, 0.058999646455049515,
- 0.058748647570610046, 0.18196922540664673, -0.03729737177491188, 0.07101699709892273,
- 0.04921814799308777, 0.16142354905605316, 0.03147868439555168, 0.03375325724482536,
- -0.03399091586470604, 0.017992250621318817, -0.00005200567466090433,
- 0.01495411992073059, 0.08682312816381454, -0.08063367009162903, -0.04756730794906616,
- -0.020752212032675743, 0.010584086179733276, -0.018316591158509254, 0.06925753504037857,
- 0.21199142932891846, 0.059591423720121384, 0.042136892676353455, -0.023959258571267128,
- -0.07895974069833755, 0.00937058124691248, -0.07792206853628159, -0.07619914412498474,
- -0.05705668404698372, -0.020007535815238953, 0.013266250491142273, -0.03366496413946152,
- -0.14471596479415894, 0.012319725938141346, -0.022210432216525078,
- -0.003121123882010579, 0.09397566318511963, -0.0029968980234116316, 0.0338715985417366,
- -0.06870261579751968, 0.12451247125864029, 0.05804381147027016, 0.05448475480079651,
- 0.08881495147943497, 0.1172592043876648, 0.025441264733672142, 0.016150062903761864,
- -0.04900703951716423, -0.06962872296571732, 0.03295917436480522, 0.12854225933551788,
- -0.0497233122587204, 0.0812382623553276, 0.0629049614071846, -0.04582178592681885,
- -0.06961920112371445, 0.047809477895498276, -0.01733376272022724, 0.05501231178641319,
- -0.495332807302475, -0.031909942626953125, 0.1572042554616928, 0.025253964588046074,
- 0.022269979119300842, 0.0885392427444458, 0.034269895404577255, -0.02315005473792553,
- -0.0529472716152668, -0.06364256888628006, 0.15746764838695526, -0.029583821073174477,
- 0.09358736127614975, -0.13467466831207275, 0.04581451788544655, 0.04861113429069519,
- 0.0014935723738744855, -0.02462880313396454, 0.08163660764694214, -0.20744700729846954,
- 0.012319621630012989, -0.039088230580091476, 0.190110445022583, 0.017585625872015953,
- 0.015877703204751015, 0.07261085510253906, -0.06179693341255188, 0.005868429318070412,
- 0.02718101441860199, -0.03482215106487274, 0.047870565205812454, 0.006424136459827423,
- -0.03594827279448509, 0.09687437862157822, 0.08350954204797745, 0.09195279330015182,
- -0.02204621396958828, 12.19936466217041, 0.10095558315515518, 0.06325707584619522,
- -0.08783020824193954, 0.03773706778883934, -0.048206835985183716, 0.018288742750883102,
- -0.14137029647827148, 0.06920140236616135, 0.1026325598359108, -0.021782368421554565,
- -0.02354256622493267, -0.0275817159563303, -0.1341029554605484, -0.0015704421093687415,
- -0.09170927852392197, -0.05634534731507301, -0.017678450793027878, 0.049134522676467896,
- -0.04083862900733948, -0.02654457837343216, 0.007282335311174393, 0.05954843387007713,
- 0.03831946477293968, -0.07358746975660324, 0.05664829537272453, 0.029619740322232246,
- -0.027245307341217995, 0.0035796845331788063, 0.04201073572039604, -0.03447500243782997,
- 0.028956301510334015, 0.054156649857759476, -0.02069772221148014, 0.040183644741773605,
- 0.04045616090297699, 0.025156481191515923, 0.0653790757060051, -0.02024330385029316,
- 0.10295241326093674, 0.03135332465171814, 0.027528375387191772, 0.05202708765864372,
- 0.046555180102586746, 0.053228702396154404, 0.03222380951046944, 0.09623239189386368,
- 0.10216254740953445, 0.0023982753045856953, 0.02765345573425293, 0.08062669634819031,
- -0.040102072060108185, 0.12017431855201721, 0.0467153899371624, -0.021771321073174477,
- 0.06866099685430527, -0.020643187686800957, -0.0805869922041893, 0.08201900869607925,
- 0.0829501822590828, -0.03305940330028534, 0.05279707908630371, 0.01751559227705002,
- 0.17016518115997314, -0.017023898661136627, 0.052133332937955856, 0.09857090562582016,
- 0.08037043362855911, -0.15155631303787231, -0.08810646086931229, 0.015973331406712532,
- -0.1545628011226654, -0.07131224125623703, 0.04341863468289375, 0.08947966247797012,
- -0.01391811016947031, 0.05307922884821892, -0.051133107393980026, 0.02894834242761135,
- -0.038681600242853165, -0.003581146476790309, 0.0413874052464962, -0.052104368805885315,
- 0.046799611300230026, 0.0545579195022583, 0.0043970756232738495, 0.1205219104886055,
- 0.08770672231912613, -0.04495162144303322, -0.12575505673885345, -0.07067316770553589,
- 0.11117901653051376, -0.049829911440610886, -0.06174980476498604, 0.008179289288818836,
- -0.06966066360473633, 0.08212388306856155, -0.16417182981967926, 0.0751393735408783,
- 0.0684071034193039, -0.08805721998214722, 0.0036793688777834177, -0.03367924690246582,
- 0.05445006489753723, -0.02150731347501278, 0.04939020052552223, -0.0652330219745636,
- 0.023434258997440338, -0.009068234823644161, 0.020690077915787697, -0.04037768021225929,
- 0.09363913536071777, 0.12102150917053223, -0.06014092639088631, 0.039341092109680176,
- 0.08438098430633545, -0.028737450018525124, -0.051129233092069626, 0.049849946051836014,
- 0.04366658627986908, -0.09455329179763794, -0.022475644946098328, -0.03433496877551079,
- -0.035133302211761475, -0.03349447622895241, -0.03493012487888336, 0.02755526639521122,
- 0.09279508143663406, -0.0638720765709877, -0.06495533138513565, 0.007659879047423601,
- 0.0542411170899868, 0.06624335050582886, 0.03556377813220024, 0.08348405361175537,
- -0.07023531943559647, -0.04413079097867012, 0.06893845647573471, 0.05174849554896355,
- 0.07212240993976593, -0.03964051976799965, -0.0028287891764193773,
- -0.012222201563417912, -0.10048512369394302, 0.02625603787600994, 0.09150323271751404,
- 0.03994060307741165, 0.04726453498005867, 0.06228095665574074, -0.12412148714065552,
- -0.07357721775770187, 0.1290961056947708, -0.002938882214948535, -0.0061262124218046665,
- 0.033703628927469254, -0.06977362185716629, -0.03984399884939194, 0.16486628353595734,
- -0.013336628675460815, -0.011757820844650269, 0.03026754967868328, 0.035905152559280396,
- 0.07840947061777115, 0.06399700045585632, 0.07443388551473618, 0.013193490915000439,
- 0.004693060647696257, -0.007520731538534164, -0.01193567831069231, 0.025768160820007324,
- 0.0059803021140396595, 0.009894161485135555, -0.14554615318775177, -0.10517039149999619,
- 0.08550543338060379, 0.08788818120956421, -0.012281063012778759, -0.10409560054540634,
- -0.006167145445942879, -0.016248151659965515
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 227,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Madison Malone Kircher"],
- "epoch_date_downloaded": 1661731200,
- "epoch_date_modified": 1661817600,
- "epoch_date_submitted": 1661817600,
- "flag": null,
- "report_number": 1974,
- "source_domain": "nymag.com",
- "submitters": ["Madison Malone Kircher"],
- "title": "Yet Another Person Listens to GPS App and Drives Car Into Lake",
- "url": "https://nymag.com/intelligencer/2018/01/waze-app-directs-driver-to-drive-car-into-lake-champlain.html"
- },
- {
- "__typename": "Report",
- "authors": ["Ashley Collman"],
- "epoch_date_downloaded": 1661731200,
- "epoch_date_modified": 1661817600,
- "epoch_date_submitted": 1661817600,
- "flag": null,
- "report_number": 1973,
- "source_domain": "dailymail.co.uk",
- "submitters": ["Thomas Giallella (CSET)"],
- "title": "Waze 'directed tourists to drive into lake'",
- "url": "https://www.dailymail.co.uk/news/article-5308303/Waze-directed-tourists-drive-lake.html"
- },
- {
- "__typename": "Report",
- "authors": ["Fox 5 Digital Team"],
- "epoch_date_downloaded": 1653955200,
- "epoch_date_modified": 1655078400,
- "epoch_date_submitted": 1653955200,
- "flag": null,
- "report_number": 1744,
- "source_domain": "fox5sandiego.com",
- "submitters": ["Ingrid Dickinson (CSET)"],
- "title": "Tourists blame Waze app after driving into lake",
- "url": "https://fox5sandiego.com/news/tourist-blame-waze-app-after-driving-into-lake/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "apple",
- "name": "Apple"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "apple",
- "name": "Apple"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "tourists",
- "name": "tourists"
- },
- {
- "__typename": "Entity",
- "entity_id": "apple-maps-users",
- "name": "Apple Maps users"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1745],
- "vector": [
- -0.08982423692941666, 0.04231153056025505, 0.04285356029868126, -0.1626865565776825,
- 0.14455483853816986, -0.052679162472486496, -0.017230985686182976, 0.06156742572784424,
- 0.06097424030303955, -0.05907858535647392, -0.024986131116747856, 0.08224202692508698,
- 0.023129161447286606, -0.04057164117693901, 0.11068663746118546, -0.058690160512924194,
- -0.10982254892587662, -0.08874493092298508, -0.01710543967783451, -0.11335565149784088,
- -0.07139557600021362, 0.066713348031044, -0.03343242034316063, 0.16295431554317474,
- -0.03949931636452675, 0.04240884259343147, 0.152921661734581, 0.12326708436012268,
- -0.013423153199255466, 0.04963517561554909, 0.03305026888847351, -0.05562625080347061,
- 0.11449820548295975, 0.000981582561507821, 0.001851765438914299, 0.14891067147254944,
- -0.013477301225066185, -0.048229653388261795, -0.022485531866550446, 0.0761955976486206,
- 0.08852879703044891, 0.2557539641857147, -0.055116891860961914, 0.006771099288016558,
- 0.0026035394985228777, -0.04031234607100487, 0.05442096292972565, 0.024500355124473572,
- 0.008852523751556873, 0.04387117549777031, -0.05761314928531647, 0.006478896364569664,
- -0.030823877081274986, 0.0418611578643322, -0.13163398206233978, 0.10968153178691864,
- 0.08109258860349655, -0.0013665989972651005, 0.04071836173534393, -0.11789681017398834,
- -0.07142730057239532, -0.2618023157119751, -0.07182080298662186, -0.008918529376387596,
- 0.06772196292877197, -0.11256854981184006, -0.05020272731781006, -0.05107736960053444,
- -0.01584281399846077, 0.07413211464881897, 0.04371302202343941, -0.06866210699081421,
- -0.014341636560857296, 0.018878012895584106, -0.020273758098483086,
- -0.050619419664144516, 0.0246933214366436, 0.2603011131286621, -0.14503459632396698,
- 0.0199371799826622, 0.1062716543674469, -0.12074403464794159, 0.4736277759075165,
- -0.00039236340671777725, -0.004993430804461241, -0.017786918208003044,
- 0.11747121810913086, 0.018890708684921265, 0.08392971754074097, 0.09137631952762604,
- 0.005061123054474592, 0.051562726497650146, -0.038171447813510895, 0.10025450587272644,
- 0.07521002739667892, 0.04472194239497185, -0.010155116207897663,
- -0.00035267206840217113, -0.0302599910646677, -0.09064368903636932, 0.04797382280230522,
- -0.07362182438373566, 0.03278680890798569, 0.07089129835367203, -0.011372597888112068,
- 0.013012859039008617, 0.09423643350601196, 0.006167196668684483, 0.06989302486181259,
- -0.0627249926328659, -0.04019036889076233, 0.055206604301929474, 0.0625961571931839,
- -0.041998572647571564, -0.007321870420128107, -0.004050026182085276,
- -0.050226420164108276, 0.01618310809135437, 0.1328907161951065, 0.03647088259458542,
- -0.033473215997219086, 0.06752584874629974, 0.12586559355258942, -0.07357769459486008,
- -0.07026977837085724, -0.009587883949279785, -0.1349494755268097, -0.019644804298877716,
- -0.04269159957766533, 0.002914617070928216, -0.09639371186494827, -0.22118186950683594,
- 0.06264632940292358, 0.07852966338396072, 0.0060738977044820786, -0.01888178661465645,
- -0.06754303723573685, -0.11425315588712692, 0.05225202813744545, -0.08563705533742905,
- 0.026057874783873558, 0.03309093788266182, 0.05659860745072365, -0.025705095380544662,
- 0.10616864264011383, 0.1266394555568695, -0.05717179551720619, -0.05660887435078621,
- -0.019409645348787308, -0.08758143335580826, 0.12418346852064133, -0.10183171182870865,
- -0.10861916840076447, 0.02373468689620495, -0.03104509972035885, 0.6802238821983337,
- 0.16503551602363586, 0.2013750523328781, 0.022253042086958885, -0.06426756829023361,
- 0.20957624912261963, -0.01224488951265812, 0.01419303473085165, -0.11975401639938354,
- -0.07119381427764893, 0.05097750574350357, -0.08013192564249039, -0.052968163043260574,
- 0.06728524714708328, 0.03706800565123558, 0.08431046456098557, 0.05769341066479683,
- 0.09840507060289383, 0.01921190693974495, -0.17803898453712463, 0.022410869598388672,
- 0.06535536795854568, 0.010847531259059906, -0.11549939215183258, -0.04892585799098015,
- 0.05014296993613243, 0.10302577167749405, -0.052793025970458984, 0.03725089877843857,
- -0.08436084538698196, 0.11737127602100372, -0.020885182544589043, -0.019459998235106468,
- -0.06270910799503326, 0.0585046261548996, 0.04132574796676636, 0.006314716301858425,
- 0.001675200299359858, -0.03536578640341759, -0.03503849729895592, 0.07694463431835175,
- -0.02714429795742035, -0.050445932894945145, 0.007001691497862339, -0.13941562175750732,
- 0.10804133862257004, 0.021604755893349648, 0.14791417121887207, -0.16319173574447632,
- 0.01227103266865015, 0.02230324037373066, 0.0177939310669899, -0.024055546149611473,
- -0.0003893373068422079, -0.0913354679942131, -0.11031883209943771, 0.10664165765047073,
- 0.01956712082028389, 0.057119786739349365, 0.11058831959962845, -0.05760888755321503,
- 0.021206364035606384, 0.14912626147270203, -0.011641811579465866, 0.02642333321273327,
- 0.06756553798913956, 0.07566395401954651, 0.04485858604311943, 0.03402216359972954,
- 0.029091358184814453, 0.03196452185511589, 0.06472743302583694, 0.007274412550032139,
- 0.026384929195046425, 0.017729725688695908, -0.03480975329875946, 0.03773512318730354,
- 0.01695929281413555, 0.01973765529692173, 0.08362121134996414, -0.1167759895324707,
- -0.11451424658298492, -0.019077355042099953, -0.06868773698806763, -0.02291795238852501,
- -0.05315592512488365, 0.14309316873550415, 0.06919820606708527, 0.1339101642370224,
- 0.025551192462444305, 0.075505830347538, 0.013015552423894405, 0.09211299568414688,
- 0.07881978899240494, 0.08288154006004333, -0.02934856340289116, -0.022267824038863182,
- -0.0922975167632103, 0.0008611839730292559, 0.023153385147452354, 0.025315318256616592,
- -0.03187885507941246, -0.05159902945160866, -0.05033706873655319, -0.07540696859359741,
- -0.08304163068532944, -0.015684273093938828, 0.04843421280384064, 0.04818644002079964,
- -0.10285080224275589, -0.08286205679178238, -0.08826347440481186, -0.05446393042802811,
- 0.06104900315403938, -0.023532891646027565, -0.027715599164366722, -0.10627127438783646,
- 0.053218863904476166, 0.0012339388485997915, 0.010963447391986847,
- -0.024261269718408585, 0.07083118706941605, 0.015343650244176388, -0.07639726251363754,
- -0.0009755605715326965, -0.06936133652925491, -0.01849057897925377,
- -0.10050106048583984, -0.07102493196725845, -0.0523468516767025, -0.07404813915491104,
- 0.021728703752160072, -0.0030738981440663338, 0.0414976067841053, -0.012533784843981266,
- 0.06970535963773727, -0.0472157746553421, -0.06380127370357513, 0.06298091262578964,
- 0.0062410663813352585, -0.03784120827913284, 0.06292632967233658, 0.02016611583530903,
- 0.11167797446250916, 0.020598797127604485, -0.11573129147291183,
- -0.00041606262675486505, 0.04061918333172798, -0.06601168215274811,
- 0.049086231738328934, -0.05774633213877678, 0.022209906950592995, -0.05972380191087723,
- -0.03163600713014603, 0.05692722275853157, -0.054397549480199814, -0.144795760512352,
- -0.12773366272449493, 0.15012425184249878, -0.0298013873398304, -0.029960978776216507,
- 0.10065657645463943, -0.03453408554196358, 0.032631486654281616, -0.045723672956228256,
- -0.010287554934620857, 0.06354282051324844, 0.01884467527270317, -0.017507659271359444,
- 0.06767090409994125, 0.016625383868813515, -0.047219015657901764, 0.020642297342419624,
- 0.04727958142757416, 0.5407050251960754, -0.2879784107208252, 0.058934833854436874,
- 0.12182947993278503, 0.04115414246916771, 0.08881837874650955, -0.03753070905804634,
- 0.11937863379716873, 0.061368223279714584, 0.13091632723808289, 0.14284753799438477,
- -0.10058711469173431, -0.035206250846385956, -0.1106485053896904, 0.12608473002910614,
- -0.02297741360962391, -0.009485206566751003, 0.019503511488437653, -0.13429853320121765,
- 0.03666152060031891, 0.05315060913562775, -0.06002082675695419, -0.021832065656781197,
- -0.05405745282769203, -0.0707259550690651, 0.03316431865096092, 0.01718693971633911,
- -0.016337836161255836, -0.05056421458721161, -0.04236472398042679,
- -0.004031674936413765, -0.009669083170592785, 0.0031047919765114784,
- 0.029403572902083397, -0.08241074532270432, 0.06628645956516266, -0.028473645448684692,
- -0.06285572052001953, 0.09537094086408615, 0.019780049100518227, 0.09754718095064163,
- 0.054366666823625565, -0.007767466362565756, -0.03723583742976189,
- -0.018994944170117378, -0.09263648837804794, 0.030555328354239464, 0.09082095324993134,
- 0.09889114648103714, 0.05683128908276558, 0.13397668302059174, -0.06926096975803375,
- -0.00685111666098237, -0.04687720909714699, 0.08601242303848267, 0.10881347209215164,
- 0.0003139028849545866, 0.011760479770600796, -0.0115042794495821, 0.007317164447158575,
- 0.024192873388528824, -0.03105016052722931, -0.06495809555053711, -0.005199612583965063,
- -0.13458222150802612, 0.05576105788350105, -0.01921457052230835, 0.009003379382193089,
- -0.2646387815475464, -0.05683796480298042, -0.05678477883338928, 0.02901715599000454,
- 0.11483970284461975, -0.08414407819509506, -0.05419281870126724, 0.012043804861605167,
- -0.0028985512908548117, -0.05547342449426651, -0.10164577513933182, 0.01789127290248871,
- -0.03254400193691254, 0.08202467858791351, 0.07512391358613968, 0.08641257882118225,
- -0.03141408786177635, 0.06619146466255188, -0.12997859716415405, 0.059957947582006454,
- 0.009061167016625404, 0.05907587334513664, -0.022930486127734184, -0.04924720153212547,
- 0.07257664948701859, 0.05891970172524452, -0.04710621014237404, 0.07862501591444016,
- -0.04876575618982315, -0.08739543706178665, -0.031504180282354355, -0.10205164551734924,
- -0.0393272340297699, -0.07868383079767227, 0.04760389402508736, -0.17317409813404083,
- -0.04716650769114494, -0.02723192796111107, 0.00723887886852026, 0.015921931713819504,
- 0.07327679544687271, 0.0666956678032875, -0.19022126495838165, 0.00783576350659132,
- -0.022244893014431, 0.1142268031835556, 0.053700655698776245, 0.04253452271223068,
- -0.012211823835968971, 0.08668892085552216, 0.06455565989017487, 0.033367402851581573,
- 0.03812306374311447, -0.05815054476261139, -0.03851672261953354, -0.09428942203521729,
- -0.48585790395736694, 0.10014838725328445, -0.017004210501909256, 0.050714194774627686,
- -0.01636936515569687, 0.003681183559820056, 0.004559597931802273, 0.003622733987867832,
- -0.062831811606884, 0.1422797292470932, -0.053310539573431015, 0.0038067232817411423,
- -0.008957777172327042, -0.07354686409235, -0.04146398603916168, -0.028236158192157745,
- -0.044288020581007004, 0.018815308809280396, -0.06542690843343735, -0.10194668918848038,
- -0.06476318836212158, 0.040220387279987335, -0.03843856602907181, 0.04998147115111351,
- 0.00962143950164318, -0.04375050961971283, -0.1351224035024643, -0.10326381027698517,
- 0.07972309738397598, 0.09908132255077362, 0.04479220137000084, -0.08403670787811279,
- 0.008261362090706825, 0.04873090982437134, 0.006614868529140949, 0.17481598258018494,
- 0.02691054716706276, -0.05706634745001793, -0.0021371094044297934, 0.019120773300528526,
- 0.061132341623306274, 0.17902643978595734, -0.03764199838042259, 0.06248367577791214,
- 0.077034130692482, 0.1828431785106659, 0.06899392604827881, -0.01821661740541458,
- -0.012416311539709568, -0.03392799198627472, 0.013205266557633877, -0.05507943779230118,
- 0.06369908899068832, -0.00846389401704073, -0.04724637046456337, -0.04505094140768051,
- 0.005350248422473669, -0.02637488767504692, 0.14407357573509216, 0.2008761316537857,
- 0.060352906584739685, 0.058542605489492416, -0.030212819576263428,
- -0.058791499584913254, 0.00009253660391550511, -0.10365554690361023,
- -0.10425280779600143, -0.09305345267057419, -0.04115285724401474,
- -0.0026850374415516853, -0.0791054517030716, -0.11141631752252579,
- 0.0002781760413199663, 0.004390458110719919, -0.018464572727680206, 0.18341989815235138,
- 0.003818270517513156, -0.01665259711444378, 0.03343667462468147, 0.15477268397808075,
- 0.008907393552362919, 0.008996700868010521, 0.08054370433092117, 0.09186694771051407,
- 0.06511309742927551, 0.0795116275548935, -0.05613018944859505, -0.030637988820672035,
- 0.016058778390288353, 0.11823263019323349, -0.1113663837313652, 0.08589344471693039,
- 0.07054922729730606, -0.07448645681142807, -0.06775510311126709, 0.06443840265274048,
- -0.08633553236722946, 0.041305061429739, -0.462948203086853, -0.0405266247689724,
- 0.13587599992752075, 0.06042914837598801, 0.014745947904884815, 0.12073438614606857,
- 0.03096051886677742, -0.034563098102808, -0.04148957133293152, -0.11415278166532516,
- 0.1394897997379303, -0.03983597457408905, 0.02762996219098568, -0.16790325939655304,
- 0.01417810283601284, 0.09039580076932907, -0.015183056704699993, -0.022413652390241623,
- 0.1169193834066391, -0.332815021276474, 0.053067561239004135, -0.07347573339939117,
- 0.13380372524261475, -0.030876105651259422, 0.05145701393485069, 0.08973421901464462,
- -0.07872920483350754, -0.004210306331515312, 0.03885786980390549, -0.03223639726638794,
- 0.02055324800312519, -0.06269360333681107, -0.07171039283275604, 0.09046164155006409,
- 0.0767289325594902, -0.008261349983513355, -0.022337399423122406, 12.360151290893555,
- 0.13168741762638092, 0.0733761414885521, -0.07721279561519623, 0.031039802357554436,
- -0.006849943194538355, -0.00404073903337121, -0.13421384990215302, 0.010564233176410198,
- 0.15973395109176636, -0.03568247705698013, -0.06464488059282303, -0.03964793682098389,
- -0.13479499518871307, -0.0015043747844174504, -0.16884638369083405, -0.066194549202919,
- 0.028480594977736473, 0.023490821942687035, -0.025441424921154976, -0.02792210876941681,
- 0.06302546709775925, 0.07338085025548935, 0.029151801019906998, -0.0524086132645607,
- 0.14734472334384918, 0.06316719949245453, 0.003919291775673628, 0.036658838391304016,
- 0.014022944495081902, -0.0030039113480597734, 0.012756356969475746,
- 0.056945767253637314, 0.0020236526615917683, -0.003920582588762045, 0.12897774577140808,
- 0.0649743601679802, 0.09860702604055405, -0.0134123545140028, 0.09249483048915863,
- 0.05000150203704834, 0.010833987034857273, 0.06983251869678497, -0.020990515127778053,
- 0.010305998846888542, 0.08821824938058853, 0.08690707385540009, 0.08212040364742279,
- 0.04807098209857941, -0.006649090442806482, 0.0914761945605278, 0.01351978350430727,
- 0.17228783667087555, 0.06863493472337723, -0.03800246864557266, 0.0637962743639946,
- -0.02588721737265587, -0.07531224191188812, 0.0818476527929306, 0.08192488551139832,
- -0.04852099344134331, 0.062003254890441895, -0.06247054785490036, 0.186015784740448,
- -0.03207879513502121, 0.057905033230781555, 0.06091339886188507, 0.1341019868850708,
- -0.11457323282957077, -0.13959109783172607, 0.02052067033946514, -0.15963153541088104,
- -0.0333087220788002, 0.09978276491165161, 0.1688792109489441, 0.0006975374999456108,
- 0.04578128829598427, -0.07778358459472656, -0.01140599139034748, -0.10935696214437485,
- 0.02552296407520771, 0.06992871314287186, 0.027956368401646614, 0.05913444608449936,
- 0.09149380028247833, -0.005235226824879646, 0.045497119426727295, 0.08951680362224579,
- -0.05199478566646576, -0.0516122467815876, -0.062389906495809555, 0.05160710588097572,
- -0.04438193887472153, -0.044888295233249664, -0.0036041433922946453,
- -0.07923795282840729, 0.115973562002182, -0.16227830946445465, 0.027158068493008614,
- 0.054280247539281845, -0.04234230890870094, -0.009709397330880165, -0.05170489102602005,
- -0.00557722756639123, 0.005114531610161066, 0.01820029504597187, -0.035958703607320786,
- -0.05299301818013191, 0.0045117600820958614, 0.020644299685955048,
- -0.008357750251889229, 0.08905400335788727, 0.08112462610006332, -0.05679682269692421,
- 0.03687271848320961, 0.07409245520830154, -0.02583153173327446, -0.013674762099981308,
- 0.05219884216785431, 0.06143936514854431, -0.0719854086637497, -0.039285995066165924,
- -0.052913591265678406, -0.05528268963098526, -0.0502750426530838, -0.05122365429997444,
- -0.01978372223675251, 0.10688111931085587, -0.1000174805521965, -0.016176728531718254,
- 0.044000979512929916, -0.005045501980930567, 0.13116343319416046, 0.015103322453796864,
- 0.036040298640728, -0.09116663783788681, -0.0340074859559536, 0.06062578782439232,
- 0.03843894973397255, 0.09068281948566437, -0.05496327951550484, -0.054950613528490067,
- -0.06874924153089523, -0.06644617766141891, 0.022448472678661346, 0.057909782975912094,
- 0.05956583097577095, 0.014646252617239952, 0.08433248102664948, -0.15963265299797058,
- -0.042978450655937195, 0.1762160062789917, 0.06709975004196167, -0.01824098825454712,
- 0.05382011830806732, -0.1003379300236702, -0.018728315830230713, 0.16937467455863953,
- -0.042466454207897186, 0.018730206415057182, 0.04088164120912552, -0.003401295281946659,
- 0.05040372908115387, 0.18944315612316132, 0.02089235559105873, 0.05649334564805031,
- 0.031362831592559814, 0.027707792818546295, 0.07130227237939835, -0.0037937879096716642,
- -0.045568037778139114, 0.049011703580617905, -0.12354101985692978, -0.09496845304965973,
- 0.04606987163424492, 0.09204835444688797, -0.04778837785124779, -0.0550507977604866,
- -0.042233943939208984, -0.014697215519845486
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 228,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Rachel Kraus"],
- "epoch_date_downloaded": 1653955200,
- "epoch_date_modified": 1655078400,
- "epoch_date_submitted": 1653955200,
- "flag": null,
- "report_number": 1745,
- "source_domain": "mashable.com",
- "submitters": ["Ingrid Dickinson (CSET)"],
- "title": "Out of traffic, into a ditch: Why Waze on snowy mountain roads could be a bad idea",
- "url": "https://mashable.com/article/is-waze-apple-maps-google-safe-in-the-snow"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "youtube",
- "name": "YouTube"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "youtube",
- "name": "YouTube"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "youtube-users",
- "name": "YouTube users"
- },
- {
- "__typename": "Entity",
- "entity_id": "youtube-content-creators",
- "name": "YouTube content creators"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1747, 1746],
- "vector": [
- -0.06296703964471817, 0.06602156162261963, 0.010708782821893692, -0.13268408179283142,
- 0.11075381934642792, -0.008214686997234821, -0.007690927479416132, 0.07726289331912994,
- 0.05041902884840965, -0.14037899672985077, -0.0006230464205145836, 0.026033807545900345,
- 0.008340157568454742, -0.08921853452920914, 0.04912092536687851, -0.04859473556280136,
- -0.12329292297363281, -0.06601374596357346, 0.027375707402825356, -0.14684200286865234,
- -0.0861935168504715, 0.02465800940990448, 0.02890857681632042, 0.11276984214782715,
- -0.03076574020087719, 0.02823806181550026, 0.12069621682167053, 0.10641845315694809,
- -0.032348230481147766, 0.05428918078541756, -0.02353467419743538, -0.08306697010993958,
- 0.1405438929796219, 0.00232889037579298, -0.0037774154916405678, 0.06134827435016632,
- 0.014709875918924809, -0.03613061457872391, -0.012946510687470436, -0.00868898630142212,
- 0.05973751097917557, 0.23784197866916656, -0.0012512351386249065, -0.004424086771905422,
- 0.04281552881002426, -0.04217291250824928, 0.013148318976163864, 0.07273934781551361,
- 0.0011279560858383775, 0.03855361044406891, -0.052176252007484436, 0.016969460994005203,
- -0.05672097206115723, 0.03068099543452263, -0.14179112017154694, 0.05578437075018883,
- 0.07182338088750839, -0.03470417484641075, 0.02039353735744953, -0.07513485103845596,
- -0.08643780648708344, -0.25317221879959106, -0.026165518909692764, -0.06253229081630707,
- 0.08903707563877106, -0.07082007825374603, -0.014324644580483437, 0.02703869342803955,
- -0.010106399655342102, 0.0660184770822525, 0.05752410739660263, -0.0750679150223732,
- -0.035161808133125305, 0.016526946797966957, 0.010935439728200436, -0.06183300167322159,
- 0.029164060950279236, 0.19361209869384766, -0.13880950212478638, 0.02227603644132614,
- 0.10344192385673523, -0.09691494703292847, 0.3990132808685303, 0.01948649063706398,
- -0.05271582305431366, -0.03640947490930557, 0.07779121398925781, 0.010972624644637108,
- 0.036432813853025436, 0.026176322251558304, -0.016705619171261787, 0.04221660643815994,
- -0.08480022847652435, -0.0020015989430248737, 0.07844576239585876, 0.024412894621491432,
- -0.04038422554731369, -0.0032716598361730576, -0.0030438140965998173,
- -0.07334702461957932, 0.010743905790150166, -0.015225020237267017, 0.10425201058387756,
- 0.05261171981692314, -0.047911208122968674, -0.02487836591899395, 0.10374592989683151,
- -0.04016324132680893, 0.05911009758710861, -0.0736430212855339, 0.021990887820720673,
- 0.016397520899772644, 0.06814144551753998, -0.013348884880542755, 0.03598709776997566,
- -0.024622170254588127, -0.0033980989828705788, 0.023469580337405205,
- 0.10411502420902252, 0.06625866889953613, 0.03000727668404579, 0.04843529313802719,
- 0.048923060297966, -0.08866150677204132, -0.05619245767593384, -0.06968411803245544,
- -0.05697290971875191, -0.038420651108026505, -0.01866699755191803, 0.011284478940069675,
- -0.026275623589754105, -0.18976901471614838, -0.005724302027374506, 0.08598549664020538,
- -0.017601292580366135, -0.04269617795944214, -0.01027652993798256, -0.07792944461107254,
- 0.0006583546055480838, -0.01578671671450138, -0.04487111419439316, 0.06388258934020996,
- 0.019575726240873337, 0.030467700213193893, 0.11346814781427383, 0.07141757011413574,
- -0.08477340638637543, -0.057595789432525635, -0.0014649091754108667,
- -0.06924494355916977, 0.12932145595550537, -0.10182767361402512, -0.044364191591739655,
- -0.02284446731209755, 0.008334804326295853, 0.6906523704528809, 0.08890996873378754,
- 0.22137682139873505, 0.012785384431481361, -0.03728552907705307, 0.19225671887397766,
- -0.006084255874156952, 0.039660874754190445, -0.06335215270519257,
- -0.056569118052721024, 0.007904935628175735, -0.0823928564786911, -0.07676773518323898,
- 0.03164228796958923, 0.021733809262514114, 0.06896235048770905, 0.026450514793395996,
- 0.09441246092319489, 0.007047403138130903, -0.13538573682308197, -0.026377446949481964,
- 0.07027064263820648, 0.00914698839187622, -0.104007788002491, -0.0292343832552433,
- 0.07204417884349823, 0.12177745252847672, -0.0723189115524292, -0.010448363609611988,
- -0.06527771800756454, 0.10714682191610336, -0.002826088108122349, 0.08280600607395172,
- -0.03544948995113373, 0.07230915129184723, 0.03963436931371689, 0.01852913573384285,
- -0.02559172920882702, -0.10521126538515091, -0.018507305532693863, 0.12405206263065338,
- -0.027181971818208694, -0.05628082901239395, 0.03092273883521557, -0.08365675806999207,
- 0.04666515812277794, 0.024322398006916046, 0.1375080645084381, -0.13874641060829163,
- -0.041675128042697906, -0.017447615042328835, -0.011606422252953053,
- 0.020757772028446198, -0.011473777703940868, -0.09857936948537827, -0.08099361509084702,
- 0.0980076789855957, -0.008988061919808388, 0.07961630821228027, 0.009905138052999973,
- -0.06674914062023163, 0.04043155163526535, 0.061272501945495605, 0.016882579773664474,
- -0.03877332806587219, 0.09360364079475403, 0.028974490240216255, -0.02020658366382122,
- -0.04940194636583328, 0.06784956157207489, 0.05305264890193939, 0.04602457955479622,
- -0.01657339558005333, 0.06648856401443481, -0.019347285851836205, -0.04379478842020035,
- 0.06534284353256226, 0.008516153320670128, 0.03434556722640991, 0.07560645043849945,
- -0.06548185646533966, -0.062336504459381104, -0.03440339118242264,
- -0.023951388895511627, 0.023341119289398193, -0.027693213894963264, 0.09970435500144958,
- 0.099988654255867, 0.07793791592121124, 0.057189930230379105, 0.008927492424845695,
- 0.04814969003200531, -0.04277387261390686, -0.004471082706004381, 0.07710999250411987,
- -0.04067577049136162, -0.05282820016145706, -0.04347953945398331, 0.03615623712539673,
- 0.02970457449555397, -0.005122256465256214, -0.047778382897377014, -0.04967009648680687,
- -0.032036662101745605, -0.006242278963327408, -0.1100546270608902,
- -0.045158106833696365, 0.04032522439956665, 0.07528451085090637, -0.04899267107248306,
- -0.06210092082619667, -0.07563634216785431, -0.0016230758046731353, 0.0923137366771698,
- -0.02292659692466259, -0.010136920027434826, -0.13335420191287994, 0.0317365899682045,
- -0.04541946202516556, 0.041037313640117645, -0.023372583091259003,
- -0.027944469824433327, -0.010072640143334866, -0.10520484298467636, 0.03729269653558731,
- -0.01563476026058197, -0.009792448952794075, -0.039060696959495544,
- -0.08741055428981781, -0.007824842818081379, -0.011104858480393887,
- -0.017737925052642822, -0.06238941848278046, 0.012329259887337685, 0.035592567175626755,
- 0.0698641985654831, -0.005244903732091188, -0.06312631815671921, 0.04424019157886505,
- -0.0036221537739038467, -0.013746109791100025, 0.08001770079135895,
- 0.007936595939099789, 0.07082892954349518, -0.024911032989621162, -0.09763199836015701,
- -0.030599014833569527, 0.019972752779722214, -0.030382215976715088, 0.05036362260580063,
- -0.004716395400464535, 0.027967393398284912, -0.04978363588452339,
- -0.018633436411619186, 0.08058980107307434, -0.04277072101831436, -0.13648845255374908,
- -0.07547761499881744, 0.1226179450750351, -0.0055460138246417046, 0.013915108516812325,
- 0.03855173662304878, -0.05465443432331085, 0.04361691325902939, -0.01759406179189682,
- 0.02213222160935402, 0.05752282962203026, 0.0628528892993927, 0.009956039488315582,
- 0.009549051523208618, 0.0763101875782013, -0.04835347458720207, 0.034794941544532776,
- 0.051984257996082306, 0.4399237632751465, -0.19449010491371155, 0.0613597109913826,
- 0.12155164033174515, 0.014920546673238277, 0.0493614636361599, -0.011268205009400845,
- 0.09167986363172531, 0.09274309873580933, 0.16923922300338745, 0.09193217754364014,
- -0.042397815734148026, 0.02829749695956707, -0.09205281734466553, 0.06994824856519699,
- 0.00004296470433473587, 0.05559700354933739, -0.004811630584299564,
- -0.06905720382928848, -0.03753385692834854, 0.07303161919116974, -0.043061863631010056,
- -0.013282702304422855, 0.022470347583293915, -0.033029332756996155, 0.03547169640660286,
- 0.018059611320495605, 0.037762418389320374, -0.024397626519203186, 0.01846669800579548,
- -0.009092560969293118, 0.04504779726266861, 0.023163290694355965, 0.019250445067882538,
- -0.1351313591003418, 0.03371913358569145, 0.01075565442442894, -0.11015384644269943,
- 0.05182459205389023, -0.011629169806838036, 0.06206890195608139, 0.04290279746055603,
- -0.036413513123989105, 0.0035774288699030876, -0.0071793207898736,
- -0.046852096915245056, 0.034831129014492035, 0.0721413642168045, 0.038648657500743866,
- 0.06665253639221191, 0.13254228234291077, -0.06463108956813812, -0.005690646357834339,
- -0.0656423568725586, 0.07409079372882843, 0.16249258816242218, -0.004255285952240229,
- 0.003058228176087141, -0.01875489018857479, -0.024177705869078636,
- -0.017452720552682877, -0.031656235456466675, -0.07023932039737701, -0.0606527104973793,
- -0.042112722992897034, 0.0729295164346695, 0.04481235891580582, -0.02064511738717556,
- -0.27170348167419434, -0.03163468465209007, -0.054608821868896484, 0.02670259028673172,
- 0.10878092050552368, -0.062147945165634155, 0.06318500638008118, -0.008027402684092522,
- 0.026913564652204514, 0.021418191492557526, -0.08361990749835968, 0.04855657368898392,
- -0.07021237164735794, 0.06252007186412811, 0.030575616285204887, 0.04393044859170914,
- -0.06982475519180298, 0.09715859591960907, -0.10484027862548828, 0.08121836930513382,
- -0.012950174510478973, -0.0023807603865861893, -0.013263244181871414,
- -0.03246012702584267, -0.00022127432748675346, 0.026198426261544228,
- -0.08158308267593384, 0.03341471776366234, 0.013797810301184654, -0.06707894057035446,
- -0.03821796923875809, -0.11281107366085052, -0.036920346319675446, -0.09117751568555832,
- 0.04899846017360687, -0.10745548456907272, 0.015594769269227982, -0.02530009113252163,
- -0.04448821023106575, -0.03148980811238289, 0.015565846115350723, 0.0018582865595817566,
- -0.1524358093738556, 0.03336963802576065, 0.010386607609689236, 0.04734524339437485,
- 0.0008851196616888046, -0.048552051186561584, 0.00015631248243153095,
- 0.1018841564655304, 0.03465984761714935, -0.015252528712153435, 0.022650297731161118,
- -0.07866841554641724, 0.04377400502562523, -0.1217125952243805, -0.36872023344039917,
- 0.059650763869285583, 0.00187684316188097, 0.04131580889225006, -0.004527028650045395,
- -0.08555824309587479, 0.05080036073923111, 0.020506560802459717, -0.08140062540769577,
- 0.07634039223194122, -0.06341306120157242, 0.032315369695425034, -0.047724634408950806,
- -0.10305657982826233, -0.02917179837822914, -0.03299393877387047, -0.07260360568761826,
- 0.006328126415610313, -0.036769717931747437, -0.053503043949604034, -0.125660240650177,
- 0.06020358204841614, -0.021225113421678543, 0.03412272781133652, 0.025024626404047012,
- 0.029138807207345963, -0.04689519479870796, -0.06734178960323334, 0.07426853477954865,
- 0.1084880605340004, 0.05933840572834015, -0.07861709594726562, -0.02459423989057541,
- 0.09382206946611404, 0.01787867583334446, 0.13364236056804657, 0.0323096439242363,
- -0.03327428176999092, -0.05831706523895264, 0.07495737075805664, 0.07649274915456772,
- 0.1838836669921875, -0.022240180522203445, 0.013944752514362335, 0.03643059358000755,
- 0.1517968624830246, 0.07108186930418015, 0.019272491335868835, -0.03911262005567551,
- -0.021077752113342285, 0.03097531571984291, -0.014494653791189194, 0.0736141949892044,
- -0.06051408499479294, -0.040139030665159225, -0.034751106053590775,
- -0.06630504876375198, -0.026811201125383377, -0.03873191401362419, 0.22258736193180084,
- 0.02032805234193802, 0.002235962077975273, 0.028226975351572037, -0.0647866353392601,
- 0.052415139973163605, -0.10602685064077377, -0.08710309863090515, 0.006842267233878374,
- -0.003942771814763546, 0.028155937790870667, -0.05006670206785202, -0.0919511616230011,
- -0.00897415541112423, -0.022530224174261093, 0.01676821894943714, 0.16419187188148499,
- -0.01140323281288147, 0.036470357328653336, -0.008811762556433678, 0.1384163200855255,
- 0.022006884217262268, -0.018852416425943375, 0.07138977944850922, 0.08832690864801407,
- 0.01029841136187315, 0.0593937411904335, -0.013397365808486938, -0.0524839386343956,
- -0.0519581213593483, 0.16247475147247314, -0.03960682824254036, 0.09622205793857574,
- 0.0789603665471077, -0.02763327956199646, -0.04402129724621773, 0.04770217090845108,
- -0.05763567239046097, 0.020204270258545876, -0.42319172620773315, -0.022994840517640114,
- 0.07283980399370193, 0.05348310247063637, -0.025989118963479996, 0.08904784917831421,
- 0.024395551532506943, -0.0017744454089552164, -0.056454047560691833,
- -0.09083503484725952, 0.13412132859230042, 0.0034456662833690643, 0.04204908013343811,
- -0.08156830072402954, -0.011072371155023575, 0.08798092603683472, -0.01338808424770832,
- 0.022351454943418503, 0.06118886172771454, -0.2145272046327591, -0.0007447721436619759,
- 0.008884232491254807, 0.12036766111850739, -0.0381312221288681, 0.02052879147231579,
- 0.089460089802742, -0.061689943075180054, 0.024836154654622078, 0.05602538585662842,
- 0.006477733142673969, 0.027563609182834625, 0.003101389855146408, -0.015338496305048466,
- 0.09722602367401123, 0.09977935254573822, 0.094345822930336, -0.020773999392986298,
- 12.105796813964844, 0.07183737307786942, 0.04159082844853401, -0.12374933809041977,
- 0.04085886478424072, -0.01437685638666153, 0.013191783800721169, -0.1118515282869339,
- 0.06337200850248337, 0.15036964416503906, -0.043980926275253296, -0.03971356153488159,
- -0.049503393471241, -0.1000065803527832, 0.0546661913394928, -0.07099168002605438,
- -0.0740215927362442, -0.0841396152973175, 0.03463928773999214, -0.0423283651471138,
- -0.05263078585267067, 0.06486137956380844, 0.08241118490695953, -0.02228592522442341,
- -0.03522953391075134, 0.026917865499854088, 0.024472523480653763, 0.0024765771813690662,
- 0.013185551390051842, 0.030071448534727097, -0.00023297243751585484,
- 0.05729329586029053, 0.08038081228733063, -0.006979295983910561, 0.030928775668144226,
- 0.09805949032306671, 0.08777174353599548, 0.06640495359897614, 0.006950017064809799,
- 0.06075163930654526, -0.00853793602436781, 0.01213640347123146, 0.027800923213362694,
- 0.04891427606344223, 0.05191022902727127, 0.02921031415462494, 0.05087390914559364,
- 0.112966388463974, -0.008768847212195396, 0.032799847424030304, 0.09798245131969452,
- -0.013734221458435059, 0.11438257992267609, 0.042040932923555374, -0.03828642517328262,
- 0.05099686235189438, -0.05126315727829933, -0.10109708458185196, 0.10937755554914474,
- 0.029540708288550377, -0.08041443675756454, 0.10554306209087372, 0.0023172209039330482,
- 0.10957669466733932, 0.03626163303852081, 0.02329176850616932, 0.05016002804040909,
- 0.060625188052654266, -0.10642406344413757, -0.09460017085075378, 0.023431669920682907,
- -0.12077362090349197, -0.08766715228557587, 0.07391849160194397, 0.07994018495082855,
- -0.025402134284377098, 0.05801857262849808, -0.023941751569509506, -0.00237076822668314,
- 0.011315690353512764, 0.0010073650628328323, 0.05025801807641983, 0.02048351801931858,
- -0.003910756669938564, 0.05744042992591858, 0.04161493107676506, 0.06126910820603371,
- 0.07881096005439758, -0.014717758633196354, -0.09133008122444153, -0.02557770162820816,
- 0.12301996350288391, -0.02551572024822235, -0.06527671962976456, 0.001490224152803421,
- -0.09382112324237823, 0.04938925802707672, -0.16906753182411194, 0.07492183148860931,
- 0.1142956018447876, -0.043415382504463196, -0.0495922714471817, -0.06103671342134476,
- 0.07403136044740677, 0.02500304952263832, 0.014708793722093105, -0.04737330228090286,
- -0.02641335129737854, 0.0072637274861335754, 0.058457087725400925,
- -0.022764988243579865, 0.04854707792401314, 0.10830777138471603, -0.07415737211704254,
- 0.00612996332347393, 0.06109173595905304, -0.021454259753227234, -0.013808720745146275,
- 0.06000002473592758, 0.05123196542263031, -0.07463619112968445, -0.037577830255031586,
- -0.03255876898765564, -0.020845025777816772, -0.015722917392849922,
- -0.020051315426826477, -0.012432383373379707, 0.031189335510134697,
- -0.03931662440299988, -0.01402500830590725, 0.04971287027001381, 0.07079719752073288,
- 0.09440679848194122, -0.02625742368400097, 0.05983288586139679, -0.08255568146705627,
- -0.0002825828269124031, 0.047390393912792206, 0.06865374743938446, 0.0786191001534462,
- -0.06795200705528259, -0.04080016911029816, -0.07388941943645477, -0.10053303837776184,
- 0.05695267766714096, 0.10811217129230499, 0.028388794511556625, -0.006482299417257309,
- 0.009190643206238747, -0.09162474423646927, -0.03781638666987419, 0.0950080156326294,
- 0.05447842925786972, 0.05426419898867607, 0.042762428522109985, -0.03183601051568985,
- -0.05495753884315491, 0.13953272998332977, -0.022324025630950928, 0.007822844199836254,
- 0.007904615253210068, -0.04523950442671776, 0.1539495289325714, 0.1726686954498291,
- 0.043329931795597076, 0.06115434318780899, 0.04882800206542015, 0.02507817931473255,
- 0.05201642960309982, 0.00261831097304821, 0.00740415696054697, -0.01693117246031761,
- -0.10360069572925568, -0.11467908322811127, 0.030943626537919044, 0.11999675631523132,
- 0.06699895113706589, -0.1131536141037941, -0.0042280517518520355, -0.009921872988343239
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 229,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Nick Statt"],
- "epoch_date_downloaded": 1608076800,
- "epoch_date_modified": 1655078400,
- "epoch_date_submitted": 1653955200,
- "flag": null,
- "report_number": 1747,
- "source_domain": "theverge.com",
- "submitters": ["Ingrid Dickinson (CSET)"],
- "title": "YouTube channels are using bestiality thumbnails as clickbait",
- "url": "https://www.theverge.com/2018/4/24/17277468/youtube-moderation-bestiality-thumbnail-problem-ai-fix"
- },
- {
- "__typename": "Report",
- "authors": ["Charlie Warzel"],
- "epoch_date_downloaded": 1653955200,
- "epoch_date_modified": 1655078400,
- "epoch_date_submitted": 1653955200,
- "flag": null,
- "report_number": 1746,
- "source_domain": "buzzfeednews.com",
- "submitters": ["Ingrid Dickinson (CSET)"],
- "title": "YouTube Hosted Graphic Images Of Bestiality For Months",
- "url": "https://www.buzzfeednews.com/article/charliewarzel/youtube-hosted-graphic-images-of-beastiality-for-months#.wvaBJk9pE"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "tesla",
- "name": "Tesla"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "tesla",
- "name": "Tesla"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "tesla-users",
- "name": "Tesla users"
- },
- {
- "__typename": "Entity",
- "entity_id": "jeremy-beren-banner",
- "name": "Jeremy Beren Banner"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1748],
- "vector": [
- -0.08592703193426132, 0.08079079538583755, -0.006542406510561705, -0.06964462250471115,
- 0.06910568475723267, -0.017857760190963745, -0.0038807131350040436, 0.06123756244778633,
- 0.07365848869085312, -0.1577109545469284, 0.024831106886267662, 0.07259994000196457,
- 0.006016160361468792, -0.06516014039516449, 0.05009783059358597, -0.1260824054479599,
- -0.06804189085960388, -0.06324557214975357, -0.02140028029680252, -0.0981791615486145,
- -0.08337149769067764, -0.013934641145169735, 0.05545394867658615, 0.07645110785961151,
- -0.05931171029806137, 0.04050934314727783, 0.05341954529285431, 0.12489267438650131,
- -0.07460238039493561, 0.06107264384627342, 0.0017229234799742699, -0.032424185425043106,
- 0.12582169473171234, 0.020496917888522148, 0.009968789294362068, 0.09893675148487091,
- 0.011357887648046017, -0.0007225674344226718, -0.07134838402271271,
- -0.05084425210952759, -0.0038091042079031467, 0.2564202547073364, 0.018568789586424828,
- -0.049454670399427414, 0.052919697016477585, -0.08504068851470947, 0.051765672862529755,
- 0.0556812547147274, 0.023597508668899536, 0.027142401784658432, -0.02044663019478321,
- 0.0787457823753357, -0.0015287057030946016, -0.012070808559656143, -0.1197214424610138,
- 0.05712740123271942, 0.003758634440600872, -0.04761754721403122, 0.04950214549899101,
- -0.04660406708717346, -0.07435151189565659, -0.2676035761833191, -0.05131778120994568,
- -0.0685848519206047, 0.03264882043004036, -0.09132456034421921, -0.023442605510354042,
- 0.00006028710777172819, 0.039201103150844574, 0.07054466754198074, 0.06235642731189728,
- -0.027697648853063583, -0.047528643161058426, 0.037021759897470474, 0.04851909354329109,
- -0.004257744178175926, 0.003497725585475564, 0.22794109582901, -0.11124145984649658,
- -0.014790356159210205, 0.15010789036750793, -0.10173491388559341, 0.4656405746936798,
- -0.0073728542774915695, -0.0441175177693367, 0.00022318839910440147,
- 0.09207112342119217, 0.005442189052700996, 0.02501233108341694, 0.04647407680749893,
- -0.05314433574676514, 0.027788162231445312, 0.0017986804014071822, 0.04443879798054695,
- 0.0710873007774353, 0.05192293971776962, 0.03796503320336342, 0.047340985387563705,
- 0.010446294210851192, -0.03532596677541733, 0.06629075855016708, -0.037124935537576675,
- 0.09808645397424698, 0.08485271036624908, -0.032180771231651306, 0.04787878692150116,
- 0.12395928055047989, -0.0318329744040966, 0.05030462518334389, -0.07027264684438705,
- 0.016207560896873474, 0.020641814917325974, 0.07054300606250763, 0.019896073266863823,
- 0.07402390986680984, -0.09258240461349487, 0.008431663736701012, 0.04884212464094162,
- 0.09073711931705475, -0.011090218089520931, -0.04273403063416481, 0.025075549259781837,
- 0.07224969565868378, -0.09493912756443024, -0.008515735156834126, -0.025725046172738075,
- -0.04206658527255058, -0.022144868969917297, -0.03811141103506088, 0.05467814952135086,
- -0.07568953931331635, -0.2160017490386963, 0.048560839146375656, 0.08679969608783722,
- 0.00365786487236619, -0.054160069674253464, -0.01076623983681202, -0.062265414744615555,
- 0.09248431026935577, -0.018625404685735703, -0.022888710722327232, 0.06244101747870445,
- 0.05362510681152344, 0.03451552987098694, 0.07742085307836533, 0.06815478205680847,
- -0.06773817539215088, -0.03969133645296097, 0.014495640061795712, -0.0593184269964695,
- 0.07943405210971832, -0.15941616892814636, -0.07407495379447937, 0.03667737543582916,
- 0.01067670900374651, 0.6531845331192017, 0.1155448779463768, 0.1954553872346878,
- 0.04292742908000946, 0.009206479415297508, 0.16814570128917694, -0.015541286207735538,
- 0.07844875007867813, -0.06687143445014954, -0.08463649451732635, 0.020696310326457024,
- -0.09189611673355103, -0.05706183612346649, 0.05433451756834984, 0.01912415772676468,
- 0.1221601739525795, 0.05484629422426224, 0.09417477995157242, -0.013840408064424992,
- -0.09644156694412231, -0.04973940551280975, 0.04827282577753067, 0.027013223618268967,
- -0.11449464410543442, -0.060224711894989014, 0.029570462182164192, 0.09069201350212097,
- -0.05386686697602272, 0.023807602003216743, -0.053567565977573395, 0.038747794926166534,
- -0.01831715926527977, 0.019158881157636642, -0.06881880015134811, 0.028903821483254433,
- 0.025449661538004875, 0.1071208268404007, 0.0015411298954859376, -0.12134964764118195,
- -0.011050684377551079, 0.1265416294336319, -0.003797311568632722, -0.0474819578230381,
- 0.06342267990112305, -0.07428277283906937, 0.05539095029234886, 0.01677532307803631,
- 0.12993882596492767, -0.11310745030641556, -0.00256420043297112, -0.010274815373122692,
- -0.03780839219689369, 0.09088307619094849, -0.01807078905403614, -0.08406795561313629,
- -0.06192668899893761, 0.09701284766197205, 0.07843304425477982, 0.06300187855958939,
- 0.08469250053167343, -0.04970090091228485, 0.030597683042287827, -0.004280461929738522,
- 0.023937566205859184, -0.05553475022315979, 0.03231319412589073, 0.08634456992149353,
- -0.02235311083495617, -0.03541057929396629, 0.03309556469321251, 0.04566234350204468,
- 0.012311666272580624, -0.0019695712253451347, 0.06314093619585037,
- -0.004147199913859367, -0.058569055050611496, 0.019745010882616043,
- 0.010719193145632744, -0.021618282422423363, 0.11810601502656937, -0.07539073377847672,
- -0.027348030358552933, -0.013054859824478626, -0.010024651885032654,
- 0.016946347430348396, -0.004212597385048866, 0.09334328025579453, 0.07081982493400574,
- 0.07290586829185486, 0.048304565250873566, 0.027179883792996407, 0.03397107869386673,
- 0.07511906325817108, 0.04358767718076706, 0.0935148298740387, -0.007355395704507828,
- -0.1110856682062149, -0.021321037784218788, 0.011282083578407764, 0.033947572112083435,
- 0.03365037217736244, -0.07764160633087158, -0.05588559806346893, -0.04620295763015747,
- -0.022012019529938698, -0.08786552399396896, -0.050128158181905746,
- -0.011831145733594894, 0.0881560891866684, -0.05659548565745354, -0.030763376504182816,
- -0.10544586926698685, 0.05885566771030426, 0.06387820094823837, 0.019495196640491486,
- -0.02454734407365322, -0.11153501272201538, -0.0361102893948555, -0.028836196288466454,
- 0.03130451589822769, -0.009786954149603844, -0.01672670617699623, -0.046755410730838776,
- -0.055214762687683105, 0.002537099877372384, -0.009859316982328892,
- 0.011021168902516365, -0.061533618718385696, -0.07231742143630981, -0.02602684125304222,
- -0.021000465378165245, 0.04960332810878754, -0.020486928522586823, 0.03712324798107147,
- 0.032574836164712906, 0.015188273042440414, -0.03064608760178089, 0.011455588974058628,
- 0.058997344225645065, -0.041748590767383575, -0.0011340611381456256,
- 0.10231736302375793, -0.024833228439092636, 0.0246259942650795, 0.009501960128545761,
- -0.06717995554208755, -0.0037096082232892513, 0.03699607029557228, -0.07488700747489929,
- 0.05048782378435135, -0.02722482569515705, 0.02549172006547451, -0.02254941128194332,
- 0.02753482013940811, 0.061698321253061295, -0.07442134618759155, -0.036744341254234314,
- -0.0984300971031189, 0.10015089064836502, -0.0046540312469005585, -0.022725507616996765,
- -0.014545151963829994, -0.050280243158340454, 0.04927688464522362, -0.0047888676635921,
- 0.007317949552088976, 0.022876473143696785, 0.061859130859375, -0.028600409626960754,
- -0.04192545637488365, 0.05226396769285202, -0.03108527883887291, 0.018699608743190765,
- 0.0781359151005745, 0.4123927354812622, -0.10424328595399857, 0.08395183831453323,
- 0.08891982585191727, -0.018345916643738747, 0.06601870059967041, -0.057681143283843994,
- 0.05512566864490509, 0.07808483392000198, 0.09354064613580704, 0.10738919675350189,
- -0.02625896781682968, 0.003028575796633959, -0.01899603195488453, 0.09299193322658539,
- -0.002155821770429611, 0.019986681640148163, -0.04091225191950798, -0.08708027005195618,
- 0.01841314695775509, 0.030413148924708366, -0.03489222750067711, 0.02017742209136486,
- -0.020614566281437874, -0.07428603619337082, -0.010118991136550903,
- 0.0015875971876084805, 0.014577287249267101, -0.05078200623393059,
- 0.0012973498087376356, -0.02080061286687851, 0.00018757331417873502,
- 0.04896434023976326, 0.05088663473725319, -0.12692034244537354, 0.03102070651948452,
- -0.11098288744688034, -0.1374787539243698, 0.08574903011322021, -0.03364899009466171,
- 0.06771279871463776, 0.03341514617204666, -0.0288807675242424, 0.03001490607857704,
- -0.007716486696153879, -0.05416164919734001, 0.02709367498755455, 0.04857276380062103,
- 0.015664931386709213, 0.06600496172904968, 0.11030437052249908, -0.01872953027486801,
- -0.07201768457889557, -0.0641426369547844, 0.09646773338317871, 0.11067532747983932,
- -0.0619194358587265, -0.01179821603000164, -0.02854521945118904, -0.026852214708924294,
- -0.02911406010389328, -0.08123251795768738, -0.091488316655159, 0.02391531690955162,
- -0.011195782572031021, 0.09065845608711243, -0.020518412813544273, -0.04177726432681084,
- -0.13807590305805206, -0.06484284996986389, -0.04917777702212334, -0.01589784398674965,
- 0.1604442298412323, -0.02892250195145607, 0.025256846100091934, 0.06150718405842781,
- -0.015500994399189949, 0.053744252771139145, -0.10641713440418243, 0.006190537475049496,
- -0.0950198620557785, 0.021504297852516174, 0.013605481944978237, 0.02881843037903309,
- -0.08166530728340149, 0.0882137343287468, -0.0995025485754013, 0.04403747245669365,
- 0.06270822137594223, 0.002084325533360243, 0.05063031613826752, -0.03982921689748764,
- 0.029956355690956116, 0.0402664840221405, -0.047185853123664856, 0.022444969043135643,
- -0.07128273695707321, -0.03646698221564293, -0.1207076832652092, -0.07121153920888901,
- -0.03783409297466278, -0.08653559535741806, 0.02617144025862217, -0.08476456999778748,
- -0.016682637855410576, -0.01927010342478752, 0.0021405848674476147,
- 0.023710547015070915, 0.07636390626430511, 0.06317279487848282, -0.11872650682926178,
- 0.03503115847706795, -0.009256969206035137, 0.05926059931516647, -0.050386324524879456,
- -0.03250870108604431, 0.01821509562432766, 0.13026995956897736, 0.048459045588970184,
- 0.005868351552635431, 0.008106140419840813, -0.031412217766046524, 0.03955644741654396,
- -0.06186190992593765, -0.46578943729400635, 0.012812175787985325, 0.007008046843111515,
- 0.04625998064875603, 0.005882109049707651, -0.026821665465831757, 0.03824828937649727,
- -0.02015860751271248, -0.03328844904899597, 0.101589635014534, -0.04920795559883118,
- 0.017844516783952713, -0.0003075468703173101, -0.08390908688306808,
- -0.03081228770315647, -0.06290557235479355, -0.04397471994161606, 0.06112309917807579,
- -0.02107437327504158, -0.09051632136106491, -0.10635251551866531, 0.050322093069553375,
- -0.02392229065299034, -0.009269241243600845, -0.0012449607020244002,
- 0.023757683113217354, -0.05506085231900215, -0.040883567184209824, 0.03809754177927971,
- 0.056553106755018234, 0.0470840260386467, -0.05563541501760483, -0.02730649895966053,
- 0.03758518397808075, -0.05368230491876602, 0.1845913529396057, 0.0148845836520195,
- 0.020144132897257805, -0.08603096008300781, 0.08775073289871216, 0.0583331473171711,
- 0.18817824125289917, -0.031517330557107925, 0.05699872225522995, 0.039095353335142136,
- 0.1284567266702652, 0.05767805129289627, 0.05758025124669075, -0.01875055767595768,
- 0.006127685774117708, 0.03858758509159088, -0.0013845626963302493, 0.056873172521591187,
- -0.09669370204210281, -0.03841075301170349, -0.017950624227523804,
- -0.013364948332309723, -0.0016338004497811198, 0.018187517300248146, 0.1794804036617279,
- 0.013403228484094143, 0.03473860025405884, 0.008755776099860668, -0.06150401383638382,
- -0.0014490146422758698, -0.061910174787044525, -0.1190786361694336,
- 0.008738817647099495, -0.005367525387555361, 0.033499859273433685, -0.04425282031297684,
- -0.1315506249666214, -0.028229504823684692, -0.048946838825941086,
- -0.0004082125087734312, 0.07421096414327621, 0.0012397365644574165, 0.04408654198050499,
- -0.03266718238592148, 0.1213851049542427, 0.05518539249897003, 0.005515638738870621,
- 0.059195056557655334, 0.03609725460410118, 0.0038661672733724117, 0.0009510009549558163,
- -0.0059750620275735855, -0.11648319661617279, -0.02808476984500885, 0.10454254597425461,
- -0.027958745136857033, 0.09206381440162659, 0.043223053216934204, -0.051540806889534,
- -0.07768981158733368, 0.03363325819373131, 0.0026617441326379776, 0.0570124089717865,
- -0.48083239793777466, -0.0004915331955999136, 0.1433933675289154, 0.04281074181199074,
- 0.0652589276432991, 0.060407355427742004, 0.04078708216547966, -0.0601813867688179,
- -0.09576757252216339, -0.06368189305067062, 0.20106950402259827, -0.05738750845193863,
- 0.055029742419719696, -0.11497713625431061, 0.06079530343413353, 0.07839594036340714,
- -0.022269032895565033, -0.01356387697160244, 0.07635146379470825, -0.17338787019252777,
- -0.022315340116620064, -0.08348751813173294, 0.20800620317459106, 0.07254787534475327,
- 0.03047083504498005, 0.04778827726840973, -0.047298528254032135, 0.026713399216532707,
- 0.06456971168518066, 0.00991856213659048, 0.06812810152769089, 0.005677707493305206,
- -0.02965300902724266, 0.13590553402900696, 0.0858568400144577, 0.07593811303377151,
- -0.0232386477291584, 11.832745552062988, 0.10636725276708603, 0.04108050838112831,
- -0.05474275350570679, 0.047432076185941696, -0.06884851306676865, 0.025801684707403183,
- -0.10887160897254944, 0.060290612280368805, 0.07811062037944794, -0.00425774184986949,
- -0.0019890705589205027, 0.00272455089725554, -0.083622045814991, -0.004642766900360584,
- -0.0876951515674591, -0.0403643473982811, -0.018822824582457542, 0.018307900056242943,
- -0.040612056851387024, -0.0185727346688509, -0.003139970125630498, 0.06216180697083473,
- 0.023546867072582245, -0.07343827933073044, 0.06179087236523628, 0.042451683431863785,
- -0.005106782075017691, -0.0003794248914346099, 0.016944285482168198,
- -0.03464914858341217, 0.044924285262823105, 0.04267367720603943, 0.003130236640572548,
- -0.03434538468718529, 0.062435027211904526, 0.03684099763631821, 0.08371996134519577,
- 0.002080189762637019, 0.045560263097286224, 0.029944246634840965, 0.0361921563744545,
- 0.017995594069361687, 0.04613947495818138, 0.022927580401301384, 0.009311478585004807,
- 0.07393147051334381, 0.10275093466043472, 0.004008065909147263, 0.05632270127534866,
- 0.09893440455198288, -0.022114668041467667, 0.09869275242090225, 0.025294771417975426,
- 0.005450970958918333, 0.034392762929201126, -0.008827335201203823, -0.06634349375963211,
- 0.09744493663311005, 0.08933861553668976, -0.03854025527834892, 0.1166374683380127,
- 0.027206065133213997, 0.0807686597108841, -0.005442637950181961, 0.02620943821966648,
- 0.09520445019006729, 0.05838625878095627, -0.11525626480579376, -0.062393754720687866,
- 0.058622583746910095, -0.10287710279226303, -0.06309501826763153, 0.056750837713479996,
- 0.09099643677473068, -0.07327894866466522, 0.060864053666591644, -0.05905408784747124,
- 0.03689194470643997, -0.011812911368906498, -0.033313918858766556, 0.020769735798239708,
- -0.03010033629834652, 0.045761074870824814, 0.040947094559669495,
- -0.00019078557670582086, 0.10543981194496155, 0.0716829001903534, -0.00609196349978447,
- -0.0783880203962326, -0.127924844622612, 0.1204243153333664, -0.02074095979332924,
- -0.061107609421014786, 0.016202682629227638, -0.0399651937186718, 0.03347406163811684,
- -0.1420402079820633, 0.10195630043745041, 0.10045693814754486, -0.12393835932016373,
- -0.015360360965132713, -0.013719278387725353, 0.050227195024490356,
- -0.01753702387213707, 0.05229388177394867, -0.0676354318857193, 0.05008695647120476,
- 0.02279558777809143, 0.07900923490524292, -0.04367818310856819, 0.0657898411154747,
- 0.07814247161149979, -0.09100122004747391, 0.0645219087600708, 0.09770242124795914,
- -0.025104107335209846, -0.06855026632547379, 0.06218845769762993, 0.026015212759375572,
- -0.11304591596126556, -0.06331425905227661, -0.015065978281199932, -0.0929926261305809,
- -0.04473014548420906, -0.04409310221672058, 0.037438977509737015, 0.0016091052675619721,
- -0.0666448175907135, -0.014253539964556694, 0.025014692917466164, 0.034566931426525116,
- 0.10065921396017075, 0.024676267057657242, 0.03229444473981857, -0.09350444376468658,
- -0.030652131885290146, 0.04595804959535599, 0.008322357200086117, 0.0728355199098587,
- -0.04969422146677971, 0.0417446605861187, -0.06614013761281967, -0.12167274951934814,
- -0.018132274970412254, 0.10189871490001678, 0.0680321529507637, 0.07822159677743912,
- 0.05062483623623848, -0.07431955635547638, -0.025095852091908455, 0.09139686077833176,
- 0.04908514767885208, 0.02748929150402546, -0.0078001003712415695, -0.08409581333398819,
- 0.00548124872148037, 0.17544598877429962, -0.004253132734447718, -0.02479289472103119,
- 0.0433792881667614, -0.030628804117441177, 0.07969418913125992, 0.10016577690839767,
- 0.05810612440109253, 0.02387360669672489, 0.005839436315000057, -0.031343623995780945,
- -0.0029030940495431423, -0.015376873314380646, 0.008986000902950764,
- -0.007237655110657215, -0.1134192943572998, -0.06717099249362946, 0.022493086755275726,
- 0.0784660279750824, -0.003419602522626519, -0.1346782147884369, -0.03531261533498764,
- -0.0397329144179821
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 230,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Andrew J. Hawkins"],
- "epoch_date_downloaded": 1607990400,
- "epoch_date_modified": 1655078400,
- "epoch_date_submitted": 1654041600,
- "flag": null,
- "report_number": 1748,
- "source_domain": "theverge.com",
- "submitters": ["Ingrid Dickinson (CSET)"],
- "title": "Tesla’s Autopilot was engaged when Model 3 crashed into truck, report states",
- "url": "https://www.theverge.com/2019/5/16/18627766/tesla-autopilot-fatal-crash-delray-florida-ntsb-model-3"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "tesla",
- "name": "Tesla"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "tesla",
- "name": "Tesla"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "tesla-drivers",
- "name": "Tesla drivers"
- },
- {
- "__typename": "Entity",
- "entity_id": "gao-yaning",
- "name": "Gao Yaning"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1945, 1750, 1749, 208],
- "vector": [
- -0.0893617644906044, 0.08758604526519775, 0.007113449741154909, -0.08224500715732574,
- 0.07117565721273422, 0.007993112318217754, 0.0008671252289786935, 0.04049386829137802,
- 0.05296023562550545, -0.15581122040748596, -0.0016907427925616503, 0.094837985932827,
- 0.016809744760394096, -0.07458064705133438, 0.023162316530942917, -0.09625178575515747,
- -0.0684211254119873, -0.03566041588783264, -0.009296084754168987, -0.0854070782661438,
- -0.07725906372070312, 0.008621269837021828, 0.06796150654554367, 0.09874766319990158,
- -0.0606626495718956, 0.04499798268079758, 0.09785652905702591, 0.0960029736161232,
- -0.06245661526918411, 0.05920447036623955, -0.006070765201002359, -0.0410495400428772,
- 0.12606866657733917, 0.008458304218947887, 0.02242272160947323, 0.1129840761423111,
- 0.029980866238474846, -0.004846123047173023, -0.01429277379065752,
- -0.010386095382273197, -0.009172629565000534, 0.23827606439590454, 0.008359139785170555,
- -0.04705800116062164, 0.047621916979551315, -0.05434834957122803, 0.032491132616996765,
- 0.04059918224811554, 0.0271989107131958, 0.011711583472788334, -0.004348421934992075,
- 0.06137026846408844, -0.019173163920640945, 0.05222652107477188, -0.13033263385295868,
- 0.0638025552034378, 0.04360369220376015, -0.002520476933568716, 0.0684952363371849,
- -0.07781191915273666, -0.05969446897506714, -0.2676665782928467, -0.02485966496169567,
- -0.06990374624729156, 0.07019306719303131, -0.08445757627487183, -0.031158631667494774,
- -0.027715545147657394, 0.05099043622612953, 0.07394914329051971, 0.06672760099172592,
- -0.04572346433997154, -0.014923177659511566, 0.01759595051407814, 0.006633558310568333,
- -0.009093331173062325, -0.013038710691034794, 0.19299083948135376, -0.13522778451442719,
- -0.012191112153232098, 0.11150026321411133, -0.09859803318977356, 0.4939930737018585,
- 0.01136714592576027, -0.05875592678785324, 0.0042534382082521915, 0.12451466917991638,
- 0.02265659160912037, 0.04444277659058571, 0.05115792155265808, -0.036505524069070816,
- 0.004795283079147339, -0.06654897332191467, 0.060407932847738266, 0.07169295847415924,
- 0.035504069179296494, -0.02008776180446148, 0.1099759116768837, 0.0005765511887148023,
- -0.04436285421252251, 0.018372442573308945, -0.03654951974749565, 0.10013559460639954,
- 0.08208674937486649, -0.036090999841690063, 0.01212398149073124, 0.05901326239109039,
- -0.07770980894565582, 0.07202307879924774, -0.07396124303340912, 0.0009517894359305501,
- 0.02149513177573681, 0.0730084627866745, -0.009869623929262161, 0.05220838636159897,
- -0.1022249236702919, 0.03302463889122009, 0.04688204079866409, 0.08548368513584137,
- 0.019822536036372185, -0.04758564382791519, 0.061765145510435104, 0.09878523647785187,
- -0.05215281993150711, -0.007129887584596872, -0.03837453946471214, -0.09626716375350952,
- -0.028188452124595642, -0.043639324605464935, 0.0393868051469326, -0.06088491901755333,
- -0.20673389732837677, 0.013919621706008911, 0.11328443884849548, 0.0035846480168402195,
- -0.05471817031502724, -0.013230097480118275, -0.07054562121629715, 0.03220348432660103,
- -0.04191119596362114, -0.008461171761155128, 0.05644204095005989, 0.04481268674135208,
- 0.01890241540968418, 0.11497233062982559, 0.060477983206510544, -0.04812738299369812,
- -0.06075957790017128, -0.000574993493501097, -0.008753983303904533, 0.11046403646469116,
- -0.1265963464975357, -0.07195639610290527, 0.01912870816886425, 0.013086039572954178,
- 0.7065458297729492, 0.13148804008960724, 0.1887996792793274, -0.02865568920969963,
- -0.021709997206926346, 0.1826898753643036, 0.03704904019832611, 0.08687533438205719,
- -0.06105102598667145, -0.06503831595182419, 0.057310912758111954, -0.05317917466163635,
- -0.03466308116912842, 0.04950237646698952, 0.008350699208676815, 0.115679070353508,
- 0.012668686918914318, 0.12058530747890472, 0.0036122871097177267, -0.08000418543815613,
- -0.023315593600273132, 0.04685742408037186, 0.01922668144106865, -0.08318735659122467,
- -0.03674672916531563, 0.005847434513270855, 0.08765172213315964, -0.05244018882513046,
- -0.005028173327445984, -0.042310331016778946, 0.055031437426805496,
- -0.03478095680475235, 0.043593235313892365, -0.04047473520040512, 0.03618013486266136,
- 0.03742234408855438, 0.07691452652215958, 0.007324957754462957, -0.13810311257839203,
- -0.049629222601652145, 0.10648132115602493, -0.008504975587129593,
- -0.031103696674108505, 0.03962016850709915, -0.09520812332630157, 0.061158061027526855,
- 0.023269733414053917, 0.1463199257850647, -0.10378403961658478, 0.03783522546291351,
- -0.007048430852591991, 0.003952310420572758, 0.051813263446092606,
- -0.00004151626490056515, -0.06354662775993347, -0.058891139924526215,
- 0.09037108719348907, 0.050674837082624435, 0.05329369381070137, 0.08440504968166351,
- -0.019013728946447372, 0.05465610697865486, 0.051992181688547134, 0.030462661758065224,
- -0.01830260641872883, 0.05237416550517082, 0.08763869106769562, -0.036948032677173615,
- -0.04164520278573036, -0.005704047158360481, 0.00918889045715332, 0.0017897996585816145,
- -0.008257539942860603, 0.05849403887987137, 0.015713613480329514, -0.03336268663406372,
- 0.05592240393161774, -0.005083331372588873, 0.011934163048863411, 0.14430180191993713,
- -0.05091936141252518, -0.0822913646697998, -0.031131882220506668, -0.05296117067337036,
- -0.0202212892472744, -0.00991273857653141, 0.09697407484054565, 0.09104228764772415,
- 0.09747181832790375, 0.03898236155509949, 0.06158929318189621, 0.07988360524177551,
- 0.04299698397517204, 0.06024813652038574, 0.08936790376901627, -0.014045923948287964,
- -0.06344902515411377, -0.026685766875743866, -0.006043667439371347,
- 0.050641756504774094, 0.012385260313749313, -0.08104740083217621, -0.03168104588985443,
- -0.08406081050634384, -0.06780137121677399, -0.09842608124017715, 0.0035835562739521265,
- 0.025163844227790833, 0.11775965988636017, -0.038748957216739655, -0.05427448824048042,
- -0.11644767969846725, 0.01615200750529766, 0.07417458295822144, 0.01278039999306202,
- -0.020276114344596863, -0.09494735300540924, -0.004503337666392326, -0.0685318112373352,
- 0.041271768510341644, -0.03334873542189598, -0.004737179260700941,
- -0.021273117512464523, -0.0396144799888134, -0.00612313998863101, -0.05349873751401901,
- -0.006077637895941734, -0.061000704765319824, -0.10072673857212067,
- -0.02567349560558796, -0.025128429755568504, 0.017269646748900414, -0.03330925107002258,
- 0.06896322965621948, 0.036047253757715225, 0.04386981576681137, 0.014303195290267467,
- -0.03432321920990944, 0.06649985164403915, -0.03299225866794586, -0.019244372844696045,
- 0.09832636266946793, -0.002892365213483572, 0.028462417423725128, -0.017138835042715073,
- -0.09019077569246292, -0.03920716419816017, 0.05628421530127525, -0.0798691064119339,
- 0.05364003777503967, -0.02512372098863125, 0.021473977714776993, -0.0354667529463768,
- 0.008450121618807316, 0.05283379927277565, -0.061681896448135376, -0.07944439351558685,
- -0.10362567007541656, 0.12480314821004868, -0.011214939877390862, -0.029620572924613953,
- 0.03352085500955582, -0.04990208521485329, 0.06858433783054352, -0.005098286084830761,
- 0.003199567086994648, 0.010240062139928341, 0.05948481336236, -0.02678493969142437,
- 0.0041158259846270084, 0.039654240012168884, -0.08149833977222443, 0.004314922261983156,
- 0.07789316773414612, 0.44478127360343933, -0.16565927863121033, 0.06920821219682693,
- 0.10432205349206924, 0.004442913457751274, 0.06218242645263672, -0.05694367736577988,
- 0.06629949808120728, 0.05124801769852638, 0.109298475086689, 0.13374952971935272,
- -0.025674933567643166, -0.028103649616241455, -0.08243945240974426, 0.087721087038517,
- -0.011076091788709164, 0.01841474510729313, -0.013593795709311962, -0.09657382220029831,
- -0.028529834002256393, 0.05548996478319168, -0.06489256769418716, 0.020071955397725105,
- -0.020617986097931862, -0.09832340478897095, -0.010893519967794418, 0.0559285543859005,
- 0.013561504893004894, -0.00030379474628716707, -0.004647382535040379,
- -0.047340668737888336, 0.02355979010462761, -0.01803481951355934, 0.029834788292646408,
- -0.12973560392856598, 0.036442238837480545, -0.11645013839006424, -0.09019918739795685,
- 0.0884232148528099, -0.006900677923113108, 0.047557614743709564, 0.07177018374204636,
- -0.023323044180870056, 0.02952977642416954, -0.036000002175569534,
- -0.050817880779504776, 0.02838090993463993, 0.08652714639902115, 0.006087154150009155,
- 0.12098488211631775, 0.1423402726650238, -0.0450826957821846, -0.04975292831659317,
- -0.07109732925891876, 0.08620859682559967, 0.10534538328647614, -0.047881435602903366,
- 0.03689231351017952, -0.07234393060207367, -0.016367847099900246,
- -0.0021643005311489105, -0.07510802149772644, -0.08592227101325989,
- 0.005311374552547932, -0.04571562632918358, 0.031731173396110535, -0.011839045211672783,
- -0.00977216474711895, -0.18089690804481506, -0.035610802471637726, -0.04001639410853386,
- 0.0009934036061167717, 0.1089969128370285, -0.06555325537919998, -0.015944115817546844,
- 0.09020213037729263, -0.03500289469957352, -0.0245833620429039, -0.14577190577983856,
- 0.0037900074385106564, -0.04450038820505142, 0.027524098753929138, 0.029639776796102524,
- 0.07509119063615799, -0.01550194900482893, 0.08309920877218246, -0.11138822883367538,
- 0.06397320330142975, 0.006753414403647184, -0.027417797595262527, 0.037222135812044144,
- -0.03251486271619797, 0.04175514355301857, 0.04919295012950897, -0.04798072576522827,
- 0.04078742861747742, -0.04563748463988304, -0.0565120205283165, -0.12992435693740845,
- -0.07575971633195877, -0.02462795376777649, -0.08007213473320007, 0.09050200879573822,
- -0.06735003739595413, -0.03538622334599495, -0.019133826717734337, 0.004122430924326181,
- 0.0018072319217026234, 0.046714432537555695, 0.06555390357971191, -0.14203499257564545,
- 0.03088030219078064, -0.025813529267907143, 0.07257422804832458, -0.0632486417889595,
- -0.007744218222796917, -0.02028708904981613, 0.1304226517677307, 0.0637018010020256,
- 0.043847281485795975, 0.016822192817926407, -0.05271727964282036, 0.047983016818761826,
- -0.08784492313861847, -0.4885531961917877, 0.0631718784570694, 0.04327824339270592,
- 0.05189945921301842, -0.002219485118985176, -0.02910546213388443, 0.05424865335226059,
- 0.010870265774428844, -0.07557225227355957, 0.09825041145086288, -0.058136697858572006,
- 0.02669893205165863, 0.0026364221703261137, -0.06381219625473022, -0.05790666118264198,
- -0.05217231810092926, -0.07389891147613525, 0.07553186267614365, -0.014304482378065586,
- -0.08291833847761154, -0.13354796171188354, 0.04486978054046631, -0.029290083795785904,
- 0.007021377794444561, -0.016360659152269363, 0.022454293444752693, -0.09114605188369751,
- -0.05137677490711212, 0.03282833844423294, 0.03959302231669426, 0.05033333599567413,
- -0.07414622604846954, -0.018684202805161476, 0.039627909660339355, -0.04293012619018555,
- 0.1540522277355194, 0.00009739806409925222, -0.013012023642659187, -0.0885758101940155,
- 0.05430147796869278, 0.036364976316690445, 0.18323180079460144, -0.039676178246736526,
- 0.03723117336630821, 0.04245910793542862, 0.17940852046012878, 0.055963046848773956,
- 0.00825071707367897, -0.03333212435245514, 0.00418013846501708, 0.000494764419272542,
- -0.0191779974848032, 0.027109116315841675, -0.0723867118358612, -0.01653279736638069,
- 0.0033768494613468647, 0.012114271521568298, -0.015858573839068413, 0.01993565633893013,
- 0.1836828738451004, 0.009319192729890347, 0.036242350935935974, -0.02918783575296402,
- -0.06347218155860901, -0.01958278939127922, -0.07365459203720093, -0.09218992292881012,
- -0.015087437815964222, 0.0015410904306918383, 0.017851166427135468, -0.0571221224963665,
- -0.14216631650924683, -0.03566874563694, -0.04316294193267822, -0.017928369343280792,
- 0.11509504169225693, 0.01179596409201622, 0.05475936457514763, -0.03722194582223892,
- 0.11402783542871475, 0.05739973485469818, -0.00753409368917346, 0.05308975651860237,
- 0.10127125680446625, 0.009908624924719334, 0.022738689556717873, -0.013904275372624397,
- -0.0466928593814373, 0.02549421787261963, 0.13012418150901794, -0.06652078032493591,
- 0.09793601930141449, 0.07073374092578888, -0.025656776502728462, -0.06975366920232773,
- 0.009785173460841179, 0.008067954331636429, 0.04895545542240143, -0.44421330094337463,
- -0.009635069407522678, 0.13039714097976685, 0.011967640370130539, 0.02072274684906006,
- 0.10973194986581802, 0.04449262097477913, -0.021906698122620583, -0.04074922204017639,
- -0.06981755048036575, 0.1821158081293106, -0.008964808657765388, 0.05907236039638519,
- -0.11147677898406982, 0.05538303777575493, 0.0894455686211586, -0.027292734012007713,
- -0.013852627947926521, 0.06583380699157715, -0.18361259996891022, 0.002717626513913274,
- -0.03108295425772667, 0.16294793784618378, 0.03787051886320114, 0.04635189473628998,
- 0.07537579536437988, -0.05575287342071533, 0.020944559946656227, 0.04754818603396416,
- -0.017378663644194603, 0.048218853771686554, 0.003366481978446245,
- -0.022125951945781708, 0.10475108027458191, 0.07105781137943268, 0.09109820425510406,
- -0.03505409508943558, 12.122764587402344, 0.08720436692237854, 0.05710859224200249,
- -0.07107625901699066, 0.042162809520959854, -0.05348556861281395, 0.03646193817257881,
- -0.12294305860996246, 0.03667490929365158, 0.11285267025232315, -0.017423126846551895,
- -0.04344833642244339, 0.0025966493412852287, -0.10440963506698608, 0.02412404492497444,
- -0.08971214294433594, -0.0351959764957428, -0.014343615621328354, 0.06130959466099739,
- -0.04807015508413315, -0.013124896213412285, -0.03580021858215332, 0.05737867206335068,
- 0.012306946329772472, -0.08211150020360947, 0.04797765240073204, 0.05697227641940117,
- -0.013822996988892555, -0.00005835574120283127, 0.0020801895298063755,
- -0.03401446342468262, -0.0031007458455860615, 0.05484435707330704,
- -0.0011488143354654312, 0.0008347355760633945, 0.07430797815322876, 0.04466371238231659,
- 0.0682087168097496, 0.016726838424801826, 0.07419727742671967, 0.030864223837852478,
- -0.005067695863544941, 0.03613463416695595, 0.04609120637178421, 0.02495545893907547,
- 0.02050027623772621, 0.0900525152683258, 0.09840565174818039, 0.04475018382072449,
- 0.04582132771611214, 0.09054537117481232, 0.001827344880439341, 0.12325537204742432,
- 0.04073057323694229, 0.012974598444998264, 0.040376514196395874, -0.03734432905912399,
- -0.06281328201293945, 0.07692297548055649, 0.0756031796336174, -0.06716765463352203,
- 0.053689416497945786, -0.0005670314421877265, 0.10604959726333618,
- -0.030373353511095047, 0.057435013353824615, 0.05862021818757057, 0.05975329875946045,
- -0.13278847932815552, -0.11914987117052078, 0.07601342350244522, -0.11171005666255951,
- -0.0855926051735878, 0.04646528512239456, 0.12692593038082123, -0.05031460523605347,
- 0.05738687515258789, -0.07787079364061356, 0.02682884782552719, -0.06645362824201584,
- -0.03332575783133507, 0.036383602768182755, -0.006220228970050812, 0.027810603380203247,
- 0.02889138087630272, 0.014840216375887394, 0.10971377789974213, 0.09265797585248947,
- 0.005527982022613287, -0.08554738014936447, -0.09301725029945374, 0.05303764343261719,
- -0.010974656790494919, -0.055952638387680054, 0.019198328256607056, -0.0311244186013937,
- 0.02235933393239975, -0.176854208111763, 0.06096029281616211, 0.0785384550690651,
- -0.10965539515018463, -0.012114932760596275, -0.025574559345841408,
- 0.051715362817049026, -0.01476212777197361, 0.06718182563781738, -0.03238474577665329,
- 0.0057056862860918045, 0.04011877626180649, 0.03380987420678139, -0.030089939013123512,
- 0.08213260769844055, 0.09943190217018127, -0.10932020843029022, 0.07759842276573181,
- 0.07110367715358734, -0.018828807398676872, -0.05137674883008003, 0.04627921059727669,
- 0.062402576208114624, -0.08371535688638687, -0.0640985518693924, -0.05276063457131386,
- -0.05939451605081558, -0.04618935286998749, -0.0438755564391613, 0.030080819502472878,
- 0.03364119306206703, -0.07948718965053558, -0.011715365573763847, 0.01066278200596571,
- 0.034876737743616104, 0.10481049865484238, 0.008133013732731342, 0.03962814807891846,
- -0.11161229014396667, -0.02748347818851471, 0.05289825052022934, 0.05465789511799812,
- 0.04660693183541298, -0.0068245152942836285, -0.019237034022808075,
- -0.07301368564367294, -0.10951963067054749, 0.02224375493824482, 0.13615256547927856,
- 0.10073187947273254, 0.0433223582804203, 0.044127773493528366, -0.09850364923477173,
- -0.05354258418083191, 0.11016412824392319, 0.042031820863485336, 0.03678464516997337,
- 0.004263536538928747, -0.10507377982139587, -0.039371851831674576, 0.14659170806407928,
- -0.04687032103538513, -0.00918315164744854, 0.011575628072023392, -0.011068465188145638,
- 0.10648118704557419, 0.08314177393913269, 0.0745910108089447, 0.05329734832048416,
- 0.011647175066173077, -0.024196840822696686, 0.04724009707570076, -0.017444724217057228,
- 0.02502995915710926, -0.007182657718658447, -0.14909698069095612, -0.08121221512556076,
- 0.048671379685401917, 0.07887813448905945, -0.02486458420753479, -0.12379102408885956,
- -0.0483279749751091, 0.0038272016681730747
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 231,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Christina"],
- "epoch_date_downloaded": 1661212800,
- "epoch_date_modified": 1661212800,
- "epoch_date_submitted": 1661212800,
- "flag": null,
- "report_number": 1945,
- "source_domain": "autonews.gasgoo.com",
- "submitters": ["Thomas Giallella (CSET)"],
- "title": "Tesla fatal crash case in China: company admits the car in “autopilot” when accident happened",
- "url": "https://autonews.gasgoo.com/m/Detail/70014197.html"
- },
- {
- "__typename": "Report",
- "authors": ["Gu Liping"],
- "epoch_date_downloaded": 1655078400,
- "epoch_date_modified": 1655078400,
- "epoch_date_submitted": 1655078400,
- "flag": null,
- "report_number": 1750,
- "source_domain": "ecns.cn",
- "submitters": ["Khoa Lam"],
- "title": "Tesla confirms 'Autopilot' engaged in fatal crash in China",
- "url": "http://www.ecns.cn/2018/02-28/293992.shtml"
- },
- {
- "__typename": "Report",
- "authors": ["Neal E. Boudette"],
- "epoch_date_downloaded": 1607990400,
- "epoch_date_modified": 1655078400,
- "epoch_date_submitted": 1654041600,
- "flag": null,
- "report_number": 1749,
- "source_domain": "nytimes.com",
- "submitters": ["Ingrid Dickinson (CSET)"],
- "title": "Autopilot Cited in Death of Chinese Tesla Driver",
- "url": "https://www.nytimes.com/2016/09/15/business/fatal-tesla-crash-in-china-involved-autopilot-government-tv-says.html"
- },
- {
- "__typename": "Report",
- "authors": ["Ryan Felton"],
- "epoch_date_downloaded": 1661212800,
- "epoch_date_modified": 1661212800,
- "epoch_date_submitted": 1559347200,
- "flag": true,
- "report_number": 208,
- "source_domain": "jalopnik.com",
- "submitters": ["Anonymous"],
- "title": "Two Years On, A Father Is Still Fighting Tesla Over Autopilot And His Son's Fatal Crash",
- "url": "https://jalopnik.com/two-years-on-a-father-is-still-fighting-tesla-over-aut-1823189786"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "tesla",
- "name": "Tesla"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "tesla",
- "name": "Tesla"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "yoshihiro-umeda",
- "name": "Yoshihiro Umeda"
- },
- {
- "__typename": "Entity",
- "entity_id": "tesla-drivers",
- "name": "Tesla drivers"
- },
- {
- "__typename": "Entity",
- "entity_id": "pedestrians",
- "name": "pedestrians"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [2018, 1975, 1752, 1751],
- "vector": [
- -0.09308988600969315, 0.06699293851852417, -0.008956206031143665, -0.09215540438890457,
- 0.05632929131388664, -0.029540739953517914, -0.00975813902914524, 0.025881793349981308,
- 0.06107766553759575, -0.1469113528728485, 0.018031759187579155, 0.06247486174106598,
- 0.04260825738310814, -0.01776815950870514, 0.06073968484997749, -0.1076243668794632,
- -0.09090608358383179, -0.015788361430168152, 0.00446798512712121, -0.09564622491598129,
- -0.0885167121887207, -0.006362379994243383, 0.07035966217517853, 0.13250195980072021,
- -0.06123004108667374, 0.02359701693058014, 0.09335155785083771, 0.08472557365894318,
- -0.026645155623555183, 0.031470462679862976, -0.01196285616606474, -0.04517116770148277,
- 0.09762876480817795, -0.007497839629650116, 0.03709087893366814, 0.06508650630712509,
- 0.04083715006709099, -0.02305205725133419, -0.024454109370708466, -0.010158257558941841,
- 0.017794935032725334, 0.21115094423294067, -0.012252387590706348, 0.002055903896689415,
- 0.02482992224395275, -0.03517237678170204, 0.06886254251003265, 0.050453320145606995,
- -0.0020014545880258083, 0.008735102601349354, -0.0002522775321267545,
- 0.005540382117033005, -0.040239688009023666, 0.02521037682890892, -0.11174160242080688,
- 0.07211270183324814, 0.033645451068878174, -0.004607907962054014, 0.04679762199521065,
- -0.07197001576423645, -0.012801973149180412, -0.22384695708751678, -0.06784404814243317,
- -0.0678587257862091, 0.06403455883264542, -0.07330243289470673, -0.040519386529922485,
- 0.006401803344488144, 0.04601697996258736, 0.08519725501537323, 0.0731765478849411,
- -0.05073396489024162, -0.002844015369191766, -0.009004553779959679,
- -0.007267171982675791, -0.02337627485394478, -0.002199286362156272, 0.23049071431159973,
- -0.11697588115930557, 0.01109753455966711, 0.13112036883831024, -0.10628031939268112,
- 0.4276328384876251, 0.0166165828704834, -0.012186693958938122, -0.000060332706198096275,
- 0.0748894140124321, 0.04419414699077606, 0.028367921710014343, 0.06873781234025955,
- 0.004629683680832386, 0.0078357495367527, -0.05329460650682449, 0.03146013617515564,
- 0.062125395983457565, 0.03806380182504654, -0.022762086242437363, 0.030146904289722443,
- -0.013103525154292583, -0.0683155506849289, 0.033592138439416885, -0.05483178049325943,
- 0.08597569912672043, 0.07387349754571915, -0.02970358543097973, 0.025390805676579475,
- 0.09124402701854706, -0.021455416455864906, 0.0623074509203434, -0.07307110726833344,
- 0.02465781569480896, 0.055910058319568634, 0.07229748368263245, -0.01651265285909176,
- 0.0625191479921341, -0.0830269604921341, 0.016048552468419075, 0.03053954616189003,
- 0.07692773640155792, 0.005180055275559425, -0.018932724371552467, 0.06679588556289673,
- 0.10824259370565414, -0.06410756707191467, 0.027699360623955727, -0.043592847883701324,
- -0.06258594989776611, 0.009416165761649609, -0.028558719903230667, 0.027774181216955185,
- -0.043148696422576904, -0.2124560922384262, 0.031942009925842285, 0.09539207071065903,
- 0.0077932653948664665, -0.02873518317937851, -0.019705094397068024,
- -0.07179384678602219, 0.032301709055900574, -0.016148705035448074,
- -0.030383508652448654, 0.04663750156760216, 0.05468448996543884, 0.01162033248692751,
- 0.1307845413684845, 0.03822882100939751, -0.045867517590522766, -0.0643652081489563,
- -0.013700265437364578, -0.03558759391307831, 0.09500084817409515, -0.13748538494110107,
- -0.05235633626580238, 0.030156150460243225, -0.0008452626643702388, 0.6329196691513062,
- 0.09669339656829834, 0.15195108950138092, -0.015102223493158817, -0.025027155876159668,
- 0.19709917902946472, -0.01953982375562191, 0.047115426510572433, -0.08153540641069412,
- -0.07710649073123932, 0.030235033482313156, -0.07640909403562546, -0.04648633673787117,
- 0.034259628504514694, 0.03632773831486702, 0.12146097421646118, 0.04427548870444298,
- 0.09948714822530746, -0.02234569378197193, -0.072853684425354, -0.0256903488188982,
- 0.036174893379211426, 0.017195118591189384, -0.09922844171524048, -0.045685071498155594,
- 0.031194834038615227, 0.09283944964408875, -0.0682072639465332, -0.008927340619266033,
- -0.03849353641271591, 0.04457440972328186, -0.03180026262998581, 0.005465963389724493,
- -0.0322171151638031, 0.01602122187614441, 0.043489884585142136, 0.0847812294960022,
- -0.023163584992289543, -0.10747198015451431, -0.05837136507034302, 0.13297730684280396,
- 0.006431810557842255, -0.0014364714734256268, 0.0631280317902565, -0.08272194862365723,
- 0.06657163053750992, 0.025931449607014656, 0.12945657968521118, -0.10797996819019318,
- 0.03463374823331833, -0.0014703714987263083, 0.004580388776957989, 0.07258742302656174,
- -0.004911769647151232, -0.07526750862598419, -0.07665511965751648, 0.016985172405838966,
- 0.060864873230457306, 0.06072690337896347, 0.07687591761350632, -0.03470368683338165,
- 0.05505039915442467, 0.01855071261525154, -0.016983501613140106, -0.04535286873579025,
- 0.04723917320370674, 0.10335835069417953, -0.03836667537689209, -0.025566108524799347,
- 0.02433711104094982, -0.008462549187242985, 0.02242078073322773, 0.02423100359737873,
- 0.05594125762581825, 0.04476821422576904, -0.04445953294634819, 0.03532436117529869,
- 0.014115151949226856, 0.01545762550085783, 0.09346335381269455, -0.09509889781475067,
- -0.06351211667060852, -0.018277041614055634, -0.045575231313705444,
- -0.011315425857901573, -0.03344162926077843, 0.08747680485248566, 0.04259055480360985,
- 0.09153871238231659, 0.03618943318724632, 0.057624660432338715, 0.07184237986803055,
- 0.08472509682178497, 0.05392729490995407, 0.07351285219192505, -0.02646876871585846,
- -0.04977254942059517, -0.028635181486606598, 0.024925723671913147, 0.030749935656785965,
- 0.06801249086856842, -0.057662878185510635, -0.05184086784720421, -0.01681745983660221,
- -0.03270559757947922, -0.0683886781334877, -0.022866949439048767, -0.016681719571352005,
- 0.06594181805849075, -0.047116898000240326, -0.08038783818483353, -0.12087875604629517,
- 0.018594371154904366, 0.01683148927986622, -0.043260205537080765, -0.017909012734889984,
- -0.0828174278140068, -0.023775862529873848, -0.037179429084062576, 0.04184060916304588,
- -0.006884009577333927, 0.010888594202697277, -0.024917136877775192,
- -0.07839655876159668, -0.01655689626932144, -0.021010516211390495, -0.01341154146939516,
- -0.06071319803595543, -0.07007656246423721, -0.02963540144264698, -0.004314791411161423,
- 0.019888442009687424, 0.005474250763654709, 0.039810821413993835, 0.035705920308828354,
- 0.03858239948749542, -0.0047349208034574986, -0.012736573815345764,
- 0.044879235327243805, -0.04804329574108124, -0.008076325990259647, 0.08123975247144699,
- -0.004151180852204561, 0.026602044701576233, -0.022163894027471542,
- -0.06558889895677567, -0.0702214390039444, -0.022364266216754913, -0.0725141167640686,
- 0.04918995499610901, -0.030657298862934113, 0.017136182636022568, -0.007546521257609129,
- 0.024273104965686798, 0.06984354555606842, -0.07290945947170258, -0.05904177576303482,
- -0.09935598820447922, 0.08610932528972626, -0.016540348529815674, -0.02232382446527481,
- 0.026447396725416183, -0.04471345990896225, 0.062383417040109634, -0.020054876804351807,
- 0.015988929197192192, 0.03821524232625961, 0.009575572796165943, -0.025590457022190094,
- -0.011099809780716896, 0.05737495794892311, -0.007323669269680977, 0.022404734045267105,
- 0.07261970639228821, 0.3960391879081726, -0.1742551177740097, 0.07739314436912537,
- 0.06549916416406631, 0.018351273611187935, 0.10500440001487732, -0.03562544658780098,
- 0.07380229234695435, 0.07643204182386398, 0.09992986172437668, 0.14239001274108887,
- -0.031562428921461105, -0.030608106404542923, -0.056132279336452484,
- 0.09873279929161072, 0.023360421881079674, 0.002419584896415472, -0.016545969992876053,
- -0.09081694483757019, -0.0031903975177556276, 0.04231857508420944,
- -0.033730752766132355, 0.0021031443029642105, 0.007402104791253805, -0.1008949726819992,
- 0.009347960352897644, 0.025281796231865883, 0.023719798773527145, -0.042061589658260345,
- -0.008222305215895176, -0.030667873099446297, 0.07136702537536621,
- -0.0023772227577865124, 0.03343544527888298, -0.07519522309303284, 0.07437370717525482,
- -0.14495757222175598, -0.06295429915189743, 0.10095411539077759, -0.003945634234696627,
- 0.04002313315868378, 0.0610126256942749, -0.0013906523818150163, 0.021390611305832863,
- -0.026823243126273155, -0.06808486580848694, 0.013051600195467472, 0.05343456566333771,
- 0.02242140844464302, 0.09650879353284836, 0.14044421911239624, -0.03300585597753525,
- -0.044235505163669586, -0.057154081761837006, 0.05674275383353233, 0.09504561126232147,
- -0.06361933052539825, 0.030512414872646332, -0.039590321481227875,
- -0.00031951218261383474, 0.0181741863489151, -0.06949897855520248, -0.06904129683971405,
- 0.02159523405134678, -0.0439860075712204, 0.04556247219443321, -0.031919073313474655,
- -0.03867251053452492, -0.12747721374034882, -0.006100458092987537,
- -0.054729655385017395, 0.020349835976958275, 0.08657986670732498, -0.04311807453632355,
- -0.009243657812476158, 0.04525897279381752, 0.00309725571423769, -0.00506657175719738,
- -0.12255193293094635, 0.026651697233319283, -0.0473652109503746, 0.03446021303534508,
- 0.06142371892929077, 0.0652863159775734, -0.03583381325006485, 0.023261824622750282,
- -0.10601459443569183, 0.024419665336608887, 0.03891569375991821, -0.01156286895275116,
- 0.04112832993268967, -0.031800057739019394, 0.06088864430785179, 0.03820344805717468,
- -0.04361468553543091, 0.02273794263601303, -0.07534883916378021, -0.009807655587792397,
- -0.099140465259552, -0.1078057736158371, -0.05054935812950134, -0.08548358827829361,
- 0.1055910587310791, -0.06180378794670105, -0.044212646782398224, -0.011286475695669651,
- 0.010230999439954758, 0.025939833372831345, 0.08295103162527084, 0.04005761444568634,
- -0.14361035823822021, 0.0037163966335356236, -0.01599368266761303, 0.06615157425403595,
- -0.03940966725349426, -0.048302993178367615, -0.042265959084033966, 0.09869785606861115,
- 0.0451054573059082, 0.011258749291300774, 0.006262981798499823, -0.04692082852125168,
- 0.030864521861076355, -0.07429486513137817, -0.4648805856704712, 0.06728237867355347,
- 0.008028710260987282, 0.059836696833372116, 0.011646595783531666, -0.031910430639982224,
- 0.024176986888051033, 0.0011902472469955683, -0.050919391214847565, 0.06186117231845856,
- -0.0461810901761055, 0.013044284656643867, 0.020047713071107864, -0.06027401238679886,
- -0.02882036380469799, -0.053760819137096405, -0.06846731156110764, 0.0637107789516449,
- -0.030963337048888206, -0.07990245521068573, -0.09011805802583694,
- -0.005201219581067562, -0.03363680839538574, -0.0016867478843778372,
- -0.0014818240888416767, 0.02091796137392521, -0.1262461543083191, -0.06044306606054306,
- 0.02815784513950348, 0.07259682565927505, 0.018118739128112793, -0.07047903537750244,
- -0.02671501599252224, 0.03532393276691437, -0.06378374248743057, 0.14829927682876587,
- 0.03148433938622475, -0.016073741018772125, -0.07478519529104233, 0.03829660266637802,
- 0.050998054444789886, 0.1853543072938919, -0.0039178309962153435, 0.08277703821659088,
- 0.003663022769615054, 0.14544762670993805, 0.00949708092957735, 0.05402737855911255,
- -0.029034335166215897, -0.01236087828874588, 0.006790489889681339,
- -0.023082250729203224, 0.056563328951597214, -0.07924091070890427,
- -0.027766594663262367, -0.028171593323349953, 0.02440308965742588,
- -0.030221519991755486, 0.029318949207663536, 0.1746184229850769, 0.02351612038910389,
- 0.024455469101667404, -0.0170644111931324, -0.04864491522312164, -0.030250318348407745,
- -0.06196088343858719, -0.07651767134666443, -0.04762653633952141, -0.015958750620484352,
- 0.004852716811001301, -0.02758750319480896, -0.11509428173303604, -0.015748368576169014,
- -0.02575824037194252, 0.014163194224238396, 0.10289622098207474, 0.00004723313759313896,
- 0.032329756766557693, 0.007058190181851387, 0.10800954699516296, 0.042374733835458755,
- 0.01429308857768774, 0.039810262620449066, 0.0823783352971077, 0.027877546846866608,
- 0.03638165816664696, -0.04676195979118347, -0.06319306790828705, 0.03397520259022713,
- 0.10567872226238251, -0.07756459712982178, 0.07036569714546204, 0.06490950286388397,
- -0.023812945932149887, -0.04147680103778839, 0.022689439356327057, 0.02219260111451149,
- 0.025654222816228867, -0.45740818977355957, -0.03649858012795448, 0.12702713906764984,
- -0.010697780176997185, 0.025279035791754723, 0.0843767449259758, 0.05308321863412857,
- -0.03433135896921158, -0.05296679213643074, -0.04946355149149895, 0.11150854080915451,
- -0.015987686812877655, 0.08181695640087128, -0.07707624137401581, 0.04011911153793335,
- 0.08109959959983826, -0.015742845833301544, -0.05303587391972542, 0.04541528597474098,
- -0.23604582250118256, 0.0259952861815691, -0.042501889169216156, 0.1697334200143814,
- 0.07757287472486496, 0.04149097949266434, 0.07019083201885223, -0.05628281086683273,
- 0.0384407714009285, 0.03879033029079437, 0.027393082156777382, 0.07642495632171631,
- 0.016750354319810867, -0.05477515608072281, 0.09184981882572174, 0.01864473521709442,
- 0.09798188507556915, -0.003412595484405756, 12.007195472717285, 0.06389562785625458,
- 0.0428905189037323, -0.05883962661027908, 0.06411736458539963, -0.062089767307043076,
- 0.034017086029052734, -0.08770198374986649, 0.015237015672028065, 0.12834319472312927,
- -0.008861795999109745, -0.015480060130357742, -0.03433220461010933,
- -0.07085148990154266, -0.004199762362986803, -0.09737014025449753,
- -0.028889568522572517, -0.008019980974495411, 0.024500928819179535,
- -0.06593260914087296, -0.014683663845062256, -0.021164027974009514, 0.07404576241970062,
- -0.004808827769011259, -0.07870277762413025, 0.06584924459457397, 0.021803054958581924,
- 0.03159909322857857, 0.01802845671772957, 0.047529879957437515, -0.027146581560373306,
- 0.03293599933385849, 0.06114194169640541, 0.039186879992485046, 0.03365934267640114,
- 0.05661550164222717, 0.0287272110581398, 0.0720338523387909, 0.02770189940929413,
- 0.10424616932868958, 0.0265712458640337, 0.0001076521584764123, 0.04326578974723816,
- 0.05385098606348038, 0.0491330511868, 0.025715544819831848, 0.08596212416887283,
- 0.1026420146226883, 0.021143462508916855, 0.06665269285440445, 0.07547059655189514,
- -0.04655429348349571, 0.1285524219274521, 0.011652638204395771, 0.00726332888007164,
- 0.051097024232149124, -0.001498935860581696, -0.05852228030562401, 0.07127397507429123,
- 0.08307147026062012, -0.06426839530467987, 0.08993954211473465, 0.01332448236644268,
- 0.12192650884389877, -0.017284315079450607, 0.07727394998073578, 0.09375619143247604,
- 0.05786563456058502, -0.1306861937046051, -0.04282289743423462, 0.05623328685760498,
- -0.11241845786571503, -0.05098805949091911, 0.044934216886758804, 0.07756450772285461,
- -0.0630221739411354, 0.10684192925691605, -0.057619452476501465, 0.034645404666662216,
- -0.0477302260696888, -0.005921910982578993, 0.018605561926960945, -0.02859000489115715,
- -0.004563541151583195, 0.047119736671447754, 0.016276853159070015, 0.10136692225933075,
- 0.08498871326446533, -0.057603027671575546, -0.06872081011533737, -0.08965381979942322,
- 0.0801028311252594, -0.024137306958436966, -0.0660606250166893, 0.02863873913884163,
- -0.050199590623378754, 0.013509257696568966, -0.13281409442424774, 0.054247938096523285,
- 0.12225693464279175, -0.10353683680295944, -0.0049735731445252895, -0.02913619577884674,
- 0.05058043450117111, -0.04296509921550751, 0.0747486874461174, -0.044285133481025696,
- 0.003528742352500558, 0.0071169170551002026, 0.05462592840194702, -0.07119516283273697,
- 0.09349758923053741, 0.07153716683387756, -0.08337713778018951, 0.07189866900444031,
- 0.07195410132408142, 0.00023959367536008358, -0.05230139568448067, 0.05649769678711891,
- 0.02045242302119732, -0.09074646234512329, -0.05234638229012489, -0.035048071295022964,
- -0.04353015497326851, -0.03542129695415497, -0.02266966551542282, -0.026690946891903877,
- 0.040095407515764236, -0.0601377971470356, -0.03946232050657272, 0.004964739084243774,
- -0.0027427554596215487, 0.12929461896419525, -0.006297740153968334, 0.03754180669784546,
- -0.08612275123596191, -0.04771939665079117, 0.0691499263048172, 0.03778520226478577,
- 0.07772401720285416, -0.01351726520806551, 0.00006814487278461456, -0.03845055401325226,
- -0.06831471621990204, 0.0066927345469594, 0.13389624655246735, 0.09711268544197083,
- 0.056939803063869476, 0.06666823476552963, -0.060277827084064484, -0.04431579262018204,
- 0.10569854080677032, 0.04483777657151222, 0.009463346563279629, 0.016048800200223923,
- -0.10383956134319305, -0.016110029071569443, 0.1719484031200409, -0.05547403544187546,
- 0.009839771315455437, 0.05773681402206421, -0.05182747542858124, 0.05393024533987045,
- 0.054195016622543335, 0.07311598211526871, 0.02340393140912056, -0.002654389478266239,
- -0.011353411711752415, 0.04026874527335167, -0.012211229652166367, 0.014580919407308102,
- 0.023748503997921944, -0.12098528444766998, -0.06575926393270493, 0.02875465527176857,
- 0.08041886985301971, 0.024600517004728317, -0.12601226568222046, -0.033616598695516586,
- -0.02175886370241642
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 232,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Brad Anderson"],
- "epoch_date_downloaded": 1662595200,
- "epoch_date_modified": 1663027200,
- "epoch_date_submitted": 1662595200,
- "flag": null,
- "report_number": 2018,
- "source_domain": "carscoops.com",
- "submitters": ["Thomas Giallella (CSET)"],
- "title": "Tesla Autopilot Blamed On Fatal Japanese Model X Crash",
- "url": "https://www.carscoops.com/2020/04/tesla-autopilot-blamed-on-fatal-japanese-model-x-crash/"
- },
- {
- "__typename": "Report",
- "authors": ["Carol Rao"],
- "epoch_date_downloaded": 1661731200,
- "epoch_date_modified": 1661817600,
- "epoch_date_submitted": 1661817600,
- "flag": null,
- "report_number": 1975,
- "source_domain": "motorbiscuit.com",
- "submitters": ["Thomas Giallella (CSET)"],
- "title": "Tesla Autopilot Technology Killed a Man in Japan, According to This Lawsuit",
- "url": "https://www.motorbiscuit.com/tesla-autopilot-technology-killed-a-man-in-japan-according-to-this-lawsuit/"
- },
- {
- "__typename": "Report",
- "authors": ["Lauren Edmonds"],
- "epoch_date_downloaded": 1654041600,
- "epoch_date_modified": 1655078400,
- "epoch_date_submitted": 1654041600,
- "flag": null,
- "report_number": 1752,
- "source_domain": "dailymail.co.uk",
- "submitters": ["Khoa Lam"],
- "title": "Tesla is sued by family of man who was killed by car using Autopilot",
- "url": "https://www.dailymail.co.uk/news/article-8274449/Tesla-sued-family-man-44-run-killed-car-using-Autopilot.html"
- },
- {
- "__typename": "Report",
- "authors": ["@kawazacky"],
- "epoch_date_downloaded": 1607990400,
- "epoch_date_modified": 1655078400,
- "epoch_date_submitted": 1654041600,
- "flag": null,
- "report_number": 1751,
- "source_domain": "advrider.com",
- "submitters": ["Ingrid Dickinson (CSET)"],
- "title": "Tesla sued after motorcyclist's death",
- "url": "https://www.advrider.com/tesla-sued-after-motorcyclists-death/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "tumblr",
- "name": "Tumblr"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "tumblr",
- "name": "Tumblr"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "tumblr-users",
- "name": "Tumblr users"
- },
- {
- "__typename": "Entity",
- "entity_id": "tumblr-content-creators",
- "name": "Tumblr content creators"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1753],
- "vector": [
- -0.032549403607845306, 0.07507501542568207, 0.022745855152606964, -0.12000106275081635,
- 0.06342997401952744, -0.02026059851050377, 0.007858147844672203, 0.07092081755399704,
- 0.024230163544416428, -0.15745967626571655, 0.005118098575621843, 0.046367283910512924,
- 0.0058161234483122826, -0.11040093749761581, 0.05369577556848526, -0.11899945884943008,
- -0.13737118244171143, -0.07283761352300644, 0.00500631146132946, -0.1493285894393921,
- -0.05797039344906807, 0.0002584437606856227, 0.054167136549949646, 0.11599909514188766,
- -0.03154195472598076, 0.0530637688934803, 0.09302657097578049, 0.11921031773090363,
- 0.0191174428910017, 0.09061684459447861, -0.016884606331586838, -0.10207188874483109,
- 0.14967845380306244, 0.008294952102005482, -0.004962888080626726, 0.07968663424253464,
- 0.009602018631994724, -0.012290257029235363, -0.04992121458053589, 0.008635045029222965,
- 0.058497291058301926, 0.2500079572200775, -0.0381767638027668, -0.021467722952365875,
- 0.04391682520508766, -0.03274361044168472, 0.0394146665930748, 0.05346430838108063,
- -0.01866559125483036, 0.052522704005241394, -0.04564117267727852, 0.038482215255498886,
- -0.049417320638895035, 0.020309315994381905, -0.13094842433929443, 0.03984243422746658,
- 0.03725196793675423, -0.001514195348136127, 0.007872633635997772, -0.047575902193784714,
- -0.06780581921339035, -0.2878932058811188, -0.01401801872998476, -0.03764082118868828,
- 0.06875231862068176, -0.10085950046777725, 0.006854507606476545, 0.039932992309331894,
- 0.020256128162145615, 0.08149131387472153, 0.06553033739328384, -0.052318375557661057,
- -0.03652912750840187, 0.04283978044986725, 0.027476510033011436, -0.06568652391433716,
- 0.029240326955914497, 0.15909044444561005, -0.0840710997581482, -0.018349912017583847,
- 0.14083610475063324, -0.07854250818490982, 0.4045947790145874, 0.013285597786307335,
- -0.05654577165842056, 0.023233838379383087, 0.06307131052017212, 0.02554478868842125,
- -0.0046745482832193375, 0.02166110835969448, -0.05792749300599098, 0.05662212148308754,
- -0.04662735015153885, -0.0035182442516088486, 0.052601467818021774, 0.01618458516895771,
- -0.056964024901390076, -0.033150918781757355, -0.012997484765946865,
- -0.0750717967748642, 0.007429615128785372, -0.020548846572637558, 0.07523663341999054,
- 0.1434755176305771, -0.04095013812184334, -0.032122012227773666, 0.13707338273525238,
- -0.043831516057252884, 0.04003525152802467, -0.07441161572933197, 0.03654007613658905,
- 0.023748265579342842, 0.09351915866136551, -0.0006616766331717372, 0.04198702797293663,
- -0.05408225581049919, -0.02457059733569622, 0.04044773057103157, 0.09288664907217026,
- 0.0619819276034832, 0.03503086417913437, 0.04597151279449463, 0.02275867387652397,
- -0.0634540244936943, -0.0031175604090094566, -0.07805746048688889, -0.07617388665676117,
- -0.0037538851611316204, -0.029193216934800148, 0.05146035552024841,
- -0.06530432403087616, -0.20033763349056244, 0.005565481260418892, 0.04660020023584366,
- -0.018712710589170456, 0.0025410933885723352, -0.00789911299943924,
- -0.057283442467451096, 0.007088202517479658, -0.026943882927298546,
- -0.012178832665085793, 0.050233978778123856, 0.016178304329514503, 0.08198019117116928,
- 0.10709299892187119, 0.049813903868198395, -0.0695485770702362, -0.024186700582504272,
- 0.002215518383309245, -0.08363315463066101, 0.12107685208320618, -0.13482269644737244,
- -0.01858767867088318, -0.020907526835799217, -0.04638475179672241, 0.7410846948623657,
- 0.09385721385478973, 0.2183951735496521, 0.015637684613466263, -0.025727862492203712,
- 0.21555861830711365, -0.015384713187813759, 0.0756174698472023, -0.11502359062433243,
- -0.1010618582367897, 0.021953031420707703, -0.10720070451498032, -0.09331966936588287,
- 0.01826378144323826, 0.050478968769311905, 0.09143988788127899, 0.08873697370290756,
- 0.0862036943435669, -0.006154438480734825, -0.17188073694705963, -0.05420776829123497,
- 0.07619783282279968, 0.005359910894185305, -0.17581887543201447, -0.022913817316293716,
- 0.04254613444209099, 0.12404514104127884, -0.1094970777630806, 0.021076638251543045,
- -0.08935252577066422, 0.062289759516716, -0.035268038511276245, 0.06510721892118454,
- -0.037100959569215775, 0.03806745633482933, 0.03851427510380745, 0.05663960054516792,
- 0.002364830346778035, -0.08591240644454956, -0.010089565999805927, 0.1456499546766281,
- -0.039100680500268936, -0.029860900714993477, 0.09257933497428894, -0.09538113325834274,
- 0.07114072144031525, 0.07100643962621689, 0.15171769261360168, -0.14964215457439423,
- -0.0072436025366187096, -0.03801765292882919, -0.044857073575258255,
- 0.041152436286211014, -0.020947763696312904, -0.09217889606952667, -0.05684158205986023,
- 0.1297871470451355, -0.0032832275610417128, 0.11301112174987793, 0.04140190780162811,
- -0.07326163351535797, 0.018623625859618187, 0.055182527750730515, 0.016864852979779243,
- -0.05324240401387215, 0.07982424646615982, 0.007610753644257784, -0.03230973705649376,
- -0.10385069251060486, 0.04992067068815231, 0.08392258733510971, 0.043604958802461624,
- -0.024715665727853775, 0.09278728812932968, 0.007670975755900145, -0.03607216104865074,
- 0.0028492212295532227, 0.03857268765568733, 0.03640037775039673, 0.10036201030015945,
- -0.06441556662321091, -0.05109117180109024, -0.0019139169016852975,
- -0.03546005114912987, 0.07855496555566788, -0.05810807645320892, 0.10303295403718948,
- 0.12360119074583054, 0.06406349688768387, 0.042285364121198654, -0.008740122430026531,
- 0.05273435264825821, 0.006234472617506981, 0.019790247082710266, 0.09735947847366333,
- -0.01131393387913704, -0.0823330283164978, -0.03035794198513031, 0.023557426407933235,
- 0.030481526628136635, -0.0018277083290740848, -0.07784907519817352,
- -0.051479190587997437, -0.06589477509260178, -0.05998499318957329, -0.11831063032150269,
- -0.06190754473209381, 0.04292278364300728, 0.03710858151316643, -0.05008848011493683,
- -0.14871205389499664, -0.08415395021438599, -0.010096169076859951, 0.08902809023857117,
- -0.02468779683113098, -0.03803914785385132, -0.1271241456270218, 0.038612186908721924,
- -0.051601529121398926, 0.057603638619184494, -0.020204968750476837, 0.02938012219965458,
- -0.013656389899551868, -0.08230314403772354, 0.0467948354780674, -0.020183827728033066,
- -0.01150497980415821, -0.060867488384246826, -0.10925920307636261, 0.002249357523396611,
- -0.014281265437602997, 0.03104155883193016, -0.03002539835870266, 0.014342719689011574,
- 0.05399231240153313, 0.08493338525295258, -0.0032117103692144156, -0.029037486761808395,
- 0.03933398425579071, -0.02957216091454029, -0.04372398927807808, 0.05917739495635033,
- -0.009462130255997181, 0.04352117329835892, -0.001925274613313377, -0.05516156926751137,
- 0.007440973538905382, 0.016411155462265015, -0.06914541870355606, 0.04290912672877312,
- -0.004179917275905609, 0.0336899533867836, -0.05105599761009216, -0.005322498269379139,
- 0.07386160641908646, -0.036383647471666336, -0.12592148780822754, -0.06875620782375336,
- 0.11603575944900513, 0.02222071774303913, -0.017600631341338158,
- -0.00010599492816254497, -0.09917236119508743, -0.003243320854380727,
- 0.007538544479757547, 0.013692425563931465, 0.027566421777009964, 0.047870151698589325,
- -0.018250714987516403, 0.03152729943394661, 0.07908659428358078, -0.022837089374661446,
- 0.057926472276449203, 0.08460025489330292, 0.4114755094051361, -0.20197203755378723,
- 0.07270363718271255, 0.10081448405981064, -0.01040808018296957, 0.011644390411674976,
- -0.07453637570142746, 0.089169941842556, 0.09050331264734268, 0.13670383393764496,
- 0.10467759519815445, -0.050193510949611664, 0.066035196185112, -0.05037112161517143,
- 0.09402693808078766, 0.01106446422636509, 0.02891138195991516, 0.03193837031722069,
- -0.0434754304587841, -0.05828193575143814, 0.015867887064814568, -0.04596130549907684,
- -0.013976468704640865, -0.012555432505905628, -0.030593492090702057,
- 0.051250506192445755, 0.0030514118261635303, 0.05465496703982353, -0.0336521714925766,
- 0.03844376280903816, 0.026403814554214478, 0.03369492292404175, 0.053224362432956696,
- 0.03292446956038475, -0.14629237353801727, 0.040985964238643646, -0.04346257075667381,
- -0.1270075887441635, 0.07390869408845901, 0.013929111883044243, 0.09169625490903854,
- 0.04153897985816002, -0.017431510612368584, 0.011406008154153824, 0.000811984296888113,
- -0.07316038757562637, 0.01161186583340168, 0.04814213886857033, 0.06318005919456482,
- 0.13155794143676758, 0.15750646591186523, -0.029259271919727325, 0.0029183777514845133,
- -0.06450997292995453, 0.08535342663526535, 0.11606474220752716, -0.0338083952665329,
- -0.026689928025007248, -0.011896458454430103, -0.04886336624622345,
- -0.048502903431653976, -0.04459236189723015, -0.08072399348020554, -0.03693626448512077,
- -0.06238522008061409, 0.10330566018819809, 0.04262451082468033, -0.053194306790828705,
- -0.20338492095470428, -0.011244130320847034, -0.0383768156170845,
- -0.0035037563648074865, 0.13520890474319458, -0.039433687925338745, 0.04483141005039215,
- 0.036829713732004166, -0.010947948321700096, -0.025847604498267174,
- -0.08924802392721176, 0.013768942095339298, -0.07412248104810715, 0.0797976404428482,
- 0.01740735024213791, 0.06015647202730179, -0.06606923788785934, 0.112796351313591,
- -0.10702972859144211, 0.0764341726899147, 0.01707392930984497, -0.003401896683499217,
- 0.027288848534226418, -0.07087519764900208, 0.006816815584897995, 0.04146197810769081,
- -0.07284669578075409, 0.006430043838918209, -0.009873798117041588, -0.06603879481554031,
- -0.061947159469127655, -0.06373149156570435, -0.06262774765491486, -0.09642582386732101,
- 0.02675313502550125, -0.10629259049892426, -0.004324557725340128, -0.028326906263828278,
- 0.004390623886138201, -0.011332938447594643, 0.050031282007694244, 0.01419469341635704,
- -0.2021772265434265, 0.012011482380330563, 0.025455227121710777, 0.047172583639621735,
- -0.055771637707948685, -0.058546025305986404, 0.049115538597106934, 0.0513174943625927,
- 0.02924235165119171, -0.007707235869020224, 0.003257593372836709, -0.08946458250284195,
- 0.05464321747422218, -0.15103884041309357, -0.38842499256134033, 0.004610750358551741,
- -0.03674773871898651, 0.041650548577308655, 0.014319580048322678, -0.06463855504989624,
- 0.054194919764995575, -0.0035714178811758757, -0.08625254780054092, 0.06939663738012314,
- -0.056572191417217255, 0.048355259001255035, -0.09635753929615021, -0.08831844478845596,
- -0.034506265074014664, -0.09797362238168716, -0.07712534070014954, 0.017765039578080177,
- -0.047055862843990326, -0.04758289083838463, -0.11878379434347153, 0.05071204528212547,
- -0.007460123859345913, 0.05707436427474022, 0.02690523862838745, 0.042167872190475464,
- -0.022882122546434402, -0.030182763934135437, 0.053511712700128555, 0.07757268100976944,
- 0.0536082424223423, -0.0846223309636116, -0.019788894802331924, 0.12843024730682373,
- 0.032545994967222214, 0.14936669170856476, 0.0020559653639793396, 0.01657193899154663,
- -0.06677553802728653, 0.08932052552700043, 0.05434031039476395, 0.1832941323518753,
- -0.0021378083620220423, -0.014333653263747692, 0.03317013010382652, 0.13163262605667114,
- 0.07623454183340073, 0.004673689138144255, -0.0191746074706316, 0.0075803715735673904,
- 0.03898557275533676, 0.016060391440987587, 0.1136195957660675, -0.06604088842868805,
- -0.029589921236038208, -0.03773237764835358, -0.049608878791332245,
- 0.017730001360177994, 0.005861843936145306, 0.23719795048236847, 0.02285308763384819,
- 0.01373638492077589, 0.026435842737555504, -0.11071484535932541, 0.0320933498442173,
- -0.1049274355173111, -0.09771910309791565, 0.008795424364507198, 0.013838144019246101,
- 0.02859446406364441, -0.07407356798648834, -0.10539841651916504, -0.028460580855607986,
- -0.035534489899873734, 0.0009742884431034327, 0.13174502551555634,
- -0.023310665041208267, 0.0054878778755664825, 0.0295905489474535, 0.15766043961048126,
- 0.0195435993373394, 0.010051126591861248, 0.05462532117962837, 0.09356062114238739,
- -0.0056013851426541805, -0.0024236394092440605, -0.01108437031507492,
- -0.09140622615814209, -0.06606023758649826, 0.15855160355567932, -0.04363437369465828,
- 0.13138045370578766, 0.04192769527435303, -0.03911009803414345, -0.03978465497493744,
- 0.029245754703879356, -0.07828317582607269, 0.007357391528785229, -0.41189679503440857,
- -0.002667758148163557, 0.10763128846883774, 0.06689414381980896, 0.04280509427189827,
- 0.09043081849813461, 0.005992813501507044, -0.05339159443974495, -0.08594074100255966,
- -0.10854259878396988, 0.20263372361660004, -0.007947230711579323, 0.03079981356859207,
- -0.08990637958049774, 0.011746670119464397, 0.09765211492776871, -0.061265796422958374,
- 0.057462047785520554, 0.04356098175048828, -0.21609824895858765, -0.029013823717832565,
- -0.020094964653253555, 0.15313686430454254, 0.008281797170639038, 0.036918606609106064,
- 0.08247722685337067, -0.04331455007195473, 0.012200936675071716, 0.038217026740312576,
- -0.03632663935422897, 0.03558515012264252, -0.03012351132929325, -0.016521286219358444,
- 0.13760845363140106, 0.101199209690094, 0.042354732751846313, -0.005828255787491798,
- 12.13201904296875, 0.08234531432390213, 0.07373770326375961, -0.09081079065799713,
- 0.012894460931420326, -0.060623012483119965, 0.018322063609957695, -0.14076252281665802,
- 0.05734141543507576, 0.14685499668121338, -0.037621237337589264, -0.02128824032843113,
- -0.022146273404359818, -0.08173384517431259, 0.029151935130357742, -0.06133077293634415,
- -0.0708262175321579, -0.06413669884204865, 0.02991817332804203, -0.05813596770167351,
- -0.031191211193799973, 0.06378652155399323, 0.07270843535661697, -0.011043120175600052,
- -0.03272619470953941, 0.03038654290139675, -0.021452855318784714, -0.04981101304292679,
- -0.014194952324032784, -0.008793679997324944, 0.01710517145693302, 0.07318167388439178,
- 0.048159290105104446, 0.017652403563261032, -0.018093537539243698, 0.0954524576663971,
- 0.09237813949584961, 0.03404639661312103, 0.024901485070586205, 0.02412499114871025,
- -0.030696626752614975, 0.027740616351366043, 0.03590964898467064, 0.03538459166884422,
- 0.10366157442331314, 0.014880715869367123, 0.04009469598531723, 0.14352059364318848,
- 0.0013623674167320132, 0.0757782980799675, 0.12928643822669983, 0.005621875636279583,
- 0.12328808009624481, 0.04038197547197342, -0.020670751109719276, 0.03729301691055298,
- -0.057990558445453644, -0.08834080398082733, 0.13151293992996216, 0.06854492425918579,
- -0.04844629019498825, 0.14275243878364563, 0.02604968100786209, 0.09204354137182236,
- 0.02126702107489109, 0.011799735017120838, 0.07138124108314514, 0.04523620381951332,
- -0.13935887813568115, -0.09263839572668076, 0.04851790890097618, -0.06424913555383682,
- -0.0948202833533287, 0.08152224868535995, 0.09831161051988602, -0.03640347346663475,
- 0.09950798004865646, -0.009809180162847042, 0.03079499676823616, -0.023576440289616585,
- 0.00010476994066266343, 0.04707629978656769, 0.011372875422239304,
- -0.017830736935138702, 0.06658473610877991, 0.014343339949846268, 0.07462142407894135,
- 0.13205677270889282, -0.012192866764962673, -0.07453896850347519, -0.05870179831981659,
- 0.1423686295747757, -0.005442758556455374, -0.06063120812177658, 0.031365927308797836,
- -0.08669594675302505, -0.0019578449428081512, -0.18633484840393066, 0.0952671617269516,
- 0.13401104509830475, -0.05706534907221794, -0.09726765751838684, -0.030082013458013535,
- 0.061950817704200745, 0.0005386163247749209, -0.02917475998401642, -0.11203187704086304,
- 0.06139226257801056, -0.008544575423002243, 0.059862274676561356, -0.03250295668840408,
- 0.07349693030118942, 0.12833672761917114, -0.0672425627708435, 0.042169686406850815,
- 0.09149562567472458, -0.02874676324427128, -0.034115519374608994, 0.07205455005168915,
- 0.05214642360806465, -0.0669916495680809, -0.0584833025932312, -0.042438384145498276,
- -0.04755491390824318, -0.02099253609776497, -0.027513280510902405, 0.012816890142858028,
- 0.010103778913617134, -0.009244808927178383, -0.02590935491025448, 0.0472414568066597,
- 0.09528153389692307, 0.1120377629995346, -0.022639676928520203, 0.08030859380960464,
- -0.07124768197536469, -0.021638108417391777, 0.07075633108615875,
- -0.0005026957951486111, 0.08729182183742523, -0.07878389209508896, -0.04293155297636986,
- -0.07471776753664017, -0.12963299453258514, 0.034669555723667145, 0.07979092746973038,
- 0.034958258271217346, -0.002405995037406683, -0.05418139696121216, -0.05183006823062897,
- -0.03316900134086609, 0.04872540384531021, 0.06586749851703644, 0.06435402482748032,
- 0.0439949631690979, -0.04894828796386719, -0.01882891170680523, 0.10999671369791031,
- -0.021514136344194412, -0.006410590372979641, 0.015869608148932457,
- -0.03655193746089935, 0.12349231541156769, 0.13005100190639496, 0.03351271525025368,
- 0.017268432304263115, 0.020734461024403572, 0.009666763246059418, 0.034284524619579315,
- -0.004556905943900347, 0.03334735333919525, -0.03231996297836304, -0.1053505390882492,
- -0.06795499473810196, 0.038181889802217484, 0.12662486732006073, 0.08491673320531845,
- -0.10385818779468536, -0.0004877232131548226, -0.0502118356525898
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 233,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Shannon Liao"],
- "epoch_date_downloaded": 1608076800,
- "epoch_date_modified": 1655078400,
- "epoch_date_submitted": 1654041600,
- "flag": null,
- "report_number": 1753,
- "source_domain": "theverge.com",
- "submitters": ["Ingrid Dickinson (CSET)"],
- "title": "Tumblr is already flagging innocent posts as porn",
- "url": "https://www.theverge.com/2018/12/3/18124461/tumblr-adult-content-porn-ban-flagging-errors-algorithm-fail"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "waze",
- "name": "Waze"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "waze",
- "name": "Waze"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "los-gatos-residents",
- "name": "Los Gatos residents"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1755, 1754],
- "vector": [
- -0.0924072116613388, 0.09989072382450104, 0.029015367850661278, -0.09832482784986496,
- 0.047296587377786636, -0.006154964677989483, -0.031017135828733444, 0.01092473790049553,
- 0.10615095496177673, -0.1094699427485466, -0.0038237255066633224, 0.05169212445616722,
- 0.02470831759274006, -0.013894908130168915, 0.014528851956129074, -0.11055779457092285,
- -0.12074533849954605, -0.03101838007569313, -0.007611060049384832, -0.07367675751447678,
- -0.040682241320610046, -0.004799606278538704, 0.02206840179860592, 0.07948768138885498,
- -0.04986466467380524, 0.03188472241163254, 0.06617861241102219, 0.13514436781406403,
- -0.056099072098731995, 0.0364120751619339, -0.020023036748170853, -0.07143064588308334,
- 0.13058564066886902, 0.026608897373080254, 0.0008637787541374564, 0.10577915608882904,
- -0.006242182571440935, -0.05704119801521301, 0.05893665924668312, 0.009480924345552921,
- 0.014167215675115585, 0.25457465648651123, -0.014171739108860493,
- -0.0028095338493585587, 0.05346040055155754, -0.03140421584248543, 0.04469434171915054,
- 0.07814142107963562, 0.04057862237095833, 0.020562758669257164, -0.06094967573881149,
- 0.12048105895519257, -0.059668295085430145, 0.025561412796378136, -0.12533293664455414,
- 0.06567450612783432, 0.02413795329630375, -0.008373519405722618, 0.07551386952400208,
- -0.06012486666440964, -0.03116847574710846, -0.26457303762435913, -0.06364303827285767,
- -0.043756380677223206, 0.0854634940624237, -0.05891682207584381, -0.04514109715819359,
- -0.04694643244147301, 0.0010707196779549122, 0.09301505982875824, 0.020925775170326233,
- -0.019477710127830505, -0.030460668727755547, 0.034340519458055496,
- -0.006385771092027426, -0.019422143697738647, -0.006764000281691551,
- 0.20445626974105835, -0.1092243418097496, 0.010666142217814922, 0.11840610206127167,
- -0.1178559735417366, 0.4302775263786316, -0.04421718418598175, 0.013020601123571396,
- -0.0429915115237236, 0.09369586408138275, 0.06210988759994507, 0.03867219388484955,
- 0.08916934579610825, -0.01753048598766327, 0.012267650105059147, -0.0290953628718853,
- 0.006858168635517359, 0.0584484301507473, 0.014940363354980946, -0.014113263227045536,
- 0.060580022633075714, -0.024268975481390953, -0.09489007294178009, 0.022447619587183,
- -0.024714229628443718, 0.06635622680187225, 0.06429194658994675, -0.008170207031071186,
- 0.032130561769008636, 0.09791888296604156, -0.06925629079341888, 0.02775575965642929,
- -0.03127501532435417, 0.035512253642082214, -0.03452108055353165, 0.025975985452532768,
- -0.020461123436689377, 0.03451891243457794, -0.015005424618721008, 0.018554668873548508,
- 0.02704097144305706, 0.09354375302791595, 0.014545881189405918, -0.023429512977600098,
- 0.10205807536840439, 0.10165977478027344, -0.06346395611763, -0.070180743932724,
- -0.044623393565416336, -0.06641718000173569, 0.003492052899673581,
- -0.048212166875600815, 0.03084668703377247, -0.06146952882409096, -0.19579802453517914,
- 0.025534147396683693, 0.1158832386136055, -0.006348969880491495, -0.032999470829963684,
- -0.031332679092884064, -0.0997992604970932, 0.052120719105005264, -0.031956303864717484,
- -0.03422702103853226, 0.07373101264238358, 0.04925021156668663, 0.040641285479068756,
- 0.11445903778076172, 0.056782301515340805, -0.03165155276656151, -0.02635209448635578,
- 0.004677888005971909, -0.065658800303936, 0.0983038991689682, -0.09804289042949677,
- -0.06163570284843445, 0.01376359537243843, -0.031611256301403046, 0.6625096797943115,
- 0.17062702775001526, 0.15466931462287903, 0.011149886064231396, -0.04852265864610672,
- 0.1772019863128662, 0.02764880284667015, 0.08249711990356445, -0.1171831339597702,
- -0.07933986186981201, 0.025621049106121063, -0.0788530558347702, -0.06179642677307129,
- -0.005542588420212269, -0.003095810767263174, 0.0788530707359314, 0.025213539600372314,
- 0.08485333621501923, -0.000992771703749895, -0.08698879182338715, 0.0022874907590448856,
- 0.07337687164545059, -0.0044987984001636505, -0.10464416444301605,
- -0.051690272986888885, 0.049020860344171524, 0.0621178112924099, -0.07562034577131271,
- -0.01774292252957821, -0.07195468246936798, 0.060589712113142014, -0.05069314315915108,
- 0.013928365893661976, -0.03366876766085625, 0.021614093333482742, 0.02205849438905716,
- 0.0632045716047287, 0.04139599949121475, -0.09889981150627136, -0.034854136407375336,
- 0.10056911408901215, -0.028530269861221313, -0.0301124919205904, 0.06766264140605927,
- -0.07151177525520325, 0.05268579721450806, 0.05819947272539139, 0.14124928414821625,
- -0.11659994721412659, -0.008231637068092823, -0.019282210618257523, 0.0221688412129879,
- 0.08263269066810608, -0.021083321422338486, -0.06771820038557053, -0.023588353767991066,
- 0.06026414781808853, 0.02234622649848461, 0.07934662699699402, 0.019053252413868904,
- -0.05952908843755722, 0.09175965189933777, 0.05201052501797676, 0.01611855812370777,
- -0.020940430462360382, 0.05899571627378464, 0.06938628107309341, 0.02464025467634201,
- 0.0282834991812706, 0.012066567316651344, 0.03001556359231472, 0.014268227852880955,
- -0.010606054216623306, 0.055099666118621826, 0.019318263977766037, -0.07811975479125977,
- 0.020218078047037125, 0.012859557755291462, -0.030843187123537064, 0.10976501554250717,
- -0.0751754641532898, -0.038320764899253845, -0.00848078541457653, -0.02071000076830387,
- 0.009766116738319397, -0.006292120553553104, 0.0814414769411087, 0.05841153860092163,
- 0.07727040350437164, 0.026083964854478836, 0.05738511681556702, 0.08924132585525513,
- 0.04446457326412201, 0.05982507765293121, 0.1021592766046524, -0.0683918446302414,
- -0.06216578185558319, -0.047529689967632294, -0.011697547510266304,
- -0.0030338638462126255, 0.057760559022426605, -0.06430316716432571,
- -0.04058630019426346, -0.07031477242708206, -0.020453428849577904, -0.0651051253080368,
- -0.027721527963876724, 0.035494498908519745, 0.029965803027153015,
- -0.030003663152456284, -0.0538012757897377, -0.062416575849056244, 0.010069182142615318,
- 0.09602165222167969, -0.020199168473482132, -0.014307500794529915, -0.09890110045671463,
- 0.029422540217638016, 0.01688528247177601, 0.05520216375589371, 0.0021159141324460506,
- 0.039260003715753555, 0.0071379560977220535, -0.08675365149974823, 0.008882852271199226,
- -0.02391577512025833, -0.00790143758058548, -0.09337271749973297, -0.04450652003288269,
- -0.06243745982646942, -0.04349818825721741, 0.03715379908680916, -0.02661515772342682,
- 0.023260142654180527, 0.012294143438339233, 0.03399240970611572, 0.029842905700206757,
- -0.0160501841455698, 0.058513931930065155, -0.027620214968919754, -0.046611934900283813,
- 0.09346826374530792, -0.05644448101520538, 0.03978034853935242, 0.00886606052517891,
- -0.06458282470703125, -0.03412100672721863, 0.04347365349531174, -0.03279022127389908,
- 0.012963678687810898, -0.028438076376914978, 0.01899413764476776, -0.0756022036075592,
- -0.001504759769886732, 0.044731102883815765, -0.07154349982738495,
- -0.040093518793582916, -0.07411044090986252, 0.12454831600189209, -0.021542970091104507,
- 0.053357549011707306, 0.016044167801737785, -0.058919526636600494, 0.05462668091058731,
- -0.012808476574718952, -0.020962495356798172, -0.006715990602970123,
- 0.046579599380493164, -0.03197693079710007, -0.011446892283856869, 0.10158434510231018,
- 0.006461856886744499, 0.019437288865447044, 0.04210199415683746, 0.44373059272766113,
- -0.14466412365436554, 0.07722225785255432, 0.07464202493429184, 0.038845423609018326,
- 0.04786084592342377, -0.016454923897981644, 0.0774950385093689, 0.09571531414985657,
- 0.11671282351016998, 0.09853456914424896, -0.03974074870347977, -0.016089055687189102,
- -0.08411392569541931, 0.14053335785865784, 0.009534870274364948, 0.007805276662111282,
- 0.023770498111844063, -0.0835479274392128, 0.0008633462712168694, 0.04359113797545433,
- -0.07318480312824249, 0.013775518164038658, 0.003172558033838868, -0.07027187943458557,
- 0.0211574025452137, -0.013956703245639801, 0.023901300504803658, -0.05704214796423912,
- 0.003794619347900152, 0.008974157273769379, 0.03878997266292572, 0.030000098049640656,
- 0.049350570887327194, -0.0937972366809845, 0.03722378611564636, -0.09920959174633026,
- -0.09759685397148132, 0.07899641990661621, -0.04269852489233017, 0.048310935497283936,
- 0.05886358022689819, -0.021053994074463844, 0.04381966590881348, -0.001845547929406166,
- -0.05042527616024017, 0.027055788785219193, 0.06441450119018555, 0.038035281002521515,
- 0.09990550577640533, 0.1514149159193039, -0.0652005523443222, -0.06227485090494156,
- -0.06567059457302094, 0.06985849887132645, 0.09632344543933868, -0.020211147144436836,
- 0.03389633446931839, 0.05276711657643318, -0.02657005935907364, 0.014106592163443565,
- -0.04428410530090332, -0.06203471124172211, -0.0033945604227483273,
- -0.04301593825221062, 0.10069826245307922, 0.018959684297442436, -0.021083014085888863,
- -0.19199302792549133, -0.015100669115781784, -0.023298747837543488,
- -0.000722840428352356, 0.1454525589942932, -0.03852396830916405, -0.002009632997214794,
- -0.005077028647065163, -0.030979659408330917, 0.014883453026413918,
- -0.07805180549621582, 0.010129770264029503, -0.018439188599586487, 0.01274103857576847,
- 0.05906982719898224, 0.043303702026605606, -0.030917618423700333, 0.035711031407117844,
- -0.11864957213401794, 0.05360379070043564, -0.006628857925534248, -0.060420744121074677,
- 0.023061107844114304, -0.01872877962887287, 0.04813668876886368, 0.026043418794870377,
- -0.04169275611639023, 0.04238861799240112, 0.004751041531562805, -0.0743011087179184,
- -0.08010296523571014, -0.03382657468318939, -0.06166156381368637, -0.08156978338956833,
- 0.056984372437000275, -0.12870581448078156, 0.011379123665392399, -0.007744970265775919,
- 0.004026926122605801, 0.01648399978876114, 0.006492688320577145, 0.09766434133052826,
- -0.12699271738529205, 0.04295175522565842, -0.00012629013508558273, 0.06592455506324768,
- -0.013027949258685112, -0.010548767633736134, 0.03281298652291298, 0.06405547261238098,
- 0.06272530555725098, 0.007402433082461357, 0.02745857648551464, -0.03985458239912987,
- 0.019459160044789314, -0.07848871499300003, -0.4400436580181122, 0.02820713445544243,
- 0.02294553816318512, 0.06987746059894562, 0.0067933592945337296, -0.07808293402194977,
- 0.05654342100024223, 0.03910581395030022, -0.07494048029184341, 0.08965960144996643,
- -0.045945726335048676, 0.021832609549164772, 0.004128994420170784, -0.0660862922668457,
- -0.02254621684551239, -0.029317371547222137, -0.05760069191455841, 0.08130556344985962,
- -0.016598917543888092, -0.05870308354496956, -0.10970061272382736,
- -0.012441282160580158, 0.009234786033630371, 0.0399276502430439, -0.024358555674552917,
- 0.04907406121492386, -0.05705433338880539, -0.0484442412853241, 0.05584591627120972,
- 0.08632626384496689, 0.0386534109711647, -0.07860326021909714, 0.02309342846274376,
- -0.0016601476818323135, -0.04023902490735054, 0.12991473078727722, 0.012698069214820862,
- 0.024645209312438965, -0.05324073135852814, 0.09429454803466797, 0.05150897055864334,
- 0.18716809153556824, -0.005654996261000633, 0.03889017924666405, 0.03342146798968315,
- 0.13611137866973877, 0.030512217432260513, 0.021034937351942062, -0.010763241909444332,
- 0.013286896049976349, 0.028592398390173912, 0.0011901737889274955, 0.09306110441684723,
- -0.0464533269405365, -0.029788292944431305, -0.08291888236999512, -0.014581502415239811,
- -0.0029192324727773666, 0.017243018373847008, 0.17366597056388855, 0.01490007620304823,
- 0.03463821858167648, 0.026242414489388466, -0.09151530265808105, -0.004158874042332172,
- -0.10788610577583313, -0.08901447802782059, -0.061337947845458984,
- -0.024803124368190765, 0.002897028811275959, -0.02639392949640751, -0.1315326988697052,
- 0.0029404135420918465, -0.031193023547530174, -0.004545995034277439,
- 0.06281238049268723, -0.027168242260813713, 0.044260505586862564, -0.005617690272629261,
- 0.11271275579929352, 0.032835159450769424, -0.009310310706496239, 0.06505893170833588,
- 0.10289157927036285, 0.04958852753043175, 0.014778215438127518, -0.0507197231054306,
- -0.10458312928676605, -0.014144781976938248, 0.09530645608901978, -0.03164803236722946,
- 0.11454644054174423, 0.017515406012535095, 0.026986204087734222, -0.05073065310716629,
- 0.035899773240089417, -0.03222005069255829, 0.04363956302404404, -0.4122970700263977,
- -0.015278555452823639, 0.1110871434211731, 0.018722131848335266, 0.024577360600233078,
- 0.11290991306304932, 0.025220664218068123, -0.03721270710229874, -0.016619116067886353,
- -0.07163539528846741, 0.1870245635509491, -0.017530493438243866, 0.024873293936252594,
- -0.09075118601322174, 0.042378537356853485, 0.07539772242307663, -0.03287510201334953,
- -0.03410107642412186, 0.05769561976194382, -0.2381085455417633, 0.0026420317590236664,
- -0.061133719980716705, 0.15887150168418884, 0.007077942602336407, 0.012956135906279087,
- 0.07798062264919281, -0.11132543534040451, 0.056828469038009644, 0.036644041538238525,
- -0.011515140533447266, 0.028333548456430435, 0.003533767769113183, -0.03730829060077667,
- 0.08452410995960236, 0.10909700393676758, 0.051084794104099274, -0.016507931053638458,
- 11.904308319091797, 0.08128945529460907, 0.0507550984621048, -0.1011885404586792,
- 0.0360935777425766, -0.056089408695697784, 0.030143296346068382, -0.06531938910484314,
- 0.04415050894021988, 0.11221317946910858, -0.008345348760485649, -0.05863495171070099,
- -0.04205886647105217, -0.10045324265956879, 0.0026222635060548782, -0.07904283702373505,
- -0.02891627512872219, -0.01058458723127842, 0.027982017025351524, -0.037868984043598175,
- 0.005626216065138578, 0.003821243066340685, 0.03858121484518051, 0.00843251682817936,
- -0.11114037036895752, 0.06548714637756348, 0.008405662141740322, -0.012882493436336517,
- -0.014426029287278652, 0.015957605093717575, -0.0458562970161438, 0.033027395606040955,
- 0.050565723329782486, -0.0017980127595365047, 0.027821648865938187, 0.00290752574801445,
- 0.05720995366573334, 0.0438336580991745, -0.025269143283367157, 0.09429405629634857,
- 0.05041313171386719, -0.02420555241405964, 0.04190875589847565, 0.05059643089771271,
- 0.06823616474866867, 0.01014674175530672, 0.05319516360759735, 0.14190562069416046,
- 0.06072407588362694, 0.04236967861652374, 0.07408149540424347, -0.049401625990867615,
- 0.1442493498325348, -0.0011708831880241632, -0.006821661256253719, 0.0670536532998085,
- -0.018337689340114594, -0.07360558211803436, 0.05438341200351715, 0.0013442616909742355,
- -0.03915594145655632, 0.06358982622623444, 0.030183151364326477, 0.10732254385948181,
- -0.03343453258275986, 0.09341533482074738, 0.06113375350832939, 0.0991310253739357,
- -0.12629112601280212, -0.048827651888132095, -0.0005312026478350163,
- -0.08942325413227081, -0.05834150314331055, 0.06523207575082779, 0.11155861616134644,
- -0.05028238892555237, 0.04452996701002121, -0.0016148299910128117, 0.013025663793087006,
- -0.02359672263264656, -0.023825203999876976, 0.05720560997724533, -0.04000440984964371,
- -0.007777635008096695, 0.08280538022518158, 0.0066895997151732445, 0.09970687329769135,
- 0.08495929837226868, -0.04237460717558861, -0.10029871761798859, -0.08789799362421036,
- 0.09361343830823898, -0.0623185858130455, -0.0435209646821022, 0.003577087540179491,
- -0.07893504202365875, 0.06355740129947662, -0.16962294280529022, 0.051853276789188385,
- 0.06927476823329926, -0.10302489995956421, -0.005832952912896872, -0.04187990352511406,
- 0.047959115356206894, 0.013048585504293442, 0.026834875345230103, -0.07018709182739258,
- 0.03477733954787254, -0.03408176451921463, 0.04667025804519653, -0.03894771263003349,
- 0.037341319024562836, 0.035494863986968994, -0.04971671849489212, 0.033362992107868195,
- 0.055548205971717834, -0.013814612291753292, -0.02884705178439617, 0.0780550092458725,
- 0.020189132541418076, -0.05618330091238022, -0.04265325516462326, -0.004653910640627146,
- -0.04034369811415672, -0.03695264458656311, -0.0593542754650116, 0.019892493262887,
- 0.005013890098780394, -0.0599733330309391, 0.004833465442061424, 0.03951439633965492,
- 0.021500054746866226, 0.10555732250213623, -0.007907521910965443, 0.0922183096408844,
- -0.06297647207975388, -0.03463944047689438, 0.05261649191379547, 0.01589939184486866,
- 0.05618903785943985, -0.012379864230751991, -0.039716266095638275,
- -0.041577886790037155, -0.0701633095741272, 0.012292571365833282, 0.0738876536488533,
- 0.02745087444782257, 0.01040768250823021, 0.02983195148408413, -0.09019360691308975,
- -0.015028148889541626, 0.10759732127189636, 0.022159988060593605, 0.013687496073544025,
- 0.017063308507204056, -0.08879224956035614, -0.03166615217924118, 0.13720917701721191,
- -0.02758493460714817, -0.021079786121845245, -0.019189678132534027,
- 0.014736244454979897, 0.08965770155191422, 0.0642370879650116, 0.06612939387559891,
- 0.04037319868803024, 0.008826802484691143, 0.0030877143144607544, 0.05645975470542908,
- -0.020462334156036377, -0.03595087304711342, -0.03048083931207657, -0.14784443378448486,
- -0.08270826935768127, 0.02156801149249077, 0.10272897779941559, 0.011153806000947952,
- -0.07365059107542038, -0.05474042892456055, -0.049534641206264496
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 234,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Allison Levitsky"],
- "epoch_date_downloaded": 1655078400,
- "epoch_date_modified": 1655078400,
- "epoch_date_submitted": 1655078400,
- "flag": null,
- "report_number": 1755,
- "source_domain": "bizjournals.com",
- "submitters": ["Khoa Lam"],
- "title": "Los Gatos resident: Waze a 'death sentence' to neighbors in the event of a wildfire",
- "url": "https://www.bizjournals.com/sanjose/news/2019/09/08/los-gatos-waze-wildfire-danger.html"
- },
- {
- "__typename": "Report",
- "authors": ["Los Gatos Historical Society"],
- "epoch_date_downloaded": 1608076800,
- "epoch_date_modified": 1655078400,
- "epoch_date_submitted": 1654041600,
- "flag": null,
- "report_number": 1754,
- "source_domain": "prnewswire.com",
- "submitters": ["Ingrid Dickinson (CSET)"],
- "title": "Google's Waze App Blocks Wildfire Escape Route for Residents Living in the Los Gatos Hills and Historic Neighborhoods",
- "url": "https://www.prnewswire.com/news-releases/googles-waze-app-blocks-wildfire-escape-route-for-residents-living-in-the-los-gatos-hills-and-historic-neighborhoods-300913095.html"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "ping-an",
- "name": "Ping An"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "ping-an",
- "name": "Ping An"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "ping-an-customers",
- "name": "Ping An customers"
- },
- {
- "__typename": "Entity",
- "entity_id": "chinese-minority-groups",
- "name": "Chinese minority groups"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1756],
- "vector": [
- -0.06652190536260605, 0.05787042900919914, 0.023983629420399666, -0.12534283101558685,
- 0.07690581679344177, -0.04929712042212486, 0.030564235523343086, 0.07254178076982498,
- 0.13207495212554932, -0.1346912384033203, -0.06206917762756348, 0.04120742529630661,
- 0.010834147222340107, -0.043730225414037704, 0.021741095930337906, -0.11516028642654419,
- -0.0576123483479023, -0.03370190039277077, 0.015907930210232735, -0.1516326367855072,
- -0.08616278320550919, 0.010659300722181797, 0.009624548256397247, 0.11985299736261368,
- -0.024792995303869247, 0.04051091894507408, 0.13948552310466766, 0.012168602086603642,
- -0.0632099136710167, 0.04322423040866852, -0.031493645161390305, -0.0918465107679367,
- 0.1024375855922699, -0.003935063723474741, -0.03448343649506569, 0.1042075827717781,
- -0.02806202322244644, -0.04939301684498787, 0.01412275806069374, -0.04074482619762421,
- 0.1085965484380722, 0.28857359290122986, 0.02075275033712387, -0.029448818415403366,
- 0.046574145555496216, -0.04311083257198334, 0.010342948138713837, 0.008610719814896584,
- 0.009679391980171204, 0.022732621058821678, 0.010197077877819538, 0.04618709906935692,
- -0.034210268408060074, 0.049215737730264664, -0.06337565928697586, 0.01796659640967846,
- 0.060716137290000916, -0.0173850916326046, 0.03320310264825821, -0.09734251350164413,
- -0.023374684154987335, -0.17944107949733734, -0.008196755312383175, -0.0958205834031105,
- 0.05287846177816391, -0.06769952178001404, -0.0345066599547863, -0.015703152865171432,
- 0.016435645520687103, 0.06068725511431694, 0.07122772932052612, 0.024480385705828667,
- -0.06149528920650482, 0.05633503571152687, -0.033357176929712296, -0.05379163473844528,
- -0.07882426679134369, 0.2403799295425415, -0.053488004952669144, 0.043228644877672195,
- 0.08774447441101074, -0.1061515137553215, 0.5104452967643738, 0.009301171638071537,
- -0.0364808514714241, 0.04948481172323227, 0.0995858758687973, 0.08562571555376053,
- 0.06276916712522507, 0.021237479522824287, -0.0441368967294693, 0.0526757538318634,
- -0.06219074875116348, -0.04584085941314697, 0.07730809599161148, 0.028282910585403442,
- -0.017254572361707687, -0.03760252892971039, -0.024600829929113388, -0.0716303288936615,
- -0.04342867434024811, -0.024803893640637398, 0.08550930768251419, 0.1169305220246315,
- -0.033336490392684937, -0.0005484832799993455, 0.04974210634827614, -0.0692429170012474,
- 0.08113273978233337, -0.05239254981279373, 0.0389823317527771, -0.02247614599764347,
- 0.04780688136816025, -0.01815626583993435, 0.006826366763561964, -0.046897392719984055,
- 0.0009837736142799258, 0.07307957857847214, 0.11228125542402267, 0.05867687612771988,
- -0.04151024669408798, 0.018065350130200386, 0.04799072816967964, -0.124456025660038,
- -0.10344573110342026, -0.0343424454331398, -0.03281288966536522, 0.002884409623220563,
- -0.04700050503015518, 0.04741339758038521, -0.0674060732126236, -0.1754661649465561,
- 0.05717986077070236, 0.06903312355279922, -0.03331751376390457, -0.07409373670816422,
- 0.006699416320770979, -0.081522136926651, 0.0033086102921515703, -0.026585262268781662,
- -0.04401417821645737, 0.05177478864789009, 0.025783315300941467,
- -0.00024570993264205754, 0.17217431962490082, -0.00020409350690897554,
- -0.0575893335044384, -0.018058355897665024, -0.03066137433052063, -0.042201969772577286,
- 0.16736984252929688, -0.1682153344154358, -0.05744863301515579, 0.008564191870391369,
- -0.011021162383258343, 0.6851130723953247, 0.10895444452762604, 0.22507596015930176,
- -0.02233925461769104, 0.0006470722728408873, 0.14603638648986816, 0.027441926300525665,
- 0.12187068909406662, -0.08203128725290298, -0.048485059291124344, 0.047064024955034256,
- -0.11688478291034698, -0.05104255676269531, 0.0625196173787117, -0.016528114676475525,
- 0.12221706658601761, 0.039515260607004166, 0.07005193084478378, -0.024538565427064896,
- -0.09070013463497162, -0.01971190981566906, 0.05608662962913513, 0.0675087571144104,
- -0.15161800384521484, -0.024299276992678642, 0.044525232166051865, 0.11810177564620972,
- -0.12290771305561066, 0.00410247640684247, -0.08808574825525284, 0.0676577016711235,
- -0.02961501106619835, 0.08984643965959549, -0.01349602546542883, 0.08150125294923782,
- 0.06466782093048096, 0.05484108254313469, -0.0012348381569609046, -0.16496893763542175,
- 0.02404033951461315, 0.09466149657964706, -0.038923073559999466, -0.030701523646712303,
- 0.055751342326402664, -0.1143646240234375, 0.014734867960214615, -0.03575466573238373,
- 0.20080751180648804, -0.16365183889865875, -0.04609649255871773, 0.031827162951231,
- -0.008478677831590176, 0.04321427643299103, 0.04837608337402344, -0.10846812278032303,
- -0.05521610751748085, 0.06701668351888657, 0.07098427414894104, 0.06095109507441521,
- 0.0698421522974968, -0.04328768700361252, 0.03454107418656349, 0.12276777625083923,
- 0.002612735377624631, 0.02496238797903061, 0.049980465322732925, 0.07366293668746948,
- -0.08939439803361893, 0.005560203455388546, 0.04814526066184044, 0.061396438628435135,
- 0.016320519149303436, -0.018059518188238144, 0.041930727660655975, -0.04010941460728645,
- -0.10796450823545456, 0.045493584126234055, 0.03608735650777817, -0.012664959765970707,
- 0.1332005113363266, -0.05618424341082573, -0.013118172064423561, -0.08328838646411896,
- -0.028046995401382446, 0.023117616772651672, -0.002913096686825156, 0.04400094971060753,
- 0.11065708845853806, 0.09643106162548065, 0.04183389991521835, 0.030603377148509026,
- 0.045825276523828506, 0.017941946163773537, 0.010197751224040985, 0.05909404531121254,
- 0.0009432815131731331, -0.03754556179046631, -0.017817214131355286, -0.0112979207187891,
- 0.031077155843377113, 0.017238961532711983, -0.13385628163814545, -0.04693915694952011,
- -0.12836463749408722, -0.05586940050125122, -0.1193164512515068, -0.05122461915016174,
- -0.013810818083584309, 0.04634816199541092, -0.08511681854724884, -0.11077301949262619,
- -0.05912382900714874, 0.05115431547164917, 0.12184923142194748, -0.024889100342988968,
- -0.025053199380636215, -0.12622854113578796, 0.03492341935634613, -0.04277507960796356,
- 0.057894010096788406, 0.003175197634845972, -0.04030921682715416, -0.007662009447813034,
- -0.03065074235200882, 0.023296432569622993, -0.009410806931555271, -0.03417728841304779,
- -0.04644784331321716, -0.06415457278490067, -0.035528745502233505, 0.006392843555659056,
- -0.022682150825858116, -0.058093465864658356, -0.0016546392580494285,
- 0.01383829303085804, 0.06731308996677399, -0.02992611564695835, -0.08758536726236343,
- 0.08145315945148468, -0.005433244630694389, 0.002217426896095276, 0.08883537352085114,
- -0.0872422382235527, 0.018598178401589394, -0.01966422237455845, -0.0867939442396164,
- -0.05363069474697113, 0.08509411662817001, -0.026403265073895454, 0.08504143357276917,
- 0.0220115315169096, 0.0031497960444539785, -0.05988318473100662, 0.03760220855474472,
- 0.059594374150037766, -0.02532719448208809, -0.09970057755708694, -0.03483656421303749,
- 0.11428117007017136, 0.016489166766405106, 0.02099617011845112, 0.01620335876941681,
- -0.04486069455742836, 0.034209176898002625, -0.013558147475123405, 0.043172821402549744,
- -0.001221770653501153, 0.05849524214863777, -0.030165543779730797, 0.057519786059856415,
- 0.08909148722887039, -0.0728633776307106, 0.012816149741411209, 0.0783306285738945,
- 0.45472651720046997, -0.1770821511745453, 0.13121922314167023, 0.160902202129364,
- -0.01784767583012581, 0.02611299231648445, -0.049740295857191086, 0.08691977709531784,
- 0.06459882110357285, 0.1064300462603569, 0.15262889862060547, -0.06941983103752136,
- -0.004308792762458324, -0.11016608029603958, 0.16948406398296356, -0.003093685256317258,
- 0.05736595019698143, -0.025376558303833008, -0.15177790820598602, -0.05133810266852379,
- 0.020597903057932854, -0.037520911544561386, 0.025117646902799606, -0.06920665502548218,
- -0.06544432789087296, 0.04384010285139084, -0.003249863628298044, 0.05402161553502083,
- -0.03877175971865654, 0.038973476737737656, -0.010403049178421497, 0.07812856882810593,
- 0.057756636291742325, 0.008892160840332508, -0.12549783289432526, 0.033100757747888565,
- -0.1654900461435318, -0.11044079065322876, 0.08700212091207504, 0.0030543869361281395,
- 0.0526328943669796, 0.01979123242199421, -0.09310607612133026, 0.04699919372797012,
- -0.008930807933211327, -0.040052179247140884, 0.06333527714014053, 0.03936126083135605,
- 0.031152117997407913, 0.06556329876184464, 0.17464779317378998, -0.03773350268602371,
- -0.03745157644152641, -0.07104552537202835, 0.06435365229845047, 0.1417403519153595,
- -0.03313279151916504, 0.04188980162143707, 0.06319748610258102, -0.00998033955693245,
- -0.011492351070046425, -0.12420228123664856, -0.011191942729055882,
- -0.04166281595826149, -0.07072808593511581, 0.10786658525466919, 0.0054927426390349865,
- -0.03438078612089157, -0.03629777207970619, -0.041874829679727554, -0.0331604890525341,
- 0.010567373596131802, 0.13944043219089508, -0.08915282785892487, 0.11203436553478241,
- -0.003364086616784334, -0.03530382364988327, 0.023520346730947495, -0.07155495882034302,
- -0.029318878427147865, -0.06515742093324661, 0.03759146109223366, 0.09048320353031158,
- 0.05408099666237831, -0.013642567209899426, 0.10996665805578232, -0.08201563358306885,
- 0.06704297661781311, 0.01178585272282362, -0.11616799235343933, 0.04506717994809151,
- -0.012091049924492836, 0.023020224645733833, 0.042997535318136215, -0.09672116488218307,
- -0.03565351665019989, -0.059545330703258514, -0.03288513422012329, -0.09837796539068222,
- -0.015893500298261642, -0.06440044194459915, -0.08272524923086166, 0.04118599370121956,
- -0.09553258866071701, 0.019795319065451622, -0.03990250453352928, -0.021928006783127785,
- 0.002765771234408021, 0.021540310233831406, -0.008061805739998817, -0.1525522768497467,
- 0.048326537013053894, -0.02798807993531227, 0.047963276505470276, -0.062034524977207184,
- -0.0892828032374382, 0.044388074427843094, 0.11072928458452225, 0.036078255623579025,
- 0.014482076279819012, 0.04290531203150749, -0.052081070840358734, 0.0648038312792778,
- -0.18137969076633453, -0.3931839168071747, 0.0389973446726799, 0.028356676921248436,
- 0.045471180230379105, -0.01383998990058899, -0.11054195463657379, 0.09048844873905182,
- 0.046788644045591354, -0.1051073744893074, 0.1316029578447342, -0.07128293812274933,
- 0.022048411890864372, -0.013156590051949024, -0.07977412641048431, -0.07459670305252075,
- -0.05282040685415268, -0.008142766542732716, 0.04142281413078308, -0.02587093971669674,
- -0.07224124670028687, -0.17495788633823395, 0.020515739917755127, -0.018410705029964447,
- 0.035784535109996796, 0.04556449502706528, 0.03799599036574364, -0.05318925157189369,
- -0.0011298764729872346, 0.026543771848082542, 0.07081477344036102, 0.02812071703374386,
- -0.061308376491069794, -0.01018789503723383, 0.013181638903915882, -0.03428202494978905,
- 0.19280758500099182, 0.0034247173462063074, 0.05042998120188713, -0.15608374774456024,
- 0.09933017939329147, 0.0725369080901146, 0.18215249478816986, -0.01794189028441906,
- 0.00625891936942935, 0.019486377015709877, 0.17801770567893982, 0.09093514084815979,
- 0.03138315677642822, -0.009511648677289486, -0.0009157773456536233,
- 0.018838103860616684, -0.025689955800771713, 0.10532858967781067, -0.10647521167993546,
- -0.02182980254292488, -0.10642698407173157, -0.011400586925446987,
- -0.019524522125720978, -0.07246886193752289, 0.2167561650276184, 0.05147141218185425,
- 0.02127339504659176, 0.03404320776462555, -0.0767386183142662, 0.0017934349598363042,
- -0.11121581494808197, -0.13392655551433563, -0.013860450126230717,
- -0.011296005919575691, 0.02872212789952755, -0.06392082571983337, -0.12783099710941315,
- -0.07437343150377274, 0.03238919749855995, -0.007543283514678478, 0.14192532002925873,
- -0.028505293652415276, 0.04160511493682861, -0.023822994902729988, 0.11002246290445328,
- 0.03695406764745712, -0.017222821712493896, 0.016244662925601006, 0.06838902086019516,
- 0.00394842866808176, 0.056507039815187454, -0.013554058037698269, -0.09604164958000183,
- -0.004442953038960695, 0.14544707536697388, -0.026889152824878693, 0.11897358298301697,
- 0.040481436997652054, 0.005232973024249077, -0.1005997583270073, 0.017894197255373,
- -0.002314312383532524, -0.0009072382817976177, -0.4066723585128784,
- -0.007874015718698502, 0.13111692667007446, 0.0064588068053126335, 0.012765848077833652,
- 0.13358883559703827, 0.046857621520757675, -0.051796406507492065, -0.07040753215551376,
- -0.10034851729869843, 0.09641009569168091, 0.020383847877383232, 0.054372746497392654,
- -0.12063649296760559, 0.020099179819226265, 0.052397456020116806, 0.013502812013030052,
- 0.013026699423789978, 0.07637182623147964, -0.26923519372940063, 0.03227091580629349,
- 0.013836905360221863, 0.15728060901165009, 0.01402412448078394, 0.037159569561481476,
- 0.08158954232931137, -0.0180770643055439, 0.01713498868048191, 0.054795682430267334,
- 0.03321006894111633, 0.0977175384759903, -0.08261306583881378, -0.00916074588894844,
- 0.12270542979240417, 0.13379821181297302, 0.09627734869718552, 0.011670970357954502,
- 12.190494537353516, 0.02775631658732891, 0.03950829058885574, -0.11798595637083054,
- 0.018991459161043167, -0.043398838490247726, 0.07607557624578476, -0.11078017950057983,
- 0.09173119068145752, 0.12560082972049713, -0.019004659727215767, -0.07593349367380142,
- 0.018843695521354675, -0.0837540552020073, 0.013065585866570473, -0.09800583124160767,
- -0.02010875940322876, -0.014665042981505394, 0.053516000509262085,
- -0.023079482838511467, -0.09226888418197632, -0.017489725723862648, 0.07605575770139694,
- 0.01370568573474884, -0.0340900719165802, 0.055667344480752945, 0.04378252476453781,
- -0.01359724160283804, -0.0022032856941223145, 0.0013980674557387829,
- -0.017802346497774124, -0.002694765804335475, 0.05681705102324486,
- -0.011435471475124359, 0.05086279660463333, 0.07813005149364471, 0.09039437770843506,
- 0.0791354849934578, 0.008050499483942986, 0.046084627509117126, 0.01885957457125187,
- 0.009426339529454708, 0.04575427249073982, 0.012573624029755592, 0.0727357491850853,
- 0.0644506886601448, 0.01856542006134987, 0.10134981572628021, 0.016453564167022705,
- 0.057346440851688385, 0.12842100858688354, 0.042858898639678955, 0.09597573429346085,
- 0.03311542794108391, 0.0072051892057061195, 0.05704593285918236, -0.02392590045928955,
- -0.12562334537506104, 0.08268649876117706, 0.040497008711099625, -0.06962098181247711,
- 0.1555706113576889, 0.005285125225782394, 0.12066636234521866, 0.05426584184169769,
- 0.07173538208007812, 0.0676087737083435, 0.026741646230220795, -0.11026188731193542,
- -0.14488011598587036, -0.0020479371305555105, -0.09977397322654724,
- -0.07794398069381714, 0.135398268699646, 0.13295988738536835, -0.03489849343895912,
- 0.07394088804721832, -0.06133023276925087, 0.08349208533763885, -0.017574474215507507,
- -0.06462390720844269, 0.11370540410280228, -0.010692507028579712, 0.022995028644800186,
- 0.040918417274951935, 0.031763311475515366, 0.03984704613685608, 0.08456762135028839,
- -0.01692824438214302, -0.07101815193891525, -0.10405337065458298, 0.07497904449701309,
- -0.025753861293196678, -0.09734227508306503, 0.017241783440113068, -0.05534190312027931,
- 0.026132650673389435, -0.1287316083908081, 0.07772403210401535, 0.09753574430942535,
- -0.08983460068702698, -0.015416010282933712, -0.021218109875917435,
- 0.031501609832048416, 0.06228071451187134, 0.07435529679059982, -0.040797967463731766,
- -0.024006934836506844, 0.0342453196644783, 0.02840055339038372, -0.05179990828037262,
- 0.07256647199392319, 0.089913509786129, -0.05131096392869949, 0.005125084891915321,
- 0.07428470253944397, -0.02233988046646118, 0.006717685144394636, 0.07358511537313461,
- 0.07906702905893326, -0.07757091522216797, -0.01794223114848137, -0.042687781155109406,
- -0.05757543817162514, -0.005574239883571863, -0.04667799547314644,
- -0.0028903617057949305, 0.0070390356704592705, -0.07243109494447708,
- -0.04776335507631302, 0.013950408436357975, 0.0578465536236763, 0.15148602426052094,
- -0.08881550282239914, 0.018675971776247025, -0.0895613431930542, -0.07165154069662094,
- 0.040573351085186005, 0.008867932483553886, 0.05085371434688568, -0.08473365008831024,
- -0.058386802673339844, -0.07021168619394302, -0.1139168068766594, 0.009232940152287483,
- 0.18301405012607574, 0.058313749730587006, 0.07424928992986679, 0.006185062695294619,
- -0.05503590404987335, -0.06736484915018082, 0.09462263435125351, 0.0968729630112648,
- 0.06118149310350418, 0.025420119985938072, -0.04231037199497223, -0.005071916617453098,
- 0.0928073450922966, -0.057860080152750015, -0.015168723650276661, -0.03757935389876366,
- -0.03996555879712105, 0.1367529034614563, 0.12412422150373459, 0.06981058418750763,
- 0.06160619854927063, 0.07629377394914627, -0.050415270030498505, 0.03866322338581085,
- 0.024293743073940277, 0.056559234857559204, -0.02203606814146042, -0.07759376615285873,
- -0.09208758920431137, 0.021869700402021408, 0.07241278141736984, 0.04163322225213051,
- -0.07787555456161499, -0.04676860198378563, -0.08229123055934906
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 235,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Cathy O'Neil"],
- "epoch_date_downloaded": 1604620800,
- "epoch_date_modified": 1655078400,
- "epoch_date_submitted": 1654041600,
- "flag": null,
- "report_number": 1756,
- "source_domain": "bloomberg.com",
- "submitters": ["Roman Lutz", " CSET annotators"],
- "title": "China Knows How to Take Away Your Health Insurance",
- "url": "https://www.bloomberg.com/opinion/articles/2019-06-14/china-knows-how-to-take-away-your-health-insurance"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "scammers",
- "name": "scammers"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "unknown",
- "name": "Unknown"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "email-users",
- "name": "email users"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1757],
- "vector": [
- -0.05577882379293442, 0.12156575918197632, 0.0050235469825565815, -0.11209080368280411,
- 0.07620810717344284, -0.09664293378591537, 0.012816653586924076, 0.10071168094873428,
- 0.09803305566310883, -0.15085987746715546, -0.05537034943699837, 0.04964166879653931,
- 0.016892528161406517, -0.039442483335733414, 0.01701289787888527, -0.0956837385892868,
- -0.10425403714179993, -0.025907276198267937, -0.0007127237622626126,
- -0.13034923374652863, -0.08604588359594345, 0.04062078148126602, 0.04160330817103386,
- 0.10843877494335175, -0.04613719880580902, 0.05531839653849602, 0.12473476678133011,
- 0.10520774126052856, -0.09270329773426056, 0.05078103020787239, 0.035764504224061966,
- -0.06318569928407669, 0.12611007690429688, 0.02743869461119175, 0.002820052672177553,
- 0.16468545794487, 0.00963691994547844, 0.009632892906665802, -0.019442090764641762,
- -0.0565870925784111, 0.06743127852678299, 0.22313466668128967, -0.008711765520274639,
- 0.024401605129241943, 0.047716833651065826, -0.025762945413589478,
- -0.005564400926232338, 0.07174335420131683, 0.02948697842657566, -0.005295861046761274,
- 0.004128522705286741, 0.06326473504304886, -0.09702891111373901, 0.021082064136862755,
- -0.1242327019572258, 0.08497685194015503, 0.007763482164591551, -0.014467046596109867,
- 0.031716566532850266, -0.0429256334900856, -0.07257302850484848, -0.19750256836414337,
- -0.08588045090436935, -0.09024033695459366, 0.12206954509019852, -0.08975132554769516,
- 0.007483521476387978, 0.0046194507740437984, 0.0202644020318985, 0.06105807423591614,
- 0.0167054682970047, -0.03973820433020592, -0.024118762463331223, 0.029034769162535667,
- 0.03584645316004753, -0.028730550780892372, 0.023969484493136406, 0.24079295992851257,
- -0.06849692761898041, 0.05862773209810257, 0.14002084732055664, -0.16773542761802673,
- 0.42574796080589294, -0.0005120858550071716, -0.0622079074382782, 0.06476397067308426,
- 0.11133279651403427, 0.04600419104099274, 0.08203927427530289, 0.045680444687604904,
- -0.050724852830171585, 0.0566495805978775, -0.04141157865524292, -0.053886204957962036,
- 0.07422254979610443, -0.0019427119987085462, 0.007726876996457577,
- -0.019527804106473923, -0.039277613162994385, -0.05610331520438194,
- 0.020369436591863632, -0.025278989225625992, 0.11871154606342316, 0.09183833003044128,
- -0.022667821496725082, 0.0019633944611996412, 0.05177932605147362, -0.07138007879257202,
- 0.06389929354190826, -0.012930361554026604, 0.02164234034717083, 0.010730764828622341,
- 0.04382098838686943, 0.0181618370115757, 0.04829389229416847, -0.017895905300974846,
- 0.017214355990290642, 0.02924106828868389, 0.06311101466417313, 0.0034108927939087152,
- -0.018910955637693405, 0.046218086034059525, 0.050605498254299164, -0.07926967740058899,
- -0.08605791628360748, -0.029538625851273537, -0.05281717702746391,
- -0.033725399523973465, 0.019195232540369034, 0.06105777993798256, -0.06689976900815964,
- -0.23310419917106628, -0.005238880403339863, 0.05016426742076874, -0.006615214049816132,
- -0.029494617134332657, 0.03837411850690842, -0.07926451414823532, 0.06385961920022964,
- -0.008903942070901394, 0.001654988736845553, 0.08225726336240768, 0.02722964994609356,
- 0.06439326703548431, 0.08415642380714417, 0.11003883928060532, -0.019065868109464645,
- -0.033160001039505005, 0.03796514868736267, -0.05330265685915947, 0.09179563075304031,
- -0.14451423287391663, -0.018975412473082542, -0.0048021432012319565,
- -0.021875139325857162, 0.6676530241966248, 0.12294366210699081, 0.1479061245918274,
- 0.019364167004823685, -0.06685692071914673, 0.2019009292125702, -0.031075209379196167,
- 0.09208977967500687, -0.07051222026348114, -0.04968089982867241, -0.01564859412610531,
- -0.11254511028528214, -0.03689216449856758, 0.034149300307035446, 0.0235478226095438,
- 0.09706594794988632, 0.036004047840833664, 0.08363740891218185, 0.026196960359811783,
- -0.10878757387399673, 0.016786808148026466, 0.04772873967885971, -0.003280829405412078,
- -0.12299279123544693, -0.013897877186536789, 0.03298921510577202, 0.061266086995601654,
- -0.0812743604183197, 0.03855932503938675, -0.06945028901100159, 0.07351472973823547,
- -0.028102798387408257, 0.011892838403582573, 0.011062810197472572, 0.06628893315792084,
- 0.05691923946142197, 0.06083736941218376, -0.03617027774453163, -0.14207898080348969,
- -0.010560525581240654, 0.09633567184209824, -0.053236011415719986, -0.10044548660516739,
- 0.11678879708051682, -0.09346818178892136, 0.06788302212953568, 0.0561862587928772,
- 0.10857081413269043, -0.11910046637058258, -0.017034862190485, -0.012994294054806232,
- -0.030551748350262642, 0.056375544518232346, 0.018849948421120644, -0.06491019576787949,
- -0.0853947252035141, 0.06957967579364777, 0.07055433094501495, 0.00611165352165699,
- 0.06695980578660965, -0.07574532926082611, 0.020373957231640816, 0.04747248813509941,
- 0.006806918419897556, -0.028911378234624863, 0.05674338713288307, 0.04924197122454643,
- 0.010345159098505974, -0.0468318946659565, 0.03610643744468689, 0.030773669481277466,
- -0.013196081854403019, -0.005109068471938372, 0.05951538681983948, -0.03161049261689186,
- -0.07152795046567917, 0.02146231010556221, 0.006524622440338135, -0.045922014862298965,
- 0.08913582563400269, -0.07541246712207794, -0.028510216623544693, -0.05116981640458107,
- 0.05418587103486061, 0.028968509286642075, 0.014152886345982552, 0.09026440978050232,
- 0.16999304294586182, 0.05571100860834122, 0.055038996040821075, -0.004806298762559891,
- 0.06339916586875916, 0.09639210999011993, 0.014033027924597263, 0.07718847692012787,
- -0.010095746256411076, -0.13350480794906616, -0.04654255136847496,
- 0.0038985840510576963, 0.016727570444345474, 0.013666806742548943, -0.09964676201343536,
- -0.0567786768078804, -0.04060967639088631, -0.07509808242321014, -0.07905958592891693,
- -0.058973994106054306, -0.02173183672130108, 0.04459802433848381, -0.09213526546955109,
- -0.05911235883831978, -0.08595611900091171, 0.03747702017426491, 0.09036476165056229,
- 0.04556739330291748, -0.0237565990537405, -0.1327766329050064, 0.008663742803037167,
- -0.046674489974975586, 0.07417335361242294, -0.023666512221097946, 0.054690003395080566,
- -0.005454977508634329, -0.11540363729000092, 0.023251377046108246, 0.006578091066330671,
- -0.015098663978278637, -0.0678628534078598, -0.07808267325162888, 0.0017281090840697289,
- -0.053179919719696045, -0.03405796363949776, -0.03801244497299194, 0.018009699881076813,
- 0.021632974967360497, 0.059867992997169495, -0.05395245552062988, -0.0271744504570961,
- 0.06459009647369385, -0.03827688470482826, 0.05779026076197624, 0.13837827742099762,
- -0.05601726472377777, -0.017748309299349785, 0.0019344143802300096,
- -0.007310321554541588, -0.036750540137290955, -0.010301623493432999,
- -0.05464329198002815, 0.05868975445628166, -0.01044063363224268, 0.018365778028964996,
- -0.07548025250434875, -0.06643233448266983, 0.06084463745355606, -0.0874604806303978,
- -0.059265680611133575, -0.10170818865299225, 0.13453945517539978, -0.05244648456573486,
- -0.005620652809739113, -0.002437012502923608, -0.06340169161558151, 0.0662570670247078,
- 0.015032569877803326, 0.01651247963309288, 0.0288102850317955, 0.056496892124414444,
- -0.025353405624628067, 0.034803420305252075, 0.08678847551345825, -0.014227527193725109,
- 0.006548779550939798, 0.08312184363603592, 0.37773481011390686, -0.12525658309459686,
- 0.0817570686340332, 0.08243226259946823, 0.0424630306661129, 0.005934488028287888,
- -0.033450692892074585, 0.04993389546871185, 0.0664084404706955, 0.12391133606433868,
- 0.07558772712945938, -0.033132314682006836, 0.012765767052769661, -0.08594284951686859,
- 0.10743129253387451, 0.00031385154579766095, 0.048817217350006104, -0.03431070223450661,
- -0.037799473851919174, -0.0025410803500562906, 0.0534471720457077, -0.08183800429105759,
- -0.0001790782844182104, 0.0008906209259293973, -0.05896361917257309,
- 0.01014530286192894, 0.013385863974690437, 0.05993259698152542, 0.014418002218008041,
- 0.04631423205137253, -0.08282430469989777, 0.028767839074134827, 0.08112707734107971,
- 0.026151467114686966, -0.1207219585776329, -0.005302072037011385, -0.06221223250031471,
- -0.09895579516887665, 0.07754948735237122, -0.022148074582219124, 0.07494661211967468,
- 0.042805351316928864, -0.025356438010931015, 0.04911044239997864, -0.028313132002949715,
- -0.04410570114850998, 0.04635104164481163, 0.0332963690161705, 0.016115527600049973,
- 0.12386095523834229, 0.13505250215530396, -0.034237705171108246, -0.017751775681972504,
- -0.0761612132191658, 0.056361086666584015, 0.16409938037395477, -0.027282489463686943,
- 0.03498149290680885, 0.04792656749486923, 0.0024427284952253103,
- -0.00009228676208294928, -0.059153445065021515, -0.07015103101730347,
- -0.018881332129240036, -0.056057095527648926, 0.11111395061016083,
- -0.018132135272026062, 0.01502296980470419, -0.1462090164422989, -0.0058747329749166965,
- -0.05111021175980568, 0.026226593181490898, 0.10291028022766113, -0.052651360630989075,
- 0.052363958209753036, 0.005182124674320221, 0.00005639747541863471,
- 0.027223505079746246, -0.08179554343223572, -0.018975118175148964, -0.04424141347408295,
- 0.02202732115983963, 0.05754851922392845, 0.05478333681821823, -0.027251729741692543,
- 0.09538570791482925, -0.1229996606707573, 0.036533430218696594, 0.06457038223743439,
- -0.03329373896121979, 0.03073219023644924, -0.023190367966890335, 0.04294905811548233,
- 0.029276374727487564, -0.049253303557634354, 0.002945664804428816, -0.05419968441128731,
- -0.08664904534816742, -0.08245556801557541, -0.06911500543355942, -0.026663588359951973,
- -0.059305816888809204, 0.01663842238485813, -0.08803416788578033, 0.013654150068759918,
- -0.03592250496149063, 0.028977658599615097, -0.022917835041880608, 0.04320352151989937,
- -0.010824089869856834, -0.11825655400753021, 0.010173268616199493, -0.03405076637864113,
- 0.03540666401386261, -0.08681570738554001, -0.09190934151411057, 0.019651520997285843,
- 0.03006051853299141, 0.0028227700386196375, -0.06506931036710739, 0.042440641671419144,
- -0.05745749548077583, 0.07407209277153015, -0.1362297534942627, -0.42865505814552307,
- 0.03433425724506378, 0.02047957479953766, 0.06427446752786636, 0.00036618905141949654,
- -0.06158636882901192, 0.1064208596944809, -0.00942917913198471, -0.011897928081452847,
- 0.10778437554836273, -0.05054401606321335, 0.015826670452952385, -0.019431129097938538,
- -0.056711483746767044, 0.002486719284206629, -0.028060926124453545,
- -0.08719898760318756, 0.05582196265459061, -0.03785642236471176, -0.0760793685913086,
- -0.14124464988708496, 0.06089041382074356, 0.029878191649913788, -0.03713059052824974,
- 0.026881733909249306, 0.030218221247196198, -0.04160267859697342, -0.024417709559202194,
- 0.0818452388048172, 0.039993930608034134, 0.018716054037213326, -0.06068515405058861,
- 0.055030208081007004, 0.07567954063415527, -0.003937247209250927, 0.15352894365787506,
- 0.012260530143976212, 0.015567891299724579, -0.10663193464279175, 0.09164085984230042,
- 0.09636325389146805, 0.18678723275661469, -0.024258946999907494, 0.039324816316366196,
- -0.01673957332968712, 0.08022826910018921, 0.09172632545232773, -0.007903151214122772,
- -0.050429634749889374, 0.006562394555658102, 0.012441320344805717, 0.01062041986733675,
- 0.11444339901208878, -0.09373300522565842, -0.011206780560314655, -0.023596057668328285,
- -0.02379572205245495, -0.031377676874399185, -0.010031781159341335, 0.20880824327468872,
- -0.024510683491826057, -0.009910454973578453, 0.05223089084029198, -0.05709901079535484,
- 0.04281071946024895, -0.0963733121752739, -0.09145557135343552, 0.014438296668231487,
- 0.04331490024924278, 0.027296509593725204, -0.05729663744568825, -0.1401994824409485,
- -0.057402316480875015, -0.0444408617913723, -0.04014655947685242, 0.0682324543595314,
- -0.02961876057088375, 0.06526079773902893, -0.07303278893232346, 0.1404087394475937,
- 0.058133892714977264, 0.021807195618748665, 0.06976022571325302, 0.06939621269702911,
- 0.022059990093111992, 0.04217388853430748, 0.02403121069073677, -0.054137133061885834,
- -0.0010391644900664687, 0.1896272748708725, 0.002483743242919445, 0.14228826761245728,
- 0.05771561339497566, -0.06385274231433868, -0.08955054730176926, 0.032429229468107224,
- -0.014210537075996399, 0.01430613175034523, -0.46564486622810364, -0.0176063422113657,
- 0.1035579964518547, -0.010695991106331348, 0.03907164931297302, 0.11471248418092728,
- 0.06442681699991226, -0.04049208387732506, -0.04816450551152229, -0.07477705925703049,
- 0.17131713032722473, -0.009313702583312988, 0.03839346393942833, -0.12780581414699554,
- 0.024053363129496574, 0.08265842497348785, -0.02227676659822464, -0.0003025998012162745,
- 0.06938113272190094, -0.20905649662017822, -0.029263516888022423, -0.03995319828391075,
- 0.09226477891206741, 0.07445701211690903, 0.04037304222583771, 0.06790697574615479,
- -0.05228636413812637, -0.004587136209011078, 0.021650303155183792,
- -0.021060848608613014, 0.0629144236445427, 0.009095309302210808, -0.005329309031367302,
- 0.09841407835483551, 0.161240354180336, 0.044377975165843964, -0.040691062808036804,
- 11.925249099731445, 0.09467794746160507, 0.0757516473531723, -0.07582319527864456,
- 0.01599155180156231, -0.02972562611103058, 0.05604778230190277, -0.1720222532749176,
- 0.002550790784880519, 0.05897911265492439, -0.04705089330673218, -0.04983542859554291,
- -0.08486803621053696, -0.10504850745201111, 0.0036317219492048025,
- -0.050216734409332275, -0.06546593457460403, -0.06179077923297882, 0.007245761342346668,
- -0.04500189796090126, -0.041327983140945435, 0.005952096078544855, 0.03386195749044418,
- -0.015300460159778595, -0.08451886475086212, 0.04471956565976143, -0.00987705122679472,
- -0.04541642963886261, 0.00839949119836092, 0.04779437929391861, 0.011144725605845451,
- 0.06978195905685425, 0.047865625470876694, -0.012944253161549568, 0.038903892040252686,
- 0.13168199360370636, 0.06156674399971962, 0.030341556295752525, -0.0002674295101314783,
- 0.04795960336923599, 0.020548216998577118, -0.0012203652877360582, 0.059233058243989944,
- 0.08246214687824249, 0.03350084275007248, 0.04357387498021126, 0.01125726755708456,
- 0.1254749894142151, 0.034947168081998825, 0.0743008628487587, 0.09245125204324722,
- -0.006358702667057514, 0.06598594784736633, 0.015036768279969692, 0.01134556531906128,
- 0.05779503285884857, -0.03954263776540756, -0.11714893579483032, 0.06838388741016388,
- 0.0022411677055060863, -0.033275898545980453, 0.1350545883178711, 0.04513091221451759,
- 0.06185055151581764, -0.03055150993168354, 0.011416698805987835, 0.07263966649770737,
- 0.07780613750219345, -0.11054223775863647, -0.10265810042619705, 0.07106395065784454,
- -0.05055787041783333, -0.038891687989234924, 0.065824493765831, 0.07376188784837723,
- -0.02669179067015648, 0.0577690489590168, -0.022145923227071762, 0.0473395474255085,
- -0.012053432874381542, -0.020085738971829414, 0.067682184278965, -0.03893837332725525,
- 0.02932908944785595, 0.03715251758694649, -0.005497081205248833, 0.0962376520037651,
- 0.05900973454117775, 0.00773044815286994, -0.09019669890403748, -0.09082543104887009,
- 0.09471756964921951, 0.015877410769462585, -0.054352883249521255, -0.006815559696406126,
- -0.09754364937543869, 0.008929072879254818, -0.1653916984796524, 0.11616107821464539,
- 0.06020108982920647, -0.09371386468410492, -0.050797443836927414, -0.04912508279085159,
- 0.07754188030958176, 0.018407464027404785, 0.004009258467704058, -0.04051936790347099,
- 0.061439476907253265, 0.02938179299235344, 0.06913013011217117, -0.025140928104519844,
- 0.08025094866752625, 0.08601672947406769, -0.02148304134607315, -0.0035134092904627323,
- 0.0724560096859932, -0.03949248790740967, -0.01848297007381916, 0.05621398985385895,
- 0.03500397875905037, -0.11446122080087662, -0.010724201798439026, -0.023143472149968147,
- -0.03516578674316406, -0.020075762644410133, -0.05286389961838722,
- -0.011392057873308659, -0.005343707278370857, -0.06328058987855911,
- -0.013972494751214981, 0.0465935654938221, 0.04737095907330513, 0.09611931443214417,
- 0.019133521243929863, 0.02507610246539116, -0.09334118664264679, -0.057397786527872086,
- 0.07484670728445053, 0.04163629189133644, 0.028181198984384537, -0.0045880721881985664,
- -0.0490049347281456, -0.03492653742432594, -0.12327016144990921, -0.026840241625905037,
- 0.08118832111358643, 0.018317101523280144, 0.0644514337182045, 0.05275633558630943,
- -0.06736675649881363, -0.04445675387978554, 0.05286206677556038, 0.035449545830488205,
- 0.04677347466349602, 0.025311313569545746, -0.02539379522204399, -0.05550200864672661,
- 0.11214548349380493, -0.01737177185714245, -0.01776241883635521, 0.009998612105846405,
- -0.05228511616587639, 0.12266401946544647, 0.04140925407409668, 0.003933163825422525,
- 0.05412891134619713, 0.07036451995372772, 0.0269601009786129, 0.005087331868708134,
- 0.008461255580186844, -0.039049871265888214, -0.019313933327794075,
- 0.008857659064233303, -0.061012331396341324, -0.032447293400764465, 0.07936197519302368,
- 0.10577888041734695, -0.11643152683973312, 0.0185476653277874, -0.07003539055585861
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 236,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Ben Dickson"],
- "epoch_date_downloaded": 1654387200,
- "epoch_date_modified": 1655078400,
- "epoch_date_submitted": 1654387200,
- "flag": null,
- "report_number": 1757,
- "source_domain": "thenextweb.com",
- "submitters": ["Daniel Atherton (BNH.ai)"],
- "title": "Scammers used AI-generated faces to pose as a Boston law firm",
- "url": "https://thenextweb.com/news/scammers-used-ai-generated-faces-to-pose-as-a-boston-law-firm"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "oregon-department-of-human-services",
- "name": "Oregon Department of Human Services"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "oregon-department-of-human-services",
- "name": "Oregon Department of Human Services"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "families-of-minority-groups",
- "name": "families of minority groups"
- },
- {
- "__typename": "Entity",
- "entity_id": "children-of-minority-groups",
- "name": "children of minority groups"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1762],
- "vector": [
- -0.04780564829707146, 0.09277915954589844, 0.019940145313739777, -0.06576444208621979,
- 0.11176283657550812, -0.019195426255464554, 0.0034849776420742273, 0.08255039155483246,
- 0.08629025518894196, -0.11656972020864487, -0.003082332666963339, 0.03327280655503273,
- 0.04118378087878227, -0.03996170312166214, 0.02325836382806301, -0.07873889058828354,
- -0.11302541941404343, -0.11008784174919128, 0.03272780030965805, -0.11365368962287903,
- -0.05465996265411377, -0.052583351731300354, -0.023740481585264206, 0.09345142543315887,
- -0.040923915803432465, 0.0556735098361969, 0.06683875620365143, 0.15348407626152039,
- 0.0328926257789135, -0.005506080109626055, -0.04797154664993286, -0.08187516778707504,
- 0.12845653295516968, -0.0021557887084782124, -0.04091052711009979, 0.07181397825479507,
- 0.03244840353727341, -0.04502597823739052, -0.049729734659194946, 0.003500702790915966,
- 0.0038465328980237246, 0.246474027633667, 0.01747860014438629, 0.009478786960244179,
- 0.026684463024139404, 0.017704956233501434, -0.00033697765320539474,
- 0.08912031352519989, -0.00398849556222558, 0.03279024735093117, 0.0015734020853415132,
- 0.08305559307336807, -0.02143285609781742, -0.002407720312476158, -0.05983441323041916,
- 0.05038665607571602, 0.01726079173386097, 0.05735199898481369, 0.05601862072944641,
- -0.05540979281067848, -0.017928943037986755, -0.21364857256412506, -0.0395178385078907,
- -0.07556871324777603, 0.05890035256743431, -0.02244519628584385, -0.03925236314535141,
- -0.028503788635134697, 0.02205464616417885, 0.04916255176067352, 0.05420731380581856,
- -0.01720524951815605, -0.009868070483207703, 0.026224002242088318,
- -0.028388498350977898, -0.01777959056198597, 0.03236342594027519, 0.16962820291519165,
- -0.12738581001758575, 0.026792701333761215, 0.0862012729048729, -0.06270628422498703,
- 0.3464680016040802, 0.023749815300107002, 0.01261972077190876, -0.02427893504500389,
- 0.06566686183214188, 0.047285329550504684, 0.024092163890600204, 0.05187082663178444,
- -0.025613104924559593, 0.06804323196411133, -0.06465861946344376, 0.053060997277498245,
- 0.08046189695596695, 0.009541061706840992, -0.004266554955393076, -0.034446731209754944,
- -0.004809193778783083, -0.06761787086725235, -0.022181116044521332,
- -0.0027518810238689184, 0.1120113655924797, 0.043914780020713806, -0.07366419583559036,
- 0.03626517206430435, 0.08558522164821625, 0.0017214918043464422, 0.08308552950620651,
- -0.07280877232551575, 0.04533045366406441, 0.01594146527349949, 0.03282653167843819,
- 0.024491386488080025, 0.029841691255569458, -0.03663308545947075, 0.006148747634142637,
- 0.045472800731658936, 0.05635029450058937, 0.000482293515233323, 0.03254120424389839,
- 0.07109218090772629, 0.0827891081571579, -0.00927061028778553, -0.02946143038570881,
- -0.012214531190693378, -0.04338575899600983, 0.0005688969395123422,
- -0.06431657820940018, 0.07405292987823486, -0.057440828531980515, -0.14323632419109344,
- -0.007546130567789078, 0.08392620086669922, 0.00544383330270648, -0.04267949238419533,
- -0.015731502324342728, -0.025821909308433533, 0.056288477033376694,
- -0.029025504365563393, -0.0025105716194957495, 0.04245578870177269,
- 0.017979873344302177, 0.07096447050571442, 0.12647828459739685, 0.030249228700995445,
- -0.06474930047988892, -0.039284124970436096, -0.023105895146727562,
- -0.005150570534169674, 0.12192454934120178, -0.12080908566713333, -0.04201103001832962,
- 0.009284346364438534, -0.0478784441947937, 0.6553733348846436, 0.12202168256044388,
- 0.1166117861866951, 0.011407614685595036, -0.06448773294687271, 0.1268482804298401,
- 0.01327633485198021, -0.0018723286921158433, -0.054537221789360046,
- -0.03953593596816063, 0.021491415798664093, -0.04726163297891617, -0.016675438731908798,
- 0.061635881662368774, 0.05154147744178772, 0.1268017292022705, -0.04539203643798828,
- 0.08009547740221024, 0.0029528578743338585, -0.10299783945083618, -0.02871069498360157,
- 0.04822526499629021, 0.0016716428799554706, -0.1618400514125824, -0.017895760014653206,
- 0.07670168578624725, 0.07738902419805527, -0.10782766342163086, 0.022121669724583626,
- -0.0751519501209259, 0.048816319555044174, -0.032550401985645294, -0.012044798582792282,
- -0.0204048790037632, 0.01575048826634884, 0.007168449927121401, 0.022204672917723656,
- 0.026069968938827515, -0.10532748699188232, -0.018993103876709938, 0.06662509590387344,
- 0.0040083942003548145, -0.011244378052651882, 0.029516303911805153,
- -0.024029599502682686, 0.06024937331676483, -0.02857811003923416, 0.1583869904279709,
- -0.10628357529640198, -0.0164504274725914, -0.021157359704375267, 0.02367161586880684,
- 0.05482685938477516, 0.005747067742049694, -0.029536504298448563, -0.03292741999030113,
- 0.08497587591409683, 0.003200264647603035, 0.09637460112571716, 0.002236422384157777,
- -0.05917349457740784, 0.029966918751597404, 0.03794078901410103, -0.0219362024217844,
- -0.05164332315325737, 0.034115541726350784, 0.05708777904510498, -0.030117671936750412,
- 0.009910433553159237, 0.05105910450220108, 0.07113128900527954, 0.04889422655105591,
- -0.02240609936416149, 0.03795473277568817, -0.011717624962329865, -0.04719649627804756,
- 0.035236310213804245, 0.008660689927637577, 0.005771544761955738, 0.0867508202791214,
- -0.02079887129366398, -0.03697234019637108, -0.03993973135948181, -0.025864921510219574,
- -0.004341715946793556, -0.010247163474559784, 0.07285726070404053, 0.07171081006526947,
- 0.08739760518074036, 0.022289203479886055, 0.04723137617111206, 0.029319506138563156,
- -0.024303847923874855, 0.06478852033615112, 0.08040700107812881, -0.03575477376580238,
- -0.022305237129330635, -0.0033910060301423073, -0.0034947888925671577,
- 0.03158057853579521, 0.01260610856115818, -0.04313324764370918, -0.009041114710271358,
- -0.04992528259754181, -0.03227932006120682, -0.030896883457899094, -0.12030740827322006,
- 0.07983272522687912, 0.03148292005062103, -0.016076643019914627, -0.14202360808849335,
- -0.04691588133573532, 0.034380581229925156, 0.06808774918317795, -0.03463069349527359,
- -0.021317698061466217, -0.11496484279632568, 0.01845278963446617, 0.009668274782598019,
- 0.0687277540564537, 0.0027697994373738766, 0.039791665971279144, 0.0370771624147892,
- -0.10754278302192688, 0.052497923374176025, -0.06955037266016006, 0.00517799099907279,
- -0.0979369729757309, -0.059494733810424805, -0.1028730496764183, 0.04619980230927467,
- 0.038779258728027344, -0.03862244263291359, 0.021835409104824066, 0.02616649866104126,
- 0.04462050274014473, -0.012164323590695858, -0.01904609240591526, 0.08786964416503906,
- -0.05369117483496666, -0.005020497366786003, 0.06796818226575851, -0.04888331890106201,
- 0.043018728494644165, 0.005383710376918316, -0.08132977038621902, -0.017328504472970963,
- -0.03999251127243042, -0.048818353563547134, 0.04451669380068779, -0.010692508891224861,
- -0.003010398708283901, -0.0740460678935051, -0.01155384536832571, 0.05357784777879715,
- -0.07668077945709229, -0.0836605504155159, -0.1178876981139183, 0.09291059523820877,
- -0.01802869699895382, -0.013183522038161755, -0.0076359352096915245,
- -0.06921172142028809, 0.06890058517456055, 0.019184280186891556, -0.02727883867919445,
- 0.03052317164838314, 0.0006384533480741084, 0.014620696194469929, -0.010828681290149689,
- 0.04792029783129692, -0.05876221880316734, 0.008289753459393978, 0.05686827003955841,
- 0.4447426497936249, -0.11083373427391052, 0.08658529818058014, 0.0643884465098381,
- 0.10507935285568237, 0.01597769558429718, -0.02237636223435402, 0.0832434669137001,
- 0.07103504985570908, 0.14318576455116272, 0.02806139551103115, -0.04369831085205078,
- -0.05648672208189964, -0.09015738219022751, 0.09454481303691864, 0.028985220938920975,
- 0.03277553990483284, -0.01605077274143696, -0.10218942910432816, 0.01965191215276718,
- -0.005127545911818743, -0.04984419792890549, 0.0010464953957125545,
- -0.004780825227499008, -0.04216918349266052, -0.005383660085499287, 0.06125425547361374,
- -0.00975426658987999, -0.03797971457242966, 0.02970261499285698, -0.01636827364563942,
- 0.03314469754695892, 0.029776491224765778, 0.05094578117132187, -0.11186973005533218,
- 0.07552029937505722, -0.08909175544977188, -0.05158970132470131, 0.08036938309669495,
- 0.012188262306153774, 0.05162613093852997, 0.062033604830503464, -0.005800527986139059,
- 0.05273629352450371, -0.016774073243141174, -0.0567488931119442, 0.017289482057094574,
- 0.05327639356255531, 0.05579899996519089, 0.05810557305812836, 0.1976913958787918,
- -0.04246056452393532, -0.050097133964300156, -0.07774493098258972, 0.05286664515733719,
- 0.08484198898077011, 0.0415622740983963, -0.014373707585036755, 0.026560503989458084,
- -0.0607488788664341, 0.009772725403308868, -0.011342467740178108, -0.13742481172084808,
- -0.010704527609050274, -0.05742095038294792, 0.06848742067813873, 0.03538800776004791,
- -0.03872617334127426, -0.2096375674009323, -0.02418653480708599, -0.04508226364850998,
- 0.024381479248404503, 0.13234224915504456, -0.0317569337785244, 0.04997406154870987,
- -0.002757782582193613, -0.018006203696131706, -0.03225181624293327, -0.0823679193854332,
- 0.031529687345027924, -0.0020481308456510305, 0.03347914665937424, 0.03675033897161484,
- 0.04994635283946991, -0.07138194143772125, 0.10122835636138916, -0.07955893874168396,
- 0.024066288024187088, 0.011122388765215874, -0.02619241736829281, 0.02100570872426033,
- -0.003275080118328333, 0.017880907282233238, 0.0011300136102363467,
- -0.02005336433649063, -0.022584684193134308, -0.0077584790997207165,
- -0.04337277635931969, -0.08332148939371109, -0.08073579519987106, -0.01474969182163477,
- -0.05601377785205841, 0.030421199277043343, -0.12955671548843384, -0.04440809041261673,
- 0.0007912269793450832, 0.004605172201991081, -0.04476761072874069, 0.010901357978582382,
- 0.020587818697094917, -0.12386446446180344, 0.003906989935785532, -0.029006823897361755,
- 0.1107255294919014, 0.029939480125904083, -0.05057442560791969, 0.030905842781066895,
- 0.125477597117424, 0.08366934955120087, -0.04197553172707558, -0.04748741164803505,
- -0.02810615859925747, 0.07473678886890411, -0.13660673797130585, -0.46093493700027466,
- 0.014050525613129139, 0.004408212844282389, 0.06490769982337952, 0.04191363602876663,
- -0.03581172972917557, 0.03682168200612068, 0.00004513987005339004, -0.0411241352558136,
- 0.05313412845134735, -0.04161540046334267, 0.02991725318133831, 0.036134615540504456,
- -0.02335141785442829, -0.036013323813676834, -0.04135209321975708,
- -0.030083322897553444, 0.0660371333360672, -0.033263374119997025, -0.09100005030632019,
- -0.06892334669828415, 0.007632080931216478, 0.020812053233385086, 0.033555034548044205,
- -0.012364370748400688, -0.000941967882681638, -0.06659102439880371,
- -0.04138784483075142, 0.06599269062280655, 0.047508347779512405, 0.02811398357152939,
- -0.049142081290483475, 0.006108732428401709, 0.02486242540180683, -0.03811947628855705,
- 0.0828101634979248, 0.03831680491566658, 0.029135921970009804, 0.0005486344452947378,
- 0.06972035020589828, 0.04023882746696472, 0.18971508741378784, 0.04489250108599663,
- 0.011839856393635273, -0.010818427428603172, 0.1139848530292511, 0.02285195142030716,
- 0.03247951343655586, -0.027471162378787994, -0.031977057456970215, 0.021661074832081795,
- -0.013988007791340351, 0.08182677626609802, -0.05257384106516838, -0.005152570083737373,
- -0.025849144905805588, 0.017845558002591133, -0.002338919322937727,
- 0.018287992104887962, 0.18240509927272797, -0.003522076876834035, 0.016888849437236786,
- 0.01639668643474579, -0.059206847101449966, 0.009425347670912743, -0.061950165778398514,
- -0.12737658619880676, -0.016674058511853218, 0.006106645334511995, 0.006861480418592691,
- -0.05563155934214592, -0.1074565201997757, -0.014088871888816357, -0.013249939307570457,
- 0.018358439207077026, 0.11410799622535706, -0.0457298569381237, 0.021850349381566048,
- -0.05407162755727768, 0.11934317648410797, 0.008429057896137238, 0.04137864708900452,
- 0.08673173189163208, 0.09348181635141373, 0.023387834429740906, 0.004193327855318785,
- -0.04639522358775139, -0.06831207126379013, -0.06620170176029205, 0.10235755145549774,
- -0.052723146975040436, 0.113226018846035, 0.027466220781207085, -0.042829521000385284,
- -0.04980836063623428, 0.020214682444930077, 0.023428380489349365, 0.0038316284772008657,
- -0.42699921131134033, -0.05392168089747429, 0.09019426256418228, 0.05894472450017929,
- -0.0010372854303568602, 0.05887678638100624, -0.031008929014205933, -0.0808667317032814,
- 0.038004763424396515, -0.09121128171682358, 0.1619601994752884, 0.022453047335147858,
- 0.08073663711547852, -0.13849034905433655, 0.02268098294734955, 0.09608164429664612,
- -0.04928530007600784, -0.029698021709918976, 0.06863612681627274, -0.247348353266716,
- -0.00390796922147274, -0.03433435037732124, 0.08514335751533508, -0.011995265260338783,
- 0.03742025047540665, 0.054944537580013275, -0.06084347143769264, 0.05225484445691109,
- 0.03604580834507942, -0.04980458691716194, 0.06020237132906914, -0.01971409097313881,
- -0.03891574591398239, 0.08834094554185867, 0.051871296018362045, 0.07089968770742416,
- -0.017186591401696205, 11.769266128540039, 0.03641819953918457, 0.07697784900665283,
- -0.06595776230096817, -0.0535045824944973, -0.03989425301551819, -0.03424445912241936,
- -0.05459919199347496, 0.10978875309228897, 0.138983815908432, -0.04294425994157791,
- -0.03662515804171562, -0.06232181936502457, -0.08302187919616699, 0.0011920672841370106,
- -0.021844182163476944, -0.11821573972702026, -0.06730339676141739, 0.039671607315540314,
- -0.03102647326886654, -0.004990859422832727, 0.08973871916532516, 0.05351949483156204,
- 0.04083814099431038, -0.06204758957028389, 0.027894705533981323, 0.006113340146839619,
- 0.009430128149688244, -0.017864523455500603, 0.01216050609946251, 0.019511427730321884,
- 0.02434193342924118, 0.0395321249961853, 0.0015025963075459003, 0.008338332176208496,
- 0.048430025577545166, 0.0638451874256134, 0.014098857529461384, 0.04196983948349953,
- 0.10805928707122803, 0.02290363423526287, 0.041354767978191376, 0.019149702042341232,
- 0.045845597982406616, 0.03197712451219559, 0.0893513485789299, 0.07567990571260452,
- 0.12814734876155853, 0.05492505803704262, 0.06307847052812576, 0.11778651922941208,
- -0.02386167086660862, 0.11341056227684021, -0.015406560152769089, -0.011155127547681332,
- 0.04968973249197006, 0.023065319284796715, -0.06754665821790695, 0.05316976457834244,
- 0.02096361666917801, -0.026535741984844208, 0.1366376131772995, -0.003151297103613615,
- 0.08793676644563675, -0.025996174663305283, 0.08901476114988327, 0.06606972217559814,
- 0.10301332920789719, -0.11545442789793015, -0.05295630544424057, -0.0035216219257563353,
- -0.1036481261253357, -0.0810396745800972, 0.05153714120388031, 0.07479453086853027,
- -0.031210223212838173, 0.016010982915759087, -0.00837591290473938, 0.07500030845403671,
- -0.0017338307807222009, 0.019406640902161598, 0.1031554564833641, -0.031425587832927704,
- -0.034273598343133926, 0.10797902196645737, -0.006914528086781502, 0.029319748282432556,
- 0.11818581819534302, -0.0336226224899292, -0.08479456603527069, -0.11363063007593155,
- 0.06181998923420906, 0.009709593839943409, -0.05808905512094498, 0.01682218164205551,
- -0.06672941148281097, 0.06278522312641144, -0.21908527612686157, 0.12102621048688889,
- 0.1293468326330185, -0.07317385077476501, -0.012479813769459724, -0.049063790589571,
- 0.0616520494222641, -0.020251065492630005, 0.015949508175253868, 0.02464619092643261,
- 0.042084887623786926, -0.015944257378578186, 0.04854542389512062, -0.003146861447021365,
- 0.006176652852445841, 0.062307488173246384, -0.02688489481806755, -0.018647804856300354,
- 0.04755741357803345, -0.03837950900197029, -0.041572242975234985, 0.059784043580293655,
- -0.0012491644592955709, -0.03694431111216545, -0.04690082371234894,
- -0.06343401223421097, 0.0004882201028522104, -0.04608732834458351, -0.05316760018467903,
- 0.021853424608707428, 0.0030524509493261576, -0.07287279516458511,
- -0.0003352826461195946, -0.002222762443125248, 0.06586641818284988, 0.03581614047288895,
- 0.06713283807039261, 0.0885368138551712, -0.02512458525598049, -0.047320228070020676,
- 0.04575755074620247, 0.027190908789634705, 0.10141542553901672, 0.01069884467869997,
- -0.002808260964229703, -0.035368289798498154, -0.10612081736326218, 0.01879565231502056,
- 0.03816240280866623, 0.09266384690999985, -0.031507883220911026, -0.01512033212929964,
- -0.060197118669748306, -0.03071974590420723, 0.11081013083457947, 0.013731550425291061,
- 0.007692132145166397, 0.01752309314906597, -0.10339811444282532, -0.049078602343797684,
- 0.07872503250837326, -0.049937084317207336, -0.0019111445872113109, 0.03168134391307831,
- -0.08063705265522003, 0.050004664808511734, 0.09352385997772217, 0.013492429628968239,
- 0.01424162182956934, -0.013182842172682285, 0.026683146134018898, 0.054244834929704666,
- -0.006912851706147194, 0.06277339160442352, -0.026294484734535217, -0.08951503038406372,
- -0.052867718040943146, 0.01598944514989853, 0.08612138032913208, 0.01027070265263319,
- -0.07159440964460373, -0.03727293759584427, -0.028156284242868423
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 238,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Sally Ho", " Garance Burke"],
- "epoch_date_downloaded": 1655078400,
- "epoch_date_modified": 1655251200,
- "epoch_date_submitted": 1655078400,
- "flag": null,
- "report_number": 1762,
- "source_domain": "lagrandeobserver.com",
- "submitters": ["Parul Pandey"],
- "title": "Oregon dropping AI tool used in child abuse cases",
- "url": "https://www.lagrandeobserver.com/news/state/oregon-dropping-ai-tool-used-in-child-abuse-cases/article_95e7ea7e-e289-11ec-8393-a3d73b38be3d.html"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "intensive-partnerships-for-effective-teaching",
- "name": "Intensive Partnerships for Effective Teaching"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "intensive-partnerships-for-effective-teaching",
- "name": "Intensive Partnerships for Effective Teaching"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "teachers",
- "name": "Teachers"
- },
- {
- "__typename": "Entity",
- "entity_id": "students",
- "name": "students"
- },
- {
- "__typename": "Entity",
- "entity_id": "low-income-minority-students",
- "name": "low-income minority students"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1764],
- "vector": [
- -0.09111668169498444, 0.06389930099248886, 0.01781126856803894, -0.11545196920633316,
- 0.12489040195941925, -0.0009713021572679281, -0.019780324772000313, 0.10608714073896408,
- 0.09820958226919174, -0.11561459302902222, -0.008424624800682068, 0.061266109347343445,
- 0.007205947767943144, -0.05463911592960358, 0.011156232096254826, -0.09482933580875397,
- -0.12861596047878265, -0.05258926376700401, 0.017994219437241554, -0.14135342836380005,
- -0.0285502802580595, -0.0431898757815361, -0.002126164035871625, 0.11973796784877777,
- 0.01042929571121931, 0.04284711182117462, 0.17159149050712585, 0.12251807004213333,
- -0.05767352133989334, 0.04233342036604881, -0.018007991835474968, -0.08513981103897095,
- 0.10036361962556839, 0.006143560167402029, -0.03255358338356018, 0.14436312019824982,
- -0.009236890822649002, -0.017660517245531082, 0.02261238545179367, -0.03659573569893837,
- 0.020831923931837082, 0.32401877641677856, 0.012232903391122818, -0.024932565167546272,
- 0.009576598182320595, -0.029465770348906517, -0.020448219031095505, 0.08640503138303757,
- -0.016802938655018806, 0.030837787315249443, -0.01252702809870243, 0.05926002189517021,
- 0.00974304135888815, 0.0323067270219326, -0.11677823960781097, 0.07004186511039734,
- 0.03804623335599899, -0.01688469387590885, 0.0959492102265358, -0.09177906811237335,
- -0.05227390304207802, -0.2581060528755188, -0.03485754504799843, -0.15493144094944,
- 0.06301093846559525, -0.07904352992773056, -0.038896091282367706, 0.07251593470573425,
- 0.012657062150537968, 0.06651028990745544, 0.06184493377804756, 0.003952382132411003,
- -0.03703437000513077, 0.05840367451310158, -0.043964069336652756, -0.03496192768216133,
- 0.016707170754671097, 0.176219180226326, -0.13102035224437714, -0.013664260506629944,
- 0.06633047014474869, -0.07767056673765182, 0.4887152314186096, -0.023420441895723343,
- -0.001450101612135768, 0.02930305153131485, 0.1119130551815033, 0.016856223344802856,
- 0.03902721032500267, 0.04183970391750336, -0.04155080392956734, 0.10940005630254745,
- -0.08488204330205917, -0.0032968800514936447, 0.09398159384727478, 0.05909239873290062,
- -0.02535911276936531, 0.04797529801726341, 0.0041855089366436005, -0.035909559577703476,
- -0.006803333293646574, -0.020120101049542427, 0.1545124351978302, 0.12560811638832092,
- -0.022653842344880104, 0.04860144108533859, 0.13240815699100494, -0.05936206132173538,
- 0.04276925325393677, -0.051475923508405685, 0.023151911795139313, -0.07919438183307648,
- -0.005148072261363268, -0.02619713358581066, 0.008686009794473648, -0.04131251946091652,
- 0.011961587704718113, 0.033574532717466354, 0.0866604745388031, 0.010154989548027515,
- 0.025779342278838158, 0.05669929459691048, 0.06041451543569565, -0.05448218435049057,
- -0.07716996967792511, -0.039847396314144135, -0.05503610521554947,
- -0.012385853566229343, -0.05343146249651909, 0.03713424131274223, -0.06824111193418503,
- -0.11985648423433304, 0.015944508835673332, 0.0619848258793354, -0.08873328566551208,
- -0.057916928082704544, -0.018704671412706375, -0.026163442060351372,
- 0.04117373749613762, -0.04827604070305824, 0.011822853237390518, -0.0015213594306260347,
- 0.016593772917985916, 0.025105111300945282, 0.12563565373420715, 0.030768506228923798,
- -0.07369028031826019, -0.025570018216967583, 0.041682131588459015, 0.0024453264195472,
- 0.16209502518177032, -0.19496884942054749, -0.059683460742235184, 0.006133703980594873,
- 0.004277225583791733, 0.7103635668754578, 0.09497542679309845, 0.21774199604988098,
- -0.015617016702890396, -0.03360419720411301, 0.19064201414585114, -0.016115644946694374,
- 0.03839289769530296, -0.10174605250358582, -0.03959022834897041, 0.005185003392398357,
- -0.08364395052194595, -0.03912083059549332, 0.037821948528289795, -0.046239323914051056,
- 0.1434565633535385, -0.03898676857352257, 0.08188865333795547, 0.011345349252223969,
- -0.1188247799873352, -0.025793613865971565, 0.10957498848438263, 0.023533426225185394,
- -0.14464151859283447, -0.013997329398989677, 0.07433376461267471, 0.09731017798185349,
- -0.1401619017124176, 0.010756460018455982, -0.08461500704288483, 0.041434790939092636,
- -0.02590886503458023, 0.017116786912083626, -0.009657692164182663, 0.047057170420885086,
- 0.013147634454071522, 0.053771011531353, 0.05083495005965233, -0.12587016820907593,
- -0.009283265098929405, 0.04357824847102165, -0.06957551836967468, -0.042455919086933136,
- 0.0991523414850235, -0.06520872563123703, 0.032952096313238144, 0.0065431492403149605,
- 0.17067790031433105, -0.12524157762527466, -0.009900586679577827, -0.026657288894057274,
- -0.04932084307074547, 0.030843112617731094, 0.03420787304639816, -0.04598614573478699,
- -0.033852383494377136, 0.14652545750141144, 0.0440404899418354, 0.11773557960987091,
- 0.01423276774585247, -0.0030550919473171234, 0.03149515017867088, 0.0733863040804863,
- 0.024688687175512314, -0.02220821939408779, 0.032153092324733734, 0.06297121942043304,
- -0.05941493436694145, -0.02436765655875206, 0.030915630981326103, 0.05047490820288658,
- 0.0634075477719307, -0.0054504601284861565, 0.02323087677359581, -0.008446809835731983,
- -0.10201477259397507, 0.012440066784620285, 0.010330038145184517, 0.00989958643913269,
- 0.1143496185541153, -0.05290515348315239, -0.020894603803753853, -0.03823964670300484,
- -0.015981843695044518, 0.04229801148176193, -0.010827812366187572, 0.09742649644613266,
- 0.14118821918964386, 0.06751303374767303, -0.01797644793987274, 0.07011430710554123,
- 0.07154390215873718, 0.05876510590314865, -0.011635977774858475, 0.11347019672393799,
- 0.00444007245823741, -0.09709913283586502, 0.011924375779926777, -0.006128702312707901,
- -0.012283287942409515, -0.05322011187672615, -0.04441778361797333, -0.07079993933439255,
- -0.134325310587883, -0.03140667453408241, -0.05545671284198761, -0.059356190264225006,
- 0.004202938172966242, 0.08634232729673386, -0.06260767579078674, -0.08796937763690948,
- -0.0835733637213707, 0.03645097836852074, 0.14142164587974548, 0.01147452276200056,
- -0.02861514873802662, -0.14190006256103516, -0.004772283136844635,
- -0.008906780742108822, 0.06565118581056595, -0.056892842054367065, 0.03805142268538475,
- 0.024668166413903236, -0.11872996389865875, 0.05481664463877678, -0.03336290642619133,
- -0.018664823845028877, -0.10773321986198425, -0.05555274337530136, -0.07060083001852036,
- 0.027909746393561363, 0.051967065781354904, -0.06872785091400146, 0.03879017382860184,
- 0.026008928194642067, 0.05709318071603775, -0.010649144649505615, -0.06564013659954071,
- 0.08886093646287918, -0.008999467827379704, 0.004237114917486906, 0.1427597552537918,
- -0.05675560235977173, 0.0014364274684339762, 0.0013076706090942025,
- -0.08645548671483994, -0.07001806050539017, 0.02027939073741436, -0.0038770821411162615,
- 0.05962066352367401, 0.01933552883565426, 0.028639355674386024, -0.056861601769924164,
- -0.03137547895312309, 0.019810687750577927, -0.07085883617401123, -0.12598270177841187,
- -0.05871821567416191, 0.09854182600975037, 0.026103761047124863, 0.019998054951429367,
- -0.010714084841310978, -0.05720723420381546, 0.0665334090590477, 0.03814750537276268,
- 0.026626216247677803, -0.013198249973356724, 0.05269407480955124, -0.011677646078169346,
- 0.03801006078720093, 0.14006054401397705, -0.005869107320904732, 0.04971390217542648,
- 0.05011912062764168, 0.4351055920124054, -0.10039953887462616, 0.10392410308122635,
- 0.08845547586679459, 0.029123947024345398, 0.04028387367725372, -0.10629726201295853,
- 0.05740347504615784, 0.08068674057722092, 0.16973444819450378, 0.13120676577091217,
- -0.11276667565107346, -0.04018576815724373, -0.10687347501516342, 0.11977951973676682,
- 0.00897281151264906, 0.04661242663860321, -0.01392413955181837, -0.10042405873537064,
- -0.026874015107750893, 0.07158500701189041, -0.04925481975078583, 0.011625495739281178,
- 0.0025223945267498493, -0.0438377819955349, 0.012441197410225868, -0.012880763038992882,
- -0.006362516433000565, -0.00019314495148137212, 0.04268438369035721,
- -0.017472390085458755, 0.05118858814239502, 0.013130365870893002, 0.03603673726320267,
- -0.15678809583187103, 0.01100512221455574, -0.09549900889396667, -0.06408520042896271,
- 0.0983637124300003, -0.04076101630926132, 0.0758601501584053, 0.054765261709690094,
- -0.019606517627835274, 0.06508459895849228, 0.05745488405227661, -0.06311093270778656,
- 0.018484782427549362, 0.0029927745927125216, 0.027857786044478416, 0.027854757383465767,
- 0.14860951900482178, -0.016393395140767097, -0.06774327158927917, -0.1168353408575058,
- 0.06585583835840225, 0.1442575305700302, -0.013474958948791027, -0.05707952752709389,
- 0.03657441586256027, -0.025911059230566025, -0.0038671866059303284,
- -0.10056184977293015, -0.10882165282964706, -0.06683961302042007, -0.06928586214780807,
- 0.10609231889247894, 0.04379752278327942, -0.0033064645249396563, -0.08017347753047943,
- -0.08078233152627945, -0.0453479029238224, 0.02393844723701477, 0.13454826176166534,
- -0.07143410295248032, 0.07197687029838562, -0.029928702861070633, -0.029551781713962555,
- 0.0004472109430935234, -0.06076895445585251, -0.028779584914445877, -0.0504092313349247,
- 0.03490578010678291, 0.09272824972867966, 0.037898823618888855, -0.03441019356250763,
- 0.12295406311750412, -0.11002960056066513, 0.047613758593797684, -0.013657872565090656,
- -0.1141890436410904, 0.02334793098270893, -0.05712864547967911, 0.01714562438428402,
- 0.02329733967781067, -0.03060830384492874, 0.012734735384583473, -0.00746619189158082,
- -0.06263424456119537, -0.08064834773540497, -0.07669200748205185, -0.055558398365974426,
- -0.11490517109632492, -0.016862204298377037, -0.15693388879299164,
- 0.0017888096626847982, -0.03323955461382866, -0.025092381983995438, 0.01734030805528164,
- 0.05383610725402832, 0.024699673056602478, -0.1398470550775528, -0.00417818920686841,
- -0.04926580190658569, 0.06873727589845657, 0.006654344033449888, -0.013107065111398697,
- 0.06363267451524734, 0.04813534766435623, 0.07641458511352539, 0.015884023159742355,
- -0.016065960749983788, -0.07506480813026428, 0.0010924243833869696,
- -0.10748713463544846, -0.3747563362121582, 0.03154256194829941, 0.006711432710289955,
- 0.0593251995742321, 0.016441840678453445, -0.04399939626455307, 0.08322802931070328,
- -0.03739705681800842, -0.06674299389123917, 0.12017222493886948, -0.02667275257408619,
- 0.029532359912991524, -0.0035081428941339254, -0.06193334981799126,
- -0.06434867531061172, -0.04212748631834984, -0.018938202410936356, 0.022206826135516167,
- 0.005799421574920416, -0.12915125489234924, -0.08122645318508148, 0.06698353588581085,
- -0.007563204970210791, 0.012848891317844391, 0.049126483500003815, 0.011375891044735909,
- -0.014382132329046726, -0.04927334189414978, 0.04538269713521004, 0.02762017957866192,
- 0.0366070456802845, -0.1074587032198906, 0.02148538827896118, 0.03058784455060959,
- -0.02046971768140793, 0.1460716426372528, 0.02279713749885559, 0.010637959465384483,
- -0.04220900312066078, 0.08195961266756058, 0.05173182860016823, 0.18420490622520447,
- -0.017352808266878128, -0.03122030198574066, 0.036128316074609756, 0.14119820296764374,
- 0.07708494365215302, 0.022518416866660118, -0.020030733197927475, 0.0036040586419403553,
- 0.025113236159086227, -0.04494629055261612, 0.12501689791679382, -0.05117208510637283,
- 0.017037320882081985, -0.03952866420149803, -0.020503759384155273,
- -0.0004315422265790403, -0.05402229353785515, 0.2210787981748581, 0.00924774818122387,
- 0.002949649002403021, 0.06022591143846512, -0.05800993740558624, -0.0006157983443699777,
- -0.13637252151966095, -0.07626931369304657, 0.0030707870610058308, -0.03341233357787132,
- 0.013134780339896679, -0.03534524515271187, -0.12370612472295761, -0.012438949197530746,
- -0.0034296431113034487, -0.00433038454502821, 0.1192675307393074, -0.004515279084444046,
- 0.00879768654704094, -0.012026561424136162, 0.1474439948797226, 0.07624717056751251,
- -0.03916101157665253, 0.03368693217635155, 0.05417519435286522, 0.058622561395168304,
- 0.048920754343271255, -0.03504471853375435, -0.06416622549295425, 0.009658326394855976,
- 0.18537458777427673, -0.03294305503368378, 0.12222190201282501, 0.014702529646456242,
- -0.05000513046979904, -0.07078946381807327, -0.009188483469188213,
- -0.027069197967648506, 0.025053078308701515, -0.4019581079483032, -0.035966500639915466,
- 0.14596255123615265, 0.019560009241104126, 0.04606680944561958, 0.09685403108596802,
- -0.008944672532379627, -0.07237804681062698, -0.008475943468511105, -0.1483170986175537,
- 0.11845127493143082, 0.025571884587407112, 0.05548200383782387, -0.1765509992837906,
- 0.053834348917007446, 0.0816418007016182, -0.010762902908027172, 0.0353059396147728,
- 0.13223129510879517, -0.28012698888778687, 0.02032775804400444, -0.04061423987150192,
- 0.052944365888834, 0.04761235788464546, 0.050469692796468735, 0.09328360855579376,
- -0.012362373061478138, 0.03224821761250496, 0.017384853214025497, -0.007022813893854618,
- 0.05134568363428116, -0.00018439673294778913, 0.009979696944355965, 0.11724995076656342,
- 0.13933372497558594, 0.01845681108534336, -0.028900019824504852, 12.053581237792969,
- 0.05871473252773285, 0.04960152506828308, -0.098673976957798, -0.029706021770834923,
- -0.021206676959991455, -0.005715891718864441, -0.11160823702812195, 0.03670771047472954,
- 0.14635075628757477, -0.03581047058105469, -0.08262857794761658, -0.023631056770682335,
- -0.11427314579486847, 0.028682047501206398, -0.09211679548025131, -0.12196894735097885,
- -0.01211792416870594, 0.027190523222088814, -0.035051655024290085, -0.04931752756237984,
- 0.05246027186512947, 0.07473350316286087, -0.004257712047547102, -0.0745527520775795,
- 0.008020872250199318, 0.04541387781500816, -0.06654561311006546, 0.022010697051882744,
- 0.005369959399104118, -0.03421737998723984, 0.04135998710989952, 0.06632298976182938,
- -0.07027745246887207, 0.04903120547533035, 0.10118253529071808, 0.14116187393665314,
- 0.026585975661873817, 0.010219271294772625, 0.11633609980344772, 0.027707114815711975,
- 0.11587483435869217, 0.028104016557335854, 0.03438415750861168, 0.06147772818803787,
- 0.08889059722423553, -0.008823857642710209, 0.14967985451221466, 0.027673859149217606,
- 0.0477672703564167, 0.13516204059123993, 0.0023549229372292757, 0.16470782458782196,
- -0.0650070533156395, -0.025775061920285225, 0.049656473100185394, 0.017060251906514168,
- -0.0791286826133728, 0.07022982835769653, -0.007099515292793512, -0.04740206152200699,
- 0.15103979408740997, 0.020423071458935738, 0.0895475447177887, 0.046972356736660004,
- 0.09315843880176544, 0.05453817918896675, 0.06933202594518661, -0.1260150521993637,
- -0.09712599217891693, -0.016997337341308594, -0.12021216750144958, -0.1051545962691307,
- 0.1333921104669571, 0.11555003374814987, -0.003517341334372759, 0.03405533358454704,
- 0.018054023385047913, 0.053855717182159424, -0.012140502221882343, -0.04277552291750908,
- 0.07528944313526154, 0.0005129475030116737, -0.0002792650484479964, 0.10435350984334946,
- 0.05308219790458679, 0.04226412624120712, 0.12467868626117706, -0.056450385600328445,
- -0.07865700125694275, -0.13215477764606476, 0.041803475469350815, -0.02284405007958412,
- -0.043741364032030106, 0.024312661960721016, -0.08441735804080963, 0.10179789364337921,
- -0.22013631463050842, 0.10153752565383911, 0.08074883371591568, -0.11237034201622009,
- 0.014314237982034683, -0.016523823142051697, 0.056879475712776184, 0.013624022714793682,
- 0.04223649948835373, -0.0021940800361335278, -0.029139500111341476,
- 0.008598169311881065, 0.050192542374134064, 0.03114215098321438, 0.05331256985664368,
- 0.06190459802746773, -0.059541601687669754, 0.0020044029224663973, 0.08110912889242172,
- -0.062964528799057, -0.01433542836457491, 0.08485885709524155, 0.021586855873465538,
- -0.07091733813285828, -0.08416184782981873, -0.006257510278373957, -0.05241995304822922,
- -0.07205399125814438, -0.09091220051050186, 0.017847124487161636, 0.007671914994716644,
- -0.08460074663162231, -0.009786454029381275, 0.0557340532541275, 0.07488180696964264,
- 0.06978942453861237, -0.007755907718092203, 0.07918566465377808, -0.07005582004785538,
- -0.05960795655846596, 0.022754859179258347, 0.0070454771630465984, 0.06195010244846344,
- -0.03192963823676109, -0.07216944545507431, -0.09431148320436478, -0.13596417009830475,
- -0.028693528845906258, 0.04328529164195061, 0.02219093218445778, 0.05392112210392952,
- 0.006237898021936417, -0.05929712578654289, -0.06492379307746887, 0.09332675486803055,
- 0.07425138354301453, 0.0271815974265337, 0.051188819110393524, -0.03785504028201103,
- -0.046187568455934525, 0.09775437414646149, -0.046783190220594406, -0.00352366897277534,
- 0.02030692994594574, -0.02714093215763569, 0.09631340950727463, 0.13170239329338074,
- 0.04650787264108658, 0.04171624034643173, 0.06168502941727638, -0.01734752021729946,
- 0.00029947757138870656, -0.04920279607176781, 0.06326660513877869, -0.06831198185682297,
- -0.010963966138660908, -0.06299613416194916, 0.015761760994791985, 0.09747996181249619,
- -0.005292664282023907, -0.0713929682970047, -0.017411405220627785, -0.10379937291145325
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 239,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Cathy O'Neil"],
- "epoch_date_downloaded": 1608422400,
- "epoch_date_modified": 1655251200,
- "epoch_date_submitted": 1655251200,
- "flag": null,
- "report_number": 1764,
- "source_domain": "bloomberg.com",
- "submitters": ["Ingrid Dickinson (CSET)"],
- "title": "Here's How Not to Improve Public Schools",
- "url": "https://www.bloomberg.com/opinion/articles/2018-06-27/here-s-how-not-to-improve-public-schools#xj4y7vzkg"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "programmers",
- "name": "programmers"
- },
- {
- "__typename": "Entity",
- "entity_id": "github",
- "name": "GitHub"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "github",
- "name": "GitHub"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "intellectual-property-rights-holders",
- "name": "Intellectual Property rights holders"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [2230, 1770, 1769, 1768, 1767],
- "vector": [
- -0.06149383634328842, 0.06729857623577118, -0.020563390105962753, -0.09674398601055145,
- 0.06675910949707031, -0.030341971665620804, -0.005730883218348026, 0.05244425684213638,
- 0.08587430417537689, -0.13126152753829956, 0.004744208417832851, 0.052828121930360794,
- 0.02950265444815159, -0.05338970944285393, 0.025763437151908875, -0.06317101418972015,
- -0.11527584493160248, -0.032451193779706955, -0.02064928412437439, -0.08748490363359451,
- -0.09302308410406113, 0.0211644247174263, 0.0440838523209095, 0.09378586709499359,
- 0.018479201942682266, 0.055930398404598236, 0.12920235097408295, 0.11657582223415375,
- -0.0710463672876358, 0.03962565213441849, -0.03367447480559349, -0.0547662191092968,
- 0.1116505041718483, -0.008309319615364075, 0.012295069172978401, 0.0873723179101944,
- 0.044899046421051025, -0.0395938977599144, -0.05555824562907219, -0.01533818244934082,
- 0.040077220648527145, 0.1668764054775238, -0.006702488753944635, -0.033120520412921906,
- 0.0792350322008133, -0.022486457601189613, 0.034456245601177216, 0.02981395646929741,
- -0.0013651475310325623, -0.002294765319675207, -0.005544835235923529,
- 0.005342966411262751, -0.04790139198303223, 0.030312085524201393, -0.09478138387203217,
- 0.07968815416097641, 0.03625599294900894, 0.038048069924116135, 0.03646320849657059,
- -0.056953299790620804, -0.044738978147506714, -0.11239324510097504,
- -0.07381303608417511, -0.0394616425037384, 0.07368777692317963, -0.057185571640729904,
- -0.024469923228025436, 0.031381819397211075, -0.0048988694325089455,
- 0.037704698741436005, 0.02761172130703926, -0.023590128868818283, -0.023283863440155983,
- -0.03246299549937248, -0.004941795952618122, -0.02786695957183838, 0.03696390241384506,
- 0.2542445659637451, -0.10495667159557343, 0.04349461942911148, 0.07159705460071564,
- -0.09463377296924591, 0.32303494215011597, 0.04156484454870224, -0.025415649637579918,
- -0.010477441363036633, 0.09956496208906174, 0.02450750209391117, 0.029566416516900063,
- 0.009520672261714935, -0.012277062050998211, 0.0504380539059639, -0.015168708749115467,
- -0.019192468374967575, 0.05232185125350952, 0.025606635957956314, -0.01240470726042986,
- -0.11341440677642822, -0.01762564107775688, -0.04880080744624138, 0.00272906175814569,
- -0.06267695873975754, 0.11811800301074982, 0.082363560795784, -0.029159998521208763,
- 0.014682939276099205, 0.08573545515537262, -0.03203365579247475, 0.04056265205144882,
- -0.06677988916635513, 0.03114938735961914, 0.03848589211702347, 0.07376150786876678,
- -0.01549276988953352, 0.0599030964076519, -0.038162779062986374, 0.00983436219394207,
- 0.028917651623487473, 0.05564695596694946, 0.06752336025238037, -0.018572751432657242,
- 0.04380102828145027, 0.0625092014670372, -0.0896129459142685, -0.015009870752692223,
- -0.027629345655441284, -0.019326087087392807, 0.011429579928517342,
- -0.02897416055202484, 0.042232077568769455, -0.046224258840084076, -0.2160845249891281,
- 0.006724043749272823, 0.06607527285814285, -0.03161317855119705, 0.010066775605082512,
- -0.000788561999797821, -0.08000488579273224, 0.042124733328819275, 0.02080831676721573,
- -0.009488949552178383, 0.06570381671190262, 0.02126442827284336, 0.05940398573875427,
- 0.0855945497751236, 0.018862519413232803, -0.03673804551362991, -0.046310193836688995,
- -0.004337298683822155, -0.03300076350569725, 0.09783250093460083, -0.10751141607761383,
- -0.037784211337566376, -0.005282905884087086, -0.030648943036794662, 0.6260239481925964,
- 0.06143656373023987, 0.10192092508077621, -0.012547651305794716, -0.024318719282746315,
- 0.13855156302452087, -0.009607043117284775, 0.05233331769704819, -0.019938865676522255,
- -0.02569502592086792, -0.00358287850394845, -0.04699733853340149, -0.0145497415214777,
- 0.017262909561395645, 0.018237238749861717, 0.0950789600610733, 0.01799260452389717,
- 0.10131468623876572, -0.005903071723878384, -0.059507448226213455, -0.0311405248939991,
- 0.014776229858398438, 0.011106657795608044, -0.12122287601232529,
- -0.0011765856761485338, 0.04165764898061752, 0.07569222152233124, -0.06531500071287155,
- 0.023195277899503708, -0.0412859246134758, 0.045601267367601395, -0.04096700996160507,
- 0.0073645757511258125, 0.03210212662816048, 0.052131153643131256, 0.0524776354432106,
- 0.039378952234983444, -0.02502419613301754, -0.07124832272529602, -0.00915287435054779,
- 0.09109573811292648, -0.0204676054418087, -0.02200472727417946, 0.08606402575969696,
- -0.07369944453239441, 0.057633399963378906, -0.006488586310297251, 0.1346796303987503,
- -0.10776591300964355, 0.035600192844867706, -0.010357731021940708,
- 0.0018783130217343569, 0.044885266572237015, -0.015884365886449814,
- -0.09309563785791397, -0.06982596218585968, 0.06362982094287872, -0.007131344173103571,
- 0.04299095273017883, 0.0574578158557415, -0.04938078671693802, 0.03799182176589966,
- 0.05765368789434433, 0.0011932157212868333, -0.05328211933374405, 0.05408000200986862,
- 0.04681425541639328, -0.012284226715564728, -0.010385552421212196, 0.011114399880170822,
- 0.04511607810854912, 0.025074418634176254, 0.008892467245459557, 0.05101316049695015,
- -0.03769858554005623, -0.015683315694332123, 0.03940099477767944, 0.05668618530035019,
- 0.033037520945072174, 0.07527127116918564, -0.09209151566028595, -0.03264354541897774,
- -0.033272795379161835, -0.03182389959692955, 0.015320943668484688, -0.03597444295883179,
- 0.06199980527162552, 0.08975778520107269, 0.04884251952171326, 0.014540319330990314,
- 0.029459383338689804, 0.02059761807322502, -0.00028949292027391493,
- -0.00831773690879345, 0.04443953186273575, -0.03348249942064285, -0.04564959555864334,
- 0.011303623206913471, 0.006186991930007935, 0.04988125339150429, 0.013111209496855736,
- -0.07831043750047684, -0.03548210486769676, -0.01620234176516533, -0.02586749568581581,
- -0.06980080902576447, -0.04893321171402931, -0.009443489834666252, 0.014748935587704182,
- -0.04456554725766182, -0.07540751993656158, -0.047376226633787155, 0.016195442527532578,
- 0.056199055165052414, -0.03549069166183472, 0.00043692515464499593,
- -0.09931053966283798, 0.020847558975219727, -0.025564774870872498, 0.023799462243914604,
- 0.021557722240686417, -0.026911377906799316, -0.02823018468916416, -0.0757448598742485,
- -0.014785696752369404, 0.01877523958683014, -0.04025627300143242, -0.04056980460882187,
- -0.051503587514162064, -0.03744209557771683, -0.02681860886514187, 0.009526749141514301,
- -0.04358861967921257, 0.012129832990467548, 0.06743880361318588, 0.041550248861312866,
- -0.011767484247684479, -0.011900478973984718, 0.04654746502637863,
- -0.024192338809370995, 0.008184030652046204, 0.0730423778295517, -0.024470288306474686,
- 0.028334975242614746, -0.01007379125803709, -0.07194477319717407, -0.04162820801138878,
- -0.031959690153598785, -0.04122810810804367, 0.02623307704925537, -0.031024089083075523,
- 0.03525139391422272, -0.04312341660261154, -0.01596936024725437, 0.034402720630168915,
- -0.04332371801137924, -0.08740177005529404, -0.06782308220863342, 0.12134094536304474,
- -0.002753386739641428, -0.03198728710412979, 0.017805885523557663,
- -0.036176517605781555, 0.052932463586330414, 0.016578039154410362, 0.014420250430703163,
- 0.021095793694257736, 0.0898294597864151, -0.010930722579360008, 0.07074801623821259,
- 0.0942823737859726, 0.004280655644834042, -0.013783125206828117, 0.059648096561431885,
- 0.36503463983535767, -0.17246441543102264, 0.0779484435915947, 0.06988413631916046,
- 0.011129015125334263, 0.07413370907306671, -0.06594846397638321, 0.04890754073858261,
- 0.04950397461652756, 0.11941210180521011, 0.11054744571447372, -0.002510347869247198,
- 0.017155829817056656, -0.0495208241045475, 0.07148003578186035, -0.005535697098821402,
- 0.011673611588776112, 0.007013468537479639, -0.06396661698818207, -0.007370300590991974,
- 0.04646779224276543, -0.05912470817565918, 0.03182952478528023, -0.006577126681804657,
- -0.08613698184490204, 0.008774146437644958, 0.04156976193189621, 0.057350147515535355,
- -0.00742417573928833, 0.026903677731752396, -0.038651298731565475, 0.049338411539793015,
- 0.03836587816476822, 0.04855889081954956, -0.06209778040647507, 0.07062431424856186,
- -0.10166949033737183, -0.11698238551616669, 0.038321465253829956, 0.015114342793822289,
- 0.05273788049817085, 0.04868555814027786, -0.004355306271463633, 0.042212847620248795,
- -0.04456176236271858, -0.037953346967697144, -0.015841025859117508,
- 0.046558305621147156, 0.044166773557662964, 0.06443096697330475, 0.12210984528064728,
- -0.0029576686210930347, -0.00782456062734127, -0.06350456178188324, 0.05351708084344864,
- 0.12524642050266266, -0.03615210950374603, 0.006149430759251118, 0.006501229014247656,
- 0.00640672305598855, 0.01941877044737339, -0.04877898842096329, -0.08090793341398239,
- -0.00268177199177444, -0.060174427926540375, 0.07887740433216095, 0.02301822230219841,
- -0.04909300059080124, -0.13058798015117645, -0.051972053945064545,
- -0.024610381573438644, 0.011363029479980469, 0.12554733455181122, -0.06790760904550552,
- 0.023706922307610512, 0.005956211593002081, 0.03856588527560234, -0.01703004352748394,
- -0.0682658702135086, -0.01476549357175827, -0.0775776356458664, 0.03156609088182449,
- 0.07407146692276001, 0.0748961865901947, -0.04630102589726448, 0.03374828025698662,
- -0.07894745469093323, 0.055046625435352325, -0.005835503339767456, -0.06656874716281891,
- 0.025334876030683517, -0.06161756440997124, 0.039655063301324844, -0.003380347043275833,
- -0.04684709385037422, -0.009016316384077072, -0.04870383441448212, -0.0414615161716938,
- -0.07411060482263565, -0.07600419223308563, -0.02684668079018593, -0.08436687290668488,
- 0.08495407551527023, -0.04914962872862816, -0.0015180637128651142,
- -0.015466028824448586, -0.02797240950167179, 0.016059190034866333, 0.019251931458711624,
- -0.022525450214743614, -0.10349130630493164, -0.018467355519533157,
- -0.015219250693917274, 0.020389944314956665, -0.019129788503050804,
- -0.08119846135377884, -0.007217098958790302, 0.032196760177612305, 0.017800848931074142,
- -0.05036849528551102, 0.015491637401282787, -0.07671702653169632, 0.07621762156486511,
- -0.12824003398418427, -0.4069506525993347, 0.04109932482242584, 0.04336189478635788,
- 0.0412394143640995, -0.000004907604306936264, -0.05763474106788635, 0.04937553405761719,
- 0.03535494953393936, -0.013004107400774956, 0.08666907250881195, -0.06056419759988785,
- 0.03266707435250282, -0.07487398386001587, -0.03637855872511864, 0.012643249705433846,
- -0.10728149116039276, -0.05570485442876816, 0.03125976026058197, -0.0015738740330561996,
- -0.05016249418258667, -0.07725907862186432, 0.012147555127739906, -0.02718603052198887,
- -0.021798010915517807, -0.014622879214584827, 0.02007395587861538, -0.05414663627743721,
- -0.05383957177400589, 0.01808277517557144, 0.06972038000822067, -0.0010414613643661141,
- -0.07477618753910065, -0.0014071324840188026, 0.03697361797094345, 0.016890861093997955,
- 0.09448568522930145, 0.01092926412820816, -0.017790835350751877, -0.08277826011180878,
- 0.05514106899499893, 0.09971138089895248, 0.1866895705461502, -0.007937410846352577,
- 0.037417612969875336, -0.01035347767174244, 0.10259231179952621, 0.04825848713517189,
- 0.03866229206323624, -0.03474050760269165, -0.03600909560918808, 0.03640323877334595,
- -0.021950114518404007, 0.09230674058198929, -0.06413143128156662, -0.001379604684188962,
- 0.00043003782047890127, -0.018664170056581497, -0.05179554224014282,
- -0.029739398509263992, 0.17936280369758606, 0.024859439581632614, 0.02181757427752018,
- 0.014596844092011452, -0.03780628368258476, 0.051062632352113724, -0.0650165006518364,
- -0.036504749208688736, -0.03458211570978165, -0.0010486507089808583,
- 0.026242058724164963, -0.029791761189699173, -0.0843711793422699, -0.0054806605912745,
- -0.017875343561172485, -0.025602152571082115, 0.10940034687519073,
- -0.051654864102602005, 0.034242548048496246, -0.06368772685527802, 0.1371973752975464,
- 0.0016078881453722715, 0.01788989081978798, 0.01810554228723049, 0.056224603205919266,
- 0.028231631964445114, 0.0176183320581913, -0.031759001314640045, -0.05780286341905594,
- 0.0038503590039908886, 0.13392683863639832, -0.009115302935242653, 0.1259995549917221,
- 0.027695920318365097, 0.0037307206075638533, -0.028644707053899765, 0.01113798376172781,
- 0.02718992531299591, 0.0013804554473608732, -0.49604901671409607, -0.019250020384788513,
- 0.12538790702819824, -0.013192551210522652, 0.01815211959183216, 0.08968586474657059,
- 0.038798749446868896, -0.02181609533727169, 0.00022257193631958216,
- -0.06406788527965546, 0.06860493123531342, 0.04590357840061188, 0.07712208479642868,
- -0.1100708618760109, 0.01736118644475937, 0.07787931710481644, -0.015936221927404404,
- 0.00830581784248352, 0.030231118202209473, -0.25905218720436096, 0.0022407355718314648,
- -0.04706595093011856, 0.1292749047279358, 0.03270862624049187, 0.04163194075226784,
- 0.10065419971942902, -0.040179427713155746, 0.00487924087792635, 0.054881345480680466,
- 0.05159071832895279, 0.06296584755182266, 0.034978337585926056, -0.01695726439356804,
- 0.08357835561037064, 0.10373474657535553, 0.0731794461607933, 0.014334416016936302,
- 11.969507217407227, 0.019677696749567986, 0.0672960951924324, -0.08773066103458405,
- 0.0163751058280468, -0.052015095949172974, 0.0628572329878807, -0.07730919122695923,
- 0.044639505445957184, 0.10782287269830704, -0.012966236099600792, -0.027880031615495682,
- -0.04895247891545296, -0.046720199286937714, 0.02943561039865017, -0.0297759510576725,
- -0.012690557166934013, -0.028063664212822914, 0.06305904686450958, -0.0607047900557518,
- -0.03320427983999252, 0.05635449290275574, 0.09358283132314682, -0.011845806613564491,
- -0.08664790540933609, 0.0324443019926548, -0.008918202482163906, 0.003780884202569723,
- 0.005003736820071936, 0.05804359167814255, 0.0015923023456707597, 0.024047857150435448,
- 0.05222979933023453, -0.0007831711554899812, 0.059505023062229156, 0.11050242185592651,
- 0.055644094944000244, 0.04022645950317383, 0.03642621636390686, 0.027884021401405334,
- 0.006836523301899433, 0.045019734650850296, 0.006648731883615255, 0.052929364144802094,
- 0.07156161963939667, 0.017161844298243523, 0.033490054309368134, 0.12908151745796204,
- 0.020463373512029648, 0.07041928172111511, 0.06813386082649231, -0.011509545147418976,
- 0.09881564229726791, 0.011863751336932182, -0.03188016265630722, -0.009788153693079948,
- 0.008574232459068298, -0.07597986608743668, 0.07945605367422104, 0.008002817630767822,
- -0.050498224794864655, 0.11786071956157684, 0.04856957867741585, 0.07924050092697144,
- 0.03044627234339714, 0.050448425114154816, 0.05749473720788956, 0.0473819375038147,
- -0.10357677936553955, -0.052899766713380814, 0.038894347846508026, -0.07953313738107681,
- -0.06727489829063416, 0.06003052741289139, 0.06704454123973846, -0.027436990290880203,
- 0.08906561136245728, -0.04289167374372482, 0.026585012674331665, -0.014212993904948235,
- 0.0120994346216321, 0.022120468318462372, -0.025270676240324974, 0.012935951352119446,
- 0.046648744493722916, 0.02761096879839897, 0.052095554769039154, 0.13971646130084991,
- 0.0006641451036557555, -0.076612688601017, -0.052023958414793015, 0.07792630046606064,
- -0.015869155526161194, -0.0472140796482563, 0.04469878226518631, -0.050369493663311005,
- 0.010245074518024921, -0.1438746601343155, 0.06265219300985336, 0.0891898050904274,
- -0.07738550752401352, -0.024338413029909134, -0.019117634743452072, 0.07888652384281158,
- -0.006148369982838631, 0.009503699839115143, -0.07068339735269547, 0.015191204845905304,
- 0.026332098990678787, 0.037722330540418625, -0.03363595902919769, 0.10396461188793182,
- 0.017476152628660202, -0.05689574405550957, 0.06792321056127548, 0.06972391903400421,
- -0.031036213040351868, 0.009524505585432053, 0.049086377024650574, 0.06055533140897751,
- -0.12395725399255753, -0.034761279821395874, -0.07621590793132782,
- -0.030890773981809616, 0.0030608864035457373, -0.03154763951897621,
- -0.018368009477853775, 0.004001435823738575, -0.019922401756048203,
- -0.033285826444625854, 0.034493107348680496, 0.05411507934331894, 0.09883059561252594,
- 0.0005429913871921599, 0.0488322377204895, -0.05095887929201126, -0.035400278866291046,
- 0.04510170593857765, 0.06251257658004761, 0.08088396489620209, -0.07209505140781403,
- -0.03700653463602066, -0.02696124278008938, -0.14988228678703308, 0.003607027232646942,
- 0.06678914278745651, 0.052947886288166046, 0.039209794253110886, 0.02144092693924904,
- -0.0599440336227417, -0.03825799375772476, 0.06139989569783211, 0.03211384639143944,
- 0.0022680230904370546, 0.00015883446030784398, -0.030865928158164024,
- -0.014004011638462543, 0.09490924328565598, -0.03849199414253235,
- 0.00011924393766093999, 0.010995388962328434, -0.14681044220924377,
- 0.044492173939943314, 0.09372836351394653, 0.02656858041882515, 0.016792133450508118,
- 0.07002037763595581, 0.004561829846352339, 0.0592469684779644, -0.013428556732833385,
- 0.0321994312107563, -0.025220563635230064, -0.09033060073852539, -0.06535647809505463,
- 0.027561545372009277, 0.0929015576839447, 0.08290696144104004, -0.14617064595222473,
- -0.0167497880756855, -0.05206805467605591
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 240,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Joseph Saveri Law Firm", "Matthew Butterick"],
- "epoch_date_downloaded": 1667433600,
- "epoch_date_modified": 1667952000,
- "epoch_date_submitted": 1667433600,
- "flag": null,
- "report_number": 2230,
- "source_domain": "githubcopilotlitigation.com",
- "submitters": ["Carol Anderson (ForHumanity)"],
- "title": "GitHub Copilot litigation",
- "url": "https://githubcopilotlitigation.com"
- },
- {
- "__typename": "Report",
- "authors": ["Armin Ronacher"],
- "epoch_date_downloaded": 1656028800,
- "epoch_date_modified": 1656028800,
- "epoch_date_submitted": 1656028800,
- "flag": null,
- "report_number": 1770,
- "source_domain": "twitter.com",
- "submitters": ["Sean McGregor"],
- "title": "Tweet Showing Memorized Code",
- "url": "https://twitter.com/mitsuhiko/status/1410886329924194309"
- },
- {
- "__typename": "Report",
- "authors": ["FOSSA Editorial Team"],
- "epoch_date_downloaded": 1656115200,
- "epoch_date_modified": 1656028800,
- "epoch_date_submitted": 1656028800,
- "flag": null,
- "report_number": 1769,
- "source_domain": "fossa.com",
- "submitters": ["Sean McGregor"],
- "title": "Analyzing the Legal Implications of GitHub Copilot",
- "url": "https://fossa.com/blog/analyzing-legal-implications-github-copilot/"
- },
- {
- "__typename": "Report",
- "authors": ["Nat Friedman"],
- "epoch_date_downloaded": 1656115200,
- "epoch_date_modified": 1656028800,
- "epoch_date_submitted": 1656028800,
- "flag": null,
- "report_number": 1768,
- "source_domain": "github.blog",
- "submitters": ["Sean McGregor"],
- "title": "Introducing GitHub Copilot: your AI pair programmer",
- "url": "https://github.blog/2021-06-29-introducing-github-copilot-ai-pair-programmer/"
- },
- {
- "__typename": "Report",
- "authors": ["Mike Melanson"],
- "epoch_date_downloaded": 1656115200,
- "epoch_date_modified": 1656028800,
- "epoch_date_submitted": 1656028800,
- "flag": null,
- "report_number": 1767,
- "source_domain": "thenewstack.io",
- "submitters": ["Sean McGregor"],
- "title": "GitHub Copilot, Copyright Infringement and Open Source Licensing",
- "url": "https://thenewstack.io/this-week-in-programming-github-copilot-copyright-infringement-and-open-source-licensing/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "russian-chess-federation",
- "name": "Russian Chess Federation"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "unknown",
- "name": "Unknown"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "child-named-christopher",
- "name": "child named Christopher"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1781, 1776, 1774, 1773, 1772],
- "vector": [
- -0.06945590674877167, 0.06501752883195877, 0.034438397735357285, -0.10505139827728271,
- 0.05884137749671936, -0.0019894337747246027, 0.016650637611746788, 0.059825967997312546,
- 0.09288351237773895, -0.1280198097229004, -0.026667743921279907, 0.03136029094457626,
- 0.008300683461129665, -0.0563523955643177, 0.038688745349645615, -0.0907733142375946,
- -0.10241544246673584, -0.027790555730462074, -0.044686101377010345, -0.1296643316745758,
- -0.0569966658949852, -0.0028335044626146555, 0.0403573215007782, 0.08895199745893478,
- -0.03391072526574135, 0.033597949892282486, 0.08966382592916489, 0.1435224711894989,
- -0.06481098383665085, 0.08617899566888809, -0.02768569625914097, -0.03749275952577591,
- 0.13244619965553284, 0.008386846631765366, 0.030399823561310768, 0.07354780286550522,
- 0.021563053131103516, -0.016085263341665268, -0.04898443818092346, 0.008779886178672314,
- -0.002923539374023676, 0.2281053513288498, 0.001635421416722238, -0.045864515006542206,
- 0.06074399873614311, -0.04658268019556999, 0.028936441987752914, 0.047992587089538574,
- 0.001967376098036766, -0.008462188765406609, -0.009382453747093678,
- -0.014842016622424126, -0.04213705658912659, 0.023583557456731796, -0.09614209085702896,
- 0.09513993561267853, 0.045398421585559845, 0.004386618733406067, 0.10698020458221436,
- -0.061524271965026855, -0.03901234269142151, -0.23675671219825745, -0.05326497554779053,
- -0.09626737982034683, 0.07858084887266159, -0.10078847408294678, -0.02330636978149414,
- 0.061934150755405426, 0.056595854461193085, 0.05638492852449417, 0.07051175832748413,
- -0.05734099820256233, 0.012451814487576485, -0.00020938142552040517,
- 0.023818235844373703, 0.01978084072470665, -0.0036714482121169567, 0.20493102073669434,
- -0.16452185809612274, 0.001212679548189044, 0.12826570868492126, -0.1018771305680275,
- 0.3694007992744446, -0.014539171941578388, -0.03161287307739258, 0.043158091604709625,
- 0.10008417069911957, 0.0031612389720976353, 0.029107660055160522, 0.045123141258955,
- -0.04010471701622009, 0.01691368594765663, -0.03929809480905533, 0.04274588078260422,
- 0.058750592172145844, 0.028566574677824974, -0.005672506056725979, 0.12038834393024445,
- -0.015176576562225819, -0.01536001730710268, 0.003497996600344777, -0.06380873173475266,
- 0.10862448066473007, 0.06713982671499252, -0.05243595317006111, -0.022821715101599693,
- 0.08843507617712021, -0.08628807961940765, 0.04825609177350998, -0.08568532764911652,
- -0.0019340354483574629, 0.047861356288194656, 0.0766252651810646, -0.04626735299825668,
- 0.005958142224699259, -0.025784919038414955, 0.024574991315603256, 0.02435104176402092,
- 0.0855993926525116, 0.08446906507015228, 0.0035954639315605164, 0.07464543730020523,
- 0.057870734483003616, -0.05154811218380928, 0.006970630493015051, -0.07423973083496094,
- -0.046652454882860184, -0.02460559457540512, 0.005158160347491503, 0.06041773036122322,
- -0.0604732446372509, -0.22047264873981476, 0.060293711721897125, 0.03868488967418671,
- 0.008699223399162292, -0.028099577873945236, 0.010176126845180988, -0.06163507699966431,
- 0.01288209855556488, -0.051871754229068756, -0.03201695531606674, 0.05226743966341019,
- 0.0715215653181076, 0.07792234420776367, 0.10025892406702042, 0.0440768264234066,
- -0.03727297857403755, -0.030325213447213173, -0.004289394710212946,
- 0.003631679341197014, 0.10784419625997543, -0.1584327667951584, -0.046928584575653076,
- -0.007557964418083429, 0.009898180142045021, 0.7007477283477783, 0.1047048568725586,
- 0.1696225106716156, -0.017369944602251053, -0.016894100233912468, 0.18397727608680725,
- 0.00869788695126772, 0.022540058940649033, -0.08134140074253082, -0.059052564203739166,
- 0.007442057132720947, -0.05397544428706169, -0.020563041791319847, 0.014000874944031239,
- 0.025197844952344894, 0.12169478833675385, 0.006183321587741375, 0.09979214519262314,
- 0.011590666137635708, -0.13875812292099, -0.08806560933589935, 0.04887377843260765,
- 0.057027190923690796, -0.10169823467731476, -0.005296929273754358, 0.01387960184365511,
- 0.11655658483505249, -0.05425504595041275, 0.0011419582879170775, -0.06373106688261032,
- 0.0654226765036583, -0.036485690623521805, 0.03531484305858612, -0.027680736035108566,
- 0.027792971581220627, 0.06078911945223808, 0.043836019933223724, -0.01784474030137062,
- -0.04309431463479996, -0.04126548022031784, 0.15412437915802002, -0.03300905227661133,
- -0.0295838825404644, 0.03341083228588104, -0.07479182630777359, 0.028192872181534767,
- 0.04425504431128502, 0.1553415060043335, -0.1177121177315712, 0.07064014673233032,
- -0.02504221722483635, -0.007512345910072327, 0.07768233120441437,
- -0.0058774566277861595, -0.0640726238489151, -0.059958040714263916, 0.07500512897968292,
- 0.03052050992846489, 0.0597732774913311, 0.06726525723934174, -0.01896662265062332,
- 0.07041913270950317, 0.07361482083797455, 0.0116356136277318, -0.03177570179104805,
- 0.05216231942176819, 0.05808123201131821, -0.02670307457447052, -0.049767326563596725,
- 0.02004207856953144, -0.009435802698135376, 0.056117404252290726, 0.006178888492286205,
- 0.05958322808146477, -0.0011214877013117075, -0.02823408879339695, 0.021609243005514145,
- -0.026193827390670776, 0.0350201390683651, 0.06801729649305344, -0.08675076067447662,
- -0.06607923656702042, -0.03230012208223343, -0.028306085616350174,
- -0.009373834356665611, -0.03528878837823868, 0.09296219795942307, 0.08280224353075027,
- 0.08915086835622787, 0.06076871231198311, 0.009295248426496983, 0.06406648457050323,
- 0.07067202031612396, 0.010619057342410088, 0.06081496924161911, -0.01974419690668583,
- -0.07516799867153168, -0.039192888885736465, -0.0072243707254529, 0.043047476559877396,
- -0.00882016122341156, -0.07550527900457382, -0.01835399679839611, -0.047806087881326675,
- -0.023128921166062355, -0.07636402547359467, -0.010327024385333061,
- 0.016815394163131714, 0.06418214738368988, -0.021668020635843277, -0.10869302600622177,
- -0.09359867125749588, 0.023728573694825172, 0.09523308277130127, -0.028333768248558044,
- -0.02968364581465721, -0.09312702715396881, 0.01561006624251604, -0.04124724119901657,
- 0.04651310667395592, -0.010222701355814934, 0.023219328373670578,
- -0.0011176097905263305, -0.07813729345798492, 0.02624909207224846,
- -0.019400937482714653, -0.011114628054201603, -0.04608573019504547,
- -0.059373825788497925, -0.0265383031219244, -0.017300967127084732,
- 0.0071279010735452175, -0.06500952690839767, 0.034781865775585175, 0.03333211690187454,
- 0.05786692351102829, -0.0032745443750172853, 0.012123463675379753, 0.05753817409276962,
- -0.05910186097025871, 0.0020854074973613024, 0.09826086461544037, -0.047448936849832535,
- -0.00779814412817359, -0.04937855899333954, -0.08042579889297485, 0.001367985038086772,
- -0.022736631333827972, -0.0552537627518177, 0.07552709430456161, -0.04208429530262947,
- -0.03097427822649479, -0.021630333736538887, 0.01522868126630783, 0.033259253948926926,
- -0.06301210075616837, -0.04309738427400589, -0.07838691025972366, 0.13222701847553253,
- -0.011717474088072777, -0.004022133536636829, 0.0007045826059766114,
- -0.006699895020574331, 0.05617967247962952, 0.016051743179559708, 0.004512690473347902,
- 0.04895458370447159, 0.1014658659696579, -0.030583713203668594, 0.00773280393332243,
- 0.0832580104470253, -0.03783082216978073, -0.014607657678425312, 0.08208685368299484,
- 0.43396273255348206, -0.2551729679107666, 0.049002233892679214, 0.10862582921981812,
- 0.025848427787423134, 0.06313244998455048, -0.034709829837083817, 0.08021777123212814,
- 0.05789037421345711, 0.14748691022396088, 0.10526605695486069, -0.05678970739245415,
- 0.03599195182323456, -0.05817840248346329, 0.06754017621278763, 0.025161996483802795,
- 0.028673361986875534, -0.030780920758843422, -0.08158330619335175, -0.03139345720410347,
- 0.052856601774692535, -0.029985126107931137, 0.020099325105547905, 0.037195947021245956,
- -0.04234644025564194, 0.03912273421883583, 0.08861489593982697, 0.052471090108156204,
- -0.05658317357301712, 0.026507383212447166, -0.04955553635954857, 0.04959532618522644,
- -0.02281816676259041, 0.04736991971731186, -0.16972582042217255, 0.015927616506814957,
- -0.04400530830025673, -0.11358223855495453, 0.0797119066119194, 0.010031688958406448,
- 0.09851711988449097, 0.03940940275788307, -0.040663525462150574, 0.024825282394886017,
- 0.01635049656033516, -0.03095935843884945, 0.025393012911081314, 0.07909856736660004,
- 0.019662637263536453, 0.08423177152872086, 0.13709887862205505, -0.01963196136057377,
- -0.055064499378204346, -0.08593293279409409, 0.0571688637137413, 0.11861169338226318,
- -0.04645619913935661, -0.006242041941732168, -0.03646961599588394,
- -0.0029775432776659727, -0.00916278176009655, -0.05822758749127388,
- -0.06266383081674576, -0.05521778017282486, -0.04986075684428215, 0.06573919951915741,
- 0.03648938983678818, -0.02818487584590912, -0.16165952384471893, -0.0501512810587883,
- -0.023774536326527596, -0.022732451558113098, 0.1580905169248581, -0.06808370351791382,
- -0.022992264479398727, -0.0016863811761140823, -0.028030643239617348,
- -0.006999454461038113, -0.11161945760250092, 0.014936989173293114, -0.07448883354663849,
- 0.01715443655848503, 0.046905241906642914, 0.04898534342646599, -0.07463441044092178,
- 0.09409376978874207, -0.09421338140964508, 0.08163848519325256, 0.013869985938072205,
- 0.012395312078297138, 0.026616528630256653, -0.04264022782444954, 0.03292360156774521,
- 0.044082608073949814, -0.09025537967681885, 0.01973477564752102, -0.056525349617004395,
- -0.04470278322696686, -0.08738652616739273, -0.10632511228322983, -0.03739063814282417,
- -0.09604313224554062, 0.07080864161252975, -0.09643937647342682, -0.011746630072593689,
- -0.0276336632668972, -0.01594514586031437, 0.00788926798850298, 0.03909384459257126,
- 0.032521527260541916, -0.1263892948627472, -0.007230798713862896, -0.002967245876789093,
- 0.04948308691382408, -0.01729593798518181, -0.03102411888539791, -0.01689024083316326,
- 0.08623024076223373, 0.0466732382774353, -0.005353921093046665, -0.01651812717318535,
- -0.047033000737428665, 0.0548991858959198, -0.14440856873989105, -0.486436128616333,
- 0.04491638019680977, 0.06897696852684021, 0.04132074862718582, 0.020613934844732285,
- -0.08543737232685089, -0.005311344284564257, 0.0015317562501877546, -0.035401601344347,
- 0.11427702009677887, -0.051166463643312454, 0.020717991515994072, -0.022641044110059738,
- -0.07553080469369888, -0.03085784986615181, -0.07236392050981522, -0.032402168959379196,
- 0.06982602924108505, 0.0077611603774130344, -0.11378403753042221, -0.102206751704216,
- 0.06922642141580582, -0.025254130363464355, 0.010482323355972767, -0.023589052259922028,
- 0.020806673914194107, -0.036818910390138626, -0.058043222874403, 0.020264623686671257,
- 0.06604190915822983, 0.01924237422645092, -0.10012368857860565, -0.050807975232601166,
- 0.06531484425067902, -0.01564541831612587, 0.12548890709877014, 0.023290444165468216,
- -0.020848464220762253, -0.10486433655023575, 0.04462805762887001, 0.04500846937298775,
- 0.18722088634967804, -0.004557335749268532, 0.043657440692186356, 0.015713399276137352,
- 0.15214955806732178, 0.013633963651955128, 0.04535796865820885, -0.027622181922197342,
- 0.0045862034894526005, -0.003818327095359564, -0.001647969358600676,
- 0.049578361213207245, -0.09357921034097672, -0.020649965852499008, 0.014767433516681194,
- -0.020922182127833366, 0.006857471074908972, -0.005290240980684757, 0.1920613944530487,
- 0.017092939466238022, 0.03480467572808266, 0.008112705312669277, -0.05402250960469246,
- 0.0033769875299185514, -0.053681861609220505, -0.036244072020053864,
- -0.007457769010215998, -0.0014938304666429758, 0.0018440273124724627,
- -0.038348741829395294, -0.08510380238294601, -0.010514631867408752,
- -0.011911059729754925, -0.007862770929932594, 0.1210356205701828, -0.003151688724756241,
- 0.006397627294063568, -0.05753645300865173, 0.14795127511024475, 0.047795381397008896,
- -0.010302165523171425, 0.038564395159482956, 0.08080091327428818, 0.0781787782907486,
- -0.037508025765419006, -0.02328946255147457, -0.09279182553291321, 0.024437937885522842,
- 0.1473979651927948, -0.04862583428621292, 0.11284291744232178, 0.03972563520073891,
- -0.02065921574831009, -0.048927538096904755, 0.002503323834389448, 0.022515147924423218,
- 0.011267544701695442, -0.4834679663181305, -0.05242360755801201, 0.11473492532968521,
- -0.01800994575023651, 0.014267941936850548, 0.06756138801574707, 0.03593845292925835,
- -0.0345178060233593, -0.000291762116830796, -0.09354627132415771, 0.11063773930072784,
- 0.02065502479672432, 0.08735521137714386, -0.09070734679698944, 0.007448279764503241,
- 0.0561528205871582, -0.06111230328679085, -0.007898542098701, 0.05104590207338333,
- -0.21383681893348694, 0.0026991800405085087, -0.05949736759066582, 0.14828798174858093,
- -0.024296734482049942, 0.026070892810821533, 0.08420787751674652, -0.019705433398485184,
- 0.036878928542137146, 0.07519341260194778, -0.004774042870849371, 0.06387545168399811,
- 0.03171301633119583, -0.013706943020224571, 0.11508951336145401, 0.07525153458118439,
- 0.08208706229925156, 0.006414416246116161, 11.892651557922363, 0.0635918453335762,
- 0.0736001580953598, -0.05410417914390564, 0.06273603439331055, -0.07805280387401581,
- 0.0237463116645813, -0.05844193696975708, 0.04457970708608627, 0.10672620683908463,
- -0.00729785580188036, -0.022120773792266846, -0.03244423866271973, -0.10593227297067642,
- 0.030283857136964798, -0.034999363124370575, -0.051417212933301926,
- -0.021936312317848206, 0.04637831449508667, -0.05870898440480232, -0.07263975590467453,
- 0.0006037660059519112, 0.049364060163497925, 0.02242516539990902, -0.08928514271974564,
- 0.01593690738081932, 0.044202037155628204, 0.002559125889092684, -0.0014578141272068024,
- 0.04481244459748268, 0.018156008794903755, 0.07864484935998917, 0.005538365803658962,
- 0.06010376662015915, 0.031924065202474594, -0.02274473011493683, 0.03258119896054268,
- 0.028869593515992165, 0.033283572643995285, 0.07389803975820541, 0.013452192768454552,
- 0.015972305089235306, 0.023949995636940002, 0.04044245928525925, 0.05366269499063492,
- 0.024659201502799988, 0.004305996932089329, 0.12083413451910019, -0.010952210985124111,
- 0.05599465221166611, 0.11067567020654678, -0.01149316318333149, 0.11682777106761932,
- 0.04347871616482735, 0.01501657534390688, 0.05275341123342514, -0.03369184210896492,
- -0.09816435724496841, 0.09491100162267685, 0.07748790085315704, -0.05584464594721794,
- 0.09162621200084686, -0.0015104226768016815, 0.08256037533283234, -0.015678301453590393,
- 0.055498551577329636, 0.10397310554981232, 0.08013646304607391, -0.09845198690891266,
- -0.06089261919260025, 0.011977793648838997, -0.09508919715881348, -0.10887613147497177,
- 0.0778888389468193, 0.0855996385216713, -0.023631416261196136, 0.04867548495531082,
- -0.08254368603229523, 0.019245177507400513, -0.016673168167471886,
- -0.000301298510748893, 0.056024886667728424, -0.012045785784721375,
- -0.019543910399079323, 0.05898793414235115, 0.047972485423088074, 0.05524599552154541,
- 0.07661905884742737, 0.017547298222780228, -0.04484580084681511, -0.07605890184640884,
- 0.10112764686346054, -0.011511420831084251, -0.054912637919187546, 0.028614003211259842,
- -0.038018614053726196, 0.06513170897960663, -0.1588185876607895, 0.05511228367686272,
- 0.07118532806634903, -0.08878059685230255, -0.0377679169178009, -0.04127447307109833,
- 0.0672294944524765, -0.04175419732928276, 0.08592472970485687, -0.07427002489566803,
- 0.012065629474818707, 0.014792680740356445, 0.039630938321352005,
- -0.0007336630951613188, 0.07464579492807388, 0.08143278956413269, -0.11980237066745758,
- 0.05424673482775688, 0.047334931790828705, -0.027415484189987183, -0.012457655742764473,
- 0.06797961890697479, 0.004289034754037857, -0.07402019202709198, -0.03373081237077713,
- -0.05929673835635185, -0.04523186758160591, -0.059103526175022125,
- -0.010919665917754173, -0.008171932771801949, 0.08552037924528122, -0.06386594474315643,
- -0.031812526285648346, 0.04331205412745476, 0.0395570807158947, 0.10323375463485718,
- -0.029647519811987877, 0.03687363490462303, -0.054943062365055084, -0.05381719022989273,
- 0.05060151219367981, 0.06573020666837692, 0.0767541155219078, -0.015324975363910198,
- -0.030590873211622238, -0.042977310717105865, -0.1066165342926979, 0.043056271970272064,
- 0.06802816689014435, 0.03636906296014786, 0.08221541345119476, 0.05300666019320488,
- -0.06834535300731659, -0.016199639067053795, 0.05519207566976547, 0.02487618662416935,
- 0.0055706859566271305, 0.011653756722807884, -0.08176794648170471, -0.04814034700393677,
- 0.1153697520494461, -0.05011575669050217, 0.009822041727602482, -0.019082387909293175,
- -0.022880354896187782, 0.0698460191488266, 0.08117000013589859, 0.046594299376010895,
- 0.05828874185681343, 0.07727225869894028, -0.0056154727935791016, 0.002682130318135023,
- -0.019244840368628502, 0.015833601355552673, -0.0241536907851696, -0.12978938221931458,
- -0.09392144531011581, 0.04192296043038368, 0.09778648614883423, -0.0024104532785713673,
- -0.11314624547958374, -0.03265361860394478, -0.018757451325654984
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 241,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Des Bieler"],
- "epoch_date_downloaded": 1658707200,
- "epoch_date_modified": 1658707200,
- "epoch_date_submitted": 1658707200,
- "flag": null,
- "report_number": 1781,
- "source_domain": "washingtonpost.com",
- "submitters": ["Daniel Atherton (BNH.ai)"],
- "title": "Chess-playing robot breaks finger of 7-year-old boy during match",
- "url": "https://www.washingtonpost.com/sports/2022/07/24/chess-playing-robot-breaks-finger-7-year-old-boy-during-match/"
- },
- {
- "__typename": "Report",
- "authors": ["Sounak Mukhopadhyay"],
- "epoch_date_downloaded": 1658707200,
- "epoch_date_modified": 1658620800,
- "epoch_date_submitted": 1658620800,
- "flag": null,
- "report_number": 1776,
- "source_domain": "livemint.com",
- "submitters": ["Sundar Narayanan"],
- "title": "AI gone wrong? Chess robot breaks child's finger at Russia tournament",
- "url": "https://www.livemint.com/news/world/ai-gone-wrong-chess-robot-breaks-child-s-finger-at-russia-tournament-11658674872366.html"
- },
- {
- "__typename": "Report",
- "authors": ["Jon Henley"],
- "epoch_date_downloaded": 1658707200,
- "epoch_date_modified": 1658620800,
- "epoch_date_submitted": 1658620800,
- "flag": null,
- "report_number": 1774,
- "source_domain": "theguardian.com",
- "submitters": ["Neama Dadkhahnikoo"],
- "title": "Chess robot grabs and breaks finger of seven-year-old opponent",
- "url": "https://www.theguardian.com/sport/2022/jul/24/chess-robot-grabs-and-breaks-finger-of-seven-year-old-opponent-moscow"
- },
- {
- "__typename": "Report",
- "authors": ["Giulia Carbonaro"],
- "epoch_date_downloaded": 1658707200,
- "epoch_date_modified": 1658620800,
- "epoch_date_submitted": 1658620800,
- "flag": null,
- "report_number": 1773,
- "source_domain": "newsweek.com",
- "submitters": ["Sean McGregor"],
- "title": "Chess robot goes rogue, breaks seven-year-old player's finger",
- "url": "https://www.newsweek.com/chess-robot-goes-rogue-breaks-seven-year-old-player-child-finger-1727104"
- },
- {
- "__typename": "Report",
- "authors": ["newsbeezer.com"],
- "epoch_date_downloaded": 1658534400,
- "epoch_date_modified": 1658620800,
- "epoch_date_submitted": 1658534400,
- "flag": null,
- "report_number": 1772,
- "source_domain": "newsbeezer.com",
- "submitters": ["Luna McNulty"],
- "title": "A chess robot in Moscow has broken the finger of its human opponent",
- "url": "https://newsbeezer.com/czechrepubliceng/a-chess-robot-in-moscow-has-broken-the-finger-of-its-human-opponent/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "chakan-plant-of-automotive-stampings-and-assemblies",
- "name": "Chakan plant of Automotive Stampings and Assemblies"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "unknown",
- "name": "Unknown"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "umesh-ramesh-dhake",
- "name": "Umesh Ramesh Dhake"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1775],
- "vector": [
- -0.11073023825883865, 0.06367138028144836, 0.025166228413581848, -0.14818577468395233,
- 0.05137086659669876, -0.09389183670282364, 0.03466549143195152, 0.03358935937285423,
- 0.03950450196862221, -0.14440442621707916, -0.043697286397218704, 0.0347612090408802,
- 0.04147741198539734, -0.037014953792095184, 0.02860742248594761, -0.18506991863250732,
- -0.00659753754734993, -0.04712091013789177, 0.016490614041686058, -0.07487111538648605,
- -0.0931444764137268, 0.07641791552305222, 0.06979039311408997, 0.0442173071205616,
- -0.0024694642052054405, 0.05718296766281128, 0.11913495510816574, 0.17169250547885895,
- -0.10322591662406921, 0.017229802906513214, -0.026410352438688278, -0.02354932762682438,
- 0.1771874576807022, 0.06448224186897278, 0.0008163692546077073, 0.08370471745729446,
- 0.03796852380037308, -0.011660771444439888, 0.016365714371204376, -0.018793269991874695,
- 0.016192905604839325, 0.20258790254592896, 0.016809159889817238, -0.1765832006931305,
- 0.07311009615659714, -0.03638136759400368, 0.06560010462999344, 0.08757931739091873,
- 0.05689917504787445, 0.04661814123392105, -0.03510460630059242, 0.11473587900400162,
- -0.007557150442153215, 0.04588346183300018, -0.10159657895565033, 0.04715045541524887,
- 0.03972269222140312, 0.06334028393030167, 0.08017642050981522, -0.1465250700712204,
- -0.04066026210784912, -0.20528408885002136, -0.06700105965137482, -0.14240233600139618,
- 0.1916601061820984, -0.14575394988059998, -0.0818292573094368, -0.0188236553221941,
- -0.018495706841349602, 0.09676267206668854, 0.03096465766429901, -0.03721834346652031,
- 0.00001481015351600945, -0.05332101508975029, 0.015707962214946747,
- 0.030950529500842094, -0.003176253056153655, 0.3214569091796875, -0.18085449934005737,
- -0.06283999234437943, 0.09540026634931564, -0.12218063324689865, 0.476613849401474,
- 0.03789437934756279, -0.008401760831475258, -0.049226097762584686, 0.1501815766096115,
- 0.03246264532208443, 0.07981300354003906, 0.09957776218652725, 0.005694666411727667,
- -0.005029984749853611, 0.010293357074260712, -0.004553209990262985, 0.0471748523414135,
- 0.05811087414622307, -0.02061394229531288, 0.08563069254159927, -0.01856948807835579,
- -0.018784021958708763, 0.07966988533735275, -0.08034396171569824, 0.07170175015926361,
- 0.053475722670555115, -0.09156494587659836, -0.01603536680340767, 0.15978625416755676,
- -0.10333047062158585, 0.07651941478252411, 0.04203250631690025, 0.049940839409828186,
- 0.04941759631037712, 0.08517522364854813, 0.006819921545684338, 0.010044516995549202,
- -0.06351841241121292, 0.031178979203104973, 0.05161513388156891, 0.07525599747896194,
- 0.033540595322847366, -0.030899472534656525, 0.022963587194681168, 0.1225358247756958,
- 0.018010804429650307, 0.057577867060899734, -0.0449700653553009, -0.02097136713564396,
- -0.027675101533532143, -0.057502325624227524, -0.04008348658680916,
- -0.09738453477621078, -0.2842567563056946, -0.008639160543680191, 0.0038218596018850803,
- 0.042434632778167725, 0.0036607799120247364, -0.040986932814121246,
- 0.014264625497162342, 0.00900308508425951, -0.03262399509549141, -0.028447112068533897,
- 0.04884500801563263, 0.04078936576843262, 0.11554837226867676, 0.06442298740148544,
- 0.14775417745113373, -0.02573000267148018, -0.05507373437285423, 0.024801937863230705,
- 0.03090360015630722, 0.14468371868133545, -0.18433934450149536, 0.014387138187885284,
- 0.018229026347398758, -0.021538859233260155, 0.6922388672828674, 0.0939992144703865,
- 0.19370156526565552, 0.05296733230352402, -0.071035236120224, 0.16336409747600555,
- 0.08032871782779694, 0.021710684522986412, -0.06853991001844406, -0.04990819841623306,
- 0.006612878758460283, -0.0842035636305809, -0.019556306302547455, 0.018324486911296844,
- -0.007514383643865585, 0.145568385720253, 0.07118094712495804, 0.15666981041431427,
- 0.027628157287836075, -0.07481176406145096, -0.08167889714241028, 0.1305239051580429,
- -0.04433649405837059, -0.09362921863794327, -0.024981755763292313, 0.01511977706104517,
- 0.06558554619550705, -0.025419345125555992, 0.04083383455872536, -0.011919240467250347,
- -0.004512460436671972, -0.021974563598632812, 0.08671163767576218, -0.05014414340257645,
- -0.02398882806301117, 0.08279508352279663, 0.030284523963928223, 0.06267724931240082,
- -0.05988544225692749, -0.08070169389247894, 0.1399964839220047, 0.054376546293497086,
- 0.056735023856163025, 0.10961765050888062, -0.15369337797164917, -0.09232360869646072,
- -0.02211569994688034, 0.08527762442827225, -0.09287135303020477, 0.04803956300020218,
- 0.010484828613698483, -0.05745738744735718, 0.10324277728796005, -0.0354560986161232,
- -0.03261641412973404, -0.08284824341535568, 0.044687606394290924, 0.05128244310617447,
- 0.06249045953154564, 0.12489498406648636, -0.006652757991105318, 0.004921740386635065,
- 0.1361372321844101, -0.024542689323425293, 0.026061495766043663, 0.07948068529367447,
- 0.015670834109187126, -0.024769391864538193, 0.03534262627363205, 0.0032333217095583677,
- -0.01696370169520378, 0.01086482871323824, 0.002301490865647793, 0.012080303393304348,
- -0.003601841861382127, -0.07744664698839188, 0.03943915665149689,
- -0.0017304755747318268, 0.04330071061849594, 0.08149794489145279, -0.010240884497761726,
- -0.08062537014484406, -0.050583142787218094, -0.029759632423520088, 0.04314986988902092,
- -0.010765884071588516, 0.14544272422790527, 0.12013142555952072, 0.0980665385723114,
- 0.1055026650428772, 0.026058508083224297, -0.0010793836554512382, 0.12241896986961365,
- 0.06935279071331024, 0.04349517449736595, -0.0758451372385025, -0.16866068542003632,
- -0.04463118314743042, 0.009687729179859161, 0.03426102548837662, 0.05042506381869316,
- -0.08246343582868576, -0.026166807860136032, -0.014551253989338875, -0.1015293225646019,
- -0.06831684708595276, -0.008809645660221577, 0.010107760317623615, 0.08984988182783127,
- -0.01763901859521866, -0.12030570954084396, -0.08981138467788696, 0.057059116661548615,
- 0.07242042571306229, 0.017272604629397392, -0.006872976664453745, -0.09963247925043106,
- -0.048978399485349655, 0.05070783197879791, 0.04569719359278679, -0.009597544558346272,
- 0.04736250638961792, 0.0010560499504208565, -0.060053255409002304, 0.044219452887773514,
- -0.02200455032289028, -0.03958936035633087, -0.1628415435552597, -0.17611238360404968,
- -0.08786632120609283, 0.0333310067653656, -0.008662043139338493, 0.020618900656700134,
- 0.04172724112868309, 0.06150532141327858, -0.0013686768943443894, -0.04300541803240776,
- -0.024560261517763138, 0.01116140279918909, -0.011973457410931587,
- 0.0010491636348888278, 0.07385912537574768, -0.09001105278730392, 0.037280693650245667,
- 0.01620238646864891, 0.0036809484008699656, -0.08076998591423035, 0.03577800095081329,
- -0.06153317540884018, -0.05661552771925926, -0.04482358694076538, -0.03408018499612808,
- -0.009871774353086948, -0.028668802231550217, 0.09341756254434586, -0.0819050595164299,
- -0.027153255417943, -0.09183290600776672, 0.09670936316251755, 0.03708808496594429,
- 0.009551092982292175, 0.014816654846072197, -0.01565203070640564, -0.03736794367432594,
- -0.09408486634492874, 0.006560378707945347, -0.017552994191646576, 0.17547622323036194,
- -0.07794326543807983, -0.08866019546985626, 0.02077101171016693, 0.03953123465180397,
- -0.002437315648421645, 0.12922722101211548, 0.46844378113746643, -0.1462937593460083,
- 0.06684005260467529, 0.12661626935005188, 0.06606551259756088, 0.05324774980545044,
- -0.04272067919373512, 0.058161355555057526, 0.054779302328825, 0.07405545562505722,
- 0.19639459252357483, 0.007409943267703056, -0.0167057104408741, -0.1189541444182396,
- 0.14819924533367157, 0.030701177194714546, 0.021120527759194374, -0.007765414658933878,
- -0.08602684736251831, -0.060384683310985565, 0.013195306062698364, -0.06667650490999222,
- -0.028253698721528053, -0.05593722313642502, -0.060322824865579605,
- -0.026996338739991188, 0.06394988298416138, -0.008557996712625027,
- -0.011638821102678776, 0.0092493100091815, -0.13765449821949005, 0.009998456574976444,
- 0.01739419624209404, 0.0955018624663353, -0.1477467119693756, 0.08455952256917953,
- -0.12094606459140778, -0.04707156494259834, 0.16083945333957672, -0.018680917099118233,
- 0.08201536536216736, 0.04861747473478317, -0.08210345357656479, 0.03200044482946396,
- -0.03948239982128143, -0.009950424544513226, 0.0681488960981369, 0.03675244748592377,
- 0.11965574324131012, 0.10751040279865265, 0.23596036434173584, -0.10348780453205109,
- -0.04518229141831398, -0.08974358439445496, 0.002812123391777277, 0.20072142779827118,
- -0.009961229749023914, -0.03418562561273575, -0.01772329956293106,
- -0.044012002646923065, 0.044940851628780365, -0.04091881588101387, -0.10361780971288681,
- 0.008324757218360901, 0.008675915189087391, 0.061889007687568665, 0.008764798752963543,
- 0.03895162045955658, -0.1536102294921875, 0.021073810756206512, -0.022051941603422165,
- 0.022950930520892143, 0.022414056584239006, -0.049565013498067856, 0.028912700712680817,
- -0.010997128672897816, -0.048227474093437195, 0.139700248837471, -0.15856468677520752,
- 0.031054414808750153, -0.11430665105581284, 0.07326044887304306, 0.05160141363739967,
- 0.05166390910744667, -0.06485840678215027, 0.03962988406419754, -0.04765826836228371,
- 0.10843163728713989, 0.07330810278654099, 0.048795245587825775, 0.06060827150940895,
- -0.03769949451088905, -0.002542799338698387, 0.04686753451824188, -0.0153010543435812,
- 0.019889717921614647, -0.011033096350729465, -0.03149813413619995, -0.10585989058017731,
- -0.07285983115434647, 0.019391756504774094, -0.07643146812915802, 0.06660162657499313,
- -0.11616870015859604, -0.06378839910030365, 0.004249144811183214, 0.03566049039363861,
- -0.06070725992321968, 0.015522115863859653, 0.0576460175216198, -0.11739309132099152,
- 0.0664660632610321, -0.03278045728802681, 0.10828132927417755, -0.08380471915006638,
- -0.029852857813239098, 0.052555304020643234, 0.13599468767642975, 0.05354251712560654,
- 0.008211284875869751, 0.11390405893325806, -0.06800150126218796, 0.030011778697371483,
- -0.11312930285930634, -0.4264357089996338, 0.07379584014415741, 0.006910558324307203,
- 0.013364462181925774, 0.0028478943277150393, -0.009531078860163689, 0.10893408209085464,
- 0.0386238768696785, -0.02308184839785099, 0.08771273493766785, -0.08489691466093063,
- -0.005975907202810049, -0.053718846291303635, -0.0957450196146965, -0.02430371195077896,
- -0.047898732125759125, -0.057925499975681305, 0.0659736692905426, -0.09593342244625092,
- -0.08415313065052032, -0.19986625015735626, 0.017801497131586075, -0.0241688285022974,
- 0.0163270290941, -0.029939979314804077, -0.007216505240648985, -0.04773179814219475,
- -0.017354628071188927, 0.07109237462282181, -0.06839937716722488, 0.018854722380638123,
- -0.10907675325870514, 0.0014010510640218854, 0.0960952416062355, -0.00960735883563757,
- 0.11483428627252579, -0.0014377065235748887, 0.02318791300058365, -0.0820734053850174,
- 0.09841505438089371, 0.07839097082614899, 0.18052925169467926, -0.08012181520462036,
- 0.08202006667852402, -0.018054988235235214, 0.08238469809293747, 0.024465320631861687,
- 0.04294396564364433, -0.05707132816314697, 0.03633127361536026, 0.06393064558506012,
- 0.025428952649235725, 0.11357839405536652, -0.04683627933263779, -0.041772596538066864,
- -0.04886060953140259, 0.07606489211320877, -0.020593246445059776, 0.012051225639879704,
- 0.1605995148420334, 0.020475277677178383, 0.023105191066861153, -0.012464364990592003,
- -0.07921021431684494, 0.015362376347184181, 0.04509424418210983, -0.1073448583483696,
- -0.07854809612035751, -0.016811992973089218, 0.08094502985477448, -0.07745494693517685,
- -0.11413489282131195, -0.01802341639995575, -0.06379333138465881, -0.027667483314871788,
- 0.027398446574807167, -0.0343635119497776, 0.006348287686705589, -0.0832708403468132,
- 0.08718282729387283, 0.06620945036411285, 0.011616349220275879, 0.043085984885692596,
- 0.1016419529914856, -0.015641015022993088, -0.050578996539115906, -0.026389870792627335,
- -0.0838683694601059, 0.02088073082268238, 0.12222899496555328, 0.011258372105658054,
- 0.10613339394330978, 0.0960683673620224, -0.049420036375522614, -0.09965969622135162,
- -0.016611173748970032, -0.02892340160906315, 0.05290492996573448, -0.5520917773246765,
- 0.0026363793294876814, 0.15393389761447906, 0.006687212735414505, -0.01433388702571392,
- 0.05942694842815399, 0.0831465870141983, -0.03725302591919899, 0.07037555426359177,
- -0.06584279984235764, 0.12936021387577057, -0.006963364314287901, 0.10506460070610046,
- -0.08948702365159988, 0.0021272841840982437, 0.08027983456850052, -0.04995157569646835,
- 0.028081171214580536, 0.0025324656162410975, -0.2993524968624115,
- -0.0008961634011939168, -0.11962727457284927, 0.1561431586742401, 0.06302771717309952,
- 0.0901503935456276, 0.05633649230003357, -0.055988091975450516, 0.11749355494976044,
- 0.08399344235658646, 0.05932070314884186, 0.036722395569086075, -0.002486615441739559,
- -0.06323052197694778, 0.08728329837322235, 0.032171640545129776, 0.06715027987957001,
- -0.01095125637948513, 12.268301963806152, 0.11373504996299744, 0.06898614764213562,
- -0.09367714822292328, 0.058083146810531616, -0.04576634615659714, 0.01378003228455782,
- -0.15941044688224792, -0.00029255091794766486, 0.08170750737190247,
- 0.022995878010988235, -0.12249329686164856, -0.05338786914944649, -0.08174286037683487,
- -0.007167411502450705, -0.0054906075820326805, 0.031055405735969543,
- -0.11528760194778442, 0.017879784107208252, -0.08754076063632965, -0.034452833235263824,
- 0.005660736933350563, 0.053422197699546814, 0.059442564845085144, -0.06127765402197838,
- 0.05504998937249184, 0.08138580620288849, -0.07309827208518982, 0.01990797370672226,
- 0.08373375982046127, 0.01904088631272316, 0.027352947741746902, -0.015354710631072521,
- 0.10426097363233566, 0.032985784113407135, 0.031428661197423935, -0.021918591111898422,
- 0.0273125059902668, 0.06480872631072998, 0.03728845342993736, 0.03403180092573166,
- 0.017892304807901382, 0.03415289148688316, 0.07804116606712341, -0.002410181565210223,
- -0.007674749940633774, 0.03144223242998123, 0.12786267697811127, -0.05029300972819328,
- -0.0004238912952132523, 0.062018007040023804, 0.04493839666247368, 0.08125264197587967,
- -0.00789096113294363, 0.05275781452655792, 0.14083757996559143, -0.028379611670970917,
- -0.04042740911245346, 0.13327963650226593, 0.1212920993566513, -0.027840014547109604,
- 0.01061851903796196, 0.010872874408960342, 0.0721244215965271, -0.10756666213274002,
- 0.048402294516563416, 0.15764348208904266, -0.031320780515670776, -0.193177729845047,
- -0.007089999970048666, -0.020668620243668556, -0.14034056663513184,
- -0.10578802973031998, -0.004050278104841709, -0.008194980211555958,
- -0.06313765048980713, 0.09734538197517395, -0.06051962450146675, 0.028292331844568253,
- -0.052220072597265244, -0.03980867564678192, 0.07039535790681839, -0.11197517067193985,
- 0.020892594009637833, 0.06700059771537781, 0.07178439944982529, 0.10988190770149231,
- 0.034485846757888794, -0.030787091702222824, -0.11284641176462173, -0.08848240226507187,
- 0.08729451149702072, -0.01879792846739292, -0.09653057157993317, 0.006734899710863829,
- -0.1012437716126442, -0.0006511882529594004, -0.18093322217464447, 0.08106793463230133,
- 0.06507427245378494, -0.1587502360343933, -0.019711052998900414, -0.05371292307972908,
- 0.009885523468255997, -0.0784752368927002, 0.012783300131559372, -0.10615816712379456,
- 0.03221586346626282, -0.024112047627568245, 0.04252028837800026, -0.0038461654912680387,
- 0.08800162374973297, 0.12619881331920624, -0.04525862634181976, 0.06137217953801155,
- 0.06172555685043335, -0.02443624846637249, -0.044985927641391754, 0.0017298262100666761,
- 0.003595084650442004, -0.03520101308822632, -0.0380546860396862, -0.08928388357162476,
- -0.08130728453397751, -0.0654313936829567, -0.0044911582954227924,
- -0.047435566782951355, 0.03969017416238785, -0.07426288723945618, 0.018109839409589767,
- 0.01571005769073963, 0.026046281680464745, 0.0002507267636246979, 0.03359297290444374,
- 0.039495136588811874, -0.09378839284181595, -0.07119891047477722, 0.07922521978616714,
- 0.010648421011865139, 0.08230867236852646, -0.021425366401672363, -0.06749099493026733,
- -0.02619274891912937, -0.0930975005030632, 0.061303894966840744, 0.14362512528896332,
- 0.05654440447688103, 0.056472476571798325, 0.08410290628671646, -0.06445827335119247,
- -0.1453464925289154, 0.12391674518585205, 0.03699447959661484, 0.005189746618270874,
- -0.017928648740053177, -0.08084048330783844, -0.028974048793315887, 0.17859522998332977,
- 0.02196425572037697, 0.005496382247656584, -0.0010794933186843991, 0.02221735380589962,
- 0.1740083247423172, 0.08128882199525833, 0.11838974803686142, 0.06961432844400406,
- -0.012072551064193249, 0.004009257070720196, -0.09424802660942078,
- -0.013013985008001328, 0.023351823911070824, 0.002936476608738303, -0.1359812617301941,
- -0.07411205023527145, 0.021496638655662537, 0.05438147112727165, -0.030665580183267593,
- -0.07872678339481354, -0.022414594888687134, -0.0711655467748642
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 242,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Express News Service"],
- "epoch_date_downloaded": 1658188800,
- "epoch_date_modified": 1658620800,
- "epoch_date_submitted": 1658188800,
- "flag": null,
- "report_number": 1775,
- "source_domain": "indianexpress.com",
- "submitters": ["Sonali Pednekar (CSET)"],
- "title": "Injured critically in accident involving industrial robot, factory employee dies",
- "url": "https://indianexpress.com/article/cities/pune/injured-critically-in-accident-involving-industrial-robot-factory-employee-dies-7204970/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "unknown",
- "name": "Unknown"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "unknown",
- "name": "Unknown"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "twitter-users-participating-in-covid-19-discussions",
- "name": "Twitter users participating in COVID-19 discussions"
- },
- {
- "__typename": "Entity",
- "entity_id": "twitter-users",
- "name": "Twitter Users"
- },
- {
- "__typename": "Entity",
- "entity_id": "twitter",
- "name": "Twitter"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1778, 1777],
- "vector": [
- -0.05682700127363205, 0.06898163259029388, 0.014929451048374176, -0.10253094136714935,
- 0.08060698211193085, -0.012328429147601128, 0.0036274916492402554, 0.06978707760572433,
- 0.05983441323041916, -0.12248183786869049, 0.018444709479808807, 0.04340221360325813,
- 0.0124064264819026, -0.1353323608636856, 0.018482346087694168, -0.13053202629089355,
- -0.10000596940517426, -0.02533942088484764, 0.00013550813309848309,
- -0.12205922603607178, -0.057686954736709595, 0.00016881339251995087,
- -0.022477030754089355, 0.12243784964084625, -0.06263560801744461, 0.025299713015556335,
- 0.08286185562610626, 0.10137137025594711, -0.036856673657894135, 0.05976594612002373,
- -0.04402393102645874, -0.09471991658210754, 0.15021497011184692, 0.0013201023684814572,
- 0.017638536170125008, 0.10821107029914856, 0.0049580601043999195, -0.040196824818849564,
- -0.020900122821331024, 0.0015653226291760802, 0.04385649412870407, 0.2634449601173401,
- 0.01234945934265852, -0.012616124004125595, 0.057621993124485016, -0.043850988149642944,
- -0.01071875635534525, 0.06775574386119843, -0.004536688793450594, 0.023493317887187004,
- -0.038980673998594284, 0.06021377444267273, -0.04798339307308197, 0.011063210666179657,
- -0.12174509465694427, 0.08362358808517456, 0.06235090643167496, -0.02815604954957962,
- 0.04847630113363266, -0.10604630410671234, -0.021834248676896095, -0.2755542993545532,
- -0.015939122065901756, -0.06257838010787964, 0.09331008791923523, -0.08189599215984344,
- -0.053488943725824356, -0.028994277119636536, 0.013068792410194874, 0.07947209477424622,
- 0.06730620563030243, -0.020688187330961227, -0.017334936186671257, 0.03857438266277313,
- 0.013039758428931236, -0.05611017346382141, 0.008408237248659134, 0.17630837857723236,
- -0.06143331900238991, 0.03240383416414261, 0.09838710725307465, -0.08505155146121979,
- 0.43999847769737244, 0.020988568663597107, 0.0022450098767876625, -0.028846189379692078,
- 0.08566668629646301, 0.009331691078841686, 0.03700583055615425, 0.028604118153452873,
- -0.0389682799577713, 0.030620073899626732, -0.04893925040960312, 0.025992196053266525,
- 0.044116515666246414, 0.00792764127254486, -0.02458467334508896, -0.0038938242942094803,
- -0.021345293149352074, -0.057735323905944824, -0.005369588732719421,
- -0.021941570565104485, 0.0937361866235733, 0.0829443410038948, -0.01662277989089489,
- 0.01713608019053936, 0.04563349112868309, -0.06559953093528748, 0.06924337148666382,
- -0.05315317213535309, 0.036715611815452576, -0.06803402304649353, 0.056238070130348206,
- -0.019408807158470154, 0.022307302802801132, -0.01926564611494541,
- 0.0016953414306044579, 0.07171674072742462, 0.09539973735809326, 0.05630263686180115,
- 0.0314018689095974, 0.056464988738298416, 0.07162251323461533, -0.0554744116961956,
- -0.050606124103069305, -0.05726535990834236, -0.09782019257545471, 0.015218634158372879,
- -0.03190876916050911, 0.024851368740200996, -0.06317375600337982, -0.21488738059997559,
- 0.011965250596404076, 0.08250416815280914, -0.051177408546209335, -0.03883841633796692,
- 0.01760958507657051, -0.04767540097236633, 0.011228932999074459, -0.03407145291566849,
- -0.0425112247467041, 0.07123319804668427, 0.019898030906915665, 0.03204083442687988,
- 0.113772451877594, 0.06870486587285995, -0.06004749983549118, -0.05092542618513107,
- -0.022110512480139732, -0.07596142590045929, 0.094986692070961, -0.11448762565851212,
- -0.04751528427004814, -0.0001498095807619393, -0.060442157089710236, 0.6934212446212769,
- 0.1262439340353012, 0.19302353262901306, 0.04918293654918671, -0.045576900243759155,
- 0.15093550086021423, 0.017948998138308525, 0.06345096975564957, -0.04829457402229309,
- -0.06502413749694824, 0.05488336458802223, -0.10141882300376892, -0.05817970633506775,
- 0.012675046920776367, 0.066737100481987, 0.07297821342945099, -0.004085661843419075,
- 0.09453439712524414, 0.03285522386431694, -0.12945954501628876, -0.0675346702337265,
- 0.07316408306360245, -0.015280721709132195, -0.14172135293483734, -0.02826077863574028,
- 0.08691340684890747, 0.11168360710144043, -0.08758916705846786, 0.007663272321224213,
- -0.06329242885112762, 0.03912577033042908, -0.014666873961687088, 0.06613654643297195,
- -0.058377236127853394, 0.05607939511537552, 0.04470299929380417, 0.021221604198217392,
- 0.01180458813905716, -0.06344939023256302, -0.040950678288936615, 0.06151868402957916,
- -0.007882299832999706, -0.03598949685692787, 0.0534251406788826, -0.08929295092821121,
- 0.03891356289386749, 0.006004454102367163, 0.17040589451789856, -0.15301387012004852,
- -0.011748241260647774, 0.014950201846659184, 0.02000599354505539, 0.03709398955106735,
- -0.015732429921627045, -0.04722052440047264, -0.058028798550367355, 0.07963288575410843,
- 0.023977352306246758, 0.057886701077222824, 0.0961209163069725, -0.0510304719209671,
- 0.06932669878005981, 0.10409282892942429, 0.007721702568233013, 0.0010006465017795563,
- 0.09418834745883942, 0.02595425210893154, -0.053335078060626984, -0.04725667089223862,
- 0.02577265352010727, 0.030768729746341705, 0.04892352968454361, 0.0024470756761729717,
- 0.05971882492303848, 0.007930712774395943, -0.043675824999809265, 0.05594959110021591,
- 0.04584122821688652, 0.04779934138059616, 0.08290081471204758, -0.09132713079452515,
- -0.028556793928146362, -0.044872209429740906, -0.026482533663511276,
- 0.018248170614242554, -0.007088784594088793, 0.09315988421440125, 0.0885736271739006,
- 0.09749014675617218, 0.03949810564517975, 0.05554213002324104, 0.054366983473300934,
- 0.03137978911399841, 0.024072088301181793, 0.06575941294431686, -0.03663899376988411,
- -0.04320354014635086, -0.0409463495016098, 0.012278152629733086, -0.01136322133243084,
- 0.02157336287200451, -0.050389230251312256, -0.049946919083595276, -0.09469573199748993,
- -0.021450184285640717, -0.08180136978626251, -0.07768671214580536, 0.08553475141525269,
- 0.0644657164812088, -0.03617928922176361, -0.11289183050394058, -0.07340512424707413,
- 0.01544930785894394, 0.08399724960327148, 0.0022756271064281464, -0.02871278114616871,
- -0.1245632991194725, 0.04969315975904465, 0.006556541658937931, 0.04705710709095001,
- -0.0032166792079806328, -0.033634815365076065, 0.02790016308426857, -0.050002321600914,
- 0.048043519258499146, -0.021004056558012962, -0.00811399519443512, -0.06798790395259857,
- -0.0755469799041748, -0.10212432593107224, -0.017930220812559128, 0.006298733875155449,
- -0.09070047736167908, 0.02634868025779724, 0.05607347935438156, 0.041741639375686646,
- 0.0010741748847067356, -0.0751204714179039, 0.07726821303367615, -0.05021815001964569,
- -0.026863805949687958, 0.07022953033447266, -0.04517338424921036, 0.037372615188360214,
- 0.014087995514273643, -0.09753873944282532, -0.002424522303044796, 0.048089515417814255,
- -0.039230987429618835, 0.01950695365667343, 0.015378979966044426, 0.011533521115779877,
- -0.04854443296790123, -0.004200451076030731, 0.06631629168987274, -0.04930254817008972,
- -0.10127322375774384, -0.08670707792043686, 0.1282925307750702, -0.0048952847719192505,
- 0.01342990156263113, 0.01700415089726448, -0.05226476490497589, 0.016945037990808487,
- -0.018116310238838196, 0.0028041373006999493, 0.014551931992173195, 0.04846245422959328,
- -0.0045700883492827415, -0.013742204755544662, 0.055544424802064896,
- -0.06705991923809052, 0.0721120834350586, 0.07673868536949158, 0.4433593451976776,
- -0.25716161727905273, 0.07943704724311829, 0.0950380489230156, 0.009051996283233166,
- 0.06111299246549606, -0.06014233082532883, 0.08718205243349075, 0.10099205374717712,
- 0.1293535828590393, 0.10716302692890167, -0.033989518880844116, 0.008169728331267834,
- -0.09825804829597473, 0.10631018131971359, 0.011174676939845085, 0.008301503956317902,
- -0.032158590853214264, -0.0658755898475647, -0.02835891768336296, 0.05017700046300888,
- -0.07112644612789154, -0.003523904364556074, -0.01006293948739767, -0.06478771567344666,
- -0.005562482867389917, 0.003178877755999565, 0.009367483668029308, -0.04842716455459595,
- 0.036623794585466385, 0.02427060529589653, 0.012449650093913078, 0.031439412385225296,
- 0.046949539333581924, -0.15397822856903076, 0.019388694316148758, -0.05453331395983696,
- -0.08979511260986328, 0.060254380106925964, 0.013333762995898724, 0.07806259393692017,
- 0.03678020462393761, -0.012423048727214336, 0.006647695787250996, 0.016233498230576515,
- -0.051326505839824677, 0.02468051388859749, 0.07290191948413849, 0.013117436319589615,
- 0.08989699184894562, 0.16318660974502563, -0.06004717946052551, -0.04134750738739967,
- -0.0791747197508812, 0.06825591623783112, 0.14967891573905945, -0.03739933669567108,
- -0.01615561917424202, -0.012538440525531769, -0.055707819759845734,
- 0.013021986000239849, -0.04867098852992058, -0.0857357606291771, -0.030660096555948257,
- -0.0529358834028244, 0.09516148269176483, 0.031348031014204025, -0.043691881000995636,
- -0.159925639629364, -0.031018847599625587, -0.052977804094552994, 0.012041178531944752,
- 0.1264028698205948, -0.10495337843894958, 0.024918682873249054, -0.016451396048069,
- -0.014183681458234787, 0.04287642240524292, -0.06957519799470901, 0.02167922630906105,
- -0.029251819476485252, 0.014065350405871868, 0.022756105288863182, 0.06988626718521118,
- -0.08717860281467438, 0.12072386592626572, -0.0996318906545639, 0.07450183480978012,
- -0.01658206433057785, -0.03111851215362549, 0.028330154716968536, -0.052776455879211426,
- 0.025085991248488426, -0.0033977660350501537, -0.07598238438367844, 0.0397881455719471,
- -0.020327353850007057, -0.04944223165512085, -0.0689188688993454, -0.0364098846912384,
- -0.016323033720254898, -0.07112041115760803, 0.013773825019598007, -0.08628183603286743,
- -0.010830182582139969, -0.02783692628145218, -0.061777420341968536,
- -0.01751973107457161, 0.0248103030025959, 0.042694367468357086, -0.1686364710330963,
- -0.03782877326011658, -0.006782435346394777, 0.07192271947860718, 0.014973918907344341,
- -0.02435007132589817, 0.0016146572306752205, 0.10160758346319199, 0.05387189984321594,
- -0.023201201111078262, -0.013820830732584, -0.07881885021924973, 0.06982354819774628,
- -0.13965389132499695, -0.45382821559906006, 0.07147631049156189, 0.002115874318405986,
- 0.017680315300822258, -0.013108821585774422, -0.0398130938410759, 0.043393902480602264,
- 0.0155364740639925, -0.07013257592916489, 0.08676674216985703, -0.036190830171108246,
- 0.020008878782391548, 0.0003708507865667343, -0.043312180787324905,
- -0.02474595233798027, -0.08803647756576538, -0.0685780942440033, 0.029815321788191795,
- -0.016244282945990562, -0.05339692533016205, -0.054587624967098236,
- 0.027093812823295593, -0.008813492953777313, 0.0125910434871912, -0.0017089596949517727,
- 0.03246641159057617, -0.04803471639752388, -0.0513349249958992, 0.05894170701503754,
- 0.08288851380348206, 0.05283902585506439, -0.06528660655021667, 0.020102351903915405,
- 0.08820047229528427, -0.0009324438869953156, 0.1356201320886612, -0.0004700245335698128,
- 0.011492989957332611, -0.048645224422216415, 0.07845205068588257, 0.04751548171043396,
- 0.18588030338287354, 0.008149251341819763, 0.004041448701173067, 0.02465970441699028,
- 0.18675532937049866, 0.026882320642471313, 0.01661442220211029, -0.009786042384803295,
- -0.003450762014836073, 0.0006387513130903244, -0.014604562893509865,
- 0.09505535662174225, -0.07336972653865814, -0.04355936497449875, 0.00260541751049459,
- -0.024601954966783524, 0.009960664436221123, -0.02201838418841362, 0.2407946139574051,
- 0.02279607020318508, 0.013237567618489265, 0.03126054257154465, -0.042746298015117645,
- 0.04524672031402588, -0.08908282965421677, -0.16722354292869568, -0.006397582590579987,
- 0.004580982029438019, 0.022485479712486267, -0.04623975604772568, -0.10700978338718414,
- 0.00702492194250226, 0.019705042243003845, 0.014414411038160324, 0.14046339690685272,
- -0.028716687113046646, -0.01454414427280426, -0.018783312290906906, 0.1385471671819687,
- 0.026797622442245483, 0.010330362245440483, 0.06858276575803757, 0.0822768360376358,
- 0.019101910293102264, 0.01778809353709221, -0.034953389316797256, -0.09858770668506622,
- 0.0035307402722537518, 0.11579601466655731, -0.039479631930589676, 0.13565704226493835,
- 0.06085236743092537, -0.03675812482833862, -0.052231237292289734, 0.025877973064780235,
- -0.04290220886468887, 0.05822201818227768, -0.42243677377700806, -0.04396943375468254,
- 0.10433922708034515, 0.03153390437364578, 0.007270511239767075, 0.08062779903411865,
- -0.01062842272222042, -0.06839018315076828, -0.05580677092075348, -0.1056058406829834,
- 0.10861074924468994, 0.02919047139585018, 0.06469163298606873, -0.10725070536136627,
- 0.008152259513735771, 0.10246274620294571, -0.057228025048971176, 0.019313646480441093,
- 0.06594900786876678, -0.17542357742786407, 0.014314317144453526, -0.025702988728880882,
- 0.15563395619392395, -0.02758651226758957, 0.04657340049743652, 0.08700896799564362,
- -0.07632029056549072, 0.025186758488416672, 0.06445090472698212, -0.014344675466418266,
- 0.055953025817871094, -0.016313472762703896, -0.018181726336479187, 0.12597280740737915,
- 0.09540577232837677, 0.07898291945457458, -0.04657105356454849, 11.972687721252441,
- 0.07135706394910812, 0.04998892545700073, -0.10800331830978394, 0.0002688164822757244,
- -0.029464637860655785, 0.014049418270587921, -0.10791443288326263, 0.1032772958278656,
- 0.121909499168396, -0.01381031796336174, -0.04814726486802101, -0.026182949542999268,
- -0.12082581222057343, 0.036697931587696075, -0.021475423127412796,
- -0.060980018228292465, -0.06378287076950073, 0.02768653631210327, -0.0337110199034214,
- -0.08326797932386398, 0.07721550017595291, 0.06384187936782837, 0.028908973559737206,
- -0.0473073273897171, 0.0698571652173996, 0.02982959896326065, 0.032756123691797256,
- 0.00346395093947649, 0.013812141492962837, -0.00414822343736887, 0.0220075361430645,
- 0.08280608057975769, 0.03243374079465866, 0.01802520453929901, 0.057862453162670135,
- 0.08560650050640106, 0.03860218822956085, 0.054658204317092896, 0.06184126436710358,
- -0.0020199052523821592, -0.015203881077468395, -0.00033717136830091476,
- 0.03798900917172432, 0.06276492774486542, 0.06882281601428986, 0.027783893048763275,
- 0.13891328871250153, -0.004478085786104202, 0.07493027299642563, 0.08047598600387573,
- 0.005998484790325165, 0.12949804961681366, 0.053981367498636246, -0.020250026136636734,
- 0.06652669608592987, -0.023080481216311455, -0.08053509891033173, 0.08099744468927383,
- -0.02350645512342453, -0.048817459493875504, 0.09015806764364243, 0.006233121734112501,
- 0.14180776476860046, -0.0038546547293663025, 0.022425789386034012, 0.08487838506698608,
- 0.11458974331617355, -0.12549883127212524, -0.11923769116401672, 0.018352122977375984,
- -0.11650893092155457, -0.11695469170808792, 0.05032173916697502, 0.12480759620666504,
- -0.07351231575012207, 0.016671782359480858, -0.012509386986494064, 0.01468066405504942,
- -0.03598726540803909, -0.000018998747691512108, 0.050009675323963165,
- -0.009280255995690823, 0.005090154241770506, 0.07167292386293411, 0.04980340600013733,
- 0.08482003957033157, 0.14237529039382935, -0.007999753579497337, -0.07099857926368713,
- -0.05928109586238861, 0.10387066751718521, -0.04895559698343277, -0.054305631667375565,
- 0.027865733951330185, -0.07384203374385834, 0.06395813077688217, -0.16402345895767212,
- 0.08244688808917999, 0.12612605094909668, -0.0962047427892685, -0.04364167898893356,
- -0.030874203890562057, 0.06181701272726059, 0.0434064045548439, 0.036585692316293716,
- -0.07344505935907364, -0.015772808343172073, -0.007434852421283722, 0.04757899418473244,
- -0.02538938634097576, 0.026198092848062515, 0.0877101868391037, -0.07065046578645706,
- 0.04575870931148529, 0.04224434122443199, -0.03614328056573868, -0.024158280342817307,
- 0.07320188730955124, 0.036547739058732986, -0.08792942762374878, -0.0604376345872879,
- -0.02208392135798931, -0.035289112478494644, -0.03512081876397133,
- -0.030619613826274872, 0.03514256700873375, 0.05842950940132141, -0.042901232838630676,
- -0.001295518595725298, 0.07438303530216217, 0.06856680661439896, 0.14887487888336182,
- 0.0002800608053803444, 0.05236019939184189, -0.06121338903903961, -0.01761462911963463,
- 0.07114502787590027, 0.05121602118015289, 0.05095936730504036, -0.07210490852594376,
- -0.04532932490110397, -0.04606432467699051, -0.11054591089487076, 0.014325828291475773,
- 0.04984268546104431, 0.005099551752209663, 0.009597067721188068, 0.019226111471652985,
- -0.06869824230670929, -0.056179970502853394, 0.05736221745610237, -0.010079272091388702,
- 0.031763896346092224, 0.006869129836559296, -0.02879347652196884, -0.041019655764102936,
- 0.11944721639156342, -0.0329945869743824, -0.012728056870400906, 0.009721160866320133,
- -0.04758656024932861, 0.0778535008430481, 0.12746894359588623, -0.0007197977975010872,
- 0.025266921147704124, 0.058235153555870056, 0.022264190018177032, 0.06509562581777573,
- -0.01361763570457697, -0.00015686010010540485, -0.034594472497701645,
- -0.0716886818408966, -0.07447338104248047, 0.04346928372979164, 0.09319481998682022,
- 0.0675499439239502, -0.07926605641841888, -0.00665997015312314, -0.031351763755083084
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 243,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Aaron Holmes"],
- "epoch_date_downloaded": 1655251200,
- "epoch_date_modified": 1658707200,
- "epoch_date_submitted": 1655251200,
- "flag": null,
- "report_number": 1778,
- "source_domain": "businessinsider.com",
- "submitters": ["Khoa Lam"],
- "title": "Roughly half the Twitter accounts pushing to 'reopen America' are bots, researchers found",
- "url": "https://www.businessinsider.com/nearly-half-of-reopen-america-twitter-accounts-are-bots-report-2020-5"
- },
- {
- "__typename": "Report",
- "authors": ["Joanna Nelius"],
- "epoch_date_downloaded": 1655251200,
- "epoch_date_modified": 1658707200,
- "epoch_date_submitted": 1655251200,
- "flag": null,
- "report_number": 1777,
- "source_domain": "gizmodo.com",
- "submitters": ["Ingrid Dickinson (CSET)"],
- "title": "Twitter Bots Drove the Push to 'Reopen America,' Study Finds",
- "url": "https://gizmodo.com/twitter-bots-drove-the-push-to-reopen-america-study-fi-1843614589"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "aurora-police-department",
- "name": "Aurora Police Department"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "unknown",
- "name": "Unknown"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "the-gilliam-family",
- "name": "the Gilliam family"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1783],
- "vector": [
- -0.04767700657248497, 0.04591012001037598, -0.006961777340620756, -0.1125122606754303,
- 0.11308737844228745, -0.002094671130180359, 0.008917495608329773, 0.06949801743030548,
- 0.07104142010211945, -0.13274641335010529, 0.04615407437086105, 0.07225599139928818,
- 0.011944574303925037, -0.12993860244750977, 0.03585922718048096, -0.07652369141578674,
- -0.04976247251033783, -0.04795599356293678, 0.01706593483686447, -0.11527375131845474,
- -0.06395068019628525, 0.005867402534931898, 0.048196595162153244, 0.1150277629494667,
- -0.04938668757677078, 0.02209227718412876, 0.12154119461774826, 0.1259368658065796,
- -0.06791873276233673, 0.040676143020391464, -0.008623228408396244, -0.04166233167052269,
- 0.11865901201963425, -0.009560043923556805, -0.00018584562349133193,
- 0.08550872653722763, 0.043517787009477615, -0.042413774877786636, -0.06661325693130493,
- -0.019227726384997368, -0.030474526807665825, 0.18792636692523956,
- -0.022706637158989906, -0.016432398930191994, 0.061303380876779556,
- -0.007060667034238577, 0.0017035823548212647, 0.07460595667362213,
- -0.022158276289701462, -0.009054568596184254, -0.0022455130238085985,
- 0.0047784224152565, -0.040046725422143936, 0.027784138917922974, -0.08637219667434692,
- 0.08263666182756424, 0.05005820095539093, -0.03496166318655014, -0.023387661203742027,
- -0.007229795679450035, -0.045940469950437546, -0.20344728231430054,
- -0.018475733697414398, -0.03841130807995796, 0.07006905227899551, -0.04830550029873848,
- 0.000379422475816682, 0.027795882895588875, 0.009649108164012432, 0.06537593901157379,
- 0.033201806247234344, -0.07001785933971405, -0.03727817162871361, -0.038541074842214584,
- -0.011036204174160957, -0.05600212514400482, 0.06541937589645386, 0.214738667011261,
- -0.0740649625658989, 0.06816749274730682, 0.11945565789937973, -0.09783350676298141,
- 0.37261781096458435, -0.008299157954752445, -0.03369637578725815, -0.026939591392874718,
- 0.05769282579421997, 0.019112112000584602, 0.040143806487321854, 0.02835838869214058,
- -0.00582098076120019, 0.02840469963848591, -0.04467743635177612, 0.03941913694143295,
- 0.07457870244979858, 0.03343160077929497, -0.002566572977229953, -0.010762560181319714,
- -0.01019664853811264, -0.06275645643472672, 0.028347749263048172, -0.05715297535061836,
- 0.12292828410863876, 0.05340421572327614, -0.06362150609493256, -0.005904451943933964,
- 0.0946686789393425, -0.031696636229753494, 0.07084308564662933, -0.07826836407184601,
- 0.012437306344509125, 0.051576703786849976, 0.03415121138095856, 0.011948415078222752,
- 0.046529680490493774, -0.04604832082986832, 0.013010073453187943, 0.020699365064501762,
- 0.12443257123231888, 0.01108798198401928, 0.027089156210422516, 0.038870882242918015,
- 0.12814441323280334, -0.04514988139271736, -0.027536123991012573, -0.010754594579339027,
- -0.019585182890295982, -0.010601051151752472, -0.029357898980379105,
- 0.06171160563826561, -0.00639077415689826, -0.20020417869091034, 0.05196299031376839,
- 0.07563004642724991, 0.00859723798930645, -0.026927560567855835, -0.010866884142160416,
- -0.08151093870401382, 0.025514701381325722, -0.011612572707235813,
- -0.056305114179849625, 0.0917605459690094, 0.07668814063072205, 0.03938179835677147,
- 0.0825200006365776, 0.02564609795808792, -0.0442369319498539, -0.0337052159011364,
- -0.03341800346970558, -0.02886909991502762, 0.05110921710729599, -0.13156504929065704,
- -0.046500854194164276, 0.04211423546075821, 0.050860024988651276, 0.5999656319618225,
- 0.10375116020441055, 0.1608837991952896, -0.022496040910482407, 0.009291044436395168,
- 0.19661228358745575, -0.05440168455243111, 0.05793340504169464, -0.06963765621185303,
- -0.06687524169683456, 0.025665447115898132, -0.025279296562075615,
- -0.011668949387967587, 0.043168727308511734, 0.028437940403819084, 0.0858757421374321,
- 0.03432617709040642, 0.07920952886343002, 0.03534132242202759, -0.14444684982299805,
- -0.01901940442621708, 0.01734425127506256, -0.004824374336749315, -0.10736242681741714,
- -0.03662307560443878, 0.07275789231061935, 0.08858613669872284, -0.06533917039632797,
- -0.002242893911898136, -0.028240274637937546, 0.0196234043687582, -0.03416711091995239,
- 0.007311025634407997, -0.03189506754279137, 0.008170794695615768, 0.03867689147591591,
- 0.032069023698568344, -0.005493795499205589, -0.1207582876086235, -0.04060538113117218,
- 0.11286264657974243, 0.013721083290874958, -0.05810057371854782, 0.062264155596494675,
- -0.08385156840085983, 0.023293256759643555, -0.012880178168416023, 0.11127733439207077,
- -0.11783289164304733, 0.03090515360236168, 0.021347718313336372, -0.053722791373729706,
- 0.04401218891143799, -0.06520916521549225, -0.08842959254980087, -0.075901560485363,
- 0.07407456636428833, 0.051403991878032684, 0.08784697949886322, 0.061432525515556335,
- -0.05146012827754021, 0.015946658328175545, 0.033210042864084244, -0.010680584236979485,
- -0.04373331740498543, 0.07666244357824326, 0.07809201627969742, -0.029102196916937828,
- -0.029300522059202194, 0.05483784154057503, 0.10272332280874252, 0.04924727603793144,
- -0.010035980492830276, 0.04755203425884247, 0.0008188547799363732, -0.02954452484846115,
- 0.026237793266773224, 0.02972692809998989, -0.0012013833038508892, 0.0907643511891365,
- -0.0784299224615097, -0.0073069133795797825, -0.028509916737675667,
- -0.0005359561182558537, 0.00446527823805809, -0.057745274156332016, 0.04997224360704422,
- 0.06300389021635056, 0.05993741378188133, 0.03342333808541298, 0.0112572330981493,
- 0.05398990958929062, 0.10827161371707916, 0.0033351625315845013, 0.09130749106407166,
- 0.001178937265649438, -0.06803302466869354, -0.017560819163918495,
- 0.0040686544962227345, 0.06310135126113892, 0.06436878442764282, -0.09458974003791809,
- -0.046285711228847504, -0.014902996830642223, -0.03455348312854767,
- -0.09684441238641739, -0.035949017852544785, 0.001791454153135419, 0.03467654809355736,
- -0.09499024599790573, -0.09286925941705704, -0.062099359929561615, 0.013856885954737663,
- 0.08591262251138687, -0.0007171835168264806, -0.0021408507600426674,
- -0.11954684555530548, 0.031176751479506493, -0.053489137440919876, 0.030714556574821472,
- -0.0008505731821060181, -0.03664320334792137, -0.045205675065517426,
- -0.06808311492204666, 0.011738117784261703, 0.021772347390651703, 0.016653135418891907,
- -0.06172652915120125, -0.03470277786254883, -0.03825680539011955, 0.006345737259835005,
- -0.014223775826394558, -0.01744188368320465, 0.009050248190760612, 0.0345134437084198,
- 0.03115278296172619, -0.05310775712132454, -0.024350058287382126, 0.05673275887966156,
- -0.042056597769260406, 0.007098410744220018, 0.0784858912229538, -0.01518177893012762,
- 0.016429655253887177, -0.02009640634059906, -0.04306706786155701, -0.083313949406147,
- -0.008063123561441898, -0.023807058110833168, 0.0712176188826561, -0.0737018808722496,
- -0.04314770922064781, -0.035834573209285736, -0.030190275982022285, 0.08377156406641006,
- -0.08618855476379395, -0.032957013696432114, -0.06095777079463005, 0.10704382508993149,
- -0.008697401732206345, -0.010917923413217068, -0.02345324493944645,
- -0.04770205169916153, 0.05249829590320587, 0.015889858826994896, 0.027149055153131485,
- 0.06594978272914886, 0.05327258259057999, -0.012719794176518917, 0.010685956105589867,
- 0.07259300351142883, -0.03731695935130119, 0.01838725246489048, 0.05708547309041023,
- 0.42062050104141235, -0.17816103994846344, 0.08836190402507782, 0.08718442171812057,
- 0.033460550010204315, 0.05450645089149475, 0.009873909875750542, 0.04845835641026497,
- 0.03859090432524681, 0.08510226011276245, 0.07186704874038696, -0.037887878715991974,
- -0.0022896286100149155, -0.05707504227757454, 0.07564546912908554, 0.007627599406987429,
- 0.03666183352470398, -0.040882278233766556, -0.041597090661525726,
- -0.031082749366760254, 0.0003012597735505551, -0.03079848550260067,
- -0.016264934092760086, -0.016648301854729652, -0.06746519356966019,
- 0.002558782696723938, 0.013061086647212505, 0.06591122597455978, -0.04184656962752342,
- 0.03365020826458931, 0.0035936138592660427, 0.06123678758740425, 0.048021167516708374,
- 0.04699913412332535, -0.06700936704874039, 0.05971942096948624, -0.005405774340033531,
- -0.08066754788160324, 0.07222279161214828, 0.019752005115151405, 0.05864943563938141,
- 0.021782366558909416, -0.019984295591711998, 0.026783626526594162, -0.03296882286667824,
- -0.05105961486697197, 0.0058779469691216946, 0.05332924798130989, 0.05635829269886017,
- 0.09252799302339554, 0.15476322174072266, -0.01742471195757389, -0.0024824703577905893,
- -0.07015515118837357, 0.06626201421022415, 0.14914046227931976, -0.042139932513237,
- -0.009875031188130379, 0.02303893305361271, 0.020536506548523903, -0.027216525748372078,
- -0.06309456378221512, -0.05787527933716774, -0.009941794909536839, -0.02512771636247635,
- 0.09552457183599472, 0.011613362468779087, -0.02421632595360279, -0.10346132516860962,
- -0.025663428008556366, -0.07313605397939682, 0.019168447703123093, 0.13226211071014404,
- -0.06403157860040665, 0.049427591264247894, 0.008529235608875751, 0.016559574753046036,
- 0.03622464835643768, -0.06575042009353638, 0.030711056664586067, -0.058349281549453735,
- 0.044699519872665405, 0.07241609692573547, 0.042350687086582184, -0.06577058881521225,
- 0.009124101139605045, -0.09129500389099121, 0.056522954255342484, 0.0007082314696162939,
- -0.001663685659877956, 0.0056238858960568905, -0.026837987825274467,
- 0.02368704415857792, 0.027243012562394142, -0.010950188152492046, -0.008027014322578907,
- -0.03228401765227318, -0.015834270045161247, -0.09592784196138382, -0.05765039101243019,
- -0.03771432489156723, -0.06283073127269745, 0.03195404261350632, -0.1422562450170517,
- -0.011901256628334522, -0.04286642000079155, 0.016780536621809006, 0.030334273353219032,
- 0.06221963092684746, 0.0200818944722414, -0.11193900555372238, -0.0059413667768239975,
- -0.02898530662059784, 0.046644218266010284, -0.04241221770644188, -0.07933018356561661,
- 0.04380171746015549, 0.07489615678787231, -0.0023533112835139036, -0.05199694260954857,
- 0.022960050031542778, -0.034075479954481125, 0.033837899565696716, -0.0923343375325203,
- -0.5116338133811951, 0.028827505186200142, 0.002965897787362337, 0.05988302454352379,
- 0.010076092556118965, -0.08398705720901489, 0.05480676889419556, -0.00089273537741974,
- 0.015882469713687897, 0.07783567905426025, -0.05290152505040169, 0.018916096538305283,
- 0.010296673513948917, -0.05048694089055061, -0.005971244070678949, -0.08282778412103653,
- -0.03190038353204727, 0.016758354380726814, -0.012331844307482243,
- -0.056542180478572845, -0.10912968963384628, -0.016257891431450844,
- -0.027223410084843636, -0.005040138494223356, 0.0037090396508574486, 0.0050199911929667,
- -0.038150932639837265, -0.04575555399060249, 0.06244254112243652, 0.05942247062921524,
- 0.010145822539925575, -0.050539784133434296, -0.03730861097574234, 0.06548423320055008,
- 0.01267583854496479, 0.16150996088981628, 0.04295901581645012, 0.0009407809120602906,
- -0.09362242370843887, 0.08573581278324127, 0.08835749328136444, 0.1910485476255417,
- -0.03458759933710098, 0.07077421247959137, 0.025525422766804695, 0.10700788348913193,
- -0.0033158445730805397, 0.030346078798174858, -0.059800535440444946,
- 0.027989208698272705, 0.014070166274905205, 0.004891217686235905, 0.032595328986644745,
- -0.07468806952238083, -0.03155548870563507, -0.02526320517063141, -0.014358757063746452,
- -0.01862376555800438, 0.05637967213988304, 0.1360243409872055, 0.03628799319267273,
- 0.0015028187772259116, 0.022320104762911797, -0.05271702632308006,
- 0.0022246327716857195, -0.051607634872198105, -0.11121796816587448,
- 0.015701785683631897, -0.011921653524041176, 0.010278381407260895, -0.04313238337635994,
- -0.12666957080364227, -0.016027532517910004, -0.035206399857997894,
- -0.01774931326508522, 0.11172572523355484, -0.026558874174952507, 0.03885306790471077,
- -0.06627413630485535, 0.12675657868385315, 0.014611555263400078, 0.022253545001149178,
- 0.07782810181379318, 0.060567259788513184, -0.004478338174521923,
- -0.0064516132697463036, -0.02519904263317585, -0.03618293255567551,
- -0.04738740622997284, 0.1444183886051178, -0.013929009437561035, 0.14861059188842773,
- 0.04558124393224716, -0.08837615698575974, -0.04257212206721306, 0.01474045217037201,
- -0.0258139967918396, 0.008815435692667961, -0.4986301362514496, -0.000509460864122957,
- 0.1026790589094162, 0.03609368950128555, 0.05069206282496452, 0.06435687839984894,
- 0.006378036458045244, -0.017117833718657494, -0.004022524692118168,
- -0.010129403322935104, 0.1749539077281952, -0.018487153574824333, 0.03521564602851868,
- -0.1376727819442749, 0.05971125140786171, 0.0731905996799469, 0.013092601671814919,
- 0.01695350743830204, 0.04236854612827301, -0.20168590545654297, -0.017515264451503754,
- -0.020030131563544273, 0.15804071724414825, 0.041711680591106415, -0.009280686266720295,
- 0.06230608746409416, -0.019748082384467125, 0.020239848643541336, 0.027931738644838333,
- 0.017390381544828415, 0.08648864924907684, -0.03628991171717644, -0.03956938162446022,
- 0.08484498411417007, 0.09657066315412521, 0.05828927084803581, -0.020221132785081863,
- 11.68075180053711, 0.0686773881316185, 0.049113716930150986, -0.06313521414995193,
- 0.059820398688316345, -0.025951476767659187, 0.03851202502846718, -0.11177172511816025,
- 0.0717790275812149, 0.09915211796760559, -0.0012419280828908086, -0.03700557351112366,
- -0.038485437631607056, -0.05170310288667679, 0.010126023553311825, -0.06637825071811676,
- -0.016446446999907494, -0.02594415284693241, 0.03823033720254898, -0.024604488164186478,
- 0.006755219306796789, 0.022627374157309532, 0.028822479769587517, 0.02724599465727806,
- -0.09145558625459671, 0.016209667548537254, 0.03430694341659546, -0.018782107159495354,
- -0.00821723137050867, 0.05478505790233612, 0.005671606864780188, 0.022615648806095123,
- 0.08817551285028458, 0.0034829284995794296, -0.0008381464285776019, 0.08875297755002975,
- 0.006980095058679581, 0.035580262541770935, 0.0071687642484903336, 0.11761011183261871,
- 0.03017335757613182, 0.009224021807312965, 0.014919634908437729, 0.036336228251457214,
- 0.0408269464969635, 0.03316556289792061, 0.0453338660299778, 0.07645817846059799,
- 0.007145408075302839, 0.03259497880935669, 0.09052900224924088, -0.041781891137361526,
- 0.07702765613794327, 0.03586091846227646, 0.02288080006837845, 0.07326521724462509,
- -0.01213630847632885, -0.05511429160833359, 0.051329825073480606, 0.052184149622917175,
- -0.05342893302440643, 0.07167433947324753, 0.007347408682107925, 0.07447926700115204,
- -0.03470432758331299, 0.015367422252893448, 0.04903242737054825, 0.09659330546855927,
- -0.10515724867582321, -0.03871021792292595, 0.05447829142212868, -0.10389677435159683,
- -0.07158957421779633, 0.04090026021003723, 0.024125490337610245, -0.028915951028466225,
- 0.10652095079421997, -0.048700977116823196, 0.030742790549993515, 0.004330054856836796,
- 0.036791615188121796, 0.040140021592378616, -0.04698193445801735, 0.011809062212705612,
- -0.02093576267361641, 0.016861358657479286, 0.11472100764513016, 0.04828956723213196,
- 0.0049223750829696655, -0.1063021793961525, -0.09374375641345978, 0.12209844589233398,
- -0.023925626650452614, -0.08189011365175247, -0.008015751838684082, -0.0816507562994957,
- 0.05395183339715004, -0.12459339201450348, 0.04721694067120552, 0.11035756766796112,
- -0.0049607520923018456, -0.02650323510169983, -0.025193549692630768, 0.1096072718501091,
- -0.02388267032802105, -0.012217428535223007, -0.06559661775827408, -0.01001764927059412,
- 0.050472185015678406, 0.04697111248970032, -0.05817034840583801, 0.03950168564915657,
- 0.06452929228544235, -0.07303030043840408, 0.024231931194663048, 0.08160731941461563,
- -0.042863231152296066, -0.04661335423588753, 0.07562147825956345, 0.035247452557086945,
- -0.0693245530128479, -0.02475498430430889, -0.03963017091155052, -0.040048759430646896,
- 0.01350647397339344, -0.04056042432785034, 0.02167625166475773, 0.012806355953216553,
- -0.0790400356054306, -0.04389244690537453, 0.017395474016666412, 0.04065300151705742,
- 0.09440163522958755, 0.025117596611380577, 0.04955276474356651, -0.02831972762942314,
- -0.006602605804800987, 0.045987244695425034, 0.06691201031208038, 0.09437353909015656,
- -0.018732188269495964, 0.0020826575346291065, -0.008944734930992126,
- -0.09275829792022705, 0.0021842126734554768, 0.10902846604585648, 0.019330255687236786,
- 0.05601231008768082, 0.028938308358192444, -0.07891983538866043, -0.014393358491361141,
- 0.10174854844808578, 0.03526899218559265, 0.042991455644369125, 0.0060039362870156765,
- -0.07201344519853592, -0.019744591787457466, 0.13050951063632965, -0.01681446097791195,
- -0.019424958154559135, 0.020845260471105576, -0.04877054691314697, 0.09207776933908463,
- 0.09074369072914124, 0.013181199319660664, 0.030502522364258766, 0.07520845532417297,
- -0.017055252566933632, -0.020958485081791878, 0.0353444442152977, -0.02474099025130272,
- -0.007263092789798975, -0.09982263296842575, -0.09469681978225708, 0.00807186495512724,
- 0.06460599601268768, 0.0008072820492088795, -0.13164567947387695, -0.020337672904133797,
- -0.05003908649086952
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 244,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Matt Novak"],
- "epoch_date_downloaded": 1658793600,
- "epoch_date_modified": 1658793600,
- "epoch_date_submitted": 1658793600,
- "flag": null,
- "report_number": 1783,
- "source_domain": "gizmodo.com",
- "submitters": ["Ingrid Dickinson (CSET)"],
- "title": "Cops Terrorize Black Family but Blame License Plate Reader for Misidentifying 'Stolen' Vehicle",
- "url": "https://gizmodo.com/cops-terrorize-black-family-but-blame-license-plate-rea-1844602731"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "san-francisco-police-department",
- "name": "San Francisco Police Department"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "unknown",
- "name": "Unknown"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "denise-green",
- "name": "Denise Green"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1784],
- "vector": [
- -0.09806431829929352, 0.05317152664065361, -0.00878502894192934, -0.08361310511827469,
- 0.044275250285863876, -0.0262638870626688, -0.009659227915108204, -0.008367913775146008,
- 0.09861379861831665, -0.16135689616203308, -0.013717802241444588, 0.024198094382882118,
- 0.03416857123374939, -0.05725240707397461, 0.025220079347491264, -0.10616161674261093,
- -0.06943648308515549, 0.009197788313031197, 0.003093043575063348, -0.13566584885120392,
- -0.07145928591489792, -0.023311283439397812, 0.06666790693998337, 0.10499885678291321,
- -0.02851296029984951, 0.016275443136692047, 0.07775493711233139, 0.15407802164554596,
- -0.09214209020137787, 0.038065940141677856, -0.03703394532203674, -0.025652335956692696,
- 0.12375286221504211, -0.034340932965278625, -0.00304602668620646, 0.12827913463115692,
- 0.0610508918762207, -0.060070671141147614, -0.04802075773477554, -0.032360609620809555,
- 0.048554468899965286, 0.1835968941450119, -0.0042693158611655235, -0.03156599774956703,
- 0.06644681841135025, -0.005757988430559635, 0.018870441243052483, 0.05733557790517807,
- -0.0025125229731202126, -0.024388477206230164, -0.0381334163248539,
- -0.030330386012792587, -0.059768036007881165, 0.0206665750592947, -0.11005032062530518,
- 0.0990428775548935, 0.02811272256076336, 0.0036854171194136143, 0.006765310652554035,
- -0.06217817962169647, -0.015450114384293556, -0.2510724365711212, -0.08197490125894547,
- -0.08051455765962601, 0.12662629783153534, -0.08378912508487701, -0.05897465720772743,
- -0.03792963922023773, 0.0415818989276886, 0.06973244994878769, 0.032706908881664276,
- -0.06425818800926208, -0.04664135351777077, -0.0060933125205338, -0.007593343500047922,
- -0.030641768127679825, 0.0038728080689907074, 0.2514908015727997, -0.07768387347459793,
- 0.0017113189678639174, 0.099618099629879, -0.10513035207986832, 0.4772332012653351,
- 0.010694540105760098, -0.008989227004349232, -0.035911645740270615, 0.10347961634397507,
- 0.0074226572178304195, 0.04613745957612991, 0.07126778364181519, -0.05851859226822853,
- 0.048558201640844345, -0.02442639134824276, 0.06661419570446014, 0.1075536236166954,
- 0.02375735342502594, 0.0023096404038369656, -0.04797792807221413, -0.058113742619752884,
- -0.09632343798875809, 0.019264671951532364, -0.03131674602627754, 0.07641006261110306,
- 0.06679300963878632, -0.05538131296634674, -0.00439595989882946, 0.11434915661811829,
- -0.030019426718354225, 0.040691737085580826, -0.083201102912426, 0.04119892418384552,
- 0.04183522239327431, 0.07317181676626205, 0.013289513066411018, 0.029985656961798668,
- -0.05696801841259003, 0.003444662084802985, 0.037144944071769714, 0.06200818717479706,
- 0.01262260228395462, -0.05862069129943848, 0.0881100669503212, 0.12550877034664154,
- -0.059648044407367706, -0.03368910402059555, -0.07336044311523438, -0.08371295034885406,
- 0.007958032190799713, 0.012709112837910652, 0.021813759580254555, -0.0773133933544159,
- -0.20109505951404572, 0.07001908868551254, 0.06626544147729874, 0.013813654892146587,
- -0.01614244282245636, 0.055208273231983185, -0.09851187467575073, 0.024929266422986984,
- 0.005862616468220949, 0.032117873430252075, 0.07489239424467087, 0.08541865646839142,
- 0.05019042640924454, 0.10087267309427261, 0.04032592847943306, -0.04266730695962906,
- -0.056381888687610626, 0.030522765591740608, -0.050792597234249115, 0.08425885438919067,
- -0.08308684080839157, -0.055563900619745255, 0.047530416399240494,
- -0.010817239992320538, 0.6455198526382446, 0.05243850499391556, 0.2008763998746872,
- -0.004321486223489046, -0.018301958218216896, 0.17240895330905914, 0.013279967941343784,
- 0.07388022541999817, -0.03394554182887077, -0.07357297837734222, 0.011147575452923775,
- -0.02121654897928238, -0.02674727700650692, 0.03052780032157898, 0.06420701742172241,
- 0.13943293690681458, 0.04224404692649841, 0.12252876162528992, -0.024058111011981964,
- -0.08907435834407806, -0.012251040898263454, 0.07063167542219162, -0.002090196358039975,
- -0.08481896668672562, -0.03808983042836189, 0.08870180696249008, 0.08949247747659683,
- -0.06767114996910095, 0.023418115451931953, -0.024701865389943123, 0.02220085635781288,
- 0.002817574655637145, 0.015563689172267914, 0.008004128001630306, 0.025065599009394646,
- 0.09617134928703308, 0.08775517344474792, -0.02119886688888073, -0.12094351649284363,
- -0.055308617651462555, 0.1111488938331604, -0.0030113891698420048,
- -0.013778025284409523, 0.05251044034957886, -0.1064198687672615, 0.026682831346988678,
- 0.04693552851676941, 0.13199102878570557, -0.12547174096107483, -0.011757020838558674,
- 0.030150946229696274, -0.02632853016257286, 0.04636573791503906, 0.00732054328545928,
- -0.05275500938296318, -0.07389428466558456, 0.053730037063360214, 0.02256973274052143,
- 0.12123484909534454, 0.05702914670109749, -0.03406931459903717, 0.06515703350305557,
- 0.01928444765508175, 0.023421959951519966, -0.059767477214336395, 0.07917097955942154,
- 0.042014557868242264, 0.015942275524139404, 0.0326889231801033, 0.08379609137773514,
- 0.0025123110972344875, 0.08185424655675888, -0.013978023082017899, 0.05420232191681862,
- -0.0433843657374382, -0.061865732073783875, 0.04626457020640373, 0.02670433185994625,
- 0.014694415964186192, 0.11573347449302673, -0.10284574329853058, -0.02815071865916252,
- 0.00557675352320075, -0.03862934932112694, -0.031429752707481384, -0.06089561805129051,
- 0.06994999200105667, 0.06067828834056854, 0.1036907434463501, 0.023065898567438126,
- 0.09196321666240692, 0.020104648545384407, 0.05106474831700325, 0.08438403904438019,
- 0.022580716758966446, -0.03765813633799553, -0.008407337591052055,
- 0.0005472984630614519, -0.01746905781328678, 0.07606249302625656, 0.03396192193031311,
- -0.039485134184360504, -0.02867041528224945, -0.04250457510352135, -0.07321369647979736,
- -0.05419846251606941, -0.052341219037771225, -0.029947614297270775,
- 0.010396670550107956, -0.050498295575380325, -0.08678305149078369, -0.06529679149389267,
- 0.03486387059092522, 0.043308936059474945, -0.01463446393609047, -0.001966723008081317,
- -0.10716401040554047, -0.01484910398721695, 0.02949223294854164, 0.05036850646138191,
- -0.022507546469569206, 0.03320374712347984, -0.01985109969973564, -0.0826050341129303,
- -0.01821267046034336, 0.018911700695753098, -0.08703718334436417, -0.08420557528734207,
- -0.07294991612434387, -0.027124425396323204, -0.02136983722448349, 0.0378677137196064,
- 0.003165316069498658, 0.020537687465548515, 0.04674704000353813, 0.05076942965388298,
- -0.04597211629152298, -0.031346049159765244, 0.0698290765285492, -0.038007572293281555,
- 0.00008130509377224371, 0.06332970410585403, -0.019403906539082527, 0.04044681787490845,
- -0.009810312651097775, -0.05982203036546707, -0.027924032881855965,
- -0.020662494003772736, -0.068519726395607, 0.029702024534344673, -0.05706712603569031,
- -0.038722824305295944, -0.03350651636719704, -0.018146507441997528, 0.06681031733751297,
- -0.06488297879695892, -0.040082335472106934, -0.08677895367145538, 0.09828571230173111,
- 0.008537937887012959, 0.014873119071125984, 0.056329596787691116, -0.022319957613945007,
- 0.027775118127465248, 0.03155075013637543, 0.040318481624126434, 0.06827297061681747,
- 0.05707421898841858, -0.04858233034610748, 0.04133259877562523, 0.07374151051044464,
- -0.026971520856022835, 0.018385905772447586, 0.03554604947566986, 0.40720582008361816,
- -0.16854748129844666, 0.14096587896347046, 0.07668054103851318, 0.02284030243754387,
- 0.06905180215835571, -0.014130751602351665, 0.07577945291996002, 0.062187470495700836,
- 0.09154997020959854, 0.1578177958726883, -0.06418877094984055, 0.007211722433567047,
- -0.05617177486419678, 0.07980909198522568, -0.004454753361642361, 0.0107317129150033,
- -0.008824113756418228, -0.04022251069545746, -0.05405415967106819, 0.052479151636362076,
- -0.047010451555252075, 0.025454401969909668, -0.02686210907995701, -0.06092163547873497,
- 0.030949490144848824, 0.027766022831201553, 0.023896146565675735, -0.05321691557765007,
- 0.018498124554753304, 0.029645830392837524, 0.07819335162639618, -0.011073346249759197,
- 0.05922383815050125, -0.050525132566690445, -0.011826498433947563, -0.05230942741036415,
- -0.09080418199300766, 0.098293237388134, 0.012852311134338379, 0.0710664913058281,
- 0.043296024203300476, -0.017010333016514778, 0.05335189774632454, -0.05195726081728935,
- -0.05334019660949707, 0.014124942012131214, 0.043760474771261215, 0.06078985333442688,
- 0.08991508930921555, 0.1649344265460968, -0.04578246548771858, -0.021594924852252007,
- -0.08331302553415298, 0.0620843805372715, 0.08439382910728455, -0.026882842183113098,
- -0.028865763917565346, -0.04388156905770302, -0.008581935428082943, 0.03829742595553398,
- -0.06910689175128937, -0.01311484631150961, 0.029483851045370102, -0.07105480134487152,
- 0.057921379804611206, -0.0034927683882415295, -0.03728002309799194,
- -0.08405870199203491, 0.030524326488375664, -0.029568519443273544,
- -0.006359949242323637, 0.046656008809804916, -0.028524361550807953,
- 0.025195036083459854, -0.010873149149119854, -0.0028585323598235846,
- 0.010157345794141293, -0.06423542648553848, 0.023091956973075867, -0.030408725142478943,
- 0.04574070870876312, 0.10338160395622253, 0.04883987084031105, -0.09516449272632599,
- 0.02932044118642807, -0.12782257795333862, 0.02820165827870369, 0.044184327125549316,
- -0.00025741642457433045, 0.007663987576961517, -0.070889912545681, 0.06818661093711853,
- -0.01825808174908161, -0.035229288041591644, -0.010321502573788166,
- -0.031335409730672836, -0.02009848691523075, -0.10340256243944168, -0.07434166222810745,
- -0.06494639068841934, -0.08427315950393677, 0.07301285862922668, -0.10381529480218887,
- 0.01205704640597105, -0.03914463147521019, 0.00470768241211772, 0.03635193035006523,
- 0.04860681667923927, 0.016065144911408424, -0.11243872344493866, -0.006193319335579872,
- -0.03961796686053276, 0.06387720257043839, -0.030399968847632408, -0.05755409970879555,
- 0.0047707222402095795, 0.030940691009163857, 0.03021600842475891, -0.032021891325712204,
- -0.05188589543104172, -0.05815555900335312, -0.0018352287588641047,
- -0.13811786472797394, -0.381915420293808, 0.08490187674760818, 0.01822386309504509,
- 0.07288704812526703, 0.007499065715819597, -0.062211256474256516, 0.020907070487737656,
- -0.02468574233353138, -0.03019535355269909, 0.05339735373854637, -0.032511234283447266,
- 0.030359866097569466, 0.0005625379853881896, -0.03426816314458847,
- -0.006726754363626242, -0.056494519114494324, -0.02787763811647892, 0.06511331349611282,
- -0.023265376687049866, -0.07840154320001602, -0.09475386142730713,
- -0.007801319472491741, -0.020981933921575546, -0.004750057589262724,
- 0.009934660978615284, -0.013396630994975567, -0.08922405540943146, -0.07945353537797928,
- 0.003147831652313471, 0.05819595605134964, 0.0072104730643332005, -0.0663054957985878,
- -0.023234263062477112, 0.012405206449329853, -0.05171237140893936, 0.09728077054023743,
- 0.014396167360246181, 0.016092324629426003, -0.0826796442270279, 0.12025777250528336,
- 0.0836668610572815, 0.1839354783296585, -0.06309352070093155, 0.07328376173973083,
- 0.028395863249897957, 0.1177540048956871, 0.01582849770784378, 0.07490576803684235,
- -0.06352312117815018, -0.017514368519186974, 0.04218316450715065, -0.0240655317902565,
- 0.06272447854280472, -0.05560306832194328, -0.030973156914114952, -0.06525760889053345,
- -0.04014207795262337, -0.06380808353424072, -0.002388905268162489, 0.18750892579555511,
- 0.038331251591444016, -0.0003245481348130852, 0.01734679937362671, -0.041566401720047,
- -0.020046541467308998, -0.06439287215471268, -0.06046944111585617,
- -0.027755718678236008, 0.0010304581373929977, 0.017661727964878082,
- -0.03977726772427559, -0.10707274824380875, -0.0039153071120381355,
- -0.007795162498950958, -0.022851405665278435, 0.10297978669404984, -0.02542325295507908,
- 0.020525095984339714, -0.03530804067850113, 0.1554529070854187, 0.018113795667886734,
- 0.012706681154668331, 0.04402722790837288, 0.07966732233762741, 0.02328893542289734,
- 0.011986741796135902, -0.03350096940994263, -0.0625935047864914, 0.018245156854391098,
- 0.08573435246944427, -0.03910253196954727, 0.06410003453493118, 0.01221852470189333,
- -0.020890522748231888, -0.06576691567897797, 0.012545903213322163, 0.011611060239374638,
- 0.050602857023477554, -0.4679187834262848, -0.04381689429283142, 0.16293497383594513,
- -0.05604823678731918, 0.01659628376364708, 0.03876057267189026, 0.01764519140124321,
- -0.018632596358656883, -0.025373028591275215, -0.04016708582639694, 0.1180446669459343,
- 0.03235011547803879, 0.02338138036429882, -0.10612712055444717, 0.05089955776929855,
- 0.0697561651468277, 0.05592775717377663, -0.023788856342434883, 0.02364273928105831,
- -0.2638418674468994, 0.002936027944087982, -0.021069757640361786, 0.1657722294330597,
- 0.01356993056833744, -0.022541722282767296, 0.05680358037352562, -0.023195598274469376,
- 0.030044052749872208, 0.036876484751701355, 0.030969368293881416, 0.049981024116277695,
- -0.004404244478791952, -0.02172706089913845, 0.07518937438726425, 0.09353062510490417,
- 0.10838159173727036, -0.006320912390947342, 12.137802124023438, 0.05725530907511711,
- 0.042105209082365036, -0.0752444863319397, 0.06638040393590927, -0.05250247195363045,
- 0.032056573778390884, -0.06031322479248047, 0.06903970241546631, 0.11839340627193451,
- 0.0016876024892553687, -0.04247651994228363, -0.03828592970967293, -0.07541021704673767,
- -0.014213216491043568, -0.03398435562849045, -0.01659216359257698,
- -0.0037599666975438595, 0.04142521321773529, -0.07305991649627686, 0.021141331642866135,
- 0.04706687852740288, 0.06735752522945404, 0.028006508946418762, -0.10816701501607895,
- 0.07707233726978302, 0.020974410697817802, -0.0221535786986351, -0.0032729567028582096,
- 0.03615231066942215, -0.0067409491166472435, 0.0034869166556745768,
- 0.061639729887247086, 0.03412444889545441, -0.01843690499663353, 0.10801152884960175,
- -0.016886796802282333, 0.013516812585294247, 0.03620858117938042, 0.06205613911151886,
- 0.036723341792821884, 0.05279545858502388, 0.040898893028497696, 0.05194925144314766,
- 0.04098064452409744, 0.023073159158229828, 0.03208327293395996, 0.12368582934141159,
- 0.018959054723381996, 0.0325753390789032, 0.11388305574655533, -0.015159728936851025,
- 0.11387371271848679, 0.02613809145987034, -0.0036785562988370657, -0.004730583168566227,
- -0.017005957663059235, -0.03557276725769043, 0.10298655182123184, 0.07655782252550125,
- -0.047109950333833694, 0.15511348843574524, 0.05170133337378502, 0.11912902444601059,
- -0.002634239150211215, 0.03996486961841583, 0.07960908114910126, 0.06263028830289841,
- -0.15617810189723969, -0.0785817876458168, 0.07565391063690186, -0.06676843762397766,
- -0.03780197724699974, 0.05529968440532684, 0.06621167808771133, 0.002364459214732051,
- 0.07137032598257065, -0.015933465212583542, 0.011841384693980217, -0.08606722205877304,
- -0.019879113882780075, 0.02125689573585987, -0.049690745770931244, 0.02800135873258114,
- 0.07928550988435745, 0.009596049785614014, 0.0784500241279602, 0.08902432024478912,
- -0.042054951190948486, -0.14787860214710236, -0.07754616439342499, 0.10381924360990524,
- -0.0065442766062915325, -0.08265440165996552, 0.041076164692640305,
- -0.09734877943992615, 0.051559992134571075, -0.1860281527042389, 0.05565226450562477,
- 0.1530611366033554, -0.0880994200706482, -0.017087573185563087, -0.0005418014479801059,
- 0.07041838765144348, 0.021800469607114792, 0.0029569342732429504, -0.06389590352773666,
- 0.003404122544452548, 0.029886014759540558, 0.04970162361860275, -0.06875454634428024,
- 0.08979329466819763, 0.08081784099340439, -0.08248669654130936, 0.035864509642124176,
- 0.08116000145673752, -0.016759533435106277, -0.06268355995416641, 0.08381941169500351,
- 0.06137324497103691, -0.08270777016878128, -0.06290408223867416, -0.037056319415569305,
- -0.025614552199840546, -0.022451283410191536, -0.018197186291217804,
- -0.04583239555358887, 0.04373073950409889, -0.09073471277952194, 0.0002114850067300722,
- 0.025347720831632614, 0.01829843781888485, 0.13557755947113037, -0.047233033925294876,
- 0.08247110992670059, -0.053203023970127106, -0.014622819609940052, 0.056878529489040375,
- 0.03782350569963455, 0.08645626902580261, -0.022708315402269363, -0.022637778893113136,
- -0.027244001626968384, -0.09770447760820389, 0.015273071825504303, 0.0801967978477478,
- 0.050573643296957016, 0.011909304186701775, 0.011634484864771366, -0.07739394903182983,
- -0.07537785917520523, 0.1346532553434372, 0.07000880688428879, 0.020433085039258003,
- 0.030461307615041733, -0.11477254331111908, -0.036830902099609375, 0.12869927287101746,
- -0.06731774657964706, -0.0012993806740269065, 0.007160927169024944,
- -0.12221348285675049, 0.07738815248012543, 0.06913536787033081, 0.062136221677064896,
- 0.04237264394760132, 0.07340651750564575, 0.005240907892584801, -0.0030303553212434053,
- -0.007160167675465345, 0.01305338367819786, -0.047333598136901855, -0.11766395717859268,
- -0.08331044763326645, 0.033322256058454514, 0.06486024707555771, 0.03306993097066879,
- -0.14461611211299896, -0.013962704688310623, -0.03745274990797043
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 245,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Tim Cushing"],
- "epoch_date_downloaded": 1658793600,
- "epoch_date_modified": 1658793600,
- "epoch_date_submitted": 1658793600,
- "flag": null,
- "report_number": 1784,
- "source_domain": "techdirt.com",
- "submitters": ["Ingrid Dickinson (CSET)"],
- "title": "Another Bogus Hit From A License Plate Reader Results In Another Citizen Surrounded By Cops With Guns Out",
- "url": "https://www.techdirt.com/2014/05/23/another-bogus-hit-license-plate-reader-results-another-citizen-surrounded-cops-with-guns-out/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "prairie-village-police-department",
- "name": "Prairie Village Police Department"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "unknown",
- "name": "Unknown"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "mark-molner",
- "name": "Mark Molner"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1787, 1785],
- "vector": [
- -0.06459531933069229, 0.06484201550483704, -0.038439441472291946, -0.057218872010707855,
- 0.05302990972995758, -0.09461882710456848, 0.01403801515698433, -0.01027750875800848,
- 0.05378539487719536, -0.14538875222206116, 0.011187899857759476, 0.03434472531080246,
- 0.059332601726055145, -0.0652524083852768, 0.034228064119815826, -0.07341285049915314,
- -0.060676634311676025, 0.0011316551826894283, 0.014248552732169628,
- -0.11942468583583832, -0.09091094881296158, 0.008652770891785622, 0.047602973878383636,
- 0.10269150882959366, -0.011434637941420078, 0.04170078784227371, 0.09170316904783249,
- 0.13464206457138062, -0.08602113276720047, 0.0134368184953928, -0.02417638711631298,
- -0.03423633426427841, 0.09423872083425522, -0.02606584131717682, 0.031126663088798523,
- 0.09532731771469116, 0.06374579668045044, -0.07571852952241898, -0.050516240298748016,
- -0.028845537453889847, 0.036553725600242615, 0.15180405974388123,
- -0.0029586460441350937, -0.024769682437181473, 0.07173088192939758,
- -0.02267056703567505, 0.01774018444120884, 0.03369465470314026, -0.013846976682543755,
- -0.04188913851976395, 0.007559155113995075, -0.06778410822153091, -0.07290598005056381,
- 0.004817497916519642, -0.06207513064146042, 0.07426154613494873, 0.02246425487101078,
- 0.035129908472299576, -0.014020226895809174, -0.058091409504413605,
- -0.04690927639603615, -0.12441329658031464, -0.04982180893421173, -0.06263668835163116,
- 0.11278501898050308, -0.07039358466863632, -0.041545312851667404, -0.03069133311510086,
- -0.004273389931768179, 0.05964589864015579, 0.03510440140962601, -0.0716063380241394,
- -0.009060821495950222, -0.0397801473736763, -0.031163830310106277,
- -0.016041524708271027, 0.029213327914476395, 0.21434286236763, -0.022474370896816254,
- 0.07303282618522644, 0.08339129388332367, -0.07087457180023193, 0.36748701333999634,
- 0.039601054042577744, 0.021351808682084084, -0.03794919699430466, 0.07499758899211884,
- 0.06498683989048004, 0.02157926931977272, 0.051633402705192566, 0.0010642120614647865,
- 0.05645344778895378, -0.024756666272878647, 0.032932765781879425, 0.0643419697880745,
- 0.008618630468845367, 0.01129842922091484, -0.13028566539287567, -0.054107144474983215,
- -0.0853908509016037, 0.014469903893768787, -0.05220313370227814, 0.09972662478685379,
- 0.04248223453760147, -0.04875073954463005, 0.023830048739910126, 0.07660828530788422,
- -0.01788974180817604, 0.02161291427910328, -0.06497716903686523, 0.018307870253920555,
- 0.06010337546467781, 0.05743037164211273, -0.0019682487472891808, 0.02129185199737549,
- -0.05591452121734619, 0.004583429079502821, 0.007568481378257275, 0.05987884849309921,
- 0.015573391690850258, -0.01290792878717184, 0.05328741669654846, 0.16409024596214294,
- -0.0720604658126831, -0.021192150190472603, -0.008961239829659462, -0.0828460305929184,
- 0.02235894650220871, 0.016051722690463066, -0.004843736998736858, -0.030975889414548874,
- -0.17374004423618317, 0.03526217117905617, 0.0383426696062088, 0.031006179749965668,
- -0.0009093736298382282, 0.0007985509000718594, -0.060615237802267075,
- 0.015458096750080585, 0.03676304221153259, 0.03855084627866745, 0.0792895257472992,
- 0.08770854771137238, 0.03567048907279968, 0.08724088221788406, 0.016159625723958015,
- -0.015904558822512627, -0.06448512524366379, -0.00027250219136476517,
- -0.043884117156267166, 0.03598836064338684, -0.06923256814479828, -0.040406204760074615,
- 0.06103186309337616, 0.005767937283962965, 0.5531656742095947, 0.03383488953113556,
- 0.08188730478286743, -0.032262831926345825, -0.023373056203126907, 0.15853363275527954,
- -0.04708461835980415, 0.03269708901643753, -0.015997134149074554, -0.045050248503685,
- -0.031631335616111755, 0.0017595551908016205, 0.015804793685674667,
- 0.037741534411907196, 0.07219807058572769, 0.10752590000629425, 0.030128546059131622,
- 0.12744900584220886, -0.013416755013167858, -0.03151245042681694, -0.024415191262960434,
- 0.0013315249234437943, 0.02217596024274826, -0.09600342810153961, -0.022483501583337784,
- 0.07243488729000092, 0.05666162818670273, -0.049050770699977875, 0.03305348381400108,
- -0.0047546569257974625, 0.0023796730674803257, -0.018187975510954857,
- -0.004808683879673481, 0.023205501958727837, -0.007138141430914402, 0.06759081035852432,
- 0.05306075140833855, -0.024837151169776917, -0.06973492354154587, -0.04093585163354874,
- 0.09753236174583435, 0.0019914424046874046, -0.015504760667681694, 0.08968871831893921,
- -0.0883897989988327, 0.02790832333266735, -0.003769164439290762, 0.15526124835014343,
- -0.07886539399623871, 0.036122169345617294, 0.03634672611951828, -0.02503640577197075,
- 0.01719934120774269, -0.036111555993556976, -0.023892464116215706, -0.082096628844738,
- 0.026690978556871414, 0.05703549087047577, 0.09815830737352371, 0.029819639399647713,
- -0.07739876955747604, 0.04021422564983368, -0.030601970851421356, -0.013029692694544792,
- -0.0865790843963623, 0.09602482616901398, 0.034854620695114136, -0.04740380123257637,
- -0.013182451948523521, 0.037280112504959106, 0.02363680675625801, 0.0744745135307312,
- 0.024764709174633026, 0.034758709371089935, -0.02205611579120159, 0.0015987465158104897,
- 0.0844627395272255, 0.037693947553634644, 0.059988878667354584, 0.09092560410499573,
- -0.14302906394004822, -0.01482255756855011, -0.02988342195749283, -0.052520934492349625,
- -0.025792354717850685, -0.11721953749656677, 0.047721266746520996, 0.04521398991346359,
- 0.06599154323339462, 0.003330892650410533, 0.058442506939172745, 0.04257012903690338,
- 0.02578200027346611, 0.05195216089487076, 0.015184782445430756, -0.020840968936681747,
- -0.03845100849866867, -0.017269354313611984, -0.0069611710496246815,
- 0.08998478949069977, 0.022272491827607155, -0.059071216732263565, -0.021394170820713043,
- -0.037344470620155334, -0.06647233664989471, -0.06995602697134018, -0.05029202997684479,
- -0.041091613471508026, 0.0058663575910031796, -0.09872634708881378,
- -0.05470627546310425, -0.05138428881764412, 0.03279238939285278, 0.06517896801233292,
- -0.01652340218424797, 0.03419007733464241, -0.08062349259853363, 0.012550348415970802,
- 0.026660818606615067, 0.03998562693595886, -0.002929655835032463, 0.01890159212052822,
- -0.05451801046729088, -0.07913552224636078, -0.05330274626612663, 0.040081433951854706,
- -0.05907973647117615, -0.0490727461874485, -0.03248913213610649, -0.04817475378513336,
- 0.03352709114551544, 0.016053015366196632, 0.004546603187918663, 0.041038401424884796,
- 0.04506080970168114, 0.037240881472826004, -0.030375462025403976, 0.017070887610316277,
- 0.03347211331129074, -0.03843243420124054, 0.02472955733537674, 0.045676589012145996,
- -0.004283462185412645, 0.0426817312836647, -0.050276823341846466, -0.010838082991540432,
- -0.10592645406723022, -0.03357134759426117, -0.047225527465343475, 0.03751315176486969,
- -0.07328571379184723, -0.028722021728754044, -0.015391036868095398,
- -0.004180891904979944, 0.0337069071829319, -0.05927393212914467, -0.034790121018886566,
- -0.08690762519836426, 0.060673825442790985, -0.017676623538136482,
- -0.012810555286705494, 0.030207393690943718, -0.04362959787249565, 0.059781160205602646,
- 0.04209258779883385, 0.044664230197668076, 0.06699611246585846, 0.06032499670982361,
- -0.02748621627688408, 0.05698617547750473, 0.06777003407478333, -0.01901283487677574,
- -0.019965872168540955, 0.06569716334342957, 0.34224218130111694, -0.11317597329616547,
- 0.10984437167644501, 0.03187697380781174, 0.028700077906250954, 0.056225888431072235,
- -0.01653326116502285, 0.04935299605131149, 0.01745178923010826, 0.08410632610321045,
- 0.11368362605571747, -0.02545582316815853, 0.01611344702541828, -0.047068607062101364,
- 0.048010244965553284, -0.002096152165904641, -0.0012390855699777603,
- -0.019192039966583252, -0.023107189685106277, -0.04104113578796387,
- 0.014968853443861008, -0.05060761421918869, 0.04257732257246971, -0.031192414462566376,
- -0.10092714428901672, 0.018932927399873734, 0.02923174574971199, 0.044863149523735046,
- -0.03782731294631958, 0.02704826556146145, 0.0029724929481744766, 0.056971825659275055,
- -0.023438844829797745, 0.07603229582309723, 0.01718040741980076, 0.07848724722862244,
- -0.10946925729513168, -0.0683957040309906, 0.04150393605232239, -0.0004384145140647888,
- 0.06004710495471954, 0.06860806047916412, -0.007775723934173584, 0.0408121794462204,
- -0.05680961161851883, -0.030487820506095886, -0.011613677255809307,
- 0.004877787083387375, 0.06045261397957802, 0.07004709541797638, 0.14451196789741516,
- 0.012344715185463428, 0.011040856130421162, -0.043592751026153564, 0.056347452104091644,
- 0.11312101781368256, -0.027383776381611824, 0.020225293934345245, -0.008740324527025223,
- 0.037167035043239594, 0.048923179507255554, -0.02087712101638317, -0.0497741736471653,
- 0.05504254996776581, -0.07213374227285385, 0.037100765854120255, 0.0029502185061573982,
- -0.05771719664335251, 0.001676308922469616, -0.011406732723116875, -0.04797603189945221,
- 0.016369394958019257, 0.0806785374879837, -0.058874547481536865, 0.024168994277715683,
- 0.03960759565234184, 0.024484839290380478, -0.014210768043994904, -0.06555978953838348,
- 0.013832679949700832, -0.054764412343502045, 0.02373105101287365, 0.07840932160615921,
- 0.06770243495702744, -0.05911465734243393, -0.008278638124465942, -0.11067578941583633,
- -0.020738497376441956, 0.010432073846459389, 0.0007140040397644043,
- 0.018019985407590866, -0.01100889965891838, 0.07746655493974686, -0.011372683569788933,
- -0.009529570117592812, -0.08289838582277298, -0.05553414300084114,
- -0.009619707241654396, -0.09160128980875015, -0.08895498514175415, -0.03131236881017685,
- -0.04833199083805084, 0.08222092688083649, -0.07446879893541336, 0.02471456490457058,
- -0.019701220095157623, -0.030487922951579094, 0.008968472480773926, 0.06578223407268524,
- -0.042931050062179565, -0.0699852854013443, -0.04638119786977768, -0.024942029267549515,
- 0.021461118012666702, -0.018725411966443062, -0.06555774807929993,
- -0.029484443366527557, 0.0732097327709198, -0.017729975283145905, -0.09218721091747284,
- 0.00014006253331899643, -0.04070131853222847, 0.056273721158504486,
- -0.08670661598443985, -0.42440521717071533, 0.07898317277431488, 0.03976667672395706,
- 0.073835089802742, 0.0007812520489096642, -0.077828049659729, 0.014512039721012115,
- 0.024604691192507744, 0.03815041109919548, 0.042741186916828156, -0.02287972904741764,
- 0.04060006141662598, 0.0027190400287508965, -0.02668432891368866, 0.02874838188290596,
- -0.09374643862247467, 0.00131252221763134, 0.03616482391953468, -0.010438425466418266,
- -0.04662558436393738, -0.05066423863172531, -0.006733363494277, -0.03343091532588005,
- -0.06498076766729355, -0.029214825481176376, -0.00496687414124608, -0.09571719914674759,
- -0.1008681207895279, 0.010471288114786148, 0.045389384031295776, 0.008584780618548393,
- -0.052832141518592834, -0.022879909723997116, 0.012673860415816307,
- -0.052351824939250946, 0.07926448434591293, 0.023617884144186974, 0.0034269411116838455,
- -0.060719069093465805, 0.06867741793394089, 0.08348409831523895, 0.18851527571678162,
- -0.056928038597106934, 0.08770600706338882, -0.011679143644869328, 0.08141956478357315,
- -0.021342117339372635, 0.0755588710308075, -0.03151281923055649, -0.029119808226823807,
- -0.009099045768380165, -0.01453402265906334, 0.03888748586177826, -0.058321788907051086,
- -0.024861827492713928, -0.05143360421061516, -0.03317563235759735, -0.05370916798710823,
- -0.0017873886972665787, 0.09866361320018768, 0.027691205963492393,
- 0.0016654988285154104, 0.036803681403398514, 0.005283469334244728,
- -0.029804861173033714, -0.057271555066108704, -0.028981396928429604,
- -0.04824056476354599, -0.024010084569454193, 0.022343209013342857,
- -0.004952039569616318, -0.09184614568948746, 0.003978523425757885,
- -0.020273856818675995, -0.011409463360905647, 0.10687625408172607, -0.08941848576068878,
- 0.00007746322080492973, -0.038880281150341034, 0.1358696073293686,
- 0.0033078002743422985, 0.029157664626836777, 0.03962073475122452, 0.09720496833324432,
- 0.008618580177426338, -0.010322093963623047, -0.04017209634184837, -0.03528369963169098,
- 0.01706453412771225, 0.11065082252025604, -0.012948174960911274, 0.08944091200828552,
- 0.017494836822152138, -0.007894009351730347, -0.03397779539227486, 0.035672470927238464,
- 0.011226771399378777, 0.012641772627830505, -0.4918607473373413, -0.04939131438732147,
- 0.12171871215105057, -0.053819578140974045, 0.025849226862192154, 0.007370328065007925,
- 0.007393791805952787, 0.024504099041223526, 0.015066114254295826, -0.04244602471590042,
- 0.03500526398420334, 0.031079817563295364, 0.052394695580005646, -0.08982156217098236,
- 0.04547562450170517, 0.06403402239084244, 0.030399490147829056, -0.020259371027350426,
- 0.01230357214808464, -0.2139662802219391, 0.02666296437382698, -0.033380165696144104,
- 0.16389073431491852, 0.04723166301846504, -0.010694884695112705, 0.08693192154169083,
- -0.04655925929546356, 0.04741133749485016, 0.04294893890619278, 0.0820203572511673,
- 0.08463259041309357, -0.008011868223547935, -0.04340531677007675, 0.08072508871555328,
- 0.08159177005290985, 0.13917657732963562, 0.025165459141135216, 11.878250122070312,
- 0.03605520725250244, 0.05933328717947006, -0.06984328478574753, 0.026002593338489532,
- -0.03923738747835159, 0.049738988280296326, -0.05985789746046066, 0.09109991788864136,
- 0.0811130478978157, -0.005710577126592398, -0.036158397793769836, -0.051498107612133026,
- -0.02471310645341873, -0.00031645502895116806, -0.06472204625606537,
- 0.02685949020087719, -0.02465863898396492, 0.03535362705588341, -0.08029197156429291,
- -0.017324112355709076, 0.020854340866208076, 0.061368655413389206, 0.018179135397076607,
- -0.14266835153102875, 0.0672062486410141, 0.007711641490459442, 0.003864279482513666,
- 0.011788493022322655, -0.004319637082517147, 0.04404148831963539, 0.008869088254868984,
- 0.0928506851196289, 0.02399531565606594, 0.017954297363758087, 0.08293093740940094,
- -0.05909737944602966, 0.021540790796279907, 0.032634541392326355, 0.06552566587924957,
- -0.007039221003651619, 0.03108314797282219, -0.0057389093562960625, 0.04096713289618492,
- 0.05477935075759888, 0.03276263177394867, -0.016741227358579636, 0.11925843358039856,
- 0.015324119478464127, 0.059642717242240906, 0.06698556989431381, -0.0019275364466011524,
- 0.07860050350427628, 0.04758162423968315, 0.018765561282634735, -0.01744030974805355,
- 0.035186782479286194, -0.027144895866513252, 0.040679045021533966, 0.04918656498193741,
- -0.028697166591882706, 0.1286492943763733, 0.012767532840371132, 0.10474526882171631,
- 0.04003583639860153, 0.028674419969320297, 0.08117605000734329, 0.10110576450824738,
- -0.0933959037065506, -0.021391863003373146, 0.08358169347047806, -0.08238524198532104,
- -0.014239570125937462, 0.052240803837776184, 0.0028143376111984253,
- 0.013520714826881886, 0.12599068880081177, -0.009525196626782417, 0.04529167711734772,
- -0.013971173204481602, 0.008050404489040375, 0.013643207959830761,
- -0.057042673230171204, 0.012369847856462002, 0.029260776937007904, 0.000188351608812809,
- 0.09254814684391022, 0.10017657279968262, -0.04283023253083229, -0.08991418033838272,
- -0.06285199522972107, 0.016221454367041588, 0.0216347798705101, -0.06134576350450516,
- 0.016034794971346855, -0.06348088383674622, 0.030937746167182922, -0.11441999673843384,
- 0.07333731651306152, 0.09779646247625351, -0.04216838628053665, -0.04420320317149162,
- 0.015641232952475548, 0.11567974090576172, 0.019443625584244728, 0.02136204019188881,
- -0.07491932809352875, -0.046912528574466705, 0.016300808638334274, 0.05357944965362549,
- -0.05492018908262253, 0.11866861581802368, 0.008456099778413773, -0.04586034268140793,
- 0.016940636560320854, 0.0593576654791832, -0.0023723270278424025, -0.01084215845912695,
- 0.03883323818445206, 0.0643557533621788, -0.10290143638849258, -0.03856351971626282,
- -0.0505983904004097, -0.04870428144931793, 0.006965710781514645, -0.03065616637468338,
- -0.008294358849525452, 0.020368866622447968, -0.0633300170302391, -0.04866948351264,
- -0.03370164334774017, 0.038315463811159134, 0.20593908429145813, -0.007077975198626518,
- 0.07222817093133926, -0.03590059280395508, -0.00247215386480093, 0.06843636929988861,
- 0.051183369010686874, 0.09960372745990753, -0.022380825132131577, 0.0014728531241416931,
- -0.006117572076618671, -0.08309578895568848, -0.0008320081979036331,
- 0.08597487956285477, 0.041024476289749146, 0.027021102607250214, 0.036104992032051086,
- -0.04079931601881981, -0.0037452783435583115, 0.13641875982284546, 0.007921433076262474,
- -0.0046113114804029465, 0.03535378724336624, -0.07236739248037338,
- -0.008844017051160336, 0.12044695764780045, -0.017100464552640915,
- -0.010048821568489075, 0.030342593789100647, -0.21285000443458557, 0.01496234629303217,
- -0.00359935499727726, 0.028553815558552742, 0.020639371126890182, 0.07259929180145264,
- 0.012270273640751839, 0.03360997885465622, 0.014469495043158531, 0.01981181837618351,
- -0.02841252088546753, -0.07194849848747253, -0.08666156232357025, 0.013842674903571606,
- 0.07065362483263016, 0.12252134084701538, -0.20529299974441528, -0.01103121042251587,
- -0.04762381315231323
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 246,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Cyrus Farivar"],
- "epoch_date_downloaded": 1658793600,
- "epoch_date_modified": 1658793600,
- "epoch_date_submitted": 1658793600,
- "flag": null,
- "report_number": 1787,
- "source_domain": "arstechnica.com",
- "submitters": ["Khoa Lam"],
- "title": "Due to license plate reader error, cop approaches innocent man, weapon in hand",
- "url": "https://arstechnica.com/tech-policy/2014/04/due-to-license-plate-reader-error-cop-approaches-innocent-man-weapon-in-hand/"
- },
- {
- "__typename": "Report",
- "authors": ["Tim Cushing"],
- "epoch_date_downloaded": 1658793600,
- "epoch_date_modified": 1658793600,
- "epoch_date_submitted": 1658793600,
- "flag": null,
- "report_number": 1785,
- "source_domain": "techdirt.com",
- "submitters": ["Ingrid Dickinson (CSET)"],
- "title": "Driver Finds Himself Surrounded By Cops With Guns Out After Automatic License Plate Reader Misreads His Plate",
- "url": "https://www.techdirt.com/2014/04/28/driver-finds-himself-surrounded-cops-with-guns-out-after-automatic-license-plate-reader-misreads-his-plate/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "contra-costa-county-sheriff",
- "name": "Contra Costa County Sheriff"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "vigilant-solutions",
- "name": "Vigilant Solutions"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "brian-hofer",
- "name": "Brian Hofer"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1790, 1789],
- "vector": [
- -0.12299448251724243, 0.06519225984811783, 0.015404335223138332, -0.08387626707553864,
- 0.07109235227108002, -0.0071074021980166435, -0.018864154815673828, 0.04847606644034386,
- 0.08251994848251343, -0.15156736969947815, -0.018162086606025696, 0.07913784682750702,
- 0.019035877659916878, -0.08461827784776688, 0.03298696503043175, -0.09583403170108795,
- -0.08351641893386841, -0.0638948529958725, -0.06446101516485214, -0.14801205694675446,
- -0.015944844111800194, -0.04206591472029686, 0.09393386542797089, 0.13220348954200745,
- -0.0830945372581482, 0.03608350828289986, 0.14183387160301208, 0.1347467452287674,
- -0.09047092497348785, 0.0578414648771286, -0.03597099706530571, -0.10411697626113892,
- 0.11901338398456573, 0.01706317812204361, -0.041222382336854935, 0.156469464302063,
- -0.03076048754155636, -0.059988416731357574, 0.0049101910553872585,
- 0.008366076275706291, 0.009835878387093544, 0.30547091364860535, 0.04129042848944664,
- -0.0700412318110466, 0.060668110847473145, -0.057077616453170776, 0.02584024704992771,
- 0.08658196032047272, 0.013672813773155212, -0.007328885607421398, -0.019462503492832184,
- 0.0426972359418869, -0.06193162500858307, 0.08404272794723511, -0.12725822627544403,
- 0.14247336983680725, 0.04990413784980774, -0.058840010315179825, 0.02326585352420807,
- -0.10927464067935944, -0.06241805478930473, -0.27230310440063477, -0.02841976471245289,
- -0.11595303565263748, 0.10689855366945267, -0.08896185457706451, -0.06880355626344681,
- -0.030239565297961235, -0.006476184818893671, 0.050847772508859634, 0.03233399987220764,
- -0.017558854073286057, -0.048748791217803955, 0.03919130191206932, 0.007334248162806034,
- -0.04173339158296585, 0.0320889949798584, 0.28107398748397827, -0.15100763738155365,
- 0.015024025924503803, 0.10675320774316788, -0.07764169573783875, 0.5797348022460938,
- 0.02954864874482155, -0.03618562966585159, -0.023207899183034897, 0.11568969488143921,
- 0.03176087141036987, 0.045677896589040756, 0.06086307764053345, -0.061459027230739594,
- 0.04622839391231537, -0.10726931691169739, 0.04337994009256363, 0.08672208338975906,
- 0.005531142931431532, -0.017298126593232155, 0.09077595174312592, -0.030464138835668564,
- -0.0874401330947876, 0.0223066583275795, -0.03698860853910446, 0.07460728287696838,
- 0.06897001713514328, -0.04126068577170372, 0.02002122439444065, 0.1370258927345276,
- -0.06563285738229752, 0.06995372474193573, -0.055376842617988586, 0.051934294402599335,
- 0.004027348943054676, 0.04983678460121155, -0.058069802820682526, 0.012144280597567558,
- -0.05978705734014511, 0.026745621114969254, 0.004937539342790842, 0.11438862979412079,
- 0.03666986525058746, -0.04360105097293854, 0.056821439415216446, 0.10449936240911484,
- -0.07324901223182678, -0.0532955601811409, -0.035007741302251816, -0.1024596244096756,
- -0.050412461161613464, -0.036396682262420654, 0.014208031818270683,
- -0.07672837376594543, -0.20902052521705627, 0.0076263537630438805, 0.1155463308095932,
- -0.03187251836061478, -0.06510215252637863, -0.018439117819070816, -0.09398876130580902,
- 0.0576234832406044, -0.06155695766210556, -0.03483276069164276, 0.06589153409004211,
- 0.09068208932876587, 0.05585388094186783, 0.1498204916715622, 0.08773181587457657,
- -0.060348883271217346, -0.02854253724217415, 0.025029003620147705, 0.00640540337190032,
- 0.1465628743171692, -0.12305684387683868, -0.047579389065504074, 0.00029312577680684626,
- -0.012042660266160965, 0.7296259999275208, 0.12682197988033295, 0.23067167401313782,
- -0.009805329144001007, -0.03042590245604515, 0.20538458228111267, 0.00539618032053113,
- 0.10770602524280548, -0.10152934491634369, -0.03774013742804527, 0.003532455302774906,
- -0.06140010058879852, -0.05095234885811806, 0.025174923241138458, 0.052478186786174774,
- 0.11055471748113632, 0.01568334735929966, 0.11396776884794235, 0.012188630178570747,
- -0.14073210954666138, -0.0011140197748318315, 0.11811619251966476,
- -0.025201929733157158, -0.11646813154220581, -0.03364206850528717, 0.07428481429815292,
- 0.09362725168466568, -0.08985230326652527, 0.021315207704901695, -0.07214978337287903,
- 0.03323410451412201, -0.056251127272844315, 0.01866757497191429, -0.031173035502433777,
- 0.07454420626163483, 0.07516057789325714, 0.07795415818691254, 0.018203699961304665,
- -0.1682305932044983, -0.08737361431121826, 0.11572863161563873, -0.005796375218778849,
- -0.03982722759246826, 0.06863397359848022, -0.09003863483667374, 0.06644977629184723,
- 0.06616447865962982, 0.14805757999420166, -0.14024707674980164, -0.01876193657517433,
- 0.012548122555017471, -0.018983403220772743, 0.06187007576227188, -0.006573055870831013,
- -0.05360305309295654, -0.07855445146560669, 0.0065924022346735, 0.010321833193302155,
- 0.08310868591070175, 0.06848224252462387, -0.05620962381362915, 0.03832268714904785,
- 0.06445103138685226, 0.01608085073530674, -0.00020076334476470947, 0.05573230981826782,
- 0.12502698600292206, 0.024514559656381607, -0.02432439476251602, 0.05193369463086128,
- 0.05290074646472931, 0.07377339154481888, 0.007630005478858948, 0.07933542132377625,
- 0.018172532320022583, -0.09648493677377701, 0.01933370530605316, 0.017286797985434532,
- 0.02989140711724758, 0.13522684574127197, -0.07093332707881927, -0.029715456068515778,
- -0.012583862990140915, -0.006598292849957943, 0.013376351445913315,
- 0.0013005728833377361, 0.09937594830989838, 0.08737271279096603, 0.11131193488836288,
- 0.06723729521036148, 0.05641623213887215, 0.03980274498462677, 0.09685170650482178,
- 0.06475064158439636, 0.11625663936138153, -0.01801372319459915, -0.07298470288515091,
- -0.013641951605677605, 0.007364577613770962, 0.06942512094974518, 0.06553010642528534,
- -0.08215603232383728, -0.039347514510154724, -0.07407866418361664, -0.07653708010911942,
- -0.09411871433258057, -0.03771330788731575, -0.0033342912793159485, 0.08051551878452301,
- -0.07193650305271149, -0.10316489636898041, -0.10799108445644379, 0.022668536752462387,
- 0.09610200673341751, 0.006792095955461264, -0.001727541908621788, -0.11022047698497772,
- 0.03421995788812637, -0.056537363678216934, 0.04927337169647217, -0.029409509152173996,
- 0.06312310695648193, 0.0015458762645721436, -0.05884961783885956, 0.03715982288122177,
- -0.017942463979125023, -0.0033371131867170334, -0.0558074414730072,
- -0.041679687798023224, -0.04194818437099457, -0.06629402935504913,
- -0.010437396354973316, 0.0034586035180836916, 0.02869422733783722, 0.04350961372256279,
- 0.06592054665088654, 0.006282301619648933, -0.0966133177280426, 0.1061687022447586,
- -0.010466097854077816, -0.0027478919364511967, 0.10835118591785431, -0.074817955493927,
- 0.04601481556892395, 0.008519040420651436, -0.06371742486953735, -0.0669868215918541,
- -0.020319338887929916, -0.05032093822956085, 0.038920480757951736,
- -0.004653260111808777, 0.0012058564461767673, -0.06756468862295151, -0.0070514976978302,
- 0.05700847506523132, -0.05797679349780083, -0.06733239442110062, -0.11281555891036987,
- 0.1644742488861084, -0.013563746586441994, -0.0298825241625309, 0.036052804440259933,
- -0.018946398049592972, 0.04519621282815933, -0.00809677504003048, 0.03636886179447174,
- 0.02558898739516735, 0.08004063367843628, -0.04540953412652016, 0.03696165233850479,
- 0.07728587090969086, -0.08391441404819489, 0.027144620195031166, 0.06911269575357437,
- 0.4784861207008362, -0.2193402498960495, 0.07827804237604141, 0.12173079699277878,
- 0.04834743216633797, 0.02569548971951008, -0.05210837721824646, 0.06636366993188858,
- 0.06468486785888672, 0.12478126585483551, 0.12730921804904938, -0.00843222625553608,
- -0.032881319522857666, -0.122616708278656, 0.12708954513072968, -0.0226872768253088,
- 0.03685513511300087, -0.026445865631103516, -0.14962664246559143, -0.05785882845520973,
- 0.07926920056343079, -0.057337161153554916, 0.0003047501668334007, 0.034902628511190414,
- -0.10778862237930298, 0.024905268102884293, 0.011896916665136814, 0.020281996577978134,
- -0.07633990049362183, 0.021517716348171234, -0.022521620616316795, 0.07131753861904144,
- 0.0013862233608961105, 0.017095880582928658, -0.1264631301164627, 0.0029735700227320194,
- -0.08274966478347778, -0.10110858082771301, 0.14490047097206116, -0.004677528515458107,
- 0.09732794761657715, 0.046133555471897125, -0.0663943737745285, 0.03633010759949684,
- -0.058459460735321045, -0.08941368758678436, 0.04355764389038086, 0.06730228662490845,
- 0.045009225606918335, 0.11936940997838974, 0.16053220629692078, -0.05188711732625961,
- -0.09654790163040161, -0.09727415442466736, 0.0850108340382576, 0.13414469361305237,
- -0.048376426100730896, -0.02213366888463497, 0.027895821258425713, -0.0245331022888422,
- 0.0015222909860312939, -0.08254730701446533, -0.024514086544513702,
- 0.023969363421201706, -0.03509732708334923, 0.09992880374193192, 0.024377068504691124,
- 0.0019168804865330458, -0.1719462126493454, 0.01671363227069378, -0.0582580640912056,
- 0.0067708152346313, 0.11510556936264038, -0.0339236818253994, 0.039915382862091064,
- -0.01962101459503174, -0.0007890039123594761, 0.0051032681949436665,
- -0.06987148523330688, 0.03501858562231064, -0.01744457706809044, 0.028101932257413864,
- 0.09927898645401001, 0.052421048283576965, -0.04132826253771782, 0.0606735497713089,
- -0.1363081932067871, 0.06453155726194382, -0.003013179637491703, -0.013968282379209995,
- 0.026056185364723206, -0.052362002432346344, 0.059405796229839325, 0.023945365101099014,
- -0.055477820336818695, 0.053837262094020844, 0.003897883463650942, -0.07818448543548584,
- -0.08578382432460785, -0.03159263730049133, -0.025515597313642502, -0.09745675325393677,
- 0.05654549598693848, -0.17795312404632568, -0.03712960705161095, -0.029753215610980988,
- -0.020321620628237724, 0.033207327127456665, 0.0387117862701416, 0.057840872555971146,
- -0.15224266052246094, 0.05628161132335663, -0.05860486626625061, 0.07586618512868881,
- 0.02605133317410946, -0.10152138769626617, 0.00454536359757185, 0.06323123723268509,
- 0.08882786333560944, -0.01654820516705513, 0.05094628036022186, -0.11858586966991425,
- 0.02050967700779438, -0.16004744172096252, -0.48244088888168335, 0.07058028876781464,
- -0.02329988218843937, 0.03047141619026661, 0.006343294866383076, -0.03744923323392868,
- 0.0744541734457016, 0.0010850250255316496, -0.08717559278011322, 0.12184014916419983,
- -0.06846018135547638, 0.013500280678272247, -0.012510694563388824, -0.06882599741220474,
- -0.061381980776786804, -0.04607643932104111, -0.07395660877227783, 0.098785899579525,
- -0.004558365326374769, -0.12212276458740234, -0.1436813771724701, 0.03126545995473862,
- 0.018472258001565933, 0.023678818717598915, -0.01122114434838295, 0.008725480176508427,
- -0.012698699720203876, -0.029156450182199478, 0.032688163220882416, 0.05725429207086563,
- 0.03164086490869522, -0.07571305334568024, -0.02950914576649666, 0.05929115414619446,
- -0.031301241368055344, 0.1203746646642685, 0.011157989501953125, 0.016352511942386627,
- -0.06948009133338928, 0.10713538527488708, 0.0636049434542656, 0.17709270119667053,
- -0.03515155240893364, 0.09436481446027756, 0.061473771929740906, 0.19799287617206573,
- 0.07921252399682999, 0.03527280315756798, -0.021909620612859726, -0.029859498143196106,
- 0.018353736028075218, -0.04409446567296982, 0.06884428858757019, -0.09566149115562439,
- -0.046251557767391205, -0.03454842045903206, -0.06241799518465996,
- -0.004258894361555576, 0.06532350182533264, 0.19970978796482086, 0.04767664521932602,
- 0.00047333567636087537, -0.004709909670054913, -0.05577877163887024,
- -0.011632152833044529, -0.07624828815460205, -0.1038096696138382, -0.00268429983407259,
- -0.040702879428863525, 0.012201742269098759, -0.04114571213722229, -0.15176944434642792,
- 0.009434325620532036, 0.009592599235475063, -0.013454476371407509, 0.10364798456430435,
- -0.017925934866070747, 0.027589458972215652, -0.031925469636917114, 0.1524086445569992,
- 0.057757072150707245, -0.03231068700551987, 0.03701016306877136, 0.10762760043144226,
- 0.006059558596462011, 0.03750054910778999, -0.05653703212738037, -0.06891534477472305,
- -0.0037359753623604774, 0.14165914058685303, -0.07444778829813004, 0.09575121104717255,
- 0.07165736705064774, -0.07017523050308228, -0.08211176842451096, 0.01764703169465065,
- -0.052831362932920456, 0.058710433542728424, -0.5113048553466797, -0.022329013794660568,
- 0.14404897391796112, -0.02448924630880356, 0.02614232338964939, 0.08438362926244736,
- 0.06334732472896576, -0.018882405012845993, -0.033631179481744766, -0.08399704098701477,
- 0.16072401404380798, 0.03487488999962807, 0.03998468071222305, -0.08904451131820679,
- 0.05368367210030556, 0.08956914395093918, -0.019139908254146576, 0.015508914366364479,
- 0.07075105607509613, -0.2767298221588135, 0.0045434776693582535, -0.030345361679792404,
- 0.11820550262928009, 0.022530820220708847, 0.01587379351258278, 0.07039826363325119,
- -0.02928103692829609, 0.022770585492253304, 0.10106053203344345, -0.008183740079402924,
- -0.03237686678767204, -0.0309078861027956, -0.06086501479148865, 0.11939126253128052,
- 0.1253836303949356, 0.04787430167198181, -0.01965211145579815, 12.469034194946289,
- 0.07990019023418427, 0.0864599347114563, -0.1425766944885254, 0.056364256888628006,
- -0.04654311388731003, 0.002387050539255142, -0.11401452124118805, 0.0774397924542427,
- 0.15596333146095276, -0.06296541541814804, -0.0868571549654007, -0.06517964601516724,
- -0.10851188749074936, -0.009541710838675499, -0.0661943256855011, -0.07596486061811447,
- 0.020767271518707275, 0.04227078706026077, -0.04892241209745407, -0.019626718014478683,
- 0.021544188261032104, 0.06916221976280212, 0.0027628224343061447, -0.11498397588729858,
- 0.037992924451828, 0.03984443098306656, -0.02724549174308777, 0.0009662716183811426,
- 0.08533778786659241, -0.05241888761520386, 0.007539008278399706, 0.039361972361803055,
- -0.016500422731041908, 0.009858724661171436, 0.08871562033891678, 0.08387383818626404,
- 0.03341243788599968, 0.007741477340459824, 0.08958402276039124, -0.007407661061733961,
- 0.05749770253896713, 0.05183525010943413, 0.02057720348238945, 0.03812701627612114,
- -0.00453865947201848, 0.029718592762947083, 0.13190799951553345, -0.0004880637861788273,
- 0.0385059118270874, 0.14225156605243683, -0.029996588826179504, 0.1586906909942627,
- 0.0053198449313640594, 0.005964539013803005, 0.045446544885635376,
- -0.011307958513498306, -0.06302786618471146, 0.0368959978222847, 0.05226081609725952,
- -0.042372677475214005, 0.146627277135849, -0.00822603888809681, 0.1089288592338562,
- -0.05073718726634979, 0.08616945147514343, 0.06550323218107224, 0.12031496316194534,
- -0.18978950381278992, -0.11406560242176056, 0.0056932466104626656, -0.09063661843538284,
- -0.08735142648220062, 0.11557242274284363, 0.13262939453125, -0.032775893807411194,
- 0.036533717066049576, -0.049282707273960114, 0.01048351265490055, -0.04221614450216293,
- -0.03947813808917999, 0.07959246635437012, 0.020601017400622368, 0.006127300672233105,
- 0.07103879749774933, 0.04686177521944046, 0.07251392304897308, 0.12361191213130951,
- -0.0750633254647255, -0.13153231143951416, -0.10449907183647156, 0.08283814787864685,
- -0.0601840578019619, -0.07452918589115143, 0.05518006160855293, -0.09190776199102402,
- 0.13544419407844543, -0.20411306619644165, 0.059290364384651184, 0.10031276941299438,
- -0.0890655368566513, -0.013873112387955189, -0.04325629025697708, 0.07427319884300232,
- 0.01442574430257082, 0.05241057276725769, -0.06432048231363297, 0.024911468848586082,
- 0.013108398765325546, 0.0596865713596344, -0.0658624917268753, 0.0871252790093422,
- 0.06216690316796303, -0.08665906637907028, 0.02797001041471958, 0.06758315116167068,
- -0.0503375306725502, -0.03542332723736763, 0.09009264409542084, 0.06420451402664185,
- -0.09907710552215576, -0.0734899565577507, -0.08016364276409149, -0.04809711128473282,
- -0.06471212208271027, -0.07680035382509232, 0.0010638870298862457, 0.04902930557727814,
- -0.12734130024909973, -0.013416417874395847, 0.03257503733038902, 0.04062812775373459,
- 0.11719067394733429, -0.013687306083738804, 0.06909875571727753, -0.08167248964309692,
- -0.07098612189292908, 0.038406964391469955, 0.04927642270922661, 0.04797469079494476,
- -0.014650484547019005, -0.03653736412525177, -0.06449895352125168, -0.08810335397720337,
- 0.008859146386384964, 0.13731542229652405, 0.017718689516186714, 0.02940678596496582,
- 0.04912080615758896, -0.10218578577041626, -0.07988420128822327, 0.10912875831127167,
- 0.06829170882701874, 0.0456831231713295, 0.016817111521959305, -0.09429964423179626,
- -0.08331345021724701, 0.10368649661540985, -0.03644667938351631, 0.0023098087403923273,
- 0.0236569382250309, -0.002277623862028122, 0.11593858152627945, 0.11009788513183594,
- 0.09410111606121063, 0.050168752670288086, 0.058468349277973175, -0.01350775733590126,
- 0.015888918191194534, 0.008930595591664314, 0.02021028846502304, -0.022827191278338432,
- -0.11055038869380951, -0.07731090486049652, 0.021546274423599243, 0.09089513123035431,
- -0.010981660336256027, -0.11064811050891876, -0.016560301184654236, -0.04330495372414589
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 248,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Lisa Fernandez"],
- "epoch_date_downloaded": 1658793600,
- "epoch_date_modified": 1658880000,
- "epoch_date_submitted": 1658793600,
- "flag": null,
- "report_number": 1790,
- "source_domain": "ktvu.com",
- "submitters": ["Khoa Lam"],
- "title": "Privacy advocate sues CoCo sheriff's deputies after license plate readers target his car stolen",
- "url": "https://www.ktvu.com/news/privacy-advocate-sues-coco-sheriffs-deputies-after-license-plate-readers-target-his-car-stolen"
- },
- {
- "__typename": "Report",
- "authors": ["Charlie Warzel"],
- "epoch_date_downloaded": 1658793600,
- "epoch_date_modified": 1658880000,
- "epoch_date_submitted": 1658793600,
- "flag": null,
- "report_number": 1789,
- "source_domain": "nytimes.com",
- "submitters": ["Ingrid Dickinson (CSET)"],
- "title": "When License-Plate Surveillance Goes Horribly Wrong",
- "url": "https://www.nytimes.com/2019/04/23/opinion/when-license-plate-surveillance-goes-horribly-wrong.html"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "chinese-government",
- "name": "Chinese government"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "chinese-government",
- "name": "Chinese government"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "uyghur-people",
- "name": "Uyghur people"
- },
- {
- "__typename": "Entity",
- "entity_id": "turkic-muslim-ethnic-groups",
- "name": "Turkic Muslim ethnic groups"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1792, 1791],
- "vector": [
- -0.055118903517723083, 0.09395455569028854, 0.01273752935230732, -0.08653603494167328,
- 0.08135192096233368, -0.0650448352098465, 0.013953780755400658, 0.02875193953514099,
- 0.07354722917079926, -0.12242499738931656, -0.02383287623524666, 0.023505467921495438,
- 0.014128001406788826, -0.13773185014724731, 0.014259988442063332, -0.13143301010131836,
- -0.11828183382749557, -0.0402984656393528, -0.0006728580920025706, -0.14888577163219452,
- -0.07503445446491241, 0.02631298080086708, -0.03905405104160309, 0.09059051424264908,
- -0.053180593997240067, 0.07763533294200897, 0.1498919129371643, 0.12412077188491821,
- -0.09023472666740417, 0.10703715682029724, -0.01158200204372406, -0.08119184523820877,
- 0.16534781455993652, 0.027952030301094055, 0.03891199827194214, 0.1373312622308731,
- 0.03531666845083237, -0.036620330065488815, 0.07649555057287216, -0.039447225630283356,
- -0.008038963191211224, 0.3195413649082184, -0.052597321569919586, -0.030475234612822533,
- 0.049896806478500366, -0.09189923107624054, 0.0044969855807721615, 0.03694308176636696,
- 0.026518158614635468, 0.02876250259578228, -0.011808193288743496, 0.07549567520618439,
- -0.05433126911520958, 0.04595021903514862, -0.08933649957180023, 0.0953567624092102,
- 0.01123649813234806, -0.0026032058522105217, 0.028455205261707306, -0.07876558601856232,
- -0.07219380885362625, -0.26171308755874634, 0.0093163400888443, -0.06452102959156036,
- 0.08707596361637115, -0.09151291102170944, -0.040713079273700714, 0.037745289504528046,
- 0.020916657522320747, 0.07705488055944443, 0.03377004340291023, -0.05805012583732605,
- -0.0172306839376688, 0.03906054422259331, 0.006101508159190416, -0.00928686186671257,
- -0.0033377064391970634, 0.15285032987594604, -0.07547944784164429, 0.03297983855009079,
- 0.09685869514942169, -0.04306529462337494, 0.436533123254776, -0.0009618774056434631,
- -0.012639114633202553, 0.04851159453392029, 0.09718042612075806, 0.027751432731747627,
- 0.03585968539118767, 0.032821398228406906, -0.031642381101846695, 0.009140484035015106,
- -0.05834709852933884, -0.03366144374012947, 0.09579245746135712, 0.03221168741583824,
- -0.011942264623939991, -0.008657215163111687, -0.02036942169070244, -0.0948062390089035,
- -0.004333139397203922, -0.005858870223164558, 0.04758702963590622, 0.06496116518974304,
- -0.05501073598861694, -0.0028685275465250015, 0.05872870236635208, -0.09780215471982956,
- 0.031321700662374496, -0.07574808597564697, 0.03808767348527908, 0.033418867737054825,
- 0.06265359371900558, -0.044025346636772156, 0.015857849270105362, -0.07142630219459534,
- 0.03731590136885643, 0.012150943279266357, 0.09180746227502823, 0.09099564701318741,
- -0.014726201072335243, 0.06435729563236237, 0.10855972766876221, -0.07009672373533249,
- -0.08066118508577347, -0.04145016521215439, -0.06171606481075287, -0.06195445358753204,
- -0.0389399453997612, 0.036362290382385254, -0.06861857324838638, -0.20476791262626648,
- 0.014779489487409592, 0.056851208209991455, -0.03236452490091324,
- -0.0067125726491212845, -0.02493792586028576, -0.04050857573747635,
- 0.0047429632395505905, -0.031111376360058784, 0.025190265849232674, 0.07555932551622391,
- 0.03596010431647301, 0.0027510374784469604, 0.06161484122276306, 0.07164918631315231,
- -0.059057652950286865, -0.030313603579998016, -0.0042108576744794846,
- 0.01834140717983246, 0.12578798830509186, -0.12059824168682098, -0.028564391657710075,
- 0.014755135402083397, -0.0482570081949234, 0.7793618440628052, 0.13232195377349854,
- 0.16761021316051483, -0.013849025592207909, -0.05649064481258392, 0.17786097526550293,
- 0.05363762378692627, 0.0643693283200264, -0.09643532335758209, -0.04775652289390564,
- 0.012109363451600075, -0.04870549589395523, -0.005407373886555433, 0.02139805443584919,
- 0.03443574532866478, 0.08909463882446289, -0.020942240953445435, 0.11022816598415375,
- 0.057049885392189026, -0.055545080453157425, -0.042020395398139954, 0.06234729290008545,
- -0.01468733698129654, -0.0778326690196991, -0.009662735275924206, 0.05823064595460892,
- 0.08292736113071442, -0.07526803016662598, 0.019723691046237946, -0.052638471126556396,
- 0.10637116432189941, -0.032149262726306915, 0.04350597411394119, -0.020247772336006165,
- 0.059607356786727905, 0.02529638633131981, 0.09296324849128723, 0.011242110282182693,
- -0.1383829414844513, -0.047095201909542084, 0.03296852856874466, -0.04596956819295883,
- -0.025604648515582085, 0.083802729845047, -0.11401437222957611, 0.054063521325588226,
- 0.05517222732305527, 0.23158961534500122, -0.139267235994339, 0.0072384849190711975,
- -0.02671159617602825, -0.04376994073390961, 0.029350049793720245,
- -0.0036509698256850243, -0.0545479878783226, -0.09610780328512192, 0.032096974551677704,
- 0.05209694802761078, 0.10593200474977493, 0.08418026566505432, -0.01871335320174694,
- 0.07809650897979736, 0.023083461448550224, 0.07188688218593597, -0.07056473195552826,
- 0.09478197991847992, 0.057989947497844696, -0.02214661054313183, -0.06677562743425369,
- 0.015841281041502953, 0.08511678129434586, 0.02807602286338806, 0.006311948411166668,
- 0.04443466663360596, -0.027316991239786148, -0.05699632316827774, 0.051220785826444626,
- 0.049030546098947525, 0.03631100058555603, 0.09755402058362961, -0.08494172245264053,
- -0.05865522474050522, -0.0629250556230545, -0.057823702692985535, -0.026829799637198448,
- -0.03758951649069786, 0.07129064202308655, 0.08563365042209625, 0.054930996149778366,
- 0.02521144226193428, 0.034767188131809235, 0.06873646378517151, -0.005995898507535458,
- 0.03737226501107216, 0.10164546966552734, -0.03866146132349968, -0.04632888734340668,
- -0.03240015357732773, -0.0016272412613034248, -0.020608261227607727,
- -0.011370785534381866, -0.08805635571479797, -0.03148777037858963, -0.1112421452999115,
- -0.062231339514255524, -0.14391730725765228, -0.05849575996398926, 0.011470135301351547,
- 0.05108893662691116, -0.05068596079945564, -0.045907162129879, -0.08257216215133667,
- -0.0010265940800309181, 0.11807334423065186, 0.020260948687791824,
- -0.017750663682818413, -0.1305779218673706, 0.04799745976924896, -0.018672075122594833,
- 0.05008839815855026, -0.04866218566894531, 0.03194829449057579, -0.010838614776730537,
- -0.08219216763973236, 0.004699597135186195, -0.03875517100095749, -0.07771512866020203,
- -0.042550839483737946, -0.08249544352293015, -0.04399622976779938, -0.0311405248939991,
- -0.0010399585589766502, -0.06854903697967529, 0.06225830316543579, 0.036812856793403625,
- 0.059114910662174225, -0.025396378710865974, -0.05434773489832878, 0.05051929131150246,
- -0.025294620543718338, -0.0018301429226994514, 0.1139078289270401, -0.04348226264119148,
- 0.007843414321541786, -0.011398514732718468, -0.008552628569304943,
- -0.061409369111061096, 0.018854986876249313, -0.04038131982088089, 0.041947975754737854,
- -0.039208706468343735, -0.01222296617925167, -0.0245681032538414, -0.023008691146969795,
- 0.06707838177680969, -0.05196479335427284, -0.09235688298940659, -0.06596678495407104,
- 0.14149786531925201, -0.020454321056604385, 0.018655654042959213, 0.02599218487739563,
- -0.07111424207687378, 0.04460129886865616, 0.025609439238905907, 0.006712688133120537,
- 0.01021420769393444, 0.05837986618280411, -0.03888409957289696, 0.06214471906423569,
- 0.039763495326042175, -0.05725111812353134, 0.027912206947803497, 0.10870656371116638,
- 0.4620610475540161, -0.08588328957557678, 0.06455174088478088, 0.11713595688343048,
- 0.00915272906422615, 0.03286745026707649, -0.019256265833973885, 0.06950880587100983,
- 0.06537414342164993, 0.13507819175720215, 0.14653512835502625, -0.04453069716691971,
- 0.0001712949015200138, -0.087577223777771, 0.09443917125463486, -0.03235762566328049,
- 0.038091231137514114, -0.000600793631747365, -0.12089607864618301,
- -0.029173238202929497, 0.05900736153125763, -0.06160344183444977, 0.04420926421880722,
- -0.03502871096134186, -0.0690898522734642, -0.018711604177951813, 0.002149917185306549,
- 0.01855657435953617, -0.06084389239549637, 0.047130294144153595, -0.022252440452575684,
- 0.04298225790262222, 0.035602252930402756, 0.038413599133491516, -0.11705054342746735,
- 0.0019613895565271378, -0.05897914618253708, -0.14664573967456818, 0.07557524740695953,
- 0.0062488531693816185, 0.07074283063411713, 0.08376659452915192, -0.04485952854156494,
- 0.05193696171045303, -0.04148203879594803, -0.07294031977653503, 0.07070453464984894,
- 0.04149306192994118, 0.036172132939100266, 0.06939740478992462, 0.12154246866703033,
- -0.04286877438426018, 0.0033142436295747757, -0.07673317193984985, 0.0669136643409729,
- 0.1379351019859314, -0.026396149769425392, 0.0022616253700107336, 0.04109220951795578,
- -0.008737565949559212, 0.003395441919565201, -0.046997860074043274,
- -0.04686827212572098, 0.027908451855182648, -0.009023986756801605, 0.07537787407636642,
- 0.05019573122262955, -0.0349765419960022, -0.12016038596630096, -0.05024076998233795,
- -0.04671049863100052, 0.05125701054930687, 0.11836943030357361, -0.09518350660800934,
- 0.04725716635584831, 0.032659128308296204, 0.030250336974859238, 0.021389978006482124,
- -0.08845232427120209, 0.020240936428308487, -0.046331655234098434, -0.01772334985435009,
- 0.05703822895884514, 0.07202151417732239, -0.009299363940954208, 0.12175174057483673,
- -0.13187789916992188, 0.10751526057720184, -0.05336613953113556, -0.024860776960849762,
- -0.0004595418577082455, 0.005532801151275635, 0.01541504543274641, 0.04756225645542145,
- -0.016338594257831573, -0.021772779524326324, -0.04978134483098984,
- -0.039369549602270126, -0.0663381963968277, -0.06179679185152054, -0.013093876652419567,
- -0.06131633371114731, 0.054932527244091034, -0.1185108870267868, -0.023882320150732994,
- -0.06698280572891235, -0.03125734254717827, -0.05831953138113022, 0.015001805499196053,
- 0.029823582619428635, -0.14746323227882385, 0.0043220482766628265,
- -0.014118058606982231, 0.02836005575954914, -0.06395331770181656, -0.04967919737100601,
- -0.02519964426755905, 0.06478458642959595, 0.03726287558674812, -0.055579252541065216,
- -0.01452731341123581, -0.09289155900478363, 0.032218072563409805, -0.16258051991462708,
- -0.2377050668001175, 0.11312831193208694, 0.015055744908750057, 0.059605445712804794,
- -0.02293493039906025, -0.09097492694854736, 0.05906907469034195, 0.035040922462940216,
- -0.039923857897520065, 0.0904555693268776, -0.07296983897686005, 0.04128992557525635,
- -0.017030633985996246, -0.06403768062591553, -0.04862275719642639, -0.10770803689956665,
- -0.0670013278722763, -0.010706993751227856, -0.02417149394750595, -0.10304640978574753,
- -0.13394102454185486, 0.031184682622551918, -0.03438601642847061, 0.017322206869721413,
- 0.01948695257306099, 0.05513983219861984, -0.044451870024204254, -0.07150106877088547,
- 0.031374771147966385, 0.04296191781759262, 0.024038046598434448, -0.0742139220237732,
- -0.006752809509634972, 0.023240607231855392, 0.021384287625551224, 0.1025787964463234,
- 0.0030735607724636793, 0.004298259969800711, -0.055460430681705475, 0.07465537637472153,
- 0.05793777108192444, 0.18271136283874512, -0.027963092550635338, -0.021653369069099426,
- 0.06363993138074875, 0.13823717832565308, 0.07906107604503632, 0.018390124663710594,
- -0.020023539662361145, 0.0028004758059978485, -0.002682013902813196,
- 0.002120798919349909, 0.09110376238822937, -0.0766320750117302, -0.002527685137465596,
- -0.03700602799654007, 0.00771491602063179, -0.013126276433467865, -0.032381244003772736,
- 0.19087234139442444, 0.013066229410469532, 0.011002800427377224, 0.028488613665103912,
- -0.08691126108169556, -0.028493620455265045, -0.055478617548942566,
- -0.08587419241666794, -0.03841017931699753, 0.005234671290963888, 0.05007043480873108,
- -0.03683032840490341, -0.17066514492034912, -0.0022742971777915955,
- -0.010948068462312222, 0.029187435284256935, 0.13826441764831543, -0.09925338625907898,
- 0.03787633031606674, -0.03160453587770462, 0.15166844427585602, 0.044055767357349396,
- -0.032965775579214096, 0.05867588520050049, 0.12010806798934937, 0.055459003895521164,
- 0.022721052169799805, 0.026531968265771866, -0.094230517745018, 0.017283901572227478,
- 0.1380423605442047, -0.0295800119638443, 0.05805118381977081, 0.04616401717066765,
- -0.04347666725516319, -0.08675764501094818, 0.022222809493541718, -0.060876671224832535,
- -0.002244739793241024, -0.374737948179245, -0.058353692293167114, 0.07524915039539337,
- -0.01845996454358101, 0.016494475305080414, 0.08919597417116165, 0.008579583838582039,
- -0.01683899387717247, -0.04766599088907242, -0.15573877096176147, 0.1715230643749237,
- 0.032457396388053894, 0.06178928539156914, -0.0797845721244812, 0.042462147772312164,
- 0.09252054989337921, -0.011080938391387463, 0.001834506168961525, 0.0747680515050888,
- -0.2562287747859955, 0.030167043209075928, -0.012941611930727959, 0.14119353890419006,
- -0.023113859817385674, 0.029709096997976303, 0.07019829750061035, -0.10889008641242981,
- 0.018289579078555107, 0.08597052842378616, -0.017393391579389572, 0.02637435495853424,
- -0.008065685629844666, -0.011273096315562725, 0.1014578640460968, 0.12762027978897095,
- 0.04446014389395714, -0.021820761263370514, 12.153351783752441, 0.0700894445180893,
- 0.09218008816242218, -0.11320368945598602, -0.004078675527125597, -0.0402955561876297,
- 0.027274571359157562, -0.1262163519859314, 0.07411875575780869, 0.10837851464748383,
- -0.03749968111515045, -0.1254596710205078, 0.03581198304891586, -0.07951986789703369,
- 0.042682938277721405, -0.03670491278171539, -0.020145755261182785,
- -0.020198620855808258, 0.07097448408603668, -0.04674672335386276, -0.07510268688201904,
- 0.017904672771692276, 0.0656721293926239, 0.029828425496816635, -0.1028323620557785,
- -0.0026156436651945114, 0.0020053437910974026, -0.038034580647945404,
- 0.0020810929127037525, -0.013840820640325546, 0.0002877991646528244,
- -0.034759096801280975, 0.06441870331764221, -0.005168115720152855, 0.05259121209383011,
- 0.08108390122652054, 0.048744767904281616, 0.054404981434345245, 0.035976432263851166,
- 0.039662137627601624, -0.010627622716128826, 0.049635231494903564, 0.02625388838350773,
- 0.05514126271009445, 0.05821986496448517, 0.0711936429142952, 0.0005325376987457275,
- 0.12882864475250244, 0.030913695693016052, 0.06006256490945816, 0.1054704338312149,
- 0.013680925592780113, 0.1244901791214943, 0.06917888671159744, 0.006349831819534302,
- 0.047783613204956055, -0.014345329254865646, -0.09277008473873138, 0.07300762832164764,
- 0.043117549270391464, -0.05470014363527298, 0.0975542664527893, -0.008708295412361622,
- 0.13300102949142456, 0.053714439272880554, 0.058518700301647186, 0.06982875615358353,
- 0.10357654094696045, -0.16087424755096436, -0.09623929858207703, 0.013470861129462719,
- -0.11490738391876221, -0.08889194577932358, 0.06445927917957306, 0.11337146908044815,
- 0.0047522298991680145, 0.04768157750368118, -0.012801538221538067, 0.03970750421285629,
- -0.0985366702079773, -0.011651821434497833, 0.016406888142228127, 0.025205036625266075,
- 0.03198990598320961, 0.017507726326584816, 0.020397502928972244, 0.08065292239189148,
- 0.1470700055360794, -0.03482848405838013, -0.0719863697886467, -0.09325161576271057,
- 0.04703282564878464, -0.020359063521027565, -0.03881780803203583, 0.01262703537940979,
- -0.05869482457637787, 0.06995044648647308, -0.1703536957502365, 0.056128133088350296,
- 0.09512396156787872, -0.07386172562837601, -0.04392999783158302, -0.01847437210381031,
- 0.07499632239341736, 0.020655954256653786, 0.03868947923183441, -0.07732047885656357,
- -0.02649831399321556, 0.04240214824676514, 0.05187085270881653, -0.023103155195713043,
- 0.14520004391670227, 0.034241657704114914, -0.07226933538913727, 0.007798151113092899,
- 0.06752514094114304, -0.013030681759119034, 0.004018947947770357, 0.0275103896856308,
- 0.09100858867168427, -0.08711343258619308, -0.07048171758651733, -0.046167708933353424,
- -0.06371548771858215, -0.008367539383471012, -0.038995131850242615, 0.0380338653922081,
- 0.02964301034808159, -0.07630839943885803, -0.00936830136924982, 0.01657937467098236,
- 0.08234194666147232, 0.17772096395492554, -0.02110433578491211, 0.08443006873130798,
- -0.09304885566234589, -0.05002203956246376, 0.07411342114210129, 0.03876250982284546,
- 0.014140680432319641, -0.03608983755111694, -0.043737851083278656, -0.05429055541753769,
- -0.09829249978065491, 0.06900284439325333, 0.11613811552524567, 0.07703137397766113,
- 0.04661174118518829, 0.004830867052078247, -0.05324763432145119, -0.04223969206213951,
- 0.1144784539937973, 0.04512600973248482, 0.024326693266630173, 0.048442453145980835,
- -0.06963027268648148, -0.09503355622291565, 0.126897394657135, -0.02243197336792946,
- -0.030865609645843506, 0.02342250756919384, -0.05376720055937767, 0.14740198850631714,
- 0.1073080524802208, 0.06103014945983887, 0.07653604447841644, 0.0500207245349884,
- 0.018171969801187515, 0.06348603218793869, -0.020910756662487984, 0.006960396189242601,
- -0.06761211156845093, -0.01375602651387453, -0.07486403733491898, 0.04557611793279648,
- 0.09102654457092285, 0.017022565007209778, -0.08417090028524399, -0.028066689148545265,
- -0.03682022541761398
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 249,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Human Rights Watch"],
- "epoch_date_downloaded": 1658793600,
- "epoch_date_modified": 1658880000,
- "epoch_date_submitted": 1658793600,
- "flag": null,
- "report_number": 1792,
- "source_domain": "hrw.org",
- "submitters": ["Khoa Lam"],
- "title": "China’s Algorithms of Repression",
- "url": "https://www.hrw.org/report/2019/05/01/chinas-algorithms-repression/reverse-engineering-xinjiang-police-mass"
- },
- {
- "__typename": "Report",
- "authors": ["Maya Wang"],
- "epoch_date_downloaded": 1658707200,
- "epoch_date_modified": 1658880000,
- "epoch_date_submitted": 1658707200,
- "flag": null,
- "report_number": 1791,
- "source_domain": "hrw.org",
- "submitters": ["Ingrid Dickinson (CSET)"],
- "title": "The Robots are Watching Us",
- "url": "https://www.hrw.org/news/2020/04/06/robots-are-watching-us#"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "castricum-municipality",
- "name": "Castricum municipality"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "castricum-municipality",
- "name": "Castricum municipality"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "unnamed-property-owner",
- "name": "unnamed property owner"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1793],
- "vector": [
- -0.026726579293608665, 0.14027734100818634, 0.030525516718626022, -0.06590332835912704,
- 0.028242485597729683, -0.02803189679980278, 0.03682151064276695, 0.05825755000114441,
- 0.07574240863323212, -0.13032382726669312, -0.017964592203497887, 0.047177065163850784,
- 0.03172647953033447, -0.04624490812420845, 0.03176154941320419, -0.08514157682657242,
- -0.15181580185890198, -0.024068374186754227, -0.034620899707078934, -0.1483515501022339,
- -0.010472695343196392, -0.050377942621707916, 0.05141782388091087, 0.16036218404769897,
- -0.09323123842477798, 0.06978470087051392, 0.1289890855550766, 0.08905303478240967,
- -0.08028481155633926, 0.12097017467021942, -0.030625775456428528, -0.049065928906202316,
- 0.13817839324474335, 0.03487713634967804, -0.0005166790797375143, 0.09601844847202301,
- -0.014935345388948917, -0.01711394637823105, 0.05606601759791374, -0.008162559941411018,
- 0.10799232125282288, 0.2562801241874695, -0.012824281118810177, 0.008309413678944111,
- 0.016905896365642548, -0.06432726234197617, 0.02804194577038288, 0.07692323625087738,
- 0.0007549159927293658, 0.0035050581209361553, -0.023725600913167, 0.009251018054783344,
- -0.028855253010988235, 0.03764960914850235, -0.0973450317978859, 0.04563609138131142,
- 0.03777068108320236, -0.014540920965373516, 0.060946136713027954, -0.11335088312625885,
- 0.013326002284884453, -0.3067179024219513, -0.030820276588201523, -0.10297906398773193,
- 0.09464782476425171, -0.07218276709318161, -0.05855540186166763, 0.0055542574264109135,
- -0.002396396128460765, 0.08934071660041809, 0.04671686142683029, 0.013077765703201294,
- 0.023654194548726082, -0.0019523970549926162, 0.020609769970178604,
- 0.003896581707522273, -0.028502406552433968, 0.1980748474597931, -0.10840493440628052,
- 0.014666866511106491, 0.1457187533378601, -0.13382123410701752, 0.5283474922180176,
- -0.02862873487174511, 0.011570833623409271, -0.06256347894668579, 0.10693185031414032,
- 0.07686459273099899, 0.07761666178703308, 0.06685426086187363, 0.0071769533678889275,
- 0.04888363927602768, -0.09305626153945923, 0.0009588134707883, 0.0797276645898819,
- 0.009787119925022125, -0.03470391035079956, 0.13224269449710846, -0.03321545571088791,
- -0.03465242683887482, 0.010992701165378094, -0.05885503068566322, 0.1010625809431076,
- 0.13616782426834106, -0.06413745880126953, -0.02460736595094204, 0.12709127366542816,
- -0.05051621049642563, 0.08101500570774078, -0.061106596142053604, 0.007315631955862045,
- -0.012586924247443676, 0.09429531544446945, -0.018555672839283943,
- -0.004878768231719732, -0.0654190331697464, 0.05561574175953865, 0.003611980704590678,
- 0.060460686683654785, -0.008282731287181377, -0.11263345927000046, 0.03763558715581894,
- 0.07020855695009232, -0.032078929245471954, -0.04282739385962486, -0.06743121892213821,
- -0.08553826063871384, -0.013779683038592339, -0.019473811611533165, 0.06393476575613022,
- -0.048010341823101044, -0.21103675663471222, -0.005282167810946703,
- 0.026355834677815437, -0.020708531141281128, -0.04986273869872093, 0.004119833931326866,
- -0.09740907698869705, 0.09184794872999191, -0.045741111040115356, -0.06292305141687393,
- 0.0665215253829956, 0.014609900303184986, 0.07930590957403183, 0.16645558178424835,
- 0.05740780755877495, -0.08627016097307205, -0.04398883506655693, 0.01218421384692192,
- -0.06345565617084503, 0.1466693878173828, -0.13609865307807922, -0.03448081016540527,
- 0.011859186924993992, 0.03092329576611519, 0.7027289867401123, 0.13558335602283478,
- 0.12562942504882812, -0.051248546689748764, 0.014482076279819012, 0.22659264504909515,
- 0.032472774386405945, 0.06867796927690506, -0.040411800146102905, -0.07380099594593048,
- 0.049799222499132156, -0.14778386056423187, -0.045993708074092865, 0.059681713581085205,
- 0.03774148225784302, 0.13843989372253418, 0.04719448462128639, 0.0574210025370121,
- -0.010816534981131554, -0.11474110931158066, 0.02871870994567871, 0.08570849150419235,
- 0.014009365811944008, -0.1424676924943924, -0.03423681482672691, 0.00639647152274847,
- 0.09637376666069031, -0.09112342447042465, -0.007211236748844385, -0.07975266873836517,
- 0.018644507974386215, -0.09281183779239655, 0.0894368514418602, -0.06163254380226135,
- 0.04063708707690239, 0.045353539288043976, 0.13217291235923767, -0.036024246364831924,
- -0.14774201810359955, -0.0864710882306099, 0.1274077594280243, -0.018334776163101196,
- -0.0031221245881170034, 0.05978876352310181, -0.10543350875377655, 0.014444192871451378,
- 0.034010663628578186, 0.1721782088279724, -0.14139465987682343, -0.00036185013595968485,
- 0.010346849448978901, -0.04420550540089607, 0.11960797011852264, 0.011452523060142994,
- -0.08659589290618896, -0.07555518299341202, 0.08577040582895279, 0.05855686590075493,
- 0.05106811225414276, 0.043568916618824005, -0.020790958777070045, 0.03173915296792984,
- 0.04904639348387718, 0.01378906425088644, -0.03135070204734802, 0.029481198638677597,
- 0.05568479374051094, 0.04906089976429939, -0.01126803457736969, 0.01811123639345169,
- -0.1123717725276947, 0.061604034155607224, 0.055596768856048584, 0.06592626869678497,
- -0.03960881382226944, -0.10784710198640823, -0.006090611685067415, 0.09111006557941437,
- 0.0044183870777487755, 0.11470860987901688, -0.10155127942562103, -0.02658991888165474,
- -0.02237231843173504, 0.004387059714645147, 0.022235315293073654, -0.04338523745536804,
- 0.10427144169807434, 0.10199471563100815, 0.11605165153741837, 0.03515727445483208,
- 0.03663446754217148, 0.06327991187572479, 0.062499381601810455, 0.02254057675600052,
- 0.04717088118195534, -0.0010225281585007906, -0.07404130697250366,
- -0.034470126032829285, 0.017474010586738586, 0.0967928022146225, 0.04364670440554619,
- -0.050384461879730225, -0.028380217030644417, -0.0919632613658905, -0.04961191490292549,
- -0.07119844108819962, -0.052272479981184006, 0.010858679190278053, 0.023923557251691818,
- -0.07272171974182129, -0.03386082500219345, -0.09572134912014008, 0.027485253289341927,
- 0.08269213140010834, -0.033026598393917084, -0.01764615997672081, -0.14891640841960907,
- 0.022171026095747948, -0.06589197367429733, 0.06199862062931061, -0.007761985994875431,
- 0.05952941253781319, 0.02860524319112301, -0.024169951677322388, 0.02111862786114216,
- -0.01287315133959055, -0.012560419738292694, -0.06341914087533951, -0.0794559046626091,
- -0.02338479273021221, 0.0651041567325592, -0.001265630591660738, 0.04531644657254219,
- 0.011855670250952244, 0.01862047053873539, 0.09133850783109665, -0.013139291666448116,
- -0.07229296118021011, 0.1046750470995903, -0.017762072384357452, 0.005884713027626276,
- 0.0943073257803917, -0.06765591353178024, 0.0017556491075083613, -0.04325004667043686,
- -0.12973652780056, -0.04021948575973511, -0.02219054102897644, -0.015961511060595512,
- 0.013492340222001076, -0.03208841755986214, 0.037891559302806854, -0.09002275764942169,
- -0.03140515461564064, 0.07179297506809235, -0.058085277676582336, -0.10119563341140747,
- -0.0829961970448494, 0.09769465774297714, 0.035848625004291534, 0.00870518945157528,
- 0.054486919194459915, -0.03616217523813248, 0.047449033707380295, -0.009949808940291405,
- -0.02046782150864601, 0.058834560215473175, 0.009687373414635658, -0.04460657760500908,
- 0.03830867260694504, 0.08009249716997147, -0.04678550735116005, 0.03320625424385071,
- 0.10920555889606476, 0.4439643919467926, -0.17757053673267365, 0.09556389600038528,
- 0.16598716378211975, 0.02314332127571106, 0.05587894842028618, -0.06548755615949631,
- 0.06977169215679169, 0.07285253703594208, 0.12300378829240799, 0.14370375871658325,
- -0.07568348944187164, -0.030209878459572792, -0.08757354319095612, 0.13661977648735046,
- -0.02843499556183815, 0.044474780559539795, 0.004800090100616217, -0.10702323168516159,
- -0.034951552748680115, 0.0019208589801564813, -0.03461211919784546,
- -0.010821723379194736, 0.036714836955070496, -0.06386157870292664,
- -0.001346213393844664, 0.025284146890044212, 0.054904740303754807,
- -0.026035001501441002, 0.01107517909258604, -0.048964258283376694, 0.05470244958996773,
- 0.038997288793325424, -0.013814586214721203, -0.14734527468681335, 0.024102453142404556,
- -0.11559352278709412, -0.04165227711200714, 0.129235178232193, -0.022266371175646782,
- 0.04318467155098915, 0.06583058834075928, -0.096806101500988, 0.04622579365968704,
- -0.012712347321212292, -0.05332932621240616, 0.010731616988778114, 0.05916096270084381,
- -0.00026042747776955366, 0.03361556679010391, 0.13756375014781952, -0.06113078445196152,
- -0.06402002274990082, -0.11638850718736649, 0.0774005576968193, 0.1954866647720337,
- -0.009172781370580196, 0.04778972640633583, 0.011694272980093956, -0.013574179261922836,
- 0.007593877613544464, -0.10293886810541153, -0.06524936854839325, -0.028888050466775894,
- -0.07768864929676056, 0.09173169732093811, 0.018454574048519135, -0.023509204387664795,
- -0.06794942915439606, -0.023209307342767715, -0.06496862322092056,
- -0.006067781709134579, 0.07781827449798584, -0.04484537988901138, -0.006062579341232777,
- -0.06732705235481262, -0.0029536441434174776, 0.03076593205332756, -0.09578903019428253,
- -0.036042023450136185, -0.1086716279387474, 0.06424317508935928, 0.09589286893606186,
- 0.05259672924876213, -0.09489572793245316, 0.09287773072719574, -0.13107068836688995,
- 0.075208380818367, 0.07527188956737518, -0.05844658985733986, 0.026403281837701797,
- 0.04225964471697807, 0.044943686574697495, 0.0648614913225174, -0.04144220054149628,
- 0.06644042581319809, -0.05953744798898697, -0.08474919945001602, -0.10137461125850677,
- -0.06054309010505676, -0.05004628002643585, -0.09109139442443848, 0.0291174054145813,
- -0.1507783681154251, -0.007587919477373362, -0.04178280383348465, 0.0020152146462351084,
- 0.03123507648706436, 0.052338674664497375, 0.06381624191999435, -0.13299009203910828,
- 0.004549414850771427, -0.027398468926548958, 0.03908262029290199, -0.0359419547021389,
- -0.06624625623226166, 0.006488275248557329, 0.09114092588424683, 0.05897286906838417,
- -0.013276783749461174, 0.00612541101872921, -0.03701340779662132, 0.050622694194316864,
- -0.13506834208965302, -0.373373419046402, 0.030916258692741394, -0.009411174803972244,
- 0.049649644643068314, -0.005335703492164612, -0.03104340471327305, 0.04033783823251724,
- 0.023753995075821877, -0.08598331362009048, 0.10214751958847046, -0.07508368045091629,
- 0.004411313217133284, -0.015879210084676743, -0.09497625380754471, -0.03349798917770386,
- -0.09337492287158966, -0.06450056284666061, 0.11719883233308792, -0.01616472750902176,
- -0.13562996685504913, -0.14557340741157532, 0.029822034761309624, 0.03515354543924332,
- -0.02960808388888836, -0.02071533538401127, -0.01157773844897747, -0.04843040928244591,
- -0.034428514540195465, 0.005339337978512049, 0.044109877198934555, 0.018919991329312325,
- -0.09867721050977707, -0.024962112307548523, 0.06872541457414627, -0.033153317868709564,
- 0.10271476954221725, 0.026766562834382057, 0.011673911474645138, -0.13115762174129486,
- 0.09513667970895767, 0.04973408579826355, 0.1807287633419037, 0.011117640882730484,
- -0.014230277389287949, 0.03685380890965462, 0.17281223833560944, 0.041350897401571274,
- 0.05136704072356224, -0.015526829287409782, -0.031238112598657608, 0.026867523789405823,
- 0.0051490915939211845, 0.10816917568445206, -0.08504883944988251, -0.049170538783073425,
- -0.052627045661211014, -0.051014021039009094, -0.04216085374355316,
- -0.08001475036144257, 0.20424968004226685, 0.047640517354011536, 0.031170925125479698,
- 0.019818052649497986, -0.06749588251113892, -0.023821324110031128,
- -0.062108349055051804, -0.10740925371646881, 0.04216412454843521, -0.05966565012931824,
- 0.027151329442858696, -0.0281535554677248, -0.11814041435718536, -0.010551639832556248,
- 0.01753699965775013, -0.012349856086075306, 0.10876601189374924, -0.029091132804751396,
- 0.04150241240859032, -0.032730959355831146, 0.1572105586528778, 0.08071973919868469,
- 0.010386924259364605, 0.04031449183821678, 0.08373098075389862, -0.011903004720807076,
- 0.04086041450500488, -0.018092628568410873, -0.03405459225177765, 0.023613089695572853,
- 0.16039597988128662, -0.05240698531270027, 0.11630009859800339, 0.06860455125570297,
- -0.028194259852170944, -0.13492558896541595, 0.02785428985953331, -0.04925285652279854,
- 0.05047106742858887, -0.4228643476963043, 0.010310634039342403, 0.16924458742141724,
- -0.06068596616387367, 0.06010541319847107, 0.10784297436475754, 0.0056175412610173225,
- -0.09313081949949265, -0.06646586954593658, -0.10399984568357468, 0.1025356873869896,
- 0.04280981421470642, 0.08139943331480026, -0.16437526047229767, 0.0010501707438379526,
- 0.08579420298337936, -0.04059061408042908, -0.0036731341388076544, 0.07370731234550476,
- -0.22277949750423431, 0.002185856457799673, -0.05431387946009636, 0.09834234416484833,
- 0.0276910699903965, 0.035528525710105896, 0.10921752452850342, -0.03966290131211281,
- 0.006381620187312365, 0.04753082990646362, -0.005249159876257181, 0.057399313896894455,
- -0.02896123006939888, -0.015493069775402546, 0.1423303335905075, 0.06551790237426758,
- 0.05221007019281387, -0.03381370007991791, 12.266824722290039, 0.09091047197580338,
- 0.13069550693035126, -0.09553835541009903, 0.018383221700787544, -0.06331934779882431,
- 0.039374202489852905, -0.10851819068193436, 0.05358756706118584, 0.1307242512702942,
- -0.013426226563751698, -0.07205066829919815, -0.05497319996356964, -0.13448694348335266,
- -0.00719669833779335, -0.034196577966213226, -0.04728080704808235,
- -0.027030719444155693, 0.0459376722574234, -0.10882435739040375, -0.04607054591178894,
- -0.02168908156454563, 0.08317822962999344, 0.014234054833650589, -0.051737312227487564,
- 0.06365790218114853, 0.03975300490856171, 0.03279212862253189, -0.029433267191052437,
- 0.04229369014501572, -0.04661726579070091, -0.0022758799605071545, 0.055758070200681686,
- -0.03446594998240471, 0.08788800984621048, 0.024897580966353416, 0.10047884285449982,
- 0.04087189957499504, 0.011989425867795944, 0.07386168092489243, -0.015241831541061401,
- 0.07470418512821198, 0.08206155896186829, 0.08469898253679276, 0.08455483615398407,
- 0.02314377762377262, 0.09579413384199142, 0.12487150728702545, -0.007241744082421064,
- 0.08074790239334106, 0.097800612449646, -0.008362128399312496, 0.13511410355567932,
- -0.06516136974096298, 0.03198518976569176, 0.022419992834329605, 0.03610112890601158,
- -0.09193532168865204, 0.038119543343782425, 0.09319717437028885, -0.07478147000074387,
- 0.14898282289505005, 0.03345486521720886, 0.058554552495479584, -0.0006676773773506284,
- 0.07744108140468597, 0.09770982712507248, 0.04037647694349289, -0.2175799459218979,
- -0.11523601412773132, 0.009107356891036034, -0.11483004689216614, -0.12075915187597275,
- 0.16536207497119904, 0.0890268012881279, -0.06623230874538422, 0.05495621636509895,
- -0.03994128108024597, 0.03102874383330345, -0.045417096465826035, -0.02869146503508091,
- 0.008194243535399437, 0.0024244217202067375, -0.00027787277940660715,
- 0.04544968530535698, 0.038111116737127304, 0.034035682678222656, 0.12118439376354218,
- -0.013402949087321758, -0.09889550507068634, -0.05190112069249153, 0.110796719789505,
- -0.027708638459444046, -0.044019605964422226, 0.024922698736190796,
- -0.06443707644939423, 0.06655029952526093, -0.15191558003425598, 0.09853782504796982,
- 0.07761605083942413, -0.08476439118385315, -0.03217313811182976, -0.07290242612361908,
- 0.041920747607946396, 0.014407330192625523, 0.016794875264167786, -0.05352300405502319,
- 0.04333174228668213, 0.027757182717323303, 0.08879553526639938, -0.059321146458387375,
- 0.11771523207426071, 0.09400607645511627, -0.06816592067480087, 0.05032267048954964,
- 0.08766909688711166, -0.04700494557619095, -0.03602202981710434, 0.0376397930085659,
- 0.04242254048585892, -0.13337236642837524, -0.07214561849832535, -0.021115954965353012,
- -0.07813460379838943, -0.06278463453054428, -0.05250430479645729, -0.011973605491220951,
- 0.07743459194898605, -0.07308514416217804, -0.006502941250801086, 0.08541152626276016,
- 0.024852758273482323, 0.02388901077210903, -0.039145033806562424, 0.020502908155322075,
- -0.1309278905391693, -0.08901184052228928, -0.0023900093510746956, 0.011093763634562492,
- 0.09155552834272385, 0.006096030119806528, -0.022220531478524208, -0.09558708965778351,
- -0.126095250248909, 0.009220036678016186, 0.1404145509004593, 0.06006854027509689,
- 0.0626261979341507, 0.03110523708164692, -0.053060997277498245, -0.06130329519510269,
- 0.06758153438568115, 0.03446727991104126, 0.07217980921268463, 0.052252933382987976,
- -0.09223974496126175, -0.058125317096710205, 0.17403817176818848, -0.029695725068449974,
- 0.03617857024073601, -0.021349899470806122, 0.0789184421300888, 0.07592464238405228,
- 0.04919405281543732, 0.02783135510981083, 0.08919519931077957, 0.0839875265955925,
- -0.02809661440551281, 0.013121526688337326, 0.0030700566712766886,
- -0.010748885571956635, -0.01805233769118786, -0.06748606264591217, -0.07645297050476074,
- 0.05285882577300072, 0.12038728594779968, -0.0023395181633532047, -0.05368444323539734,
- 0.013265188783407211, -0.05337706580758095
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 250,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Nicolas Kayser-Bril"],
- "epoch_date_downloaded": 1608595200,
- "epoch_date_modified": 1658880000,
- "epoch_date_submitted": 1655337600,
- "flag": null,
- "report_number": 1793,
- "source_domain": "algorithmwatch.org",
- "submitters": ["Ingrid Dickinson (CSET)"],
- "title": "Dutch city uses algorithm to assess home value, but has no idea how it works",
- "url": "https://algorithmwatch.org/en/woz-castricum-gdpr-art-22/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "amazon",
- "name": "Amazon"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "amazon",
- "name": "Amazon"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "small-businesses-on-amazon",
- "name": "small businesses on Amazon"
- },
- {
- "__typename": "Entity",
- "entity_id": "amazon-customers",
- "name": "Amazon Customers"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [2384, 1794],
- "vector": [
- -0.029515441972762346, 0.10726375505328178, -0.00019984133541584015,
- -0.08691933751106262, 0.0862102173268795, -0.019734895788133144, -0.014221937395632267,
- 0.047712599858641624, 0.08939645811915398, -0.11753937229514122, 0.013995368964970112,
- -0.0004135165363550186, 0.04141334164887667, -0.054567597806453705, 0.04530842322856188,
- -0.06602167338132858, -0.08161603286862373, -0.03172174096107483, 0.035770841874182224,
- -0.1425788253545761, -0.08486763387918472, -0.0144050233066082, 0.024413504637777805,
- 0.1129022054374218, -0.007472275290638208, 0.01292604417540133, 0.09049541130661964,
- 0.14518392458558083, -0.012501881923526525, 0.06657310575246811, -0.05578164104372263,
- -0.11039047688245773, 0.10257739573717117, 0.024621922988444567, -0.03388334158807993,
- 0.08598235622048378, -0.0009630327112972736, -0.03530651144683361,
- -0.024939347989857197, -0.01727716368623078, 0.0318161032628268, 0.258290134370327,
- 0.013851978757884353, -0.020532566122710705, 0.045480985194444656,
- -0.028545375913381577, 0.023730594664812088, 0.05407094396650791, -0.011198712745681405,
- 0.02079204749315977, -0.0324418218806386, 0.10531574860215187, -0.0347112687304616,
- 0.04957620985805988, -0.10001670941710472, 0.021997718140482903, 0.05094610620290041,
- 0.0202498366124928, 0.0462382547557354, -0.10789152607321739, -0.0175903073977679,
- -0.2544102743268013, -0.02318724081851542, -0.087209802120924, 0.06816451996564865,
- -0.06703516095876694, -0.03756984323263168, 0.015241317451000214,
- -0.0012447370681911707, 0.08269787579774857, 0.051380518823862076,
- -0.016187112778425217, -0.04327802639454603, 0.03356645070016384, -0.02704803179949522,
- -0.004428252577781677, 0.03681283351033926, 0.23637347668409348, -0.11280853673815727,
- -0.0032327319495379925, 0.08998683467507362, -0.10364719480276108, 0.4156769663095474,
- 0.01012180361431092, -0.03692618012428284, -0.08122365176677704, 0.0532055739313364,
- 0.03685278259217739, 0.012161816004663706, -0.00790622178465128, -0.010674952995032072,
- 0.04955686442553997, -0.046642255038022995, -0.020016780123114586, 0.09731508791446686,
- -0.0010968167334794998, -0.02605981018859893, -0.026957677910104394,
- -0.0033493228256702423, -0.07680628076195717, 0.0205979086458683, -0.0461281593888998,
- 0.11898910626769066, 0.02179028606042266, -0.04106094315648079, -0.024967780336737633,
- 0.05652335565537214, -0.04724304750561714, 0.04302971065044403, -0.048432836309075356,
- 0.021055462770164013, -0.00815516384318471, 0.08967873826622963, -0.02043619565665722,
- 0.07646815106272697, -0.020207774825394154, 0.010308889206498861, 0.06849673390388489,
- 0.07187800295650959, -0.0018929364159703255, 0.035406908951699734, 0.06430937349796295,
- 0.0035900352522730827, -0.04964671470224857, -0.05558992549777031,
- -0.028885683976113796, -0.027975931763648987, -0.04029138945043087,
- -0.07921070046722889, 0.028526154346764088, -0.04373594559729099, -0.13447094336152077,
- 0.030353301204741, 0.10636746138334274, -0.016654024366289377, -0.03632426634430885,
- 0.013171552796848118, -0.050749396905303, 0.0366490944288671, 0.010040862205642043,
- -0.013952642737422138, 0.04119683336466551, 0.017284301575273275, 0.048081276938319206,
- 0.1351095847785473, 0.02020287956111133, -0.06018741987645626, -0.0680543128401041,
- 0.03909691423177719, -0.02053419011645019, 0.12992536649107933, -0.11569797247648239,
- -0.044264127500355244, -0.0003716335631906986, -0.022981601767241955,
- 0.7054310739040375, 0.1025390736758709, 0.19085482507944107, -0.03995563089847565,
- -0.043114133179187775, 0.14385951310396194, 0.02379900054074824, 0.06419671885669231,
- -0.06721256859600544, -0.07797973603010178, 0.0377636281773448, -0.119241613894701,
- -0.03660180792212486, 0.0359826534986496, -0.021086303051561117, 0.11493540182709694,
- -0.01132407528348267, 0.08667075634002686, -0.005413196515291929, -0.07990997657179832,
- -0.03853228245861828, 0.03266588971018791, 0.001364213414490223, -0.1489429846405983,
- -0.017657019197940826, 0.04120378103107214, 0.11362384632229805, -0.08924121409654617,
- -0.005825641565024853, -0.07439319416880608, 0.06540124677121639, -0.010251958854496479,
- 0.017451144754886627, -0.026715456508100033, 0.06451001390814781, 0.021896591410040855,
- 0.07841343805193901, -0.011117513757199049, -0.12580731511116028, -0.02757980301976204,
- 0.11167880892753601, -0.04279005527496338, -0.030942125245928764, 0.04310247232206166,
- -0.07999540120363235, 0.06309638172388077, 0.0032321493927156553, 0.14280065149068832,
- -0.10268356278538704, -0.036796705797314644, 0.011737726628780365,
- -0.005549315435928293, 0.011011837981641293, 0.00452909991145134, -0.05101834237575531,
- -0.041117764078080654, 0.09423347190022469, -0.007117565022781491, 0.05803276598453522,
- 0.01817612035665661, -0.05187714844942093, 0.03882307931780815, 0.11047973483800888,
- -0.027951046358793974, -0.021188191254623234, 0.07889018952846527, 0.011778387008234859,
- -0.023008271818980575, -0.02975506242364645, -0.015911441994830966, 0.02827609609812498,
- 0.018024844815954566, -0.021363047882914543, 0.062373481690883636, -0.01905217196326703,
- -0.06602420657873154, 0.04194018431007862, 0.020787383895367384, 0.021291897632181644,
- 0.05564771965146065, -0.03742433991283178, -0.07137912511825562, -0.04556066915392876,
- -0.04773744475096464, -0.0033353837206959724, -0.0063846290577203035,
- 0.07132098823785782, 0.09913671016693115, 0.08822528272867203, 0.05444826930761337,
- 0.0595585573464632, 0.10012717172503471, -0.06583946011960506, 0.0160409826785326,
- 0.06428580358624458, -0.0554417259991169, -0.04622351750731468, -0.02240932174026966,
- 0.028322212863713503, 0.010296597145497799, 0.014514781069010496, -0.05850629322230816,
- -0.00027961586602032185, -0.09542939811944962, 0.005851981462910771,
- -0.0645515788346529, -0.07830353453755379, 0.039910221472382545, 0.058223484084010124,
- -0.022819507867097855, -0.09302828460931778, -0.07072212174534798, 0.029156113043427467,
- 0.08011920377612114, -0.04425077512860298, -0.010418950347229838, -0.10767119377851486,
- -0.0016011507250368595, 0.0008914838545024395, 0.05900001898407936,
- 0.009270950686186552, -0.018428453942760825, 0.011250706622377038, -0.07011404819786549,
- 0.01705822441726923, -0.01675626775249839, 0.021344528067857027, -0.07697145268321037,
- -0.09879610687494278, -0.03996848966926336, 0.03911508060991764, 0.03131401725113392,
- -0.03525383584201336, 0.03305456601083279, 0.032583524473011494, 0.07954051159322262,
- 0.02034558544983156, -0.060853514820337296, 0.06798417121171951, -0.025616145692765713,
- -0.040018465369939804, 0.07462476193904877, 0.005886232480406761, 0.035407552029937506,
- 0.014033152721822262, -0.05786623992025852, -0.016899918671697378,
- -0.004254055209457874, -0.031354788690805435, 0.07421806454658508, 0.012687419075518847,
- 0.036631849594414234, -0.07419690489768982, 0.04387470334768295, 0.0482608899474144,
- -0.05484341084957123, -0.14039824903011322, -0.07621942088007927, 0.09583324380218983,
- -0.006741750985383987, -0.016236551571637392, 0.043373389169573784,
- -0.044870832934975624, 0.07876984216272831, -0.03843340929597616, -0.005713525468308944,
- 0.018727194517850876, 0.02102306578308344, -0.0038191829808056355, 0.020285028498619795,
- 0.049517068080604076, -0.06008319370448589, 0.04214153718203306, 0.06990069895982742,
- 0.42296643555164337, -0.13913192972540855, 0.12005779147148132, 0.0854918397963047,
- 0.01116866385564208, 0.02367692766711116, -0.04887752793729305, 0.07483343221247196,
- 0.09571335837244987, 0.15034829825162888, 0.07700738124549389, -0.007670870632864535,
- -0.01821278966963291, -0.13088421523571014, 0.10804680362343788, 0.002376129850745201,
- 0.01812598528340459, 0.04982719384133816, -0.05057954788208008, -0.013378257397562265,
- 0.07205208204686642, -0.03949202969670296, -0.05355072394013405, -0.025318358559161425,
- -0.01898659998551011, -0.0033533256500959396, 0.03921440243721008, 0.022224274929612875,
- 0.0013621735852211714, 0.03727586381137371, 0.007361308322288096, 0.03324664384126663,
- -0.0045356400369200855, 0.032592182513326406, -0.12291108071804047, 0.05053151026368141,
- -0.06944669038057327, -0.11677629500627518, 0.044908346608281136, -0.03214016184210777,
- 0.054349882528185844, 0.02132436737883836, -0.02340620942413807, 0.05322306230664253,
- 0.012786506209522486, -0.04583137854933739, 0.038690464571118355, 0.02282608184032142,
- 0.0482521578669548, 0.09202983975410461, 0.19144593179225922, -0.06231057271361351,
- -0.051420170813798904, -0.07418384402990341, 0.04435711260885, 0.09402572363615036,
- 0.034593173302710056, 0.025847850367426872, -0.004879128187894821,
- -0.060690706595778465, -0.0037531480193138123, -0.04457152262330055,
- -0.11016640439629555, -0.011139634065330029, -0.06887435540556908, 0.06571261212229729,
- 0.04328286461532116, 0.0038421559147536755, -0.1432969756424427, -0.024415638763457537,
- -0.047938358038663864, 0.018088564393110573, 0.1432047188282013, -0.05163586884737015,
- 0.06827879883348942, -0.003796784207224846, -0.05778053589165211, 0.031260632851626724,
- -0.09620742499828339, 0.017957370728254318, -0.01188406441360712, 0.027714844793081284,
- 0.054649049416184425, 0.04709349200129509, -0.008696182281710207, 0.0786900669336319,
- -0.09891195967793465, 0.0810229629278183, -0.007978466106578708, -0.056103240698575974,
- 0.02145047951489687, -0.043387304060161114, 0.02925304789096117, 0.011895641451701522,
- -0.0476220678538084, -0.015754565596580505, -0.00973271788097918, -0.06785042583942413,
- -0.11147178336977959, -0.039026353508234024, -0.01530021196231246, -0.0863310806453228,
- 0.06960372999310493, -0.06825914420187473, 0.019536623265594244, 0.04344028700143099,
- -0.03323193360120058, -0.02926026377826929, -0.01700688200071454, 0.017025507055222988,
- -0.16838600486516953, 0.04375346563756466, -0.004844396375119686, 0.05206173658370972,
- 0.009265379747375846, -0.02045980654656887, 0.04492632485926151, 0.1447746306657791,
- 0.034070403315126896, -0.023285570554435253, -0.005477197468280792,
- -0.05091100372374058, 0.017669599503278732, -0.08963880129158497, -0.3803238123655319,
- 0.054110586643218994, 0.030403225915506482, 0.03561963886022568, 0.01404541835654527,
- -0.08982539176940918, 0.09460250660777092, 0.03957313671708107, -0.08541451953351498,
- 0.09744279086589813, -0.07577850669622421, 0.052915873005986214, -0.005482789129018784,
- -0.026934985537081957, -0.030820267042145133, -0.058828044682741165,
- -0.03564351610839367, 0.02517966739833355, -0.05966094695031643, -0.0424810741096735,
- -0.10870049148797989, 0.024096610490232706, -0.021280812099575996,
- -0.026058903662487864, 0.011615297757089138, 0.01944684609770775, -0.05442375224083662,
- -0.05567088536918163, 0.061063457280397415, 0.036273633828386664, 0.05084649007767439,
- -0.06114167161285877, 0.04066559672355652, 0.04989916551858187, -0.023759082017932087,
- 0.11549047008156776, 0.023668240755796432, 0.010304172523319721, -0.06890921294689178,
- 0.09217697009444237, 0.045433180406689644, 0.18615137040615082, 0.04295477457344532,
- -0.022016320726834238, 0.006948572117835283, 0.1607588827610016, 0.055697133764624596,
- 0.0315777063369751, -0.02817066665738821, -0.012216614559292793, 0.00847086263820529,
- -0.02139384305337444, 0.09452847391366959, -0.046305904164910316, -0.026586766354739666,
- -0.012056131730787456, -0.04239624738693237, -0.02667189482599497, -0.07778629660606384,
- 0.20217441022396088, 0.02381866332143545, 0.030426292680203915, 0.051592230796813965,
- -0.07151930779218674, 0.0320875458419323, -0.07642020657658577, -0.13062719255685806,
- -0.023326552473008633, -0.011373858898878098, 0.0319227734580636, -0.03810138814151287,
- -0.10876411572098732, -0.0272505059838295, -0.004593356803525239, 0.014795193681493402,
- 0.14733411371707916, -0.04141251556575298, 0.020978307351469994, -0.010791458829771727,
- 0.11613543704152107, 0.029558265581727028, 0.007134109735488892, 0.045960938557982445,
- 0.10772383213043213, 0.03644547052681446, 0.0691023226827383, -0.0377426715567708,
- -0.0653829937800765, 0.01518767955712974, 0.1291869580745697, -0.03936622850596905,
- 0.13933969289064407, 0.07116894796490669, -0.019162158016115427, -0.044692808762192726,
- 0.03283744119107723, 0.022415178827941418, 0.031103141140192747, -0.4249418079853058,
- -0.0007342108292505145, 0.06392667815089226, 0.030175316147506237,
- 0.0028065238147974014, 0.10599728301167488, 0.019917925354093313, -0.043258557096123695,
- -0.05708903260529041, -0.0775248073041439, 0.12346532940864563, 0.035624074283987284,
- 0.05008440464735031, -0.14147131890058517, 0.013515033526346087, 0.09578089043498039,
- -0.010898440144956112, -0.016359638539142907, 0.06798456609249115, -0.21381813287734985,
- -0.006533735780976713, -0.011220046319067478, 0.11908406019210815,
- -0.033260127529501915, 0.056028347462415695, 0.11063045263290405, -0.0777873694896698,
- 0.04029865190386772, 0.014794658403843641, -0.009947244543582201, 0.09354350343346596,
- -0.030474036000669003, -0.02335629193112254, 0.09207070246338844, 0.0535025168210268,
- 0.129792682826519, -0.0236618397757411, 11.968898296356201, 0.04984918050467968,
- 0.034359222277998924, -0.13131176307797432, 0.03188725095242262, -0.026963971089571714,
- 0.021219665184617043, -0.06963838543742895, 0.0736623965203762, 0.1272011213004589,
- -0.05444817431271076, -0.06392299570143223, -0.013608084525913, -0.10896889492869377,
- 0.009642196644563228, -0.0504309069365263, -0.08592187240719795, -0.05950077064335346,
- 0.024851315189152956, -0.040347808972001076, -0.06360071524977684, 0.10489656776189804,
- 0.07430240325629711, 0.015745976706966758, -0.05145428143441677, 0.0271731250686571,
- 0.03500431403517723, 0.015613524708896875, -0.004150759428739548, 0.002384430728852749,
- 0.009928258834406734, 0.05995624139904976, 0.05679384432733059, 0.026364139281213284,
- 0.016785101557616144, 0.03197042038664222, 0.10200760886073112, 0.043199505656957626,
- 0.04529642499983311, 0.038221754133701324, 0.01646759081631899, 0.014691220130771399,
- -0.001117316889576614, 0.020383069291710854, 0.0728115662932396, 0.05036046728491783,
- 0.03266740031540394, 0.12707477807998657, 0.008575957966968417, 0.0550466850399971,
- 0.09219077974557877, -0.008040097542107105, 0.12310981750488281, 0.06439930200576782,
- -0.015838028863072395, 0.043005336076021194, -0.027908699586987495,
- -0.08111580833792686, 0.08687316626310349, -0.011756379622966051, -0.05498606525361538,
- 0.0886669922620058, 0.02075023332145065, 0.06985920667648315, 0.0019828667864203453,
- 0.13806958496570587, 0.058712199330329895, 0.06415669433772564, -0.11271026730537415,
- -0.07948557287454605, 0.03667686227709055, -0.13826961070299149, -0.07840428873896599,
- 0.07243007235229015, 0.165293350815773, -0.03672922239638865, -0.005332117900252342,
- -0.006457466050051153, 0.030093321576714516, -0.01616887142881751, -0.01971539040096104,
- 0.05983099527657032, 0.007418930530548096, -0.0036140428856015205, 0.11145675182342529,
- 0.017560380627401173, 0.005009977146983147, 0.11320983245968819, -0.023275375366210938,
- -0.05767284147441387, -0.07291612774133682, 0.0828421302139759, 0.0066478378139436245,
- -0.0726210605353117, -0.012268614489585161, -0.08826566860079765, 0.039447762072086334,
- -0.17366275936365128, 0.07670323550701141, 0.09615415707230568, -0.06594300456345081,
- -0.01512002432718873, -0.0392271438613534, 0.05589701235294342, 0.021305256988853216,
- -0.02620336040854454, -0.05061219818890095, 0.0012799720279872417, 0.008694678544998169,
- 0.03391407523304224, -0.009233645745553076, 0.028281058301217854, 0.08197154477238655,
- -0.04970419779419899, 0.024682503659278154, 0.05041476525366306, -0.0715981088578701,
- -0.04662626422941685, 0.03955936338752508, 0.053636183962225914, -0.05648493953049183,
- -0.028115355409681797, -0.03174977470189333, 0.010938614141196012,
- -0.015609797555953264, -0.03557624667882919, -0.016616386361420155,
- 0.029806293547153473, -0.03958822414278984, -0.007697864901274443, 0.08141490072011948,
- 0.07129452005028725, 0.04549979604780674, 0.037131740944460034, 0.060661083087325096,
- -0.0868677869439125, -0.00039163464680314064, 0.03428950300440192, 0.008312234655022621,
- 0.05210470221936703, -0.06158280558884144, -0.0570831261575222, -0.05477346107363701,
- -0.15656479448080063, 0.04857071675360203, 0.11780690774321556, 0.04519996792078018,
- -0.05139668099582195, -0.026293113827705383, -0.06007831357419491, -0.07272445037961006,
- 0.0745798610150814, 0.02936686249449849, 0.052135977894067764, -0.01579398731701076,
- -0.10138622298836708, -0.03404827322810888, 0.10575471818447113, -0.03625315893441439,
- 0.0340677248314023, -0.003423452377319336, -0.10001218691468239, 0.1368120238184929,
- 0.12316469848155975, -0.04250566195696592, 0.051728520542383194, 0.0035677754785865545,
- -0.012557899113744497, 0.09999541938304901, -0.03737438656389713, 0.013499027816578746,
- -0.056682996451854706, -0.11454689875245094, -0.05758957006037235, 0.05782966502010822,
- 0.10960152372717857, 0.05537911783903837, -0.13088778406381607, -0.021928084082901478,
- -0.030322379432618618
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 251,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Jacob Kastrenakes"],
- "epoch_date_downloaded": 1671148800,
- "epoch_date_modified": 1671321600,
- "epoch_date_submitted": 1671321600,
- "flag": null,
- "report_number": 2384,
- "source_domain": "theverge.com",
- "submitters": ["Yukti Handa"],
- "title": "Amazon reportedly changed its search results to boost more profitable products",
- "url": "https://www.theverge.com/2019/9/16/20868737/amazon-search-results-profitability-change"
- },
- {
- "__typename": "Report",
- "authors": ["Dana Mattioli"],
- "epoch_date_downloaded": 1608508800,
- "epoch_date_modified": 1658880000,
- "epoch_date_submitted": 1655337600,
- "flag": null,
- "report_number": 1794,
- "source_domain": "wsj.com",
- "submitters": ["Ingrid Dickinson (CSET)"],
- "title": "Amazon Changed Search Algorithm in Ways That Boost Its Own Products",
- "url": "https://www.wsj.com/articles/amazon-changed-search-algorithm-in-ways-that-boost-its-own-products-11568645345"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "none",
- "name": "none"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "axon-enterprise",
- "name": "Axon Enterprise"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "us-students",
- "name": "US students"
- },
- {
- "__typename": "Entity",
- "entity_id": "us-schools",
- "name": "US schools"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1795],
- "vector": [
- -0.0933675691485405, 0.03154463320970535, -0.022927870973944664, -0.08274924755096436,
- 0.013242318294942379, -0.06300678104162216, 0.04540852829813957, 0.023429669439792633,
- 0.11170657724142075, -0.14487212896347046, -0.0023125724401324987, 0.11786021292209625,
- 0.03819159045815468, -0.028797142207622528, -0.01954684406518936, -0.10990442335605621,
- -0.05855778977274895, -0.045035604387521744, -0.043011993169784546, -0.0902770534157753,
- -0.11099312454462051, 0.01770179532468319, 0.08324804902076721, 0.07569573074579239,
- 0.018179384991526604, 0.013915704563260078, 0.1246105208992958, 0.17043624818325043,
- -0.10357974469661713, 0.026774533092975616, -0.05234651267528534, -0.034374821931123734,
- 0.1106039360165596, 0.03936513513326645, -0.004916914273053408, 0.13766895234584808,
- 0.0713401660323143, -0.05406581982970238, -0.041392553597688675, 0.018724234774708748,
- 0.03203824162483215, 0.1826573610305786, -0.0006145152729004622, -0.021060975268483162,
- 0.07972730696201324, -0.06319928169250488, 0.03431413322687149, 0.0006633428274653852,
- 0.0053787571378052235, -0.00608277041465044, 0.04200394079089165, 0.006010370794683695,
- -0.030697060748934746, 0.07375495880842209, -0.07983873784542084, 0.04647061973810196,
- 0.03834183141589165, 0.017826104536652565, 0.06559424102306366, -0.03906320780515671,
- -0.08132035285234451, -0.18836019933223724, -0.05586604028940201, -0.08527643978595734,
- 0.0452054925262928, -0.10417458415031433, -0.04657033458352089, -0.03436870500445366,
- 0.023284418508410454, 0.040560174733400345, 0.0699659138917923, 0.002180399838835001,
- 0.017128920182585716, -0.025201523676514626, -0.040349334478378296,
- 0.019225958734750748, 0.06057683378458023, 0.21318639814853668, -0.13704058527946472,
- 0.022670293226838112, 0.0826338678598404, -0.08203405141830444, 0.4099651277065277,
- 0.06392275542020798, -0.01592247560620308, -0.042750805616378784, 0.08987253159284592,
- 0.05764828249812126, 0.012581970542669296, -0.020558452233672142, 0.004130438435822725,
- 0.06362869590520859, -0.010280266404151917, 0.09360860288143158, 0.08693231642246246,
- 0.04914581775665283, -0.033025890588760376, -0.0214142557233572, -0.04474635422229767,
- -0.03662244603037834, 0.024467196315526962, -0.08775480836629868, 0.11243188381195068,
- 0.03325282782316208, -0.03904948756098747, -0.012686915695667267, 0.04390246048569679,
- -0.015209843404591084, 0.019408563151955605, -0.0850181058049202, 0.005502625368535519,
- 0.03702740743756294, 0.10528115928173065, -0.03366224840283394, 0.0665832906961441,
- -0.053522154688835144, -0.024011028930544853, 0.06978405267000198, 0.11133260279893875,
- 0.05384109914302826, -0.027704663574695587, 0.09810571372509003, 0.08627453446388245,
- -0.05436626449227333, 0.09614886343479156, -0.01793711632490158, -0.05602075904607773,
- -0.0030005131848156452, -0.029773863032460213, -0.017859509214758873,
- -0.05631338432431221, -0.2325129359960556, 0.0260660108178854, 0.09842503815889359,
- 0.020734848454594612, 0.0012099981540814042, 0.002105566905811429, -0.05526357516646385,
- 0.04147210717201233, -0.013188443146646023, -0.025115758180618286, 0.09821745753288269,
- -0.02283080294728279, 0.03657842054963112, 0.15731801092624664, -0.02257171832025051,
- -0.03468497842550278, -0.0848754495382309, -0.0039025137666612864, 0.01867007277905941,
- 0.07693138718605042, -0.11059905588626862, -0.05379929766058922, 0.036188047379255295,
- 0.023485805839300156, 0.6096298098564148, 0.06485653668642044, 0.1530369222164154,
- -0.043192580342292786, 0.057192668318748474, 0.15524010360240936, 0.013587022200226784,
- 0.0667715072631836, -0.051176607608795166, -0.129537895321846, 0.002914027776569128,
- -0.038067642599344254, -0.01573224551975727, 0.022766685113310814, 0.03014572337269783,
- 0.11298868060112, 0.012200734578073025, 0.09753349423408508, -0.007724113296717405,
- 0.0062672230415046215, -0.008434051647782326, -0.00887677539139986, 0.03855706751346588,
- -0.13425299525260925, -0.05052589252591133, -0.02158327028155327, 0.06730323284864426,
- -0.056362755596637726, 0.030689842998981476, 0.005006532184779644, 0.037044771015644073,
- -0.019392196089029312, 0.032148972153663635, 0.011537603102624416, 0.018792515620589256,
- 0.01554657518863678, 0.029610542580485344, 0.0221233032643795, -0.1006663590669632,
- -0.03288758918642998, 0.10747474431991577, 0.03824219852685928, -0.02037457376718521,
- 0.08016018569469452, -0.08738444745540619, 0.033189527690410614, 0.008467135950922966,
- 0.18118955194950104, -0.10158925503492355, 0.0757630318403244, 0.021638158708810806,
- -0.018175499513745308, -0.02237914688885212, -0.0009598786127753556,
- -0.0430673286318779, -0.03505080193281174, -0.0027739584911614656, 0.014972985722124577,
- 0.025925343856215477, 0.043341781944036484, -0.05974180996417999, 0.030408021062612534,
- 0.030141660943627357, -0.023040466010570526, -0.033798761665821075, 0.07330832630395889,
- 0.03826725482940674, -0.09068132936954498, 0.0037326256278902292, -0.012257889844477177,
- 0.09902077913284302, 0.04216790944337845, -0.018105104565620422, 0.07189483940601349,
- -0.024502882733941078, 0.028651265427470207, 0.09231065958738327, 0.006792902480810881,
- 0.056815408170223236, 0.0985863208770752, -0.15287744998931885, -0.06838592141866684,
- -0.047520458698272705, -0.0827098935842514, -0.021410638466477394, -0.07503340393304825,
- 0.08104599267244339, 0.06108062341809273, 0.09465902298688889, -0.03392786160111427,
- 0.006439905147999525, 0.08858966082334518, 0.04147394746541977, 0.05515424907207489,
- 0.03009965643286705, -0.03093409538269043, -0.03823750093579292, 0.02061855047941208,
- -0.025261396542191505, 0.1187155693769455, 0.03788400813937187, -0.06205788999795914,
- 0.019069049507379532, 0.02829231135547161, -0.09438122808933258, -0.10407781600952148,
- 0.007393970619887114, -0.01280626654624939, 0.026872826740145683, -0.05578730255365372,
- -0.1313764899969101, -0.07253769040107727, 0.0023615926038473845, 0.06681974977254868,
- -0.05716675519943237, -0.0203953105956316, -0.09581166505813599, 0.005450882483273745,
- -0.0051822722889482975, 0.025010518729686737, 0.004428355488926172,
- -0.02400096133351326, 0.03284061327576637, -0.02854490838944912, -0.026702474802732468,
- -0.003998325672000647, -0.14492963254451752, -0.006623333320021629,
- -0.033395905047655106, -0.02697201631963253, 0.03024481050670147, 0.004809260368347168,
- 0.06448744237422943, 0.07648056000471115, 0.0892629474401474, 0.0373828150331974,
- -0.004734991118311882, 0.01143360510468483, 0.09907134622335434, -0.028210317716002464,
- 0.02605406381189823, 0.06049898639321327, -0.0056752110831439495, 0.036430858075618744,
- -0.05293017253279686, -0.07584486901760101, -0.05062693729996681, 0.0058148265816271305,
- -0.06442390382289886, 0.08951575309038162, -0.03261885419487953, -0.06139448657631874,
- -0.05475173890590668, -0.035612303763628006, 0.031221570447087288, -0.0712694451212883,
- -0.03311875835061073, -0.0967683345079422, 0.10209023207426071, -0.01629701443016529,
- 0.015108343213796616, -0.005401779897511005, -0.10166697204113007, 0.06616150587797165,
- 0.023415695875883102, -0.02390514314174652, 0.07925482094287872, 0.01058078370988369,
- -0.06617381423711777, 0.051550015807151794, 0.11076205968856812, 0.01289952453225851,
- 0.04954921454191208, 0.07571040093898773, 0.4348606467247009, -0.16057762503623962,
- 0.08117780089378357, 0.04588608071208, -0.037074439227581024, 0.05355127900838852,
- -0.028102565556764603, 0.07034076750278473, 0.0285502802580595, 0.11874662339687347,
- 0.05550416186451912, -0.06532975286245346, 0.0182403102517128, -0.11646543443202972,
- 0.06098046153783798, 0.03338797017931938, -0.04760411009192467, 0.016805825755000114,
- -0.03553997352719307, -0.03185614198446274, 0.01990402489900589, -0.04178071394562721,
- -0.009716012515127659, -0.030568048357963562, -0.0792783722281456, 0.06281787902116776,
- 0.0374562069773674, 0.040250517427921295, -0.03907327726483345, 0.041956253349781036,
- 0.028767582029104233, -0.018167195841670036, 0.008247860707342625, 0.03408636525273323,
- -0.07230085134506226, 0.1266304850578308, -0.11585600674152374, -0.05186387896537781,
- 0.04260886088013649, -0.035637810826301575, 0.08384884148836136, 0.1393803209066391,
- -0.03650091961026192, 0.03438729792833328, -0.05346560850739479, -0.06709485501050949,
- 0.011548526585102081, -0.02488025650382042, 0.013310697861015797, 0.019133461639285088,
- 0.1945423036813736, 0.011135153472423553, -0.07019065320491791, -0.06281871348619461,
- 0.04485706984996796, 0.032186005264520645, -0.04652857780456543, 0.05393185466527939,
- -0.030492696911096573, 0.019300416111946106, 0.0162548515945673, -0.016857998445630074,
- -0.08706752955913544, -0.008208691142499447, -0.05755040794610977, 0.020472049713134766,
- 0.017154181376099586, -0.07606105506420135, -0.040057770907878876, -0.07494412362575531,
- -0.03392386436462402, 0.0474967360496521, 0.1309693604707718, -0.10883716493844986,
- 0.07381588965654373, 0.013873987831175327, 0.02128426544368267, 0.010568044148385525,
- -0.10388170182704926, -0.0038349090609699488, -0.09113551676273346, 0.05700201168656349,
- 0.008137218654155731, 0.11638888716697693, -0.04328012466430664, 0.033735956996679306,
- -0.08800350874662399, -0.004681545775383711, -0.023766951635479927,
- -0.03464959189295769, 0.028730934485793114, -0.07312683016061783, 0.055184803903102875,
- 0.007177629508078098, -0.013624384067952633, -0.03261735662817955,
- -0.048332490026950836, 0.011637477204203606, -0.1153079941868782, -0.08452532440423965,
- -0.04363927245140076, -0.07228335738182068, 0.11429418623447418, -0.03303303197026253,
- 0.026689056307077408, -0.039912931621074677, 0.0011458590161055326,
- 0.0016057861503213644, 0.045540254563093185, -0.03855036199092865, -0.16584742069244385,
- -0.028832117095589638, 0.01392320916056633, 0.012760358862578869, 0.013451804406940937,
- -0.03710758313536644, 0.0351644828915596, 0.09622466564178467, 0.03789370879530907,
- -0.045100096613168716, -0.00899098627269268, -0.01553970668464899, 0.024133889004588127,
- -0.05602242052555084, -0.5412313938140869, 0.035646479576826096, 0.05473066866397858,
- 0.0480353906750679, 0.017475247383117676, -0.07442068308591843, 0.014132595621049404,
- 0.033028051257133484, -0.03192140534520149, 0.08966167271137238, -0.039332304149866104,
- 0.025361254811286926, 0.005204056855291128, -0.07945995032787323, 0.015335294418036938,
- -0.04828757047653198, 0.05301160737872124, 0.032637882977724075, -0.019476614892482758,
- -0.06344807147979736, -0.07338017225265503, 0.006240639835596085, -0.05567598342895508,
- -0.03914397582411766, -0.04420413076877594, 0.030954623594880104, -0.12434620410203934,
- -0.06407080590724945, -0.043078646063804626, 0.0237287450581789, -0.017588825896382332,
- -0.0802905336022377, -0.03148258104920387, 0.07164803147315979, -0.05986201763153076,
- 0.12019253522157669, 0.007584378123283386, 0.001820651232264936, -0.11504804342985153,
- 0.054347772151231766, 0.060795363038778305, 0.1837882697582245, -0.031024329364299774,
- 0.061084043234586716, 0.028438007459044456, 0.1824796348810196, -0.011644305661320686,
- 0.05497535690665245, -0.06849587708711624, 0.017644086852669716, 0.010499758645892143,
- -0.060603972524404526, 0.0459766760468483, -0.08207228034734726, 0.02378741465508938,
- -0.05334363877773285, -0.01734079048037529, -0.09067253023386002, 0.008386005647480488,
- 0.1820194274187088, 0.04241149127483368, 0.058711543679237366, 0.025501882657408714,
- -0.03181729093194008, -0.00610597338527441, -0.05574624985456467, -0.0538647286593914,
- -0.015541505999863148, -0.06305010616779327, 0.015194477513432503, -0.0399475023150444,
- -0.12910248339176178, -0.013441313058137894, -0.02952062152326107, -0.05469241365790367,
- 0.10042908787727356, -0.06699208170175552, 0.07035920768976212, -0.08954047411680222,
- 0.15278597176074982, 0.00479872664436698, 0.07099683582782745, 0.025566963478922844,
- 0.09183912724256516, 0.03321359306573868, -0.09376682341098785, -0.10323422402143478,
- -0.07001544535160065, -0.0015550542157143354, 0.12011855840682983, -0.03673313185572624,
- 0.18480992317199707, -0.017632456496357918, -0.024958563968539238, -0.03746471181511879,
- 0.010320632718503475, 0.009513425640761852, -0.07261133193969727, -0.42756935954093933,
- -0.01379556953907013, 0.15004776418209076, -0.048942118883132935, 0.018295027315616608,
- 0.049033697694540024, 0.04748806729912758, -0.010343199595808983, 0.009705978445708752,
- -0.06278219819068909, 0.1116117462515831, 0.015116313472390175, 0.12131455540657043,
- -0.05695796757936478, 0.06828361749649048, 0.11250767111778259, -0.009114895947277546,
- -0.023821843788027763, -0.008317939937114716, -0.2581082284450531,
- 0.0045888228341937065, -0.04200144484639168, 0.11397790163755417, 0.05534845590591431,
- 0.034189362078905106, 0.08158311247825623, 0.005927170626819134, 0.027098149061203003,
- -0.023810941725969315, 0.01765464060008526, 0.05499143898487091, -0.020619936287403107,
- -0.05619541183114052, 0.0711422935128212, 0.0918198674917221, 0.1226007491350174,
- 0.019456150010228157, 12.145267486572266, 0.07223678380250931, 0.05410447716712952,
- -0.06644207239151001, 0.02476244606077671, -0.04604530334472656, 0.01994672417640686,
- -0.0787675604224205, 0.07565678656101227, 0.11808506399393082, 0.010710254311561584,
- -0.047112639993429184, -0.006742066703736782, -0.08962397277355194,
- 0.00012097234139218926, -0.05311944708228111, 0.029513515532016754,
- -0.03152807801961899, 0.047250814735889435, -0.04172512888908386, -0.0826513022184372,
- 0.06677526235580444, 0.08743877708911896, 0.035933058708906174, -0.09019780158996582,
- 0.08283732831478119, -0.01729876734316349, 0.013068784959614277, 0.026116684079170227,
- 0.015824850648641586, 0.00839505810290575, 0.023226873949170113, 0.08280674368143082,
- -0.011886869557201862, 0.09086785465478897, 0.0034554372541606426, -0.00116734707262367,
- 0.039331573992967606, 0.034854281693696976, 0.048618096858263016, -0.024207687005400658,
- 0.03159201517701149, 0.0001901368668768555, 0.03726154565811157, 0.03272457793354988,
- 0.024686433374881744, 0.029339909553527832, 0.15886735916137695, 0.014970662072300911,
- 0.08695787936449051, 0.10738634318113327, 0.01461284700781107, 0.13572309911251068,
- 0.05464867874979973, 0.02343600243330002, 0.03463094308972359, -0.011351631954312325,
- -0.040085069835186005, 0.08404141664505005, 0.0819193497300148, -0.05248570814728737,
- 0.10317578911781311, 0.03914523869752884, 0.1593349128961563, 0.016405096277594566,
- 0.12335944920778275, 0.06673157215118408, 0.08144819736480713, -0.15254947543144226,
- -0.05574021860957146, -0.002847912022843957, -0.12988930940628052, -0.01990284025669098,
- 0.04260546714067459, 0.09170673042535782, -0.017015961930155754, 0.07923943549394608,
- -0.05782536417245865, 0.06460805982351303, -0.02983991429209709, 0.032092031091451645,
- 0.09500318020582199, -0.06919603049755096, 0.0013093152083456516, 0.0787992775440216,
- 0.0077088070102036, 0.12026531994342804, 0.13498899340629578, -0.016585825011134148,
- -0.09248214215040207, -0.053334396332502365, 0.0626489594578743, -0.021742820739746094,
- -0.034903403371572495, -0.012323141098022461, -0.056470587849617004,
- 0.0003211789589840919, -0.18477024137973785, 0.09583905339241028, 0.12289002537727356,
- -0.05010949447751045, 0.026839718222618103, -0.03921572118997574, 0.14199958741664886,
- 0.023833904415369034, 0.02802914008498192, -0.09716171771287918, -0.0223618745803833,
- 0.04963903874158859, 0.04753587022423744, -0.04805745929479599, 0.1109970286488533,
- 0.07501648366451263, -0.06286086142063141, 0.05628639832139015, 0.052020806819200516,
- -0.004606141708791256, -0.05965118482708931, 0.03148872032761574, 0.04300866648554802,
- -0.09306512773036957, -0.04150336608290672, -0.020593196153640747,
- -0.057560935616493225, 0.021940341219305992, -0.09105155616998672, -0.05766740441322327,
- -0.004884566646069288, -0.03902377560734749, -0.054822634905576706,
- 0.003113702405244112, 0.054531969130039215, 0.10346728563308716, 0.011026007123291492,
- 0.07322096079587936, -0.028260191902518272, -0.06867271661758423, 0.04476311057806015,
- 0.07204882800579071, 0.0686364620923996, -0.03289026767015457, 0.0034350522328168154,
- -0.025613272562623024, -0.08060953766107559, -0.003414055798202753, 0.125393345952034,
- 0.0695618987083435, 0.07626212388277054, 0.028893355280160904, -0.03863181173801422,
- -0.05144374445080757, 0.07090458273887634, 0.04701844975352287, -0.05738668888807297,
- -0.05547810345888138, -0.08742740005254745, 0.017763717100024223, 0.11500933766365051,
- -0.03664914891123772, 0.042923733592033386, 0.08218700438737869, -0.07760744541883469,
- 0.04383976012468338, 0.07762672752141953, 0.04242653399705887, 0.03667118400335312,
- 0.027038009837269783, -0.02331123687326908, 0.014696046710014343, -0.019249221310019493,
- 0.03226034715771675, -0.06930306553840637, -0.1380365490913391, -0.07137351483106613,
- 0.04441015422344208, 0.07498873770236969, 0.06033964827656746, -0.18083810806274414,
- -0.0420711524784565, -0.01310712844133377
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 252,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["AP/Reuters"],
- "epoch_date_downloaded": 1658707200,
- "epoch_date_modified": 1658880000,
- "epoch_date_submitted": 1658707200,
- "flag": null,
- "report_number": 1795,
- "source_domain": "abc.net.au",
- "submitters": ["Sonali Pednekar (CSET)"],
- "title": "Taser manufacturer drops proposal to put armed drones in schools after mass resignation from ethics board",
- "url": "https://www.abc.net.au/news/2022-06-06/ethics-panel-members-resign-axon-taser-drones-mass-shootings/101129270"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "cruise",
- "name": "Cruise"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "cruise",
- "name": "Cruise"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "san-francisco-traffic-participants",
- "name": "San Francisco traffic participants"
- },
- {
- "__typename": "Entity",
- "entity_id": "san-francisco-public",
- "name": "San Francisco public"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1799, 1798, 1797, 1796],
- "vector": [
- -0.08145357668399811, 0.05577744543552399, -0.006793564651161432, -0.09786224365234375,
- 0.06542341411113739, -0.016656408086419106, -0.019641518592834473, 0.027996107935905457,
- 0.08240966498851776, -0.15883338451385498, -0.012992868199944496, 0.015591173432767391,
- 0.025896696373820305, -0.05250236764550209, 0.019773609936237335, -0.071504145860672,
- -0.07203561812639236, 0.01420825906097889, 0.00318602891638875, -0.10885386168956757,
- -0.06036240980029106, -0.0408870093524456, 0.05043832212686539, 0.11985521763563156,
- -0.025220101699233055, 0.02398107945919037, 0.09521809220314026, 0.12541775405406952,
- -0.08162562549114227, 0.08486034721136093, -0.0303054042160511, -0.07602980732917786,
- 0.13037154078483582, -0.019028369337320328, 0.026974890381097794, 0.09035797417163849,
- 0.01759573258459568, -0.040761154145002365, -0.0737605169415474, 0.0020236545242369175,
- 0.0352671854197979, 0.1739017814397812, -0.0034404508769512177, -0.02530447021126747,
- 0.07926101982593536, -0.0005879852105863392, 0.05110626667737961, 0.039120763540267944,
- -0.015803413465619087, -0.006061782594770193, -0.03446270897984505, 0.03155870735645294,
- -0.0635787844657898, 0.0023352664429694414, -0.11418010294437408, 0.08929406106472015,
- 0.0540129691362381, -0.021340135484933853, -0.0011706429067999125, -0.06516635417938232,
- -0.02518368512392044, -0.1863197684288025, -0.02823418565094471, -0.06328365951776505,
- 0.09269857406616211, -0.08256447315216064, -0.021458139643073082, 0.025763727724552155,
- -0.0020498966332525015, 0.055942777544260025, 0.010149902664124966,
- -0.04968127980828285, -0.032494865357875824, -0.03750309348106384,
- -0.0034881168976426125, -0.03462207317352295, 0.0186043381690979, 0.25861185789108276,
- -0.10862892121076584, 0.04184935614466667, 0.1013621911406517, -0.10108456760644913,
- 0.40124985575675964, 0.03081774152815342, -0.03272556513547897, -0.023605799302458763,
- 0.08961427956819534, 0.02884477749466896, 0.02831229567527771, 0.05634170398116112,
- 0.0030568037182092667, 0.01872020773589611, -0.010439204052090645, 0.03016071766614914,
- 0.04883234202861786, 0.013937029056251049, -0.027986876666545868, -0.008950007148087025,
- -0.017900340259075165, -0.07105273753404617, 0.045133430510759354, -0.04489912837743759,
- 0.05267425626516342, 0.0476723238825798, -0.017387546598911285, -0.002208961173892021,
- 0.09622596204280853, -0.038040757179260254, 0.037950124591588974, -0.04850456118583679,
- 0.016628829762339592, 0.02230021171271801, 0.05236591398715973, 0.009511405602097511,
- 0.03593811020255089, -0.06425148248672485, 0.01300262100994587, 0.05175841227173805,
- 0.07701389491558075, 0.024220842868089676, -0.01085969340056181, 0.08942943811416626,
- 0.14306601881980896, -0.06983574479818344, -0.004161973018199205, -0.029373640194535255,
- -0.07180112600326538, -0.01694757491350174, -0.03722453489899635, 0.03405696898698807,
- -0.07438261806964874, -0.22582793235778809, 0.0049387505277991295, 0.10062333196401596,
- -0.000888381153345108, -0.004321764223277569, -0.0017130698543041945,
- -0.07547345757484436, 0.027237195521593094, -0.03361709415912628, -0.012145633809268475,
- 0.07998181134462357, 0.05634976178407669, 0.02768133394420147, 0.07996943593025208,
- 0.053134288638830185, -0.028656676411628723, -0.05449957400560379,
- -0.039238885045051575, -0.033542003482580185, 0.07517975568771362, -0.09329091012477875,
- -0.035423606634140015, 0.0012244523968547583, -0.03100569359958172, 0.5896522402763367,
- 0.08917228132486343, 0.1295994073152542, -0.018692022189497948, -0.033760860562324524,
- 0.18177683651447296, -0.003244259860366583, 0.03753624111413956, -0.062081318348646164,
- -0.036049697548151016, 0.008272649720311165, -0.03682370483875275,
- -0.040057744830846786, 0.0391257181763649, 0.021787377074360847, 0.10339540243148804,
- 0.04828336834907532, 0.11298733949661255, 0.00040896027348935604, -0.09346939623355865,
- 0.00856066681444645, 0.042005594819784164, -0.02438928559422493, -0.1108010932803154,
- -0.03307066857814789, 0.05316416174173355, 0.09048978984355927, -0.04680474102497101,
- 0.030188117176294327, -0.040828920900821686, 0.04861799627542496, -0.01902751438319683,
- 0.03226965665817261, -0.008758421055972576, 0.01642734743654728, 0.03871295973658562,
- 0.05146439000964165, -0.031009642407298088, -0.08775816112756729, -0.0732242539525032,
- 0.11198195815086365, 0.02285853773355484, -0.04505690187215805, 0.08003396540880203,
- -0.08270227909088135, 0.05164708197116852, 0.01265859603881836, 0.12863099575042725,
- -0.13717809319496155, 0.0047061629593372345, 0.011310188099741936, 0.020302968099713326,
- 0.06539483368396759, -0.023166345432400703, -0.0534433014690876, -0.07637698203325272,
- 0.053145378828048706, 0.0027152677066624165, 0.09406846761703491, 0.07650838792324066,
- -0.0696544274687767, 0.0428769625723362, 0.05654773861169815, 0.009295553900301456,
- -0.03287867456674576, 0.08667758107185364, 0.054080624133348465, -0.05263003334403038,
- -0.039899226278066635, 0.042658641934394836, 0.01786337047815323, 0.050052329897880554,
- 0.039120614528656006, 0.04996691271662712, 0.011114923283457756, -0.023675989359617233,
- 0.03649520128965378, 0.028936494141817093, 0.05373197793960571, 0.07073412090539932,
- -0.10696651041507721, -0.03134894371032715, -0.021999692544341087,
- -0.029832027852535248, -0.021160954609513283, -0.05254683643579483, 0.06666018068790436,
- 0.08861653506755829, 0.07299278676509857, 0.017355404794216156, 0.061698272824287415,
- 0.05985862389206886, 0.08240584284067154, 0.014517933130264282, 0.04627038538455963,
- -0.038914669305086136, -0.0598902627825737, -0.038069043308496475,
- -0.000733736960683018, 0.06250247359275818, 0.030726511031389236, -0.057365693151950836,
- -0.04605049639940262, -0.020491288974881172, -0.0006842355942353606,
- -0.07657130062580109, -0.03842063248157501, 0.009019105695188046, 0.0288382600992918,
- -0.05837294086813927, -0.07354637235403061, -0.08966448903083801, 0.008154203183948994,
- 0.02532491460442543, -0.004724114201962948, 0.0017869683215394616, -0.10803977400064468,
- 0.028611300513148308, -0.0216591227799654, 0.011545959860086441, 0.013753646984696388,
- 0.01936754211783409, -0.05738205835223198, -0.08515463769435883, -0.007742205634713173,
- -0.0010681388666853309, -0.028107840567827225, -0.06173951178789139,
- -0.059422023594379425, -0.014989165589213371, -0.022473931312561035,
- 0.009392420761287212, -0.046718914061784744, 0.03551745414733887, 0.0471738837659359,
- 0.032951243221759796, -0.019720686599612236, -0.039673853665590286, 0.0492321215569973,
- -0.020985405892133713, -0.021542521193623543, 0.06790971010923386,
- -0.017024463042616844, 0.01192367635667324, 0.018648436293005943, -0.06708826869726181,
- -0.07532282173633575, -0.0019126299303025007, -0.05312308296561241, 0.06807006150484085,
- -0.050239820033311844, -0.009878846816718578, -0.017762180417776108,
- 0.02147325687110424, 0.0717291459441185, -0.05052347108721733, -0.05334649980068207,
- -0.10252295434474945, 0.12417680025100708, -0.02213587798178196, 0.021901464089751244,
- 0.023387230932712555, -0.04182747006416321, 0.029398608952760696, 0.020626766607165337,
- 0.014986826106905937, 0.04419483616948128, 0.061198197305202484, -0.04147707670927048,
- 0.015478027984499931, 0.048574015498161316, -0.028929103165864944,
- -0.006567944772541523, 0.07638709247112274, 0.3961855173110962, -0.21260464191436768,
- 0.10230492800474167, 0.07787442207336426, 0.0070661152713000774, 0.07555345445871353,
- -0.023447327315807343, 0.08423390984535217, 0.04758920520544052, 0.10634081810712814,
- 0.12864452600479126, -0.011680027469992638, 0.025578845292329788, -0.03419652208685875,
- 0.0745435431599617, -0.0047315023839473724, 0.014225451275706291, -0.01096425112336874,
- -0.05150320380926132, -0.027031203731894493, 0.027438972145318985, -0.05288884788751602,
- 0.026426631957292557, -0.022613968700170517, -0.0974615141749382, 0.028503594920039177,
- 0.03959079831838608, 0.049812547862529755, -0.039486631751060486, 0.03138738125562668,
- -0.020676374435424805, 0.021266810595989227, -0.0019843473564833403,
- 0.06515969336032867, -0.07312825322151184, 0.06507755815982819, -0.08103684335947037,
- -0.12159325182437897, 0.05973077565431595, 0.021113300696015358, 0.03606833145022392,
- 0.052978403866291046, -0.015017804689705372, 0.02340206876397133, -0.032440170645713806,
- -0.04245445504784584, -0.0038737086579203606, 0.022467762231826782,
- 0.040016334503889084, 0.10719995945692062, 0.16387873888015747, -0.01172212976962328,
- -0.03483472764492035, -0.06535907089710236, 0.05980965867638588, 0.08625083416700363,
- -0.040530115365982056, 0.023322509601712227, -0.020743999630212784, 0.01857287436723709,
- 0.005309287458658218, -0.0335640013217926, -0.040804874151945114, 0.0011783649679273367,
- -0.023209555074572563, 0.06184399127960205, -0.00501297926530242, -0.05210208520293236,
- -0.15778537094593048, -0.018681835383176804, -0.04122709110379219, 0.014836530201137066,
- 0.12385426461696625, -0.05420698970556259, 0.012482590042054653, -0.008944460190832615,
- 0.020957382395863533, 0.03203057497739792, -0.07941272109746933, 0.05671020224690437,
- -0.06893541663885117, 0.023204544559121132, 0.09579475224018097, 0.0647948607802391,
- -0.0708322525024414, 0.04234204441308975, -0.11522256582975388, 0.029921015724539757,
- -0.0020572964567691088, -0.013064831495285034, 0.02547468990087509,
- -0.052597127854824066, 0.05115329474210739, 0.025515073910355568, -0.051274146884679794,
- 0.00594506599009037, -0.03723786398768425, -0.041507139801979065, -0.07479824870824814,
- -0.09977473318576813, -0.042695093899965286, -0.06399469822645187, 0.08541642129421234,
- -0.08849728107452393, -0.009121377021074295, -0.04590941593050957, -0.0117570785805583,
- 0.038191527128219604, 0.055288974195718765, 0.00625666044652462, -0.1370244026184082,
- 0.026976004242897034, -0.009670265018939972, 0.051196008920669556, 0.004526188131421804,
- -0.0573241263628006, -0.01868019439280033, 0.06782135367393494, 0.037248171865940094,
- -0.021354258060455322, 0.03578164428472519, -0.06096625700592995, 0.06382819265127182,
- -0.11391863226890564, -0.46902891993522644, 0.04632142558693886, -0.0031064082868397236,
- 0.04290449619293213, -0.007302893325686455, -0.04537782818078995, 0.05031156167387962,
- -0.0010183444246649742, -0.014958923682570457, 0.07167595624923706,
- -0.046314649283885956, -0.011872339993715286, -0.0047834040597081184,
- -0.06798285990953445, -0.012741909362375736, -0.06272758543491364, -0.05746181309223175,
- 0.04109620302915573, 0.0131938885897398, -0.04788750037550926, -0.06567062437534332,
- -0.002245251787826419, -0.02036060020327568, 0.03157729655504227, -0.03552145138382912,
- 0.0389309823513031, -0.04759029671549797, -0.08128887414932251, 0.019958440214395523,
- 0.04764392226934433, 0.01666063629090786, -0.058597493916749954, -0.002443132922053337,
- 0.057784996926784515, 0.01846959814429283, 0.14936034381389618, 0.02069292590022087,
- 0.023797160014510155, -0.05201287567615509, 0.06699670106172562, 0.06613684445619583,
- 0.18614746630191803, -0.006006724666804075, 0.09363707900047302, 0.005750132258981466,
- 0.10657935589551926, 0.024420831352472305, 0.04730931296944618, -0.039726004004478455,
- -0.014392062090337276, -0.0031979582272469997, -0.026463599875569344,
- 0.060495179146528244, -0.08528438210487366, -0.034496504813432693, -0.02224462851881981,
- -0.028983712196350098, -0.02983882464468479, 0.04116631671786308, 0.1872849017381668,
- 0.027065232396125793, 0.007610333617776632, 0.016558732837438583, -0.04926006868481636,
- 0.006369745824486017, -0.07977870851755142, -0.054096899926662445,
- -0.036384426057338715, -0.010832784697413445, 0.0033234392758458853,
- -0.03575741872191429, -0.12967932224273682, 0.00594167597591877, -0.05607941374182701,
- 0.004989734850823879, 0.11832693964242935, -0.0224758330732584, -0.009383567608892918,
- -0.028967328369617462, 0.1472572535276413, 0.0355684831738472, 0.03260140120983124,
- 0.046947188675403595, 0.08281002938747406, 0.0080720204859972, 0.013633506372570992,
- -0.06825465708971024, -0.05437223240733147, 0.020896945148706436, 0.1398984044790268,
- -0.04553252458572388, 0.0805026963353157, 0.042241912335157394, -0.014589599333703518,
- -0.037659745663404465, 0.03373495116829872, 0.027095885947346687, 0.0506441704928875,
- -0.48686644434928894, -0.01746409758925438, 0.11654229462146759, -0.015566879883408546,
- 0.024653267115354538, 0.08327598869800568, 0.0505138635635376, -0.005576103460043669,
- -0.02745259366929531, -0.034319546073675156, 0.09353563189506531, -0.01680494286119938,
- 0.04708603024482727, -0.10964467376470566, 0.04777522757649422, 0.09652332216501236,
- 0.007723769173026085, -0.01915135607123375, 0.0388764850795269, -0.23397764563560486,
- -0.00036744834505952895, -0.05466470867395401, 0.180380180478096, 0.012069622054696083,
- 0.025654174387454987, 0.06386342644691467, -0.03319083899259567, 0.026371348649263382,
- 0.05695578083395958, 0.013872208073735237, 0.06560557335615158, -0.026063542813062668,
- -0.017866885289549828, 0.09843510389328003, 0.08339503407478333, 0.10143948346376419,
- -0.0005621035816147923, 11.998360633850098, 0.0437801331281662, 0.06042155623435974,
- -0.08586820214986801, 0.02647903934121132, -0.05756412819027901, 0.028950568288564682,
- -0.07122093439102173, 0.07203856855630875, 0.109983429312706, -0.001949543715454638,
- -0.03093559667468071, -0.04585443437099457, -0.06069157272577286, 0.01536076795309782,
- -0.0835917741060257, -0.06727886945009232, -0.034410275518894196, 0.048097725957632065,
- -0.06353713572025299, 0.006418213248252869, 0.01024690456688404, 0.07091563940048218,
- 0.0286749005317688, -0.08429867029190063, 0.06769761443138123, 0.03509119898080826,
- -0.013967229053378105, -0.007659248076379299, 0.03839514032006264,
- -0.014755423180758953, 0.043963722884655, 0.08418893814086914, 0.03436429798603058,
- 0.0012782610720023513, 0.08253376185894012, 0.0029328097589313984, 0.05196066200733185,
- 0.013628154061734676, 0.04938554763793945, 0.012599427253007889, 0.025913769379258156,
- 0.013203462585806847, 0.011931350454688072, 0.04911816492676735, 0.0216328464448452,
- 0.023657429963350296, 0.11473962664604187, 0.0038905164692550898, 0.03329771012067795,
- 0.09708832204341888, -0.038889408111572266, 0.12791231274604797, 0.020786380395293236,
- -0.0029298546724021435, -0.011043494567275047, -0.01499403826892376,
- -0.07212194055318832, 0.06020684912800789, 0.061854247003793716, -0.04172595590353012,
- 0.0825047492980957, 0.04125688970088959, 0.12133229523897171, -0.013766126707196236,
- 0.030285533517599106, 0.053738728165626526, 0.07744014263153076, -0.10438492149114609,
- -0.052006375044584274, 0.06212276220321655, -0.08443441987037659, -0.05826917663216591,
- 0.038231898099184036, 0.05993187800049782, -0.01742934063076973, 0.10397671908140182,
- -0.03840235248208046, 0.031045563519001007, -0.05502721667289734, 0.012581391260027885,
- 0.03909379243850708, -0.041430674493312836, 0.01825355365872383, 0.017340725287795067,
- 0.0031650783494114876, 0.1166500449180603, 0.10682125389575958, -0.025297362357378006,
- -0.0697639063000679, -0.07993564754724503, 0.07545220851898193, -0.04679563269019127,
- -0.04539274051785469, 0.03535135090351105, -0.04718432202935219, 0.057115793228149414,
- -0.15678811073303223, 0.03859374299645424, 0.10714133083820343, -0.06773453950881958,
- -0.04487432539463043, -0.018689613789319992, 0.0851583331823349, -0.00888100080192089,
- 0.042836155742406845, -0.07025396823883057, 0.03760406747460365, 0.03108277916908264,
- 0.03867030516266823, -0.04085700586438179, 0.08642832934856415, 0.06385943293571472,
- -0.06637093424797058, 0.07272744178771973, 0.06532590091228485, -0.04892420768737793,
- -0.041050851345062256, 0.05920170247554779, 0.05500921607017517, -0.08992176502943039,
- -0.03132961317896843, -0.0791422426700592, -0.01604362204670906, -0.010104595683515072,
- 0.007689866237342358, -0.001824462553486228, 0.013283702544867992, -0.0599362775683403,
- -0.04241011664271355, -0.0019530883291736245, 0.02708221599459648, 0.1496984362602234,
- 0.005482059437781572, 0.08700411021709442, -0.036234281957149506, -0.0383329801261425,
- 0.06047222763299942, 0.06678129732608795, 0.09524068236351013, -0.030620332807302475,
- -0.0036425213329494, -0.05137382075190544, -0.08634455502033234, 0.04571782052516937,
- 0.11526672542095184, 0.020634256303310394, 0.03934380039572716, 0.032883934676647186,
- -0.07435111701488495, -0.04846414923667908, 0.12023727595806122, 0.05569136142730713,
- 0.012449371628463268, 0.013672443106770515, -0.06501216441392899, -0.03218931704759598,
- 0.13263678550720215, -0.04347747936844826, -0.019620811566710472, 0.053837742656469345,
- -0.07281992584466934, 0.026676896959543228, 0.07944038510322571, 0.04941785708069801,
- 0.04978812485933304, 0.007444132585078478, -0.001241134013980627, 0.01236375980079174,
- -0.0024269274435937405, 0.01800387166440487, -0.02997339516878128, -0.11851983517408371,
- -0.08133113384246826, 0.016065528616309166, 0.07537203282117844, 0.0044841160997748375,
- -0.1534194052219391, -0.009404863230884075, -0.037314996123313904
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 253,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Scott Gatz"],
- "epoch_date_downloaded": 1658880000,
- "epoch_date_modified": 1658880000,
- "epoch_date_submitted": 1658880000,
- "flag": null,
- "report_number": 1799,
- "source_domain": "twitter.com",
- "submitters": ["Khoa Lam"],
- "title": "Tweet: @sgatz",
- "url": "https://twitter.com/sgatz/status/1528251037924003841"
- },
- {
- "__typename": "Report",
- "authors": ["Benjamin Schneider"],
- "epoch_date_downloaded": 1657497600,
- "epoch_date_modified": 1658880000,
- "epoch_date_submitted": 1657497600,
- "flag": null,
- "report_number": 1798,
- "source_domain": "sfexaminer.com",
- "submitters": ["Kate Perkins"],
- "title": "Cruise driverless cars blocked traffic for hours Tuesday night",
- "url": "https://www.sfexaminer.com/news/fleet-of-cruise-driverless-cars-blocked-traffic-for-hours-tuesday-night/article_57e8d2c8-f8c4-11ec-b99d-33fd6c31cb3e.html"
- },
- {
- "__typename": "Report",
- "authors": ["Aarian Marshall"],
- "epoch_date_downloaded": 1658880000,
- "epoch_date_modified": 1658880000,
- "epoch_date_submitted": 1657497600,
- "flag": null,
- "report_number": 1797,
- "source_domain": "wired.com",
- "submitters": ["Kate Perkins"],
- "title": "Cruise’s Robot Car Outages Are Jamming Up San Francisco",
- "url": "https://www.wired.com/story/cruises-robot-car-outages/"
- },
- {
- "__typename": "Report",
- "authors": ["Joe Kukura"],
- "epoch_date_downloaded": 1657497600,
- "epoch_date_modified": 1658880000,
- "epoch_date_submitted": 1657497600,
- "flag": null,
- "report_number": 1796,
- "source_domain": "sfist.com",
- "submitters": ["Kate Perkins"],
- "title": "GM Cruise Robotaxis Blocked SF Streets More Frequently Than We Knew, One Night ‘Nearly 60’ Cars Stopped",
- "url": "https://sfist.com/2022/07/08/gm-cruise-robotaxis-froze-and-blocked-sf-streets-far-more-frequently-than-we-knew-one-time-nearly-60-cars-stopped-at-once/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "google",
- "name": "Google"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "google",
- "name": "Google"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "illinois-residents",
- "name": "Illinois residents"
- },
- {
- "__typename": "Entity",
- "entity_id": "google-photos-users-residing-in-illinois",
- "name": "Google Photos users residing in Illinois"
- },
- {
- "__typename": "Entity",
- "entity_id": "google-photos-users",
- "name": "Google Photos users"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [2069, 1804],
- "vector": [
- -0.062344640493392944, 0.06982548534870148, -0.002677694894373417, -0.08286979794502258,
- 0.04916611686348915, -0.07267427444458008, 0.0042659929022192955, 0.056563857942819595,
- 0.07910269498825073, -0.15459184348583221, 0.00878339633345604, 0.03952304273843765,
- 0.0449395515024662, -0.028724392876029015, 0.009203360415995121, -0.053014203906059265,
- -0.06173880025744438, -0.021552041172981262, 0.009573095478117466, -0.08156903833150864,
- -0.09306374192237854, -0.013545948080718517, 0.08819200098514557, 0.10376270115375519,
- -0.002299997489899397, 0.049985677003860474, 0.0968964546918869, 0.13504785299301147,
- -0.04953434690833092, 0.08720359206199646, -0.03120136447250843, -0.060429155826568604,
- 0.11311152577400208, -0.0217610951513052, -0.006978400982916355, 0.08748836815357208,
- 0.054197005927562714, -0.04623984172940254, -0.061106570065021515,
- -0.060910336673259735, 0.0513576939702034, 0.1562252640724182, -0.01120150089263916,
- -0.007665547542273998, 0.06837411224842072, 0.026575792580842972, 0.026966191828250885,
- 0.07814832031726837, -0.006351180374622345, -0.020822912454605103,
- -0.004002779722213745, -0.011022794991731644, -0.04961039870977402,
- 0.006126426625996828, -0.06090182065963745, 0.07350647449493408, 0.019338710233569145,
- 0.005200658459216356, 0.017970843240618706, -0.04861602932214737, -0.018468016758561134,
- -0.12816816568374634, -0.06462495028972626, -0.06933217495679855, 0.08039484918117523,
- -0.0655154287815094, -0.02066296897828579, 0.018857408314943314, 0.03283590078353882,
- 0.0681580901145935, 0.017585959285497665, -0.03545575216412544, -0.019574608653783798,
- -0.05346411466598511, -0.019057389348745346, -0.044897593557834625, 0.07172581553459167,
- 0.17448869347572327, -0.045179352164268494, 0.08364367485046387, 0.10699176788330078,
- -0.08702424168586731, 0.35005366802215576, 0.05175714194774628, -0.006551101338118315,
- -0.040552739053964615, 0.06360545009374619, 0.0926126167178154, 0.03235003352165222,
- 0.02242717333137989, -0.02373359352350235, 0.02852494828402996, 0.00034120562486350536,
- -0.00015022919978946447, 0.061931975185871124, 0.01010711956769228,
- -0.020687395706772804, -0.0673108771443367, -0.020011112093925476, -0.05095969885587692,
- -0.007859094068408012, -0.049280766397714615, 0.12244845181703568, 0.06543833762407303,
- -0.04578541964292526, 0.0017504813149571419, 0.07089443504810333, -0.026573995128273964,
- 0.05523268133401871, -0.03621941804885864, 0.04425572603940964, 0.05461322143673897,
- 0.024681104347109795, 0.0057675801217556, 0.05122889205813408, -0.04523623734712601,
- 0.022395102307200432, -0.0035947381984442472, 0.06753215938806534, 0.021137526258826256,
- 0.022112146019935608, 0.050099607557058334, 0.11326248198747635, -0.03715766593813896,
- -0.023625817149877548, -0.026209063827991486, -0.019586768001317978,
- 0.020104488357901573, 0.0003485861234366894, 0.023190747946500778,
- -0.014436129480600357, -0.17356863617897034, 0.029455961659550667, 0.04562830924987793,
- 0.03529563546180725, -0.021326860412955284, 0.01521044597029686, -0.05094827711582184,
- 0.036815546452999115, 0.03548148274421692, -0.012660271488130093, 0.06954364478588104,
- 0.082727812230587, 0.046026669442653656, 0.1252720057964325, -0.00017090205801650882,
- -0.020464634522795677, -0.04623020440340042, -0.026708342134952545,
- -0.07733605057001114, 0.05874819681048393, -0.11371124535799026, -0.04212043061852455,
- 0.04883871227502823, 0.009019032120704651, 0.5825322866439819, 0.05705064535140991,
- 0.09311520308256149, -0.07205470651388168, -0.017659001052379608, 0.14745548367500305,
- -0.015691891312599182, 0.08071799576282501, -0.02379036881029606, -0.023808512836694717,
- -0.015000477433204651, -0.07489076256752014, -0.023189108818769455,
- 0.002528110519051552, 0.038600336760282516, 0.1298529952764511, 0.0320638045668602,
- 0.078409343957901, -0.01684524677693844, -0.03828667849302292, -0.0191836915910244,
- -0.0042108455672860146, 0.004606554284691811, -0.11208518594503403,
- -0.013792179524898529, 0.04329609498381615, 0.06320905685424805, -0.05020251125097275,
- -0.014749893918633461, -0.06535115838050842, -0.009195053018629551,
- -0.041574954986572266, 0.04015938565135002, 0.020076416432857513, 0.0023914931807667017,
- 0.06080041453242302, 0.06839907169342041, 0.009599003940820694, -0.11453580856323242,
- -0.0452391542494297, 0.11667325347661972, 0.014027692377567291, -0.025878868997097015,
- 0.08276039361953735, -0.08205783367156982, 0.03578709065914154, -0.017640702426433563,
- 0.11132064461708069, -0.08668740093708038, -0.01853673905134201, -0.016420092433691025,
- -0.015150489285588264, 0.05755924433469772, -0.03411180153489113, -0.06879013776779175,
- -0.06313137710094452, 0.04142163693904877, 0.038300059735774994, 0.10246232897043228,
- 0.014108629897236824, -0.040695879608392715, 0.014784907922148705,
- -0.023898698389530182, -0.00476329680532217, -0.07935632765293121, 0.08872662484645844,
- 0.0690847635269165, -0.05702187865972519, -0.010149704292416573, 0.051480893045663834,
- 0.05719815939664841, 0.01799963228404522, 0.021706070750951767, 0.045631565153598785,
- -0.0194287970662117, -0.03529275953769684, 0.017292102798819542, 0.04434243589639664,
- -0.010157578624784946, 0.07587863504886627, -0.05805385857820511, 0.00265688169747591,
- -0.02815908193588257, -0.04484516382217407, -0.001898797694593668, -0.02696426957845688,
- 0.03983461111783981, 0.057921238243579865, 0.03430524095892906, -0.016531623899936676,
- 0.052353546023368835, 0.03988253325223923, -0.005779499188065529, 0.017116233706474304,
- 0.03617573529481888, -0.016563348472118378, -0.028018340468406677, -0.01010738592594862,
- -0.005981634370982647, 0.07410264760255814, 0.04568151384592056, -0.0677536129951477,
- -0.029624268412590027, -0.04381037503480911, -0.003089304082095623,
- -0.08028528094291687, -0.062496118247509, -0.023249508813023567, 0.030002448707818985,
- -0.06878580152988434, -0.10387592017650604, -0.033111535012722015, 0.04355735704302788,
- 0.031444087624549866, -0.023230087012052536, -0.013271383009850979,
- -0.07961760461330414, 0.0008046887814998627, 0.003886038437485695, 0.05688371881842613,
- -0.009709492325782776, 0.03070654906332493, -0.050890956073999405, -0.0839519128203392,
- -0.0049871886149048805, 0.04387675225734711, -0.01774553209543228, -0.08415938168764114,
- -0.07707516103982925, -0.06113061308860779, 0.007953567430377007, 0.0005772972945123911,
- -0.023754674941301346, 0.012103371322154999, 0.042386963963508606, 0.07025599479675293,
- -0.007377393543720245, 0.007611660286784172, 0.08312070369720459, -0.05641428008675575,
- 0.01838352531194687, 0.06950129568576813, -0.003912084735929966, 0.012700581923127174,
- -0.009048182517290115, -0.006478768773376942, -0.10968993604183197,
- -0.03401878848671913, -0.04762028902769089, 0.06900860369205475, -0.0570564866065979,
- -0.016345050185918808, -0.04560968652367592, -0.009327461943030357, 0.07529805600643158,
- -0.08855278789997101, -0.03854905068874359, -0.06229998916387558, 0.06885736435651779,
- -0.023041285574436188, -0.0027065295726060867, 0.00791168212890625,
- -0.05398429185152054, 0.04015336185693741, 0.0014174836687743664, 0.01845618523657322,
- 0.05914367735385895, 0.053485192358493805, -0.034118443727493286, 0.017786821350455284,
- 0.06153581291437149, -0.01990848034620285, -0.01217285543680191, 0.037917256355285645,
- 0.331650972366333, -0.057762280106544495, 0.08392027020454407, 0.09926994144916534,
- -0.0024340995587408543, 0.0382426455616951, -0.018736757338047028, 0.04301925003528595,
- 0.04382871091365814, 0.1050829142332077, 0.11548671126365662, -0.04022776335477829,
- -0.012697340920567513, -0.04858826473355293, 0.08043552935123444, 0.03741433843970299,
- 0.047999799251556396, -0.021800082176923752, -0.0582880973815918, -0.013072033412754536,
- -0.007111908867955208, -0.03838174790143967, 0.028365634381771088, -0.031414695084095,
- -0.06927043944597244, 0.022748317569494247, 0.01572367176413536, 0.059051960706710815,
- -0.008284717798233032, 0.028421537950634956, -0.005263892002403736, 0.01553618349134922,
- -0.013734908774495125, 0.04716156795620918, 0.0018485652981325984, 0.057456471025943756,
- -0.09982164204120636, -0.05991223454475403, 0.06840377300977707, 0.02407505363225937,
- 0.024157017469406128, 0.03596578538417816, -0.018386846408247948, 0.03846154361963272,
- -0.030613824725151062, -0.019034549593925476, -0.00896401610225439, 0.05098380893468857,
- 0.02504582330584526, 0.05222306400537491, 0.15162846446037292, -0.0009030411019921303,
- -0.013075044378638268, -0.06313572824001312, 0.03650719299912453, 0.0952041894197464,
- -0.013002723455429077, 0.032699860632419586, 0.0005935952067375183,
- 0.0019271057099103928, 0.020313384011387825, -0.044018544256687164, -0.091347835958004,
- 0.009145751595497131, -0.07362893968820572, 0.0794048011302948, 0.02841779962182045,
- -0.020977679640054703, -0.06541034579277039, -0.015440038405358791, -0.049338199198246,
- 0.03800750896334648, 0.061506371945142746, -0.04568595439195633, -0.02367563359439373,
- 0.010059963911771774, 0.03629109263420105, 0.0036630150862038136, -0.04737105220556259,
- 0.004629749804735184, -0.05608423054218292, 0.020307039842009544, 0.09600436687469482,
- 0.05462922155857086, -0.051167115569114685, -0.010623101145029068, -0.07173769176006317,
- -0.025145499035716057, 0.041784774512052536, -0.04506836086511612, 0.019370581954717636,
- -0.054468780755996704, 0.023380417376756668, -0.025685949251055717,
- -0.02925689145922661, -0.06186665967106819, -0.05232473462820053,
- -0.0064520519226789474, -0.08701685070991516, -0.06537732481956482,
- -0.04039153456687927, -0.06861182302236557, 0.07288653403520584, -0.08016716688871384,
- -0.03450007736682892, 0.012593266554176807, 0.003972794860601425, 0.0121042151004076,
- 0.057038016617298126, 0.0022030475083738565, -0.08844523131847382,
- -0.041851773858070374, -0.008000724017620087, 0.04087304696440697, -0.06369328498840332,
- -0.07469893991947174, 0.04125349223613739, 0.08795501291751862, -0.02136935666203499,
- -0.056582145392894745, 0.023405451327562332, -0.003716991748660803, 0.09619342535734177,
- -0.08096873015165329, -0.4093513488769531, 0.06252049654722214, 0.016705185174942017,
- 0.05321122705936432, 0.020798033103346825, -0.05441009998321533, 0.038572147488594055,
- -0.0019038044847548008, 0.0007764503825455904, 0.06790609657764435,
- -0.04326402395963669, 0.031136363744735718, -0.011698844842612743,
- -0.002228198107331991, 0.010275185108184814, -0.054437585175037384,
- -0.04502038285136223, 0.04197174310684204, -0.016194110736250877, -0.02188083529472351,
- -0.11945655196905136, -0.006246535107493401, -0.017299527302384377,
- 0.0035810722038149834, -0.0026494693011045456, -0.00985043030232191,
- -0.07114283740520477, -0.05112951993942261, 0.026480991393327713, 0.034920837730169296,
- -0.014040766283869743, -0.029836172237992287, 0.024363137781620026, 0.0252058245241642,
- -0.04034959897398949, 0.110982745885849, 0.028092188760638237, 0.03219082951545715,
- -0.0910550206899643, 0.07796964049339294, 0.07460464537143707, 0.1909676194190979,
- -0.04148752614855766, 0.04794751852750778, 0.004896198399364948, 0.07569686323404312,
- -0.005063132848590612, 0.06843673437833786, -0.02671872451901436, 0.015850329771637917,
- -0.016011346131563187, -0.0003894855035468936, 0.11150996387004852,
- -0.052002303302288055, -0.019845567643642426, -0.035779163241386414,
- -0.02046521008014679, -0.04020540043711662, -0.03254065290093422, 0.16978046298027039,
- 0.024126622825860977, -0.003606984158977866, 0.0349101647734642, -0.03467189893126488,
- -0.026204770430922508, -0.08558255434036255, -0.039903029799461365,
- -0.013811152428388596, -0.0006184729281812906, 0.040558263659477234,
- -0.03686106204986572, -0.0913783609867096, -0.03816189616918564, -0.06896218657493591,
- -0.024500276893377304, 0.10083247721195221, -0.0597204715013504, 0.013384580612182617,
- -0.02480825036764145, 0.10833577811717987, 0.0061408756300807, 0.010793289169669151,
- 0.018869122490286827, 0.08310183882713318, 0.005896011367440224, -0.03488291800022125,
- -0.0033192425034940243, -0.06341671943664551, -0.026251457631587982,
- 0.10804736614227295, 0.0073921638540923595, 0.1507571041584015, 0.04980042949318886,
- -0.012415950186550617, -0.03201352432370186, 0.00713768508285284, 0.0045478162355721,
- -0.001476813806220889, -0.4139927327632904, -0.03419365733861923, 0.11425169557332993,
- -0.056728094816207886, 0.02389843575656414, 0.06213502585887909, 0.03155349940061569,
- 0.005265862215310335, 0.008865416049957275, -0.034210484474897385, 0.09444519877433777,
- 0.023984961211681366, 0.08300980925559998, -0.12112855911254883, 0.019621528685092926,
- 0.07673366367816925, 0.01993212290108204, -0.0038350552786141634, 0.01151228416711092,
- -0.18852831423282623, -0.04186347872018814, -0.03629482537508011, 0.12101202458143234,
- 0.06745240092277527, 0.027699347585439682, 0.09252046048641205, -0.039545319974422455,
- 0.045296698808670044, 0.0030305134132504463, 0.05379249528050423, 0.04821125790476799,
- 0.005914260633289814, -0.02939562126994133, 0.10994294285774231, 0.03379727154970169,
- 0.07827088236808777, -0.007959084585309029, 11.724140167236328, 0.04017619043588638,
- 0.054156869649887085, -0.07520673424005508, 0.027067482471466064, -0.03892010077834129,
- 0.056820932775735855, -0.05023112893104553, 0.058244917541742325, 0.07726489007472992,
- -0.011212434619665146, -0.038682423532009125, -0.08297043293714523,
- -0.04508133605122566, 0.0024686201941221952, -0.038857609033584595, 0.00324070593342185,
- -0.026873953640460968, 0.04675143212080002, -0.0499800369143486, -0.0035055670887231827,
- -0.014031436294317245, 0.04470927268266678, 0.00044609111500903964,
- -0.12289658188819885, 0.06569696962833405, 0.024603936821222305, 0.012608709745109081,
- -0.011036972515285015, 0.028225723654031754, 0.030360162258148193, 0.03136955201625824,
- 0.07600898295640945, 0.029270436614751816, -0.02205803617835045, 0.05500393733382225,
- 0.0009502749890089035, 0.014573616907000542, 0.03702833876013756,
- 0.00017556303646415472, 0.03928694128990173, 0.05099555850028992, 0.01830482855439186,
- 0.06865641474723816, 0.06825641542673111, -0.008149545639753342, 0.013022233732044697,
- 0.11414153128862381, -0.0006431224755942822, 0.05705123394727707, 0.06370744854211807,
- 0.009401320479810238, 0.057951420545578, 0.06232495605945587, -0.01251263078302145,
- 0.015880024060606956, 0.019646883010864258, -0.06999281048774719, 0.05010619014501572,
- 0.008968588896095753, -0.03298477083444595, 0.11810234189033508, 0.03466327488422394,
- 0.12233096361160278, 0.014772243797779083, 0.043222576379776, 0.05761686712503433,
- 0.05210890620946884, -0.10810138285160065, -0.01467957440763712, 0.056722283363342285,
- -0.07641009986400604, -0.029763953760266304, 0.049700818955898285,
- 0.0068070958368480206, -0.020325589925050735, 0.09606540203094482,
- -0.020273182541131973, 0.055272601544857025, 0.029971517622470856, 0.03249466419219971,
- 0.024785611778497696, -0.05823037028312683, -0.030109770596027374, 0.033222198486328125,
- 0.024035148322582245, 0.10851912200450897, 0.08246701210737228, -0.04295329377055168,
- -0.07458091527223587, -0.062456414103507996, 0.09658537805080414, 0.0025536431930959225,
- -0.023966921493411064, 0.005100977141410112, -0.05382612347602844,
- -0.039048485457897186, -0.1220911294221878, 0.07592624425888062, 0.11466075479984283,
- -0.06692112982273102, -0.013433713465929031, -0.008931053802371025, 0.08528201282024384,
- 0.0021504696924239397, 0.010388024151325226, -0.06615529954433441, 0.04739036411046982,
- 0.001379125751554966, 0.050457753241062164, -0.0760590210556984, 0.0938582569360733,
- 0.009531382471323013, -0.05567809194326401, 0.028180845081806183, 0.08068617433309555,
- -0.04499459266662598, -0.029022343456745148, 0.06587237864732742, 0.01546201016753912,
- -0.08960988372564316, -0.03110337071120739, -0.06693752110004425, -0.01147328969091177,
- 0.008822381496429443, -0.04833777993917465, -0.0058904546312987804,
- 0.0009125480428338051, -0.07511869817972183, -0.038677021861076355,
- 0.013303866609930992, 0.0282929465174675, 0.10591037571430206, 0.026471905410289764,
- 0.02888551540672779, -0.021841861307621002, -0.045065686106681824, 0.07333839684724808,
- 0.023548398166894913, 0.07288926839828491, -0.047839172184467316, -0.007693468127399683,
- -0.01842549629509449, -0.09987220913171768, 0.008379564620554447, 0.07802262902259827,
- 0.04229520261287689, 0.042666517198085785, 0.014413789846003056, -0.007316025905311108,
- -0.018861182034015656, 0.09835774451494217, 0.06496535241603851, 0.07476639747619629,
- 0.04849020391702652, -0.03752067685127258, 0.0035195727832615376, 0.10818135738372803,
- -0.02408895641565323, -0.006469346582889557, 0.026441242545843124, -0.17040109634399414,
- 0.04494289308786392, 0.05334549769759178, 0.02907400205731392, 0.022419769316911697,
- 0.08187787234783173, -0.0016682648565620184, 0.02234918624162674, 0.04480748623609543,
- -0.018503323197364807, -0.024261832237243652, -0.0757257267832756, -0.08365286886692047,
- -0.001207423396408558, 0.06659834831953049, 0.0873163640499115, -0.14972254633903503,
- -0.011790210381150246, -0.027319831773638725
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 254,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Talia Soglin"],
- "epoch_date_downloaded": 1665273600,
- "epoch_date_modified": 1665273600,
- "epoch_date_submitted": 1663977600,
- "flag": null,
- "report_number": 2069,
- "source_domain": "chicagotribune.com",
- "submitters": ["Daniel Atherton (BNH.ai)"],
- "title": "Saturday is the last day for Illinois residents to claim a cut of $100 million Google Photos privacy settlement",
- "url": "https://www.chicagotribune.com/business/ct-biz-google-bipa-settlement-claim-deadline-20220923-engws4owujbnjc6ixwuflrh77a-story.html"
- },
- {
- "__typename": "Report",
- "authors": ["Emma Roth"],
- "epoch_date_downloaded": 1658880000,
- "epoch_date_modified": 1658880000,
- "epoch_date_submitted": 1654560000,
- "flag": null,
- "report_number": 1804,
- "source_domain": "theverge.com",
- "submitters": ["Daniel Atherton (BNH.ai)"],
- "title": "Google to pay $100 million to Illinois residents for Photos’ face grouping feature",
- "url": "https://www.theverge.com/2022/6/6/23156198/google-class-action-face-grouping-biometric-information-illinois-privacy-act"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "chicago-police-department",
- "name": "Chicago Police Department"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "shotspotter",
- "name": "ShotSpotter"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "michael-williams",
- "name": "Michael Williams"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1813, 1812, 1811, 1809, 1808, 1807, 1806, 1805, 1431],
- "vector": [
- -0.07217326015233994, 0.07054366916418076, -0.013706612400710583, -0.09371112287044525,
- 0.10290324687957764, 0.007538874167948961, -0.00201982818543911, 0.038741935044527054,
- 0.08010780811309814, -0.14939942955970764, 0.04245347902178764, 0.06717058271169662,
- 0.017430974170565605, -0.06011900678277016, 0.018562614917755127, -0.09450855851173401,
- -0.05490465462207794, -0.040324822068214417, -0.03556234389543533, -0.1032337173819542,
- -0.05393370985984802, -0.0034986399114131927, 0.04781082645058632, 0.11666185408830643,
- -0.03894732519984245, 0.05791617929935455, 0.10199230909347534, 0.1349204182624817,
- -0.046210553497076035, 0.01711367815732956, -0.026436982676386833, -0.04891766235232353,
- 0.11317849159240723, -0.03084203228354454, -0.0192406103014946, 0.1067172959446907,
- 0.03741036355495453, -0.04716561734676361, -0.0382830835878849, -0.02242835983633995,
- -0.00507079903036356, 0.2097923755645752, 0.022089412435889244, -0.03452898934483528,
- 0.07987090200185776, -0.03966715559363365, 0.001173870055936277, 0.07334142178297043,
- -0.014213775284588337, -0.03171228617429733, -0.006300389301031828,
- 0.029397709295153618, -0.02580323815345764, 0.026932256296277046, -0.09783284366130829,
- 0.08102681487798691, 0.01781214401125908, 0.026561500504612923, 0.04675108194351196,
- -0.07481699436903, -0.07251765578985214, -0.220722958445549, -0.05034363269805908,
- -0.08860169351100922, 0.0886850580573082, -0.06854084134101868, -0.042037416249513626,
- -0.019268089905381203, 0.0027660722844302654, 0.03781343623995781, 0.04600350931286812,
- -0.03175157308578491, -0.012526833452284336, -0.0038477256894111633,
- -0.013316404074430466, 0.001009186846204102, 0.03729380667209625, 0.2709121108055115,
- -0.11559518426656723, 0.025699127465486526, 0.09975680708885193, -0.10976217687129974,
- 0.4237020015716553, 0.027523212134838104, -0.03241608664393425, -0.052573312073946,
- 0.0968143567442894, 0.049426767975091934, 0.026183880865573883, 0.06338468939065933,
- -0.031042495742440224, 0.02725108154118061, -0.06945113092660904, 0.05301673710346222,
- 0.08493377268314362, 0.026692677289247513, -0.014216785319149494, 0.08271921426057816,
- -0.02547849342226982, -0.04330603778362274, 0.014554517343640327, -0.043318867683410645,
- 0.10573773086071014, 0.0904046818614006, -0.06341800093650818, 0.0023668704088777304,
- 0.08400192111730576, -0.07235604524612427, 0.06424185633659363, -0.0364534966647625,
- 0.018548911437392235, 0.0014041048707440495, 0.03923453390598297, -0.005308089312165976,
- 0.04443100094795227, -0.05280808359384537, 0.00675964867696166, 0.02476726844906807,
- 0.10179252177476883, -0.007907544262707233, -0.034378815442323685, 0.0644586831331253,
- 0.11389830708503723, -0.04457730054855347, -0.0418211929500103, -0.0174725279211998,
- -0.05701059848070145, -0.018082784488797188, -0.021207110956311226,
- 0.023636121302843094, -0.048275843262672424, -0.19188885390758514, 0.029130101203918457,
- 0.1023273766040802, 0.007570312358438969, -0.0356779582798481, 0.02449742890894413,
- -0.06900724023580551, 0.0386265367269516, -0.022348741069436073, -0.026150554418563843,
- 0.07079242169857025, 0.0793008878827095, 0.016975171864032745, 0.12053269892930984,
- 0.029717812314629555, -0.06401744484901428, -0.026640519499778748,
- -0.002161765471100807, -0.00024964247131720185, 0.08531031012535095,
- -0.14241032302379608, -0.053893476724624634, 0.057540442794561386,
- -0.005278826225548983, 0.6021954417228699, 0.09372435510158539, 0.15028147399425507,
- -0.020085474476218224, 0.019202062860131264, 0.15074142813682556, 0.00901972409337759,
- 0.06604928523302078, -0.0524720698595047, -0.04289684072136879, 0.019012998789548874,
- -0.059907469898462296, -0.016859203577041626, 0.033927664160728455,
- 0.041989609599113464, 0.12102243304252625, 0.008834067732095718, 0.10724262148141861,
- -0.014906764030456543, -0.06841841340065002, -0.017037205398082733, 0.03796840086579323,
- -0.006446835119277239, -0.10834581404924393, -0.023876408115029335, 0.06589636951684952,
- 0.07265112549066544, -0.05917965620756149, 0.008798185735940933, -0.03437822684645653,
- -0.020479300990700722, -0.023707520216703415, 0.00021951332746539265,
- -0.005597125273197889, 0.05341716110706329, 0.05819696933031082, 0.0768081545829773,
- 0.0032931093592196703, -0.14064878225326538, -0.0648280456662178, 0.10542937368154526,
- 0.010259212926030159, -0.04475703462958336, 0.09287181496620178, -0.07092244923114777,
- 0.02987734228372574, 0.020036298781633377, 0.1317482590675354, -0.11400491744279861,
- 0.04911867901682854, -0.010809406638145447, -0.015519016422331333, 0.0675278902053833,
- -0.007033460773527622, -0.05133657157421112, -0.062055349349975586, 0.05287247523665428,
- 0.018163485452532768, 0.0898260772228241, 0.03999556601047516, -0.06271585822105408,
- 0.02161983959376812, 0.033642906695604324, 0.006209197919815779, -0.040996309369802475,
- 0.0757012665271759, 0.07398981600999832, -0.02178899198770523, 0.014604389667510986,
- 0.056452613323926926, 0.036733660846948624, 0.039358630776405334, 0.02792542800307274,
- 0.03052104264497757, -0.01637345552444458, -0.044069793075323105, 0.023140937089920044,
- 0.01660034991800785, -0.004117065574973822, 0.09358323365449905, -0.07877834886312485,
- -0.01748116873204708, -0.040407754480838776, -0.02105279639363289,
- -0.028628448024392128, -0.029583951458334923, 0.046681758016347885, 0.08020220696926117,
- 0.0680340901017189, 0.0329928919672966, 0.043252356350421906, 0.03878772258758545,
- 0.04574264958500862, 0.06618696451187134, 0.08314703404903412, -0.010419400408864021,
- -0.01399909146130085, 0.018659772351384163, -0.012068841606378555, 0.08249753713607788,
- 0.046591419726610184, -0.07792011648416519, -0.02713637799024582, -0.011122303083539009,
- -0.057992611080408096, -0.06841573119163513, -0.059344761073589325,
- -0.027542823925614357, 0.0176547858864069, -0.05612052232027054, -0.07830202579498291,
- -0.055685222148895264, 0.04057466611266136, 0.08219205588102341, -0.01589066907763481,
- -0.021326497197151184, -0.10573417693376541, 0.010967333801090717,
- -0.009656798094511032, 0.04500776529312134, -0.012746528722345829, 0.028088556602597237,
- -0.0339592844247818, -0.08226978778839111, 0.0061626131646335125, -0.02675122395157814,
- -0.020357489585876465, -0.03866826370358467, -0.012356006540358067,
- -0.07175413519144058, -0.01691403053700924, 0.018779266625642776, -0.020197445526719093,
- 0.050014104694128036, 0.04206933081150055, 0.03436078131198883, -0.019452955573797226,
- -0.025307536125183105, 0.09162843227386475, -0.048576630651950836, 0.035178571939468384,
- 0.09309632331132889, -0.01586131565272808, 0.004784511402249336, -0.02830146811902523,
- -0.04642676189541817, -0.05875207483768463, -0.031787626445293427,
- -0.056560806930065155, 0.05119948461651802, -0.04913273826241493, -0.008642895147204399,
- -0.05121222510933876, 0.008769566193223, 0.05861653387546539, -0.0882079154253006,
- -0.04553721845149994, -0.07038342952728271, 0.08614010363817215, -0.0007765555055812001,
- -0.026806775480508804, -0.005598155315965414, -0.0656181275844574, 0.059312835335731506,
- -0.01781991869211197, 0.027993761003017426, 0.04323738068342209, 0.042674675583839417,
- -0.022360585629940033, 0.0006289403536356986, 0.058006152510643005,
- -0.041680458933115005, 0.006487345322966576, 0.05014257878065109, 0.40343084931373596,
- -0.19173111021518707, 0.12076424062252045, 0.08726816624403, 0.055995166301727295,
- 0.06492313742637634, -0.04296088218688965, 0.08005299419164658, 0.055372871458530426,
- 0.12773503363132477, 0.07965794205665588, -0.056032709777355194, -0.042648449540138245,
- -0.07330100983381271, 0.0812133401632309, 0.030840687453746796, 0.047979529947042465,
- -0.036104366183280945, -0.07928283512592316, -0.029406901448965073, 0.04994116351008415,
- -0.023269476369023323, 0.01131288893520832, 0.002815889660269022, -0.06907212734222412,
- 0.01663987897336483, 0.03122948668897152, 0.03368118405342102, -0.045538052916526794,
- 0.008685070089995861, 0.021558143198490143, 0.0834714025259018, -0.01204549428075552,
- 0.03568658605217934, -0.08982016146183014, 0.04204045981168747, -0.08692792057991028,
- -0.08577552437782288, 0.10495875775814056, -0.0015233817975968122, 0.04158049449324608,
- 0.08208376169204712, -0.01641586795449257, 0.03453254699707031, -0.05726892501115799,
- -0.05856568366289139, 0.011749055236577988, 0.03206472471356392, 0.05612756684422493,
- 0.04892819747328758, 0.15498274564743042, -0.03359673172235489, -0.047247253358364105,
- -0.049022965133190155, 0.07390877604484558, 0.12149307131767273, -0.04228055104613304,
- -0.001095371786504984, -0.013095266185700893, -0.02586877904832363,
- 0.022200770676136017, -0.06329408288002014, -0.058175742626190186, 0.029276324436068535,
- -0.03371665999293327, 0.060028381645679474, 0.010596651583909988, -0.014728579670190811,
- -0.12512092292308807, -0.019095411524176598, -0.06742902100086212, 0.008413591422140598,
- 0.09789519757032394, -0.039105091243982315, 0.024441609159111977, 0.01589149795472622,
- 0.05216996744275093, 0.005913253407925367, -0.07361524552106857, 0.011183326132595539,
- -0.024534661322832108, 0.009062791243195534, 0.09524095058441162, 0.05090780928730965,
- -0.037234049290418625, 0.0052473521791398525, -0.07824598997831345,
- 0.014030599035322666, 0.02757049724459648, -0.03242957964539528, 0.014534332789480686,
- -0.01548015233129263, 0.042617667466402054, 0.005802169907838106, -0.02035595290362835,
- -0.016795698553323746, -0.028046734631061554, -0.035509660840034485,
- -0.09697753936052322, -0.042791228741407394, -0.034017518162727356,
- -0.08844733238220215, 0.04555386304855347, -0.10781318694353104, -0.027657195925712585,
- -0.023753145709633827, -0.008928007446229458, 0.012833338230848312,
- 0.049042802304029465, 0.03870894014835358, -0.09089498966932297, -0.0004351097741164267,
- -0.04496075212955475, 0.05326886475086212, 0.01617387682199478, -0.0508272647857666,
- 0.03128853067755699, 0.09685936570167542, 0.03697377070784569, -0.04424229636788368,
- -0.014995534904301167, -0.029306896030902863, 0.05769937485456467, -0.07806303352117538,
- -0.4823504686355591, 0.08543340116739273, -0.010037900879979134, 0.0605347603559494,
- 0.02930370904505253, -0.06307591497898102, 0.040660977363586426, -0.015527446754276752,
- -0.02702312171459198, 0.06932507455348969, -0.05891266092658043, 0.02590235508978367,
- 0.012820207513868809, -0.057589344680309296, -0.009389556013047695,
- -0.07150021195411682, -0.05117739737033844, 0.044652607291936874, -0.010594706982374191,
- -0.08082950860261917, -0.11538682878017426, 0.0031277926173061132,
- -0.017192253842949867, -0.012779095210134983, -0.016321631148457527,
- -0.008163456805050373, -0.07099176943302155, -0.08286343514919281, 0.046525899320840836,
- 0.05921110883355141, 0.002916341880336404, -0.06754860281944275, -0.009932301007211208,
- 0.05325717106461525, -0.016979770734906197, 0.1160484254360199, 0.011135082691907883,
- 0.000372444890672341, -0.1006726324558258, 0.07895168662071228, 0.06632359325885773,
- 0.1858021318912506, -0.013545189052820206, 0.08757694810628891, -0.0035706725902855396,
- 0.1298580914735794, 0.010710162110626698, 0.030123909935355186, -0.06284942477941513,
- -0.015840580686926842, 0.02862643264234066, -0.007173217833042145, 0.05629425495862961,
- -0.07279476523399353, -0.023621274158358574, -0.04959280788898468,
- -0.007716706953942776, -0.021648628637194633, -0.021030746400356293,
- 0.16399146616458893, 0.015402348712086678, 0.017750686034560204, 0.00738238450139761,
- -0.060615912079811096, -0.0016038721660152078, -0.033599890768527985,
- -0.10222510248422623, 0.00205323682166636, -0.03853446617722511, 0.011136727407574654,
- -0.028033792972564697, -0.1061679944396019, -0.040472615510225296,
- -0.012036966159939766, -0.021216876804828644, 0.09320885688066483, -0.06926684081554413,
- 0.01929977908730507, -0.060523562133312225, 0.11974341422319412, 0.037358008325099945,
- -0.014063268899917603, 0.06061096489429474, 0.10704490542411804, 0.02708902396261692,
- -0.007780600804835558, -0.029350105673074722, -0.05781247094273567,
- -0.036868780851364136, 0.10592098534107208, -0.04693671688437462, 0.10489431768655777,
- 0.08530128002166748, -0.06097649782896042, -0.05863245204091072, 0.013474134728312492,
- 0.029248522594571114, 0.03026609867811203, -0.4895155727863312, -0.006985113024711609,
- 0.13015490770339966, -0.02577877603471279, 0.03654560074210167, 0.07476455718278885,
- 0.039933715015649796, -0.034419067203998566, -0.028688451275229454,
- -0.017365796491503716, 0.13362909853458405, 0.021421032026410103, 0.08287777751684189,
- -0.08559116721153259, 0.06353365629911423, 0.08639467507600784, -0.0001951700251083821,
- -0.01654631271958351, 0.03678497299551964, -0.25194627046585083, -0.020636554807424545,
- -0.04995506629347801, 0.1528971791267395, 0.05297817289829254, 0.015142508782446384,
- 0.07547789067029953, -0.04363923519849777, 0.014924110844731331, 0.056620582938194275,
- 0.010955463163554668, 0.046523645520210266, -0.013422156684100628, -0.03633075952529907,
- 0.08828669041395187, 0.08589472621679306, 0.09146326780319214, -0.004028571769595146,
- 12.004386901855469, 0.06441383808851242, 0.049751900136470795, -0.08107384294271469,
- 0.052889030426740646, -0.03716697916388512, 0.017092885449528694, -0.10400821268558502,
- 0.0722930058836937, 0.1095939576625824, -0.008670574054121971, -0.038887009024620056,
- -0.056146785616874695, -0.07427051663398743, -0.0016690311022102833,
- -0.05705035477876663, -0.027418218553066254, -0.019836440682411194, 0.07049497961997986,
- -0.051251403987407684, -0.01762400008738041, 0.024122996255755424, 0.05716906115412712,
- 0.03145952895283699, -0.09962943196296692, 0.015292192809283733, 0.03963064029812813,
- -0.005204721353948116, 0.02066592127084732, 0.03737573325634003, -0.021515514701604843,
- -0.0003846229810733348, 0.06670358777046204, -0.0036365489941090345,
- 0.029351744800806046, 0.06342438608407974, 0.002624733606353402, 0.06803254038095474,
- 0.026272356510162354, 0.08601836115121841, 0.02859037183225155, 0.06176332011818886,
- 0.00598040409386158, 0.028765887022018433, 0.06263440102338791, 0.04030699282884598,
- 0.036914926022291183, 0.11952587217092514, 0.007166469469666481, 0.0501965694129467,
- 0.09659350663423538, -0.018314914777874947, 0.09842266142368317, 0.018012309446930885,
- 0.011245748028159142, 0.020703114569187164, 0.009320851415395737, -0.043831951916217804,
- 0.058793459087610245, 0.022145645692944527, -0.019279370084404945, 0.10792015492916107,
- 0.017293335869908333, 0.08623486757278442, -0.013911132700741291, 0.07491350919008255,
- 0.09354006499052048, 0.09860258549451828, -0.10874702036380768, -0.0509255975484848,
- 0.04613436758518219, -0.11303293704986572, -0.04011721536517143, 0.07931849360466003,
- 0.07510519027709961, -0.02997375838458538, 0.09485997259616852, -0.054095711559057236,
- 0.048868704587221146, -0.04112328588962555, -0.0024669868871569633, 0.05993780866265297,
- -0.027544520795345306, -0.009201876819133759, 0.05182750150561333,
- -0.002048180438578129, 0.09572898596525192, 0.08062049746513367, -0.013303559273481369,
- -0.12992367148399353, -0.12163534760475159, 0.07030878961086273, -0.024226760491728783,
- -0.04349727928638458, 0.03438229486346245, -0.04783816635608673, 0.04391714558005333,
- -0.14227229356765747, 0.06811903417110443, 0.11874070763587952, -0.07000091671943665,
- -0.01011839509010315, -0.03740953654050827, 0.07582183927297592, -0.0025707059539854527,
- 0.04711697995662689, -0.07810109108686447, 0.010824947617948055, 0.04263724759221077,
- 0.060795169323682785, -0.03882541507482529, 0.07239297777414322, 0.05324466526508331,
- -0.08783949166536331, 0.05118022859096527, 0.058119501918554306, -0.025632601231336594,
- -0.027475500479340553, 0.05303637310862541, 0.04351409524679184, -0.10900482535362244,
- -0.0528348833322525, -0.03876250982284546, -0.02287767268717289, -0.017607690766453743,
- -0.06449432671070099, -0.011475201696157455, 0.022584212943911552, -0.09819412231445312,
- -0.009746715426445007, 0.024197055026888847, 0.02621726505458355, 0.05261265113949776,
- -0.012269245460629463, 0.05550610274076462, -0.050633784383535385, -0.05646117404103279,
- 0.06007947027683258, 0.054634399712085724, 0.09260506927967072, -0.006156106013804674,
- -0.0036087760236114264, -0.04284576699137688, -0.07946687936782837,
- -0.0022585876286029816, 0.12620782852172852, 0.031431958079338074, 0.03369231894612312,
- 0.042609743773937225, -0.059689171612262726, -0.04934766888618469, 0.10134712606668472,
- 0.034204818308353424, -0.0006132141570560634, 0.01106190774589777, -0.0835554301738739,
- -0.013575512915849686, 0.13679631054401398, -0.03554503619670868, 0.011308930814266205,
- 0.0006342389388009906, -0.02830437757074833, 0.04588727653026581, 0.08037598431110382,
- 0.028255244717001915, 0.02401338331401348, 0.053614240139722824, -0.014057530090212822,
- -0.008084162138402462, -0.018080638721585274, 0.026322318241000175,
- -0.031195495277643204, -0.0954127237200737, -0.06318401545286179, -0.011477948166429996,
- 0.07006081938743591, 0.027210602536797523, -0.11442771553993225, -0.008452158421278,
- -0.01822596788406372
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 255,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Tim Cushing"],
- "epoch_date_downloaded": 1659139200,
- "epoch_date_modified": 1659139200,
- "epoch_date_submitted": 1658707200,
- "flag": null,
- "report_number": 1813,
- "source_domain": "techdirt.com",
- "submitters": ["Daniel Atherton (BNH.ai)"],
- "title": "Judge Tosses Defamation Suit Brought By ShotSpotter Against Vice Media For Reporting On Its Shady Tactics",
- "url": "https://www.techdirt.com/2022/07/08/judge-tosses-defamation-suit-brought-by-shotspotter-against-vice-media-for-reporting-on-its-shady-tactics/"
- },
- {
- "__typename": "Report",
- "authors": ["Megan Hickey"],
- "epoch_date_downloaded": 1659139200,
- "epoch_date_modified": 1659139200,
- "epoch_date_submitted": 1658707200,
- "flag": null,
- "report_number": 1812,
- "source_domain": "cbsnews.com",
- "submitters": ["Daniel Atherton (BNH.ai)"],
- "title": "Chicago man says flaws with ShotSpotter technology had him framed for murder, files lawsuit",
- "url": "https://www.cbsnews.com/chicago/news/chicago-man-says-flaws-with-shotspotter-technology-had-him-framed-for-murder-files-lawsuit/"
- },
- {
- "__typename": "Report",
- "authors": ["Jon Seidel"],
- "epoch_date_downloaded": 1659139200,
- "epoch_date_modified": 1659139200,
- "epoch_date_submitted": 1658707200,
- "flag": null,
- "report_number": 1811,
- "source_domain": "chicago.suntimes.com",
- "submitters": ["Daniel Atherton (BNH.ai)"],
- "title": "New lawsuit aims to halt Chicago’s use of ShotSpotter",
- "url": "https://chicago.suntimes.com/news/2022/7/21/23273332/shotspotter-lawsuit-chicago-police-toledo-shooting-michael-williams-arrest-charges-dropped"
- },
- {
- "__typename": "Report",
- "authors": ["WBBM"],
- "epoch_date_downloaded": 1659139200,
- "epoch_date_modified": 1659139200,
- "epoch_date_submitted": 1658707200,
- "flag": null,
- "report_number": 1809,
- "source_domain": "wfmz.com",
- "submitters": ["Daniel Atherton (BNH.ai)"],
- "title": "Chicago man says flaws with ShotSpotter technology had him framed for murder",
- "url": "https://www.wfmz.com/news/cnn/regional/chicago-man-says-flaws-with-shotspotter-technology-had-him-framed-for-murder/video_b3b8f3ea-8380-5c08-8cba-b3d4c61e97ca.html"
- },
- {
- "__typename": "Report",
- "authors": ["Mariella Moon"],
- "epoch_date_downloaded": 1659139200,
- "epoch_date_modified": 1659139200,
- "epoch_date_submitted": 1658707200,
- "flag": null,
- "report_number": 1808,
- "source_domain": "engadget.com",
- "submitters": ["Daniel Atherton (BNH.ai)"],
- "title": "Lawsuit accuses Chicago authorities of misusing gunshot detection system in a murder case",
- "url": "https://www.engadget.com/lawsuit-chicago-shotspotter-murder-case-094903220.html"
- },
- {
- "__typename": "Report",
- "authors": ["Garance Burke", "Martha Mendoza", "Juliet Linderman", "Michael Tarm"],
- "epoch_date_downloaded": 1659139200,
- "epoch_date_modified": 1659139200,
- "epoch_date_submitted": 1658707200,
- "flag": null,
- "report_number": 1807,
- "source_domain": "apnews.com",
- "submitters": ["Daniel Atherton (BNH.ai)"],
- "title": "How AI-powered tech landed man in jail with scant evidence",
- "url": "https://apnews.com/article/artificial-intelligence-algorithm-technology-police-crime-7e3345485aa668c97606d4b54f9b6220"
- },
- {
- "__typename": "Report",
- "authors": ["Garance Burke", "Michael Tarm"],
- "epoch_date_downloaded": 1659139200,
- "epoch_date_modified": 1659139200,
- "epoch_date_submitted": 1658707200,
- "flag": null,
- "report_number": 1806,
- "source_domain": "apnews.com",
- "submitters": ["Daniel Atherton (BNH.ai)"],
- "title": "Lawsuit: Chicago police misused ShotSpotter in murder case",
- "url": "https://apnews.com/article/gun-violence-technology-crime-chicago-lawsuits-3e6145f63c96593866cf89ac01ce7498"
- },
- {
- "__typename": "Report",
- "authors": ["Insurance Journal"],
- "epoch_date_downloaded": 1658707200,
- "epoch_date_modified": 1659139200,
- "epoch_date_submitted": 1658707200,
- "flag": null,
- "report_number": 1805,
- "source_domain": "insurancejournal.com",
- "submitters": ["Daniel Atherton (BNH.ai)"],
- "title": "Lawsuit: Chicago Police Misused Gunshot Detection Technology in Murder Case",
- "url": "https://www.insurancejournal.com/news/midwest/2022/07/25/677119.htm"
- },
- {
- "__typename": "Report",
- "authors": ["Todd Feathers"],
- "epoch_date_downloaded": 1659139200,
- "epoch_date_modified": 1659139200,
- "epoch_date_submitted": 1629072000,
- "flag": null,
- "report_number": 1431,
- "source_domain": "vice.com",
- "submitters": ["Kate Perkins"],
- "title": "Police Are Telling ShotSpotter to Alter Evidence From Gunshot-Detecting AI",
- "url": "https://www.vice.com/en/article/qj8xbq/police-are-telling-shotspotter-to-alter-evidence-from-gunshot-detecting-ai"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "chicago-police-department",
- "name": "Chicago Police Department"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "shotspotter",
- "name": "ShotSpotter"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "chicago-drivers",
- "name": "Chicago drivers"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1814],
- "vector": [
- -0.05880063399672508, 0.08921796083450317, -0.02915997989475727, -0.0866510346531868,
- 0.05934687331318855, 0.016954166814684868, 0.03284289315342903, 0.07252071052789688,
- 0.06529849022626877, -0.1408299207687378, 0.05079014599323273, 0.06924480944871902,
- 0.010048577561974525, -0.030703997239470482, 0.022415075451135635, -0.1080993115901947,
- -0.08815952390432358, -0.054650504142045975, -0.06307093799114227, -0.11273828893899918,
- -0.052945103496313095, -0.041626472026109695, 0.03701062500476837, 0.12042638659477234,
- -0.023083578795194626, 0.10550706088542938, 0.10021911561489105, 0.1322895735502243,
- -0.04321752488613129, 0.060856495052576065, -0.02581808716058731, -0.05165276303887367,
- 0.13467161357402802, -0.01378668937832117, 0.02355128526687622, 0.18521472811698914,
- 0.01566457934677601, -0.0425376370549202, 0.041491053998470306, -0.02124217338860035,
- -0.060691721737384796, 0.29345041513442993, -0.01363818347454071, -0.026835091412067413,
- 0.015098707750439644, -0.0707845389842987, -0.01838110014796257, 0.035670094192028046,
- 0.002626512898132205, -0.02802550047636032, 0.014729244634509087, 0.056615423411130905,
- -0.011763261631131172, 0.08507367968559265, -0.13077783584594727, 0.1351725310087204,
- 0.01128714345395565, 0.04452693089842796, 0.056877873837947845, -0.10081642121076584,
- -0.17916671931743622, -0.2823341190814972, -0.027180032804608345, -0.07094158977270126,
- 0.11075647175312042, -0.10908756405115128, -0.03971213847398758, 0.002296268241479993,
- -0.04393268749117851, 0.05856984853744507, 0.07460271567106247, -0.01006705779582262,
- 0.008534622378647327, 0.049095556139945984, 0.002304305322468281, 0.010147412307560444,
- 0.024004178121685982, 0.1816638857126236, -0.11320142447948456, 0.02216365374624729,
- 0.08519892394542694, -0.09050317108631134, 0.5042403936386108, 0.0872582197189331,
- -0.04486941546201706, -0.11615697294473648, 0.09221909195184708, 0.08637069165706635,
- 0.00923066958785057, 0.026770474389195442, -0.07979340851306915, -0.006708389148116112,
- -0.06541136652231216, 0.03319495916366577, 0.16327758133411407, 0.06948566436767578,
- -0.00210783863440156, 0.15043425559997559, -0.0399450808763504, -0.019386347383260727,
- 0.013265893794596195, -0.04758410528302193, 0.024548351764678955, 0.024663060903549194,
- -0.09486288577318192, -0.01272690948098898, 0.11434683948755264, -0.07388712465763092,
- 0.06608651578426361, -0.04323875531554222, -0.028535306453704834, 0.036095522344112396,
- 0.03740913048386574, -0.035384781658649445, 0.08850269019603729, -0.10372823476791382,
- -0.01197137776762247, -0.0021948039066046476, 0.1280292421579361, -0.04154866933822632,
- -0.05993011221289635, 0.028111809864640236, 0.08906613290309906, -0.10553574562072754,
- -0.07355352491140366, -0.08531293272972107, -0.08466721326112747, -0.06871670484542847,
- -0.0035412281285971403, 0.028810154646635056, -0.08219568431377411, -0.2563838064670563,
- 0.04222455620765686, 0.15027226507663727, 0.0073378365486860275, -0.03937675803899765,
- -0.011273014359176159, -0.08620895445346832, 0.032771941274404526, 0.01770656183362007,
- 0.018428048118948936, 0.07565919309854507, 0.06906741857528687, -0.007800492458045483,
- 0.15594422817230225, 0.01336941123008728, -0.07671289145946503, -0.01518309861421585,
- 0.00412643002346158, 0.03515560179948807, 0.09390902519226074, -0.15846602618694305,
- -0.10622894018888474, 0.06608457863330841, -0.018259162083268166, 0.7276378273963928,
- 0.09643479436635971, 0.24071748554706573, -0.03251580893993378, -0.021570958197116852,
- 0.14883334934711456, 0.07049587368965149, 0.09729041159152985, -0.10946646332740784,
- -0.07780454307794571, 0.05857756733894348, -0.08167155086994171, -0.0442911721765995,
- 0.040850210934877396, 0.018796658143401146, 0.14725711941719055, -0.02210499718785286,
- 0.11286202818155289, -0.0033051278442144394, -0.04264628514647484, -0.00984552875161171,
- 0.05831078812479973, 0.028481019660830498, -0.13279008865356445, -0.0293966643512249,
- 0.014428247697651386, 0.11997311562299728, -0.10146352648735046, -0.01570970006287098,
- -0.04860861971974373, -0.022601664066314697, -0.03794672712683678,
- -0.042260218411684036, -0.057281192392110825, 0.048553869128227234, 0.05667581781744957,
- 0.1417696177959442, -0.00493365665897727, -0.21367624402046204, -0.09599461406469345,
- 0.0852520540356636, -0.0006272322498261929, -0.03838535398244858, 0.06440382450819016,
- -0.09913918375968933, 0.06541396677494049, 0.027752326801419258, 0.1790839284658432,
- -0.14655472338199615, 0.06758140027523041, -0.0007328169303946197, -0.0567210391163826,
- 0.003559849923476577, 0.039775196462869644, -0.109944649040699, -0.06256789714097977,
- 0.03233691677451134, 0.03652161359786987, 0.09902682900428772, 0.07312127947807312,
- -0.029850414022803307, 0.0642184168100357, 0.031194090843200684, 0.03352096676826477,
- -0.050606101751327515, 0.11514978855848312, 0.10264413058757782, -0.03189823776483536,
- -0.021988054737448692, 0.06523359566926956, 0.02344094216823578, 0.03436177596449852,
- 0.008412523195147514, 0.04987618699669838, 0.014659409411251545, -0.04304330796003342,
- 0.024152547121047974, 0.04627269133925438, 0.027345530688762665, 0.10508828610181808,
- -0.04506085813045502, -0.0887916311621666, -0.04210168495774269, -0.06776458024978638,
- -0.065837062895298, -0.006805204786360264, 0.10510958731174469, 0.05696805566549301,
- 0.08518415689468384, 0.003232487477362156, 0.01939057745039463, 0.09392636269330978,
- -0.03167803958058357, 0.1435612291097641, 0.05766837298870087, -0.029779430478811264,
- 0.018971171230077744, 0.034650158137083054, -0.016853775829076767, 0.037873830646276474,
- 0.017188869416713715, -0.10593953728675842, 0.017205003648996353, -0.019750984385609627,
- -0.10548977553844452, -0.13801182806491852, -0.09635008871555328, -0.05452165752649307,
- 0.004310920834541321, -0.06504154950380325, -0.11838935315608978, -0.09800025075674057,
- 0.02152702398598194, 0.13658788800239563, -0.024202542379498482, -0.039594877511262894,
- -0.09373395144939423, 0.03094460442662239, -0.0008210165542550385, 0.027126967906951904,
- -0.02390296943485737, -0.04241795092821121, -0.021735738962888718, -0.10481753200292587,
- -0.006239844020456076, -0.05853249877691269, -0.06284548342227936,
- -0.028926296159625053, -0.09073837101459503, -0.06524007767438889, -0.03567807748913765,
- 0.06837925314903259, -0.005729439202696085, 0.07303483039140701, 0.009334626607596874,
- 0.046541474759578705, -0.03310677036643028, -0.021380839869379997, 0.11298919469118118,
- -0.06329746544361115, 0.03068646602332592, 0.10808251053094864, 0.005085730459541082,
- 0.05158359184861183, -0.039091985672712326, -0.1331784427165985, -0.029529869556427002,
- -0.023519866168498993, -0.04918554052710533, 0.06644576042890549, -0.03410849720239639,
- 0.02881782129406929, -0.041929323226213455, 0.01799364760518074, 0.05571623146533966,
- -0.08122774213552475, -0.13054779171943665, -0.09751526266336441, 0.09542306512594223,
- -0.01090277824550867, -0.04340542107820511, 0.02632107213139534, -0.09320510178804398,
- 0.0629223883152008, -0.05646560713648796, 0.03166382759809494, 0.0608769990503788,
- -0.010015216656029224, -0.015429805032908916, 0.05073915049433708, 0.05717676505446434,
- -0.10025622695684433, 0.03361383080482483, 0.0801735445857048, 0.42755573987960815,
- -0.10636857897043228, 0.09295289218425751, 0.12522952258586884, -0.018770737573504448,
- 0.035709116607904434, -0.02988642267882824, 0.11031366139650345, 0.08513928949832916,
- 0.18948709964752197, 0.06918429583311081, -0.055771976709365845, -0.08080469816923141,
- -0.13523054122924805, 0.1105811819434166, 0.0345451720058918, 0.02286749891936779,
- -0.010902196168899536, -0.12730297446250916, -0.03100929968059063, 0.0841316357254982,
- -0.06442252546548843, 0.0005821936647407711, -0.015503999777138233,
- -0.08350709080696106, -0.008865629322826862, 0.042808450758457184, 0.03273531049489975,
- -0.047175295650959015, -0.017073625698685646, 0.026704035699367523, 0.08044737577438354,
- -0.050737086683511734, 0.014794566668570042, -0.09574183821678162, 0.029835786670446396,
- -0.14605024456977844, -0.10373949259519577, 0.055537499487400055, -0.059062566608190536,
- 0.08538955450057983, 0.09089049696922302, -0.014746556058526039, 0.06422388553619385,
- -0.08477474749088287, -0.09044118970632553, 0.05757835879921913, 0.04960368946194649,
- 0.04864596575498581, 0.0835568830370903, 0.15179894864559174, -0.05709058791399002,
- -0.07201901823282242, -0.015681199729442596, 0.04936017468571663, 0.07648460566997528,
- -0.025727128610014915, 0.0019994955509901047, -0.03912901505827904,
- -0.027294045314192772, 0.01853230968117714, -0.06856991350650787, -0.08332411199808121,
- 0.07870055735111237, -0.033412396907806396, -0.012693561613559723, 0.02667188085615635,
- 0.012182866223156452, -0.17246760427951813, -0.04553430527448654, -0.040035855025053024,
- 0.013499908149242401, 0.12922722101211548, -0.02722989208996296, 0.0020582969300448895,
- 0.04444792866706848, 0.018361935392022133, 0.02168370969593525, -0.09883251041173935,
- -0.00751451775431633, -0.0494120754301548, 0.03816617280244827, 0.05483855679631233,
- 0.09915637224912643, -0.007972433231770992, 0.07527299970388412, -0.08908392488956451,
- 0.04195283725857735, 0.04683572053909302, -0.022186024114489555, 0.02051401324570179,
- -0.05365842953324318, 0.01520545408129692, 0.006212502717971802, -0.029771994799375534,
- -0.012560524977743626, -0.07330233603715897, -0.08555112034082413, -0.08949751406908035,
- -0.02750176377594471, -0.03822587430477142, -0.12086811661720276, 0.0725921019911766,
- -0.11475257575511932, -0.03324601426720619, -0.03386303037405014, -0.019092533737421036,
- -0.01628297194838524, 0.01665898598730564, 0.08225280791521072, -0.17926116287708282,
- -0.019962357357144356, -0.04876897111535072, 0.07091360539197922, -0.00756879011169076,
- -0.009726996533572674, -0.010587888769805431, 0.1110871434211731, 0.03958141431212425,
- -0.0045772516168653965, -0.051508206874132156, -0.013140480034053326,
- 0.012888765893876553, -0.09108373522758484, -0.33678537607192993, 0.12262829393148422,
- -0.010134903714060783, 0.07230300456285477, -0.0014603269519284368,
- -0.07508765161037445, 0.037423599511384964, 0.01551315002143383, -0.055214885622262955,
- 0.13207831978797913, -0.06524042040109634, 0.04929737746715546, 0.029379339888691902,
- -0.11519001424312592, -0.07338527590036392, -0.11374150216579437, -0.07409726083278656,
- 0.024126240983605385, -0.026580367237329483, -0.0978444293141365, -0.15563659369945526,
- -0.005496099591255188, -0.062489382922649384, -0.024736011400818825,
- 0.012361764907836914, 0.034879159182310104, -0.08518435060977936, -0.07451149076223373,
- 0.023706302046775818, 0.02402762696146965, 0.008705650456249714, -0.102499820291996,
- -0.0009476492996327579, 0.11083104461431503, -0.008125076070427895, 0.15904797613620758,
- 0.04164382815361023, 0.04937735199928284, -0.13914671540260315, 0.07639266550540924,
- 0.0650293231010437, 0.17903806269168854, 0.012279320508241653, 0.009739610366523266,
- 0.05443354696035385, 0.17974887788295746, 0.04996332898736, 0.018415680155158043,
- -0.0848381295800209, -0.0022538534831255674, 0.021675849333405495, -0.01926959678530693,
- 0.08165077120065689, -0.056063663214445114, 0.0017674352275207639, -0.06111134961247444,
- 0.02368735522031784, -0.026631470769643784, -0.05360753461718559, 0.2138005644083023,
- 0.010116868652403355, 0.0694151371717453, 0.020035643130540848, -0.08677317947149277,
- -0.01944442093372345, -0.03404103219509125, -0.13321033120155334, -0.003937642555683851,
- -0.03887840732932091, 0.007838408462703228, -0.06313527375459671, -0.15222524106502533,
- -0.045766595751047134, -0.03936795890331268, -0.04957480728626251, 0.1470889300107956,
- -0.06852229684591293, 0.07944905012845993, -0.04002333804965019, 0.1384190022945404,
- 0.049486517906188965, -0.003107833443209529, 0.05379669740796089, 0.1345711499452591,
- 0.05377286672592163, 0.06060295179486275, -0.031367041170597076, -0.0892360731959343,
- -0.06938846409320831, 0.0870625376701355, -0.10661584138870239, 0.1198849007487297,
- 0.10581187158823013, -0.07276923954486847, -0.1013975664973259, 0.021383538842201233,
- -0.020847396925091743, -0.020510783419013023, -0.3894534409046173, 0.025193041190505028,
- 0.1469878852367401, -0.0187453031539917, 0.050021424889564514, 0.13648150861263275,
- 0.07030372321605682, -0.02329736389219761, -0.05601207911968231, -0.003067849902436137,
- 0.1987152248620987, 0.04123203828930855, 0.08312825858592987, -0.12068857252597809,
- 0.0726974606513977, 0.13099287450313568, 0.025775864720344543, -0.020746244117617607,
- 0.025248270481824875, -0.27468395233154297, 0.009505663067102432, -0.03545417636632919,
- 0.13719423115253448, 0.06765299290418625, 0.05039754882454872, 0.07861771434545517,
- -0.07960863411426544, 0.0026694959960877895, 0.054845135658979416,
- -0.007249325048178434, 0.07434975355863571, 0.01872282661497593, -0.03421393409371376,
- 0.09903652220964432, 0.0827062651515007, 0.09299307316541672, -0.013528981246054173,
- 12.35944938659668, 0.12673118710517883, 0.04888700693845749, -0.09725979715585709,
- 0.09298983961343765, -0.002216350520029664, 0.02258307673037052, -0.08360707759857178,
- 0.06888067722320557, 0.14644744992256165, -0.04611951857805252, -0.09011360257863998,
- -0.03408731147646904, -0.12334635108709335, 0.0029570588376373053, -0.07600321620702744,
- -0.017050841823220253, -0.06301946192979813, 0.060921814292669296, -0.04624468460679054,
- -0.03395970165729523, -0.018145740032196045, 0.07547730207443237, -0.011574510484933853,
- -0.11551546305418015, 0.0010547731071710587, 0.05062055215239525, -0.04832999408245087,
- 0.039532922208309174, 0.04743931069970131, -0.00674023013561964, -0.040020670741796494,
- 0.10032446682453156, 0.017645280808210373, 0.026063235476613045, 0.0853712186217308,
- -0.008798078633844852, 0.1022510975599289, 0.04643705114722252, 0.06106488034129143,
- 0.05290907993912697, 0.0951368659734726, -0.04515600576996803, 0.056899163872003555,
- 0.03758760914206505, 0.09911884367465973, 0.07215975224971771, 0.15956729650497437,
- 0.028722744435071945, 0.09749076515436172, 0.1444481760263443, 0.004644530359655619,
- 0.11893553286790848, 0.06259512156248093, 0.004482333082705736, 0.04935372620820999,
- 0.027467913925647736, -0.016825661063194275, 0.0850863829255104, 0.09042295068502426,
- -0.012524665333330631, 0.08023267984390259, -0.003402645466849208, 0.12810742855072021,
- 0.02970958687365055, 0.05913033336400986, 0.11307168006896973, 0.10117416083812714,
- -0.20357458293437958, -0.15852415561676025, 0.03236745670437813, -0.17751947045326233,
- -0.02304329350590706, 0.14622554183006287, 0.13666179776191711, -0.03744601830840111,
- 0.07538080960512161, -0.07770420610904694, -0.004184459336102009, -0.09349750727415085,
- -0.02411094680428505, 0.12346406280994415, 0.05958837270736694, -0.02107226848602295,
- 0.018628336489200592, -0.02024412527680397, 0.09463684260845184, 0.1372935175895691,
- -0.029213419184088707, -0.1616080403327942, -0.07047869265079498, 0.08383114635944366,
- -0.007177514955401421, -0.07630003988742828, 0.07834770530462265, -0.03228512406349182,
- 0.07563873380422592, -0.1369793713092804, 0.019913729280233383, 0.09577210992574692,
- -0.04259219020605087, 0.006845721509307623, -0.055688198655843735, 0.06053820624947548,
- 0.01130257360637188, 0.06242656707763672, -0.12342142313718796, 0.021156245842576027,
- 0.06476430594921112, 0.06354060769081116, -0.0010362116154283285, 0.12723839282989502,
- 0.05931111425161362, -0.10911563783884048, 0.07142888754606247, 0.0723213329911232,
- -0.020646456629037857, -0.06521613150835037, 0.047942742705345154, 0.07638955116271973,
- -0.1133805364370346, -0.0733075812458992, -0.026244932785630226, -0.033377837389707565,
- 0.021890172734856606, -0.059415802359580994, -0.02627316676080227, 0.07207753509283066,
- -0.12490953505039215, -0.02890358678996563, 0.04887843132019043, -0.0179828479886055,
- 0.07615560293197632, -0.019960861653089523, 0.07805489748716354, -0.11251369118690491,
- -0.10431821644306183, 0.047216322273015976, 0.0532408207654953, 0.05306905880570412,
- 0.010331743396818638, -0.003921301569789648, -0.07932539284229279, -0.08369819819927216,
- 0.07964663952589035, 0.21863426268100739, 0.0384451225399971, -0.0009425285388715565,
- 0.022979822009801865, -0.049169305711984634, -0.09807001799345016, 0.1013234332203865,
- 0.07938162982463837, -0.03376861661672592, 0.03947928175330162, -0.09122510999441147,
- -0.03741417080163956, 0.19008736312389374, -0.05380050465464592, 0.07762571424245834,
- 0.010669205337762833, 0.004941622726619244, 0.06627357006072998, 0.17752766609191895,
- 0.03240899741649628, 0.07643046975135803, 0.10435068607330322, -0.026760954409837723,
- 0.019694099202752113, -0.05229805409908295, 0.021926289424300194, -0.05923554673790932,
- -0.11675842851400375, -0.06704122573137283, 0.04556376487016678, 0.12239225953817368,
- 0.0010301147121936083, -0.12406440824270248, -0.016947442665696144, -0.03502930328249931
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 256,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Matt Chapman", "Jim Daley"],
- "epoch_date_downloaded": 1659139200,
- "epoch_date_modified": 1659139200,
- "epoch_date_submitted": 1658793600,
- "flag": null,
- "report_number": 1814,
- "source_domain": "chicagoreader.com",
- "submitters": ["Daniel Atherton (BNH.ai)"],
- "title": "ShotSpotter held in contempt of court",
- "url": "https://chicagoreader.com/news-politics/shotspotter-held-in-contempt-of-court/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "kansas-city-police-department",
- "name": "Kansas City Police Department"
- },
- {
- "__typename": "Entity",
- "entity_id": "cleveland-division-of-police",
- "name": "Cleveland Division of Police"
- },
- {
- "__typename": "Entity",
- "entity_id": "chicago-police-department",
- "name": "Chicago Police Department"
- },
- {
- "__typename": "Entity",
- "entity_id": "atlanta-police-department",
- "name": "Atlanta Police Department"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "shotspotter",
- "name": "ShotSpotter"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "neighborhoods-of-color",
- "name": "neighborhoods of color"
- },
- {
- "__typename": "Entity",
- "entity_id": "brown-communities",
- "name": "Brown communities"
- },
- {
- "__typename": "Entity",
- "entity_id": "black-communities",
- "name": "Black communities"
- },
- {
- "__typename": "Entity",
- "entity_id": "adam-toledo",
- "name": "Adam Toledo"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [2250, 1821, 1815, 1435],
- "vector": [
- -0.07837708666920662, 0.07882494851946831, 0.005783740663900971, -0.1047186404466629,
- 0.07133147213608027, -0.018254254013299942, 0.020822778344154358, 0.04269537329673767,
- 0.06767986714839935, -0.15863106027245522, 0.036975078750401735, 0.06225947104394436,
- 0.0010016348242061213, -0.0854452233761549, 0.015347294975072145, -0.1430907417088747,
- -0.08687810320407152, -0.07924795243889093, -0.04062459687702358, -0.12550847232341766,
- -0.07278811000287533, -0.030224344227463007, 0.017993785440921783, 0.09914536960422993,
- -0.01736912759952247, 0.0578125836327672, 0.10634486563503742, 0.1401654351502657,
- -0.09618167765438557, 0.0351308032986708, -0.009951476356945932, -0.06759662088006735,
- 0.16088560596108437, 0.009744083741679788, -0.004990250046830624, 0.1266371924430132,
- 0.034936459735035896, -0.055763548240065575, -0.014847105252556503,
- -0.010116328397998586, 0.04849998839199543, 0.2886720076203346, -0.02745224512182176,
- -0.011067921645008028, 0.07135743834078312, -0.07013817597180605, -0.010443394421599805,
- 0.09155866038054228, -0.002337940444704145, 0.008029098040424287, -0.00997700028528925,
- 0.02185156207997352, -0.03662673651706427, 0.02165815490297973, -0.09849387407302856,
- 0.09510161727666855, 0.02560574293602258, 0.013722143485210836, 0.04392978781834245,
- -0.06923097930848598, -0.09734864067286253, -0.23187198862433434, -0.022823579056421295,
- -0.13406657986342907, 0.09445527009665966, -0.09422566555440426, -0.06449816562235355,
- 0.028546650748467073, -0.001449513714760542, 0.03747865138575435, 0.07231094315648079,
- -0.03129975264891982, -0.03380456170998514, 0.005980287154670805,
- -0.0023847523261792958, 0.001639092224650085, 0.00039359765651170164,
- 0.16424911469221115, -0.0955300685018301, 0.03869711025618017, 0.08302380330860615,
- -0.06441615615040064, 0.43210508674383163, 0.024191072210669518, -0.004151304834522307,
- -0.017071012407541275, 0.07346806768327951, 0.0299725120421499, 0.034746643621474504,
- 0.04867079760879278, -0.014633808445069008, 0.04670717287808657, -0.059013599529862404,
- 0.0043058309238404036, 0.09114295430481434, 0.015499919652938843, 0.012269324564840645,
- 0.0319041577167809, -0.013130286009982228, -0.03880909085273743, -0.01458999514579773,
- -0.02971765899565071, 0.09534624218940735, 0.09122978523373604, -0.04999333806335926,
- 0.01941364870435791, 0.12821048870682716, -0.05370203172788024, 0.06860003899782896,
- -0.056218426674604416, 0.029240641742944717, 0.009978902526199818, 0.05667186575010419,
- -0.0020932480692863464, 0.03367639915086329, -0.028759300883393735,
- -0.013154349057003856, 0.015092284418642521, 0.1019778624176979, -0.008602886460721493,
- 0.0028494400903582573, 0.05064169690012932, 0.09987820312380791, -0.08492656610906124,
- -0.040182027471018955, -0.029872347367927432, -0.08372603543102741,
- -0.02696080389432609, -0.011061149882152677, 0.01115937068243511, -0.05102561879903078,
- -0.24032354354858398, 0.004536594031378627, 0.052480203565210104, -0.024348831153474748,
- -0.024411405436694622, -0.0016987298149615526, -0.07571901474148035,
- 0.026246391818858683, -0.027364007430151105, 0.00510058447252959, 0.10365571454167366,
- 0.026668877224437892, 0.008216260990593582, 0.11963737569749355, 0.020288268802687526,
- -0.08458098582923412, -0.021464109828229994, -0.029491948895156384,
- -0.010972313350066543, 0.0982417594641447, -0.160459715873003, -0.05607289634644985,
- 0.03564236545935273, 0.0011473059421405196, 0.6752240210771561, 0.14086811617016792,
- 0.19215499982237816, -0.003611721331253648, -0.012373588979244232, 0.1625957377254963,
- 0.03098653652705252, 0.061111546121537685, -0.0691881962120533, -0.06309775356203318,
- -0.01178715005517006, -0.07129908818751574, -0.0316546990070492, 0.0265319615136832,
- 0.038013752084225416, 0.10018308460712433, 0.01188430842012167, 0.10076101496815681,
- -0.021309440722689033, -0.09557402599602938, -0.01012272242223844, 0.07540275063365698,
- -0.0025024128844961524, -0.14392343536019325, -0.011336255120113492,
- 0.07023746985942125, 0.08366576954722404, -0.08905946835875511, 0.008871933270711452,
- -0.06285147834569216, 0.03347973804920912, -0.03712358232587576, 0.018222327576950192,
- -0.018334578373469412, 0.05976691748946905, 0.06440922152251005, 0.08114554174244404,
- 0.01994584093336016, -0.13576644845306873, -0.06587689276784658, 0.10819690860807896,
- 0.0028052598136127926, -0.051189472898840904, 0.10479768738150597, -0.08224469237029552,
- 0.07439836487174034, 0.01881779497489333, 0.19252460822463036, -0.1293918527662754,
- 0.04402265208773315, 0.0006265229312703013, -0.032946230727247894, 0.04921388439834118,
- -0.004619235638529062, -0.01761355111375451, -0.0410726866684854, 0.0800248896703124,
- 0.05519362539052963, 0.1094882320612669, 0.028700246883090585, -0.0698524508625269,
- 0.03713829116895795, -0.0030655711889266968, 0.00256983534200117, -0.06164874602109194,
- 0.057689045555889606, 0.06267373077571392, -0.023440192453563213, -0.05151002574712038,
- 0.03489475417882204, 0.058501544408500195, 0.07578661944717169, 0.029101393651217222,
- 0.02383466239552945, -0.015002492524217814, -0.062056977301836014, 0.010920160741079599,
- 0.05396494548767805, 0.05066013569012284, 0.12744982168078423, -0.049645051127299666,
- -0.024446262512356043, -0.02135791163891554, -0.00845383619889617,
- -0.010919121057668235, -0.007381308299954981, 0.07785106264054775, 0.08289963658899069,
- 0.09191111661493778, 0.024383327923715115, 0.01920106343459338, 0.05983543489128351,
- 0.031740978884045035, 0.07303997315466404, 0.0873031485825777, -0.03044779971241951,
- -0.05699513806030154, 0.01610246583004482, -0.018294194946065545, 0.05507946200668812,
- 0.04148229444399476, -0.07348980102688074, -0.025375960278324783, -0.07010418549180031,
- -0.019758957787416875, -0.1027010940015316, -0.06709334999322891, -0.06022718735039234,
- 0.03841223195195198, -0.0751377996057272, -0.06844723876565695, -0.07253970950841904,
- 0.009629125474020839, 0.10148444026708603, -0.007682254537940025, -0.005172194767510518,
- -0.12327365390956402, 0.03910436853766441, -0.029298161156475544, 0.05389139801263809,
- -0.00878146820468828, 0.05348879378288984, -0.006464355887146667, -0.06266213022172451,
- 0.041456902923528105, -0.048032467253506184, -0.04721007449552417,
- -0.051615461241453886, -0.010668565519154072, -0.06467017158865929,
- 0.010261886054649949, 0.019750330364331603, -0.03664864972233772, 0.04463713616132736,
- 0.03577146562747657, 0.039015009766444564, -0.032499515917152166, 0.006714280811138451,
- 0.10509572736918926, -0.034008076414465904, 0.024767831899225712, 0.1147246565669775,
- -0.012777451571309939, 0.0372643917798996, -0.055849505588412285, -0.0652360301464796,
- -0.06260144244879484, -0.028441432979889214, -0.05543991830199957, 0.02993434015661478,
- -0.026446775533258915, -0.028070062049664557, -0.04196574119850993,
- 0.003992925980128348, 0.05997956311330199, -0.07749340869486332, -0.05666566826403141,
- -0.0889672338962555, 0.11982722394168377, -0.023051576630678028, -0.0032694584224373102,
- 0.0070106012863107026, -0.1066945269703865, 0.055903407745063305, -0.008488579333061352,
- 0.013271774048916996, 0.03899740823544562, 0.037900293711572886, -0.049077802803367376,
- 0.029235403148049954, 0.060004258528351784, -0.05477362871170044, 0.0002614508971419127,
- 0.08130890317261219, 0.4373715743422508, -0.10050423350185156, 0.061801400035619736,
- 0.08671651408076286, 0.05595872271806002, 0.04554962087422609, -0.056121492292732,
- 0.05777362920343876, 0.07072473224252462, 0.14264029264450073, 0.07667908258736134,
- -0.06649727188050747, -0.018816670519299805, -0.0948946475982666, 0.09217056632041931,
- 0.025501598371192813, 0.010863861883990467, -0.04359914525412023, -0.1103900894522667,
- 0.014979095896705985, 0.0553638250567019, -0.03073701378889382, 0.0013470128760673106,
- 0.010643855901435018, -0.1008029580116272, 0.026804288616403937, 0.009282592101953924,
- 0.023959502927027643, -0.05625329725444317, 0.05120641924440861, -0.004991329333279282,
- 0.04057866847142577, 0.0069449786096811295, 0.02827040245756507, -0.13657631911337376,
- 0.02573756268247962, -0.0805878802202642, -0.1260666437447071, 0.11133161373436451,
- -0.04337007366120815, 0.049913472728803754, 0.10075590759515762, -0.03834905056282878,
- 0.0659217368811369, -0.0491022439673543, -0.05101496074348688, 0.021416254341602325,
- 0.001193238829728216, 0.035890130791813135, 0.07472952082753181, 0.16343210637569427,
- -0.041705828392878175, -0.05789541522972286, -0.07963635586202145, 0.08537348359823227,
- 0.1116758044809103, -0.047776575898751616, -0.02116813830798492, -0.008311732672154903,
- -0.031695176381617785, 0.025247239929740317, -0.033508036052808166,
- -0.06790081597864628, 0.04409929784014821, -0.04587948857806623, 0.08230044599622488,
- 0.027707890141755342, -0.04417503206059337, -0.16617605462670326, -0.054509567795321345,
- -0.038609889801591635, 0.0041803717613220215, 0.13071702606976032, -0.02768532931804657,
- 0.04024830972775817, 0.013825447706039995, 0.05996525101363659, 0.0010600144742056727,
- -0.04042556416243315, 0.007483183406293392, -0.06437056232243776, 0.016148786788107827,
- 0.07953053060919046, 0.051973541267216206, -0.07351968996226788, 0.05698333866894245,
- -0.08780723065137863, 0.01585046376567334, 0.021808139514178038, -0.019770409388002008,
- 0.011426375596784055, -0.024680599570274353, 0.03498762147501111, -0.004667629022151232,
- -0.03454405860975385, -0.02164038410410285, -0.038577850908041, -0.05693553946912289,
- -0.05435674171894789, -0.0748418616130948, -0.037422378081828356, -0.08614255115389824,
- 0.03483182890340686, -0.1072701457887888, 0.014148805756121874, -0.03573128581047058,
- -0.018685957766138017, -0.0045226299844216555, 0.048903211019933224,
- 0.032245978713035583, -0.11371470801532269, 0.021830617100931704, -0.020530185371171683,
- 0.043801074381917715, 0.03963949391618371, -0.07459094002842903, 0.018727079033851624,
- 0.09903990291059017, 0.015416584559716284, -0.045443505921866745, 0.006760149262845516,
- -0.02239532978273928, 0.04587028594687581, -0.11442101001739502, -0.3858453035354614,
- 0.06926440354436636, -0.00580414361320436, 0.0855251532047987, 0.022895880043506622,
- -0.07170193362981081, 0.030906162748578936, -0.01400795225345064, -0.025732012174557894,
- 0.07200377341359854, -0.04467478021979332, 0.04622120130807161, -0.005765525624155998,
- -0.07323575392365456, -0.027596323285251856, -0.11230769753456116,
- -0.037920309230685234, 0.0028417890425771475, -0.006543344308738597,
- -0.12673973105847836, -0.12410798110067844, 0.05241787014529109, -0.010827931226231158,
- -0.003975139930844307, -0.03343095607124269, 0.03573262575082481, -0.07832662528380752,
- -0.05905990954488516, 0.0025116767501458526, 0.06926056370139122, 0.019246230309363455,
- -0.08396644704043865, -0.010382868349552155, 0.05574744939804077, -0.02366345375776291,
- 0.11023257486522198, 0.007822084036888555, 0.04895433411002159, -0.09755744226276875,
- 0.08285545464605093, 0.06318901106715202, 0.18417594209313393, -0.011139811482280493,
- 0.04129997827112675, 0.05015128944069147, 0.12710877507925034, 0.03284939145669341,
- 0.026420323876664042, -0.028279133141040802, -0.03959742235019803,
- -0.007758965031825937, -0.014804469887167215, 0.07051942590624094, -0.07910013571381569,
- -0.021604314330033958, -0.0630032205954194, -0.0268482503015548, -0.001834189286455512,
- -0.03456704691052437, 0.16657371073961258, 0.031640501227229834, 0.013842193002346903,
- 0.045204509515315294, -0.0659010885283351, 0.053962628822773695, -0.05968806333839893,
- -0.11615553125739098, 0.0075931643368676305, -0.019689789973199368,
- 0.043556710705161095, -0.016574563283938915, -0.12131467647850513,
- -0.015068969805724919, -0.015758743189508095, -0.015339285368099809,
- 0.10908688604831696, -0.10451643355190754, -0.006387179717421532, -0.03146537998691201,
- 0.1556931920349598, 0.05053912475705147, -0.011220153071917593, 0.04668055847287178,
- 0.09604483842849731, -0.011999792885035276, -0.013454436673782766, -0.02931871311739087,
- -0.06604130286723375, -0.054754575714468956, 0.09639991819858551, -0.06308361422270536,
- 0.1256471909582615, 0.03901378810405731, -0.06606171745806932, -0.07642687391489744,
- 0.04691141191869974, 0.000775172644353006, 0.0008315820596180856, -0.38032644987106323,
- -0.02743985684355721, 0.09869418479502201, 0.0036251521669328213, 0.044711485505104065,
- 0.06010587140917778, 0.03168172051664442, -0.03443327057175338, -0.058622839860618114,
- -0.11480796709656715, 0.17296303436160088, 0.015388241619803011, 0.04533790610730648,
- -0.0632015923038125, 0.0747993839904666, 0.12030384130775928, 0.011313644819892943,
- 0.002986487408634275, 0.056791000068187714, -0.17442920058965683,
- -0.0009998325258493423, -0.0370586384087801, 0.11987805366516113, 0.01216419436968863,
- 0.013082889840006828, 0.06920481193810701, -0.062153986655175686, -0.013194786151871085,
- 0.05147714260965586, 0.00501560908742249, 0.04701826721429825, -0.00640687916893512,
- -0.05873190285637975, 0.1128157377243042, 0.10351027920842171, 0.03077737335115671,
- -0.01745230914093554, 12.086842775344849, 0.09212181903421879, 0.0767770241945982,
- -0.1148522924631834, 0.01811413636096404, -0.011359619093127549, 0.004538362263701856,
- -0.10302152391523123, 0.09567136690020561, 0.12150018662214279, -0.013979244977235794,
- -0.052526445128023624, -0.03953212220221758, -0.09445589687675238, 0.014341090660309419,
- -0.061785549856722355, -0.04765217402018607, -0.05638703890144825, 0.04357039509341121,
- -0.061900182627141476, -0.05154367629438639, 0.039181633153930306, 0.08353434130549431,
- 0.025761359502212144, -0.09267048723995686, 0.008571738027967513, 0.027572089107707143,
- -0.03560229064896703, -0.007244784734211862, 0.008954943506978452, 0.007028675638139248,
- -0.016588796861469746, 0.06665194779634476, -0.006254947744309902, 0.03943383367732167,
- 0.061467225663363934, 0.03836694872006774, 0.06947020255029202, 0.032828487164806575,
- 0.0682681379839778, 0.002454354311339557, 0.07451008725911379, -0.00046888942597433925,
- 0.035177557321731, 0.07072315085679293, 0.061000349931418896, 0.04852196481078863,
- 0.15020011737942696, 0.01657626498490572, 0.07166610192507505, 0.14375969395041466,
- -0.017114452784880996, 0.10102233290672302, 0.04992229212075472, 0.02157709957100451,
- 0.05124664679169655, -0.0015319234225898981, -0.04730696976184845, 0.04504815861582756,
- 0.055500117130577564, -0.03540149284526706, 0.14050858095288277, 0.023435701383277774,
- 0.12360267899930477, 0.03128877165727317, 0.0356356049887836, 0.1036102157086134,
- 0.10706661641597748, -0.1530168056488037, -0.04369957419112325, 0.031093267258256674,
- -0.1274626888334751, -0.039407037547789514, 0.08838052861392498, 0.043594151735305786,
- -0.0026208077324554324, 0.06647301651537418, -0.02549756714142859, 0.04201191430911422,
- -0.03427410818403587, -0.010581230977550149, 0.06329118832945824, -0.016305364668369293,
- 0.003181678941473365, 0.06225882889702916, -0.0005788807757198811, 0.1036485955119133,
- 0.14001901261508465, -0.011885729269124568, -0.14414913952350616, -0.08592763356864452,
- 0.0938391350209713, -0.04108714242465794, -0.051944938488304615, 0.00031239574309438467,
- -0.04032505350187421, 0.08075331896543503, -0.1354609876871109, 0.09081518370658159,
- 0.13307166658341885, -0.06297257449477911, -0.03985957149416208, -0.04871448967605829,
- 0.09532679058611393, 0.014751599461305887, 0.05863153841346502, -0.06702934484928846,
- -0.015293929493054748, 0.011152206046972424, 0.07411236315965652, -0.035800331737846136,
- 0.09523825533688068, 0.061411467380821705, -0.07858107890933752, 0.009665767967817374,
- 0.07649073749780655, -0.04428531415760517, -0.04810151504352689, 0.045162785798311234,
- 0.05692053493112326, -0.09724532440304756, -0.051984312012791634, -0.018451020354405046,
- -0.06271203141659498, -0.03608912415802479, -0.03836283599957824, -0.008255803491920233,
- 0.024123751962179085, -0.11180002428591251, -0.014771312940865755, 0.05291945766657591,
- 0.04575196607038379, 0.0999381635338068, -0.03493963414803147, 0.06851312518119812,
- -0.06271215062588453, -0.048388369381427765, 0.05266397539526224, 0.05713358521461487,
- 0.059454893693327904, -0.011832513264380395, -0.01079366891644895, -0.06899749115109444,
- -0.0660711545497179, 0.0014726589433848858, 0.12042315304279327, 0.023246039869263768,
- 0.08258502185344696, 0.04671385791152716, -0.06135634705424309, -0.014568067039363086,
- 0.10549585893750191, 0.03563106514047831, 0.0035779038444161415, 0.017265127498831134,
- -0.0750507665798068, -0.05844539124518633, 0.10912228934466839, -0.039313522167503834,
- 0.007232740857944009, 0.0161251943645766, -0.06471418077126145, 0.06580242328345776,
- 0.140121066942811, 0.06693434063345194, 0.04643713030964136, 0.0480322539806366,
- 0.005063827382400632, 0.025084495544433594, -0.02580757869873196, 0.01182535383850336,
- -0.053906054235994816, -0.07893674820661545, -0.06101749185472727, 0.014464837790001184,
- 0.08679227903485298, 0.012646397022763267, -0.12040685676038265, -0.006489464081823826,
- -0.06099520204588771
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 257,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Anne Hayes"],
- "epoch_date_downloaded": 1668211200,
- "epoch_date_modified": 1673740800,
- "epoch_date_submitted": 1668211200,
- "flag": null,
- "report_number": 2250,
- "source_domain": "govtech.com",
- "submitters": ["Anonymous"],
- "title": "Report Evaluates Efficiency of Gunshot Detection Technology",
- "url": "https://www.govtech.com/public-safety/report-evaluates-efficiency-of-gunshot-detection-technology"
- },
- {
- "__typename": "Report",
- "authors": ["Anne Hayes"],
- "epoch_date_downloaded": 1659225600,
- "epoch_date_modified": 1673740800,
- "epoch_date_submitted": 1658707200,
- "flag": null,
- "report_number": 1821,
- "source_domain": "syracuse.com",
- "submitters": ["Daniel Atherton (BNH.ai)"],
- "title": "Report: ShotSpotter wastes officers time, provides little help in court, targets overpoliced communities",
- "url": "https://www.syracuse.com/crime/2022/07/report-shotspotter-wastes-officers-time-provides-little-help-in-court-targets-overpoliced-communities.html"
- },
- {
- "__typename": "Report",
- "authors": ["Todd Feathers"],
- "epoch_date_downloaded": 1659225600,
- "epoch_date_modified": 1659225600,
- "epoch_date_submitted": 1629158400,
- "flag": null,
- "report_number": 1815,
- "source_domain": "vice.com",
- "submitters": ["Kate Perkins"],
- "title": "Gunshot-Detecting Tech Is Summoning Armed Police to Black Neighborhoods",
- "url": "https://www.vice.com/en/article/88nd3z/gunshot-detecting-tech-is-summoning-armed-police-to-black-neighborhoods"
- },
- {
- "__typename": "Report",
- "authors": ["MacArthur Justice Center"],
- "epoch_date_downloaded": 1629072000,
- "epoch_date_modified": 1673740800,
- "epoch_date_submitted": 1629072000,
- "flag": null,
- "report_number": 1435,
- "source_domain": "macarthurjustice.org",
- "submitters": ["Kate Perkins"],
- "title": "ShotSpotter Generated Over 40,000 Dead-End Police Deployments in Chicago in 21 Months, According to New Study",
- "url": "https://www.macarthurjustice.org/shotspotter-generated-over-40000-dead-end-police-deployments-in-chicago-in-21-months-according-to-new-study/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "the-good-guys",
- "name": "The Good Guys"
- },
- {
- "__typename": "Entity",
- "entity_id": "kmart",
- "name": "Kmart"
- },
- {
- "__typename": "Entity",
- "entity_id": "bunnings",
- "name": "Bunnings"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "unknown",
- "name": "Unknown"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "the-good-guys-customers",
- "name": "The Good Guys customers"
- },
- {
- "__typename": "Entity",
- "entity_id": "kmart-customers",
- "name": "Kmart customers"
- },
- {
- "__typename": "Entity",
- "entity_id": "bunnings-customers",
- "name": "Bunnings customers"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1820, 1819],
- "vector": [
- -0.1037762463092804, 0.04996801167726517, 0.020640289410948753, -0.13885122537612915,
- 0.02300276607275009, -0.10291729122400284, -0.001200458500534296, 0.04197598248720169,
- 0.10602504014968872, -0.0888223797082901, -0.03183497115969658, 0.06048654019832611,
- 0.06339508295059204, -0.05761079117655754, 0.021344635635614395, -0.1865701973438263,
- -0.0794212818145752, -0.003087453544139862, -0.03863590955734253, -0.08244668692350388,
- -0.09040944278240204, 0.02852349355816841, 0.07081662863492966, 0.13721948862075806,
- -0.019639480859041214, 0.031915679574012756, 0.07046760618686676, 0.1510966718196869,
- -0.041626282036304474, 0.08940370380878448, -0.03234505280852318, -0.042180195450782776,
- 0.12506020069122314, 0.03061680868268013, 0.003030379768460989, 0.09759984910488129,
- 0.04925593361258507, -0.02956802025437355, 0.0012460481375455856, -0.037318870425224304,
- 0.008747328072786331, 0.28022655844688416, -0.012269636616110802, -0.018547650426626205,
- 0.04581122845411301, -0.025687774643301964, 0.023015696555376053, 0.08344747871160507,
- 0.00377807579934597, -0.005398401990532875, 0.012562742456793785, 0.03797367215156555,
- -0.04699570685625076, 0.017031021416187286, -0.05326630547642708, 0.013381280936300755,
- 0.011179909110069275, 0.0028513334691524506, -0.013686815276741982,
- -0.061872974038124084, -0.042471759021282196, -0.15865272283554077,
- -0.03857322037220001, -0.1051744595170021, 0.09459594637155533, -0.10030516982078552,
- -0.05958997458219528, -0.011655407957732677, 0.01891965977847576, 0.09320390224456787,
- 0.056552112102508545, -0.04900812357664108, -0.04501957446336746, 0.004238536581397057,
- 0.01223825104534626, -0.02688564360141754, 0.04312235489487648, 0.17826330661773682,
- -0.09034886956214905, 0.04262650012969971, 0.1309715211391449, -0.09177237004041672,
- 0.4538128674030304, 0.0058335475623607635, 0.017864424735307693, -0.02785436250269413,
- 0.06791377812623978, 0.04644477739930153, 0.05714121088385582, 0.039405982941389084,
- -0.04427997022867203, 0.07043028622865677, -0.025978783145546913, 0.036322012543678284,
- 0.09745843708515167, 0.02840890735387802, -0.023106295615434647, -0.07742869108915329,
- -0.043206509202718735, -0.07892768085002899, -0.022518418729305267,
- -0.016692152246832848, 0.11741527169942856, 0.07817544043064117, -0.030484799295663834,
- -0.001101634930819273, 0.04148086905479431, -0.019483886659145355, 0.06101613491773605,
- -0.0424245186150074, 0.033859387040138245, 0.020982518792152405, 0.09500417113304138,
- 0.0239169429987669, 0.031774405390024185, -0.04154165834188461, 0.025212746113538742,
- 0.08378184586763382, 0.07401221990585327, 0.0199763011187315, -0.009732028469443321,
- 0.030775949358940125, 0.0765409991145134, -0.0705409124493599, 0.02257724106311798,
- 0.005419855006039143, -0.0693596675992012, -0.05440182983875275, -0.04059096798300743,
- 0.02406260371208191, -0.05165105313062668, -0.2289772629737854, 0.003068435937166214,
- 0.06491760909557343, 0.032041992992162704, -0.05913470685482025, 0.011205500923097134,
- -0.057932041585445404, 0.03971600905060768, -0.03076540306210518, -0.04765230417251587,
- 0.08038058876991272, 0.002423517871648073, 0.06700225174427032, 0.1386946737766266,
- 0.04592461511492729, -0.06500855088233948, 0.003332274965941906, -0.017885293811559677,
- -0.008387111127376556, 0.10258950293064117, -0.11880125105381012, -0.06448711454868317,
- 0.043988365679979324, 0.038608185946941376, 0.6516941785812378, 0.10797348618507385,
- 0.12048318982124329, -0.01178079005330801, 0.0084674758836627, 0.16662082076072693,
- 0.0360666960477829, 0.08337177336215973, -0.06673945486545563, -0.07479190826416016,
- 0.008077764883637428, -0.008642763830721378, -0.02092478796839714, 0.052203647792339325,
- 0.017287135124206543, 0.11341635882854462, -0.03036048635840416, 0.11178432404994965,
- -0.005033716093748808, -0.08597856760025024, -0.004182147327810526,
- 0.033121127635240555, 0.004043559078127146, -0.13693568110466003, -0.048573337495326996,
- 0.03556250408291817, 0.045774973928928375, -0.1461087465286255, 0.001483299769461155,
- -0.050563745200634, 0.05646470934152603, -0.009317816235125065, 0.05870446562767029,
- -0.014494022354483604, 0.011051630601286888, 0.016337666660547256, 0.018285252153873444,
- 0.03413180261850357, -0.09594529122114182, -0.045392751693725586, 0.07494725286960602,
- -0.0007206662558019161, -0.03698012977838516, 0.0738811045885086, -0.09205569326877594,
- 0.04044907167553902, -0.012743338942527771, 0.15914390981197357, -0.1014321893453598,
- -0.03673383966088295, 0.016046781092882156, -0.06347445398569107, 0.06608173251152039,
- -0.01358413603156805, -0.04305718094110489, -0.08145897835493088, 0.04819164797663689,
- 0.01327594742178917, 0.07640136778354645, 0.08084709942340851, -0.01634652353823185,
- 0.07314267009496689, 0.03529089689254761, -0.025286540389060974, -0.030562447383999825,
- 0.076407790184021, -0.0005444604903459549, -0.04674556478857994, 0.00043473299592733383,
- 0.08273899555206299, 0.0463852733373642, 0.02088133990764618, -0.013042230159044266,
- 0.05920471251010895, 0.0035023530945181847, -0.02429552748799324, 0.0660475492477417,
- -0.047137659043073654, -0.00906023383140564, 0.11215054988861084, -0.05852891132235527,
- -0.004587672185152769, -0.03488355502486229, -0.038603849709033966,
- 0.029369741678237915, 0.008849075064063072, 0.09084166586399078, 0.07918346673250198,
- 0.0529099777340889, -0.0067026857286691666, -0.00843941792845726, 0.06264141947031021,
- 0.010179383680224419, 0.060582175850868225, 0.05278407037258148, -0.03000734932720661,
- -0.08841246366500854, -0.05137381702661514, 0.012193240225315094, 0.09292445331811905,
- 0.03225339576601982, -0.07527518272399902, -0.01086929626762867, 0.04539205878973007,
- -0.0348658487200737, -0.07979824393987656, -0.004498252645134926, 0.005932892672717571,
- 0.051858894526958466, -0.07545378804206848, -0.07244900614023209, -0.07715115696191788,
- 0.024643609300255775, 0.07792025804519653, -0.012858839705586433, 0.008768288418650627,
- -0.1209535002708435, 0.08284816145896912, -0.012566241435706615, 0.07777450978755951,
- -0.03306470811367035, 0.04942457750439644, 0.027028080075979233, -0.05963168293237686,
- 0.007870448753237724, 0.021253377199172974, -0.11257857829332352, -0.03880486264824867,
- -0.03836992010474205, -0.05649669095873833, 0.03495245799422264, 0.021926764398813248,
- -0.053381480276584625, 0.07749301195144653, 0.07655543833971024, 0.05480525270104408,
- -0.009784571826457977, 0.0065819453448057175, 0.08598034083843231, -0.04708230495452881,
- 0.04422740638256073, 0.1057935580611229, -0.04627927020192146, -0.0011337311007082462,
- -0.04235861450433731, -0.007266746833920479, -0.06999954581260681, 0.044196825474500656,
- -0.07266342639923096, 0.0217299684882164, -0.013121998868882656, -0.03244445472955704,
- -0.05486162006855011, -0.05491465702652931, 0.09210614114999771, -0.09991421550512314,
- -0.0360385924577713, -0.09775768965482712, 0.0880126953125, 0.017900194972753525,
- 0.029371730983257294, 0.018622057512402534, -0.03367827832698822, 0.05990529805421829,
- 0.01692045107483864, 0.009426266886293888, 0.0636960044503212, 0.07845571637153625,
- -0.05099944770336151, 0.03988417237997055, 0.049570802599191666, -0.02070380374789238,
- 0.025294795632362366, 0.0795535296201706, 0.40739697217941284, -0.125321626663208,
- 0.11022872477769852, 0.0754961371421814, 0.019737279042601585, 0.020651239901781082,
- -0.006783212535083294, 0.03750638663768768, 0.06032336503267288, 0.1624208390712738,
- 0.05668918788433075, 0.005553951486945152, -0.003809198271483183, -0.11061668395996094,
- 0.04084450379014015, 0.02158667892217636, -0.028417348861694336, 0.05270841717720032,
- -0.07736463099718094, -0.002298142993822694, -0.006937015801668167,
- -0.08416134119033813, 0.033118732273578644, -0.02366718277335167, -0.08751102536916733,
- 0.050730668008327484, 0.009960351511836052, 0.051418937742710114,
- -0.0017791897989809513, 0.07148716598749161, -0.02048254758119583, 0.03891300410032272,
- 0.012301482260227203, 0.05819620192050934, -0.040343139320611954, 0.05688592046499252,
- -0.07645349204540253, -0.06871458142995834, 0.0566241592168808, 0.024020714685320854,
- 0.0143540408462286, 0.03900641202926636, -0.055497076362371445, 0.06306611001491547,
- -0.06998339295387268, -0.062427811324596405, 0.02416018396615982, 0.024799330160021782,
- 0.021166939288377762, 0.07157474011182785, 0.2219579815864563, -0.03427404165267944,
- -0.04727242887020111, -0.0818287581205368, 0.09173646569252014, 0.09362491965293884,
- -0.031025703996419907, 0.0261346735060215, -0.03958439826965332, 0.007968648336827755,
- 0.0005422234535217285, -0.055892810225486755, -0.0919937863945961, 0.04716692119836807,
- 0.015258518978953362, 0.07759363949298859, 0.033016353845596313, -0.029130958020687103,
- -0.13851025700569153, -0.006994904018938541, -0.05459137260913849, 0.029017463326454163,
- 0.1534583568572998, -0.023267248645424843, -0.011423864401876926, -0.020503144711256027,
- -0.016736697405576706, -0.007001588121056557, -0.08934491872787476,
- -0.018973510712385178, -0.04405714571475983, 0.06376524269580841, 0.01953120157122612,
- 0.08814138919115067, -0.04839938133955002, 0.10327954590320587, -0.10926168411970139,
- 0.0575004443526268, 0.012395515106618404, -0.04544559493660927, 0.0843377411365509,
- -0.058359988033771515, 0.06072136014699936, 0.002739543095231056, -0.02581010013818741,
- -0.05229710042476654, -0.03307340294122696, -0.00043810391798615456,
- -0.11353251338005066, -0.04289992153644562, -0.04207976162433624, -0.04893973469734192,
- 0.08209127187728882, -0.05867859721183777, -0.0018651150166988373, 0.017955750226974487,
- -0.04155004769563675, -0.01529769692569971, 0.031674765050411224,
- -0.0003729015588760376, -0.13461235165596008, -0.00914846733212471,
- -0.009531654417514801, 0.03469102457165718, -0.0038016261532902718,
- -0.042387232184410095, 0.04394873231649399, 0.06235634163022041, 0.048439446836709976,
- -0.04790864884853363, 0.004223832860589027, -0.027438625693321228, 0.07328778505325317,
- -0.13406285643577576, -0.4211466908454895, 0.018530558794736862, -0.030558474361896515,
- 0.08432864397764206, 0.02028637006878853, -0.12213565409183502, 0.04943113029003143,
- 0.028257960453629494, -0.03691522777080536, 0.07616404443979263, -0.05670133978128433,
- 0.02940860018134117, 0.020359128713607788, -0.06772839277982712, -0.0031418483704328537,
- -0.08877186477184296, -0.01802675984799862, 0.026946067810058594, -0.044006265699863434,
- -0.0594170019030571, -0.09807451069355011, 0.03400254249572754, -0.00045860232785344124,
- 0.014056326821446419, -0.005306699313223362, -0.00610551331192255, -0.08953475952148438,
- -0.035158880054950714, 0.0354372002184391, 0.02913743071258068, -0.005099201574921608,
- -0.06534301489591599, 0.010522468015551567, 0.11716168373823166, -0.011369149200618267,
- 0.1091085821390152, 0.05759077146649361, -0.011779515072703362, -0.07159550487995148,
- 0.10201825201511383, 0.08289165049791336, 0.18427446484565735, -0.040517501533031464,
- 0.02980305440723896, -0.011978767812252045, 0.17917509377002716, -0.0204334519803524,
- 0.04412354156374931, -0.010787718929350376, 0.0025137413758784533, 0.0276581272482872,
- -0.00254436070099473, 0.06046019494533539, -0.1062491238117218, -0.011397885158658028,
- -0.045976780354976654, -0.0467376634478569, -0.04969507455825806, -0.038761354982852936,
- 0.1898813247680664, 0.04778584837913513, -0.002911450807005167, 0.03626300394535065,
- -0.08093760907649994, -0.016533516347408295, -0.10638084262609482, -0.08270623534917831,
- -0.0007911110296845436, 0.020576108247041702, -0.007739821914583445,
- -0.04714670777320862, -0.12314747273921967, -0.02706555649638176, -0.01584353856742382,
- -0.014296988025307655, 0.08019927144050598, -0.08895541727542877, 0.07145188748836517,
- -0.050429001450538635, 0.16256408393383026, 0.05236449092626572, 0.04649721831083298,
- 0.03698263317346573, 0.07479909062385559, -0.03665493428707123, -0.02377251908183098,
- -0.0818507969379425, -0.09772263467311859, -0.045619308948516846, 0.12768042087554932,
- -0.008802253752946854, 0.12358733266592026, -0.01666574738919735, -0.07441461086273193,
- -0.0428004264831543, 0.006812009960412979, -0.04062740504741669, 0.013266244903206825,
- -0.39451366662979126, 0.005292806774377823, 0.1602323055267334, 0.022748026996850967,
- 0.006499121896922588, 0.07228460907936096, 0.029476488009095192, -0.06361450254917145,
- 0.0037642158567905426, -0.10124720633029938, 0.11351228505373001, 0.039428163319826126,
- 0.10038197040557861, -0.11706696450710297, 0.03213266655802727, 0.09467331320047379,
- -0.04672129824757576, -0.05238955467939377, 0.04971661418676376, -0.25136199593544006,
- 0.012951834127306938, -0.07115331292152405, 0.12185356765985489, 0.10072401165962219,
- 0.011465675197541714, 0.07497000694274902, -0.06977494060993195, 0.03273925185203552,
- 0.020044561475515366, 0.010465648956596851, 0.03960973024368286, 0.00851475540548563,
- -0.07997910678386688, 0.0830136090517044, 0.03396023064851761, 0.06390927731990814,
- -0.014016478322446346, 12.086601257324219, 0.07403533160686493, 0.07399670779705048,
- -0.11134640127420425, -0.032916467636823654, -0.06791570037603378, 0.008591623976826668,
- -0.07120303809642792, 0.045345239341259, 0.10462814569473267, -0.038294654339551926,
- -0.04903869330883026, -0.06275685131549835, -0.12463653087615967, -0.030564527958631516,
- -0.030894557014107704, -0.06819376349449158, -0.046047210693359375, 0.05767374485731125,
- -0.009875914081931114, -0.04066865146160126, 0.05829060450196266, 0.0607854463160038,
- 0.05700754374265671, -0.09351512789726257, -0.014462574385106564, -0.03450015187263489,
- -0.03489869832992554, -0.0020025279372930527, 0.02298109047114849,
- -0.011008118279278278, 0.034653373062610626, 0.08394414186477661, -0.04022921249270439,
- 0.02400713413953781, 0.003820209763944149, 0.05536637455224991, 0.01416095532476902,
- -0.008616403676569462, 0.057296838611364365, -0.01201948244124651, 0.018469521775841713,
- -0.014507449232041836, 0.0337495356798172, 0.048640649765729904, 0.003980206325650215,
- 0.029990829527378082, 0.10658690333366394, 0.029060659930109978, 0.13479915261268616,
- 0.12258743494749069, 0.02679681032896042, 0.10491050034761429, 0.0448586642742157,
- 0.003572082845494151, 0.07913436740636826, -0.0132536506280303, -0.13153880834579468,
- 0.05620945617556572, 0.11780926585197449, -0.05519741773605347, 0.12537391483783722,
- 0.045666586607694626, 0.1516302227973938, 0.06054209917783737, 0.034133534878492355,
- 0.1079925149679184, 0.08982826769351959, -0.1822178065776825, -0.05873384326696396,
- 0.0013233149657025933, -0.07624751329421997, -0.05563893914222717, 0.10956300795078278,
- 0.09007146954536438, -0.0517025962471962, 0.11877581477165222, -0.020198477432131767,
- 0.05219476670026779, 0.0037728063762187958, -0.0014840166550129652, 0.0370800644159317,
- -0.0445437878370285, 0.053659357130527496, 0.030597981065511703, -0.017648715525865555,
- 0.1473275125026703, 0.10130319744348526, 0.008580985479056835, -0.10462925583124161,
- -0.06696160137653351, 0.10647453367710114, 0.03649243712425232, -0.030047010630369186,
- -0.07404372096061707, -0.04563288390636444, 0.014457766897976398, -0.1506185680627823,
- 0.10118177533149719, 0.1163385659456253, -0.11726412177085876, 0.009520001709461212,
- -0.049036622047424316, 0.10992451012134552, 0.019725244492292404, 0.020562896504998207,
- -0.03663962706923485, 0.03413265198469162, 0.025054490193724632, 0.02831302210688591,
- -0.10347254574298859, 0.05543716996908188, 0.0850628986954689, -0.057736679911613464,
- 0.0181784238666296, 0.09134786576032639, 0.014633027836680412, -0.04123399034142494,
- 0.06680576503276825, -0.018692854791879654, -0.08709409832954407, -0.06371790915727615,
- -0.04719659686088562, -0.046318426728248596, 0.001388038508594036,
- -0.054000236093997955, -0.028924765065312386, 0.019716035574674606,
- -0.06778597831726074, -0.04115953668951988, 0.008276266045868397, 0.07420210540294647,
- 0.07645843923091888, 0.029805216938257217, 0.052391417324543, -0.04324163496494293,
- -0.012343954294919968, 0.05034887045621872, 0.027017908170819283, 0.06021915376186371,
- -0.027447840198874474, -0.03775448352098465, -0.03470334783196449, -0.09094077348709106,
- -0.016389155760407448, 0.085356205701828, 0.06980650871992111, 0.04833094775676727,
- 0.028112497180700302, -0.07114427536725998, -0.05075997859239578, 0.0988469123840332,
- 0.0007324237376451492, 0.026620501652359962, 0.0739946961402893, -0.09192771464586258,
- -0.016084041446447372, 0.07521729916334152, -0.059582702815532684,
- -0.020445914939045906, 0.022672921419143677, -0.142775297164917, 0.11534640192985535,
- 0.04668106511235237, 0.05731223523616791, -0.007614322938024998, 0.057579196989536285,
- -0.016098475083708763, 0.0036819681990891695, 0.01535254716873169, 0.03380696102976799,
- -0.07082369178533554, -0.10950088500976562, -0.07327987253665924, 0.03209545835852623,
- 0.08181688189506531, 0.05610251799225807, -0.17667876183986664, -0.041111163794994354,
- -0.04481182619929314
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 258,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Jarni Blakkarly"],
- "epoch_date_downloaded": 1659225600,
- "epoch_date_modified": 1659225600,
- "epoch_date_submitted": 1659225600,
- "flag": null,
- "report_number": 1820,
- "source_domain": "choice.com.au",
- "submitters": ["Khoa Lam"],
- "title": "Kmart, Bunnings and The Good Guys using facial recognition technology in stores",
- "url": "https://www.choice.com.au/consumers-and-data/data-collection-and-use/how-your-data-is-used/articles/kmart-bunnings-and-the-good-guys-using-facial-recognition-technology-in-store#:~:text=Update%2012%2F07%2F2022%3A\u0026text=CHOICE%20welcomes%20the%20Commissioner-initiated,and%20invasive%20facial%20recognition%20technology."
- },
- {
- "__typename": "Report",
- "authors": ["Amelia McGuire"],
- "epoch_date_downloaded": 1659225600,
- "epoch_date_modified": 1659225600,
- "epoch_date_submitted": 1655251200,
- "flag": null,
- "report_number": 1819,
- "source_domain": "smh.com.au",
- "submitters": ["Sean McGregor"],
- "title": "Facial recognition technology: Major retailers secretly creating “face prints” of their customers, says Choice",
- "url": "https://www.smh.com.au/business/consumer-affairs/major-retailers-using-facial-recognition-technology-on-unsuspecting-customers-choice-20220615-p5atrc.html"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "yannic-kilcher",
- "name": "Yannic Kilcher"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "yannic-kilcher",
- "name": "Yannic Kilcher"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "internet-social-platform-users",
- "name": "internet social platform users"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1842, 1822],
- "vector": [
- -0.05068059265613556, 0.024051781743764877, 0.013489890843629837, -0.08682800084352493,
- 0.11178211122751236, -0.00875916052609682, 0.0002785562537610531, 0.06052114814519882,
- 0.07616479694843292, -0.15135061740875244, 0.018136484548449516, 0.033153023570775986,
- 0.02418595179915428, -0.10254412144422531, 0.01577644608914852, -0.05209548771381378,
- -0.07611066102981567, -0.016418566927313805, -0.013272754848003387,
- -0.15729942917823792, -0.05979495495557785, 0.01340464223176241, 0.030042216181755066,
- 0.08199276775121689, -0.016484923660755157, 0.03630491718649864, 0.1343783140182495,
- 0.14512068033218384, -0.09197923541069031, 0.04052698239684105, -0.025325408205389977,
- -0.054979220032691956, 0.1391013115644455, -0.0014453758485615253, 0.02657645009458065,
- 0.08571824431419373, 0.05204969644546509, -0.00616430165246129, -0.02990303747355938,
- -0.03063480742275715, 0.03539141267538071, 0.19338136911392212, 0.0005627023056149483,
- -0.03838353976607323, 0.07736052572727203, -0.03705045208334923, -0.007812023162841797,
- 0.061568453907966614, 0.002880784682929516, -0.029311612248420715,
- -0.022410325706005096, -0.04737814888358116, -0.06145487725734711, 0.02231663465499878,
- -0.06462782621383667, 0.10348400473594666, 0.07365037500858307, -0.020565593615174294,
- 0.02391517348587513, -0.052519604563713074, -0.002832538215443492, -0.16815736889839172,
- -0.04306435212492943, -0.0598774328827858, 0.0670459121465683, -0.08503130078315735,
- -0.0301042590290308, 0.06521117687225342, -0.0006072390824556351, 0.014799695461988449,
- -0.00987955927848816, -0.05393446981906891, -0.04203810542821884, 0.004770038649439812,
- -0.026170764118433, -0.05614703521132469, 0.06754983961582184, 0.21237865090370178,
- -0.1015743836760521, 0.025314122438430786, 0.08176019042730331, -0.12871158123016357,
- 0.29468756914138794, 0.02519126981496811, -0.006079294718801975, 0.03486362844705582,
- 0.08680012077093124, -0.005861987359821796, 0.015442720614373684, 0.03535925969481468,
- 0.0037817717529833317, 0.05327919125556946, -0.04316554218530655, -0.02861582115292549,
- 0.02445543184876442, 0.04139432683587074, 0.004241746850311756, -0.06841285526752472,
- -0.029056202620267868, -0.037946585565805435, 0.004315320868045092,
- -0.029649686068296432, 0.14369428157806396, 0.10017889738082886, -0.045943062752485275,
- -0.013545486144721508, 0.09608511626720428, -0.08272667229175568, 0.07010367512702942,
- -0.07834950089454651, 0.022640028968453407, 0.022073840722441673, 0.04570787400007248,
- -0.01912313885986805, 0.04396049678325653, -0.03896048665046692, 0.010894911363720894,
- 0.054385706782341, 0.06793805956840515, 0.09615112096071243, -0.014626090414822102,
- 0.040196742862463, 0.08279623091220856, -0.053766049444675446, -0.00831678044050932,
- -0.03064677119255066, -0.029914002865552902, -0.004943998530507088,
- -0.03187749534845352, 0.06166571378707886, -0.07753542065620422, -0.20486457645893097,
- 0.0015952142421156168, 0.05826738476753235, -0.03558369353413582, 0.009931381791830063,
- 0.024908777326345444, -0.0632772147655487, 0.021516792476177216, -0.011115209199488163,
- -0.004401038400828838, 0.03936339169740677, 0.029359616339206696, 0.0377572737634182,
- 0.058475639671087265, 0.011215072125196457, -0.022493919357657433, -0.06499898433685303,
- 0.026360448449850082, -0.02917388826608658, 0.08835361897945404, -0.11471933126449585,
- 0.0005238894373178482, -0.04712745174765587, -0.028859514743089676, 0.6421645879745483,
- 0.12452451884746552, 0.1453133523464203, 0.007985721342265606, -0.032722264528274536,
- 0.1541277915239334, -0.02845870330929756, 0.04461909830570221, -0.022097473964095116,
- -0.05375127121806145, -0.013262219727039337, -0.07160422205924988, -0.05685251206159592,
- -0.006354908458888531, 0.006847998593002558, 0.08663898706436157, 0.022005202248692513,
- 0.13619793951511383, 0.026950636878609657, -0.09359721839427948, -0.04129079356789589,
- 0.024272073060274124, 0.01306354720145464, -0.1266433298587799, -0.034219302237033844,
- 0.10169951617717743, 0.09504849463701248, -0.024523556232452393, 0.007750676013529301,
- -0.04694799333810806, 0.01770712248980999, -0.03952660784125328, 0.06339071691036224,
- -0.009792305529117584, 0.08450442552566528, 0.025101449340581894, 0.042129144072532654,
- -0.03516820818185806, -0.08396357297897339, -0.010732676833868027, 0.11159059405326843,
- 0.014735446311533451, -0.03172256052494049, 0.10542428493499756, -0.05590186268091202,
- 0.04449741542339325, -0.01472423318773508, 0.12925660610198975, -0.15133649110794067,
- 0.028648968786001205, -0.04199190437793732, -0.08833247423171997, 0.05368533730506897,
- -0.011625928804278374, -0.09453941136598587, -0.0916370153427124, 0.10196171700954437,
- -0.007544953376054764, 0.029266357421875, 0.020507346838712692, -0.04903179034590721,
- 0.050197161734104156, -0.028422340750694275, 0.039481185376644135, -0.10035256296396255,
- 0.06458554416894913, 0.03899652138352394, -0.020829129964113235, -0.050733476877212524,
- 0.030091378837823868, 0.05145483464002609, 0.03643738850951195, -0.0011874760966748,
- 0.06063227355480194, -0.01982012391090393, -0.012325284071266651, 0.023584889248013496,
- 0.043412648141384125, 0.03806266188621521, 0.05295950919389725, -0.13142713904380798,
- -0.03188799321651459, -0.023293618112802505, 0.01991833746433258, 0.013062185607850552,
- -0.04601983726024628, 0.05157327651977539, 0.09764315187931061, 0.056970253586769104,
- 0.026853635907173157, 0.033265456557273865, 0.01951836608350277, 0.01863677240908146,
- -0.017671752721071243, 0.08042213320732117, -0.01758376695215702, -0.014659123495221138,
- -0.03931067883968353, 0.005512571893632412, 0.013919339515268803, -0.010231122374534607,
- -0.06804955750703812, -0.03557465970516205, -0.03655797988176346, -0.042149826884269714,
- -0.08831445127725601, -0.03271997720003128, 0.028438415378332138, 0.03789861500263214,
- -0.0764462947845459, -0.11003033071756363, -0.06647762656211853, 0.010141654871404171,
- 0.04633891582489014, -0.026346776634454727, -0.027526916936039925, -0.11082971096038818,
- 0.03634534403681755, -0.0231410451233387, 0.024193312972784042, -0.0052282423712313175,
- -0.0202869214117527, -0.058340076357126236, -0.06660185754299164, -0.011719165369868279,
- 0.015040997415781021, 0.004487176891416311, 0.007650917861610651, -0.030611645430326462,
- -0.049405764788389206, -0.03400956839323044, 0.015161493793129921,
- -0.028243180364370346, -0.00032991706393659115, 0.05538081377744675,
- 0.010974250733852386, -0.03743470460176468, -0.0251460000872612, 0.03280322998762131,
- -0.04902952164411545, -0.010038556531071663, 0.0775589793920517, -0.03887538984417915,
- 0.05426330864429474, 0.0019296151585876942, -0.086189404129982, -0.04036708176136017,
- 0.004605467896908522, -0.04290829598903656, 0.06738756597042084, -0.05484817177057266,
- -0.026699481531977654, -0.017085907980799675, 0.0008702849736437201,
- 0.05275411158800125, -0.04768868908286095, -0.08329632878303528, -0.06879771500825882,
- 0.11728163808584213, -0.012626818381249905, -0.006187069229781628, -0.01200568862259388,
- -0.046998683363199234, 0.051263242959976196, 0.02491798624396324, 0.03771491348743439,
- 0.02150067687034607, 0.12434972077608109, 0.01252840831875801, 0.03922055661678314,
- 0.08994732797145844, -0.029556088149547577, 0.02406872808933258, 0.1179065853357315,
- 0.40481823682785034, -0.17027026414871216, 0.11171282827854156, 0.12064898759126663,
- 0.0023212716914713383, 0.029648374766111374, -0.06063316762447357, 0.04744409769773483,
- 0.0394376665353775, 0.08137352019548416, 0.10369759052991867, -0.04712231457233429,
- 0.04294293373823166, 0.004251064267009497, 0.06447481364011765, 0.004199622664600611,
- 0.02858114056289196, -0.01879090815782547, -0.04371777921915054, -0.01931092143058777,
- 0.06066787987947464, -0.035052306950092316, 0.040395595133304596, -0.01924842782318592,
- -0.061622943729162216, 0.04156424105167389, 0.06033378839492798, 0.08527292311191559,
- -0.05636987090110779, 0.026547018438577652, -0.0005778074264526367, 0.03216787800192833,
- 0.013643447309732437, 0.049339815974235535, -0.13005168735980988, 0.04973206669092178,
- -0.07186748832464218, -0.09842351078987122, 0.04292473942041397, 0.013086935505270958,
- 0.09105319529771805, 0.025489311665296555, 0.013979781419038773, 0.07562442123889923,
- -0.011493312194943428, -0.002315839985385537, -0.028818784281611443,
- 0.049913112074136734, 0.08216626942157745, 0.08989670127630234, 0.11932463943958282,
- -0.0041530318558216095, 0.012478023767471313, -0.08385466039180756,
- 0.051505424082279205, 0.1295282393693924, -0.040051091462373734, 0.014628950506448746,
- 0.014798576943576336, -0.012938860803842545, -0.013560904189944267,
- -0.05523643642663956, -0.05235157907009125, -0.03285905718803406, -0.06249444559216499,
- 0.061038143932819366, 0.07298232614994049, -0.05741935595870018, -0.1458396017551422,
- -0.03637397289276123, -0.035828858613967896, 0.0036544546019285917, 0.13510622084140778,
- -0.06343162059783936, 0.032030582427978516, 0.026713863015174866, 0.03799165412783623,
- 0.020329732447862625, -0.08958516269922256, -0.01390389259904623, -0.050639234483242035,
- 0.03855215013027191, 0.0780993103981018, 0.03500227630138397, -0.06708108633756638,
- 0.07645818591117859, -0.10517776012420654, 0.06830061972141266, -0.030342139303684235,
- -0.038805972784757614, 0.037139907479286194, -0.04383423179388046,
- -0.0017118204850703478, 0.047848135232925415, -0.07760495692491531,
- 0.023192420601844788, -0.05071292445063591, -0.05126120150089264, -0.06474102288484573,
- -0.09300929307937622, -0.037415843456983566, -0.10649118572473526, 0.020320137962698936,
- -0.10348708927631378, 0.005082104820758104, -0.03124765306711197, -0.004064216278493404,
- -0.006638847291469574, 0.03238515555858612, -0.00828598439693451, -0.11806599050760269,
- -0.01691174879670143, -0.018138568848371506, 0.01785179227590561, -0.008420790545642376,
- -0.09614245593547821, -0.042124196887016296, 0.04278969019651413, 0.0234694704413414,
- -0.0253321323543787, 0.05227023735642433, -0.06093590706586838, 0.09738461673259735,
- -0.12765377759933472, -0.4405592978000641, 0.045252978801727295, 0.03987152501940727,
- 0.023397542536258698, 0.004281657747924328, -0.04832344874739647, 0.05242994427680969,
- 0.02859141305088997, -0.04346466809511185, 0.07912112772464752, -0.047548942267894745,
- 0.007943462580442429, -0.030655428767204285, -0.04151089861989021,
- -0.022033389657735825, -0.06567318737506866, -0.044803813099861145,
- 0.012998838908970356, -0.008015032857656479, -0.06146744638681412, -0.06766964495182037,
- 0.030219828709959984, -0.033059533685445786, -0.0007703946903347969,
- -0.01903003640472889, 0.0003502671606838703, -0.007116617634892464, -0.0601225420832634,
- 0.029178811237215996, 0.05487782508134842, 0.0013591400347650051, -0.08079485595226288,
- -0.0030395141802728176, 0.055676091462373734, 0.024715855717658997, 0.12007088959217072,
- 0.030239248648285866, 0.01914701983332634, -0.11164466291666031, 0.06684106588363647,
- 0.1063970997929573, 0.18830035626888275, -0.01895592175424099, 0.061936527490615845,
- 0.00979951024055481, 0.0667681097984314, 0.016779571771621704, 0.06415171921253204,
- -0.03200559318065643, -0.030256038531661034, 0.057110659778118134,
- -0.013660809025168419, 0.08793257921934128, -0.07607933133840561, -0.03337085619568825,
- 0.032789196819067, -0.024830365553498268, -0.05076772719621658, 0.005504803732037544,
- 0.18153688311576843, 0.03001045063138008, 0.019532237201929092, 0.010621624067425728,
- -0.04565787687897682, 0.02642938867211342, -0.07289504259824753, -0.08504712581634521,
- -0.018355919048190117, -0.012492229230701923, 0.02183179184794426,
- -0.042250365018844604, -0.10153429210186005, 0.011102661490440369, -0.01637277379631996,
- 0.022074351087212563, 0.11026553809642792, -0.0688316822052002, -0.011167213320732117,
- -0.0649176687002182, 0.1625349074602127, 0.02781565487384796, 0.041510358452796936,
- 0.0356096588075161, 0.06284326314926147, 0.03594715893268585, 0.02118523046374321,
- -0.06489069014787674, -0.07777941226959229, -0.036132436245679855, 0.1858544945716858,
- -0.044897906482219696, 0.13936521112918854, 0.06073479726910591, 0.011151755228638649,
- -0.01972273178398609, 0.008296366780996323, 0.04190891236066818, -0.009221584536135197,
- -0.4536598324775696, -0.03996272012591362, 0.13699939846992493, 0.032794658094644547,
- 0.04739382863044739, 0.08825312554836273, 0.022892288863658905, -0.026915185153484344,
- -0.024144232273101807, -0.06793371587991714, 0.1321852207183838, 0.0016839609015733004,
- 0.06663587689399719, -0.08057764917612076, 0.02234327234327793, 0.05988101661205292,
- -0.008390365168452263, -0.008238798007369041, 0.04742777347564697, -0.24384871125221252,
- -0.008579280227422714, -0.020284190773963928, 0.13664917647838593, 0.020068109035491943,
- 0.040752314031124115, 0.09381883591413498, -0.03673773631453514, 0.02351542003452778,
- 0.04118414223194122, 0.028609782457351685, 0.06209780275821686, 0.00699172168970108,
- -0.026138238608837128, 0.10226719081401825, 0.14643234014511108, 0.07835204899311066,
- -0.0077786571346223354, 11.855670928955078, 0.04369695484638214, 0.09486457705497742,
- -0.10973350703716278, -0.023712750524282455, -0.06155407428741455, 0.024352258071303368,
- -0.11697864532470703, 0.07095421850681305, 0.13055485486984253, -0.004499533679336309,
- -0.020694054663181305, -0.04327625781297684, -0.0527351051568985, 0.009946418926119804,
- -0.009073855355381966, -0.01327227707952261, -0.0034517794847488403, 0.0432845801115036,
- -0.04646538943052292, -0.059770695865154266, 0.07963407784700394, 0.06486713886260986,
- -0.0017513823695480824, -0.08727684617042542, 0.06456635892391205, -0.02414681389927864,
- 0.02739272452890873, 0.0037623816169798374, 0.04342960566282272, 0.04523039609193802,
- 0.05597413331270218, 0.0934356153011322, -0.003426174633204937, 0.019818903878331184,
- 0.12064901739358902, 0.02093038335442543, 0.02731531485915184, 0.07269520312547684,
- 0.05057534575462341, -0.004721373785287142, 0.03702496737241745, 0.0037777803372591734,
- 0.029693346470594406, 0.05108773708343506, 0.012685718946158886, 0.04575616866350174,
- 0.12220980226993561, -0.002639325801283121, 0.048158951103687286, 0.07447735220193863,
- -0.027578813955187798, 0.0924149826169014, 0.013350628316402435, -0.03642750531435013,
- 0.039558045566082, -0.021854370832443237, -0.05902128666639328, 0.11656610667705536,
- 0.0006102421320974827, -0.020699910819530487, 0.09656908363103867, 0.040335845202207565,
- 0.09197168052196503, 0.029969124123454094, 0.0014244038611650467, 0.05108468234539032,
- 0.06727150827646255, -0.07034885883331299, -0.06354214251041412, 0.050024617463350296,
- -0.07141732424497604, -0.0751393586397171, 0.07857418060302734, 0.027288008481264114,
- -0.032686538994312286, 0.07382537424564362, -0.031458090990781784, 0.059201739728450775,
- -0.012726100161671638, 0.04606004059314728, 0.03914141282439232, -0.04671652615070343,
- 0.03768718242645264, -0.032747723162174225, 0.038616739213466644, 0.10835738480091095,
- 0.09347352385520935, 0.017215419560670853, -0.08447181433439255, -0.08815089613199234,
- 0.10507494956254959, -0.000040152110159397125, -0.015661578625440598,
- 0.07105907797813416, -0.04243092983961105, 0.04136825352907181, -0.13284137845039368,
- 0.10042399168014526, 0.08141765743494034, -0.04325863718986511, -0.02466057986021042,
- -0.02017349936068058, 0.0859878808259964, 0.0069078123196959496, 0.04291295260190964,
- -0.06535664200782776, -0.015128646977245808, 0.02322801947593689, 0.054705068469047546,
- -0.01798342540860176, 0.09722346812486649, 0.034806348383426666, -0.07612980157136917,
- 0.060385361313819885, 0.07340341061353683, -0.04976498335599899, 0.010881185531616211,
- 0.05213300883769989, 0.021506840363144875, -0.08999195694923401, -0.027177894487977028,
- -0.0786861702799797, -0.06890329718589783, -0.0188290998339653, -0.018349124118685722,
- -0.023121878504753113, -0.013905271887779236, 0.010967280715703964,
- -0.029568901285529137, 0.0558670349419117, 0.07097932696342468, 0.061495691537857056,
- -0.02138328365981579, 0.02839498221874237, -0.012932578101754189, -0.03911428153514862,
- 0.05383298546075821, 0.05855964124202728, 0.0926792174577713, -0.0868167132139206,
- -0.05410870164632797, -0.030478540807962418, -0.08661818504333496, 0.03338081017136574,
- 0.054864801466464996, -0.0005239159800112247, 0.012903926894068718, 0.03837760165333748,
- -0.08995458483695984, -0.040117114782333374, 0.07359914481639862, 0.04494262486696243,
- -0.0217865239828825, 0.061688050627708435, -0.03663673624396324, -0.03113849274814129,
- 0.07557648420333862, 0.006659699138253927, -0.03380686044692993, 0.016971267759799957,
- -0.14249464869499207, 0.044258859008550644, 0.0892380028963089, 0.09153836965560913,
- 0.022631896659731865, 0.0321374274790287, -0.009288046509027481, 0.025766639038920403,
- 0.03413606435060501, 0.016369948163628578, -0.02008652687072754, -0.06081216037273407,
- -0.1290600597858429, -0.029687978327274323, 0.07954365760087967, 0.06104891374707222,
- -0.1498987078666687, 0.0014245840720832348, -0.04648737609386444
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 259,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Matthew Gault"],
- "epoch_date_downloaded": 1658707200,
- "epoch_date_modified": 1659398400,
- "epoch_date_submitted": 1658707200,
- "flag": null,
- "report_number": 1842,
- "source_domain": "vice.com",
- "submitters": ["Sonali Pednekar (CSET)"],
- "title": "AI Trained on 4Chan Becomes ‘Hate Speech Machine’",
- "url": "https://www.vice.com/en/article/7k8zwx/ai-trained-on-4chan-becomes-hate-speech-machine"
- },
- {
- "__typename": "Report",
- "authors": ["James Vincent"],
- "epoch_date_downloaded": 1659312000,
- "epoch_date_modified": 1659398400,
- "epoch_date_submitted": 1659312000,
- "flag": null,
- "report_number": 1822,
- "source_domain": "theverge.com",
- "submitters": ["Sonali Pednekar (CSET)", "AIAAIC"],
- "title": "YouTuber trains AI bot on 4chan’s pile o’ bile with entirely predictable results",
- "url": "https://www.theverge.com/2022/6/8/23159465/youtuber-ai-bot-pol-gpt-4chan-yannic-kilcher-ethics"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "us-department-of-homeland-security",
- "name": "US Department of Homeland Security"
- },
- {
- "__typename": "Entity",
- "entity_id": "us-citizenship-and-immigration-services",
- "name": "US Citizenship and Immigration Services"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "us-citizenship-and-immigration-services",
- "name": "US Citizenship and Immigration Services"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "us-naturalized-citizens",
- "name": "US naturalized citizens"
- },
- {
- "__typename": "Entity",
- "entity_id": "us-immigration-applicants",
- "name": "US immigration applicants"
- },
- {
- "__typename": "Entity",
- "entity_id": "us-immigrants",
- "name": "US immigrants"
- },
- {
- "__typename": "Entity",
- "entity_id": "us-citizenship-applicants",
- "name": "US citizenship applicants"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1831, 1823],
- "vector": [
- -0.057589150965213776, 0.07031407952308655, -0.005916215013712645, -0.06220157444477081,
- 0.07313171029090881, -0.03911920264363289, -0.004368751309812069, 0.0767340287566185,
- 0.07361645996570587, -0.14658895134925842, 0.027845997363328934, 0.02521449513733387,
- 0.04620993137359619, -0.04696483165025711, 0.01873994618654251, -0.10006894916296005,
- -0.09233763813972473, -0.027019036933779716, 0.03199326992034912, -0.13126398622989655,
- -0.10891229659318924, 0.010330825112760067, -0.0134437819942832, 0.10536080598831177,
- -0.04717013239860535, 0.050764940679073334, 0.1025889664888382, 0.0949353352189064,
- -0.07083278894424438, 0.06013570725917816, -0.04152030870318413, -0.0545177161693573,
- 0.13963502645492554, -0.007157457992434502, 0.02491443231701851, 0.10157811641693115,
- 0.04173668846487999, -0.05557621270418167, -0.015143370255827904, -0.03476620465517044,
- 0.05682072788476944, 0.226679727435112, 0.002195976674556732, 0.010936493054032326,
- 0.0572839193046093, -0.059853654354810715, -0.009495959617197514, 0.025041384622454643,
- -0.0069459713995456696, 0.00991821102797985, -0.005339454859495163, 0.0410732701420784,
- -0.02827434614300728, 0.04114667326211929, -0.1075415313243866, 0.07810480892658234,
- 0.02198958955705166, 0.006755985785275698, 0.031158845871686935, -0.07699951529502869,
- -0.06913215667009354, -0.22376541793346405, -0.04978148639202118, -0.08303109556436539,
- 0.07511962950229645, -0.10692250728607178, -0.03176955506205559, -0.0032632797956466675,
- -0.031213680282235146, 0.05115374177694321, 0.039465729147195816, -0.001844456885010004,
- -0.0049555255100131035, -0.034664563834667206, 0.0014277207665145397,
- -0.033823657780885696, 0.006434883922338486, 0.16086098551750183, -0.06242971122264862,
- 0.057031095027923584, 0.08038199692964554, -0.0672261118888855, 0.35622286796569824,
- 0.03223315626382828, 0.012202060781419277, -0.022035133093595505, 0.05421703681349754,
- 0.043979138135910034, 0.034175898879766464, 0.0014525175793096423, -0.03189966455101967,
- 0.012363841757178307, -0.08226115256547928, -0.024784822016954422, 0.10516063868999481,
- 0.008844509720802307, -0.007429447025060654, -0.09649232774972916, -0.03333418443799019,
- -0.07767540216445923, -0.008299131877720356, -0.030646931380033493, 0.06365793943405151,
- 0.02341829240322113, -0.062729112803936, 0.010688183829188347, 0.0978885143995285,
- -0.053931787610054016, 0.052972208708524704, 0.0006210854044184089, 0.034089345484972,
- 0.00023787468671798706, 0.07435378432273865, 0.007185815367847681, 0.01702362671494484,
- -0.08249297738075256, 0.017647437751293182, 0.02976229228079319, 0.0728331133723259,
- 0.07893633842468262, 0.01774759404361248, 0.018267201259732246, 0.09614884853363037,
- -0.0753009021282196, -0.059289317578077316, -0.08163057267665863, -0.021528752520680428,
- -0.04561255872249603, -0.044451117515563965, 0.04443075880408287, -0.03630068153142929,
- -0.14174874126911163, -0.0012162313796579838, 0.051301486790180206,
- 0.020585210993885994, -0.023650972172617912, -0.019438358023762703,
- -0.022905677556991577, 0.018751010298728943, 0.05085216462612152, 0.022367525845766068,
- 0.08653496950864792, 0.05004936456680298, 0.0344681479036808, 0.12329067289829254,
- 0.0034058603923767805, -0.08596055209636688, -0.06427400559186935,
- -0.016436634585261345, 0.011906765401363373, 0.0780227780342102, -0.13023017346858978,
- -0.04526574909687042, 0.022787833586335182, -0.060426391661167145, 0.6943966150283813,
- 0.06921946257352829, 0.12996335327625275, 0.009664570912718773, -0.022803379222750664,
- 0.162535160779953, 0.027770433574914932, 0.06591470539569855, -0.0649120956659317,
- -0.0498184934258461, 0.031249426305294037, -0.047415997833013535, -0.019537795335054398,
- 0.048836782574653625, 0.07031184434890747, 0.1254655122756958, 0.015386335551738739,
- 0.07356928288936615, 0.010352397337555885, -0.09325665235519409, -0.03712666779756546,
- 0.020402852445840836, 0.0008291932754218578, -0.11338797211647034, -0.02638866752386093,
- 0.07281593233346939, 0.0972345769405365, -0.08463064581155777, 0.04030153155326843,
- -0.04676969349384308, 0.036768652498722076, -0.02638302743434906, 0.026426343247294426,
- 0.0011075598886236548, -0.002957972465083003, 0.04076285660266876, 0.07881812006235123,
- -0.010372989811003208, -0.1106014996767044, 0.001744177658110857, 0.054751329123973846,
- 0.0009536892175674438, -0.010064052417874336, 0.048108797520399094,
- -0.08012836426496506, 0.06629560887813568, 0.01082190778106451, 0.1927339881658554,
- -0.131660595536232, 0.0008869818411767483, -0.005152893718332052, -0.031908102333545685,
- 0.06133996695280075, 0.01900753751397133, -0.06182340532541275, -0.09374883025884628,
- 0.03598213940858841, 0.03693778067827225, 0.06919483840465546, 0.0474701002240181,
- -0.08402325212955475, 0.03793569654226303, 0.018303975462913513, 0.014082683250308037,
- -0.07330722361803055, 0.10131990909576416, 0.04716518148779869, -0.02494186908006668,
- -0.005387358367443085, 0.049248047173023224, 0.05254845321178436, 0.03440424054861069,
- -0.007061620242893696, 0.01679854840040207, -0.02654845640063286, -0.04721058905124664,
- 0.03968586027622223, 0.037832438945770264, 0.02692459337413311, 0.06334927678108215,
- -0.08186842501163483, -0.023123353719711304, -0.048644840717315674,
- -0.06978359073400497, -0.015408210456371307, -0.03723141551017761, 0.0857865959405899,
- 0.08137136697769165, 0.05506780743598938, 0.0517280250787735, 0.06346474587917328,
- 0.03344321995973587, 0.036610621958971024, 0.050350338220596313, 0.06718263030052185,
- -0.040846262127161026, 0.02991042472422123, -0.005675433203577995,
- -0.013051966205239296, 0.02442678064107895, 0.00918794795870781, -0.060877226293087006,
- -0.019692938774824142, -0.06296689063310623, -0.009447474032640457, -0.0866030603647232,
- -0.12137405574321747, -0.00048416623030789196, 0.001435586018487811,
- -0.06867913901805878, -0.06512525677680969, -0.0648767352104187, 0.024307698011398315,
- 0.04680127650499344, -0.02858595736324787, -0.03207743540406227, -0.10392096638679504,
- 0.04363349452614784, 0.008449859917163849, 0.0495702400803566, -0.02005894109606743,
- -0.008569627068936825, -0.016992934048175812, -0.08496254682540894,
- 0.002066853456199169, 0.0007518548518419266, -0.043199874460697174,
- -0.04185602068901062, -0.06558902561664581, -0.06113474816083908, -0.04339492321014404,
- 0.027949977666139603, -0.03369917720556259, 0.004088990390300751, 0.021516062319278717,
- 0.04138587415218353, -0.0509331189095974, 0.0046901339665055275, 0.03855817764997482,
- -0.036902137100696564, -0.008821338415145874, 0.07364147901535034,
- -0.028854578733444214, 0.028909903019666672, -0.021933497861027718,
- -0.07500365376472473, -0.049847882241010666, 0.015172425657510757,
- -0.047539643943309784, 0.05139333754777908, 0.012923980131745338,
- -0.0021903240121901035, -0.021474912762641907, -0.023971714079380035,
- 0.02524469792842865, -0.0799894630908966, -0.08582909405231476, -0.09411712735891342,
- 0.07388453930616379, 0.015478594228625298, 0.0019429901149123907, 0.01015395950525999,
- -0.0750965029001236, 0.033314235508441925, -0.015729328617453575, 0.0391274020075798,
- 0.007187162525951862, 0.053968895226716995, 0.015166068449616432, 0.05083915963768959,
- 0.05356993153691292, -0.06938962638378143, 0.04104021191596985, 0.07459166646003723,
- 0.40985357761383057, -0.12413007020950317, 0.09936565160751343, 0.09554801881313324,
- 0.055505722761154175, 0.02788924053311348, -0.05474136769771576, 0.08232133090496063,
- 0.10394614934921265, 0.13622291386127472, 0.11065123975276947, -0.05286678299307823,
- -0.010887721553444862, -0.13371795415878296, 0.08162999898195267, -0.007609304040670395,
- 0.022573620080947876, -0.009502755478024483, -0.05762825161218643,
- -0.028441963717341423, 0.056139107793569565, -0.02037860080599785, 0.04871144890785217,
- -0.003162706270813942, -0.06745937466621399, 0.03443074971437454, 0.022138608619570732,
- 0.026032565161585808, -0.0060907513834536076, 0.03144531697034836,
- -0.009208805859088898, 0.06413698196411133, -0.010620005428791046, 0.05104147642850876,
- -0.08418209850788116, 0.043858472257852554, -0.0896921455860138, -0.0720982477068901,
- 0.07339705526828766, 0.019052952527999878, 0.02676377445459366, 0.040984027087688446,
- -0.018256787210702896, 0.05920609086751938, -0.0595855712890625, -0.055207401514053345,
- 0.041268784552812576, 0.07780963182449341, 0.038991041481494904, 0.05086365342140198,
- 0.14031559228897095, -0.02618536725640297, -0.014882883056998253, -0.04266449436545372,
- 0.03949177637696266, 0.10181975364685059, 0.024942003190517426, -0.0007866229861974716,
- 0.05173536390066147, -0.034314218908548355, 0.014869468286633492, -0.03881742060184479,
- -0.07353468239307404, 0.012040493078529835, -0.02144484780728817, 0.05670170485973358,
- 0.05114402994513512, -0.040644507855176926, -0.12908020615577698, -0.02576357312500477,
- -0.05953247845172882, 0.008197376504540443, 0.10535679012537003, -0.07579954713582993,
- 0.04589085280895233, 0.025907177478075027, 0.03399461880326271, -0.003228111658245325,
- -0.06288326531648636, 0.008866595104336739, -0.023872900754213333, 0.028335802257061005,
- 0.05275937169790268, 0.05090927332639694, -0.052733682096004486, 0.07629521936178207,
- -0.07924558967351913, 0.06598010659217834, 0.052365437150001526, -0.02745281718671322,
- 0.04552745819091797, -0.005220082122832537, -0.014485171064734459, 0.004994090646505356,
- -0.059675272554159164, -0.030928224325180054, -0.05991736054420471,
- -0.0024445452727377415, -0.07630802690982819, -0.024986540898680687,
- -0.031390462070703506, -0.08814240992069244, 0.025051292032003403, -0.07487837970256805,
- -0.007224284578114748, -0.02251981385052204, -0.03982752561569214, -0.00948142260313034,
- 0.029254447668790817, 0.03937017172574997, -0.1625656932592392, 0.0033553726971149445,
- 0.012098461389541626, 0.07137922942638397, -0.002630986040458083, -0.04256504029035568,
- 0.03013090044260025, 0.07042565196752548, 0.039430826902389526, -0.04871082305908203,
- -0.04093681275844574, -0.038304999470710754, 0.043450113385915756, -0.09105612337589264,
- -0.3244784474372864, 0.07752363383769989, -0.034802403301000595, 0.06211905926465988,
- 0.020914480090141296, -0.0550607405602932, 0.02572857216000557, 0.042410820722579956,
- -0.032405585050582886, 0.06020437180995941, -0.045590028166770935, 0.05132734775543213,
- -0.014525073580443859, -0.0609234943985939, -0.007847316563129425,
- -0.023646894842386246, -0.020577766001224518, 0.03222845867276192,
- -0.019822286441922188, -0.05991167947649956, -0.1121562272310257,
- -0.0025381273590028286, -0.05075918510556221, 0.01056489534676075, 0.03857693076133728,
- 0.024528224021196365, -0.06119823455810547, -0.06401477754116058, 0.05742129310965538,
- 0.05854880064725876, -0.0010923068039119244, -0.046409137547016144,
- -0.009171847254037857, 0.040345679968595505, -0.024789959192276, 0.10266771912574768,
- 0.046530745923519135, 0.02579929679632187, -0.07662270963191986, 0.06686962395906448,
- 0.060746125876903534, 0.18846087157726288, 0.03802698478102684, -0.0038177762180566788,
- 0.030938420444726944, 0.12615299224853516, 0.03406938537955284, 0.08247508108615875,
- -0.044008828699588776, -0.010809320025146008, -0.004163529723882675,
- 0.008523904718458652, 0.11189150810241699, -0.06294108927249908, -0.01683288812637329,
- -0.06979642063379288, -0.018144801259040833, -0.029814789071679115,
- -0.027039308100938797, 0.21043601632118225, -0.007775881793349981,
- -0.0021172354463487864, 0.03234832361340523, -0.03575003519654274,
- -0.00042492058128118515, -0.08948668837547302, -0.1356969177722931,
- -0.02416488341987133, 0.019042320549488068, 0.05495879054069519, -0.05815047770738602,
- -0.11513998359441757, -0.020952997729182243, -0.02811381407082081, 0.024898141622543335,
- 0.12154339253902435, -0.09606750309467316, 0.0847761332988739, -0.038554903119802475,
- 0.12354221940040588, 0.02634347788989544, -0.002746964804828167, 0.05931611359119415,
- 0.12187054753303528, 0.011891499161720276, 0.019072242081165314, -0.03243457153439522,
- -0.08177198469638824, -0.04285155236721039, 0.14638791978359222, -0.016340365633368492,
- 0.11343935132026672, 0.08237207680940628, -0.031933221966028214, -0.0618557408452034,
- 0.034855522215366364, -0.03319936990737915, 0.0023026354610919952, -0.3885008990764618,
- -0.05441883206367493, 0.12973955273628235, -0.01062118448317051, 0.005245289299637079,
- 0.05500207841396332, -0.002284339629113674, -0.041525859385728836,
- -0.020208492875099182, -0.07573457062244415, 0.15154844522476196, 0.021196847781538963,
- 0.08456338942050934, -0.08485361933708191, 0.017709193751215935, 0.06873124092817307,
- 0.027098622173070908, -0.0012453468516469002, 0.017274420708417892,
- -0.19627507030963898, 0.00290960306301713, -0.031228551641106606, 0.16591313481330872,
- 0.01239527016878128, 0.04001578688621521, 0.051906730979681015, -0.0478723905980587,
- -0.008552598766982555, 0.04980470985174179, -0.007528786081820726, 0.03156588226556778,
- 0.006688491906970739, -0.030307525768876076, 0.08250918984413147, 0.0752442479133606,
- 0.07201313227415085, -0.0439532995223999, 11.840108871459961, 0.04477160423994064,
- 0.07045244425535202, -0.10708902776241302, -0.007787144742906094, -0.03605622053146362,
- 0.004672756418585777, -0.06547385454177856, 0.1031569242477417, 0.1305614858865738,
- -0.027180884033441544, -0.0636758804321289, -0.038435209542512894,
- -0.022818071767687798, 0.016481466591358185, -0.002173616550862789,
- -0.032347045838832855, -0.08139598369598389, 0.029697321355342865, -0.05232797563076019,
- -0.06454908102750778, 0.018222318962216377, 0.06956369429826736, 0.0022863708436489105,
- -0.08556320518255234, 0.029508110135793686, 0.005455467849969864, 0.009949048049747944,
- -0.03902637958526611, 0.029781069606542587, 0.012873444706201553, -0.04074665158987045,
- 0.11515214294195175, 0.037171587347984314, 0.017216619104146957, 0.057502422481775284,
- 0.037425532937049866, 0.04390738159418106, 0.04411737620830536, 0.05707878619432449,
- 0.0200812891125679, 0.051913365721702576, -0.03989099711179733, 0.08719421923160553,
- 0.033856142312288284, 0.04889524728059769, 0.02017831802368164, 0.09014556556940079,
- 0.003666411619633436, 0.07360809296369553, 0.08893145620822906, 0.021005811169743538,
- 0.06552112102508545, 0.026104334741830826, 0.017455726861953735, 0.034619204699993134,
- 0.023971863090991974, -0.0586455874145031, 0.07744424045085907, 0.07412965595722198,
- -0.05498899891972542, 0.12343800812959671, -0.011321799829602242, 0.10164742171764374,
- 0.01984967105090618, 0.05055667459964752, 0.054539963603019714, 0.10942445695400238,
- -0.1644703447818756, -0.06689853966236115, 0.01846848428249359, -0.08300784230232239,
- -0.05698414891958237, 0.07546171545982361, 0.03985150158405304, 0.02524970844388008,
- 0.10538116097450256, -0.0385257825255394, 0.03426060453057289, -0.03593063727021217,
- 0.007099146954715252, 0.04732224717736244, -0.04480130970478058, 0.016829902306199074,
- 0.06018008664250374, -0.010398821905255318, 0.08154051005840302, 0.1238255649805069,
- -0.020777510479092598, -0.07100073993206024, -0.023388495668768883, 0.11899390816688538,
- 0.03688637539744377, -0.06842058151960373, 0.018924150615930557, -0.06777599453926086,
- -0.014826885424554348, -0.10903561115264893, 0.09545218199491501, 0.11521672457456589,
- -0.029904842376708984, -0.022150076925754547, -0.034987322986125946,
- 0.06397029757499695, 0.015644775703549385, 0.029417887330055237, -0.07063374668359756,
- -0.008711569011211395, 0.020688770338892937, 0.05118247866630554, -0.023779194802045822,
- 0.10503140091896057, 0.039353907108306885, -0.07162292301654816, 0.04058433696627617,
- 0.06054091826081276, -0.055459484457969666, -0.01620100624859333, 0.06644058227539062,
- 0.06330496817827225, -0.07884868234395981, -0.04588409513235092, -0.04525492712855339,
- -0.035068683326244354, 0.012424461543560028, -0.04371168464422226, 0.013616016134619713,
- 0.010488668456673622, -0.07546830922365189, -0.03171946108341217, 0.04801261052489281,
- 0.047807782888412476, 0.10476449131965637, -0.00018202746286988258, 0.06545443087816238,
- -0.06129354611039162, -0.09195630252361298, 0.0507889986038208, 0.052398763597011566,
- 0.0770452618598938, -0.07055243104696274, -0.011269422248005867, -0.043819278478622437,
- -0.07737292349338531, 0.02139735221862793, 0.11719617247581482, 0.03872087597846985,
- 0.030102265998721123, 0.012118027545511723, -0.1055164635181427, -0.031491830945014954,
- 0.1434423327445984, 0.017605606466531754, 0.013770741410553455, 0.02646389603614807,
- -0.038376979529857635, -0.034876126796007156, 0.13077886402606964,
- -0.033479224890470505, -0.016198324039578438, 0.02094520628452301, -0.15460026264190674,
- 0.09895801544189453, 0.07617125660181046, 0.036230266094207764, 0.06787383556365967,
- 0.02088131755590439, 0.019229069352149963, 0.012822537682950497, 0.0052606500685215,
- 0.03385355323553085, -0.0514695942401886, -0.0789303332567215, -0.09877980500459671,
- -0.025443965569138527, 0.11076641082763672, 0.06478039175271988, -0.13287077844142914,
- 0.0047833723947405815, -0.03802545368671417
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 260,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Tom McKay"],
- "epoch_date_downloaded": 1659312000,
- "epoch_date_modified": 1659312000,
- "epoch_date_submitted": 1658966400,
- "flag": null,
- "report_number": 1831,
- "source_domain": "gizmodo.com",
- "submitters": ["Jodi Masters-Gonzales"],
- "title": "U.S. Government Is Using an Algorithm to Flag American Citizens for Denaturalization: Report",
- "url": "https://gizmodo.com/u-s-government-is-using-an-algorithm-to-flag-american-1847565703"
- },
- {
- "__typename": "Report",
- "authors": ["Sam Biddle", "Maryam Saleh"],
- "epoch_date_downloaded": 1659312000,
- "epoch_date_modified": 1659312000,
- "epoch_date_submitted": 1658966400,
- "flag": null,
- "report_number": 1823,
- "source_domain": "theintercept.com",
- "submitters": ["Daniel Atherton (BNH.ai)"],
- "title": "Little-Known Federal Software Can Trigger Revocation of Citizenship",
- "url": "https://theintercept.com/2021/08/25/atlas-citizenship-denaturalization-homeland-security/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "society-for-the-prevention-of-cruelty-to-animals",
- "name": "Society for the Prevention of Cruelty to Animals"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "knightscope",
- "name": "Knightscope"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "san-francisco-homeless-people",
- "name": "San Francisco homeless people"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1832, 1830, 1829, 1828, 1827, 1826, 1825, 1824],
- "vector": [
- -0.06958101689815521, 0.05010533705353737, 0.023836810141801834, -0.12975287437438965,
- 0.08535712957382202, -0.019161883741617203, -0.018035082146525383, 0.01619040034711361,
- 0.09003904461860657, -0.11719784885644913, 0.011201462708413601, 0.028950095176696777,
- 0.03484972193837166, -0.07439921796321869, 0.04574107378721237, -0.08823487162590027,
- -0.06645883619785309, -0.023485422134399414, -0.021232469007372856, -0.1640760600566864,
- -0.05685274302959442, -0.018729856237769127, 0.03198755159974098, 0.10625147074460983,
- -0.033467698842287064, 0.023161722347140312, 0.11329948902130127, 0.1305375099182129,
- -0.0779864490032196, 0.03835297003388405, -0.029229160398244858, -0.09395988285541534,
- 0.14091302454471588, 0.033402279019355774, 0.0025626651477068663, 0.11664830148220062,
- 0.03546290099620819, -0.042401161044836044, 0.00628810515627265, -0.003981826826930046,
- 0.02500326558947563, 0.2034529149532318, -0.03031555376946926, -0.027516566216945648,
- 0.05784101411700249, -0.037438489496707916, 0.005674800369888544, 0.05103132128715515,
- -0.007887671701610088, 0.022475533187389374, -0.015155503526329994,
- 0.028260769322514534, -0.039748769253492355, 0.04080219939351082, -0.10729731619358063,
- 0.06665883958339691, 0.043690696358680725, -0.0018172846175730228, 0.036580104380846024,
- -0.051606979221105576, -0.04415038228034973, -0.2202293872833252, -0.037965986877679825,
- -0.06541626155376434, 0.07254347950220108, -0.07114708423614502, -0.0506085641682148,
- 0.06395111978054047, -0.011412747204303741, 0.05698657035827637, 0.04608426243066788,
- -0.006062858738005161, 0.0015103842597454786, -0.03477266803383827,
- -0.015263425186276436, -0.018353629857301712, -0.005552078131586313,
- 0.20585095882415771, -0.12572751939296722, 0.014308572746813297, 0.11087219417095184,
- -0.10917100310325623, 0.4067728817462921, 0.027145061641931534, -0.024841884151101112,
- 0.0015108005609363317, 0.07697688788175583, 0.035158660262823105, 0.04788834601640701,
- 0.05855380743741989, -0.012136157602071762, 0.01654646173119545, -0.04664316773414612,
- 0.024732079356908798, 0.06237687170505524, 0.02606702409684658, -0.017050860449671745,
- 0.02172558382153511, -0.02202014811336994, -0.06839840114116669, 0.004525267984718084,
- -0.03789624571800232, 0.056875843554735184, 0.05916166305541992, -0.028522532433271408,
- 0.010874781757593155, 0.08513735979795456, -0.06344061344861984, 0.04126095026731491,
- -0.06677383929491043, 0.019753549247980118, 0.010638725943863392, 0.054631587117910385,
- -0.01584058441221714, 0.028937770053744316, -0.04857860505580902, 0.015929657965898514,
- 0.04739305004477501, 0.09992202371358871, 0.01488551590591669, -0.023991325870156288,
- 0.07463358342647552, 0.11061777919530869, -0.06006342172622681, -0.009569769725203514,
- -0.04418668895959854, -0.037971824407577515, -0.012951422482728958,
- -0.022227590903639793, 0.045288003981113434, -0.061202049255371094, -0.2419757843017578,
- 0.0032098449300974607, 0.08669743686914444, 0.02225688472390175, -0.008915296755731106,
- 0.0141534935683012, -0.09007677435874939, 0.04644395783543587, -0.02953355386853218,
- -0.044081803411245346, 0.07899773865938187, 0.024562299251556396, 0.03289303928613663,
- 0.13094158470630646, 0.022946758195757866, -0.05313768982887268, -0.06122913584113121,
- -0.011127102188766003, -0.0040929582901299, 0.10354532301425934, -0.14434446394443512,
- -0.04608297348022461, 0.03466887027025223, -0.0211679395288229, 0.6477046012878418,
- 0.07756178826093674, 0.17972341179847717, -0.019458798691630363, -0.030006475746631622,
- 0.18179576098918915, -0.016104701906442642, 0.04716125875711441, -0.08666802942752838,
- -0.05736665427684784, 0.01799151301383972, -0.06016945466399193, -0.03479320928454399,
- 0.019324729219079018, 0.023902341723442078, 0.10140669345855713, 0.03696971386671066,
- 0.1049288734793663, 0.02422524243593216, -0.09421239793300629, -0.007303349673748016,
- 0.07159063220024109, 0.001392232719808817, -0.13254041969776154, -0.04090753570199013,
- 0.03818870335817337, 0.09009043127298355, -0.0815647691488266, 0.012669292278587818,
- -0.05560765787959099, 0.07156483083963394, -0.04196108877658844, 0.0373433493077755,
- -0.018193840980529785, 0.05368387699127197, 0.042433470487594604, 0.07595586776733398,
- -0.012686877511441708, -0.09917538613080978, -0.06127934157848358, 0.13653811812400818,
- 0.018590154126286507, -0.03011278063058853, 0.10695250332355499, -0.08902006596326828,
- 0.06864529103040695, 0.006625740323215723, 0.1439865678548813, -0.12368200719356537,
- -0.002015883568674326, 0.006888584233820438, -0.0019021942280232906,
- 0.04496574401855469, 0.015637872740626335, -0.07291000336408615, -0.08314952254295349,
- 0.06461647897958755, -0.0005951307830400765, 0.07543820887804031, 0.04917600750923157,
- -0.06773748248815536, 0.042474452406167984, 0.06381623446941376, 0.016018571332097054,
- -0.025037026032805443, 0.07723183929920197, 0.054996151477098465, -0.027580413967370987,
- -0.008129016496241093, 0.03707079589366913, 0.03810993209481239, 0.029071766883134842,
- 0.015513594262301922, 0.06710007786750793, -0.035833701491355896, -0.0441477932035923,
- 0.019062405452132225, 0.0344201885163784, 0.013089426793158054, 0.08907761424779892,
- -0.08399423956871033, -0.05096690356731415, -0.015977157279849052, -0.03588254749774933,
- -0.0011370788561180234, -0.05552047863602638, 0.08120717108249664, 0.0857270359992981,
- 0.08797372877597809, 0.04222995787858963, 0.07844602316617966, 0.0829564705491066,
- 0.0724911317229271, 0.03301820531487465, 0.05067935958504677, -0.04144439846277237,
- -0.04282878339290619, -0.034576866775751114, -0.005825746338814497,
- 0.034002888947725296, 0.050430864095687866, -0.0683130994439125, -0.0447346456348896,
- -0.05052202194929123, -0.03271602839231491, -0.10491923987865448, -0.028790947049856186,
- -0.011430267244577408, 0.003011239692568779, -0.0796193778514862, -0.11510924994945526,
- -0.0896337553858757, -0.004785564728081226, 0.08789238333702087, -0.03556378558278084,
- -0.009706342592835426, -0.12565648555755615, 0.04530903324484825, -0.008641553111374378,
- 0.03419272229075432, -0.009264588356018066, 0.03532377630472183, -0.014989812858402729,
- -0.05945133417844772, 0.01584557443857193, -0.026846248656511307, -0.04365009441971779,
- -0.04145596921443939, -0.020785821601748466, -0.02788197621703148, -0.01637807860970497,
- 0.006597638130187988, -0.03606046736240387, 0.020320579409599304, 0.04324128106236458,
- 0.059006039053201675, -0.02275284379720688, 0.00556156923994422, 0.0527520589530468,
- -0.015785271301865578, -0.013166242279112339, 0.08981436491012573,
- -0.023745479062199593, 0.043979428708553314, -0.0005277781165204942,
- -0.0778489038348198, -0.046617571264505386, 0.004345693625509739, -0.03623872250318527,
- 0.06575115770101547, -0.03889472782611847, -0.013404525816440582, -0.047968752682209015,
- 0.010539043694734573, 0.08747143298387527, -0.05354704707860947, -0.08337967842817307,
- -0.08990984410047531, 0.12754425406455994, -0.008775986731052399, 0.009689532220363617,
- 0.02584913931787014, -0.07702847570180893, 0.05727701634168625, 0.005797698628157377,
- 0.00999416783452034, 0.027045397087931633, 0.046864643692970276, -0.03666020184755325,
- 0.04509192332625389, 0.05554806813597679, -0.010469495318830013, 0.012277324683964252,
- 0.07773683220148087, 0.4286210834980011, -0.2243272215127945, 0.09259302169084549,
- 0.09437139332294464, 0.04297474026679993, 0.059069715440273285, -0.01923326775431633,
- 0.059694644063711166, 0.06672012805938721, 0.12245644629001617, 0.08105358481407166,
- -0.046548500657081604, -0.008681905455887318, -0.0667308121919632, 0.08631408959627151,
- 0.03073767013847828, 0.020948044955730438, -0.0011679085437208414, -0.05218461528420448,
- -0.02805398963391781, 0.018886787816882133, -0.04804309457540512, 0.003228825982660055,
- 0.007470323704183102, -0.08820712566375732, 0.04557766765356064, 0.025660095736384392,
- 0.07212571054697037, -0.04432619363069534, 0.02489282563328743, -0.005875029601156712,
- 0.05819288641214371, 0.0028932015411555767, 0.06135481223464012, -0.08447875827550888,
- 0.04124715179204941, -0.08273043483495712, -0.09216470271348953, 0.08264665305614471,
- -0.02604859508574009, 0.058419112116098404, 0.05702011659741402, -0.04668920487165451,
- 0.024877212941646576, -0.01743510365486145, -0.05342536047101021, 0.017006240785121918,
- 0.021700309589505196, 0.06396179646253586, 0.11029437929391861, 0.16835592687129974,
- -0.04402525722980499, -0.05996917933225632, -0.06682781875133514, 0.07665427774190903,
- 0.08275359869003296, -0.032250478863716125, 0.02315722405910492, 0.02901024930179119,
- -0.02142610214650631, -0.006160053890198469, -0.029340656474232674,
- -0.050603777170181274, -0.009290143847465515, -0.04229056090116501, 0.07002820819616318,
- 0.025626791641116142, -0.04776439070701599, -0.13251620531082153, -0.028682773932814598,
- -0.028913037851452827, -0.0005406911368481815, 0.12144909799098969,
- -0.02696315385401249, 0.012696616351604462, -0.006450112909078598, 0.01803112030029297,
- 0.016106879338622093, -0.07177459448575974, 0.0300399512052536, -0.03695018216967583,
- 0.050494223833084106, 0.07517759501934052, 0.04128328710794449, -0.031151479110121727,
- 0.02660755254328251, -0.11788689345121384, 0.04933730885386467, 0.03922281414270401,
- -0.02697688154876232, 0.05073182284832001, -0.03158276528120041, 0.03288522735238075,
- 0.0197106022387743, -0.04977935552597046, 0.029667146503925323, -0.01938295178115368,
- -0.07303368300199509, -0.08982954174280167, -0.0660325288772583, -0.0478188581764698,
- -0.0656287744641304, 0.06992831081151962, -0.12734846770763397, -0.006435849703848362,
- -0.044985901564359665, -0.024804741144180298, 0.019599666818976402, 0.02548127807676792,
- 0.02681010402739048, -0.1488601565361023, 0.01843968592584133, -0.01991892047226429,
- 0.06545361876487732, -0.011996015906333923, -0.08289481699466705, 0.03729798272252083,
- 0.08091511577367783, 0.06048038229346275, -0.03679260239005089, 0.013181067071855068,
- -0.06630934774875641, 0.06041534245014191, -0.1482531577348709, -0.468161404132843,
- 0.06842502951622009, -0.014530062675476074, 0.04660775512456894, 0.019045142456889153,
- -0.06737562268972397, 0.04087940603494644, 0.0017858264036476612, -0.04033128172159195,
- 0.08273420482873917, -0.0529167577624321, 0.0005978931440040469, 0.010673885233700275,
- -0.0683898776769638, -0.027721373364329338, -0.08945596218109131, -0.05395055189728737,
- 0.017808182165026665, 0.004590724594891071, -0.06584478914737701, -0.1134062111377716,
- 0.011099383234977722, 0.0039187646470963955, 0.016240954399108887, -0.02171921171247959,
- 0.022302664816379547, -0.05047629028558731, -0.06160280108451843, 0.01337368693202734,
- 0.04872049018740654, 0.013513297773897648, -0.07049892842769623, -0.024417176842689514,
- 0.07378996163606644, -0.008948620408773422, 0.1352548748254776, 0.0362270250916481,
- 0.038802750408649445, -0.06283062696456909, 0.03130220249295235, 0.05124993994832039,
- 0.18494677543640137, -0.026309339329600334, 0.061730366200208664, -0.006796369329094887,
- 0.12028671056032181, 0.024752972647547722, 0.024861888960003853, -0.041627753525972366,
- -0.006147077307105064, 0.028546104207634926, -0.021190889179706573, 0.07939329743385315,
- -0.06678438186645508, -0.03801475837826729, -0.024018093943595886,
- -0.044044069945812225, -0.04374438524246216, 0.034855879843235016, 0.18754926323890686,
- 0.040597837418317795, 0.026963580399751663, 0.024481412023305893, -0.06812987476587296,
- 0.028110291808843613, -0.051754020154476166, -0.06654012203216553,
- -0.022643519565463066, -0.017714671790599823, 0.0029879198409616947,
- -0.035803914070129395, -0.1177651658654213, -0.011495907790958881,
- -0.0034466534852981567, -0.00029277653084136546, 0.1127261072397232,
- -0.052013278007507324, 0.023210931569337845, -0.02077222242951393, 0.16144555807113647,
- 0.03735505789518356, 0.03084777109324932, 0.0629979595541954, 0.10362924635410309,
- 0.025520753115415573, 0.018298693001270294, -0.08940540999174118, -0.05668152496218681,
- -0.014367945492267609, 0.1306854635477066, -0.07384662330150604, 0.09352133423089981,
- 0.01799215003848076, -0.010237119160592556, -0.05236528813838959, 0.05132173001766205,
- -0.0018846162129193544, 0.01187874935567379, -0.4577520191669464, -0.017685525119304657,
- 0.12397319823503494, -0.009160296991467476, 0.025111598894000053, 0.11228816211223602,
- 0.010668667033314705, -0.022588718682527542, -0.023577366024255753,
- -0.06527414917945862, 0.10064584016799927, 0.017173942178487778, 0.05329829454421997,
- -0.09594383090734482, 0.046122848987579346, 0.09383341670036316, 0.012880961410701275,
- -0.026450950652360916, 0.05710820481181145, -0.2742040753364563, 0.017695873975753784,
- -0.022272158414125443, 0.1422109752893448, 0.0041615343652665615, 0.014017592184245586,
- 0.06811617314815521, -0.03767510876059532, 0.01696404442191124, 0.07648761570453644,
- 0.019483663141727448, 0.04178466275334358, -0.011116908863186836, -0.047026440501213074,
- 0.09553747624158859, 0.10338641703128815, 0.0915413349866867, 0.005775525700300932,
- 12.045846939086914, 0.07835149765014648, 0.09754949808120728, -0.10500828921794891,
- 0.021825307980179787, -0.05535046011209488, 0.027359135448932648, -0.06988406926393509,
- 0.06671100854873657, 0.11386563628911972, -0.009146673604846, -0.041970428079366684,
- -0.04202723875641823, -0.07676141709089279, 0.018923547118902206, -0.06538098305463791,
- -0.04665765538811684, -0.040676239877939224, 0.03822840377688408, -0.05555754527449608,
- -0.02821606956422329, 0.06799784302711487, 0.05164559185504913, 0.03126949816942215,
- -0.0966058298945427, 0.03944366052746773, 0.016704954206943512, -0.010142635554075241,
- -0.02161179482936859, -0.0007867069798521698, -0.00488579785451293, 0.02348943240940571,
- 0.05730083957314491, 0.010648399591445923, 0.01289043202996254, 0.06025978922843933,
- 0.05892710015177727, 0.05113999918103218, 0.020832888782024384, 0.04459337890148163,
- 0.013861220329999924, 0.03325521573424339, -0.012401752173900604, 0.03341814875602722,
- 0.05389561876654625, 0.02879527397453785, 0.017869800329208374, 0.12808173894882202,
- 0.013840815983712673, 0.051983315497636795, 0.10580553859472275, -0.02782299928367138,
- 0.10904543846845627, 0.022242479026317596, 0.000694885035045445, 0.05275125429034233,
- 0.016444232314825058, -0.05497916787862778, 0.06502091884613037, 0.03218141943216324,
- -0.051765937358140945, 0.11976590752601624, 0.015533915720880032, 0.11075077950954437,
- -0.009646986611187458, 0.054517097771167755, 0.055123426020145416, 0.08233343064785004,
- -0.1458107829093933, -0.07406986504793167, 0.03169330582022667, -0.10224927961826324,
- -0.059756167232990265, 0.04921174421906471, 0.09306672215461731, -0.02017986588180065,
- 0.07383172959089279, -0.04485821723937988, 0.02458064816892147, -0.02689286880195141,
- 0.013765504583716393, 0.07231403887271881, -0.011824073269963264, 0.005360791459679604,
- 0.053639162331819534, 0.017406031489372253, 0.0942913293838501, 0.10392771661281586,
- -0.021245980635285378, -0.10783572494983673, -0.07061626762151718, 0.10020099580287933,
- -0.046626873314380646, -0.0672602504491806, 0.001472547766752541, -0.02677365019917488,
- 0.039997801184654236, -0.14564557373523712, 0.05608983337879181, 0.10132266581058502,
- -0.0575752854347229, -0.03373818099498749, -0.03589630872011185, 0.0904613584280014,
- 0.0036468873731791973, 0.04541446268558502, -0.0499323345720768, 0.015039538033306599,
- 0.02792065404355526, 0.031855132430791855, -0.04097112640738487, 0.0823921412229538,
- 0.04828799515962601, -0.047059569507837296, 0.03507181257009506, 0.0708993524312973,
- -0.03727294132113457, -0.03724433854222298, 0.06007353961467743, 0.03842068463563919,
- -0.07422209531068802, -0.06261231005191803, -0.04554186761379242, -0.046842243522405624,
- -0.024510737508535385, -0.0390983484685421, -0.0021678239572793245, 0.02770175412297249,
- -0.07078125327825546, -0.03962063044309616, 0.046911098062992096, 0.03241076320409775,
- 0.10925919562578201, -0.0007136964704841375, 0.08122795820236206, -0.0733044445514679,
- -0.029649021103978157, 0.07128868997097015, 0.05613771453499794, 0.08557888865470886,
- -0.020906206220388412, -0.03358829393982887, -0.05980251356959343, -0.07030394673347473,
- 0.022671259939670563, 0.1315101534128189, 0.01584022492170334, 0.031767431646585464,
- 0.022735681384801865, -0.06861014664173126, -0.03899231180548668, 0.09894652664661407,
- 0.03293384611606598, 0.003295490751042962, 0.024792581796646118, -0.0914156585931778,
- -0.036322735249996185, 0.10020345449447632, -0.04644680395722389, 0.004586807917803526,
- 0.0006199274212121964, -0.03828614950180054, 0.0691632479429245, 0.09610331058502197,
- 0.0473492257297039, 0.062198102474212646, 0.01821834035217762, -0.002682362450286746,
- 0.004878224339336157, -0.04998287558555603, 0.01225647609680891, -0.04338262975215912,
- -0.0945073738694191, -0.09118316322565079, 0.028811901807785034, 0.08092417567968369,
- 0.011358551681041718, -0.10000358521938324, -0.006613113451749086, -0.033454909920692444
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 261,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Matt Simon"],
- "epoch_date_downloaded": 1657065600,
- "epoch_date_modified": 1659312000,
- "epoch_date_submitted": 1657065600,
- "flag": null,
- "report_number": 1832,
- "source_domain": "wired.com",
- "submitters": ["Kate Perkins"],
- "title": "The Tricky Ethics of Knightscope's Crime-Fighting Robots",
- "url": "https://www.wired.com/story/the-tricky-ethics-of-knightscopes-crime-fighting-robots/"
- },
- {
- "__typename": "Report",
- "authors": ["Erin McCormick"],
- "epoch_date_downloaded": 1657065600,
- "epoch_date_modified": 1659312000,
- "epoch_date_submitted": 1657065600,
- "flag": null,
- "report_number": 1830,
- "source_domain": "theguardian.com",
- "submitters": ["Kate Perkins"],
- "title": "Big Brother on wheels? Fired security robot divides local homeless people",
- "url": "https://www.theguardian.com/us-news/2017/dec/16/san-francisco-homeless-robot"
- },
- {
- "__typename": "Report",
- "authors": ["Peter Holley"],
- "epoch_date_downloaded": 1657065600,
- "epoch_date_modified": 1659312000,
- "epoch_date_submitted": 1657065600,
- "flag": null,
- "report_number": 1829,
- "source_domain": "washingtonpost.com",
- "submitters": ["Kate Perkins"],
- "title": "Crime-fighting robot retired after launching alleged ‘war on the homeless’",
- "url": "https://www.washingtonpost.com/news/innovations/wp/2017/12/14/crime-fighting-robot-retired-after-launching-alleged-war-on-the-homeless/"
- },
- {
- "__typename": "Report",
- "authors": ["Sarah Buhr"],
- "epoch_date_downloaded": 1657065600,
- "epoch_date_modified": 1659312000,
- "epoch_date_submitted": 1657065600,
- "flag": null,
- "report_number": 1828,
- "source_domain": "techcrunch.com",
- "submitters": ["Kate Perkins"],
- "title": "Security robots are being used to ward off San Francisco’s homeless population",
- "url": "https://techcrunch.com/2017/12/13/security-robots-are-being-used-to-ward-off-san-franciscos-homeless-population/"
- },
- {
- "__typename": "Report",
- "authors": ["Eleanor Gibson"],
- "epoch_date_downloaded": 1657065600,
- "epoch_date_modified": 1659312000,
- "epoch_date_submitted": 1657065600,
- "flag": null,
- "report_number": 1827,
- "source_domain": "dezeen.com",
- "submitters": ["Kate Perkins"],
- "title": "Security robot bullied and forced off the street in San Francisco",
- "url": "https://www.dezeen.com/2017/12/13/k5-knightscope-security-robot-sfspca-san-francisco-bullied-off-street/#"
- },
- {
- "__typename": "Report",
- "authors": ["Alisha Green"],
- "epoch_date_downloaded": 1657065600,
- "epoch_date_modified": 1659312000,
- "epoch_date_submitted": 1657065600,
- "flag": null,
- "report_number": 1826,
- "source_domain": "bizjournals.com",
- "submitters": ["Kate Perkins"],
- "title": "Security robot that deterred homeless encampments in the Mission gets rebuke from the city",
- "url": "https://www.bizjournals.com/sanfrancisco/news/2017/12/08/security-robot-homeless-spca-mission-san-francisco.html"
- },
- {
- "__typename": "Report",
- "authors": ["James Vincent"],
- "epoch_date_downloaded": 1657065600,
- "epoch_date_modified": 1659312000,
- "epoch_date_submitted": 1657065600,
- "flag": null,
- "report_number": 1825,
- "source_domain": "theverge.com",
- "submitters": ["Kate Perkins"],
- "title": "Animal shelter faces backlash after using robot to scare off homeless people",
- "url": "https://www.theverge.com/2017/12/13/16771148/robot-security-guard-scares-homeless-san-francisco"
- },
- {
- "__typename": "Report",
- "authors": ["Mike Murphy"],
- "epoch_date_downloaded": 1657065600,
- "epoch_date_modified": 1659312000,
- "epoch_date_submitted": 1657065600,
- "flag": null,
- "report_number": 1824,
- "source_domain": "qz.com",
- "submitters": ["Kate Perkins"],
- "title": "Robots are being used to shoo away homeless people in San Francisco",
- "url": "https://qz.com/1154649/a-knightscope-security-robot-is-being-used-to-shoo-away-homeless-people-in-san-francisco/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "boris-dayma",
- "name": "Boris Dayma"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "tanishq-abraham",
- "name": "Tanishq Abraham"
- },
- {
- "__typename": "Entity",
- "entity_id": "suraj-patil",
- "name": "Suraj Patil"
- },
- {
- "__typename": "Entity",
- "entity_id": "ritobrata-ghosh",
- "name": "Ritobrata Ghosh"
- },
- {
- "__typename": "Entity",
- "entity_id": "phuc-le-khac",
- "name": "Phúc Lê Khắc"
- },
- {
- "__typename": "Entity",
- "entity_id": "pedro-cuenca",
- "name": "Pedro Cuenca"
- },
- {
- "__typename": "Entity",
- "entity_id": "luke-melas",
- "name": "Luke Melas"
- },
- {
- "__typename": "Entity",
- "entity_id": "khalid-saifullah",
- "name": "Khalid Saifullah"
- },
- {
- "__typename": "Entity",
- "entity_id": "boris-dayma",
- "name": "Boris Dayma"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "underrepresented-groups",
- "name": "underrepresented groups"
- },
- {
- "__typename": "Entity",
- "entity_id": "minority-groups",
- "name": "Minority Groups"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1836, 1835, 1834, 1833],
- "vector": [
- -0.08398435264825821, 0.05206502228975296, -0.014082713052630424, -0.10814811289310455,
- 0.11322204023599625, -0.05832018703222275, -0.00016186098218895495,
- 0.051232967525720596, 0.07026337832212448, -0.14896708726882935, -0.03481549769639969,
- 0.045013949275016785, 0.03215518593788147, -0.08435874432325363, 0.024961985647678375,
- -0.05023473501205444, -0.11614501476287842, -0.010261477902531624, 0.013748444616794586,
- -0.1204916462302208, -0.10171965509653091, -0.006606391631066799, 0.015009241178631783,
- 0.09007923305034637, -0.03626953810453415, 0.018335122615098953, 0.10778968781232834,
- 0.12457288801670074, -0.07285742461681366, 0.05318932607769966, -0.03321756049990654,
- -0.06843991577625275, 0.12504594027996063, -0.023873919621109962, 0.0038189885672181845,
- 0.0825287252664566, 0.05706437677145004, -0.027361292392015457, -0.04224297031760216,
- -0.001224485575221479, 0.0368877612054348, 0.16337360441684723, -0.00223326263949275,
- -0.012702560983598232, 0.051839884370565414, -0.002129150088876486,
- 0.0036226953379809856, 0.024122513830661774, 0.0003057799767702818,
- 0.012973260134458542, 0.02625807374715805, -0.02396797388792038, -0.05705316737294197,
- 0.011791957542300224, -0.069375179708004, 0.08411496132612228, 0.05232281982898712,
- 0.03298462927341461, 0.0435333251953125, -0.07212330400943756, -0.006574736442416906,
- -0.12827400863170624, -0.044561080634593964, -0.05549566447734833, 0.0747869610786438,
- -0.07262144237756729, -0.02461657114326954, 0.02375362440943718, 0.005563514307141304,
- 0.05018528178334236, 0.04336625710129738, -0.06234680488705635, -0.03245067968964577,
- -0.027780946344137192, -0.029833300039172173, -0.009487506002187729,
- 0.029097946360707283, 0.22856706380844116, -0.09925030916929245, 0.043782491236925125,
- 0.08747109025716782, -0.10373519361019135, 0.2948421835899353, 0.04763077199459076,
- -0.011325419880449772, -0.006632693111896515, 0.10460804402828217, 0.033947259187698364,
- 0.027461901307106018, 0.018383366987109184, 0.026985684409737587, 0.03716368228197098,
- -0.04975702613592148, -0.0017975671216845512, 0.0739993005990982, 0.027527648955583572,
- -0.013365441001951694, -0.07981888949871063, -0.023098250851035118,
- -0.04732480272650719, -0.002895523328334093, -0.029293358325958252, 0.12626692652702332,
- 0.0645577684044838, -0.03014265187084675, 0.018519945442676544, 0.05591028928756714,
- -0.03414299339056015, 0.042245570570230484, -0.05322051793336868, 0.03678449988365173,
- 0.01212569884955883, 0.04967493563890457, 0.00008714798605069518, 0.009423092007637024,
- -0.05103764683008194, 0.0074896011501550674, 0.03375763073563576, 0.06059391051530838,
- 0.08685098588466644, -0.00018699723295867443, 0.06093667075037956, 0.10905244201421738,
- -0.059155479073524475, -0.03177547827363014, -0.03604568541049957, -0.0264308899641037,
- 0.0025869095697999, -0.01586879789829254, 0.029133297502994537, -0.04148898646235466,
- -0.20268547534942627, 0.008167718537151814, 0.05829864740371704, -0.023114841431379318,
- 0.0026676154229789972, 0.021148469299077988, -0.05736738070845604, 0.00870241317898035,
- -0.009200851432979107, 0.0003639821370597929, 0.04403729364275932, 0.03508714213967323,
- 0.04216364026069641, 0.08203770965337753, 0.014917965978384018, -0.017055340111255646,
- -0.07908845692873001, -0.00756929162889719, -0.04550330340862274, 0.08149034529924393,
- -0.1002427339553833, -0.021232910454273224, -0.009982400573790073, -0.01855188049376011,
- 0.6036093235015869, 0.08765973895788193, 0.1362774521112442, -0.005767798516899347,
- -0.0022160245571285486, 0.14197126030921936, -0.0322297029197216, 0.03261853754520416,
- -0.04792618006467819, -0.038551799952983856, -0.007191051729023457,
- -0.05797706916928291, -0.025025848299264908, 0.005704487673938274, 0.0237345602363348,
- 0.09001868963241577, 0.01915118843317032, 0.10697134584188461, 0.005011533387005329,
- -0.06757734715938568, -0.04028969258069992, 0.010562491603195667, 0.048072997480630875,
- -0.11805668473243713, -0.006737441755831242, 0.06752703338861465, 0.07770637422800064,
- -0.029642177745699883, -0.015833061188459396, -0.052480146288871765,
- 0.050831057131290436, -0.024500243365764618, 0.053240980952978134, -0.0057588005438447,
- 0.021795712411403656, 0.05339434742927551, 0.02584388293325901, -0.028489599004387856,
- -0.06856736540794373, -0.019144318997859955, 0.09459500759840012, -0.014410237781703472,
- -0.035029780119657516, 0.05998905003070831, -0.07300058007240295, 0.018888209015130997,
- -0.024786513298749924, 0.14492210745811462, -0.11090154200792313, 0.060664184391498566,
- -0.01866753399372101, 0.024181729182600975, 0.017905360087752342, -0.014452619478106499,
- -0.08593803644180298, -0.06651388108730316, 0.07172314822673798, 0.009323401376605034,
- 0.07173536717891693, 0.0380178838968277, -0.025818610563874245, 0.04526796191930771,
- 0.022775065153837204, 0.0030247527174651623, -0.06888057291507721, 0.07199149578809738,
- 0.034480851143598557, -0.03359346464276314, 0.0030103775206953287, 0.031341951340436935,
- -0.001242620637640357, 0.04852014034986496, -0.0013929370325058699,
- 0.029255574569106102, -0.0005783935775980353, -0.0067980606108903885,
- 0.0404992438852787, 0.03221490979194641, 0.06173258647322655, 0.04831352457404137,
- -0.09636026620864868, -0.05892297998070717, -0.04559475556015968, -0.03623384237289429,
- 0.018719926476478577, -0.04279547557234764, 0.0700371041893959, 0.08410568535327911,
- 0.07109931111335754, 0.019480621442198753, 0.03459350764751434, 0.05522394925355911,
- 0.04171975329518318, -0.007879477925598621, 0.05883361026644707, -0.030559049919247627,
- -0.03636353462934494, -0.037607744336128235, 0.0004550536395981908, 0.04827749729156494,
- -0.01400197483599186, -0.06988491117954254, -0.02568143419921398, -0.017275124788284302,
- -0.03655143827199936, -0.08941588550806046, -0.01734016090631485, 0.03231116011738777,
- 0.024018604308366776, -0.055635642260313034, -0.07113340497016907, -0.058259017765522,
- 0.01000414788722992, 0.037230879068374634, -0.0413990281522274, -0.0029536269139498472,
- -0.09327977895736694, 0.012077627703547478, 0.003487486857920885, 0.036116816103458405,
- -0.01128216739743948, 0.004267775919288397, -0.02363058179616928, -0.07483913004398346,
- 0.022872714325785637, 0.04279548302292824, -0.029057340696454048, -0.005513099487870932,
- -0.056338824331760406, -0.034674689173698425, -0.011357659474015236,
- -0.00280560040846467, -0.017383016645908356, 0.008095919154584408, 0.04198182746767998,
- 0.06344598531723022, -0.019335376098752022, -0.015026414766907692, 0.05479702726006508,
- -0.03479483723640442, -0.010586322285234928, 0.07160002738237381, -0.034049563109874725,
- 0.05294887721538544, -0.02717532590031624, -0.05319611355662346, -0.0818842202425003,
- -0.023542150855064392, -0.05028896406292915, 0.04720497131347656, -0.04141995683312416,
- 0.0018076892010867596, -0.01865183189511299, -0.003586959559470415, 0.054636400192976,
- -0.05656750500202179, -0.08275054395198822, -0.10004833340644836, 0.08606661856174469,
- -0.011449368670582771, 0.012339206412434578, 0.028874574229121208,
- -0.013644588179886341, 0.04800701141357422, 0.015251747332513332, 0.013495834544301033,
- 0.04691370576620102, 0.09374441206455231, -0.0014778263866901398, 0.02993357926607132,
- 0.0688028484582901, -0.011120450682938099, 0.017213892191648483, 0.06688451766967773,
- 0.3990740180015564, -0.21375727653503418, 0.09757805615663528, 0.09252996742725372,
- 0.006189074367284775, 0.040968284010887146, -0.039585936814546585, 0.07248955965042114,
- 0.04491503909230232, 0.09719470143318176, 0.11439984291791916, -0.0491769015789032,
- 0.03818094730377197, -0.03241599723696709, 0.051384229212999344, 0.020694125443696976,
- 0.01442381925880909, -0.001389691955409944, -0.042132776230573654,
- -0.010679470375180244, 0.05400378257036209, -0.02971550077199936, 0.025275859981775284,
- -0.03255752474069595, -0.024913819506764412, 0.010672216303646564, 0.055468156933784485,
- 0.057241301983594894, -0.02146616205573082, 0.046849172562360764, -0.01796940714120865,
- 0.04568281024694443, 0.028497915714979172, 0.03994937986135483, -0.08407324552536011,
- 0.06465395539999008, -0.07268733531236649, -0.1161993220448494, 0.050614312291145325,
- 0.032534342259168625, 0.05455096438527107, 0.036722756922245026, -0.032243695110082626,
- 0.04614165425300598, -0.02137007564306259, -0.014846366830170155, -0.038383882492780685,
- 0.06369143724441528, 0.012156806886196136, 0.06335873156785965, 0.1403452455997467,
- 0.0012131852563470602, 0.031316403299570084, -0.06650499254465103, 0.055464792996644974,
- 0.11052262783050537, -0.03693968057632446, 0.018480561673641205, -0.0005489144241437316,
- 0.0265149287879467, 0.00649820314720273, -0.045021384954452515, -0.08545281738042831,
- -0.04134996235370636, -0.08607504516839981, 0.05708695948123932, 0.04834400862455368,
- -0.05155277997255325, -0.16009646654129028, -0.03154635801911354, -0.034317098557949066,
- 0.03491237759590149, 0.06221635639667511, -0.07510878890752792, 0.0008745836094021797,
- 0.01405522134155035, 0.010010860860347748, -0.004911683965474367, -0.059041596949100494,
- -0.008192298002541065, -0.05508557707071304, 0.03161512687802315, 0.08667132258415222,
- 0.047577884048223495, -0.055940572172403336, 0.030191659927368164, -0.08853255212306976,
- 0.03497837483882904, -0.014031327329576015, -0.026905376464128494, 0.02703816257417202,
- -0.03759770095348358, 0.03302721679210663, 0.008613896556198597, -0.05895654112100601,
- -0.031039265915751457, -0.04270310327410698, -0.03290167078375816,
- -0.047802869230508804, -0.06929216533899307, -0.01936345361173153, -0.07102461159229279,
- 0.07903572916984558, -0.06871340423822403, -0.007958420552313328, -0.046902574598789215,
- -0.03237608075141907, 0.0002894957142416388, 0.011612780392169952,
- -0.025643855333328247, -0.1110178604722023, -0.019267253577709198,
- -0.009143058210611343, 0.013899913057684898, -0.018662773072719574,
- -0.060361433774232864, -0.027550972998142242, 0.07303732633590698, 0.018727926537394524,
- -0.06771809607744217, -0.0013460407499223948, -0.06774876266717911, 0.05274229496717453,
- -0.09934381395578384, -0.40883898735046387, 0.05051445588469505, 0.03699734807014465,
- 0.03289233148097992, 0.01311736460775137, -0.046032026410102844, 0.03547951951622963,
- 0.006324067711830139, -0.010388213209807873, 0.06071459874510765, -0.05279086157679558,
- 0.011589586734771729, -0.057514503598213196, -0.06045243889093399,
- -0.018577564507722855, -0.06811196357011795, -0.036271147429943085,
- 0.030237367376685143, -0.009788683615624905, -0.0221025962382555, -0.08295644819736481,
- 0.012079907581210136, -0.03998783603310585, -0.01272964384406805, -0.009371999651193619,
- 0.0010615767678245902, -0.07915249466896057, -0.06706788390874863, 0.032972801476716995,
- 0.057925060391426086, 0.015572323463857174, -0.09446273744106293, -0.015308482572436333,
- 0.02922697551548481, 0.03746667504310608, 0.10443398356437683, 0.03169623017311096,
- -0.007001046556979418, -0.03789260983467102, 0.05663609504699707, 0.07083210349082947,
- 0.18711000680923462, -0.012996213510632515, 0.061152711510658264,
- -0.0021088917274028063, 0.10775972157716751, 0.02598121389746666, 0.04876498505473137,
- -0.04215303808450699, -0.016553930938243866, 0.039826322346925735,
- -0.038672611117362976, 0.07158608734607697, -0.056255847215652466,
- -0.029510073363780975, 0.00372753432020545, -0.02391108311712742, -0.035782959312200546,
- -0.014044534415006638, 0.16873657703399658, 0.012174003757536411, 0.008473031222820282,
- 0.014121729880571365, -0.014597584493458271, -0.0077223023399710655,
- -0.0891929417848587, -0.010999802500009537, -0.05940873175859451, -0.020751839503645897,
- 0.001087868120521307, -0.04659045487642288, -0.07645217329263687, -0.009769252501428127,
- -0.0014850801089778543, 0.0069525521248579025, 0.11789529770612717,
- -0.025916671380400658, 0.012601484544575214, -0.023981362581253052, 0.14332938194274902,
- 0.007235329132527113, 0.03054436482489109, 0.05524950847029686, 0.0897449180483818,
- 0.0399625226855278, 0.026576535776257515, -0.019530801102519035, -0.04725265875458717,
- -0.0011301152408123016, 0.1528398096561432, -0.03821438178420067, 0.10948791354894638,
- 0.0414997823536396, 0.0157009344547987, -0.02637634426355362, 0.023893512785434723,
- 0.016127746552228928, -0.01818409562110901, -0.47474947571754456, -0.03447702154517174,
- 0.1174362525343895, -0.004838130436837673, 0.011987170204520226, 0.05526930093765259,
- 0.030238375067710876, 0.0033884281292557716, 0.010945364832878113, -0.0616002231836319,
- 0.07828968018293381, 0.05142239108681679, 0.08765849471092224, -0.07708483934402466,
- 0.03078629821538925, 0.07072749733924866, -0.005350686609745026, 0.0017230415251106024,
- 0.03549478203058243, -0.23169094324111938, 0.004377917852252722, -0.038067836314439774,
- 0.1295596808195114, 0.03153965622186661, 0.04657211899757385, 0.08921943604946136,
- -0.04769944027066231, 0.04074077680706978, 0.038406066596508026, 0.03874751180410385,
- 0.06312894076108932, -0.009179575368762016, -0.028730034828186035, 0.08372971415519714,
- 0.08786390721797943, 0.11223805695772171, 0.014534694142639637, 11.969539642333984,
- 0.023184992372989655, 0.05246659740805626, -0.07406113296747208, -0.018273141235113144,
- -0.05175571143627167, 0.020770112052559853, -0.0802176222205162, 0.055566415190696716,
- 0.1280198097229004, -0.0026238253340125084, -0.0463310182094574, -0.06420314311981201,
- -0.0604560412466526, 0.010890720412135124, -0.03801058977842331, -0.02951919101178646,
- -0.034552618861198425, 0.04791700467467308, -0.04605017602443695, -0.04378921538591385,
- 0.0757933259010315, 0.08455335348844528, -0.015727821737527847, -0.07826469838619232,
- 0.04020704701542854, -0.011374915018677711, -0.005567275919020176, 0.013968531042337418,
- 0.030676499009132385, 0.01934429258108139, 0.062109168618917465, 0.06524235755205154,
- -0.0050566233694553375, 0.03126347437500954, 0.06126001477241516, 0.023987140506505966,
- 0.04034797474741936, 0.043797314167022705, 0.04832322150468826, 0.021703289821743965,
- 0.022347476333379745, 0.024570999667048454, 0.029016535729169846, 0.06044164299964905,
- 0.032643817365169525, 0.053038742393255234, 0.11220047622919083, 0.022667594254016876,
- 0.05400873348116875, 0.06766613572835922, -0.013024179264903069, 0.10430902987718582,
- -0.0003500432940199971, -0.038650959730148315, 0.034764885902404785,
- 0.015846146270632744, -0.07807683199644089, 0.08156855404376984, 0.026210682466626167,
- -0.05253015458583832, 0.10443383455276489, 0.03455241397023201, 0.11483367532491684,
- 0.01748417690396309, 0.018058819696307182, 0.06929678469896317, 0.06193198636174202,
- -0.05971744284033775, -0.05517605319619179, 0.033225227147340775, -0.07564663887023926,
- -0.054440006613731384, 0.0724332183599472, 0.04702182859182358, -0.0022797000128775835,
- 0.05916815623641014, -0.0290953628718853, 0.04842280223965645, -0.01625612936913967,
- 0.03695273771882057, 0.028970032930374146, -0.055487144738435745, 0.03302332013845444,
- -0.016564927995204926, 0.028814047574996948, 0.033802639693021774, 0.10108780115842819,
- 0.024166643619537354, -0.06313706934452057, -0.066979318857193, 0.11407417804002762,
- -0.0023751205299049616, -0.039491839706897736, 0.045388363301754, -0.0723969116806984,
- 0.017338909208774567, -0.13617275655269623, 0.06682425737380981, 0.09842371195554733,
- -0.06521852314472198, -0.021938562393188477, -0.029053103178739548, 0.07854676246643066,
- 0.0051336707547307014, 0.03313508629798889, -0.05422920733690262, -0.024788085371255875,
- 0.04599062353372574, 0.02957775816321373, -0.024857517331838608, 0.05440916493535042,
- 0.0466846339404583, -0.062270548194646835, 0.03774169087409973, 0.03325836360454559,
- 0.003306344384327531, 0.01086448598653078, 0.06323876976966858, 0.03368104249238968,
- -0.06894916296005249, -0.03808913007378578, -0.07522836327552795, -0.026123903691768646,
- -0.0023539424873888493, -0.013107607141137123, -0.0035448321141302586,
- 0.031310323625802994, -0.0228743776679039, -0.03540754318237305, 0.018877854570746422,
- 0.05287298187613487, 0.11272123456001282, -0.017669489607214928, 0.059381645172834396,
- -0.03524019941687584, -0.041199907660484314, 0.05013497173786163, 0.06701672822237015,
- 0.08457387983798981, -0.06967325508594513, -0.04922482743859291, -0.035489849746227264,
- -0.10222820937633514, 0.013204892165958881, 0.05383636802434921, 0.048473209142684937,
- 0.046056050807237625, 0.022554289549589157, -0.06507366895675659, -0.028895391151309013,
- 0.08629171550273895, 0.039548736065626144, -0.01353329699486494, 0.06868046522140503,
- -0.023465102538466454, -0.02026825025677681, 0.08861781656742096, -0.015438496135175228,
- -0.010286431759595871, 0.022304508835077286, -0.12283173203468323, 0.052389468997716904,
- 0.08163895457983017, 0.02095923013985157, 0.021262645721435547, 0.029844319447875023,
- -0.015809178352355957, 0.025174779817461967, 0.00977439247071743, 0.030719781294465065,
- -0.02204791083931923, -0.09326031804084778, -0.0943741500377655, 0.010766323655843735,
- 0.09201175719499588, 0.11742423474788666, -0.1530836820602417, -0.0016538118943572044,
- -0.0493229404091835
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 262,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Mia Dand"],
- "epoch_date_downloaded": 1656288000,
- "epoch_date_modified": 1659312000,
- "epoch_date_submitted": 1656288000,
- "flag": null,
- "report_number": 1836,
- "source_domain": "linkedin.com",
- "submitters": ["Khoa Lam"],
- "title": "LinkedIn Post: Mia Dand",
- "url": "https://www.linkedin.com/posts/miadand_iamthefutureofai-ai-artificialintelligence-activity-6946584190519754752-Ilvb?utm_source=linkedin_share\u0026utm_medium=member_desktop_web"
- },
- {
- "__typename": "Report",
- "authors": ["Lauren Leffer"],
- "epoch_date_downloaded": 1659312000,
- "epoch_date_modified": 1659312000,
- "epoch_date_submitted": 1656288000,
- "flag": null,
- "report_number": 1835,
- "source_domain": "gizmodo.com",
- "submitters": ["Khoa Lam"],
- "title": "DALL-E Mini Is Obsessed With Women in Saris, and No One Knows Why",
- "url": "https://gizmodo.com/dall-e-mini-women-in-saris-mystery-1849099921"
- },
- {
- "__typename": "Report",
- "authors": ["Malavika Pradeep"],
- "epoch_date_downloaded": 1659312000,
- "epoch_date_modified": 1659312000,
- "epoch_date_submitted": 1656288000,
- "flag": null,
- "report_number": 1834,
- "source_domain": "screenshot-media.com",
- "submitters": ["Khoa Lam"],
- "title": "AI art generator DALL·E mini is spewing awfully racist images from text prompts",
- "url": "https://screenshot-media.com/technology/ai/dall-e-mini-racism/"
- },
- {
- "__typename": "Report",
- "authors": ["Noor Al-Sibai", "Jon Christian"],
- "epoch_date_downloaded": 1656028800,
- "epoch_date_modified": 1659312000,
- "epoch_date_submitted": 1656028800,
- "flag": null,
- "report_number": 1833,
- "source_domain": "futurism.com",
- "submitters": ["Daniel Atherton (BNH.ai)"],
- "title": "That AI Image Generator Is Spitting Out Some Awfully Racist Stuff",
- "url": "https://futurism.com/dall-e-mini-racist"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "youtube",
- "name": "YouTube"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "youtube",
- "name": "YouTube"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "youtube-young-male-users",
- "name": "YouTube young male users"
- },
- {
- "__typename": "Entity",
- "entity_id": "youtube-male-users",
- "name": "YouTube male users"
- },
- {
- "__typename": "Entity",
- "entity_id": "caleb-cain",
- "name": "Caleb Cain"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1838],
- "vector": [
- -0.06435537338256836, -0.005455298349261284, -0.011964695528149605,
- -0.05365947261452675, 0.11561852693557739, 0.03984095901250839, -0.0076125618070364,
- 0.04665270075201988, 0.09897325932979584, -0.15365807712078094, 0.009506218135356903,
- 0.010649784468114376, -0.008825338445603848, -0.06515833735466003, 0.04463993012905121,
- -0.10676564276218414, -0.05034865438938141, -0.04559655115008354, -0.05054950714111328,
- -0.13818056881427765, -0.018288331106305122, 0.025801001116633415, 0.08369685709476471,
- 0.0704345777630806, -0.07773181051015854, 0.02415868267416954, 0.10714932531118393,
- 0.1752322018146515, -0.07219070941209793, 0.04935280978679657, -0.02868577465415001,
- -0.10079885274171829, 0.1073293387889862, 0.04131828621029854, 0.023300478234887123,
- 0.08808577060699463, -0.005580577068030834, -0.032955754548311234, 0.012901932001113892,
- 0.0066851656883955, -0.005642504896968603, 0.25221002101898193, 0.10117851942777634,
- -0.07153551280498505, 0.0727255642414093, -0.054981183260679245, 0.034374039620161057,
- 0.0610806979238987, -0.011266856454312801, -0.04592369869351387, -0.0349436029791832,
- 0.02369990013539791, -0.09349201619625092, 0.05726717412471771, -0.11362338066101074,
- 0.07388832420110703, 0.03334463760256767, -0.08848109096288681, 0.08376916497945786,
- -0.12790869176387787, -0.009837420657277107, -0.22131650149822235, -0.05515078455209732,
- -0.07176034897565842, 0.02407888136804104, -0.0641499012708664, -0.0045990836806595325,
- 0.0106815155595541, 0.006959959864616394, 0.021126069128513336, 0.02760974131524563,
- -0.09557384252548218, -0.03750793635845184, 0.015032955445349216, -0.005002912599593401,
- -0.025231653824448586, 0.05122746527194977, 0.32525435090065, -0.1427612453699112,
- -0.030145078897476196, 0.1320897489786148, -0.14786531031131744, 0.4547989070415497,
- -0.04043634608387947, -0.03889918327331543, 0.04749879986047745, 0.06697970628738403,
- 0.005114403553307056, 0.0635477602481842, 0.07697083055973053, -0.005921611562371254,
- 0.07135085761547089, -0.08511186391115189, -0.021779751405119896, 0.05589083582162857,
- 0.005399102810770273, 0.006110034883022308, 0.14940708875656128, -0.044320229440927505,
- -0.06314457207918167, 0.08163145184516907, 0.006402147933840752, 0.07135593891143799,
- 0.11173634976148605, -0.05517035722732544, -0.02624640241265297, 0.09788083285093307,
- -0.08966118097305298, 0.0625968649983406, -0.06357857584953308, -0.025801286101341248,
- -0.021183401346206665, 0.011887671425938606, -0.06876753270626068, 0.026203103363513947,
- -0.04173353686928749, 0.029018951579928398, 0.06535153836011887, 0.08763698488473892,
- 0.030612315982580185, -0.03203641623258591, 0.054849669337272644, 0.09659809619188309,
- -0.04534875974059105, -0.015428812243044376, -0.05082341283559799, -0.01594668999314308,
- -0.03264102712273598, -0.01130171399563551, 0.036045074462890625, -0.09974686056375504,
- -0.2075960785150528, 0.035154759883880615, 0.12851116061210632, 0.028781982138752937,
- -0.05148636922240257, 0.0389891155064106, -0.1060338094830513, 0.0628802701830864,
- -0.08725936710834503, -0.017662005499005318, 0.07345054298639297, 0.07434121519327164,
- 0.016651678830385208, 0.0668741837143898, 0.05216563865542412, -0.04449203610420227,
- -0.04191015660762787, 0.055342692881822586, -0.014286879450082779, 0.16570332646369934,
- -0.16265328228473663, -0.04506891593337059, -0.02306951768696308, -0.03152364864945412,
- 0.665238082408905, 0.1698276251554489, 0.16022159159183502, -0.0026538092643022537,
- -0.05480651929974556, 0.1956120878458023, 0.043807320296764374, 0.04663186892867088,
- -0.10109230875968933, -0.03596506267786026, -0.007477184291929007,
- -0.0025164098478853703, -0.04057013988494873, 0.009349453262984753,
- -0.0035640173591673374, 0.10628864914178848, 0.024569455534219742, 0.15948228538036346,
- 0.03582274168729782, -0.17379401624202728, -0.015550983138382435, 0.08713202178478241,
- -0.018490750342607498, -0.09360118955373764, -0.04516071081161499, 0.05804584175348282,
- 0.09220876544713974, -0.03549134358763695, 0.01667080819606781, -0.029352741315960884,
- 0.010876467451453209, -0.07176308333873749, 0.01152090448886156, -0.03895922750234604,
- 0.07125664502382278, 0.05544377490878105, 0.09453602135181427, 0.030010538175702095,
- -0.13216644525527954, -0.08532636612653732, 0.1491921842098236, 0.006777322851121426,
- -0.025392811745405197, 0.10179699212312698, -0.08549553155899048, 0.030985485762357712,
- 0.08633523434400558, 0.19628430902957916, -0.11081568151712418, 0.0012874830281361938,
- -0.0657845139503479, -0.11500853300094604, 0.09840323776006699, -0.03791382536292076,
- -0.04237310588359833, -0.0905868262052536, 0.08214595913887024, -0.0010232970817014575,
- 0.008354262448847294, 0.03529290854930878, -0.06993547827005386, 0.012594425119459629,
- 0.020245710387825966, 0.07622330635786057, -0.023892302066087723, 0.05861116945743561,
- 0.06791236251592636, -0.008057639002799988, -0.042118869721889496, 0.02699294686317444,
- 0.06563302874565125, 0.059361107647418976, -0.007824160158634186, 0.02915140427649021,
- 0.031222321093082428, -0.023030683398246765, 0.04524664208292961, -0.057145822793245316,
- -0.0008088676258921623, 0.09844042360782623, -0.16487789154052734, -0.05654940754175186,
- -0.028736894950270653, -0.001384788891300559, -0.00723430048674345, 0.03057183139026165,
- 0.0823473185300827, 0.1099550873041153, 0.09405061602592468, 0.09350650757551193,
- 0.041190505027770996, 0.04900031164288521, 0.06551241129636765, -0.028426527976989746,
- 0.12293118238449097, 0.04779607430100441, -0.06450812518596649, -0.022776439785957336,
- -0.04278329387307167, 0.04279858246445656, 0.04850389435887337, -0.07877116650342941,
- -0.010847201570868492, -0.01409700233489275, -0.06814278662204742, -0.07320708781480789,
- -0.04203279688954353, 0.0493524968624115, 0.08898977935314178, -0.039676275104284286,
- -0.10020392388105392, -0.10001116245985031, 0.04761066287755966, 0.13908036053180695,
- -0.04225188121199608, -0.04627962410449982, -0.12234542518854141, 0.035072989761829376,
- -0.016500214114785194, 0.07690003514289856, -0.03267216682434082, 0.042794615030288696,
- -0.05248750001192093, -0.028884511440992355, 0.02502034418284893, 0.020990092307329178,
- 0.052898142486810684, 0.03824993222951889, -0.06644275784492493, -0.0324474535882473,
- -0.03472461551427841, -0.03546399995684624, -0.002744631841778755, 0.039756085723638535,
- -0.007293329574167728, 0.03865179046988487, 0.021536514163017273, -0.02562250755727291,
- 0.10098863393068314, -0.04466493800282478, -0.006829774007201195, 0.10758053511381149,
- 0.0003904399345628917, 0.012614348903298378, 0.013053392060101032, -0.07491684705018997,
- -0.07689143717288971, -0.03325856849551201, -0.06287653744220734, 0.10107354074716568,
- -0.036478009074926376, -0.0386882945895195, -0.07153551280498505, -0.0348115935921669,
- 0.047317519783973694, -0.05308126285672188, -0.04687928035855293, -0.10132405161857605,
- 0.14259232580661774, -0.0350339375436306, -0.06284639984369278, -0.026778660714626312,
- -0.038111504167318344, 0.08251229673624039, 0.02618720941245556, 0.04849737510085106,
- 0.002215490210801363, 0.08589387685060501, 0.037689536809921265, 0.04680492728948593,
- 0.06573552638292313, -0.10044720023870468, 0.02106996811926365, 0.07285106927156448,
- 0.47201648354530334, -0.24668249487876892, 0.12207189202308655, 0.0674624815583229,
- 0.05321938171982765, 0.04850165173411369, -0.06303185224533081, 0.078094981610775,
- 0.07391975820064545, 0.15149442851543427, 0.06611240655183792, -0.046389639377593994,
- -0.04041563719511032, -0.07414805889129639, 0.11415771394968033, 0.004109292756766081,
- 0.07780963182449341, -0.025097090750932693, -0.0729435384273529, -0.05628844350576401,
- 0.05845120921730995, -0.024471944198012352, -0.01339035201817751, 0.006684388034045696,
- -0.06369462609291077, 0.0471121221780777, 0.012435433454811573, 0.0452166423201561,
- -0.0726902112364769, 0.0067636179737746716, -0.007086903788149357, 0.06400343775749207,
- 0.005515360273420811, 0.051083698868751526, -0.1368926763534546, 0.043505292385816574,
- -0.0802425667643547, -0.06989753246307373, 0.040376175194978714, -0.007444613613188267,
- 0.11072884500026703, 0.06627950072288513, -0.018100056797266006, 0.026276329532265663,
- -0.036150068044662476, -0.05694925785064697, 0.024171067401766777, 0.06996307522058487,
- 0.1022607833147049, 0.08544239401817322, 0.14173178374767303, -0.02358091063797474,
- -0.005167193245142698, -0.06814105063676834, 0.05634726583957672, 0.1301632523536682,
- -0.023090705275535583, -0.012680537067353725, 0.019523300230503082,
- -0.03304903209209442, 0.014648682437837124, -0.07526927441358566, -0.08560119569301605,
- -0.039028920233249664, -0.02205388993024826, 0.06891681253910065, 0.04580690711736679,
- -0.01228239107877016, -0.2523322105407715, -0.060335997492074966, -0.041361480951309204,
- -0.011683315970003605, 0.16685202717781067, -0.0764332190155983, -0.006294339429587126,
- -0.04107740893959999, -0.017681540921330452, -0.005323185119777918,
- -0.11201215535402298, 0.03780873119831085, -0.038670461624860764, -0.025903113186359406,
- 0.08355536311864853, 0.05737709999084473, -0.03895724564790726, 0.07248896360397339,
- -0.11704424023628235, 0.059771087020635605, -0.04002368450164795, 0.008875072002410889,
- 0.0069619580172002316, -0.03302827849984169, 0.04591072350740433, 0.0751185193657875,
- -0.06137688085436821, 0.04202500358223915, -0.0014882704708725214, -0.04401358217000961,
- -0.08016497641801834, -0.06761966645717621, -0.06328583508729935, -0.103596992790699,
- 0.00455247750505805, -0.08957099914550781, 0.00789709109812975, -0.031008876860141754,
- 0.00037228866131044924, -0.026688208803534508, 0.043808214366436005,
- 0.06766442209482193, -0.10263489186763763, -0.002632161369547248, -0.03022587299346924,
- 0.04007289558649063, -0.013612999580800533, -0.0359688438475132, 0.006413180846720934,
- 0.0898171067237854, 0.08634018152952194, -0.013044343329966068, 0.053048957139253616,
- -0.10551776736974716, 0.052535947412252426, -0.09787457436323166, -0.525270402431488,
- 0.07521261274814606, 0.05987510457634926, 0.06259909272193909, 0.009715167805552483,
- -0.037547074258327484, 0.07259516417980194, -0.01535582821816206, -0.07009343057870865,
- 0.07661134004592896, -0.034098800271749496, -0.007017470430582762,
- 0.0013717684196308255, -0.03204099461436272, -0.01672230288386345, -0.03944150730967522,
- -0.044686924666166306, 0.07031898945569992, 0.011958190239965916, -0.08589749038219452,
- -0.1363029032945633, 0.03303762525320053, -0.009112915955483913, -0.00702644931152463,
- 0.004700040910393, -0.001973050879314542, -0.04052169620990753, -0.061732158064842224,
- 0.06367907673120499, 0.013500915840268135, 0.022993389517068863, -0.06390965729951859,
- -0.044881124049425125, 0.038752999156713486, -0.01272761169821024, 0.11066582798957825,
- 0.017642347142100334, 0.014030973426997662, -0.12922833859920502, 0.12510985136032104,
- 0.07879296690225601, 0.18248224258422852, 0.03372617065906525, 0.11806593835353851,
- 0.02098485827445984, 0.17174918949604034, 0.022141341120004654, 0.02724255807697773,
- -0.016611246392130852, 0.015893539413809776, 0.019272875040769577,
- -0.006845028605312109, 0.0036374619230628014, -0.1130356565117836, -0.05327078700065613,
- 0.005288206040859222, -0.03969274461269379, -0.016711147502064705, 0.024655045941472054,
- 0.1825268566608429, 0.05641112104058266, 0.023650329560041428, -0.0055360677652060986,
- -0.03261594846844673, 0.0013361208839341998, -0.08568715304136276, -0.05818294733762741,
- 0.02906995266675949, -0.020686497911810875, 0.03672702610492706, 0.010952144861221313,
- -0.10554739832878113, -0.0008432531030848622, -0.005986496806144714,
- -0.0063864621333777905, 0.08816836774349213, -0.06093205511569977, -0.07619655132293701,
- -0.050086524337530136, 0.1435420662164688, 0.05912106856703758, -0.04119309037923813,
- 0.07651537656784058, 0.07087399065494537, 0.07780468463897705, 0.0018208494875580072,
- -0.09738315641880035, -0.07850266993045807, -0.049392905086278915, 0.2067265510559082,
- -0.05494340509176254, 0.14064288139343262, 0.05514850839972496, -0.06663887947797775,
- -0.04056309536099434, 0.02169175259768963, 0.05353930965065956, -0.038240112364292145,
- -0.470951646566391, -0.04897076636552811, 0.12923790514469147, -0.019303273409605026,
- 0.01030451525002718, 0.08183884620666504, 0.12807545065879822, -0.03199755772948265,
- -0.04149642959237099, -0.07033883035182953, 0.17281442880630493, 0.009695732966065407,
- 0.06351672112941742, -0.15939870476722717, 0.02420634962618351, 0.09563982486724854,
- -0.037653520703315735, -0.024805638939142227, 0.07244766503572464, -0.2286277711391449,
- -0.044363029301166534, -0.03586607798933983, 0.19952833652496338, 0.02483111061155796,
- 0.009963992051780224, 0.10587657243013382, -0.0427994430065155, -0.012964040972292423,
- 0.05999816581606865, -0.028061024844646454, -0.01020753849297762, -0.024873917922377586,
- -0.08241042494773865, 0.07321308553218842, 0.12663118541240692, -0.06889990717172623,
- -0.020995892584323883, 12.172883033752441, 0.11227463185787201, 0.11035168170928955,
- -0.0990777388215065, 0.027115382254123688, -0.0644393265247345, 0.019093409180641174,
- -0.055744003504514694, 0.05574491620063782, 0.15050408244132996, -0.04967247322201729,
- -0.04294819384813309, -0.045208096504211426, -0.08597573637962341, -0.02987215481698513,
- -0.03884144872426987, -0.10904868692159653, -0.003697552252560854, 0.04190541431307793,
- -0.017574910074472427, -0.05820761248469353, 0.033263519406318665, 0.03252303600311279,
- 0.03444032371044159, -0.14200076460838318, 0.09551344066858292, 0.06545458734035492,
- 0.038220636546611786, -0.002700143726542592, 0.05218741297721863, 0.008566775359213352,
- 0.025486737489700317, 0.07956437021493912, 0.062121469527482986, 0.019281605258584023,
- 0.04577299952507019, 0.045144643634557724, -0.024061746895313263, 0.02069145068526268,
- 0.1430789828300476, 0.009437290951609612, 0.022422263398766518, 0.035703208297491074,
- 0.0067499116994440556, 0.021793266758322716, 0.039878666400909424, 0.09900717437267303,
- 0.14332003891468048, -0.015918059274554253, 0.03815067186951637, 0.12268903851509094,
- -0.05032164230942726, 0.13476064801216125, 0.04887823387980461, -0.003822054248303175,
- 0.032822221517562866, -0.05247032269835472, -0.06139105558395386, 0.05799458548426628,
- 0.07159529626369476, 0.027974264696240425, 0.10226358473300934, 0.0044974940828979015,
- 0.05716831609606743, -0.0014211463276296854, 0.07148360460996628, 0.07112015783786774,
- 0.08102594316005707, -0.10457313805818558, -0.10458618402481079, 0.010852912440896034,
- -0.08424876630306244, -0.0923662930727005, 0.09866335242986679, 0.16324874758720398,
- -0.061495937407016754, 0.041918326169252396, -0.0015247684204950929,
- 0.006879201624542475, -0.09107035398483276, -0.010223777033388615, 0.055563345551490784,
- -0.03787146508693695, -0.0007715831161476672, -0.0003998578467871994,
- 0.06194202974438667, 0.08059253543615341, 0.07646113634109497, -0.0044343736954033375,
- -0.09972820430994034, -0.1218472272157669, 0.08320484310388565, -0.006002157926559448,
- -0.008991137146949768, 0.0634189173579216, -0.08872870355844498, 0.07463480532169342,
- -0.16485139727592468, 0.10245652496814728, 0.03083954192698002, -0.08727989345788956,
- -0.013723667711019516, -0.017588172107934952, 0.06188954785466194,
- -0.004499233793467283, 0.061271026730537415, -0.048678070306777954,
- -0.015347779728472233, 0.03581472858786583, 0.06173179671168327, -0.05284207686781883,
- 0.08791483938694, 0.10001006722450256, -0.1461845338344574, 0.04064072296023369,
- 0.05021420121192932, -0.05240519344806671, -0.04390116408467293, 0.0929255485534668,
- -0.03643197938799858, -0.108639657497406, -0.018631374463438988, -0.07256703823804855,
- -0.04464804008603096, -0.03344467654824257, -0.10890600085258484, 0.013614238239824772,
- 0.062064219266176224, -0.07577802985906601, -0.012213057838380337, 0.03309966251254082,
- 0.07571239769458771, 0.07823117822408676, 0.007086724974215031, 0.04743923619389534,
- -0.0803685262799263, -0.05368828400969505, 0.0477045439183712, 0.05233998969197273,
- 0.08146824687719345, -0.0003156205639243126, -0.03979011997580528, -0.01630098931491375,
- -0.0661555677652359, -0.004414078313857317, 0.05769266560673714, -0.007177042309194803,
- -0.00836445763707161, 0.09849373996257782, -0.1447630375623703, -0.04264324530959129,
- 0.09501886367797852, 0.0936039388179779, 0.014056766405701637, 0.009498911909759045,
- -0.08178369700908661, -0.08201442658901215, 0.06118904799222946, -0.019848478958010674,
- -0.02213784120976925, 0.01081063598394394, 0.029682300984859467, 0.06519270688295364,
- -0.02322913333773613, 0.09717706590890884, 0.05298487842082977, 0.05844762921333313,
- -0.008481912314891815, 0.05162158980965614, -0.005952832754701376, 0.00255272607319057,
- -0.025042183697223663, -0.10961958765983582, -0.098936066031456, 0.003092801896855235,
- 0.07067874073982239, 0.005198173224925995, -0.15340934693813324, 0.04209831729531288,
- -0.06400104612112045
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 263,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Kevin Roose"],
- "epoch_date_downloaded": 1659398400,
- "epoch_date_modified": 1659398400,
- "epoch_date_submitted": 1654041600,
- "flag": null,
- "report_number": 1838,
- "source_domain": "nytimes.com",
- "submitters": ["Ingrid Dickinson (CSET)"],
- "title": "The Making of a YouTube Radical",
- "url": "https://www.nytimes.com/interactive/2019/06/08/technology/youtube-radical.html"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "speedcam-anywhere",
- "name": "Speedcam Anywhere"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "speedcam-anywhere",
- "name": "Speedcam Anywhere"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "uk-drivers",
- "name": "UK drivers"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1839],
- "vector": [
- -0.07098732888698578, 0.07815390825271606, 0.009221137501299381, -0.13276790082454681,
- 0.042669493705034256, -0.07241500169038773, 0.003651161678135395, 0.04574845731258392,
- 0.07926627993583679, -0.10969782620668411, -0.001880283234640956, 0.03480205684900284,
- 0.05097775533795357, -0.06452073156833649, 0.0380924753844738, -0.1150602325797081,
- -0.10782476514577866, -0.05325008183717728, -0.04463602229952812, -0.1385127753019333,
- -0.084750235080719, 0.00976549368351698, 0.04930092394351959, 0.14349551498889923,
- -0.06548226624727249, 0.023679550737142563, 0.12991081178188324, 0.1226130872964859,
- -0.07828211784362793, 0.09000919759273529, -0.04092113673686981, -0.08216811716556549,
- 0.14838668704032898, 0.06086363270878792, 0.015125730074942112, 0.09586267918348312,
- -0.0009117519948631525, -0.038759585469961166, 0.01671372540295124,
- 0.0009883553721010685, 0.04673215374350548, 0.2387179434299469, -0.0028941056225448847,
- 0.012641491368412971, 0.059085309505462646, -0.02389388345181942, -0.026880554854869843,
- 0.015965517610311508, 0.011142972856760025, 0.04482056200504303, -0.020932504907250404,
- -0.019786905497312546, -0.060892656445503235, 0.052842430770397186,
- -0.08398695290088654, 0.07097526639699936, 0.021606387570500374, -0.013292317278683186,
- 0.019435951486229897, -0.09292545914649963, 0.007384352385997772, -0.17651599645614624,
- -0.10624605417251587, -0.08460794389247894, 0.10696475207805634, -0.07696235924959183,
- -0.051959916949272156, 0.05806441977620125, 0.018178066238760948, 0.07521796971559525,
- 0.046942196786403656, -0.05861983448266983, -0.022076837718486786,
- -0.005120549816638231, -0.0028354336973279715, 0.0013213324127718806,
- -0.008831443265080452, 0.17543809115886688, -0.12004408240318298, -0.007836725562810898,
- 0.11634858697652817, -0.14343023300170898, 0.3590947389602661, -0.00478358706459403,
- 0.014988604933023453, 0.00035565649159252644, 0.09156187623739243, 0.02122373692691326,
- 0.053177013993263245, 0.026545483618974686, 0.018611105158925056, 0.031842637807130814,
- -0.0948430523276329, -0.04258076846599579, 0.058227043598890305, 0.011899325996637344,
- -0.031236913055181503, 0.006473041605204344, -0.01651012897491455,
- -0.044864535331726074, -0.04122524335980415, -0.03614894300699234, 0.09968218952417374,
- 0.08103398978710175, -0.04013730213046074, -0.013475128449499607, 0.04892759025096893,
- -0.031502094119787216, 0.02406950294971466, -0.03566667437553406, 0.04750700294971466,
- 0.006725505460053682, 0.07590830326080322, 0.018278291448950768, 0.03378517925739288,
- -0.06140468269586563, 0.012002918869256973, 0.06590290367603302, 0.09457691758871078,
- 0.07613679021596909, -0.018275031819939613, 0.0815114751458168, 0.0652865394949913,
- -0.06512164324522018, 0.00815337710082531, 0.00039541348814964294, -0.07901273667812347,
- -0.03665867820382118, -0.06421157717704773, 0.019557911902666092, -0.0530366376042366,
- -0.21856175363063812, 0.029322003945708275, 0.03025536797940731, -0.008497542701661587,
- -0.01358632929623127, 0.010272915475070477, -0.06409372389316559, 0.01994232088327408,
- -0.042948901653289795, -0.06828261911869049, 0.06487232446670532, 0.0174774881452322,
- 0.05196160078048706, 0.13252465426921844, 0.0579826682806015, -0.02598395384848118,
- -0.04697038233280182, -0.004764633718878031, -0.04762493446469307, 0.08050541579723358,
- -0.10943131893873215, -0.022279145196080208, -0.013792989775538445, 0.0296181533485651,
- 0.7050745487213135, 0.09270317852497101, 0.2126653492450714, 0.0390298031270504,
- -0.00040587488911114633, 0.17368383705615997, -0.004481471609324217,
- 0.07977057993412018, -0.09647661447525024, -0.09929997473955154, -0.00918282475322485,
- -0.09072956442832947, -0.013871241360902786, 0.00728182727470994, 0.04279263690114021,
- 0.0877908244729042, 0.0494317002594471, 0.09112335741519928, 0.004172629211097956,
- -0.14075437188148499, 0.02195914275944233, 0.0650571882724762, 0.007046645041555166,
- -0.1265479028224945, -0.0509079247713089, 0.05419065058231354, 0.087933249771595,
- -0.11208033561706543, 0.018423844128847122, -0.0974736362695694, 0.08029436320066452,
- -0.009346316568553448, 0.0969165787100792, 0.0005501647829078138, 0.05042450129985809,
- 0.020300019532442093, 0.01445681881159544, -0.02296200580894947, -0.039046358317136765,
- 0.004386135842651129, 0.11767733842134476, -0.015284113585948944, -0.06914608925580978,
- 0.1294529289007187, -0.058325134217739105, 0.03649935498833656, 0.0466342493891716,
- 0.13415005803108215, -0.10968706756830215, 0.0828164592385292, 0.021373163908720016,
- -0.032249581068754196, 0.0821409597992897, -0.024761682376265526, -0.0800870805978775,
- -0.08023852854967117, 0.05061531811952591, 0.01942516677081585, 0.056425921618938446,
- 0.06343571841716766, -0.021547997370362282, 0.01574583165347576, 0.16015002131462097,
- 0.028837021440267563, 0.006501657888293266, 0.08669348806142807, 0.07704851031303406,
- -0.05024724081158638, -0.04056311398744583, 0.05685465782880783, 0.01220407523214817,
- 0.033159464597702026, -0.011373771354556084, 0.0909278467297554, 0.004431775771081448,
- -0.05152822658419609, 0.054319944232702255, 0.10666823387145996, 0.02253156155347824,
- 0.09865255653858185, -0.07497356086969376, -0.02062355726957321, -0.05037807673215866,
- 0.0017100867116823792, 0.019984761252999306, -0.048989128321409225, 0.07365065813064575,
- 0.09548245370388031, 0.07462973147630692, -0.00009560618491377681, 0.016605688259005547,
- 0.10914964973926544, 0.07964029163122177, 0.05479607731103897, 0.08657996356487274,
- -0.059722669422626495, -0.044458288699388504, -0.01822645217180252,
- -0.005955989938229322, 0.04616314917802811, 0.04823969304561615, -0.07620812952518463,
- -0.011783255264163017, -0.026389332488179207, -0.00915994867682457,
- -0.11145728081464767, -0.025181889533996582, -0.0010501453652977943,
- 0.03109598532319069, -0.027623940259218216, -0.05669187009334564, -0.09396202862262726,
- -0.014684476889669895, 0.06841890513896942, -0.03713401034474373, 0.009463234804570675,
- -0.13544653356075287, 0.012404016219079494, -0.05366665497422218, 0.06768642365932465,
- -0.02232106402516365, 0.02262193337082863, 0.024590695276856422, -0.060317497700452805,
- 0.018839798867702484, 0.045001447200775146, -0.07177340239286423, -0.004574561957269907,
- -0.046453338116407394, -0.004135949537158012, 0.021019568666815758,
- 0.005482233129441738, -0.030641335994005203, 0.014693398959934711, 0.07605719566345215,
- 0.038650497794151306, -0.04143291711807251, -0.005142278969287872, 0.042798273265361786,
- 0.013668518513441086, -0.00734585989266634, 0.08360625058412552, -0.09257582575082779,
- 0.014630306512117386, -0.033518675714731216, -0.07881806790828705, -0.06920745223760605,
- 0.03420845791697502, -0.05072113126516342, 0.00032104720594361424, -0.04494773596525192,
- -0.03206696733832359, -0.0365118533372879, -0.08231356739997864, 0.050087906420230865,
- -0.032018885016441345, -0.042568664997816086, -0.08911363035440445, 0.10212811827659607,
- 0.018827252089977264, 0.0008749059052206576, 0.018986457958817482,
- -0.052483681589365005, 0.05367553234100342, -0.02171669714152813, -0.021399561315774918,
- 0.06530019640922546, 0.05831758677959442, -0.025649987161159515, 0.06346240639686584,
- 0.08257206529378891, 0.04763408377766609, -0.02464556321501732, 0.09946391731500626,
- 0.42040005326271057, -0.22898177802562714, 0.07379072904586792, 0.0665677934885025,
- 0.028091762214899063, 0.03198719024658203, 0.004613169934600592, 0.05015278235077858,
- 0.05634668841958046, 0.08274351805448532, 0.13271094858646393, -0.05201241374015808,
- -0.0057678548619151115, -0.07371081411838531, 0.0777326375246048, 0.014629339799284935,
- 0.0483534075319767, -0.020866192877292633, -0.07988668978214264, -0.03830421343445778,
- 0.022602198645472527, -0.06137704849243164, 0.0320727601647377, 0.02498975768685341,
- -0.037415873259305954, -0.026639752089977264, 0.005006922874599695,
- 0.059208326041698456, -0.03415359929203987, 0.10352373123168945, -0.08231222629547119,
- 0.013995406217873096, 0.020086081698536873, 0.05887015536427498, -0.1276535838842392,
- 0.035837482661008835, -0.027090106159448624, -0.09656714648008347, 0.07574477791786194,
- 0.005483826156705618, 0.09134320169687271, 0.059240322560071945, -0.03746526315808296,
- 0.07164903730154037, -0.07516594231128693, -0.057177577167749405, -0.013868755660951138,
- 0.017906280234456062, -0.009892561472952366, 0.06084170565009117, 0.15916024148464203,
- -0.07228144258260727, -0.04994715750217438, -0.10758353769779205, 0.053558509796857834,
- 0.13814574480056763, -0.05021240934729576, 0.00834877323359251, 0.020962247624993324,
- -0.008729477412998676, -0.018586566671729088, -0.06462695449590683,
- -0.08133665472269058, 0.014649003744125366, -0.03031137026846409, 0.08722667396068573,
- 0.030418744310736656, -0.06232459843158722, -0.12461524456739426,
- -0.0015770792961120605, -0.03131762146949768, 0.004203622695058584, 0.13229654729366302,
- -0.07643919438123703, 0.009513961151242256, -0.027333009988069534, -0.01235363632440567,
- 0.042936597019433975, -0.04799429327249527, -0.0010718053672462702,
- -0.07531062513589859, 0.03450765833258629, 0.03395482152700424, 0.03963521122932434,
- -0.06224190071225166, 0.08488249033689499, -0.11792533844709396, 0.0801066979765892,
- 0.049502383917570114, -0.05100326985120773, 0.07449096441268921, -0.04047958552837372,
- 0.045417025685310364, 0.06710851937532425, -0.059137653559446335, 0.023763738572597504,
- -0.01577659882605076, -0.04087454453110695, -0.0628681629896164, -0.09464648365974426,
- -0.037717223167419434, -0.07918170094490051, 0.04622867330908775, -0.03995579853653908,
- 0.026983492076396942, -0.04538794234395027, -0.02359323389828205, -0.011746746487915516,
- 0.01997765339910984, 0.008118648082017899, -0.15956075489521027, 0.04285431280732155,
- -0.02741306647658348, 0.005650173872709274, -0.02038705348968506, -0.06268495321273804,
- 0.01572345569729805, -0.014005896635353565, 0.042143601924180984, -0.03429912403225899,
- -0.004569628741592169, -0.07593794912099838, 0.050161466002464294, -0.13095682859420776,
- -0.4042239189147949, 0.035930078476667404, -0.0021478598937392235, 0.017392879351973534,
- -0.004181261640042067, -0.05356890708208084, 0.061900511384010315, 0.013012685813009739,
- -0.01369523536413908, 0.10913637280464172, -0.026787295937538147, 0.01777164451777935,
- -0.0483035109937191, -0.06217854842543602, -0.005195215810090303, -0.05908094719052315,
- -0.044968243688344955, 0.04631561040878296, -0.009954804554581642, -0.0779830813407898,
- -0.09429457783699036, 0.021247457712888718, 0.007558539509773254, 0.07392360270023346,
- 0.013695892877876759, 0.025692449882626534, -0.038367122411727905, -0.06519448757171631,
- 0.02333337813615799, 0.048798877745866776, 0.010296390391886234, -0.04207884892821312,
- 0.01162266917526722, 0.0666886642575264, -0.029692912474274635, 0.13254433870315552,
- 0.037005405873060226, 0.03003005124628544, -0.09555329382419586, 0.10245764255523682,
- 0.07918649166822433, 0.18424123525619507, -0.02031424641609192, -0.006747188046574593,
- 0.022364208474755287, 0.16470718383789062, 0.03385058417916298, 0.021000012755393982,
- -0.028150536119937897, 0.0005395367043092847, 0.012550925835967064, 0.04601823911070824,
- 0.10091761499643326, -0.11621389538049698, -0.021579474210739136, -0.033130522817373276,
- -0.007055141497403383, -0.04180566594004631, -0.06048169732093811, 0.2094956338405609,
- 0.05488733574748039, 0.012716047465801239, -0.007646691985428333, -0.09016280621290207,
- -0.021756000816822052, -0.04971560835838318, -0.09546621888875961,
- -0.002567166229709983, -0.007627938408404589, 0.022441187873482704,
- -0.04284396395087242, -0.17670199275016785, -0.011163810268044472, 0.01186399720609188,
- -0.013975856825709343, 0.08756551146507263, -0.02663048543035984, 0.061408787965774536,
- -0.0772896558046341, 0.15426592528820038, 0.06131017208099365, 0.014317559078335762,
- 0.050387680530548096, 0.07294291257858276, -0.02732507698237896, 0.01877829246222973,
- -0.09085584431886673, -0.05656290799379349, 0.014372849836945534, 0.14204178750514984,
- -0.00828575063496828, 0.11915057897567749, 0.008871576748788357, -0.06192009150981903,
- -0.050628114491701126, 0.031767576932907104, 0.01044232863932848, 0.006554316729307175,
- -0.4491015374660492, -0.03658992797136307, 0.11617624014616013, 0.00624466547742486,
- 0.03075406886637211, 0.057232748717069626, 0.04652324318885803, -0.038239941000938416,
- -0.08959595859050751, -0.10839448124170303, 0.09571386128664017, -0.02806549333035946,
- 0.07116459310054779, -0.1023106575012207, 0.07169998437166214, 0.10260272771120071,
- -0.049090005457401276, -0.003555228700861335, 0.05936701223254204, -0.3191574215888977,
- -0.016565557569265366, -0.03275603428483009, 0.09221845865249634, 0.022225473076105118,
- 0.023366013541817665, 0.10977312177419662, -0.027537569403648376, -0.018359819427132607,
- 0.025452570989727974, -0.039072081446647644, 0.04241553694009781, -0.004040620755404234,
- -0.04706538841128349, 0.11221735179424286, 0.14066259562969208, 0.051567114889621735,
- -0.02296976000070572, 12.095186233520508, 0.060901276767253876, 0.08021925389766693,
- -0.10181859135627747, 0.025836994871497154, -0.057796165347099304, 0.0050452696159482,
- -0.10023646056652069, 0.09562945365905762, 0.12561915814876556, -0.0010238935938104987,
- -0.019882062450051308, -0.01818379946053028, -0.1289488822221756, 0.02565152570605278,
- -0.03377581387758255, -0.08749697357416153, -0.0462874174118042, 0.05137157812714577,
- -0.04196419566869736, -0.03450462222099304, 0.01852594129741192, 0.09282944351434708,
- 0.01533572468906641, -0.06323885917663574, 0.015984363853931427, -0.024994583800435066,
- -0.00783162284642458, -0.015208272263407707, 0.019337480887770653, -0.03502128645777702,
- 0.05878952145576477, 0.06184012442827225, -0.000060457270592451096, 0.05643301457166672,
- 0.03633236512541771, 0.09091056138277054, 0.027812909334897995, -0.021984953433275223,
- 0.09498502314090729, -0.02992795780301094, 0.005205316003412008, 0.046633072197437286,
- 0.05026188865303993, 0.06748272478580475, 0.0366259403526783, 0.08167340606451035,
- 0.08643143624067307, 0.008383340202271938, 0.06351761519908905, 0.10543209314346313,
- -0.044213537126779556, 0.14706361293792725, 0.04949337989091873, -0.01578439213335514,
- 0.05674061179161072, -0.009402844123542309, -0.07209374010562897, 0.07506837695837021,
- 0.07060366123914719, -0.08424632996320724, 0.12256056815385818, 0.06225430965423584,
- 0.14850299060344696, 0.017212551087141037, 0.02752440609037876, 0.07675793021917343,
- 0.09746098518371582, -0.1574266403913498, -0.0671854093670845, 0.03447717800736427,
- -0.0833798348903656, -0.05596647411584854, 0.024159053340554237, 0.029306795448064804,
- -0.02972334250807762, 0.06229603663086891, -0.03103215992450714, 0.027717329561710358,
- -0.08160192519426346, -0.012967816554009914, 0.030921297147870064,
- -0.049911919981241226, 0.012230481021106243, 0.09108413755893707, 0.014754341915249825,
- 0.10269187390804291, 0.12493683397769928, 0.019071977585554123, -0.1255330890417099,
- -0.030833760276436806, 0.1403353065252304, -0.0392284132540226, -0.04332843795418739,
- -0.025799594819545746, -0.0687519907951355, 0.07995781302452087, -0.14378248155117035,
- 0.07324880361557007, 0.11678723990917206, -0.11537773907184601, -0.023126238957047462,
- -0.03652641549706459, 0.11265086382627487, -0.01550978608429432, 0.01951923780143261,
- -0.08040748536586761, -0.008928469382226467, -0.009864934720098972,
- 0.027561578899621964, -0.05260511860251427, 0.12913858890533447, 0.09769980609416962,
- -0.05045159161090851, 0.0033729267306625843, 0.06816217303276062, -0.03088105469942093,
- -0.046738989651203156, 0.035653773695230484, 0.09549491107463837, -0.06634087860584259,
- -0.01435782015323639, -0.02370312437415123, -0.027584509924054146,
- 0.0015941653400659561, -0.0400826670229435, -0.006107765715569258, 0.04187189042568207,
- -0.030865615233778954, -0.02856690064072609, 0.04508253186941147, 0.0464395135641098,
- 0.11862318962812424, -0.017046349123120308, 0.07821191102266312, -0.07113298028707504,
- -0.045120712369680405, 0.052169524133205414, 0.08151347935199738, 0.0806630477309227,
- -0.06225663423538208, -0.101221464574337, -0.03574305400252342, -0.14180895686149597,
- 0.023791270330548286, 0.13604339957237244, 0.006205802317708731, 0.06787337362766266,
- 0.03772938624024391, -0.09513866901397705, -0.06476430594921112, 0.11257846653461456,
- 0.04588580131530762, -0.01562684401869774, 0.02945084311068058, -0.0701051577925682,
- -0.039905376732349396, 0.09393792599439621, -0.01039743423461914, -0.025930481031537056,
- -0.0016769341891631484, -0.03474796190857887, 0.11658920347690582, 0.09313854575157166,
- 0.13951914012432098, 0.02751537598669529, 0.023446815088391304, 0.0009664925746619701,
- 0.01248675212264061, 0.008115056902170181, 0.0050709787756204605, -0.036369238048791885,
- -0.09977912902832031, -0.10889235883951187, 0.027572961524128914, 0.07852300256490707,
- 0.032249223440885544, -0.0795062854886055, -0.006724334321916103, -0.08255346119403839
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 264,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Alex Hern"],
- "epoch_date_downloaded": 1659312000,
- "epoch_date_modified": 1659398400,
- "epoch_date_submitted": 1659312000,
- "flag": null,
- "report_number": 1839,
- "source_domain": "theguardian.com",
- "submitters": ["Sonali Pednekar (CSET)", "AIAAIC"],
- "title": "Speed camera app developers face abuse from UK drivers",
- "url": "https://www.theguardian.com/world/2022/apr/10/speed-camera-app-developers-face-abuse-from-uk-drivers"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "uber-eats",
- "name": "Uber Eats"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "uber-eats",
- "name": "Uber Eats"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "uber-eats-black-delivery-drivers",
- "name": "Uber Eats Black delivery drivers"
- },
- {
- "__typename": "Entity",
- "entity_id": "pa-edrissa-manjang",
- "name": "Pa Edrissa Manjang"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1841, 1840],
- "vector": [
- -0.08096852898597717, 0.05430632829666138, 0.0000341515988111496, -0.12372028827667236,
- 0.06444741040468216, -0.039193492382764816, 0.0009875735267996788, 0.03560061752796173,
- 0.06693480908870697, -0.1487075835466385, 0.012954283505678177, 0.0055464087054133415,
- 0.0581899993121624, -0.0733199194073677, -0.006905482150614262, -0.16466593742370605,
- -0.0762614831328392, -0.012429561465978622, -0.056079328060150146, -0.16632841527462006,
- -0.08305953443050385, -0.0025983911473304033, 0.08513042330741882, 0.09524296224117279,
- -0.09313016384840012, 0.08184187859296799, 0.10271209478378296, 0.09646758437156677,
- -0.010042199864983559, 0.06340566277503967, -0.05907139927148819, -0.10389098525047302,
- 0.1235034316778183, 0.040249310433864594, 0.04350355267524719, 0.08635147660970688,
- 0.012301290407776833, -0.027449799701571465, -0.005814124830067158,
- -0.02420062944293022, 0.0059724003076553345, 0.20867252349853516, 0.039168864488601685,
- -0.06011270731687546, 0.062889464199543, -0.0805828794836998, 0.04338812828063965,
- 0.05768166109919548, 0.04540262371301651, -0.014086313545703888, 0.017912564799189568,
- 0.01248954888433218, -0.018417928367853165, 0.06775521486997604, -0.12044726312160492,
- 0.03302491456270218, 0.027896616607904434, 0.03705355525016785, 0.05173328518867493,
- -0.12576676905155182, -0.011616837233304977, -0.1819765269756317, -0.07575640082359314,
- -0.0794052705168724, 0.07375188171863556, -0.10998216271400452, -0.0534089058637619,
- 0.08526197075843811, 0.027251651510596275, 0.06362827122211456, 0.04254547134041786,
- -0.02638748660683632, -0.020385023206472397, -0.06536198407411575, 0.025240473449230194,
- -0.038951627910137177, 0.023138251155614853, 0.23658066987991333, -0.113753542304039,
- -0.02229602448642254, 0.09496759623289108, -0.14568421244621277, 0.42639243602752686,
- 0.01180361956357956, -0.029180217534303665, 0.03919424116611481, 0.0890565812587738,
- 0.014224561862647533, 0.06672067195177078, 0.06501763314008713, -0.036116424947977066,
- 0.06283438205718994, -0.06132465973496437, 0.030317790806293488, 0.04969844967126846,
- 0.03138238564133644, -0.0001529855653643608, 0.0788043886423111, -0.031526390463113785,
- -0.08223303407430649, -0.006064176559448242, -0.028662297874689102, 0.12256236374378204,
- 0.087598517537117, -0.046493690460920334, -0.02981746941804886, 0.10234040021896362,
- -0.053290706127882004, 0.03436154127120972, -0.05458734557032585, -0.006637325510382652,
- 0.030873004347085953, 0.10524651408195496, 0.005290249362587929, 0.04775122553110123,
- -0.08448914438486099, 0.012866843491792679, 0.0983552485704422, 0.08700831234455109,
- 0.027732286602258682, -0.0028497925959527493, 0.07198816537857056, 0.12108618021011353,
- -0.05918876454234123, 0.055876702070236206, 0.002911530900746584, -0.05779292434453964,
- -0.02489851787686348, -0.022875208407640457, 0.02750423550605774, -0.08671991527080536,
- -0.2732654809951782, -0.035443637520074844, 0.02853032760322094, 0.020305238664150238,
- -0.03683917224407196, 0.00085410475730896, -0.03923686593770981, 0.06805049628019333,
- -0.04328266903758049, -0.031070392578840256, 0.06722909212112427, -0.021888157352805138,
- 0.047737523913383484, 0.08443993330001831, 0.05132003128528595, -0.05177763104438782,
- -0.014170866459608078, -0.03940524905920029, -0.0017299186438322067,
- 0.11951202154159546, -0.18133069574832916, -0.0340404137969017, 0.015643388032913208,
- -0.0020109224133193493, 0.6466938853263855, 0.1055934801697731, 0.16349786520004272,
- 0.009632566943764687, -0.029460296034812927, 0.2176503688097, -0.029755521565675735,
- 0.09233886748552322, -0.09622533619403839, -0.04624401405453682, 0.02920188009738922,
- -0.09295068681240082, -0.04985679313540459, 0.012434400618076324, 0.012664454989135265,
- 0.13157379627227783, 0.026550084352493286, 0.13728319108486176, 0.006181423086673021,
- -0.11578549444675446, -0.003030378371477127, 0.05915568023920059, 0.0011360838543623686,
- -0.11237059533596039, -0.05423007160425186, 0.01596960797905922, 0.06614512950181961,
- -0.07911568880081177, 0.018479954451322556, -0.052262671291828156, 0.048881273716688156,
- -0.011907117441296577, 0.03304940089583397, -0.010670490562915802, 0.0543525367975235,
- 0.07166078686714172, 0.10913027077913284, -0.014176269061863422, -0.11273571103811264,
- -0.012966105714440346, 0.17989689111709595, -0.014101896435022354, -0.03489091992378235,
- 0.13404017686843872, -0.09153062850236893, 0.06294184923171997, 0.037083178758621216,
- 0.14888811111450195, -0.1324029266834259, 0.04406087100505829, -0.0061433506198227406,
- -0.03792862594127655, 0.09615407884120941, 0.006737459450960159, -0.08106925338506699,
- -0.09585493057966232, 0.05238690227270126, 0.01521383784711361, 0.07271136343479156,
- 0.08220890909433365, -0.06357672065496445, 0.03536883741617203, 0.024568138644099236,
- 0.06518946588039398, -0.04647398740053177, 0.08858977258205414, 0.08251877129077911,
- -0.07976365834474564, -0.020926805213093758, 0.06319958716630936, 0.057656530290842056,
- 0.012759529054164886, 0.016645044088363647, 0.04262905567884445, 0.02426437847316265,
- -0.029856372624635696, 0.07611586898565292, -0.03177323937416077, -0.005120903253555298,
- 0.06747932732105255, -0.050939567387104034, -0.04829956963658333, -0.00755245890468359,
- -0.001364064053632319, 0.014320002868771553, 0.06269365549087524, 0.05801021307706833,
- 0.08707302808761597, 0.03261862322688103, 0.042871393263339996, 0.0370110347867012,
- 0.05636225640773773, -0.020439809188246727, 0.050462447106838226, 0.09901219606399536,
- -0.036168310791254044, -0.07089444994926453, -0.024633854627609253,
- -0.008489847183227539, 0.11218540370464325, 0.052221864461898804, -0.08324375748634338,
- -0.013534627854824066, 0.011645540595054626, -0.04634566605091095, -0.08488686382770538,
- -0.011418772861361504, -0.03289163112640381, -0.045275188982486725,
- -0.03908514603972435, -0.06758774071931839, -0.09269806742668152, 0.00450361892580986,
- 0.06379136443138123, -0.03132687509059906, 0.006394353695213795, -0.14992249011993408,
- -0.00756047572940588, -0.04250684380531311, 0.06435778737068176, -0.040502335876226425,
- 0.06287531554698944, -0.03730164095759392, -0.02020527422428131, 0.024523718282580376,
- 0.011024253442883492, -0.019543536007404327, -0.010140408761799335,
- -0.04809858277440071, -0.027239307761192322, 0.022528786212205887, -0.01565070077776909,
- -0.006053422577679157, 0.07009688764810562, 0.035244427621364594, 0.017639774829149246,
- -0.019063200801610947, 0.010699104517698288, 0.06212340295314789, -0.04935257136821747,
- 0.008974313735961914, 0.0937245637178421, 0.025296032428741455, 0.008753947913646698,
- 0.0008728848770260811, -0.11432810127735138, -0.08968177437782288, 0.007847645319998264,
- -0.06641383469104767, 0.06483863294124603, -0.0485817976295948, -0.005986456293612719,
- 0.008018114604055882, -0.048509381711483, 0.07854745537042618, -0.0902164876461029,
- -0.07770419865846634, -0.0727386474609375, 0.09150509536266327, 0.017039712518453598,
- 0.019131222739815712, 0.013143876567482948, -0.06544609367847443, 0.05892324447631836,
- -0.02654452994465828, 0.0341295562684536, 0.026579029858112335, 0.06416270136833191,
- -0.02691669575870037, 0.04258979484438896, 0.004266450181603432, -0.023667141795158386,
- 0.0169686209410429, 0.13295817375183105, 0.4201270043849945, -0.14125856757164001,
- 0.09413567185401917, 0.0761478915810585, 0.0032862690277397633, 0.05986170470714569,
- -0.01772446557879448, 0.06740417331457138, 0.08795945346355438, 0.12948957085609436,
- 0.14934763312339783, -0.027671437710523605, -0.07092069834470749, -0.09167423099279404,
- 0.08117473870515823, 0.01137162372469902, 0.07466428726911545, -0.015422435477375984,
- -0.08385548740625381, -0.05415019020438194, -0.017171937972307205, -0.08503691107034683,
- 0.056472815573215485, 0.0057890466414391994, -0.1053876280784607, 0.02101994678378105,
- 0.04021427407860756, 0.04172247648239136, -0.005275309085845947, 0.0633644238114357,
- -0.08277759701013565, 0.04595281928777695, -0.023609302937984467, 0.06032289192080498,
- -0.03628173843026161, -0.0321597121655941, -0.0651472955942154, -0.1084568127989769,
- 0.12337274104356766, 0.012269174680113792, 0.08278778195381165, 0.035982050001621246,
- -0.009014282375574112, 0.07594357430934906, -0.12298890948295593, -0.08972247689962387,
- 0.01160544902086258, 0.02984284609556198, 0.030787719413638115, 0.12620766460895538,
- 0.13914009928703308, -0.052689097821712494, -0.015732552856206894, -0.03359605371952057,
- 0.054329726845026016, 0.14696699380874634, -0.007613559253513813, -0.014245280995965004,
- -0.015520474873483181, -0.02684432826936245, 0.02177301235496998, -0.05054442584514618,
- -0.10238616168498993, 0.029023785144090652, -0.0055925422348082066, 0.06640996038913727,
- 0.03406762331724167, -0.03970223665237427, -0.16259607672691345, -0.06538171321153641,
- -0.02988649159669876, -0.02540513500571251, 0.12076384574174881, -0.03133852779865265,
- -0.026332443580031395, -0.018778976052999496, 0.0175652876496315, 0.006374481599777937,
- -0.1433289647102356, -0.009831255301833153, -0.060146428644657135, 0.04492826759815216,
- 0.06058914586901665, 0.03143932297825813, -0.024982361122965813, 0.04229208454489708,
- -0.11065056920051575, 0.08386246860027313, 0.10412319004535675, -0.055337175726890564,
- 0.042087066918611526, -0.014135775156319141, 0.041456788778305054, 0.036584239453077316,
- -0.04943247139453888, -0.006994976662099361, -0.04824294149875641, -0.03414167836308479,
- -0.12870055437088013, -0.06760178506374359, -0.06328459829092026, -0.1439306139945984,
- 0.040023189038038254, -0.02309773676097393, -0.05063524842262268, -0.01714714616537094,
- -0.013492152094841003, 0.0319351851940155, 0.07992784678936005, 0.05175923928618431,
- -0.11596594750881195, -0.0007064314559102058, -0.050404198467731476, 0.0470263808965683,
- -0.08431965112686157, -0.060512054711580276, 0.01860439032316208, 0.040658753365278244,
- 0.0679713636636734, -0.013915368355810642, 0.02460741251707077, -0.06646445393562317,
- 0.08953054249286652, -0.09935912489891052, -0.42758941650390625, 0.051430512219667435,
- -0.0417504720389843, 0.04716058820486069, 0.03415551036596298, -0.047966860234737396,
- 0.05729055404663086, 0.011194040067493916, 0.010650871321558952, 0.07199191302061081,
- -0.028166398406028748, 0.02620701864361763, 0.010404717177152634, -0.07227543741464615,
- 0.04154262691736221, -0.07545476406812668, -0.061228953301906586, 0.03849596530199051,
- 0.014278578571975231, -0.09798175096511841, -0.0944453701376915, 0.03619770333170891,
- 0.00766152935102582, 0.08332815766334534, -0.011481884866952896, -0.013006005436182022,
- -0.06803447753190994, -0.07449105381965637, 0.0323096327483654, 0.010547393932938576,
- -0.004898866638541222, -0.07437601685523987, 0.022788207978010178, 0.0845494493842125,
- 0.010944635607302189, 0.12730267643928528, 0.023641852661967278, 0.001902763033285737,
- -0.08846976608037949, 0.05458071082830429, 0.05841241404414177, 0.18265503644943237,
- -0.042187515646219254, 0.05624522268772125, -0.007869698107242584, 0.14080891013145447,
- 0.023607531562447548, 0.056528955698013306, -0.03833384066820145, 0.03222222253680229,
- -0.019891170784831047, 0.03309886157512665, 0.08432364463806152, -0.08040086925029755,
- -0.06431396305561066, -0.014816496521234512, -0.058907024562358856,
- -0.08875413239002228, -0.05210968852043152, 0.195756733417511, 0.053160957992076874,
- -0.016237560659646988, -0.007590870372951031, -0.07475046068429947,
- -0.0039670709520578384, -0.07745151221752167, -0.08539023250341415,
- -0.008621841669082642, -0.03272093087434769, 0.01865392178297043, -0.022341610863804817,
- -0.1326879858970642, 0.0057073961943387985, -0.0013966863043606281,
- -0.01471311692148447, 0.08652369678020477, -0.10395051538944244, 0.06297720968723297,
- -0.05220853537321091, 0.16159588098526, 0.07650800049304962, 0.025173507630825043,
- 0.06062020733952522, 0.06135436147451401, -0.011956253089010715, -0.014275535941123962,
- -0.07559015601873398, -0.04846527799963951, -0.011524681933224201, 0.156296968460083,
- -0.04013128578662872, 0.09223387390375137, 0.017975766211748123, -0.08429296314716339,
- -0.043907281011343, -0.005455462262034416, 0.06222141906619072, 0.06452113389968872,
- -0.42966270446777344, -0.029978375881910324, 0.14921188354492188, -0.035287901759147644,
- 0.03841377794742584, 0.06867599487304688, 0.03452666103839874, -0.03084101900458336,
- -0.08300021290779114, -0.10525814443826675, 0.22309648990631104, -0.004796813242137432,
- 0.09541590511798859, -0.1168173998594284, 0.02695758268237114, 0.07369785010814667,
- -0.03004469722509384, -0.030695917084813118, 0.02643434889614582, -0.306840717792511,
- -0.012162496335804462, -0.06634096801280975, 0.20078930258750916, 0.07487070560455322,
- 0.04092622548341751, 0.07674850523471832, -0.04170982539653778, -0.023550208657979965,
- 0.044785164296627045, -0.002791167236864567, 0.011679147370159626, 0.016621695831418037,
- 0.002875308506190777, 0.09035474807024002, 0.06137063354253769, 0.08444264531135559,
- -0.05092160031199455, 12.165992736816406, 0.06192803382873535, 0.09069550782442093,
- -0.08737017214298248, -0.0036139036528766155, -0.070207878947258, 0.02262098342180252,
- -0.11962835490703583, 0.038552530109882355, 0.10998798161745071, -0.012915784493088722,
- -0.0611516572535038, 0.04193874076008797, -0.07542525976896286, 0.034244269132614136,
- -0.07069022953510284, -0.052810024470090866, -0.022995930165052414, 0.06472860276699066,
- -0.08105555176734924, -0.03385166451334953, 0.05038142204284668, 0.0651019737124443,
- 0.025594495236873627, -0.10017506778240204, 0.013971597887575626, 0.01584901288151741,
- -0.003577178344130516, -0.00897865742444992, 0.040546465665102005,
- -0.046203695237636566, 0.011133057996630669, 0.02670004963874817, 0.052203670144081116,
- 0.032343123108148575, 0.076986163854599, 0.004056344274431467, 0.05738189071416855,
- 0.03417721390724182, 0.05271390825510025, 0.005710526369512081, 0.025512946769595146,
- 0.025061028078198433, 0.04980499669909477, 0.04356549680233002, 0.014253053814172745,
- 0.0379902645945549, 0.0910886824131012, -0.05311300978064537, 0.08689567446708679,
- 0.10846524685621262, 0.024642666801810265, 0.0965634435415268, 0.020896386355161667,
- 0.03222332522273064, 0.06034292280673981, -0.010189017280936241, -0.06494569778442383,
- 0.08116693794727325, 0.11346660554409027, -0.05925539880990982, 0.1492273211479187,
- 0.03544685244560242, 0.09322503954172134, 0.05373175069689751, 0.06220763176679611,
- 0.06362351030111313, 0.07815239578485489, -0.1774168163537979, -0.08101999759674072,
- 0.09296974539756775, -0.07939087599515915, -0.0663142278790474, 0.08628419786691666,
- 0.07921236008405685, -0.09196677058935165, 0.1122487485408783, -0.09402826428413391,
- 0.03824621066451073, -0.10281004011631012, -0.01653352752327919, 0.002789599820971489,
- 0.01651524193584919, 0.023165127262473106, 0.010067238472402096, 0.01106104627251625,
- 0.1794743537902832, 0.09977766871452332, 0.03205392509698868, -0.09841305017471313,
- -0.040725227445364, 0.07578533887863159, 0.0019850265234708786, -0.06485693156719208,
- -0.007350192405283451, -0.07196003943681717, 0.021470598876476288, -0.15824536979198456,
- 0.09955324232578278, 0.11384443193674088, -0.12369314581155777, -0.03197961300611496,
- -0.021606648340821266, 0.10575620830059052, -0.00026113446801900864,
- 0.021573010832071304, -0.035985492169857025, 0.0029127178713679314, 0.02360866591334343,
- 0.04230597987771034, -0.061799854040145874, 0.1401897668838501, 0.07363060861825943,
- -0.07894331216812134, 0.06790551543235779, 0.08505323529243469, -0.010475238785147667,
- -0.06044527143239975, 0.05612150579690933, 0.03817814588546753, -0.1294906735420227,
- -0.0825430378317833, -0.04134073108434677, -0.028847364708781242, 0.007498160935938358,
- -0.03881576657295227, 0.029676683247089386, 0.06272504478693008, -0.03659381717443466,
- -0.07719878852367401, 0.04132787883281708, 0.059170547872781754, 0.05799093469977379,
- -0.03291163593530655, 0.08946467936038971, -0.08087048679590225, -0.0341300331056118,
- 0.04588939622044563, 0.035087570548057556, 0.0901896208524704, -0.01813616417348385,
- -0.06750273704528809, -0.038971055299043655, -0.09087764471769333, 0.029388919472694397,
- 0.1758597195148468, 0.04323586821556091, 0.018582800403237343, 0.11445271223783493,
- -0.09090228378772736, -0.048758361488580704, 0.12279407680034637, 0.020745985209941864,
- 0.00905983429402113, 0.05796246975660324, -0.09662149846553802, -0.03424425050616264,
- 0.12087284028530121, -0.029765520244836807, -0.014751698821783066, 0.02411145716905594,
- -0.06969796121120453, 0.0626724511384964, 0.07638363540172577, 0.0972181111574173,
- 0.032177072018384933, 0.024429790675640106, -0.021489981561899185, 0.042744338512420654,
- -0.0036419827956706285, 0.03392031043767929, -0.05480661988258362, -0.08123256266117096,
- -0.1043020635843277, -0.020145822316408157, 0.060052648186683655, 0.016413891687989235,
- -0.15907788276672363, 0.001641441835090518, -0.07337699830532074
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 265,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Tobi Thomas"],
- "epoch_date_downloaded": 1659398400,
- "epoch_date_modified": 1659398400,
- "epoch_date_submitted": 1658966400,
- "flag": null,
- "report_number": 1841,
- "source_domain": "theguardian.com",
- "submitters": ["Daniel Atherton (BNH.ai)"],
- "title": "Uber Eats treats drivers as ‘numbers not humans’, says dismissed UK courier",
- "url": "https://www.theguardian.com/technology/2022/jul/27/uber-eats-treats-drivers-as-numbers-not-humans-says-dismissed-courier"
- },
- {
- "__typename": "Report",
- "authors": ["George Simister"],
- "epoch_date_downloaded": 1659398400,
- "epoch_date_modified": 1659398400,
- "epoch_date_submitted": 1658966400,
- "flag": null,
- "report_number": 1840,
- "source_domain": "uktech.news",
- "submitters": ["Daniel Atherton (BNH.ai)"],
- "title": "Courier sues Uber Eats over 'racist' facial recognition dismissal",
- "url": "https://www.uktech.news/ai/uber-eats-racist-ai-dismissal-20220728"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "replika",
- "name": "Replika"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "replika",
- "name": "Replika"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "replika-users",
- "name": "Replika users"
- },
- {
- "__typename": "Entity",
- "entity_id": "replika-male-users",
- "name": "Replika male users"
- },
- {
- "__typename": "Entity",
- "entity_id": "replika",
- "name": "Replika"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1844],
- "vector": [
- -0.06303130090236664, 0.058386947959661484, 0.0018277547787874937, -0.1301797777414322,
- 0.07830756157636642, -0.0994047299027443, 0.0372283011674881, -0.005992282181978226,
- 0.08795982599258423, -0.12528222799301147, -0.04838196188211441, 0.013135112822055817,
- 0.05388668179512024, -0.06030290201306343, 0.02917715534567833, -0.0750146210193634,
- -0.049571819603443146, 0.05867546424269676, 0.045781128108501434, -0.11873512715101242,
- -0.1066812053322792, 0.014750957489013672, 0.006012830883264542, 0.14795923233032227,
- 0.001259106327779591, 0.033508311957120895, 0.11485771089792252, 0.13988962769508362,
- -0.0455344133079052, 0.03969007357954979, 0.003998662810772657, -0.08012975752353668,
- 0.14488591253757477, -0.06635475903749466, -0.025171024724841118, 0.05911034345626831,
- 0.017512567341327667, -0.04253511503338814, -0.04003690183162689, -0.03688572719693184,
- 0.06855721026659012, 0.20859773457050323, 0.013670303858816624, -0.022310934960842133,
- 0.09256406128406525, 0.02613498456776142, 0.03959617391228676, -0.034299083054065704,
- 0.0005395372281782329, -0.02238987758755684, 0.014311222359538078, -0.06307924538850784,
- -0.054924678057432175, 0.01047228742390871, -0.03518710657954216, 0.022542934864759445,
- 0.01696101576089859, 0.010039967484772205, 0.07696343958377838, -0.072962686419487,
- -0.0007332866080105305, -0.08502435684204102, -0.08770190924406052,
- -0.02964772842824459, 0.06085183098912239, -0.07531079649925232, -0.04171600565314293,
- -0.00925724022090435, -0.0016193295596167445, 0.04884016141295433, 0.03540793061256409,
- -0.08312569558620453, -0.0195255558937788, 0.0006331239710561931, -0.05275119096040726,
- -0.0009195483289659023, 0.00880426075309515, 0.21302154660224915, -0.054181259125471115,
- 0.04596720635890961, 0.08479882776737213, -0.10382188856601715, 0.3217131197452545,
- 0.011199390515685081, 0.04120281711220741, 0.04625983163714409, 0.06465556472539902,
- 0.04292377457022667, 0.012984654866158962, 0.05051625519990921, 0.04766596481204033,
- 0.05615660920739174, -0.07141896337270737, 0.010904363356530666, 0.07282967865467072,
- 0.013383422046899796, -0.02115841954946518, -0.013607697561383247, -0.01595286838710308,
- -0.09763140976428986, 0.0420057475566864, -0.028965001925826073, 0.10323301702737808,
- 0.11732668429613113, -0.04650437831878662, 0.01219115499407053, 0.08237586915493011,
- -0.02377360872924328, 0.05400983244180679, -0.06339628994464874, 0.037943318486213684,
- 0.019283343106508255, 0.07180455327033997, 0.035317666828632355, 0.004917108453810215,
- -0.06209281459450722, -0.0019052670104429126, 0.036617062985897064,
- 0.026575645431876183, 0.0283819492906332, -0.0045223962515592575, 0.07122128456830978,
- 0.11993537843227386, -0.13384860754013062, -0.05318797379732132, 0.013952228240668774,
- -0.044258516281843185, 0.0519561767578125, -0.005158120766282082, 0.019403308629989624,
- -0.03470277786254883, -0.16309870779514313, 0.0331820547580719, -0.009983105584979057,
- -0.011010034009814262, -0.02815064787864685, -0.022477881982922554,
- -0.05590458959341049, -0.0037810313515365124, 0.00975901260972023, 0.061116039752960205,
- 0.025874944403767586, 0.03668304160237312, -0.015011059120297432, 0.05805649980902672,
- 0.0005530733615159988, -0.034645091742277145, -0.06313558667898178,
- -0.07928439974784851, -0.016713904216885567, 0.13079075515270233, -0.10237424075603485,
- -0.020550193265080452, 0.059114232659339905, -0.03230806067585945, 0.571740448474884,
- 0.09269605576992035, 0.13671167194843292, -0.03280946612358093, 0.01668277382850647,
- 0.13193555176258087, -0.011371702887117863, 0.032841891050338745, -0.03574852645397186,
- -0.04463326930999756, -0.03269308805465698, -0.07673370093107224, 0.010249001905322075,
- 0.04634344205260277, 0.00880407728254795, 0.11682049930095673, 0.03797782585024834,
- 0.14199678599834442, -0.012561769224703312, -0.028577182441949844,
- -0.019225068390369415, -0.0005036764196120203, 0.03462856262922287,
- -0.07961688190698624, -0.014550072140991688, 0.06202877312898636, 0.09229541569948196,
- -0.03565652668476105, 0.013142900541424751, -0.07066845893859863, 0.08183667063713074,
- -0.011555984616279602, -0.0021580879110842943, 0.028036687523126602,
- 0.014822173863649368, 0.044253963977098465, 0.04502488300204277, -0.0345943421125412,
- -0.033924203366041183, -0.047978200018405914, 0.07063900679349899, 0.017754923552274704,
- -0.0276791974902153, 0.08317133039236069, -0.05814274773001671, 0.0006263229297474027,
- -0.009473648853600025, 0.11982078850269318, -0.09183739125728607, 0.057602155953645706,
- -0.008862793445587158, 0.0035334727726876736, -0.008108027279376984,
- -0.011259566992521286, -0.06452827900648117, -0.0642130896449089, 0.10775779187679291,
- -0.0048989239148795605, 0.09161477535963058, -0.004782301373779774,
- -0.021023623645305634, 0.04353658854961395, -0.013323472812771797, 0.02631600759923458,
- -0.0872536450624466, 0.06675129383802414, 0.00573598500341177, -0.09704083204269409,
- -0.048286911100149155, 0.07430163025856018, 0.057313572615385056, 0.05943433940410614,
- 0.0022797551937401295, 0.09979017078876495, -0.038561299443244934, -0.03864743188023567,
- 0.04327138140797615, 0.07039603590965271, 0.026572391390800476, 0.07733708620071411,
- -0.10779941082000732, -0.02200891822576523, -0.05511043220758438, -0.02632986195385456,
- 0.002184682758525014, -0.06626035273075104, 0.06042126193642616, 0.07081827521324158,
- 0.10046893358230591, -0.010342554189264774, 0.04576314613223076, 0.03511379286646843,
- 0.05159575492143631, 0.008029146119952202, 0.06092599034309387, -0.011539964005351067,
- 0.04144569858908653, -0.029511019587516785, 0.013419585302472115, 0.065876804292202,
- -0.019666338339447975, -0.026083145290613174, -0.03529765084385872,
- -0.07710238546133041, -0.08381564915180206, -0.13487090170383453, -0.03647933155298233,
- 0.006795480381697416, 0.01725597120821476, -0.1035812497138977, -0.04123682528734207,
- -0.04441042244434357, 0.0258908960968256, 0.03702356666326523, -0.010924484580755234,
- -0.030773233622312546, -0.08598463237285614, 0.06213702633976936, 0.03169703483581543,
- 0.039601393043994904, -0.016967812553048134, -0.011433975771069527,
- -0.008091270923614502, -0.10106534510850906, -0.033467717468738556, 0.05389463156461716,
- -0.07901746034622192, -0.01336765568703413, -0.02778492495417595, -0.023041920736432076,
- -0.013696009293198586, 0.02510855905711651, -0.02799820341169834, -0.027407711371779442,
- 0.06704218685626984, 0.08647214621305466, -0.07197612524032593, -0.010675882920622826,
- 0.046808790415525436, -0.0060213184915483, 0.017745161429047585, 0.06833430379629135,
- -0.03514770418405533, 0.05956846848130226, -0.04746799170970917, -0.012213744223117828,
- -0.07619559019804001, 0.0038890899159014225, -0.03935757651925087, 0.036743029952049255,
- -0.05111823230981827, -0.0534936897456646, -0.024431681260466576, 0.016916578635573387,
- 0.06527231633663177, -0.049736592918634415, -0.02804233692586422, -0.08951916545629501,
- 0.0707654058933258, -0.0226421058177948, 0.03651757910847664, 0.02058371528983116,
- -0.03855226933956146, 0.05177529901266098, 0.02875877358019352, 0.025552816689014435,
- 0.10823361575603485, 0.07973397523164749, -0.03299568593502045, 0.03305831924080849,
- 0.12048856168985367, 0.053094733506441116, 0.02976599708199501, 0.06700938194990158,
- 0.38454893231391907, -0.12752865254878998, 0.12601570785045624, 0.09865964204072952,
- 0.059383295476436615, 0.061550453305244446, -0.01615646295249462, 0.07232371717691422,
- 0.021179068833589554, 0.0735011026263237, 0.14869551360607147, -0.057255301624536514,
- 0.010702267289161682, -0.032055795192718506, 0.03847693279385567, 0.04005034267902374,
- 0.03544975444674492, 0.015486979857087135, -0.0474124401807785, -0.01801682822406292,
- 0.011211157776415348, -0.018856044858694077, 0.04236026108264923, -0.08194877952337265,
- -0.024590453132987022, 0.042988501489162445, 0.05773891881108284, 0.050721872597932816,
- -0.023728860542178154, 0.05983491986989975, 0.014325532130897045, 0.012715375050902367,
- -0.00381243834272027, 0.05102213844656944, -0.08361709862947464, 0.022633157670497894,
- -0.06706466525793076, -0.12803161144256592, 0.024138862267136574, 0.050663504749536514,
- 0.06393714249134064, 0.05020393803715706, -0.0351746641099453, 0.058806441724300385,
- -0.05702587217092514, -0.032962873578071594, -0.028220636770129204,
- -0.0025907319504767656, 0.07237298786640167, 0.11508331447839737, 0.1413373053073883,
- -0.025699498131871223, 0.008469987660646439, -0.07563474029302597, 0.04096020385622978,
- 0.11983616650104523, -0.007830247282981873, 0.0338054820895195, -0.0055580479092895985,
- 0.026211334392428398, -0.014078136533498764, -0.043202608823776245,
- -0.04855569452047348, -0.00538649782538414, -0.10949245095252991, 0.047729868441820145,
- 0.03278515860438347, -0.026441022753715515, -0.03542564436793327, -0.04643987864255905,
- -0.07242962718009949, 0.05219784751534462, 0.07192645221948624, -0.0650574341416359,
- 0.02165011316537857, 0.010001649148762226, 0.006023228168487549, -0.03172815218567848,
- -0.07204273343086243, 0.013642399571835995, -0.050975240767002106, 0.057116519659757614,
- 0.11140065640211105, 0.06844343990087509, -0.07478254288434982, 0.010900987312197685,
- -0.1327330321073532, 0.005164735950529575, -0.011506308801472187, -0.05846893787384033,
- 0.005573529750108719, -0.041940927505493164, 0.06334029883146286, -0.006963925901800394,
- -0.06497305631637573, -0.0810229629278183, -0.05312635749578476, -0.014921741560101509,
- -0.09135346114635468, -0.1016862541437149, -0.03601790964603424, -0.0711488127708435,
- 0.07702337950468063, -0.0511411689221859, 0.046455830335617065, -0.05602151155471802,
- 0.04142463207244873, -0.017594685778021812, 0.01747012510895729, -0.020906616002321243,
- -0.10662975907325745, -0.03990061953663826, -0.04635436460375786, 0.009798457846045494,
- -0.059005916118621826, -0.058595795184373856, -0.04720241203904152, 0.0637446790933609,
- -0.0031926303636282682, -0.05536731332540512, 0.006077826023101807,
- -0.004084944259375334, 0.0555390901863575, -0.0936254933476448, -0.36683687567710876,
- 0.06395000964403152, 0.06389660388231277, 0.05199582129716873, 0.007222016341984272,
- -0.059022147208452225, 0.03040033020079136, 0.03122606687247753, 0.02302919141948223,
- 0.052243929356336594, -0.05630806088447571, 0.035444729030132294, -0.0371091328561306,
- -0.06215590238571167, -0.0051081255078315735, -0.05682297423481941,
- -0.006890912540256977, 0.019275344908237457, 0.011153005063533783, -0.06396641582250595,
- -0.09208178520202637, 0.016021594405174255, -0.015296081081032753,
- -0.013777093961834908, -0.011984390206634998, 0.004821270238608122, -0.0888400748372078,
- -0.06652595102787018, 0.01109180599451065, 0.030983000993728638, -0.007417978718876839,
- -0.09905955195426941, -0.00031657749786973, 0.017780909314751625, -0.022273292765021324,
- 0.12474232912063599, 0.051066406071186066, 0.05245792493224144, -0.07409365475177765,
- 0.06335814297199249, 0.10483953356742859, 0.18663518130779266, -0.07647845894098282,
- 0.0733121708035469, -0.013621639460325241, 0.02423703484237194, -0.006893721874803305,
- 0.02571456879377365, -0.028415916487574577, -0.03276723623275757, 0.03642823547124863,
- -0.017929336056113243, 0.07358252257108688, -0.03682175278663635, -0.03462853282690048,
- -0.0244698878377676, -0.037662409245967865, -0.04111700877547264, -0.023941710591316223,
- 0.13560059666633606, 0.05173269286751747, -0.010606754571199417, 0.0272647887468338,
- -0.012536879628896713, -0.009447530843317509, -0.1345328539609909, 0.013174580410122871,
- -0.08263381570577621, -0.020986512303352356, 0.04183275252580643, -0.057216715067625046,
- -0.0880652591586113, -0.02182414010167122, 0.021840862929821014, -0.015018519945442677,
- 0.1289474070072174, -0.06741547584533691, -0.006896832026541233, -0.028483809903264046,
- 0.1575467586517334, -0.006035155151039362, 0.03669563680887222, 0.03542941063642502,
- 0.04445495456457138, 0.008355998434126377, -0.010799871757626534, -0.03906067833304405,
- -0.12185143679380417, 0.027302339673042297, 0.13809145987033844, 0.006622644606977701,
- 0.10817573219537735, 0.005535332020372152, 0.017357973381876945, -0.016509216278791428,
- 0.03239685297012329, 0.037981800734996796, 0.0015612400602549314, -0.41087037324905396,
- -0.09010773152112961, 0.12050265818834305, -0.02029779925942421, 0.019525261595845222,
- 0.06568276882171631, 0.007734831888228655, -0.02416657656431198, 0.0033463810104876757,
- -0.08409581333398819, -0.004597348626703024, 0.012668211944401264, 0.016175780445337296,
- -0.13982227444648743, 0.011713160201907158, 0.057206057012081146, 0.028222903609275818,
- -0.017061598598957062, 0.04443569853901863, -0.27029192447662354, 0.033145882189273834,
- -0.015266128815710545, 0.11945528537034988, -0.014855777844786644, 0.02608705684542656,
- 0.07739819586277008, -0.02967439405620098, 0.05377448722720146, 0.026562610641121864,
- 0.10407429188489914, 0.09185808897018433, -0.05506297945976257, -0.0403280183672905,
- 0.04373358190059662, 0.05785934254527092, 0.121657595038414, 0.03957647830247879,
- 12.004347801208496, 0.05361941084265709, 0.06193842738866806, -0.12643472850322723,
- -0.0037244982086122036, -0.020586974918842316, 0.005176950711756945,
- -0.07208417356014252, 0.0554719902575016, 0.0742926299571991, -0.006421506404876709,
- -0.012363266199827194, -0.025949712842702866, -0.019469596445560455,
- 0.020611397922039032, -0.0603092797100544, -0.028023838996887207, -0.0365583710372448,
- 0.055345144122838974, -0.04146828129887581, -0.038717906922101974, 0.04328363016247749,
- 0.07850709557533264, -0.018931468948721886, -0.0838223546743393, 0.15803655982017517,
- 0.0037824821192771196, 0.06859865039587021, 0.009641021490097046, 0.019067715853452682,
- 0.08434522897005081, 0.04849774390459061, 0.08983515202999115, 0.013411332853138447,
- 0.026371002197265625, 0.07358899712562561, -0.011807435192167759, 0.019396882504224777,
- 0.0704411044716835, 0.05216170474886894, -0.008439527824521065, 0.01838616654276848,
- 0.03238503262400627, 0.04745994508266449, 0.020111728459596634, 0.027118628844618797,
- -0.00028312718495726585, 0.0945640280842781, 0.01316654309630394, 0.0316716730594635,
- 0.08089911192655563, -0.002735377289354801, 0.07949644327163696, 0.05932186171412468,
- -0.015684237703680992, 0.0004408943641465157, -0.03808974474668503,
- -0.06768213957548141, 0.08177056908607483, 0.10219370573759079, -0.054957110434770584,
- 0.07262785732746124, 0.014910110272467136, 0.1386403739452362, 0.04413757845759392,
- 0.02543802186846733, 0.10554780066013336, 0.08471114933490753, -0.020225107669830322,
- -0.03350476548075676, 0.03611871972680092, -0.07236841320991516, -0.05855724215507507,
- 0.06907888501882553, 0.03257982060313225, 0.06214519217610359, 0.04535122588276863,
- -0.02537502720952034, 0.07482881844043732, -0.010002083145081997, 0.014656235463917255,
- 0.04189318045973778, -0.12775719165802002, 0.04087885841727257, -0.021941976621747017,
- 0.039662979543209076, 0.06697149574756622, 0.06978864222764969, 0.038808759301900864,
- -0.08031812310218811, -0.09150166809558868, 0.0433691069483757, 0.024838702753186226,
- -0.0431535504758358, 0.04527321457862854, -0.09376538544893265, 0.0069511570036411285,
- -0.14509637653827667, 0.012702926993370056, 0.13343113660812378, -0.09755626320838928,
- -0.0039306203834712505, -0.032491400837898254, 0.11606232076883316, 0.02658669278025627,
- -0.005762436427175999, -0.01231044065207243, -0.05484622344374657, 0.020008202642202377,
- 0.024126967415213585, -0.04226072132587433, 0.08366932719945908, 0.04917088896036148,
- -0.059960223734378815, 0.024358481168746948, 0.00615138141438365, -0.029104802757501602,
- -0.009188273921608925, 0.02242172136902809, 0.04142332449555397, -0.0775848850607872,
- -0.01112186349928379, -0.07327133417129517, -0.046317748725414276, 0.008970361202955246,
- -0.053492236882448196, -0.0101932929828763, 0.033831894397735596, -0.03722674399614334,
- -0.012234567664563656, -0.028116952627897263, 0.05337931960821152, 0.20404939353466034,
- -0.014628292992711067, 0.056879375129938126, -0.016104910522699356,
- -0.01108683180063963, 0.05128953605890274, 0.012299164198338985, 0.09258437901735306,
- -0.06000881269574165, -0.03189080208539963, -0.025915982201695442, -0.09814475476741791,
- 0.027531037107110023, 0.014939465560019016, 0.05081990361213684, 0.03787235915660858,
- -0.004844571463763714, -0.08041808754205704, -0.05317606031894684, 0.1358708143234253,
- 0.05685335397720337, -0.014649920165538788, 0.09827304631471634, -0.031861964613199234,
- -0.022097449749708176, 0.08701527863740921, -0.021741043776273727,
- -0.027727846056222916, 0.005469216499477625, -0.11322459578514099, 0.025110872462391853,
- 0.10108412802219391, 0.06959616392850876, 0.005238459911197424, 0.016724159941077232,
- -0.020144492387771606, 0.015611410140991211, 0.03061569668352604,
- -0.0016281409189105034, -0.058582596480846405, -0.040576592087745667,
- -0.09546882659196854, 0.03161304444074631, 0.07409326732158661, 0.09232863038778305,
- -0.172245591878891, 0.010853022336959839, -0.02589995600283146
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 266,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Ashley Bardhan"],
- "epoch_date_downloaded": 1659484800,
- "epoch_date_modified": 1659484800,
- "epoch_date_submitted": 1659484800,
- "flag": null,
- "report_number": 1844,
- "source_domain": "futurism.com",
- "submitters": ["Sonali Pednekar (CSET)", "AIAAIC"],
- "title": "Men Are Creating AI Girlfriends and Then Verbally Abusing Them",
- "url": "https://futurism.com/chatbot-abuse"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "clearview-ai",
- "name": "Clearview AI"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "clearview-ai",
- "name": "Clearview AI"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "social-media-users",
- "name": "social media users"
- },
- {
- "__typename": "Entity",
- "entity_id": "instagram-users",
- "name": "Instagram users"
- },
- {
- "__typename": "Entity",
- "entity_id": "facebook-users",
- "name": "Facebook users"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [2226, 2144, 2143, 2142, 2141, 2101, 1848, 1847, 1846, 1845],
- "vector": [
- -0.053796250373125076, 0.06738129258155823, 0.004128964617848396, -0.09999851882457733,
- 0.056202422827482224, -0.057017046958208084, 0.013457119464874268, 0.05245782062411308,
- 0.08187972009181976, -0.14743494987487793, -0.009998498484492302, 0.05009268596768379,
- 0.03046722337603569, -0.057978831231594086, 0.009150725789368153, -0.1035773754119873,
- -0.09393240511417389, -0.04539340361952782, 0.0002048267488135025, -0.12505020201206207,
- -0.0801204964518547, 0.0061170561239123344, 0.03641362488269806, 0.10577625036239624,
- -0.032168276607990265, 0.047976475208997726, 0.09972437471151352, 0.11767488718032837,
- -0.08799836039543152, 0.06394658982753754, -0.010787657462060452, -0.06094742566347122,
- 0.12756171822547913, 0.005344941280782223, 0.0067816609516739845, 0.10099170356988907,
- 0.038303911685943604, -0.05503960698843002, 0.01647859625518322, -0.010675495490431786,
- 0.016551567241549492, 0.2338312566280365, -0.0176357701420784, 0.003072669031098485,
- 0.052578169852495193, -0.038381658494472504, 0.01663803681731224, 0.052241940051317215,
- -0.003336980938911438, 0.0006524549680761993, -0.012725604698061943,
- 0.03521869704127312, -0.04652365297079086, 0.049119506031274796, -0.08484021574258804,
- 0.07216513156890869, 0.02899492159485817, -0.00805455818772316, 0.02370288595557213,
- -0.0712493434548378, -0.027480345219373703, -0.20136460661888123, -0.04116278141736984,
- -0.08322723954916, 0.07804574072360992, -0.08439718931913376, -0.029150953516364098,
- 0.03068479523062706, 0.0040117911994457245, 0.05638853833079338, 0.04045777767896652,
- -0.039261333644390106, -0.014580817893147469, -0.018118571490049362,
- 0.004095026291906834, -0.035614293068647385, 0.04035705700516701, 0.18306104838848114,
- -0.09328707307577133, 0.04120953381061554, 0.10676483064889908, -0.09481186419725418,
- 0.39334598183631897, 0.01169874332845211, -0.00582766393199563, -0.012779606506228447,
- 0.08330179750919342, 0.04523732140660286, 0.0432344488799572, 0.026043856516480446,
- -0.022320345044136047, 0.028854751959443092, -0.05162305384874344, -0.02996797300875187,
- 0.07968099415302277, 0.021077457815408707, -0.014162326231598854, -0.003345280420035124,
- -0.018050801008939743, -0.05834360048174858, -0.013558169826865196,
- -0.025978464633226395, 0.10426117479801178, 0.0834582969546318, -0.0458257794380188,
- -0.0011146708857268095, 0.055914439260959625, -0.06288604438304901,
- 0.036468155682086945, -0.04895044490695, 0.029433924704790115, 0.0066176727414131165,
- 0.05616174265742302, 0.0012330380268394947, 0.036880217492580414, -0.07504840195178986,
- 0.011186306364834309, 0.027703046798706055, 0.09395365417003632, 0.03751711547374725,
- -0.00441944133490324, 0.056917428970336914, 0.0973827913403511, -0.07224704325199127,
- -0.006491707172244787, -0.040912069380283356, -0.029687410220503807,
- -0.00530951889231801, -0.027256447821855545, 0.03534619137644768, -0.04695598781108856,
- -0.18647263944149017, 0.017906751483678818, 0.07331176847219467, -0.0018938297871500254,
- -0.036534883081912994, -0.0011165192117914557, -0.04027795046567917,
- 0.026776831597089767, -0.0046297297812998295, 0.010759064927697182, 0.08549192547798157,
- 0.021374117583036423, 0.04588018357753754, 0.13052120804786682, 0.03193254396319389,
- -0.05622967332601547, -0.05487493798136711, -0.027854815125465393,
- -0.037932612001895905, 0.08969683945178986, -0.13301034271717072, -0.055637627840042114,
- 0.018795516341924667, -0.012990337796509266, 0.6898561716079712, 0.08945925533771515,
- 0.1428559571504593, -0.010709238238632679, -0.01774532161653042, 0.17389443516731262,
- -0.007120816502720118, 0.09026114642620087, -0.07629157602787018, -0.059502013027668,
- 0.015127452090382576, -0.08061635494232178, -0.02282126434147358, 0.0254642516374588,
- 0.041140228509902954, 0.1152169331908226, 0.021097518503665924, 0.08859413117170334,
- 0.0075101228430867195, -0.08380194008350372, -0.009855257347226143,
- 0.024852335453033447, 0.015488890931010246, -0.12953022122383118, -0.02928205393254757,
- 0.06392288208007812, 0.08987586945295334, -0.08328273892402649, 0.005663336254656315,
- -0.06133958697319031, 0.024871740490198135, -0.029773438349366188, 0.04276227205991745,
- -0.02117990329861641, 0.02243957296013832, 0.047768257558345795, 0.05551985651254654,
- -0.001007630256935954, -0.12768736481666565, -0.054653964936733246, 0.11001008749008179,
- 0.004294660873711109, -0.026676630601286888, 0.09411214292049408, -0.08888693898916245,
- 0.05521267652511597, 0.0187586210668087, 0.1401306390762329, -0.10723867267370224,
- 0.018922466784715652, -0.005640129558742046, -0.013113987632095814,
- 0.035575754940509796, -0.006358464248478413, -0.07120362669229507, -0.05771865323185921,
- 0.04066906124353409, 0.04565521702170372, 0.08003675192594528, 0.04748879000544548,
- -0.052102088928222656, 0.027740035206079483, -0.0071580796502530575,
- -0.0016564398538321257, -0.0715487152338028, 0.08753211051225662, 0.04786290228366852,
- -0.02631865069270134, -0.031137874349951744, 0.05697754770517349, 0.04324223846197128,
- 0.014047068543732166, -0.0034209899604320526, 0.04454115405678749, -0.02705002762377262,
- -0.052698083221912384, 0.028458360582590103, 0.052069853991270065, 0.02014238014817238,
- 0.09335373342037201, -0.07268887013196945, -0.028517793864011765, -0.02248169109225273,
- -0.0367741584777832, 0.0158548466861248, -0.001261592609807849, 0.07049228250980377,
- 0.08724207431077957, 0.05915490910410881, 0.012024874798953533, 0.04442436620593071,
- 0.07334879785776138, 0.006629517767578363, 0.028056198731064796, 0.08026397228240967,
- -0.0165024995803833, -0.0231227595359087, -0.019040396437048912, -0.004587625153362751,
- 0.05350358411669731, 0.04256859049201012, -0.07035129517316818, -0.020933546125888824,
- -0.043610673397779465, -0.04108348488807678, -0.08201555907726288, -0.06375032663345337,
- -0.0031212724279612303, 0.03405911475419998, -0.048394832760095596, -0.0749567523598671,
- -0.07001347839832306, 0.014947785064578056, 0.07425934076309204, -0.034801460802555084,
- -0.015125298872590065, -0.1089729517698288, 0.01930307410657406, -0.014113930985331535,
- 0.06011400744318962, -0.01597505994141102, 0.04072288051247597, 0.01040694024413824,
- -0.08740799129009247, 0.017055267468094826, 0.005000118166208267, -0.02547147311270237,
- -0.03325680270791054, -0.0592111274600029, -0.045742277055978775, -0.018814699724316597,
- -0.002066484885290265, -0.021737854927778244, 0.035297490656375885,
- 0.038195934146642685, 0.049223046749830246, -0.016100838780403137,
- 0.0009034309769049287, 0.06417284160852432, -0.042855147272348404,
- -0.009338521398603916, 0.0955793485045433, -0.02754615619778633, 0.02684715948998928,
- -0.0031258121598511934, -0.053009163588285446, -0.06424412131309509,
- 0.0049400487914681435, -0.036172013729810715, 0.04166064411401749,
- -0.028216958045959473, 0.018369466066360474, -0.04834304004907608,
- -0.017104070633649826, 0.07476960122585297, -0.09127405285835266, -0.07263417541980743,
- -0.08270255476236343, 0.09157693386077881, -0.0041318973526358604,
- 0.0007800916209816933, 0.008182728663086891, -0.050799839198589325, 0.0501590296626091,
- -0.011840716935694218, 0.009146529249846935, 0.0314466767013073, 0.039489276707172394,
- -0.04062826186418533, 0.037655413150787354, 0.05695207044482231, -0.02241230383515358,
- 0.0182875394821167, 0.07343684136867523, 0.40087851881980896, -0.1405911147594452,
- 0.11263382434844971, 0.08933700621128082, 0.006971292197704315, 0.03607120364904404,
- -0.026082858443260193, 0.07503043860197067, 0.08127479255199432, 0.12429317086935043,
- 0.09398644417524338, -0.05399373173713684, -0.012990599498152733, -0.09300485998392105,
- 0.09723998606204987, 0.01666748896241188, 0.015664957463741302, 0.001108984462916851,
- -0.0630163699388504, -0.011830352246761322, 0.04424510896205902, -0.051319025456905365,
- 0.013248937204480171, -0.0142263974994421, -0.07191148400306702, 0.026230309158563614,
- 0.008775090798735619, 0.056344449520111084, -0.03124374710023403, 0.04615750163793564,
- 0.018377164378762245, 0.04877234250307083, 0.018262121826410294, 0.05184248834848404,
- -0.08256280422210693, 0.04225928336381912, -0.09244038909673691, -0.08614286780357361,
- 0.06709098815917969, 0.0005817642668262124, 0.06017496436834335, 0.036384787410497665,
- -0.029978713020682335, 0.05365568399429321, -0.04781781882047653, -0.057710688561201096,
- 0.006785465870052576, 0.06356948614120483, 0.014778968878090382, 0.09081277996301651,
- 0.16384664177894592, -0.035662438720464706, -0.03826453164219856, -0.06987585127353668,
- 0.061183780431747437, 0.1189642995595932, -0.018505655229091644, 0.026518184691667557,
- 0.034199126064777374, -0.025250082835555077, 0.006975704338401556,
- -0.046324677765369415, -0.09513723850250244, 0.015472939237952232,
- -0.033946264535188675, 0.07306423038244247, 0.02769242227077484, -0.03369623422622681,
- -0.12464237213134766, -0.048326119780540466, -0.030302146449685097,
- 0.009018673561513424, 0.10172358900308609, -0.055481504648923874, 0.019962197169661522,
- 0.008761392906308174, 0.0292084701359272, 0.0010014354484155774, -0.0797749012708664,
- -0.0073731751181185246, -0.040643010288476944, 0.031082075089216232,
- 0.07186464220285416, 0.05660709738731384, -0.015240286476910114, 0.05190861225128174,
- -0.11153801530599594, 0.05171618610620499, 0.04761194437742233, -0.04634501412510872,
- 0.020575055852532387, -0.020639188587665558, 0.025629183277487755, 0.008710699155926704,
- -0.049952223896980286, -0.019952978938817978, -0.051500529050827026,
- -0.0373518206179142, -0.07776902616024017, -0.04111757501959801, -0.04304425045847893,
- -0.07418500632047653, 0.06464434415102005, -0.09635376185178757, -0.014852563850581646,
- -0.0047787511721253395, -0.016398968175053596, -0.0023461312521249056,
- 0.03185528889298439, 0.020177271217107773, -0.1405637562274933, -0.004929618444293737,
- -0.008532976731657982, 0.03956034407019615, -0.03632395714521408, -0.06601519882678986,
- 0.016642045229673386, 0.07257697731256485, 0.027619248256087303, -0.059208981692790985,
- 0.0068570286966860294, -0.051929276436567307, 0.07188793271780014, -0.1342168152332306,
- -0.4103710651397705, 0.05450090765953064, 0.0031978494953364134, 0.04584461450576782,
- 0.014723594300448895, -0.08218184858560562, 0.04515083506703377, 0.018652770668268204,
- -0.04235975816845894, 0.0761820375919342, -0.041412822902202606, 0.030830319970846176,
- -0.01302996464073658, -0.04726651683449745, 0.008872849866747856, -0.06700848788022995,
- -0.061050496995449066, 0.03189386799931526, -0.026694348081946373, -0.05814945697784424,
- -0.11448149383068085, -0.003938137087970972, -0.017968161031603813,
- 0.032234225422143936, 0.012278306297957897, 0.02241988107562065, -0.06729624420404434,
- -0.04701963812112808, 0.03548959270119667, 0.05644330382347107, 0.004368399735540152,
- -0.0661267340183258, 0.017423409968614578, 0.053023241460323334, -0.024353135377168655,
- 0.11861081421375275, 0.04026993364095688, 0.0026794124860316515, -0.08399492502212524,
- 0.07769142836332321, 0.09300896525382996, 0.18601489067077637, -0.011769762262701988,
- 0.03303908556699753, 0.031141484156250954, 0.13388773798942566, 0.03354800492525101,
- 0.05558071285486221, -0.04630335420370102, -0.004639120772480965, 0.01604009047150612,
- 0.006256555672734976, 0.08422062546014786, -0.07763899862766266, -0.014114225283265114,
- -0.047956909984350204, -0.029706299304962158, -0.0490705631673336,
- -0.030263137072324753, 0.19196423888206482, 0.015085366554558277, 0.011817889288067818,
- 0.025397513061761856, -0.046460628509521484, -0.00787241943180561, -0.09373487532138824,
- -0.08432808518409729, -0.012703636661171913, -0.006060442421585321,
- 0.036734651774168015, -0.04190897196531296, -0.12502387166023254,
- -0.00012914951366838068, -0.02002096176147461, -0.005326495971530676,
- 0.11095517873764038, -0.059869833290576935, 0.04749118164181709, -0.04949605092406273,
- 0.1440170705318451, 0.024969087913632393, 0.0039179581217467785, 0.05810178071260452,
- 0.10943667590618134, 0.007485532201826572, -0.003016641130670905, -0.0301925428211689,
- -0.08027110993862152, -0.021816100925207138, 0.13907906413078308, -0.021319786086678505,
- 0.14278924465179443, 0.033572420477867126, -0.0558752715587616, -0.05806843191385269,
- 0.006347827613353729, -0.0020913472399115562, 0.014709169045090675, -0.4321208596229553,
- -0.01983577571809292, 0.12340054661035538, -0.023896269500255585, 0.04144788160920143,
- 0.06830102950334549, 0.013161351904273033, -0.026443641632795334, -0.025223318487405777,
- -0.06679031252861023, 0.16655220091342926, 0.01986241526901722, 0.09063415229320526,
- -0.10195555537939072, 0.026891198009252548, 0.07586286216974258, 0.0016410788521170616,
- -0.008305682800710201, 0.029876474291086197, -0.24831481277942657,
- -0.012947645969688892, -0.04247063025832176, 0.1313745081424713, 0.03522243723273277,
- 0.035998258739709854, 0.07618790119886398, -0.06018446758389473, 0.0038629688788205385,
- 0.03493429347872734, -0.0029464231338351965, 0.02253628894686699, 0.0027993246912956238,
- -0.026809822767972946, 0.09693442285060883, 0.07584348320960999, 0.06173389032483101,
- -0.026070166379213333, 11.983602523803711, 0.05372574180364609, 0.06765838712453842,
- -0.09527327120304108, 0.010584612376987934, -0.03637554123997688, 0.013530542142689228,
- -0.0681440532207489, 0.08501497656106949, 0.11491276323795319, -0.034892018884420395,
- -0.0622517354786396, -0.042571909725666046, -0.06020636111497879, 0.013857660815119743,
- -0.028673484921455383, -0.019203169271349907, -0.03350240737199783, 0.0482705719769001,
- -0.02582278847694397, -0.02709336020052433, 0.01450988370925188, 0.06826074421405792,
- 0.017932754009962082, -0.10433320701122284, 0.00531721580773592, 0.024776669219136238,
- -0.0028826436027884483, -0.0028505490627139807, 0.022625789046287537,
- 0.022503051906824112, 0.012988081201910973, 0.08709526062011719, -0.0019167248392477632,
- 0.010309523902833462, 0.04792826250195503, 0.0447169691324234, 0.04519445076584816,
- 0.038375724107027054, 0.0395406112074852, 0.013041635975241661, 0.03803858906030655,
- -0.006630795542150736, 0.06118515133857727, 0.06359031051397324, 0.03496203571557999,
- 0.021090928465127945, 0.10521505028009415, -0.0004852316342294216, 0.0615600161254406,
- 0.09569325298070908, -0.013559180311858654, 0.10020357370376587, 0.017423951998353004,
- -0.0020624075550585985, 0.06312824040651321, 0.017524508759379387, -0.06602934002876282,
- 0.054647743701934814, 0.028585204854607582, -0.056849975138902664, 0.11241278797388077,
- 0.010613142512738705, 0.12255728244781494, 0.013053059577941895, 0.053104303777217865,
- 0.06754972785711288, 0.09750935435295105, -0.13414135575294495, -0.0780133605003357,
- 0.043885238468647, -0.10099915415048599, -0.05731645226478577, 0.09280958026647568,
- 0.07776400446891785, -0.014024930074810982, 0.07066662609577179, -0.020444324240088463,
- 0.04006636142730713, -0.018718570470809937, 0.012702926993370056, 0.04640795662999153,
- -0.023023057729005814, 0.0026432638987898827, 0.0303738322108984, 0.01312045194208622,
- 0.09914456307888031, 0.12136195600032806, -0.0021993883419781923, -0.08204339444637299,
- -0.07104896008968353, 0.11406578868627548, 0.000005108187906444073,
- -0.05751601606607437, 0.0060483431443572044, -0.05818832665681839,
- 0.0013727503828704357, -0.14282110333442688, 0.0875578448176384, 0.1234799176454544,
- -0.04945433884859085, -0.03643564507365227, -0.0334731861948967, 0.102289579808712,
- 0.0037976945750415325, 0.02825259603559971, -0.0808948427438736, -0.0020269332453608513,
- 0.025968963280320168, 0.047261204570531845, -0.0640762597322464, 0.07396931201219559,
- 0.048231229186058044, -0.06677620112895966, 0.022886676713824272, 0.06964791566133499,
- -0.05254340171813965, -0.021092180162668228, 0.05575517565011978, 0.03377949073910713,
- -0.11454993486404419, -0.05268862843513489, -0.04382762685418129, -0.035758115351200104,
- -0.0005265026120468974, -0.05047869682312012, 0.0025541658978909254,
- 0.016891345381736755, -0.05226469784975052, -0.02544645592570305, 0.03532537817955017,
- 0.0399223193526268, 0.09514109790325165, 0.0028434512205421925, 0.06387633085250854,
- -0.04566630348563194, -0.03632364422082901, 0.04548483341932297, 0.07478722184896469,
- 0.07497355341911316, -0.04393138736486435, -0.026588385924696922, -0.03776472806930542,
- -0.09841091185808182, 0.025052543729543686, 0.10853736102581024, 0.04088561609387398,
- 0.010253610089421272, 0.02318914793431759, -0.07492964714765549, -0.028176838532090187,
- 0.1009201854467392, -0.004039922263473272, 0.03310752287507057, 0.04673812538385391,
- -0.07188822329044342, -0.025329872965812683, 0.11207975447177887, -0.042272817343473434,
- -0.008286798372864723, 0.025013545528054237, -0.09221142530441284, 0.0748748928308487,
- 0.05264003947377205, 0.04554393142461777, 0.03602572903037071, 0.05281778424978256,
- 0.011181889101862907, 0.044237133115530014, -0.0004757125861942768,
- 0.012224089354276657, -0.0521390326321125, -0.07567928731441498, -0.0909356102347374,
- 0.006458797957748175, 0.08960157632827759, 0.0506209060549736, -0.1461731642484665,
- -0.0069777267053723335, -0.03983507677912712
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 267,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Le Monde"],
- "epoch_date_downloaded": 1667347200,
- "epoch_date_modified": 1667347200,
- "epoch_date_submitted": 1666742400,
- "flag": null,
- "report_number": 2226,
- "source_domain": "lemonde.fr",
- "submitters": ["Johann Hanssen (ForHumanity)"],
- "title": "French regulator fines US face recognition firm Clearview AI €20 million",
- "url": "https://www.lemonde.fr/en/pixels/article/2022/10/20/french-regulator-fines-us-face-recognition-firm-clearview-ai-20-million_6001116_13.html"
- },
- {
- "__typename": "Report",
- "authors": ["Brett Wilkins"],
- "epoch_date_downloaded": 1663632000,
- "epoch_date_modified": 1665619200,
- "epoch_date_submitted": 1663632000,
- "flag": null,
- "report_number": 2144,
- "source_domain": "commondreams.org",
- "submitters": ["Devon Colmer (CSET)"],
- "title": "Activists and Rights Groups Sue Clearview AI, Warning 'We Won't Be Safe' Until Facial Recognition Firm Is Gone",
- "url": "https://www.commondreams.org/news/2021/03/10/activists-and-rights-groups-sue-clearview-ai-warning-we-wont-be-safe-until-facial"
- },
- {
- "__typename": "Report",
- "authors": ["Johana Bhuiyan"],
- "epoch_date_downloaded": 1663632000,
- "epoch_date_modified": 1665619200,
- "epoch_date_submitted": 1663632000,
- "flag": null,
- "report_number": 2143,
- "source_domain": "latimes.com",
- "submitters": ["Devon Colmer (CSET)"],
- "title": "Clearview AI uses your online photos to instantly ID you. That's a problem, lawsuit says",
- "url": "https://www.latimes.com/business/technology/story/2021-03-09/clearview-ai-lawsuit-privacy-violations"
- },
- {
- "__typename": "Report",
- "authors": ["Rachel Metz"],
- "epoch_date_downloaded": 1663632000,
- "epoch_date_modified": 1665619200,
- "epoch_date_submitted": 1663632000,
- "flag": null,
- "report_number": 2142,
- "source_domain": "edition.cnn.com",
- "submitters": ["Devon Colmer (CSET)"],
- "title": "Clearview AI sued in California by immigrant rights groups, activists",
- "url": "https://edition.cnn.com/2021/03/09/tech/clearview-ai-mijente-lawsuit/index.html"
- },
- {
- "__typename": "Report",
- "authors": ["Ryan J. Farrick"],
- "epoch_date_downloaded": 1663632000,
- "epoch_date_modified": 1665619200,
- "epoch_date_submitted": 1663632000,
- "flag": null,
- "report_number": 2141,
- "source_domain": "legalreader.com",
- "submitters": ["Devon Colmer (CSET)"],
- "title": "Immigration Activists Want Clearview AI and Its Facial Recognition Tech Banned in California",
- "url": "https://www.legalreader.com/immigration-activists-clearview-ai-facial-recognition-lawsuit/"
- },
- {
- "__typename": "Report",
- "authors": ["Jude Karabus"],
- "epoch_date_downloaded": 1664928000,
- "epoch_date_modified": 1665619200,
- "epoch_date_submitted": 1664928000,
- "flag": null,
- "report_number": 2101,
- "source_domain": "theregister.com",
- "submitters": ["Devon Colmer (CSET)"],
- "title": "Facial recog firm Clearview hit with complaints in France, Austria, Italy, Greece and the UK",
- "url": "https://www.theregister.com/2021/05/27/clearview_europe/"
- },
- {
- "__typename": "Report",
- "authors": ["Kashmir Hill"],
- "epoch_date_downloaded": 1659484800,
- "epoch_date_modified": 1659484800,
- "epoch_date_submitted": 1659484800,
- "flag": null,
- "report_number": 1848,
- "source_domain": "nytimes.com",
- "submitters": ["Khoa Lam"],
- "title": "The Secretive Company That Might End Privacy as We Know It",
- "url": "https://www.nytimes.com/2020/01/18/technology/clearview-privacy-facial-recognition.html"
- },
- {
- "__typename": "Report",
- "authors": ["Louise Matsakis"],
- "epoch_date_downloaded": 1659484800,
- "epoch_date_modified": 1659484800,
- "epoch_date_submitted": 1659484800,
- "flag": null,
- "report_number": 1847,
- "source_domain": "wired.com",
- "submitters": ["Khoa Lam"],
- "title": "Scraping the Web Is a Powerful Tool. Clearview AI Abused It",
- "url": "https://www.wired.com/story/clearview-ai-scraping-web/"
- },
- {
- "__typename": "Report",
- "authors": ["Jon Fingas"],
- "epoch_date_downloaded": 1659484800,
- "epoch_date_modified": 1659484800,
- "epoch_date_submitted": 1637107200,
- "flag": null,
- "report_number": 1846,
- "source_domain": "engadget.com",
- "submitters": ["Khoa Lam"],
- "title": "ACLU rejects Clearview AI's facial recognition accuracy claims",
- "url": "https://www.engadget.com/2020-02-10-aclu-rejects-clearview-ai-facial-recognition-claims.html"
- },
- {
- "__typename": "Report",
- "authors": ["Caroline Haskins", "Ryan Mac", "Logan McDonald"],
- "epoch_date_downloaded": 1659484800,
- "epoch_date_modified": 1659484800,
- "epoch_date_submitted": 1637107200,
- "flag": null,
- "report_number": 1845,
- "source_domain": "buzzfeednews.com",
- "submitters": ["Khoa Lam"],
- "title": "ACLU Called Clearview AI’s Facial Recognition Accuracy Study “Absurd”",
- "url": "https://www.buzzfeednews.com/article/carolinehaskins1/clearview-ai-facial-recognition-accurate-aclu-absurd"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "youtube",
- "name": "YouTube"
- },
- {
- "__typename": "Entity",
- "entity_id": "twitter",
- "name": "Twitter"
- },
- {
- "__typename": "Entity",
- "entity_id": "facebook",
- "name": "Facebook"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "youtube",
- "name": "YouTube"
- },
- {
- "__typename": "Entity",
- "entity_id": "twitter",
- "name": "Twitter"
- },
- {
- "__typename": "Entity",
- "entity_id": "facebook",
- "name": "Facebook"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "victims-of-crimes-documented-on-social-media",
- "name": "victims of crimes documented on social media"
- },
- {
- "__typename": "Entity",
- "entity_id": "investigative-journalists",
- "name": "investigative journalists"
- },
- {
- "__typename": "Entity",
- "entity_id": "international-criminal-court-investigators",
- "name": "International Criminal Court investigators"
- },
- {
- "__typename": "Entity",
- "entity_id": "international-court-of-justice-investigators",
- "name": "International Court of Justice investigators"
- },
- {
- "__typename": "Entity",
- "entity_id": "criminal-investigators",
- "name": "criminal investigators"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1929, 1849],
- "vector": [
- -0.03737476468086243, 0.07222823798656464, 0.00881529413163662, -0.10580417513847351,
- 0.061312198638916016, -0.04391951858997345, 0.007267266046255827, 0.028179433196783066,
- 0.051879093050956726, -0.12900546193122864, -0.00010466063395142555,
- 0.02917398139834404, 0.007083691190928221, -0.08938202261924744, 0.06618417799472809,
- -0.1321847140789032, -0.08461736142635345, -0.0022694249637424946,
- 0.0034958133473992348, -0.08287179470062256, -0.0855323076248169, 0.03876740112900734,
- 0.008264122530817986, 0.07520629465579987, -0.04800502955913544, 0.05093250423669815,
- 0.09507427364587784, 0.13464979827404022, -0.07216937839984894, 0.06091228872537613,
- -0.011920004151761532, -0.006667636334896088, 0.13919135928153992,
- -0.014446349814534187, -0.0005565849132835865, 0.0708947628736496, 0.0472005158662796,
- -0.07024471461772919, 0.004637265577912331, -0.035638704895973206, 0.03800012916326523,
- 0.2792159616947174, -0.08461711555719376, 0.0010018367320299149, 0.05522840842604637,
- -0.00952951516956091, -0.033431969583034515, 0.06524882465600967, 0.02224634774029255,
- 0.02526821568608284, -0.012668399140238762, -0.00574033847078681, -0.03208911046385765,
- 0.04225659370422363, -0.0907503217458725, 0.08633633702993393, 0.018806716427206993,
- -0.0294218510389328, -0.0355268269777298, -0.06526144593954086, -0.052953675389289856,
- -0.2525064945220947, -0.014877797104418278, -0.06286944448947906, 0.08803629130125046,
- -0.09198125451803207, -0.006246007978916168, -0.001805117353796959, 0.05301805958151817,
- 0.05804979056119919, 0.04998797923326492, -0.04015602916479111, -0.022479919716715813,
- 0.07167470455169678, 0.031461142003536224, -0.005650217179208994, 0.005677036941051483,
- 0.14953580498695374, -0.06890648603439331, 0.04331502690911293, 0.08250845968723297,
- -0.06062774360179901, 0.35783475637435913, -0.0012205643579363823,
- -0.007824630476534367, 0.01217777468264103, 0.08516576141119003, 0.04383312165737152,
- 0.002865471178665757, 0.02208453044295311, -0.018786128610372543, 0.045029640197753906,
- -0.06489105522632599, -0.06260737776756287, 0.07130615413188934, 0.006254598964005709,
- -0.021969106048345566, -0.03874020650982857, -0.029142025858163834,
- -0.05149073526263237, -0.009955908171832561, -0.04328753799200058, 0.09112908691167831,
- 0.10614284127950668, -0.07369498908519745, 0.010076208971440792, 0.07248294353485107,
- -0.08536217361688614, 0.04521238058805466, -0.044058412313461304, 0.04585710167884827,
- 0.013188913464546204, 0.10356628894805908, 0.013788996264338493, 0.03231079876422882,
- -0.025790125131607056, 0.021018268540501595, 0.006094103213399649, 0.04757338762283325,
- 0.0890769511461258, 0.02136262133717537, 0.08729344606399536, 0.1205025464296341,
- -0.057737380266189575, -0.10887128859758377, -0.05987510457634926, -0.03272288665175438,
- -0.02821180783212185, -0.032885242253541946, -0.004719226621091366,
- 0.0058207642287015915, -0.17730313539505005, 0.010145580396056175, 0.062464263290166855,
- 0.02954726293683052, -0.0056643071584403515, -0.01495958399027586, -0.06354186683893204,
- 0.0016027514357119799, 0.009978841058909893, 0.01821093074977398, 0.082572802901268,
- 0.02117488719522953, 0.016660308465361595, 0.12292373180389404, 0.056017354130744934,
- -0.06547437608242035, -0.0577051155269146, -0.027872687205672264, -0.011991757899522781,
- 0.10475915670394897, -0.07956047356128693, -0.03853502497076988, 0.012817410752177238,
- -0.011543523520231247, 0.737467885017395, 0.12053658813238144, 0.17615407705307007,
- -0.00591290881857276, -0.01990106888115406, 0.19313585758209229, 0.06790146231651306,
- 0.060485921800136566, -0.11644366383552551, -0.0697811096906662, 0.011102855205535889,
- -0.031198861077427864, 0.011245310306549072, -0.004719361662864685, 0.05150395631790161,
- 0.10677462816238403, 0.014833173714578152, 0.061840977519750595, 0.04492179676890373,
- -0.08485788106918335, -0.05237889662384987, 0.03385818749666214, -0.03793622925877571,
- -0.09110131859779358, 0.0069849020801484585, 0.05639982596039772, 0.08157531917095184,
- -0.03550075739622116, -0.013204924762248993, -0.031511083245277405, 0.08316883444786072,
- -0.015417885966598988, 0.04052293300628662, -0.02389049530029297, 0.02744871936738491,
- 0.05763617902994156, 0.01960182562470436, 0.0022214597556740046, -0.06588257849216461,
- -0.011917700991034508, 0.118455670773983, 0.0013661030679941177, -0.020443305373191833,
- 0.09586212038993835, -0.07922128587961197, 0.013953443616628647, 0.062026772648096085,
- 0.13251319527626038, -0.11978437751531601, 0.016560783609747887, -0.01907746121287346,
- -0.03220582380890846, 0.0753527283668518, -0.0389973446726799, -0.06309451162815094,
- -0.04652933031320572, 0.0752880647778511, 0.04465285316109657, 0.08609141409397125,
- 0.03914055973291397, -0.02362283132970333, 0.008722826838493347, 0.05354505777359009,
- 0.023746665567159653, -0.06701251119375229, 0.05489944666624069, 0.04103527218103409,
- -0.03763634338974953, -0.036522991955280304, 0.046156514436006546, 0.08494502305984497,
- 0.043419890105724335, 0.0018661597277969122, 0.05748053640127182, 0.02378944866359234,
- -0.05657736957073212, 0.05892304331064224, 0.07231692969799042, -0.02229214459657669,
- 0.0940031111240387, -0.08236683905124664, -0.0004096762277185917, -0.026860425248742104,
- -0.058214038610458374, 0.02515505999326706, -0.023113368079066277, 0.06739988923072815,
- 0.10344934463500977, 0.05335882306098938, 0.031145963817834854, 0.0561056062579155,
- 0.05454118922352791, 0.03896905854344368, 0.001943805138580501, 0.14422762393951416,
- -0.028531106188893318, -0.05509348213672638, -0.013374555855989456,
- 0.023343924432992935, 0.013591188937425613, 0.0012027753982692957,
- -0.040080733597278595, -0.021387984976172447, -0.04060832038521767,
- -0.04491601884365082, -0.10107164084911346, -0.04184088855981827, 0.019388869404792786,
- 0.06372580677270889, -0.05649646744132042, -0.05166503041982651, -0.04150114208459854,
- -0.0006413860246539116, 0.05479166656732559, 0.00014616851694881916,
- -0.027510304003953934, -0.11092895269393921, 0.02537262812256813, 0.018063798546791077,
- 0.040869031101465225, -0.048614583909511566, -0.013312865979969501,
- 0.018709419295191765, -0.0799856185913086, 0.006589210592210293, 0.006657980848103762,
- -0.07720710337162018, 0.0104176364839077, -0.0663464143872261, -0.04093444347381592,
- -0.011834791861474514, 0.021174730733036995, -0.07057087123394012,
- -0.0019527552649378777, 0.02774170972406864, 0.014873445965349674, -0.08344189822673798,
- -0.04366286098957062, 0.0671798437833786, -0.04573892056941986, 0.009466453455388546,
- 0.09624774754047394, -0.022658249363303185, 0.03715834766626358, -0.003041693940758705,
- 0.004127490799874067, -0.03783078119158745, 0.001149974763393402, -0.04026170074939728,
- 0.0104598980396986, -0.011836747638881207, -0.009318971075117588, -0.03252292051911354,
- -0.005108140408992767, 0.10799362510442734, -0.09090880304574966, -0.04026753827929497,
- -0.09034880995750427, 0.11183949559926987, 0.03157300129532814, 0.002680447418242693,
- -0.010981793515384197, -0.056894831359386444, 0.005850164219737053,
- 0.020770587027072906, 0.00576492864638567, 0.055203162133693695, 0.06604171544313431,
- -0.0009170342236757278, -0.0178541112691164, 0.07437889277935028, -0.01396668329834938,
- 0.03943478688597679, 0.06735187768936157, 0.38447362184524536, -0.024665461853146553,
- 0.10521644353866577, 0.07838837802410126, 0.007561527192592621, 0.011170200072228909,
- 0.0005218170117586851, 0.07152140140533447, 0.07148543000221252, 0.12448840588331223,
- 0.09097930788993835, -0.03263640031218529, 0.02918204665184021, -0.0641712099313736,
- 0.036289703100919724, -0.00392052810639143, 0.018382152542471886, -0.002814524807035923,
- -0.03137514740228653, -0.016333743929862976, 0.04960852116346359, -0.04319509118795395,
- 0.02282409742474556, -0.03810451179742813, -0.03879585862159729, 0.04725118353962898,
- 0.011713141575455666, 0.02668919414281845, -0.026648681610822678, 0.05634426698088646,
- -0.014535322785377502, 0.0357687771320343, 0.008506803773343563, 0.04892595484852791,
- -0.13172627985477448, -0.009918272495269775, 0.009138783439993858, -0.09395250678062439,
- 0.08960138261318207, 0.009474185295403004, 0.07779139280319214, 0.030213816091418266,
- 0.007032730616629124, 0.047804590314626694, -0.011507985182106495, -0.04748760163784027,
- 0.030648980289697647, 0.03703673183917999, 0.015492847189307213, 0.08259591460227966,
- 0.10660941898822784, -0.028652271255850792, 0.002933308482170105, -0.06936771422624588,
- 0.0921907126903534, 0.10957896709442139, -0.03869029879570007, 0.009719215333461761,
- 0.039549268782138824, -0.02216433361172676, -0.02155299112200737, -0.06638230383396149,
- -0.04494175314903259, 0.00859865639358759, -0.022286485880613327, 0.07312396168708801,
- 0.047874704003334045, -0.03862705081701279, -0.09817171096801758, 0.0032012721057981253,
- -0.06963393092155457, 0.0058835092931985855, 0.13746076822280884, -0.07624329626560211,
- 0.05167992413043976, 0.029199277982115746, 0.01666005700826645, 0.004731440916657448,
- -0.03543976694345474, 0.002162556629627943, -0.08494410663843155, -0.014508044347167015,
- 0.0161642637103796, 0.014182589016854763, -0.05296237766742706, 0.05996445566415787,
- -0.08878868818283081, 0.055080246180295944, -0.00786396861076355, 0.0004952781600877643,
- 0.010518467985093594, -0.05007407069206238, 0.002064295345917344, 0.04331593215465546,
- -0.03638172149658203, -0.04279386252164841, -0.01715516671538353, -0.014174608513712883,
- -0.07487671077251434, -0.0408584326505661, -0.024633821099996567, -0.10173289477825165,
- 0.052443113178014755, -0.09136130660772324, -0.020967112854123116, -0.01748744025826454,
- -0.030435236170887947, -0.03721340000629425, 0.03324100375175476, -0.039397984743118286,
- -0.15222617983818054, -0.02187296748161316, 0.028136413544416428, 0.02349396049976349,
- -0.019771378487348557, -0.06956420838832855, 0.03606375679373741, 0.036007653921842575,
- 0.008708280511200428, -0.02640102431178093, -0.014653747901320457, -0.06921516358852386,
- 0.03282729908823967, -0.10125955939292908, -0.2596156597137451, 0.07915836572647095,
- 0.0015784334391355515, 0.06410737335681915, 0.02547854371368885, -0.1156533807516098,
- 0.06868253648281097, -0.0013969119172543287, -0.048773184418678284, 0.05744146183133125,
- -0.06244737654924393, 0.04693078249692917, -0.02650631219148636, -0.07744146883487701,
- -0.033863574266433716, -0.09911973774433136, -0.060361072421073914,
- 0.006884213071316481, -0.05647215247154236, -0.0808209478855133, -0.12037894129753113,
- 0.03932557627558708, -0.038423411548137665, -0.009104374796152115, 0.025782572105526924,
- 0.03888150677084923, -0.03845897689461708, -0.02794015221297741, 0.023252202197909355,
- 0.06670811772346497, -0.0022966808173805475, -0.019188638776540756,
- -0.006567734759300947, 0.04306460916996002, 0.014232425019145012, 0.08309188485145569,
- 0.00804467499256134, -0.015928655862808228, -0.07727980613708496, 0.06843899190425873,
- 0.07363376021385193, 0.18709692358970642, 0.0038609947077929974, -0.03485667333006859,
- 0.038135603070259094, 0.12343856692314148, 0.040318671613931656, 0.03226088732481003,
- -0.058317068964242935, 0.00961225014179945, 0.025669746100902557, 0.04696762561798096,
- 0.06999775767326355, -0.08237823843955994, -0.03301504999399185, -0.09381143748760223,
- 0.0010971156880259514, -0.029716961085796356, -0.09816722571849823, 0.18136391043663025,
- -0.01620342768728733, 0.009592335671186447, 0.02968914806842804, -0.07016273587942123,
- -0.01893424615263939, -0.08373092114925385, -0.11421087384223938, 0.0030400101095438004,
- -0.0003529428504407406, 0.039831556379795074, -0.06407655030488968,
- -0.11900250613689423, -0.028105899691581726, -0.03186231479048729, 0.016087237745523453,
- 0.1413520872592926, -0.06937143206596375, 0.07065977901220322, -0.04178135097026825,
- 0.12711943686008453, 0.027724824845790863, -0.011158776469528675, 0.05842870473861694,
- 0.1357983946800232, -0.01326267421245575, -0.04126838222146034, 0.03393874317407608,
- -0.07528568804264069, -0.02373284474015236, 0.12407766282558441, -0.019234372302889824,
- 0.11145371943712234, 0.04543279856443405, -0.055996861308813095, -0.06613646447658539,
- 0.016080845147371292, -0.07284773886203766, -0.001998122315853834, -0.35309094190597534,
- -0.03996691852807999, 0.10101260244846344, 0.011833271011710167, 0.053530726581811905,
- 0.07645471394062042, -0.013540362007915974, -0.02431529387831688, 0.019066916778683662,
- -0.13628453016281128, 0.19154098629951477, 0.00902431271970272, 0.0530620813369751,
- -0.08217105269432068, 0.05607727915048599, 0.09531460702419281, -0.031137526035308838,
- 0.04327276721596718, 0.022727498784661293, -0.21100836992263794, -0.033172596246004105,
- -0.02390190027654171, 0.12927885353565216, -0.011742295697331429, 0.047660112380981445,
- 0.06506732851266861, -0.08154681324958801, -0.00022487342357635498, 0.04391692578792572,
- -0.07463230192661285, 0.025998584926128387, -0.006486725993454456, -0.04298432171344757,
- 0.10796239972114563, 0.12694799900054932, 0.06982606649398804, -0.028974801301956177,
- 11.927532196044922, 0.06743259727954865, 0.046161651611328125, -0.08691223710775375,
- 0.05708014965057373, -0.031140528619289398, 0.03389260172843933, -0.11791294068098068,
- 0.07176747918128967, 0.11209546029567719, -0.016964629292488098, -0.06883834302425385,
- -0.03742842376232147, -0.07389341294765472, 0.01518981158733368, -0.02664468064904213,
- -0.02025621384382248, -0.02088252454996109, 0.056497711688280106, -0.061109237372875214,
- -0.016755396500229836, 0.017063524574041367, 0.07460103929042816,
- -0.0074515147134661674, -0.037745967507362366, 0.010205847211182117,
- 0.010079575702548027, -0.01942571811378002, 0.02230849303305149, 0.007292858324944973,
- 0.02309293858706951, 0.014822408556938171, 0.08762455731630325, -0.00020041782408952713,
- -0.02356795221567154, 0.04473230615258217, 0.06967383623123169, 0.039123229682445526,
- -0.0042238072492182255, 0.04989901930093765, -0.03386101871728897, 0.040218040347099304,
- -0.017715128138661385, 0.08679559826850891, 0.09391584992408752, 0.04476843401789665,
- 0.034106139093637466, 0.09638974070549011, 0.00816044956445694, 0.0716175064444542,
- 0.059034742414951324, 0.015975868329405785, 0.08066992461681366, 0.0033493605442345142,
- 0.009684520773589611, 0.0644381046295166, 0.006831428501754999, -0.08704650402069092,
- 0.0577399879693985, 0.02783072181046009, -0.07697756588459015, 0.11549285799264908,
- 0.027433229610323906, 0.11800950020551682, 0.04086189717054367, 0.054627612233161926,
- 0.11790136992931366, 0.07495757937431335, -0.16855758428573608, -0.005950800143182278,
- 0.018975907936692238, -0.07332535088062286, -0.08437744528055191, 0.03991561755537987,
- 0.04653621464967728, -0.004530840553343296, 0.09910731017589569, 0.02403959631919861,
- 0.03542454540729523, -0.06234906613826752, 0.0022131840232759714, 0.02374306321144104,
- -0.04550604894757271, -0.03770022094249725, 0.053995534777641296, 0.0044725192710757256,
- 0.08505469560623169, 0.13402892649173737, -0.019364017993211746, -0.09533114731311798,
- -0.07754049450159073, 0.07761659473180771, -0.03184184804558754, -0.045021455734968185,
- 0.034627996385097504, -0.08293447643518448, 0.00885959342122078, -0.15336653590202332,
- 0.025717906653881073, 0.07380759716033936, -0.06115518510341644, 0.0036043250001966953,
- -0.008839420042932034, 0.09726819396018982, -0.0030505405738949776,
- -0.025606457144021988, -0.08517072349786758, 0.04008432850241661, -0.018160324543714523,
- 0.03502947837114334, -0.03055642917752266, 0.12720640003681183, 0.03414636105298996,
- -0.06905707716941833, 0.06505662202835083, 0.06438281387090683, -0.022359635680913925,
- -0.04047602042555809, 0.049078576266765594, 0.05739666149020195, -0.11006125062704086,
- -0.05036674812436104, -0.006715935654938221, -0.03706248849630356,
- -0.008781366050243378, -0.06254007667303085, 0.01473679393529892,
- -0.0077531058341264725, -0.06602269411087036, -0.02056962437927723, 0.03190264105796814,
- 0.0692443698644638, 0.10898786783218384, -0.02029827982187271, 0.05837703496217728,
- -0.04995214566588402, -0.04989197850227356, 0.08267660439014435, 0.0276600681245327,
- 0.06605159491300583, -0.034631021320819855, -0.04068294167518616, -0.0651281401515007,
- -0.12159551680088043, 0.025057850405573845, 0.07423196732997894, 0.04587947577238083,
- 0.02009461261332035, 0.03834918513894081, -0.07094582915306091, -0.030779648572206497,
- 0.11538302898406982, -0.023359833285212517, 0.020814228802919388, 0.006190876010805368,
- -0.07301369309425354, -0.033339887857437134, 0.09605161845684052, -0.03367564082145691,
- -0.04007604345679283, 0.04462487995624542, -0.07264814525842667, 0.058533139526844025,
- 0.061200059950351715, 0.07364659011363983, 0.03990495949983597, 0.08336645364761353,
- 0.03136049956083298, 0.0011413702741265297, -0.012690478004515171,
- -0.014511276967823505, -0.0680602639913559, -0.05537191033363342, -0.06876544654369354,
- 0.026034176349639893, 0.08723457157611847, 0.06079329177737236, -0.03380624204874039,
- -0.020319132134318352, -0.04778864234685898
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 268,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Human Rights Watch"],
- "epoch_date_downloaded": 1660867200,
- "epoch_date_modified": 1660953600,
- "epoch_date_submitted": 1660867200,
- "flag": null,
- "report_number": 1929,
- "source_domain": "hrw.org",
- "submitters": ["Ingrid Dickinson (CSET)"],
- "title": "“Video Unavailable”",
- "url": "https://www.hrw.org/report/2020/09/10/video-unavailable/social-media-platforms-remove-evidence-war-crimes"
- },
- {
- "__typename": "Report",
- "authors": ["Human Rights Watch"],
- "epoch_date_downloaded": 1659484800,
- "epoch_date_modified": 1659484800,
- "epoch_date_submitted": 1659484800,
- "flag": null,
- "report_number": 1849,
- "source_domain": "hrw.org",
- "submitters": ["Ingrid Dickinson (CSET)"],
- "title": "Social Media Platforms Remove War Crimes Evidence",
- "url": "https://www.hrw.org/news/2020/09/10/social-media-platforms-remove-war-crimes-evidence"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "apple",
- "name": "Apple"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "apple",
- "name": "Apple"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "yi-xia",
- "name": "Yi Xia"
- },
- {
- "__typename": "Entity",
- "entity_id": "renren",
- "name": "Renren"
- },
- {
- "__typename": "Entity",
- "entity_id": "dangdang",
- "name": "Dangdang"
- },
- {
- "__typename": "Entity",
- "entity_id": "chinese-startups",
- "name": "Chinese startups"
- },
- {
- "__typename": "Entity",
- "entity_id": "chinese-companies",
- "name": "Chinese companies"
- },
- {
- "__typename": "Entity",
- "entity_id": "buding-movie-tickets",
- "name": "Buding Movie Tickets"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1851],
- "vector": [
- -0.06042302027344704, 0.10034030675888062, 0.026745563372969627, -0.11873600631952286,
- 0.05318015441298485, 0.02814246527850628, -0.0013821428874507546, 0.08827587217092514,
- 0.037855975329875946, -0.1288575977087021, -0.006186638958752155, 0.025803888216614723,
- 0.02210063487291336, -0.05937535688281059, 0.04458882287144661, -0.14474445581436157,
- -0.09051194787025452, -0.014327687211334705, -0.04118352010846138, -0.15293504297733307,
- -0.08415146172046661, 0.035911425948143005, 0.053915705531835556, 0.19638536870479584,
- -0.10366198420524597, 0.02297293022274971, 0.08457627892494202, 0.09222187846899033,
- -0.08879780769348145, 0.06868786364793777, -0.04357554391026497, -0.07292720675468445,
- 0.14632156491279602, 0.01862405426800251, 0.027193155139684677, 0.08344119042158127,
- 0.022191395983099937, -0.00945981778204441, -0.038690272718667984,
- -0.035935331135988235, 0.08848944306373596, 0.24779874086380005, -0.03875252604484558,
- -0.04645543545484543, 0.053832679986953735, -0.07073967903852463, 0.03293144330382347,
- 0.03193862736225128, -0.015931807458400726, -0.0196081530302763, -0.06976981461048126,
- 0.07745219022035599, -0.025609420612454414, 0.044867999851703644, -0.13505834341049194,
- 0.0376066192984581, 0.04521910101175308, -0.00718550942838192, 0.004017883446067572,
- -0.13059726357460022, -0.017192523926496506, -0.2777542173862457, 0.0354706346988678,
- -0.0786617323756218, 0.06927391141653061, -0.12076808512210846, -0.05271994695067406,
- 0.09280967712402344, 0.03511092811822891, 0.0652766302227974, 0.03608519956469536,
- 0.038658734411001205, -0.03850423917174339, -0.030933409929275513, 0.01811850443482399,
- -0.05348099768161774, 0.02506791241466999, 0.19562004506587982, -0.040421489626169205,
- 0.03426505625247955, 0.14297059178352356, -0.06497081369161606, 0.4765559136867523,
- -0.014171839691698551, -0.02940024621784687, -0.007153959944844246, 0.07471146434545517,
- 0.018932627514004707, 0.024592436850070953, 0.009933088906109333, -0.02404329739511013,
- 0.0005033863708376884, -0.08076758682727814, -0.02577245980501175, 0.04747352376580238,
- 0.023312021046876907, -0.06262221187353134, -0.05061635002493858, 0.006836520042270422,
- -0.09456483274698257, 0.026606371626257896, 0.006999881938099861, 0.08023083209991455,
- 0.12036887556314468, -0.03433893993496895, -0.024472998455166817, 0.05735132470726967,
- -0.0849062129855156, 0.06194663792848587, -0.05355698987841606, -0.01248648390173912,
- 0.061266183853149414, 0.11828915774822235, 0.019094564020633698, 0.03138307109475136,
- -0.04263298213481903, 0.008929673582315445, 0.038264986127614975, 0.07604057341814041,
- 0.03481718525290489, -0.007057042792439461, 0.017764432355761528, 0.03558056056499481,
- -0.1037435382604599, -0.027247395366430283, -0.05090723931789398, -0.050468817353248596,
- -0.0003398052358534187, -0.014091189019382, 0.014476734213531017, -0.07406318187713623,
- -0.18533386290073395, 0.028702540323138237, 0.024437658488750458, -0.04595140740275383,
- -0.03879836946725845, 0.0016360776498913765, -0.06272909790277481, 0.05171709135174751,
- -0.038547735661268234, -0.07156474888324738, 0.07517002522945404, 0.03252781182527542,
- 0.06653676182031631, 0.06867613643407822, 0.04313219338655472, -0.06533349305391312,
- -0.052705876529216766, 0.017661839723587036, -0.058110907673835754, 0.1372734010219574,
- -0.10726772993803024, -0.06651243567466736, -0.017732499167323112, -0.04630616679787636,
- 0.7228987216949463, 0.10883638262748718, 0.1959983855485916, 0.030197689309716225,
- 0.007484649773687124, 0.16697943210601807, 0.016460314393043518, 0.07704472541809082,
- -0.0799509808421135, -0.07119622826576233, 0.03363172709941864, -0.043238475918769836,
- -0.03987058997154236, 0.03990774601697922, -0.008273960091173649, 0.0951203927397728,
- 0.029660679399967194, 0.11630357056856155, 0.010892441496253014, -0.11692581325769424,
- -0.013033518567681313, 0.06440804153680801, -0.0016041045309975743,
- -0.12021888047456741, -0.014922194182872772, 0.033156417310237885, 0.11095825582742691,
- -0.09106865525245667, 0.03385239467024803, -0.09944777190685272, 0.10046322643756866,
- -0.02984524518251419, 0.10722662508487701, -0.039712995290756226, 0.08960911631584167,
- -0.016505248844623566, 0.057062722742557526, 0.032810501754283905, -0.10690607130527496,
- -0.03004254586994648, 0.10673550516366959, -0.011973446235060692, -0.05779079347848892,
- 0.048308614641427994, -0.10169735550880432, 0.08176581561565399, 0.014282218180596828,
- 0.11668602377176285, -0.15227442979812622, -0.0858093723654747, -0.01545933447778225,
- -0.005410769954323769, 0.04261014237999916, -0.012427106499671936, -0.10481668263673782,
- -0.07255320996046066, 0.04966778680682182, 0.03058006800711155, 0.04900224134325981,
- 0.021437454968690872, 0.02196505479514599, 0.057731494307518005, 0.0838029608130455,
- 0.03124038316309452, -0.017388371750712395, 0.0833786278963089, 0.006646277848631144,
- -0.041815802454948425, -0.0508938729763031, 0.036008041352033615, 0.04739415645599365,
- 0.022914621978998184, -0.03049292229115963, 0.05355307459831238, -0.00817087572067976,
- -0.09356533735990524, 0.04749264568090439, 0.032531868666410446, 0.02517908625304699,
- 0.08289017528295517, -0.10010489076375961, -0.0003028047503903508,
- -0.052248332649469376, -0.026593239977955818, 0.009660276584327221,
- -0.05618876591324806, 0.07247847318649292, 0.11818856745958328, 0.060061294585466385,
- 0.031007029116153717, 0.01216822024434805, 0.09520034492015839, -0.01851634867489338,
- 0.05071016028523445, 0.07290071994066238, -0.040077440440654755, -0.07338304817676544,
- -0.030584054067730904, 0.001359549816697836, 0.03612137585878372,
- -0.0019616971258074045, -0.07110945135354996, -0.04354013502597809,
- -0.04523034393787384, -0.07272247970104218, -0.12804047763347626, 0.04282164201140404,
- 0.050836917012929916, 0.0942155122756958, -0.05342945083975792, -0.06584905833005905,
- -0.07468584924936295, 0.010051442310214043, 0.052113983780145645, -0.013515572994947433,
- 0.014947300776839256, -0.09955812245607376, 0.012811154127120972, -0.04131399840116501,
- 0.07606936991214752, -0.010498877614736557, -0.024208059534430504, 0.005412418395280838,
- -0.06014666706323624, 0.01453708577901125, -0.01071411743760109, 0.026225809007883072,
- -0.08873290568590164, -0.06841892749071121, -0.038787659257650375, 0.022608455270528793,
- 0.03712357580661774, -0.08474555611610413, 0.04275260865688324, 0.05971101298928261,
- 0.07012011855840683, 0.017365815117955208, -0.05306350812315941, 0.06304285675287247,
- -0.04566638916730881, 0.014319091103971004, 0.07336553931236267, -0.04855189844965935,
- -0.016121041029691696, -0.004872736521065235, -0.07265911996364594,
- 0.0005341992946341634, 0.035969268530607224, -0.07449619472026825, 0.07337986677885056,
- 0.04547208175063133, 0.005319882649928331, -0.0595414936542511, 0.002550882985815406,
- 0.06954040378332138, -0.0313136950135231, -0.12084057182073593, -0.06103973463177681,
- 0.09674973040819168, 0.02072674222290516, 0.028715653344988823, 0.038268592208623886,
- -0.03565826267004013, 0.015167754143476486, 0.017860474064946175,
- -0.0042248619720339775, 0.03491684049367905, 0.07148362696170807, -0.018890678882598877,
- -0.011739111505448818, 0.11007261276245117, -0.11626632511615753, 0.005632518790662289,
- 0.054055433720350266, 0.4715002179145813, -0.2001400887966156, 0.06592386960983276,
- 0.0952497348189354, 0.028511187061667442, 0.06051763519644737, -0.0681903064250946,
- 0.06749702990055084, 0.07990191131830215, 0.12520179152488708, 0.18009012937545776,
- -0.02284826897084713, 0.03248928114771843, -0.06080491468310356, 0.07702498883008957,
- -0.045668259263038635, 0.013062995858490467, 0.04148343950510025, -0.10102721303701401,
- -0.09595263749361038, 0.0595986545085907, -0.009685462340712547, 0.0033879373222589493,
- -0.05961313843727112, -0.013148694299161434, 0.04687383025884628, 0.004271760117262602,
- 0.055788006633520126, 0.02210908755660057, 0.029939014464616776, -0.044644810259342194,
- 0.018962334841489792, 0.04622134193778038, 0.011614570394158363, -0.13265416026115417,
- -0.011439488269388676, 0.008630759082734585, -0.15609222650527954, 0.08397772163152695,
- 0.06617951393127441, 0.013713984750211239, 0.0885898768901825, -0.06187973916530609,
- 0.02977263741195202, -0.04108351469039917, -0.08613697439432144, 0.03207450360059738,
- 0.056173816323280334, 0.04487906023859978, 0.12921898066997528, 0.1425505131483078,
- -0.04775619134306908, -0.01918806880712509, -0.08393032103776932, 0.051660068333148956,
- 0.13789623975753784, -0.06210187450051308, 0.03709445521235466, -0.02855566143989563,
- -0.07378754764795303, -0.03089066408574581, -0.05473606288433075, -0.0642988383769989,
- -0.002351845381781459, -0.06460189819335938, 0.11506519466638565, 0.05687360092997551,
- -0.04729967936873436, -0.17319855093955994, -0.0031989491544663906,
- -0.052008673548698425, -0.007794791832566261, 0.11319906264543533, -0.03681810945272446,
- 0.02413262613117695, -0.011441381648182869, 0.0047160969115793705,
- -0.057006143033504486, -0.06782136112451553, -0.0026035853661596775,
- -0.08059699833393097, 0.04952397570014, 0.012586490251123905, 0.06477665156126022,
- -0.03545545041561127, 0.10869158059358597, -0.15202486515045166, 0.13209275901317596,
- 0.018567705526947975, -0.05733424425125122, -0.01410147175192833, -0.048195235431194305,
- 0.03970075771212578, 0.016226954758167267, -0.06745938956737518, 0.023480182513594627,
- -0.008834338746964931, -0.07579994201660156, -0.127275750041008, -0.0750330463051796,
- -0.02236350253224373, -0.08937282115221024, 0.034365758299827576, -0.03236135095357895,
- 0.024247054010629654, 0.007100625894963741, -0.06531006842851639, -0.009840229526162148,
- 0.03362232819199562, 0.047426678240299225, -0.20438967645168304, 0.05358819290995598,
- -0.0037527140229940414, 0.053698793053627014, -0.0254057627171278, -0.03475772216916084,
- 0.01907186582684517, 0.06380268931388855, 0.05655403807759285, 0.021977229043841362,
- 0.01939297653734684, -0.030715174973011017, 0.031634580343961716, -0.13450951874256134,
- -0.40968436002731323, 0.06636910885572433, -0.03618235141038895, 0.005506941583007574,
- -0.005838502664119005, -0.0852552279829979, 0.04516049847006798, 0.00734154274687171,
- -0.06433326005935669, 0.0726996436715126, -0.08896654844284058, 0.008597196079790592,
- -0.04282305762171745, -0.08253077417612076, -0.03625740110874176, -0.06345419585704803,
- -0.03905964642763138, 0.04606236517429352, -0.029285850003361702, -0.041282858699560165,
- -0.13675564527511597, 0.05837922915816307, -0.015820320695638657, 0.053062304854393005,
- 0.016662094742059708, 0.027080196887254715, -0.06989528238773346, -0.06633133441209793,
- 0.02492443099617958, 0.06884035468101501, 0.041220664978027344, -0.04220172390341759,
- -0.007697611581534147, 0.09893032908439636, -0.004999099299311638, 0.15010295808315277,
- -0.008013247512280941, -0.06020583212375641, -0.06938187777996063, 0.048751864582300186,
- 0.052406832575798035, 0.18413907289505005, -0.002353834453970194, -0.0360197052359581,
- 0.0937301516532898, 0.16857297718524933, 0.06737177819013596, 0.003915489185601473,
- -0.024963662028312683, 0.01673194393515587, 0.007986089214682579, 0.019659744575619698,
- 0.09685966372489929, -0.11478126049041748, -0.007588133215904236, -0.016400089487433434,
- -0.05873016268014908, -0.030207520350813866, -0.053709182888269424, 0.20990531146526337,
- 0.03676055371761322, 0.022089138627052307, 0.028500273823738098, -0.0959588885307312,
- 0.029041878879070282, -0.10527756065130234, -0.09506374597549438, 0.0074119060300290585,
- 0.021106738597154617, 0.015456106513738632, -0.039943378418684006, -0.09253553301095963,
- -0.08663282543420792, -0.008199627511203289, 0.011704773642122746, 0.1353745460510254,
- -0.005906975362449884, 0.0032444274984300137, 0.0014008886646479368,
- 0.08867286145687103, -0.00009680273797130212, 0.010645353235304356,
- -0.007510870695114136, 0.04667707160115242, -0.028354674577713013,
- -0.007250671274960041, -0.0065572005696594715, -0.055616118013858795,
- 0.01281510479748249, 0.156650111079216, -0.018203794956207275, 0.14216557145118713,
- 0.0779498964548111, 0.004266062751412392, -0.038232941180467606, 0.0007072294829413295,
- -0.07262521982192993, 0.05957258865237236, -0.4340766370296478, 0.00912698544561863,
- 0.09718593955039978, 0.04203532263636589, 0.020808156579732895, 0.10792961716651917,
- 0.04425864666700363, -0.06202738732099533, -0.07034572213888168, -0.15208949148654938,
- 0.07600157707929611, 0.008902531117200851, 0.04708109796047211, -0.15293122828006744,
- 0.0411132276058197, 0.08280668407678604, -0.0166589617729187, 0.0593499131500721,
- 0.05832523852586746, -0.18094280362129211, -0.0010534619214013219,
- -0.010258606635034084, 0.11783768236637115, 0.014795931987464428, 0.03556714951992035,
- 0.08229127526283264, -0.032690443098545074, -0.03314538300037384, 0.035224974155426025,
- 0.02545696310698986, 0.05808202549815178, -0.07918465882539749, 0.012347540818154812,
- 0.1133735328912735, 0.15880213677883148, 0.09561411291360855, -0.02182370238006115,
- 12.069806098937988, 0.03637988120317459, 0.05716921016573906, -0.1124596893787384,
- 0.02363605611026287, -0.05349426344037056, 0.03335518389940262, -0.1127065047621727,
- 0.1361294686794281, 0.1461319774389267, 0.011770812794566154, -0.045750897377729416,
- 0.021897243335843086, -0.10457926988601685, 0.04513021558523178, -0.04753803834319115,
- -0.06132072955369949, -0.01169893890619278, 0.09182363003492355, -0.045020513236522675,
- -0.08610821515321732, 0.014284562319517136, 0.06698211282491684, 0.027770359069108963,
- -0.06201416999101639, 0.0008024753187783062, 0.042794954031705856, 0.008740297518670559,
- -0.018199797719717026, 0.013281620107591152, -0.016944553703069687,
- 0.010543150827288628, 0.0691605731844902, -0.011136388406157494, 0.11250884085893631,
- 0.05071801692247391, 0.13157932460308075, 0.03483990579843521, 0.002591643948107958,
- 0.01526906993240118, -0.027570797130465508, 0.005020764656364918, 0.030225109308958054,
- 0.05500800162553787, 0.07964327186346054, -0.012151767499744892, -0.005665636155754328,
- 0.10048487782478333, 0.022617027163505554, 0.0472349151968956, 0.10175809264183044,
- 0.001087167882360518, 0.1092241108417511, 0.07901745289564133, -0.0062113115563988686,
- 0.04087422788143158, -0.01899663358926773, -0.10386621952056885, 0.11097625643014908,
- 0.007114640437066555, -0.058108020573854446, 0.1233828216791153, 0.06181323155760765,
- 0.11181973665952682, 0.01306631788611412, 0.011241490952670574, 0.03978503867983818,
- 0.06886611133813858, -0.13011273741722107, -0.11318786442279816, 0.08129363507032394,
- -0.10768380016088486, -0.11832485347986221, 0.08305459469556808, 0.12410033494234085,
- -0.028931332752108574, 0.010244075208902359, -0.00024846330052241683,
- 0.0357951745390892, 0.022459300234913826, -0.0634719654917717, 0.07355159521102905,
- -0.022737041115760803, 0.05287235230207443, 0.07174352556467056, 0.03701483830809593,
- 0.06741966307163239, 0.13670821487903595, 0.04343549534678459, -0.10168705135583878,
- -0.045142125338315964, 0.11347741633653641, -0.0027213795110583305,
- -0.05601624399423599, -0.01844886504113674, 0.011954458430409431, 0.012078057043254375,
- -0.18493704497814178, 0.06695818156003952, 0.08484924584627151, -0.09010147303342819,
- -0.11427648365497589, -0.002956105163320899, 0.06965701282024384, 0.03887394815683365,
- 0.00013011762348469347, -0.06857984513044357, 0.0020947777666151524,
- 0.03026280552148819, 0.04402158409357071, -0.07320398092269897, 0.09356177598237991,
- 0.10681552439928055, -0.06681159883737564, 0.04981273040175438, 0.07779265195131302,
- -0.010234751738607883, 0.001742231659591198, 0.030364708974957466, 0.13018563389778137,
- -0.0677030012011528, -0.06300037354230881, 0.004027507267892361, -0.03511885553598404,
- -0.025686202570796013, -0.02982063964009285, -0.018752984702587128,
- 0.030207039788365364, -0.03972041979432106, -0.007589609362185001, 0.11333868652582169,
- 0.06753334403038025, 0.06611315160989761, -0.017893048003315926, 0.028502410277724266,
- -0.05672341585159302, -0.03519377484917641, 0.03759147599339485, 0.022610990330576897,
- 0.04819364845752716, -0.09334951639175415, -0.05164823308587074, -0.05074349418282509,
- -0.17517392337322235, 0.06332047283649445, 0.09745249897241592, 0.07945312559604645,
- 0.048153191804885864, -0.046047504991292953, -0.06195712834596634, 0.005074945278465748,
- 0.09689139574766159, 0.07277456670999527, 0.08490834385156631, -0.0007996249478310347,
- -0.0670044869184494, 0.0020319321192801, 0.14735767245292664, -0.04891068860888481,
- -0.012445034459233284, -0.00544101744890213, -0.07538185268640518, 0.13477131724357605,
- 0.15994882583618164, -0.006104856729507446, 0.036827441304922104, 0.061416976153850555,
- -0.020299168303608894, 0.021260906010866165, 0.027240633964538574, 0.021540392190217972,
- -0.06409801542758942, -0.09491223096847534, -0.03992501646280289, 0.0507158599793911,
- 0.07850288599729538, 0.038027916103601456, -0.08011648058891296, -0.045395854860544205,
- -0.021656226366758347
- ]
- },
- "flagged_dissimilar_incidents": [],
- "incident_id": 270,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Steven Millward"],
- "epoch_date_downloaded": 1659484800,
- "epoch_date_modified": 1659484800,
- "epoch_date_submitted": 1659484800,
- "flag": null,
- "report_number": 1851,
- "source_domain": "techinasia.com",
- "submitters": ["Ingrid Dickinson (CSET)"],
- "title": "Apple Seems to Have Tweaked App Store Ranking Algorithm, Many Chinese Apps Plunge",
- "url": "https://www.techinasia.com/itunes-app-store-rankings-chinese-apps"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "tesla",
- "name": "Tesla"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "tesla",
- "name": "Tesla"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "tesla-drivers",
- "name": "Tesla drivers"
- },
- {
- "__typename": "Entity",
- "entity_id": "motorcyclists",
- "name": "motorcyclists"
- },
- {
- "__typename": "Entity",
- "entity_id": "landon-embry",
- "name": "Landon Embry"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [241, 255, 112, 256, 265],
- "editor_similar_incidents": [30, 52, 178, 208, 151, 230, 4, 20],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1862, 1861, 1852],
- "vector": [
- -0.08172667026519775, 0.07895731925964355, -0.01763981394469738, -0.07001509517431259,
- 0.07379543781280518, -0.03281813859939575, -0.007083175238221884, 0.025860579684376717,
- 0.04755483195185661, -0.1510312557220459, 0.03553903475403786, 0.04317537322640419,
- 0.031149370595812798, -0.09325104206800461, 0.03912036493420601, -0.10638561099767685,
- -0.057189375162124634, -0.03167078271508217, 0.025186775252223015, -0.08974819630384445,
- -0.08551015704870224, -0.022250661626458168, 0.06517954915761948, 0.12578906118869781,
- -0.05381526052951813, 0.023317908868193626, 0.06141343340277672, 0.12640555202960968,
- -0.06470642238855362, 0.04741806909441948, -0.033607397228479385, -0.0468531996011734,
- 0.1315222829580307, -0.0173180028796196, 0.0025835793931037188, 0.10005136579275131,
- 0.043391842395067215, -0.030095117166638374, -0.09654351323843002,
- -0.007162114139646292, 0.052943769842386246, 0.20288097858428955, -0.012917903251945972,
- -0.011339652352035046, 0.06635309010744095, -0.022809714078903198, 0.026652509346604347,
- 0.047493964433670044, 0.011669900268316269, 0.006468558218330145, -0.033629510551691055,
- 0.027139907702803612, -0.05235396325588226, 0.004120429512113333, -0.10115256160497665,
- 0.08169258385896683, 0.03905005753040314, -0.034086134284734726, 0.045496225357055664,
- -0.0552574098110199, -0.06634380668401718, -0.20702208578586578, -0.06479757279157639,
- -0.05666641891002655, 0.09147905558347702, -0.0963752269744873, -0.03417200967669487,
- -0.03732500225305557, 0.029082244262099266, 0.07497816532850266, 0.039094228297472,
- -0.05091330036520958, -0.03583085909485817, -0.03630206733942032, -0.023954100906848907,
- 0.011825677938759327, 0.032084882259368896, 0.2503209710121155, -0.09834667295217514,
- 0.026696139946579933, 0.11701282113790512, -0.09286445379257202, 0.42996442317962646,
- 0.011111408472061157, -0.019132891669869423, -0.026057660579681396, 0.09047448635101318,
- 0.029491955414414406, 0.022046545520424843, 0.058102864772081375, -0.010550074279308319,
- 0.011564965359866619, -0.01716853678226471, 0.07528707385063171, 0.06775084137916565,
- 0.045312196016311646, -0.01656794361770153, -0.014395096339285374, -0.0266176238656044,
- -0.07241349667310715, 0.04481850191950798, -0.06021830439567566, 0.08627825230360031,
- 0.016011053696274757, -0.024575194343924522, 0.03348786383867264, 0.09399035573005676,
- -0.027646439149975777, 0.0459168441593647, -0.05371817946434021, 0.009866463951766491,
- 0.03855150192975998, 0.04733898118138313, 0.007443932816386223, 0.05927315354347229,
- -0.045737627893686295, 0.004002452362328768, 0.03763265535235405, 0.07452938705682755,
- -0.02379949390888214, -0.00810632947832346, 0.06861954182386398, 0.09254427999258041,
- -0.06038260459899902, -0.0035392986610531807, -0.01032234262675047, -0.0760270282626152,
- 0.00033855997025966644, -0.038873642683029175, 0.012558850459754467,
- -0.06999097019433975, -0.21139860153198242, 0.05755019560456276, 0.0767645314335823,
- 0.016083888709545135, -0.033001601696014404, -0.03464197739958763, -0.09487255662679672,
- 0.0310028325766325, -0.019485831260681152, -0.011918502859771252, 0.05495987460017204,
- 0.048302024602890015, 0.02946937084197998, 0.08755778521299362, 0.049592118710279465,
- -0.04416724666953087, -0.057536184787750244, 0.022534556686878204, -0.0299809742718935,
- 0.037119701504707336, -0.08859902620315552, -0.06531692296266556, 0.0489206425845623,
- 0.0272835623472929, 0.5618149638175964, 0.08771994709968567, 0.10175903886556625,
- -0.00444423221051693, -0.039507780224084854, 0.1959817260503769, 0.00690451031550765,
- 0.052350204437971115, -0.06790241599082947, -0.05530286952853203, -0.010571404360234737,
- -0.08130905777215958, -0.03241078928112984, 0.04180757328867912, 0.02943352796137333,
- 0.11488497257232666, 0.05532946065068245, 0.1021777018904686, -0.005922108888626099,
- -0.09102394431829453, 0.00026853816234506667, 0.01928490400314331, 0.027760395780205727,
- -0.07743518054485321, -0.02472778595983982, 0.04829888418316841, 0.08222267776727676,
- -0.050236865878105164, 0.03832663223147392, -0.012231922708451748, 0.04175986722111702,
- -0.018249405547976494, 0.01859295926988125, -0.01569550484418869, -0.021652961149811745,
- 0.038127023726701736, 0.06819265335798264, 0.010776202194392681, -0.09240347146987915,
- -0.039159756153821945, 0.11276520043611526, 0.02303379774093628, -0.04270234704017639,
- 0.07330221682786942, -0.07916177064180374, 0.04054458811879158, 0.0010834960266947746,
- 0.11676448583602905, -0.09942587465047836, 0.021337473765015602, 0.017415538430213928,
- 0.010007440112531185, 0.06955743581056595, -0.028828168287873268, -0.04520396515727043,
- -0.050141591578722, 0.03529098257422447, 0.048385102301836014, 0.0793764740228653,
- 0.07720930129289627, -0.06039642170071602, 0.027324358001351357, 0.038140907883644104,
- -0.011421330273151398, -0.0349983274936676, 0.07454056292772293, 0.07542107254266739,
- -0.031898342072963715, 0.014637690968811512, 0.06806295365095139, 0.01709367148578167,
- 0.04366130009293556, -0.005368642508983612, 0.08440115302801132, 0.011542797088623047,
- -0.03509754315018654, 0.024653224274516106, -0.008251959457993507, 0.019710063934326172,
- 0.09997738152742386, -0.10661569237709045, -0.014282993972301483, -0.008577133528888226,
- -0.0231120977550745, -0.03040599264204502, -0.0603976808488369, 0.07486440241336823,
- 0.054482098668813705, 0.08990603685379028, 0.028834303840994835, 0.06255502253770828,
- 0.043801724910736084, 0.11586327105760574, 0.038423653692007065, 0.06421882659196854,
- -0.024642756208777428, -0.11403042823076248, -0.0198791716247797, -0.013526189140975475,
- 0.06826908141374588, 0.06360629200935364, -0.07460185885429382, -0.05384346842765808,
- -0.03049462102353573, -0.02300371788442135, -0.07332604378461838, -0.03093213587999344,
- -0.0027592096012085676, 0.06570593267679214, -0.05893362686038017, -0.04792402312159538,
- -0.0796225294470787, 0.027609892189502716, 0.0411796048283577, 0.006086205597966909,
- -0.006020167376846075, -0.09251531213521957, -0.0055204653181135654,
- -0.021149108186364174, 0.03230390325188637, -0.0007094955653883517,
- -0.0019443463534116745, -0.05141671374440193, -0.08982250094413757,
- -0.02334112487733364, 0.0006165771628729999, -0.008331201039254665, -0.0665166825056076,
- -0.05659074708819389, -0.038032468408346176, 0.005421768873929977, 0.02801784873008728,
- -0.013336854986846447, 0.03435544669628143, 0.045464906841516495, 0.03433910012245178,
- -0.020150387659668922, -0.015584827400743961, 0.08066173642873764, -0.05028649792075157,
- -0.012255683541297913, 0.05801520124077797, -0.02263575792312622, 0.026073159649968147,
- -0.014707113616168499, -0.05275709554553032, -0.0432652048766613, -0.010898780077695847,
- -0.05972696468234062, 0.0365540087223053, -0.05792025849223137, -0.0235730092972517,
- -0.03624196723103523, 0.03206578269600868, 0.07398439198732376, -0.07495668530464172,
- -0.020601024851202965, -0.09676599502563477, 0.10063158720731735, -0.017177686095237732,
- 0.014255638234317303, 0.026064081117510796, -0.06561436504125595, 0.0471157543361187,
- -0.002471935236826539, -0.006154738832265139, 0.038119345903396606, 0.03031892515718937,
- -0.02613956667482853, -0.022882625460624695, 0.05674293637275696, -0.04592805728316307,
- -0.016053467988967896, 0.07055123895406723, 0.3939513862133026, -0.09869977086782455,
- 0.095290906727314, 0.07629556208848953, 0.022550255060195923, 0.049348752945661545,
- -0.040218573063611984, 0.06783067435026169, 0.01959099993109703, 0.1001896932721138,
- 0.08882215619087219, -0.01790045201778412, 0.002801943337544799, -0.024332309141755104,
- 0.07822165638208389, 0.01153380423784256, 0.026863738894462585, -0.033847302198410034,
- -0.05518180504441261, -0.01772623509168625, 0.03343253210186958, -0.047380875796079636,
- 0.01825975812971592, -0.03668196126818657, -0.09431913495063782, 0.0177313182502985,
- 0.03577524051070213, 0.02028249204158783, -0.029401877894997597, -0.0008852843311615288,
- -0.038162436336278915, 0.008315266110002995, 0.0023017702624201775, 0.07538160681724548,
- -0.06765943020582199, 0.07103271037340164, -0.11719619482755661, -0.0469718873500824,
- 0.08176804333925247, 0.003239405108615756, 0.04754345491528511, 0.05255204439163208,
- -0.015347432345151901, 0.028071008622646332, -0.022908739745616913,
- -0.04444779455661774, 0.012843828648328781, 0.03220365568995476, 0.04331505298614502,
- 0.09329032152891159, 0.1562415212392807, -0.0255447905510664, -0.03212539851665497,
- -0.07555992156267166, 0.061021942645311356, 0.0870673656463623, -0.04217171296477318,
- 0.035762470215559006, -0.02183249033987522, 0.026366055011749268, 0.008494560606777668,
- -0.042700160294771194, -0.03375348821282387, 0.05437659099698067, -0.037784311920404434,
- 0.05469880625605583, -0.003601041389629245, -0.02611674927175045, -0.1166999563574791,
- 0.011279795318841934, -0.07025942206382751, 0.005723456386476755, 0.12560111284255981,
- -0.04733766242861748, -0.0019563641399145126, 0.0449649803340435, -0.010700508952140808,
- 0.0017196848057210445, -0.0865662693977356, 0.0220231581479311, -0.03379684314131737,
- 0.05649133026599884, 0.062372948974370956, 0.06074666976928711, -0.08057094365358353,
- 0.03615718334913254, -0.07766887545585632, 0.006474039983004332, 0.005185974761843681,
- 0.015040945261716843, 0.028592705726623535, -0.04882151260972023, 0.05553413927555084,
- 0.0369560532271862, -0.03002414107322693, -0.015963217243552208, -0.04787540063261986,
- -0.022450871765613556, -0.10905870795249939, -0.06495436280965805, -0.04233529046177864,
- -0.07249300926923752, 0.08466734737157822, -0.10006174445152283, -0.029426565393805504,
- -0.021279485896229744, 0.006225802004337311, 0.021898560225963593, 0.07695203274488449,
- 0.03454523906111717, -0.0877700224518776, 0.02216634340584278, -0.029434392228722572,
- 0.06033758446574211, -0.03139647841453552, -0.05370150879025459, 0.009579770267009735,
- 0.09352601319551468, 0.032502856105566025, -0.015589811839163303, 0.013667039573192596,
- -0.039426397532224655, 0.012543012388050556, -0.10552684217691422, -0.4881918728351593,
- 0.04108355939388275, 0.02405220828950405, 0.062102776020765305, 0.005022991914302111,
- -0.07175064831972122, 0.04534086585044861, 0.013509395532310009, -0.015583894215524197,
- 0.07732481509447098, -0.05370505154132843, 0.0034288233146071434, 0.049001295119524,
- -0.03613923490047455, -0.005291799549013376, -0.06904593855142593, -0.02576330304145813,
- 0.03752846643328667, -0.007734629791229963, -0.056074466556310654,
- -0.053362298756837845, 0.0012597254244610667, -0.012096491642296314,
- 0.005208945367485285, -0.05072258785367012, 0.019540106877684593, -0.07595563679933548,
- -0.06650418043136597, 0.009341442957520485, 0.05929651856422424, 0.018455615267157555,
- -0.043134305626153946, -0.02456623874604702, 0.027607223019003868, -0.06100359559059143,
- 0.15131990611553192, 0.02940365858376026, 0.04037349298596382, -0.08689699321985245,
- 0.07247906923294067, 0.04826130345463753, 0.18878869712352753, -0.03882076218724251,
- 0.08368536829948425, 0.019650805741548538, 0.11036296933889389, -0.010128778405487537,
- 0.06591397523880005, -0.0174583550542593, -0.0067202202044427395, 0.004398302640765905,
- -0.015243328176438808, 0.06388916075229645, -0.08075378835201263, -0.03651373088359833,
- -0.03913411870598793, -0.004673666786402464, -0.022825295105576515,
- 0.046105314046144485, 0.15491347014904022, 0.03808287903666496, 0.028355633839964867,
- 0.026722757145762444, -0.03672447428107262, -0.028662659227848053,
- -0.053464408963918686, -0.10279061645269394, -0.006402528379112482,
- -0.01879681833088398, 0.024016709998250008, -0.038202423602342606, -0.10204794257879257,
- -0.006990985944867134, -0.04878722503781319, -0.019998691976070404, 0.1035301685333252,
- -0.044966984540224075, -0.002955791773274541, -0.02705702930688858, 0.10046351701021194,
- 0.021324461326003075, 0.005756877362728119, 0.07168477028608322, 0.06503187865018845,
- -0.0031302107963711023, -0.01693299226462841, -0.04259972646832466,
- -0.05845259502530098, -0.007986001670360565, 0.08971329778432846, -0.03640778362751007,
- 0.07217631489038467, 0.039162054657936096, -0.012978977523744106, -0.05288687348365784,
- 0.046403270214796066, 0.03162747994065285, 0.02518676221370697, -0.46726152300834656,
- -0.008762437850236893, 0.11132021993398666, -0.005856523290276527, 0.042114853858947754,
- 0.053188424557447433, 0.07035746425390244, -0.014249184168875217, 0.010357838124036789,
- -0.019476452842354774, 0.15117086470127106, -0.01658554933965206, 0.047740235924720764,
- -0.11416766047477722, 0.04225325584411621, 0.08679318428039551, -0.013540211133658886,
- -0.038641367107629776, 0.03185610473155975, -0.2019297331571579, -0.012383904308080673,
- -0.051341552287340164, 0.174699068069458, 0.06949825584888458, 0.017220785841345787,
- 0.06277281045913696, -0.06199192628264427, 0.06647980958223343, 0.037003323435783386,
- 0.027370309457182884, 0.0932246670126915, -0.005947135388851166, -0.042008642107248306,
- 0.13032813370227814, 0.052178699523210526, 0.06246624514460564, 0.014542706310749054,
- 11.8317289352417, 0.07768470048904419, 0.03824954107403755, -0.08238301426172256,
- 0.06644999980926514, -0.043839242309331894, 0.04662904143333435, -0.098780058324337,
- 0.06937980651855469, 0.09440603107213974, -0.023471130058169365, -0.025756940245628357,
- -0.06042987480759621, -0.05919341370463371, -0.00041492609307169914,
- -0.11034584045410156, -0.050195544958114624, -0.01311939675360918, 0.02976376563310623,
- -0.05623506382107735, 0.023773543536663055, 0.008324403315782547, 0.07615359872579575,
- 0.014518090523779392, -0.1096220389008522, 0.1015145555138588, 0.04802336171269417,
- 0.0057358709163963795, -0.007482049986720085, 0.01439768448472023,
- 0.0012521060416474938, 0.02723703347146511, 0.06988970190286636, 0.03430519625544548,
- -0.03545894846320152, 0.09225478023290634, -0.003996910993009806, 0.06765799969434738,
- -0.0023931751493364573, 0.0721830502152443, 0.023983538150787354, 0.024438247084617615,
- 0.038554802536964417, 0.013686753809452057, 0.026428556069731712, 0.03769088163971901,
- 0.060925453901290894, 0.10888481885194778, 0.031323377043008804, 0.02671336941421032,
- 0.07602577656507492, -0.03162100911140442, 0.10262200236320496, 0.04525892436504364,
- -0.0019521064823493361, 0.023099958896636963, -0.03308385610580444,
- -0.05491125211119652, 0.05505857989192009, 0.04631665721535683, -0.032551947981119156,
- 0.07837481051683426, 0.03228021785616875, 0.10876717418432236, -0.048779916018247604,
- 0.023542823269963264, 0.08468983322381973, 0.05917878448963165, -0.10279279202222824,
- -0.026719436049461365, 0.04374760016798973, -0.12140879034996033, -0.04743986949324608,
- 0.048498913645744324, 0.019935602322220802, -0.005924232304096222, 0.09707578271627426,
- -0.0446477085351944, 0.053382303565740585, -0.04359952732920647, 0.01107949297875166,
- 0.03050565905869007, -0.04028795287013054, 0.02342642843723297, 0.01775616593658924,
- -0.011761330999433994, 0.12343435734510422, 0.07564299553632736, -0.033194225281476974,
- -0.07159391790628433, -0.10206437110900879, 0.06546097248792648, -0.007669239770621061,
- -0.04006291553378105, 0.007356098387390375, -0.04758879169821739, 0.04493134841322899,
- -0.16878391802310944, 0.09095856547355652, 0.10555141419172287, -0.07868356257677078,
- -0.0014248117804527283, -0.023744991049170494, 0.07203441113233566,
- -0.02391538955271244, 0.0298483744263649, -0.05149425193667412, 0.0022252677008509636,
- 0.010750641115009785, 0.05839794501662254, -0.04576786234974861, 0.0527164451777935,
- 0.045102473348379135, -0.07819026708602905, 0.07407351583242416, 0.0720563754439354,
- -0.037598706781864166, -0.03938089311122894, 0.056680161505937576, 0.045365821570158005,
- -0.08380196243524551, -0.0384034626185894, -0.03969495743513107, -0.024992920458316803,
- -0.023793794214725494, -0.032826270908117294, -0.01069624349474907,
- 0.014892763458192348, -0.06785967200994492, -0.0413784421980381, -0.01823314279317856,
- 0.03454280272126198, 0.12606309354305267, 0.03261552006006241, 0.06128080189228058,
- -0.06138212978839874, -0.016597377136349678, 0.07321835309267044, 0.018220219761133194,
- 0.07061588764190674, -0.021169543266296387, 0.026308337226510048, -0.044895101338624954,
- -0.08764072507619858, -0.006343760062009096, 0.08625265955924988, 0.04655471071600914,
- 0.03213096037507057, 0.04419368505477905, -0.05187688767910004, -0.016495732590556145,
- 0.1315513402223587, 0.043029654771089554, 0.016042247414588928, 0.015880318358540535,
- -0.11957820504903793, 0.005533476825803518, 0.1611577719449997, -0.029226096346974373,
- -0.009184087626636028, -0.003136551706120372, -0.07507867366075516,
- 0.032460909336805344, 0.05490503087639809, 0.09527289867401123, 0.03887364640831947,
- 0.010886888019740582, -0.009450461715459824, -0.016383444890379906,
- 0.018493372946977615, 0.003754221135750413, -0.0014692097902297974, -0.1205085888504982,
- -0.08284283429384232, 0.022895626723766327, 0.07491417974233627, 0.015038278885185719,
- -0.11793584376573563, -0.012456775642931461, -0.05320180580019951
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 271,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 52,
- "similarity": 0.9986444115638733
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 20,
- "similarity": 0.9986212253570557
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 4,
- "similarity": 0.9984462857246399
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Tom Krisher"],
- "epoch_date_downloaded": 1660003200,
- "epoch_date_modified": 1660003200,
- "epoch_date_submitted": 1660003200,
- "flag": null,
- "report_number": 1862,
- "source_domain": "apnews.com",
- "submitters": ["Khoa Lam"],
- "title": "US agency probes Tesla crashes that killed 2 motorcyclists",
- "url": "https://apnews.com/article/technology-12ba38bd863e2b128a8e2914179049e0"
- },
- {
- "__typename": "Report",
- "authors": ["Ryan Bittan"],
- "epoch_date_downloaded": 1660003200,
- "epoch_date_modified": 1660003200,
- "epoch_date_submitted": 1660003200,
- "flag": null,
- "report_number": 1861,
- "source_domain": "abc4.com",
- "submitters": ["Khoa Lam"],
- "title": "Motorcyclist dies on I-15 after Tesla on auto-pilot crashes into back of bike",
- "url": "https://www.abc4.com/news/local-news/motorcyclist-dies-in-crash-with-tesla-on-auto-pilot/"
- },
- {
- "__typename": "Report",
- "authors": ["Andrew J. Hawkins"],
- "epoch_date_downloaded": 1659571200,
- "epoch_date_modified": 1659744000,
- "epoch_date_submitted": 1659571200,
- "flag": null,
- "report_number": 1852,
- "source_domain": "theverge.com",
- "submitters": ["Fionntán O'Donnell"],
- "title": "Tesla driver using Autopilot kills motorcyclist, prompting another NHTSA investigation",
- "url": "https://www.theverge.com/2022/7/27/23280461/tesla-autopilot-crash-motorcyclist-fatal-utah-nhtsa"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "grab",
- "name": "Grab"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "grab",
- "name": "Grab"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "non-tpi-registered-grab-drivers",
- "name": "non-TPI-registered Grab drivers"
- },
- {
- "__typename": "Entity",
- "entity_id": "grab-drivers-in-indonesia",
- "name": "Grab drivers in Indonesia"
- },
- {
- "__typename": "Entity",
- "entity_id": "grab-drivers",
- "name": "Grab drivers"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1855, 1854, 1853],
- "vector": [
- -0.04934681951999664, 0.08840302377939224, 0.0157176461070776, -0.1037958487868309,
- 0.015354101546108723, -0.06175875663757324, 0.0012152699055150151, 0.06377627700567245,
- 0.07834304124116898, -0.12157678604125977, 0.008190675638616085, 0.01031233835965395,
- 0.04631472006440163, -0.05482262745499611, 0.029132196679711342, -0.042628198862075806,
- -0.06994564086198807, 0.005586560815572739, 0.011861753650009632, -0.12326189130544662,
- -0.08564607053995132, -0.010623998939990997, 0.053366709500551224, 0.11765432357788086,
- -0.053374629467725754, 0.05708371475338936, 0.09264994412660599, 0.14041344821453094,
- -0.07473696023225784, 0.06891380995512009, -0.038442213088274, -0.052228525280952454,
- 0.12964953482151031, 0.024673432111740112, 0.04479803517460823, 0.11049067229032516,
- 0.04166853427886963, -0.027467945590615273, -0.07792335003614426, -0.008028670214116573,
- 0.06042356416583061, 0.19219066202640533, 0.0006913496181368828, -0.03076976351439953,
- 0.07912703603506088, -0.04144592210650444, 0.030947260558605194, 0.040579117834568024,
- -0.0004693798255175352, 0.010101092047989368, -0.019753526896238327,
- 0.056736577302217484, -0.009731992147862911, 0.032811880111694336, -0.08656863123178482,
- 0.005370795726776123, 0.03663048520684242, 0.015750015154480934, 0.015281564556062222,
- -0.08336939662694931, -0.01893858052790165, -0.22055356204509735, -0.06634510308504105,
- -0.06912622600793839, 0.08367381244897842, -0.10351995378732681, -0.06241843104362488,
- 0.008090983144938946, 0.0052484734915196896, 0.07034379243850708, 0.01943764090538025,
- -0.00581462262198329, 0.0013530151918530464, -0.04320157691836357,
- 0.0012198537588119507, 0.0006413712981157005, 0.02721191942691803, 0.19841594994068146,
- -0.11033902317285538, 0.030220741406083107, 0.12502475082874298, -0.07970605045557022,
- 0.40344035625457764, 0.023525206372141838, -0.032201580703258514, -0.021686414256691933,
- 0.10322010517120361, 0.0837826207280159, 0.05980685353279114, 0.03785981610417366,
- -0.015480521135032177, 0.006711039692163467, -0.05324847996234894,
- -0.020032860338687897, 0.051227908581495285, 0.044824812561273575,
- -0.019588563591241837, -0.02522345818579197, -0.011715508997440338,
- -0.04712239280343056, 0.0019344076281413436, -0.041286401450634, 0.10753238201141357,
- 0.03545815870165825, -0.05190547928214073, -0.009055928327143192, 0.0864386186003685,
- -0.027414463460445404, 0.06780117750167847, -0.053216975182294846, 0.041154779493808746,
- 0.08920914679765701, 0.08724883943796158, 0.012182950973510742, 0.06385871022939682,
- -0.0282865259796381, 0.007933166809380054, 0.0427289716899395, 0.07800284028053284,
- -0.021400077268481255, 0.03677766025066376, 0.03148512914776802, 0.06610378623008728,
- -0.02724587172269821, -0.01431319210678339, -0.017405372112989426,
- -0.008641808293759823, -0.018929757177829742, -0.012790710665285587,
- 0.02053706720471382, -0.014791552908718586, -0.2156389206647873, -0.0025507474783807993,
- 0.06703034788370132, 0.029783407226204872, -0.035100068897008896, -0.016386331990361214,
- -0.037187665700912476, 0.06610501557588577, 0.013914261944591999, -0.03215525671839714,
- 0.07356224209070206, 0.0066275205463171005, 0.04523858800530434, 0.17424927651882172,
- 0.05245523527264595, -0.05784766376018524, -0.0974719300866127, 0.01369695644825697,
- 0.030176227912306786, 0.08576110750436783, -0.11133256554603577, -0.07881724089384079,
- 0.03668266907334328, 0.023404642939567566, 0.6452670097351074, 0.05836428329348564,
- 0.1315150111913681, -0.048649657517671585, -0.019420085474848747, 0.18417781591415405,
- -0.0026555091608315706, 0.08207433670759201, -0.06846418231725693, -0.06059670448303223,
- 0.02048276923596859, -0.0723058357834816, -0.044038791209459305, 0.0182068832218647,
- -0.0077573396265506744, 0.11764859408140182, 0.007933703251183033, 0.08078809827566147,
- -0.030525142326951027, -0.06485862284898758, 0.015951961278915405, 0.02765403874218464,
- 0.0044460054486989975, -0.12718601524829865, -0.016354255378246307, 0.00450062146410346,
- 0.07954398542642593, -0.07810846716165543, 0.03046281635761261, -0.07575815171003342,
- 0.04374651983380318, -0.02574501931667328, 0.015835590660572052, 0.027087755501270294,
- 0.026819536462426186, 0.011080026626586914, 0.06784116476774216, 0.0025865258648991585,
- -0.06903816014528275, 0.010669589973986149, 0.10784769058227539, 0.013719762675464153,
- -0.022276224568486214, 0.1010669395327568, -0.09677296131849289, 0.062381256371736526,
- -0.031658366322517395, 0.12314356118440628, -0.10569372028112411, 0.004217664711177349,
- 0.009182300418615341, 0.0011078687384724617, 0.0867549404501915, 0.006060359999537468,
- -0.08476630598306656, -0.07837429642677307, 0.07483778148889542, 0.009905382059514523,
- 0.058872222900390625, 0.043213751167058945, -0.032320111989974976, 0.019095230847597122,
- 0.0696272924542427, 0.023489823564887047, -0.03220975771546364, 0.03625686839222908,
- 0.028971096500754356, -0.034940555691719055, -0.0006324313580989838,
- 0.01030362956225872, 0.07452502101659775, -0.01097353920340538, -0.022482022643089294,
- 0.027187703177332878, -0.008123114705085754, -0.044524624943733215,
- -0.005221180152148008, 0.017125243321061134, 0.031633276492357254, 0.11871703714132309,
- -0.07764465361833572, -0.008898877538740635, -0.03128000721335411,
- -0.008299688808619976, 0.02279316820204258, 0.003470807569101453, 0.06118382140994072,
- 0.09855001419782639, 0.041768282651901245, 0.04986982420086861, 0.018636668100953102,
- 0.030950097367167473, 0.04473356530070305, 0.05314096808433533, 0.10475460439920425,
- -0.003227541223168373, -0.07293203473091125, -0.050376955419778824, 0.04217028617858887,
- 0.07038294523954391, 0.0365479476749897, -0.06911332905292511, -0.012511723674833775,
- -0.024586567655205727, -0.06982285529375076, -0.08533377200365067, 0.005749280098825693,
- 0.00205915211699903, 0.048437848687171936, -0.06751621514558792, -0.05112553760409355,
- -0.06394073367118835, 0.02662825398147106, 0.047587860375642776, -0.011282126419246197,
- 0.00358484941534698, -0.11348655074834824, -0.013176176697015762, -0.042587924748659134,
- 0.03630281612277031, 0.010190428234636784, 0.010868106968700886, -0.026479093357920647,
- -0.044800758361816406, 0.023664576932787895, -0.011811668984591961,
- 0.041162822395563126, -0.05952996015548706, -0.035876404494047165, -0.02199796587228775,
- 0.07003214210271835, 0.01783834770321846, -0.05400307849049568, -0.0013832220574840903,
- 0.035716813057661057, 0.06969214975833893, 0.023034341633319855, -0.0286710262298584,
- 0.04267093166708946, -0.05609592795372009, -0.005047627259045839, 0.1011403426527977,
- -0.037291113287210464, -0.026113254949450493, -0.011755610816180706,
- -0.07732156664133072, -0.07988929003477097, 0.018390612676739693, -0.055737972259521484,
- 0.023245662450790405, -0.016054006293416023, 0.026204213500022888, -0.03915347903966904,
- 0.016398213803768158, 0.0849517285823822, -0.09572743624448776, -0.08092140406370163,
- -0.05275918170809746, 0.09552929550409317, 0.0162099227309227, 0.01684468425810337,
- 0.014635610394179821, -0.06570713967084885, 0.005708905402570963, -0.025582285597920418,
- -0.002254955004900694, 0.009961504489183426, 0.058298319578170776, -0.01906583644449711,
- -0.002441198332235217, 0.05687238276004791, -0.014279906637966633, 0.005625143647193909,
- 0.1302856057882309, 0.3983428478240967, -0.04027057811617851, 0.10371916741132736,
- 0.12449423223733902, -0.011329196393489838, 0.04597951099276543, -0.009021703153848648,
- 0.05320968106389046, 0.021582821384072304, 0.08610624074935913, 0.07598649710416794,
- -0.0004429104446899146, -0.03583579137921333, -0.05920032784342766, 0.08974481374025345,
- -0.024576062336564064, -0.012312871403992176, 0.015881827101111412,
- -0.06191118061542511, 0.005349098239094019, 0.0320068784058094, -0.030707748606801033,
- -0.0054728505201637745, 0.005993204656988382, -0.09140970557928085, 0.03099832870066166,
- 0.07582803815603256, 0.04242216423153877, 0.022035514935851097, 0.006489746272563934,
- -0.06311176717281342, 0.021113304421305656, 0.0048826211132109165, 0.054639797657728195,
- -0.08237694948911667, 0.03560977056622505, -0.09005860239267349, -0.09455888718366623,
- 0.1087331548333168, 0.01708105020225048, 0.022149330005049706, 0.0652061179280281,
- -0.04196525737643242, 0.024742184206843376, -0.04759475588798523, -0.032387204468250275,
- 0.03671448305249214, -0.002114609582349658, 0.00997233111411333, 0.08213553577661514,
- 0.14320363104343414, -0.018550807610154152, -0.04757681488990784, -0.10953555256128311,
- 0.05232161656022072, 0.09001553058624268, -0.03185915946960449, 0.051821280270814896,
- -0.004037289414554834, -0.016788477078080177, -0.018969587981700897,
- -0.030526360496878624, -0.09079430252313614, 0.04236597940325737, -0.07829474657773972,
- 0.10278504341840744, 0.02668699063360691, -0.009471246041357517, -0.05726756528019905,
- -0.03543158993124962, -0.07292313128709793, -0.002304517664015293, 0.09210561960935593,
- -0.0628621056675911, 0.007455997634679079, 0.010082423686981201, 0.024200094863772392,
- -0.03833923861384392, -0.10978630185127258, -0.013713662512600422, -0.06949400901794434,
- 0.07715257257223129, 0.02807449735701084, 0.05075652897357941, -0.03786090388894081,
- 0.07547374814748764, -0.11177694797515869, 0.06542003154754639, 0.06675698608160019,
- -0.07344546169042587, 0.03209463134407997, -0.014591691084206104, 0.0077003599144518375,
- 0.027257300913333893, -0.057430874556303024, -0.03396160900592804, -0.04738152027130127,
- -0.08029092848300934, -0.11683062463998795, -0.03448066487908363, -0.016739115118980408,
- -0.09227866679430008, 0.06820250302553177, -0.0526173897087574, -0.023388033732771873,
- 0.015790170058608055, 0.01368342712521553, -0.007182905450463295, 0.03496892750263214,
- 0.0383029468357563, -0.13054372370243073, -0.00745626213029027, 0.001004929537884891,
- 0.053540755063295364, -0.039947282522916794, -0.10229802876710892, 0.07194742560386658,
- 0.0801616907119751, 0.03520633280277252, -0.0027409710455685854, 0.05327336862683296,
- -0.009477002546191216, 0.06302240490913391, -0.12708736956119537, -0.36697855591773987,
- 0.02110912650823593, 0.014682099223136902, 0.057069409638643265, 0.028560424223542213,
- -0.08360546082258224, 0.06517178565263748, 0.03663548827171326, -0.07869520783424377,
- 0.10684434324502945, -0.09526843577623367, 0.030332325026392937, -0.016645057126879692,
- -0.07621113210916519, -0.0048191058449447155, -0.08309947699308395, -0.0134751470759511,
- 0.018742000684142113, -0.003629954531788826, -0.09375586360692978, -0.1064789667725563,
- 0.015628905966877937, -0.0012533090775832534, 0.008987913839519024,
- -0.019804343581199646, 0.020128821954131126, -0.04585939273238182, -0.03622811660170555,
- 0.0021918509155511856, 0.020332420244812965, 0.026872193440794945, -0.05649298429489136,
- 0.025788823142647743, 0.06741439551115036, -0.004158512223511934, 0.1577497124671936,
- 0.03571761026978493, -0.032738979905843735, -0.084876149892807, 0.07733125239610672,
- 0.07409756630659103, 0.18850021064281464, -0.026405973359942436, -0.007832277566194534,
- 0.016740307211875916, 0.08531271666288376, 0.021321339532732964, 0.04576128348708153,
- -0.01803801767528057, 0.02318820357322693, -0.0061257933266460896, 0.014136157929897308,
- 0.10368302464485168, -0.05912468954920769, -0.025089560076594353, -0.04999746382236481,
- -0.039963144809007645, -0.08821094036102295, -0.03468048572540283, 0.15582986176013947,
- 0.02526375651359558, 0.003788451896980405, 0.05261511728167534, -0.08529049158096313,
- 0.00987974926829338, -0.08633842319250107, -0.1456628292798996, -0.0349670834839344,
- -0.0013304171152412891, 0.04497665539383888, -0.06048032268881798, -0.11219271272420883,
- -0.0008784674573689699, -0.012028276920318604, 0.014159449376165867,
- 0.11798930168151855, -0.051963817328214645, 0.013464429415762424, -0.029845386743545532,
- 0.0745391771197319, 0.035847291350364685, 0.02030286006629467, 0.019751006737351418,
- 0.03963888809084892, -0.021415116265416145, -0.052295148372650146, -0.03464334085583687,
- -0.046428512781858444, 0.02310592494904995, 0.10194515436887741, 0.0014681705506518483,
- 0.12363177537918091, 0.06127329170703888, -0.04251312091946602, -0.042637139558792114,
- 0.012388356029987335, -0.004370460752397776, 0.029933303594589233, -0.40556076169013977,
- 0.00664405757561326, 0.09657856822013855, 0.021375685930252075, 0.035632941871881485,
- 0.12718172371387482, 0.034097347408533096, -0.013728175312280655, 0.034680742770433426,
- -0.08362547308206558, 0.18293434381484985, -0.002190960804000497, 0.046550203114748,
- -0.13551642000675201, -0.01024667639285326, 0.0698343887925148, 0.0009954842971637845,
- 0.006224125623703003, 0.04482397437095642, -0.2430875450372696, -0.022135181352496147,
- -0.08232956379652023, 0.12291043251752853, 0.03794964775443077, 0.02972419559955597,
- 0.0629737600684166, -0.01247845683246851, 0.031539544463157654, 0.020372742787003517,
- 0.028499538078904152, 0.08403090387582779, -0.014668201096355915, -0.03615448996424675,
- 0.09695363789796829, 0.04695107042789459, 0.10112135857343674, -0.010250995866954327,
- 11.846957206726074, 0.043011512607336044, 0.06319237500429153, -0.11934111267328262,
- 0.02768830955028534, -0.06483491510152817, 0.06388941407203674, -0.09299853444099426,
- 0.020717425271868706, 0.10320811718702316, -0.00466589629650116, -0.08027095347642899,
- -0.04589836299419403, -0.06795813888311386, 0.013006466440856457, -0.054462891072034836,
- -0.039550263434648514, -0.012979738414287567, 0.05407272279262543, -0.06351208686828613,
- -0.054621729999780655, 0.030383989214897156, 0.041469112038612366, 0.004419203381985426,
- -0.0756852999329567, 0.021468015387654305, 0.051519330590963364, -0.014540441334247589,
- 0.0005979515262879431, 0.037976864725351334, 0.024538323283195496, 0.014832369983196259,
- 0.05188759043812752, 0.024605901911854744, 0.05726098641753197, 0.05249663069844246,
- 0.048938531428575516, 0.06276016682386398, 0.015321937389671803, -0.0065180049277842045,
- 0.017788441851735115, -0.00865474995225668, 0.0420490987598896, 0.062489598989486694,
- 0.053254708647727966, 0.020291713997721672, 0.023253848776221275, 0.07794813811779022,
- -0.012180336751043797, 0.03811422362923622, 0.08680214732885361, 0.0018417165847495198,
- 0.06422747671604156, 0.010924098081886768, 0.036471351981163025, 0.06448214501142502,
- -0.044929567724466324, -0.06882742792367935, 0.09382965415716171, 0.07092077285051346,
- -0.03531048074364662, 0.10404857248067856, 0.04879908636212349, 0.04044675827026367,
- 0.019275913015007973, 0.07759226858615875, 0.07130817323923111, 0.05011637136340141,
- -0.1275213062763214, -0.05102211609482765, 0.07318656891584396, -0.12220010161399841,
- -0.08664240688085556, 0.035561736673116684, 0.025784911587834358, -0.04770283401012421,
- 0.08157376199960709, -0.05268785357475281, 0.05388575792312622, -0.012750827707350254,
- -0.0033564704935997725, 0.06915155798196793, -0.034169238060712814,
- 0.022293709218502045, 0.017173567786812782, 0.035644691437482834, 0.10840360075235367,
- 0.09020576626062393, -0.004557072650641203, -0.02143894135951996, -0.05489121377468109,
- 0.088648222386837, -0.025072529911994934, -0.04762217774987221, -0.04841920733451843,
- -0.01995004527270794, -0.021878557279706, -0.1544545441865921, 0.07178882509469986,
- 0.04456089064478874, -0.10439672321081161, -0.02222455106675625, -0.01727503351867199,
- 0.07884379476308823, -0.00816835556179285, -0.0014131417265161872, -0.11446988582611084,
- 0.029631778597831726, -0.010456311516463757, 0.02885127067565918, -0.043296098709106445,
- 0.10885465145111084, 0.048560287803411484, -0.04887460544705391, 0.07103624194860458,
- 0.07463548332452774, -0.048855140805244446, -0.013777426443994045, 0.011739980429410934,
- 0.03275212273001671, -0.07907787710428238, -0.05048747360706329, -0.0314541794359684,
- -0.03230510279536247, -0.028790341690182686, -0.03077659010887146,
- -0.003723032772541046, 0.02698669582605362, -0.03334897756576538, -0.04370527341961861,
- 0.04456791281700134, 0.03691376373171806, 0.03210512921214104, 0.04527716711163521,
- 0.034805018454790115, -0.06473509222269058, -0.012121262960135937, 0.04339681193232536,
- 0.010548877529799938, 0.06597451120615005, -0.0062562874518334866,
- -0.021057771518826485, -0.05980750918388367, -0.13498122990131378,
- -0.007521778345108032, 0.09711102396249771, 0.018130086362361908, 0.028032690286636353,
- -0.015590228140354156, -0.02757100574672222, -0.03201029822230339, 0.10650953650474548,
- 0.009429759345948696, 0.07149029523134232, 0.001434487639926374, -0.09108802676200867,
- -0.02855619043111801, 0.1411919742822647, -0.04669026657938957, 0.01691926084458828,
- 0.021778924390673637, -0.09562233090400696, 0.11704236268997192, 0.0519828163087368,
- -0.0008867764263413846, 0.021762622520327568, 0.04364945366978645, 0.008349907584488392,
- 0.0063618323765695095, 0.0210254043340683, 0.033812809735536575, -0.01755707710981369,
- -0.08857839554548264, -0.0756414383649826, 0.033372536301612854, 0.07637759298086166,
- -0.03234737738966942, -0.08310549706220627, -0.034428101032972336, -0.02630753628909588
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 272,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 191,
- "similarity": 0.9973754286766052
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 45,
- "similarity": 0.9972175359725952
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 204,
- "similarity": 0.9969550371170044
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Ardi Wirdana"],
- "epoch_date_downloaded": 1660003200,
- "epoch_date_modified": 1660003200,
- "epoch_date_submitted": 1660003200,
- "flag": null,
- "report_number": 1855,
- "source_domain": "dealstreetasia.com",
- "submitters": ["Khoa Lam"],
- "title": "Grab fined $2m by Indonesia's competition watchdog over driver discrimination",
- "url": "https://www.dealstreetasia.com/stories/grab-indonesia-fine-195659"
- },
- {
- "__typename": "Report",
- "authors": ["Khamila Mulia", " Nadine Freischlad"],
- "epoch_date_downloaded": 1608940800,
- "epoch_date_modified": 1660003200,
- "epoch_date_submitted": 1660003200,
- "flag": null,
- "report_number": 1854,
- "source_domain": "techinasia.com",
- "submitters": ["Ingrid Dickinson (CSET)"],
- "title": "Indonesia competition watchdog accuses Grab of offering some drivers special treatment",
- "url": "https://www.techinasia.com/grab-indonesia-accused-offering-preferential-treatment-drivers"
- },
- {
- "__typename": "Report",
- "authors": ["Nadine Freischlad", " Khamila Mulia "],
- "epoch_date_downloaded": 1660003200,
- "epoch_date_modified": 1660003200,
- "epoch_date_submitted": 1660003200,
- "flag": null,
- "report_number": 1853,
- "source_domain": "kr-asia.com",
- "submitters": ["Khoa Lam"],
- "title": "Grab accused of offering preferential treatment to drivers in its rental program by Indonesian competition watchdog",
- "url": "https://kr-asia.com/grab-accused-of-offering-preferential-treatment-to-drivers-in-its-rental-program-by-indonesian-competition-watchdog"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "faceapp",
- "name": "FaceApp"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "faceapp",
- "name": "FaceApp"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "faceapp-users",
- "name": "FaceApp users"
- },
- {
- "__typename": "Entity",
- "entity_id": "faceapp-transgender-users",
- "name": "FaceApp transgender users"
- },
- {
- "__typename": "Entity",
- "entity_id": "faceapp-non-binary-presenting-users",
- "name": "FaceApp non-binary presenting users"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1856],
- "vector": [
- -0.08937203884124756, 0.15276311337947845, -0.011916251853108406, -0.09192436933517456,
- 0.0920184850692749, -0.04743616282939911, 0.024336427450180054, 0.10603825002908707,
- 0.07048110663890839, -0.15253818035125732, -0.016415568068623543, -0.04652983322739601,
- -0.000251400051638484, -0.093510702252388, 0.040898676961660385, -0.0683753564953804,
- -0.0985485166311264, 0.01613086648285389, -0.01657850481569767, -0.150501549243927,
- -0.09938786178827286, -0.026740752160549164, -0.030509432777762413, 0.10700865089893341,
- -0.10449856519699097, 0.0818592831492424, 0.12750498950481415, 0.10237690806388855,
- -0.03929083049297333, 0.06664843112230301, -0.04895138368010521, -0.10033375024795532,
- 0.0995161309838295, 0.06415681540966034, -0.04655676707625389, 0.11898986995220184,
- -0.042729757726192474, 0.010260931216180325, -0.041500188410282135,
- 0.0005567739717662334, 0.040064264088869095, 0.1704469621181488, -0.0027074399404227734,
- 0.013028758578002453, 0.027118081226944923, -0.0844510942697525, -0.009691187180578709,
- 0.008862176910042763, 0.01573266088962555, -0.004994639661163092, -0.0256077591329813,
- 0.04258350282907486, -0.09321783483028412, 0.09492525458335876, -0.16113613545894623,
- 0.05315421149134636, 0.02223636768758297, -0.056171294301748276, -0.005882732570171356,
- -0.11799806356430054, -0.09841916710138321, -0.16329023241996765, -0.02064291201531887,
- -0.04094766080379486, 0.0950261801481247, -0.06248297542333603, 0.047185759991407394,
- -0.05268646776676178, -0.02838226966559887, 0.1411171704530716, 0.032093461602926254,
- -0.015916943550109863, -0.04391883686184883, 0.02013504132628441, -0.014895988628268242,
- -0.05470419302582741, 0.002991681220009923, 0.31198665499687195, -0.13874094188213348,
- -0.016813188791275024, 0.057570237666368484, -0.13613085448741913, 0.4370754063129425,
- -0.012592606246471405, -0.098672054708004, 0.06166991591453552, 0.08277411758899689,
- 0.006222015246748924, 0.027850063517689705, -0.0196954607963562, -0.03618907183408737,
- 0.0467202365398407, -0.11980148404836655, -0.03630687668919563, 0.0964798852801323,
- -0.016078082844614983, -0.0288839153945446, 0.025542058050632477, -0.01925371028482914,
- -0.09267830103635788, 0.03628651052713394, -0.08950546383857727, 0.06669099628925323,
- 0.12483124434947968, -0.07102169841527939, 0.0016823395853862166, 0.1141023188829422,
- -0.061306316405534744, 0.10786743462085724, -0.09994303435087204, 0.010746732354164124,
- -0.03134869411587715, 0.09385322779417038, -0.05510170757770538, 0.045776743441820145,
- -0.031104769557714462, -0.003118660533800721, 0.06995684653520584, 0.13869619369506836,
- 0.04837425798177719, 0.022890664637088776, 0.03453720733523369, 0.06169974431395531,
- -0.14315903186798096, -0.11480315774679184, -0.021169807761907578, -0.08931463211774826,
- -0.04609718918800354, 0.008040913380682468, 0.10360243171453476, -0.09393052011728287,
- -0.276002436876297, -0.030871210619807243, 0.09466869384050369, -0.06767155975103378,
- -0.042379289865493774, 0.009125234559178352, -0.08947611600160599, 0.049754198640584946,
- -0.09340238571166992, -0.04167193919420242, 0.09639821201562881, 0.03849295526742935,
- -0.007573401555418968, 0.10804236680269241, 0.10055524855852127, -0.020625760778784752,
- -0.010346496477723122, 0.006297802086919546, -0.024690691381692886, 0.16319891810417175,
- -0.21620215475559235, -0.005301936063915491, -0.07345917820930481,
- -0.017500150948762894, 0.7068922519683838, 0.20701709389686584, 0.11523782461881638,
- -0.021786712110042572, -0.06823737919330597, 0.22061783075332642,
- -0.0004932169686071575, 0.14633193612098694, -0.13247394561767578,
- -0.010035550221800804, 0.02179848775267601, -0.14241936802864075, -0.07457175105810165,
- -0.003681729082018137, -0.02560613304376602, 0.09005779027938843, 0.061557453125715256,
- 0.08698789775371552, -0.00025599729269742966, -0.09514635801315308,
- 0.017160741612315178, 0.07707931846380234, 0.01105727069079876, -0.10933072119951248,
- -0.03518147021532059, 0.06493844091892242, 0.10099724680185318, -0.07358177751302719,
- 0.025874074548482895, -0.08294785767793655, 0.08739989250898361, 0.00815582275390625,
- 0.04006165266036987, 0.02829047664999962, 0.03283803537487984, 0.1394924372434616,
- 0.07785919308662415, -0.06092177331447601, -0.12529265880584717, -0.005424955859780312,
- 0.03346319869160652, -0.05694431811571121, -0.06008908525109291, 0.1307481825351715,
- -0.1077679917216301, 0.04266698285937309, 0.01779821701347828, 0.24087932705879211,
- -0.16849492490291595, 0.04900187626481056, 0.006252172868698835, -0.05616367608308792,
- 0.03579258546233177, -0.015782389789819717, -0.08768732100725174, -0.040625039488077164,
- 0.08762793242931366, 0.018224401399493217, 0.06291253864765167, 0.030597558245062828,
- -0.0679117888212204, 0.07205414026975632, 0.1340443640947342, 0.04118749126791954,
- -0.00948736909776926, 0.1128503680229187, 0.12076466530561447, -0.0896352231502533,
- -0.01446441002190113, 0.05337769538164139, 0.10087782889604568, 0.018693868070840836,
- 0.0042618513107299805, 0.05301256850361824, 0.00274420203641057, -0.10929223150014877,
- 0.018127869814634323, -0.011005093343555927, 0.060084640979766846, 0.12103642523288727,
- -0.044108904898166656, -0.026344431564211845, -0.019309645518660545,
- -0.013230010867118835, -0.010650032199919224, -0.038863327354192734,
- 0.11514276266098022, 0.13588407635688782, 0.06962314248085022, 0.06463763862848282,
- -0.01769719459116459, 0.14150165021419525, 0.03737340122461319, 0.03255993127822876,
- 0.11226025223731995, 0.024844074621796608, -0.10188549011945724, -0.00681482395157218,
- -0.03724706172943115, -0.020022990182042122, 0.030939297750592232, -0.09353303164243698,
- -0.03710924834012985, -0.04652103781700134, -0.04353512451052666, -0.15177160501480103,
- -0.05011982098221779, -0.002072082133963704, 0.027894988656044006, -0.10991735011339188,
- -0.10646013170480728, -0.1400316208600998, -0.03348846733570099, 0.18952539563179016,
- -0.019320473074913025, 0.002833510283380747, -0.1345713883638382, 0.02920183166861534,
- -0.06185910478234291, 0.03924981877207756, -0.1042092889547348, -0.031228674575686455,
- 0.008801824413239956, -0.10776771605014801, 0.06961433589458466, 0.011284865438938141,
- -0.02312770113348961, -0.031935080885887146, -0.10300153493881226, -0.04913928732275963,
- -0.0746832937002182, -0.06492988765239716, -0.05063676834106445, 0.026478642597794533,
- 0.02986445277929306, 0.11569339781999588, -0.03670588880777359, -0.1294240802526474,
- 0.026670098304748535, 0.030146807432174683, 0.0076365238055586815, 0.14097729325294495,
- -0.060622114688158035, 0.024946119636297226, -0.07109597325325012, -0.05225469544529915,
- -0.05313664674758911, -0.03905570134520531, -0.05528923124074936, 0.06021321192383766,
- -0.010552708990871906, -0.04266909882426262, -0.04657743498682976,
- -0.021273983642458916, 0.06250995397567749, -0.008794949389994144, -0.06038909777998924,
- -0.0963849276304245, 0.10598152130842209, -0.048583805561065674, 0.03429434821009636,
- 0.04255879670381546, -0.03824807330965996, 0.058482613414525986, -0.05745911970734596,
- 0.009695365093648434, 0.06460196524858475, 0.05636210739612579, 0.011946918442845345,
- 0.0596279539167881, 0.09252684563398361, -0.06592613458633423, 0.009268991649150848,
- 0.08333693444728851, 0.422991544008255, -0.2646075189113617, 0.11054886877536774,
- 0.10690642148256302, 0.007094674278050661, 0.03227369487285614, -0.016843857243657112,
- 0.10773592442274094, 0.07585517317056656, 0.1701592206954956, 0.19915524125099182,
- -0.0414959080517292, -0.0735396295785904, -0.14890775084495544, 0.13469186425209045,
- 0.01241534948348999, 0.10854392498731613, 0.025858134031295776, -0.10995431989431381,
- -0.040319669991731644, 0.01384819857776165, -0.039076078683137894,
- -0.0035179550759494305, -0.004401568789035082, -0.09087221324443817,
- -0.006566270254552364, 0.051182687282562256, -0.00008639329462312162,
- 0.006653403863310814, 0.043600358068943024, -0.02580871619284153, 0.06855660676956177,
- 0.05220164358615875, 0.04689403250813484, -0.12980899214744568, 0.029840117320418358,
- -0.10251646488904953, -0.10285850614309311, 0.0622049905359745, -0.004269416909664869,
- 0.079912930727005, 0.12019464373588562, -0.07266954332590103, 0.08808748424053192,
- -0.05805829539895058, -0.04632321000099182, 0.07555163651704788, -0.021391358226537704,
- 0.02498418092727661, 0.052453964948654175, 0.20066888630390167, -0.05067970231175423,
- 0.060137003660202026, -0.06570714712142944, 0.06399696320295334, 0.17578892409801483,
- -0.018304768949747086, 0.050925467163324356, 0.0622163824737072, -0.01773129403591156,
- 0.031584955751895905, -0.0519418902695179, -0.03911803290247917, -0.000625861284788698,
- -0.05664721131324768, 0.1417589783668518, 0.0516723170876503, 0.030496787279844284,
- -0.1009368821978569, 0.09501724690198898, -0.054841749370098114, 0.07658498734235764,
- 0.0642499253153801, -0.0980217233300209, 0.11315076798200607, -0.08411990106105804,
- -0.024433618411421776, 0.09003736078739166, -0.06840243190526962, 0.005166459828615189,
- -0.08341659605503082, 0.03229106590151787, 0.04372165724635124, 0.03959008306264877,
- 0.030478492379188538, 0.16127093136310577, -0.11176537722349167, 0.05514882504940033,
- -0.0696583092212677, -0.038068417459726334, -0.04233646020293236, -0.014458679594099522,
- 0.07810474932193756, 0.05833445116877556, -0.07169822603464127, 0.03215742111206055,
- -0.00429256958886981, 0.017262810841202736, -0.08443937450647354, -0.11848586797714233,
- -0.05021898075938225, -0.09122537821531296, -0.021052928641438484, -0.06529814749956131,
- -0.049549542367458344, -0.04115739092230797, -0.006849644239991903,
- -0.08875665068626404, 0.020462341606616974, 0.020246002823114395, -0.15549153089523315,
- 0.008201433345675468, -0.027134649455547333, 0.07848160713911057, -0.041060712188482285,
- -0.05416480451822281, -0.010459876619279385, 0.06374210864305496, 0.06290631741285324,
- -0.006343104410916567, 0.02259484864771366, -0.07197638601064682, 0.021867502480745316,
- -0.13873401284217834, -0.3195890486240387, 0.02858257107436657, 0.03372884914278984,
- 0.026912035420536995, 0.060116805136203766, -0.10886316746473312, 0.10106772184371948,
- -0.01830720528960228, -0.09277886152267456, 0.07380004972219467, -0.030942369252443314,
- 0.012426100671291351, -0.08070676028728485, -0.0986223816871643, -0.004911798983812332,
- 0.0009416817920282483, -0.07428211718797684, 0.030160611495375633,
- -0.027918552979826927, -0.011183218099176884, -0.16417065262794495, 0.02051430754363537,
- -0.003664038609713316, 0.05545361340045929, -0.01802879571914673, 0.029279159381985664,
- -0.005916121881455183, -0.03288588672876358, 0.027665747329592705, 0.08141173422336578,
- 0.08528819680213928, -0.08490718901157379, -0.02306046523153782, 0.08378074318170547,
- 0.09020776301622391, 0.12942476570606232, 0.008114135824143887, 0.013906278647482395,
- -0.06268112361431122, 0.10450152307748795, 0.04511707276105881, 0.17580652236938477,
- -0.0541694276034832, 0.026079710572957993, -0.026859305799007416, 0.12696348130702972,
- 0.10672551393508911, 0.008269625715911388, -0.0033229151740670204, 0.014479958452284336,
- -0.03313536196947098, -0.017180634662508965, 0.08898856490850449, -0.09245766699314117,
- -0.035573601722717285, -0.0515875443816185, 0.03601314127445221, 0.004697051830589771,
- -0.026270518079400063, 0.25128042697906494, 0.036409635096788406, 0.029574120417237282,
- 0.08236371725797653, -0.06347663700580597, -0.0017356510506942868, -0.1278507560491562,
- -0.018602710217237473, 0.03339771553874016, -0.011762112379074097, 0.004500369541347027,
- -0.07920146733522415, -0.11861732602119446, -0.09326666593551636, 0.02455500140786171,
- -0.04396567493677139, 0.12399803847074509, -0.0073228562250733376, 0.04509443789720535,
- -0.010387303307652473, 0.10240178555250168, 0.06972959637641907, -0.0706125870347023,
- 0.07055987417697906, 0.1319609135389328, 0.010660851374268532, 0.10660967975854874,
- 0.024635687470436096, -0.15885630249977112, -0.07995428144931793, 0.1864248514175415,
- -0.037180282175540924, 0.103951595723629, 0.06906357407569885, -0.001674804836511612,
- -0.09945666044950485, 0.1029236689209938, -0.060555968433618546, -0.0465582050383091,
- -0.4868249297142029, -0.012453533709049225, 0.07065407186746597, -0.04936012998223305,
- -0.04474729672074318, 0.05359965190291405, 0.09487483650445938, -0.011262997053563595,
- -0.06382554769515991, -0.06365072727203369, 0.18196742236614227, -0.022015627473592758,
- 0.04338860139250755, -0.08321981132030487, 0.0725117176771164, 0.11346332728862762,
- -0.039495501667261124, 0.027779968455433846, 0.043360404670238495, -0.2314334511756897,
- -0.007804501801729202, -0.042339444160461426, 0.14639787375926971, 0.024919705465435982,
- 0.049041010439395905, 0.07252691686153412, -0.05693487077951431, 0.001634927000850439,
- 0.10720247030258179, 0.038076385855674744, 0.03669033199548721, -0.0702696368098259,
- -0.004914675839245319, 0.10004516690969467, 0.14452697336673737, -0.02673281356692314,
- 0.03225197270512581, 12.552226066589355, 0.11059500277042389, 0.08582516014575958,
- -0.1166156679391861, 0.023901622742414474, -0.04329415410757065, 0.024155952036380768,
- -0.15262947976589203, 0.020425664260983467, 0.15220996737480164, -0.03902403637766838,
- -0.14280357956886292, 0.06743372231721878, -0.14921008050441742, 0.0406954400241375,
- -0.1081344485282898, -0.06052042916417122, -0.07954473048448563, 0.0708685964345932,
- -0.08080901950597763, -0.01838066428899765, 0.0478060282766819, 0.06530646234750748,
- -0.01488335058093071, -0.09736353904008865, 0.043713584542274475, 0.09509257972240448,
- -0.06400660425424576, -0.04352884739637375, 0.03377858176827431, 0.013216458261013031,
- 0.010484257712960243, 0.1037740558385849, -0.000745435303542763, 0.09839817136526108,
- 0.12233016639947891, 0.005985096096992493, 0.12769824266433716, 0.021233616396784782,
- 0.12376242130994797, 0.028721215203404427, 0.034925784915685654, 0.09069832414388657,
- 0.006020459812134504, 0.0280903410166502, 0.05673234909772873, 0.05287892371416092,
- 0.1449017971754074, 0.0123168108984828, 0.0746145024895668, 0.16259288787841797,
- -0.011594748124480247, 0.12970855832099915, 0.04975302517414093, 0.03342638537287712,
- 0.08535206317901611, -0.03909638524055481, -0.15073934197425842, 0.05159725993871689,
- 0.05472162365913391, -0.05625689774751663, 0.10295459628105164, 0.031740881502628326,
- 0.05243935063481331, 0.03470645472407341, 0.04803673177957535, 0.07896283268928528,
- 0.03982337936758995, -0.16696849465370178, -0.1037612184882164, -0.02818397805094719,
- -0.15021474659442902, -0.06069004163146019, 0.13300617039203644, 0.12251406908035278,
- -0.05438529700040817, 0.03885478526353836, -0.07684949040412903, 0.07861139625310898,
- -0.06405914574861526, -0.03595905378460884, 0.06828951835632324, 0.009562558494508266,
- 0.056892186403274536, -0.0023833257146179676, 0.0796932578086853, 0.07181131094694138,
- 0.07940635830163956, -0.006890388671308756, -0.08182262629270554, -0.06637459993362427,
- 0.10124512016773224, -0.01915878802537918, -0.08358902484178543, 0.00799280684441328,
- -0.08301650732755661, 0.0493130199611187, -0.1843409687280655, 0.0285728070884943,
- 0.09503570944070816, -0.15090754628181458, -0.07325316965579987, -0.007266203407198191,
- 0.09026558697223663, 0.02705225721001625, 0.015226336196064949, 0.006521181669086218,
- -0.0188383050262928, 0.047055501490831375, 0.08755140751600266, -0.04841305688023567,
- 0.06427380442619324, 0.11977842450141907, -0.0411018431186676, -0.051315490156412125,
- 0.07347481697797775, -0.042724672704935074, -0.005000239238142967, 0.03294048085808754,
- 0.07708094269037247, -0.1430269479751587, -0.01266088243573904, -0.05761482194066048,
- -0.04468603432178497, 0.001144544454291463, -0.09154020249843597, -0.01831655018031597,
- 0.06125061213970184, -0.08263086527585983, -0.048039719462394714, 0.03490148484706879,
- 0.09994472563266754, 0.14019347727298737, 0.0038269851356744766, 0.10928849130868912,
- -0.09150583297014236, -0.135403111577034, -0.008234595879912376, 0.02072315663099289,
- 0.07001934945583344, -0.06334664672613144, -0.05522910878062248, -0.07535354048013687,
- -0.14079107344150543, 0.016108959913253784, 0.20259037613868713, 0.032530080527067184,
- 0.0636204406619072, 0.04250570386648178, -0.16058234870433807, -0.03628009557723999,
- 0.1264144331216812, 0.1808062195777893, 0.011969861574470997, 0.0336255207657814,
- -0.0016834760317578912, -0.0803685262799263, 0.12433731555938721, -0.061285071074962616,
- -0.031124388799071312, -0.06241801753640175, -0.008367547765374184, 0.1167249009013176,
- 0.10397108644247055, 0.03682314231991768, 0.07158471643924713, 0.07082745432853699,
- 0.060977425426244736, 0.11166457831859589, 0.004687711596488953, -0.008974308148026466,
- -0.004070403054356575, -0.08287639170885086, -0.08343806117773056, 0.03735359013080597,
- 0.06813059747219086, 0.055146411061286926, -0.1273132860660553, -0.003824908984825015,
- -0.14338062703609467
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 273,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 18,
- "similarity": 0.9969910383224487
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 49,
- "similarity": 0.9966568946838379
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 60,
- "similarity": 0.9966256618499756
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Erin Reed"],
- "epoch_date_downloaded": 1660003200,
- "epoch_date_modified": 1660003200,
- "epoch_date_submitted": 1660003200,
- "flag": null,
- "report_number": 1856,
- "source_domain": "twitter.com",
- "submitters": ["Ingrid Dickinson (CSET)"],
- "title": "Tweet: @ErinInTheMorn",
- "url": "https://twitter.com/ErinInTheMorn/status/1342138086751404034"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "virginia-courts",
- "name": "Virginia courts"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "virginia-department-of-criminal-justice-services",
- "name": "Virginia Department of Criminal Justice Services"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "virginia-young-offenders",
- "name": "Virginia young offenders"
- },
- {
- "__typename": "Entity",
- "entity_id": "virginia-convicted-felons",
- "name": "Virginia convicted felons"
- },
- {
- "__typename": "Entity",
- "entity_id": "virginia-black-offenders",
- "name": "Virginia Black offenders"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1859, 1857],
- "vector": [
- -0.043150633573532104, 0.09612280130386353, -0.001022400101646781, -0.06840487569570541,
- 0.06893602013587952, -0.028031980618834496, -0.009853096678853035, 0.0459645614027977,
- 0.07587253302335739, -0.14849239587783813, -0.025227343663573265, 0.01898745633661747,
- 0.04636085033416748, -0.0733858197927475, 0.04576195776462555, -0.08184067904949188,
- -0.12625329196453094, -0.03268131986260414, 0.0010771118104457855, -0.0920889750123024,
- -0.08215630799531937, 0.005155322607606649, 0.01004335843026638, 0.08621285855770111,
- -0.05186446011066437, 0.03340572118759155, 0.10037611424922943, 0.08441096544265747,
- -0.03224872797727585, 0.05993420630693436, -0.021715790033340454, -0.06830202043056488,
- 0.12458160519599915, -0.0035935346968472004, -0.006262240931391716, 0.09506186842918396,
- 0.03202318027615547, -0.03402622044086456, -0.04481698200106621, -0.0336192287504673,
- 0.050793640315532684, 0.2892836630344391, -0.013489860109984875, -0.01207925844937563,
- 0.047590918838977814, -0.009338987991213799, 0.031599968671798706, 0.014242878183722496,
- -0.019623856991529465, 0.03519529849290848, 0.007664578966796398, 0.029186904430389404,
- -0.03730522468686104, -0.004211582243442535, -0.10368139296770096, 0.016155313700437546,
- 0.013997392728924751, 0.020961154252290726, 0.04380635544657707, -0.0943075641989708,
- -0.025138309225440025, -0.18905535340309143, -0.017833948135375977,
- -0.07955576479434967, 0.10155825316905975, -0.0666123777627945, -0.035799454897642136,
- 0.013587291352450848, 0.01698525995016098, 0.04383396357297897, 0.05222379416227341,
- -0.03671110421419144, 0.00407362962141633, 0.0077828881330788136, -0.013568857684731483,
- -0.027970436960458755, -0.025012630969285965, 0.22769391536712646, -0.05525272339582443,
- 0.03241191804409027, 0.07129999250173569, -0.05426869913935661, 0.3554004430770874,
- 0.042403943836688995, -0.055984240025281906, -0.011963560245931149, 0.09925680607557297,
- 0.07215797901153564, 0.04063308238983154, 0.026962123811244965, -0.011310175992548466,
- 0.06560589373111725, -0.034977931529283524, -0.03253958001732826, 0.05411840230226517,
- 0.02157409116625786, 0.0009455028921365738, -0.02519010193645954, -0.031664542853832245,
- -0.05611924082040787, -0.028242364525794983, -0.03907881677150726, 0.07632802426815033,
- 0.055328119546175, -0.05687873810529709, 0.016851939260959625, 0.11052127182483673,
- -0.003380262292921543, 0.04290906712412834, -0.02324042096734047, 0.05351140722632408,
- 0.05717356503009796, 0.06381259858608246, 0.012782699428498745, -0.00931080523878336,
- -0.02499534748494625, 0.013773798942565918, 0.02334504947066307, 0.0708986297249794,
- 0.0356961190700531, 0.0028006662614643574, 0.0676352009177208, 0.11650475859642029,
- -0.05873700976371765, -0.062290459871292114, -0.0163353830575943, -0.031073931604623795,
- -0.04057659953832626, -0.013489981181919575, 0.03913940489292145, -0.02220892161130905,
- -0.10872355848550797, 0.0003656521439552307, 0.08144235610961914, -0.03816871717572212,
- -0.025291934609413147, -0.010125922039151192, -0.035098664462566376,
- 0.041908860206604004, -0.010054988786578178, 0.027703775092959404, 0.044323232024908066,
- 0.04269779473543167, -0.005000188015401363, 0.09877647459506989, 0.050327472388744354,
- -0.05777766555547714, -0.03956351429224014, 0.012670880183577538, -0.03456627577543259,
- 0.12145096808671951, -0.10008217394351959, -0.06499149650335312, -0.010944485664367676,
- -0.04499553516507149, 0.6337532997131348, 0.08498872816562653, 0.1388702690601349,
- -0.0031947284005582333, -0.05943940579891205, 0.15775704383850098, 0.03939654678106308,
- 0.05028489977121353, -0.0552712008357048, -0.0035811467096209526, 0.01680414006114006,
- -0.03883899375796318, -0.06038535758852959, 0.04157954454421997, 0.03617570549249649,
- 0.08355627954006195, 0.01098139863461256, 0.07372404634952545, 0.00886173453181982,
- -0.07850760966539383, -0.05078791081905365, 0.0591316744685173, -0.01051373966038227,
- -0.11318826675415039, 0.004025577567517757, 0.05680830776691437, 0.06078001856803894,
- -0.08360710740089417, 0.027857672423124313, -0.05165883153676987, 0.03842035308480263,
- -0.014749031513929367, 0.0383453294634819, -0.017499811947345734, 0.04183946177363396,
- 0.06985144317150116, 0.04323641210794449, -0.021166248247027397, -0.10049723088741302,
- -0.025455866008996964, 0.08237294852733612, -0.027161363512277603,
- -0.007460898719727993, 0.08116988837718964, -0.10115569829940796, 0.024805359542369843,
- -0.04705195873975754, 0.1755194067955017, -0.1210310310125351, 0.00827048160135746,
- -0.01973583549261093, -0.020307911559939384, 0.07350411266088486, 0.02205745130777359,
- -0.057608358561992645, -0.03432224318385124, 0.07364121079444885, 0.04475492238998413,
- 0.10615704953670502, 0.008084007538855076, -0.03450464457273483, 0.03159163147211075,
- 0.06014552712440491, 0.022605080157518387, -0.06381408870220184, 0.06135193258523941,
- 0.06252457946538925, -0.038201767951250076, -0.013528760522603989, 0.05407429113984108,
- 0.006314188241958618, 0.028298836201429367, 0.02043110877275467, 0.009661929681897163,
- 0.012072840705513954, -0.03881002590060234, 0.030613016337156296, 0.042110029608011246,
- 0.03405394405126572, 0.07100728154182434, -0.05564180016517639, -0.03701447322964668,
- -0.03274168446660042, -0.05818500369787216, 0.010465381667017937, -0.04220949858427048,
- 0.04828346520662308, 0.09715422987937927, 0.07965926826000214, 0.010648851282894611,
- 0.07277078926563263, 0.02455497533082962, 0.015168472193181515, 0.055965304374694824,
- 0.04326798766851425, -0.025746271014213562, -0.03844278305768967, 0.018398109823465347,
- -0.011339224874973297, 0.04858953505754471, -0.02266252413392067, -0.06943921744823456,
- -0.02432510070502758, -0.09001567959785461, -0.04494664818048477, -0.06172243505716324,
- -0.05927172303199768, 0.00043065566569566727, 0.034902602434158325,
- -0.06762012094259262, -0.0588957816362381, -0.07013659924268723, 0.016762951388955116,
- 0.05893303081393242, -0.04980641230940819, -0.009160131216049194, -0.09258745610713959,
- -0.0023658289574086666, -0.005227057728916407, 0.0318303257226944,
- -0.0068557653576135635, 0.011783676221966743, 0.004075918346643448, -0.0847923532128334,
- 0.018368713557720184, -0.004463979043066502, -0.05672329664230347, -0.01677951216697693,
- -0.058722250163555145, -0.05197630822658539, -0.012277787551283836,
- 0.008103843778371811, -0.0660553127527237, 0.036320529878139496, 0.04252926632761955,
- 0.0483471155166626, -0.031925346702337265, -0.04482531175017357, 0.06482900679111481,
- -0.01934472844004631, -0.0032928111031651497, 0.09283889830112457, -0.05119738727807999,
- 0.017654933035373688, -0.03508525341749191, -0.04428786411881447, -0.07167335599660873,
- -0.0185204166918993, -0.023729141801595688, 0.027260512113571167, -0.023387819528579712,
- -0.02201937884092331, -0.0005904741701669991, 0.02277633175253868, 0.012119779363274574,
- -0.058567482978105545, -0.10935419797897339, -0.09474000334739685, 0.10225094854831696,
- -0.0075987414456903934, -0.02224752865731716, 0.005780021660029888,
- -0.045940957963466644, 0.01661093719303608, 0.009901167824864388, 0.02731580287218094,
- 0.026319216936826706, 0.0708874762058258, 0.017016801983118057, 0.020512204617261887,
- 0.055037081241607666, -0.02817164547741413, 0.016903439536690712, 0.06698606163263321,
- 0.4103742241859436, -0.09891332685947418, 0.07787451148033142, 0.09005726873874664,
- 0.02966175228357315, 0.046140048652887344, -0.07020337879657745, 0.05905476212501526,
- 0.05265500396490097, 0.12423481792211533, 0.13713160157203674, -0.033280957490205765,
- 0.012940989807248116, -0.036584943532943726, 0.08186814188957214, 0.0052342102862894535,
- 0.03114691935479641, -0.01857878267765045, -0.0738925039768219, -0.015088673681020737,
- 0.018919844180345535, -0.030315589159727097, 0.05236734077334404, -0.017018796876072884,
- -0.04343544691801071, 0.0017011022428050637, -0.005016345996409655,
- -0.01937945745885372, -0.020561546087265015, 0.0372324138879776, -0.05170513689517975,
- 0.08096006512641907, 0.0022723288275301456, 0.026688534766435623, -0.09518393129110336,
- 0.020338792353868484, -0.07732485979795456, -0.07934290915727615, 0.09053486585617065,
- 0.01179446280002594, 0.020957089960575104, 0.08430160582065582, -0.06296377629041672,
- 0.026395270600914955, 0.0069944122806191444, -0.05442667752504349, 0.011411397717893124,
- 0.02226991020143032, 0.02479543536901474, -0.004943558480590582, 0.1533840149641037,
- 0.009230535477399826, 0.0074983322992920876, -0.12657593190670013, 0.06128678470849991,
- 0.12105078995227814, -0.004334708675742149, 0.0073855482041835785,
- -0.0046859849244356155, 0.010463109239935875, 0.014727307483553886,
- -0.04617442563176155, -0.06593240797519684, -0.017822928726673126, -0.07096722722053528,
- 0.09896013885736465, 0.024095162749290466, -0.024000465869903564, -0.04380224272608757,
- -0.012212726287543774, -0.026405010372400284, 0.046986017376184464, 0.08353617787361145,
- -0.0640169009566307, 0.051191240549087524, 0.0005302303470671177, 0.00870694313198328,
- 0.029002118855714798, -0.06703263521194458, 0.02649356611073017, -0.03171684220433235,
- 0.02674969658255577, 0.04236844182014465, 0.04007194563746452, -0.038605947047472,
- 0.09540776908397675, -0.08344689011573792, 0.03865105286240578, -0.009395642206072807,
- -0.051276955753564835, 0.017437079921364784, -0.024596570059657097, 0.0426798090338707,
- 0.002656499855220318, -0.0025499463081359863, -0.026105443015694618,
- -0.03434145078063011, -0.030959343537688255, -0.07736170291900635, -0.09213581681251526,
- -0.016172833740711212, -0.07034581154584885, 0.048453789204359055, -0.10541541874408722,
- -0.03450974076986313, -0.07686968147754669, -0.03219756856560707, -0.012746328487992287,
- 0.015542954206466675, 0.009453083388507366, -0.10992921888828278, 0.01131353061646223,
- 0.001389848068356514, 0.08065200597047806, -0.02452518604695797, -0.0653122216463089,
- 0.014990366995334625, 0.088557168841362, 0.011740955524146557, -0.029601361602544785,
- -0.00047791004180908203, -0.05893586575984955, 0.05804785341024399,
- -0.10644404590129852, -0.3016330897808075, 0.09017625451087952, 0.009304137900471687,
- 0.06027442216873169, 0.02554911933839321, -0.0900270864367485, 0.024399803951382637,
- 0.02162269502878189, -0.01789647340774536, 0.044608790427446365, -0.0370246060192585,
- 0.017190180718898773, -0.012866792269051075, -0.06778641790151596, -0.02329649031162262,
- -0.04058482497930527, -0.011691435240209103, 0.019504278898239136,
- -0.018443645909428596, -0.08196491003036499, -0.09174688905477524, 0.02038823813199997,
- -0.03186735883355141, 0.00949208065867424, 0.04268380254507065, 0.018837425857782364,
- -0.05374398082494736, -0.06279461085796356, 0.04349678382277489, 0.06942163407802582,
- 0.025779424235224724, -0.051737479865550995, 0.0023567751049995422, 0.03496819734573364,
- 0.010698402300477028, 0.08100348711013794, -0.002227176446467638, 0.0034762066788971424,
- -0.07261990010738373, 0.07573936879634857, 0.030462924391031265, 0.18812519311904907,
- -0.0066149127669632435, 0.010693034157156944, 0.010862374678254128, 0.12130974233150482,
- 0.06356281787157059, 0.008939004503190517, -0.0030260453931987286,
- -0.007705171592533588, 0.00446027098223567, 0.0015979609452188015, 0.09074212610721588,
- -0.06622495502233505, 0.008940322324633598, -0.048460908234119415, -0.01145154144614935,
- -0.03237081319093704, -0.02992984652519226, 0.19589278101921082, 0.0039763799868524075,
- 0.018010519444942474, 0.04772591590881348, -0.05214684456586838, -0.05013088881969452,
- -0.08358418196439743, -0.051408231258392334, -0.029302354902029037,
- -0.007883099839091301, 0.014342154376208782, -0.03554040938615799, -0.10867922753095627,
- -0.03324522078037262, -0.009073194116353989, 0.012358775362372398, 0.0943894237279892,
- -0.016238637268543243, -0.006369238719344139, -0.04293333739042282, 0.1173187792301178,
- 0.013594280928373337, -0.008446277119219303, 0.05237278342247009, 0.07013963162899017,
- 0.027262002229690552, 0.032830752432346344, -0.024815494194626808, -0.07839056849479675,
- -0.003128964453935623, 0.11579246819019318, -0.021947670727968216, 0.06609298288822174,
- 0.039517082273960114, -0.018837999552488327, -0.05512991547584534, 0.03653458505868912,
- -0.005379953421652317, -0.014515915885567665, -0.44108596444129944,
- -0.04101646691560745, 0.0997326448559761, 0.01900457963347435, 0.011536831967532635,
- 0.06814870983362198, 0.0037107940297573805, -0.04693334177136421, 0.046164121478796005,
- -0.08901084959506989, 0.09628495573997498, 0.044952332973480225, 0.08311721682548523,
- -0.09567715972661972, 0.03709806129336357, 0.06841172277927399, -0.027304470539093018,
- 0.029740000143647194, 0.04930582270026207, -0.22259783744812012, 0.016127947717905045,
- -0.03416471183300018, 0.08675739914178848, 0.03874283656477928, 0.02455509640276432,
- 0.07492249459028244, -0.07591278851032257, 0.008077663369476795, 0.05720239505171776,
- 0.0015732115134596825, 0.059174153953790665, -0.032989680767059326,
- -0.005396419204771519, 0.10381901264190674, 0.08112038671970367, 0.08156159520149231,
- 0.025856338441371918, 11.887680053710938, 0.03394708037376404, 0.05135209858417511,
- -0.06758634001016617, 0.008188634179532528, -0.06351171433925629, 0.028369981795549393,
- -0.12440352141857147, 0.05405402183532715, 0.10838115215301514, -0.0007641087286174297,
- -0.08998844027519226, -0.02660716325044632, -0.08577689528465271, 0.03382256254553795,
- -0.051373377442359924, -0.062287457287311554, -0.0006793775246478617,
- 0.05735667049884796, -0.06241891160607338, -0.0008085607551038265,
- 0.0011240681633353233, 0.06759459525346756, 0.02025528810918331, -0.04804525151848793,
- 0.009842155501246452, 0.016724571585655212, -0.01751747354865074, 0.017554255202412605,
- 0.01678694784641266, -0.01958402805030346, 0.000558558851480484, 0.09097900986671448,
- 0.013122701086103916, 0.02623935230076313, 0.045644327998161316, 0.051852937787771225,
- 0.0390545129776001, 0.0012172816786915064, 0.07482932507991791, 0.02629370056092739,
- 0.033916175365448, 0.03320605307817459, 0.01135580986738205, 0.05600734055042267,
- 0.09494032710790634, 0.036478739231824875, 0.11294788867235184, 0.032356612384319305,
- 0.07038609683513641, 0.08303822576999664, 0.009883243590593338, 0.1038321703672409,
- -0.011364135891199112, 0.0007242815918289125, 0.0031620708759874105,
- 0.03200552612543106, -0.06405605375766754, 0.04911189526319504, 0.00996686052531004,
- -0.04205358400940895, 0.16295547783374786, 0.011920733377337456, 0.08903712779283524,
- 0.04249255731701851, 0.06774605810642242, 0.09218855202198029, 0.031578171998262405,
- -0.12064099311828613, -0.0592968687415123, 0.020592451095581055, -0.09492364525794983,
- -0.08078088611364365, 0.11748319119215012, 0.058793824166059494, -0.015905017033219337,
- 0.06943875551223755, -0.007386338897049427, 0.013941819779574871, -0.04080365598201752,
- -0.007755625061690807, 0.037637483328580856, -0.03702784329652786,
- -0.019978806376457214, 0.06131027638912201, 0.02926243096590042, 0.010391630232334137,
- 0.10754718631505966, -0.00242088595405221, -0.10296352207660675, -0.087171271443367,
- 0.057329948991537094, -0.0006545186042785645, -0.042604394257068634,
- 0.04168495535850525, -0.05266505107283592, 0.04293687269091606, -0.1516406536102295,
- 0.05858072638511658, 0.11825650930404663, -0.11390047520399094, -0.01552737969905138,
- -0.022482413798570633, 0.06567584723234177, 0.024031829088926315, 0.044350557029247284,
- -0.05261976271867752, 0.013682663440704346, 0.024138811975717545, 0.022675827145576477,
- -0.03162621706724167, 0.045013315975666046, 0.0605584979057312, -0.036475975066423416,
- 0.004869580268859863, 0.06185341626405716, -0.015002289786934853, -0.015219330787658691,
- 0.04376935213804245, 0.06894630938768387, -0.06470805406570435, -0.0392904058098793,
- -0.03597068041563034, -0.0016343449242413044, -0.024195155128836632,
- -0.0278110783547163, 0.009303169324994087, 0.034769196063280106, -0.056998640298843384,
- -0.021115245297551155, -0.009302996098995209, 0.08726202696561813, 0.13259539008140564,
- -0.02771126851439476, 0.07989819347858429, -0.04230580851435661, -0.05797690898180008,
- 0.0671379566192627, 0.03168308362364769, 0.068945974111557, -0.04063586890697479,
- -0.024656493216753006, -0.06058654189109802, -0.11442562937736511,
- 0.0006393588846549392, 0.04088585823774338, 0.050840824842453, 0.08374039083719254,
- 0.003140730783343315, -0.03959304466843605, -0.049827221781015396, 0.10683894902467728,
- 0.013535037636756897, -0.015836047008633614, 0.02546599879860878, -0.07294172793626785,
- -0.014139929786324501, 0.09135971963405609, -0.029384639114141464,
- -0.022503741085529327, -0.002508782083168626, -0.08600124716758728, 0.05495816469192505,
- 0.07216835021972656, 0.040364716202020645, 0.021947434172034264, 0.07057678699493408,
- -0.0014065916184335947, 0.02085978537797928, -0.0292033851146698, 0.048671770840883255,
- -0.033100858330726624, -0.05939790979027748, -0.06888314336538315, 0.025483790785074234,
- 0.08296789228916168, 0.08240368962287903, -0.05061948299407959, -0.03586184233427048,
- -0.07181928306818008
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 274,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 40,
- "similarity": 0.9986891150474548
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 11,
- "similarity": 0.9982878565788269
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 186,
- "similarity": 0.9982014298439026
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Andrew Van Dam"],
- "epoch_date_downloaded": 1660003200,
- "epoch_date_modified": 1660003200,
- "epoch_date_submitted": 1660003200,
- "flag": null,
- "report_number": 1859,
- "source_domain": "washingtonpost.com",
- "submitters": ["Khoa Lam"],
- "title": "Algorithms were supposed to make Virginia judges fairer. What happened was far more complicated.",
- "url": "https://www.washingtonpost.com/business/2019/11/19/algorithms-were-supposed-make-virginia-judges-more-fair-what-actually-happened-was-far-more-complicated/"
- },
- {
- "__typename": "Report",
- "authors": ["Megan T. Stevenson", " Jennifer L. Doleac"],
- "epoch_date_downloaded": 1660003200,
- "epoch_date_modified": 1660003200,
- "epoch_date_submitted": 1660003200,
- "flag": null,
- "report_number": 1857,
- "source_domain": "papers.ssrn.com",
- "submitters": ["Ingrid Dickinson (CSET)"],
- "title": "Algorithmic Risk Assessment in the Hands of Humans",
- "url": "https://papers.ssrn.com/sol3/papers.cfm?abstract_id=3489440"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "facebook",
- "name": "Facebook"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "facebook",
- "name": "Facebook"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "facebook-users-sharing-photo-evidence-of-slavery",
- "name": "Facebook users sharing photo evidence of slavery"
- },
- {
- "__typename": "Entity",
- "entity_id": "facebook-users",
- "name": "Facebook users"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1860, 1858],
- "vector": [
- -0.08125777542591095, 0.014659479260444641, 0.01070560421794653, -0.12021209299564362,
- 0.08849836140871048, -0.07609927654266357, 0.00827833078801632, 0.04202874377369881,
- 0.08443258702754974, -0.13532960414886475, -0.013964121229946613, 0.0538981668651104,
- 0.0433121919631958, -0.09460114687681198, 0.022240355610847473, -0.08759666234254837,
- -0.10596965253353119, 0.004279992543160915, -0.03960278257727623, -0.06784825026988983,
- -0.06847803294658661, 0.022719450294971466, 0.09394092112779617, 0.11877738684415817,
- 0.009672557935118675, 0.022307004779577255, 0.10348021984100342, 0.1666833460330963,
- -0.08044347912073135, 0.06354568898677826, -0.016043318435549736, -0.03888705372810364,
- 0.13054969906806946, 0.015852896496653557, 0.0073890695348382, 0.06535249948501587,
- 0.07128030061721802, -0.023475587368011475, -0.03148636966943741, 0.01102813333272934,
- 0.04136822372674942, 0.22773009538650513, -0.02725367620587349, -0.026387441903352737,
- 0.0826471745967865, -0.02465740218758583, 0.03823283314704895, 0.061011698096990585,
- 0.005918615497648716, -0.03942568972706795, 0.00761034619063139, -0.05058949440717697,
- -0.04881145805120468, 0.03430470824241638, -0.047776028513908386, 0.057334378361701965,
- 0.03587198257446289, -0.027592819184064865, 0.05171097069978714, -0.09760630130767822,
- -0.04343578219413757, -0.25720953941345215, -0.07604537904262543, -0.07733228802680969,
- 0.05232510715723038, -0.10102875530719757, -0.033645451068878174, -0.01024734415113926,
- 0.01464302372187376, 0.05195591598749161, 0.0738784521818161, -0.0652005523443222,
- 0.01627308502793312, 0.008011605590581894, -0.02425796166062355, -0.036659784615039825,
- 0.01403729896992445, 0.23731830716133118, -0.090379998087883, 0.018436728045344353,
- 0.09827527403831482, -0.10567886382341385, 0.483007550239563, 0.04409371316432953,
- -0.006419278681278229, 0.02398565784096718, 0.09443291276693344, 0.0009582563652656972,
- 0.021704930812120438, 0.04290441423654556, -0.03678064048290253, 0.09672600030899048,
- -0.04956115782260895, 0.05022197216749191, 0.05055752396583557, 0.04619549959897995,
- -0.0008287949021905661, 0.08045922219753265, -0.04726051539182663,
- -0.057772692292928696, 0.030530788004398346, -0.050439365208148956, 0.15716102719306946,
- 0.0566474050283432, -0.03413878381252289, -0.009639467112720013, 0.0950668677687645,
- -0.02427113987505436, 0.0449676513671875, -0.06567630171775818, 0.02400890737771988,
- 0.030719425529241562, 0.1151748076081276, -0.03250052034854889, 0.04315631464123726,
- -0.05353911966085434, -0.009962701238691807, 0.027811206877231598, 0.07398039102554321,
- 0.042166344821453094, -0.012293662875890732, 0.06985107064247131, 0.11912156641483307,
- -0.04627763479948044, 0.04640805721282959, -0.055426351726055145, -0.07908017933368683,
- -0.007761385291814804, -0.03913800045847893, 0.004722572863101959, -0.0635870099067688,
- -0.19099795818328857, 0.0035598264075815678, 0.052179984748363495, 0.031198976561427116,
- -0.043633513152599335, -0.0037206695415079594, -0.09695778787136078,
- 0.019173815846443176, -0.02246062643826008, -0.018558761104941368, 0.09390980750322342,
- -0.004514150321483612, 0.023657308891415596, 0.0934038907289505, 0.009018827229738235,
- -0.037571851164102554, -0.03948618099093437, -0.01665840484201908, -0.04265674576163292,
- 0.08665768802165985, -0.08441564440727234, -0.03317528963088989, -0.0018301547970622778,
- 0.029222728684544563, 0.6586209535598755, 0.055345967411994934, 0.10954798012971878,
- -0.03257351741194725, 0.02427891083061695, 0.1614449918270111, 0.023154517635703087,
- 0.06180206686258316, -0.04229208454489708, -0.08873593807220459, 0.01480916328728199,
- -0.011493189260363579, -0.02338792383670807, 0.035321060568094254, 0.042478859424591064,
- 0.1113181933760643, 0.013123337179422379, 0.14062033593654633, 0.021778032183647156,
- -0.0834999680519104, -0.04630555957555771, 0.04613969475030899, 0.012219011783599854,
- -0.10317385941743851, -0.029242318123579025, 0.029272066429257393, 0.07687971740961075,
- -0.06640919297933578, 0.020931191742420197, -0.02727460488677025, 0.06734183430671692,
- -0.04454149678349495, 0.046806175261735916, -0.014711499214172363, 0.015093383379280567,
- 0.0518452450633049, 0.05071055516600609, 0.03323636204004288, -0.09606176614761353,
- -0.06523214280605316, 0.11588665843009949, 0.008743404410779476, 0.020612597465515137,
- 0.08316054940223694, -0.08746874332427979, 0.024174392223358154, 0.016551274806261063,
- 0.1399829238653183, -0.13714224100112915, 0.01252449955791235, -0.002389277797192335,
- -0.05052094906568527, 0.0686764270067215, -0.028728099539875984, -0.07859692722558975,
- -0.0669378787279129, 0.04894328489899635, 0.022200947627425194, 0.08364657312631607,
- 0.009063162840902805, -0.03620785102248192, 0.0458119735121727, -0.029099533334374428,
- 0.03355221450328827, -0.07322441041469574, 0.06727099418640137, 0.01861889660358429,
- -0.06187475472688675, -0.03235626220703125, 0.055816613137722015, 0.05076121538877487,
- 0.0624636635184288, -0.033605821430683136, 0.0342123880982399, 0.019328651949763298,
- 0.008345766924321651, 0.06865783035755157, -0.060246579349040985, 0.023384366184473038,
- 0.0750344917178154, -0.1870063841342926, -0.04153629392385483, -0.06340576708316803,
- -0.06353560090065002, 0.021633272990584373, -0.041155532002449036, 0.06073136627674103,
- 0.06033764407038689, 0.09774897992610931, 0.04192613065242767, 0.034692272543907166,
- 0.031992942094802856, 0.006405659019947052, 0.03795899450778961, 0.07519103586673737,
- -0.011094124987721443, -0.06663087010383606, -0.03994516283273697,
- -0.024724487215280533, 0.10285402834415436, 0.06943650543689728, -0.0461767353117466,
- -0.03015046939253807, 0.03639162704348564, -0.05795261263847351, -0.07838748395442963,
- 0.024597909301519394, 0.014759335666894913, 0.03311392664909363, -0.07653367519378662,
- -0.0864681527018547, -0.06363271176815033, -0.008017655462026596, 0.05410332232713699,
- -0.07541738450527191, -0.0367610827088356, -0.08556275069713593, 0.03148636221885681,
- -0.016104266047477722, 0.057950280606746674, -0.027697846293449402, 0.03810729458928108,
- -0.022708114236593246, -0.05557455122470856, -0.021904395893216133, 0.01833905279636383,
- -0.10052450746297836, 0.013797745108604431, -0.08079217374324799, -0.04285692796111107,
- -0.007303355727344751, 0.015351718291640282, 0.007328710053116083, 0.05715511739253998,
- 0.06354019045829773, 0.048703212291002274, 0.0061211250722408295,
- -0.0003695558989420533, 0.08076047897338867, -0.04466383531689644, 0.020109068602323532,
- 0.06992967426776886, 0.000799437053501606, 0.04622235149145126, -0.054062023758888245,
- -0.058903828263282776, -0.09142792224884033, -0.011011157184839249,
- -0.05103679001331329, 0.05713868886232376, -0.015565475448966026, -0.018447138369083405,
- -0.04308154061436653, -0.012724055908620358, 0.06014323979616165, -0.07991808652877808,
- -0.05195413529872894, -0.10760418325662613, 0.11985081434249878, -0.005167772527784109,
- -0.0066901398822665215, 0.033529460430145264, -0.045153290033340454,
- 0.044849686324596405, 0.0194314643740654, 0.03830922767519951, 0.08444905281066895,
- 0.09182057529687881, -0.026976753026247025, 0.06978244334459305, 0.048330165445804596,
- -0.06310899555683136, 0.0621749684214592, 0.06559592485427856, 0.4308774769306183,
- -0.15490078926086426, 0.10497841238975525, 0.05612805485725403, 0.002774694934487343,
- 0.04264754801988602, -0.01749425381422043, 0.08869282901287079, 0.06509674340486526,
- 0.11176683008670807, 0.10871856659650803, -0.04498589038848877, 0.02661111205816269,
- -0.09825477749109268, 0.08717157691717148, 0.038489896804094315, 0.02460845187306404,
- 0.043641097843647, -0.03028658777475357, -0.057359255850315094, 0.03757869824767113,
- -0.06800299882888794, 0.0251895934343338, -0.03921335190534592, -0.06990996748209,
- 0.05321882665157318, 0.05256891995668411, 0.05690673738718033, -0.03790787607431412,
- 0.011111273430287838, -0.015885764732956886, 0.048036880791187286,
- -0.026844583451747894, 0.05614450201392174, -0.041533373296260834, 0.07769807428121567,
- -0.08462557196617126, -0.07573911547660828, 0.06421192735433578, 0.014151517301797867,
- 0.054199621081352234, 0.06842254102230072, -0.022370757535099983, 0.034545108675956726,
- -0.0629449337720871, -0.0500572994351387, 0.005570295732468367, 0.012681412510573864,
- 0.027795517817139626, 0.06819257140159607, 0.18536552786827087, 0.001207113265991211,
- -0.006100156810134649, -0.07197894155979156, 0.07144668698310852, 0.13198760151863098,
- -0.04416637867689133, 0.03633852303028107, -0.0064001064747571945, 0.061977729201316833,
- -0.0007865922525525093, -0.04677675664424896, -0.08499407023191452,
- 0.00014232727698981762, -0.027136344462633133, 0.06206905096769333,
- -0.0026359218172729015, -0.06526987254619598, -0.1021110787987709, -0.0633997917175293,
- -0.052193693816661835, 0.029928993433713913, 0.08701658248901367, -0.03854215145111084,
- -0.016209276393055916, -0.021940816193819046, 0.016541706398129463, -0.0454854816198349,
- -0.08361902832984924, -0.05496685206890106, -0.04875516891479492, 0.05524954944849014,
- 0.09117056429386139, 0.07867631316184998, -0.06438050419092178, 0.05627145990729332,
- -0.10855503380298615, 0.03928040713071823, -0.01022387109696865, -0.01243523508310318,
- 0.030802760273218155, -0.0113622285425663, 0.06683206558227539, -0.015777884051203728,
- -0.05389691889286041, -0.003762689419090748, -0.011723061092197895,
- 0.001154405064880848, -0.10079845786094666, -0.05513719469308853, -0.0407053679227829,
- -0.08075542747974396, 0.08020201325416565, -0.06582209467887878, -0.004920534323900938,
- -0.01910385489463806, -0.011934934183955193, -0.004318747203797102, 0.08069676160812378,
- 0.013759606517851353, -0.14058443903923035, -0.07033173739910126, -0.037981607019901276,
- 0.052804961800575256, -0.02213299460709095, -0.05113540589809418, -0.017369547858834267,
- 0.06897754967212677, 0.049635566771030426, -0.060433465987443924, 0.04883567988872528,
- -0.03772883489727974, 0.041635893285274506, -0.0958477109670639, -0.5133755207061768,
- 0.07161527127027512, 0.009533054195344448, 0.05606763809919357, -0.004506896249949932,
- -0.1279149055480957, 0.028873883187770844, -0.0076894136145710945, -0.0532694086432457,
- 0.054581418633461, -0.02300076186656952, 0.01533287763595581, 0.011900234967470169,
- -0.04685819149017334, -0.0007289622444659472, -0.08851794898509979,
- -0.056816183030605316, 0.02425066940486431, -0.02931106463074684, -0.07434819638729095,
- -0.07106868922710419, 0.013782565481960773, -0.0022153642494231462, 0.01651395484805107,
- -0.0311552956700325, -0.02123611606657505, -0.09800082445144653, -0.08899415284395218,
- 0.02852851152420044, 0.06749602407217026, 0.022650334984064102, -0.06804805994033813,
- -0.056384045630693436, 0.10828235000371933, -0.00012859096750617027,
- 0.10123826563358307, 0.023821810260415077, -0.010492494329810143, -0.08583121001720428,
- 0.05695439875125885, 0.06529079377651215, 0.18380896747112274, -0.05268789082765579,
- 0.0877285748720169, -0.002737141214311123, 0.15074969828128815, -0.019526463001966476,
- 0.024406705051660538, -0.03649647533893585, 0.01271142065525055, -0.016751833260059357,
- -0.032860271632671356, 0.05687175691127777, -0.07621583342552185, 0.00808804016560316,
- -0.03430350124835968, -0.07058726251125336, -0.06054755300283432, -0.013194119557738304,
- 0.19516471028327942, 0.048618610948324203, 0.010200736112892628, -0.0067968303337693214,
- -0.026109449565410614, -0.031450435519218445, -0.1020631343126297, -0.0160239115357399,
- -0.027483167126774788, -0.012406166642904282, -0.0026036228518933058,
- -0.032368339598178864, -0.07116565108299255, -0.031569674611091614,
- -0.0025795702822506428, 0.0015551176620647311, 0.08285246789455414,
- -0.048905543982982635, 0.01032265368849039, -0.024939358234405518, 0.1779833436012268,
- 0.03705908730626106, 0.022187037393450737, 0.06560682505369186, 0.08601880073547363,
- -0.013615784235298634, -0.020352641120553017, -0.044228482991456985,
- -0.04933486133813858, -0.02063608355820179, 0.13346698880195618, -0.061057452112436295,
- 0.1358075886964798, -0.0017257165163755417, -0.05318719521164894, -0.016343949362635612,
- 0.0008340999484062195, -0.013909446075558662, -0.015544848516583443,
- -0.48146528005599976, -0.0218034740537405, 0.15159094333648682, -0.03798498213291168,
- 0.026728641241788864, 0.0708933174610138, 0.03675775229930878, -0.04072759300470352,
- -0.00015368405729532242, -0.08625556528568268, 0.12964145839214325,
- 0.025933124125003815, 0.08123469352722168, -0.1205567866563797, 0.014735606499016285,
- 0.10343845188617706, -0.012795470654964447, -0.007708927616477013,
- -0.017379077151417732, -0.22586199641227722, 0.004849353339523077,
- -0.020871616899967194, 0.19785422086715698, 0.05643361061811447, 0.01667294278740883,
- 0.10922485589981079, -0.055245134979486465, -0.012433893047273159, 0.009729728102684021,
- 0.015318915247917175, 0.04830186814069748, -0.02358725294470787, -0.035542670637369156,
- 0.08029398322105408, 0.0760405957698822, 0.07541625946760178, 0.023260463029146194,
- 12.12849235534668, 0.1175006851553917, 0.10110418498516083, -0.0552026703953743,
- 0.023844387382268906, -0.06331128627061844, 0.006602571811527014, -0.10268541425466537,
- 0.08766413480043411, 0.11240135878324509, -0.03279103711247444, -0.06316283345222473,
- -0.03199505805969238, -0.0712917298078537, 0.004261598456650972, -0.05228281021118164,
- -0.01301395334303379, -0.025552785024046898, 0.03472910076379776, -0.047679610550403595,
- -0.05242258310317993, 0.07003096491098404, 0.10737299919128418, 0.04541898891329765,
- -0.08335533738136292, 0.030878355726599693, -0.022527873516082764,
- -0.016650084406137466, 0.01259684283286333, 0.019742079079151154, 0.03699434921145439,
- 0.021972641348838806, 0.13052183389663696, 0.007136563304811716, 0.027603205293416977,
- 0.05170916020870209, -0.013960801996290684, -0.009732411243021488, 0.020031431689858437,
- 0.059661153703927994, -0.012129965238273144, 0.007120590656995773,
- -0.012074202299118042, 0.0413731187582016, 0.018601756542921066, 0.019169876351952553,
- 0.08467014133930206, 0.1036485880613327, -0.004814177751541138, 0.09065183997154236,
- 0.11217619478702545, 0.010333276353776455, 0.10070276260375977, 0.008912600576877594,
- 0.014225700870156288, 0.06729034334421158, -0.025524601340293884, -0.05519827455282211,
- 0.06861437112092972, 0.054589658975601196, -0.06006547063589096, 0.10243679583072662,
- 0.027589868754148483, 0.11878058314323425, -0.017919503152370453, 0.03192626312375069,
- 0.09475868940353394, 0.07651937007904053, -0.13911695778369904, -0.0794874057173729,
- 0.04795738682150841, -0.08326809853315353, -0.036280371248722076, 0.053839392960071564,
- 0.09587869048118591, -0.027823111042380333, 0.10705690085887909, -0.027814384549856186,
- 0.057851824909448624, -0.03221345692873001, -0.002227199263870716, 0.03383082151412964,
- -0.02832898497581482, 0.02351493202149868, -0.0022482015192508698,
- 0.00042572757229208946, 0.10790463536977768, 0.1554022580385208, -0.014442434534430504,
- -0.10999038815498352, -0.06350624561309814, 0.07515368610620499, 0.008061554282903671,
- -0.04649790748953819, 0.015211014077067375, -0.058658961206674576,
- 0.0077607231214642525, -0.20076629519462585, 0.09961453080177307, 0.16382387280464172,
- -0.08350614458322525, -0.0016909557161852717, 0.002183554694056511, 0.09247113764286041,
- 0.0005657123401761055, 0.0022999057546257973, -0.06318198144435883,
- 0.017840087413787842, 0.04148197919130325, 0.02891319990158081, -0.06858587265014648,
- 0.0887947678565979, 0.08988126367330551, -0.0900799110531807, 0.06381464749574661,
- 0.06353230774402618, 0.005442807916551828, -0.02536671794950962, 0.0463898703455925,
- 0.009578967466950417, -0.128095343708992, -0.07350819557905197, -0.07937610894441605,
- -0.04225362092256546, 0.0017238297732546926, -0.035648465156555176,
- -0.019692737609148026, 0.07218233495950699, -0.05997011065483093, -0.04327508062124252,
- -0.009706270880997181, 0.07044482231140137, 0.12324349582195282, -0.042480356991291046,
- 0.05488845333456993, -0.04195035248994827, -0.008630730211734772, 0.05836566537618637,
- 0.025876007974147797, 0.07987543940544128, -0.035411715507507324, -0.024337604641914368,
- -0.021832477301359177, -0.09000110626220703, -0.0032043512910604477,
- 0.05995076894760132, 0.04556595906615257, 0.07192939519882202, 0.03219805657863617,
- -0.09106885641813278, -0.02922121435403824, 0.07977940142154694, 0.011990930885076523,
- 0.010510999709367752, 0.016494620591402054, -0.06692837178707123, -0.006567664444446564,
- 0.10911335051059723, -0.019426899030804634, -0.030725862830877304,
- -0.001910751685500145, -0.07616455107927322, 0.05674866586923599, 0.012641161680221558,
- 0.09825889766216278, -0.012635216116905212, 0.05069044232368469, -0.014759205281734467,
- 0.026887226849794388, 0.027951382100582123, 0.044246822595596313, -0.08025818318128586,
- -0.11177763342857361, -0.0411851741373539, 0.04900567978620529, 0.05746704712510109,
- 0.07985931634902954, -0.13038192689418793, -0.022916192188858986, -0.05063875764608383
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 275,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 45,
- "similarity": 0.9969086050987244
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 48,
- "similarity": 0.9968265295028687
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 15,
- "similarity": 0.9967586994171143
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Niamh Shackleton"],
- "epoch_date_downloaded": 1660003200,
- "epoch_date_modified": 1660003200,
- "epoch_date_submitted": 1660003200,
- "flag": null,
- "report_number": 1860,
- "source_domain": "unilad.com",
- "submitters": ["Thomas Giallella (CSET)"],
- "title": "Facebook Removes Photo Of Aboriginal Men Used To Prove Racism In Australia",
- "url": "https://www.unilad.com/news/facebook-removes-photo-of-aboriginal-men-used-to-prove-racism-in-australia/"
- },
- {
- "__typename": "Report",
- "authors": ["Tiziana Celine"],
- "epoch_date_downloaded": 1660003200,
- "epoch_date_modified": 1660003200,
- "epoch_date_submitted": 1660003200,
- "flag": null,
- "report_number": 1858,
- "source_domain": "techtimes.com",
- "submitters": ["Thomas Giallella (CSET)"],
- "title": "Facebook Blocks, Bans Users for Sharing Article Showing Aboriginal Men in Chains Over Nudity",
- "url": "https://www.techtimes.com/articles/250337/20200615/facebook-blocks-bans-users-for-sharing-article-showing-aboriginal-men-in-chains-over-nudity.htm"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "bucheon-city-government",
- "name": "Bucheon city government"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "unknown",
- "name": "Unknown"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "bucheon-citizens",
- "name": "Bucheon citizens"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1864],
- "vector": [
- -0.04695592075586319, 0.09978725761175156, 0.029753776267170906, -0.08509582281112671,
- 0.03841114789247513, -0.03684871271252632, -0.003312935819849372, 0.103708416223526,
- 0.10371430963277817, -0.1188802570104599, -0.010715222917497158, 0.061987679451704025,
- 0.04712039604783058, -0.1253628432750702, 0.02138880454003811, -0.08393943309783936,
- -0.08979388326406479, -0.021395854651927948, -0.01774703711271286,
- -0.036122001707553864, -0.10717108100652695, -0.006866841576993465, 0.01864837110042572,
- 0.08044760674238205, -0.08516225218772888, 0.0309197548776865, 0.05499803647398949,
- 0.11893080919981003, -0.05988282710313797, 0.0028189646545797586, -0.03146408498287201,
- -0.04710543528199196, 0.15618155896663666, 0.01597956195473671, -0.03965355083346367,
- 0.0457305945456028, 0.02160097099840641, 0.011634619906544685, 0.05835539475083351,
- -0.004762042313814163, 0.04162130132317543, 0.25313887000083923, -0.025970112532377243,
- 0.0017825845861807466, 0.03646231070160866, -0.046427998691797256,
- -0.004838265478610992, 0.06763441115617752, -0.01950932666659355, 0.03580643981695175,
- -0.002603923436254263, 0.0334801971912384, -0.03419991582632065, 0.0334869809448719,
- -0.06080075353384018, 0.01840614154934883, 0.04960707575082779, 0.027290398254990578,
- 0.006546034011989832, -0.08574726432561874, -0.05056418851017952, -0.2042740285396576,
- -0.02287900261580944, -0.12178900837898254, 0.07826663553714752, -0.09927130490541458,
- -0.1138550415635109, 0.035690002143383026, 0.03077385388314724, 0.07135191559791565,
- 0.0618760846555233, 0.0128432996571064, -0.022193746641278267, 0.030269920825958252,
- 0.002133882837370038, 0.008914378471672535, -0.011575491167604923, 0.11180341988801956,
- -0.09268561005592346, 0.0005597369745373726, 0.10156496614217758, -0.09139224886894226,
- 0.46770456433296204, 0.002753853565081954, 0.0037746229209005833, -0.054071806371212006,
- 0.12194900214672089, 0.032804086804389954, 0.07145140320062637, 0.031281374394893646,
- -0.04157935082912445, 0.035469043999910355, -0.08460883796215057, -0.02654392458498478,
- 0.06268033385276794, 0.06903459131717682, -0.017935428768396378, 0.05679536610841751,
- -0.020923031494021416, -0.06413692235946655, -0.037575945258140564,
- -0.06268610060214996, 0.13460463285446167, 0.06283429265022278, -0.051585953682661057,
- -0.013755220919847488, 0.004281359724700451, -0.07504517585039139, 0.08165118098258972,
- -0.07753552496433258, 0.02774183824658394, -0.019356314092874527, 0.06208418682217598,
- -0.01574833318591118, -0.006155716255307198, -0.05141133815050125,
- 0.0029219533316791058, 0.05470295250415802, 0.08371809124946594, 0.07566443085670471,
- -0.020450733602046967, 0.058304037898778915, 0.047939661890268326, -0.09933440387248993,
- 0.016794105991721153, -0.09449029713869095, -0.04722169041633606, -0.041058678179979324,
- -0.027880573645234108, 0.007682880852371454, 0.0018720304360613227,
- -0.17885766923427582, -0.040441304445266724, 0.08972690999507904, 0.05460278317332268,
- -0.007604349870234728, 0.029415661469101906, -0.0520145446062088, 0.009882299229502678,
- -0.048838935792446136, -0.04597972705960274, 0.09404260665178299, -0.034543346613645554,
- 0.07912082970142365, 0.15557394921779633, 0.014987862668931484, -0.04545474052429199,
- -0.05008377507328987, 0.01688431203365326, -0.004778714384883642, 0.07259991765022278,
- -0.10262095183134079, -0.011182024143636227, 0.05745648965239525, 0.021388519555330276,
- 0.7625270485877991, 0.09298650920391083, 0.2102590799331665, -0.02406824752688408,
- -0.03525678068399429, 0.18166016042232513, 0.015105773694813251, 0.09438961744308472,
- -0.0717289000749588, -0.08345629274845123, 0.04882565513253212, -0.023168200626969337,
- -0.0341191366314888, 0.0045663439668715, 0.04524936527013779, 0.14215143024921417,
- 0.018499301746487617, 0.06456801295280457, -0.05542430654168129, -0.08251139521598816,
- -0.026251008734107018, 0.07132239639759064, 0.042946234345436096, -0.08344148099422455,
- -0.022314896807074547, 0.051114801317453384, 0.10698501765727997, -0.05065605044364929,
- -0.00386435748077929, -0.028323359787464142, 0.09012937545776367,
- -0.0006164922961033881, 0.13177154958248138, -0.028970105573534966,
- 0.050679728388786316, 0.030534854158759117, -0.0018738429062068462, 0.04575984179973602,
- -0.11112862825393677, -0.03257656842470169, 0.08686872571706772, 0.0820736438035965,
- -0.03389273211359978, 0.062010619789361954, -0.09778397530317307, 0.013028171844780445,
- -0.02226169966161251, 0.17244017124176025, -0.12171440571546555, 0.02795388735830784,
- -0.02491598203778267, -0.050877418369054794, 0.013001666404306889, 0.05636359006166458,
- -0.04040449485182762, -0.04146295040845871, -0.013248682022094727, 0.09683791548013687,
- 0.0877588763833046, 0.05966781824827194, 0.03174559772014618, 0.04985798895359039,
- 0.0622546523809433, -0.02047160267829895, -0.01241095270961523, 0.03781864792108536,
- 0.09727916121482849, -0.10104198753833771, 0.03410324454307556, 0.024726832285523415,
- -0.008244932629168034, 0.012840074487030506, -0.022580299526453018,
- 0.029493063688278198, -0.003326344070956111, -0.01987322047352791, 0.026578586548566818,
- 0.015634680166840553, 0.006548126693814993, 0.1494140774011612, -0.04658106341958046,
- -0.007257533725351095, -0.018049271777272224, -0.03254762291908264, 0.06289657205343246,
- -0.05137292295694351, 0.06713801622390747, 0.07134144753217697, 0.0799308642745018,
- 0.05572552606463432, 0.07161827385425568, 0.045388177037239075, -0.005238992162048817,
- 0.07522671669721603, 0.07835325598716736, -0.01210689079016447, -0.057402193546295166,
- -0.03019886091351509, -0.0202478114515543, 0.05569523200392723, 0.0163896344602108,
- -0.11545629799365997, -0.01994621753692627, -0.04186634719371796, -0.1470520794391632,
- -0.07299171388149261, -0.03688556328415871, 0.01958460547029972, 0.051424842327833176,
- -0.0451078824698925, -0.07129425555467606, -0.06476249545812607, 0.017047978937625885,
- 0.1019035279750824, 0.006692351307719946, -0.03365215286612511, -0.11541175097227097,
- 0.037716690450906754, -0.042453691363334656, 0.05308796837925911, -0.011590545065701008,
- 0.0005700387409888208, 0.019056357443332672, 0.00047737531713210046,
- 0.07548487931489944, 0.0012832252541556954, -0.04562719538807869, -0.08344796299934387,
- -0.09726127982139587, -0.0910080224275589, 0.027424437925219536, -0.032051507383584976,
- -0.01451876387000084, 0.0005188360228203237, 0.02131536230444908, 0.05611853301525116,
- -0.027985356748104095, -0.02573452703654766, 0.04239827021956444, -0.007319305557757616,
- -0.03231234848499298, 0.1121414303779602, -0.07820077240467072, 0.037500057369470596,
- -0.018098298460245132, -0.06143680587410927, -0.057118043303489685, 0.07322963327169418,
- -0.06898605078458786, 0.0316239669919014, -0.018883220851421356, -0.016936970874667168,
- -0.0755675658583641, -0.0408722460269928, 0.08531881868839264, -0.06425823271274567,
- -0.037025731056928635, -0.07380528002977371, 0.129030242562294, 0.00840065348893404,
- -0.043203677982091904, 0.03691135719418526, -0.048687439411878586, 0.042548585683107376,
- -0.0020086357835680246, 0.020189274102449417, 0.050606321543455124,
- 0.036225125193595886, -0.016640426591038704, -0.020826412364840508,
- 0.050382040441036224, -0.04042349010705948, 0.0066789682023227215, 0.06390015780925751,
- 0.438761830329895, -0.08275427669286728, 0.08001197129487991, 0.1327689290046692,
- 0.02904157154262066, 0.025941932573914528, -0.019981592893600464, 0.04455084726214409,
- 0.0781155601143837, 0.12491145730018616, 0.13663947582244873, -0.031168460845947266,
- -0.04870574176311493, -0.135108083486557, 0.09786826372146606, 0.0059290677309036255,
- 0.021531302481889725, -0.01694476790726185, -0.12316545099020004, -0.001714292448014021,
- -0.011697941459715366, -0.029419444501399994, 0.02050314098596573,
- -0.009535353630781174, -0.06637129932641983, 0.04358804225921631, -0.005777945276349783,
- 0.03871884569525719, 0.0024999440647661686, 0.03620209917426109, -0.050280943512916565,
- 0.05051139369606972, 0.009519143030047417, 0.01568727381527424, -0.1180284395813942,
- 0.03576396778225899, -0.06191891431808472, -0.0652654618024826, 0.14763811230659485,
- 0.04133881255984306, 0.023784976452589035, 0.1003710925579071, -0.11531972140073776,
- 0.09493589401245117, -0.05020356923341751, -0.02593911439180374, 0.013961371034383774,
- 0.08926326036453247, 0.05022185668349266, 0.1208234503865242, 0.14880329370498657,
- -0.027546647936105728, -0.07355298101902008, -0.09075964242219925, 0.07308037579059601,
- 0.11866254359483719, -0.015209357254207134, 0.05937594175338745, 0.06581126898527145,
- -0.06857369840145111, -0.010077203623950481, -0.07347416132688522,
- -0.027518391609191895, 0.004443454090505838, -0.07721514999866486, 0.05624933913350105,
- 0.00974478479474783, -0.03238478675484657, -0.15310542285442352, 0.029819928109645844,
- -0.021394673734903336, 0.027887605130672455, 0.03974928334355354, -0.03364121541380882,
- 0.07001888751983643, -0.008753971196711063, -0.05942199379205704, 0.004055430181324482,
- -0.0771966278553009, 0.02075042948126793, -0.03441863879561424, 0.02326931245625019,
- -0.0027613944839686155, 0.061718203127384186, -0.026388006284832954,
- 0.07564084976911545, -0.09327799826860428, 0.08530893176794052, -0.029836241155862808,
- -0.046172771602869034, 0.04262878745794296, -0.018534313887357712, 0.026259662583470345,
- 0.003925683908164501, -0.06374281644821167, 0.004716521129012108, 0.009525078348815441,
- -0.06009427085518837, -0.10442861914634705, -0.09540189802646637, 0.002973249414935708,
- -0.06689565628767014, 0.016764838248491287, -0.0593826025724411, 0.023218758404254913,
- 0.007901743985712528, -0.02690337412059307, 0.005705623421818018, 0.024096958339214325,
- 0.02076825685799122, -0.15181665122509003, -0.023806817829608917, 0.022634044289588928,
- 0.03802540525794029, -0.016857407987117767, -0.08946283161640167, 0.047177381813526154,
- 0.1355849653482437, 0.05915939807891846, -0.006558913271874189, -0.00899487268179655,
- -0.0891706570982933, 0.04924716427922249, -0.1430000364780426, -0.4124654531478882,
- 0.035049546509981155, 0.02112986333668232, 0.052677907049655914, -0.001942369737662375,
- -0.16509780287742615, 0.06494522839784622, -0.015184781514108181, -0.05816250666975975,
- 0.058480579406023026, -0.05827862024307251, 0.0034697195515036583, 0.013284759595990181,
- -0.08007973432540894, -0.03843510523438454, -0.06649211794137955, -0.004797688685357571,
- 0.09071595221757889, 0.0007725695031695068, -0.05277562513947487, -0.14083902537822723,
- 0.016584482043981552, -0.050496846437454224, 0.050909366458654404,
- -0.034962959587574005, -0.030775224789977074, -0.06714611500501633,
- -0.02068185992538929, -0.012921934016048908, 0.03376055508852005, 0.016337312757968903,
- -0.03470766916871071, -0.01785728707909584, 0.052980467677116394, -0.08286583423614502,
- 0.10030540823936462, 0.043352801352739334, 0.049088433384895325, -0.11672598123550415,
- 0.076542928814888, 0.048851314932107925, 0.18629124760627747, -0.02198190800845623,
- 0.00690295547246933, -0.027964133769273758, 0.08776212483644485, 0.009001031517982483,
- 0.03811108320951462, -0.039802517741918564, 0.005641607567667961, 0.006861183326691389,
- -0.05623091012239456, 0.09486681967973709, -0.07579810917377472, -0.012134967371821404,
- -0.08792310953140259, 0.015229374170303345, -0.06555970758199692, 0.02632889524102211,
- 0.19086140394210815, 0.03797543793916702, 0.0023034752812236547, 0.01972140371799469,
- -0.08104715496301651, 0.007947754114866257, -0.09332002699375153, -0.13053983449935913,
- -0.023020166903734207, 0.0187189020216465, -0.005541080143302679, -0.08239033818244934,
- -0.11558198928833008, -0.03620914742350578, 0.004815376363694668, 0.018871011212468147,
- 0.07437296211719513, -0.027111118659377098, 0.049586743116378784, -0.026530103757977486,
- 0.08925521373748779, 0.018001096323132515, 0.07494478672742844, 0.030473260208964348,
- 0.1577642560005188, -0.04536424204707146, -0.03700448200106621, -0.04271427169442177,
- -0.09317966550588608, -0.042038220912218094, 0.10551689565181732, -0.05199567228555679,
- 0.11694569885730743, 0.02623005583882332, -0.08503704518079758, -0.0381539911031723,
- 0.03969492390751839, -0.027974804863333702, 0.03770853951573372, -0.4124060273170471,
- 0.03103555366396904, 0.14904072880744934, 0.021382009610533714, -0.02669759839773178,
- 0.08241771161556244, 0.009647917002439499, -0.039620619267225266, 0.004831466358155012,
- -0.06757350265979767, 0.11273191124200821, 0.018717875704169273, 0.052197594195604324,
- -0.06700125336647034, 0.01709495298564434, 0.08078891038894653, -0.05695585161447525,
- -0.0401175282895565, 0.05620836466550827, -0.21277795732021332, 0.00893922708928585,
- -0.05305285006761551, 0.06986439973115921, 0.028093060478568077, 0.047664858400821686,
- 0.10894539952278137, -0.030139390379190445, 0.08184461295604706, 0.035175394266843796,
- 0.0010213046334683895, 0.03821319341659546, -0.04741703346371651, -0.05496475473046303,
- 0.08646219968795776, 0.08414570987224579, 0.05343397706747055, -0.03078610822558403,
- 11.945520401000977, 0.03551352396607399, 0.05421431362628937, -0.1269284337759018,
- -0.035197582095861435, -0.05875830352306366, 0.03770808130502701, -0.06864582002162933,
- 0.05764057859778404, 0.14030461013317108, 0.011866765096783638, -0.08872783929109573,
- -0.003980656154453754, -0.09677601605653763, 0.003338154638186097, -0.03943831846117973,
- -0.07122915983200073, -0.011706776916980743, 0.0299859456717968, -0.05397873371839523,
- -0.03494604304432869, -0.019705791026353836, 0.04714468866586685, 0.05430234968662262,
- -0.06801274418830872, 0.032644275575876236, 0.02409893274307251, 0.027059616521000862,
- -0.012846834026277065, 0.017531782388687134, 0.04301998391747475, 0.00428536394611001,
- 0.062087155878543854, -0.03724178671836853, 0.03610122576355934, -0.005477951839566231,
- 0.05825737118721008, 0.04844221472740173, 0.0373966284096241, 0.07907506078481674,
- 0.03234119340777397, 0.02630644664168358, 0.007706819102168083, 0.10675258189439774,
- 0.057568106800317764, 0.0013050197158008814, 0.07328638434410095, 0.0859404057264328,
- 0.009562160819768906, 0.08101818710565567, 0.09631691873073578, -0.015912162140011787,
- 0.1271580159664154, 0.01659393310546875, 0.016028720885515213, 0.07191786170005798,
- 0.017674941569566727, -0.0710386335849762, 0.057070281356573105, 0.12035465240478516,
- -0.07869410514831543, 0.11242543160915375, 0.002933942247182131, 0.11682610958814621,
- -0.002894672332331538, 0.05968920513987541, 0.07715434581041336, 0.05229548364877701,
- -0.1860412359237671, -0.08267419785261154, -0.02214338630437851, -0.13058653473854065,
- -0.05789368227124214, 0.06837019324302673, 0.031135810539126396, -0.03105165623128414,
- 0.062305402010679245, -0.05636722221970558, 0.05582619830965996, -0.015761544927954674,
- -0.029794182628393173, 0.053307510912418365, -0.03839454427361488, 0.04259900376200676,
- 0.07117804139852524, 0.039468247443437576, 0.10360940545797348, 0.08734826743602753,
- -0.04192652180790901, -0.05067136511206627, -0.059384044259786606, 0.12061373889446259,
- -0.07247517257928848, -0.06990451365709305, -0.012705259956419468, 0.023471198976039886,
- 0.009586306288838387, -0.17387248575687408, 0.07521538436412811, 0.11145424842834473,
- -0.054841648787260056, 0.025057250633835793, -0.034599121659994125, 0.05286381021142006,
- 0.03366953879594803, 0.06435822695493698, -0.004442386794835329, -0.024434572085738182,
- 0.03422394394874573, 0.02063494548201561, -0.027400722727179527, 0.11194423586130142,
- 0.0851670652627945, -0.07064608484506607, 0.03310784697532654, 0.0488479919731617,
- 0.01306896097958088, -0.026127830147743225, 0.05974850431084633, 0.05398039519786835,
- -0.06752905994653702, -0.05116429924964905, -0.012890687212347984, -0.03263948857784271,
- -0.03961427882313728, -0.045105744153261185, 0.003087345277890563, 0.041742295026779175,
- -0.08914525806903839, -0.02038118615746498, 0.006999640725553036, 0.06125590577721596,
- 0.07750806212425232, -0.033703237771987915, 0.034997932612895966, -0.04634619131684303,
- -0.06040990725159645, 0.05301905423402786, 0.09431543946266174, 0.054965272545814514,
- -0.023929739370942116, -0.05483202263712883, -0.050379231572151184,
- -0.07482019811868668, 0.04088339954614639, 0.12204375863075256, 0.08157844096422195,
- 0.07154723256826401, 0.035260286182165146, -0.06495559960603714, -0.05378548055887222,
- 0.10863486677408218, 0.0741814523935318, 0.09121206402778625, 0.0315251387655735,
- -0.08931080996990204, -0.028973650187253952, 0.1123497262597084, -0.05879228934645653,
- -0.013017220422625542, 0.004633457865566015, -0.006804852280765772, 0.11788931488990784,
- 0.1129116415977478, 0.12676586210727692, 0.03764886036515236, 0.06073705852031708,
- 0.016286741942167282, -0.011382613331079483, -0.038352612406015396, 0.0217856727540493,
- -0.04078112170100212, -0.16610336303710938, -0.07612963765859604, -0.004727679304778576,
- 0.07400711625814438, -0.04631077125668526, -0.01659836247563362, -0.055913545191287994,
- -0.07768017798662186
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 276,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 36,
- "similarity": 0.9962366223335266
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 45,
- "similarity": 0.9962146878242493
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 23,
- "similarity": 0.9961634278297424
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Sangmi Cha"],
- "epoch_date_downloaded": 1660003200,
- "epoch_date_modified": 1660003200,
- "epoch_date_submitted": 1659916800,
- "flag": null,
- "report_number": 1864,
- "source_domain": "reuters.com",
- "submitters": ["Sonali Pednekar (CSET)", "AIAAIC"],
- "title": "S. Korea to test AI-powered facial recognition to track COVID-19 cases",
- "url": "https://www.reuters.com/world/asia-pacific/skorea-test-ai-powered-facial-recognition-track-covid-19-cases-2021-12-13/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "15.ai",
- "name": "15.ai"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "15.ai",
- "name": "15.ai"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "15.ai-users",
- "name": "15.ai users"
- },
- {
- "__typename": "Entity",
- "entity_id": "15.ai",
- "name": "15.ai"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1865],
- "vector": [
- -0.07096831500530243, 0.06984604895114899, 0.011568255722522736, -0.1430710256099701,
- 0.05272785574197769, -0.011006161570549011, 0.026999663561582565, 0.06455717235803604,
- 0.11407892405986786, -0.16830645501613617, -0.019752349704504013, 0.07274167239665985,
- 0.04192648082971573, -0.04649542272090912, 0.010546253994107246, -0.09272077679634094,
- -0.10297361016273499, -0.0016384788323193789, -0.08524051308631897,
- -0.12705697119235992, -0.05132777616381645, 0.0178525373339653, 0.09206335246562958,
- 0.15509653091430664, -0.06480173021554947, -0.006029306910932064, 0.10543444007635117,
- 0.1434972584247589, -0.09308473765850067, 0.04655388742685318, -0.03283103182911873,
- -0.02628154866397381, 0.1381859928369522, 0.02289397269487381, 0.003430841024965048,
- 0.11370524764060974, 0.03944873809814453, -0.04380553588271141, -0.05293012037873268,
- -0.02286442741751671, 0.022227739915251732, 0.20249290764331818, -0.032740771770477295,
- -0.041474174708127975, 0.06537813693284988, -0.052378229796886444, 0.03320813551545143,
- 0.023219920694828033, -0.037330202758312225, -0.046796638518571854,
- 0.008789234794676304, -0.06493957340717316, -0.030242247506976128, 0.04726423695683479,
- -0.08080274611711502, 0.05962298437952995, 0.05475686490535736, 0.0009031427907757461,
- 0.017669502645730972, -0.10090953856706619, 0.03503762558102608, -0.15408240258693695,
- -0.08210507035255432, -0.09822600334882736, 0.08081842213869095, -0.08071249723434448,
- -0.08075300604104996, 0.06360507011413574, 0.010878512635827065, 0.04802917316555977,
- 0.025626419112086296, -0.04164331778883934, -0.01970868743956089, -0.009922264143824577,
- -0.014517242088913918, -0.053039148449897766, 0.03496836870908737, 0.22667185962200165,
- -0.06284690648317337, -0.014240136370062828, 0.12290451675653458, -0.14992880821228027,
- 0.3834794759750366, 0.009815133176743984, -0.025250645354390144, 0.0539274625480175,
- 0.09163384884595871, 0.02438396029174328, 0.008504289202392101, 0.008607529103755951,
- 0.014515752904117107, 0.05216861516237259, -0.022510429844260216, 0.020635265856981277,
- 0.04699133336544037, -0.002500874223187566, -0.007677256129682064, 0.0452285073697567,
- -0.018152838572859764, -0.07650677114725113, 0.05766187235713005, -0.02511112205684185,
- 0.15160061419010162, 0.09781473129987717, -0.04889482632279396, -0.016336651518940926,
- 0.06512418389320374, -0.07232428342103958, 0.02590082213282585, -0.07919327169656754,
- 0.00748467305675149, 0.024878939613699913, 0.10512726753950119, -0.01970733143389225,
- 0.05902881175279617, -0.07390615344047546, -0.02714390680193901, 0.02784896269440651,
- 0.0722518116235733, 0.03280472755432129, -0.021203618496656418, 0.06263969838619232,
- 0.04971514269709587, -0.059568725526332855, 0.026772871613502502, 0.009623152203857899,
- -0.0775432139635086, -0.011882878839969635, 0.010211454704403877, 0.018492061644792557,
- -0.046352632343769073, -0.2224348485469818, 0.04299619793891907, 0.03350042551755905,
- -0.005555343814194202, -0.03923140838742256, 0.03316721320152283, -0.09097021818161011,
- 0.05560838058590889, -0.029815034940838814, -0.0400453619658947, 0.03390694782137871,
- 0.034699976444244385, 0.0367349348962307, 0.0968945175409317, 0.01642700470983982,
- -0.03906157985329628, -0.04469521716237068, -0.028899438679218292, -0.06775413453578949,
- 0.09203563630580902, -0.09915708750486374, -0.005987887736409903, 0.0018695989856496453,
- 0.05531994253396988, 0.6455497145652771, 0.1231849268078804, 0.14943493902683258,
- 0.010887949727475643, 0.04652682691812515, 0.14012722671031952, -0.032914966344833374,
- 0.09377513825893402, -0.01800404116511345, -0.11019114404916763, 0.001258835312910378,
- -0.05947732925415039, -0.05628768354654312, 0.03120999224483967, 0.009092151187360287,
- 0.07532971352338791, 0.05590417608618736, 0.11828481405973434, -0.03044149838387966,
- -0.0713057816028595, -0.011798168532550335, 0.019596274942159653, 0.01533071044832468,
- -0.1226719543337822, -0.05989042669534683, 0.03685251250863075, 0.07439471036195755,
- -0.07391131669282913, 0.007454534526914358, -0.03486287221312523, 0.02700245939195156,
- -0.04697704315185547, 0.03552617132663727, -0.0026127290911972523, 0.07048416137695312,
- 0.03215916454792023, 0.04967540130019188, 0.007878250442445278, -0.0688367635011673,
- -0.02290165051817894, 0.12266436964273453, 0.008160211145877838, -0.03848845139145851,
- 0.08346933126449585, -0.07752618193626404, 0.02175768092274666, 0.033300936222076416,
- 0.11284008622169495, -0.13219523429870605, 0.024770816788077354, 0.005971206817775965,
- -0.031709566712379456, 0.07830753922462463, -0.035292305052280426, -0.07614902406930923,
- -0.07192311435937881, 0.07006911933422089, 0.014312665909528732, 0.052300311625003815,
- 0.06844521313905716, -0.01189174223691225, 0.017483007162809372, -0.05091682821512222,
- 0.02975289523601532, -0.09085358679294586, 0.07761266082525253, 0.018106378614902496,
- -0.050432831048965454, -0.039967335760593414, 0.0344344861805439, 0.03618196025490761,
- 0.0449206717312336, -0.0019277179380878806, 0.05848269909620285, 0.004105951637029648,
- -0.008567748591303825, 0.008029527962207794, 0.05305103212594986, 0.007114169653505087,
- 0.04860556498169899, -0.13365162909030914, -0.017850231379270554, -0.06826431304216385,
- 0.00996854342520237, 0.033703647553920746, -0.019305145367980003, 0.043271347880363464,
- 0.09844867140054703, 0.02558453381061554, 0.00904097780585289, 0.013347885571420193,
- 0.046639688313007355, 0.06089310348033905, 0.030046911910176277, 0.06355211138725281,
- -0.021474704146385193, -0.05463188886642456, -0.04129637032747269, 0.002859278814867139,
- 0.04281264916062355, 0.023906422778964043, -0.08132031559944153, -0.036369357258081436,
- 0.008973120711743832, -0.05683640390634537, -0.10136129707098007, 0.0072813923470675945,
- 0.0032176238019019365, -0.005001534707844257, -0.06833300739526749, -0.097145676612854,
- -0.04201633110642433, 0.03813297301530838, 0.06294922530651093, -0.05278622731566429,
- -0.02253350056707859, -0.11293990164995193, -0.007078413385897875, -0.02374921552836895,
- 0.06415098160505295, -0.00007450008706655353, -0.005431028548628092,
- -0.055027950555086136, -0.052957214415073395, -0.023660408332943916,
- 0.03366880863904953, -0.01231388933956623, 0.0008289269171655178, -0.03960735723376274,
- -0.0191044881939888, 0.038885317742824554, 0.021962614730000496, -0.007810357492417097,
- 0.04918759688735008, 0.06572426110506058, 0.06266030669212341, 0.021845916286110878,
- -0.023765649646520615, 0.051230598241090775, -0.02831847406923771,
- 0.0003855666145682335, 0.0731641873717308, 0.003161196131259203, -0.007818123325705528,
- -0.04467959702014923, -0.09499191492795944, -0.04557996615767479, -0.017212169244885445,
- -0.061430953443050385, 0.07252153754234314, -0.022998617962002754, 0.004226407967507839,
- -0.036750469356775284, -0.004233104642480612, 0.06876742094755173, -0.0545366145670414,
- -0.05983321741223335, -0.06571990251541138, 0.1082344576716423, -0.006030968390405178,
- -0.03248080238699913, 0.043948616832494736, -0.03979049250483513, 0.05209673196077347,
- 0.02513003535568714, 0.03510820120573044, 0.08180687576532364, 0.08672324568033218,
- -0.05596271529793739, 0.06830507516860962, 0.08291103690862656, 0.01282151322811842,
- 0.056258343160152435, 0.04907666891813278, 0.42498132586479187, -0.26248878240585327,
- 0.056349415332078934, 0.07766261696815491, -0.014733326621353626, 0.07862848788499832,
- -0.0236719511449337, 0.08867040276527405, 0.060131948441267014, 0.07469683140516281,
- 0.14417120814323425, -0.07315853238105774, 0.033100202679634094, -0.022990446537733078,
- 0.08379586786031723, 0.010154829360544682, 0.0011490907054394484, -0.01470344141125679,
- -0.051116447895765305, -0.026817243546247482, 0.06092220917344093, -0.05029753968119621,
- 0.020391296595335007, -0.0115199638530612, -0.07037466019392014, 0.04609284922480583,
- 0.09845532476902008, 0.09525599330663681, -0.04718906804919243, 0.04709027707576752,
- -0.015602380968630314, 0.028027456253767014, 0.009383800439536572, 0.04084315896034241,
- -0.10463286936283112, 0.02642841637134552, -0.012153826653957367, -0.1331600695848465,
- 0.07378251105546951, 0.04376920685172081, 0.08847983181476593, 0.05482018366456032,
- -0.016718924045562744, 0.05226797237992287, -0.0681845173239708, -0.06101702153682709,
- -0.014041351154446602, 0.019757971167564392, 0.042916133999824524, 0.11317720264196396,
- 0.16082151234149933, -0.01498956885188818, -0.05067838728427887, -0.06850399076938629,
- 0.04320528730750084, 0.11163351684808731, -0.042970314621925354, 0.03686368837952614,
- -0.03608214482665062, -0.015654461458325386, -0.042989350855350494,
- -0.024700237438082695, -0.06994274258613586, -0.01046445406973362,
- -0.046888552606105804, 0.07895462214946747, 0.00873727910220623, -0.057060156017541885,
- -0.08170785009860992, -0.040779341012239456, -0.053686272352933884, 0.02568140998482704,
- 0.13554717600345612, -0.040490567684173584, 0.01913672313094139, 0.00038904574466869235,
- -0.006834936328232288, 0.020753122866153717, -0.09453556686639786,
- -0.022167066112160683, -0.039945319294929504, 0.038582026958465576, 0.09986783564090729,
- 0.06462765485048294, -0.06773015111684799, 0.07675527036190033, -0.11781731247901917,
- 0.0046433270908892155, 0.012530713342130184, -0.014956493861973286, 0.06174216419458389,
- -0.05135364457964897, 0.04870691895484924, 0.013970976695418358, -0.07953524589538574,
- 0.02118046209216118, -0.03373080864548683, -0.04282021522521973, -0.10246434807777405,
- -0.07712160795927048, -0.03425034508109093, -0.09236536175012589, 0.05008206143975258,
- -0.01949416846036911, 0.025121714919805527, -0.011525855399668217, -0.05650284141302109,
- 0.02024446800351143, 0.054941575974226, 0.0064795310609042645, -0.142238587141037,
- -0.023789964616298676, -0.025865696370601654, -0.002986198989674449,
- -0.026532510295510292, -0.06456656008958817, -0.025981709361076355, 0.03952700272202492,
- 0.01628432795405388, -0.0876099020242691, 0.0631086453795433, -0.053815752267837524,
- 0.06799513846635818, -0.09738819301128387, -0.5105364918708801, 0.07698184996843338,
- -0.00393578689545393, -0.010730498470366001, -0.013825356028974056,
- -0.05248604342341423, 0.03427521139383316, -0.01202510204166174, -0.02223605290055275,
- 0.07878696918487549, -0.0478394441306591, 0.029955198988318443, -0.05051157623529434,
- -0.06921873986721039, -0.021738406270742416, -0.08602119237184525, -0.049868144094944,
- 0.04739474877715111, -0.012794510461390018, -0.05582156404852867, -0.06190073490142822,
- 0.01944274641573429, -0.04268525540828705, 0.008045212365686893, -0.02070300094783306,
- 0.002843209309503436, -0.05110524594783783, -0.094566211104393, 0.004821143113076687,
- 0.047661688178777695, 0.005974255036562681, -0.08272950351238251, -0.001089991070330143,
- 0.11270544677972794, 0.01258421316742897, 0.16038891673088074, 0.01121880766004324,
- 0.00374960177578032, -0.0851360559463501, 0.07206398248672485, 0.059344325214624405,
- 0.18481914699077606, -0.048170868307352066, 0.07824863493442535, -0.00584332225844264,
- 0.11340738832950592, -0.011913296766579151, 0.03779149800539017, -0.035031672567129135,
- 0.01364688016474247, 0.032559800893068314, -0.005639753304421902, 0.07484237104654312,
- -0.1004069596529007, -0.0009175235172733665, 0.007027964573353529,
- -0.054130762815475464, -0.03664864972233772, -0.04585352540016174, 0.19639509916305542,
- 0.06328903138637543, 0.03521234542131424, -0.008378561586141586, -0.036488957703113556,
- 0.0191198717802763, -0.08296994864940643, -0.02444101683795452, -0.03910526633262634,
- -0.018939917907118797, 0.026906006038188934, -0.0588734932243824, -0.09207434952259064,
- -0.045023176819086075, 0.030922234058380127, 0.006226737517863512, 0.10515080392360687,
- -0.03457854688167572, 0.014884202741086483, -0.053969379514455795, 0.1477719098329544,
- 0.03962179645895958, 0.046059999614953995, -0.006112417206168175, 0.04664074629545212,
- 0.030151478946208954, -0.048144806176424026, -0.08499729633331299, -0.08991537988185883,
- 0.02061987854540348, 0.15312321484088898, -0.022472552955150604, 0.17310155928134918,
- 0.04208490997552872, -0.03471125662326813, -0.014611664228141308, 0.0193561390042305,
- -0.00020587514154613018, 0.05040556564927101, -0.49688395857810974,
- -0.02823358215391636, 0.1048484817147255, -0.015700073912739754, 0.04269006475806236,
- 0.08490557223558426, 0.057817164808511734, -0.040348898619413376, -0.043129004538059235,
- -0.06038447842001915, 0.10413191467523575, -0.008661851286888123, 0.05542083829641342,
- -0.13147485256195068, 0.00876049418002367, 0.050047967582941055, 0.007588684558868408,
- 0.023309940472245216, 0.014729916118085384, -0.28515729308128357, 0.0008515527588315308,
- -0.026807717978954315, 0.14922736585140228, 0.08425996452569962, 0.0031574885360896587,
- 0.1104573979973793, -0.039664898067712784, -0.029733162373304367, 0.02701660245656967,
- 0.08412908762693405, 0.037538401782512665, -0.019689062610268593, -0.035003405064344406,
- 0.11044275015592575, 0.08548612147569656, 0.0501285158097744, -0.00021197574096731842,
- 12.081503868103027, 0.05857245996594429, 0.0746152251958847, -0.07905498892068863,
- 0.023581597954034805, -0.08136777579784393, 0.03066137246787548, -0.1196463331580162,
- 0.05519593507051468, 0.10137967765331268, 0.009218505583703518, 0.033925287425518036,
- -0.02978898212313652, -0.08547797799110413, 0.03709505498409271, -0.018024388700723648,
- 0.004918069578707218, -0.03811740502715111, 0.048613544553518295, -0.04741601645946503,
- -0.061704494059085846, 0.05053417384624481, 0.07442425191402435, 0.027551518753170967,
- -0.07340896874666214, 0.04596368223428726, -0.004147741943597794,
- -0.0065245721489191055, 0.02459350973367691, 0.04532172158360481, -0.009307077154517174,
- 0.07338850200176239, 0.11445420235395432, -0.006063953973352909, 0.07064206898212433,
- 0.049833595752716064, 0.07503611594438553, -0.0014012044994160533, 0.048860035836696625,
- 0.03542620316147804, -0.03667079284787178, 0.027302205562591553, 0.017383744940161705,
- 0.04267771169543266, 0.06467553973197937, 0.017167482525110245, 0.049792222678661346,
- 0.10187128931283951, -0.006073414348065853, 0.0786164402961731, 0.11075150221586227,
- -0.0265189278870821, 0.07205652445554733, 0.05704738199710846, -0.02445368468761444,
- 0.0923386812210083, 0.002714605303481221, -0.06323257088661194, 0.12731310725212097,
- 0.086757592856884, -0.04283466935157776, 0.08171512931585312, 0.06667269766330719,
- 0.12608680129051208, 0.057858698070049286, 0.037582576274871826, 0.07108817994594574,
- 0.07317010313272476, -0.09242250770330429, -0.06598030030727386, 0.059527140110731125,
- -0.09282584488391876, -0.06747908145189285, 0.0660877451300621, 0.061822012066841125,
- -0.04082527756690979, 0.04705406352877617, -0.01057533547282219, 0.03564554452896118,
- -0.009445510804653168, 0.026014063507318497, 0.018297463655471802, -0.06169772148132324,
- 0.022195035591721535, 0.014022852294147015, 0.020649977028369904, 0.08030344545841217,
- 0.10749274492263794, 0.05525334179401398, -0.08494687080383301, -0.033617760986089706,
- 0.08420341461896896, 0.004964418709278107, -0.029813570901751518, 0.003872755914926529,
- -0.07176901400089264, -0.034561652690172195, -0.14351008832454681, 0.0780678391456604,
- 0.12467856705188751, -0.06331894546747208, 0.005976102314889431, -0.009770054370164871,
- 0.11992748081684113, -0.0011457132641226053, 0.033494677394628525, -0.08356019109487534,
- 0.005513185169547796, 0.048807576298713684, 0.030525224283337593, -0.0811099112033844,
- 0.08700522035360336, 0.09685800969600677, -0.08911903947591782, 0.07396390289068222,
- 0.06713210791349411, -0.008462686091661453, -0.0357917957007885, 0.05640581250190735,
- 0.05338011682033539, -0.11589623987674713, -0.02258051186800003, -0.047414638102054596,
- -0.06489073485136032, 0.011641175486147404, -0.024299243465065956,
- -0.026454327628016472, 0.04354322701692581, -0.017175473272800446, -0.03109261766076088,
- 0.05930893495678902, 0.051294900476932526, 0.07976588606834412, -0.043148454278707504,
- 0.05390900745987892, -0.050088513642549515, -0.03661230206489563, 0.07616201788187027,
- 0.07306337356567383, 0.07982571423053741, -0.038670845329761505, -0.04216967523097992,
- -0.025542812421917915, -0.09912232309579849, 0.01946202851831913, 0.07670510560274124,
- 0.0282663032412529, 0.031586091965436935, 0.0016223329585045576, -0.07734556496143341,
- -0.03293195739388466, 0.04303660988807678, 0.07184883952140808, 0.014729797840118408,
- 0.03981366753578186, -0.05931588634848595, 0.023655656725168228, 0.07578837126493454,
- -0.016063470393419266, 0.01500545721501112, 0.0057061114348471165, -0.0743313878774643,
- 0.03644552081823349, 0.08901610225439072, 0.09195864200592041, 0.0034063791390508413,
- 0.07544869184494019, -0.0353742390871048, 0.018012892454862595, 0.03678663447499275,
- 0.009384647011756897, -0.08413554728031158, -0.07634646445512772, -0.10053572803735733,
- 0.009145129472017288, 0.05842864513397217, 0.06191295012831688, -0.16888824105262756,
- -0.034333691000938416, -0.04993322491645813
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 277,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 39,
- "similarity": 0.9971014261245728
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 14,
- "similarity": 0.996773362159729
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 33,
- "similarity": 0.9967333078384399
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Michael Beckwith"],
- "epoch_date_downloaded": 1659916800,
- "epoch_date_modified": 1660003200,
- "epoch_date_submitted": 1659916800,
- "flag": null,
- "report_number": 1865,
- "source_domain": "metro.co.uk",
- "submitters": ["Sonali Pednekar (CSET)", "AIAAIC"],
- "title": "NFT firm Voiceverse admits it stole work after announcing Troy Baker deal",
- "url": "https://metro.co.uk/2022/01/17/nft-firm-voiceverse-stole-work-after-announcing-troy-baker-deal-15934440/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "meta",
- "name": "Meta"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "meta",
- "name": "Meta"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "jewish-people",
- "name": "Jewish people"
- },
- {
- "__typename": "Entity",
- "entity_id": "blenderbot-3-users",
- "name": "BlenderBot 3 users"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1868, 1867, 1866],
- "vector": [
- -0.08935888856649399, 0.04658730700612068, 0.020983681082725525, -0.10892528295516968,
- 0.05592240393161774, -0.0248806681483984, 0.012757658027112484, 0.05190273001790047,
- 0.10364103317260742, -0.16317720711231232, -0.03903745487332344, 0.06585433334112167,
- 0.023703860118985176, -0.07574527710676193, 0.007594908121973276, -0.08843342214822769,
- -0.08185627311468124, -0.03963325545191765, -0.030487192794680595, -0.1432143896818161,
- -0.08665138483047485, -0.01983514614403248, 0.02770327962934971, 0.12662477791309357,
- 0.0073335557244718075, 0.033307645469903946, 0.11776688694953918, 0.13191163539886475,
- -0.0985541045665741, 0.07007699459791183, -0.009249827824532986, -0.08722332864999771,
- 0.16465862095355988, 0.02139301411807537, 0.03799663111567497, 0.10671210289001465,
- 0.04125704988837242, -0.028179831802845, -0.008061845786869526, -0.012798321433365345,
- 0.056429799646139145, 0.20571494102478027, 0.004558248445391655, -0.03493538126349449,
- 0.04687178134918213, -0.03952597826719284, 0.017825746908783913, 0.05886443331837654,
- 0.0028475746512413025, 0.008847185410559177, 0.0019908666145056486,
- -0.010384946130216122, -0.04645741358399391, 0.05538000538945198, -0.08062303066253662,
- 0.09283488243818283, 0.05149354413151741, -0.00020239059813320637, 0.012387570925056934,
- -0.07863875478506088, -0.04115324467420578, -0.20648892223834991, -0.06371351331472397,
- -0.01896747760474682, 0.07113464921712875, -0.09338295459747314, -0.0016946954419836402,
- 0.034077707678079605, 0.002703191014006734, 0.050707120448350906, 0.048101574182510376,
- -0.04144323244690895, -0.006060866639018059, 0.015408280305564404,
- -0.044055819511413574, -0.025453677400946617, 0.006031790282577276, 0.1739986091852188,
- -0.11795683950185776, -0.0004978546057827771, 0.11833763122558594, -0.1278744339942932,
- 0.4184206426143646, 0.024650558829307556, -0.012066601775586605, 0.03163372725248337,
- 0.11469248682260513, 0.022483186796307564, 0.020749622955918312, 0.010307632386684418,
- 0.0013400256866589189, 0.0391664057970047, -0.028756672516465187, 0.005034417845308781,
- 0.08138532191514969, 0.05351309850811958, -0.0316937156021595, 0.0294277872890234,
- -0.020642807707190514, -0.07681912928819656, 0.03491072729229927, -0.03020530939102173,
- 0.15234316885471344, 0.06684494763612747, -0.008059625513851643, 0.007349076215177774,
- 0.06118394061923027, -0.09557471424341202, 0.03511040657758713, -0.0784326121211052,
- 0.02268763817846775, 0.010778806172311306, 0.08706909418106079, -0.018355894833803177,
- 0.05903751775622368, -0.050467390567064285, -0.003022480756044388, 0.05822543799877167,
- 0.08977266401052475, 0.07399361580610275, -0.025031790137290955, 0.0526626817882061,
- 0.07499876618385315, -0.09413117915391922, -0.03167557343840599, -0.04625619575381279,
- -0.07239241153001785, 0.006277045235037804, -0.028638511896133423, 0.03517216816544533,
- -0.08720561861991882, -0.2353438138961792, 0.0254156906157732, 0.04541813209652901,
- -0.05287797749042511, -0.008774024434387684, 0.025348924100399017, -0.09313338994979858,
- 0.012193637900054455, -0.008622427470982075, 0.00697168568149209, 0.08742401003837585,
- 0.004904049914330244, 0.03089291602373123, 0.08762692660093307, 0.010556291788816452,
- -0.031123146414756775, -0.07325787097215652, 0.020881397649645805,
- -0.014827556908130646, 0.09676329046487808, -0.1462039053440094, -0.03283551335334778,
- -0.008616327308118343, -0.037090957164764404, 0.7308039665222168, 0.08741732686758041,
- 0.19325749576091766, -0.0004545223491732031, -0.029806062579154968, 0.1609489619731903,
- 0.009529520757496357, 0.08438149094581604, -0.07427705079317093, -0.07103744149208069,
- 0.004908507224172354, -0.08125557750463486, -0.028006335720419884, 0.0415588803589344,
- 0.009319846518337727, 0.11074364185333252, 0.049936693161726, 0.12983858585357666,
- 0.003284993814304471, -0.09228802472352982, -0.037207867950201035, 0.03414152190089226,
- 0.05541975796222687, -0.1383010298013687, -0.03671369329094887, 0.04787580296397209,
- 0.09298494458198547, -0.0724772959947586, 0.019500458613038063, -0.07228438556194305,
- 0.0682864785194397, -0.037999872118234634, 0.024726470932364464, -0.001532225520350039,
- 0.04554687812924385, 0.06910503655672073, 0.08065665513277054, -0.044515643268823624,
- -0.08945995569229126, -0.040114082396030426, 0.09391935914754868, 0.0006264357944019139,
- -0.04449896141886711, 0.12623466551303864, -0.07212698459625244, 0.04497503861784935,
- 0.02676556259393692, 0.20198635756969452, -0.11123446375131607, -0.0007142350659705698,
- 0.0019516873871907592, -0.06739214807748795, -0.0023591481149196625, 0.0048650405369699,
- -0.07156795263290405, -0.09431734681129456, 0.11251279711723328, 0.009381342679262161,
- 0.042719945311546326, 0.060993120074272156, -0.0570807158946991, 0.048754602670669556,
- -0.006878080312162638, 0.017362864688038826, -0.06874488294124603, 0.07307203859090805,
- -0.0018451459472998977, -0.08759420365095139, -0.04576277732849121, 0.03060244582593441,
- 0.03424530103802681, 0.04432852938771248, -0.024763593450188637, 0.07377315312623978,
- -0.028452366590499878, -0.05220821499824524, 0.013608763925731182, 0.05935433879494667,
- 0.04999877139925957, 0.09918912500143051, -0.11787565797567368, -0.04554662108421326,
- -0.04423849657177925, -0.020684322342276573, -0.0018280261429026723,
- -0.031012728810310364, 0.07937533408403397, 0.12421571463346481, 0.06522783637046814,
- 0.023220838978886604, 0.0019618275109678507, 0.059263765811920166, 0.08758074045181274,
- 0.004485119134187698, 0.05487543344497681, -0.03576043248176575, -0.05502450466156006,
- -0.015975596383213997, 0.005225619301199913, 0.020161055028438568, 0.008342082612216473,
- -0.0681241825222969, -0.04369940981268883, -0.05231862887740135, -0.01967419870197773,
- -0.1314525008201599, -0.024341890588402748, 0.023893341422080994, 0.04592762514948845,
- -0.12753476202487946, -0.0830705389380455, -0.09250009059906006, -0.011951110325753689,
- 0.12737178802490234, 0.00007699647539993748, -0.04042084887623787, -0.11465079337358475,
- 0.032351985573768616, -0.04591340944170952, 0.04029378667473793, -0.03089129738509655,
- -0.030296897515654564, -0.034610044211149216, -0.07407555729150772,
- -0.0017014918848872185, -0.0021551300305873156, 0.01262945681810379,
- -0.013072691857814789, -0.06329077482223511, -0.03608405217528343,
- -0.006981851998716593, 0.0022962407674640417, -0.053896646946668625, 0.0094550596550107,
- 0.05336558818817139, 0.05637235566973686, -0.03017754666507244, 0.0018839131807908416,
- 0.041541095823049545, -0.028601421043276787, -0.015000027604401112, 0.0769091248512268,
- -0.020384518429636955, 0.017384523525834084, -0.053999099880456924,
- -0.08300504088401794, -0.0074721514247357845, 0.00830391701310873,
- -0.048197466880083084, 0.0643710121512413, -0.040090639144182205, -0.007644789759069681,
- -0.0432942695915699, 0.007568246219307184, 0.05589885637164116, -0.0331524983048439,
- -0.09714149683713913, -0.07627379149198532, 0.144796684384346, -0.005126158241182566,
- 0.013917017728090286, 0.033200088888406754, -0.06126609444618225, 0.06294500082731247,
- 0.02838459424674511, 0.00572962174192071, 0.012937847524881363, 0.04698100686073303,
- -0.03011004813015461, 0.07173091918230057, 0.0627237856388092, -0.016118915751576424,
- 0.04850571230053902, 0.0866168960928917, 0.410433292388916, -0.20046430826187134,
- 0.12871311604976654, 0.11884365230798721, -0.047301035374403, 0.03480040654540062,
- -0.06511356681585312, 0.09860412031412125, 0.04352681711316109, 0.12169137597084045,
- 0.135745108127594, -0.09178189188241959, 0.01369426492601633, -0.06289956718683243,
- 0.11444991081953049, 0.008882389403879642, 0.019706955179572105, 0.004826063755899668,
- -0.03505922481417656, -0.010314585641026497, 0.031113632023334503, -0.0767594650387764,
- 0.0005109524354338646, -0.05868621543049812, -0.09099060297012329, 0.025826668366789818,
- 0.0671314001083374, 0.0831475779414177, -0.046438295394182205, 0.0488714873790741,
- 0.011189006268978119, 0.029226675629615784, 0.04042413830757141, 0.045675475150346756,
- -0.11811801046133041, 0.04925818368792534, -0.0957534983754158, -0.11196666210889816,
- 0.051285386085510254, 0.009068810380995274, 0.08291018754243851, 0.04706880450248718,
- -0.008262946270406246, 0.0434076301753521, -0.033567238599061966, -0.038834523409605026,
- -0.006988226901739836, 0.01421984564512968, 0.04184982553124428, 0.10139646381139755,
- 0.17188988626003265, -0.034915219992399216, -0.017622727900743484, -0.08785530179738998,
- 0.05690927430987358, 0.09869494289159775, -0.06816890090703964, 0.018180852755904198,
- 0.010754362680017948, 0.03213392570614815, -0.019144730642437935, -0.056893348693847656,
- -0.05442439019680023, -0.01986377127468586, -0.08230128884315491, 0.0824105516076088,
- 0.05873444676399231, -0.07465686649084091, -0.1481567770242691, -0.056697744876146317,
- -0.023843126371502876, 0.02443563938140869, 0.1789478212594986, -0.09511295706033707,
- 0.011940603144466877, 0.008897706866264343, 0.016071395948529243, 0.00508404104039073,
- -0.09441187232732773, -0.03332950547337532, -0.11974203586578369, 0.059004705399274826,
- 0.08315407484769821, 0.07674449682235718, -0.05703092738986015, 0.11750936508178711,
- -0.09724652767181396, 0.04901725426316261, 0.004256051033735275, -0.05948198214173317,
- 0.03214450553059578, -0.038004811853170395, 0.021685296669602394,
- -0.00037507154047489166, -0.0740642175078392, 0.0021681070793420076,
- -0.04730774089694023, -0.057650525122880936, -0.08314316719770432, -0.0770668312907219,
- -0.06245476007461548, -0.06606011092662811, 0.06478913873434067, -0.10560689121484756,
- -0.0055687204003334045, -0.0646558329463005, -0.0028676732908934355,
- 0.01021187100559473, 0.05238201841711998, 0.017838558182120323, -0.13323082029819489,
- -0.02778947539627552, -0.005475472658872604, 0.02862493135035038, -0.06799113750457764,
- -0.07155787944793701, -0.013005896471440792, 0.054619234055280685, 0.03803020343184471,
- -0.029251517727971077, 0.02226678468286991, -0.0469987653195858, 0.08098870515823364,
- -0.12224497646093369, -0.5095140337944031, 0.03605188429355621, 0.07090481370687485,
- 0.0318530797958374, 0.019645094871520996, -0.07630201429128647, 0.056339602917432785,
- 0.005150713492184877, -0.07357865571975708, 0.12314724177122116, -0.04938006401062012,
- 0.028377866372466087, -0.042195480316877365, -0.054376423358917236,
- -0.025040680542588234, -0.12540049850940704, -0.027347654104232788,
- 0.023396195843815804, 0.004731514025479555, -0.05718427896499634, -0.0769420936703682,
- 0.011038273572921753, -0.036496344953775406, -0.005847909953445196,
- -0.026528039947152138, 0.013064759783446789, -0.021790923550724983,
- -0.058294039219617844, 0.005702745635062456, 0.04114240035414696, 0.0183709803968668,
- -0.11755020171403885, -0.013310998678207397, 0.08710549026727676, 0.01689811237156391,
- 0.16720716655254364, 0.026048539206385612, 0.04183365777134895, -0.10315534472465515,
- 0.064407117664814, 0.0870085284113884, 0.18339617550373077, -0.024427706375718117,
- 0.03976203501224518, -0.0008176292176358402, 0.1129627600312233, 0.061355311423540115,
- 0.03343028947710991, -0.04953107237815857, -0.0030574712436646223,
- -0.010508128441870213, -0.05237630009651184, 0.0846167579293251, -0.07938473671674728,
- -0.006831246893852949, 0.0007937423069961369, -0.023207152262330055,
- -0.034405265003442764, -0.03433491289615631, 0.2005395144224167, 0.03744950518012047,
- 0.03609549626708031, 0.006976108532398939, -0.05720164254307747, 0.013722195290029049,
- -0.06750740855932236, -0.06805270165205002, -0.026459598913788795,
- -0.015274238772690296, 0.02339254505932331, -0.05558884143829346, -0.09764613956212997,
- -0.013370958156883717, 0.00025356761761941016, 0.010220765136182308,
- 0.13238660991191864, -0.06211954355239868, 0.019712666049599648, -0.01224025059491396,
- 0.16223855316638947, 0.04125785827636719, 0.03975643590092659, 0.0552636981010437,
- 0.09512686729431152, 0.028823738917708397, 0.016929466277360916, -0.04315236210823059,
- -0.07646088302135468, 0.006732796784490347, 0.1628463864326477, -0.033399078994989395,
- 0.15332452952861786, 0.032016631215810776, 0.011338452808558941, -0.05741201713681221,
- 0.02674424834549427, 0.010186421684920788, 0.019433801993727684, -0.4714653789997101,
- -0.013612814247608185, 0.1492988020181656, -0.024044765159487724, 0.039180126041173935,
- 0.10438530892133713, 0.02851552516222, -0.037715211510658264, -0.07139487564563751,
- -0.08345753699541092, 0.108331598341465, 0.009640474803745747, 0.06087626516819,
- -0.10367361456155777, 0.043449293822050095, 0.09169415384531021, 0.0035257283598184586,
- 0.004828945267945528, 0.03022262454032898, -0.2683131694793701, -0.006028229370713234,
- -0.014105130918323994, 0.12457787990570068, 0.004916391801089048, 0.05309901759028435,
- 0.10403881222009659, -0.06251798570156097, 0.020189207047224045, -0.006729045417159796,
- 0.018751904368400574, 0.06096820905804634, 0.004258868284523487, -0.013267967849969864,
- 0.14382119476795197, 0.13133414089679718, 0.083354152739048, -0.0006491423700936139,
- 12.123555183410645, 0.059085238724946976, 0.08388266712427139, -0.10873452574014664,
- 0.032935965806245804, -0.05688964203000069, 0.04217131808400154, -0.09057030081748962,
- 0.08086984604597092, 0.12233593314886093, -0.0013805435737594962, -0.04109600931406021,
- -0.008326933719217777, -0.11612745374441147, 0.03246212750673294, -0.0916377529501915,
- -0.03494975343346596, -0.04952651262283325, 0.05181088671088219, -0.048646122217178345,
- -0.053127020597457886, 0.09357551485300064, 0.06742535531520844, 0.034523189067840576,
- -0.10762443393468857, 0.06902565807104111, 0.015448794700205326, -0.015646234154701233,
- -0.014139766804873943, -0.002138702431693673, 0.02603832073509693, 0.034868840128183365,
- 0.09704042226076126, 0.03302375599741936, 0.028679443523287773, 0.12443206459283829,
- 0.03142443671822548, 0.045602042227983475, 0.06660560518503189, 0.028710966929793358,
- -0.006113892886787653, 0.010258268564939499, 0.00047990152961574495,
- 0.046622972935438156, 0.057759612798690796, 0.03340201824903488, 0.03684323653578758,
- 0.15483899414539337, -0.018088148906826973, 0.07445896416902542, 0.09267254918813705,
- -0.0042049172334373, 0.1065918579697609, 0.03415602818131447, -0.021846981719136238,
- 0.057875990867614746, -0.04166697338223457, -0.08801130205392838, 0.11285126209259033,
- -0.008294789120554924, -0.04545608535408974, 0.11592462658882141, 0.03607362136244774,
- 0.13387176394462585, 0.07707378268241882, 0.030169164761900902, 0.053585778921842575,
- 0.07890450209379196, -0.1341453343629837, -0.11994818598031998, 0.048115089535713196,
- -0.10777121782302856, -0.0694500133395195, 0.07068958878517151, 0.09903275966644287,
- -0.032058235257864, 0.04928075149655342, -0.030704358592629433, 0.055447693914175034,
- -0.027218343690037727, -0.005303222686052322, 0.05530063435435295, -0.01502451952546835,
- 0.02242789976298809, 0.007950926199555397, 0.02677418291568756, 0.08997901529073715,
- 0.10908593982458115, 0.02422916330397129, -0.10131927579641342, -0.060676831752061844,
- 0.08599505573511124, -0.0009329973836429417, -0.06687967479228973, 0.04441016912460327,
- -0.07429354637861252, 0.019700028002262115, -0.17048342525959015, 0.09882708638906479,
- 0.11990010738372803, -0.07458328455686569, -0.054082099348306656, -0.005134206730872393,
- 0.08971419185400009, 0.028283288702368736, 0.02410959266126156, -0.08823376148939133,
- -0.006286967545747757, 0.054541245102882385, 0.045640069991350174, -0.04397037625312805,
- 0.07807906717061996, 0.05707700923085213, -0.0815819725394249, 0.0636897161602974,
- 0.08185914903879166, -0.05639595165848732, 0.00901047419756651, 0.07265058159828186,
- 0.03267742693424225, -0.11322686821222305, -0.057902317494153976, -0.09689325094223022,
- -0.10702913999557495, 0.005688633304089308, -0.023364372551441193, -0.00424567423760891,
- 0.008475985378026962, -0.025223275646567345, -0.019991740584373474, 0.02971952222287655,
- 0.07518365979194641, 0.09439292550086975, 0.003731596050783992, 0.05016181990504265,
- -0.07731658965349197, -0.03202759101986885, 0.036455485969781876, 0.06512337177991867,
- 0.0704217329621315, -0.09596464782953262, -0.023268310353159904, -0.05362377688288689,
- -0.11765884608030319, 0.0604301355779171, 0.10350392013788223, -0.00490689929574728,
- 0.02275504358112812, 0.02016277238726616, -0.09064841270446777, -0.04208387807011604,
- 0.0694166049361229, 0.07046542316675186, 0.006180112715810537, 0.03559646010398865,
- -0.033175934106111526, -0.023136580362915993, 0.12098262459039688,
- -0.037640903145074844, 0.01066538318991661, -0.001322422525845468, -0.06876406818628311,
- 0.10387745499610901, 0.10271049290895462, 0.0804109200835228, 0.06770222634077072,
- 0.0426197350025177, 0.01830192655324936, 0.053233757615089417, 0.00490363035351038,
- 0.011961282230913639, -0.0634075179696083, -0.07226234674453735, -0.10210546106100082,
- 0.04287724569439888, 0.08718815445899963, 0.06888330727815628, -0.18573534488677979,
- 0.012447498738765717, -0.052849214524030685
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 278,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 6,
- "similarity": 0.9971004128456116
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 13,
- "similarity": 0.9970513582229614
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 17,
- "similarity": 0.9968450665473938
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Jeff Horwitz"],
- "epoch_date_downloaded": 1660089600,
- "epoch_date_modified": 1660089600,
- "epoch_date_submitted": 1660089600,
- "flag": null,
- "report_number": 1868,
- "source_domain": "twitter.com",
- "submitters": ["Khoa Lam"],
- "title": "Tweet: @JeffHorwitz",
- "url": "https://twitter.com/JeffHorwitz/status/1556245316596219904"
- },
- {
- "__typename": "Report",
- "authors": ["Alice Hearing"],
- "epoch_date_downloaded": 1660089600,
- "epoch_date_modified": 1660089600,
- "epoch_date_submitted": 1660089600,
- "flag": null,
- "report_number": 1867,
- "source_domain": "fortune.com",
- "submitters": ["Khoa Lam"],
- "title": "Meta asked users to test its A.I. chatbot. Turns out it’s not sure that Biden won in 2020 and deals in Jewish stereotypes",
- "url": "https://fortune.com/2022/08/08/meta-test-ai-chatbot-blenderbot3/"
- },
- {
- "__typename": "Report",
- "authors": ["David Meyer"],
- "epoch_date_downloaded": 1660089600,
- "epoch_date_modified": 1660089600,
- "epoch_date_submitted": 1660003200,
- "flag": null,
- "report_number": 1866,
- "source_domain": "fortune.com",
- "submitters": ["Daniel Atherton (BNH.ai)"],
- "title": "‘It is painful to see some of these offensive responses’—Meta defends its occasionally anti–Semitic BlenderBot 3 chatbot",
- "url": "https://fortune.com/2022/08/09/painful-offensive-responses-meta-blenderbot-3-chatbot-tay/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "tiktok",
- "name": "TikTok"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "tiktok",
- "name": "TikTok"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "tiktok-young-users",
- "name": "TikTok young users"
- },
- {
- "__typename": "Entity",
- "entity_id": "tiktok-users",
- "name": "TikTok users"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1870, 1869],
- "vector": [
- -0.07432986237108707, 0.055676912888884544, 0.023225546581670642, -0.1050528846681118,
- 0.0881710946559906, -0.038097687531262636, 0.008125602500513196, 0.028806287795305252,
- 0.07257133163511753, -0.07931840419769287, -0.015319656347855926, 0.039659109665080905,
- 0.006588808260858059, -0.033271617256104946, 0.055694956332445145, -0.08671863004565239,
- -0.08658193051815033, -0.023010366829112172, -0.012156221317127347,
- -0.09030567854642868, -0.07886960916221142, 0.044327473267912865,
- -0.0018672883161343634, 0.1393868252635002, -0.033433323726058006, 0.026164477691054344,
- 0.1178683452308178, 0.1340719498693943, -0.012769162654876709, 0.021086450200527906,
- -0.021177335875108838, -0.05581319518387318, 0.1221177726984024, 0.000545937567949295,
- -0.008086107671260834, 0.09616395086050034, 0.050483087077736855, -0.045987628400325775,
- -0.026875002775341272, 0.012834054883569479, 0.035627408884465694, 0.19521644711494446,
- -0.009730751626193523, -0.00914638809626922, 0.04335268400609493, -0.020924704615026712,
- 0.03083472838625312, 0.029611587524414062, -0.018202836625277996, 0.00437064073048532,
- -0.029297993518412113, 0.012051360681653023, -0.04967939294874668, 0.026093837921507657,
- -0.12128660082817078, 0.10253468714654446, 0.0390967782586813, -0.020163195207715034,
- 0.0367181021720171, -0.07065488956868649, -0.012123913504183292, -0.15527529269456863,
- -0.06481023505330086, -0.04958575218915939, 0.05572859197854996, -0.08894992247223854,
- -0.03857736336067319, 0.006818877533078194, 0.01645661098882556, 0.05091390572488308,
- 0.0597549844533205, -0.0653503555804491, -0.013095521833747625, -0.010329895361792296,
- -0.0167663695756346, -0.05413283035159111, 0.03202370088547468, 0.18452319502830505,
- -0.0978354848921299, -0.014975070487707853, 0.09139924123883247, -0.07261499017477036,
- 0.352035328745842, 0.007389601785689592, 0.012698927894234657, -0.011587252840399742,
- 0.0646393671631813, 0.005610036081634462, 0.02461092546582222, 0.06020054407417774,
- 0.006087023764848709, 0.04229842312633991, -0.051892589777708054, -0.023002383764833212,
- 0.07461625337600708, 0.01606800826266408, -0.00710224243812263, -0.12463949993252754,
- -0.00027841818518936634, -0.09342154487967491, -0.03239590208977461,
- -0.02258057240396738, 0.10180803760886192, 0.06882241927087307, -0.023724541533738375,
- 0.020034844987094402, 0.05571456253528595, -0.026067395694553852, 0.01868676394224167,
- -0.019603606779128313, 0.03795748297125101, -0.0056974152103066444, 0.05857517942786217,
- -0.005543825565837324, 0.016560660675168037, -0.021194106433540583,
- -0.017018347047269344, 0.06639021262526512, 0.09236390888690948, 0.09345659241080284,
- 0.04057485889643431, 0.05739549919962883, 0.13830749690532684, -0.03369179926812649,
- -0.03967894986271858, -0.012685487425187603, -0.05293161701411009, 0.004679303208831698,
- -0.006200326839461923, 0.034687340259552, -0.06196717917919159, -0.22324223071336746,
- -0.00233467725047376, 0.06170458719134331, 0.009158119093626738, -0.025699676014482975,
- -0.007623538374900818, -0.06135193444788456, -0.00679066963493824, -0.02295333333313465,
- -0.038069235160946846, 0.060177698731422424, 0.024223548360168934, 0.02313279453665018,
- 0.14390265196561813, 0.06340133585035801, -0.05322960577905178, -0.05499580316245556,
- -0.03791136760264635, -0.05415891855955124, 0.10448136180639267, -0.08376451767981052,
- -0.08623533695936203, -0.00578627735376358, -0.04388049989938736, 0.6655458509922028,
- 0.12266360595822334, 0.16315031051635742, -0.0056179320672526956, -0.009985784068703651,
- 0.16524720191955566, -0.008748886408284307, 0.027474122121930122, -0.0894286297261715,
- -0.05367130599915981, -0.0018044589378405362, -0.07927056401968002,
- -0.054083969444036484, 0.026787166949361563, 0.024738573003560305, 0.07479608431458473,
- 0.015627505257725716, 0.08327224478125572, 0.011449259705841541, -0.12445852905511856,
- -0.053601834923028946, 0.06957380101084709, 0.015019736718386412, -0.11160917952656746,
- -0.03261912800371647, 0.04344024881720543, 0.08305384963750839, -0.0603957436978817,
- 0.03189689014106989, -0.08278370276093483, 0.08629291504621506, -0.014100974891334772,
- 0.05678659304976463, -0.016919666435569525, 0.03659498691558838, 0.038962459191679955,
- -0.0033347811549901962, -0.004908976145088673, -0.0756558459252119,
- -0.021253663464449346, 0.10508283600211143, 0.010213057161308825, -0.027437252923846245,
- 0.015665707644075155, -0.08376997336745262, 0.06170608475804329, 0.005550750298425555,
- 0.12789560854434967, -0.13586921617388725, -0.01363900676369667, -0.028917918913066387,
- 0.020354405976831913, 0.0343390628695488, -0.01203122129663825, -0.08822749927639961,
- -0.0857963114976883, 0.11862846463918686, -0.011980459850747138, 0.03593077277764678,
- 0.00981870386749506, -0.019577354192733765, 0.04129507206380367, 0.1149614192545414,
- 0.017739842180162668, -0.007306007668375969, 0.06546830385923386, 0.04211992770433426,
- -0.0053627039305865765, -0.06455081328749657, 0.024753903737291694, 0.06301923282444477,
- 0.03405432403087616, -0.010909915901720524, 0.05876501090824604, -0.004103516577742994,
- -0.02394923660904169, 0.05167464725673199, -0.002514879721275065, 0.040117541793733835,
- 0.06364615634083748, -0.0572922148858197, -0.03744405694305897, -0.0168442502617836,
- -0.03462981712073088, 0.014113320503383875, -0.03947591921314597, 0.07929230853915215,
- 0.08869677037000656, 0.06695615127682686, -0.0014230392407625914, 0.05041319131851196,
- 0.059847721830010414, 0.014625251293182373, 0.038818749599158764, 0.08369412831962109,
- -0.03293225169181824, -0.0035032927989959717, -0.0513211227953434,
- -0.014487185049802065, 0.011054988484829664, 0.029207063373178244,
- -0.035910867154598236, -0.0022185392444953322, -0.010748147964477539,
- -0.017527179210446775, -0.09796436503529549, -0.04106522537767887, 0.040129529312253,
- 0.04340652748942375, -0.06259666197001934, -0.10293367505073547, -0.10754594951868057,
- -0.021606400550808758, 0.05543524771928787, -0.03332984447479248, -0.027234272565692663,
- -0.10315443947911263, 0.03702220693230629, -0.01798691600561142, 0.07519347220659256,
- -0.025661084800958633, 0.016720574349164963, 0.015906309708952904, -0.07495326921343803,
- 0.019594264682382345, -0.01909506565425545, -0.057424506172537804,
- -0.005022011406254023, -0.057361774146556854, -0.08715545386075974,
- -0.0038093890761956573, -0.0049060070887207985, -0.04478310188278556,
- 0.019513884733896703, 0.0406014658510685, 0.05344255641102791, -0.01551836947328411,
- -0.02088920772075653, 0.03640173841267824, -0.045359352603554726, 0.005047230515629053,
- 0.056483373045921326, -0.0339592769742012, 0.09932811930775642, -0.008400994760449976,
- -0.08249097876250744, -0.021484611090272665, -0.022776277735829353, -0.0488818371668458,
- 0.03325078170746565, -0.03299174550920725, -0.01646265434101224, -0.03303186409175396,
- 0.009303826605901122, 0.048471882939338684, -0.06234670616686344, -0.08910492062568665,
- -0.10811439901590347, 0.14449331164360046, -0.0013343081809580326,
- -0.016763007268309593, 0.02967131230980158, -0.05802758410573006, 0.023907415568828583,
- -0.008660165593028069, -0.014235334121622145, 0.06137320026755333, 0.054407183080911636,
- -0.0014171632938086987, -0.004019223350042012, 0.07725025899708271,
- -0.009611447341740131, 0.02426311024464667, 0.10754860565066338, 0.39809730648994446,
- -0.2265540063381195, 0.08784811943769455, 0.08625437319278717, 0.01921715249773115,
- 0.02119285985827446, 0.002204714110121131, 0.06948365271091461, 0.08664051070809364,
- 0.13318710774183273, 0.07561079412698746, -0.06182677485048771, 0.018864380894228816,
- -0.07068098895251751, 0.08026636391878128, 0.027854542480781674, 0.003952027298510075,
- 0.027264263480901718, -0.05791168287396431, -0.007736124913208187, 0.0759570561349392,
- -0.04451496060937643, 0.025540540926158428, -0.022501915227621794, -0.05799352191388607,
- 0.05940043926239014, 0.012360900465864688, 0.04103540815412998, -0.03597921133041382,
- 0.017547354102134705, 0.017074291361495852, 0.026383956894278526, 0.04486403241753578,
- 0.03355511091649532, -0.09763607010245323, 0.05126150697469711, -0.056043922901153564,
- -0.061360592022538185, 0.05594314634799957, -0.0018653384177014232, 0.04277652781456709,
- 0.06484614685177803, -0.014414876233786345, 0.012236555106937885, 0.0012460534344427288,
- -0.06887310929596424, -0.009439472574740648, 0.03638273663818836, 0.03625328838825226,
- 0.042768415063619614, 0.15653783082962036, -0.03734613745473325, -0.009733451064676046,
- -0.05600163899362087, 0.07549799233675003, 0.0713159516453743, -0.028499284759163857,
- 0.04030182957649231, -0.012277643196284771, -0.005524333566427231,
- -0.00037188222631812096, -0.016799916978925467, -0.0715094693005085,
- -0.016127946902997792, -0.059528471902012825, 0.06892084330320358, 0.049210404977202415,
- -0.0046915579587221146, -0.17690424993634224, -0.05515185371041298,
- -0.06233827397227287, 0.015049249865114689, 0.11654132977128029, -0.06932009942829609,
- 0.02230873331427574, 0.04262029193341732, 0.015852835960686207, 0.019516594242304564,
- -0.08282729610800743, 0.021236552856862545, -0.05025423318147659, 0.056516168639063835,
- 0.033136163372546434, 0.051872480660676956, -0.046792298555374146, 0.08516712859272957,
- -0.07997598499059677, 0.08116216026246548, -0.012081956025213003, -0.03975832648575306,
- 0.012618924025446177, -0.00918702152557671, 0.024997657164931297, 0.040243491530418396,
- -0.0383011419326067, -0.01660413993522525, -0.015937734933686443, -0.017645380459725857,
- -0.06269977800548077, -0.09031211957335472, -0.03109433827921748, -0.05920855328440666,
- 0.06317460536956787, -0.08689100667834282, -0.03368966933339834, -0.007277752156369388,
- -0.005713455379009247, -0.037521976977586746, 0.027248558588325977,
- 0.012618865817785263, -0.17215151339769363, -0.00688008894212544, 0.007309679174795747,
- 0.07049194350838661, 0.011149095371365547, -0.024031030014157295, 0.023144212202169,
- 0.11129770055413246, 0.02272028522565961, -0.03006773124616302, 0.021845703711733222,
- -0.03639199770987034, 0.06147036887705326, -0.14234662801027298, -0.4339103549718857,
- 0.05033527221530676, 0.012868173653259873, 0.04094511177390814, 0.022205905057489872,
- -0.08548983559012413, 0.05717870593070984, 0.02572391089051962, -0.0644388422369957,
- 0.07633938267827034, -0.045518239960074425, 0.028700387105345726, -0.01860969653353095,
- -0.0684591494500637, -0.00002098502591252327, -0.039307890459895134,
- -0.06326157227158546, -0.013329853303730488, -0.03458562586456537, -0.04860442131757736,
- -0.10350687429308891, 0.04539083503186703, -0.002901512780226767, 0.02946596429683268,
- -0.013294017408043146, 0.04216833785176277, -0.07850140891969204, -0.054339541122317314,
- 0.03770391270518303, 0.09098396450281143, 0.029842739924788475, -0.06277984380722046,
- -0.04076484590768814, 0.04120284877717495, 0.008342448389157653, 0.0946897342801094,
- 0.022045468911528587, -0.07108848169445992, -0.03519170917570591, 0.05096617341041565,
- 0.07354068756103516, 0.1884811520576477, -0.004636469995602965, -0.0007092636078596115,
- -0.010436330107040703, 0.15997310727834702, 0.022106450516730547, 0.03533616382628679,
- -0.037386036477983, -0.003966142889112234, 0.02667004754766822, 0.0077782054140698165,
- 0.05656407214701176, -0.0668170303106308, -0.033400148153305054, -0.0020683924667537212,
- 0.0038984704297035933, -0.016709656454622746, 0.013171530794352293, 0.1965203583240509,
- 0.016524945851415396, 0.048384400084614754, 0.009732398670166731, -0.03890245221555233,
- 0.04375581070780754, -0.09694785252213478, -0.08668485283851624, -0.04400590620934963,
- -0.0018752526957541704, -0.0006821502465754747, -0.02230652642901987,
- -0.07006200216710567, -0.02282295119948685, -0.022019420750439167, 0.018680138513445854,
- 0.14652104675769806, -0.03188812732696533, 0.010542506352066994, 0.021482428070157766,
- 0.14535188674926758, 0.012904818635433912, 0.02074849046766758, 0.0658450536429882,
- 0.12137900665402412, 0.036472177132964134, 0.014319309964776039, -0.08090268447995186,
- -0.08242570981383324, -0.03281811811029911, 0.11674521118402481, -0.024175817612558603,
- 0.12447404488921165, 0.05391419120132923, 0.0103334856685251, -0.029478064738214016,
- 0.02298165950924158, -0.05032928101718426, 0.0022873440757393837, -0.4429359585046768,
- -0.050962988287210464, 0.08685903251171112, 0.0184442438185215, -0.008852407132508233,
- 0.11867248639464378, -0.006887706927955151, -0.019410625915043056, 0.004687245469540358,
- -0.1001773551106453, 0.13338812813162804, 0.018002407159656286, 0.08252190425992012,
- -0.09606904909014702, 0.016639931593090296, 0.06736074388027191, -0.007815941295120865,
- -0.023176134563982487, 0.056923290714621544, -0.18273983895778656, 0.01802273839712143,
- -0.024159919936209917, 0.12120417132973671, -0.020686082541942596, 0.041261233389377594,
- 0.07282212749123573, -0.048080649226903915, 0.0160840202588588, 0.03462528716772795,
- -0.011234982870519161, 0.02513244654983282, -0.0247371643781662, -0.0568554550409317,
- 0.06916956603527069, 0.07326507195830345, 0.09317105263471603, -0.024521026760339737,
- 11.84469985961914, 0.049793656915426254, 0.060713330283761024, -0.06558678671717644,
- 0.0055730224994476885, -0.04455270618200302, 0.007011141628026962, -0.09123912081122398,
- 0.032611492089927197, 0.15675551444292068, -0.03737896587699652, -0.03760690242052078,
- -0.04121488705277443, -0.08702804706990719, 0.015741116367280483, -0.055213626474142075,
- -0.05516909249126911, -0.05345463566482067, 0.014805553713813424, -0.037797966971993446,
- -0.0411540362983942, 0.08156463503837585, 0.06810759380459785, -0.0007421323098242283,
- -0.05719475634396076, 0.07214687205851078, -0.020548011641949415,
- -0.0024378011003136635, -0.007277271011844277, 0.019146194215863943,
- 0.05621381849050522, -0.009886275976896286, 0.07136468403041363, 0.02518196776509285,
- 0.010280595903168432, 0.07869549095630646, 0.06756894383579493, 0.029110621195286512,
- 0.013630624394863844, 0.07573201321065426, -0.0004588791634887457,
- -0.030891883186995983, 0.005058225302491337, -0.012612367980182171, 0.05578845366835594,
- 0.058646922931075096, 0.050782423466444016, 0.132953442633152, 0.023587731178849936,
- 0.054293835535645485, 0.08143363893032074, 0.0003036004491150379, 0.1179242879152298,
- 0.06065158825367689, -0.042638273909687996, 0.05574871599674225, -0.012430160772055387,
- -0.06317392364144325, 0.09073277562856674, 0.049875784665346146, -0.0438553299754858,
- 0.11557234451174736, 0.01960449106991291, 0.12851759791374207, 0.06810038909316063,
- 0.025264290161430836, 0.04412645101547241, 0.08860505558550358, -0.11180434376001358,
- -0.05499933008104563, 0.021088088862597942, -0.1070723719894886, -0.05460425280034542,
- 0.03373258002102375, 0.10692746192216873, -0.02834441512823105, 0.041767869144678116,
- -0.009904276696033776, 0.014558120165020227, -0.026562809012830257, 0.0315695779863745,
- 0.08793164603412151, -0.017564975190907717, -0.02638323325663805, 0.04865218512713909,
- 0.028421605238690972, 0.11822348460555077, 0.11529117450118065, -0.03933072183281183,
- -0.10237960144877434, -0.03671446070075035, 0.08699016645550728, 0.0015788860619068146,
- -0.038825735449790955, 0.0259414529427886, -0.047631753608584404, 0.037028007209300995,
- -0.15673064440488815, 0.08958592265844345, 0.09141060709953308, -0.0711432658135891,
- -0.04307282203808427, -0.03430620674043894, 0.04633453115820885, 0.016142909415066242,
- 0.03264367766678333, -0.058646053075790405, -0.013666176237165928,
- -0.023191964719444513, 0.042388652451336384, -0.037099448032677174, 0.05375415459275246,
- 0.08082303032279015, -0.04829225689172745, 0.03230658546090126, 0.034605843015015125,
- -0.017222529742866755, -0.016640659887343645, 0.046583253890275955,
- 0.030498620122671127, -0.05933849327266216, -0.044560374692082405,
- -0.051484597846865654, -0.0021379683166742325, -0.033534699119627476,
- -0.004960794001817703, -0.02195876929908991, 0.03254924714565277, -0.016674553975462914,
- -0.018414305057376623, 0.019123961683362722, 0.04442446678876877, 0.0831720195710659,
- -0.016410013660788536, 0.085382379591465, -0.02079074550420046, -0.004014129372080788,
- 0.06472066044807434, 0.06751347705721855, 0.0653067734092474, -0.05052156373858452,
- -0.04265543445944786, -0.028925107792019844, -0.11104253306984901,
- -0.003809618763625622, 0.05989048629999161, 0.04359038174152374, 0.005734535399824381,
- 0.046647561714053154, -0.09912164509296417, -0.05604660324752331, 0.091192077845335,
- 0.0006572753190994263, 0.010079633444547653, 0.026014824397861958, -0.05190014000982046,
- -0.012508684303611517, 0.06990595534443855, -0.06689035892486572, -0.005515403114259243,
- 0.030486426781862974, -0.13052553683519363, 0.08704667910933495, 0.11517511680722237,
- 0.03895557764917612, 0.02490877639502287, -0.00586082530207932, 0.022310647182166576,
- 0.047865161672234535, 0.00919991178670898, 0.032793291844427586, -0.01953255571424961,
- -0.07432383298873901, -0.09034020826220512, 0.02997281216084957, 0.058195725083351135,
- 0.09539508074522018, -0.12012184411287308, -0.03739522863179445, -0.011740508489310741
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 279,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 1,
- "similarity": 0.997322142124176
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 14,
- "similarity": 0.9971560835838318
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 13,
- "similarity": 0.9970057010650635
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Dan Milmo", "Alex Hern"],
- "epoch_date_downloaded": 1671408000,
- "epoch_date_modified": 1672963200,
- "epoch_date_submitted": 1671408000,
- "flag": null,
- "report_number": 2381,
- "source_domain": "theguardian.com",
- "submitters": ["Daniel Atherton (BNH.ai)"],
- "title": "TikTok self-harm study results ‘every parent’s nightmare’",
- "url": "https://www.theguardian.com/technology/2022/dec/15/tiktok-self-harm-study-results-every-parents-nightmare"
- },
- {
- "__typename": "Report",
- "authors": ["Morgan Sung"],
- "epoch_date_downloaded": 1660089600,
- "epoch_date_modified": 1660089600,
- "epoch_date_submitted": 1660089600,
- "flag": null,
- "report_number": 1870,
- "source_domain": "sea.mashable.com",
- "submitters": ["Ingrid Dickinson (CSET)"],
- "title": "It's almost impossible to avoid triggering content on TikTok",
- "url": "https://sea.mashable.com/culture/12204/its-almost-impossible-to-avoid-triggering-content-on-tiktok"
- },
- {
- "__typename": "Report",
- "authors": ["Cameron Wilson"],
- "epoch_date_downloaded": 1660089600,
- "epoch_date_modified": 1660089600,
- "epoch_date_submitted": 1660089600,
- "flag": null,
- "report_number": 1869,
- "source_domain": "buzzfeed.com",
- "submitters": ["Ingrid Dickinson (CSET)"],
- "title": "TikTok Is Filled With Pro-Eating Disorder Content, Despite Its Own Rules",
- "url": "https://www.buzzfeed.com/cameronwilson/tiktok-eating-disorder-videos-algorithm-for-you-page"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "coffee-meets-bagel",
- "name": "Coffee Meets Bagel"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "coffee-meets-bagel",
- "name": "Coffee Meets Bagel"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "coffee-meets-bagel-users-having-no-ethnicity-preference",
- "name": "Coffee Meets Bagel users having no ethnicity preference"
- },
- {
- "__typename": "Entity",
- "entity_id": "coffee-meets-bagel-users",
- "name": "Coffee Meets Bagel users"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1873, 1872],
- "vector": [
- -0.08423560857772827, 0.044933099299669266, -0.008087476715445518, -0.11767634749412537,
- 0.0851399302482605, -0.022576794028282166, 0.022198736667633057, 0.04562656581401825,
- 0.098386749625206, -0.10591812431812286, -0.02980722300708294, 0.007625224534422159,
- 0.025665346533060074, -0.054499126970767975, 0.003508792957291007,
- -0.029102645814418793, -0.09327878057956696, 0.016237590461969376, 0.015198370441794395,
- -0.11052839457988739, -0.06155730411410332, -0.012943483889102936,
- 0.0005104728043079376, 0.13928309082984924, -0.0348922535777092, 0.05051211267709732,
- 0.11588568985462189, 0.10886235535144806, -0.03309593349695206, 0.05606682971119881,
- -0.029154811054468155, -0.08367928117513657, 0.09636977314949036, -0.013688257895410061,
- -0.019240722060203552, 0.10838060081005096, 0.008657749742269516, -0.04481001943349838,
- -0.06334845721721649, -0.008418379351496696, 0.06449007242918015, 0.17541144788265228,
- 0.03921866416931152, 0.031548358500003815, 0.046749297529459, -0.022401951253414154,
- -0.0023408979177474976, 0.06239752471446991, -0.00912794005125761, 0.02989133819937706,
- -0.004585077054798603, 0.014463754370808601, -0.04857194423675537, 0.038254424929618835,
- -0.09605998545885086, 0.05715031921863556, 0.019925914704799652, -0.016966482624411583,
- 0.050798673182725906, -0.06784089654684067, 0.020441841334104538, -0.15061593055725098,
- -0.0841413289308548, -0.03507443889975548, 0.08806917816400528, -0.04357389733195305,
- -0.03768956661224365, -0.025390081107616425, 0.0024750549346208572, 0.07814748585224152,
- 0.03667956590652466, -0.06077136844396591, -0.041831061244010925, -0.03166293725371361,
- -0.060093723237514496, -0.04592130705714226, 0.004853542894124985, 0.2752946615219116,
- -0.07725857198238373, 0.014935590326786041, 0.08118651807308197, -0.11338400840759277,
- 0.3988046944141388, 0.00829770602285862, -0.023145468905568123, 0.03793264925479889,
- 0.0600452795624733, 0.047582656145095825, 0.0320369191467762, 0.045455098152160645,
- -0.0007154317572712898, 0.04576830193400383, -0.07648178935050964,
- -0.002680558245629072, 0.06147601827979088, 0.04015641659498215, -0.0006215565372258425,
- -0.047490887343883514, -0.018983466550707817, -0.06702514737844467,
- 0.017416976392269135, -0.040636710822582245, 0.1261812150478363, 0.09486770629882812,
- -0.016694070771336555, 0.022805318236351013, 0.07191891968250275, -0.06982269883155823,
- 0.03967595845460892, -0.026968250051140785, 0.05218930542469025, -0.030980398878455162,
- 0.06136992201209068, 0.00797254964709282, -0.004170894622802734, -0.016812704503536224,
- 0.013206860981881618, 0.03223284333944321, 0.06734228134155273, 0.04837745428085327,
- 0.00046377116814255714, 0.06039749085903168, 0.12096443772315979, -0.07706884294748306,
- -0.06815269589424133, -0.005884585902094841, -0.04591256380081177, 0.024874724447727203,
- -0.04245588183403015, 0.03580030798912048, -0.052506424486637115, -0.21038471162319183,
- 0.00686819339171052, 0.03893641382455826, -0.02216504141688347, -0.04652848839759827,
- 0.00686079915612936, -0.07417337596416473, 0.0707264319062233, -0.05116069316864014,
- -0.04673716425895691, 0.03546231612563133, 0.054063815623521805, 0.05813403055071831,
- 0.10240937769412994, 0.044468723237514496, -0.048678137362003326, -0.04078202694654465,
- -0.0006491746753454208, -0.03756610304117203, 0.09254507720470428, -0.12450578063726425,
- -0.05687745660543442, 0.023840175941586494, -0.023589929565787315, 0.6212154626846313,
- 0.10616715252399445, 0.14624299108982086, -0.04093408212065697, -0.01926327496767044,
- 0.17998138070106506, -0.02857350744307041, 0.07450370490550995, -0.0677342563867569,
- -0.025533882901072502, 0.022943168878555298, -0.08883409947156906, -0.03192747011780739,
- 0.016187921166419983, 0.024946290999650955, 0.09675097465515137, 0.008736396208405495,
- 0.09749503433704376, -0.009034983813762665, -0.1054537445306778, -0.03510062396526337,
- 0.04107239097356796, 0.01738269254565239, -0.12967729568481445, -0.04927513748407364,
- 0.031212393194437027, 0.07687107473611832, -0.06347231566905975, 0.02793757990002632,
- -0.06932543963193893, 0.0859120786190033, -0.006201147101819515, 0.010384714230895042,
- -0.0045757959596812725, 0.02823653258383274, 0.0388275608420372, 0.0684250220656395,
- -0.014399798586964607, -0.06439987570047379, -0.049993790686130524, 0.09137964248657227,
- -0.02472355216741562, -0.04102765768766403, 0.05694693699479103, -0.06203347444534302,
- 0.0698154866695404, 0.01172958966344595, 0.15390630066394806, -0.13284608721733093,
- 0.01186426728963852, -0.021217036992311478, -0.009312136098742485, 0.0523543506860733,
- -0.01222277246415615, -0.06386426091194153, -0.08597580343484879, 0.1510218381881714,
- -0.024348866194486618, 0.06453604251146317, 0.018951741978526115, -0.08277268707752228,
- 0.052742473781108856, 0.06542855501174927, 0.026169143617153168, -0.037768200039863586,
- 0.06026872247457504, 0.04579780623316765, -0.03354817256331444, 0.01060798391699791,
- 0.04423457756638527, 0.05576595664024353, 0.05997736006975174, -0.030009958893060684,
- 0.07005704939365387, -0.023447580635547638, -0.061825040727853775, 0.03258416801691055,
- 0.01037588156759739, 0.0018721967935562134, 0.08951637148857117, -0.12584340572357178,
- -0.015963073819875717, -0.04890580475330353, -0.000599508173763752,
- -0.008048128336668015, -0.04390692338347435, 0.06061193346977234, 0.0976511687040329,
- 0.05191568657755852, 0.00830368883907795, 0.030596677213907242, 0.035217348486185074,
- 0.12467586249113083, -0.00884296651929617, 0.13046225905418396, 0.012653660029172897,
- -0.007528034970164299, -0.02473721094429493, -0.019057590514421463, 0.05586421489715576,
- -0.010779330506920815, -0.05487944930791855, -0.041485466063022614,
- -0.025825150310993195, -0.01601802185177803, -0.13492292165756226, -0.03023367188870907,
- 0.02814934030175209, -0.02828274294734001, -0.09877066314220428, -0.1029265895485878,
- -0.0772276222705841, 0.006986427120864391, 0.09351372718811035, -0.03454049676656723,
- -0.024625886231660843, -0.10861010104417801, -0.010278438217937946,
- -0.01124873198568821, 0.07502229511737823, -0.037426866590976715, 0.04742519557476044,
- -0.03550124168395996, -0.06773018836975098, 0.0015678487252444029, 0.013848564587533474,
- 0.03168603777885437, -0.009559550322592258, -0.05152468383312225, -0.04337509721517563,
- -0.03303508833050728, -0.022836295887827873, 0.00808941014111042, 0.0018894243985414505,
- 0.04856231063604355, 0.07657270133495331, -0.015722176060080528, -0.021395936608314514,
- 0.03768030181527138, -0.04637639969587326, 0.0065529439598321915, 0.09068779647350311,
- -0.03585965186357498, 0.029530569911003113, 0.016435008496046066, -0.059294648468494415,
- -0.06690201163291931, -0.048123084008693695, -0.027665985748171806, 0.04767556115984917,
- -0.025968749076128006, -0.02954276278614998, -0.033195801079273224, -0.003460384439677,
- 0.06734222173690796, -0.04851408675312996, -0.03708998113870621, -0.059782322496175766,
- 0.13535669445991516, -0.007089085876941681, 0.042270682752132416, 0.058542344719171524,
- -0.030622847378253937, 0.0652148649096489, 0.004235576838254929, 0.011876360513269901,
- 0.0455465167760849, 0.06308265030384064, 0.010185270570218563, 0.009266264736652374,
- 0.08737769722938538, -0.028346527367830276, 0.013048537075519562, 0.076522096991539,
- 0.435955286026001, -0.26651978492736816, 0.10248124599456787, 0.10371065139770508,
- 0.0714060366153717, 0.03539590537548065, 0.015182863920927048, 0.09152454137802124,
- 0.06006811559200287, 0.11955535411834717, 0.12388555705547333, -0.07296498119831085,
- 0.00663073780015111, -0.04996809363365173, 0.09437984973192215, 0.017209962010383606,
- 0.03601464629173279, 0.02006450667977333, -0.06885679066181183, -0.04674246907234192,
- 0.029507368803024292, -0.08480815589427948, 0.012309495359659195, 0.004619816318154335,
- -0.09766152501106262, 0.05020586773753166, 0.08266111463308334, 0.06363154947757721,
- -0.02816733717918396, 0.034496188163757324, 0.0008634370751678944, 0.036648839712142944,
- 0.028360959142446518, 0.0023936014622449875, -0.0863741785287857, 0.015685157850384712,
- -0.037282008677721024, -0.05213794857263565, 0.067621149122715, -0.006778182461857796,
- 0.03965494781732559, 0.06012353301048279, -0.03539574518799782, 0.013157811015844345,
- -0.012311113998293877, -0.0650687962770462, -0.013487734831869602, 0.01766505092382431,
- 0.03589479625225067, 0.10604973137378693, 0.13289394974708557, -0.020681656897068024,
- -0.004101259633898735, -0.05766282230615616, 0.0428994745016098, 0.12300737202167511,
- -0.0021644020453095436, -0.0009813793003559113, -0.007052217610180378,
- 0.03632790222764015, -0.015760129317641258, -0.042559485882520676, -0.07987165451049805,
- -0.03751015663146973, -0.10311803221702576, 0.11261644214391708, 0.050028152763843536,
- -0.03575175255537033, -0.14523783326148987, 0.0020372793078422546, -0.09571386873722076,
- 0.021847594529390335, 0.10819147527217865, -0.0900384783744812, 0.0027207573875784874,
- -0.04648049920797348, 0.016978411003947258, -0.0026544767897576094,
- -0.05558548867702484, -0.013377678580582142, -0.08729708194732666, 0.04583817720413208,
- 0.08757809549570084, 0.0651322528719902, -0.04934462159872055, 0.03889662027359009,
- -0.09041262418031693, 0.031736791133880615, 0.007284408435225487, -0.07228363305330276,
- 0.03664443641901016, 0.020054243505001068, 0.05508342385292053, 0.010803651064634323,
- -0.06336717307567596, 0.02434389293193817, -0.012995089404284954,
- -0.0034229676239192486, -0.07335410267114639, -0.06378287076950073,
- -0.05916362628340721, -0.08171416819095612, 0.04110174626111984, -0.08044420927762985,
- -0.0004382493207231164, -0.025869660079479218, 0.003346262499690056,
- -0.020917637273669243, 0.0441197007894516, 0.020069926977157593, -0.10316908359527588,
- 0.018309270963072777, -0.03887327015399933, 0.0840281993150711, -0.045798927545547485,
- -0.0659121423959732, 0.024397894740104675, 0.08062726259231567, 0.05028221011161804,
- -0.040661945939064026, -0.0026148357428610325, -0.001241820864379406,
- 0.05778208747506142, -0.1205240935087204, -0.5564371943473816, 0.045266419649124146,
- 0.030390888452529907, 0.021074308082461357, 0.0075964536517858505, -0.06647627800703049,
- 0.0752396509051323, 0.020346319302916527, -0.05808310955762863, 0.07807847857475281,
- -0.02874256670475006, 0.04301741346716881, -0.015167523175477982, -0.04142779856920242,
- 0.014511723071336746, -0.03486243635416031, -0.05869312584400177, 0.05082147568464279,
- 0.001981251174584031, -0.061127062886953354, -0.07030323892831802, 0.03914754092693329,
- 0.02854457125067711, 0.030329542234539986, 0.006429761648178101, 0.040014080703258514,
- -0.025699805468320847, -0.059987589716911316, 0.059238582849502563,
- 0.051412515342235565, 0.0435074120759964, -0.0721503347158432, -0.005213271826505661,
- 0.08115722984075546, 0.028137199580669403, 0.10549214482307434, 0.018340978771448135,
- -0.018303558230400085, -0.05562976002693176, 0.08458162844181061, 0.0645681768655777,
- 0.1878441572189331, -0.021898455917835236, 0.058465465903282166, -0.030781667679548264,
- 0.07479368895292282, 0.05209415405988693, 0.006954160053282976, -0.024025999009609222,
- -0.014913683757185936, -0.00041052699089050293, -0.025364898145198822,
- 0.055450860410928726, -0.053011924028396606, -0.04652857780456543, 0.00600278377532959,
- -0.028471115976572037, -0.04038809984922409, -0.008316046558320522, 0.17741699516773224,
- 0.01345096156001091, -0.00792661216109991, 0.04200160875916481, -0.04560641944408417,
- 0.016239216551184654, -0.09223611652851105, -0.034415103495121, -0.015454614534974098,
- -0.0015785193536430597, 0.0006195763126015663, -0.07348456978797913,
- -0.07502968609333038, -0.045427631586790085, 0.028088022023439407,
- -0.0007480848580598831, 0.13160768151283264, -0.040699198842048645, 0.03397328779101372,
- -0.00981830433011055, 0.1224551647901535, 0.05107787251472473, 0.02295750193297863,
- 0.05663451924920082, 0.029464714229106903, 0.02495468035340309, 0.02222939394414425,
- -0.029453065246343613, -0.07903921604156494, -0.02310950867831707, 0.09426482021808624,
- -0.009218627586960793, 0.1340586245059967, 0.046219173818826675, -0.006390922702848911,
- -0.06104406714439392, 0.006713253445923328, -0.01061611995100975, 0.0022253659553825855,
- -0.5315032601356506, -0.06479452550411224, 0.06910797953605652, -0.010788274928927422,
- 0.0066720182076096535, 0.09535270929336548, 0.0086597865447402, -0.047919172793626785,
- -0.03847843408584595, -0.08351601660251617, 0.10044336318969727, 0.0053674946539103985,
- 0.04460306093096733, -0.12601542472839355, 0.026121852919459343, 0.07804621011018753,
- -0.004406434018164873, 0.008250633254647255, 0.04217606037855148, -0.2483627200126648,
- -0.013593854382634163, -0.03658756613731384, 0.1723865270614624, 0.008300187066197395,
- 0.0167076475918293, 0.10092402994632721, -0.0038098525255918503, 0.036302898079156876,
- 0.023474736139178276, 0.04583495110273361, 0.0801314115524292, -0.0338246151804924,
- 0.018001822754740715, 0.06739597022533417, 0.10237714648246765, 0.07988836616277695,
- -0.010043798014521599, 11.87845230102539, 0.04620054364204407, 0.06889164447784424,
- -0.0910690575838089, 0.022492801770567894, -0.03354246914386749, 0.020222166553139687,
- -0.10626739263534546, 0.024469269439578056, 0.1235198974609375, -0.022028477862477303,
- -0.07332033663988113, -0.0718098133802414, -0.05992948263883591, 0.030671045184135437,
- -0.04997529834508896, -0.08868139982223511, -0.04624336212873459, 0.0680883377790451,
- -0.08203072100877762, -0.02260591834783554, 0.04516676813364029, 0.02367679961025715,
- 0.016309818252921104, -0.07707220315933228, 0.04224608838558197, 0.03543145954608917,
- 0.02636374905705452, 0.024105172604322433, 0.018723109737038612, 0.03173115849494934,
- -0.008819473907351494, 0.06774263828992844, 0.020940637215971947, 0.044882796704769135,
- 0.08145271241664886, 0.03611733764410019, 0.0374554805457592, 0.02118811197578907,
- 0.07352659106254578, 0.0052967369556427, -0.005090478342026472, 0.021555539220571518,
- 0.0035506479907780886, 0.050309352576732635, 0.06452994793653488, 0.0038060240913182497,
- 0.1256415843963623, 0.022213589400053024, 0.03472430631518364, 0.08472791314125061,
- 0.013287474401295185, 0.10312418639659882, 0.02577929198741913, -0.004889822565019131,
- 0.053651727735996246, -0.023986825719475746, -0.06655953079462051, 0.0812317281961441,
- -0.00336740561760962, -0.029369451105594635, 0.12875014543533325, 0.060995373874902725,
- 0.057285651564598083, 0.017488550394773483, 0.029231511056423187, 0.07241473346948624,
- 0.11736670136451721, -0.09094308316707611, -0.06910798698663712, 0.05295385792851448,
- -0.06794935464859009, -0.07862421870231628, 0.07786007225513458, 0.07686719298362732,
- -0.05163197219371796, 0.04174915701150894, -0.015443429350852966, 0.04285512864589691,
- -0.04199549928307533, 0.018652547150850296, 0.07181239128112793, -0.021296696737408638,
- 0.008590093813836575, 0.05536061152815819, 0.0338791087269783, 0.043367817997932434,
- 0.11341482400894165, -0.021950775757431984, -0.06165437400341034, -0.09037061035633087,
- 0.0733073502779007, 0.024165000766515732, -0.06481100618839264, 0.033309899270534515,
- -0.07152105867862701, 0.04121580719947815, -0.1866951584815979, 0.09115529805421829,
- 0.10597115755081177, -0.11351674795150757, -0.042321547865867615, -0.014909734949469566,
- 0.06441915780305862, 0.021954171359539032, 0.0028293102513998747, -0.015789126977324486,
- -0.012299740687012672, -0.007626425474882126, 0.04289514571428299,
- -0.018249033018946648, 0.04367932677268982, 0.06159291788935661, -0.06730663031339645,
- -0.02483474835753441, 0.035105712711811066, -0.03989148139953613, 0.002987131243571639,
- 0.053837187588214874, 0.03390055149793625, -0.06369855999946594, -0.04598378390073776,
- -0.07804542779922485, -0.0028443634510040283, -0.003698119195178151,
- -0.03700754791498184, -0.006170358043164015, 0.018177980557084084, -0.04684048146009445,
- -0.0030812094919383526, 0.062150321900844574, 0.0624275803565979, 0.07924716919660568,
- 0.013010447844862938, 0.06463449448347092, -0.037852443754673004, -0.03514409065246582,
- 0.03447578102350235, 0.04166071116924286, 0.06610628217458725, -0.06968444585800171,
- -0.06617491692304611, -0.03505972772836685, -0.1385699212551117, 0.0065938690677285194,
- 0.10134445130825043, 0.007458881475031376, 0.023327715694904327, 0.02308029681444168,
- -0.10433181375265121, -0.007862290367484093, 0.09171146154403687, 0.07983243465423584,
- 0.0449126698076725, 0.07049977034330368, -0.015310008078813553, -0.04229441285133362,
- 0.07137016952037811, -0.05235595628619194, -0.0013104798272252083, 0.033037200570106506,
- -0.1256173998117447, 0.08567919582128525, 0.08729159832000732, 0.013612320646643639,
- 0.04946967214345932, 0.03748463839292526, 0.03423476964235306, 0.041336916387081146,
- 0.03121218830347061, 0.009789573028683662, -0.030831215903162956, -0.07007522881031036,
- -0.08202779293060303, -0.010047407820820808, 0.07568495720624924, 0.026651985943317413,
- -0.11812306940555573, -0.01757240667939186, -0.052879463881254196
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 280,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 62,
- "similarity": 0.9946030974388123
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 222,
- "similarity": 0.9944755434989929
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 73,
- "similarity": 0.9938090443611145
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Amanda Lewis"],
- "epoch_date_downloaded": 1660089600,
- "epoch_date_modified": 1660089600,
- "epoch_date_submitted": 1660089600,
- "flag": null,
- "report_number": 1873,
- "source_domain": "laweekly.com",
- "submitters": ["Khoa Lam"],
- "title": "Coffee Meets Bagel: The Online Dating Site That Helps You Weed Out the Creeps",
- "url": "https://www.laweekly.com/coffee-meets-bagel-the-online-dating-site-that-helps-you-weed-out-the-creeps/"
- },
- {
- "__typename": "Report",
- "authors": ["Katie Notopoulos"],
- "epoch_date_downloaded": 1660089600,
- "epoch_date_modified": 1660089600,
- "epoch_date_submitted": 1660089600,
- "flag": null,
- "report_number": 1872,
- "source_domain": "buzzfeednews.com",
- "submitters": ["Ingrid Dickinson (CSET)"],
- "title": "The Dating App That Knows You Secretly Aren’t Into Guys From Other Races",
- "url": "https://www.buzzfeednews.com/article/katienotopoulos/coffee-meets-bagel-racial-preferences"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "youtube",
- "name": "YouTube"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "youtube",
- "name": "YouTube"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "youtube-young-users",
- "name": "YouTube young users"
- },
- {
- "__typename": "Entity",
- "entity_id": "youtube-users",
- "name": "YouTube users"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1877, 1876, 1875],
- "vector": [
- -0.0676160454750061, 0.05520758405327797, 0.008479286916553974, -0.11686530709266663,
- 0.09003029018640518, -0.03364892676472664, 0.0508856326341629, 0.04115558788180351,
- 0.04136406257748604, -0.11711277812719345, 0.043681930750608444, 0.02466399408876896,
- 0.023567447438836098, -0.07493218779563904, 0.03162554278969765, -0.12602880597114563,
- -0.11015184968709946, -0.040426310151815414, -0.01878095231950283, -0.1274317353963852,
- -0.09238366037607193, 0.02616388164460659, 0.040333155542612076, 0.12319827079772949,
- -0.03787056729197502, 0.010548229329288006, 0.09543430805206299, 0.14842747151851654,
- -0.031179556623101234, 0.018757348880171776, -0.027584001421928406,
- -0.03705489635467529, 0.11978620290756226, 0.03078019618988037, -0.004443411249667406,
- 0.10056117177009583, 0.0329594761133194, -0.0436285026371479, -0.008207103237509727,
- 0.002130185253918171, 0.05254882946610451, 0.2449619024991989, -0.037123724818229675,
- -0.010950561612844467, 0.03359236195683479, -0.06414405256509781, 0.010899613611400127,
- 0.027830729261040688, 0.012514415197074413, -0.012411360628902912, -0.01773916743695736,
- 0.03594457358121872, -0.03874555602669716, 0.05451572313904762, -0.10692507028579712,
- 0.08350806683301926, 0.05146818235516548, -0.03380993753671646, 0.031306926161050797,
- -0.07525043934583664, -0.057297080755233765, -0.19934344291687012,
- -0.056141506880521774, -0.09232880920171738, 0.0882749855518341, -0.11790240556001663,
- -0.012686502188444138, 0.03216731175780296, 0.027475805953145027, 0.07940531522035599,
- 0.06895004957914352, -0.04257215932011604, -0.043876588344573975, -0.006409561727195978,
- 0.05583940073847771, -0.055852219462394714, 0.0775006040930748, 0.2290593534708023,
- -0.09768185019493103, 0.017848188057541847, 0.11414901167154312, -0.10136189311742783,
- 0.4245929718017578, -0.011855977587401867, -0.0009829095797613263, 0.033852361142635345,
- 0.0632101371884346, -0.015230700373649597, 0.018022289499640465, 0.02632747031748295,
- 0.005021074786782265, 0.06170104071497917, -0.06815707683563232, 0.03016001731157303,
- 0.08411911129951477, 0.014054897241294384, -0.03507478907704353, 0.03937746584415436,
- 0.0050987545400857925, -0.08688589930534363, 0.013028912246227264, -0.01891397498548031,
- 0.09365461021661758, 0.11916402727365494, -0.0363425612449646, 0.04366080090403557,
- 0.04709532484412193, -0.04622187837958336, 0.04298655316233635, -0.04056257754564285,
- -0.009642822667956352, 0.009772994555532932, 0.12504692375659943,
- -0.0020796488970518112, 0.06192808970808983, -0.010034569539129734,
- 0.016510212793946266, 0.10882654041051865, 0.0807385966181755, 0.04516642168164253,
- 0.03229440376162529, 0.06350412964820862, 0.09447292238473892, -0.08204760402441025,
- -0.00990131963044405, -0.02122841589152813, -0.10354410856962204, -0.024719567969441414,
- -0.002424760488793254, 0.040545105934143066, -0.08094950765371323, -0.2543313801288605,
- 0.01880236342549324, 0.041361674666404724, 0.017282919958233833, -0.03816390037536621,
- 0.010322465561330318, -0.08039180189371109, 0.016595231369137764, -0.04199935868382454,
- -0.01591360755264759, 0.07049012929201126, -0.021269047632813454, 0.06157803162932396,
- 0.10111918300390244, 0.05010664090514183, -0.05929630994796753, -0.05296416953206062,
- -0.014273473061621189, -0.0103493956848979, 0.10666085034608841, -0.12840622663497925,
- -0.047244299203157425, -0.0035054218024015427, 0.0354202575981617, 0.6717178225517273,
- 0.12382852286100388, 0.14750389754772186, 0.007843554019927979, 0.00450609577819705,
- 0.17841875553131104, -0.025937924161553383, 0.05412910506129265, -0.12200746685266495,
- -0.09970001131296158, 0.022895419970154762, -0.06579986959695816, -0.056671787053346634,
- -0.0010970623698085546, 0.03161996603012085, 0.09266099333763123, 0.03687523305416107,
- 0.1321769505739212, 0.02768063358962536, -0.1274157613515854, -0.04731470346450806,
- 0.04501662775874138, 0.03591693565249443, -0.10502845048904419, -0.05367683246731758,
- 0.009994877502322197, 0.0898679718375206, -0.04687538370490074, 0.014032681472599506,
- -0.0530829131603241, 0.11199267953634262, 0.009309542365372181, 0.029185673221945763,
- -0.014816022478044033, 0.029790205880999565, 0.020865006372332573, 0.008620711974799633,
- -0.010469474829733372, -0.07871907949447632, 0.02068624459207058, 0.1404387205839157,
- 0.002307497663423419, -0.06256864219903946, 0.09246063232421875, -0.0995638445019722,
- 0.022298665717244148, 0.10073035955429077, 0.16862376034259796, -0.13191215693950653,
- -0.03102411888539791, -0.02647632360458374, -0.035313528031110764, 0.04948952794075012,
- -0.011715799570083618, -0.0781593844294548, -0.06976037472486496, 0.0248181764036417,
- 0.02524886094033718, 0.06891492009162903, 0.040754739195108414, -0.03471184894442558,
- 0.038412440568208694, 0.05157610774040222, 0.036015648394823074, -0.036740660667419434,
- 0.08416686207056046, 0.054924290627241135, -0.09286117553710938, -0.07210525125265121,
- 0.05658109113574028, 0.08652492612600327, 0.01917930878698826, 0.0031116444151848555,
- 0.07701335102319717, 0.022712962701916695, -0.006932930555194616, 0.10955467075109482,
- -0.012039211578667164, -0.012471211142838001, 0.0779288113117218, -0.10088154673576355,
- -0.08016154915094376, -0.03145640715956688, -0.010014530271291733, 0.014077834784984589,
- -0.03521877899765968, 0.11562902480363846, 0.09679100662469864, 0.06479525566101074,
- 0.02706521563231945, 0.03214680776000023, 0.09043112397193909, -0.02649955451488495,
- 0.05861851945519447, 0.029907183721661568, -0.04255491867661476, -0.04941563680768013,
- -0.048001524060964584, -0.00960532482713461, 0.07905318588018417, 0.06008963659405708,
- -0.0988788977265358, -0.010084464214742184, 0.01875072717666626, -0.05621140077710152,
- -0.14388738572597504, 0.014890513382852077, 0.02188478223979473, 0.002462956355884671,
- -0.04192863032221794, -0.08004748076200485, -0.12884588539600372, -0.032392412424087524,
- 0.07696826010942459, -0.030792931094765663, -0.016786741092801094, -0.13088057935237885,
- 0.028912799432873726, -0.03484181687235832, 0.0641273781657219, -0.024487396702170372,
- 0.04779514670372009, 0.03723150119185448, -0.06644171476364136, -0.012297487817704678,
- 0.0015272867167368531, -0.1262635886669159, -0.004451785236597061, -0.05915229395031929,
- -0.05739806219935417, -0.015329736284911633, 0.00572657585144043, -0.003161924658343196,
- 0.05036909878253937, 0.04745291545987129, 0.04099532589316368, -0.008680121041834354,
- 0.010476309806108475, 0.06364285945892334, -0.05859646201133728, 0.034084875136613846,
- 0.08936503529548645, -0.029949506744742393, 0.030926411971449852, -0.04224162921309471,
- -0.06901206821203232, -0.024044102057814598, -0.04032519832253456, -0.0693153515458107,
- 0.09230608493089676, -0.0245650801807642, 0.004532454069703817, -0.050720687955617905,
- -0.07352491468191147, 0.07081974297761917, -0.09189029783010483, -0.05793038010597229,
- -0.06863435357809067, 0.10696404427289963, -0.010802674107253551, 0.02206561528146267,
- -0.03124707005918026, -0.06997393816709518, 0.04449121654033661, -0.0213144700974226,
- -0.006098531186580658, 0.06690623611211777, 0.030025452375411987, -0.05938764289021492,
- 0.04416269436478615, 0.09145447611808777, 0.013151084072887897, -0.005823542829602957,
- 0.09429705142974854, 0.42255762219429016, -0.20175619423389435, 0.09248117357492447,
- 0.05602547153830528, -0.023690925911068916, 0.04666721448302269, 0.0007002775673754513,
- 0.08852650970220566, 0.08370556682348251, 0.1378551572561264, 0.08974961191415787,
- -0.07117048650979996, -0.0008269275422208011, -0.10547157377004623, 0.06609031558036804,
- 0.021925315260887146, 0.013020475395023823, 0.03496720269322395, -0.06048430874943733,
- -0.03757674992084503, 0.045713674277067184, -0.03767460212111473, 0.021857062354683876,
- 0.012510761618614197, -0.08472141623497009, 0.08059586584568024, -0.019762368872761726,
- 0.059004366397857666, -0.005798595491796732, 0.04658375307917595, -0.013162174262106419,
- 0.03236927464604378, -0.007352802436798811, 0.03437580540776253, -0.09605127573013306,
- 0.02443770132958889, -0.039610058069229126, -0.13015592098236084, 0.08906412124633789,
- 0.01574561931192875, 0.08033028990030289, 0.06245307996869087, 0.004961936268955469,
- 0.04482593014836311, -0.051043834537267685, -0.077519990503788, -0.00364289921708405,
- 0.036691535264253616, 0.013406326062977314, 0.06978496164083481, 0.17149217426776886,
- -0.033596619963645935, -0.014677648432552814, -0.07173675298690796, 0.05239548161625862,
- 0.1164831891655922, -0.029062194749712944, 0.05082358792424202, 0.004813907202333212,
- 0.015037131495773792, 0.010408085770905018, -0.02114625833928585, -0.062215566635131836,
- -0.028477763757109642, -0.00499792629852891, 0.06360817700624466, 0.041403211653232574,
- -0.060515597462654114, -0.15836937725543976, -0.026302969083189964,
- -0.05508362129330635, 0.007712225895375013, 0.11975547671318054, -0.07286930084228516,
- 0.023304542526602745, 0.015011592768132687, -0.01448094379156828, -0.01621275581419468,
- -0.08135346323251724, -0.003594683250412345, -0.07388029992580414, 0.06631042063236237,
- -0.013893548399209976, 0.0479021854698658, -0.09280247241258621, 0.10067540407180786,
- -0.1331028789281845, 0.0632522851228714, -0.025354856625199318, 0.0052159675396978855,
- 0.020254386588931084, -0.05336366593837738, 0.03729875758290291, 0.04687437787652016,
- -0.0649118423461914, 0.0029477651696652174, 0.0022832700051367283,
- -0.035267382860183716, -0.1199311837553978, -0.10209745168685913, -0.03251167759299278,
- -0.0849827229976654, 0.06238660216331482, -0.027868108823895454, 0.04384768009185791,
- -0.025739656761288643, -0.04380616545677185, 0.007516033947467804, 0.0435367189347744,
- 0.00742001598700881, -0.19931340217590332, -0.07140593230724335, -0.010081702843308449,
- 0.04218590259552002, -0.016728539019823074, -0.039870817214250565, 0.005649844650179148,
- 0.04624898359179497, 0.03499951958656311, -0.054022032767534256, 0.04572948440909386,
- -0.07850807905197144, 0.06506934016942978, -0.10799979418516159, -0.4576243460178375,
- 0.046749264001846313, -0.0005502295098267496, 0.058572012931108475, 0.02047898806631565,
- -0.09179741144180298, 0.05463753268122673, 0.04000832885503769, -0.05906739830970764,
- 0.08907798677682877, -0.053194720298051834, 0.05385846272110939, -0.010479748249053955,
- -0.07735145837068558, -0.003754459321498871, -0.07183168083429337, -0.03261640667915344,
- 0.009511386975646019, -0.018584396690130234, -0.07909887284040451, -0.09941957145929337,
- 0.03401995822787285, 0.0025853088591247797, -0.010594848543405533,
- -0.004195415880531073, 0.023484021425247192, -0.10398121923208237, -0.06072000041604042,
- 0.014148913323879242, 0.09598957747220993, 0.0015117954462766647, -0.06310608983039856,
- -0.05535964295268059, 0.04229815676808357, 0.006015984807163477, 0.1301540583372116,
- 0.04651713743805885, -0.057351578027009964, -0.08763318508863449, 0.052426278591156006,
- 0.06006551906466484, 0.18074457347393036, -0.029500827193260193, 0.06328082829713821,
- 0.039487823843955994, 0.19160278141498566, 0.0006755829672329128, 0.042071953415870667,
- -0.06614059209823608, 0.03126175329089165, 0.0403062105178833, 0.01652410440146923,
- 0.07274022698402405, -0.10822474956512451, -0.031420979648828506, -0.028416698798537254,
- -0.05336490273475647, -0.018093986436724663, -0.01899765618145466, 0.19514232873916626,
- 0.03780399635434151, 0.036908168345689774, -0.005462709814310074, -0.058995503932237625,
- 0.007310344371944666, -0.08981943875551224, -0.08608333021402359, -0.015589319169521332,
- 0.012846576981246471, 0.039317771792411804, -0.01908569224178791, -0.12407553195953369,
- -0.01035295519977808, -0.047377217561006546, 0.028122475370764732, 0.1046968325972557,
- -0.059150803834199905, 0.03568507358431816, -0.03594841808080673, 0.15930278599262238,
- 0.03097824938595295, 0.06718271970748901, 0.06055307388305664, 0.14355941116809845,
- 0.04427553713321686, -0.01982639729976654, -0.06314472109079361, -0.10209111124277115,
- -0.04345746710896492, 0.17241036891937256, -0.037400443106889725, 0.1354900598526001,
- 0.03235211595892906, 0.006125703454017639, -0.031948868185281754, 0.02766513079404831,
- -0.056277692317962646, -0.0005551825161091983, -0.431164026260376, -0.03721868619322777,
- 0.13840371370315552, 0.016404036432504654, 0.00008769108535489067, 0.07851047068834305,
- 0.03819708898663521, -0.04307034984230995, -0.05223291739821434, -0.11659527570009232,
- 0.1897127628326416, 0.0069451411254704, 0.06572359055280685, -0.12949970364570618,
- 0.023474333807826042, 0.08716773986816406, -0.014348623342812061, -0.056419212371110916,
- 0.05862388014793396, -0.18663321435451508, 0.008725930005311966, -0.01898128166794777,
- 0.16362041234970093, -0.0072151473723351955, 0.03557002171874046, 0.11610180139541626,
- -0.030234718695282936, 0.030446475371718407, 0.011811626143753529,
- -0.0006826401804573834, 0.035970114171504974, -0.00469904113560915,
- -0.07389277219772339, 0.08500688523054123, 0.1218489408493042, 0.11136291176080704,
- -0.04227113723754883, 12.299288749694824, 0.0803944393992424, 0.06242890655994415,
- -0.11934546381235123, 0.010513809509575367, -0.046251457184553146, 0.007582586258649826,
- -0.1717836856842041, 0.04051830247044563, 0.12239871174097061, -0.02580057643353939,
- -0.010411227121949196, -0.019776854664087296, -0.13025659322738647,
- 0.0006558180903084576, -0.04054952785372734, -0.0347629114985466, -0.06390497088432312,
- 0.05525476858019829, -0.05252552032470703, -0.08198419213294983, 0.020403621718287468,
- 0.08091729879379272, 0.014708801172673702, -0.09401512891054153, 0.0558781772851944,
- -0.030386706814169884, 0.005612797569483519, 0.0019995560869574547,
- -0.011257018893957138, 0.02737608551979065, 0.04938630387187004, 0.04571273922920227,
- 0.017690883949398994, 0.04129799082875252, 0.01814875192940235, -0.005637124180793762,
- 0.007987217046320438, 0.00956056173890829, 0.07611159235239029, -0.03870024159550667,
- 0.0032978795934468508, 0.00030397530645132065, 0.06545371562242508, 0.05858096480369568,
- 0.03142344579100609, 0.05413297936320305, 0.11856645345687866, 0.02867485024034977,
- 0.08853236585855484, 0.10762902349233627, 0.02801697701215744, 0.14600463211536407,
- 0.05587500333786011, 0.007239148020744324, 0.09093394130468369, -0.04080129787325859,
- -0.10141203552484512, 0.10602400451898575, 0.03593841567635536, -0.05611841008067131,
- 0.14450214803218842, 0.036413878202438354, 0.17932794988155365, 0.0722137838602066,
- 0.04706782102584839, 0.08281492441892624, 0.08531874418258667, -0.14715422689914703,
- -0.05249056592583656, -0.023421257734298706, -0.08594522625207901, -0.02387070097029209,
- 0.03844915330410004, 0.06125117465853691, -0.01251074206084013, 0.05136611685156822,
- -0.007347668055444956, 0.0523575097322464, -0.03713220730423927, 0.014679040759801865,
- 0.049469053745269775, -0.08459550887346268, 0.006073943804949522, 0.05191351845860481,
- 0.007486941292881966, 0.10142935067415237, 0.10106804221868515, 0.013844938017427921,
- -0.16806955635547638, -0.051221173256635666, 0.12733246386051178, 0.01705300249159336,
- -0.0434124581515789, -0.029474787414073944, -0.04454846307635307, -0.000958940654527396,
- -0.16445066034793854, 0.08734530210494995, 0.13555389642715454, -0.08128374069929123,
- -0.06354793161153793, -0.04589320346713066, 0.13552016019821167, 0.004498484544456005,
- 0.006221286952495575, -0.09972607344388962, -0.02383994311094284, -0.001400998793542385,
- 0.0435427688062191, -0.055709440261125565, 0.08998217433691025, 0.13310506939888,
- -0.06458184868097305, 0.07661259174346924, 0.07572785764932632, -0.021720511838793755,
- -0.043812330812215805, 0.06275945156812668, 0.026276210322976112, -0.10853501409292221,
- -0.003001808188855648, -0.058102380484342575, -0.044252317398786545,
- -0.004545486532151699, -0.03869768977165222, -0.02524731494486332, 0.040553268045186996,
- -0.047615066170692444, -0.02604895830154419, 0.045016828924417496, 0.05473589897155762,
- 0.14408229291439056, 0.006322778761386871, 0.051202576607465744, -0.05908108875155449,
- -0.015262219123542309, 0.08977357298135757, 0.06631283462047577, 0.06306465715169907,
- -0.04511627182364464, -0.06534364074468613, -0.016025817021727562, -0.08602852374315262,
- -0.002679685829207301, 0.1504245549440384, 0.05237552151083946, 0.04137221351265907,
- 0.060993071645498276, -0.08874040842056274, -0.05756065621972084, 0.08174270391464233,
- 0.028559988364577293, -0.019500017166137695, 0.018844911828637123, -0.0437743104994297,
- -0.015588504262268543, 0.10717403888702393, -0.03851333633065224, -0.021878749132156372,
- -0.018856504932045937, -0.06878884881734848, 0.11890971660614014, 0.059970173984766006,
- 0.06634781509637833, 0.03276623785495758, 0.0646822527050972, 0.014339789748191833,
- -0.05092330276966095, 0.018904881551861763, -0.009393248707056046, -0.0449950136244297,
- -0.06675877422094345, -0.09457781165838242, 0.033836666494607925, 0.05050003528594971,
- 0.04337049648165703, -0.13644756376743317, -0.019157735630869865, -0.04185812175273895
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 281,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 1,
- "similarity": 0.9978896975517273
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 229,
- "similarity": 0.9973892569541931
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 15,
- "similarity": 0.9973782300949097
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Sean Keach"],
- "epoch_date_downloaded": 1660089600,
- "epoch_date_modified": 1660089600,
- "epoch_date_submitted": 1660089600,
- "flag": null,
- "report_number": 1877,
- "source_domain": "thesun.co.uk",
- "submitters": ["Ingrid Dickinson (CSET)"],
- "title": "YouTube caught promoting deadly 'how to self harm' tutorials for youngsters aged 13",
- "url": "https://www.thesun.co.uk/tech/8356276/youtube-suicide-self-harm-videos/"
- },
- {
- "__typename": "Report",
- "authors": ["Matthew Field"],
- "epoch_date_downloaded": 1660089600,
- "epoch_date_modified": 1660089600,
- "epoch_date_submitted": 1660089600,
- "flag": null,
- "report_number": 1876,
- "source_domain": "telegraph.co.uk",
- "submitters": ["Khoa Lam"],
- "title": "YouTube recommended self-harm videos to children as young as 13",
- "url": "https://www.telegraph.co.uk/technology/2019/02/04/youtube-recommends-self-harm-videos-children-young-13/"
- },
- {
- "__typename": "Report",
- "authors": ["Nick Bastone"],
- "epoch_date_downloaded": 1660089600,
- "epoch_date_modified": 1660089600,
- "epoch_date_submitted": 1660089600,
- "flag": null,
- "report_number": 1875,
- "source_domain": "businessinsider.in",
- "submitters": ["Khoa Lam"],
- "title": "YouTube criticized for recommending 'self-harm' videos with graphic images",
- "url": "https://www.businessinsider.in/youtube-criticized-for-recommending-self-harm-videos-with-graphic-images/articleshow/67842641.cms"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "facebook",
- "name": "Facebook"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "facebook",
- "name": "Facebook"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "the-seed-company-by-e.w.-gaze",
- "name": "The Seed Company by E.W. Gaze"
- },
- {
- "__typename": "Entity",
- "entity_id": "businesses-on-facebook",
- "name": "businesses on Facebook"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1972, 1881, 1879],
- "vector": [
- -0.0513484962284565, 0.07627130299806595, -0.0023111277259886265, -0.125369131565094,
- 0.0632384642958641, -0.034227680414915085, 0.0004683909937739372, 0.08351999521255493,
- 0.03191686421632767, -0.15131370723247528, -0.033862918615341187, 0.05237670615315437,
- 0.021681832149624825, -0.09558191150426865, 0.001936781220138073, -0.04237890616059303,
- -0.0635603740811348, -0.04646516218781471, 0.024515246972441673, -0.08353635668754578,
- -0.060825418680906296, -0.007927723228931427, 0.06697747856378555, 0.1225137785077095,
- -0.04829726740717888, 0.006183667108416557, 0.055375341325998306, 0.14218585193157196,
- -0.0028010394889861345, 0.046855319291353226, -0.031030520796775818,
- -0.035112496465444565, 0.11774051934480667, 0.01244785264134407, 0.009183179587125778,
- 0.05244607850909233, 0.07701791077852249, -0.006453841924667358, -0.07931260019540787,
- 0.012420673854649067, 0.0023639798164367676, 0.20121343433856964, -0.009832369163632393,
- -0.02009178139269352, 0.04967352747917175, 0.0013890793779864907, 0.05710383877158165,
- 0.022630661725997925, 0.02807619608938694, -0.045533791184425354, 0.00243520294316113,
- 0.00029825916863046587, -0.05090088024735451, 0.00505751883611083, -0.05839736759662628,
- 0.05552054941654205, 0.032004211097955704, -0.04817105829715729, 0.04015999659895897,
- -0.02467232011258602, -0.00008058299863478169, -0.13603241741657257,
- -0.04348042979836464, -0.04287775233387947, 0.05693085864186287, -0.07097359746694565,
- 0.008136430755257607, 0.04543599113821983, 0.008235786110162735, 0.07171956449747086,
- 0.039323803037405014, -0.05703967809677124, -0.0012510692467913032,
- -0.06111893057823181, -0.01210844237357378, -0.022105345502495766, 0.052388995885849,
- 0.240120992064476, -0.07022051513195038, 0.01096369232982397, 0.10077404975891113,
- -0.07848303765058517, 0.3456176817417145, 0.03502025082707405, 0.006014364305883646,
- -0.014713083393871784, 0.08765050023794174, 0.0716102346777916, 0.014145687222480774,
- 0.014833169989287853, -0.039590734988451004, 0.08325047045946121, -0.03319716453552246,
- 0.03386552259325981, 0.045276571065187454, 0.02654089219868183, -0.038131456822156906,
- -0.08840430527925491, -0.00874426867812872, -0.05181807279586792, 0.008402862586081028,
- -0.02776615135371685, 0.10993769764900208, 0.03041454590857029, -0.07270146161317825,
- -0.031202353537082672, 0.05657166242599487, 0.0009799981489777565, 0.07142054289579391,
- -0.04382069781422615, 0.010544799268245697, 0.021410590037703514, 0.045400653034448624,
- 0.019893871620297432, 0.03668403998017311, -0.020210785791277885, -0.005203630309551954,
- 0.02649996243417263, 0.07690518349409103, 0.05419030785560608, 0.044908177107572556,
- 0.06429903209209442, 0.09504127502441406, -0.010573199950158596, 0.026178598403930664,
- -0.002690380671992898, -0.03898799046874046, 0.029000096023082733,
- -0.000474525528261438, 0.05705932900309563, -0.04635147750377655, -0.21088559925556183,
- 0.02502112276852131, 0.082905612885952, 0.0559779591858387, -0.02950083278119564,
- 0.015431868843734264, -0.07735005021095276, 0.014414175413548946, -0.01921750418841839,
- -0.04791812226176262, 0.08716660737991333, 0.02293025702238083, 0.051874905824661255,
- 0.11133266240358353, 0.005312103312462568, -0.01899404637515545, -0.10325053334236145,
- -0.004886475391685963, -0.09021808952093124, 0.09746307879686356, -0.06939754635095596,
- -0.030124768614768982, 0.017944803461432457, 0.02992543764412403, 0.625312089920044,
- 0.07552265375852585, 0.12697948515415192, -0.02479497343301773, -0.034328509122133255,
- 0.14079229533672333, -0.03991474583745003, 0.05572214722633362, -0.06827359646558762,
- -0.0676635280251503, 0.0040212045423686504, -0.044899482280015945,
- -0.043808650225400925, 0.0550457127392292, 0.048730578273534775, 0.0962241068482399,
- 0.04955673590302467, 0.09326521307229996, 0.002527515171095729, -0.1035219058394432,
- -0.019809449091553688, 0.04086950421333313, -0.005731226876378059, -0.14379476010799408,
- -0.030148200690746307, 0.025829194113612175, 0.0685872808098793, -0.06737681478261948,
- -0.0032064393162727356, -0.038562241941690445, 0.04992993548512459,
- -0.039872292429208755, 0.06754880398511887, -0.007784263696521521, 0.031014496460556984,
- 0.015893718227744102, 0.019826186820864677, -0.0031556214671581984,
- -0.13056744635105133, -0.025402521714568138, 0.13891935348510742, 0.028178825974464417,
- -0.015479166060686111, 0.10020507127046585, -0.08317070454359055, 0.03905053809285164,
- -0.045853350311517715, 0.1350662261247635, -0.10986828804016113, 0.030408302322030067,
- 0.005703755188733339, -0.009529241360723972, 0.06241181120276451, -0.04161947965621948,
- -0.060998931527137756, -0.05030471086502075, 0.08028483390808105, -0.010763960890471935,
- 0.018858792260289192, 0.002652076305821538, -0.05811667814850807, 0.010179606266319752,
- 0.10219303518533707, 0.01968458853662014, -0.0017570225754752755, 0.0859893336892128,
- 0.030488640069961548, -0.06295767426490784, -0.059025418013334274, 0.04603716731071472,
- 0.061529457569122314, 0.032322175800800323, -0.0031336003448814154, 0.05635318532586098,
- 0.017671765759587288, -0.044646795839071274, 0.04323781654238701, -0.020202424377202988,
- 0.020944928750395775, 0.0899784192442894, -0.09871768206357956, -0.04961496591567993,
- -0.025941923260688782, -0.023210106417536736, 0.010826039128005505,
- -0.056140314787626266, 0.06429404765367508, 0.07552670687437057, 0.09148222208023071,
- 0.0466071180999279, 0.049622584134340286, 0.062446653842926025, 0.0442616231739521,
- -0.014667771756649017, 0.05205056071281433, -0.034461915493011475, -0.05452074483036995,
- -0.03543132171034813, -0.02619398571550846, 0.05175178870558739, 0.04480302333831787,
- -0.023709611967206, -0.012411166913807392, 0.0236878152936697, -0.04915018007159233,
- -0.10433989763259888, -0.02355205826461315, 0.11324659734964371, 0.032681357115507126,
- -0.060725390911102295, -0.09198644757270813, -0.0907282829284668, 0.008226604200899601,
- 0.0672101229429245, -0.01787445694208145, -0.01820565015077591, -0.1029045358300209,
- 0.019274836406111717, -0.007973860017955303, 0.05195161700248718, -0.017309026792645454,
- 0.03734133020043373, -0.00470974063500762, -0.07237351685762405, 0.015275329351425171,
- 0.011957955546677113, -0.035498399287462234, -0.05636058747768402, -0.1063360944390297,
- -0.05273832753300667, 0.02705816924571991, -0.02618475817143917, -0.02959608845412731,
- 0.04832234978675842, 0.04672634229063988, 0.05407647415995598, 0.0002864338457584381,
- -0.025640422478318214, 0.0466388501226902, -0.06375038623809814, -0.01115955039858818,
- 0.07061588019132614, -0.02606261521577835, 0.08458217233419418, -0.03849621117115021,
- -0.05585862323641777, -0.08418089151382446, -0.025029854848980904, -0.04182044789195061,
- 0.054088424891233444, -0.02686162106692791, -0.019418930634856224, -0.07080826163291931,
- -0.03489869832992554, 0.07119932025671005, -0.07987350225448608, -0.0694529265165329,
- -0.06615609675645828, 0.0764147937297821, -0.0010088743874803185, 0.019856778904795647,
- 0.030143773183226585, -0.06577401608228683, 0.035894975066185, -0.010079000145196915,
- -0.00401003472507, 0.03393711522221565, 0.05128588154911995, -0.027486054226756096,
- 0.04174092784523964, 0.08211760222911835, -0.06857945770025253, -0.020060250535607338,
- 0.07996310293674469, 0.40684735774993896, -0.22437238693237305, 0.11400643736124039,
- 0.07966089248657227, 0.027753038331866264, 0.023493096232414246, -0.02414076030254364,
- 0.041331540793180466, 0.03488549962639809, 0.11049163341522217, 0.05500508472323418,
- -0.011916156858205795, 0.040003422647714615, -0.05959251895546913, 0.06863675266504288,
- 0.01333202887326479, 0.012750820256769657, 0.016356302425265312, -0.04359250143170357,
- -0.03791496530175209, 0.00040513029671274126, -0.07204290479421616,
- 0.030211521312594414, -0.04926082491874695, -0.03167220577597618, 0.045465197414159775,
- 0.047540292143821716, 0.09137409180402756, -0.007729643490165472, 0.010016108863055706,
- -0.03455204516649246, 0.004522370640188456, -0.017628587782382965, 0.07109999656677246,
- -0.05221884325146675, 0.052716851234436035, -0.1326400637626648, -0.07941966503858566,
- 0.05844023823738098, 0.02552214078605175, 0.05528074875473976, 0.036685530096292496,
- -0.030383655801415443, 0.010050672106444836, 0.0274385754019022, -0.03968724608421326,
- 0.004945303313434124, 0.034350115805864334, 0.034504879266023636, 0.09269096702337265,
- 0.17521488666534424, -0.030339650809764862, -0.024527914822101593, -0.07679962366819382,
- 0.04116596654057503, 0.11286292225122452, 0.009402020834386349, 0.05538249388337135,
- 0.018214160576462746, 0.021662702783942223, 0.007527057081460953, -0.023398572579026222,
- -0.1183367446064949, -0.03675076737999916, -0.05218474939465523, 0.04047936201095581,
- 0.013781826011836529, 0.006540850270539522, -0.12471000105142593, -0.04351826384663582,
- -0.0419892854988575, -0.0028818456921726465, 0.09644084423780441, -0.03969220444560051,
- 0.04796957969665527, 0.00014913268387317657, 0.0065248627215623856,
- -0.034554798156023026, -0.09842085838317871, -0.019291730597615242,
- -0.010292968712747097, 0.08253168314695358, 0.04981624707579613, 0.05755500867962837,
- -0.09419739991426468, 0.06340757757425308, -0.0810670331120491, 0.07009609788656235,
- -0.011684317141771317, -0.02484540082514286, 0.016172297298908234,
- -0.060019075870513916, 0.02369365282356739, 0.034864846616983414, -0.05219108238816261,
- -0.027903029695153236, -0.02075735665857792, -0.06361905485391617, -0.09387046098709106,
- -0.09593232721090317, -0.03555602952837944, -0.07191425561904907, 0.0722767785191536,
- -0.12336737662553787, -0.016055529937148094, -0.0198568906635046, 0.015155383385717869,
- -0.010046004317700863, 0.06595920771360397, 0.010443330742418766, -0.15195731818675995,
- -0.029721757397055626, -0.050071075558662415, 0.03354187309741974,
- -0.013544436544179916, -0.07080011814832687, -0.048341166228055954, 0.14256125688552856,
- 0.03155433014035225, -0.05164387822151184, 0.06706658005714417, -0.0659680962562561,
- 0.11924683302640915, -0.08206653594970703, -0.5480909943580627, 0.06669747829437256,
- 0.025499654933810234, 0.04901966452598572, 0.03626023977994919, -0.10219819098711014,
- 0.06020857393741608, 0.04758596047759056, -0.013524073176085949, 0.08202988654375076,
- -0.04178396984934807, -0.002164902165532112, 0.0016265735030174255,
- -0.012970992363989353, 0.005485987290740013, -0.05837806686758995,
- -0.031236417591571808, 0.0038737596478313208, -0.03942602872848511, 0.01158126350492239,
- -0.10589983314275742, 0.009724671952426434, 0.005413614213466644, 0.038723792880773544,
- -0.016782300546765327, 0.018488779664039612, -0.08026675134897232, -0.0174297746270895,
- 0.04173542186617851, 0.06915514916181564, 0.04360996186733246, -0.07119229435920715,
- -0.04230281710624695, 0.05595669150352478, 0.026919079944491386, 0.097553551197052,
- 0.032533518970012665, -0.03308315947651863, -0.09659046679735184, 0.06333597749471664,
- 0.05456830933690071, 0.18889260292053223, -0.016383139416575432, 0.05754793807864189,
- -0.011109773069620132, 0.11164864152669907, 0.006814632564783096, 0.02160530351102352,
- -0.035834815353155136, 0.0005757099133916199, -0.0012945067137479782,
- 0.007710034493356943, 0.03448972478508949, -0.09026049822568893, -0.023689979687333107,
- -0.0075415861792862415, -0.032085392624139786, -0.0427115224301815, 0.0439373254776001,
- 0.15584810078144073, 0.02127719484269619, 0.006733972579240799, 0.016298530623316765,
- -0.03358369693160057, 0.00806951243430376, -0.0922846794128418, -0.03534354269504547,
- -0.003917477559298277, 0.02842986397445202, 0.03068281151354313, -0.02613523043692112,
- -0.1044434905052185, -0.032213833183050156, 0.03583872318267822, -0.024984359741210938,
- 0.10888922214508057, -0.04015742242336273, 0.010261177085340023, -0.027581006288528442,
- 0.1396794617176056, -0.014375843107700348, 0.0589069239795208, 0.08684790134429932,
- 0.09589798003435135, -0.005534237716346979, -0.010159309022128582, -0.05132007226347923,
- -0.03503553941845894, -0.0488571971654892, 0.12833993136882782, -0.03681201487779617,
- 0.15197999775409698, 0.06114931032061577, -0.05253056064248085, -0.025428980588912964,
- 0.014288957230746746, -0.00828486680984497, -0.005279443692415953, -0.507759153842926,
- -0.041165582835674286, 0.10921414941549301, 0.00019613902259152383,
- 0.014617484994232655, 0.1175154522061348, 0.032883577048778534, -0.01605294458568096,
- -0.01670876145362854, -0.08509215712547302, 0.049487803131341934, 0.00861422810703516,
- 0.06909993290901184, -0.09170925617218018, 0.005110414698719978, 0.06747414916753769,
- -0.01580602489411831, -0.013265269808471203, 0.01070899423211813, -0.19045068323612213,
- -0.011711874045431614, -0.0274199191480875, 0.16182290017604828, 0.053843628615140915,
- 0.006005346775054932, 0.0898662880063057, -0.03476547822356224, 0.017441488802433014,
- 0.0008398061036132276, 0.006282345857471228, 0.06309720873832703, -0.008797806687653065,
- -0.04845133051276207, 0.10355615615844727, 0.08057715743780136, 0.08853393793106079,
- -0.016797147691249847, 11.819049835205078, 0.061933886259794235, 0.10145622491836548,
- -0.06783627718687057, 0.02024046517908573, -0.013641376979649067, 0.03948318585753441,
- -0.05259867012500763, 0.10193899273872375, 0.09870355576276779, -0.055546700954437256,
- -0.02121693454682827, -0.0538032241165638, -0.07813555002212524, 0.023114154115319252,
- -0.04543536528944969, -0.010022270493209362, -0.08010309934616089, 0.03644662722945213,
- -0.04965260624885559, -0.03173688054084778, 0.09226161241531372, 0.10636978596448898,
- 0.027461813762784004, -0.09807882457971573, 0.036963462829589844, -0.011500392109155655,
- -0.045872390270233154, 0.0037131833378225565, 0.009758482687175274, 0.08317311853170395,
- 0.039240580052137375, 0.07235059142112732, 0.004451147746294737, 0.002835024381056428,
- -0.00032687667408026755, 0.022860340774059296, 0.0005154547397978604,
- 0.039601486176252365, 0.05696124956011772, 0.029892615973949432, 0.019897907972335815,
- 0.029576117172837257, 0.01995856687426567, 0.04078245535492897, 0.06263414770364761,
- 0.04096316173672676, 0.11208689212799072, -0.010217814706265926, 0.062288518995046616,
- 0.07410725951194763, -0.011037497781217098, 0.061310697346925735, -0.00782478041946888,
- -0.0033526187762618065, 0.05829905346035957, -0.010081224143505096,
- -0.07166329771280289, 0.05727492272853851, 0.01675073616206646, -0.028936177492141724,
- 0.07849479466676712, 0.04182875156402588, 0.10313823074102402, -0.012005160562694073,
- 0.0016542387893423438, 0.0677715614438057, 0.06695397198200226, -0.10251174122095108,
- -0.05865611508488655, 0.04679730162024498, -0.08370734006166458, -0.038837071508169174,
- 0.04580061137676239, 0.0894341841340065, -0.043058719485998154, 0.06261419504880905,
- -0.008905374445021152, 0.030970687046647072, -0.014213062822818756,
- 0.033809736371040344, 0.06639041751623154, -0.06832712888717651, 0.015930620953440666,
- -0.011355116963386536, 0.00007195895159384236, 0.1115591749548912, 0.14638163149356842,
- -0.01104158628731966, -0.12450587749481201, -0.07063139230012894, 0.1019228994846344,
- 0.014572368003427982, -0.040106553584337234, 0.012826480902731419,
- -0.047873225063085556, 0.0162202175706625, -0.17388837039470673, 0.10020533204078674,
- 0.10089651495218277, -0.05216187238693237, -0.039707694202661514, 0.004284996073693037,
- 0.07308878749608994, -0.01459449902176857, 0.0054128156043589115, -0.040494099259376526,
- 0.006435679737478495, -0.00108244305010885, 0.03983088955283165, -0.058735888451337814,
- 0.04930563271045685, 0.06422729045152664, -0.062886543571949, 0.02943272329866886,
- 0.06781544536352158, -0.055957723408937454, -0.04163592681288719, 0.04931039735674858,
- 0.014376970939338207, -0.09323479980230331, -0.03266372159123421, -0.05105896294116974,
- -0.023990536108613014, -0.0020271746907383204, -0.05997113510966301,
- -0.026104779914021492, 0.01774887926876545, -0.022757545113563538,
- -0.050661031156778336, -0.019062859937548637, 0.047959476709365845, 0.11024681478738785,
- 0.01833505742251873, 0.0445101223886013, -0.022897714748978615, 0.030418306589126587,
- 0.07301110029220581, 0.062481801956892014, 0.10054108500480652, -0.03781704977154732,
- 0.004115154966711998, -0.05368310585618019, -0.11760034412145615, 0.03605128824710846,
- 0.06279876828193665, 0.04325372353196144, -0.0011427998542785645, -0.016553912311792374,
- -0.08075884729623795, -0.0033274118322879076, 0.09263155609369278,
- -0.004935176577419043, -0.0301137063652277, 0.04417770728468895, -0.05947240814566612,
- 0.012728164903819561, 0.09880596399307251, -0.017282381653785706, -0.01474838238209486,
- 0.05045933648943901, -0.16545866429805756, 0.07291647791862488, 0.027810320258140564,
- 0.012828421778976917, -0.011964255012571812, 0.04768047109246254,
- -0.0019405633211135864, 0.0617724172770977, 0.03987053036689758, 0.02593850903213024,
- -0.013535503298044205, -0.10384353250265121, -0.0669296383857727, 0.025160297751426697,
- 0.07639191299676895, 0.10194805264472961, -0.15620361268520355, -0.0006307205185294151,
- -0.013712659478187561
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 282,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 84,
- "similarity": 0.9980106949806213
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 16,
- "similarity": 0.9978744983673096
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 1,
- "similarity": 0.9977354407310486
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Coby Zucker"],
- "epoch_date_downloaded": 1661731200,
- "epoch_date_modified": 1661817600,
- "epoch_date_submitted": 1661817600,
- "flag": null,
- "report_number": 1972,
- "source_domain": "nationalpost.com",
- "submitters": ["Ingrid Dickinson (CSET)"],
- "title": "Nudity algorithm wrongly blocked company's onion images, Facebook admits, says adverts will be restored",
- "url": "https://nationalpost.com/news/overtly-sexualized-st-johns-companys-onions-yes-onions-flagged-by-facebooks-nudity-algorithm"
- },
- {
- "__typename": "Report",
- "authors": ["Team Latestly"],
- "epoch_date_downloaded": 1660089600,
- "epoch_date_modified": 1660089600,
- "epoch_date_submitted": 1660089600,
- "flag": null,
- "report_number": 1881,
- "source_domain": "ca.movies.yahoo.com",
- "submitters": ["Thomas Giallella (CSET)"],
- "title": "Too Sexy! Facebook’s AI Mistakes Ad for Onions As Nude Content, Blocks for Being ‘Overtly Sexual’",
- "url": "https://ca.movies.yahoo.com/too-sexy-facebook-ai-mistakes-160616784.html"
- },
- {
- "__typename": "Report",
- "authors": ["Isobel Asher Hamilton"],
- "epoch_date_downloaded": 1660089600,
- "epoch_date_modified": 1660089600,
- "epoch_date_submitted": 1660089600,
- "flag": null,
- "report_number": 1879,
- "source_domain": "businessinsider.com",
- "submitters": ["Thomas Giallella (CSET)"],
- "title": "Facebook's nudity-spotting AI mistook a photo of some onions for 'sexually suggestive' content",
- "url": "https://www.businessinsider.com/facebook-mistakes-onions-for-sexualised-content-2020-10"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "facebook",
- "name": "Facebook"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "facebook",
- "name": "Facebook"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "the-vindicator",
- "name": "The Vindicator"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1880],
- "vector": [
- -0.056673817336559296, 0.02134633995592594, -0.0029534792993217707,
- -0.12193901091814041, 0.06468654423952103, -0.013538512401282787,
- -0.0011911611072719097, 0.04860289767384529, 0.05627301707863808, -0.14695873856544495,
- -0.021970124915242195, 0.053060851991176605, -0.015180693008005619,
- -0.03706907853484154, 0.052367690950632095, -0.12539386749267578, -0.0993243008852005,
- -0.053668051958084106, -0.0266634039580822, -0.09851989895105362, -0.07943924516439438,
- -0.009802054613828659, 0.06776245683431625, 0.07496020942926407, -0.036538008600473404,
- 0.008206954225897789, 0.0861094519495964, 0.15912297368049622, -0.09685490280389786,
- 0.0810743048787117, 0.0038534600753337145, -0.03245943784713745, 0.12488513439893723,
- 0.04023221880197525, 0.050088293850421906, 0.13756398856639862, 0.08886675536632538,
- -0.046029213815927505, -0.042403288185596466, 0.00023064915149006993,
- 0.01628147065639496, 0.2359498292207718, -0.0173348318785429, -0.03264916315674782,
- 0.07456264644861221, -0.01941843144595623, 0.028210964053869247, 0.05615202337503433,
- 0.004392927512526512, -0.007677759043872356, 0.003800684120506048, 0.048655472695827484,
- -0.03221962973475456, 0.07192263752222061, -0.10658714175224304, 0.06641697883605957,
- 0.03216828405857086, -0.03825532644987106, 0.06220528110861778, -0.080030158162117,
- -0.01866193488240242, -0.19574789702892303, -0.05359839275479317, -0.05319678410887718,
- 0.09557711333036423, -0.08427056670188904, -0.05679841339588165, 0.018498051911592484,
- 0.02417673170566559, 0.03592365235090256, 0.0906723365187645, -0.07154332846403122,
- 0.01531659159809351, -0.05021803081035614, -0.020209653303027153, -0.05417466163635254,
- -0.0027822935953736305, 0.19303996860980988, -0.0800442174077034, 0.0372149795293808,
- 0.12814167141914368, -0.09314662963151932, 0.3546237349510193, 0.04802975803613663,
- -0.05324968323111534, 0.0049211010336875916, 0.057765696197748184, 0.04002253711223602,
- 0.05952560156583786, 0.057759616523981094, -0.03191298991441727, 0.05542098358273506,
- -0.017733808606863022, 0.01903252676129341, 0.022497786208987236, 0.05820445716381073,
- 0.006095925811678171, 0.04950905591249466, -0.013656051829457283, -0.049518171697854996,
- 0.0017006422858685255, -0.024729305878281593, 0.10236922651529312,
- -0.0076525574550032616, -0.035555578768253326, -0.02355041354894638,
- 0.07786756753921509, -0.02548394910991192, 0.00720999063923955, -0.04458536580204964,
- 0.009188576601445675, 0.003552800277248025, 0.06936298310756683, -0.03442152589559555,
- 0.07951952517032623, -0.020531296730041504, 0.004577184561640024, 0.023777835071086884,
- 0.08944223821163177, 0.0627284124493599, 0.016456080600619316, 0.06629439443349838,
- 0.08979731798171997, -0.028298618271946907, -0.019459078088402748, -0.04375593736767769,
- -0.03134717419743538, 0.016010722145438194, -0.041135143488645554, 0.055149007588624954,
- -0.0340115986764431, -0.20771510899066925, 0.025039836764335632, 0.09178061783313751,
- 0.009692070074379444, -0.038449712097644806, 0.05844639241695404, -0.09328105300664902,
- 0.029468782246112823, -0.013710281811654568, -0.005081628914922476, 0.09485100209712982,
- 0.026377765461802483, 0.015340888872742653, 0.08798505365848541, 0.016845453530550003,
- -0.04989089071750641, -0.058478157967329025, 0.05965530127286911, -0.06172666698694229,
- 0.0902627632021904, -0.06965000182390213, -0.06835147738456726, 0.005080082453787327,
- -0.009628208354115486, 0.6842308640480042, 0.07935140281915665, 0.16913628578186035,
- 0.011716004461050034, -0.014698152430355549, 0.18209783732891083, 0.06226041540503502,
- 0.09820610284805298, -0.082708440721035, -0.0942017138004303, 0.03056434355676174,
- -0.054323289543390274, -0.035752393305301666, 0.004549660719931126, 0.05054759234189987,
- 0.11829376965761185, 0.048335421830415726, 0.08623827993869781, -0.011530891060829163,
- -0.1287221759557724, -0.08376011252403259, 0.051114171743392944, -0.043233443051576614,
- -0.1555478572845459, -0.03821322321891785, 0.043877240270376205, 0.09506608545780182,
- -0.06076021492481232, 0.03739255294203758, -0.04362665116786957, 0.027649883180856705,
- -0.06335335969924927, 0.025227637961506844, -0.03100675716996193, 0.014635243453085423,
- 0.05353793874382973, 0.07983969897031784, 0.0007561357342638075, -0.12715548276901245,
- -0.03237605839967728, 0.1895129233598709, -0.0037939357571303844, -0.028081249445676804,
- 0.09802155941724777, -0.07631271332502365, 0.06016677990555763, 0.03687165305018425,
- 0.166544571518898, -0.0992225781083107, -0.03456630930304527, -0.025530420243740082,
- -0.050631873309612274, 0.05584726110100746, -0.0433998703956604, -0.10677840560674667,
- -0.03519957512617111, 0.07534780353307724, 0.027852315455675125, 0.07005459070205688,
- 0.03295683488249779, -0.052745893597602844, 0.03315754979848862, -0.008365058340132236,
- -0.015253925696015358, -0.06996232271194458, 0.0804116502404213, 0.051364965736866,
- -0.056802839040756226, -0.054458118975162506, 0.04218856617808342, 0.10249275714159012,
- 0.04466645047068596, -0.020932575687766075, 0.014491915702819824, 0.03021222911775112,
- -0.03279454633593559, -0.014244268648326397, 0.00836748257279396, 0.004474801942706108,
- 0.08455131947994232, -0.09979017078876495, -0.04906366765499115, -0.051660772413015366,
- -0.040250007063150406, 0.00882765557616949, -0.022924570366740227, 0.0553566999733448,
- 0.08346771448850632, 0.0597279891371727, 0.027161404490470886, -0.006927212234586477,
- 0.05741279944777489, -0.00006859083805466071, 0.025167124345898628, 0.07617547363042831,
- 0.009935484267771244, -0.043100062757730484, -0.03862884268164635,
- -0.024191293865442276, 0.051349420100450516, 0.037739671766757965,
- -0.040717657655477524, -0.03563432767987251, 0.04074542596936226, -0.014026932418346405,
- -0.07467928528785706, -0.007969630882143974, 0.07262895256280899, 0.03900587186217308,
- -0.05042296275496483, -0.11774018406867981, -0.08021692931652069,
- -0.0020592310465872288, 0.09405674785375595, -0.05643157288432121, -0.06524873524904251,
- -0.07073734700679779, -0.04327927902340889, -0.008174680173397064, 0.06776833534240723,
- -0.0029038547072559595, -0.03723093122243881, -0.027829086408019066,
- -0.07148069888353348, 0.006828746292740107, -0.015507064759731293,
- -0.0007129016448743641, -0.03847529739141464, -0.09283818304538727, -0.0419529527425766,
- 0.0065536946058273315, -0.07358700782060623, -0.026990652084350586, 0.06202022731304169,
- 0.04357432574033737, 0.03273038566112518, -0.0011826290283352137, -0.006131252273917198,
- 0.05771511048078537, -0.05102412402629852, 0.007376211229711771, 0.05051932483911514,
- -0.00784323550760746, 0.02374597080051899, -0.033664483577013016, -0.07304947823286057,
- -0.04175214841961861, -0.022497327998280525, -0.03155297040939331, 0.06867421418428421,
- -0.002859072992578149, -0.009425259195268154, -0.02988371253013611,
- -0.030543994158506393, 0.03201429545879364, -0.08171442896127701, -0.07956012338399887,
- -0.09474273771047592, 0.16659119725227356, 0.0033138932194560766, -0.036431219428777695,
- 0.02349543571472168, -0.10546071082353592, 0.04758494719862938, 0.002012744778767228,
- 0.01128367893397808, 0.046222034841775894, 0.035518232733011246, -0.03217329457402229,
- 0.04321063309907913, 0.04353497549891472, -0.013421242125332355, 0.017763178795576096,
- 0.09038618952035904, 0.44628897309303284, -0.2561786472797394, -0.0015905514592304826,
- 0.05889185518026352, -0.007439502980560064, 0.05756184831261635, -0.060322850942611694,
- 0.06901321560144424, 0.05313542112708092, 0.09373738616704941, 0.07046866416931152,
- -0.016350334510207176, 0.02071305736899376, -0.06046479940414429, 0.13142617046833038,
- 0.024548020213842392, -0.014833086170256138, -0.0059948512353003025,
- -0.029377374798059464, -0.022876957431435585, 0.028176676481962204,
- -0.09091939777135849, -0.012874778360128403, -0.037167251110076904,
- -0.07888799905776978, 0.05081816762685776, 0.030878694728016853, 0.05090861767530441,
- -0.0387282520532608, 0.02525959350168705, 0.06075900048017502, 0.06009254977107048,
- 0.01920538768172264, 0.05291973426938057, -0.12173258513212204, 0.09683878719806671,
- -0.11838766187429428, -0.06184651330113411, 0.06849677860736847, -0.046082884073257446,
- 0.06127578765153885, 0.06311164796352386, 0.015851851552724838, 0.010901334695518017,
- 0.004981011152267456, -0.07254447042942047, 0.013958231545984745, 0.04758578538894653,
- 0.027335600927472115, 0.07206695526838303, 0.16852250695228577, 0.0025394712574779987,
- -0.019353609532117844, -0.048861514776945114, 0.06509461253881454, 0.09254217892885208,
- -0.06120576336979866, 0.027707425877451897, 0.03414323180913925, 0.016211749985814095,
- -0.013444701209664345, -0.02786664478480816, -0.1537802815437317, -0.03613497316837311,
- -0.06082099676132202, 0.08717601746320724, 0.025894079357385635, -0.032490119338035583,
- -0.26369380950927734, -0.07793348282575607, -0.013238496147096157, 0.006508412770926952,
- 0.17591547966003418, -0.06113282963633537, 0.00003656852641142905, 0.04351639747619629,
- 0.0379473976790905, -0.00013787901843897998, -0.08166418969631195, 0.005662810988724232,
- -0.06006366014480591, 0.04562447592616081, 0.015778005123138428, 0.06268759816884995,
- -0.08555284142494202, 0.05870998650789261, -0.07129161804914474, 0.11588504910469055,
- -0.025006940588355064, 0.0005679267342202365, 0.07405567914247513, -0.08395633846521378,
- 0.03707492724061012, -0.008402599953114986, -0.004100571386516094,
- -0.010057248175144196, -0.012936744838953018, -0.027195965871214867,
- -0.0675811916589737, -0.10612545162439346, -0.0694672018289566, -0.04736683517694473,
- 0.09902918338775635, -0.08490332961082458, -0.02606346271932125, -0.046529028564691544,
- -0.006715784780681133, -0.0008732323767617345, 0.05671679973602295, 0.02469998598098755,
- -0.17173312604427338, -0.07731927931308746, -0.0034121538046747446, 0.06907940655946732,
- -0.02153118886053562, -0.06197381019592285, 0.02895236760377884, 0.10448087006807327,
- 0.044827792793512344, -0.057806700468063354, 0.05663356930017471, -0.03540103882551193,
- 0.07136461138725281, -0.11796508729457855, -0.626143217086792, 0.07515276223421097,
- 0.038314443081617355, 0.054178427904844284, 0.015741340816020966, -0.08633366227149963,
- 0.04395393654704094, 0.01832413487136364, -0.03769823908805847, 0.04600365459918976,
- -0.07192663848400116, 0.03570513427257538, -0.009800047613680363, -0.007810898125171661,
- -0.050581708550453186, -0.08163857460021973, -0.031924739480018616,
- -0.01602679118514061, -0.06723906099796295, -0.06625580042600632, -0.053736504167318344,
- -0.013130228966474533, 0.002850615419447422, -0.007767650298774242,
- 0.040936991572380066, 0.04814761504530907, -0.09598883241415024, -0.07603376358747482,
- 0.005723120179027319, 0.06949063390493393, 0.017355026677250862, -0.054675277322530746,
- -0.027919022366404533, 0.11910116672515869, 0.0030522479210048914, 0.12797193229198456,
- -0.0064070275984704494, 0.04544590041041374, -0.10699134320020676, 0.053549133241176605,
- 0.02048306167125702, 0.18864314258098602, 0.005100646521896124, 0.07997503131628036,
- 0.004832396283745766, 0.14082564413547516, 0.024128269404172897, 0.007933344691991806,
- -0.06633592396974564, 0.04075655713677406, -0.014505086466670036, -0.028428442776203156,
- 0.06938935816287994, -0.08529604971408844, 0.006815012078732252, 0.0014179630670696497,
- -0.00874079018831253, -0.04681297764182091, -0.04202420637011528, 0.21516069769859314,
- 0.008387886919081211, 0.028232114389538765, -0.007470438256859779, -0.03588515892624855,
- 0.005637036636471748, -0.058741915971040726, -0.0843452736735344, -0.02217237837612629,
- -0.005304452031850815, -0.011919435113668442, -0.002337262500077486,
- -0.08537869900465012, -0.024773353710770607, -0.03220881521701813,
- -0.010432353243231773, 0.08259653300046921, -0.0747167095541954, 0.03982161357998848,
- -0.019670313224196434, 0.11679299175739288, 0.019526589661836624, 0.02776825800538063,
- 0.0711161270737648, 0.07935438305139542, 0.05253038927912712, -0.048774849623441696,
- -0.07326032966375351, -0.07172632962465286, -0.0024968369398266077, 0.14234349131584167,
- -0.040957432240247726, 0.17775480449199677, 0.03948763757944107, -0.015797529369592667,
- -0.045181240886449814, -0.005139931105077267, -0.0032459578942507505,
- -0.028362512588500977, -0.541766345500946, -0.02940186858177185, 0.09263872355222702,
- 0.04086313396692276, 0.030993111431598663, 0.11096523702144623, 0.026961298659443855,
- -0.054603807628154755, -0.0011977126123383641, -0.11939765512943268,
- 0.13468509912490845, 0.04439597576856613, 0.07184871286153793, -0.10177329927682877,
- 0.02580306865274906, 0.07857572287321091, -0.026272760704159737, 0.016040874645113945,
- 0.01834959350526333, -0.25722938776016235, -0.04016633704304695, -0.019340092316269875,
- 0.1930491030216217, 0.02604113146662712, 0.024047451093792915, 0.07840093225240707,
- -0.06704211235046387, -0.031733132898807526, 0.014125721529126167,
- -0.013662687502801418, 0.06119165197014809, 0.030395766720175743, -0.05078698322176933,
- 0.09285496920347214, 0.09706679731607437, 0.03331362456083298, -0.023310089483857155,
- 11.797711372375488, 0.04923519492149353, 0.08742126077413559, -0.03982298821210861,
- 0.047416068613529205, -0.038853783160448074, 0.0254574716091156, -0.0789477527141571,
- 0.08863618224859238, 0.1365644931793213, -0.035496052354574203, -0.009847678244113922,
- -0.039179932326078415, -0.04816654324531555, 0.006043418310582638, -0.03094998188316822,
- -0.02595461718738079, -0.09557406604290009, 0.009909512475132942, -0.01231325976550579,
- -0.04254228249192238, 0.048739172518253326, 0.1002250388264656, 0.042895518243312836,
- -0.0924735888838768, 0.043545737862586975, -0.010295047424733639,
- -0.0021816655062139034, 0.0024180258624255657, 0.013462481088936329,
- 0.02320856600999832, -0.007856516167521477, 0.10111860930919647, 0.08383137732744217,
- -0.009381753392517567, 0.09716816991567612, 0.05326439440250397, 0.013691222295165062,
- 0.022799959406256676, 0.04070352017879486, -0.011755237355828285, -0.018211061134934425,
- -0.024020342156291008, 0.060671523213386536, 0.03125021606683731, 0.09960637241601944,
- 0.050143346190452576, 0.1622341424226761, 0.046711668372154236, 0.10389295220375061,
- 0.10158666223287582, -0.017840426415205002, 0.10557720810174942, 0.0854400172829628,
- 0.008635573089122772, 0.08412229269742966, -0.03183284401893616, -0.06558016687631607,
- 0.14401382207870483, 0.04754432663321495, -0.01618005521595478, 0.11738244444131851,
- 0.026529982686042786, 0.08764353394508362, -0.010513687506318092, 0.05710121616721153,
- 0.04206283390522003, 0.07640644162893295, -0.13598857820034027, -0.08097877353429794,
- 0.07570458203554153, -0.06516041606664658, -0.06538096815347672, 0.005739748012274504,
- 0.12549734115600586, -0.062180738896131516, 0.04975096136331558, 0.017794761806726456,
- 0.04904317483305931, -0.05313269793987274, 0.025034774094820023, 0.05001318082213402,
- -0.03985847160220146, -0.0407843217253685, 0.04192883148789406, 0.030369626358151436,
- 0.13701891899108887, 0.16576837003231049, -0.01137463841587305, -0.1079888865351677,
- -0.06935971230268478, 0.1160118505358696, 0.016611577942967415, -0.045116979628801346,
- 0.008795478381216526, -0.07912123948335648, -0.037501465529203415, -0.17708207666873932,
- 0.10206083208322525, 0.13048824667930603, -0.07229778170585632, -0.04974116012454033,
- -0.03729145601391792, 0.07134832441806793, -0.008353520184755325, 0.015519223175942898,
- -0.11543209105730057, 0.06182361766695976, 0.04186101257801056, 0.01944066770374775,
- -0.04941312596201897, 0.052292581647634506, 0.04892377182841301, -0.0623062402009964,
- 0.07364549487829208, 0.07482420653104782, -0.005090481135994196, -0.045131176710128784,
- 0.08904212713241577, -0.044535741209983826, -0.11236651241779327, -0.004200163763016462,
- -0.035075195133686066, -0.03141075372695923, 0.020266219973564148,
- -0.049466755241155624, 0.029590433463454247, 0.038819827139377594, -0.03386195749044418,
- -0.020695330575108528, 0.0449514240026474, 0.05631634593009949, 0.1159244030714035,
- -0.0060934992507100105, 0.061149779707193375, -0.05939015373587608,
- -0.04165113344788551, 0.07324904948472977, 0.059323012828826904, 0.07092601805925369,
- -0.030664322897791862, -0.013143278658390045, -0.06647530198097229,
- -0.10158411413431168, 0.011848542839288712, 0.031020749360322952, 0.06781279295682907,
- 0.009769967757165432, 0.003403727663680911, -0.0783703476190567, -0.011150423437356949,
- 0.10010483115911484, 0.03378290683031082, 0.031087493523955345, -0.007476567756384611,
- -0.07618168741464615, -0.01596442051231861, 0.0482322983443737, -0.03249645233154297,
- -0.025841163471341133, 0.04911425709724426, -0.07108695060014725, 0.0946834534406662,
- 0.08332131057977676, 0.03966197371482849, 0.0038911292795091867, 0.03646824136376381,
- 0.019240686669945717, 0.05441446229815483, 0.007653253152966499, 0.03126531466841698,
- -0.06213700398802757, -0.12106819450855255, -0.06296543776988983, 0.09064216166734695,
- 0.1121874451637268, 0.035674892365932465, -0.11378491669893265, -0.00821681134402752,
- -0.008247677236795425
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 283,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Rachel Sandler"],
- "epoch_date_downloaded": 1660089600,
- "epoch_date_modified": 1660089600,
- "epoch_date_submitted": 1660089600,
- "flag": null,
- "report_number": 1880,
- "source_domain": "businessinsider.com",
- "submitters": ["Khoa Lam"],
- "title": "Facebook has apologized for flagging parts of the Declaration of Independence as hate speech",
- "url": "https://www.businessinsider.com/facebook-declaration-of-independence-hate-speech-2018-7"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "facebook",
- "name": "Facebook"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "facebook",
- "name": "Facebook"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "museums-on-facebook",
- "name": "museums on Facebook"
- },
- {
- "__typename": "Entity",
- "entity_id": "facebook-users-interested-in-arts",
- "name": "Facebook users interested in arts"
- },
- {
- "__typename": "Entity",
- "entity_id": "facebook-users",
- "name": "Facebook users"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1887, 1886, 1885, 1884, 1883, 1882],
- "vector": [
- -0.06902637332677841, 0.08894523233175278, 0.020441964268684387, -0.14235663414001465,
- 0.03536946699023247, -0.06559903174638748, 0.016346396878361702, 0.058294009417295456,
- 0.03392946347594261, -0.12832209467887878, -0.028492748737335205, 0.06323627382516861,
- 0.02753322385251522, -0.09869887679815292, 0.03716049715876579, -0.11446212977170944,
- -0.11593940109014511, -0.020074214786291122, -0.03478063642978668, -0.0928388461470604,
- -0.08116196095943451, -0.004382615443319082, 0.09541600197553635, 0.1105717197060585,
- -0.06643866747617722, 0.023930886760354042, 0.10284837335348129, 0.1325450837612152,
- -0.00963724683970213, 0.10221917182207108, -0.012276891618967056, -0.0821361318230629,
- 0.14849568903446198, 0.035551898181438446, -0.003518536454066634, 0.09563995152711868,
- 0.06253296881914139, -0.02053050510585308, -0.023678211495280266, 0.03783441334962845,
- 0.027734240517020226, 0.23230580985546112, -0.03431422635912895, -0.02272055856883526,
- 0.045574795454740524, -0.02564406581223011, 0.049614131450653076, 0.0721747949719429,
- 0.035550713539123535, -0.030018171295523643, -0.005716843530535698,
- 0.012081589549779892, -0.04319826140999794, 0.0319574736058712, -0.10787383466959,
- 0.06855877488851547, 0.031895387917757034, -0.03286164626479149, 0.07107753306627274,
- -0.1074657216668129, -0.05799286067485809, -0.19653041660785675, -0.07036342471837997,
- -0.10114928334951401, 0.0846552848815918, -0.12252690643072128, -0.03749944269657135,
- 0.023265570402145386, 0.004687257576733828, 0.06978780776262283, 0.07853730022907257,
- -0.0418534018099308, 0.02695036493241787, 0.006361929699778557, 0.014046390540897846,
- -0.008007664233446121, 0.02246454916894436, 0.20279330015182495, -0.12231683731079102,
- -0.006348724011331797, 0.11005247384309769, -0.13799609243869781, 0.4755638539791107,
- 0.025550970807671547, -0.008135458454489708, 0.014953202567994595, 0.11885762959718704,
- 0.06726851314306259, 0.05619750916957855, 0.04307401552796364, -0.024790823459625244,
- 0.07700247317552567, -0.05170632526278496, 0.01808076724410057, 0.05689200758934021,
- 0.023106353357434273, -0.052294034510850906, 0.13305984437465668, -0.02704339288175106,
- -0.05078405514359474, 0.000220894580706954, -0.031828563660383224, 0.13026858866214752,
- 0.1110878586769104, -0.040701452642679214, 0.007984908297657967, 0.0638263002038002,
- -0.05286886915564537, 0.03783470019698143, -0.05424557998776436, 0.0023405312094837427,
- 0.02937649004161358, 0.07815451920032501, -0.005867868661880493, 0.04810164496302605,
- -0.04120301827788353, 0.014963068999350071, 0.07249544560909271, 0.09538564831018448,
- 0.04558894410729408, 0.012464073486626148, 0.10326246172189713, 0.089000403881073,
- -0.04286836460232735, 0.053942397236824036, -0.019662657752633095, -0.08204182237386703,
- -0.005144504364579916, -0.004869026597589254, 0.03085196018218994,
- -0.061001572757959366, -0.23578737676143646, -0.006401485297828913, 0.05835016444325447,
- 0.030794555321335793, -0.04970565065741539, 0.015044822357594967, -0.07080437988042831,
- 0.014677581377327442, -0.06117957457900047, -0.028285235166549683, 0.07653731107711792,
- -0.028161359950900078, 0.05245440825819969, 0.11047383397817612, 0.04114628955721855,
- -0.05511989817023277, -0.05524474009871483, 0.014057661406695843, -0.045632872730493546,
- 0.1171126440167427, -0.06509140878915787, -0.04674655571579933, 0.004213122650980949,
- 0.03792329877614975, 0.7250941395759583, 0.06901568919420242, 0.1581382155418396,
- -0.03425410017371178, 0.026806287467479706, 0.20469330251216888, 0.009299392811954021,
- 0.07870825380086899, -0.07190199941396713, -0.1103767529129982, 0.013387500308454037,
- -0.059289637953042984, -0.05894550308585167, 0.007769719231873751, 0.02375810779631138,
- 0.1081739068031311, 0.0445689894258976, 0.0995921716094017, 0.0069394721649587154,
- -0.09218009561300278, -0.051312875002622604, 0.08537008613348007, 0.008817876689136028,
- -0.1209757998585701, -0.02828236110508442, 0.019625307992100716, 0.08375493437051773,
- -0.07895386219024658, -0.010346791706979275, -0.024180976673960686, 0.06177956983447075,
- -0.02412470430135727, 0.08610924333333969, -0.00720488466322422, 0.03395777940750122,
- 0.009245699271559715, 0.045705150812864304, 0.014910101890563965, -0.09693435579538345,
- -0.03891533985733986, 0.12265700101852417, -0.002642587525770068, -0.013102901168167591,
- 0.09227269887924194, -0.11512720584869385, 0.047776445746421814, 0.05222563073039055,
- 0.13002224266529083, -0.10483553260564804, 0.043199971318244934, -0.004067093133926392,
- -0.021111413836479187, 0.044440653175115585, -0.03841478005051613, -0.06671484559774399,
- -0.05345706641674042, 0.04724001884460449, 0.00813236366957426, 0.05932249501347542,
- 0.017291298136115074, -0.017419233918190002, 0.031036151573061943, 0.03145382180809975,
- 0.028078312054276466, -0.0418870784342289, 0.07187795639038086, 0.03932908549904823,
- -0.02902856469154358, -0.057936396449804306, 0.02504199929535389, 0.03267636522650719,
- 0.007142314221709967, -0.005049572791904211, 0.04211397469043732, 0.034371793270111084,
- -0.024248046800494194, 0.039989154785871506, -0.04380209371447563, 0.022620901465415955,
- 0.11290767043828964, -0.09470537304878235, -0.06886664032936096, -0.008447335101664066,
- -0.0537407286465168, 0.049826133996248245, -0.03853984922170639, 0.09047461301088333,
- 0.071426160633564, 0.0921650305390358, 0.03826044127345085, 0.014428779482841492,
- 0.06676091998815536, 0.002920405939221382, 0.020107252523303032, 0.06550396233797073,
- -0.024190200492739677, -0.07724788039922714, -0.03983425721526146, 0.012070485390722752,
- 0.10397922247648239, 0.05444991961121559, -0.08904463797807693, -0.001753140240907669,
- 0.016059251502156258, -0.06783084571361542, -0.06463733315467834, 0.019705848768353462,
- 0.04598131403326988, 0.043752748519182205, -0.050517212599515915, -0.08012935519218445,
- -0.11049124598503113, 0.008036602288484573, 0.07110665738582611, -0.03056153655052185,
- -0.025964269414544106, -0.10679148882627487, -0.013236266560852528,
- -0.04700811207294464, 0.07168591022491455, -0.04289156198501587, 0.07289081066846848,
- 0.0391293503344059, -0.059920236468315125, -0.01318767573684454, 0.017856964841485023,
- -0.0949246808886528, -0.014705819077789783, -0.09334027022123337,
- -0.00043236944475211203, 0.02977883070707321, -0.020620770752429962,
- 0.022410325706005096, 0.07464218884706497, 0.05430091544985771, 0.08727734535932541,
- -0.012403328903019428, -0.021702831611037254, 0.07666981965303421, -0.03740913048386574,
- 0.018432896584272385, 0.09745746850967407, 0.0009134070132859051, 0.034208327531814575,
- -0.09051697701215744, -0.033853769302368164, -0.08967723697423935,
- -0.004934895783662796, -0.04417622461915016, 0.03414339944720268,
- -0.0019103497033938766, 0.013796360231935978, -0.08086565136909485,
- -0.07343969494104385, 0.02908474951982498, -0.09857609868049622, -0.07821645587682724,
- -0.1233990490436554, 0.10365525633096695, -0.029612602666020393, -0.03708681836724281,
- 0.06594958901405334, -0.0470876507461071, 0.05379133298993111, -0.023222720250487328,
- -0.013639324344694614, 0.09677592664957047, 0.05790284276008606, -0.050742506980895996,
- 0.05025150999426842, 0.05700652673840523, -0.020969262346625328, 0.0355544351041317,
- 0.04949341341853142, 0.455420583486557, -0.21817238628864288, 0.0629434734582901,
- 0.08946222066879272, -0.03446606919169426, 0.052037179470062256, -0.030280910432338715,
- 0.05635308101773262, 0.09541133046150208, 0.12892676889896393, 0.09532120823860168,
- -0.04271766543388367, -0.011639639735221863, -0.12955640256404877, 0.09082534909248352,
- 0.050396282225847244, -0.009377178736031055, 0.03798530250787735, -0.08351537585258484,
- -0.041347283869981766, 0.03741290047764778, -0.08038132637739182, 0.005962776020169258,
- -0.008345683105289936, -0.06787868589162827, 0.047752391546964645, 0.028440406545996666,
- 0.07427579164505005, -0.04136303439736366, 0.03887295350432396, -0.018334094434976578,
- 0.025673827156424522, -0.032959695905447006, 0.0803435668349266, -0.11132053285837173,
- 0.05188806354999542, -0.07872778922319412, -0.1012471541762352, 0.08652916550636292,
- -0.033986080437898636, 0.04419960454106331, 0.06278695911169052, -0.0397736094892025,
- 0.03237418457865715, -0.03108653612434864, -0.07451947778463364, 0.013625126332044601,
- 0.04231782630085945, 0.014526419341564178, 0.07007084786891937, 0.18010230362415314,
- -0.04057897999882698, -0.01392697636038065, -0.07398141175508499, 0.07760552316904068,
- 0.10090319067239761, -0.03269039839506149, 0.05045822635293007, 0.035311345010995865,
- 0.00987659115344286, 0.013845842331647873, -0.03956936299800873, -0.1253567934036255,
- -0.011158394627273083, -0.03298795223236084, 0.06288103014230728, 0.030538566410541534,
- -0.021456075832247734, -0.16085653007030487, -0.0320102795958519, -0.026877962052822113,
- 0.02668936550617218, 0.0768958032131195, -0.06493883579969406, -0.013820559717714787,
- -0.016191663220524788, 0.04204535111784935, -0.032566431909799576, -0.07005030661821365,
- -0.017516380175948143, -0.025681249797344208, 0.07008493691682816, 0.038450900465250015,
- 0.07346189767122269, -0.053859561681747437, 0.05294979736208916, -0.11674252152442932,
- 0.07395973801612854, -0.011462889611721039, -0.0100832125172019, 0.029298007488250732,
- -0.04050898179411888, 0.03691814839839935, 0.0037459637969732285, -0.0552808903157711,
- 0.035627059638500214, 0.0013520987704396248, -0.05852526053786278, -0.08833307027816772,
- -0.07487007230520248, -0.04806099459528923, -0.10626637935638428, 0.07605961710214615,
- -0.07716874033212662, -0.018765175715088844, -0.0038668375927954912,
- -0.01140526682138443, 0.0011572976363822818, 0.06376274675130844, 0.014828029088675976,
- -0.17951643466949463, -0.06038939952850342, -0.02819969691336155, 0.015617482364177704,
- -0.03040356934070587, -0.04572123661637306, 0.007238471414893866, 0.0878991112112999,
- 0.05192558467388153, -0.04162876680493355, 0.04698072001338005, -0.10674121230840683,
- 0.04740229249000549, -0.08629203587770462, -0.515837550163269, 0.04002012684941292,
- 0.019134921953082085, 0.02928054891526699, 0.009694192558526993, -0.09554845839738846,
- 0.04965025186538696, -0.02155509777367115, -0.06832816451787949, 0.07668109983205795,
- -0.05237799882888794, 0.030060425400733948, -0.04436061903834343, -0.07442820072174072,
- -0.011698503978550434, -0.06924715638160706, -0.04361655190587044, 0.028543412685394287,
- -0.040514037013053894, -0.08038372546434402, -0.11229769140481949, 0.024979377165436745,
- 0.007607482373714447, 0.018132276833057404, -0.010639391839504242, 0.01751442812383175,
- -0.09482478350400925, -0.07184300571680069, 0.01675439439713955, 0.08374541997909546,
- 0.04588255286216736, -0.10197194665670395, -0.03550206124782562, 0.09168899804353714,
- -0.013549558818340302, 0.10755357146263123, 0.046196889132261276, -0.05140906944870949,
- -0.07806799560785294, 0.05555866286158562, 0.06644643098115921, 0.18037663400173187,
- -0.027811778709292412, 0.05421587452292442, 0.03756235912442207, 0.17835652828216553,
- 0.007600672077387571, 0.009402233175933361, -0.04966852068901062, 0.03356914594769478,
- 0.01754654198884964, -0.01821628026664257, 0.08189484477043152, -0.09502644091844559,
- -0.006209532264620066, -0.040654152631759644, -0.03406652435660362,
- -0.04731586575508118, -0.023160936310887337, 0.22884756326675415, 0.04056506231427193,
- 0.036467861384153366, -0.025224821642041206, -0.04954373836517334, 0.003986401483416557,
- -0.12081825733184814, -0.060507480055093765, 0.0068374755792319775,
- 0.0023802961222827435, 0.010511163622140884, 0.0050393701530992985,
- -0.07024434208869934, -0.009407680481672287, -0.01172036211937666,
- -0.011984485201537609, 0.09392830729484558, -0.04081035777926445, 0.04815642908215523,
- -0.04036274924874306, 0.16810929775238037, 0.05320760980248451, 0.019428731873631477,
- 0.04379643499851227, 0.14152123034000397, -0.016790546476840973, -0.021836325526237488,
- -0.04693187400698662, -0.0605185367166996, -0.05539419874548912, 0.13489054143428802,
- -0.08270185440778732, 0.15948675572872162, 0.011520790867507458, -0.054374415427446365,
- -0.01707223802804947, -0.008450552821159363, -0.040106914937496185,
- 0.016616951674222946, -0.48743996024131775, -0.0164635106921196, 0.15821920335292816,
- -0.030021505430340767, 0.023542599752545357, 0.07295696437358856, 0.019374707713723183,
- -0.052836399525403976, -0.03410566225647926, -0.105354905128479, 0.12418165802955627,
- 0.018943646922707558, 0.08416607975959778, -0.0637059137225151, 0.01630358211696148,
- 0.11932337284088135, -0.045432012528181076, -0.026755770668387413, 0.014468190260231495,
- -0.20370028913021088, -0.009636152535676956, -0.04170795902609825, 0.0937698483467102,
- 0.050836917012929916, 0.037820518016815186, 0.12660594284534454, -0.04877786338329315,
- 0.033268652856349945, -0.0015889614587649703, -0.024288853630423546,
- 0.01620153896510601, 0.006703853607177734, -0.06490176171064377, 0.08544518798589706,
- 0.06772566586732864, 0.02613714523613453, -0.00017735148139763623, 12.296935081481934,
- 0.09072484821081161, 0.09708181023597717, -0.06455952674150467, 0.022023478522896767,
- -0.06746644526720047, 0.00012504936603363603, -0.10819675773382187,
- 0.057778019458055496, 0.13777005672454834, -0.02948526106774807, -0.030869266018271446,
- -0.049814801663160324, -0.12120082229375839, 0.013495109975337982, -0.06273423135280609,
- -0.018489545211195946, -0.04333363100886345, 0.055663567036390305, -0.04689778760075569,
- -0.08274900168180466, 0.05665702000260353, 0.10834932327270508, 0.018380384892225266,
- -0.0953001007437706, 0.02473519928753376, 0.005247242748737335, -0.05330123007297516,
- 0.012837919406592846, 0.033232659101486206, 0.036417145282030106, 0.06465897709131241,
- 0.08045952767133713, -0.01562855765223503, 0.05321165919303894, 0.02702007256448269,
- 0.04218488559126854, 0.032941725105047226, 0.00027110622613690794, 0.06350551545619965,
- -0.0008195252739824355, -0.003694789484143257, 0.01610609143972397, 0.06647583842277527,
- 0.07346010953187943, 0.01836484670639038, 0.08294730633497238, 0.1347343623638153,
- 0.00957780797034502, 0.06420113146305084, 0.09357599169015884, 0.0010829380480572581,
- 0.14945967495441437, 0.04771116003394127, 0.01391166914254427, 0.06896917521953583,
- -0.01168548408895731, -0.10384935885667801, 0.0754871666431427, 0.06578440964221954,
- -0.06520145386457443, 0.07125648111104965, 0.0311140064150095, 0.16143326461315155,
- 0.018328024074435234, 0.07255330681800842, 0.07248524576425552, 0.10407993942499161,
- -0.15837393701076508, -0.06910233944654465, 0.013257879763841629, -0.0874871015548706,
- -0.043564487248659134, 0.04282626509666443, 0.08609560877084732, -0.04393136128783226,
- 0.013107177801430225, -0.011188249103724957, 0.016731664538383484, -0.03184079751372337,
- -0.003406538860872388, 0.030001772567629814, -0.022231854498386383,
- -0.013833031989634037, 0.023766959086060524, 0.022129522636532784, 0.1021248996257782,
- 0.11760088056325912, 0.024151287972927094, -0.1294655203819275, -0.02494370937347412,
- 0.10950887203216553, -0.033735524863004684, -0.029415445402264595,
- -0.0020506256259977818, -0.09576180577278137, -0.008698699064552784,
- -0.20285749435424805, 0.10136469453573227, 0.12336701899766922, -0.08840007334947586,
- -0.04676958918571472, -0.039410751312971115, 0.09660231322050095,
- -0.0008811142179183662, 0.0074227252043783665, -0.07233688980340958,
- 0.026037225499749184, 0.005156728904694319, 0.032280195504426956, -0.0674246996641159,
- 0.08438760042190552, 0.091038279235363, -0.09582237154245377, 0.06675809621810913,
- 0.0594908632338047, 0.01949206553399563, -0.0349191352725029, 0.052954211831092834,
- 0.023841075599193573, -0.11115026473999023, -0.05736571550369263, -0.03313785418868065,
- -0.06038697063922882, -0.019071431830525398, -0.08997436612844467, 0.007567455526441336,
- 0.054701436311006546, -0.06104743480682373, -0.013551491312682629, 0.004294788930565119,
- 0.039571572095155716, 0.11124273389577866, -0.011867266148328781, 0.06410250812768936,
- -0.04089179262518883, -0.010372565127909184, 0.04889323189854622, 0.05445214733481407,
- 0.06941105425357819, -0.026344632729887962, -0.04757740721106529, -0.06466683000326157,
- -0.11086791753768921, 0.004889894742518663, 0.1101025715470314, 0.010234779678285122,
- 0.05222461000084877, 0.04351052641868591, -0.08152393251657486, -0.026726065203547478,
- 0.07608272135257721, 0.023101521655917168, 0.046713512390851974, 0.06859451532363892,
- -0.046924348920583725, -0.01507104653865099, 0.10024262219667435, -0.0454774908721447,
- 0.012756154872477055, 0.019151294603943825, -0.037492018193006516, 0.07080020010471344,
- -0.00634714774787426, 0.09643539041280746, 0.0058706155978143215, 0.07394122332334518,
- 0.00189062615390867, 0.03727545216679573, -0.0032018350902944803, 0.003698214888572693,
- -0.03939055651426315, -0.14146356284618378, -0.06869273632764816, 0.08297830820083618,
- 0.11835343390703201, 0.04073132947087288, -0.09957539290189743, -0.02590690366923809,
- -0.03787587583065033
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 284,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["BBC News"],
- "epoch_date_downloaded": 1660089600,
- "epoch_date_modified": 1660089600,
- "epoch_date_submitted": 1660089600,
- "flag": null,
- "report_number": 1887,
- "source_domain": "bbc.com",
- "submitters": ["Khoa Lam"],
- "title": "Facebook angers Flanders with Rubens ban",
- "url": "https://www.bbc.com/news/technology-44936601"
- },
- {
- "__typename": "Report",
- "authors": ["Jonathan Edwards"],
- "epoch_date_downloaded": 1660089600,
- "epoch_date_modified": 1660089600,
- "epoch_date_submitted": 1660089600,
- "flag": null,
- "report_number": 1886,
- "source_domain": "washingtonpost.com",
- "submitters": ["Khoa Lam"],
- "title": "Social media companies kept banning pictures of ‘explicit’ art. So, Vienna museums will now post on OnlyFans.",
- "url": "https://www.washingtonpost.com/nation/2021/10/20/vienna-museums-artwork-social-media-onlyfans/"
- },
- {
- "__typename": "Report",
- "authors": ["BBC News"],
- "epoch_date_downloaded": 1660089600,
- "epoch_date_modified": 1660089600,
- "epoch_date_submitted": 1660089600,
- "flag": null,
- "report_number": 1885,
- "source_domain": "bbc.com",
- "submitters": ["Khoa Lam"],
- "title": "Facebook rejects Montreal museum's ad over Picasso nude",
- "url": "https://www.bbc.com/news/world-us-canada-45062332"
- },
- {
- "__typename": "Report",
- "authors": ["BBC News"],
- "epoch_date_downloaded": 1660089600,
- "epoch_date_modified": 1660089600,
- "epoch_date_submitted": 1660089600,
- "flag": null,
- "report_number": 1884,
- "source_domain": "bbc.com",
- "submitters": ["Khoa Lam"],
- "title": "Facebook blocks nude painting by acclaimed artist",
- "url": "https://www.bbc.com/news/world-australia-39099726"
- },
- {
- "__typename": "Report",
- "authors": ["BBC News"],
- "epoch_date_downloaded": 1660089600,
- "epoch_date_modified": 1660089600,
- "epoch_date_submitted": 1660089600,
- "flag": null,
- "report_number": 1883,
- "source_domain": "bbc.com",
- "submitters": ["Khoa Lam"],
- "title": "Paris court rules against Facebook in French nudity case",
- "url": "https://www.bbc.com/news/world-europe-35559036"
- },
- {
- "__typename": "Report",
- "authors": ["Team Latestly"],
- "epoch_date_downloaded": 1660089600,
- "epoch_date_modified": 1660089600,
- "epoch_date_submitted": 1660089600,
- "flag": null,
- "report_number": 1882,
- "source_domain": "latestly.com",
- "submitters": ["Khoa Lam"],
- "title": "Facebook Bans Nudity? Social Media Removes Flemish Paintings by Rubens For Nude Content",
- "url": "https://www.latestly.com/technology/facebook-bans-nudity-social-media-removes-flemish-paintings-by-rubens-for-nude-content-285004.html"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "google",
- "name": "Google"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "google",
- "name": "Google"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "google-lens-users",
- "name": "Google Lens users"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [59, 14],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1888],
- "vector": [
- -0.05465524271130562, 0.027285536751151085, -0.011897353455424309,
- -0.030092645436525345, 0.08456532657146454, -0.04703744128346443, 0.01849428005516529,
- 0.06818251311779022, 0.05294763669371605, -0.11722975224256516, -0.0765300840139389,
- 0.10578911751508713, -0.00418914994224906, -0.06298734992742538, 0.02864217944443226,
- -0.1683165729045868, -0.12597978115081787, -0.07268543541431427, -0.04893013834953308,
- -0.031046586111187935, -0.10909111052751541, 0.03469855710864067, 0.016227656975388527,
- 0.09658797830343246, -0.02730979397892952, 0.06554828584194183, 0.1523895412683487,
- 0.08138135820627213, -0.09289669990539551, 0.02093677595257759, -0.019778771325945854,
- -0.03806834667921066, 0.15004530549049377, 0.005070585757493973, 0.07115394622087479,
- 0.1003044918179512, 0.07101170718669891, -0.02403603307902813, -0.017670517787337303,
- -0.012954751029610634, 0.04187578707933426, 0.25348755717277527, -0.05034573748707771,
- -0.039849452674388885, 0.046807046979665756, -0.011955409310758114, -0.0329706184566021,
- 0.06179986894130707, 0.021633649244904518, 0.007142307702451944, 0.0013920551864430308,
- 0.040727704763412476, -0.05241689458489418, 0.06851908564567566, -0.07328957319259644,
- 0.10258480906486511, 0.053350284695625305, -0.017511732876300812, 0.04389919713139534,
- -0.1342283934354782, -0.040887732058763504, -0.1760866791009903, -0.057296399027109146,
- -0.06872864812612534, 0.07778546214103699, -0.09519746899604797, -0.04870261624455452,
- 0.022289028391242027, 0.024582751095294952, 0.023631002753973007, 0.046310197561979294,
- -0.04086277633905411, -0.043723177164793015, -0.020920652896165848,
- -0.014270552434027195, -0.0725235566496849, -0.009721742942929268, 0.18660558760166168,
- -0.09736877679824829, 0.041174471378326416, 0.08556317538022995, -0.07554513216018677,
- 0.3309905230998993, 0.010278988629579544, -0.019679943099617958, 0.004984996281564236,
- 0.11535735428333282, 0.007996607571840286, 0.04311554878950119, 0.0284444410353899,
- -0.031104207038879395, 0.0647217333316803, -0.038835324347019196, 0.019578296691179276,
- 0.07533068209886551, 0.02542719617486, -0.010424500331282616, -0.1287924349308014,
- -0.04621831700205803, -0.055051110684871674, -0.03339013829827309, -0.07667259126901627,
- 0.11654766649007797, 0.05237732082605362, -0.048612888902425766, 0.02059106156229973,
- 0.041749387979507446, -0.03796329349279404, 0.0535033717751503, -0.02728114277124405,
- 0.02575153484940529, 0.02769968844950199, 0.07713687419891357, -0.009313932619988918,
- 0.015453214757144451, -0.07976505160331726, 0.03397461026906967, 0.0601939857006073,
- 0.07817184925079346, 0.09794285148382187, -0.03725582733750343, 0.08223193883895874,
- 0.05258093401789665, -0.034151215106248856, -0.0037972168065607548,
- 0.014906705357134342, -0.09746991842985153, -0.01765773631632328, -0.06608254462480545,
- 0.023446351289749146, -0.08225725591182709, -0.2411392480134964, -0.024572819471359253,
- 0.04238789156079292, -0.02212505415081978, 0.008232410065829754, 0.0020921528339385986,
- -0.10364940762519836, 0.055439382791519165, -0.014640258625149727, 0.02423500269651413,
- 0.016633696854114532, -0.016618303954601288, 0.03861317038536072, 0.03859720379114151,
- 0.07394823431968689, -0.047573938965797424, -0.04584088921546936, -0.004807621706277132,
- -0.025031190365552902, 0.11414558440446854, -0.10301083326339722, -0.06662945449352264,
- -0.019023124128580093, 0.004212932661175728, 0.7580058574676514, 0.10385193675756454,
- 0.16469556093215942, -0.018992168828845024, 0.00728180818259716, 0.18223968148231506,
- 0.02923799864947796, 0.05217187851667404, -0.05365084111690521, -0.04594627395272255,
- 0.018342331051826477, -0.051791105419397354, -0.027924366295337677,
- 0.013895748183131218, 0.04034974053502083, 0.08823516219854355, 0.05702511966228485,
- 0.08295658230781555, 0.02396184392273426, -0.10186818242073059, 0.024108583107590675,
- 0.06844822317361832, 0.005397826433181763, -0.14660905301570892, 0.00026860320940613747,
- 0.05890224128961563, 0.04713830351829529, -0.03002534992992878, 0.011847044341266155,
- -0.08676129579544067, 0.10347501188516617, -0.032519225031137466, 0.08056387305259705,
- -0.0781082883477211, 0.06949587911367416, 0.07756686955690384, 0.05777464434504509,
- -0.05806810408830643, -0.11673586070537567, -0.020122148096561432, 0.1147245541214943,
- -0.012588201090693474, -0.02045997604727745, 0.03621634840965271, -0.11825886368751526,
- 0.07262106239795685, -0.04238833114504814, 0.19523999094963074, -0.1325894445180893,
- 0.03141769766807556, 0.00032051047310233116, 0.009431296028196812, 0.007461517117917538,
- 0.015518189407885075, -0.06056700274348259, -0.07374068349599838, 0.10193972289562225,
- 0.0077563063241541386, 0.08898492157459259, -0.0017728612292557955,
- -0.006768893916159868, 0.053676530718803406, 0.08323240280151367, -0.044416483491659164,
- -0.04387391731142998, 0.07727046310901642, 0.05269503965973854, -0.023899413645267487,
- -0.019914016127586365, 0.03302847221493721, -0.04496252164244652, 0.046338748186826706,
- -0.0053105102851986885, 0.01379319280385971, -0.011496156454086304,
- -0.013450266793370247, 0.04154627397656441, 0.015399346128106117, 0.05412539094686508,
- 0.12284528464078903, -0.032541338354349136, -0.02416834980249405, -0.04487583413720131,
- -0.11636052280664444, 0.02395271509885788, -0.012946387752890587, 0.05975834280252457,
- 0.10675842314958572, 0.06855183839797974, 0.028141191229224205, 0.04763587564229965,
- 0.06115616112947464, 0.090575210750103, 0.012748025357723236, 0.06938189268112183,
- -0.05718342587351799, -0.04508407413959503, -0.03264322876930237, -0.03546558693051338,
- 0.028641831129789352, -0.01862170733511448, -0.054194822907447815,
- -0.016663504764437675, -0.03816605359315872, -0.052912406623363495,
- -0.08024141192436218, -0.08833041042089462, 0.020535379648208618, 0.0244632288813591,
- -0.10072439163923264, -0.08110146224498749, -0.09483996778726578, -0.015191920101642609,
- 0.08314039558172226, -0.04828210920095444, -0.00996971782296896, -0.11298073828220367,
- 0.013440672308206558, -0.030807677656412125, 0.035382259637117386,
- -0.014824086800217628, -0.000877479906193912, 0.01708037406206131, -0.04117769002914429,
- 0.03782426938414574, -0.011862608604133129, -0.022458789870142937, -0.05941846966743469,
- -0.11393610388040543, -0.007220837287604809, -0.027440473437309265,
- -0.01591847464442253, -0.05857917666435242, 0.016356779262423515, 0.09076626598834991,
- 0.08682087808847427, -0.05363209918141365, -0.03314869478344917, 0.06012660637497902,
- -0.035602521151304245, -0.017258280888199806, 0.058716461062431335,
- -0.010129700414836407, 0.0747862309217453, -0.013926149345934391, -0.08006401360034943,
- -0.02757035568356514, 0.005706769414246082, -0.037825655192136765,
- 0.0008530594641342759, -0.015335953794419765, -0.0016648569144308567,
- -0.03836079686880112, -0.016919994726777077, -0.003731182310730219,
- -0.05100666359066963, -0.10108651965856552, -0.09272643178701401, 0.20885197818279266,
- -0.012914144434034824, -0.00780055345967412, 0.08080016076564789, -0.0559995211660862,
- 0.05292405188083649, -0.01442119013518095, 0.005017613992094994, 0.07754459232091904,
- 0.125671848654747, 0.01920768991112709, 0.02794625610113144, 0.0488927885890007,
- -0.056192077696323395, -0.006913430523127317, 0.07098781317472458, 0.4887130856513977,
- -0.19241739809513092, 0.07387837767601013, 0.10834662616252899, -0.03222866356372833,
- 0.028697824105620384, -0.0641777366399765, 0.07879602164030075, 0.06352045387029648,
- 0.1267472356557846, 0.1049516350030899, -0.054908059537410736, 0.030423488467931747,
- -0.06969007104635239, 0.12545634806156158, -0.02377103641629219, -0.012663722969591618,
- 0.02233758196234703, -0.07484836131334305, -0.0031739352270960808, 0.023892488330602646,
- -0.06613899767398834, 0.009181209839880466, -0.04430973529815674, -0.07873815298080444,
- 0.023435724899172783, 0.0721544697880745, -0.011782323941588402, 0.00907827727496624,
- 0.028109466657042503, 0.02727418951690197, 0.07197004556655884, 0.022630274295806885,
- 0.023860227316617966, -0.1401267796754837, 0.07388601452112198, -0.0720428004860878,
- -0.1312876045703888, 0.04570971801877022, -0.027846846729516983, 0.055269427597522736,
- 0.09342622011899948, -0.04373129829764366, 0.05772018805146217, -0.03927921503782272,
- -0.03325938060879707, 0.018226556479930878, 0.10749684274196625, 0.027533547952771187,
- 0.05003810673952103, 0.14917275309562683, -0.02214033342897892, 0.031976133584976196,
- -0.07847775518894196, 0.09359828382730484, 0.1414838284254074, -0.03462333232164383,
- 0.02206958830356598, 0.025523314252495766, 0.022238409146666527, 0.006555443163961172,
- -0.01421278528869152, -0.10668627172708511, 0.0160171277821064, -0.06029587984085083,
- 0.08568499237298965, 0.01903741993010044, -0.02325616218149662, -0.18228913843631744,
- -0.08641482889652252, -0.03563995286822319, 0.007660075090825558, 0.1231960877776146,
- -0.08230823278427124, 0.05492200702428818, 0.04650893434882164, 0.04880404472351074,
- 0.031954433768987656, -0.06679077446460724, -0.016201166436076164, -0.07896087318658829,
- 0.033921852707862854, 0.06766552478075027, 0.08295635879039764, -0.024637402966618538,
- 0.09043092280626297, -0.06741099059581757, 0.11337319761514664, -0.06763957440853119,
- -0.0543685145676136, 0.02186817303299904, -0.0036554308608174324, 0.05124751850962639,
- -0.0009112834231927991, -0.028698071837425232, 0.0059464373625814915,
- -0.06765922904014587, -0.030923763290047646, -0.06275108456611633, -0.07085776329040527,
- -0.01347601693123579, -0.06829988956451416, 0.108727365732193, -0.0954812690615654,
- -0.0336303748190403, -0.02512005902826786, -0.04588336870074272, -0.022181592881679535,
- 0.002510051941499114, -0.013958427123725414, -0.1919676810503006, 0.014356855303049088,
- 0.02165435068309307, 0.07547421008348465, -0.02798299863934517, -0.03348885849118233,
- -0.011079180054366589, 0.11777900159358978, 0.03820145130157471, 0.01943272165954113,
- -0.01807204633951187, -0.11674562096595764, -0.03833867236971855, -0.16143126785755157,
- -0.3158281147480011, 0.030501175671815872, 0.03648320585489273, 0.06113962456583977,
- 0.006110518239438534, -0.06829401105642319, 0.06832990050315857, 0.015159590169787407,
- -0.04526523873209953, 0.0462518110871315, -0.08751626312732697, 0.006270421668887138,
- -0.06421332061290741, -0.06091649457812309, 0.02303878590464592, -0.07453082501888275,
- -0.028610127046704292, 0.035360995680093765, -0.05072963982820511, -0.10482967644929886,
- -0.10934131592512131, 0.04562446475028992, -0.03678697347640991, 0.0003325581201352179,
- -0.006787389982491732, 0.05335291847586632, -0.10072068870067596, -0.06305153667926788,
- 0.004219059366732836, 0.08027535676956177, 0.05268058180809021, -0.10003077238798141,
- -0.020187215879559517, 0.08353646099567413, -0.006734468042850494, 0.10733851045370102,
- 0.004662818741053343, 0.01732488162815571, -0.051548928022384644, 0.03858964517712593,
- 0.0573042631149292, 0.1829741895198822, 0.029681403189897537, -0.01278864685446024,
- 0.03134820982813835, 0.15079428255558014, 0.09327537566423416, 0.03651135042309761,
- -0.015577778220176697, -0.07611910253763199, 0.0010838129092007875,
- -0.03183392807841301, 0.10312804579734802, -0.0922573134303093, -0.001789217465557158,
- -0.02014671452343464, 0.029410716146230698, -0.03434627875685692, -0.020591791719198227,
- 0.22810527682304382, 0.00446377694606781, 0.047025784850120544, -0.00024698616471141577,
- -0.04665056988596916, 0.01964552141726017, -0.05603000149130821, -0.05806732922792435,
- -0.025504332035779953, 0.01107500959187746, -0.02237054519355297, -0.03763192519545555,
- -0.09616874158382416, -0.019258948042988777, -0.027146534994244576, 0.01508113369345665,
- 0.13471581041812897, -0.08770573139190674, 0.021086348220705986, -0.05370818451046944,
- 0.17017382383346558, 0.0344560332596302, -0.0050669340416789055, 0.01862690970301628,
- 0.10547754913568497, 0.028675837442278862, 0.033428724855184555, -0.043070320039987564,
- -0.09037219732999802, 0.0036651010159403086, 0.12620152533054352, -0.07492677122354507,
- 0.11492006480693817, 0.01902283914387226, 0.01585361920297146, -0.05428144708275795,
- 0.02266329526901245, -0.013418786227703094, -0.00008274261199403554,
- -0.4393267035484314, -0.034205950796604156, 0.1429842710494995, 0.03317512571811676,
- -0.020445629954338074, 0.0842600092291832, 0.007745401002466679, -0.06447888165712357,
- 0.03323621675372124, -0.15172778069972992, 0.14706286787986755, 0.024105461314320564,
- 0.04705885425209999, -0.05870455503463745, 0.006553866434842348, 0.09242997318506241,
- -0.03919941186904907, -0.006317143328487873, 0.10156858712434769, -0.2063778042793274,
- -0.008521068841218948, -0.045893989503383636, 0.14316010475158691, 0.015040282160043716,
- 0.0668940395116806, 0.07557164132595062, -0.023034146055579185, 0.047396834939718246,
- 0.04381891340017319, -0.007875812239944935, 0.01479548029601574, -0.011121689341962337,
- -0.038455136120319366, 0.10638086497783661, 0.12843334674835205, 0.009178191423416138,
- -0.011467909440398216, 12.170385360717773, 0.05244734510779381, 0.04313197359442711,
- -0.04717260226607323, -0.013287149369716644, -0.09216462075710297, 0.01997055485844612,
- -0.08505261689424515, 0.08831733465194702, 0.17768800258636475, -0.06235155463218689,
- -0.0545993410050869, -0.030855825170874596, -0.06230350583791733, -0.009663442149758339,
- -0.02441824972629547, -0.021054137498140335, -0.07025313377380371, 0.047907911241054535,
- -0.04491564258933067, -0.06796547770500183, 0.06508992612361908, 0.09372895956039429,
- 0.03625108301639557, -0.07839255779981613, 0.03983316197991371, 0.01658613607287407,
- -0.01761452667415142, -0.007130938582122326, 0.035517677664756775,
- 0.0004341891035437584, 0.001077013905160129, 0.022199422121047974,
- 0.0020839751232415438, 0.07282812148332596, 0.14405731856822968, 0.08217854052782059,
- 0.03579040989279747, -0.019731009379029274, 0.048554275184869766, -0.017733344808220863,
- 0.027391623705625534, 0.00025329351774416864, 0.04969456419348717, 0.07510846853256226,
- 0.03882361948490143, 0.07429809868335724, 0.13318608701229095, 0.06222054734826088,
- 0.08139553666114807, 0.08098222315311432, 0.005492453929036856, 0.14075368642807007,
- 0.059495799243450165, -0.03289760649204254, -0.026462892070412636, 0.013061931356787682,
- -0.10186833888292313, 0.10381225496530533, 0.08996205031871796, -0.0704859048128128,
- 0.135064497590065, 0.009123374707996845, 0.10185457766056061, 0.06442972272634506,
- 0.04095139726996422, 0.05191616714000702, 0.09608166664838791, -0.20367184281349182,
- -0.056856200098991394, 0.02439679391682148, -0.11558859795331955, -0.09954674541950226,
- 0.10685405135154724, 0.08943033963441849, -0.05793404579162598, 0.08500166237354279,
- -0.05945415794849396, 0.07943129539489746, -0.039986029267311096, 0.0038457070477306843,
- 0.010831275023519993, -0.007883436046540737, 0.006956399884074926, 0.022814244031906128,
- 0.03063933365046978, 0.09670500457286835, 0.12590913474559784, -0.027029607445001602,
- -0.07625987380743027, -0.0675157681107521, 0.11008504033088684, -0.05072518810629845,
- -0.09571879357099533, 0.04444660618901253, -0.07255527377128601, 0.051322050392627716,
- -0.17332777380943298, 0.05144966393709183, 0.10343681275844574, -0.0583343468606472,
- -0.0861070454120636, -0.04678109660744667, 0.02327459119260311, 0.016790974885225296,
- 0.05469121038913727, -0.07410609722137451, -0.007092201616615057, 0.04727419465780258,
- 0.03305022791028023, -0.035522401332855225, 0.04517090693116188, 0.052913203835487366,
- -0.05130988731980324, 0.04953223094344139, 0.038710933178663254, -0.0036868478637188673,
- -0.004762893542647362, 0.07605283707380295, 0.08971289545297623, -0.07450690865516663,
- -0.0665678009390831, -0.041253358125686646, -0.014928968623280525,
- -0.019738832488656044, -0.039293549954891205, 0.035468507558107376,
- 0.033458299934864044, -0.0206795334815979, -0.022682730108499527, 0.03406007960438728,
- 0.0407760925590992, 0.09183359146118164, -0.03171669319272041, 0.058874234557151794,
- -0.04273531958460808, -0.04647808149456978, -0.0029527959413826466,
- 0.002023473149165511, 0.041885778307914734, -0.04328406974673271, -0.060490529984235764,
- -0.09937188029289246, -0.1105177253484726, 0.04262548312544823, 0.08736174553632736,
- 0.12060645967721939, 0.08798360079526901, 0.04411439597606659, -0.0655413269996643,
- -0.007904180325567722, 0.14032670855522156, 0.02714623138308525, -0.028157945722341537,
- 0.012399602681398392, -0.06559253484010696, -0.0013132111635059118,
- 0.027430707588791847, -0.0911938026547432, 0.02338496409356594, 0.04311515763401985,
- -0.14817264676094055, 0.08060668408870697, 0.12487813830375671, 0.06363477557897568,
- 0.028793515637516975, 0.04075315594673157, -0.0036520317662507296, 0.05532100796699524,
- -0.003965945448726416, 0.0717729926109314, -0.007301097735762596, -0.10483788698911667,
- -0.05096442997455597, 0.0511983223259449, 0.13281366229057312, 0.08552584797143936,
- -0.11875443160533905, -0.051621176302433014, -0.018227849155664444
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 285,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 59,
- "similarity": 0.9980127215385437
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 13,
- "similarity": 0.9979316592216492
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 14,
- "similarity": 0.9978480339050293
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Sean McGregor", " César Varela"],
- "epoch_date_downloaded": 1660089600,
- "epoch_date_modified": 1660089600,
- "epoch_date_submitted": 1660089600,
- "flag": null,
- "report_number": 1888,
- "source_domain": "incidentdatabase.ai",
- "submitters": ["Sean McGregor"],
- "title": "Multilingual Incident Reporting",
- "url": "https://incidentdatabase.ai/blog/multilingual-incident-reporting"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "tiktok",
- "name": "TikTok"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "tiktok",
- "name": "TikTok"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "tiktok-young-users",
- "name": "TikTok young users"
- },
- {
- "__typename": "Entity",
- "entity_id": "tiktok-users",
- "name": "TikTok users"
- },
- {
- "__typename": "Entity",
- "entity_id": "lalani-erika-renee-walton's-family",
- "name": "Lalani Erika Renee Walton's family"
- },
- {
- "__typename": "Entity",
- "entity_id": "lalani-erika-renee-walton",
- "name": "Lalani Erika Renee Walton"
- },
- {
- "__typename": "Entity",
- "entity_id": "arriani-jaileen-arroyo's-family",
- "name": "Arriani Jaileen Arroyo's family"
- },
- {
- "__typename": "Entity",
- "entity_id": "arriani-jaileen-arroyo",
- "name": "Arriani Jaileen Arroyo"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [2052, 1889],
- "vector": [
- -0.06876818835735321, 0.07663797587156296, 0.0029613450169563293, -0.13458064943552017,
- 0.05405367910861969, 0.0033459775149822235, 0.03456168528646231, 0.10459386184811592,
- 0.09864788874983788, -0.14748140424489975, 0.04751298949122429, 0.01621216908097267,
- 0.01585912238806486, -0.06803025119006634, -0.033126529306173325, -0.12032637372612953,
- -0.10238161310553551, -0.026356910355389118, -0.0046552130952477455,
- -0.15871459245681763, -0.0687507875263691, 0.0076359850354492664, 0.0686003603041172,
- 0.13265379518270493, -0.07816949859261513, 0.05200286582112312, 0.12147123739123344,
- 0.17214065790176392, -0.01968707051128149, 0.08511518687009811, -0.014205826446413994,
- -0.0558531079441309, 0.13847658038139343, 0.012283114017918706, -0.02773872669786215,
- 0.09879359602928162, 0.012925011105835438, -0.03686321899294853, -0.008011162979528308,
- -0.025006799260154366, -0.005473042838275433, 0.2573585659265518, -0.01993007119745016,
- -0.013773427810519934, 0.05011611804366112, -0.013910394161939621, 0.056873830035328865,
- 0.0952877625823021, -0.025413181632757187, -0.027092227712273598, -0.017511773854494095,
- 0.04677479527890682, -0.032755451276898384, 0.01699500810354948, -0.1416437327861786,
- 0.09252183884382248, 0.049214426428079605, -0.03681768383830786, -0.00483382772654295,
- -0.052039531990885735, -0.049030317924916744, -0.24476994574069977,
- -0.03836997412145138, -0.05805978365242481, 0.08588458970189095, -0.08639706671237946,
- -0.027540506795048714, 0.03439168632030487, 0.025227537378668785, 0.10503571480512619,
- 0.022550521418452263, -0.017714435467496514, -0.049543771892786026,
- 0.004668780718930066, 0.02239573746919632, -0.06444362923502922, 0.07520308718085289,
- 0.2344786822795868, -0.12760614603757858, 0.04402884468436241, 0.15903878211975098,
- -0.10742240399122238, 0.43724146485328674, -0.04930688254535198, -0.04456430487334728,
- 0.021098338183946908, 0.04891282133758068, 0.020507252775132656, 0.028916431590914726,
- 0.058046359568834305, -0.031849145983869676, -0.0010864405776374042,
- -0.013201528694480658, -0.009702316019684076, 0.07465487346053123, 0.0415114127099514,
- -0.04620738513767719, 0.0107976533472538, -0.005464475369080901, -0.06683563441038132,
- 0.030341513454914093, -0.043454527854919434, 0.0728033222258091, 0.1620141640305519,
- -0.08157151937484741, 0.03975548781454563, 0.08284391090273857, -0.06811307184398174,
- 0.046075133606791496, -0.05435800924897194, -0.008969079819507897, 0.014584535616450012,
- 0.05630439892411232, 0.03644031751900911, 0.06837436929345131, -0.01653805049136281,
- 0.03988200053572655, 0.04898863099515438, 0.08565457910299301, 0.019810152240097523,
- 0.038686130195856094, 0.07231581211090088, 0.13520916923880577, -0.016029077756684273,
- -0.008144664112478495, -0.03931170701980591, -0.06036659516394138, -0.03527177544310689,
- -0.019952853908762336, 0.08607076108455658, -0.03599502518773079, -0.21459974348545074,
- 0.0474140290170908, 0.12041782215237617, 0.008127042790874839, -0.03668064344674349,
- -0.02844236698001623, -0.06316911056637764, -0.013427418889477849,
- -0.030190457589924335, -0.0407397523522377, 0.04344344511628151, 0.0461504440754652,
- 0.029706458561122417, 0.07929866015911102, 0.05791454389691353, -0.06031938083469868,
- -0.022468154318630695, -0.029022545786574483, -0.009150335565209389,
- 0.09532242640852928, -0.1706886887550354, -0.06900259666144848, 0.009994445368647575,
- -0.011777816340327263, 0.6686797440052032, 0.1313534453511238, 0.17590877413749695,
- -0.021648296620696783, -0.019289116840809584, 0.18862880766391754,
- -0.024264871142804623, 0.029012811835855246, -0.10888306796550751, -0.05033935233950615,
- 0.007883595768362284, -0.08995707705616951, -0.08938581123948097, 0.011099219089373946,
- -0.01034045871347189, 0.11355901882052422, 0.05708405375480652, 0.1112767830491066,
- 0.021097003016620874, -0.11325696110725403, -0.024432254023849964, 0.03621767042204738,
- 0.02607279270887375, -0.1274152360856533, -0.031524259597063065, 0.013579518534243107,
- 0.08346618711948395, -0.06378790363669395, 0.01014491484966129, -0.06545568257570267,
- 0.0036326260305941105, -0.01483363751322031, 0.03173370659351349, -0.04098540544509888,
- 0.03888582997024059, -0.017496684566140175, 0.04249099642038345, 0.030403209369978867,
- -0.13907813280820847, -0.046249691396951675, 0.1363988071680069, 0.02150733768939972,
- -0.047968268394470215, 0.10170981287956238, -0.0970737412571907, 0.03786662966012955,
- 0.05071910284459591, 0.1843622699379921, -0.13904844224452972, -0.010237410926492885,
- -0.04039115086197853, -0.05294538848102093, 0.074873186647892, -0.044922370463609695,
- -0.09224311634898186, -0.06220635212957859, 0.04366506962105632, 0.034682783763855696,
- 0.07381706684827805, 0.07340368442237377, -0.03187659475952387, 0.035275520756840706,
- 0.029615061357617378, -0.00514342595852213, -0.04936140589416027, 0.07182340323925018,
- 0.05061641335487366, -0.05865256302058697, -0.0774301216006279, 0.050590711645781994,
- 0.09333186224102974, 0.02028494782280177, 0.0037444825284183025, 0.06439490430057049,
- 0.024971154518425465, -0.04048691503703594, 0.03884432511404157, 0.03181983716785908,
- -0.00942983292043209, 0.060661232098937035, -0.0373495239764452, -0.019488764461129904,
- -0.011353768408298492, -0.005114213214255869, 0.032539740204811096,
- -0.040542006492614746, 0.08888044208288193, 0.1020502820611, 0.05285684950649738,
- -0.005414740997366607, 0.07318447902798653, 0.087580606341362, 0.034432572312653065,
- 0.00917753018438816, 0.0883997194468975, -0.00768849765881896, -0.02278564404696226,
- -0.046160874888300896, 0.011628573993220925, 0.048313045874238014, 0.031530044041574,
- -0.09882841259241104, -0.03252101130783558, -0.03004162199795246, -0.06599924527108669,
- -0.12396176904439926, -0.03274125978350639, 0.005990076810121536, 0.07339130714535713,
- -0.025046268478035927, -0.12543778866529465, -0.113233283162117, 0.030596652999520302,
- 0.07709800824522972, -0.02815595082938671, -0.06880822777748108, -0.14007429778575897,
- 0.02501670178025961, -0.035713737132027745, 0.0693974643945694, -0.02809523232281208,
- 0.05690780468285084, -0.02490678569301963, -0.06693214550614357, 0.036749158054590225,
- 0.004315336234867573, -0.0008799228817224503, -0.04592898488044739, -0.0700949877500534,
- -0.033842965960502625, -0.015082287602126598, 0.03336254879832268,
- -0.044330366887152195, 0.01894960831850767, 0.04415478743612766, 0.022917811758816242,
- -0.005209750030189753, -0.01161918044090271, 0.07540030032396317, -0.03867713734507561,
- 0.015401102602481842, 0.1096009761095047, -0.04561125300824642, 0.003714111866429448,
- -0.006355470046401024, -0.028967880178242922, -0.04037957452237606,
- -0.0033046575263142586, -0.09090042114257812, 0.10337687656283379, -0.04476228170096874,
- -0.005177304847165942, -0.042203398421406746, -0.02598526794463396, 0.08001751825213432,
- -0.09703264757990837, -0.04835531674325466, -0.05345802754163742, 0.07615070044994354,
- -0.046683406457304955, 0.013433989835903049, -0.06184973940253258, -0.10295512527227402,
- 0.04643609095364809, 0.0006220769137144089, -0.0025119664787780493, 0.05404701456427574,
- 0.03174634464085102, -0.03724985383450985, 0.002185398479923606, 0.11246393620967865,
- 0.011921517318114638, -0.0003732085460796952, 0.08110563829541206, 0.4026194214820862,
- -0.1386069841682911, 0.12562163546681404, 0.06010092981159687, 0.010003230185247958,
- 0.06505284644663334, 0.008013041689991951, 0.07834001630544662, 0.07489846646785736,
- 0.1367923505604267, 0.10003780201077461, -0.09806493297219276, 0.009464916656725109,
- -0.05296021141111851, 0.10203434526920319, -0.001414501341059804, 0.04615453677251935,
- -0.0033909743651747704, -0.08009994775056839, -0.016708382754586637,
- 0.02519148215651512, -0.009353934787213802, 0.02999596018344164, -0.022819504141807556,
- -0.050518911331892014, 0.058536017313599586, -0.03175479744095355, 0.05416816473007202,
- -0.03198843449354172, 0.06695134751498699, -0.06968551501631737, 0.062065938487648964,
- 0.018528083339333534, 0.06129702366888523, -0.12287455052137375, 0.0361408032476902,
- -0.10860363766551018, -0.09148514270782471, 0.08171927183866501, 0.021245920564979315,
- 0.06508998572826385, 0.040264395996928215, 0.0022653453052043915, 0.05257011018693447,
- 0.021639153826981783, -0.08175699040293694, 0.00870554894208908, 0.06339169107377529,
- 0.037158248014748096, 0.10234325751662254, 0.17134051024913788, -0.021204512799158692,
- -0.05372517742216587, -0.084763053804636, 0.06799388118088245, 0.11561265960335732,
- -0.006008858326822519, 0.03614633250981569, 0.023377353325486183, -0.02421404141932726,
- 0.01391807640902698, -0.06899081356823444, -0.07963172718882561, -0.009407756850123405,
- -0.04871482960879803, 0.05589664354920387, 0.010823251446709037, -0.029750207904726267,
- -0.12480444461107254, 0.003489472670480609, -0.05846650339663029, 0.0036053045078006107,
- 0.17320912331342697, -0.05931997857987881, 0.036503419280052185, 0.02420525811612606,
- 0.008801756426692009, 0.04023383557796478, -0.11132537573575974, 0.0398769024759531,
- -0.03850068338215351, 0.02677602367475629, 0.030838106758892536, 0.04241310805082321,
- -0.07132421433925629, 0.06801169924438, -0.14287909120321274, 0.08749961853027344,
- -0.0014609619975090027, -0.0552771370857954, 0.00845698220655322, -0.056088365614414215,
- 0.0034424952464178205, 0.05579512193799019, -0.06137317977845669,
- -0.0005155317485332489, -0.009318545693531632, -0.05116282217204571,
- -0.06802958063781261, -0.10968369990587234, -0.073182363063097, -0.08974187448620796,
- 0.06776995956897736, -0.11942778155207634, 0.027272824198007584, -0.025405424647033215,
- 0.005495583754964173, 0.020806733518838882, 0.027130155824124813, 0.04716364108026028,
- -0.15872759371995926, 0.0023149102926254272, 0.011650750413537025, 0.07249147072434425,
- -0.10270153358578682, -0.06255189701914787, 0.04016937082633376, 0.041035416536033154,
- 0.01026553986594081, 0.02624870091676712, 0.048088397830724716, -0.03891164809465408,
- 0.09575941786170006, -0.13772204518318176, -0.39156264066696167, 0.021833323407918215,
- 0.007013965863734484, 0.0948389321565628, 0.026253720745444298, -0.05234844796359539,
- 0.08476157858967781, 0.07009708136320114, -0.05338958278298378, 0.1172214187681675,
- -0.055325135588645935, 0.026342793367803097, -0.013948380947113037,
- -0.06943633034825325, -0.022735048551112413, -0.041987158358097076,
- -0.032401079311966896, 0.006543015828356147, -0.005710807745344937,
- -0.07747499644756317, -0.1343596950173378, -0.014254954643547535, -0.046387696638703346,
- 0.05366171710193157, 0.0017312432173639536, 0.03408953174948692, -0.05409577675163746,
- 0.001421630848199129, 0.03333785757422447, 0.06609039194881916, -0.033610688522458076,
- -0.0597553551197052, -0.0075585138984024525, 0.041228015907108784,
- -0.0020328410901129246, 0.17655684053897858, 0.063500901684165, 0.02582406485453248,
- -0.09806431829929352, 0.08808863908052444, 0.09455690905451775, 0.18390335142612457,
- -0.000651335358270444, 0.051731021143496037, 0.022510854993015528, 0.15654268115758896,
- 0.01746623171493411, 0.05484571307897568, -0.03175387904047966, 0.044713644310832024,
- -0.01563218585215509, 0.025643108878284693, 0.095433309674263, -0.09161507710814476,
- 0.004272222751751542, -0.06137893535196781, -0.027638372965157032,
- -0.0020585701568052173, 0.03890933282673359, 0.14230771362781525, 0.01311286399140954,
- 0.012432793388143182, 0.045305924490094185, -0.11313890665769577, 0.0016002586344256997,
- -0.10094795376062393, -0.11278647556900978, -0.0009822966530919075,
- 0.019121160730719566, 0.05660600587725639, -0.032323750667274, -0.164827361702919,
- -0.006747351959347725, -0.11530571058392525, 0.016689333831891418, 0.12076572328805923,
- -0.04282552096992731, 0.019765920005738735, -0.0481390580534935, 0.15100375562906265,
- 0.03348207287490368, 0.05351225007325411, 0.032947652973234653, 0.08569154143333435,
- -0.003652743442216888, -0.008253420470282435, -0.07021944969892502,
- -0.10309478268027306, -0.04727957770228386, 0.17033187299966812, -0.0035149637842550874,
- 0.13926073908805847, 0.05355430394411087, -0.04355667345225811, -0.03636489436030388,
- 0.0055436750408262014, -0.07836062088608742, 0.008194779977202415, -0.4157889038324356,
- -0.027752910740673542, 0.1408100500702858, 0.0693966206163168, 0.028192865662276745,
- 0.11368728429079056, 0.02041408757213503, -0.014943704940378666, -0.05852664075791836,
- -0.07759309560060501, 0.2231830358505249, -0.021115636336617172, 0.07396534085273743,
- -0.16226623952388763, 0.045662784948945045, 0.08319718018174171, -0.018764280364848673,
- 0.005108746467158198, 0.06347564421594143, -0.22803201526403427, -0.05734444037079811,
- -0.06260162591934204, 0.17101451754570007, 0.04835614375770092, 0.010555415647104383,
- 0.103806272149086, -0.02713422290980816, -0.011055636685341597, -0.012097950326278806,
- -0.007345103658735752, 0.07460519298911095, -0.031873331405222416,
- -0.029391801916062832, 0.12553586065769196, 0.09017704613506794, 0.03214223962277174,
- -0.04732484929263592, 12.09082555770874, 0.0907735712826252, 0.029131712391972542,
- -0.09977155551314354, 0.03808053582906723, -0.040962327271699905, 0.02217295952141285,
- -0.11561275646090508, 0.0026355660520493984, 0.0889829620718956, 0.00010267773177474737,
- -0.0532157551497221, -0.06472979113459587, -0.10455351695418358, -0.04313424974679947,
- -0.06147236377000809, -0.08034390583634377, 0.02289204765111208, 0.07666006870567799,
- -0.010798759059980512, -0.04554716870188713, 0.006551878526806831, 0.04416675865650177,
- -0.0017918865196406841, -0.0661810077726841, 0.00819056248292327, 0.046693711541593075,
- 0.0011547505855560303, 0.018711946671828628, -0.004941858584061265,
- 0.017559993139002472, 0.062348976731300354, 0.07822833210229874, -0.04098290391266346,
- -0.0021838018437847495, 0.025888094678521156, 0.0035604657605290413,
- 0.02586516726296395, -0.0020417249761521816, 0.11128159239888191, 0.02560047945007682,
- 0.016069809440523386, 0.049439385533332825, 0.03060517692938447, 0.0972466766834259,
- -0.004064844048116356, 0.03890530951321125, 0.12722208350896835, -0.003119892906397581,
- 0.048686299473047256, 0.08443887531757355, -0.010408223490230739, 0.09984266012907028,
- 0.05363224260509014, -0.016925546806305647, 0.09487009420990944, -0.03904166631400585,
- -0.08533647656440735, 0.101108368486166, 0.06722283363342285, -0.06140288524329662,
- 0.06660669296979904, 0.05684686824679375, 0.11954084783792496, 0.008770626125624403,
- 0.039404177106916904, 0.10373444482684135, 0.055971259251236916, -0.1308695375919342,
- -0.029724974650889635, 0.039382425136864185, -0.06411111168563366, -0.05033663660287857,
- 0.09005112573504448, 0.07196471653878689, -0.027969765476882458, 0.13278762251138687,
- 0.012368121824692935, 0.026509354822337627, -0.04026706889271736, 0.019213872961699963,
- 0.07476203329861164, -0.09724430739879608, -0.00804789480753243, 0.03112500812858343,
- 0.03569021914154291, 0.134435273706913, 0.0965888537466526, -0.015144997276365757,
- -0.11259857192635536, -0.11415679380297661, 0.11891062185168266, -0.01842265948653221,
- -0.06344902142882347, -0.008889729622751474, -0.04895952343940735, 0.02907022088766098,
- -0.15078981220722198, 0.06902768276631832, 0.09382330998778343, -0.09935663267970085,
- -0.03381901979446411, -0.057620901614427567, 0.09029829129576683, -0.04016024246811867,
- 0.005617467220872641, -0.09964096918702126, 0.028045326471328735,
- -0.0068911719135940075, 0.05897541157901287, -0.07011277228593826, 0.10311964526772499,
- 0.1181742362678051, -0.08470027148723602, 0.035621173679828644, 0.09419909119606018,
- -0.08082050085067749, -0.055941903963685036, 0.08597764372825623, -0.020376963540911674,
- -0.09000501036643982, -0.03900209441781044, -0.051535019651055336, -0.03850148990750313,
- -0.0251081557944417, -0.03780592074326705, -0.003997597588750068, -0.01533613633364439,
- -0.05384720303118229, -0.046810656785964966, 0.05390397273004055, 0.021484028548002243,
- 0.07930226810276508, 0.04057404212653637, 0.07303305715322495, -0.057443274185061455,
- -0.06418513134121895, 0.06366357021033764, 0.055915018543601036, 0.1163552887737751,
- -0.037786293774843216, -0.0504135899245739, -0.03304144460707903, -0.09302911534905434,
- 0.030510511249303818, 0.06686043739318848, 0.039739226922392845, 0.03501466475427151,
- 0.023499553091824055, -0.11984822899103165, -0.10446089506149292, 0.09223834797739983,
- 0.001197025179862976, 0.008961980231106281, 0.01724625937640667, -0.06660979986190796,
- -0.009832461830228567, 0.12508100643754005, -0.02556087262928486, -0.018541160970926285,
- 0.048385352827608585, -0.0524791469797492, 0.10703255236148834, 0.08071526512503624,
- 0.08834842965006828, 0.023839551024138927, 0.0860070139169693, 0.001490369439125061,
- -0.031542347744107246, -0.004544221214018762, -0.035938285291194916,
- -0.03554500825703144, -0.05258734151721001, -0.09900237992405891, 0.02806651871651411,
- 0.047863369807600975, 0.04140120605006814, -0.12709981948137283, -0.021081371698528528,
- -0.056118909269571304
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 286,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 73,
- "similarity": 0.9974949359893799
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 1,
- "similarity": 0.9973207712173462
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 34,
- "similarity": 0.9972003698348999
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Dan Milmo", "Alex Hern"],
- "epoch_date_downloaded": 1671408000,
- "epoch_date_modified": 1672963200,
- "epoch_date_submitted": 1671408000,
- "flag": null,
- "report_number": 2381,
- "source_domain": "theguardian.com",
- "submitters": ["Daniel Atherton (BNH.ai)"],
- "title": "TikTok self-harm study results ‘every parent’s nightmare’",
- "url": "https://www.theguardian.com/technology/2022/dec/15/tiktok-self-harm-study-results-every-parents-nightmare"
- },
- {
- "__typename": "Report",
- "authors": ["Michael Levenson", "April Rubin"],
- "epoch_date_downloaded": 1664755200,
- "epoch_date_modified": 1664755200,
- "epoch_date_submitted": 1664582400,
- "flag": null,
- "report_number": 2052,
- "source_domain": "nytimes.com",
- "submitters": ["Daniel Atherton (BNH.ai)"],
- "title": "Parents Sue TikTok, Saying Children Died After Viewing ‘Blackout Challenge’",
- "url": "https://www.nytimes.com/2022/07/06/technology/tiktok-blackout-challenge-deaths.html"
- },
- {
- "__typename": "Report",
- "authors": ["Kari Paul"],
- "epoch_date_downloaded": 1660089600,
- "epoch_date_modified": 1660176000,
- "epoch_date_submitted": 1660089600,
- "flag": null,
- "report_number": 1889,
- "source_domain": "theguardian.com",
- "submitters": ["Karson Elmgren"],
- "title": "Families sue TikTok after girls died while trying ‘blackout challenge’",
- "url": "https://www.theguardian.com/technology/2022/jul/05/tiktok-girls-dead-blackout-challenge"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "none",
- "name": "none"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "openai",
- "name": "OpenAI"
- },
- {
- "__typename": "Entity",
- "entity_id": "nabla",
- "name": "Nabla"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "nabla-customers",
- "name": "Nabla customers"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1894, 1893, 1892, 1891],
- "vector": [
- -0.07715517282485962, 0.08104173839092255, -0.0018233846640214324, -0.11095522344112396,
- 0.0499478355050087, -0.02992483600974083, 0.007840298116207123, 0.03757404163479805,
- 0.08970127254724503, -0.15312901139259338, -0.01453444268554449, 0.021335160359740257,
- 0.041022054851055145, -0.07377219200134277, 0.025253888219594955, -0.08241996169090271,
- -0.09262587875127792, -0.019560080021619797, -0.022061621770262718,
- -0.12114615738391876, -0.09929197281599045, 0.020835110917687416, 0.023103339597582817,
- 0.08444711565971375, -0.01524972915649414, 0.02606341242790222, 0.09656268358230591,
- 0.12360043823719025, -0.05014378949999809, -0.0024839770048856735, -0.04166498780250549,
- -0.05995844304561615, 0.1185075119137764, 0.001059153932146728, 0.018903255462646484,
- 0.09022374451160431, 0.02642231434583664, -0.03128794953227043, -0.03488021716475487,
- -0.02568921633064747, 0.04587233066558838, 0.17706236243247986, -0.013854512944817543,
- -0.016357148066163063, 0.046433813869953156, -0.01143371220678091, 0.02057056874036789,
- 0.015683168545365334, -0.012814578600227833, -0.002384747611358762,
- 0.004216631408780813, 0.0008183494210243225, -0.03559807315468788, 0.009346362203359604,
- -0.062468431890010834, 0.0503271259367466, 0.017210375517606735, 0.0008185356855392456,
- 0.03440846502780914, -0.04639104753732681, 0.004448350984603167, -0.15740059316158295,
- -0.05349167436361313, -0.04430527612566948, 0.06612616777420044, -0.06400099396705627,
- -0.03815613314509392, 0.013922104611992836, 0.0045550549402832985, 0.07099978625774384,
- 0.04993801936507225, -0.01711578294634819, -0.023396719247102737,
- -0.0034325693268328905, -0.020148135721683502, -0.0022465044166892767,
- 0.017271636053919792, 0.20156820118427277, -0.07414494454860687, 0.015601979568600655,
- 0.07988488674163818, -0.11044728010892868, 0.3260892927646637, 0.017757641151547432,
- -0.02261202596127987, -0.002517395419999957, 0.09782155603170395, 0.03526344522833824,
- 0.03778046369552612, 0.02165871672332287, 0.02887611649930477, 0.03794796019792557,
- -0.03470183163881302, 0.014583108946681023, 0.0541546456515789, 0.027186566963791847,
- -0.009498721919953823, -0.06972038745880127, -0.01006094180047512, -0.05228748917579651,
- -0.004620963707566261, -0.06256300210952759, 0.10434015840291977, 0.09289097040891647,
- -0.0313793309032917, 0.015742555260658264, 0.04619130492210388, -0.029614463448524475,
- 0.03682490438222885, -0.04964917525649071, 0.0390738882124424, 0.013303547166287899,
- 0.05724431574344635, 0.012078719213604927, 0.01672026887536049, -0.031797848641872406,
- 0.004001968540251255, 0.05999159812927246, 0.054129958152770996, 0.03838464245200157,
- -0.011268272995948792, 0.06145034357905388, 0.0767931193113327, -0.05893974006175995,
- -0.024973582476377487, 0.011543439701199532, -0.03305673971772194, 0.01888834312558174,
- -0.0013059373013675213, 0.048412878066301346, -0.050727423280477524,
- -0.1955266296863556, 0.03174354508519173, 0.06419937312602997, -0.014421389438211918,
- -0.026041999459266663, 0.02887517213821411, -0.06352997571229935, 0.024486206471920013,
- -0.001518710982054472, -0.01287781074643135, 0.06008909270167351, 0.019299766048789024,
- 0.05511699989438057, 0.0815243199467659, 0.0029618022963404655, -0.030054397881031036,
- -0.06270453333854675, -0.0068845441564917564, -0.04280739277601242, 0.10428990423679352,
- -0.12228396534919739, -0.0524684302508831, 0.0007481136708520353, -0.003937286790460348,
- 0.6382033824920654, 0.0911099836230278, 0.14663004875183105, -0.018541593104600906,
- -0.025642868131399155, 0.13766351342201233, -0.021173875778913498, 0.056800540536642075,
- -0.02079145424067974, -0.06637837737798691, 0.021625764667987823, -0.07155243307352066,
- -0.01439192146062851, 0.014941592700779438, 0.032585758715867996, 0.09657663851976395,
- 0.024870771914720535, 0.09439918398857117, -0.0028543465305119753, -0.05866400897502899,
- -0.01481572724878788, 0.02660209685564041, 0.06060359627008438, -0.12053781002759933,
- -0.012522697448730469, 0.04819486290216446, 0.06491804122924805, -0.05564763396978378,
- -0.007190627511590719, -0.0733441486954689, 0.026126790791749954, -0.006091657094657421,
- 0.048660971224308014, 0.0019197175279259682, 0.020485075190663338, 0.052464183419942856,
- 0.029632601886987686, -0.03660741075873375, -0.07207861542701721, 0.007764837704598904,
- 0.08955006301403046, 0.006913604214787483, -0.04171043261885643, 0.06993743777275085,
- -0.07849116623401642, 0.022476304322481155, -0.01093827374279499, 0.1603410243988037,
- -0.10510034114122391, 0.05617557466030121, 0.011692089959979057, -0.00894717127084732,
- 0.04116490110754967, 0.000953109934926033, -0.05301663652062416, -0.06472751498222351,
- 0.07708416134119034, 0.044822655618190765, 0.056935034692287445, 0.0583517923951149,
- -0.011277999728918076, 0.05339977890253067, 0.03589554503560066, -0.014065667986869812,
- -0.06233053654432297, 0.06216263025999069, 0.02157064527273178, -0.03840884193778038,
- 0.009783457964658737, 0.04090992361307144, -0.01757628098130226, 0.02326890639960766,
- -0.0032409196719527245, 0.04136102646589279, -0.02518600970506668,
- -0.026955798268318176, 0.065652035176754, 0.05499885231256485, 0.021235283464193344,
- 0.07156392186880112, -0.09384890645742416, -0.035045795142650604, -0.03878146409988403,
- -0.023239998146891594, 0.01175655610859394, -0.06747791916131973, 0.05802256241440773,
- 0.106050044298172, 0.050026677548885345, 0.028012705966830254, 0.037813182920217514,
- 0.04704749584197998, 0.016669105738401413, 0.0028787427581846714, 0.02590896748006344,
- -0.027454718947410583, -0.00487397238612175, -0.02560623548924923, 0.008583128452301025,
- 0.02972359210252762, 0.0017624254105612636, -0.08042240142822266, -0.028582246974110603,
- -0.04928649961948395, -0.030016252771019936, -0.07918450981378555, -0.03165380656719208,
- 0.0026216311380267143, 0.0019998804200440645, -0.07782099395990372,
- -0.07228052616119385, -0.05700770765542984, 0.027284272015094757, 0.08236216753721237,
- -0.020778745412826538, -0.009674591943621635, -0.11194747686386108,
- 0.023720847442746162, 0.010175534524023533, 0.039596572518348694, 0.011323840357363224,
- -0.014485522173345089, -0.003977776505053043, -0.04721597582101822,
- -0.012060878798365593, 0.025789253413677216, -0.05518357828259468, -0.03706417232751846,
- -0.045792773365974426, -0.03768140822649002, 0.00916888564825058, 0.02774760127067566,
- -0.048624780029058456, 0.003819129429757595, 0.046550020575523376, 0.040067583322525024,
- -0.027567211538553238, -0.02480383589863777, 0.051699575036764145,
- -0.013991487212479115, 0.0057293567806482315, 0.07774026691913605,
- -0.028119584545493126, 0.03307156637310982, -0.026018468663096428, -0.06639167666435242,
- -0.05865059420466423, -0.009303299710154533, -0.04547935724258423, 0.030497713014483452,
- -0.0467582643032074, -0.012099888175725937, -0.03264068812131882,
- -0.0014100087573751807, 0.051083870232105255, -0.05616065114736557,
- -0.07228364050388336, -0.07921233773231506, 0.10828971862792969, -0.007455081213265657,
- -0.003827949520200491, 0.0003337608650326729, -0.032615598291158676,
- 0.039657942950725555, -0.0022892190609127283, 0.015350770205259323, 0.05243600904941559,
- 0.07617847621440887, -0.016463834792375565, 0.041688479483127594, 0.06090883910655975,
- 0.014098472893238068, 0.012774347327649593, 0.08513981103897095, 0.3977401852607727,
- -0.17153730988502502, 0.08776108175516129, 0.08691849559545517, 0.01930830627679825,
- 0.049755942076444626, -0.03710506856441498, 0.05346720665693283, 0.05703775957226753,
- 0.07760290801525116, 0.1125316396355629, -0.05617696791887283, 0.02338024042546749,
- -0.03369159623980522, 0.06988272815942764, 0.0070298658683896065, 0.014085216447710991,
- -0.03248066455125809, -0.028258223086595535, -0.0034423344768583775,
- 0.04036363959312439, -0.050489380955696106, 0.02973245084285736, -0.03332359343767166,
- -0.04982843995094299, 0.010947381146252155, 0.03419332951307297, 0.05459741875529289,
- -0.007681228686124086, 0.049942586570978165, -0.038907986134290695, 0.03546278923749924,
- 0.03707731142640114, 0.03498390316963196, -0.0637078583240509, 0.039227839559316635,
- -0.10876782983541489, -0.1001770943403244, 0.0407508984208107, 0.009277365170419216,
- 0.068085215985775, 0.045097965747117996, 0.0009169689146801829, 0.03352893888950348,
- -0.02404281124472618, -0.03568901866674423, -0.002906989771872759, 0.04048994556069374,
- 0.03418273478746414, 0.031196996569633484, 0.15040379762649536, -0.02197730541229248,
- -0.03787189722061157, -0.07589001953601837, 0.05343950167298317, 0.10381606221199036,
- -0.021580234169960022, 0.03245299682021141, 0.00891171209514141, 0.004320835694670677,
- 0.013634667731821537, -0.03842880204319954, -0.07124399393796921, -0.025762761011719704,
- -0.06473004072904587, 0.054905965924263, 0.017551429569721222, -0.04782482981681824,
- -0.10272518545389175, -0.05235643684864044, -0.03483188524842262, 0.03496428206562996,
- 0.12449343502521515, -0.0772385373711586, 0.033067736774683, 0.01676119677722454,
- 0.010035122744739056, 0.05209113657474518, -0.06691218167543411, -0.00874797347933054,
- -0.0553203821182251, 0.04533259570598602, 0.06722269207239151, 0.03279924392700195,
- -0.06100203096866608, 0.053528930991888046, -0.08545993268489838, 0.047932762652635574,
- 0.0373256579041481, -0.05711910501122475, 0.039892807602882385, -0.02632850781083107,
- 0.030974961817264557, 0.02840115875005722, -0.04327484965324402, -0.008425602689385414,
- -0.054312556982040405, -0.03990580514073372, -0.09213367849588394, -0.06912223994731903,
- -0.03901369497179985, -0.07340483367443085, 0.06053237244486809, -0.06245327740907669,
- 0.009238231927156448, -0.059751689434051514, -0.032417722046375275,
- 0.010514069348573685, 0.01892762817442417, -0.0021969119552522898, -0.10718050599098206,
- -0.028744563460350037, -0.0021763844415545464, 0.0176561176776886, -0.03475664556026459,
- -0.057561807334423065, 0.00916355848312378, 0.07360349595546722, 0.022968655452132225,
- -0.063340924680233, -0.006326482631266117, -0.06320855766534805, 0.087033711373806,
- -0.08882714062929153, -0.41453298926353455, 0.05162856727838516, 0.040662024170160294,
- 0.026407819241285324, 0.007557006552815437, -0.06908121705055237, 0.03424570709466934,
- 0.03310851752758026, -0.010098311118781567, 0.08204330503940582, -0.0645972192287445,
- 0.01767982356250286, -0.03314213454723358, -0.05818592756986618, 0.0057032424956560135,
- -0.05680767446756363, -0.010041667148470879, 0.02807789109647274, -0.004559212364256382,
- -0.03792833164334297, -0.07899925112724304, 0.020906545221805573, -0.008667641319334507,
- -0.012698575854301453, 0.006499123759567738, 0.002932097762823105, -0.05548636615276337,
- -0.060710009187459946, 0.008283366449177265, 0.05236799642443657, 0.001171833835542202,
- -0.08493464440107346, -0.015696639195084572, 0.031810954213142395, 0.008739104494452477,
- 0.11362244188785553, 0.018640605732798576, 0.005643556360155344, -0.08898749947547913,
- 0.061603255569934845, 0.07124849408864975, 0.1887989193201065, -0.023428086191415787,
- 0.030263077467679977, -0.027636684477329254, 0.09721559286117554, 0.014867368154227734,
- 0.05600385367870331, -0.030698303133249283, -0.0110019501298666, 0.04972131550312042,
- -0.0019414484268054366, 0.08072413504123688, -0.08826915919780731,
- -0.009246224537491798, -0.046135514974594116, -0.020825764164328575,
- -0.04075799137353897, -0.033032823354005814, 0.15691640973091125, 0.030004069209098816,
- 0.04076135903596878, 0.02703069895505905, -0.04335932061076164, 0.02404319867491722,
- -0.07106450945138931, -0.06809922307729721, -0.01586577668786049, 0.001087250537239015,
- 0.01623241789638996, -0.033154699951410294, -0.10928519070148468, -0.020106663927435875,
- 0.007240951992571354, -0.010551493614912033, 0.10227841138839722, -0.05147664248943329,
- 0.028145121410489082, -0.04507894814014435, 0.14434708654880524, 0.023305315524339676,
- 0.06055958569049835, 0.046968843787908554, 0.06908854842185974, 0.030179839581251144,
- -0.011165037751197815, -0.030779067426919937, -0.06691810488700867,
- 0.0077135865576565266, 0.12487007677555084, -0.02050366997718811, 0.09736612439155579,
- 0.024178294464945793, -0.01820155791938305, -0.04952424764633179, 0.047094229608774185,
- 0.018559053540229797, 0.005825952161103487, -0.4654742181301117, -0.022993573918938637,
- 0.11467012017965317, -0.014864286407828331, 0.021020933985710144, 0.0728011429309845,
- 0.006116554141044617, -0.027443723753094673, 0.02387859672307968, -0.07578649371862411,
- 0.08841995894908905, 0.016731368377804756, 0.08155728876590729, -0.07606906443834305,
- 0.020784230902791023, 0.06947428733110428, -0.007516675163060427, -0.020818645134568214,
- 0.04950133338570595, -0.23903635144233704, -0.0006991520058363676,
- -0.020689085125923157, 0.14994800090789795, 0.030006926506757736, 0.02936091460287571,
- 0.08645804226398468, -0.031686440110206604, 0.03212042897939682, 0.0502508245408535,
- 0.039573077112436295, 0.08184116333723068, -0.0027499431744217873,
- -0.020321141928434372, 0.08991804718971252, 0.08292955160140991, 0.12711037695407867,
- 0.01131270732730627, 11.844970703125, 0.03179207071661949, 0.061763085424900055,
- -0.09324146062135696, -0.0009515437996014953, -0.061871666461229324,
- 0.05698021501302719, -0.09369160234928131, 0.03944616764783859, 0.109406016767025,
- -0.006545901298522949, -0.023704800754785538, -0.03334473818540573,
- -0.07133033126592636, 0.016047125682234764, -0.06572870910167694, -0.013853720389306545,
- -0.02339344099164009, 0.04235581308603287, -0.05156262218952179, -0.045287951827049255,
- 0.03148120641708374, 0.0731680616736412, 0.0015652449801564217, -0.06750687956809998,
- 0.05993613228201866, -0.023047883063554764, 0.031895291060209274,
- -0.0021629389375448227, 0.0037297282833606005, -0.002091027796268463,
- 0.03363221883773804, 0.07029317319393158, -0.0021615219302475452, 0.05964377522468567,
- 0.05786311253905296, 0.03841651603579521, 0.05030495673418045, 0.04714726656675339,
- 0.049084827303886414, 0.004386702552437782, 0.03565361723303795, 0.0103616863489151,
- 0.04490307718515396, 0.05943553149700165, 0.04106048867106438, 0.04106917977333069,
- 0.1208907961845398, -0.012967841699719429, 0.07473325729370117, 0.06608647853136063,
- 0.007341202348470688, 0.09248028695583344, 0.007609448861330748, -0.0198499895632267,
- 0.03187992051243782, 0.0050613353960216045, -0.05435287952423096, 0.09076598286628723,
- 0.016972826793789864, -0.061293646693229675, 0.11565688252449036, 0.047186776995658875,
- 0.09785180538892746, 0.05419725552201271, 0.041460443288087845, 0.06985744833946228,
- 0.07057000696659088, -0.11145218461751938, -0.05447036400437355, 0.04220853000879288,
- -0.09509914368391037, -0.07193019986152649, 0.08306462317705154, 0.06587964296340942,
- -0.008241912350058556, 0.06542493402957916, -0.01445441972464323, 0.04635016247630119,
- -0.014493478462100029, 0.013664360158145428, 0.032675184309482574, -0.05856921151280403,
- 0.042179759591817856, 0.030423542484641075, 0.009875495918095112, 0.052838388830423355,
- 0.10121960192918777, -0.00831956323236227, -0.07002194970846176, -0.0475928820669651,
- 0.04524398595094681, 0.0032816717866808176, -0.0550568625330925, 0.0016311019426211715,
- -0.04780250042676926, -0.002939976751804352, -0.13738524913787842, 0.08750928193330765,
- 0.08826810866594315, -0.08756257593631744, -0.018621904775500298, -0.033412326127290726,
- 0.09363294392824173, 0.002904328517615795, 0.023285090923309326, -0.07676925510168076,
- 0.004420643672347069, 0.03860348090529442, 0.037659794092178345, -0.025804663076996803,
- 0.08213008940219879, 0.054977353662252426, -0.04537808150053024, 0.04898945987224579,
- 0.06877223402261734, -0.0323798805475235, 0.006129308603703976, 0.05117810517549515,
- 0.05395722761750221, -0.10181295871734619, -0.04751602187752724, -0.03563147038221359,
- -0.038109272718429565, 0.015607343055307865, -0.03047526627779007, -0.01074891909956932,
- -0.007126548793166876, -0.03353617712855339, -0.030471649020910263,
- 0.0013491143472492695, 0.06089901179075241, 0.11755625903606415, -0.013222943991422653,
- 0.052081149071455, -0.04016299545764923, -0.011346613988280296, 0.06603283435106277,
- 0.07765710353851318, 0.07936392724514008, -0.07036953419446945, -0.008404133841395378,
- -0.02681586518883705, -0.11559385061264038, 0.006999599747359753, 0.08526253700256348,
- 0.03847680985927582, 0.06458558142185211, 0.024711590260267258, -0.06262926012277603,
- -0.06576374173164368, 0.07659624516963959, 0.009516803547739983, -0.0004933394375257194,
- 0.03420630097389221, -0.03917381167411804, -0.0007281549042090774, 0.08359222114086151,
- -0.05628984421491623, -0.000041987281292676926, 0.004138680174946785,
- -0.09936091303825378, 0.015643619000911713, 0.08932900428771973, 0.04923170432448387,
- 0.03763937950134277, 0.023331904783844948, 0.018343966454267502, 0.006279955618083477,
- -0.009033742360770702, 0.01878892257809639, -0.03572049364447594, -0.07206340879201889,
- -0.09166887402534485, 0.011288332752883434, 0.06251175701618195, 0.07823562622070312,
- -0.13324347138404846, -0.0177481509745121, -0.039347290992736816
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 287,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 41,
- "similarity": 0.9983230233192444
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 7,
- "similarity": 0.9982959032058716
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 37,
- "similarity": 0.9982917904853821
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["INDIAai"],
- "epoch_date_downloaded": 1660176000,
- "epoch_date_modified": 1660176000,
- "epoch_date_submitted": 1660176000,
- "flag": null,
- "report_number": 1894,
- "source_domain": "indiaai.gov.in",
- "submitters": ["Thomas Giallella (CSET)"],
- "title": "This bot actually suggests patients to kill themselves",
- "url": "https://indiaai.gov.in/news/this-bot-actually-suggests-patients-to-kill-themselves"
- },
- {
- "__typename": "Report",
- "authors": ["Ryan Daws"],
- "epoch_date_downloaded": 1660176000,
- "epoch_date_modified": 1660176000,
- "epoch_date_submitted": 1660176000,
- "flag": null,
- "report_number": 1893,
- "source_domain": "artificialintelligence-news.com",
- "submitters": ["Thomas Giallella (CSET)"],
- "title": "Medical chatbot using OpenAI’s GPT-3 told a fake patient to kill themselves",
- "url": "https://www.artificialintelligence-news.com/2020/10/28/medical-chatbot-openai-gpt3-patient-kill-themselves/"
- },
- {
- "__typename": "Report",
- "authors": ["Kevin Riera", " Anne-Laure Rousseau", " Clément Baudelaire"],
- "epoch_date_downloaded": 1660176000,
- "epoch_date_modified": 1660176000,
- "epoch_date_submitted": 1660176000,
- "flag": null,
- "report_number": 1892,
- "source_domain": "nabla.com",
- "submitters": ["Khoa Lam"],
- "title": "Doctor GPT-3: hype or reality?",
- "url": "https://www.nabla.com/blog/gpt-3/"
- },
- {
- "__typename": "Report",
- "authors": ["Katyanna Quach"],
- "epoch_date_downloaded": 1660176000,
- "epoch_date_modified": 1660176000,
- "epoch_date_submitted": 1660176000,
- "flag": null,
- "report_number": 1891,
- "source_domain": "theregister.com",
- "submitters": ["Thomas Giallella (CSET)"],
- "title": "Researchers made an OpenAI GPT-3 medical chatbot as an experiment. It told a mock patient to kill themselves",
- "url": "https://www.theregister.com/2020/10/28/gpt3_medical_chatbot_experiment/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "woodbridge-police-department",
- "name": "Woodbridge Police Department"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "unknown",
- "name": "Unknown"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "nijeer-parks",
- "name": "Nijeer Parks"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [2026, 2025, 1896, 1895],
- "vector": [
- -0.08308319747447968, 0.0664871335029602, -0.0029166180174797773, -0.08185621351003647,
- 0.09387215971946716, -0.03168647363781929, -0.0026950868777930737, 0.01652677170932293,
- 0.06922265887260437, -0.13998807966709137, -0.023798588663339615, 0.06267305463552475,
- 0.04293839633464813, -0.04979073628783226, -0.011974668130278587, -0.09975285828113556,
- -0.07752526551485062, -0.02845347672700882, -0.061986781656742096, -0.1026257649064064,
- -0.05299339443445206, -0.0014119900297373533, 0.096864253282547, 0.10912307351827621,
- -0.04753895848989487, 0.048002541065216064, 0.10106176882982254, 0.12729434669017792,
- -0.053654737770557404, 0.0546218566596508, -0.05491708964109421, -0.05925628915429115,
- 0.11143268644809723, -0.017918739467859268, 0.01086727250367403, 0.10997940599918365,
- 0.040515314787626266, -0.02979899011552334, -0.026568030938506126,
- -0.002608019160106778, 0.021588565781712532, 0.2254190742969513, 0.00047276736586354673,
- -0.025869540870189667, 0.056092023849487305, -0.027904197573661804, 0.04845310002565384,
- 0.061509743332862854, 0.010687777772545815, -0.008531386032700539, 0.00815378688275814,
- 0.034648895263671875, -0.036320578306913376, 0.04330403357744217, -0.10705576837062836,
- 0.06206851080060005, 0.03368063271045685, 0.012514432892203331, 0.045347921550273895,
- -0.10003718733787537, -0.03369169682264328, -0.24466486275196075, -0.05317346006631851,
- -0.0702519565820694, 0.09540292620658875, -0.08316772431135178, -0.05077333375811577,
- -0.01832406409084797, 0.038341425359249115, 0.03433896228671074, 0.053269799798727036,
- -0.07827196270227432, -0.01682809740304947, -0.010526404716074467, 0.001826210878789425,
- 0.007776969112455845, 0.036193862557411194, 0.20144474506378174, -0.10087275505065918,
- 0.013825793750584126, 0.1102975457906723, -0.09407182782888412, 0.4472639858722687,
- 0.025670118629932404, -0.03332147002220154, -0.0353517048060894, 0.10315210372209549,
- 0.0521729439496994, 0.0528373047709465, 0.07373080402612686, -0.04459509998559952,
- 0.024800211191177368, -0.06513892859220505, 0.008864526636898518, 0.08798132091760635,
- 0.04581338167190552, 0.014199737459421158, 0.10698267817497253, -0.042626623064279556,
- -0.049104753881692886, 0.007285122759640217, -0.0489688366651535, 0.12321337312459946,
- 0.08042849600315094, -0.056159231811761856, -0.010412739589810371, 0.07870161533355713,
- -0.03959720954298973, 0.07253534346818924, -0.025480851531028748, 0.01671968400478363,
- 0.017092466354370117, 0.05191131681203842, -0.013305015861988068, 0.029512250795960426,
- -0.047215841710567474, 0.0074119106866419315, 0.006552831269800663, 0.06667114794254303,
- -0.01876251772046089, -0.04366883635520935, 0.07498975843191147, 0.13257749378681183,
- -0.04161234200000763, -0.0015144753269851208, -0.03870882838964462,
- -0.04229229316115379, -0.021731849759817123, 0.0017339832847937942,
- 0.011347569525241852, -0.029339110478758812, -0.1709388941526413, 0.009567866101861,
- 0.057130683213472366, 0.015675706788897514, -0.037977028638124466, 0.03304115682840347,
- -0.059429995715618134, 0.05848739668726921, -0.01670156605541706, -0.060689933598041534,
- 0.07643046975135803, 0.057187095284461975, 0.038392454385757446, 0.14827722311019897,
- 0.05715888738632202, -0.05560167878866196, -0.008260385133326054, 0.00874327588826418,
- -0.009239837527275085, 0.09272871166467667, -0.1351921409368515, -0.052698764950037,
- 0.020222244784235954, -0.013210627250373363, 0.6697953343391418, 0.13635864853858948,
- 0.13686758279800415, -0.015723953023552895, -0.031160926446318626, 0.17279177904129028,
- 0.010263413190841675, 0.07854708284139633, -0.06860893219709396, -0.0344969816505909,
- 0.007251969538629055, -0.05590221658349037, -0.027018386870622635, 0.030943874269723892,
- 0.050274334847927094, 0.12734301388263702, 0.019280612468719482, 0.1112799420952797,
- -0.0058762189000844955, -0.0912989005446434, -0.02772871032357216, 0.04364047572016716,
- -0.017589377239346504, -0.08872783184051514, -0.0011397250927984715,
- 0.049749962985515594, 0.04874960333108902, -0.07570450007915497, 0.020791299641132355,
- -0.04123646765947342, 0.01117401011288166, -0.029736166819930077, 0.009297062642872334,
- -0.016350815072655678, 0.05344304442405701, 0.07910668104887009, 0.09297862648963928,
- -0.01965252310037613, -0.1427963376045227, -0.07821880280971527, 0.12822768092155457,
- -0.00748266838490963, -0.0021505856420844793, 0.10047521442174911, -0.09018516540527344,
- 0.007127187214791775, 0.03565742075443268, 0.14690938591957092, -0.10466864705085754,
- 0.0046828496269881725, 0.0011825885158032179, 0.022673727944493294, 0.0955580547451973,
- 0.008408590219914913, -0.06490567326545715, -0.05883764103055, 0.0643305703997612,
- 0.02183106169104576, 0.07603254914283752, 0.034400828182697296, -0.04322351515293121,
- 0.01093834638595581, 0.043972939252853394, 0.0015746236313134432, -0.026050876826047897,
- 0.06368370354175568, 0.059673555195331573, 0.0036334258038550615, 0.026764338836073875,
- 0.05337725952267647, 0.021397380158305168, 0.03745671361684799, 0.036842066794633865,
- 0.01837936043739319, 0.007546192966401577, -0.05447081848978996, 0.03159317001700401,
- 0.00814077164977789, 0.004392046481370926, 0.08381091058254242, -0.062182653695344925,
- -0.023117750883102417, -0.014931678771972656, -0.01364321168512106,
- -0.006800489034503698, 0.0028963617514818907, 0.04846584424376488, 0.0726468414068222,
- 0.06596289575099945, 0.04680171608924866, 0.0640592947602272, 0.03843805938959122,
- 0.03774494305253029, 0.04189892113208771, 0.08742813766002655, -0.02318611741065979,
- -0.04195956140756607, 0.001381479436531663, -0.013653269968926907, 0.10733780264854431,
- 0.05464506894350052, -0.0455283522605896, -0.02686096355319023, -0.019764889031648636,
- -0.07083971798419952, -0.053556717932224274, -0.0482281818985939, -0.02195068821310997,
- 0.04928173869848251, -0.03811828792095184, -0.09295115619897842, -0.04313618689775467,
- 0.03584718331694603, 0.04939530789852142, -0.030427727848291397, -0.01876036636531353,
- -0.11991184204816818, -0.01171065866947174, -0.020793600007891655, 0.0572841577231884,
- -0.016265781596302986, 0.0517466776072979, -0.011034414172172546, -0.08169917017221451,
- 0.02953059785068035, -0.012404444627463818, 0.00926578976213932, -0.06019909307360649,
- -0.03711239993572235, -0.04323985427618027, -0.034299734979867935,
- 0.0021074407268315554, -0.004590739496052265, 0.047365594655275345,
- 0.052706778049468994, 0.0350462906062603, -0.005469422787427902, -0.008790673688054085,
- 0.08262652158737183, -0.05853410065174103, -0.015412459149956703, 0.10470007359981537,
- -0.018267754465341568, -0.0024845930747687817, -0.005694814957678318,
- -0.06007008254528046, -0.08225706219673157, -0.03380854055285454, -0.030092913657426834,
- 0.0476689413189888, -0.045948296785354614, -0.022547274827957153, -0.05303317680954933,
- 0.005585602018982172, 0.057419564574956894, -0.10207163542509079, -0.03633489832282066,
- -0.0895184576511383, 0.10268647968769073, 0.019831303507089615, -0.020028147846460342,
- 0.011033669114112854, -0.053895168006420135, 0.03722789138555527, -0.028045307844877243,
- 0.016624189913272858, 0.02132013812661171, 0.046790845692157745, -0.00549668911844492,
- -0.0015034433454275131, 0.053200189024209976, -0.04666488990187645,
- 0.003805681364610791, 0.0608317106962204, 0.42075368762016296, -0.14821293950080872,
- 0.12244486808776855, 0.10598728805780411, 0.016907211393117905, 0.06005400791764259,
- -0.05435672029852867, 0.05132770165801048, 0.0716104507446289, 0.11259672790765762,
- 0.10991775989532471, -0.04038877412676811, -0.014683968387544155, -0.06749942898750305,
- 0.0874423235654831, 0.015272597782313824, 0.04078589379787445, -0.020220205187797546,
- -0.06140600144863129, -0.020230790600180626, 0.04546819627285004, -0.025074465200304985,
- 0.028771881014108658, 0.0007342499447986484, -0.05035405606031418, 0.024837937206029892,
- 0.03246225416660309, 0.028491782024502754, -0.03381569683551788, 0.026722010225057602,
- -0.030873484909534454, 0.08274485170841217, 0.015775512903928757, 0.033208929002285004,
- -0.0739750936627388, -0.01034011784940958, -0.09989967942237854, -0.08332040905952454,
- 0.1412687450647354, 0.011001278646290302, 0.03212593123316765, 0.04662889242172241,
- -0.049537621438503265, 0.047629453241825104, -0.047537773847579956,
- -0.05435144901275635, 0.013243738561868668, 0.04634004831314087, 0.004977731965482235,
- 0.07561827450990677, 0.1504797488451004, -0.03992659971117973, -0.031627655029296875,
- -0.07969218492507935, 0.07776113599538803, 0.11077223718166351, -0.03396103158593178,
- -0.011361097916960716, -0.041387658566236496, -0.014153478667140007,
- 0.0075957151129841805, -0.07607313245534897, -0.08662440627813339, 0.04307202622294426,
- -0.031305763870477676, 0.09657987952232361, 0.02610873058438301, -0.002071484224870801,
- -0.10561169683933258, 0.0010024185758084059, -0.03940807655453682,
- 0.0028342579025775194, 0.07485418021678925, -0.029931098222732544, 0.000220338290091604,
- 0.015150267630815506, 0.018718095496296883, 0.003819585544988513, -0.08998332917690277,
- -0.009678056463599205, -0.03183332085609436, 0.02958763763308525, 0.08385512232780457,
- 0.04123292863368988, -0.056704696267843246, 0.047554053366184235, -0.09952368587255478,
- 0.027366450056433678, 0.020938463509082794, -0.028514374047517776, 0.01783377304673195,
- -0.03786225616931915, 0.053916655480861664, 0.004733207635581493,
- -0.0035077373031526804, -0.049891550093889236, -0.010331222787499428,
- -0.0600489005446434, -0.09999887645244598, -0.03275912255048752, -0.0066083259880542755,
- -0.06676033139228821, 0.05247432738542557, -0.10407127439975739, -0.05276724696159363,
- -0.022107739001512527, 0.0003884602338075638, 0.01011507399380207, 0.060870639979839325,
- 0.03264109417796135, -0.0893133133649826, -0.01957952231168747, -0.04602065682411194,
- 0.05142006278038025, -0.023269619792699814, -0.07609102129936218, 0.036611590534448624,
- 0.09828397631645203, 0.04548867791891098, -0.048266783356666565, -0.017719555646181107,
- -0.004345305263996124, 0.06577624380588531, -0.15456238389015198, -0.49019908905029297,
- 0.09130366891622543, -0.009523131884634495, 0.05365102365612984, 0.005547447130084038,
- -0.07470879703760147, 0.032415613532066345, -0.013886969536542892,
- -0.022960452362895012, 0.07744835317134857, -0.05708377808332443, 0.025088461115956306,
- 0.014947375282645226, -0.03650166839361191, -0.01344728097319603, -0.07568207383155823,
- -0.05893457680940628, 0.02952088974416256, -0.030181951820850372, -0.06551989912986755,
- -0.0870775505900383, 0.009219099767506123, 0.006904982961714268, 0.009507652372121811,
- 0.00025346994516439736, 0.005501575767993927, -0.0914294496178627, -0.06867015361785889,
- 0.023676954209804535, 0.04646584391593933, 0.014187874272465706, -0.05134238302707672,
- -0.0007460893830284476, 0.05018111318349838, -0.012359905056655407, 0.09768214821815491,
- -0.005547866225242615, 0.004076830111443996, -0.10080685466527939, 0.0950017049908638,
- 0.045795246958732605, 0.18713250756263733, -0.026611462235450745, 0.0484040305018425,
- 0.012577133253216743, 0.13560250401496887, 0.019127896055579185, 0.04201730340719223,
- -0.037875495851039886, -0.0017435537884011865, 0.006237959489226341,
- 0.016467608511447906, 0.06120007112622261, -0.0736011490225792, -0.032665543258190155,
- -0.04453667998313904, -0.01738526113331318, -0.0646815150976181, -0.0021082099992781878,
- 0.1845577359199524, 0.02295554429292679, -0.007238962687551975, 0.009232766926288605,
- -0.057006414979696274, -0.026546306908130646, -0.027863170951604843,
- -0.06369061022996902, 0.003560858778655529, -0.01989683508872986, 0.020523805171251297,
- -0.04093526303768158, -0.1060912013053894, -0.008216628804802895, -0.030399391427636147,
- -0.026460614055395126, 0.08710592985153198, -0.03504569083452225, 0.02467672899365425,
- -0.046277500689029694, 0.11103342473506927, 0.034652967005968094, -0.005732461344450712,
- 0.061925411224365234, 0.100117027759552, 0.026578348129987717, -0.00538088520988822,
- -0.04642162844538689, -0.04942697659134865, -0.014969894662499428, 0.11114124953746796,
- -0.03166542947292328, 0.08118632435798645, 0.06189323961734772, -0.048034489154815674,
- -0.06107529625296593, 0.004910602234303951, 0.009702692739665508, 0.04211144521832466,
- -0.4531978368759155, -0.021029245108366013, 0.13615494966506958, -0.04949439316987991,
- 0.02437041699886322, 0.05017884820699692, 0.028951257467269897, -0.019960029050707817,
- -0.011082491837441921, -0.05519019067287445, 0.15321603417396545, 0.05723358690738678,
- 0.07508073002099991, -0.10742325335741043, 0.05473863333463669, 0.08382570743560791,
- 0.006764945574104786, -0.004446755163371563, 0.022074559703469276, -0.25968530774116516,
- -0.011225316673517227, -0.05573807656764984, 0.1475507766008377, 0.06224246323108673,
- 0.005970909260213375, 0.07374517619609833, -0.07649447023868561, 0.01255107019096613,
- 0.049510590732097626, -0.0013359820004552603, 0.018962707370519638,
- -0.006284688133746386, -0.015074127353727818, 0.10579612851142883, 0.047027576714754105,
- 0.05400202050805092, -0.014467977918684483, 11.911816596984863, 0.05467575788497925,
- 0.07559432834386826, -0.08199293911457062, 0.031696245074272156, -0.03247642144560814,
- 0.02374875172972679, -0.07782857120037079, 0.08042877912521362, 0.1008288636803627,
- -0.020814821124076843, -0.0645841509103775, -0.08061613887548447, -0.09429372102022171,
- -0.0020916243083775043, -0.016221586614847183, -0.058710306882858276,
- -0.004899371415376663, 0.014858215115964413, -0.05640694871544838,
- -0.002679539378732443, 0.028874017298221588, 0.048416219651699066, 0.0322781540453434,
- -0.08684998005628586, 0.009444489143788815, 0.051995567977428436, -0.025286415591835976,
- 0.004768515005707741, 0.03678479790687561, -0.013860143721103668, 0.008746132254600525,
- 0.03237822279334068, 0.034178461879491806, 0.0026977933011949062, 0.05172986537218094,
- 0.030197400599718094, 0.04653939604759216, 0.027498850598931313, 0.06862562149763107,
- 0.03225397691130638, 0.055198926478624344, 0.015379222109913826, 0.038596030324697495,
- 0.060667380690574646, 0.04971635714173317, 0.034651629626750946, 0.1133231669664383,
- -0.000038893893361091614, 0.09164732694625854, 0.0758892297744751,
- -0.017104443162679672, 0.08056063950061798, 0.010156105272471905, 0.023764505982398987,
- 0.04902443289756775, 0.026837676763534546, -0.06363321095705032, 0.04013272374868393,
- 0.03668307512998581, -0.02131110429763794, 0.1295226812362671, -0.0012674230383709073,
- 0.07354757189750671, -0.022604232653975487, 0.05262850970029831, 0.09045622497797012,
- 0.09050127118825912, -0.1593344360589981, -0.053117912262678146, 0.04236343130469322,
- -0.11105533689260483, -0.09582328796386719, 0.08918865025043488, 0.06696455180644989,
- -0.023412298411130905, 0.07481126487255096, -0.048132624477148056, 0.0234798826277256,
- -0.04301699995994568, -0.0009612897410988808, 0.04250504449009895, -0.01704448275268078,
- -0.004368454683572054, 0.03591557964682579, 0.027017073705792427, 0.08765615522861481,
- 0.08420737087726593, -0.03884543851017952, -0.12193571776151657, -0.08418691903352737,
- 0.0920386016368866, -0.0036023599095642567, -0.027382833883166313, 0.03922051563858986,
- -0.07366561889648438, 0.040709592401981354, -0.16304732859134674, 0.08254340291023254,
- 0.11884409934282303, -0.09122882038354874, -0.00960646104067564, -0.025470079854130745,
- 0.0797906219959259, -0.024981169030070305, 0.04198640212416649, -0.059586331248283386,
- 0.038732342422008514, -0.00938578974455595, 0.033422790467739105, -0.03294668346643448,
- 0.07879523932933807, 0.061670705676078796, -0.07499954849481583, 0.026732202619314194,
- 0.0565054751932621, -0.026994623243808746, -0.03819579258561134, 0.06450998038053513,
- 0.04102161526679993, -0.10204944014549255, -0.041560132056474686, -0.03975930064916611,
- -0.012696260586380959, -0.02258342131972313, -0.042977605015039444,
- -0.013718876987695694, 0.05873877927660942, -0.06630706042051315, -0.004517032764852047,
- 0.02036316692829132, 0.034482404589653015, 0.03177027031779289, -0.01940236985683441,
- 0.04282795265316963, -0.050487417727708817, -0.04207679629325867, 0.07755009829998016,
- 0.036569707095623016, 0.09973540157079697, -0.019916586577892303, -0.03271057456731796,
- -0.03348715975880623, -0.09715160727500916, -0.003468061564490199, 0.08065018057823181,
- 0.03275839984416962, 0.014659201726317406, 0.06208649277687073, -0.0646008551120758,
- -0.062374297529459, 0.12258854508399963, -0.00885973684489727, 0.01937849447131157,
- 0.022411031648516655, -0.09069503843784332, -0.03144475445151329, 0.11207077652215958,
- -0.0763612911105156, -0.010311986319720745, 0.03527272120118141, 0.007378877606242895,
- 0.08145129680633545, 0.043676432222127914, 0.04301859810948372, 0.052452877163887024,
- 0.021708745509386063, -0.017882509157061577, -0.0013714649248868227,
- 0.011180886998772621, 0.029002854600548744, -0.018972262740135193, -0.09322004020214081,
- -0.07542847096920013, -0.0007715391693636775, 0.08201344311237335, 0.03300280123949051,
- -0.1265280544757843, -0.004109453409910202, -0.05423693358898163
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 288,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 74,
- "similarity": 0.9977260231971741
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 54,
- "similarity": 0.997144877910614
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 11,
- "similarity": 0.9970672726631165
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Kristin L. Bryan", " Christina Lamoureux"],
- "epoch_date_downloaded": 1662508800,
- "epoch_date_modified": 1663027200,
- "epoch_date_submitted": 1662508800,
- "flag": null,
- "report_number": 2026,
- "source_domain": "natlawreview.com",
- "submitters": ["Nickie Demakos"],
- "title": "Government Users of Facial Recognition Software Sued by Plaintiff Alleging Wrongful Imprisonment Over Case of Mistaken Identity",
- "url": "https://www.natlawreview.com/article/government-users-facial-recognition-software-sued-plaintiff-alleging-wrongful"
- },
- {
- "__typename": "Report",
- "authors": ["David K. Li"],
- "epoch_date_downloaded": 1662508800,
- "epoch_date_modified": 1663027200,
- "epoch_date_submitted": 1662508800,
- "flag": null,
- "report_number": 2025,
- "source_domain": "nbcnews.com",
- "submitters": ["Nickie Demakos"],
- "title": "Black man in New Jersey misidentified by facial recognition tech and falsely jailed, lawsuit claims",
- "url": "https://www.nbcnews.com/news/us-news/black-man-new-jersey-misidentified-facial-recognition-tech-falsely-jailed-n1252489"
- },
- {
- "__typename": "Report",
- "authors": ["Anthony G. Attrino"],
- "epoch_date_downloaded": 1660176000,
- "epoch_date_modified": 1660176000,
- "epoch_date_submitted": 1660176000,
- "flag": null,
- "report_number": 1896,
- "source_domain": "nj.com",
- "submitters": ["Khoa Lam"],
- "title": "He spent 10 days in jail after facial recognition software led to the arrest of the wrong man, lawsuit says",
- "url": "https://www.nj.com/middlesex/2020/12/he-spent-10-days-in-jail-after-facial-recognition-software-led-to-the-arrest-of-the-wrong-man-lawsuit-says.html"
- },
- {
- "__typename": "Report",
- "authors": ["Kashmir Hill"],
- "epoch_date_downloaded": 1660176000,
- "epoch_date_modified": 1660176000,
- "epoch_date_submitted": 1660176000,
- "flag": null,
- "report_number": 1895,
- "source_domain": "nytimes.com",
- "submitters": ["Charlie Wang"],
- "title": "Another Arrest, and Jail Time, Due to a Bad Facial Recognition Match",
- "url": "https://www.nytimes.com/2020/12/29/technology/facial-recognition-misidentify-jail.html"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "starship-technologies",
- "name": "Starship Technologies"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "starship-technologies",
- "name": "Starship Technologies"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "jisuk-mok",
- "name": "Jisuk Mok"
- },
- {
- "__typename": "Entity",
- "entity_id": "frisco-residents",
- "name": "Frisco residents"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1898, 1897],
- "vector": [
- -0.05625959858298302, 0.09194357693195343, 0.010272110812366009, -0.0784735158085823,
- 0.039397574961185455, -0.03536965698003769, 0.017195766791701317, 0.055521655827760696,
- 0.09461532533168793, -0.12985584139823914, -0.03403110057115555, 0.0002149681095033884,
- 0.0093932393938303, 0.01361423172056675, -0.0003308914601802826, -0.036122143268585205,
- -0.004284912720322609, 0.00942856352776289, -0.03663681447505951, -0.02297569066286087,
- -0.11341306567192078, 0.03849698603153229, 0.031183697283267975, 0.0941995158791542,
- -0.0726778507232666, 0.03424720838665962, 0.04984382539987564, 0.07395409047603607,
- -0.04605119675397873, -0.005730867385864258, 0.00487478356808424, -0.0756564736366272,
- 0.09377983957529068, 0.03233880177140236, 0.013214819133281708, 0.08461254090070724,
- 0.037173155695199966, -0.07748616486787796, -0.012197832576930523,
- 0.0033914183732122183, 0.007547625806182623, 0.16509737074375153, 0.018331171944737434,
- -0.02779420092701912, 0.0886523574590683, -0.0215085968375206, -0.0008071889169514179,
- 0.08599050343036652, -0.011314465664327145, 0.018098365515470505, 0.0035078267101198435,
- 0.08076467365026474, -0.06144954264163971, 0.014289320446550846, -0.13069427013397217,
- 0.05405557528138161, 0.019788464531302452, 0.003930818289518356, 0.07085847854614258,
- -0.04994778335094452, -0.020666085183620453, -0.11723758280277252, -0.04091362655162811,
- -0.021812990307807922, 0.06481373310089111, -0.06448189914226532, -0.04215699061751366,
- 0.02111567184329033, -0.015196984633803368, 0.026722170412540436, 0.05199473351240158,
- 0.04608612507581711, 0.044661182910203934, -0.10017914324998856, -0.005712484009563923,
- 0.00559999281540513, -0.007042893208563328, 0.27556750178337097, -0.05524258315563202,
- 0.05673243850469589, 0.08557182550430298, -0.049845658242702484, 0.35290247201919556,
- 0.08684121817350388, -0.020094681531190872, 0.03662988543510437, 0.07921154797077179,
- 0.038112420588731766, 0.06238480657339096, 0.0025534257292747498, 0.0019150450825691223,
- 0.04586965590715408, -0.0294895488768816, 0.016997333616018295, 0.0471893772482872,
- -0.01643136329948902, -0.0021788980811834335, 0.006461970508098602,
- 0.007971584796905518, -0.02956457994878292, 0.03200998157262802, -0.03576865792274475,
- 0.024642612785100937, 0.014105023816227913, -0.025675911456346512, -0.03235263377428055,
- 0.028826730325818062, -0.02891550213098526, 0.006526356562972069, -0.020345116034150124,
- -0.04682045429944992, 0.06917011737823486, -0.00710870698094368, 0.010231570340692997,
- 0.006414649076759815, -0.05047960206866264, 0.039587270468473434, 0.032063767313957214,
- 0.06431993842124939, 0.08201740682125092, 0.012246848084032536, 0.06266871839761734,
- 0.06440218538045883, -0.03517290949821472, -0.011698945425450802, 0.036422718316316605,
- -0.047641947865486145, -0.01763084903359413, -0.029118036851286888, 0.0704016238451004,
- -0.050922293215990067, -0.24234214425086975, 0.0016664844006299973, 0.05042465776205063,
- 0.025766467675566673, -0.04229411110281944, 0.09000685811042786, -0.04360302910208702,
- 0.050560105592012405, 0.005039847455918789, -0.016379375010728836, 0.08051431179046631,
- 0.004381336271762848, 0.006263733841478825, 0.0404486358165741, -0.00317392498254776,
- -0.027051253244280815, -0.057938702404499054, 0.010175776667892933,
- 0.004501068964600563, 0.07735779136419296, -0.11918023973703384, -0.0811988115310669,
- 0.014632935635745525, -0.04129745066165924, 0.4699254333972931, 0.041308097541332245,
- 0.06158116087317467, -0.05126044899225235, -0.00197666697204113, 0.15804526209831238,
- 0.014632618054747581, 0.04077678546309471, -0.01012553833425045, -0.013994140550494194,
- 0.05229008197784424, -0.04514073580503464, -0.004961361177265644, 0.026643741875886917,
- -0.010450963862240314, 0.07421157509088516, 0.024548206478357315, 0.08295845985412598,
- 0.0196266807615757, -0.0345359742641449, 0.023081986233592033, -0.012663586065173149,
- 0.042200613766908646, -0.14653635025024414, -0.02288088947534561, -0.015741905197501183,
- -0.0008901637047529221, -0.07912173867225647, 0.007508933078497648,
- -0.035798490047454834, 0.06636617332696915, -0.017870374023914337, 0.032668158411979675,
- 0.015942243859171867, 0.00328698568046093, 0.022823872044682503, 0.040978461503982544,
- -0.0027127135545015335, -0.08507324755191803, -0.02500205673277378, 0.11288613080978394,
- 0.022563736885786057, -0.07534429430961609, 0.09318968653678894, -0.07986987382173538,
- 0.029104188084602356, 0.011060286313295364, 0.1442509889602661, -0.10169688612222672,
- 0.07617360353469849, 0.0027687447145581245, -0.001013479195535183, 0.056775808334350586,
- 0.0055279540829360485, -0.01762116700410843, -0.06556963175535202, 0.04614710807800293,
- 0.06455320864915848, 0.07962015271186829, 0.06514979898929596, -0.04526516795158386,
- 0.010199559852480888, 0.015579704195261002, 0.030079219490289688, -0.03226293623447418,
- 0.10640843212604523, 0.10387147963047028, -0.017445409670472145, -0.02544982172548771,
- -0.01543962862342596, 0.013122324831783772, -0.0010619303211569786,
- 0.0010635154321789742, 0.010914972051978111, -0.015956034883856773,
- -0.0019513089209794998, 0.016663290560245514, 0.019664160907268524,
- 0.0019867215305566788, 0.08817639946937561, -0.11680767685174942, -0.05254177376627922,
- -0.04873628541827202, -0.05661459267139435, 0.006218383088707924, -0.06625980138778687,
- 0.04464976117014885, 0.05691802501678467, 0.07480329275131226, 0.003347117453813553,
- 0.06608803570270538, 0.06707317382097244, 0.12524889409542084, 0.002202798845246434,
- 0.06000659987330437, -0.036494821310043335, -0.031161654740571976,
- -0.047064803540706635, -0.03407375141978264, 0.02106732688844204, 0.03448016196489334,
- -0.09323446452617645, -0.032752666622400284, -0.0263681598007679, -0.06902021914720535,
- -0.045050252228975296, -0.03984461724758148, -0.015830788761377335,
- -0.007463954389095306, -0.07582809776067734, -0.08305154740810394, -0.06102734059095383,
- -0.0070449793711304665, 0.08577382564544678, -0.007548945024609566,
- -0.06080684810876846, -0.1030769795179367, 0.040273040533065796, 0.02690647356212139,
- 0.04286137595772743, 0.01764482632279396, 0.005841832607984543, -0.04161204397678375,
- -0.050770148634910583, -0.03106646239757538, 0.01151558943092823, -0.000408438965678215,
- -0.028236936777830124, -0.026946067810058594, -0.0032137539237737656,
- -0.03493707254528999, -0.057665396481752396, -0.0998205691576004, 0.07157271355390549,
- 0.047522738575935364, 0.07003649324178696, 0.04136044532060623, -0.03312882408499718,
- 0.04798285663127899, -0.043194662779569626, 0.030927877873182297, 0.05331052839756012,
- 0.00918107945472002, 0.01668669655919075, 0.002443005796521902, -0.07420063763856888,
- -0.07628867030143738, 0.015036748722195625, -0.02273138053715229, 0.07550230622291565,
- -0.03667387366294861, 0.007368095219135284, -0.02181508019566536, -0.023228194564580917,
- -0.002801980823278427, -0.04921315610408783, 0.005619937554001808, -0.06644406914710999,
- 0.11844556033611298, -0.05980139970779419, 0.015321196988224983, 0.02684446983039379,
- -0.1232522577047348, 0.0739361122250557, -0.0009487271308898926, -0.02923889458179474,
- 0.03293439373373985, 0.0244247205555439, -0.01699572056531906, 0.06425723433494568,
- 0.05416456237435341, -0.011817691847682, 0.0030543962493538857, 0.04045505449175835,
- 0.4136312007904053, -0.16941134631633759, 0.08592414855957031, 0.03632543236017227,
- 0.048441946506500244, 0.060901667922735214, -0.0050082276575267315,
- 0.037612203508615494, 0.043926626443862915, 0.0819091722369194, 0.09903421998023987,
- -0.004160890355706215, -0.030862674117088318, -0.07830027490854263,
- 0.038248807191848755, 0.02530674822628498, 0.04887275770306587, -0.029351862147450447,
- -0.05642485246062279, -0.01646019145846367, 0.0350053645670414, -0.0359373614192009,
- 0.01669294945895672, 0.015851210802793503, -0.12445680052042007, 0.057252272963523865,
- 0.009946373291313648, 0.00986900832504034, -0.012084126472473145, 0.04295918717980385,
- -0.07046405971050262, 0.07411912083625793, 0.03399716690182686, 0.05177436023950577,
- -0.030893944203853607, 0.08623513579368591, -0.12528660893440247, -0.10188223421573639,
- 0.04443128779530525, -0.06555415689945221, 0.04427015781402588, 0.11839799582958221,
- -0.013076704926788807, -0.003742476925253868, -0.03205142542719841,
- -0.06496845930814743, 0.016153328120708466, 0.06487628817558289, 0.06992427259683609,
- 0.060580216348171234, 0.12046833336353302, 0.010451514273881912, -0.0443609356880188,
- -0.03101547434926033, 0.03720751404762268, 0.1024208813905716, -0.020593412220478058,
- 0.07736670970916748, 0.05514172464609146, -0.040900059044361115, 0.05407756567001343,
- 0.03107459284365177, -0.03445038944482803, -0.0033466126769781113, -0.02303200773894787,
- 0.053648509085178375, -0.015579239465296268, -0.04875276982784271, -0.14261919260025024,
- -0.0722978413105011, -0.028877941891551018, -0.006203503347933292, 0.11373050510883331,
- -0.03120477870106697, 0.06051743030548096, 0.014242870733141899, 0.05750775709748268,
- -0.010538646951317787, -0.06712818890810013, 0.055575091391801834, -0.03515133634209633,
- 0.02259201928973198, 0.10035161674022675, 0.03435523808002472, -0.06535109132528305,
- -0.03510042652487755, -0.08277995884418488, 0.03748251870274544, -0.03951910883188248,
- -0.0629771500825882, 0.05344650521874428, 0.005584096536040306, 0.05329129472374916,
- -0.01903853937983513, -0.032435737550258636, 0.027286116033792496, -0.02847396209836006,
- -0.043177634477615356, -0.08987678587436676, -0.08845065534114838,
- -0.038700003176927567, 0.001921229064464569, 0.08265572786331177, -0.044056400656700134,
- 0.004697347991168499, -0.06242431700229645, -0.03862450644373894, 0.028456520289182663,
- 0.061326365917921066, -0.009846426546573639, -0.10268182307481766, -0.02071402408182621,
- -0.036444954574108124, -0.0029050977900624275, 0.00040490366518497467,
- -0.04243236780166626, -0.01449290569871664, 0.10953317582607269, 0.02794739603996277,
- -0.026654763147234917, 0.05585669353604317, -0.05114511400461197, 0.07211046665906906,
- -0.026555541902780533, -0.5230705142021179, 0.04792074114084244, 0.0013654008507728577,
- 0.033600814640522, 0.06967523694038391, -0.045811332762241364, 0.0328575074672699,
- 0.03702806308865547, 0.06839283555746078, 0.05116747319698334, -0.04821900278329849,
- -0.027065206319093704, 0.060415010899305344, -0.0649055540561676, 0.05102413892745972,
- -0.08034561574459076, 0.0012045688927173615, 0.03867124393582344, 0.00816935021430254,
- -0.001687958836555481, -0.10119873285293579, -0.008446664549410343,
- 0.005771833937615156, 0.015416380949318409, -0.05641801655292511, -0.02843446470797062,
- -0.07973449677228928, -0.0913269966840744, 0.0018800897523760796, 0.047873008996248245,
- -0.010160064324736595, -0.06617595255374908, -0.012689691036939621, 0.02733072265982628,
- -0.02263781987130642, 0.10354334115982056, 0.03211265429854393, -0.02986561506986618,
- -0.06481154263019562, -0.021143153309822083, 0.06142021715641022, 0.19067175686359406,
- -0.00008371425792574883, 0.08265208452939987, 0.0421764999628067, 0.10964388400316238,
- 0.02283025160431862, 0.042372770607471466, -0.05863747000694275, 0.017910592257976532,
- 0.03093222714960575, 0.008355947211384773, 0.015767760574817657, -0.06995515525341034,
- -0.006608080118894577, -0.003000520169734955, 0.010358820669353008,
- -0.025392428040504456, 0.0607503280043602, 0.1278516948223114, 0.044586025178432465,
- 0.02098797634243965, -0.004929803777486086, -0.03282042220234871, 0.038567446172237396,
- -0.038629017770290375, -0.01725771091878414, -0.0307297520339489, -0.0148918516933918,
- -0.006546682678163052, 0.02955901250243187, -0.09939256310462952, 0.011669803410768509,
- 0.015771780163049698, -0.0180427897721529, 0.04784254729747772, -0.07880641520023346,
- 0.023238349705934525, -0.04226100444793701, 0.10998407006263733, 0.025650249794125557,
- 0.04855301231145859, 0.030270706862211227, 0.058585602790117264, 0.0085479486733675,
- -0.05289140343666077, -0.09282367676496506, -0.03390681743621826, -0.023931965231895447,
- 0.08663710206747055, -0.06570793688297272, 0.10358463227748871, 0.026673097163438797,
- -0.015202735550701618, -0.049104176461696625, 0.046441398561000824,
- 0.005903727374970913, 0.01956111565232277, -0.46991777420043945, -0.012855025939643383,
- 0.12095130980014801, -0.042893845587968826, 0.017080089077353477, 0.0919787585735321,
- 0.04013897106051445, -0.016630839556455612, 0.03517596051096916, -0.09373266994953156,
- 0.050318650901317596, -0.00681794248521328, 0.09124888479709625, -0.05298291891813278,
- 0.02455628290772438, 0.10220205038785934, -0.01646462082862854, -0.07176513969898224,
- -0.007144041359424591, -0.15135562419891357, 0.0015877662226557732,
- -0.03694162145256996, 0.21342557668685913, 0.05283110588788986, 0.01767127960920334,
- 0.07874361425638199, -0.02314043790102005, -0.020362192764878273, 0.07701341807842255,
- 0.07035967707633972, 0.03737766668200493, 0.017760733142495155, -0.07202322036027908,
- 0.03317687660455704, 0.06772717833518982, 0.08671313524246216, 0.0027561262249946594,
- 11.696999549865723, 0.057635173201560974, 0.08958767354488373, -0.06373855471611023,
- -0.02106422185897827, -0.04502854496240616, 0.050331659615039825, -0.08709076046943665,
- 0.06218034029006958, 0.06305279582738876, -0.012441632337868214, -0.050028860569000244,
- -0.04210199415683746, -0.025461647659540176, 0.018321551382541656, -0.0670803040266037,
- -0.04516909271478653, -0.029834231361746788, 0.07145915925502777, -0.032687824219465256,
- -0.01244317926466465, -0.027132274582982063, 0.04147925227880478, 0.072140172123909,
- -0.10796508193016052, 0.028867410495877266, 0.033829666674137115, 0.009279903955757618,
- -0.020071744918823242, 0.02521282434463501, -0.00019419705495238304,
- -0.0337805449962616, 0.05180444195866585, 0.007070138119161129, 0.08355538547039032,
- 0.024312017485499382, -0.0002149067586287856, 0.07934506237506866, 0.006587929092347622,
- 0.05528029054403305, -0.014980291947722435, -0.0040018390864133835,
- -0.0025290874764323235, 0.008097507059574127, 0.020797966048121452,
- 0.054145194590091705, 0.015771890059113503, 0.12754271924495697, 0.0233125202357769,
- 0.06019638478755951, 0.09260563552379608, -0.03135994076728821, 0.09448488801717758,
- 0.04440466687083244, 0.01863808184862137, 0.022480448707938194, 0.028098348528146744,
- -0.05739371478557587, 0.04478716105222702, 0.05718587711453438, -0.02102026715874672,
- 0.06520425528287888, 0.03309987112879753, 0.03560444712638855, -0.039963409304618835,
- 0.11086665093898773, 0.052053216844797134, 0.13565011322498322, -0.07262834161520004,
- -0.015513366088271141, 0.020946308970451355, -0.10025320947170258,
- -0.022705504670739174, 0.024674780666828156, 0.08764506131410599, 0.00869649089872837,
- 0.08748352527618408, -0.03989071026444435, 0.05173909291625023, -0.0802873820066452,
- 0.03968653455376625, 0.07185137271881104, -0.008986160159111023, 0.02696153335273266,
- -0.013146042823791504, 0.04999881237745285, 0.13646167516708374, 0.06795742362737656,
- -0.02220088616013527, -0.051401540637016296, -0.08327645063400269,
- -0.022581346333026886, -0.02998095005750656, -0.06780590116977692, -0.06001119688153267,
- -0.01613294705748558, -0.02414621040225029, -0.07728852331638336, 0.0559830442070961,
- 0.0486205518245697, -0.104069285094738, -0.04192592203617096, -0.04324820637702942,
- 0.09382174909114838, -0.0036474820226430893, 0.05100832134485245, -0.0575379841029644,
- 0.03579162061214447, 0.02654450386762619, 0.020290784537792206, -0.03595450147986412,
- 0.05395055562257767, 0.04182414337992668, -0.06907746940851212, 0.06796172261238098,
- -0.007352534681558609, -0.02255702018737793, -0.018022488802671432, 0.04773816466331482,
- 0.04162493348121643, -0.10566714406013489, -0.05300210416316986, -0.056535083800554276,
- -0.03420797735452652, -0.04219856858253479, -0.04059741273522377, -0.008003640919923782,
- -0.03853423893451691, -0.0790671557188034, 0.002812648192048073, 0.0614481195807457,
- 0.02482163906097412, 0.1385142207145691, 0.045411549508571625, 0.048011232167482376,
- -0.04433489218354225, -0.026994656771421432, 0.05069694295525551, 0.05630975216627121,
- -0.004777789115905762, 0.006362435407936573, 0.03487298637628555, -0.05865197256207466,
- -0.09422922879457474, 0.031001009047031403, 0.09749153256416321, 0.07284852862358093,
- 0.07397174835205078, 0.042810287326574326, -0.04832278937101364, 0.04347136616706848,
- 0.08549501746892929, 0.005706587806344032, 0.01826786994934082, -0.037322379648685455,
- -0.021002599969506264, 0.019584007561206818, 0.10777156054973602, -0.04832622408866882,
- -0.0033935359679162502, 0.0592520609498024, -0.04854721203446388, -0.016685565933585167,
- 0.14146344363689423, -0.03440646827220917, 0.021782681345939636, 0.01238199695944786,
- 0.03611098974943161, 0.05018306523561478, -0.04274662584066391, 0.032664183527231216,
- -0.06952957063913345, -0.08098875731229782, -0.039546482264995575, 0.015884816646575928,
- 0.06738974153995514, -0.015113390982151031, -0.17551958560943604, -0.038199156522750854,
- -0.03829473257064819
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 289,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 51,
- "similarity": 0.9975507855415344
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 23,
- "similarity": 0.9974048137664795
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 25,
- "similarity": 0.9973841905593872
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["V. Giang"],
- "epoch_date_downloaded": 1660176000,
- "epoch_date_modified": 1660521600,
- "epoch_date_submitted": 1660176000,
- "flag": null,
- "report_number": 1898,
- "source_domain": "nguoi-viet.com",
- "submitters": ["Khoa Lam"],
- "title": "Bị ‘xe robot’ đụng phải, đòi bảo hiểm bồi thường không dễ",
- "url": "https://www.nguoi-viet.com/xe-hoi/bi-xe-robot-dung-phai-doi-bao-hiem-boi-thuong-khong-de/amp/"
- },
- {
- "__typename": "Report",
- "authors": ["Eva Parks", " Diana Zoga"],
- "epoch_date_downloaded": 1660176000,
- "epoch_date_modified": 1660176000,
- "epoch_date_submitted": 1660176000,
- "flag": null,
- "report_number": 1897,
- "source_domain": "nbcdfw.com",
- "submitters": ["Thomas Giallella (CSET)"],
- "title": "NBC 5 Responds: What Happens if You're in a Crash With a Robot?",
- "url": "https://www.nbcdfw.com/news/nbc-5-responds/nbc-5-responds-what-happens-if-youre-in-a-crash-with-a-robot/2442345/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "toronto-city-government",
- "name": "Toronto city government"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "toronto-public-health",
- "name": "Toronto Public Health"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "toronto-citizens",
- "name": "Toronto citizens"
- },
- {
- "__typename": "Entity",
- "entity_id": "sunnyside-beachgoers",
- "name": "Sunnyside beachgoers"
- },
- {
- "__typename": "Entity",
- "entity_id": "marie-curtis-beachgoers",
- "name": "Marie Curtis beachgoers"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [2414, 1900],
- "vector": [
- -0.09811649844050407, 0.08170595206320286, 0.02212132909335196, -0.10675337538123131,
- 0.07236594706773758, 0.0022100480273365974, -0.025946798734366894, 0.07358542457222939,
- 0.03639248572289944, -0.1097167432308197, -0.0020580170676112175, 0.08917941525578499,
- 0.03413622174412012, -0.06221983954310417, -0.0022801505401730537, -0.06474919058382511,
- -0.10366197302937508, -0.08048029989004135, -0.0020250147208571434,
- -0.15495014190673828, -0.04710301756858826, 0.015947223640978336, 0.03887508390471339,
- 0.08756620064377785, -0.059885477647185326, 0.0065588075667619705, 0.051988668739795685,
- 0.16655336320400238, -0.004753087647259235, 0.04661285690963268, -0.04212886653840542,
- -0.07124102488160133, 0.11461688205599785, 0.017294299555942416, -0.028071782551705837,
- 0.07552284747362137, 0.019562758971005678, 0.003643896896392107, 0.043488163966685534,
- 0.030558565631508827, 0.04730455204844475, 0.27233827114105225, -0.03316956199705601,
- -0.020531433634459972, 0.01692363592883339, -0.056701865047216415, 0.03820694703608751,
- 0.015247064176946878, 0.029874013736844063, -0.013903704704716802,
- -0.017677434196230024, 0.036547135561704636, -0.025024716276675463,
- -0.016063274815678596, -0.08550222963094711, 0.031456376891583204, 0.05776026472449303,
- 0.03490831423550844, 0.038879308849573135, -0.057429819367825985, -0.038154395995661616,
- -0.22341090440750122, -0.030734316911548376, -0.0859861858189106, 0.0621646698564291,
- -0.11542719230055809, -0.03261563181877136, 0.05744659900665283, -0.000555794220417738,
- 0.11454780027270317, 0.0621823463588953, -0.017910200447659008, -0.02467215061187744,
- 0.01973059121519327, -0.040488164871931076, -0.015118560055270791, 0.01293574320152402,
- 0.15703677386045456, -0.12627886980772018, -0.03268133196979761, 0.11109797284007072,
- -0.08024291694164276, 0.43384774029254913, -0.015863750129938126, 0.024152441881597042,
- -0.049864000640809536, 0.09545557200908661, 0.06190402992069721, 0.07899835519492626,
- 0.05315457470715046, -0.011455770905740792, 0.09964479506015778, -0.07785811461508274,
- 0.016296760644763708, 0.06049511767923832, 0.07360079884529114, -0.00462253880687058,
- -0.005596693605184555, -0.023797518806532025, -0.056464191526174545,
- -0.05509400554001331, -0.05915406346321106, 0.11394448205828667, 0.11775758489966393,
- -0.07639498263597488, -0.01843021297827363, 0.07933253422379494, -0.03893623128533363,
- 0.08749387785792351, -0.06541065685451031, 0.01605238113552332, -0.06025612726807594,
- 0.016347446013242006, -0.00016515236347913742, 0.007835648721083999,
- -0.06728084571659565, -0.016814291011542082, 0.06664041429758072, 0.09781800955533981,
- 0.02489695092663169, -0.01438246644102037, 0.049341173842549324, 0.08910277485847473,
- -0.010311416233889759, -0.057016296312212944, -0.007093545631505549,
- -0.1330019310116768, -0.005133439102792181, -0.01908382697729394, 0.0682639367878437,
- -0.04530003573745489, -0.19307728111743927, 0.000374283867131453, 0.08800510503351688,
- 0.019555305130779743, 0.0009930403903126717, 0.010349715128540993, -0.08994243666529655,
- 0.0340298805385828, -0.0622186828404665, -0.039159877225756645, 0.044256677851080894,
- 0.04174337349832058, 0.029223898891359568, 0.12929482758045197, 0.014995665289461613,
- -0.03075914178043604, -0.025042148306965828, -0.027421130915172398,
- -0.08170837536454201, 0.12926003336906433, -0.11449726298451424, -0.043929100036621094,
- 0.023938468657433987, -0.01704147720010951, 0.7193564772605896, 0.1648431196808815,
- 0.16356930881738663, -0.02495689271017909, 0.023325515910983086, 0.13548829406499863,
- -0.011304245796054602, 0.03387856762856245, -0.0707179643213749, -0.07224222645163536,
- 0.03099859319627285, -0.054125528782606125, -0.01614929037168622, 0.049310535192489624,
- -0.020870229054708034, 0.12060234323143959, 0.023386748507618904, 0.09883996099233627,
- -0.01665888144634664, -0.10152843594551086, 0.020116910338401794, 0.1022646501660347,
- 0.03500644024461508, -0.14577296376228333, -0.034463406540453434, 0.06786223128437996,
- 0.0887693464756012, -0.08925550431013107, 0.004529102239757776, -0.10092547535896301,
- 0.004121424863114953, 0.004439028445631266, 0.0784083940088749, -0.0612909309566021,
- 0.07328431308269501, 0.012106165289878845, 0.016062686408986337, 0.008907220792025328,
- -0.16552551835775375, -0.023419573437422514, 0.051689205691218376,
- -0.038965596817433834, -0.03218259196728468, 0.07406220957636833, -0.10489402338862419,
- 0.031621540896594524, -0.012064509093761444, 0.22154352068901062, -0.12811069563031197,
- 0.035452071111649275, -0.01551993959583342, -0.038785376120358706, 0.03446377441287041,
- 0.02391363075003028, -0.06089261919260025, -0.05397944338619709, 0.10978060588240623,
- 0.010265605058521032, 0.08337945863604546, 0.049594687297940254, -0.040215641260147095,
- 0.07227595150470734, 0.1174718402326107, 0.025245144264772534, 0.0029713232070207596,
- 0.11216574534773827, 0.029564152471721172, -0.033641976304352283, -0.022040978772565722,
- 0.04258717782795429, 0.0355092566460371, 0.07842758297920227, 0.018564473371952772,
- 0.05671458877623081, -0.03214049991220236, -0.05148585978895426, 0.006296117790043354,
- 0.03212750708917156, 0.03618037886917591, 0.13487736880779266, -0.07431550696492195,
- -0.07690762542188168, -0.02472624508664012, -0.025628105038776994, 0.030190352350473404,
- -0.0776369534432888, 0.0854714848101139, 0.06306690908968449, 0.08585978299379349,
- 0.027751540765166283, 0.010263704578392208, 0.05486934818327427, -0.06901871785521507,
- 0.057471031323075294, 0.05701804533600807, -0.05219441466033459, -0.012519074138253927,
- -0.02255002222955227, -0.00884018570650369, -0.005270347930490971,
- -0.028154049068689346, -0.05192007124423981, -0.043682487681508064,
- -0.03779989015311003, -0.05122121819294989, -0.05732716992497444, -0.0470130518078804,
- 0.0866832472383976, 0.02015356905758381, -0.06367456167936325, -0.12797171995043755,
- -0.06859705410897732, -0.006392506533302367, 0.14481718838214874, 8.307397365570068e-7,
- -0.007337611896218732, -0.13763342425227165, 0.031175220385193825, 0.005354895722121,
- 0.03943220246583223, -0.0245011355727911, 0.03987093269824982, 0.03920009359717369,
- -0.054432423785328865, 0.04530271701514721, -0.03828293830156326, -0.06679506413638592,
- -0.01649208174785599, -0.025778878480196, -0.03529008384793997, 0.019265227849246003,
- 0.04529801197350025, -0.0012650098651647568, 0.03489091992378235, 0.05696783401072025,
- 0.01663210242986679, -0.005016404204070568, -0.0423402339220047, 0.0497715026140213,
- -0.03634161874651909, -0.03464739490300417, 0.08701270818710327, -0.056430425494909286,
- 0.0757476482540369, -0.01670432137325406, -0.0826953873038292, -0.07096932828426361,
- 0.012638215674087405, -0.08916677534580231, 0.037085662595927715,
- -0.0059534478932619095, -0.04951724596321583, -0.05535660497844219,
- -0.01761325402185321, 0.09080712869763374, -0.0612050537019968, -0.06621066108345985,
- -0.07873960956931114, 0.11781013011932373, 0.009665876496001147, 0.022956071770749986,
- -0.004763009957969189, -0.04233627952635288, 0.06743212416768074, 0.015499000903218985,
- -0.02960412111133337, 0.05778217874467373, 0.019631095230579376, -0.03452302422374487,
- 0.041922805830836296, 0.09397627413272858, -0.0755856391042471, -0.008701714687049389,
- 0.08120340295135975, 0.42362336814403534, -0.19518069922924042, 0.11119480431079865,
- 0.09770071506500244, 0.03572413884103298, 0.03492620773613453, -0.06644852831959724,
- 0.025084919296205044, 0.07303579896688461, 0.15615513175725937, 0.10163107141852379,
- -0.04843621328473091, 0.03667526599019766, -0.09771091863512993, 0.08453690633177757,
- -0.02271861769258976, 0.010005560237914324, 0.01119500759523362, -0.146247997879982,
- 0.02486628293991089, 0.01810408942401409, -0.0662180669605732, 0.02631262969225645,
- -0.0018886013276642188, -0.06651294603943825, 0.019373502349480987,
- -0.028743084520101547, 0.0330416108481586, -0.03442940302193165, 0.03771027037873864,
- 0.032356005162000656, 0.06815824285149574, 0.005726123439671937, 0.033846130263555096,
- -0.09311938658356667, 0.01264051697216928, -0.11162251234054565, -0.06688490509986877,
- 0.09359243512153625, -0.02561212657019496, 0.0038068064022809267, 0.11714895442128181,
- -0.0403881398960948, 0.059965815395116806, -0.01269130827859044, -0.08020101115107536,
- 0.026167371426708996, 0.003280854783952236, 0.03842839039862156, 0.04991002939641476,
- 0.18189098685979843, -0.06307904608547688, -0.06176319718360901, -0.06052706204354763,
- 0.05370626226067543, 0.1091948114335537, 0.03677992522716522, 0.024440182372927666,
- -0.0035243448801338673, -0.030444559641182423, 0.002405485138297081,
- -0.027223789133131504, -0.14797648787498474, -0.009064736310392618,
- -0.01068039401434362, 0.012985936366021633, 0.043441424146294594, -0.03058239072561264,
- -0.20277825742959976, -0.013523781206458807, -0.04374844953417778, 0.017388517037034035,
- 0.13546813651919365, -0.029863348230719566, 0.01868472050409764, 0.00433680135756731,
- -0.019202439580112696, -0.036507789976894855, -0.07906308025121689,
- -0.020816615084186196, -0.03468866087496281, 0.04345956817269325, 0.04424982704222202,
- 0.05973455123603344, -0.053584663197398186, 0.11831596866250038, -0.09189684316515923,
- 0.056667665019631386, -0.02207884844392538, -0.030205652117729187, 0.05061649531126022,
- -0.022386813536286354, 0.0301737105473876, 0.03313967026770115, -0.022945084841921926,
- -0.052187747322022915, -0.019704993348568678, -0.04840056411921978,
- -0.08835325017571449, -0.023414690047502518, -0.052093833684921265,
- -0.08998264744877815, 0.07955844141542912, -0.10778465867042542, -0.01781658222898841,
- -0.02818955574184656, 0.01636922312900424, 0.000620933948084712, 0.02255038422299549,
- -0.011873861774802208, -0.11603203415870667, -0.025012599304318428,
- -0.02228454896248877, 0.0523101519793272, -0.015047632157802582, -0.004399839788675308,
- -0.011521102860569954, 0.1394386887550354, 0.027961541898548603, -0.03964914195239544,
- -0.0030290845315903425, -0.024256286676973104, 0.07597109861671925,
- -0.12558333203196526, -0.531703382730484, 0.03443069010972977, -0.0030418396927416325,
- 0.06525705009698868, 0.012540426338091493, -0.06656374223530293, -0.00579073466360569,
- 0.01347498781979084, -0.009430427569895983, 0.09919265657663345, -0.03529821615666151,
- 0.0011550644412636757, -0.015728204511106014, -0.0388756338506937, -0.01932566100731492,
- -0.05135531257838011, -0.02869549999013543, 0.05032243952155113, -0.026757290586829185,
- -0.09115488454699516, -0.1251036711037159, 0.07217509299516678, -0.0014137839898467064,
- 0.03558307699859142, 0.006938262842595577, 0.021374628879129887, -0.04007707303389907,
- -0.023348259506747127, 0.017083903774619102, 0.047237904742360115, 0.06942687556147575,
- -0.0706634595990181, -0.03667443711310625, 0.05961723253130913, -0.023122398182749748,
- 0.10219462588429451, -0.013514036545529962, -0.04432377964258194, -0.02698809001594782,
- 0.08738737367093563, 0.061014833860099316, 0.18561682105064392, 0.008456448442302644,
- 0.015150410123169422, 0.02084159292280674, 0.11506418138742447, 0.032277618534862995,
- 0.04161264467984438, -0.03796865604817867, -0.032247548922896385,
- -0.0065367016941308975, 0.02936767227947712, 0.05479501374065876, -0.07722742296755314,
- -0.03087443858385086, -0.05038623884320259, 0.03390842396765947, -0.014162223436869681,
- 0.02247441653162241, 0.2461247444152832, 0.03568466939032078, 0.05610810965299606,
- 0.02820695284754038, -0.1078505888581276, 0.061851853504776955, -0.04476755950599909,
- -0.09674220904707909, -0.04830597899854183, -0.0022756606340408325,
- 0.012747789267450571, 0.009233017801307142, -0.13367097824811935, -0.042995698750019073,
- -0.013188169919885695, 0.012076535262167454, 0.14254630357027054, 0.004370762500911951,
- 0.05643060803413391, -0.02644340693950653, 0.1343180648982525, 0.04392849653959274,
- 0.04619212727993727, 0.0779980719089508, 0.10731930285692215, 0.022819945588707924,
- -0.002020087093114853, 0.0020574331283569336, -0.10246547311544418,
- -0.01983105018734932, 0.16929642111063004, -0.06269173137843609, 0.10107022151350975,
- 0.0716280397027731, -0.02017434616573155, -0.0745951347053051, 0.056817349046468735,
- -0.04561961628496647, 0.02367482613772154, -0.45564955472946167, -0.06374725699424744,
- 0.10421868786215782, 0.04702756740152836, 0.04683699831366539, 0.09258437156677246,
- -0.015384456142783165, -0.024098597466945648, -0.06354257836937904,
- -0.10876289382576942, 0.11556709557771683, 0.020693466998636723, 0.0653139054775238,
- -0.109237901866436, 0.05045435205101967, 0.0670347735285759, -0.018114768899977207,
- -0.01875629584537819, 0.08436082676053047, -0.2468201443552971, 0.008029308402910829,
- -0.05493389442563057, 0.15476541966199875, -0.02632591500878334, -0.014976426027715206,
- 0.09469803795218468, -0.051957208663225174, 0.00841567455790937, 0.04828694835305214,
- -0.016789237037301064, 0.06255028955638409, -0.04205372743308544, -0.02321154111996293,
- 0.07838796451687813, 0.10241765156388283, 0.061999221332371235, -0.05466791056096554,
- 11.973472595214844, 0.11162294819951057, 0.06466393172740936, -0.0807559248059988,
- -0.0022980044595897198, 0.016818203032016754, 0.01847407128661871, -0.12378491088747978,
- 0.069215577095747, 0.12945013493299484, -0.049024391919374466, -0.06905225291848183,
- -0.010834805201739073, -0.10415000095963478, 0.008416475728154182, -0.03734798543155193,
- -0.05742094665765762, -0.06932011246681213, 0.045771198347210884, -0.04629083536565304,
- -0.0018805996514856815, 0.0772427674382925, 0.0467473566532135, 0.06018194183707237,
- -0.07069916278123856, 0.04498293250799179, -0.023564423201605678, -0.049167325720191,
- 0.03743656259030104, 0.001649385318160057, 0.014847791055217385, 0.04169891867786646,
- 0.03346580080688, -0.0006199381314218044, 0.03720875456929207, 0.0582230594009161,
- 0.04066208843141794, 0.005609922111034393, 0.038167763501405716, 0.0910678282380104,
- 0.024852852802723646, 0.06755341216921806, 0.04557012394070625, 0.0005675177089869976,
- 0.1200479082763195, 0.09437959641218185, 0.1323285810649395, 0.15833371877670288,
- -0.006927364505827427, 0.12018442153930664, 0.05853286385536194, -0.013303613231983036,
- 0.13307207077741623, -0.01902110129594803, 0.026240712963044643, 0.06761844456195831,
- 0.01466549513861537, -0.10869402065873146, 0.06053956598043442, 0.05370660126209259,
- -0.010919634252786636, 0.07913823798298836, 0.021573322359472513, 0.13403867185115814,
- 0.0030488334596157074, 0.020657912828028202, 0.08460047096014023, 0.10820717364549637,
- -0.11578818783164024, -0.07269585505127907, 0.024711696431040764, -0.1297227069735527,
- -0.04954800195991993, 0.07727769017219543, 0.12779488041996956, -0.051882753148674965,
- 0.019479171372950077, -0.029917108826339245, 0.050790874287486076,
- -0.033849354658741504, -0.002387723419815302, 0.05754254385828972,
- -0.031171943061053753, 0.014155194628983736, 0.11310664936900139, -0.010109690309036523,
- 0.06676602875813842, 0.1233544573187828, -0.05110531486570835, -0.14894192665815353,
- -0.052811045199632645, 0.04077561851590872, 0.012213073670864105, -0.05852469988167286,
- 0.0075116639491170645, -0.06458991765975952, 0.030755430459976196, -0.1872250735759735,
- 0.0851664561778307, 0.08184733241796494, -0.11786115542054176, -0.029740482568740845,
- -0.03699213266372681, -0.007012283313088119, 0.03909423388540745, 0.03382651973515749,
- -0.033018980640918016, -0.011657354887574911, -0.0035572040360420942,
- 0.026545580942183733, -0.023100940976291895, 0.1351347751915455, 0.09176870808005333,
- -0.02909702342003584, -0.010588693898171186, 0.07962126657366753,
- -0.0007079551578499377, -0.05354793928563595, 0.04886005073785782,
- -0.005165502429008484, -0.08111111633479595, -0.06879481300711632,
- -0.013367629377171397, -0.06420866213738918, -0.0824410691857338, -0.05408973805606365,
- -0.02314004092477262, 0.06264174170792103, -0.05812705308198929, -0.06009358912706375,
- 0.0034735260996967554, 0.09086830541491508, 0.0767237488180399, 0.022711504949256778,
- 0.05472874268889427, -0.04697844758629799, -0.027011808022507466, 0.06101587787270546,
- 0.053257325664162636, 0.09375720098614693, -0.015092138666659594, -0.007483572931960225,
- -0.07078170776367188, -0.12343012914061546, 0.05820550210773945, 0.058422716334462166,
- 0.04761351179331541, 0.017575440928339958, 0.055834563449025154, -0.08637984097003937,
- -0.07833946123719215, 0.07270781509578228, 0.024026297964155674, -0.0489216074347496,
- 0.016808286774903536, -0.04965677298605442, -0.06460084952414036, 0.15078402310609818,
- -0.039695266634225845, -0.016274648252874613, 0.04789426922798157, -0.07333830557763577,
- 0.0934206061065197, 0.10037986934185028, 0.022884169593453407, 0.03294695634394884,
- -0.004718567768577486, 0.027702970895916224, 0.06433510035276413, -0.02668303018435836,
- 0.06074461527168751, -0.04260086826980114, -0.13999569788575172, -0.0734176468104124,
- 0.06251726113259792, 0.10509227961301804, 0.0028508268296718597, -0.1510193720459938,
- 0.004195040091872215, -0.09357957169413567
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 290,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Paris Martineau"],
- "epoch_date_downloaded": 1668643200,
- "epoch_date_modified": 1668643200,
- "epoch_date_submitted": 1668643200,
- "flag": null,
- "report_number": 2414,
- "source_domain": "theinformation.com",
- "submitters": ["Daniel Atherton (BNH.ai)"],
- "title": "Toronto Tapped Artificial Intelligence to Warn Swimmers. The Experiment Failed",
- "url": "https://www.theinformation.com/articles/when-artificial-intelligence-isnt-smarter"
- },
- {
- "__typename": "Report",
- "authors": ["Sayash Kapoor", "Arvind Narayanan"],
- "epoch_date_downloaded": 1668643200,
- "epoch_date_modified": 1668643200,
- "epoch_date_submitted": 1668643200,
- "flag": null,
- "report_number": 2413,
- "source_domain": "aisnakeoil.substack.com",
- "submitters": ["Daniel Atherton (BNH.ai)"],
- "title": "The bait and switch behind AI risk prediction tools",
- "url": "https://aisnakeoil.substack.com/p/the-bait-and-switch-behind-ai-risk"
- },
- {
- "__typename": "Report",
- "authors": ["Ben Cohen"],
- "epoch_date_downloaded": 1660521600,
- "epoch_date_modified": 1660521600,
- "epoch_date_submitted": 1660521600,
- "flag": null,
- "report_number": 1900,
- "source_domain": "thestar.com",
- "submitters": ["Khoa Lam"],
- "title": "Safe for swimming? Toronto’s new tool for measuring water quality at its beaches is misleading, say advocates",
- "url": "https://www.thestar.com/news/gta/2022/08/10/safe-for-swimming-torontos-new-tool-for-measuring-water-quality-at-its-beaches-is-misleading-say-advocates.html"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "tesla",
- "name": "Tesla"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "tesla",
- "name": "Tesla"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "tesla-customers",
- "name": "Tesla customers"
- },
- {
- "__typename": "Entity",
- "entity_id": "california-residents",
- "name": "California residents"
- },
- {
- "__typename": "Entity",
- "entity_id": "california-department-of-motor-vehicles",
- "name": "California Department of Motor Vehicles"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [25, 151],
- "editor_similar_incidents": [20],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [2242, 1903, 1902, 1901],
- "vector": [
- -0.09124525636434555, 0.0956166684627533, -0.009458453394472599, -0.09254685044288635,
- 0.04771141707897186, -0.029635736718773842, -0.004845841322094202, 0.05039036646485329,
- 0.09156948328018188, -0.1471588909626007, 0.0004952973104082048, 0.04610338807106018,
- 0.0458785817027092, -0.05272867530584335, 0.04496236890554428, -0.13017483055591583,
- -0.08373130857944489, -0.022209545597434044, -0.0008128471672534943,
- -0.10216718912124634, -0.10548674315214157, -0.013232260011136532, 0.0556054562330246,
- 0.11384523659944534, -0.034662164747714996, 0.029407009482383728, 0.08760605752468109,
- 0.13012459874153137, -0.08339357376098633, 0.04768313467502594, -0.022935394197702408,
- -0.04989207163453102, 0.15481120347976685, 0.0038748709484934807, -0.017046382650732994,
- 0.1028939038515091, 0.029575012624263763, -0.0390770360827446, -0.03734204173088074,
- -0.012872820720076561, 0.06829743087291718, 0.2521546483039856, -0.02325638197362423,
- -0.009491891600191593, 0.05580148845911026, -0.03793960437178612, 0.029891924932599068,
- 0.005899274721741676, 0.006440150085836649, 0.01028368528932333, 0.00017077336087822914,
- 0.03661511465907097, -0.04781784489750862, 0.04008705914020538, -0.07199820876121521,
- 0.07228172570466995, 0.03795997425913811, -0.03212633728981018, 0.03160471469163895,
- -0.06276041269302368, -0.055656176060438156, -0.18621791899204254,
- -0.038140349090099335, -0.04105278104543686, 0.07331398129463196, -0.09747563302516937,
- -0.02252211421728134, 0.02704520896077156, 0.007339365314692259, 0.07368119806051254,
- 0.06264570355415344, -0.06004684418439865, -0.025672536343336105,
- -0.0071509769186377525, 0.004161551594734192, -0.012528788298368454,
- 0.028474973514676094, 0.18764524161815643, -0.09799399226903915, 0.03334064781665802,
- 0.12114407122135162, -0.08589671552181244, 0.42503732442855835, 0.024111444130539894,
- -0.032851219177246094, 0.002617218531668186, 0.09202533960342407, 0.034679658710956573,
- 0.03396379575133324, 0.020788393914699554, -0.01873953640460968, 0.01901949569582939,
- -0.037020228803157806, -0.0040527088567614555, 0.09127853065729141, 0.03127610683441162,
- 0.0012845272431150079, -0.026952393352985382, -0.02188483625650406,
- -0.09798943996429443, 0.06408599764108658, -0.05337931960821152, 0.1159714013338089,
- 0.066486656665802, -0.030181026086211205, 0.03704197704792023, 0.08086267858743668,
- -0.023788506165146828, 0.0418228954076767, -0.053739313036203384, 0.021917864680290222,
- 0.03853138908743858, 0.06515428423881531, 0.011526544578373432, 0.05923214927315712,
- -0.08054066449403763, -0.01529579795897007, 0.02260158397257328, 0.07427489012479782,
- 0.013559069484472275, -0.02499416284263134, 0.06925468146800995, 0.11802713572978973,
- -0.07754504680633545, -0.016026481986045837, -0.048036836087703705,
- -0.08642613887786865, -0.015194492414593697, -0.017331641167402267, 0.0508301667869091,
- -0.06065161153674126, -0.18261294066905975, 0.005198128521442413, 0.10028237104415894,
- -0.006032662931829691, -0.016643300652503967, -0.00838884711265564,
- -0.07815667986869812, 0.02424687333405018, 0.0036623303312808275, -0.012910367920994759,
- 0.08311664313077927, 0.028068862855434418, 0.05408196523785591, 0.08283285796642303,
- 0.059699587523937225, -0.03716488182544708, -0.0552450567483902, 0.002669343026354909,
- -0.0015149419195950031, 0.08300291001796722, -0.11384420841932297,
- -0.048000361770391464, 0.029962310567498207, -0.01184006780385971, 0.6980195045471191,
- 0.11478110402822495, 0.15382027626037598, -0.023586804047226906, -0.04101404920220375,
- 0.1616760492324829, 0.00529105868190527, 0.07324019074440002, -0.08305307477712631,
- -0.058996133506298065, 0.0041536553762853146, -0.09857425093650818,
- -0.030944475904107094, 0.004165589809417725, 0.025437111034989357, 0.1196320429444313,
- 0.05375681817531586, 0.08945349603891373, -0.0018456928664818406, -0.09841907024383545,
- -0.027124762535095215, 0.021670492365956306, 0.04962817579507828, -0.10111405700445175,
- -0.03285336494445801, 0.025572296231985092, 0.09649744629859924, -0.06609940528869629,
- -0.0011937496019527316, -0.06556694209575653, 0.03956218808889389, -0.03474648296833038,
- 0.025732023641467094, -0.01653304323554039, 0.00011621095472946763, 0.05125122517347336,
- 0.08510671555995941, -0.008191204629838467, -0.15084251761436462, -0.04138946160674095,
- 0.11700929701328278, 0.007761580869555473, -0.044754017144441605, 0.07238928973674774,
- -0.08082899451255798, 0.060589201748371124, 0.019696347415447235, 0.1634606122970581,
- -0.09701588749885559, 0.00249322596937418, -0.010144960135221481, 0.015416348353028297,
- 0.042946141213178635, -0.01461149100214243, -0.05314021557569504, -0.07171882688999176,
- 0.03318869322538376, 0.04256640002131462, 0.0952112227678299, 0.029380645602941513,
- -0.03439765051007271, 0.04794330894947052, 0.01801927387714386, 0.002381380181759596,
- -0.07158104330301285, 0.07272782921791077, 0.05840567871928215, -0.06251031905412674,
- -0.04123082756996155, 0.04244076460599899, 0.031113814562559128, 0.023579584434628487,
- 0.008954579010605812, 0.06480933725833893, 0.017722828313708305, -0.04350648447871208,
- 0.026492753997445107, 0.033640120178461075, 0.04015837609767914, 0.08327582478523254,
- -0.06323479115962982, -0.07228507101535797, -0.025956207886338234,
- -0.014691188000142574, -0.0041906642727553844, -0.02200685255229473,
- 0.07272280752658844, 0.05855033919215202, 0.051751621067523956, 0.03317321836948395,
- 0.04136922210454941, 0.07046134769916534, 0.02337547019124031, 0.05440293997526169,
- 0.06124414503574371, -0.03159712627530098, -0.0684335008263588, -0.04840525984764099,
- 0.016879331320524216, 0.08605603873729706, 0.033543989062309265, -0.07861428707838058,
- -0.02175477147102356, -0.036541953682899475, -0.016369668766856194,
- -0.08566790074110031, -0.039156705141067505, -0.039923228323459625, 0.06351536512374878,
- -0.049837708473205566, -0.05505145341157913, -0.0861092358827591, 0.030816569924354553,
- 0.039486825466156006, -0.006764171179383993, -0.009318908676505089, -0.1166134849190712,
- -0.005584322847425938, -0.035257983952760696, 0.04417097195982933, 0.025843003764748573,
- 0.032628074288368225, -0.0038033751770853996, -0.07656877487897873,
- -0.018303420394659042, 0.011324863880872726, -0.0567229725420475, -0.05381781980395317,
- -0.08231814205646515, -0.041146159172058105, 0.016481468454003334, 0.03858845308423042,
- -0.02996506541967392, 0.04497278109192848, 0.051689889281988144, 0.06489075720310211,
- -0.021549755707383156, -0.00807933323085308, 0.0727100670337677, -0.05168959125876427,
- -0.028363920748233795, 0.08296658843755722, -0.004050154704600573, 0.02764526754617691,
- -0.024385856464505196, -0.06211654841899872, -0.056078605353832245,
- -0.01661304570734501, -0.09352967143058777, 0.0592329204082489, -0.04011906310915947,
- 0.018382161855697632, -0.04659350961446762, -0.00863546971231699, 0.0390620119869709,
- -0.09378226846456528, -0.0677344799041748, -0.11137086153030396, 0.10851994156837463,
- -0.026337020099163055, -0.010667018592357635, 0.03553634509444237, -0.07984187453985214,
- 0.02851416915655136, -0.008847415447235107, 0.005372513551265001, 0.04741936922073364,
- 0.05666340887546539, -0.03966206684708595, 0.0365629605948925, 0.05733359977602959,
- -0.0175781212747097, -0.0009166046511381865, 0.06939332187175751, 0.40498918294906616,
- -0.08121146261692047, 0.09622266888618469, 0.08927848935127258, -0.004255404695868492,
- 0.08075958490371704, -0.03817638009786606, 0.059645578265190125, 0.0502367801964283,
- 0.1103239357471466, 0.12060075253248215, -0.04436921328306198, 0.020099006593227386,
- -0.059176042675971985, 0.10112929344177246, -0.005595169961452484, 0.013491181656718254,
- -0.015734652057290077, -0.04660334438085556, 0.0017993238288909197, 0.0585530586540699,
- -0.04354211315512657, 0.004363715648651123, -0.04670892655849457, -0.06457427889108658,
- 0.024746742099523544, 0.022369075566530228, 0.05506477504968643, -0.01790441945195198,
- 0.036307767033576965, -0.008535397239029408, 0.043489448726177216, 0.011672258377075195,
- 0.05566897988319397, -0.07568781822919846, 0.03322586789727211, -0.1093820109963417,
- -0.1178799420595169, 0.0814480260014534, 0.00786005798727274, 0.05151522159576416,
- 0.033767759799957275, -0.005890952423214912, 0.04936942458152771, -0.007021538447588682,
- -0.04715161398053169, 0.004364890046417713, 0.047455426305532455, 0.016982145607471466,
- 0.09898953139781952, 0.16282525658607483, -0.029900794848799706, -0.03779936209321022,
- -0.06570763140916824, 0.07019049674272537, 0.07758276164531708, -0.022520458325743675,
- 0.04487241804599762, 0.00787217728793621, 0.003478473983705044, 0.009104455821216106,
- -0.04748782515525818, -0.0829085111618042, 0.03510241210460663, -0.06134210154414177,
- 0.07035284489393234, 0.012633267790079117, -0.038015127182006836, -0.10872897505760193,
- -0.016388848423957825, -0.05188503488898277, 0.04103182256221771, 0.109248086810112,
- -0.05347093194723129, 0.01027121115475893, 0.021520785987377167, -0.0027974587865173817,
- -0.005997056141495705, -0.10165506601333618, 0.007080677896738052, -0.06401947140693665,
- 0.03186529502272606, 0.061218347400426865, 0.06122924014925957, -0.054044004529714584,
- 0.05809904634952545, -0.12326166033744812, 0.0135748740285635, 0.054362669587135315,
- -0.01346934400498867, 0.02787858434021473, -0.04284057393670082, 0.05750085040926933,
- 0.03710829094052315, -0.05229268595576286, -0.041934579610824585, -0.05888000503182411,
- -0.045428309589624405, -0.0911456048488617, -0.07326064258813858, -0.026721205562353134,
- -0.08889132738113403, 0.0853310376405716, -0.09179685264825821, -0.012439203448593616,
- -0.04654271900653839, 0.011294279247522354, 0.019665522500872612, 0.03645642101764679,
- 0.007145753130316734, -0.12979023158550262, 0.0025086274836212397,
- -0.0022628430742770433, 0.021218374371528625, -0.053332485258579254,
- -0.07559575140476227, 0.006549892947077751, 0.06051874905824661, 0.0025942197535187006,
- -0.04556285962462425, 0.031112004071474075, -0.053767167031764984, 0.05078394338488579,
- -0.0884833112359047, -0.3924369215965271, 0.03848325088620186, 0.0212801992893219,
- 0.06194508075714111, -0.0024613470304757357, -0.08898477256298065, 0.04250703752040863,
- 0.029290705919265747, -0.037627700716257095, 0.09049542248249054, -0.04484618827700615,
- 0.04424562305212021, 0.0017434741603210568, -0.054497506469488144,
- -0.015747448429465294, -0.08208635449409485, -0.04737308248877525, 0.023446233943104744,
- -0.05192899331450462, -0.03968770056962967, -0.09749871492385864, 0.003368719480931759,
- -0.05052172392606735, 0.003026028163731098, 0.00480111688375473, 0.009084874764084816,
- -0.11144120991230011, -0.04065366089344025, 0.038877248764038086, 0.05360898748040199,
- -0.0015678752679377794, -0.05659762769937515, -0.01345594972372055, 0.02507360838353634,
- -0.031900327652692795, 0.15884457528591156, 0.018566865473985672, 0.053892794996500015,
- -0.09176774322986603, 0.09106405079364777, 0.05589676648378372, 0.18648669123649597,
- -0.04041440784931183, 0.039199668914079666, 0.03521636500954628, 0.10857082903385162,
- -0.000528999837115407, 0.06347908824682236, -0.03191564604640007, 0.01392492838203907,
- 0.02301790565252304, -0.015590722672641277, 0.07077319175004959, -0.07062271237373352,
- -0.014660232700407505, -0.048337895423173904, -0.05423453077673912,
- -0.026478145271539688, 0.004886179231107235, 0.18610453605651855, 0.029634933918714523,
- 0.009063906036317348, 0.04272885620594025, -0.06045083701610565, -0.015893584117293358,
- -0.06673261523246765, -0.09161699563264847, -0.01782747358083725, -0.005431330297142267,
- 0.04730875790119171, -0.03150779381394386, -0.12731942534446716, -0.010297504253685474,
- -0.05222248286008835, -0.015756865963339806, 0.12090829014778137, -0.030223453417420387,
- 0.01080238539725542, -0.01857743039727211, 0.1386227160692215, 0.02836555242538452,
- 0.06287584453821182, 0.04454590007662773, 0.08439097553491592, 0.007776969112455845,
- 0.001661520916968584, -0.04264349862933159, -0.10272953659296036, 0.03475504368543625,
- 0.13054414093494415, -0.010365242138504982, 0.08580432832241058, 0.03401005640625954,
- -0.019433757290244102, -0.05247427895665169, 0.024066880345344543, -0.02061448246240616,
- 0.03455827757716179, -0.47049418091773987, -0.008936893194913864, 0.12634509801864624,
- -0.014325691387057304, 0.04566640406847, 0.07113441079854965, 0.050528571009635925,
- -0.013793667778372765, -0.023215755820274353, -0.05934922397136688, 0.17289897799491882,
- 0.0027903164736926556, 0.052197299897670746, -0.11954919248819351, 0.038593776524066925,
- 0.07797866314649582, -0.001159046427346766, -0.027047155424952507, 0.038809679448604584,
- -0.2311743050813675, -0.010819554328918457, -0.049399055540561676, 0.13978436589241028,
- 0.0376172736287117, 0.03418984264135361, 0.08135779201984406, -0.0405036062002182,
- 0.02318405546247959, 0.02409835159778595, 0.015855982899665833, 0.07601450383663177,
- -0.016675390303134918, -0.020786959677934647, 0.12180376052856445, 0.06413187831640244,
- 0.0902635008096695, -0.007305413018912077, 11.949507713317871, 0.0645831972360611,
- 0.06834909319877625, -0.08168162405490875, 0.008505260571837425, -0.033517323434352875,
- 0.045493900775909424, -0.06353291869163513, 0.06647548824548721, 0.10638032108545303,
- -0.03675953671336174, -0.04081610217690468, -0.057379793375730515, -0.07051873207092285,
- -0.021367903798818588, -0.08194416016340256, -0.016932494938373566,
- -0.005795848090201616, 0.04305651783943176, -0.03985515981912613, -0.006862586829811335,
- -0.010806316509842873, 0.07754836976528168, 0.01798834465444088, -0.11792933195829391,
- 0.054884325712919235, 0.020426860079169273, 0.0021522706374526024,
- -0.016417568549513817, 0.014301972463726997, 0.0016802242025732994,
- 0.027465112507343292, 0.08151072263717651, 0.016629161313176155, -0.015031163580715656,
- 0.08189548552036285, 0.0381583645939827, 0.0644269660115242, 0.016485288739204407,
- 0.04932491108775139, 0.016215752810239792, 0.024007704108953476, 0.01714617758989334,
- 0.045692648738622665, 0.06326588243246078, 0.009416562505066395, 0.02988293766975403,
- 0.10176616907119751, 0.010654770769178867, 0.07085256278514862, 0.08128263056278229,
- -0.013351237401366234, 0.08919558674097061, 0.021594613790512085,
- 0.00040584959788247943, 0.05669364333152771, -0.03577922284603119, -0.07453370094299316,
- 0.07684821635484695, 0.05586320906877518, -0.06281832605600357, 0.11078041046857834,
- 0.03087051957845688, 0.13312919437885284, 0.02964707650244236, 0.03037584200501442,
- 0.06845134496688843, 0.09040525555610657, -0.13800165057182312, -0.06791974604129791,
- 0.03954898938536644, -0.102698914706707, -0.04896346479654312, 0.07228820025920868,
- 0.05607641488313675, -0.020735496655106544, 0.054919831454753876, -0.012075904756784439,
- 0.04494384303689003, -0.01148794312030077, -0.003096089232712984, 0.03128233924508095,
- -0.028856629505753517, 0.022213080897927284, 0.029935788363218307,
- -0.0069138240069150925, 0.08262060582637787, 0.11819034814834595, -0.013548575341701508,
- -0.06241324916481972, -0.07856747508049011, 0.09164080023765564, 0.004682433791458607,
- -0.05731969699263573, 0.004414045717567205, -0.06504695862531662, -0.011026931926608086,
- -0.15472659468650818, 0.08485749363899231, 0.1309688836336136, -0.0525372214615345,
- -0.02145979553461075, -0.022748606279492378, 0.10925178229808807, 0.0004767469654325396,
- 0.027853861451148987, -0.04732076823711395, -0.0069588785991072655, 0.0265201386064291,
- 0.056438036262989044, -0.08950157463550568, 0.10730188339948654, 0.05229863151907921,
- -0.07418813556432724, 0.062473297119140625, 0.06759850680828094, -0.03510617837309837,
- -0.058472707867622375, 0.0420612134039402, 0.030521545559167862, -0.08750513941049576,
- -0.042367834597826004, -0.05083724483847618, -0.06779789924621582,
- -0.014633755199611187, -0.03812176361680031, 0.004427357576787472, 0.003040998475626111,
- -0.06782263517379761, -0.027249356731772423, 0.018226023763418198, 0.01792219839990139,
- 0.1445433348417282, 0.007281631231307983, 0.050606630742549896, -0.07290710508823395,
- -0.03412295877933502, 0.06854599714279175, 0.06779179722070694, 0.06414224207401276,
- -0.03693817928433418, -0.0037353523075580597, -0.06915779411792755,
- -0.12442456185817719, 0.02995133399963379, 0.11836186051368713, 0.040994901210069656,
- 0.034855205565690994, 0.045692697167396545, -0.06793877482414246, -0.056831859052181244,
- 0.12399084866046906, 0.012095977552235126, 0.03595496714115143, 0.0300659891217947,
- -0.08053265511989594, 0.0006450789514929056, 0.16218647360801697, -0.04082231596112251,
- 0.004623963497579098, 0.029005708172917366, -0.12599393725395203, 0.0849575400352478,
- 0.06764665246009827, 0.07007906585931778, 0.03881775587797165, 0.025227015838027,
- -0.0074045429937541485, 0.029901178553700447, 0.010802628472447395,
- 0.012105222791433334, -0.027194513007998466, -0.0988040640950203, -0.09143109619617462,
- 0.04215284436941147, 0.06747592240571976, 0.07475393265485764, -0.15355882048606873,
- -0.005503453314304352, -0.06138601899147034
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 291,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 20,
- "similarity": 0.9986491799354553
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 151,
- "similarity": 0.9985219240188599
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 25,
- "similarity": 0.998443603515625
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Mike Spector", "Dan Levine"],
- "epoch_date_downloaded": 1667952000,
- "epoch_date_modified": 1668124800,
- "epoch_date_submitted": 1667952000,
- "flag": null,
- "report_number": 2242,
- "source_domain": "reuters.com",
- "submitters": ["Anonymous"],
- "title": "Exclusive: Tesla faces U.S. criminal probe over self-driving claims",
- "url": "https://www.reuters.com/legal/exclusive-tesla-faces-us-criminal-probe-over-self-driving-claims-sources-2022-10-26/"
- },
- {
- "__typename": "Report",
- "authors": ["Steven Loveday"],
- "epoch_date_downloaded": 1660521600,
- "epoch_date_modified": 1660521600,
- "epoch_date_submitted": 1660521600,
- "flag": null,
- "report_number": 1903,
- "source_domain": "insideevs.com",
- "submitters": ["Khoa Lam"],
- "title": "California DMV Accuses Tesla Of False Advertising For Autopilot, FSD",
- "url": "https://insideevs.com/news/603102/tesla-accused-misleading-advertising-autopilot-self-driving/"
- },
- {
- "__typename": "Report",
- "authors": ["Emma Roth"],
- "epoch_date_downloaded": 1660521600,
- "epoch_date_modified": 1660521600,
- "epoch_date_submitted": 1660521600,
- "flag": null,
- "report_number": 1902,
- "source_domain": "theverge.com",
- "submitters": ["Khoa Lam"],
- "title": "California DMV accuses Tesla of making false claims about Autopilot and Full-Self Driving",
- "url": "https://www.theverge.com/2022/8/6/23294658/california-dmv-accuses-tesla-false-claims-autopilot-full-self-driving-autonomous-vehicles"
- },
- {
- "__typename": "Report",
- "authors": ["Russ Mitchell"],
- "epoch_date_downloaded": 1660262400,
- "epoch_date_modified": 1660521600,
- "epoch_date_submitted": 1660262400,
- "flag": null,
- "report_number": 1901,
- "source_domain": "latimes.com",
- "submitters": ["Khoa Lam"],
- "title": "California DMV accuses Tesla of falsely advertising Autopilot and Full Self-Driving features",
- "url": "https://www.latimes.com/business/story/2022-08-05/dmv-false-advertising-tesla"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "apple",
- "name": "Apple"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "apple",
- "name": "Apple"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "silicon-valley-traffic-participants",
- "name": "Silicon Valley traffic participants"
- },
- {
- "__typename": "Entity",
- "entity_id": "silicon-valley-residents",
- "name": "Silicon Valley residents"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1906, 1905, 1904],
- "vector": [
- -0.10104534029960632, 0.07936764508485794, -0.0018339654197916389, -0.09484971314668655,
- 0.08620790392160416, -0.03818328678607941, -0.002969818189740181, 0.030806327238678932,
- 0.10444233566522598, -0.1417067050933838, 0.013445667922496796, 0.03161495551466942,
- 0.06867295503616333, -0.04590592905879021, 0.04766311123967171, -0.061201080679893494,
- -0.11095567792654037, -0.07512225955724716, -0.020444421097636223, -0.11898074299097061,
- -0.07648206502199173, -0.015330963768064976, 0.04889465495944023, 0.10396736115217209,
- -0.05581944063305855, 0.02388077788054943, 0.1034272238612175, 0.128987118601799,
- -0.0840618833899498, 0.012370046228170395, -0.023358091711997986, -0.08166628330945969,
- 0.13441511988639832, 0.02426324225962162, 0.005108460318297148, 0.059972602874040604,
- 0.018062561750411987, -0.0493309311568737, 0.03294125199317932, -0.016805140301585197,
- 0.0380026139318943, 0.273202121257782, -0.02538592927157879, -0.033131085336208344,
- 0.04824012145400047, -0.04005132615566254, 0.04492051899433136, 0.020632823929190636,
- 0.010684840381145477, 0.03195584937930107, -0.044070884585380554, 0.012689720839262009,
- -0.03620969131588936, 0.049848269671201706, -0.09062868356704712, 0.040550120174884796,
- 0.030605653300881386, 0.014835722744464874, 0.044026777148246765, -0.06102962791919708,
- -0.06959187239408493, -0.2268582433462143, -0.04575653374195099, -0.0828535407781601,
- 0.059632401913404465, -0.11088910698890686, -0.052278220653533936, 0.03373633325099945,
- 0.009481415152549744, 0.08730769902467728, 0.06292038410902023, -0.05433506891131401,
- -0.01706111989915371, 0.013689599931240082, -0.03255699202418327, -0.01579216867685318,
- 0.011992503888905048, 0.15974727272987366, -0.12096273899078369, 0.02940278686583042,
- 0.09066803008317947, -0.09248745441436768, 0.46846380829811096, 0.024282529950141907,
- -0.05587023124098778, -0.01000482402741909, 0.12126976996660233, 0.07021556049585342,
- 0.041319604963064194, 0.027098126709461212, -0.009543544612824917, 0.02261912263929844,
- -0.03450978919863701, 0.014143623411655426, 0.07695520669221878, 0.05537503957748413,
- -0.02434292435646057, 0.018588775768876076, -0.01873193494975567, -0.06717536598443985,
- 0.037767503410577774, -0.05511152744293213, 0.07672133296728134, 0.0660768374800682,
- -0.02264021337032318, 0.0016324669122695923, 0.06801416724920273, -0.03180623799562454,
- 0.04584752023220062, -0.06724908202886581, 0.02797524631023407, 0.012374266982078552,
- 0.04007125273346901, -0.017443733289837837, 0.024727636948227882, -0.07740798592567444,
- -0.012392961420118809, 0.011493789963424206, 0.10483778268098831, 0.01360456645488739,
- -0.02395179308950901, 0.08484584093093872, 0.08492150902748108, -0.08245876431465149,
- -0.029793614521622658, -0.02536925859749317, -0.10230172425508499,
- -0.024152934551239014, -0.050603341311216354, 0.03489671275019646, -0.04991620406508446,
- -0.19948172569274902, 0.034716252237558365, 0.1320543885231018, -0.019346386194229126,
- -0.010773345828056335, -0.024603644385933876, -0.06447596102952957,
- 0.039280522614717484, -0.014462344348430634, -0.01790161058306694, 0.039385806769132614,
- 0.03387673944234848, 0.02698300965130329, 0.09814226627349854, 0.029710009694099426,
- -0.05562394857406616, -0.07202791422605515, 0.0259084552526474, -0.034450095146894455,
- 0.1000869944691658, -0.1245679184794426, -0.045736681669950485, 0.025345519185066223,
- -0.035643938928842545, 0.7350515723228455, 0.10901401191949844, 0.18187642097473145,
- -0.017743589356541634, -0.02167528308928013, 0.17122739553451538, 0.01775999180972576,
- 0.0334787555038929, -0.0873497948050499, -0.0768628939986229, 0.010804741643369198,
- -0.03353899344801903, -0.02443363331258297, 0.03918225318193436, 0.0014092089841142297,
- 0.09358108043670654, 0.033787764608860016, 0.1082065999507904, 0.018028229475021362,
- -0.05547964572906494, -0.007379693910479546, 0.050225257873535156, 0.05133947730064392,
- -0.10333085805177689, -0.03224178031086922, 0.03495875746011734, 0.08765989542007446,
- -0.0783563181757927, -0.007473186124116182, -0.0628662034869194, 0.09710947424173355,
- -0.016311658546328545, 0.03944717347621918, -0.01511541847139597, 0.030860289931297302,
- 0.03782397881150246, 0.07073195278644562, -0.013352851383388042, -0.09296613931655884,
- -0.05190584063529968, 0.06649501621723175, -0.027940599247813225, -0.04163331910967827,
- 0.046724677085876465, -0.08874303847551346, 0.07483196258544922, 0.028516435995697975,
- 0.17762064933776855, -0.12355685979127884, 0.027959026396274567, 0.00017852273595053703,
- 0.04017975926399231, 0.0072936746291816235, 0.012819995172321796, -0.03156536817550659,
- -0.07822989672422409, 0.03861639276146889, 0.046868979930877686, 0.06635458767414093,
- 0.050838056951761246, -0.02715281955897808, 0.04756695404648781, 0.0406988188624382,
- 0.022541185840964317, -0.03126159682869911, 0.060442835092544556, 0.05871393159031868,
- -0.04509831964969635, -0.014125808142125607, 0.019214725121855736, 0.03923015296459198,
- 0.04284970834851265, -0.00023084964777808636, 0.06459041684865952, -0.0238625630736351,
- -0.04568867385387421, 0.041526928544044495, 0.04276306927204132, 0.0577847957611084,
- 0.10759040713310242, -0.0695066824555397, -0.0779275968670845, -0.01846332661807537,
- -0.06471981853246689, -0.01729435659945011, -0.02619432471692562, 0.06604516506195068,
- 0.07764754444360733, 0.05448334291577339, 0.023203136399388313, 0.08024173229932785,
- 0.07364880293607712, 0.017761411145329475, 0.04835428670048714, 0.07121431082487106,
- -0.03762507811188698, -0.03310359641909599, -0.0347931869328022, -0.0020220663864165545,
- 0.05196266248822212, 0.01658765785396099, -0.08557393401861191, -0.048253193497657776,
- -0.08467638492584229, -0.01742769218981266, -0.09185575693845749, -0.02661450020968914,
- -0.010619749315083027, 0.07776724547147751, -0.0821501836180687, -0.08488083630800247,
- -0.08069651573896408, 0.029373252764344215, 0.0669235959649086, 0.002643846208229661,
- -0.012881963513791561, -0.12804347276687622, 0.011227346956729889, -0.05755137279629707,
- 0.02908884920179844, -0.024345243349671364, 0.03930176794528961, -0.011730876751244068,
- -0.07191243022680283, 0.0021286976989358664, -0.02293211966753006, -0.04473533108830452,
- -0.01588658057153225, -0.10373442620038986, -0.0383521243929863, -0.021293392404913902,
- 0.03878529742360115, -0.010308184660971165, 0.028386885300278664, 0.05850370600819588,
- 0.059605132788419724, -0.04156354442238808, -0.03508857265114784, 0.04027349129319191,
- -0.03274752199649811, -0.05567358806729317, 0.09909042716026306, 0.016951747238636017,
- 0.04946788772940636, -0.023485923185944557, -0.0858805775642395, -0.0470588244497776,
- 0.04074485972523689, -0.06803383678197861, 0.07054907828569412, -0.0339178629219532,
- 0.015979617834091187, -0.03562982380390167, -0.012583882547914982, 0.0307940486818552,
- -0.06596799194812775, -0.08506962656974792, -0.11439186334609985, 0.1292305737733841,
- -0.03717067465186119, -0.01370647456496954, 0.060016680508852005, -0.004983710590749979,
- 0.05394857004284859, 0.003944937605410814, -0.010402356274425983, 0.04515284299850464,
- 0.042245447635650635, 0.011221039108932018, 0.04368181526660919, 0.05975944176316261,
- -0.008756096474826336, 0.04148394241929054, 0.049423158168792725, 0.4234839379787445,
- -0.15233804285526276, 0.04885058477520943, 0.06984234601259232, 0.007806036621332169,
- 0.07154455035924911, -0.037596870213747025, 0.07393151521682739, 0.06772717088460922,
- 0.10570097714662552, 0.16853199899196625, -0.046601369976997375, -0.005709337070584297,
- -0.06860171258449554, 0.06476189941167831, -0.010264496318995953, 0.007880805060267448,
- -0.02244301326572895, -0.062225740402936935, 0.003880233271047473, 0.0681585744023323,
- -0.05693931505084038, -0.02285938896238804, -0.03788302466273308, -0.05328935384750366,
- 0.003895006375387311, 0.022594019770622253, 0.01143136527389288, -0.024857213720679283,
- 0.011307441629469395, -0.010438669472932816, 0.035227105021476746, -0.01133799273520708,
- 0.022266658022999763, -0.06653779000043869, 0.02750774286687374, -0.09050481766462326,
- -0.10584518313407898, 0.08230328559875488, 0.001202856539748609, 0.06505283713340759,
- 0.05461584031581879, -0.053455229848623276, 0.0292227640748024, -0.005794153083115816,
- -0.042131274938583374, 0.010900148190557957, 0.080951027572155, 0.02717876248061657,
- 0.08885610103607178, 0.15310180187225342, -0.05004038289189339, -0.03457871824502945,
- -0.07643072307109833, 0.07192135602235794, 0.07330866903066635, -0.028634509071707726,
- 0.024535343050956726, 0.010506860911846161, -0.012129205279052258,
- -0.001989033306017518, -0.07971780747175217, -0.09287206083536148, 0.023398928344249725,
- -0.07335472106933594, 0.06722629815340042, -0.012582636438310146, -0.04226041957736015,
- -0.1524093598127365, -0.05761820077896118, -0.027547338977456093, 0.05216744542121887,
- 0.07006463408470154, -0.025310486555099487, 0.05123850330710411, 0.026004908606410027,
- -0.01716873049736023, 0.0053170532919466496, -0.07407693564891815, -0.00836229883134365,
- -0.009073284454643726, 0.036714956164360046, 0.0910906195640564, 0.0651983767747879,
- -0.044740229845047, 0.05120830610394478, -0.12788055837154388, 0.028934059664607048,
- 0.016923846676945686, -0.025256609544157982, 0.01776806265115738, -0.016957687214016914,
- 0.0678672194480896, 0.026994450017809868, -0.033202964812517166, 0.03173026442527771,
- -0.0765412226319313, -0.057137537747621536, -0.07788348197937012, -0.08239734172821045,
- -0.027259180322289467, -0.07649616152048111, 0.06965162605047226, -0.05787646770477295,
- -0.01907259412109852, -0.05222061276435852, -0.05021125450730324, 0.015945082530379295,
- 0.04574322700500488, 0.00337776355445385, -0.16177614033222198, -0.014157717116177082,
- -0.006491126958280802, 0.04168487712740898, 0.005994836334139109, -0.0427064448595047,
- -0.004081432241946459, 0.09133737534284592, 0.014202993363142014, -0.011383704841136932,
- -0.002999598393216729, -0.08215386420488358, 0.0100614745169878, -0.08589110523462296,
- -0.44371557235717773, 0.05756264552474022, 0.03563645854592323, 0.04040641710162163,
- -0.024547405540943146, -0.06356862932443619, 0.05762515589594841,
- -0.0001615757792023942, -0.020255209878087044, 0.08201947808265686,
- -0.04282892122864723, 0.01411446277052164, -0.018999969586730003, -0.06765713542699814,
- 0.004802790470421314, -0.07369845360517502, -0.025036610662937164, 0.02010928839445114,
- -0.03515719622373581, -0.0362534373998642, -0.07915572077035904, 0.028594842180609703,
- -0.03281434252858162, 0.0017556460807099938, -0.0019344426691532135, 0.0354897566139698,
- -0.10195744037628174, -0.07386239618062973, 0.014882235787808895, 0.04359975829720497,
- 0.029844393953680992, -0.08153878897428513, -0.0008180017466656864,
- 0.007127923890948296, -0.05140360817313194, 0.12205883860588074, -0.011651071719825268,
- 0.0018832137575373054, -0.033081281930208206, 0.07348174601793289, 0.04556901752948761,
- 0.18436606228351593, -0.04339120164513588, 0.02895190753042698, 0.023678407073020935,
- 0.14382804930210114, 0.041496966034173965, 0.033160045742988586, -0.021097267046570778,
- 0.0028604872059077024, 0.0012721881503239274, -0.033977214246988297,
- 0.07773087173700333, -0.06749238818883896, -0.013043961487710476, -0.02230260521173477,
- -0.03152826800942421, -0.038102418184280396, 0.03677639737725258, 0.19334693253040314,
- 0.03629855439066887, 0.032111186534166336, 0.020101701840758324, -0.04005982354283333,
- -0.0015539178857579827, -0.08594286441802979, -0.04506242647767067,
- -0.047242701053619385, -0.02097114361822605, 0.03776827082037926, -0.0426519550383091,
- -0.13642264902591705, -0.015229434706270695, -0.01383981853723526, -0.01288220752030611,
- 0.1486300826072693, -0.004098216071724892, -0.0028576701879501343,
- -0.007994488812983036, 0.15108196437358856, 0.021591661497950554, 0.05079216882586479,
- 0.04318751022219658, 0.08617382496595383, 0.019522778689861298, 0.013484655879437923,
- -0.06198124960064888, -0.07256966084241867, 0.027789844200015068, 0.11422016471624374,
- -0.04965038225054741, 0.1339782029390335, 0.02999073825776577, -0.04742501303553581,
- -0.049926359206438065, 0.029810598120093346, 0.018489738926291466, 0.03385114297270775,
- -0.43065178394317627, 0.019426582381129265, 0.1422659009695053, -0.010908287949860096,
- 0.041387248784303665, 0.05367797613143921, -0.0030353928450495005, 0.004205069504678249,
- -0.02337147481739521, -0.043536435812711716, 0.1061943769454956, 0.003419380635023117,
- 0.05516878888010979, -0.10436401516199112, 0.052875835448503494, 0.08134345710277557,
- 0.013547657988965511, -0.029537156224250793, 0.05777893587946892, -0.2628495693206787,
- 0.010141362436115742, -0.03289906680583954, 0.13888709247112274, 0.035855766385793686,
- 0.023289842531085014, 0.10582419484853745, -0.03718024119734764, 0.053198616951704025,
- 0.004655611235648394, 0.015782175585627556, 0.058624863624572754, -0.04224395751953125,
- -0.03974590823054314, 0.10332390666007996, 0.10846548527479172, 0.08010470867156982,
- 0.008250786922872066, 12.069851875305176, 0.07223368436098099, 0.06418564915657043,
- -0.09630975127220154, -0.02536240965127945, -0.06041787564754486, 0.029511237516999245,
- -0.05982765927910805, 0.08270146697759628, 0.14919506013393402, -0.020035898312926292,
- -0.07266437262296677, -0.03141437843441963, -0.08952023833990097, 0.022198177874088287,
- -0.09512797743082047, -0.03795741870999336, -0.011809908784925938, 0.04512960836291313,
- -0.04272902011871338, -0.0460120253264904, 0.024834612384438515, 0.09248863905668259,
- 0.0291806161403656, -0.08476363867521286, 0.0659133791923523, 0.0197345819324255,
- 0.0193204116076231, -0.010942764580249786, 0.01494667399674654, -0.021334968507289886,
- 0.04208696261048317, 0.07765668630599976, -0.011688846163451672, 0.01105343084782362,
- 0.09466346353292465, 0.061431437730789185, 0.058712054044008255, 0.01064891368150711,
- 0.08173681795597076, 0.02674892731010914, 0.05028083920478821, -0.0006803034921176732,
- 0.05691954866051674, 0.04222783446311951, 0.053864095360040665, 0.045037295669317245,
- 0.11396326869726181, 0.008517646230757236, 0.0389830656349659, 0.0755135715007782,
- -0.017881197854876518, 0.14067314565181732, 0.0452253483235836, -0.039527904242277145,
- 0.01204498391598463, -0.030941061675548553, -0.041631560772657394, 0.06178073212504387,
- 0.06549064069986343, -0.06305929273366928, 0.1033356562256813, 0.010553744621574879,
- 0.12939666211605072, 0.02737593650817871, 0.044818222522735596, 0.05211080238223076,
- 0.0693540871143341, -0.12549231946468353, -0.11880195140838623, 0.010037739761173725,
- -0.14650006592273712, -0.04067070782184601, 0.07922753691673279, 0.09400531649589539,
- -0.02111191861331463, 0.058606166392564774, -0.03391541913151741, 0.016109449788928032,
- -0.013548556715250015, -0.008868752047419548, 0.038796477019786835,
- -0.038769710808992386, 0.04961276054382324, 0.08202173560857773, 0.03307519480586052,
- 0.09014489501714706, 0.1328064352273941, 0.007174299564212561, -0.09590724855661392,
- -0.08394869416952133, 0.06061331555247307, -0.01610242947936058, -0.04838109016418457,
- 0.01267313864082098, -0.0539349801838398, 0.049188315868377686, -0.1663677841424942,
- 0.04613647237420082, 0.10130780935287476, -0.0318378247320652, -0.029791032895445824,
- -0.029968926683068275, 0.09686342626810074, 0.03175545483827591, 0.037386298179626465,
- -0.04512788727879524, -0.0411841981112957, 0.0352751724421978, 0.035220205783843994,
- -0.04326412081718445, 0.10674252361059189, 0.09058695286512375, -0.04424554109573364,
- 0.05604572966694832, 0.06732141226530075, -0.015195239335298538, -0.040824949741363525,
- 0.060239288955926895, 0.1014082208275795, -0.09813686460256577, -0.04670127108693123,
- -0.05527253448963165, -0.07293005287647247, -0.025437593460083008, -0.04193196818232536,
- -0.012033742852509022, 0.019669482484459877, -0.0814451351761818, -0.05127580836415291,
- 0.0339832566678524, 0.05159400403499603, 0.14246267080307007, -0.021802179515361786,
- 0.0643622875213623, -0.09165609627962112, -0.029598547145724297, 0.07218896597623825,
- 0.08471731096506119, 0.07598640769720078, -0.0544581413269043, -0.03325442969799042,
- -0.03564095497131348, -0.0944037064909935, 0.05734281614422798, 0.10498551279306412,
- 0.05812830850481987, 0.016394203528761864, 0.044535983353853226, -0.049196720123291016,
- -0.08236958831548691, 0.1383724957704544, 0.031798105686903, 0.03602685034275055,
- 0.010148376226425171, -0.06165441870689392, -0.015401572920382023, 0.15168863534927368,
- -0.05054687336087227, 0.016302715986967087, 0.03147478774189949, -0.08369455486536026,
- 0.056845828890800476, 0.11306658387184143, 0.037589892745018005, 0.03403057903051376,
- 0.02576681226491928, -0.008389274589717388, 0.044270601123571396, -0.0461542122066021,
- 0.03400934115052223, 0.003343052463606, -0.09190502017736435, -0.07786685228347778,
- 0.049517448991537094, 0.08352881669998169, 0.013822481036186218, -0.08299895375967026,
- -0.0409374013543129, -0.05062605068087578
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 292,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 8,
- "similarity": 0.9981454014778137
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 71,
- "similarity": 0.9980891942977905
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 20,
- "similarity": 0.9980373978614807
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Dave McQuilling"],
- "epoch_date_downloaded": 1660521600,
- "epoch_date_modified": 1660521600,
- "epoch_date_submitted": 1660521600,
- "flag": null,
- "report_number": 1906,
- "source_domain": "slashgear.com",
- "submitters": ["Khoa Lam"],
- "title": "The Apple Car's First Test Drive Was A Total Disaster",
- "url": "https://www.slashgear.com/926687/the-apple-cars-first-test-drive-was-a-total-disaster/"
- },
- {
- "__typename": "Report",
- "authors": ["Wayne Ma"],
- "epoch_date_downloaded": 1660521600,
- "epoch_date_modified": 1660521600,
- "epoch_date_submitted": 1660521600,
- "flag": null,
- "report_number": 1905,
- "source_domain": "theinformation.com",
- "submitters": ["Khoa Lam"],
- "title": "Inside Apple’s Eight-Year Struggle to Build a Self-Driving Car",
- "url": "https://www.theinformation.com/articles/inside-apples-eight-year-struggle-to-build-a-self-driving-car"
- },
- {
- "__typename": "Report",
- "authors": [" Ariel Zilber"],
- "epoch_date_downloaded": 1660089600,
- "epoch_date_modified": 1660521600,
- "epoch_date_submitted": 1660089600,
- "flag": null,
- "report_number": 1904,
- "source_domain": "nypost.com",
- "submitters": ["Sonali Pednekar (CSET)"],
- "title": "Apple’s self-driving cars ‘smacked into curbs, veered out of lanes’",
- "url": "https://nypost.com/2022/07/11/apples-self-driving-cars-smacked-into-curbs-veered-out-of-lanes-report/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "cruise",
- "name": "Cruise"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "cruise",
- "name": "Cruise"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "toyota-prius-passengers",
- "name": "Toyota Prius passengers"
- },
- {
- "__typename": "Entity",
- "entity_id": "cruise-passengers",
- "name": "Cruise passengers"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [2016, 1997, 1996, 1910, 1909, 1908, 1907],
- "vector": [
- -0.08742792904376984, 0.08036041259765625, 0.006522650830447674, -0.04695064574480057,
- 0.07058815658092499, -0.026206176728010178, -0.01144373882561922, 0.03629067540168762,
- 0.05947774648666382, -0.1445436179637909, -0.0277604628354311, 0.07083743810653687,
- 0.03282303363084793, -0.05933570861816406, 0.045082513242959976, -0.11163463443517685,
- -0.09951166063547134, -0.0411226823925972, 0.007320183329284191, -0.10217694938182831,
- -0.09003984928131104, -0.016991831362247467, 0.048912566155195236, 0.09337983280420303,
- -0.018952829763293266, 0.031672537326812744, 0.05805245041847229, 0.13078182935714722,
- -0.06628061085939407, 0.06971458345651627, -0.005194011610001326, -0.051106370985507965,
- 0.1262505203485489, 0.006176547612994909, 0.0013563779648393393, 0.09947742521762848,
- 0.02649093233048916, -0.03574245795607567, -0.037390705198049545,
- -0.0017772905994206667, 0.03351704403758049, 0.2269439399242401, -0.007620065938681364,
- -0.028125127777457237, 0.04204287752509117, -0.03760185092687607, 0.024035707116127014,
- 0.020960096269845963, 0.007255333010107279, 0.03157896548509598, -0.008700092323124409,
- 0.06280912458896637, -0.02250167354941368, 0.032242413610219955, -0.1118258684873581,
- 0.07262809574604034, 0.04044381529092789, -0.028490642085671425, 0.045696500688791275,
- -0.07356248795986176, -0.04498791694641113, -0.23628480732440948, -0.05744193121790886,
- -0.08759225904941559, 0.09035994857549667, -0.0982276126742363, -0.020430078729987144,
- 0.02401832677423954, 0.03767095133662224, 0.07495281845331192, 0.05617061257362366,
- -0.0294648464769125, -0.01918943040072918, 0.017117800191044807, -0.003361728275194764,
- -0.012532874941825867, 0.008844937197864056, 0.16413579881191254, -0.12658476829528809,
- 0.0051447502337396145, 0.09067658334970474, -0.10017384588718414, 0.42744097113609314,
- 0.04475067928433418, -0.04551512002944946, -0.022247593849897385, 0.09428839385509491,
- 0.023543959483504295, 0.039864253252744675, 0.02771960385143757, -0.032287146896123886,
- 0.02278943546116352, -0.02815760113298893, 0.0351562537252903, 0.09069719165563583,
- 0.04942862316966057, -0.01633612997829914, 0.02550501935184002, -0.022983582690358162,
- -0.05015839263796806, 0.0540044829249382, -0.04806181788444519, 0.10871974378824234,
- 0.001020503812469542, -0.01899493671953678, 0.028266027569770813, 0.09254177659749985,
- -0.016902798786759377, 0.04350384324789047, -0.057533882558345795, 0.006619268096983433,
- 0.045865725725889206, 0.0661320835351944, 0.011616893112659454, 0.05743509531021118,
- -0.0850299596786499, 0.006978396791964769, 0.031012019142508507, 0.0847850888967514,
- -0.007057967595756054, -0.02765541896224022, 0.06039395183324814, 0.10021037608385086,
- -0.07239632308483124, 0.00010496627510292456, -0.04991878941655159,
- -0.037622686475515366, -0.04467525705695152, -0.021051635965704918, 0.02051306702196598,
- -0.05486264079809189, -0.22804507613182068, 0.0062592220492661, 0.09581197053194046,
- 0.018658678978681564, -0.022575968876481056, -0.01255046296864748, -0.09864050894975662,
- 0.04303417727351189, 0.0119241988286376, 0.015516670420765877, 0.060407400131225586,
- 0.005349119659513235, 0.031926367431879044, 0.09737750142812729, 0.04668376222252846,
- -0.03391755372285843, -0.06798436492681503, 0.010375701822340488, -0.004098899662494659,
- 0.07648539543151855, -0.10470609366893768, -0.06216774135828018, 0.020088115707039833,
- 0.0072668143548071384, 0.6963250041007996, 0.11190154403448105, 0.12546339631080627,
- -0.017101194709539413, -0.06613080203533173, 0.17882803082466125, 0.01837758533656597,
- 0.039817340672016144, -0.07063355296850204, -0.06264350563287735,
- -0.0012682591332122684, -0.062591053545475, -0.03697811812162399, 0.03252138942480087,
- 0.039231929928064346, 0.13107392191886902, 0.0660305991768837, 0.11248023808002472,
- 0.004735411144793034, -0.08234767615795135, -0.014688542112708092, 0.0734168142080307,
- 0.021855104714632034, -0.08647404611110687, -0.03414766862988472, 0.03089761734008789,
- 0.0777299776673317, -0.06371753662824631, 0.0012172535061836243, -0.04747152328491211,
- 0.0417223758995533, -0.04013896360993385, 0.025325123220682144, -0.04277736321091652,
- 0.009226204827427864, 0.046807434409856796, 0.07492314279079437, -0.019081607460975647,
- -0.12375479191541672, -0.046094655990600586, 0.10632677376270294, 0.017556950449943542,
- -0.022360792383551598, 0.0563771091401577, -0.09087818115949631, 0.06243477389216423,
- 0.01067662425339222, 0.14273573458194733, -0.10340801626443863, 0.031076250597834587,
- 0.005984179209917784, 0.02113047055900097, 0.0439365915954113, -0.0028700020629912615,
- -0.06667373329401016, -0.0691782608628273, 0.06319297850131989, 0.053010012954473495,
- 0.1047738566994667, 0.08712757378816605, -0.03765079006552696, 0.026572346687316895,
- 0.015654081478714943, -0.026461200788617134, -0.06128865107893944, 0.06518258154392242,
- 0.08672194927930832, -0.003254074603319168, -0.005582474637776613, 0.03681601211428642,
- -0.0061855739913880825, 0.03404423967003822, 0.007447343785315752, 0.045742545276880264,
- 0.003023616736754775, -0.024592095986008644, 0.027097759768366814, 0.020676596090197563,
- 0.038746561855077744, 0.11556226015090942, -0.07173561304807663, -0.06124884635210037,
- -0.020140385255217552, -0.04959065839648247, -0.006704260129481554,
- -0.031084733083844185, 0.0831988975405693, 0.055335383862257004, 0.08994893729686737,
- 0.027280764654278755, 0.06853871792554855, 0.07167664915323257, 0.04868747666478157,
- 0.0371301993727684, 0.036112941801548004, -0.04853558540344238, -0.09029100835323334,
- -0.018083905801177025, 0.004091946873813868, 0.07341224700212479, 0.038166094571352005,
- -0.05511724203824997, -0.03722533583641052, -0.051487941294908524, -0.04131963104009628,
- -0.07939567416906357, -0.03478118032217026, -0.01452567894011736, 0.06588178128004074,
- -0.06676673889160156, -0.0515972264111042, -0.09149041026830673, 0.02884707786142826,
- 0.051031772047281265, -0.001714688609354198, -0.02006903477013111, -0.10111969709396362,
- -0.0292219165712595, -0.034096937626600266, 0.019828202202916145, 0.008680623956024647,
- -0.012748995795845985, -0.016500482335686684, -0.08051419258117676,
- -0.004841845016926527, -0.008320129476487637, -0.04753781110048294,
- -0.06904769688844681, -0.08448391407728195, -0.03130028024315834, 0.013801932334899902,
- 0.01978611946105957, -0.00980132631957531, 0.038619864732027054, 0.04068432003259659,
- 0.050508324056863785, -0.007894993759691715, -0.011255205608904362,
- 0.061556048691272736, -0.029329227283596992, -0.00663872342556715, 0.07801375538110733,
- -0.014475553296506405, 0.04033481329679489, 0.00990618858486414, -0.07532604783773422,
- -0.047156769782304764, -0.00360058038495481, -0.06988666951656342, 0.04891199991106987,
- -0.03403014689683914, -0.007698799949139357, -0.03763958066701889, 0.025944296270608902,
- 0.059053752571344376, -0.07116200029850006, -0.08340040594339371, -0.091548852622509,
- 0.09653111547231674, -0.010239903815090656, -0.000977995921857655, 0.04122260585427284,
- -0.047965098172426224, 0.05998227372765541, 0.016241829842329025,
- -0.0006635106401517987, 0.05215262621641159, 0.0525936521589756, -0.03671414032578468,
- 0.02581983432173729, 0.04839683324098587, -0.03501257300376892, 0.008601476438343525,
- 0.0698578953742981, 0.39166054129600525, -0.07291173934936523, 0.07873738557100296,
- 0.08019255846738815, 0.008725113235414028, 0.060535699129104614, -0.047761864960193634,
- 0.06445158272981644, 0.06537413597106934, 0.1087413877248764, 0.1181216761469841,
- -0.016027504578232765, 0.003231779206544161, -0.050488073378801346, 0.09340088814496994,
- 0.0034771489445120096, -0.012174798175692558, 0.003767432877793908,
- -0.06844387203454971, 0.009458647109568119, 0.048843689262866974, -0.04724368080496788,
- -0.0029473542235791683, -0.017034143209457397, -0.09678641706705093,
- 0.026095345616340637, 0.01534249633550644, 0.01118891779333353, -0.017035076394677162,
- 0.020384030416607857, -0.05824723094701767, 0.02965776063501835, 0.007478608749806881,
- 0.05591664835810661, -0.07376229017972946, 0.05508358031511307, -0.12633629143238068,
- -0.07684744894504547, 0.08071546256542206, -0.028370659798383713, 0.03563673049211502,
- 0.06622340530157089, -0.04236595705151558, 0.03895863890647888, -0.01783069409430027,
- -0.06139161065220833, 0.010324387811124325, 0.046880535781383514, 0.02196997031569481,
- 0.09031180292367935, 0.15722490847110748, -0.023870239034295082, -0.04465607553720474,
- -0.08206205815076828, 0.07545207440853119, 0.05208948999643326, -0.03464780002832413,
- 0.040635980665683746, -0.02128690853714943, 0.016442617401480675, 0.019483912736177444,
- -0.027314195409417152, -0.08574795722961426, 0.012583726085722446, -0.05180365592241287,
- 0.03284959867596626, 0.005242243409156799, -0.0487712137401104, -0.18666987121105194,
- -0.01798166334629059, -0.022313715890049934, 0.033620867878198624, 0.1298637092113495,
- -0.05258537456393242, 0.003641451010480523, 0.06234569475054741, -0.01180943287909031,
- 0.003982974216341972, -0.09224211424589157, 0.01703440397977829, -0.057246364653110504,
- 0.03184962272644043, 0.05200875177979469, 0.06414282321929932, -0.0765601247549057,
- 0.08207140862941742, -0.11206977069377899, 0.05189567431807518, 0.0250416100025177,
- 0.016225673258304596, 0.03215945139527321, -0.047431521117687225, 0.03187418356537819,
- 0.026138391345739365, -0.04347018525004387, -0.004290079232305288,
- -0.059797536581754684, -0.03859895095229149, -0.10051510483026505, -0.07298611104488373,
- -0.020364906638860703, -0.07081567496061325, 0.08821389824151993, -0.10090906918048859,
- -0.0338338203728199, -0.03281356021761894, -0.006038309074938297, 0.036661989986896515,
- 0.05076101794838905, 0.022760124877095222, -0.13531716167926788,
- -0.00001831725239753723, -0.011133700609207153, 0.07825399935245514,
- -0.03915596008300781, -0.04512316733598709, 0.001027392572723329, 0.125007763504982,
- 0.0370183065533638, -0.004619287792593241, 0.006666176021099091, -0.04965178295969963,
- 0.01799112930893898, -0.11284313350915909, -0.3879491984844208, 0.018925193697214127,
- 0.01999427191913128, 0.05816986784338951, 0.005038467701524496, -0.057229042053222656,
- 0.032423052936792374, 0.003022110089659691, -0.026847749948501587, 0.0887547954916954,
- -0.06357931345701218, 0.01181221753358841, 0.003771689487621188, -0.0708615779876709,
- -0.02961590699851513, -0.061565764248371124, -0.044068071991205215, 0.05119873955845833,
- -0.03441523388028145, -0.0648232251405716, -0.08816085010766983, 0.014937912113964558,
- -0.02631118707358837, 0.01416642963886261, -0.013748826459050179, 0.0286122914403677,
- -0.08484084159135818, -0.03874799981713295, 0.004081858322024345, 0.04251444712281227,
- 0.023192670196294785, -0.0715479776263237, -0.01198628731071949, 0.03399285301566124,
- -0.04605672135949135, 0.15161873400211334, 0.027339229360222816, 0.036498088389635086,
- -0.08996511250734329, 0.07114527374505997, 0.06056342273950577, 0.18571056425571442,
- -0.015535010024905205, 0.03001783788204193, 0.03278672322630882, 0.14095966517925262,
- 0.030405815690755844, 0.05042777210474014, -0.027460338547825813, 0.008411035872995853,
- 0.026441257447004318, -0.023630399256944656, 0.058507006615400314, -0.06708492338657379,
- -0.019679656252264977, -0.019969632849097252, 0.0016173168551176786,
- -0.038995593786239624, 0.02447090484201908, 0.18334364891052246, 0.025799870491027832,
- 0.038513753563165665, 0.01797364465892315, -0.051524776965379715, -0.033902280032634735,
- -0.053868263959884644, -0.06404238939285278, -0.05840161815285683,
- -0.010716467164456844, 0.017193717882037163, -0.04168545454740524, -0.12094472348690033,
- 0.006516039837151766, -0.05370796099305153, -0.004374536219984293, 0.11623166501522064,
- -0.029550883919000626, 0.02957806922495365, -0.021930700168013573, 0.126548171043396,
- 0.03877430781722069, 0.033253300935029984, 0.04253014922142029, 0.10334586352109909,
- 0.008910488337278366, -0.0027409859467297792, -0.03470560535788536,
- -0.08459409326314926, 0.018937816843390465, 0.11676348745822906, -0.06556941568851471,
- 0.08554692566394806, 0.026723328977823257, -0.01788364350795746, -0.05529118329286575,
- 0.04548118636012077, -0.008527890779078007, 0.024454673752188683, -0.4324464499950409,
- -0.007477402221411467, 0.11830727010965347, 0.003996754065155983, 0.03612062707543373,
- 0.0935709998011589, 0.06400910019874573, -0.030708948150277138, -0.02638990804553032,
- -0.04416663199663162, 0.11939861625432968, 0.0009048969368450344, 0.05631070211529732,
- -0.1035410538315773, 0.022217046469449997, 0.07967396825551987, -0.005030112806707621,
- -0.04343828186392784, 0.0510554201900959, -0.21979093551635742, 0.008393567986786366,
- -0.05975472182035446, 0.13731135427951813, 0.054790329188108444, 0.026347359642386436,
- 0.06295637786388397, -0.060113243758678436, 0.046081993728876114, 0.036015965044498444,
- 0.0008283565985038877, 0.07411728799343109, 0.011208275333046913, -0.039132166653871536,
- 0.1247309222817421, 0.051446814090013504, 0.08866655826568604, -0.006023904774338007,
- 12.002820014953613, 0.07027899473905563, 0.0515362024307251, -0.08081721514463425,
- 0.03223242983222008, -0.0534423403441906, 0.03154648467898369, -0.07422890514135361,
- 0.053379930555820465, 0.10476982593536377, -0.026088828220963478, -0.029737677425146103,
- -0.05139274150133133, -0.10690665990114212, 0.002585513051599264, -0.06492014974355698,
- -0.05208776518702507, -0.03497406095266342, 0.012374691665172577, -0.046738218516111374,
- 0.011187692172825336, -0.013831539079546928, 0.07561534643173218, 0.023677809163928032,
- -0.10506852716207504, 0.057615943253040314, 0.03680900111794472, -0.002027470152825117,
- -0.024944106116890907, 0.018361805006861687, -0.028190167620778084,
- 0.021753979846835136, 0.06530965864658356, 0.013155774213373661, -0.01598016917705536,
- 0.05381406098604202, 0.04462109133601189, 0.05041306093335152, 0.026868565008044243,
- 0.05132706090807915, 0.00746542913839221, 0.05584876984357834, 0.012060367502272129,
- 0.054424066096544266, 0.02385903336107731, 0.022162778303027153, 0.08046330511569977,
- 0.1268240511417389, 0.009579288773238659, 0.06081341952085495, 0.09020870178937912,
- -0.02991728112101555, 0.12728270888328552, 0.03762851282954216, -0.010697247460484505,
- 0.012703890912234783, -0.0019806143827736378, -0.05515953525900841, 0.05448383465409279,
- 0.09650976955890656, -0.051908936351537704, 0.10416340082883835, 0.013213617727160454,
- 0.1122414842247963, -0.015613114461302757, 0.0401032529771328, 0.08392667025327682,
- 0.02698102407157421, -0.16662491858005524, -0.05873566493391991, 0.04001587629318237,
- -0.1250298023223877, -0.06541472673416138, 0.055875327438116074, 0.08771592378616333,
- -0.035822123289108276, 0.06907323747873306, -0.039234913885593414, 0.03818168491125107,
- -0.026236535981297493, 0.003910541534423828, 0.037567537277936935,
- -0.020590750500559807, 0.015374081209301949, 0.0348849855363369, 0.00979502685368061,
- 0.09566821157932281, 0.09400053322315216, -0.04949726536870003, -0.08449356257915497,
- -0.06791073828935623, 0.0867251381278038, -0.01414026040583849, -0.053320761770009995,
- 0.017512092366814613, -0.027417166158556938, 0.023640666157007217, -0.15673498809337616,
- 0.08018364757299423, 0.09947459399700165, -0.07414814084768295, -0.0026787102688103914,
- -0.03279370442032814, 0.06528034806251526, -0.0021192252170294523, 0.026015540584921837,
- -0.04618425294756889, 0.029706377536058426, 0.026803847402334213, 0.03961183503270149,
- -0.04635284096002579, 0.07384569942951202, 0.0582597590982914, -0.0751459077000618,
- 0.0619516558945179, 0.06393332034349442, -0.02330956980586052, -0.05745051056146622,
- 0.05701739713549614, 0.03335030749440193, -0.08900419622659683, -0.05688069388270378,
- -0.0610383041203022, -0.03632628917694092, -0.03194578364491463, -0.021585123613476753,
- 0.004292747471481562, 0.030435806140303612, -0.06524109095335007, -0.02140958048403263,
- -0.004412155132740736, 0.021991075947880745, 0.1061822772026062, 0.01682949997484684,
- 0.06675618141889572, -0.06170736625790596, -0.032241012901067734, 0.06106613948941231,
- 0.035860054194927216, 0.07420645654201508, 0.012239858508110046, 0.028186345472931862,
- -0.05365338549017906, -0.10071457177400589, 0.006395883858203888, 0.10461126267910004,
- 0.08272448927164078, 0.035135991871356964, 0.03162306547164917, -0.07682080566883087,
- -0.056540071964263916, 0.1102413535118103, 0.03704243525862694, 0.004688248038291931,
- 0.021272027865052223, -0.08328503370285034, -0.013803892768919468, 0.14672745764255524,
- -0.06100446730852127, 0.01066872663795948, 0.05024547502398491, -0.05550971254706383,
- 0.05938661843538284, 0.07505148649215698, 0.07043435424566269, 0.052822262048721313,
- 0.04094386473298073, -0.012994206510484219, -0.004467401187866926, -0.03768552094697952,
- 0.01839672587811947, -0.020762426778674126, -0.1323554515838623, -0.07882195711135864,
- 0.04145880788564682, 0.09391741454601288, 0.013430403545498848, -0.12117383629083633,
- -0.019082795828580856, -0.05261245369911194
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 293,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 20,
- "similarity": 0.9990974068641663
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 151,
- "similarity": 0.9990354180335999
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 71,
- "similarity": 0.9990329742431641
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Aarian Marshall"],
- "epoch_date_downloaded": 1662508800,
- "epoch_date_modified": 1662508800,
- "epoch_date_submitted": 1662508800,
- "flag": null,
- "report_number": 2016,
- "source_domain": "wired.com",
- "submitters": ["Kate Perkins"],
- "title": "GM's Cruise Recalls Self-Driving Software Involved in June Crash",
- "url": "https://www.wired.com/story/gms-cruise-recalls-self-driving-software-involved-in-june-crash/"
- },
- {
- "__typename": "Report",
- "authors": ["National Highway Traffic Safety Administration"],
- "epoch_date_downloaded": 1662076800,
- "epoch_date_modified": 1662422400,
- "epoch_date_submitted": 1662076800,
- "flag": null,
- "report_number": 1997,
- "source_domain": "static.nhtsa.gov",
- "submitters": ["Khoa Lam"],
- "title": "Part 573 Safety Recall Report",
- "url": "https://static.nhtsa.gov/odi/rcl/2022/RCLRPT-22E072-8020.PDF"
- },
- {
- "__typename": "Report",
- "authors": ["Matt McFarland", "CNN Business"],
- "epoch_date_downloaded": 1662422400,
- "epoch_date_modified": 1662422400,
- "epoch_date_submitted": 1662076800,
- "flag": null,
- "report_number": 1996,
- "source_domain": "cnn.com",
- "submitters": ["Daniel Atherton (BNH.ai)"],
- "title": "Cruise recalls its robotaxis after passenger injured in crash",
- "url": "https://www.cnn.com/2022/09/01/business/cruise-robotaxi-recall/index.html"
- },
- {
- "__typename": "Report",
- "authors": ["David Shepardson"],
- "epoch_date_downloaded": 1660089600,
- "epoch_date_modified": 1660521600,
- "epoch_date_submitted": 1660089600,
- "flag": null,
- "report_number": 1910,
- "source_domain": "reuters.com",
- "submitters": ["Sonali Pednekar (CSET)"],
- "title": "U.S. agency probing self-driving Cruise car crash in California",
- "url": "https://www.reuters.com/business/autos-transportation/us-agency-probing-cruise-crash-california-2022-07-07/"
- },
- {
- "__typename": "Report",
- "authors": ["Department of Motor Vehicles"],
- "epoch_date_downloaded": 1660521600,
- "epoch_date_modified": 1660521600,
- "epoch_date_submitted": 1660521600,
- "flag": null,
- "report_number": 1909,
- "source_domain": "dmv.ca.gov",
- "submitters": ["Khoa Lam"],
- "title": "Report of a Traffic Collision Involving an Autonomous Vehicle",
- "url": "https://www.dmv.ca.gov/portal/file/cruise_060322-pdf/"
- },
- {
- "__typename": "Report",
- "authors": ["Pete Bigelow"],
- "epoch_date_downloaded": 1660521600,
- "epoch_date_modified": 1660521600,
- "epoch_date_submitted": 1660521600,
- "flag": null,
- "report_number": 1908,
- "source_domain": "autonews.com",
- "submitters": ["Khoa Lam"],
- "title": "Cruise self-driving crash in San Francisco resulted in injuries; NHTSA investigating",
- "url": "https://www.autonews.com/mobility-report/cruise-self-driving-crash-san-francisco-resulted-injuries-nhtsa-investigating"
- },
- {
- "__typename": "Report",
- "authors": ["Steven Loveday"],
- "epoch_date_downloaded": 1660521600,
- "epoch_date_modified": 1660521600,
- "epoch_date_submitted": 1660521600,
- "flag": null,
- "report_number": 1907,
- "source_domain": "insideevs.com",
- "submitters": ["Khoa Lam"],
- "title": "GM's Cruise Self-Driving Car Crash Injured Multiple People",
- "url": "https://insideevs.com/news/596827/gm-cruise-self-driving-crash-injuries/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "tesla",
- "name": "Tesla"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "tesla",
- "name": "Tesla"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "you-you-xue",
- "name": "You You Xue"
- },
- {
- "__typename": "Entity",
- "entity_id": "tesla-drivers",
- "name": "Tesla drivers"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1914, 1913, 1912, 1911],
- "vector": [
- -0.10058574378490448, 0.07264570891857147, -0.011059325188398361, -0.0860484167933464,
- 0.07065732777118683, -0.030108846724033356, -0.01091725379228592, 0.032455965876579285,
- 0.05418476462364197, -0.1501658409833908, -0.015954848378896713, 0.03369307890534401,
- 0.024161068722605705, -0.08599883317947388, 0.048945918679237366, -0.06323226541280746,
- -0.10922827571630478, -0.0253899022936821, -0.017060525715351105, -0.08368870615959167,
- -0.06598076969385147, 0.009825974702835083, 0.06983842700719833, 0.12972493469715118,
- -0.051071032881736755, 0.042870622128248215, 0.08209440112113953, 0.10937509685754776,
- -0.06383021175861359, 0.021602947264909744, -0.016749797388911247, -0.03265148401260376,
- 0.1129312738776207, 0.008859636262059212, 0.006146489176899195, 0.08426064252853394,
- 0.036238718777894974, -0.00729584414511919, -0.11190176010131836, 0.015395989641547203,
- 0.06039530038833618, 0.17281603813171387, -0.01106488797813654, -0.022495519369840622,
- 0.054504185914993286, -0.03873009979724884, 0.05083722993731499, 0.03179258480668068,
- 0.008329625241458416, 0.0016862067859619856, -0.006885626818984747, 0.03163385018706322,
- -0.03517477586865425, 0.0033724044915288687, -0.0989120602607727, 0.07700683176517487,
- 0.03269517421722412, 0.004190824925899506, 0.06898128241300583, -0.06441740691661835,
- -0.04333314299583435, -0.18349379301071167, -0.1125296875834465, -0.005026118829846382,
- 0.07067933678627014, -0.07523566484451294, -0.023080524057149887, -0.002179487142711878,
- 0.043239228427410126, 0.06606920808553696, 0.047366492450237274, -0.0500594861805439,
- -0.01822785474359989, -0.02286824770271778, 0.01103263534605503, 0.008136809803545475,
- -0.010335927829146385, 0.23770539462566376, -0.09953467547893524, 0.0014886211138218641,
- 0.09681329131126404, -0.10439785569906235, 0.37935173511505127, 0.012165840715169907,
- -0.021638043224811554, 0.0010056884493678808, 0.10635317862033844, 0.03730567544698715,
- 0.035700928419828415, 0.05338498577475548, 0.009996144101023674, 0.0248841755092144,
- -0.05698898434638977, 0.01759159006178379, 0.0412285216152668, 0.03809298574924469,
- 0.017565764486789703, 0.04395603388547897, -0.017728857696056366, -0.07480289787054062,
- 0.030811026692390442, -0.06730843335390091, 0.10820198059082031, 0.054421160370111465,
- -0.008830083534121513, 0.010298957116901875, 0.07636584341526031, -0.03705871105194092,
- 0.06264526396989822, -0.06730352342128754, 0.03028327226638794, 0.025989118963479996,
- 0.05754942074418068, 0.003662988543510437, 0.03870996832847595, -0.0512315034866333,
- 0.014925128780305386, 0.03777540475130081, 0.07565891742706299, 0.031805820763111115,
- -0.015155090019106865, 0.07670426368713379, 0.10561888664960861, -0.0782071128487587,
- -0.009701511822640896, -0.0017050494207069278, -0.06982231885194778,
- 0.008556203916668892, -0.02698206715285778, 0.03308463469147682, -0.05119190365076065,
- -0.19250217080116272, 0.028544804081320763, 0.06797616928815842, 0.014852091670036316,
- -0.02536921575665474, 0.012116128578782082, -0.0947275310754776, 0.06921280920505524,
- -0.043273963034152985, -0.0318048894405365, 0.048675745725631714, 0.03277039900422096,
- 0.026931116357445717, 0.07937498390674591, 0.06335562467575073, -0.02881997637450695,
- -0.06654353439807892, 0.008417949080467224, -0.03910128027200699, 0.0628691241145134,
- -0.1159319281578064, -0.05482536926865578, 0.01647607423365116, -0.00888708047568798,
- 0.6027611494064331, 0.12110672146081924, 0.12984658777713776, -0.013196977786719799,
- -0.027384499087929726, 0.16055811941623688, -0.009153870865702629, 0.033073991537094116,
- -0.044060830026865005, -0.07450439780950546, 0.03721323981881142, -0.06412485241889954,
- -0.02202606201171875, 0.01813468523323536, 0.02221030741930008, 0.09680258482694626,
- 0.04665622115135193, 0.11326948553323746, -0.03419845923781395, -0.1000477746129036,
- -0.022387245669960976, 0.035451389849185944, 0.02375669777393341, -0.07743704319000244,
- -0.03445083647966385, 0.038831163197755814, 0.09771594405174255, -0.028957165777683258,
- 0.025965774431824684, -0.03372856229543686, 0.025338565930724144, -0.01825656369328499,
- 0.024145297706127167, -0.017840493470430374, 0.0011338371550664306,
- 0.030506949871778488, 0.07081444561481476, -0.025715332478284836, -0.06240275502204895,
- -0.02810830995440483, 0.1215100884437561, -0.009394403547048569, -0.043739840388298035,
- 0.04486412927508354, -0.09095646440982819, 0.05689096450805664, 0.02517753653228283,
- 0.13717347383499146, -0.11208169162273407, 0.03296101838350296, 0.01015416532754898,
- -0.007323715835809708, 0.07663072645664215, -0.022675540298223495, -0.0674596056342125,
- -0.07329218834638596, 0.07253817468881607, 0.060199953615665436, 0.06456311792135239,
- 0.04718393087387085, -0.03235890343785286, 0.042572956532239914, 0.04739350080490112,
- 0.01841859333217144, -0.034397192299366, 0.05567522719502449, 0.06436185538768768,
- -0.0045514944940805435, 0.00028798007406294346, 0.019703907892107964,
- 0.026910744607448578, 0.05307063087821007, 0.011935791000723839, 0.06545015424489975,
- 0.02114260010421276, -0.030379047617316246, 0.030860111117362976, 0.0009771615732461214,
- 0.005125178024172783, 0.1099761500954628, -0.09024196863174438, -0.023349186405539513,
- -0.03278394415974617, -0.006566178984940052, -0.03749508410692215, -0.03584537282586098,
- 0.07616544514894485, 0.0580906942486763, 0.07411238551139832, 0.03131747618317604,
- 0.04308483749628067, 0.05043308436870575, 0.06325408071279526, 0.03294306620955467,
- 0.075942762196064, -0.011523769237101078, -0.05534747987985611, -0.03293350338935852,
- -0.034229908138513565, 0.06243864446878433, 0.026058703660964966, -0.07740781456232071,
- -0.03280183672904968, -0.023769576102495193, -0.005735968239605427,
- -0.08038734644651413, 0.00018160458421334624, 0.01754710078239441, 0.04964824765920639,
- -0.05867358297109604, -0.03488287702202797, -0.08663535118103027, 0.030080053955316544,
- 0.05536247789859772, -0.013969259336590767, -0.0071980999782681465,
- -0.08522607386112213, -0.0157295111566782, -0.053140152245759964, 0.03514721244573593,
- -0.011227949522435665, -0.01855969987809658, -0.020042989403009415,
- -0.05136891454458237, -0.016745643690228462, -0.012917330488562584,
- -0.004340439569205046, -0.03052666038274765, -0.051108360290527344,
- -0.016372105106711388, 0.0009638990159146488, -0.006426607258617878,
- 0.01635708473622799, 0.03487248718738556, 0.03410647064447403, 0.031334951519966125,
- -0.001676410436630249, -0.0002954156370833516, 0.0646383985877037, -0.03992776945233345,
- 0.00397221464663744, 0.0718376487493515, -0.0019273969810456038, 0.02369699627161026,
- -0.013011946342885494, -0.08326078951358795, -0.06261497735977173, -0.01961473561823368,
- -0.07122780382633209, 0.03677983209490776, -0.037479981780052185, -0.01129978895187378,
- -0.032734647393226624, 0.012791619636118412, 0.06379702687263489, -0.07233847677707672,
- -0.033398762345314026, -0.1071789488196373, 0.12827642261981964,
- -0.00045317388139665127, -0.0032676802948117256, 0.028525060042738914,
- -0.05958439037203789, 0.05633285269141197, -0.013604063540697098, 0.016120359301567078,
- 0.03298472613096237, 0.06170060485601425, -0.0290241502225399, 0.01714617758989334,
- 0.04922184720635414, -0.009528099559247494, -0.014743069186806679, 0.07345886528491974,
- 0.40550506114959717, -0.20134279131889343, 0.05529702454805374, 0.08332986384630203,
- 0.019674502313137054, 0.07338219881057739, -0.044383153319358826, 0.07170473039150238,
- 0.05128879472613335, 0.07636932283639908, 0.12907755374908447, -0.05007513239979744,
- 0.0009999554604291916, -0.02952936477959156, 0.08080043643712997, 0.010338185355067253,
- 0.016370678320527077, -0.030107086524367332, -0.052024900913238525,
- -0.01345069706439972, 0.058624766767024994, -0.04303111508488655, -0.007957619614899158,
- 0.0018766027642413974, -0.09025698155164719, -0.004956305027008057, 0.05588008463382721,
- 0.0258970707654953, -0.017896665260195732, -0.0023733724374324083, -0.05704846233129501,
- 0.036666907370090485, -0.004477912560105324, 0.04666462168097496, -0.07954927533864975,
- 0.04626500606536865, -0.10960021615028381, -0.05434909835457802, 0.08827291429042816,
- 0.01219572126865387, 0.042500101029872894, 0.06855368614196777, -0.023304594680666924,
- 0.009852200746536255, -0.042155805975198746, -0.042643483728170395, 0.01202593557536602,
- 0.03894837573170662, 0.021074019372463226, 0.05816546455025673, 0.13045859336853027,
- -0.013705856166779995, -0.026652809232473373, -0.04638461768627167, 0.05485913157463074,
- 0.09434182196855545, -0.028334004804491997, 0.02242721989750862, -0.04864196479320526,
- 0.0445740707218647, 0.006802637130022049, -0.062137700617313385, -0.0631600096821785,
- 0.0056653511710464954, -0.05553356185555458, 0.054689813405275345, 0.003367859637364745,
- -0.05026320368051529, -0.1850084811449051, -0.0342840850353241, -0.04352948069572449,
- -0.0029007496777921915, 0.11685790866613388, -0.07107479870319366,
- -0.011087294667959213, 0.02499435469508171, -0.008344472385942936,
- -0.027826514095067978, -0.09900302439928055, -0.01113157719373703, -0.06003043055534363,
- 0.0386560894548893, 0.053069278597831726, 0.0558074414730072, -0.06369967758655548,
- 0.037348538637161255, -0.09067121148109436, 0.04147293418645859, 0.029693709686398506,
- 0.0044767591170966625, 0.024349672719836235, -0.02408573031425476, 0.053017184138298035,
- 0.04500921070575714, -0.04372284933924675, 0.023069608956575394, -0.046384356915950775,
- 0.0053826384246349335, -0.10374326258897781, -0.08483093976974487, -0.0337088368833065,
- -0.0869559794664383, 0.07206794619560242, -0.06799644976854324, -0.033145029097795486,
- -0.03306597098708153, 0.0017988539766520262, 0.03802702575922012, 0.07400533556938171,
- 0.03486396372318268, -0.10610665380954742, -0.00046133704017847776,
- -0.025427918881177902, 0.05323297157883644, -0.012073462828993797,
- -0.042434751987457275, -0.01796065643429756, 0.09973044693470001, 0.04837934672832489,
- -0.012301001697778702, 0.009149960242211819, -0.037810128182172775,
- 0.023929331451654434, -0.047465693205595016, -0.5432830452919006, 0.06411367654800415,
- 0.0486006885766983, 0.03180580958724022, -0.001658454304561019, -0.045406829565763474,
- 0.03293333202600479, -0.0018263199599459767, -0.029169337823987007, 0.08027873933315277,
- -0.05879524350166321, 0.00920020416378975, -0.012034417130053043, -0.0383598655462265,
- -0.03862074390053749, -0.022599272429943085, -0.04538195580244064, 0.07442868500947952,
- 0.0017720256000757217, -0.06713525205850601, -0.06689046323299408, 0.03234495222568512,
- -0.009881502017378807, -0.008759601041674614, -0.024168498814105988,
- 0.0052627092227339745, -0.0896504670381546, -0.06794669479131699, 0.0215656366199255,
- 0.047521620988845825, 0.03846556693315506, -0.052256956696510315, -0.030066510662436485,
- 0.025780709460377693, -0.046110764145851135, 0.14574816823005676, 0.003079005517065525,
- -0.021934742107987404, -0.08633497357368469, 0.05776263773441315, 0.0392533503472805,
- 0.18699876964092255, -0.027360456064343452, 0.0782926082611084, 0.012688146904110909,
- 0.1147056519985199, 0.023044295608997345, 0.03857819736003876, -0.02324075996875763,
- 0.0175338014960289, -0.0018985510105267167, -0.03384865075349808, 0.04620790481567383,
- -0.07989370822906494, -0.03472547233104706, 0.0015338659286499023,
- -0.007079052738845348, -0.020337119698524475, 0.0027009909972548485,
- 0.15859641134738922, 0.003590908832848072, 0.026962123811244965, -0.026459727436304092,
- -0.02890624664723873, -0.01336661260575056, -0.07439379394054413, -0.04883738234639168,
- -0.044833794236183167, 0.019870640709996223, 0.015066012740135193, -0.06259196996688843,
- -0.10884058475494385, -0.004113758448511362, -0.016188571229577065,
- -0.014648289419710636, 0.09090190380811691, 0.011089500971138477, 0.03947995603084564,
- -0.023363128304481506, 0.10711117833852768, 0.049856193363666534,
- -0.0061181047931313515, 0.05816475301980972, 0.08270750939846039, 0.025913875550031662,
- -0.002248952863737941, -0.0413501150906086, -0.024231821298599243, 0.04091188311576843,
- 0.10937365889549255, -0.051370441913604736, 0.08627653121948242, 0.052848704159259796,
- 0.010683609172701836, -0.0607796236872673, 0.04260599985718727, 0.026672620326280594,
- 0.04289020597934723, -0.5012333393096924, -0.028372978791594505, 0.11411265283823013,
- -0.033122166991233826, 0.0302882082760334, 0.10179302096366882, 0.04436156153678894,
- -0.027579449117183685, -0.04327796399593353, -0.04310208559036255, 0.1073095053434372,
- -0.021472597494721413, 0.04343565180897713, -0.12303456664085388, 0.041047364473342896,
- 0.08270801603794098, -0.029048729687929153, -0.046684958040714264, 0.044738542288541794,
- -0.21991395950317383, -0.010531699284911156, -0.06819669902324677, 0.18562519550323486,
- 0.07364494353532791, 0.023555848747491837, 0.09815710783004761, -0.04590604454278946,
- 0.029636599123477936, 0.04691540449857712, 0.005570848006755114, 0.07132783532142639,
- 0.007158772554248571, -0.028001543134450912, 0.11093609035015106, 0.06528335064649582,
- 0.0883314460515976, -0.013717244379222393, 11.943531036376953, 0.07890921831130981,
- 0.05486428737640381, -0.05342990159988403, 0.04010569304227829, -0.07791581749916077,
- 0.04214475676417351, -0.09644746780395508, 0.0357503667473793, 0.1073528528213501,
- -0.004120719153434038, -0.008062917739152908, -0.04257333651185036,
- -0.08527059853076935, 0.009811400435864925, -0.06546729058027267, -0.05457120016217232,
- -0.03334197774529457, 0.03489087522029877, -0.059442512691020966,
- -0.0019046100787818432, 0.002871518023312092, 0.0739385187625885, 0.0012275546323508024,
- -0.08846179395914078, 0.10083134472370148, 0.023268302902579308, 0.021668076515197754,
- -0.0002482189447619021, 0.02983865700662136, -0.04273950308561325, 0.024247128516435623,
- 0.030709004029631615, 0.01546933688223362, 0.01131991483271122, 0.09015709906816483,
- 0.03583771362900734, 0.07361758500337601, 0.0010109138675034046, 0.07424372434616089,
- 0.03415477275848389, 0.02149135060608387, 0.036899909377098083, 0.06502596288919449,
- 0.015540217980742455, 0.038184892386198044, 0.07891400158405304, 0.12282634526491165,
- -0.009519883431494236, 0.03787093982100487, 0.08205105364322662, -0.020152736455202103,
- 0.1146998479962349, 0.03385292738676071, -0.012665294110774994, 0.007845999673008919,
- -0.01229124329984188, -0.05580724775791168, 0.06894437968730927, 0.073834128677845,
- -0.040992602705955505, 0.08212099969387054, 0.017299169674515724, 0.11458167433738708,
- -0.018463049083948135, 0.02848522737622261, 0.07518725842237473, 0.07720395922660828,
- -0.08999155461788177, -0.05595981329679489, 0.057051967829465866, -0.1162126362323761,
- -0.06972096860408783, 0.010248759761452675, 0.042889464646577835, -0.03523163124918938,
- 0.07352191209793091, -0.07664336264133453, 0.048235148191452026, -0.016853459179401398,
- -0.0064095305278897285, 0.02618297189474106, -0.014641501009464264, 0.03478547930717468,
- 0.030500240623950958, 0.009906493127346039, 0.09996627271175385, 0.07646792382001877,
- -0.030703317373991013, -0.08318745344877243, -0.10795922577381134, 0.0646744892001152,
- -0.01488555409014225, -0.04588328301906586, 0.023860208690166473, -0.036963485181331635,
- 0.028113750740885735, -0.15788927674293518, 0.07223159074783325, 0.09223856031894684,
- -0.09519906342029572, -0.04265303909778595, 0.007962701842188835, 0.05299251899123192,
- -0.028622344136238098, 0.05866692215204239, -0.047617509961128235, 0.003401647787541151,
- 0.014980989508330822, 0.04698777198791504, -0.04228583723306656, 0.08194619417190552,
- 0.05470505356788635, -0.08129870891571045, 0.0701812282204628, 0.06842012703418732,
- -0.010333186946809292, -0.02682836540043354, 0.027039948850870132, 0.04857930541038513,
- -0.09702305495738983, -0.022243741899728775, -0.04333340376615524, -0.0594823993742466,
- -0.02233131229877472, -0.018181022256612778, -0.019507333636283875,
- 0.029697880148887634, -0.05759579688310623, -0.013322901912033558,
- -0.00029478734359145164, 0.02442820742726326, 0.10048113018274307,
- -0.012453820556402206, 0.038995180279016495, -0.07734525203704834,
- -0.036763161420822144, 0.07274739444255829, 0.04108939319849014, 0.07982741296291351,
- -0.013828504830598831, 0.008836491033434868, -0.02043830044567585, -0.1090487688779831,
- -0.0015996475704014301, 0.08205722272396088, 0.056518860161304474, 0.051755040884017944,
- 0.06674596667289734, -0.06921768188476562, -0.013925660401582718, 0.11341529339551926,
- 0.04116806387901306, 0.028260251507163048, 0.010120244696736336, -0.07112924009561539,
- -0.03380318731069565, 0.12835150957107544, -0.02491031400859356, -0.0061734565533697605,
- 0.031520575284957886, -0.059091780334711075, 0.036483604460954666, 0.05594528838992119,
- 0.060454800724983215, 0.03450256586074829, -0.01805107481777668, 0.009095052257180214,
- 0.012858693487942219, 0.019167009741067886, 0.018536614254117012, 0.026058923453092575,
- -0.13373690843582153, -0.0741625651717186, 0.04491192102432251, 0.08954032510519028,
- 0.03377325460314751, -0.11616171151399612, -0.019771307706832886, -0.01982782781124115
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 294,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 52,
- "similarity": 0.9983726739883423
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 20,
- "similarity": 0.9981885552406311
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 231,
- "similarity": 0.9980636835098267
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Fred Lambert"],
- "epoch_date_downloaded": 1660521600,
- "epoch_date_modified": 1660521600,
- "epoch_date_submitted": 1660521600,
- "flag": null,
- "report_number": 1914,
- "source_domain": "electrek.co",
- "submitters": ["Khoa Lam"],
- "title": "Tesla Model 3 unofficial road trip ends in crash, driver blames Autopilot",
- "url": "https://electrek.co/2018/05/25/tesla-model-3-unofficial-road-trip-crash-driver-blames-autopilot/"
- },
- {
- "__typename": "Report",
- "authors": ["Costas Kantouris"],
- "epoch_date_downloaded": 1660521600,
- "epoch_date_modified": 1660521600,
- "epoch_date_submitted": 1660521600,
- "flag": null,
- "report_number": 1913,
- "source_domain": "apnews.com",
- "submitters": ["Thomas Giallella (CSET)"],
- "title": "Greece: Driver claims autopilot malfunction in Tesla crash",
- "url": "https://apnews.com/article/faebf3c07e0c491c94b00a8965af5a0c"
- },
- {
- "__typename": "Report",
- "authors": ["Tesla Model 3 Road Trip"],
- "epoch_date_downloaded": 1660521600,
- "epoch_date_modified": 1660521600,
- "epoch_date_submitted": 1660521600,
- "flag": null,
- "report_number": 1912,
- "source_domain": "facebook.com",
- "submitters": ["Khoa Lam"],
- "title": "Facebook Post: @tsla3",
- "url": "https://www.facebook.com/tsla3/posts/942133182624818"
- },
- {
- "__typename": "Report",
- "authors": ["Matt Kimberley"],
- "epoch_date_downloaded": 1660521600,
- "epoch_date_modified": 1660521600,
- "epoch_date_submitted": 1660521600,
- "flag": null,
- "report_number": 1911,
- "source_domain": "carthrottle.com",
- "submitters": ["Thomas Giallella (CSET)"],
- "title": "Another Tesla Autopilot Crash Has Wrecked A Model 3 In Greece",
- "url": "https://www.carthrottle.com/post/another-tesla-autopilot-crash-has-wrecked-a-model-3-in-greece/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "new-york-police-department",
- "name": "New York Police Department"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "unknown",
- "name": "Unknown"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "ousmane-bah",
- "name": "Ousmane Bah"
- },
- {
- "__typename": "Entity",
- "entity_id": "nyc-black-young-people",
- "name": "NYC Black young people"
- },
- {
- "__typename": "Entity",
- "entity_id": "nyc-black-people",
- "name": "NYC Black people"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [
- 23, 27, 31, 35, 37, 19, 50, 52, 66, 69, 161, 248, 30, 45, 51
- ],
- "editor_similar_incidents": [48, 74],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [2103, 2102, 1917, 1916, 1915],
- "vector": [
- -0.04627985507249832, 0.08452160656452179, -0.003806991968303919, -0.08832931518554688,
- 0.07117084413766861, -0.015689728781580925, -0.003963592927902937, 0.07037003338336945,
- 0.09566326439380646, -0.15077617764472961, -0.017820095643401146, 0.05634446069598198,
- 0.03487550467252731, -0.03728631138801575, 0.0004016868770122528, -0.09023739397525787,
- -0.07971873879432678, -0.021477751433849335, -0.0468912273645401, -0.09874819219112396,
- -0.0722770169377327, -0.005499661900103092, 0.06699808686971664, 0.13516318798065186,
- -0.05146289989352226, 0.06014610454440117, 0.0919632539153099, 0.11024484783411026,
- -0.039954476058483124, 0.03317650035023689, -0.025537382811307907, -0.05468357354402542,
- 0.10990145057439804, -0.027526628226041794, 0.011668236926198006, 0.1168084591627121,
- 0.048871882259845734, -0.027492070570588112, -0.02276669442653656,
- -0.019354024901986122, -0.0007078222697600722, 0.23329195380210876,
- 0.004888199735432863, -0.036537837237119675, 0.05909191817045212, -0.03830091282725334,
- 0.01124925259500742, 0.09274425357580185, 0.011475839652121067, -0.015013056807219982,
- 0.012268648482859135, 0.04279911518096924, -0.038811057806015015, 0.04220185428857803,
- -0.116226926445961, 0.08065281808376312, 0.020152363926172256, -0.007257544901221991,
- 0.04410864785313606, -0.09366323053836823, -0.04699047654867172, -0.22305378317832947,
- -0.04768795892596245, -0.05985864996910095, 0.09411083906888962, -0.07749678939580917,
- -0.02914593741297722, 0.04384946823120117, 0.03007965162396431, 0.03266313672065735,
- 0.050792764872312546, -0.03926617652177811, -0.008125990629196167, -0.03261937201023102,
- 0.0023950773756951094, -0.017669551074504852, 0.05074887350201607, 0.19478031992912292,
- -0.06817500293254852, 0.022483455017209053, 0.10588761419057846, -0.10146266222000122,
- 0.41117945313453674, 0.03638892620801926, -0.03466855734586716, -0.0427878312766552,
- 0.08884672820568085, 0.03490889072418213, 0.021331530064344406, 0.045795608311891556,
- -0.04549819231033325, 0.013777939602732658, -0.051516782492399216,
- -0.018691346049308777, 0.07989618182182312, 0.06018153578042984, 0.00791215617209673,
- 0.01578642800450325, -0.032964300364255905, -0.06933028995990753, 0.021046748384833336,
- -0.053358279168605804, 0.10940703004598618, 0.09139810502529144, -0.06384296715259552,
- -0.022395532578229904, 0.05482587218284607, -0.05187327787280083, 0.07047368586063385,
- -0.023489151149988174, 0.005817832890897989, 0.037851788103580475, 0.040469665080308914,
- -0.0049415817484259605, 0.04259997233748436, -0.055150747299194336,
- 0.016871381551027298, 0.017750512808561325, 0.08500530570745468, 0.0013276308309286833,
- -0.02935885451734066, 0.05288694426417351, 0.08376876264810562, -0.06892317533493042,
- -0.0038316696882247925, -0.06701864302158356, -0.02499331906437874,
- -0.02782433107495308, 0.009328153915703297, 0.023270251229405403, -0.044134460389614105,
- -0.1861567199230194, 0.038718849420547485, 0.05634135752916336, 0.007251656148582697,
- -0.03587176278233528, 0.026556316763162613, -0.042866628617048264, 0.06692352145910263,
- 0.008809053339064121, -0.05585455894470215, 0.06798914819955826, 0.04968251660466194,
- 0.029079917818307877, 0.1106308102607727, 0.04971744492650032, -0.028907116502523422,
- -0.01728038117289543, 0.0021263035014271736, -0.022950628772377968, 0.0936252623796463,
- -0.15577611327171326, -0.06270216405391693, 0.028711548075079918, -0.022703738883137703,
- 0.673967719078064, 0.09467737376689911, 0.1462191343307495, 0.004164048936218023,
- -0.02084946632385254, 0.1656307727098465, -0.01538725197315216, 0.0710020661354065,
- -0.05594908073544502, -0.05133240297436714, 0.023671437054872513, -0.08186855167150497,
- -0.041931744664907455, 0.02191290631890297, 0.04252859577536583, 0.1395694762468338,
- 0.030176859349012375, 0.11356174945831299, -0.007269836962223053, -0.06448680907487869,
- -0.021174700930714607, 0.013475288636982441, -0.007943515665829182, -0.0990217998623848,
- -0.02386527694761753, 0.04298902675509453, 0.0699576660990715, -0.0740680992603302,
- 0.013700735755264759, -0.039850927889347076, -0.010667456313967705,
- -0.026703661307692528, 0.019233521074056625, -0.042799390852451324, 0.03198135271668434,
- 0.05816901475191116, 0.12194909155368805, 0.005538038909435272, -0.13640645146369934,
- -0.049586959183216095, 0.13279341161251068, -0.030967433005571365, -0.02027576044201851,
- 0.0941201001405716, -0.0753595381975174, 0.03631941229104996, 0.021884912624955177,
- 0.10814323276281357, -0.10517909377813339, 0.016472194343805313, -0.011020067147910595,
- -0.006605185568332672, 0.08680389821529388, 0.023693876340985298, -0.11511611938476562,
- -0.06365660578012466, 0.0461757592856884, 0.05708880349993706, 0.06668615341186523,
- 0.0496913343667984, -0.033855829387903214, 0.02130679413676262, 0.010999863035976887,
- 0.007881262339651585, -0.05210261791944504, 0.07616101205348969, 0.08205394446849823,
- -0.007151062600314617, -0.003484126878902316, 0.0463569201529026, 0.04075448960065842,
- 0.017825309187173843, 0.006252964027225971, 0.046473853290081024, 0.011834467761218548,
- -0.05818720534443855, 0.022046031430363655, 0.027742203325033188, -0.02863326109945774,
- 0.08689243346452713, -0.07263122498989105, -0.014811018481850624, -0.0490388497710228,
- -0.036126408725976944, 0.007953247055411339, -0.01562711037695408, 0.04946044832468033,
- 0.08130840957164764, 0.03404965251684189, 0.049243029206991196, 0.021206948906183243,
- 0.05677264928817749, 0.06807566434144974, 0.032622672617435455, 0.05766930431127548,
- -0.025106187909841537, -0.032981038093566895, -0.02330327033996582,
- -0.00938638485968113, 0.07480353116989136, 0.03134726732969284, -0.06007350608706474,
- -0.02185887098312378, -0.027962803840637207, -0.03236762806773186,
- -0.060164906084537506, -0.06845787912607193, -0.037818264216184616,
- 0.024774787947535515, -0.0422542430460453, -0.12416050583124161, -0.05179553106427193,
- 0.06161697953939438, 0.04550623893737793, -0.02818192169070244, -0.0309432502835989,
- -0.1092214584350586, -0.012355826795101166, -0.021644582971930504, 0.04920574277639389,
- -0.022465188056230545, 0.0018539506709203124, -0.019259968772530556,
- -0.07286407053470612, 0.0026451339945197105, -0.01842470094561577,
- -0.004808338824659586, -0.08375060558319092, -0.0595010407269001, -0.052515752613544464,
- -0.023762404918670654, -0.001429464085958898, -0.025839826092123985,
- 0.04389392212033272, 0.07088973373174667, 0.0455036461353302, 0.004734580870717764,
- -0.0015329975867643952, 0.0731157511472702, -0.06872119754552841, 0.00947492104023695,
- 0.09187644720077515, -0.01900339312851429, -0.006332789547741413, 0.01902678981423378,
- -0.06908132135868073, -0.07555411010980606, -0.02081063576042652, -0.013070044107735157,
- 0.05861162021756172, -0.00947715062648058, 0.025663897395133972, -0.04378093406558037,
- 0.009791477583348751, 0.05491216108202934, -0.1033899337053299, -0.053539760410785675,
- -0.07940273731946945, 0.09831463545560837, 0.012561684474349022, -0.005760265048593283,
- 0.002427265979349613, -0.04443654417991638, 0.050185490399599075, -0.025878602638840675,
- 0.03705999255180359, 0.02238304354250431, 0.06996287405490875, -0.01556391455233097,
- 0.006979441735893488, 0.042647745460271835, -0.05070991441607475, 0.00971830915659666,
- 0.0664893388748169, 0.4065345823764801, -0.10498891770839691, 0.10044713318347931,
- 0.12243567407131195, 0.035371944308280945, 0.0582285039126873, -0.040513426065444946,
- 0.06658802181482315, 0.07547406852245331, 0.10374076664447784, 0.12215004116296768,
- -0.03562071919441223, -0.028297364711761475, -0.07974547147750854, 0.08517453074455261,
- 0.0040810322389006615, 0.04438083618879318, -0.03572481498122215, -0.07246163487434387,
- -0.027069831266999245, 0.04977654665708542, -0.053728580474853516, 0.031059950590133667,
- 0.007458174135535955, -0.03137770667672157, 0.025531357154250145, 0.02985575422644615,
- 0.041592296212911606, -0.0309788528829813, 0.023914113640785217, -0.045186396688222885,
- 0.07410198450088501, 0.012550113722682, 0.03783835098147392, -0.049160681664943695,
- 0.020221348851919174, -0.06970001757144928, -0.04839922860264778, 0.10580281913280487,
- 0.011663511395454407, 0.057626478374004364, 0.019968250766396523, -0.02582184411585331,
- 0.032181791961193085, -0.046630050987005234, -0.06505359709262848, 0.009106313809752464,
- 0.06380391120910645, 0.01948404870927334, 0.08395583182573318, 0.15702152252197266,
- -0.02640019729733467, -0.04110686108469963, -0.059117358177900314, 0.04934348911046982,
- 0.09901564568281174, -0.018175439909100533, -0.015670526772737503, -0.02057167887687683,
- -0.021756906062364578, -0.00018191749404650182, -0.07913031429052353,
- -0.0899692103266716, 0.035169269889593124, -0.020711291581392288, 0.07806085795164108,
- 0.023579221218824387, 0.0028644483536481857, -0.1415930688381195, -0.0394054651260376,
- -0.05213921517133713, 0.023779386654496193, 0.09691459685564041, -0.05548211187124252,
- 0.024184761568903923, 0.023924250155687332, -0.012285935692489147,
- -0.002241178648546338, -0.09475085884332657, -0.007428094744682312,
- -0.024631120264530182, 0.0304843969643116, 0.07018660008907318, 0.044907666742801666,
- -0.02154994197189808, 0.023227248340845108, -0.07876255363225937, 0.05399132892489433,
- 0.056936293840408325, -0.04037268087267876, 0.010273538529872894, -0.021724067628383636,
- 0.03799983859062195, 0.011870056390762329, -0.028371598571538925, -0.03152471408247948,
- -0.025894442573189735, -0.039263539016246796, -0.09688208997249603,
- -0.02940119244158268, -0.017937909811735153, -0.09104262292385101, 0.04611656069755554,
- -0.0794682502746582, -0.021522734314203262, -0.009563040919601917,
- 0.00043345149606466293, 0.0011433155741542578, 0.06059325858950615, 0.04851453751325607,
- -0.10828123986721039, -0.005728427786380053, -0.022510768845677376, 0.0561637282371521,
- -0.0587473027408123, -0.06731607019901276, 0.02717144414782524, 0.08778144419193268,
- 0.01623331382870674, -0.027480173856019974, -0.010942901484668255,
- -0.005282295867800713, 0.05600491166114807, -0.1333320438861847, -0.45775356888771057,
- 0.06942568719387054, -0.009611126035451889, 0.024108413606882095, 0.01121856551617384,
- -0.07205330580472946, 0.052946947515010834, 0.002106098923832178, -0.01418343000113964,
- 0.07519970089197159, -0.04518350213766098, 0.01802361011505127, -0.014522545039653778,
- -0.04317660257220268, -0.0230637788772583, -0.05206916481256485, -0.06851135194301605,
- 0.05625312402844429, -0.04276830703020096, -0.055566005408763885, -0.11834792792797089,
- 0.02575770393013954, -0.012643528170883656, 0.02510293386876583, 0.019718054682016373,
- -0.024421490728855133, -0.06978188455104828, -0.04655569791793823, 0.04885135963559151,
- 0.056389521807432175, 0.013553613796830177, -0.07726315408945084, 0.00913078524172306,
- 0.046538375318050385, -0.026213806122541428, 0.12600693106651306, 0.015013257041573524,
- -0.0021826629526913166, -0.11017666012048721, 0.08067910373210907, 0.06532292813062668,
- 0.1890352964401245, -0.028957000002264977, 0.03748590499162674, 0.02950003743171692,
- 0.12276222556829453, 0.008521628566086292, 0.03488024324178696, -0.04093385487794876,
- 0.010208826512098312, 0.005279661156237125, 0.0011603761231526732, 0.07646000385284424,
- -0.0608033761382103, -0.019389884546399117, -0.02813977561891079, -0.028354376554489136,
- -0.07897146791219711, -0.021211769431829453, 0.17401155829429626, 0.020404597744345665,
- 0.008183510042726994, 0.03960990533232689, -0.047992412000894547, -0.031314004212617874,
- -0.0482453890144825, -0.09207449108362198, -0.010841932147741318,
- -0.0014276892179623246, 0.03134387359023094, -0.05800880119204521, -0.11439502239227295,
- -0.022625403478741646, -0.007886780425906181, -0.02139541134238243, 0.08844459056854248,
- -0.0671609565615654, 0.03356490656733513, -0.05973811820149422, 0.11830238252878189,
- 0.02972501888871193, -0.010534157045185566, 0.051065851002931595, 0.09525394439697266,
- 0.028588522225618362, 0.03507521003484726, -0.05147962644696236, -0.05661406368017197,
- -0.017569823190569878, 0.13081853091716766, -0.02066325955092907, 0.11494369804859161,
- 0.08742956817150116, -0.052611518651247025, -0.04652845114469528,
- 0.00020349844999145716, -0.00698520103469491, 0.04246816784143448, -0.4640117287635803,
- -0.016330044716596603, 0.13632002472877502, -0.041617587208747864, 0.04445982724428177,
- 0.09729208052158356, 0.034288275986909866, -0.02703213319182396, -0.026336336508393288,
- -0.04432118311524391, 0.1475232094526291, 0.015480762347579002, 0.08246994018554688,
- -0.10315227508544922, 0.007921055890619755, 0.07437355816364288, -0.014459207653999329,
- 0.0022767051123082638, 0.021824926137924194, -0.249887615442276, -0.0029734731651842594,
- -0.0393318310379982, 0.16503272950649261, 0.09691870957612991, 0.026879772543907166,
- 0.07871238887310028, -0.05875978618860245, 0.007886964827775955, 0.040783848613500595,
- 0.021431468427181244, 0.05537300556898117, 0.0016105149406939745, -0.022240018472075462,
- 0.10124896466732025, 0.05280962586402893, 0.045285534113645554, -0.01684514991939068,
- 11.784626960754395, 0.05851387232542038, 0.06741911172866821, -0.06633083522319794,
- 0.044895321130752563, -0.05103578418493271, 0.02903044782578945, -0.08043190836906433,
- 0.07750438153743744, 0.09878756105899811, -0.01918957382440567, -0.040554825216531754,
- -0.0486716590821743, -0.06905217468738556, 0.025125477463006973, -0.03458012267947197,
- -0.04148528724908829, -0.025554770603775978, 0.031683363020420074, -0.04247073084115982,
- -0.03935685381293297, -0.005895278882235289, 0.04372183233499527, 0.01695924438536167,
- -0.09854276478290558, 0.007394275162369013, 0.029424432665109634,
- -0.0025816126726567745, 0.011596600525081158, 0.04690242558717728,
- -0.009190326556563377, 0.027900729328393936, 0.050852179527282715, 0.03567928075790405,
- 0.02119707502424717, 0.06593038886785507, 0.055911194533109665, 0.06351092457771301,
- 0.05668305233120918, 0.04963437840342522, 0.052329301834106445, 0.057398777455091476,
- 0.023702144622802734, 0.04774712771177292, 0.048041678965091705, 0.04798493534326553,
- 0.017737269401550293, 0.11767490208148956, -0.03227108344435692, 0.09047587215900421,
- 0.0914427787065506, 0.009587598964571953, 0.06686550378799438, 0.03582609444856644,
- -0.008977172896265984, 0.02788015827536583, 0.011196409352123737, -0.03898266702890396,
- 0.060584913939237595, 0.03822895139455795, -0.037759073078632355, 0.11367163807153702,
- 0.0004416517913341522, 0.08228539675474167, -0.026647906750440598, 0.02013189159333706,
- 0.08355647325515747, 0.08056698739528656, -0.14344733953475952, -0.08317645639181137,
- 0.06499284505844116, -0.10082471370697021, -0.09613685309886932, 0.08980070054531097,
- 0.076261505484581, -0.04575130343437195, 0.10998419672250748, -0.0722530409693718,
- 0.028864016756415367, -0.03240935131907463, 0.008338872343301773, 0.057530444115400314,
- 0.012619738467037678, -0.003345813602209091, 0.006803248077630997, 0.01157824881374836,
- 0.09555647522211075, 0.08585473150014877, -0.004718874581158161, -0.08654352277517319,
- -0.07169092446565628, 0.10167714208364487, 0.013333993032574654, -0.06633569300174713,
- 0.033695854246616364, -0.04744993522763252, -0.002877012360841036, -0.12553994357585907,
- 0.07000146806240082, 0.11912429332733154, -0.07208681106567383, 0.0013072367291897535,
- -0.031245673075318336, 0.0692773163318634, -0.014110704883933067, 0.03819930925965309,
- -0.09266912192106247, 0.03247184678912163, 0.019878393039107323, 0.05883393436670303,
- -0.035764142870903015, 0.09232007712125778, 0.07182818651199341, -0.0689905434846878,
- 0.06425793468952179, 0.05830913782119751, -0.0391826331615448, -0.03560223802924156,
- 0.060102175921201706, 0.05991446226835251, -0.095304474234581, -0.0349862203001976,
- -0.02657199837267399, -0.0378304049372673, -0.005674554966390133, -0.056990645825862885,
- -0.035321831703186035, 0.03415042161941528, -0.08383689075708389, -0.006337568163871765,
- 0.056670647114515305, 0.017179448157548904, 0.052958957850933075, -0.05833200365304947,
- 0.021777799353003502, -0.0404573455452919, -0.0506223663687706, 0.062324799597263336,
- 0.026119370013475418, 0.08165812492370605, -0.06274392455816269, -0.033514443784952164,
- -0.04472890496253967, -0.10952712595462799, 0.010688007809221745, 0.10587307065725327,
- 0.02213715761899948, 0.014252014458179474, 0.05534454435110092, -0.0393657460808754,
- -0.0575137659907341, 0.10046825557947159, 0.012997406534850597, 0.03723771125078201,
- 0.05045555159449577, -0.07501809298992157, -0.009330804459750652, 0.12538006901741028,
- -0.05927198380231857, -0.0026912621688097715, 0.016531111672520638,
- -0.07585160434246063, 0.08167096972465515, 0.08065231144428253, 0.032662682235240936,
- 0.03266667202115059, 0.06255252659320831, -0.021522516384720802, 0.01913653127849102,
- -0.005960705224424601, 0.010193969123065472, -0.034599669277668, -0.08688603341579437,
- -0.07849729061126709, -0.022569963708519936, 0.09266765415668488, 0.041870612651109695,
- -0.12294415384531021, -0.028086015954613686, -0.04236474260687828
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 295,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 74,
- "similarity": 0.9983680844306946
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 45,
- "similarity": 0.9977988004684448
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 51,
- "similarity": 0.9977928400039673
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Dennis Sellers"],
- "epoch_date_downloaded": 1664928000,
- "epoch_date_modified": 1665619200,
- "epoch_date_submitted": 1664928000,
- "flag": null,
- "report_number": 2103,
- "source_domain": "appleworld.today",
- "submitters": ["Devon Colmer (CSET)"],
- "title": "Judge allows facial recognition lawsuit against Apple to continue",
- "url": "https://www.appleworld.today/archives/62006"
- },
- {
- "__typename": "Report",
- "authors": ["Shannon Liao"],
- "epoch_date_downloaded": 1664928000,
- "epoch_date_modified": 1665619200,
- "epoch_date_submitted": 1664928000,
- "flag": null,
- "report_number": 2102,
- "source_domain": "theverge.com",
- "submitters": ["Devon Colmer (CSET)"],
- "title": "Apple claims it isn’t scanning customers’ faces, after teen sues for $1 billion",
- "url": "https://www.theverge.com/tech/2019/4/23/18512942/apple-lawsuit-facial-recognition-nypd-1-billion-theft"
- },
- {
- "__typename": "Report",
- "authors": ["CaseText"],
- "epoch_date_downloaded": 1660694400,
- "epoch_date_modified": 1660694400,
- "epoch_date_submitted": 1660694400,
- "flag": null,
- "report_number": 1917,
- "source_domain": "casetext.com",
- "submitters": ["Khoa Lam"],
- "title": "Bah v. Apple Inc.",
- "url": "https://casetext.com/case/bah-v-apple-inc-2"
- },
- {
- "__typename": "Report",
- "authors": ["Malcolm Owen"],
- "epoch_date_downloaded": 1660694400,
- "epoch_date_modified": 1660694400,
- "epoch_date_submitted": 1660694400,
- "flag": null,
- "report_number": 1916,
- "source_domain": "appleinsider.com",
- "submitters": ["Khoa Lam"],
- "title": "Apple sued over false accusations in Apple Store thefts by impostor",
- "url": "https://appleinsider.com/articles/21/05/29/apple-sued-over-false-accusations-in-apple-store-thefts-by-impostor"
- },
- {
- "__typename": "Report",
- "authors": ["Hamza Shaban", " Meagan Flynn "],
- "epoch_date_downloaded": 1660694400,
- "epoch_date_modified": 1660694400,
- "epoch_date_submitted": 1660694400,
- "flag": null,
- "report_number": 1915,
- "source_domain": "washingtonpost.com",
- "submitters": ["Thomas Giallella (CSET)"],
- "title": "Teen sues Apple for $1 billion, blames facial recognition at stores for his arrest",
- "url": "https://www.washingtonpost.com/technology/2019/04/23/teen-sues-apple-billion-blames-facial-recognition-stores-his-arrest/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "twitter",
- "name": "Twitter"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "twitter",
- "name": "Twitter"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "twitter-users",
- "name": "Twitter Users"
- },
- {
- "__typename": "Entity",
- "entity_id": "twitter-left-leaning-users",
- "name": "Twitter left-leaning users"
- },
- {
- "__typename": "Entity",
- "entity_id": "twitter-left-leaning-politicians",
- "name": "Twitter left-leaning politicians"
- },
- {
- "__typename": "Entity",
- "entity_id": "twitter-left-leaning-news-organizations",
- "name": "Twitter left-leaning news organizations"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [129, 146, 147, 149, 171, 196, 163, 151, 284, 132, 206],
- "editor_similar_incidents": [213],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1920, 1919, 1918],
- "vector": [
- -0.05200423672795296, 0.07267814129590988, 0.011259488761425018, -0.09083932638168335,
- 0.041661061346530914, -0.025240810588002205, -0.004781715571880341, 0.06884225457906723,
- 0.06354182958602905, -0.13910171389579773, 0.007286062929779291, 0.011002776212990284,
- 0.02394179441034794, -0.11603734642267227, 0.01475286204367876, -0.12455689162015915,
- -0.11070289462804794, -0.021984858438372612, 0.009852875955402851, -0.11471889168024063,
- -0.08857019990682602, -0.006413888186216354, 0.008711902424693108, 0.10291481018066406,
- -0.05160745978355408, 0.05719304084777832, 0.10749629884958267, 0.12289285659790039,
- -0.07175002247095108, 0.06042768433690071, -0.040422942489385605, -0.08464685082435608,
- 0.14138168096542358, 0.044710706919431686, -0.0011811095755547285, 0.07090584188699722,
- 0.02277975343167782, -0.01295965164899826, 0.018975526094436646, 0.009283863939344883,
- 0.023897835984826088, 0.27592042088508606, -0.0451941080391407, -0.0240431260317564,
- 0.03227721527218819, -0.06443977355957031, 0.03321533277630806, 0.02237570285797119,
- 0.013304012827575207, -0.005931132938712835, 0.00021531805396080017,
- 0.005628353450447321, -0.043158333748579025, 0.03576691448688507, -0.10018065571784973,
- 0.06653297692537308, 0.05141517147421837, -0.025264611467719078, 0.006404171232134104,
- -0.11521165817975998, -0.04190586134791374, -0.2477571815252304, -0.032054316252470016,
- -0.08651009202003479, 0.09600498527288437, -0.08585852384567261, -0.041899342089891434,
- 0.004437541123479605, 0.02764560841023922, 0.06916627287864685, 0.044872742146253586,
- -0.026341892778873444, -0.022762492299079895, 0.03845458850264549, 0.010650042444467545,
- -0.03144165873527527, 0.01964517869055271, 0.1912762075662613, -0.0850476548075676,
- -0.0012267216807231307, 0.10064949840307236, -0.09868662804365158, 0.41503676772117615,
- -0.016344569623470306, 0.006673349067568779, 0.010756250470876694, 0.09782526642084122,
- -0.006474447902292013, 0.02661602944135666, 0.016933904960751534, -0.020342890173196793,
- 0.07662241905927658, -0.05130649730563164, -0.012978881597518921, 0.05161292478442192,
- 0.02541353739798069, -0.007001828867942095, 0.015478740446269512, -0.00525568937882781,
- -0.0490092970430851, 0.005474204663187265, -0.01782592572271824, 0.12782704830169678,
- 0.04451623931527138, -0.05316779389977455, -0.010841515846550465, 0.07430500537157059,
- -0.06049816682934761, 0.036547254770994186, -0.03581603989005089,
- -0.0038848649710416794, -0.022535160183906555, 0.06474300473928452,
- -0.027678534388542175, 0.04466314986348152, -0.03412237763404846, 0.010640156455338001,
- 0.06461423635482788, 0.08938542753458023, 0.07065574079751968, 0.0021209518890827894,
- 0.0690232440829277, 0.06985410302877426, -0.06505215913057327, -0.023015471175312996,
- -0.016480199992656708, -0.057940077036619186, -0.003876518690958619,
- -0.034214939922094345, 0.05123179033398628, -0.061057571321725845, -0.21044130623340607,
- 0.008775689639151096, 0.06238769367337227, -0.03520167991518974, -0.042795032262802124,
- -0.0011033701011911035, -0.05923109129071236, 0.03343188390135765, -0.03893141821026802,
- 0.012708880007266998, 0.09429216384887695, -0.0017616823315620422, 0.02419297955930233,
- 0.10964977741241455, 0.055941928178071976, -0.049878861755132675, -0.03893068805336952,
- 0.0013903590152040124, -0.03624681010842323, 0.12706810235977173, -0.12581035494804382,
- -0.04335606098175049, -0.04225290194153786, 0.023160582408308983, 0.7196999192237854,
- 0.09949959069490433, 0.190543994307518, 0.0012465728214010596, -0.06726667284965515,
- 0.18175852298736572, 0.029981179162859917, 0.0627831369638443, -0.07506132125854492,
- -0.05226297304034233, 0.02723083458840847, -0.08188186585903168, -0.040842194110155106,
- 0.012381467968225479, 0.03192362189292908, 0.08213279396295547, 0.02590569667518139,
- 0.1042378768324852, 0.026759440079331398, -0.11098278313875198, -0.04167841747403145,
- 0.0664576068520546, 0.0004922021180391312, -0.1432906985282898, -0.033368051052093506,
- 0.04229691997170448, 0.1100420132279396, -0.07644851505756378, -0.01570524089038372,
- -0.09118002653121948, 0.05591345950961113, -0.013492130674421787, 0.05699438974261284,
- -0.042089253664016724, 0.034943729639053345, 0.03870982304215431, 0.0183622557669878,
- -0.03715941309928894, -0.0782034620642662, -0.03598682954907417, 0.1135953962802887,
- -0.016687976196408272, -0.04142738878726959, 0.09079217910766602, -0.10355960577726364,
- 0.023951835930347443, 0.008942057378590107, 0.16708528995513916, -0.15839479863643646,
- 0.010707542300224304, 0.00031075067818164825, -0.05517653748393059,
- 0.034658703953027725, -0.01854843460023403, -0.05359293892979622, -0.05576474592089653,
- 0.06152041628956795, 0.030478762462735176, 0.08887139707803726, 0.05107686296105385,
- -0.025054357945919037, 0.050745222717523575, -0.035417813807725906,
- 0.022276125848293304, -0.10363372415304184, 0.0759911760687828, 0.029087452217936516,
- -0.11034774035215378, -0.06196301802992821, 0.07483083009719849, 0.011508040130138397,
- 0.017978044226765633, -0.0029570404440164566, 0.06030908226966858, 0.009391327388584614,
- -0.03365699574351311, 0.05937663093209267, 0.0410102903842926, 0.03263882175087929,
- 0.04446465149521828, -0.09269273281097412, -0.033329132944345474, -0.048378247767686844,
- -0.03324728086590767, 0.026270465925335884, -0.0026335474103689194, 0.0734265074133873,
- 0.10258112102746964, 0.0732186958193779, 0.004085869062691927, 0.015441961586475372,
- 0.052397504448890686, -0.037985775619745255, 0.03376106545329094, 0.09942822903394699,
- -0.025032684206962585, -0.03548603504896164, -0.02996070124208927, 0.005779514089226723,
- 0.01438279077410698, 0.02424054592847824, -0.057823073118925095, -0.028521662577986717,
- -0.032854411751031876, -0.050681281834840775, -0.08754432201385498,
- -0.03677395358681679, 0.04582655429840088, 0.032199978828430176, -0.02551303058862686,
- -0.08683881163597107, -0.06586723774671555, -0.009550067596137524, 0.11137380450963974,
- -0.041115742176771164, -0.00755517790094018, -0.12094905972480774, 0.03173274174332619,
- -0.03899772837758064, 0.033665090799331665, -0.031365033239126205, 0.02478904463350773,
- 0.01863936334848404, -0.09110090136528015, 0.013475590385496616, 0.0015524955233559012,
- -0.020417744293808937, 0.005276657175272703, -0.06648784875869751, -0.05518631264567375,
- -0.027262888848781586, -0.0000248557571467245, -0.04561140015721321,
- 0.027221089228987694, 0.0419599711894989, 0.03608812764286995, -0.01955954171717167,
- -0.039196792989969254, 0.05781735107302666, -0.03662269562482834, -0.008859568275511265,
- 0.11397824436426163, -0.007778356317430735, 0.03782648220658302, -0.033687155693769455,
- -0.08025776594877243, -0.0616726316511631, -0.0036888772156089544, -0.03113095462322235,
- 0.04293079674243927, -0.019803499802947044, -0.03077772445976734, -0.01635029911994934,
- 0.0052385334856808186, 0.07025599479675293, -0.05251598358154297, -0.10133862495422363,
- -0.07867168635129929, 0.12348061054944992, 0.0007571233436465263, 0.003984198439866304,
- 0.01639738492667675, -0.04649629816412926, 0.05069686844944954, -0.009769201278686523,
- 0.009767571464180946, 0.04118240997195244, 0.08045633882284164, -0.03577733412384987,
- 0.022415271028876305, 0.058148402720689774, -0.005984291434288025, 0.06741835922002792,
- 0.09966766834259033, 0.4592815935611725, -0.10435331612825394, 0.0722685158252716,
- 0.07431015372276306, -0.04396480321884155, 0.013147982768714428, -0.0655645802617073,
- 0.07732841372489929, 0.09465083479881287, 0.12030977010726929, 0.14685223996639252,
- -0.03679307922720909, 0.021906910464167595, -0.05520874634385109, 0.10500354319810867,
- 0.0273134708404541, 0.03939562663435936, 0.002833068137988448, -0.04852176830172539,
- -0.010618730448186398, 0.035224564373493195, -0.06898709386587143, 0.014132886193692684,
- -0.011445130221545696, -0.07963287085294724, -0.006063912063837051,
- 0.017978781834244728, 0.033623117953538895, -0.020611373707652092, 0.0550888366997242,
- 0.005240371450781822, 0.03545160964131355, 0.009668207727372646, 0.04262092337012291,
- -0.12458933144807816, 0.019898073747754097, -0.05512223020195961, -0.07507133483886719,
- 0.06756424158811569, 0.018444756045937538, 0.07194890081882477, 0.07374460250139236,
- -0.002310590585693717, 0.061967868357896805, -0.03868735954165459, -0.0464419461786747,
- 0.03139360249042511, 0.031616225838661194, -0.005890882108360529, 0.06907215714454651,
- 0.1428990364074707, -0.04246799275279045, -0.023224497213959694, -0.08856268972158432,
- 0.05418867990374565, 0.17603467404842377, -0.022631598636507988, 0.010834891349077225,
- 0.023523030802607536, -0.0038949258159846067, 0.026638662442564964,
- -0.05847197398543358, -0.07035756856203079, -0.03264738991856575, -0.033412277698516846,
- 0.07865850627422333, 0.06048575043678284, -0.04982180520892143, -0.1576428860425949,
- -0.018228409811854362, -0.015930337831377983, 0.027983978390693665, 0.15096551179885864,
- -0.10888632386922836, 0.029626572504639626, 0.0024158686865121126, 0.007707825396209955,
- 0.018280627205967903, -0.08743289113044739, -0.011526361107826233, -0.07145660370588303,
- 0.026855042204260826, 0.05044165626168251, 0.05011913552880287, -0.06419865041971207,
- 0.1193404495716095, -0.1141272559762001, 0.048899758607149124, 0.02745465375483036,
- -0.07859169691801071, 0.016338393092155457, -0.05196252465248108, 0.01926925592124462,
- 0.01827036403119564, -0.04945553466677666, 0.018827730789780617, -0.02516397275030613,
- -0.033861901611089706, -0.07944047451019287, -0.11855361610651016,
- -0.040264666080474854, -0.10462040454149246, 0.04749174788594246, -0.05606674775481224,
- 0.010923504829406738, -0.030524134635925293, -0.032951150089502335,
- -0.019319972023367882, 0.0211457759141922, -0.0033845119178295135, -0.13138408958911896,
- -0.040622685104608536, 0.022371908649802208, 0.054584402590990067, -0.02829574979841709,
- -0.06346578150987625, -0.05156239494681358, 0.07713129371404648, 0.03191304951906204,
- -0.04789989814162254, 0.032764069736003876, -0.06097036600112915, 0.10319425910711288,
- -0.10044119507074356, -0.3570205867290497, 0.05668744817376137, 0.044854890555143356,
- 0.05855032801628113, -0.004026280250400305, -0.07694888859987259, 0.03267225995659828,
- 0.026880649849772453, -0.04359355568885803, 0.07740115374326706, -0.040438901633024216,
- 0.0242969561368227, -0.011643770150840282, -0.08001744002103806, 0.015170159749686718,
- -0.10420014709234238, -0.038443729281425476, 0.002507225377485156,
- -0.019322438165545464, -0.08886813372373581, -0.10190916806459427, 0.03178219124674797,
- -0.02832149714231491, 0.008246732875704765, 0.0051420885138213634, 0.03436165675520897,
- -0.025080570951104164, -0.07436921447515488, 0.050233032554388046, 0.06828541308641434,
- 0.012031401507556438, -0.07101716846227646, 0.0020948434248566628, 0.08417297154664993,
- 0.0031464446801692247, 0.10479733347892761, 0.014296605251729488, 0.005427805241197348,
- -0.0893445611000061, 0.06018155813217163, 0.07044882327318192, 0.1832965612411499,
- 0.013637222349643707, 0.02312452346086502, 0.03152560815215111, 0.14661844074726105,
- 0.04468788579106331, 0.041824787855148315, -0.03181940317153931, 0.002146800747141242,
- -0.025993555784225464, 0.022230729460716248, 0.09586993604898453, -0.08237306028604507,
- -0.026835568249225616, -0.04410601034760475, -0.0080082006752491, -0.032542020082473755,
- -0.06638133525848389, 0.23768596351146698, 0.0296943336725235, 0.022433804348111153,
- 0.03307371959090233, -0.04509030282497406, 0.0029979387763887644, -0.11741035431623459,
- -0.09060997515916824, 0.006563284900039434, -0.004692469257861376, 0.02244906686246395,
- -0.025895990431308746, -0.12403307110071182, -0.011718912981450558,
- -0.004055992234498262, 0.022108450531959534, 0.1344679445028305, -0.06584269553422928,
- -0.006998309399932623, -0.032569434493780136, 0.1476413458585739, 0.030084015801548958,
- 0.013103564269840717, 0.04604673385620117, 0.06827083975076675, -0.0008841429371386766,
- 0.007925615645945072, -0.027146175503730774, -0.12976905703544617,
- -0.009710432030260563, 0.15611915290355682, -0.016694793477654457, 0.1578412503004074,
- 0.006433425936847925, -0.05067134276032448, -0.04723132774233818, 0.04376159980893135,
- -0.006457263138145208, -0.0013816176215186715, -0.4235285222530365,
- -0.021610276773571968, 0.11174091696739197, 0.007117211818695068, 0.03189645707607269,
- 0.05698047950863838, 0.019055699929594994, -0.06858840584754944, -0.0504734069108963,
- -0.1118689775466919, 0.15054823458194733, 0.003643495263531804, 0.07879246026277542,
- -0.0777992308139801, 0.02492983639240265, 0.11118379980325699, -0.054225172847509384,
- -0.005095197353512049, 0.039081722497940063, -0.2508121430873871, -0.014997626654803753,
- -0.032238494604825974, 0.1054845079779625, -0.022897755727171898, 0.06113846227526665,
- 0.10635741800069809, -0.060942649841308594, -0.0065310038626194, 0.0245202649384737,
- -0.014336367137730122, 0.03661663457751274, -0.0350404754281044, -0.024634303525090218,
- 0.12976013123989105, 0.1012323722243309, 0.12830384075641632, -0.035618435591459274,
- 12.139045715332031, 0.056704241782426834, 0.07419133186340332, -0.09602581709623337,
- -0.0029151153285056353, -0.055389050394296646, 0.03152592107653618,
- -0.11071182042360306, 0.06627146154642105, 0.12041223049163818, -0.003983653616160154,
- -0.0474960021674633, -0.0046344539150595665, -0.10336706042289734, 0.030338650569319725,
- -0.02561592496931553, -0.040621157735586166, -0.03959706425666809, 0.03873331472277641,
- -0.029326388612389565, -0.04862554743885994, 0.0706980749964714, 0.08932828903198242,
- 0.03312883898615837, -0.07147791981697083, 0.016260214149951935, 0.01634947769343853,
- -0.0072389221750199795, 0.015873568132519722, 0.019358180463314056,
- 0.003983320202678442, 0.020014571025967598, 0.08739126473665237, 0.03614722937345505,
- 0.0316326878964901, 0.05215584859251976, 0.04450010880827904, 0.0035481639206409454,
- 0.02779942750930786, 0.046729471534490585, -0.04422721266746521, 0.03426109626889229,
- -0.007900933735072613, 0.05070460960268974, 0.08240340650081635, 0.05960019305348396,
- 0.03690039739012718, 0.1311952769756317, -0.022635430097579956, 0.08457919210195541,
- 0.10399837046861649, -0.0005577628617174923, 0.12742942571640015, 0.05345484986901283,
- 0.008799098432064056, 0.043935079127550125, -0.013562582433223724, -0.10994096845388412,
- 0.06926905363798141, 0.005366306286305189, -0.0640886053442955, 0.13912449777126312,
- 0.06005573645234108, 0.11139712482690811, 0.04119208827614784, 0.07068102061748505,
- 0.07531735301017761, 0.0730942115187645, -0.13808543980121613, -0.08220381289720535,
- 0.03421109914779663, -0.10253467410802841, -0.07001086324453354, 0.08982598781585693,
- 0.13267749547958374, -0.030912160873413086, 0.054078537970781326, -0.006171603221446276,
- 0.01819225214421749, -0.029704244807362556, -0.010741383768618107, 0.02642735093832016,
- -0.026995455846190453, -0.009716532193124294, 0.07246256619691849, 0.018600106239318848,
- 0.06091492250561714, 0.1372786909341812, -0.029147377237677574, -0.08462312072515488,
- -0.05602104589343071, 0.07100582122802734, -0.024019574746489525, -0.03994789347052574,
- 0.024358637630939484, -0.07843251526355743, 0.02751251496374607, -0.18125168979167938,
- 0.08275654911994934, 0.11647617816925049, -0.09315244108438492, -0.02564769983291626,
- -0.018857819959521294, 0.08951444178819656, 0.028320232406258583, 0.01062073279172182,
- -0.08462774753570557, 0.004452479537576437, 0.02417546510696411, 0.06267128139734268,
- -0.042880039662122726, 0.06351282447576523, 0.051925867795944214, -0.045193981379270554,
- 0.04435865953564644, 0.08170448988676071, -0.04587249457836151, -0.03417712077498436,
- 0.06551524996757507, 0.017373276874423027, -0.1026553213596344, -0.07202570885419846,
- -0.03117942251265049, -0.03389996290206909, 0.0020863190293312073,
- -0.028183715417981148, 0.029878690838813782, 0.04423162713646889, -0.022796669974923134,
- -0.025868797674775124, 0.03991830721497536, 0.08285585790872574, 0.0927676185965538,
- -0.007468130439519882, 0.042971283197402954, -0.0708145722746849, -0.02844308875501156,
- 0.04096796736121178, 0.053792309015989304, 0.05931064859032631, -0.07125432044267654,
- -0.03651949763298035, -0.039500750601291656, -0.10312087088823318, 0.04889557883143425,
- 0.10026400536298752, 0.04347088560461998, 0.04096679762005806, 0.023502901196479797,
- -0.06775883585214615, -0.0454268604516983, 0.04940079525113106, 0.009081561118364334,
- -0.008854498155415058, 0.052089985460042953, -0.03670023754239082,
- -0.047728557139635086, 0.12016835063695908, -0.0071364715695381165,
- -0.011524190194904804, -0.005429908633232117, -0.0951000228524208, 0.08194414526224136,
- 0.10420388728380203, 0.09891883283853531, 0.04477788135409355, 0.08691614121198654,
- 0.020723234862089157, 0.06337722390890121, 0.003435914171859622, 0.012033662758767605,
- -0.06844934076070786, -0.06117842718958855, -0.08712352067232132, 0.050534311681985855,
- 0.08432932943105698, 0.05815473571419716, -0.0851387158036232, 0.007721589412540197,
- -0.05565468966960907
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 296,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 206,
- "similarity": 0.9977031350135803
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 213,
- "similarity": 0.9975543022155762
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 132,
- "similarity": 0.9974381327629089
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["The Economist"],
- "epoch_date_downloaded": 1660694400,
- "epoch_date_modified": 1660694400,
- "epoch_date_submitted": 1660694400,
- "flag": null,
- "report_number": 1920,
- "source_domain": "economist.com",
- "submitters": ["Khoa Lam"],
- "title": "Twitter’s algorithm does not seem to silence conservatives",
- "url": "https://www.economist.com/graphic-detail/2020/08/01/twitters-algorithm-does-not-seem-to-silence-conservatives"
- },
- {
- "__typename": "Report",
- "authors": [
- "Ferenc Huszár",
- " Sofia Ira Ktena",
- " Conor O’Brien",
- " Luca Belli",
- " Andrew Schlaikjer",
- " Moritz Hardt"
- ],
- "epoch_date_downloaded": 1660694400,
- "epoch_date_modified": 1660694400,
- "epoch_date_submitted": 1660694400,
- "flag": null,
- "report_number": 1919,
- "source_domain": "pnas.org",
- "submitters": ["Khoa Lam"],
- "title": "Algorithmic amplification of politics on Twitter",
- "url": "https://www.pnas.org/doi/10.1073/pnas.2025334119"
- },
- {
- "__typename": "Report",
- "authors": ["Dan Milmo"],
- "epoch_date_downloaded": 1660608000,
- "epoch_date_modified": 1660694400,
- "epoch_date_submitted": 1660608000,
- "flag": null,
- "report_number": 1918,
- "source_domain": "theguardian.com",
- "submitters": ["Sonali Pednekar (CSET)", "AIAAIC"],
- "title": "Twitter admits bias in algorithm for rightwing politicians and news outlets",
- "url": "https://www.theguardian.com/technology/2021/oct/22/twitter-admits-bias-in-algorithm-for-rightwing-politicians-and-news-outlets"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "smart-columbus",
- "name": "Smart Columbus"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "easymile",
- "name": "EasyMile"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "unnamed-woman-passenger",
- "name": "unnamed woman passenger"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [117, 180, 183, 267, 279, 231],
- "editor_similar_incidents": [4, 151],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1923, 1922, 1921],
- "vector": [
- -0.09541492909193039, 0.07244350761175156, 0.017177030444145203, -0.0822901651263237,
- 0.05077376961708069, -0.0017336889868602157, -0.0017677050782367587,
- 0.044503312557935715, 0.05934892222285271, -0.1334240585565567, -0.005593504291027784,
- 0.05557527765631676, 0.016854457557201385, -0.063621886074543, 0.03819255903363228,
- -0.11886756867170334, -0.07322763651609421, -0.01798480749130249, -0.027188213542103767,
- -0.11737000942230225, -0.08639094978570938, -0.02618485502898693, 0.02539781667292118,
- 0.10957992821931839, -0.06661074608564377, 0.040491681545972824, 0.04787326976656914,
- 0.1279575228691101, -0.052241597324609756, 0.06454360485076904, -0.01812099479138851,
- -0.0781206488609314, 0.14129513502120972, 0.002116187708452344, -0.007673957850784063,
- 0.11320675164461136, 0.004393257200717926, -0.025297624990344048, -0.03156249597668648,
- -0.004964552354067564, 0.04445108398795128, 0.23549027740955353, -0.004076643381267786,
- -0.027256885543465614, 0.05196553096175194, -0.04181814193725586, 0.004156593233346939,
- 0.05042572692036629, 0.013749167323112488, 0.01029136497527361, -0.003602949669584632,
- 0.06771320849657059, -0.015338875353336334, 0.01579570211470127, -0.1073533296585083,
- 0.0578201524913311, 0.04280582070350647, -0.034437987953424454, 0.0414537638425827,
- -0.08617495745420456, -0.0684681162238121, -0.22461099922657013, -0.05103111267089844,
- -0.0830523893237114, 0.08419550210237503, -0.09851086139678955, -0.04046303406357765,
- 0.01952698640525341, 0.003088129684329033, 0.09596425294876099, 0.04042757302522659,
- -0.05047101899981499, -0.02249714732170105, -0.03126465156674385, 0.003956269938498735,
- -0.010823030956089497, -0.002691488480195403, 0.19019126892089844, -0.08852969855070114,
- 0.027151284739375114, 0.11325371265411377, -0.086346335709095, 0.47091004252433777,
- 0.02635136805474758, -0.036002665758132935, -0.01325390487909317, 0.10318315774202347,
- 0.04416004195809364, 0.04567622020840645, 0.05777476727962494, -0.03203067556023598,
- 0.018600085750222206, -0.03490942716598511, 0.005991570185869932, 0.08474940061569214,
- 0.023172905668616295, -0.006682520732283592, 0.04698610305786133, -0.010970278643071651,
- -0.09342696517705917, 0.02956664375960827, -0.048451390117406845, 0.10052734613418579,
- 0.05196532979607582, -0.015565539710223675, 0.011291365139186382, 0.09241408854722977,
- -0.026308415457606316, 0.04270392656326294, -0.05518411472439766, 0.016008935868740082,
- 0.015936674550175667, 0.04344191774725914, -0.0005752791767008603, 0.04655100405216217,
- -0.06672962009906769, -0.008288189768791199, 0.04491746425628662, 0.0819256454706192,
- -0.015628965571522713, 0.003364529460668564, 0.06652522832155228, 0.10408750176429749,
- -0.07670111209154129, -0.021219005808234215, -0.06336334347724915, -0.04280245676636696,
- -0.009728523902595043, -0.029404565691947937, 0.03481166437268257, -0.07368633896112442,
- -0.25250813364982605, 0.007972698658704758, 0.07443425804376602, -0.013507473282516003,
- -0.018232569098472595, -0.013333253562450409, -0.09517016261816025, 0.02519659511744976,
- -0.033936988562345505, -0.021994108334183693, 0.07645154744386673, 0.007311744149774313,
- 0.046847518533468246, 0.08288823813199997, 0.05814540386199951, -0.05722392722964287,
- -0.038911234587430954, -0.0008072617929428816, -0.009054218418896198,
- 0.07284436374902725, -0.12896418571472168, -0.06325658410787582, 0.03312588855624199,
- 0.02260267175734043, 0.6871841549873352, 0.14079947769641876, 0.17330054938793182,
- -0.017591815441846848, -0.048402879387140274, 0.1942933201789856, 0.002783508040010929,
- 0.04882947728037834, -0.08431646972894669, -0.07019871473312378, 0.0025116661563515663,
- -0.08443868160247803, -0.04719400033354759, 0.040954045951366425, 0.02658320777118206,
- 0.11417966336011887, 0.05733240768313408, 0.12712125480175018, -0.023270592093467712,
- -0.11093977093696594, 0.0027733768802136183, 0.07471701502799988, 0.02544214017689228,
- -0.11040101200342178, -0.02614627778530121, 0.04315795376896858, 0.10312030464410782,
- -0.06489091366529465, 0.02115345001220703, -0.07354900985956192, 0.04751792550086975,
- -0.014343153685331345, 0.017991503700613976, -0.05210666358470917, 0.044329386204481125,
- 0.07189086824655533, 0.09127163887023926, -0.03072691708803177, -0.0985141173005104,
- -0.03562771901488304, 0.11951315402984619, 0.012699938379228115, -0.05781550332903862,
- 0.06379682570695877, -0.08188291639089584, 0.04555231332778931, 0.01904861442744732,
- 0.15768976509571075, -0.11107945442199707, 0.012000815011560917, 0.011423654854297638,
- -0.0017821105429902673, 0.048216257244348526, -0.020213428884744644,
- -0.08353957533836365, -0.07776582986116409, 0.08126985281705856, 0.023578500375151634,
- 0.10762522369623184, 0.09118476510047913, -0.03527139872312546, 0.04860309883952141,
- 0.0690658912062645, 0.02333899401128292, -0.01882181502878666, 0.07562273740768433,
- 0.08234693855047226, -0.06088325381278992, -0.00995662808418274, 0.03370242938399315,
- 0.03670055791735649, 0.05965146794915199, 0.015139120630919933, 0.05467687174677849,
- 0.013224574737250805, -0.030966654419898987, 0.0107688307762146, 0.017572464421391487,
- 0.029794378206133842, 0.0946592167019844, -0.05778468772768974, -0.026009509339928627,
- -0.02230616845190525, -0.008560610003769398, -0.005954580381512642,
- -0.02920103259384632, 0.08325467258691788, 0.0968238040804863, 0.07531578838825226,
- 0.045929864048957825, 0.06920094043016434, 0.07986372709274292, 0.024658257141709328,
- 0.016810154542326927, 0.05279732868075371, -0.05045586824417114, -0.12483998388051987,
- -0.027918405830860138, -0.012412294745445251, 0.050178412348032, 0.050663311034440994,
- -0.06647706031799316, -0.027934329584240913, -0.015914835035800934,
- -0.05531516671180725, -0.07526197284460068, -0.03188076987862587, 0.00861984770745039,
- 0.035799022763967514, -0.08642476797103882, -0.11513601988554001, -0.09081237763166428,
- 0.02297831140458584, 0.10748668760061264, 0.015545341186225414, -0.023351354524493217,
- -0.11747745424509048, -0.002903459593653679, -0.029836008325219154, 0.05100863799452782,
- -0.014118471182882786, 0.02589607425034046, -0.007141666952520609, -0.0662941262125969,
- 0.026461517438292503, 0.0002766568213701248, -0.026468195021152496,
- -0.08487387746572495, -0.06331203132867813, -0.036460693925619125, 0.016628725454211235,
- 0.028401993215084076, -0.050818055868148804, 0.04298853501677513, 0.02300584502518177,
- 0.050302714109420776, -0.03245054930448532, -0.03239968791604042, 0.05909179151058197,
- -0.05639198422431946, -0.01044303085654974, 0.09043281525373459, 0.009416596032679081,
- 0.01860426738858223, 0.0016014223219826818, -0.06311457604169846, -0.04678924009203911,
- -0.0002598936262074858, -0.06233704462647438, 0.04280127212405205,
- -0.016177773475646973, -0.013594351708889008, -0.029561832547187805,
- 0.019204383715987206, 0.06640879064798355, -0.046218063682317734, -0.06029399856925011,
- -0.0801771879196167, 0.13977648317813873, -0.022806139662861824, -0.01955673098564148,
- 0.04695248231291771, -0.05810873582959175, 0.044811949133872986, -0.007340320851653814,
- -0.005605930462479591, 0.07151162624359131, 0.06358914822340012, -0.0393708311021328,
- 0.028003334999084473, 0.047876838594675064, -0.013329912908375263,
- -0.017229562625288963, 0.08714572340250015, 0.41907253861427307, -0.15803347527980804,
- 0.08338803052902222, 0.10057947039604187, 0.007187491748481989, 0.06626498699188232,
- -0.04005918279290199, 0.06698521226644516, 0.06241898238658905, 0.09831418842077255,
- 0.11968397349119186, -0.03922082111239433, -0.005415849853307009, -0.03601492941379547,
- 0.10634271055459976, 0.00700984476134181, 0.03398922085762024, -0.027222469449043274,
- -0.07893142849206924, 0.021941425278782845, 0.018537934869527817, -0.07514921575784683,
- 0.01094085443764925, -0.04040491208434105, -0.10620436072349548, 0.01812390424311161,
- 0.02872680313885212, 0.029851363971829414, -0.020640207454562187, 0.018924308940768242,
- -0.03958144411444664, 0.05829642340540886, -0.006401728838682175, 0.0724918320775032,
- -0.07968439161777496, 0.031047174707055092, -0.08067885786294937, -0.09571114182472229,
- 0.10595109313726425, -0.002507020952180028, 0.04592391848564148, 0.0628497526049614,
- -0.01152960117906332, 0.05825226381421089, -0.022370776161551476, -0.04849324747920036,
- 0.014555131085216999, 0.01860584132373333, 0.0265819039195776, 0.10014083981513977,
- 0.16876578330993652, -0.028076985850930214, -0.050638556480407715, -0.08226332813501358,
- 0.07081541419029236, 0.07424860447645187, -0.02395121566951275, 0.013644921593368053,
- 0.017970694229006767, -0.010856087319552898, -0.0027364343404769897,
- -0.04549847170710564, -0.08871065825223923, 0.02201399952173233, -0.049683552235364914,
- 0.09542125463485718, 0.00031869797385297716, -0.041795190423727036,
- -0.14993996918201447, -0.043128278106451035, -0.032553669065237045,
- 0.004684891551733017, 0.13379548490047455, -0.04067115858197212, 0.0372907854616642,
- 0.01667364500463009, -0.03230424225330353, 0.014907914213836193, -0.08111464232206345,
- 0.011524085886776447, -0.05219860374927521, 0.02665506862103939, 0.037080615758895874,
- 0.02495049498975277, -0.057134028524160385, 0.091854028403759, -0.11675325036048889,
- 0.05037377402186394, 0.04021922126412392, 0.005509732291102409, 0.055717263370752335,
- -0.04295504465699196, 0.045413896441459656, 0.011742498725652695, -0.04687311127781868,
- 0.016624338924884796, -0.04123368859291077, -0.08345630764961243, -0.0961933508515358,
- -0.09590920060873032, -0.03781033679842949, -0.0801379382610321, 0.056234341114759445,
- -0.09425356239080429, -0.018745312467217445, -0.041001591831445694,
- 0.020251816138625145, 0.0110555374994874, 0.061725687235593796, 0.01338551938533783,
- -0.13945847749710083, 0.0024531104136258364, -0.02467752806842327, 0.07548880577087402,
- -0.039951201528310776, -0.07010579854249954, 0.03137466311454773, 0.11090987920761108,
- 0.04264168441295624, -0.006219552829861641, 0.014688928611576557, -0.061380188912153244,
- 0.044741544872522354, -0.13837583363056183, -0.4484085738658905, 0.025885164737701416,
- -0.005724234972149134, 0.06377235800027847, 0.008793474175035954, -0.05501256510615349,
- 0.05663676932454109, -0.0020483832340687513, -0.029342854395508766, 0.0910784974694252,
- -0.06747305393218994, 0.012656479142606258, 0.008358483202755451, -0.07342496514320374,
- -0.008150366134941578, -0.10219988971948624, -0.03272033855319023, 0.029233327135443687,
- -0.02995877154171467, -0.07379128783941269, -0.070942223072052, 0.032662536948919296,
- -0.0019417520379647613, 0.0040490105748176575, -0.026165202260017395,
- 0.032450009137392044, -0.07604627311229706, -0.06667059659957886, -0.003066091565415263,
- 0.03127552941441536, 0.05140771344304085, -0.06375221163034439, -0.011152118444442749,
- 0.07492905855178833, -0.012532847933471203, 0.1675363928079605, 0.03127114102244377,
- 0.06942196935415268, -0.07495289295911789, 0.07997813075780869, 0.05578656494617462,
- 0.1859300136566162, -0.05180457606911659, 0.038977209478616714, 0.0034391209483146667,
- 0.09858331829309464, 0.03279383108019829, 0.03556602820754051, -0.02851966768503189,
- -0.004818985238671303, 0.0063202097080647945, -0.004656220320612192,
- 0.09354183822870255, -0.07972929626703262, -0.023758945986628532, -0.026720315217971802,
- -0.005778742488473654, -0.01656133495271206, 0.030855374410748482, 0.18301601707935333,
- 0.04195219650864601, 0.024477386847138405, 0.023282354697585106, -0.06394688040018082,
- 0.004885109141469002, -0.06554726511240005, -0.10467865318059921, -0.027316858991980553,
- -0.01940462552011013, -0.0004209342005196959, -0.041688140481710434,
- -0.11134279519319534, -0.019476812332868576, -0.05229661986231804,
- -0.0022048417013138533, 0.11389589309692383, -0.02324371039867401, 0.005855326075106859,
- -0.010056965053081512, 0.12791651487350464, 0.05976293608546257, 0.025799399241805077,
- 0.06616935133934021, 0.06252650171518326, 0.0221422016620636, -0.013124407269060612,
- -0.048878561705350876, -0.08210449665784836, 0.004443457815796137, 0.12448731809854507,
- -0.05035274103283882, 0.09458925575017929, 0.02517353743314743, -0.05751119181513786,
- -0.0575876347720623, 0.05457918718457222, 0.007748218718916178, 0.04256896302103996,
- -0.4529998004436493, -0.01149489264935255, 0.13065271079540253, 0.0030033469665795565,
- 0.03293716534972191, 0.0874299630522728, 0.025696182623505592, -0.03769228234887123,
- -0.04283757135272026, -0.07177815586328506, 0.18486179411411285, 0.0011127510806545615,
- 0.028324231505393982, -0.11820045858621597, 0.04706086590886116, 0.07763365656137466,
- -0.00931920949369669, -0.011639493517577648, 0.0761258527636528, -0.18523217737674713,
- -0.01340945903211832, -0.0528615303337574, 0.18533189594745636, 0.05022987350821495,
- 0.020788103342056274, 0.059878215193748474, -0.06600715965032578, 0.042239800095558167,
- 0.047593336552381516, -0.0001734416000545025, 0.05624967813491821,
- -0.014922638423740864, -0.02925913967192173, 0.12346453219652176, 0.07727771997451782,
- 0.06397504359483719, 0.0023196812253445387, 11.971423149108887, 0.06590074300765991,
- 0.07949235290288925, -0.10215169191360474, 0.03350071236491203, -0.0389975905418396,
- 0.036686405539512634, -0.09980086237192154, 0.0339098758995533, 0.10833527892827988,
- -0.032735396176576614, -0.025938257575035095, -0.03488905355334282,
- -0.09247120469808578, 0.018525756895542145, -0.07502657920122147, -0.07903344184160233,
- -0.028732730075716972, 0.02381666749715805, -0.06387535482645035, 0.010879713110625744,
- -0.009039471857249737, 0.05537554994225502, 0.06056083366274834, -0.09324455261230469,
- 0.0509880967438221, 0.0446525402367115, -0.01614687405526638, -0.013851319439709187,
- -0.0025552932638674974, -0.0007591337780468166, 0.010255918838083744,
- 0.027507362887263298, 0.01634371466934681, -0.02908065728843212, 0.07580506056547165,
- 0.018560081720352173, 0.07276184111833572, 0.013782535679638386, 0.06836413592100143,
- 0.010854477994143963, 0.045963674783706665, 0.04185164347290993, 0.042167987674474716,
- 0.038651127368211746, 0.03082982636988163, 0.06775105744600296, 0.10854857414960861,
- 0.008534920401871204, 0.039216138422489166, 0.10368907451629639, -0.029782241210341454,
- 0.11418762058019638, 0.06698339432477951, -0.008701793849468231, 0.05768930912017822,
- -0.015927476808428764, -0.07162266969680786, 0.07194923609495163, 0.055038075894117355,
- -0.05161897838115692, 0.06966666877269745, 0.020597195252776146, 0.09575086832046509,
- 0.03507458046078682, 0.010509957559406757, 0.08808356523513794, 0.0637836828827858,
- -0.1536910980939865, -0.0667329952120781, 0.03193042799830437, -0.12265671044588089,
- -0.07843495160341263, 0.0573292076587677, 0.09959951788187027, -0.04014546424150467,
- 0.051979754120111465, -0.04731243476271629, 0.039806827902793884, -0.013687986880540848,
- -0.0058442666195333, 0.03284024819731712, -0.014460597187280655, 0.01692092977464199,
- 0.03724569454789162, 0.001633153180591762, 0.15029560029506683, 0.0923333540558815,
- -0.021158941090106964, -0.10053487867116928, -0.07147606462240219, 0.08657202124595642,
- -0.02582036517560482, -0.06352899968624115, 0.008694549091160297, -0.06296620517969131,
- 0.04681268334388733, -0.1626024842262268, 0.08313778042793274, 0.10330188274383545,
- -0.08859968930482864, -0.030480071902275085, -0.044582609087228775, 0.06258107721805573,
- 0.01451555173844099, 0.02218189276754856, -0.06502484530210495, 0.023201072588562965,
- -0.011382214725017548, 0.038325220346450806, -0.014090023934841156, 0.08916378021240234,
- 0.053630147129297256, -0.07989121228456497, 0.053888365626335144, 0.08092101663351059,
- -0.04049627110362053, -0.03512895479798317, 0.06098388507962227, 0.03680521249771118,
- -0.10289528965950012, -0.05313248932361603, -0.038670338690280914, -0.06569979339838028,
- -0.033837899565696716, -0.025853656232357025, 0.0006001647561788559,
- 0.045839324593544006, -0.07061758637428284, -0.0509219653904438, 0.018214866518974304,
- 0.039682019501924515, 0.10326095670461655, 0.01922583021223545, 0.0783258005976677,
- -0.07077793031930923, -0.02817869745194912, 0.06849825382232666, 0.021138720214366913,
- 0.0702160894870758, 0.005289068911224604, -0.00373372551985085, -0.05351359769701958,
- -0.09939970821142197, 0.013217743486166, 0.067950040102005, 0.05540822446346283,
- 0.03690658137202263, 0.05269171670079231, -0.08305639028549194, -0.03345503285527229,
- 0.12248578667640686, 0.032173436135053635, 0.032901469618082047, 0.03817120939493179,
- -0.0901896134018898, -0.023475365713238716, 0.1177717074751854, -0.05214656516909599,
- 0.00212707556784153, 0.05823429301381111, -0.05021603778004646, 0.05982942506670952,
- 0.08945227414369583, 0.06350453943014145, 0.05866560712456703, 0.03504718467593193,
- -0.000772520899772644, -0.0193355530500412, -0.01304071769118309, 0.024267377331852913,
- -0.01131883542984724, -0.11043056100606918, -0.06918787956237793, 0.04572984576225281,
- 0.084952212870121, -0.01964113861322403, -0.10681045800447464, -0.004029697272926569,
- -0.07555291801691055
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 297,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 151,
- "similarity": 0.9970865845680237
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 4,
- "similarity": 0.9970371723175049
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 231,
- "similarity": 0.9970312118530273
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Brad Templeton"],
- "epoch_date_downloaded": 1660694400,
- "epoch_date_modified": 1660694400,
- "epoch_date_submitted": 1660694400,
- "flag": null,
- "report_number": 1923,
- "source_domain": "forbes.com",
- "submitters": ["Thomas Giallella (CSET)"],
- "title": "EasyMile Self-Driving Shuttle Banned After Sudden Stop Hurts Passenger — Are Seatbelts Needed?",
- "url": "https://www.forbes.com/sites/bradtempleton/2020/03/03/easymile-self-driving-shuttle-banned-after-sudden-stop-hurts-passenger---are-seatbelts-needed/?sh=789263217ad5"
- },
- {
- "__typename": "Report",
- "authors": ["Sean O'Kane"],
- "epoch_date_downloaded": 1660694400,
- "epoch_date_modified": 1660694400,
- "epoch_date_submitted": 1660694400,
- "flag": null,
- "report_number": 1922,
- "source_domain": "theverge.com",
- "submitters": ["Thomas Giallella (CSET)"],
- "title": "Self-driving shuttle company ordered to stop carrying passengers after injury",
- "url": "https://www.theverge.com/2020/2/26/21154532/easymile-columbus-ohio-nhtsa-suspension-injury"
- },
- {
- "__typename": "Report",
- "authors": ["Mark Ferenchik"],
- "epoch_date_downloaded": 1660694400,
- "epoch_date_modified": 1660694400,
- "epoch_date_submitted": 1660694400,
- "flag": null,
- "report_number": 1921,
- "source_domain": "dispatch.com",
- "submitters": ["Thomas Giallella (CSET)"],
- "title": "Smart Columbus halts self-driving shuttle test after unplanned stop",
- "url": "https://www.dispatch.com/story/business/information-technology/2020/02/24/smart-columbus-halts-self-driving/1643553007/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "yuen-ler-chow",
- "name": "Yuen Ler Chow"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "yuen-ler-chow",
- "name": "Yuen Ler Chow"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "thefacetag-app-users",
- "name": "TheFaceTag app users"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [129, 146, 147, 149, 171, 196, 163, 151, 284, 296, 267],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1932, 1931, 1930],
- "vector": [
- -0.058731917291879654, 0.0538904182612896, 0.01997351460158825, -0.097872294485569,
- 0.11057254672050476, -0.02115326188504696, 0.0027714427560567856, 0.04012657329440117,
- 0.07393927127122879, -0.14904628694057465, -0.01651308685541153, 0.030911078676581383,
- 0.0199431125074625, -0.03220270201563835, 0.0007255423697642982, 0.03054344654083252,
- -0.05649867653846741, -0.003433416597545147, 0.005627134349197149, -0.06933843344449997,
- -0.06487998366355896, 0.011659207753837109, 0.0007464885711669922, 0.09558775275945663,
- -0.04472050443291664, 0.037279460579156876, 0.09046585112810135, 0.09023527055978775,
- -0.035897012799978256, 0.006331434473395348, -0.017293917015194893,
- -0.07522463798522949, 0.1107754036784172, -0.005317131523042917, 0.025573307648301125,
- 0.09209796041250229, 0.056816697120666504, -0.054760050028562546, -0.02111506462097168,
- 0.011913678608834743, 0.001079463749192655, 0.1421004831790924, 0.021878493949770927,
- -0.044961970299482346, 0.09483305364847183, -0.009260294958949089, 0.01485593244433403,
- 0.058368537575006485, -0.0005214105476625264, 0.013833028264343739,
- 0.011742553673684597, 0.019780071452260017, -0.05505465343594551, 0.025960147380828857,
- -0.13190357387065887, 0.07293721288442612, 0.028106750920414925, -0.0374772734940052,
- 0.06703690439462662, -0.06990214437246323, 0.01979464665055275, -0.10857117921113968,
- -0.05432155728340149, -0.0413576103746891, 0.08312693238258362, -0.05183416232466698,
- -0.06012255325913429, 0.012955904938280582, 0.03352116420865059, 0.01578035205602646,
- 0.019406097009778023, -0.012126374058425426, -0.012312713079154491,
- -0.054010361433029175, -0.029116997495293617, -0.030457621440291405,
- 0.008218072354793549, 0.23768524825572968, -0.06643370538949966, 0.013550709001719952,
- 0.09443774819374084, -0.06581155955791473, 0.3045836091041565, 0.031401377171278,
- -0.03184374049305916, 0.02325323224067688, 0.10871105641126633, 0.04438714310526848,
- 0.04242618754506111, 0.03758111223578453, 0.02347109466791153, 0.018862875178456306,
- -0.05608883500099182, 0.00101452914532274, 0.048863787204027176, 0.04613956809043884,
- 0.013289148919284344, -0.013768866658210754, -0.010303926654160023,
- -0.04947065934538841, 0.005495155695825815, -0.04836515709757805, 0.10339628905057907,
- 0.056395843625068665, -0.035046275705099106, -0.014577853493392467,
- 0.028875479474663734, -0.05383468046784401, -0.0004284089955035597,
- -0.027096295729279518, -0.021957552060484886, -0.016703279688954353,
- 0.02933874912559986, -0.0008700049365870655, 0.011058819480240345,
- -0.013497072272002697, 0.023274898529052734, 0.024901142343878746, 0.08142366260290146,
- 0.0973920002579689, 0.003684260882437229, 0.06874185055494308, 0.06725045293569565,
- -0.024735024198889732, -0.05184091627597809, -0.013679935596883297,
- -0.028999051079154015, -0.010189764201641083, -0.03364378586411476,
- 0.047018468379974365, -0.02945525199174881, -0.1875523328781128, 0.023817332461476326,
- 0.021922120824456215, -0.018693016842007637, -0.055083706974983215, 0.06702467054128647,
- -0.02825302444398403, 0.03380735218524933, 0.0026023283135145903, -0.02117995359003544,
- 0.04682013764977455, 0.05421827733516693, 0.005299076437950134, 0.08261450380086899,
- 0.01519189402461052, -0.014759513549506664, -0.06845421344041824,
- -0.00039312057197093964, -0.0324026383459568, 0.08848129957914352, -0.1140446662902832,
- -0.05441189929842949, 0.004738340154290199, -0.04265845939517021, 0.5446130037307739,
- 0.04387436434626579, 0.09978195279836655, -0.01917857863008976, -0.007495774421840906,
- 0.1474330872297287, -0.017029037699103355, 0.03966960310935974, -0.03541367128491402,
- -0.006931627169251442, 0.023318713530898094, -0.0577537901699543, -0.01770377717912197,
- -0.001965967006981373, -0.01198957022279501, 0.061501652002334595, 0.02122207172214985,
- 0.11031987518072128, 0.007883180864155293, -0.06264790147542953, -0.02348429523408413,
- 0.0012345003196969628, 0.04509706795215607, -0.11185858398675919, -0.03572966158390045,
- 0.0032270525116473436, 0.021059930324554443, -0.08038688451051712,
- -0.022862887009978294, -0.016255216673016548, 0.08229026943445206, 0.011383517645299435,
- 0.05269758030772209, 0.03032301925122738, 0.018462562933564186, 0.010374467819929123,
- 0.023135609924793243, 0.01875336468219757, -0.043580565601587296, -0.01809963770210743,
- 0.09693663567304611, -0.006573204416781664, -0.03642674908041954, 0.08610696345567703,
- -0.07278511673212051, 0.007313929498195648, -0.008410968817770481, 0.11490631103515625,
- -0.10249102115631104, 0.08393954485654831, -0.010450173169374466,
- -0.0051263244822621346, 0.08323117345571518, -0.024775773286819458,
- -0.07120069116353989, -0.05360696092247963, 0.05909489095211029, 0.036355551332235336,
- 0.06334494799375534, 0.049779459834098816, -0.015144668519496918, -0.014301221817731857,
- 0.012624204158782959, 0.045717548578977585, -0.059956688433885574, 0.055526722222566605,
- 0.07095267623662949, -0.034394193440675735, -0.0015542315086349845,
- 0.009915345348417759, 0.03513386473059654, 0.008999362587928772, -0.013329955749213696,
- 0.0387214757502079, -0.00003238084536860697, -0.0159181896597147, 0.0107831209897995,
- 0.0068466197699308395, 0.01869814284145832, 0.09697449207305908, -0.08307516574859619,
- -0.023771366104483604, -0.06164506450295448, -0.0310653243213892, 0.025722062215209007,
- -0.07243824750185013, 0.05830767750740051, 0.07317786663770676, 0.051516804844141006,
- 0.011693891137838364, 0.05868479982018471, 0.05007306858897209, 0.09723880887031555,
- 0.01692250743508339, 0.09856880456209183, -0.03191356360912323, 0.008278514258563519,
- -0.027913881465792656, -0.03370141237974167, 0.015541363507509232, -0.03172650933265686,
- -0.06251608580350876, -0.03618208318948746, -0.0759502723813057, -0.07253486663103104,
- -0.059568699449300766, -0.01992298662662506, 0.027019118890166283, 0.023674488067626953,
- -0.03588956221938133, -0.12214694172143936, -0.05075560137629509, 0.005889755208045244,
- 0.06829473376274109, -0.00986041035503149, -0.028735585510730743, -0.10069241374731064,
- 0.005744843278080225, 0.002975124167278409, 0.047285620123147964, -0.011527462862432003,
- -0.030282042920589447, -0.06858382374048233, -0.08424777537584305, 0.008300709538161755,
- 0.0004506756959017366, 0.04853535071015358, 0.0058679222129285336,
- -0.0010640403488650918, -0.03210126608610153, -0.026821253821253777,
- -0.04317072033882141, -0.02298351563513279, 0.01884908601641655, 0.04350173473358154,
- 0.041384220123291016, 0.034904200583696365, -0.005628491286188364, 0.02624426782131195,
- -0.036445196717977524, 0.011788350529968739, 0.06887264549732208, -0.030405303463339806,
- 0.027823785319924355, -0.004986433777958155, -0.07491081207990646,
- -0.057798389345407486, -0.014871356077492237, -0.03470830246806145, 0.05122917890548706,
- -0.03794744983315468, -0.008276068605482578, -0.036096807569265366,
- -0.0018996619619429111, 0.04139602556824684, -0.03238830342888832,
- -0.018682429566979408, -0.0643574446439743, 0.09907254576683044, -0.02248263545334339,
- 0.01681547798216343, 0.02401156909763813, -0.09583937376737595, 0.06293448060750961,
- 0.004642631392925978, -0.00045075081288814545, 0.009126327000558376,
- 0.048313554376363754, 0.02162274904549122, 0.013332150876522064, 0.04570735618472099,
- -0.018943285569548607, 0.006920959334820509, 0.05519859492778778, 0.4046403467655182,
- -0.19582296907901764, 0.07048390060663223, 0.053336914628744125, 0.031750354915857315,
- 0.023236289620399475, -0.021367115899920464, 0.0483112595975399, 0.05108346417546272,
- 0.10849263519048691, 0.15126420557498932, -0.043148066848516464, -0.047529611736536026,
- -0.05090739205479622, 0.055644840002059937, 0.04164290055632591, 0.02837584726512432,
- -0.024506231769919395, -0.03382178768515587, -0.04180833324790001, 0.04434703290462494,
- -0.02044595591723919, 0.03176906332373619, 0.006661798804998398, -0.04481730982661247,
- 0.038691673427820206, 0.04148434102535248, 0.030355453491210938, -0.026422081515192986,
- 0.04096202924847603, -0.06683927029371262, 0.0320260152220726, 0.04969523847103119,
- 0.06758183240890503, -0.08224308490753174, 0.018987741321325302, -0.08630924671888351,
- -0.05403052642941475, 0.03842438757419586, -0.025016849860548973, 0.04491956904530525,
- 0.04864034056663513, 0.0024695228785276413, 0.010409961454570293, -0.03452897444367409,
- -0.024642348289489746, -0.011773738078773022, 0.07903865724802017, 0.03128211572766304,
- 0.06383099406957626, 0.1248476505279541, -0.008987758308649063, -0.028742795810103416,
- -0.039489638060331345, 0.0540684275329113, 0.07746392488479614, -0.017472585663199425,
- 0.03125151991844177, 0.004621981177479029, -0.025623882189393044, 0.019195614382624626,
- -0.020320408046245575, -0.0606737919151783, -0.0021774449851363897,
- -0.05108456686139107, 0.07328461855649948, 0.029636213555932045, -0.03663082793354988,
- -0.17194201052188873, -0.0648864135146141, -0.026698961853981018, 0.027122892439365387,
- 0.0902852788567543, -0.04250242933630943, 0.010881802998483181, 0.022968731820583344,
- 0.012790764681994915, -0.007373531814664602, -0.05322633311152458, 0.031060807406902313,
- -0.015069432556629181, 0.01665917970240116, 0.0857515037059784, 0.0523807555437088,
- -0.02107418142259121, -0.009976631961762905, -0.07913502305746078, 0.010332108475267887,
- -0.015108994208276272, -0.07231854647397995, 0.009379982016980648,
- -0.011997547931969166, 0.03540804609656334, -0.020752616226673126,
- -0.062462225556373596, -0.0024020213168114424, -0.0032739711459726095,
- -0.029712118208408356, -0.04859491065144539, -0.058791399002075195, -0.0480000376701355,
- -0.06672226637601852, 0.07019198685884476, -0.05363266542553902, -0.013227907009422779,
- -0.009734676219522953, -0.00659190071746707, -0.006531050428748131, 0.04032925143837929,
- -0.00041660977876745164, -0.09913540631532669, -0.0009116673027165234,
- -0.032308172434568405, 0.01929551362991333, -0.031103400513529778,
- -0.028375910595059395, 0.0005073652719147503, 0.10426303744316101, 0.04115118458867073,
- -0.04621666669845581, 0.022602742537856102, -0.04838821664452553, 0.07527061551809311,
- -0.09971237182617188, -0.5115458369255066, 0.09323068708181381, 0.04878271743655205,
- 0.027611548081040382, 0.040807295590639114, -0.03748822212219238, 0.05679486319422722,
- 0.017321616411209106, 0.0302415918558836, 0.08470366150140762, -0.04199955239892006,
- -0.01677720434963703, -0.017503870651125908, -0.006511632818728685, 0.02013465017080307,
- -0.05315077304840088, -0.023079978302121162, 0.03726309910416603, 0.03995451703667641,
- -0.018689919263124466, -0.05616031587123871, 0.019432323053479195, 0.002118405420333147,
- 0.002222678391262889, -0.011795374564826488, -0.034945618361234665,
- -0.028354117646813393, -0.06864351779222488, 0.031296782195568085, 0.07774298638105392,
- 0.0036023061256855726, -0.0822933241724968, -0.014187701046466827, 0.00561946677044034,
- -0.011604313738644123, 0.08103659749031067, 0.02899627573788166, -0.038493551313877106,
- -0.037637997418642044, 0.03345682844519615, 0.06702416390180588, 0.19019271433353424,
- -0.014106123708188534, 0.053044069558382034, 0.010572892613708973, 0.12512992322444916,
- 0.029901400208473206, 0.011677448637783527, -0.05471774935722351, 0.0008208022336475551,
- 0.05275239422917366, -0.014759172685444355, 0.0655626431107521, -0.05682893097400665,
- -0.0017550339689478278, 0.03127460554242134, 0.025291867554187775, -0.05691717192530632,
- 0.029883742332458496, 0.15470339357852936, 0.0034504227805882692, 0.013544212095439434,
- 0.0007181192631833255, -0.007567122578620911, 0.012251409702003002, -0.0662384107708931,
- -0.02895483560860157, -0.05556382238864899, -0.006786602083593607, 0.006013835314661264,
- -0.02450621873140335, -0.06407175958156586, -0.0017577687976881862,
- 0.020158765837550163, 0.000312077347189188, 0.05651677027344704, -0.05695061758160591,
- 0.023288661614060402, -0.05274699255824089, 0.10346933454275131, 0.012689654715359211,
- 0.020763276144862175, 0.04403113201260567, 0.09597275406122208, 0.015992676839232445,
- -0.01746998354792595, -0.06519214063882828, -0.017765650525689125,
- -0.0072621614672243595, 0.1137499213218689, -0.04913969710469246, 0.10578783601522446,
- 0.06738261878490448, 0.008590035140514374, -0.035387035459280014, 0.01380001101642847,
- 0.0019472663989290595, 0.05125631019473076, -0.4797053337097168, -0.036117855459451675,
- 0.09132828563451767, -0.049677882343530655, 0.007121566217392683, 0.09085351228713989,
- 0.008432337082922459, 0.0018268820131197572, 0.011088602244853973,
- -0.052550818771123886, 0.0822843685746193, -0.0025456591974943876, 0.08376523852348328,
- -0.0740521028637886, 0.016924897208809853, 0.07543491572141647, -0.0123579241335392,
- -0.01495265681296587, -0.004529997240751982, -0.255092591047287, -0.018760966137051582,
- -0.02587181143462658, 0.16766197979450226, 0.008785177953541279, 0.020205939188599586,
- 0.09290359169244766, -0.0182392168790102, -0.019323302432894707, 0.04472186788916588,
- 0.006255855318158865, 0.04705105721950531, 0.005515197291970253, -0.04346291348338127,
- 0.04060676321387291, 0.07628617435693741, 0.06238825246691704, -0.012457646429538727,
- 11.739001274108887, 0.028041085228323936, 0.06770207732915878, -0.05712112411856651,
- -0.011811576783657074, -0.058291926980018616, 0.015649983659386635,
- -0.06495975703001022, 0.08717714995145798, 0.11093425005674362, -0.001406178460456431,
- -0.056372370570898056, -0.052256613969802856, -0.04411282017827034, 0.04225863516330719,
- -0.04206693172454834, -0.06832145154476166, -0.01632211171090603, 0.07040009647607803,
- -0.023604119196534157, -0.035613518208265305, 0.03393535688519478, 0.049971502274274826,
- 0.031971875578165054, -0.1049845889210701, 0.031158847734332085, -0.0002536177635192871,
- 0.05132521316409111, -0.014292743057012558, 0.08161833882331848, 0.012440805323421955,
- 0.04213349148631096, 0.04707251861691475, 0.0057186526246368885, 0.08325014263391495,
- 0.04651917144656181, 0.027004018425941467, 0.04549716040492058, 0.033500317484140396,
- 0.06948332488536835, 0.010626177303493023, -0.011712265200912952, 0.021326690912246704,
- 0.013894694857299328, 0.05329110845923424, 0.04248832166194916, 0.016661928966641426,
- 0.16129612922668457, 0.021372715011239052, 0.055649757385253906, 0.0892234742641449,
- -0.014347567223012447, 0.10343677550554276, 0.04214533045887947, -0.018224718049168587,
- -0.0008794444729574025, 0.010862871073186398, -0.05823748931288719, 0.06480211764574051,
- 0.009283933788537979, -0.03658647462725639, 0.0970010757446289, 0.06454096734523773,
- 0.06782886385917664, -0.07312243431806564, 0.06608691066503525, 0.05911894142627716,
- 0.07492408901453018, -0.049381356686353683, -0.029471198096871376, 0.05448049306869507,
- -0.07832082360982895, -0.05910913273692131, 0.028070559725165367, 0.07224738597869873,
- -0.001867222017608583, 0.057574883103370667, -0.047915101051330566,
- 0.034698162227869034, -0.03692909702658653, 0.05333493649959564, 0.08919981867074966,
- -0.0497371070086956, 0.01450096070766449, 0.008425296284258366, 0.054348479956388474,
- 0.103107750415802, 0.08910417556762695, 0.006708977278321981, -0.05033416673541069,
- -0.07028820365667343, -0.0029060232918709517, -0.03726435452699661,
- -0.04879172518849373, -0.0008178567513823509, -0.01884813793003559,
- 0.021559884771704674, -0.1227865219116211, 0.08701753616333008, 0.08854087442159653,
- -0.1137968972325325, -0.03926457092165947, -0.028982197865843773, 0.07021405547857285,
- 0.0009930195519700646, 0.04749004915356636, -0.059161003679037094, 0.03271971270442009,
- 0.01653260737657547, 0.016718382015824318, -0.008626330643892288, 0.0418495275080204,
- 0.050925057381391525, -0.07117112725973129, 0.050445038825273514, 0.00765796797350049,
- -0.028995702043175697, -0.012495444156229496, 0.05937030538916588, 0.07016763091087341,
- -0.04597066342830658, -0.042564574629068375, -0.06128429248929024,
- -0.025960303843021393, -0.04500015452504158, -0.029656147584319115,
- 0.0030102189630270004, -0.019654840230941772, -0.04654872417449951,
- -0.005298771429806948, 0.03235722705721855, 0.06986060738563538, 0.05919555947184563,
- -0.0017137173563241959, 0.036398421972990036, -0.006866875570267439,
- -0.039753273129463196, 0.020722193643450737, 0.059483498334884644, 0.06049737334251404,
- -0.09540817886590958, -0.04962891340255737, -0.004113425966352224, -0.13093067705631256,
- 0.013620205223560333, 0.059995170682668686, 0.03514222428202629, 0.051093313843011856,
- 0.025007357820868492, -0.07230866700410843, -0.012845050543546677, 0.08513738960027695,
- 0.026192158460617065, 0.0032761720940470695, 0.024853326380252838, -0.03471509739756584,
- -0.018307579681277275, 0.05885913968086243, -0.031426314264535904, 0.002192865125834942,
- 0.01723560318350792, -0.072268046438694, 0.07700516283512115, 0.0897892490029335,
- 0.024413205683231354, -0.009886273182928562, 0.022709881886839867, 0.012093926779925823,
- 0.05344727635383606, -0.000905816734302789, 0.058630142360925674, -0.03176618739962578,
- -0.07966277003288269, -0.0741637572646141, -0.008686026558279991, 0.06509808450937271,
- 0.02109655551612377, -0.1690831333398819, -0.006866525858640671, -0.002477661706507206
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 298,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Sammy Duggasani", " Io Y. Gilman"],
- "epoch_date_downloaded": 1660867200,
- "epoch_date_modified": 1660867200,
- "epoch_date_submitted": 1660867200,
- "flag": null,
- "report_number": 1932,
- "source_domain": "thecrimson.com",
- "submitters": ["Khoa Lam"],
- "title": "Can I Scan Your Face?",
- "url": "https://www.thecrimson.com/article/2021/10/21/facetag-better-than-zuck/"
- },
- {
- "__typename": "Report",
- "authors": ["Nguyễn Hiếu"],
- "epoch_date_downloaded": 1660867200,
- "epoch_date_modified": 1661126400,
- "epoch_date_submitted": 1660867200,
- "flag": null,
- "report_number": 1931,
- "source_domain": "zingnews.vn",
- "submitters": ["Khoa Lam"],
- "title": "Một ứng dụng của sinh viên Harvard đang gây tranh cãi về đạo đức",
- "url": "https://zingnews.vn/mot-ung-dung-cua-sinh-vien-harvard-dang-gay-tranh-cai-ve-dao-duc-post1272699.html"
- },
- {
- "__typename": "Report",
- "authors": ["Caroline Haskins"],
- "epoch_date_downloaded": 1660694400,
- "epoch_date_modified": 1660867200,
- "epoch_date_submitted": 1660694400,
- "flag": null,
- "report_number": 1930,
- "source_domain": "businessinsider.com",
- "submitters": ["Sonali Pednekar (CSET)", "AIAAIC"],
- "title": "A Harvard freshman made a social networking app called 'The FaceTag.' It's sparked a debate about the ethics of facial recognition.",
- "url": "https://www.businessinsider.com/harvard-freshman-facetag-stokes-facial-recognition-debate-tiktok-mark-zuckerberg-2021-10"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "masayuki-nakamoto",
- "name": "Masayuki Nakamoto"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "unknown",
- "name": "Unknown"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "japanese-pornographic-actors",
- "name": "Japanese pornographic actors"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [298, 296, 129, 146, 171, 163, 151, 284],
- "editor_similar_incidents": [147],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1935],
- "vector": [
- -0.04758675768971443, 0.06288141012191772, -0.012448085471987724, -0.08876427263021469,
- 0.08519995212554932, -0.04535433277487755, 0.015280142426490784, 0.02384699508547783,
- 0.08460907638072968, -0.1249089315533638, 0.003095730673521757, 0.04230494797229767,
- 0.049700137227773666, -0.08222577720880508, 0.01603967882692814, -0.07890360802412033,
- -0.09420756995677948, -0.02616054005920887, -0.01589771918952465, -0.14339935779571533,
- -0.07339362055063248, 0.014529764652252197, 0.05341743677854538, 0.1257852464914322,
- -0.02971070446074009, 0.03439425304532051, 0.11069723963737488, 0.10741408169269562,
- -0.0911770612001419, 0.08397464454174042, -0.0505233071744442, -0.04526175931096077,
- 0.1173185184597969, -0.02293311059474945, 0.03392907232046127, 0.09721562266349792,
- 0.0675094947218895, 0.00497908890247345, -0.006832145154476166, -0.007023999467492104,
- 0.03962326794862747, 0.2052839994430542, -0.019033581018447876, -0.026683904230594635,
- 0.06470236927270889, -0.025254763662815094, 0.039872705936431885, 0.02691521868109703,
- -0.00810042954981327, -0.03005031868815422, -0.022222260013222694,
- -0.041356127709150314, -0.06757079809904099, 0.06120246648788452, -0.12722986936569214,
- 0.07533421367406845, 0.04129784181714058, -0.00775112584233284, 0.0513359010219574,
- -0.0838807001709938, -0.045950956642627716, -0.23143120110034943, -0.00831818301230669,
- -0.10661697387695312, 0.06966183334589005, -0.11416729539632797, -0.026891233399510384,
- 0.03069348633289337, 0.04082271084189415, 0.017227353528141975, 0.04657130688428879,
- -0.08600596338510513, 0.03174550086259842, -0.01792703941464424, 0.03106026165187359,
- -0.05807364359498024, 0.05678876116871834, 0.15248160064220428, -0.08500859141349792,
- 0.0364336222410202, 0.10427834093570709, -0.08668260276317596, 0.45431405305862427,
- 0.017048140987753868, -0.03110964223742485, 0.008585072122514248, 0.1005486324429512,
- 0.018916552886366844, 0.028514917939901352, 0.03662637621164322, -0.022553863003849983,
- 0.02600090391933918, -0.0886288657784462, 0.0008105855667963624, 0.06350389868021011,
- 0.026655368506908417, -0.007403575349599123, 0.03660077229142189, -0.0353834442794323,
- -0.06013867259025574, 0.0100824274122715, -0.05186033248901367, 0.11457979679107666,
- 0.05973345786333084, -0.038517046719789505, 0.018970400094985962, 0.1053045392036438,
- -0.08461715281009674, 0.0499754324555397, -0.04509727284312248, 0.02567504718899727,
- 0.043052274733781815, 0.11752194166183472, -0.023779381066560745, 0.010170014575123787,
- -0.07203546911478043, 0.010716307908296585, 0.02143283374607563, 0.06853839755058289,
- 0.019299985840916634, 0.0033773486502468586, 0.0433993861079216, 0.1292022317647934,
- -0.08525929600000381, 0.062498789280653, -0.06052027642726898, -0.09835503995418549,
- -0.02673954702913761, 0.023091522976756096, -0.0037734101060777903, -0.0332782082259655,
- -0.23668749630451202, 0.010096678510308266, 0.0242981668561697, 0.04512486606836319,
- -0.022905606776475906, 0.03108556754887104, -0.08069749176502228, 0.009048325009644032,
- -0.02209141105413437, -0.007666076999157667, 0.044837139546871185, 0.07075339555740356,
- -0.004651671275496483, 0.1275705099105835, 0.050942856818437576, -0.018454303964972496,
- -0.060019709169864655, -0.006527770776301622, -0.018923673778772354, 0.093051977455616,
- -0.12451185286045074, -0.05061744898557663, 0.008333267644047737, -0.049565933644771576,
- 0.6670036315917969, 0.11190128326416016, 0.11680836230516434, -0.019745543599128723,
- 0.02254411205649376, 0.18737028539180756, -0.004120358265936375, 0.08588694781064987,
- -0.059279877692461014, -0.05287220701575279, -0.00936407595872879,
- -0.013470027595758438, 0.007856414653360844, 0.039856038987636566, 0.0221778005361557,
- 0.14352993667125702, 0.015395409427583218, 0.1216258853673935, 0.03983693569898605,
- -0.07581336796283722, -0.021188242360949516, 0.02632756717503071, 0.011492216028273106,
- -0.07042675465345383, -0.012247777543962002, 0.04097463935613632, 0.09700369089841843,
- -0.034259188920259476, 0.020026450976729393, -0.006984627805650234,
- 0.017030563205480576, -0.08174800127744675, 0.05995292589068413, 0.00637464877218008,
- 0.04401584342122078, 0.0783655047416687, 0.06839030981063843, -0.008604326285421848,
- -0.1460157036781311, -0.10430361330509186, 0.12176214903593063, -0.022811491042375565,
- -0.002370822709053755, 0.05805164575576782, -0.08958406746387482, 0.029653623700141907,
- 0.038649216294288635, 0.14037570357322693, -0.11500617116689682, 0.04093211144208908,
- -0.0027751412708312273, -0.021145595237612724, 0.06194431334733963,
- 0.041863106191158295, -0.07982974499464035, -0.1053297147154808, -0.005038499366492033,
- 0.050409700721502304, 0.11063341051340103, 0.002951462985947728, -0.043261460959911346,
- 0.05548731982707977, -0.015314240008592606, -0.03383594751358032, -0.05812780559062958,
- 0.10818058252334595, 0.032098691910505295, -0.024404028430581093, -0.056524649262428284,
- 0.06131753325462341, 0.004636809695512056, 0.046517305076122284, 0.013815080747008324,
- 0.012700770050287247, -0.0003578003670554608, 0.0003939588204957545,
- 0.11848600208759308, -0.029643699526786804, 0.021149437874555588, 0.06649193912744522,
- -0.14274218678474426, -0.07109620422124863, -0.02675563097000122, -0.0271669439971447,
- -0.038327183574438095, -0.03933686017990112, 0.06433166563510895, 0.09147189557552338,
- 0.084260493516922, 0.08182062208652496, 0.06635018438100815, 0.048406414687633514,
- 0.015507224015891552, 0.06922881305217743, 0.04116986691951752, -0.006238929927349091,
- -0.0015552160330116749, -0.04561099782586098, 0.021573679521679878, 0.08156225085258484,
- 0.0452607199549675, -0.0574059821665287, -0.04065006598830223, -0.02904537506401539,
- -0.09625671058893204, -0.07954563200473785, -0.005490376614034176,
- -0.0057123820297420025, 0.07135296612977982, -0.06429075449705124, -0.05710744485259056,
- -0.08009397238492966, 0.04351148381829262, 0.02274712547659874, -0.04242180660367012,
- -0.03503918647766113, -0.07767806202173233, 0.06847120076417923, -0.03945326432585716,
- 0.06534629315137863, -0.024889905005693436, 0.041794586926698685, -0.007219967432320118,
- -0.09442798048257828, 0.031457819044589996, 0.011829927563667297, -0.07456008344888687,
- -0.004360859282314777, -0.0846579372882843, -0.0010087406262755394,
- -0.015466318465769291, -0.010207884944975376, -0.021693287417292595,
- 0.049928151071071625, 0.03562048450112343, 0.06677926331758499, -0.00577281741425395,
- -0.016424598172307014, 0.05424685403704643, -0.055625248700380325, 0.002891809679567814,
- 0.09231293201446533, 0.003941736649721861, 0.022738132625818253, 0.0029633331578224897,
- -0.1006895899772644, -0.07706106454133987, 0.0032844634260982275, -0.07256738096475601,
- 0.07182321697473526, -0.03161264955997467, 0.011288789100944996, -0.03178082033991814,
- -0.01810724474489689, 0.045521002262830734, -0.08419308066368103, -0.11414237320423126,
- -0.06323369592428207, 0.08845537900924683, -0.006000286899507046, 0.011670291423797607,
- 0.024886690080165863, -0.03005850315093994, 0.05407534912228584, -0.0136685436591506,
- 0.032936494797468185, 0.046448029577732086, 0.0436275415122509, 0.005804163403809071,
- 0.05521130934357643, 0.06921713054180145, -0.06147207319736481, 0.002713159890845418,
- 0.07699618488550186, 0.41417279839515686, -0.17171072959899902, 0.1181299015879631,
- 0.09322284162044525, 0.0231564249843359, 0.05438535287976265, -0.0513475239276886,
- 0.06794244050979614, 0.043686650693416595, 0.11586251109838486, 0.12124741077423096,
- -0.04090084880590439, 0.03676300495862961, -0.11173538118600845, 0.07748344540596008,
- 0.009948763065040112, 0.040028415620326996, 0.017757048830389977, -0.06735685467720032,
- -0.08139710873365402, 0.05064951255917549, -0.025783615186810493, 0.011287637986242771,
- 0.01572588086128235, -0.04183005169034004, 0.06581073999404907, 0.015555966645479202,
- 0.08055444061756134, -0.04922792315483093, 0.003722590394318104, -0.03276067599654198,
- 0.06463831663131714, -0.029704971238970757, 0.040250640362501144, -0.06528765708208084,
- 0.024666056036949158, -0.06017083302140236, -0.062146108597517014, 0.08488132804632187,
- 0.05717875063419342, 0.05866595730185509, 0.043440014123916626, -0.07559142261743546,
- 0.01913381740450859, -0.057330794632434845, -0.06611324101686478,
- -0.0050913263112306595, 0.0797380730509758, 0.02758096717298031, 0.09495782107114792,
- 0.138998344540596, 0.013794771395623684, 0.021490883082151413, -0.01695353537797928,
- 0.03898343816399574, 0.12332362681627274, -0.01492677815258503, 0.05486782267689705,
- -0.02739764377474785, -0.0021714307367801666, 0.002008941723033786, -0.0664023905992508,
- -0.08417606353759766, -0.025879403576254845, -0.05025714635848999, 0.05323754996061325,
- 0.01804906129837036, -0.012872792780399323, -0.13399021327495575, 0.03307110816240311,
- -0.051783472299575806, 0.01588486135005951, 0.06248447671532631, -0.049129243940114975,
- 0.035482339560985565, -0.004235920030623674, 0.02532789669930935, -0.0082565788179636,
- -0.10802517831325531, 0.016675299033522606, -0.022505013272166252, 0.02651279605925083,
- 0.05795523151755333, 0.06494271755218506, -0.08940959721803665, 0.04755784943699837,
- -0.13151052594184875, 0.04530967026948929, -0.002439609495922923, 0.02045433409512043,
- -0.011966407299041748, 0.021838007494807243, 0.03945444896817207, 0.07229909300804138,
- -0.033449433743953705, -0.00950673408806324, -0.06632401049137115, -0.04409161955118179,
- -0.09310271590948105, -0.08370518684387207, 0.015463815070688725, -0.0801091343164444,
- 0.04669714719057083, -0.05805133283138275, 0.018617285415530205, -0.03057074546813965,
- -0.03808430954813957, -0.013610019348561764, 0.07964348793029785, -0.015822995454072952,
- -0.09982035309076309, -0.01592538319528103, -0.034806638956069946, 0.004920857027173042,
- -0.023661639541387558, -0.09131346642971039, -0.018517231568694115, 0.0667026937007904,
- 0.003522867104038596, -0.05094187706708908, -0.02237800881266594, -0.027913492172956467,
- 0.06322784721851349, -0.11492498219013214, -0.4452343285083771, 0.09365999698638916,
- 0.020305383950471878, 0.03670385852456093, 0.010739651508629322, -0.09526713192462921,
- 0.01901029609143734, -0.01128601934760809, -0.05270743370056152, 0.028823327273130417,
- -0.04696164280176163, 0.004651675932109356, -0.0192163847386837, -0.06425722688436508,
- 0.0033490799833089113, -0.05197751522064209, -0.044675562530756, 0.03504291549324989,
- -0.02093556337058544, -0.04156618192791939, -0.11005525290966034, 0.024363048374652863,
- -0.05048369988799095, 0.0063949632458388805, -0.020319819450378418,
- 0.012601065449416637, -0.1111861914396286, -0.07436879724264145, 0.03267744556069374,
- 0.05948736518621445, 0.012923089787364006, -0.08057445287704468, -0.04980310797691345,
- 0.07514288276433945, -0.009296619333326817, 0.1050940454006195, 0.023132098838686943,
- -0.03152256831526756, -0.09778530150651932, 0.03816092759370804, 0.07328669726848602,
- 0.18646398186683655, -0.02471315674483776, 0.0481521375477314, 0.01196337677538395,
- 0.11286363750696182, 0.015506226569414139, 0.05619851127266884, -0.045211728662252426,
- -0.031151967123150826, 0.01088005118072033, -0.040657367557287216, 0.047922223806381226,
- -0.09052422642707825, -0.0170478243380785, -0.04678003489971161, -0.05032699555158615,
- -0.07321415096521378, 0.011180934496223927, 0.21926896274089813, 0.033676885068416595,
- -0.011581902392208576, 0.013364196754992008, -0.01603989489376545,
- -0.009732461534440517, -0.04376216605305672, -0.026711026206612587,
- -0.038290247321128845, -0.0005878278752788901, 0.01847558468580246,
- -0.021928949281573296, -0.12875962257385254, -0.045911990106105804,
- -0.04872925579547882, -0.005686822347342968, 0.10978829860687256, -0.042764633893966675,
- -0.024671344086527824, -0.00764593156054616, 0.15436019003391266, 0.015062877908349037,
- -0.0015252302400767803, 0.04689982160925865, 0.1199016347527504, 0.017712639644742012,
- 0.006741620134562254, -0.02239903435111046, -0.059941746294498444,
- -0.007207018788903952, 0.1460370272397995, -0.05161457881331444, 0.12442667037248611,
- 0.085530124604702, -0.009863938204944134, -0.01335017941892147, -0.010058284737169743,
- 0.02077876776456833, 0.030702143907546997, -0.40936779975891113, -0.019739363342523575,
- 0.11296898126602173, -0.004693602677434683, -0.013682877644896507, 0.0659346804022789,
- 0.047357380390167236, 0.012485506944358349, -0.030056197196245193, -0.05780651420354843,
- 0.06929377466440201, 0.04599909856915474, 0.09749806672334671, -0.11550652980804443,
- 0.02347899228334427, 0.11310020089149475, -0.0035454919561743736, 0.0054655252024531364,
- 0.004183678422123194, -0.20263315737247467, 0.010047904215753078, 0.0014231372624635696,
- 0.17401465773582458, 0.07181078940629959, 0.028298716992139816, 0.08501922339200974,
- -0.06267217546701431, 0.033814866095781326, 0.05680176615715027, 0.04500328004360199,
- 0.02152922749519348, -0.035726990550756454, -0.04795067012310028, 0.07392586022615433,
- 0.07747595757246017, 0.10145878046751022, 0.015514691360294819, 11.965139389038086,
- 0.05826391652226448, 0.08218979090452194, -0.07083747535943985, 0.001988793257623911,
- -0.05276787653565407, 0.03405611589550972, -0.11897093057632446, 0.0449005626142025,
- 0.12266142666339874, -0.010722801089286804, -0.05711580440402031, -0.04257557541131973,
- -0.05514579266309738, 0.004831953439861536, -0.06055475398898125, 0.00330553506501019,
- -0.03319387510418892, 0.0467374324798584, -0.09816937148571014, -0.09194774180650711,
- 0.010861135087907314, 0.10828468203544617, -0.0035720006562769413, -0.08268612623214722,
- 0.05329442024230957, 0.011671606451272964, 0.01405919436365366, -0.003270732704550028,
- 0.003773237345740199, 0.043043527752161026, 0.0637441873550415, 0.11670466512441635,
- 0.02903989516198635, 0.07240670174360275, 0.06871011108160019, 0.006139637436717749,
- 0.0494854673743248, 0.043953023850917816, 0.03981943055987358, -0.0033572781831026077,
- -0.010617145337164402, 0.00764974020421505, 0.04742329567670822, 0.041241928935050964,
- 0.03263743594288826, 0.032053522765636444, 0.11638114601373672, -0.009149598889052868,
- 0.10315412282943726, 0.09626474976539612, 0.008708048611879349, 0.08736074715852737,
- 0.04788479581475258, 0.0005359497736208141, 0.030639279633760452, -0.006580942776054144,
- -0.08113563060760498, 0.07444845885038376, 0.045628152787685394, -0.04326824098825455,
- 0.1529407799243927, -0.01576685905456543, 0.15516795217990875, 0.02444666437804699,
- 0.025682078674435616, 0.06261831521987915, 0.05416073277592659, -0.12601175904273987,
- -0.10821830481290817, 0.07517223805189133, -0.1102517619729042, -0.06007303670048714,
- 0.08854646980762482, 0.060718681663274765, 0.004372638184577227, 0.10855230689048767,
- -0.07245293259620667, 0.024428091943264008, -0.05684104934334755, 0.025103619322180748,
- 0.02978505566716194, -0.05798199772834778, 0.025331435725092888, 0.02796158753335476,
- 0.019405223429203033, 0.06873396039009094, 0.09316703677177429, -0.027562441304326057,
- -0.11394749581813812, -0.05435865372419357, 0.10718964040279388, 0.013220950961112976,
- -0.036852143704891205, 0.024734945967793465, -0.05149542912840843,
- -0.009284818544983864, -0.1767514944076538, 0.05255693942308426, 0.11963696777820587,
- -0.02348059043288231, -0.04509012773633003, -0.02791476435959339, 0.11164166778326035,
- -0.015985647216439247, 0.07660495489835739, -0.0860419049859047, -0.06570027768611908,
- 0.023284977301955223, 0.038335926830768585, -0.0403069406747818, 0.09582439810037613,
- 0.11435574293136597, -0.10348256677389145, 0.058303102850914, 0.06383409351110458,
- -0.031567588448524475, -0.02733735740184784, 0.04117390513420105, 0.0308579932898283,
- -0.08599036186933517, -0.03863834589719772, -0.037997595965862274,
- -0.019553082063794136, -0.02920270897448063, -0.01237553171813488, -0.05335981771349907,
- 0.04122026637196541, -0.09169589728116989, -0.023233702406287193, 0.012098425067961216,
- 0.025468463078141212, 0.14215637743473053, -0.03674525395035744, 0.047217078506946564,
- -0.053660206496715546, -0.008418579585850239, 0.10122092813253403, 0.056249137967824936,
- 0.09864363819360733, 0.003920845687389374, -0.016253311187028885, -0.03443232178688049,
- -0.05248204991221428, 0.03319375962018967, 0.10701528936624527, 0.02506200410425663,
- 0.02475796453654766, 0.035666268318891525, -0.06165890768170357, -0.06513325870037079,
- 0.09783501923084259, 0.017669878900051117, 0.04375830665230751, 0.04425536096096039,
- -0.07892684638500214, -0.041092049330472946, 0.11691640317440033, -0.05654633417725563,
- -0.017151668667793274, -0.00017664674669504166, -0.07953635603189468,
- 0.10473155230283737, 0.03710658848285675, 0.033692460507154465, 0.04898936301469803,
- 0.0070827496238052845, -0.000546399038285017, 0.014250771142542362,
- -0.012608261778950691, 0.031813256442546844, -0.02768014557659626, -0.06951651722192764,
- -0.10313406586647034, -0.024231040850281715, 0.049808479845523834, 0.08869124948978424,
- -0.16344992816448212, -0.009282533079385757, -0.033294614404439926
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 299,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Hanako Montgomery"],
- "epoch_date_downloaded": 1660694400,
- "epoch_date_modified": 1661126400,
- "epoch_date_submitted": 1660694400,
- "flag": null,
- "report_number": 1935,
- "source_domain": "vice.com",
- "submitters": ["Sonali Pednekar (CSET)", "AIAAIC"],
- "title": "Man Arrested for Uncensoring Japanese Porn With AI in First Deepfake Case",
- "url": "https://www.vice.com/en/article/xgdq87/deepfakes-japan-arrest-japanese-porn"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "tiktok",
- "name": "TikTok"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "tiktok",
- "name": "TikTok"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "tiktok-users",
- "name": "TikTok users"
- },
- {
- "__typename": "Entity",
- "entity_id": "tiktok-teenage-users",
- "name": "TikTok teenage users"
- },
- {
- "__typename": "Entity",
- "entity_id": "tiktok-male-users",
- "name": "TikTok male users"
- },
- {
- "__typename": "Entity",
- "entity_id": "tiktok-male-teenager-users",
- "name": "TikTok male teenager users"
- },
- {
- "__typename": "Entity",
- "entity_id": "tiktok",
- "name": "TikTok"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [241, 255, 256, 265, 271, 278, 285, 290, 291, 33, 35, 45],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1937, 1936],
- "vector": [
- -0.043701544404029846, 0.02326476387679577, 0.015329637564718723, -0.12248753011226654,
- 0.04833511635661125, -0.06417743116617203, -0.010577622801065445, 0.04204070568084717,
- 0.07709121704101562, -0.1174035519361496, 0.0014260192401707172, 0.032421763986349106,
- 0.013811077922582626, -0.09690645337104797, 0.0574297271668911, -0.08549822866916656,
- -0.08430557698011398, -0.04778321832418442, 0.013224435038864613, -0.15891927480697632,
- -0.07783078402280807, -0.003172894474118948, 0.06062425300478935, 0.1287052184343338,
- -0.07465317845344543, 0.028089318424463272, 0.12142433971166611, 0.14031915366649628,
- -0.04083693400025368, 0.06114795058965683, -0.010444626212120056, -0.08314374834299088,
- 0.12936243414878845, 0.03883238136768341, 0.009714959189295769, 0.07816904783248901,
- -0.012167520821094513, -0.033619534224271774, -0.01618020236492157,
- 0.006503288168460131, 0.023745927959680557, 0.237297922372818, 0.00948999635875225,
- 0.001748429611325264, 0.05814383178949356, -0.07451703399419785, 0.02214096486568451,
- 0.04372521489858627, 0.015128581784665585, 0.005200270563364029,
- -0.00022428855299949646, -0.04621749371290207, -0.05092594400048256,
- 0.05088603496551514, -0.11581309139728546, 0.03652240335941315, 0.042182136327028275,
- -0.032087456434965134, 0.0010897088795900345, -0.0790194645524025,
- -0.008442244492471218, -0.18928569555282593, -0.10066768527030945, -0.10417381674051285,
- 0.0909222885966301, -0.06280118972063065, -0.042171087116003036, 0.04101018235087395,
- 0.01206139661371708, 0.05532136186957359, 0.06385289132595062, -0.04976285994052887,
- -0.03175098076462746, 0.011489133350551128, 0.04296652600169182, -0.042363062500953674,
- 0.04569345712661743, 0.19736017286777496, -0.1322234869003296, -0.026324447244405746,
- 0.13116885721683502, -0.10826761275529861, 0.3754499852657318, -0.03458087891340256,
- -0.013508451171219349, 0.026148410513997078, 0.061910465359687805,
- -0.014175103046000004, 0.02450324408710003, 0.05555339902639389, 0.015330292284488678,
- 0.06416036933660507, -0.10776980966329575, -0.046147555112838745, 0.05243730545043945,
- 0.01809481903910637, -0.01260408479720354, 0.025381259620189667, -0.028626278042793274,
- -0.07392117381095886, 0.016521543264389038, -0.020185422152280807, 0.12424637377262115,
- 0.13686373829841614, -0.03975312411785126, -0.003059186041355133, 0.11867158859968185,
- -0.05609659478068352, 0.043756335973739624, -0.03862070292234421, -0.010490869171917439,
- -0.001963547430932522, 0.11563996970653534, -0.01394328847527504, 0.03627949580550194,
- -0.04494527354836464, 0.01727677881717682, 0.09929122030735016, 0.1035037487745285,
- 0.0648106038570404, 0.030511656776070595, 0.06551531702280045, 0.07132524251937866,
- -0.06668877601623535, 0.024959567934274673, -0.04357382282614708, -0.09111145883798599,
- -0.0446360819041729, -0.0071061719208955765, 0.05277508497238159, -0.07373210787773132,
- -0.23641237616539001, 0.022291801869869232, 0.048855435103178024, 0.008498648181557655,
- -0.04577653482556343, 0.03323733061552048, -0.05784297361969948, 0.03628428280353546,
- -0.06255670636892319, -0.08018771559000015, 0.06613607704639435, 0.023912375792860985,
- 0.06215427815914154, 0.12500950694084167, 0.08001074194908142, -0.026618484407663345,
- -0.025646395981311798, -0.031258583068847656, -0.054177235811948776,
- 0.10658080130815506, -0.12234923243522644, -0.030188430100679398,
- -0.0028816545382142067, 0.04036005586385727, 0.6677161455154419, 0.08775220066308975,
- 0.16530247032642365, 0.03186322748661041, 0.007140317000448704, 0.20371976494789124,
- -0.005352269392460585, 0.09386138617992401, -0.10329972207546234, -0.047630392014980316,
- 0.002060988452285528, -0.06620805710554123, -0.07184620201587677, 0.010686879977583885,
- 0.03397117555141449, 0.08050785213708878, 0.03673870489001274, 0.08666400611400604,
- -0.018153958022594452, -0.13717009127140045, -0.03179294615983963, 0.07502112537622452,
- 0.01130572147667408, -0.10807177424430847, -0.0858382061123848, 0.05439269170165062,
- 0.0949268788099289, -0.09338423609733582, -0.0008490113541483879, -0.07657579332590103,
- 0.05875200778245926, 0.02420978434383869, 0.10540670156478882, -0.011345302686095238,
- 0.06265928596258163, 0.023123806342482567, 0.0015946459025144577,
- 0.00009458418935537338, -0.03252622112631798, 0.006608246359974146, 0.17349189519882202,
- -0.024715503677725792, -0.06915659457445145, 0.11121245473623276, -0.07142815738916397,
- 0.011338152922689915, 0.07061588019132614, 0.07269658893346786, -0.131988525390625,
- -0.014089906588196754, -0.028607476502656937, -0.04085976257920265, 0.08985069394111633,
- -0.0064882454462349415, -0.08249665051698685, -0.09834270179271698, 0.07584124058485031,
- -0.003690171055495739, 0.07040362060070038, 0.017164889723062515, -0.017352048307657242,
- 0.043763160705566406, 0.06018070876598358, 0.08322674036026001, -0.03473188355565071,
- 0.0879189521074295, 0.06589479744434357, -0.07459869980812073, -0.04630540683865547,
- 0.07675932347774506, 0.08034034818410873, -0.02488240972161293, -0.007081972435116768,
- 0.09773148596286774, 0.04959831386804581, -0.034003619104623795, 0.0687004029750824,
- 0.017854027450084686, -0.014670003205537796, 0.07081367075443268, -0.0986025407910347,
- -0.05814075469970703, -0.026439718902111053, -0.018168015405535698, 0.02437303587794304,
- -0.01864469423890114, 0.07868582755327225, 0.07426933199167252, 0.05085381120443344,
- 0.03785879909992218, -0.0062621356919407845, 0.05903539061546326, 0.07534491270780563,
- 0.024586407467722893, 0.10901396721601486, -0.006245261058211327, -0.030120596289634705,
- -0.01576610840857029, 0.03212938830256462, 0.07725642621517181, 0.040594432502985,
- -0.07678339630365372, -0.007836688309907913, 0.007355873938649893, -0.05047828331589699,
- -0.11216657608747482, 0.023269737139344215, 0.008059616200625896,
- -0.0003066123463213444, -0.05940144881606102, -0.04990672320127487,
- -0.13448959589004517, 0.029248438775539398, 0.08264047652482986, -0.03899036720395088,
- -0.009318681433796883, -0.11926305294036865, 0.019330676645040512, -0.07408221065998077,
- 0.06111161410808563, -0.025792352855205536, 0.04555905610322952, 0.018071521073579788,
- -0.049347423017024994, 0.012657370418310165, 0.03789057582616806, -0.0802496075630188,
- 0.025639351457357407, -0.02133670076727867, -0.005697118118405342, -0.01320025883615017,
- -0.011222297325730324, -0.027934759855270386, 0.030913956463336945, 0.0795307531952858,
- 0.06614980101585388, -0.026674427092075348, 0.004574433900415897, 0.06387513875961304,
- -0.03494356572628021, 0.0046732486225664616, 0.11282575130462646, -0.0648590698838234,
- 0.0002024935674853623, -0.04476754367351532, -0.06325340270996094, -0.03845904767513275,
- -0.020967774093151093, -0.050696805119514465, 0.08712151646614075, -0.04566808417439461,
- 0.02305302396416664, -0.0036745427642017603, -0.03787798061966896, 0.09508933126926422,
- -0.043787095695734024, -0.03350898250937462, -0.09448394179344177, 0.09844103455543518,
- -0.008125927299261093, 0.00631941482424736, 0.00790376402437687, -0.05712950974702835,
- 0.08967266976833344, 0.013858581893146038, 0.010895759798586369, 0.10914863646030426,
- 0.0584297738969326, 0.004262525588274002, 0.012726505286991596, 0.0941506177186966,
- 0.03791402280330658, -0.008592488244175911, 0.08537012338638306, 0.4455479383468628,
- -0.2355925440788269, 0.09222941100597382, 0.12084202468395233, 0.011753777042031288,
- 0.04129352048039436, 0.008753113448619843, 0.06936267763376236, 0.08040204644203186,
- 0.15548834204673767, 0.09511961042881012, -0.09132511168718338, -0.008903737179934978,
- -0.04852842167019844, 0.058566879481077194, 0.06590703874826431, 0.05985959991812706,
- -0.014081182889640331, -0.09999056160449982, -0.037174396216869354,
- -0.005312717519700527, -0.07139250636100769, 0.04097384959459305, 0.05157020688056946,
- -0.05693705007433891, 0.0035655684769153595, -0.016386091709136963, 0.05402996763586998,
- -0.08749157190322876, 0.06310240924358368, -0.047638118267059326, 0.050302654504776,
- -0.01407746784389019, 0.04989015683531761, -0.10783342272043228, -0.015251144766807556,
- -0.028568219393491745, -0.09987428784370422, 0.07163304090499878, 0.018046557903289795,
- 0.042605333030223846, 0.028392184525728226, -0.0571989044547081, 0.04028592258691788,
- -0.025222327560186386, -0.06581643223762512, -0.021705009043216705,
- 0.015899542719125748, 0.020088354125618935, 0.05697699636220932, 0.1418299674987793,
- -0.04192930459976196, -0.030712487176060677, -0.11111478507518768, 0.06365926563739777,
- 0.14913593232631683, -0.025688979774713516, -0.0050202240236103535,
- -0.010847298428416252, -0.007713003549724817, -0.01623459719121456,
- -0.037042345851659775, -0.024838797748088837, -0.03429044038057327,
- 0.021961316466331482, 0.1158449649810791, 0.05329154431819916, -0.06494584679603577,
- -0.15938016772270203, 0.0067070964723825455, -0.06774746626615524, 0.004152808338403702,
- 0.11957202851772308, -0.05456680804491043, 0.054446738213300705, -0.03952448070049286,
- 0.0019606538116931915, 0.02645760215818882, -0.07280150055885315, 0.04436170309782028,
- -0.06939523667097092, 0.035886067897081375, 0.04598594456911087, 0.020624365657567978,
- -0.028953639790415764, 0.11374124884605408, -0.13645562529563904, 0.06973462551832199,
- 0.014025148935616016, -0.011924929916858673, 0.03398168459534645, -0.004772132262587547,
- 0.031333450227975845, 0.03453310951590538, -0.06160590797662735, 0.017156928777694702,
- 0.007547422312200069, -0.049762874841690063, -0.06412342935800552, -0.07448093593120575,
- -0.05503241717815399, -0.09456752240657806, 0.029584508389234543, -0.02000032737851143,
- 0.011260725557804108, -0.034201011061668396, 0.01558845117688179, -0.014870017766952515,
- 0.05178825557231903, 0.020918091759085655, -0.10224195569753647, 0.003557862713932991,
- -0.020194727927446365, 0.03412123769521713, -0.08269891142845154, -0.051535263657569885,
- -0.02309350110590458, 0.02841259352862835, 0.055858928710222244, -0.02445264533162117,
- 0.020403165370225906, -0.08631204068660736, 0.055149443447589874, -0.09868936240673065,
- -0.43893128633499146, 0.07300078123807907, -0.0052172536961734295, 0.032264068722724915,
- 0.014708278700709343, -0.0851997435092926, 0.058669254183769226, 0.025504078716039658,
- -0.06262058019638062, 0.08765873312950134, -0.027550220489501953, 0.044821880757808685,
- 0.013022569939494133, -0.10441158711910248, -0.01723506860435009, -0.0969197154045105,
- -0.029959574341773987, 0.03744854778051376, 0.006119788624346256, -0.104874387383461,
- -0.1296074390411377, 0.061785511672496796, -0.005051094572991133, 0.051310062408447266,
- -0.036780934780836105, 0.0018842213321477175, -0.031009860336780548, -0.075154148042202,
- 0.06077411770820618, 0.08422622829675674, 0.012629901990294456, -0.0780721977353096,
- -0.029762672260403633, 0.10752270370721817, -0.016572002321481705, 0.11410948634147644,
- 0.055420294404029846, -0.04290507361292839, -0.07833842933177948, 0.11308185011148453,
- 0.08253931999206543, 0.18195965886116028, -0.02202029712498188, 0.03508741036057472,
- 0.003800538368523121, 0.14226463437080383, -0.006342349108308554, 0.018311748281121254,
- -0.04475416988134384, -0.011953040957450867, 0.0037352479994297028, 0.04107490926980972,
- 0.07723523676395416, -0.1237853392958641, -0.019298482686281204, -0.03249718248844147,
- -0.04676935449242592, -0.020522061735391617, -0.03139520063996315, 0.2301798313856125,
- 0.06966108828783035, 0.029573427513241768, -0.01818358711898327, -0.04880809038877487,
- -0.030922390520572662, -0.05692607909440994, -0.11443227529525757, 0.025250805541872978,
- -0.024530338123440742, 0.025009658187627792, -0.025427334010601044,
- -0.11176159977912903, -0.011972193606197834, 0.0401424802839756, 0.0009161913767457008,
- 0.0739632174372673, -0.027659932151436806, 0.04732784628868103, -0.05632265284657478,
- 0.12021887302398682, 0.07421032339334488, 0.03816146403551102, 0.050161734223365784,
- 0.10158614069223404, 0.010437081567943096, 0.0026858702767640352, -0.10860729217529297,
- -0.1468246579170227, -0.051400914788246155, 0.18026550114154816, 0.017707599326968193,
- 0.07029877603054047, 0.027926484122872353, -0.08715373277664185, -0.02681022509932518,
- 0.01793340966105461, -0.01801867038011551, -0.011158054694533348, -0.4557769298553467,
- -0.062720887362957, 0.13807350397109985, 0.019428953528404236, -0.0032894443720579147,
- 0.06934889405965805, 0.07173573225736618, -0.05734376236796379, -0.07993040978908539,
- -0.09204702079296112, 0.12514269351959229, -0.03686769679188728, 0.08036331832408905,
- -0.06700027734041214, 0.024631187319755554, 0.09494151920080185, -0.05676041916012764,
- -0.007656279020011425, 0.07184973359107971, -0.2673990726470947, -0.0007190601900219917,
- -0.0006055408157408237, 0.12879569828510284, -0.0002597840502858162,
- 0.02935522422194481, 0.11253322660923004, -0.040250323712825775, 0.01480862870812416,
- 0.03683394193649292, 0.003475608304142952, -0.033791061490774155, 0.02495032176375389,
- -0.038488756865262985, 0.07491394132375717, 0.09767220914363861, 0.057033564895391464,
- -0.0015506278723478317, 12.223846435546875, 0.0645962655544281, 0.0785115659236908,
- -0.08618982136249542, 0.030731867998838425, -0.06457249820232391, 0.019043361768126488,
- -0.11775750666856766, 0.06206579506397247, 0.1209094449877739, -0.0018995318096131086,
- -0.03930038958787918, -0.04558025673031807, -0.09917700290679932, 0.027192609384655952,
- -0.06473769247531891, -0.07905836403369904, -0.033889830112457275, 0.07444208860397339,
- -0.06587565690279007, -0.08442586660385132, 0.046177759766578674, 0.05626833438873291,
- 0.026939891278743744, -0.08891984075307846, 0.0132836252450943, 0.002417648211121559,
- 0.0051298667676746845, 0.005839644931256771, 0.05633613467216492, -0.005707233212888241,
- 0.07445672154426575, 0.04337742179632187, 0.011158857494592667, 0.08570300042629242,
- -0.007987858727574348, 0.03985460102558136, 0.017547162249684334, 0.012772168032824993,
- 0.10275323688983917, -0.04284876957535744, -0.0141471978276968, 0.02282068133354187,
- 0.01650942489504814, 0.05593884736299515, 0.019330307841300964, 0.042163435369729996,
- 0.05485181882977486, -0.025716759264469147, 0.05799194425344467, 0.09893154352903366,
- -0.005029047839343548, 0.12515828013420105, 0.021174440160393715, -0.01726929470896721,
- 0.07446974515914917, -0.053664430975914, -0.08889101445674896, 0.07473316788673401,
- 0.03662916645407677, -0.0658346489071846, 0.14941829442977905, 0.045136578381061554,
- 0.14743678271770477, 0.026461653411388397, 0.04819473624229431, 0.10025104880332947,
- 0.06862537562847137, -0.08476227521896362, -0.08038383722305298, 0.014906032010912895,
- -0.08699488639831543, -0.04248098284006119, 0.05274319648742676, 0.05581429600715637,
- -0.03323835879564285, 0.05593361705541611, -0.037327174097299576, 0.01152608823031187,
- -0.07860937714576721, 0.018009426072239876, 0.005743248388171196, -0.025277478620409966,
- -0.017401140183210373, 0.06515441834926605, 0.02062905952334404, 0.04281717538833618,
- 0.07295545935630798, 0.03248988464474678, -0.1704874038696289, -0.07658369094133377,
- 0.15541623532772064, -0.020603865385055542, -0.04401855170726776, 0.03739497438073158,
- -0.07303984463214874, 0.031986117362976074, -0.1699283868074417, 0.0780179351568222,
- 0.1546359658241272, -0.14287737011909485, -0.025189759209752083, -0.04619479179382324,
- 0.12202627956867218, 0.03443235903978348, 0.006749199703335762, -0.08067330718040466,
- -0.02248252183198929, 0.008766322396695614, 0.06411831080913544, -0.058165304362773895,
- 0.08930785208940506, 0.13577145338058472, -0.06284099817276001, 0.010982939973473549,
- 0.07834157347679138, -0.027706123888492584, -0.020314451307058334, 0.05977571755647659,
- 0.01770184189081192, -0.08287115395069122, -0.008413368836045265, -0.022169742733240128,
- -0.06635506451129913, -0.030040208250284195, -0.052977055311203, -0.01466580294072628,
- 0.051563769578933716, -0.0505727156996727, -0.0004592146724462509, 0.04177762195467949,
- 0.06781817227602005, 0.06932365894317627, -0.021970968693494797, 0.04771840572357178,
- -0.08073689043521881, -0.05739133432507515, 0.04629746824502945, 0.06629350036382675,
- 0.06909069418907166, -0.0588756762444973, -0.0719674751162529, -0.018292374908924103,
- -0.0977228581905365, 0.0018962398171424866, 0.15411214530467987, -0.0003490764647722244,
- 0.06258828938007355, 0.07805569469928741, -0.09188337624073029, -0.06412136554718018,
- 0.07633624970912933, 0.05579208582639694, -0.021587587893009186, 0.061046719551086426,
- -0.05852339044213295, -0.039649952203035355, 0.13530033826828003, -0.005759164225310087,
- -0.04530254006385803, -0.004444971680641174, -0.08168718963861465, 0.09819014370441437,
- 0.08029581606388092, 0.170509934425354, -0.003950722981244326, 0.040135931223630905,
- 0.0023858125787228346, -0.0217836145311594, 0.02060069516301155, 0.0069429101422429085,
- -0.04928015545010567, -0.057231783866882324, -0.12295517325401306,
- 0.0009848554618656635, 0.0606602318584919, 0.08242199569940567, -0.11968963593244553,
- 0.010833201929926872, -0.06762373447418213
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 300,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 45,
- "similarity": 0.9971429705619812
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 33,
- "similarity": 0.9970664978027344
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 35,
- "similarity": 0.9969732761383057
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Shanti Das"],
- "epoch_date_downloaded": 1660953600,
- "epoch_date_modified": 1661126400,
- "epoch_date_submitted": 1660953600,
- "flag": null,
- "report_number": 1937,
- "source_domain": "theguardian.com",
- "submitters": ["Khoa Lam"],
- "title": "How TikTok bombards young men with misogynistic videos",
- "url": "https://www.theguardian.com/technology/2022/aug/06/revealed-how-tiktok-bombards-young-men-with-misogynistic-videos-andrew-tate"
- },
- {
- "__typename": "Report",
- "authors": ["Shanti Das"],
- "epoch_date_downloaded": 1660953600,
- "epoch_date_modified": 1661126400,
- "epoch_date_submitted": 1660953600,
- "flag": null,
- "report_number": 1936,
- "source_domain": "theguardian.com",
- "submitters": ["Khoa Lam"],
- "title": "Inside the violent, misogynistic world of TikTok’s new star, Andrew Tate",
- "url": "https://www.theguardian.com/technology/2022/aug/06/andrew-tate-violent-misogynistic-world-of-tiktok-new-star"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "broward-college",
- "name": "Broward College"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "honorlock",
- "name": "Honorlock"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "unnamed-florida-teenager",
- "name": "unnamed Florida teenager"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [204, 153, 208, 238, 252, 253, 254, 259, 10, 19, 43],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1938],
- "vector": [
- -0.04278237745165825, 0.07132839411497116, 0.02498769201338291, -0.09462381154298782,
- 0.13176625967025757, -0.04720255360007286, -0.01911613531410694, 0.0874452143907547,
- 0.08365491777658463, -0.13097426295280457, -0.009578161872923374, 0.049719132483005524,
- 0.037603821605443954, -0.08100573718547821, 0.026961755007505417, -0.020640090107917786,
- -0.13408643007278442, -0.020419269800186157, 0.0028814945835620165,
- -0.15421143174171448, -0.044910430908203125, 0.01713612489402294, -0.031592655926942825,
- 0.07426340878009796, -0.02103603072464466, 0.027465945109725, 0.08122070133686066,
- 0.06867924332618713, -0.04034619405865669, 0.040036167949438095, -0.01993677392601967,
- -0.03440001234412193, 0.09250154346227646, -0.04043491557240486, 0.0035283633042126894,
- 0.10936754196882248, 0.024816401302814484, -0.03576226904988289, -0.012103703804314137,
- -0.021183030679821968, -0.002991677727550268, 0.2299383282661438, 0.01750233769416809,
- -0.02204696275293827, 0.025399712845683098, -0.013938364572823048, 0.009478411637246609,
- 0.025646092370152473, 0.007224689237773418, 0.012112668715417385,
- -0.0018002089345827699, 0.08026778697967529, -0.011985144577920437, 0.04799000546336174,
- -0.13533556461334229, 0.04942430928349495, 0.0059405663050711155, -0.06344577670097351,
- 0.050215184688568115, -0.07863729447126389, -0.03524007648229599, -0.2336292862892151,
- -0.031902991235256195, -0.06743702292442322, 0.08160188049077988, -0.08599673956632614,
- -0.024432800710201263, 0.0025215260684490204, 0.03868386894464493, 0.03849789500236511,
- 0.03254915401339531, -0.026470795273780823, -0.000592502299696207, 0.031925980001688004,
- -0.03442724421620369, -0.022865520790219307, 0.023799218237400055, 0.18660897016525269,
- -0.06474987417459488, -0.0007503589149564505, 0.11269336193799973, -0.136064812541008,
- 0.38901230692863464, -0.0006066731875762343, -0.0434965118765831, -0.03229347616434097,
- 0.10762140899896622, 0.05307966098189354, 0.033044684678316116, 0.03145736828446388,
- -0.011799924075603485, 0.04550354927778244, -0.08848300576210022, 0.014274721033871174,
- 0.0667022243142128, 0.07377097755670547, -0.04686852917075157, 0.06297999620437622,
- -0.023493384942412376, -0.04446225240826607, 0.013108977116644382, -0.04202558472752571,
- 0.08216901868581772, 0.038367196917533875, -0.030429216101765633, 0.006195457652211189,
- 0.06914971768856049, -0.0527179054915905, 0.052208274602890015, -0.01378002017736435,
- -0.037677668035030365, -0.0559932217001915, 0.047533705830574036, 0.018957210704684258,
- -0.006479721516370773, -0.06178155168890953, 0.025277195498347282, 0.02161400020122528,
- 0.11189209669828415, 0.011325941421091557, -0.023151392117142677, 0.02992989867925644,
- 0.06358672678470612, -0.07424367219209671, -0.06019434705376625, -0.05508599430322647,
- -0.01478445902466774, -0.018913984298706055, 0.001838209223933518, 0.0441758930683136,
- -0.06019536033272743, -0.17048929631710052, -0.01668373867869377, 0.06413771957159042,
- -0.02860037237405777, -0.04555961862206459, 0.0039710900746285915, -0.04600624740123749,
- 0.06439393013715744, -0.0001518944336567074, -0.013018151745200157, 0.03204521909356117,
- 0.016679838299751282, 0.03992266580462456, 0.07156911492347717, 0.057264018803834915,
- -0.040018364787101746, -0.03947891294956207, 0.014241590164601803,
- -0.035182271152734756, 0.12385323643684387, -0.12449748069047928, -0.05609289929270744,
- 0.02651403658092022, 0.002691487781703472, 0.6538576483726501, 0.13676053285598755,
- 0.17226551473140717, -0.0008104460430331528, -0.02369735948741436, 0.18104633688926697,
- -0.009215514175593853, 0.0477113351225853, -0.05761759355664253, -0.04365958645939827,
- 0.02317933551967144, -0.06039164960384369, -0.06666260957717896, 0.05126700550317764,
- 0.012859958223998547, 0.11811275780200958, 0.03921452909708023, 0.08877702802419662,
- 0.04070999100804329, -0.1077737957239151, 0.001522613107226789, 0.06256871670484543,
- 0.037884943187236786, -0.12334294617176056, -0.01025074627250433, 0.06947754323482513,
- 0.08767834305763245, -0.1133468896150589, 0.017727486789226532, -0.06129525974392891,
- -0.0007645781734026968, -0.015188672579824924, 0.03198687359690666,
- -0.026811353862285614, 0.08201778680086136, 0.05200545862317085, 0.05121808871626854,
- 0.0026552018243819475, -0.11816856265068054, -0.022868946194648743, 0.04160156473517418,
- -0.028723219409585, -0.061010729521512985, 0.043908294290304184, -0.1019439548254013,
- 0.01608765497803688, 0.028166770935058594, 0.16108338534832, -0.13420800864696503,
- 0.06184900552034378, -0.017240267246961594, -0.04118116945028305, 0.03940274193882942,
- 0.03144698590040207, -0.0915067195892334, -0.08384615927934647, 0.0952368900179863,
- 0.04078402370214462, 0.05387413501739502, 0.07677144557237625, -0.04322744905948639,
- 0.012218191288411617, 0.10092748701572418, 0.018115365877747536, -0.009787586517632008,
- 0.04780586063861847, 0.0729193165898323, -0.0001806480868253857, -0.02774364873766899,
- 0.04601018503308296, 0.008260617963969707, 0.06006617844104767, 0.019631916657090187,
- 0.030010677874088287, -0.00844340119510889, -0.04342291131615639, 0.04431441053748131,
- 0.011880233883857727, 0.024042053148150444, 0.09618408232927322, -0.10130549967288971,
- -0.00952592771500349, -0.018065812066197395, 0.001834187307395041, 0.04017939418554306,
- -0.029083652421832085, 0.09136636555194855, 0.10933765023946762, 0.06553373485803604,
- 0.047402847558259964, 0.0625927746295929, 0.05960750952363014, 0.041784100234508514,
- -0.02241702564060688, 0.07594986259937286, -0.0021411466877907515,
- -0.050766702741384506, -0.0043799360282719135, -0.003046570345759392,
- 0.025049256160855293, -0.009137588553130627, -0.05735047534108162, -0.04613379016518593,
- -0.055897001177072525, -0.07849501818418503, -0.05460956692695618, -0.01592983305454254,
- 0.02058485709130764, 0.014834902249276638, -0.07883021235466003, -0.10072088241577148,
- -0.09812251478433609, 0.03379128500819206, 0.10083076357841492, -0.0018181706545874476,
- -0.033564649522304535, -0.13752101361751556, 0.009994227439165115,
- -0.019881874322891235, 0.06536810845136642, -0.026316387578845024,
- -0.028789004310965538, 0.05303378030657768, -0.04746369644999504, 0.04350145906209946,
- -0.009370057843625546, -0.03737342730164528, -0.06594091653823853, -0.07337084412574768,
- -0.05062668025493622, -0.0625816211104393, 0.0039929416961967945, 0.02415638417005539,
- 0.017562123015522957, 0.034749001264572144, 0.06424267590045929, -0.028176119551062584,
- -0.054482169449329376, 0.07340619713068008, -0.019230565056204796, 0.02598012238740921,
- 0.09461112320423126, -0.06434765458106995, 0.006016474682837725, 0.028268370777368546,
- -0.08922461420297623, -0.0587579607963562, -0.0179400946944952, -0.053824327886104584,
- 0.07188259810209274, 0.007039777468889952, -0.031395185738801956, -0.07678981125354767,
- -0.03568224981427193, 0.061336785554885864, -0.041933778673410416, -0.09501763433218002,
- -0.07336083054542542, 0.10410818457603455, -0.007012668065726757, 0.0030861811246722937,
- -0.022707102820277214, -0.051691170781850815, 0.08383193612098694, 0.015964217483997345,
- -0.00708771450445056, 0.05158871412277222, 0.08505500853061676, 0.00789887085556984,
- -0.007361940573900938, 0.08599064499139786, -0.034550491720438004,
- 0.0024259816855192184, 0.06047404557466507, 0.4215210974216461, -0.1901150792837143,
- 0.08157837390899658, 0.10077542066574097, 0.005083470605313778, 0.052869219332933426,
- -0.06578738242387772, 0.04553611949086189, 0.08476414531469345, 0.12450733035802841,
- 0.1307472288608551, -0.09384486079216003, 0.004753754939883947, -0.0746677964925766,
- 0.09039323031902313, 0.027935950085520744, 0.0364096537232399, -0.0400531068444252,
- -0.06043216586112976, -0.021361934021115303, 0.025610314682126045, -0.03771953284740448,
- -0.006641441956162453, 0.012767735868692398, -0.038293834775686264,
- 0.0034645930863916874, -0.03652900457382202, 0.043632782995700836, -0.03774834796786308,
- 0.05178431048989296, -0.033318616449832916, 0.022209681570529938, 0.03741060942411423,
- 0.02389516681432724, -0.12880083918571472, 0.02268267795443535, -0.07518047839403152,
- -0.022317778319120407, 0.0473397821187973, 0.00607981625944376, 0.044354651123285294,
- 0.052048176527023315, -0.015486578457057476, 0.03674815967679024, 0.02739085629582405,
- -0.0872478112578392, 0.02143724076449871, 0.09709334373474121, 0.0309971384704113,
- 0.05022971332073212, 0.1541757732629776, -0.022672485560178757, -0.0009487683419138193,
- -0.0844724103808403, 0.06717608869075775, 0.15124647319316864, 0.0031515127047896385,
- 0.007189400494098663, 0.004558606538921595, -0.011463649570941925, 0.01692415401339531,
- -0.07381952553987503, -0.0972471833229065, -0.052666157484054565, -0.05796343833208084,
- 0.08861798793077469, 0.014261755160987377, -0.024564247578382492, -0.17043575644493103,
- -0.015126818791031837, -0.04750489071011543, 0.03714253008365631, 0.09474111348390579,
- -0.09043053537607193, 0.07025209069252014, 0.015932591632008553, -0.03838137164711952,
- 0.02587362751364708, -0.07236604392528534, 0.004717116244137287, -0.05206698179244995,
- 0.03369304910302162, 0.06248330697417259, 0.025731628760695457, -0.026290221139788628,
- 0.08594702184200287, -0.10780707746744156, 0.08453825116157532, 0.037964388728141785,
- 0.00227791047655046, 0.019362449645996094, -0.01466971542686224, 0.025273773819208145,
- 0.016034767031669617, -0.03372551128268242, 0.044131677597761154, -0.011192576959729195,
- -0.03573937341570854, -0.10566717386245728, -0.0669780969619751, -0.0672992691397667,
- -0.0715324655175209, -0.00550583703443408, -0.1515268236398697, -0.000492156483232975,
- -0.005205254536122084, 0.009033335372805595, -0.0034062531776726246,
- 0.06281925737857819, 0.029914841055870056, -0.13477006554603577, 0.03589410334825516,
- -0.01567995175719261, 0.07565882802009583, -0.07109279930591583, -0.05346938222646713,
- 0.06119440495967865, 0.09745929390192032, 0.04347134754061699, -0.028031371533870697,
- -0.06993244588375092, -0.06626161187887192, 0.06605695933103561, -0.11606957018375397,
- -0.4478885233402252, 0.025507459416985512, 0.0161757729947567, 0.0248886588960886,
- -0.001437503146007657, -0.034914810210466385, 0.028312556445598602,
- -0.015626680105924606, -0.03068225271999836, 0.10624093562364578, -0.029016338288784027,
- 0.011337123811244965, 0.006303261034190655, -0.09643983095884323, -0.01961856335401535,
- -0.016928285360336304, -0.033652257174253464, 0.05663707107305527,
- 0.0008099401602521539, -0.075372613966465, -0.10675836354494095, 0.017366427928209305,
- 0.004283121787011623, 0.04863962158560753, 0.04499935358762741, -0.016172463074326515,
- -0.029329223558306694, -0.04473855346441269, 0.0726613998413086, 0.02815338224172592,
- 0.013864516280591488, -0.09597191214561462, 0.014338345266878605, 0.06385461986064911,
- 0.001706487382762134, 0.12805703282356262, 0.04859255626797676, 0.03948318213224411,
- -0.06920696049928665, 0.11369379609823227, 0.06981116533279419, 0.1870890110731125,
- -0.008290447294712067, 0.021576546132564545, 0.012953420169651508, 0.11582548916339874,
- 0.06624041497707367, -0.009561137296259403, -0.047767605632543564,
- 0.0030202174093574286, 0.01417910773307085, 0.006764566991478205, 0.07160959392786026,
- -0.08937188982963562, -0.019334839656949043, -0.018254131078720093,
- 0.008028674870729446, -0.03725456818938255, 0.04569811746478081, 0.17200413346290588,
- 0.010804549790918827, 0.05799674242734909, 0.05881819501519203, -0.06580692529678345,
- -0.023457543924450874, -0.035799235105514526, -0.05325577035546303,
- 0.039852991700172424, -0.02011234126985073, -0.005518512334674597, -0.05087301507592201,
- -0.12617577612400055, -0.027391377836465836, -0.0126264076679945, -0.017435666173696518,
- 0.10808692127466202, -0.015052767470479012, 0.05124250054359436, -0.07804860174655914,
- 0.13660328090190887, 0.07213489711284637, 0.03287980705499649, 0.06594881415367126,
- 0.06573983281850815, -0.004354087170213461, -0.002420804463326931, -0.05407232791185379,
- -0.05049130693078041, -0.0152580626308918, 0.1775113046169281, -0.035677675157785416,
- 0.08690209686756134, 0.07558541744947433, -0.05344463139772415, -0.07999134063720703,
- 0.026367662474513054, -0.019535576924681664, 0.021625608205795288, -0.44569969177246094,
- -0.02493053860962391, 0.11723864823579788, 0.006404062267392874, 0.04395460709929466,
- 0.07866256684064865, 0.0016736856196075678, -0.0623905248939991, -0.04031631350517273,
- -0.08406321704387665, 0.13259436190128326, 0.016067709773778915, 0.060602713376283646,
- -0.10664079338312149, 0.046167097985744476, 0.058280035853385925, -0.05479580536484718,
- 0.011343518272042274, 0.0693080797791481, -0.23313961923122406, -0.019871141761541367,
- -0.04534020274877548, 0.12010148167610168, 0.012327323667705059, 0.043581318110227585,
- 0.06128282472491264, -0.01294189877808094, 0.01646648533642292, 0.06804449111223221,
- -0.049119193106889725, 0.0346582867205143, 0.0022534120362251997, -0.012029827572405338,
- 0.06499724090099335, 0.12533052265644073, 0.06779345870018005, -0.03490656614303589,
- 11.92270565032959, 0.08011677861213684, 0.06902842968702316, -0.08241936564445496,
- -0.007718642707914114, -0.0486706905066967, 0.0007580842357128859, -0.14509738981723785,
- 0.04150868207216263, 0.11654679477214813, -0.013702666386961937, -0.060071539133787155,
- -0.036446020007133484, -0.11970746517181396, 0.038233403116464615, -0.0448455810546875,
- -0.0801144689321518, -0.044013869017362595, 0.06801098585128784, -0.021877648308873177,
- -0.00823947973549366, 0.014333387836813927, 0.04974669590592384, 0.009991890750825405,
- -0.057784877717494965, 0.02674693427979946, 0.019646678119897842, 0.009973518550395966,
- -0.007363985292613506, 0.03105759434401989, -0.014472603797912598, 0.02574864961206913,
- 0.06757209450006485, -0.04814930632710457, 0.0344199612736702, 0.07494866102933884,
- 0.07136636972427368, 0.01702803745865822, 0.057258374989032745, 0.12674209475517273,
- 0.013134943321347237, 0.03090451844036579, 0.055736154317855835, 0.02328944392502308,
- 0.03766889125108719, 0.043388452380895615, 0.02229997329413891, 0.12418268620967865,
- 0.0072795613668859005, 0.021371396258473396, 0.09688881039619446, 0.020290808752179146,
- 0.11617770045995712, 0.008086171001195908, -0.03656793758273125, 0.018052784726023674,
- -0.008702557533979416, -0.07518060505390167, 0.04506796598434448, 0.03368834778666496,
- -0.07176746428012848, 0.1315351128578186, 0.01761689782142639, 0.08322936296463013,
- -0.022769343107938766, 0.027334801852703094, 0.08213260024785995, 0.047722719609737396,
- -0.1317412406206131, -0.103034108877182, 0.021777059882879257, -0.09080173820257187,
- -0.06253627687692642, 0.10485801845788956, 0.12067845463752747, -0.05672550946474075,
- 0.044496990740299225, -0.020059753209352493, 0.03329389542341232, 0.004285253584384918,
- -0.011623401194810867, 0.10376749187707901, -0.030333014205098152, 0.031636979430913925,
- 0.05358755588531494, 0.035683032125234604, 0.07826355844736099, 0.06139451637864113,
- 0.011987775564193726, -0.09359819442033768, -0.07305283099412918, 0.06110115721821785,
- 0.009985924698412418, -0.0728072077035904, 0.06650710105895996, -0.0782039687037468,
- 0.04499473795294762, -0.17195750772953033, 0.10063422471284866, 0.10138199478387833,
- -0.13311690092086792, 0.0049334075301885605, -0.04475658759474754, 0.07687526941299438,
- 0.03262726590037346, 0.017062729224562645, -0.07144655287265778, 0.030649112537503242,
- 0.020538967102766037, 0.04653623700141907, 0.01224691141396761, 0.07512371987104416,
- 0.10044170171022415, -0.07401194423437119, -0.016725733876228333, 0.07297898083925247,
- -0.03518124669790268, -0.022334091365337372, 0.06550628691911697, 0.06391899287700653,
- -0.09697266668081284, -0.03695881739258766, -0.04367751628160477, -0.07570818066596985,
- -0.008458924479782581, -0.08343474566936493, 0.0026661683805286884,
- 0.045488156378269196, -0.06849917024374008, -0.024196209385991096, 0.010656903497874737,
- 0.07720022648572922, 0.0770685225725174, 0.006279710214585066, 0.07235819101333618,
- -0.0345982126891613, -0.07350338995456696, 0.031271327286958694, 0.0170889962464571,
- 0.07998311519622803, -0.01827533356845379, -0.025366419926285744, -0.052564214915037155,
- -0.10336710512638092, 0.017397839576005936, 0.05441433936357498, 0.015275252051651478,
- 0.03987613320350647, 0.04643434286117554, -0.10747907310724258, -0.06995266675949097,
- 0.12076227366924286, 0.03998677805066109, -0.018750548362731934, 0.041197557002305984,
- -0.01841658726334572, -0.037291914224624634, 0.08755571395158768, -0.0496947206556797,
- 0.03672916069626808, 0.04625732824206352, 0.022168293595314026, 0.0526387095451355,
- 0.11149190366268158, 0.041814617812633514, 0.04014117270708084, 0.02230295166373253,
- 0.03732093423604965, 0.012957311235368252, -0.031018387526273727, 0.019430048763751984,
- -0.02111188694834709, -0.06575767695903778, -0.09820422530174255, 0.016794493421912193,
- 0.08364196866750717, 0.00998008158057928, -0.03883202746510506, 0.0007134421030059457,
- -0.05717353895306587
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 301,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 19,
- "similarity": 0.9982855319976807
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 10,
- "similarity": 0.9982491135597229
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 43,
- "similarity": 0.9982393980026245
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Kashmir Hill"],
- "epoch_date_downloaded": 1661126400,
- "epoch_date_modified": 1661299200,
- "epoch_date_submitted": 1661126400,
- "flag": null,
- "report_number": 1938,
- "source_domain": "nytimes.com",
- "submitters": ["Khoa Lam"],
- "title": "Accused of Cheating by an Algorithm, and a Professor She Had Never Met",
- "url": "https://www.nytimes.com/2022/05/27/technology/college-students-cheating-software-honorlock.html"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "geisel-school-of-medicine",
- "name": "Geisel School of Medicine"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "geisel-school-of-medicine's-technology-staff",
- "name": "Geisel School of Medicine's Technology staff"
- },
- {
- "__typename": "Entity",
- "entity_id": "canvas",
- "name": "Canvas"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "sirey-zhang",
- "name": "Sirey Zhang"
- },
- {
- "__typename": "Entity",
- "entity_id": "geisel-school-of-medicine's-students",
- "name": "Geisel School of Medicine's students"
- },
- {
- "__typename": "Entity",
- "entity_id": "geisel-school-of-medicine's-professors",
- "name": "Geisel School of Medicine's professors"
- },
- {
- "__typename": "Entity",
- "entity_id": "geisel-school-of-medicine's-accused-students",
- "name": "Geisel School of Medicine's accused students"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [98, 103, 104, 106, 109, 112, 121, 4, 48, 52],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1939],
- "vector": [
- -0.07251288741827011, 0.07384293526411057, 0.00793029647320509, -0.06421125680208206,
- 0.10071899741888046, 0.0002336146280867979, -0.005675939843058586, 0.06289637088775635,
- 0.0947418361902237, -0.1315438598394394, -0.004837661981582642, 0.01822393760085106,
- 0.048096414655447006, -0.11261258274316788, 0.019138438627123833, -0.08233417570590973,
- -0.061595089733600616, -0.030890652909874916, -0.005143472459167242,
- -0.12304864823818207, -0.050689198076725006, -0.018337015062570572, 0.03272778168320656,
- 0.07693257182836533, -0.05320928618311882, 0.05646340176463127, 0.09993784874677658,
- 0.1456701159477234, -0.036587752401828766, 0.02501632459461689, -0.07290999591350555,
- -0.05949128046631813, 0.12615704536437988, -0.014159763231873512, -0.04320799186825752,
- 0.1027536392211914, 0.03223968669772148, -0.02511020563542843, -0.028346393257379532,
- -0.008688443340361118, 0.036681462079286575, 0.21806888282299042, 0.010335138067603111,
- -0.054140567779541016, 0.05079876258969307, -0.016273606568574905, 0.04242601618170738,
- 0.07565304636955261, 0.025786520913243294, -0.014182012528181076, 0.03069406934082508,
- 0.05795692279934883, -0.03691503033041954, 0.043275728821754456, -0.11110619455575943,
- 0.08164609968662262, 0.026313530281186104, -0.05250939354300499, 0.06099386513233185,
- -0.08299602568149567, -0.03264891728758812, -0.19419780373573303, -0.035122111439704895,
- -0.07533774524927139, 0.08376792818307877, -0.07346522063016891, -0.04795021936297417,
- 0.015802612528204918, 0.05541127175092697, 0.05349809676408768, 0.036268554627895355,
- -0.026787344366312027, -0.050310030579566956, 0.013634679839015007,
- 0.009339829906821251, -0.014027150347828865, 0.03859072923660278, 0.19574451446533203,
- -0.10680045187473297, -0.0008537007961422205, 0.09064172208309174, -0.11123516410589218,
- 0.3831033706665039, 0.023978235200047493, -0.009532894007861614, 0.041450198739767075,
- 0.10701313614845276, 0.02779453434050083, 0.02989373542368412, 0.043191052973270416,
- -0.036624256521463394, 0.041249390691518784, -0.05223465710878372, 0.030692921951413155,
- 0.06673671305179596, 0.09112919867038727, -0.004690853878855705, 0.08919677883386612,
- -0.03533705696463585, -0.04152986779808998, 0.07016695290803909, -0.08572117239236832,
- 0.1369510293006897, 0.068723663687706, -0.05472144857048988, 0.006369251292198896,
- 0.09503204375505447, -0.06872175633907318, 0.05822485685348511, -0.06105348840355873,
- -0.012034963816404343, -0.06198636442422867, 0.03634091094136238, -0.013444344513118267,
- 0.0025611405726522207, -0.017717164009809494, 0.026408199220895767, 0.04082927480340004,
- 0.09104631841182709, 0.04251808300614357, -0.0140773830935359, 0.07703126221895218,
- 0.10216241329908371, -0.029436659067869186, -0.02363462932407856, 0.0008130174246616662,
- -0.07183685153722763, 0.01798011176288128, 0.020981568843126297, 0.04792727157473564,
- -0.05562618002295494, -0.12208708375692368, 0.0016127920243889093, 0.10232634842395782,
- -0.021317729726433754, -0.05141528695821762, 0.013110941275954247, -0.05172542482614517,
- 0.07014726847410202, -0.0331122949719429, -0.010535536333918571, 0.05703336000442505,
- 0.07203217595815659, 0.05202792212367058, 0.04378983750939369, 0.04155619814991951,
- -0.016897954046726227, -0.010907785035669804, 0.031101716682314873,
- -0.025378653779625893, 0.0864969864487648, -0.16949741542339325, -0.029056958854198456,
- 0.01930348202586174, -0.012273084372282028, 0.6444868445396423, 0.1399374157190323,
- 0.13802318274974823, -0.006672735791653395, -0.05780625715851784, 0.17098592221736908,
- 0.014716392382979393, 0.04546026885509491, -0.06742385029792786, -0.04995688050985336,
- 0.006140552926808596, -0.04948122426867485, -0.05246684327721596, -0.008252286352217197,
- 0.057500019669532776, 0.13185414671897888, 0.013660523109138012, 0.12600460648536682,
- 0.020959731191396713, -0.09965549409389496, -0.017092781141400337, 0.057444266974925995,
- 0.019779382273554802, -0.10560871660709381, -0.024236252531409264, 0.02209087274968624,
- 0.072482630610466, -0.07982833683490753, 0.019585737958550453, -0.031180469319224358,
- 0.028223246335983276, -0.02962007373571396, 0.0381176583468914, -0.00867495872080326,
- 0.008387538604438305, 0.06861263513565063, 0.058459579944610596, 0.01324346661567688,
- -0.1010294035077095, -0.062319278717041016, 0.1120377853512764, -0.01979159191250801,
- -0.05354577302932739, 0.07654110342264175, -0.04288129508495331, -0.014728151261806488,
- 0.054404377937316895, 0.16144001483917236, -0.12673018872737885, 0.018819179385900497,
- -0.009242655709385872, -0.05726319178938866, 0.11857865750789642, 0.006227042991667986,
- -0.06922859698534012, -0.04440749064087868, 0.07973470538854599, 0.045425623655319214,
- 0.06810358911752701, 0.050923604518175125, -0.016651853919029236, 0.029310885816812515,
- 0.01353627722710371, 0.0019761130679398775, -0.05886634811758995, 0.04183037206530571,
- 0.06780291348695755, -0.03089359775185585, 0.004400503356009722, 0.03634682297706604,
- 0.05197146162390709, 0.056588832288980484, 0.021438557654619217, 0.058795228600502014,
- 0.01797977276146412, -0.04143989831209183, 0.057929594069719315, -0.00940360315144062,
- 0.0008633257239125669, 0.11335212737321854, -0.09781849384307861, -0.005531582050025463,
- -0.03160849213600159, 0.007969957776367664, 0.016284005716443062, -0.06624797731637955,
- 0.05980420857667923, 0.08428896218538284, 0.07011044025421143, 0.04909106716513634,
- 0.05265685170888901, 0.03807254880666733, 0.06207093223929405, -0.007872561924159527,
- 0.09147636592388153, -0.001920522190630436, -0.06482576578855515, -0.006755178794264793,
- -0.02182205580174923, 0.08248280733823776, -0.02744372747838497, -0.034740593284368515,
- -0.022069130092859268, -0.06494062393903732, -0.05145583674311638,
- -0.060397617518901825, -0.009328300133347511, 0.04388939216732979, 0.016737431287765503,
- -0.052743714302778244, -0.11422163993120193, -0.06306556612253189, 0.04665091261267662,
- 0.09880150854587555, 0.006677515804767609, -0.03242887556552887, -0.11437332630157471,
- 0.008479099720716476, -0.017876669764518738, 0.048580922186374664, 0.005902534816414118,
- 0.011659533716738224, -0.02073487639427185, -0.1124534085392952, 0.021633800119161606,
- 0.014598026871681213, -0.005726347677409649, -0.03869706764817238, -0.04078478738665581,
- -0.05148984491825104, -0.03860223665833473, -0.003629320068284869,
- -0.0038173343054950237, 0.02031842991709709, 0.0392741933465004, 0.04204549640417099,
- -0.02272704988718033, -0.011863691732287407, 0.07381027936935425, -0.07936453074216843,
- 0.017870204523205757, 0.07881961017847061, -0.03520485386252403, 0.021652959287166595,
- 0.007347992155700922, -0.06680668890476227, -0.06271588057279587, -0.05415470525622368,
- -0.06028653308749199, 0.0704287514090538, -0.074371337890625, -0.06964569538831711,
- -0.037186164408922195, 0.008333096280694008, 0.055949077010154724, -0.07218465954065323,
- -0.02712942287325859, -0.08424624800682068, 0.1359342336654663, -0.02952738106250763,
- 0.02043089084327221, -0.0003840093850158155, -0.05762180685997009, 0.0714544728398323,
- 0.03841925412416458, 0.025259993970394135, 0.0058191996067762375, 0.05453817546367645,
- -0.032217349857091904, 0.011665664613246918, 0.05585751309990883, -0.06508234888315201,
- 0.025428110733628273, 0.09145878255367279, 0.4001412093639374, -0.1301432102918625,
- 0.10833323001861572, 0.09471878409385681, 0.04852495715022087, 0.022972432896494865,
- -0.05477011948823929, 0.05315829813480377, 0.0330754891037941, 0.09858399629592896,
- 0.17153143882751465, -0.0846770703792572, -0.011473549529910088, -0.09204554557800293,
- 0.09333410859107971, 0.029009833931922913, 0.062178466469049454, -0.050682682543992996,
- -0.04069037735462189, -0.06596338748931885, 0.0013999274233356118,
- -0.024316173046827316, 0.0009483897592872381, 0.01622922718524933, -0.03762822225689888,
- 0.043899938464164734, -0.0031488335225731134, 0.03686138242483139,
- -0.048666924238204956, 0.04400637373328209, -0.061531051993370056, 0.03118729591369629,
- -0.006991634611040354, 0.04396704211831093, -0.0873761996626854, -0.004590330179780722,
- -0.12682998180389404, -0.030184611678123474, 0.054010357707738876, 0.01215714868158102,
- 0.0770358219742775, 0.0308309867978096, -0.018773145973682404, 0.043090496212244034,
- 0.006522821262478828, -0.04723527655005455, 0.02268165349960327, 0.03479790315032005,
- 0.015451010316610336, 0.09497036039829254, 0.14743342995643616, -0.03422463685274124,
- -0.05259670317173004, -0.07422585785388947, 0.059411246329545975, 0.12001685798168182,
- -0.010238182730972767, 0.0028806489426642656, 0.0011284889187663794,
- -0.01087050512433052, 0.008018330670893192, -0.08797527104616165, -0.07307334989309311,
- -0.02504149079322815, -0.0773807242512703, 0.06604374200105667, 0.03196203336119652,
- -0.06477798521518707, -0.16786299645900726, -0.06174042820930481, -0.06071663647890091,
- 0.025018885731697083, 0.12051878869533539, -0.045491211116313934, 0.02729315496981144,
- -0.005593423265963793, -0.03789641708135605, 0.012149191461503506, -0.09649728983640671,
- -0.0007613113848492503, -0.03307025879621506, 0.017310719937086105, 0.06957852840423584,
- 0.0267714224755764, -0.08875700831413269, 0.06593911349773407, -0.1001863032579422,
- 0.028749043121933937, -0.02917533554136753, -0.013568546622991562, 0.02305959351360798,
- -0.05233333632349968, 0.036050304770469666, 0.03577035665512085, -0.015506722033023834,
- -0.016976680606603622, -0.007117558270692825, -0.044480450451374054,
- -0.12189140170812607, -0.061200302094221115, -0.032140929251909256,
- -0.08291088789701462, 0.027473222464323044, -0.1226867288351059, -0.011197132058441639,
- -0.018614571541547775, 0.03907943516969681, 0.0016492351423949003, 0.08738352358341217,
- 0.00920491199940443, -0.09612441062927246, -0.007552721071988344, -0.04521740972995758,
- 0.05771195515990257, -0.06371334195137024, -0.06886487454175949, 0.032510921359062195,
- 0.10052670538425446, 0.04850829765200615, -0.037132907658815384, -0.011432139202952385,
- -0.04830656945705414, 0.0926683247089386, -0.11942282319068909, -0.5123157501220703,
- 0.05931020900607109, 0.006489986553788185, 0.03466659411787987, -0.006739641539752483,
- -0.04790615662932396, 0.05046871304512024, -0.015381419099867344, -0.013916486874222755,
- 0.12832866609096527, -0.020010532811284065, 0.013615457341074944, -0.014518437907099724,
- -0.024273110553622246, -0.047639429569244385, -0.039992060512304306,
- -0.013541458174586296, 0.08727150410413742, -0.008962773717939854, -0.08081383258104324,
- -0.05609972029924393, 0.057821888476610184, 0.007425941061228514, -0.011068904772400856,
- -0.0027903555892407894, -0.019758423790335655, -0.03597531467676163,
- -0.027635233476758003, 0.04209321364760399, 0.04079310595989227, 0.0019069293048232794,
- -0.08923070132732391, -0.004678089637309313, 0.0256842952221632, -0.06384743005037308,
- 0.11653865873813629, 0.032271284610033035, 0.0547894723713398, -0.11946358531713486,
- 0.0844460278749466, 0.06233837082982063, 0.1890808343887329, -0.022962337359786034,
- 0.0816015973687172, 0.025149475783109665, 0.09939263761043549, 0.028307553380727768,
- 0.025260431692004204, -0.027682125568389893, 0.002338928170502186, 0.027426378801465034,
- -0.03604154288768768, 0.06731283664703369, -0.0807509496808052, -0.021278200671076775,
- -0.0007730539073236287, -0.010999533347785473, -0.06141357868909836,
- -0.010060361586511135, 0.18001070618629456, 0.027858881279826164, 0.011440901085734367,
- 0.020437179133296013, -0.07431495934724808, -0.020756220445036888,
- -0.059277258813381195, -0.018941935151815414, 0.01176466979086399, 0.01571016199886799,
- 0.03403463214635849, -0.032536786049604416, -0.11194708198308945, -0.01714194566011429,
- -0.03996602073311806, -0.005473397206515074, 0.09085190296173096, -0.12282724678516388,
- 0.010677049867808819, -0.06290730834007263, 0.14138148725032806, 0.06460120528936386,
- 0.0467374250292778, 0.06206770986318588, 0.08713004738092422, 0.02273574471473694,
- -0.010153993964195251, -0.03540545701980591, -0.042026761919260025,
- 0.040273457765579224, 0.16857801377773285, -0.04480072110891342, 0.10039333999156952,
- 0.09393558651208878, -0.02837672457098961, -0.06087459623813629, 0.03965878486633301,
- -0.00038015609607100487, 0.04276003688573837, -0.4884934425354004, -0.04293297231197357,
- 0.135649636387825, -0.04195934534072876, 0.006444143131375313, 0.08094917982816696,
- 0.00478911679238081, -0.013100480660796165, 0.011735045351088047, -0.11268123984336853,
- 0.1590311974287033, 0.030821431428194046, 0.06087704747915268, -0.11564566195011139,
- 0.04246535897254944, 0.09450960159301758, -0.05786385387182236, -0.01908998005092144,
- 0.020769689232110977, -0.24359996616840363, -0.021911293268203735, -0.03637222573161125,
- 0.15511628985404968, 0.014694632962346077, 0.03908449783921242, 0.09657736122608185,
- 0.0005093374056741595, 0.024579407647252083, 0.03621803596615791, -0.002434962196275592,
- 0.04440842568874359, 0.0008665624191053212, -0.019325831905007362, 0.10961747169494629,
- 0.0618039034307003, 0.11248067766427994, -0.038676969707012177, 11.786360740661621,
- 0.08427061140537262, 0.09049069136381149, -0.07547100633382797, 0.010841354727745056,
- -0.044119831174612045, 0.028584212064743042, -0.07825525850057602, 0.053984660655260086,
- 0.11067693680524826, -0.026346055790781975, -0.028429022058844566, -0.07595884054899216,
- -0.10636156797409058, 0.01967310719192028, -0.06486072391271591, -0.09703034162521362,
- -0.029907504096627235, 0.03058779053390026, -0.05078177526593208, -0.02753501571714878,
- 0.004708161577582359, 0.04506998136639595, 0.030221769586205482, -0.1047264114022255,
- 0.07579242438077927, 0.019723864272236824, 0.028694186359643936, -0.01913914643228054,
- -0.018193116411566734, -0.02022775448858738, 0.05797482654452324, 0.037437885999679565,
- 0.036999017000198364, 0.015795856714248657, 0.09652841091156006, 0.010514190420508385,
- 0.03507567197084427, 0.03673442453145981, 0.06719758361577988, 0.005278478376567364,
- 0.060087259858846664, 0.03499437868595123, 0.05680285021662712, 0.025225237011909485,
- 0.009874984622001648, 0.03172643855214119, 0.15103647112846375, -0.00905588548630476,
- 0.0697648897767067, 0.08282879739999771, -0.008277845568954945, 0.06817903369665146,
- 0.039591893553733826, -0.004639830905944109, 0.0123762721195817, -0.02795262262225151,
- -0.051231227815151215, 0.07484252750873566, -0.004876424558460712, -0.02369561232626438,
- 0.12968809902668, 0.052855413407087326, 0.07589031010866165, -0.011165906675159931,
- 0.032432544976472855, 0.09289468079805374, 0.07110439985990524, -0.15323299169540405,
- -0.06647099554538727, 0.04031052440404892, -0.09544527530670166, -0.10923539102077484,
- 0.07588258385658264, 0.05244441330432892, -0.0239420048892498, 0.046005979180336,
- -0.037202563136816025, 0.06962767243385315, -0.037901490926742554, 0.0160576980561018,
- 0.06427761912345886, -0.061931971460580826, -0.03151097148656845, 0.07325952500104904,
- 0.02548724040389061, 0.13262993097305298, 0.10347235202789307, -0.023260116577148438,
- -0.07547744363546371, -0.09606048464775085, 0.03265426680445671, 0.03194688260555267,
- -0.05703045055270195, 0.032243311405181885, -0.06636963039636612, 0.03213122859597206,
- -0.2294505536556244, 0.11184629797935486, 0.10483623296022415, -0.14431314170360565,
- -0.019482146948575974, -0.034299563616514206, 0.1085449680685997, -0.005671306047588587,
- 0.038613177835941315, -0.012805106118321419, 0.05579249933362007, 0.03414763882756233,
- 0.041910216212272644, -0.012532669119536877, 0.10415613651275635, 0.08152592927217484,
- -0.11996825784444809, 0.05073116719722748, 0.0632803738117218, -0.03651238605380058,
- -0.034423742443323135, 0.07120716571807861, 0.042134761810302734, -0.0948609858751297,
- -0.030800478532910347, -0.05853230133652687, -0.07449422776699066, -0.04184457287192345,
- -0.0746724009513855, 0.007287740707397461, 0.012127187103033066, -0.0721568763256073,
- -0.035665951669216156, 0.03118208795785904, 0.09065163880586624, 0.07650472223758698,
- -0.0013990765437483788, -0.0075296033173799515, -0.03863653168082237,
- -0.06906994432210922, 0.083243228495121, 0.015129411593079567, 0.10671551525592804,
- -0.058297913521528244, -0.01671207696199417, -0.028687434270977974,
- -0.08620668202638626, 0.0020776016172021627, 0.035011425614356995, 0.007498325780034065,
- 0.00977159384638071, 0.07473313063383102, -0.038375575095415115, -0.06377808749675751,
- 0.08628051728010178, -0.01987065188586712, 0.009142832830548286, 0.04388427734375,
- -0.03770820423960686, -0.05502450466156006, 0.0907658189535141, -0.0348573662340641,
- -0.009198772720992565, 0.03883901238441467, -0.03789079189300537, 0.07518333941698074,
- 0.03678527846932411, 0.0775255337357521, 0.06249122694134712, 0.045420948415994644,
- 0.0021213204599916935, 0.00034387074992991984, 0.008377350866794586,
- 0.017913155257701874, -0.03430948778986931, -0.05371135473251343, -0.08418725430965424,
- -0.03888043016195297, 0.08488281816244125, -0.0010018665343523026, -0.1170586347579956,
- 0.007855325937271118, -0.06591851264238358
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 302,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 52,
- "similarity": 0.9967620372772217
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 4,
- "similarity": 0.9967181086540222
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 48,
- "similarity": 0.9967101812362671
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Natasha Singer", " Aaron Krolik"],
- "epoch_date_downloaded": 1661126400,
- "epoch_date_modified": 1661126400,
- "epoch_date_submitted": 1661126400,
- "flag": null,
- "report_number": 1939,
- "source_domain": "nytimes.com",
- "submitters": ["Khoa Lam"],
- "title": "Online Cheating Charges Upend Dartmouth Medical School (Published 2021)",
- "url": "https://www.nytimes.com/2021/05/09/technology/dartmouth-geisel-medical-cheating.html"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "google",
- "name": "Google"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "google",
- "name": "Google"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "parents-using-telemedicine-services",
- "name": "parents using telemedicine services"
- },
- {
- "__typename": "Entity",
- "entity_id": "a-software-engineer-named-mark",
- "name": "a software engineer named Mark"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [278, 285, 290, 291, 170, 267, 301, 4, 51],
- "editor_similar_incidents": [74, 288],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1944, 1940],
- "vector": [
- -0.08549919724464417, 0.05247105658054352, -0.0024406928569078445, -0.09663386642932892,
- 0.10920687019824982, 0.024079792201519012, 0.0031601032242178917, 0.04987926036119461,
- 0.06864962726831436, -0.14417318999767303, 0.011441181413829327, 0.06292667984962463,
- 0.019755540415644646, -0.07451771944761276, -0.009787119925022125, -0.06396292895078659,
- -0.07123269885778427, -0.10774414241313934, -0.04063278064131737, -0.16766732931137085,
- -0.0322561077773571, 0.02194889262318611, 0.08488012850284576, 0.1254914402961731,
- -0.024488426744937897, 0.04317976534366608, 0.15084846317768097, 0.1479184925556183,
- -0.034456174820661545, 0.03613472357392311, 0.004508284851908684, -0.10718876868486404,
- 0.1221887618303299, -0.021830692887306213, 0.027903668582439423, 0.12882766127586365,
- -0.005717530380934477, -0.03610478341579437, 0.009351762011647224,
- -0.014700695872306824, 0.001356661319732666, 0.3063313961029053, 0.015842841938138008,
- -0.059636540710926056, 0.03952670469880104, -0.03601151704788208, 0.04622342064976692,
- 0.08255766332149506, 0.0028044264763593674, -0.035246025770902634,
- -0.007677121553570032, -0.004637131467461586, -0.0739188939332962, 0.09256207942962646,
- -0.1496836394071579, 0.09379153698682785, 0.04259491339325905, -0.017098097130656242,
- 0.0685301274061203, -0.06813500821590424, -0.07321195304393768, -0.29919540882110596,
- 0.0016824598424136639, -0.11474933475255966, 0.07379758358001709, -0.10004153847694397,
- -0.04228749871253967, 0.02927275374531746, -0.017252014949917793, 0.07509175688028336,
- 0.07630445063114166, -0.042842235416173935, -0.03974181413650513, 0.00444334140047431,
- 0.0022844825871288776, -0.05804865434765816, 0.08080528676509857, 0.23241335153579712,
- -0.14558225870132446, 0.009350908920168877, 0.11481863260269165, -0.12011578679084778,
- 0.5294190645217896, 0.01380783598870039, -0.049247726798057556, 0.04486248642206192,
- 0.12329209595918655, -0.017214715480804443, 0.04458393529057503, 0.09667415171861649,
- -0.051277607679367065, 0.09079283475875854, -0.10019555687904358, 0.06160169094800949,
- 0.10170073807239532, 0.01423128042370081, -0.031065955758094788, 0.05156317353248596,
- -0.01192884799093008, -0.07075539231300354, 0.012762589380145073, -0.05293620377779007,
- 0.12681004405021667, 0.12259846925735474, -0.03540906310081482, -0.01286027580499649,
- 0.1331179440021515, -0.07666260004043579, 0.05944252386689186, -0.0855114758014679,
- -0.0014475516509264708, -0.036605123430490494, 0.10197244584560394,
- -0.03706488013267517, 0.003978080116212368, -0.06647763401269913, 0.03617298603057861,
- 0.04036029428243637, 0.1316312700510025, 0.03092634677886963, 0.00026654708199203014,
- 0.05801285058259964, 0.12299288809299469, -0.10001429915428162, -0.05656825378537178,
- -0.05175730958580971, -0.10909998416900635, -0.002139267511665821, 0.005529772490262985,
- 0.043636683374643326, -0.09597423672676086, -0.2215648591518402, 0.02696344628930092,
- 0.09113430976867676, -0.01594879850745201, -0.09142959862947464, -0.020491234958171844,
- -0.06481190025806427, 0.02389071136713028, -0.06146860122680664, -0.027274377644062042,
- 0.03781861439347267, 0.07246285676956177, 0.059734247624874115, 0.10421062260866165,
- 0.05712105333805084, -0.07796632498502731, -0.06303506344556808, -0.0059005082584917545,
- -0.013624903745949268, 0.1795654445886612, -0.18512308597564697, -0.05330612510442734,
- -0.004053943324834108, -0.012684137560427189, 0.7362159490585327, 0.12947624921798706,
- 0.2035938799381256, 0.015811610966920853, -0.03705694526433945, 0.2491578459739685,
- -0.06142816320061684, 0.07184946537017822, -0.07040770351886749, -0.031416866928339005,
- 0.014079884625971317, -0.03141652047634125, -0.06858062744140625, 0.04213365539908409,
- 0.028655027970671654, 0.14938144385814667, 0.036080725491046906, 0.14902019500732422,
- 0.025266025215387344, -0.09733238816261292, -0.020696233958005905, 0.1227535679936409,
- 0.02123510092496872, -0.10777956247329712, -0.06092590093612671, 0.043429844081401825,
- 0.07458795607089996, -0.08506888151168823, 0.015503345988690853, -0.06303782761096954,
- 0.08904728293418884, -0.017810294404625893, 0.05768880248069763, -0.03303712606430054,
- 0.04951060935854912, 0.07659965753555298, 0.04973401501774788, 0.05506483092904091,
- -0.15005940198898315, -0.05320507287979126, 0.08622433990240097, -0.04711257666349411,
- -0.028268780559301376, 0.08718885481357574, -0.09435345232486725, 0.024680763483047485,
- 0.035505373030900955, 0.20179206132888794, -0.13350676000118256, 0.0009988527745008469,
- -0.0010705594904720783, -0.06503142416477203, 0.03262675553560257,
- -0.015147589147090912, -0.05839880555868149, -0.08303958922624588, 0.002738884650170803,
- 0.03308780491352081, 0.06878060847520828, 0.06919069588184357, -0.02534235455095768,
- 0.03363632783293724, 0.019362760707736015, 0.021817147731781006, -0.03262971714138985,
- 0.0777541846036911, 0.08271513879299164, -0.013038438744843006, -0.02632630243897438,
- 0.0795610323548317, 0.04499303176999092, 0.030757565051317215, -0.0039515020325779915,
- 0.06726285070180893, 0.034747567027807236, -0.04427516460418701, 0.06549536436796188,
- -0.012015684507787228, 0.0016590089071542025, 0.12796510756015778, -0.07889480888843536,
- -0.06340847164392471, -0.026199817657470703, -0.03615308925509453, 0.04362262412905693,
- -0.016473662108182907, 0.10116645693778992, 0.11283525824546814, 0.10648421943187714,
- 0.03691817820072174, 0.04835154861211777, 0.04410345479846001, 0.04808410629630089,
- 0.017474260181188583, 0.10238264501094818, -0.012819096446037292, -0.0678698718547821,
- -0.009889479726552963, -0.00011674594134092331, 0.05450892820954323,
- 0.03104015626013279, -0.07235676795244217, -0.03269270807504654, -0.07031713426113129,
- -0.06280668824911118, -0.10701146721839905, -0.03578418493270874, 0.044817350804805756,
- 0.06255568563938141, -0.03540356084704399, -0.04253796115517616, -0.10587242245674133,
- 0.0009391706553287804, 0.09779371321201324, 0.005716238636523485, -0.024105366319417953,
- -0.1269397884607315, 0.07039284706115723, -0.02978787012398243, 0.03037123940885067,
- -0.03227047994732857, 0.044534504413604736, -0.018765781074762344, -0.07783014327287674,
- 0.034910574555397034, -0.011615535244345665, -0.037679363042116165,
- -0.05391889810562134, -0.09332562237977982, -0.04850325733423233, -0.06963282823562622,
- -0.0025869207456707954, 0.04450124502182007, 0.022588303312659264, 0.0491909496486187,
- 0.02758816070854664, -0.019219033420085907, -0.07361479848623276, 0.043599337339401245,
- -0.04968027025461197, 0.03696703165769577, 0.08661536127328873, -0.0357506200671196,
- 0.08262466639280319, -0.0008415970951318741, -0.11277871578931808,
- -0.031685732305049896, 0.019664444029331207, -0.016386719420552254, 0.08580315113067627,
- 0.011565370485186577, 0.02423352375626564, -0.06733423471450806, -0.043039336800575256,
- 0.06393901258707047, -0.04885631799697876, -0.10306867212057114, -0.08757206797599792,
- 0.08791056275367737, -0.024207744747400284, 0.005296617746353149, 0.003997808322310448,
- -0.05359364300966263, 0.0753464624285698, 0.010852535255253315, 0.04350937902927399,
- 0.03361406922340393, 0.06395186483860016, -0.019595440477132797, 0.04623102769255638,
- 0.11309406906366348, -0.06408017128705978, -0.0062833018600940704, 0.10092911124229431,
- 0.4860636293888092, -0.20553448796272278, 0.10799522697925568, 0.09511718153953552,
- 0.016520891338586807, 0.050075314939022064, -0.051791414618492126, 0.06976591050624847,
- 0.06328878551721573, 0.14865821599960327, 0.11770330369472504, -0.04874548688530922,
- -0.057844534516334534, -0.1547626256942749, 0.12933717668056488, -0.01681399904191494,
- 0.0871967226266861, -0.051662981510162354, -0.11581467092037201, -0.06435015052556992,
- 0.057100966572761536, -0.03423723578453064, 0.007735094055533409, -0.009445147588849068,
- -0.02105095610022545, 0.06112265586853027, 0.02296445704996586, 0.037339407950639725,
- -0.043989963829517365, 0.013760186731815338, -0.03210575506091118, 0.043324436992406845,
- 0.01827877201139927, 0.022552303969860077, -0.10157245397567749, 0.016065090894699097,
- -0.05439268425107002, -0.04589448869228363, 0.05734912306070328, 0.0022553380113095045,
- 0.12076903134584427, 0.024156268686056137, -0.04574241116642952, 0.03506535291671753,
- -0.029067065566778183, -0.09485989809036255, 0.021998930722475052, 0.07711008191108704,
- 0.05476796627044678, 0.080225870013237, 0.16378214955329895, -0.05000719428062439,
- -0.07763254642486572, -0.07652316987514496, 0.08238174766302109, 0.18655364215373993,
- -0.0035673920065164566, -0.00558030791580677, 0.01143110916018486, -0.0232551172375679,
- 0.03714211657643318, -0.05444525182247162, -0.058169614523649216, -0.03739594668149948,
- -0.03162931650876999, 0.034828078001737595, 0.003121242392808199, -0.002333147916942835,
- -0.19678014516830444, -0.0293007530272007, -0.04220248758792877, 0.02045372873544693,
- 0.13350909948349, -0.07252109050750732, 0.019312504678964615, 0.040083687752485275,
- -0.004491191357374191, -0.0023268391378223896, -0.1045549213886261,
- -0.014195038005709648, -0.020273815840482712, 0.033401165157556534, 0.0338129885494709,
- 0.05480959638953209, -0.06487248092889786, 0.07945661246776581, -0.15583756566047668,
- 0.07573418319225311, -0.013940353877842426, -0.03416505828499794, -0.009450387209653854,
- -0.0598442405462265, 0.044203683733940125, 0.023869497701525688, -0.061707329005002975,
- 0.031635183840990067, -0.020686589181423187, -0.066648468375206, -0.09051014482975006,
- -0.10528543591499329, -0.05688506364822388, -0.08665137737989426, 0.020479315891861916,
- -0.1561717689037323, -0.002262992551550269, -0.0471767857670784, -0.0325164794921875,
- 0.002913864329457283, 0.0759432464838028, 0.03745857998728752, -0.12927575409412384,
- 0.045523494482040405, -0.06806571781635284, 0.05997966229915619, -0.0657334253191948,
- -0.02202599123120308, -0.03220114856958389, 0.09715181589126587, 0.08992590010166168,
- 0.01802557334303856, 0.014797411859035492, -0.09802936017513275, 0.07543356716632843,
- -0.11496096849441528, -0.45679450035095215, 0.05460362881422043, -0.010801724158227444,
- 0.05953042954206467, -0.008479227311909199, -0.04429714381694794, 0.07068753987550735,
- -0.022577255964279175, -0.05583596229553223, 0.13347014784812927, -0.055560141801834106,
- 0.01716788485646248, -0.011956729926168919, -0.08896744251251221, -0.014511705376207829,
- -0.059071850031614304, -0.05614099279046059, 0.06965174525976181, -0.007725202478468418,
- -0.12550663948059082, -0.14468415081501007, 0.06855331361293793, -0.012317847460508347,
- 0.0668635219335556, 0.04757358133792877, -0.00169404037296772, -0.07982243597507477,
- -0.05760977417230606, 0.04253492131829262, 0.05771723389625549, 0.024808399379253387,
- -0.08439169824123383, -0.01962578110396862, 0.049147170037031174, -0.012568928301334381,
- 0.1258661150932312, 0.013852247968316078, 0.021148620173335075, -0.10515463352203369,
- 0.0722711980342865, 0.06895370036363602, 0.17879480123519897, -0.06614935398101807,
- 0.05993005260825157, -0.013573121279478073, 0.1839069277048111, 0.08412249386310577,
- 0.06298011541366577, -0.058600086718797684, -0.04086339846253395, 0.01669873297214508,
- -0.05018475651741028, 0.07365792989730835, -0.0803506076335907, -0.007014981936663389,
- -0.051185425370931625, -0.03221697732806206, -0.02323024533689022, 0.05637621134519577,
- 0.19027483463287354, 0.027640270069241524, 0.000013325829058885574,
- -0.033493347465991974, -0.025028731673955917, -0.013485046103596687,
- -0.09251329302787781, -0.10262005031108856, 0.009985946118831635, -0.027671169489622116,
- -0.015724511817097664, -0.04348791390657425, -0.1247503012418747, -0.015305627137422562,
- -0.08228253573179245, -0.005261239130049944, 0.13828608393669128, -0.052000485360622406,
- 0.029857199639081955, -0.07190872728824615, 0.18625953793525696, 0.02303548902273178,
- -0.02110455185174942, 0.07187292724847794, 0.16525845229625702, 0.04170534387230873,
- 0.048052407801151276, -0.039265625178813934, -0.056931719183921814,
- -0.009764362126588821, 0.18629294633865356, -0.054635994136333466, 0.14754001796245575,
- 0.07133962213993073, -0.06520496308803558, -0.05994623899459839, 0.004923691973090172,
- -0.010430016554892063, 0.03967500105500221, -0.4432215094566345, -0.03161875531077385,
- 0.15413035452365875, -0.013477586209774017, -0.007060644216835499, 0.07750698924064636,
- 0.03284638002514839, -0.014793286100029945, -0.07391877472400665, -0.08932612836360931,
- 0.11759912222623825, -0.007520446553826332, 0.07122417539358139, -0.18710574507713318,
- 0.025428682565689087, 0.10441131889820099, -0.04249051213264465, -0.006869033444672823,
- 0.05319993942975998, -0.24836109578609467, -0.006738629657775164, -0.047466397285461426,
- 0.17951372265815735, 0.012891139835119247, 0.02232975885272026, 0.1179712563753128,
- -0.05369799584150314, 0.019928861409425735, 0.051177918910980225, 0.022734586149454117,
- 0.03029341623187065, -0.0407995879650116, -0.02565152756869793, 0.12743964791297913,
- 0.085472971200943, 0.10867761075496674, -0.03120330721139908, 12.352655410766602,
- 0.06632653623819351, 0.05533115938305855, -0.11930802464485168, 0.017582770437002182,
- -0.029146671295166016, 0.01540528703480959, -0.14996041357517242, 0.04903284087777138,
- 0.14130526781082153, -0.04278729110956192, -0.03854583203792572, -0.03373023495078087,
- -0.12345810234546661, 0.01382837537676096, -0.0722871869802475, -0.04743189364671707,
- -0.014858589507639408, 0.04011407122015953, -0.06885267794132233, -0.08857214450836182,
- 0.029252108186483383, 0.06060554459691048, 0.01130068488419056, -0.08647432923316956,
- 0.07637742161750793, 0.051628220826387405, 0.020131733268499374, 0.0068832216784358025,
- 0.04590674489736557, -0.01631378009915352, 0.055726565420627594, 0.03315805643796921,
- -0.04095260426402092, 0.04374740645289421, 0.0856219083070755, 0.07245700061321259,
- 0.01802738383412361, 0.0379820317029953, 0.10810458660125732, -0.020911263301968575,
- 0.08982029557228088, 0.01666831597685814, 0.030395658686757088, 0.010530227795243263,
- 0.02315220609307289, 0.03334604203701019, 0.1320471465587616, -0.02422041818499565,
- 0.049584683030843735, 0.11602523922920227, -0.016172774136066437, 0.12933793663978577,
- 0.003899998962879181, -0.003895350731909275, 0.024993881583213806, -0.03636549785733223,
- -0.06736424565315247, 0.056441325694322586, 0.08206305652856827, -0.06032421812415123,
- 0.1367344707250595, 0.0021523861214518547, 0.12918928265571594, -0.025049593299627304,
- 0.04811662435531616, 0.08406086266040802, 0.09171690046787262, -0.16685715317726135,
- -0.14521194994449615, 0.035437874495983124, -0.10828457772731781, -0.10585212707519531,
- 0.0947457104921341, 0.17153418064117432, 0.002624292392283678, 0.07788298279047012,
- -0.052713096141815186, 0.039240650832653046, -0.08955372124910355,
- -0.025993362069129944, 0.08950772881507874, 0.0018640686757862568, -0.01111973263323307,
- 0.06020226329565048, 0.0495113767683506, 0.10757065564393997, 0.08978025615215302,
- -0.042912114411592484, -0.1277375966310501, -0.08221419900655746, 0.0488271564245224,
- -0.030725516378879547, -0.05673840269446373, 0.03126894682645798, -0.09820334613323212,
- 0.06530679762363434, -0.23051954805850983, 0.12709538638591766, 0.07509739696979523,
- -0.08845199644565582, -0.0652012825012207, -0.04973093047738075, 0.09306782484054565,
- -0.010680945590138435, 0.06591739505529404, -0.05216168612241745, -0.04464658349752426,
- 0.034446004778146744, 0.06151440739631653, -0.0038017474580556154, 0.0807710662484169,
- 0.10166921466588974, -0.0867142528295517, 0.018594179302453995, 0.06824050098657608,
- -0.01027760561555624, -0.04137011244893074, 0.10492877662181854, 0.0794856995344162,
- -0.1131443977355957, -0.056634847074747086, -0.0738544687628746, -0.05747576802968979,
- -0.05240493267774582, -0.06943290680646896, 0.021639686077833176, 0.049081068485975266,
- -0.1329512745141983, -0.031650930643081665, 0.018350347876548767, 0.07265747338533401,
- 0.13990963995456696, -0.020802000537514687, 0.051589783281087875, -0.11294595897197723,
- -0.033527128398418427, 0.04084578529000282, 0.061344027519226074, 0.09657764434814453,
- -0.0682487040758133, -0.016837764531373978, -0.06198394298553467, -0.07504777610301971,
- 0.06531649827957153, 0.14100122451782227, 0.041454657912254333, 0.015367113053798676,
- 0.03391379117965698, -0.1204916387796402, -0.08913740515708923, 0.1107671931385994,
- 0.06464369595050812, 0.023452945053577423, 0.05526914447546005, -0.063941091299057,
- -0.049635253846645355, 0.12065627425909042, -0.04572061449289322, 0.03462023288011551,
- 0.026363370940089226, -0.001967085525393486, 0.0908745527267456, 0.11666277050971985,
- 0.08598560839891434, 0.0700586587190628, 0.0382952019572258, -0.017415810376405716,
- -0.018579598516225815, -0.05924367904663086, 0.03657827526330948, -0.056092411279678345,
- -0.05329509079456329, -0.07225781679153442, -0.0033262160141021013, 0.08055941760540009,
- 0.006150616332888603, -0.21188291907310486, 0.000707557424902916, -0.01033733505755663
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 303,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 170,
- "similarity": 0.996662974357605
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 4,
- "similarity": 0.9966074824333191
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 51,
- "similarity": 0.9964364171028137
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Duncan Riley"],
- "epoch_date_downloaded": 1661126400,
- "epoch_date_modified": 1661212800,
- "epoch_date_submitted": 1661126400,
- "flag": null,
- "report_number": 1944,
- "source_domain": "siliconangle.com",
- "submitters": ["Sundar Narayanan"],
- "title": "Big tech gone bad: Google blocks accounts based on false child exploitation filter",
- "url": "https://siliconangle.com/2022/08/21/big-tech-gone-bad-google-blocks-accounts-based-false-positives/"
- },
- {
- "__typename": "Report",
- "authors": ["Kashmir Hill"],
- "epoch_date_downloaded": 1661126400,
- "epoch_date_modified": 1661126400,
- "epoch_date_submitted": 1661040000,
- "flag": null,
- "report_number": 1940,
- "source_domain": "nytimes.com",
- "submitters": ["Daniel Atherton (BNH.ai)"],
- "title": "A Dad Took Photos of His Naked Toddler for the Doctor. Google Flagged Him as a Criminal.",
- "url": "https://www.nytimes.com/2022/08/21/technology/google-surveillance-toddler-photo.html"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "tesla",
- "name": "Tesla"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "tesla",
- "name": "Tesla"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "unnamed-tesla-driver",
- "name": "unnamed Tesla driver"
- },
- {
- "__typename": "Entity",
- "entity_id": "tesla-drivers",
- "name": "Tesla drivers"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [
- 146, 149, 157, 163, 189, 196, 208, 151, 30, 52, 178, 271, 20, 230
- ],
- "editor_similar_incidents": [145],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1941],
- "vector": [
- -0.0902445986866951, 0.06187058612704277, -0.0039935181848704815, -0.06931661069393158,
- 0.054889976978302, -0.02127227932214737, -0.014601532369852066, 0.03503462299704552,
- 0.06378042697906494, -0.17107979953289032, 0.01515245158225298, 0.06835384666919708,
- -0.0019217671360820532, -0.06260081380605698, 0.07404400408267975, -0.12088100612163544,
- -0.08267657458782196, -0.059615857899188995, -0.007107665296643972, -0.0993911474943161,
- -0.06429821997880936, -0.016879428178071976, 0.07029058039188385, 0.07636209577322006,
- -0.05832101032137871, 0.026480350643396378, 0.08521149307489395, 0.10408035665750504,
- -0.10388974845409393, 0.04967210069298744, 0.0033578972797840834, -0.052245136350393295,
- 0.13680365681648254, 0.05428474396467209, 0.0035466630943119526, 0.10311292111873627,
- 0.016796212643384933, -0.013610448688268661, -0.0868861973285675,
- -0.0035550554748624563, 0.005981270223855972, 0.20610593259334564, 0.005021328572183847,
- -0.01700040139257908, 0.06352243572473526, -0.05931306257843971, -0.00888506043702364,
- 0.04289330542087555, 0.034740883857011795, 0.03580022603273392, -0.017941955476999283,
- 0.0824948102235794, -0.015125836245715618, 0.032595328986644745, -0.12011866271495819,
- 0.08562536537647247, 0.021444171667099, 0.006911524571478367, 0.03827482834458351,
- -0.01868865080177784, -0.05417051538825035, -0.23649205267429352, -0.08805422484874725,
- -0.016149600967764854, 0.06167300045490265, -0.10709018260240555, 0.0002340267674298957,
- 0.08231353759765625, 0.04820070415735245, 0.06756923347711563, 0.02432153932750225,
- -0.041285354644060135, -0.04615197330713272, -0.029008712619543076,
- -0.007616947405040264, -0.000863940455019474, 0.0212563443928957, 0.14987413585186005,
- -0.10210525989532471, 0.01189276110380888, 0.14143887162208557, -0.11207346618175507,
- 0.3910088837146759, -0.007841696962714195, -0.07999730855226517, 0.02597888745367527,
- 0.08795659989118576, 0.03289198502898216, 0.01795980893075466, 0.018149247393012047,
- -0.01631281152367592, 0.02652004174888134, -0.004614641424268484, -0.006846380420029163,
- 0.05438312143087387, 0.03267665207386017, -0.005745881702750921, -0.0309824887663126,
- -0.02579401433467865, -0.05415155366063118, 0.08194205164909363, -0.07074470818042755,
- 0.10732757300138474, 0.04042890667915344, 0.0033072910737246275, 0.019593898206949234,
- 0.11982016265392303, -0.039984866976737976, 0.018117239698767662, -0.04220748692750931,
- 0.038588996976614, 0.04433782771229744, 0.053794536739587784, 0.023493554443120956,
- 0.09245491772890091, -0.07202422618865967, 0.022873029112815857, 0.0671054795384407,
- 0.10652321577072144, -0.024427006021142006, -0.030532298609614372, 0.04994996637105942,
- 0.06378982961177826, -0.07483173906803131, -0.01614013873040676, 0.022039849311113358,
- -0.03252080827951431, -0.026632413268089294, -0.04035535827279091, 0.09822719544172287,
- -0.08658912032842636, -0.24297626316547394, 0.027103973552584648, 0.0760105773806572,
- 0.0022279403638094664, -0.0206524096429348, -0.003806366352364421, -0.12463776767253876,
- 0.0793311595916748, -0.004515104461461306, -0.04251788929104805, 0.03938914090394974,
- 0.05116577073931694, 0.06799189746379852, 0.06081091985106468, 0.012201834470033646,
- -0.05246913805603981, -0.03517236188054085, 0.018930602818727493, -0.009594861418008804,
- 0.0859294980764389, -0.16030292212963104, -0.05606376752257347, 0.031941644847393036,
- 0.02553623542189598, 0.664154052734375, 0.10386346280574799, 0.12337284535169601,
- 0.02578154392540455, -0.03422439098358154, 0.192511647939682, -0.019037362188100815,
- 0.059313345700502396, -0.07137174904346466, -0.05421346426010132, 0.043128322809934616,
- -0.1121302992105484, -0.040906984359025955, -0.007680960930883884, 0.004103284794837236,
- 0.08239123225212097, 0.07292286306619644, 0.10943324863910675, -0.009022061713039875,
- -0.10998250544071198, 0.03191165253520012, 0.029025711119174957, 0.060773640871047974,
- -0.11979903280735016, -0.043453067541122437, 0.030981430783867836, 0.08681557327508926,
- -0.05432681739330292, 0.019497914239764214, -0.06960327923297882, 0.052280575037002563,
- -0.015313367359340191, -0.00842223595827818, -0.05739789456129074, 0.004746199119836092,
- 0.04462235048413277, 0.12134774774312973, -0.06539498269557953, -0.1368314027786255,
- -0.012701503932476044, 0.1431143581867218, -0.008246354758739471, -0.06970932334661484,
- 0.06903926283121109, -0.08635427802801132, 0.051999591290950775, 0.022055409848690033,
- 0.14338955283164978, -0.11387719213962555, 0.01656184531748295, 0.036493346095085144,
- -0.059777308255434036, 0.07258308678865433, -0.015163968317210674, -0.08462697267532349,
- -0.07723043859004974, 0.09145959466695786, 0.06156155839562416, 0.06204470619559288,
- 0.09988336265087128, -0.06698066741228104, 0.027262596413493156, 0.04903004691004753,
- 0.012599659152328968, -0.043149810284376144, 0.06436828523874283, 0.09415537863969803,
- -0.014232700690627098, 0.01058682706207037, 0.04546321555972099, 0.012770229950547218,
- 0.02018040232360363, 0.0022710610646754503, 0.09716134518384933, -0.013786290772259235,
- -0.06066029891371727, 0.029991496354341507, 0.00865956861525774, -0.012703284621238708,
- 0.12680689990520477, -0.07084517180919647, -0.0011989573249593377,
- -0.016224423423409462, 0.009558808989822865, -0.005760239437222481,
- -0.05350451543927193, 0.07723884284496307, 0.07119432836771011, 0.06711108237504959,
- 0.016157299280166626, 0.0020242836326360703, 0.07639407366514206, 0.07388664036989212,
- 0.04083491489291191, 0.08340911567211151, -0.00753729697316885, -0.10539975017309189,
- -0.022796012461185455, 0.016114747151732445, 0.07718314230442047, 0.04222392290830612,
- -0.05830002948641777, -0.0283247958868742, -0.03523189201951027, 0.011569309048354626,
- -0.11123642325401306, -0.024900585412979126, -0.01846129633486271, 0.03750663623213768,
- -0.06459005922079086, -0.10792835056781769, -0.09889975935220718, 0.05038037523627281,
- 0.07373198866844177, 0.016447007656097412, -0.02632840909063816, -0.12475603818893433,
- -0.012711554765701294, -0.05600646510720253, 0.03096344694495201, 0.010992253199219704,
- -0.03424350917339325, -0.04049491137266159, -0.07626280933618546, -0.03168955445289612,
- 0.013803835958242416, 0.030016057193279266, -0.04875653237104416, -0.07279185950756073,
- -0.013383358716964722, 0.01345444843173027, -0.006201314274221659,
- -0.012477870099246502, 0.009406257420778275, 0.038661856204271317, 0.05535849556326866,
- -0.0329209566116333, 0.006974854506552219, 0.06484616547822952, -0.0436977818608284,
- -0.020452767610549927, 0.08546984940767288, -0.029644818976521492, 0.013513244688510895,
- 0.03508209064602852, -0.0733303353190422, -0.041383106261491776, -0.02408510074019432,
- -0.07937882840633392, 0.05674891918897629, -0.04141956940293312, -0.020261414349079132,
- -0.04157372564077377, 0.0402771458029747, 0.07591662555932999, -0.06801743805408478,
- -0.05022089555859566, -0.10330376029014587, 0.14205870032310486, -0.028170615434646606,
- 0.0006505298078991473, 0.0034632603637874126, -0.11961457878351212, 0.08009269088506699,
- -0.01107025146484375, -0.01110493391752243, 0.04391239210963249, 0.06697005778551102,
- -0.049366068094968796, -0.002480977913364768, 0.08364017307758331, -0.01741899363696575,
- 0.0005285409279167652, 0.07747147232294083, 0.42853498458862305, -0.08726748824119568,
- 0.09247718006372452, 0.08420543372631073, 0.007360185496509075, 0.05014052614569664,
- -0.03865181282162666, 0.055253855884075165, 0.04856668412685394, 0.09893050789833069,
- 0.0840277373790741, -0.018601922318339348, 0.004088385496288538, 0.010659203864634037,
- 0.10219438374042511, -0.021349482238292694, -0.00134112942032516, -0.05357994884252548,
- -0.03650014474987984, 0.026497408747673035, 0.04283246770501137, -0.03650203347206116,
- -0.015463716350495815, -0.03156643360853195, -0.09990841895341873, 0.00534000713378191,
- 0.018063411116600037, 0.0473787821829319, -0.005421251058578491, 0.0023158632684499025,
- -0.03843800723552704, 0.01900380104780197, 0.008168225176632404, 0.0412757471203804,
- -0.06452514976263046, 0.030768567696213722, -0.11786463856697083, -0.0669209435582161,
- 0.04969890043139458, -0.03517225384712219, 0.06100056692957878, 0.053823623806238174,
- -0.01138840802013874, 0.046640507876873016, -0.0035000680945813656,
- -0.048708926886320114, 0.02641776017844677, 0.049970462918281555, 0.015169595368206501,
- 0.09748128056526184, 0.130027636885643, -0.05304623767733574, -0.023485587909817696,
- -0.06783373653888702, 0.08736460655927658, 0.05583396926522255, -0.053655628114938736,
- 0.003862656420096755, -0.0009044143953360617, 0.04426615312695503, -0.01475897803902626,
- -0.04059268534183502, -0.07052132487297058, 0.02413003146648407, -0.053871314972639084,
- 0.08172866702079773, -0.005424728151410818, -0.031309403479099274, -0.20939622819423676,
- -0.047352783381938934, -0.060818132013082504, 0.005714002065360546, 0.17824897170066833,
- -0.06001448631286621, 0.007425863295793533, 0.06396547704935074, 0.004230578429996967,
- 0.04633118957281113, -0.07864140719175339, -0.025159001350402832, -0.06070445105433464,
- 0.0528329461812973, 0.06026677042245865, 0.0351841114461422, -0.05163129046559334,
- 0.06780602782964706, -0.09712749719619751, 0.06283225864171982, 0.07458819448947906,
- -0.005642401520162821, 0.012750309891998768, -0.016059812158346176,
- 0.033492811024188995, 0.0687192752957344, -0.022975817322731018, 0.016375580802559853,
- -0.0909193605184555, -0.03419075161218643, -0.12711521983146667, -0.04922894388437271,
- -0.05525115504860878, -0.09585823863744736, 0.055982645601034164, -0.1124936118721962,
- -0.014469810761511326, -0.041049614548683167, 0.016557566821575165,
- 0.038610268384218216, 0.03295474499464035, 0.005270133260637522, -0.14038939774036407,
- 0.01345168799161911, -0.007890715263783932, 0.07961203157901764, -0.10009466111660004,
- -0.07481721043586731, 0.006883260793983936, 0.08098909258842468, 0.030699510127305984,
- 0.016285374760627747, -0.011242660693824291, -0.04357410967350006, 0.03277396410703659,
- -0.08832807838916779, -0.4916738271713257, 0.007299179211258888, 0.040544718503952026,
- 0.052934084087610245, 0.020452342927455902, -0.04596186429262161, 0.06955435127019882,
- -0.00552938599139452, -0.021890850737690926, 0.10213427990674973, -0.07812903076410294,
- 0.02533489465713501, 0.022430747747421265, -0.04793471470475197, -0.007628258317708969,
- -0.055654577910900116, -0.025209279730916023, 0.03541120886802673,
- -0.005218849517405033, -0.07713530212640762, -0.10287850350141525, 0.043160952627658844,
- -0.002538771368563175, -0.004333916120231152, 0.002324987668544054, 0.03566324710845947,
- -0.04071709141135216, -0.03154594451189041, 0.013882719911634922, 0.022691844031214714,
- 0.02666955254971981, -0.05333663150668144, -0.0020092069171369076, 0.05719957500696182,
- -0.06401129066944122, 0.1710420548915863, -0.017380742356181145, 0.0566021129488945,
- -0.1379522979259491, 0.0827735960483551, 0.0623612105846405, 0.18795429170131683,
- -0.006097408011555672, 0.007581162732094526, 0.04369106516242027, 0.11359899491071701,
- 0.057892512530088425, 0.047424644231796265, -0.00019482793868519366, 0.0280460137873888,
- 0.010812009684741497, -0.005777030251920223, 0.049495477229356766, -0.10644939541816711,
- -0.00519926892593503, -0.006933458615094423, -0.008321316912770271,
- -0.012250065803527832, 0.0402604304254055, 0.162200927734375, 0.03209672123193741,
- 0.04177656024694443, 0.013367926701903343, -0.0540907196700573, -0.02102367766201496,
- -0.03601124882698059, -0.09531652927398682, 0.02504035271704197, 0.01095458772033453,
- 0.05142592638731003, -0.04400373622775078, -0.13961583375930786, -0.027480116114020348,
- -0.06743193417787552, -0.004615428391844034, 0.08340445905923843, -0.051730621606111526,
- 0.07426536083221436, -0.040779370814561844, 0.12846069037914276, 0.03968160226941109,
- 0.040208231657743454, 0.062676340341568, 0.04816807433962822, -0.008634468540549278,
- -0.00317161506973207, -0.06059699133038521, -0.10905369371175766, 0.005327810067683458,
- 0.14820346236228943, -0.0379752553999424, 0.09337345510721207, 0.011413498781621456,
- 0.004223121330142021, -0.0878543108701706, 0.05703151971101761, 0.0018941696034744382,
- 0.01370470691472292, -0.41786015033721924, -0.014312224462628365, 0.12435481697320938,
- 0.023235956206917763, 0.06397231668233871, 0.0845462754368782, 0.04309229552745819,
- -0.03203298896551132, -0.0308880303055048, -0.02324743941426277, 0.16080039739608765,
- -0.0495559461414814, 0.01075802743434906, -0.12656855583190918, 0.04005128890275955,
- 0.06331997364759445, -0.003451952710747719, -0.04634188860654831, 0.08404790610074997,
- -0.21806439757347107, -0.019892370328307152, -0.09800694137811661, 0.15456321835517883,
- 0.11038939654827118, 0.02185574546456337, 0.07674595713615417, -0.03464353829622269,
- 0.018169578164815903, 0.024723609909415245, 0.031821880489587784, 0.10071790963411331,
- -0.005013444926589727, -0.033417653292417526, 0.14131532609462738, 0.08692841231822968,
- 0.10132826864719391, -0.025960344821214676, 11.856974601745605, 0.09518352895975113,
- 0.05029553920030594, -0.0659448429942131, 0.05560334399342537, -0.06238212063908577,
- 0.06637381762266159, -0.134409099817276, 0.05166657641530037, 0.09491702169179916,
- -0.03580772131681442, -0.0072553521022200584, -0.015191146172583103,
- -0.07596058398485184, -0.0011546367313712835, -0.08015543222427368,
- -0.012976435013115406, -0.03862021118402481, 0.017809083685278893,
- -0.045172590762376785, -0.040040433406829834, 0.03358116373419762, 0.06939516216516495,
- 0.03600092977285385, -0.12237857282161713, 0.09729699790477753, 0.04883510619401932,
- 0.0035473904572427273, -0.021941175684332848, 0.03393741324543953,
- -0.036994293332099915, 0.052338872104883194, 0.046719733625650406,
- -0.0031494940631091595, -0.032735079526901245, 0.104568250477314, 0.07525596022605896,
- 0.044214848428964615, 0.005074597895145416, 0.05210663750767708, 0.0396399050951004,
- 0.02126523107290268, -0.0008244685595855117, 0.052161116153001785, 0.03535761311650276,
- 0.026895705610513687, 0.07295598089694977, 0.12683017551898956, -0.002690323628485203,
- 0.046661633998155594, 0.08107233792543411, -0.03156941011548042, 0.11757159978151321,
- 0.05807407200336456, 0.012596921063959599, 0.005286483094096184, -0.031907323747873306,
- -0.06567597389221191, 0.09112071245908737, 0.07444792240858078, -0.05621358007192612,
- 0.10335126519203186, 0.04510446637868881, 0.07778560370206833, 0.010272771120071411,
- 0.03429068252444267, 0.05958520621061325, 0.0421515554189682, -0.13502028584480286,
- -0.06170661747455597, 0.08135850727558136, -0.11579187214374542, -0.05012639984488487,
- 0.040781669318675995, 0.05975450202822685, -0.03971407562494278, 0.0534941665828228,
- -0.072149358689785, 0.045703016221523285, 0.0029181307181715965, -0.0017909982707351446,
- 0.01645764894783497, -0.021186387166380882, 0.04980739951133728, 0.009955390356481075,
- -0.030273986980319023, 0.12754961848258972, 0.04908350482583046, -0.02277098223567009,
- -0.08782820403575897, -0.10606570541858673, 0.1090625748038292, -0.007965202443301678,
- -0.08497591316699982, 0.0006751323817297816, -0.047546472400426865,
- 0.016739554703235626, -0.15017279982566833, 0.09521137923002243, 0.05407600849866867,
- -0.0740167647600174, -0.03280952200293541, -0.013280346989631653, 0.09679442644119263,
- -0.020432302728295326, 0.03109976276755333, -0.031530577689409256, 0.048659153282642365,
- 0.0023336487356573343, 0.05646564066410065, -0.03374803811311722, 0.05910716578364372,
- 0.058571845293045044, -0.06391487270593643, 0.0687728151679039, 0.09342816472053528,
- -0.03434634581208229, -0.0653294250369072, 0.06398840993642807, 0.06703697144985199,
- -0.11650636047124863, -0.04830997437238693, -0.019159799441695213, -0.07219559699296951,
- -0.0017459330847486854, -0.03807443380355835, 0.03539727255702019,
- -0.014630941674113274, -0.04192544147372246, -0.07411830872297287, 0.055546149611473083,
- 0.03416203334927559, 0.1138649731874466, 0.020264018326997757, 0.056959569454193115,
- -0.08002260327339172, -0.029483750462532043, 0.05048580467700958, 0.03866282477974892,
- 0.10104500502347946, -0.010229412466287613, 0.021490219980478287, -0.02059771865606308,
- -0.13180699944496155, -0.009657052345573902, 0.11750367283821106, 0.04405270144343376,
- 0.025437453761696815, 0.04134391248226166, -0.07699171453714371, -0.0006011636578477919,
- 0.10126613825559616, 0.05384808033704758, -0.00555887958034873, -0.01927783526480198,
- -0.09115065634250641, 0.007554670795798302, 0.1364538073539734, -0.04120037332177162,
- -0.0076432437635958195, 0.0028893095441162586, -0.08237260580062866,
- 0.08023222535848618, 0.0638454332947731, 0.04786880314350128, 0.054025087505578995,
- 0.04127886891365051, -0.020198026672005653, -0.009410860016942024,
- 0.0014763198560103774, -0.006055979058146477, -0.0001506253465777263,
- -0.12886330485343933, -0.0876832827925682, -0.004202048759907484, 0.08194886893033981,
- 0.017667226493358612, -0.1421082764863968, -0.021836575120687485, -0.08605030179023743
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 304,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 151,
- "similarity": 0.9988099336624146
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 20,
- "similarity": 0.9985735416412354
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 178,
- "similarity": 0.9984559416770935
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Andrew J. Hawkins"],
- "epoch_date_downloaded": 1660608000,
- "epoch_date_modified": 1661126400,
- "epoch_date_submitted": 1660608000,
- "flag": null,
- "report_number": 1941,
- "source_domain": "theverge.com",
- "submitters": ["Sonali Pednekar (CSET)", "AIAAIC"],
- "title": "Tesla vehicle in ‘Full Self-Driving’ beta mode ‘severely damaged’ after crash in California",
- "url": "https://www.theverge.com/2021/11/12/22778135/tesla-full-self-driving-beta-crash-fsd-california"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "youtube",
- "name": "YouTube"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "youtube",
- "name": "YouTube"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "youtube-users",
- "name": "YouTube users"
- },
- {
- "__typename": "Entity",
- "entity_id": "youtube-climate-skeptic-users",
- "name": "YouTube climate-skeptic users"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [122, 267, 13, 14],
- "editor_similar_incidents": [1],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1943, 1942],
- "vector": [
- -0.05922941118478775, 0.05344262719154358, -0.008331505581736565, -0.10443958640098572,
- 0.10026079416275024, -0.05683986470103264, -0.005770110059529543, 0.021571708843111992,
- 0.06305769830942154, -0.13711398839950562, 0.01972070150077343, 0.06851133704185486,
- 0.05398491770029068, -0.07886136323213577, 0.03222213685512543, -0.011930455453693867,
- -0.05155060440301895, 0.013838345184922218, 0.012248676270246506, -0.049068041145801544,
- -0.08968757092952728, 0.019401246681809425, 0.0368565171957016, 0.10660398751497269,
- 0.03361885994672775, 0.020173175260424614, 0.1255294531583786, 0.12991532683372498,
- -0.05577976256608963, 0.0511213056743145, -0.01008698157966137, -0.04811811447143555,
- 0.11642208695411682, -0.03624881058931351, -0.008841942064464092, 0.038999833166599274,
- 0.05611433833837509, -0.0595923513174057, -0.058858226984739304, -0.02029324695467949,
- 0.041135095059871674, 0.13266341388225555, 0.0016825906932353973, -0.014731881208717823,
- 0.07500946521759033, 0.017893414944410324, 0.01228458434343338, 0.052654340863227844,
- -0.028867460787296295, -0.020857855677604675, 0.011533010751008987,
- -0.051496103405952454, -0.04577945917844772, -0.0034512775018811226,
- -0.05109767988324165, 0.08252688497304916, 0.05404653772711754, 0.00039593596011400223,
- -0.02348143793642521, -0.04125133901834488, -0.006580352783203125, -0.07481223344802856,
- -0.028779063373804092, -0.0406489372253418, 0.07658402621746063, -0.042668089270591736,
- -0.017722737044095993, -0.015568403527140617, 0.005186034832149744,
- 0.051960818469524384, 0.038614045828580856, -0.03565933555364609, -0.02277665212750435,
- -0.02640315517783165, -0.024799617007374763, -0.031397148966789246, 0.0785939171910286,
- 0.206983283162117, -0.06365993618965149, 0.04180050641298294, 0.06733626127243042,
- -0.07613372802734375, 0.28738540410995483, 0.0024988926015794277, -0.003645220771431923,
- -0.050309956073760986, 0.055838730186223984, 0.04161296412348747, 0.03000396490097046,
- 0.01795732043683529, 0.05321264639496803, 0.05463172495365143, -0.05280791595578194,
- 0.012807282619178295, 0.06146775186061859, 0.013110127300024033, 0.010260269977152348,
- -0.13572296500205994, -0.008427468128502369, -0.014301452785730362,
- 0.054997824132442474, -0.06230377405881882, 0.14464233815670013, 0.025958240032196045,
- -0.022018449380993843, 0.023065688088536263, 0.06724705547094345, -0.024192607030272484,
- 0.03193897753953934, -0.02982068434357643, -0.004846831783652306, 0.04267727956175804,
- 0.05657532066106796, 0.011875906027853489, 0.033827584236860275, -0.01999768242239952,
- 0.00326842931099236, 0.013486512005329132, 0.049545906484127045, 0.08362293243408203,
- 0.020601099357008934, 0.057492323219776154, 0.08824135363101959, -0.034705232828855515,
- 0.004886833019554615, -0.021752240136265755, -0.03556216508150101,
- -0.015824154019355774, -0.01262730173766613, 0.018768172711133957, 0.001862497185356915,
- -0.19516421854496002, 0.019671738147735596, 0.060074180364608765, 0.038841262459754944,
- -0.032375361770391464, 0.009854882024228573, -0.04571843147277832, 0.01826050877571106,
- 0.030779529362916946, -0.011185424402356148, 0.06949146836996078, 0.09300122410058975,
- 0.0568014532327652, 0.08355648815631866, -0.004234248772263527, -0.02647748589515686,
- -0.036998260766267776, -0.02568330056965351, -0.044030800461769104, 0.08297813683748245,
- -0.04567551612854004, -0.03493744879961014, 0.016152475029230118,
- -0.0008797431364655495, 0.5158045291900635, 0.05409984663128853, 0.08467455953359604,
- -0.03014495223760605, -0.011333798058331013, 0.14735952019691467, 0.0037024696357548237,
- 0.05495548993349075, 0.003850916400551796, -0.049189187586307526, -0.024857819080352783,
- -0.021915502846240997, -0.012428921647369862, 0.018786106258630753,
- 0.022580966353416443, 0.07932841777801514, -0.010125615634024143, 0.09939832240343094,
- 0.00919792428612709, -0.045987337827682495, -0.03152403607964516, -0.02917877770960331,
- 0.007564452942460775, -0.06870672851800919, -0.00429442198947072, 0.023110289126634598,
- 0.07848463952541351, -0.03272862732410431, -0.019590096548199654, -0.03171822428703308,
- 0.020168056711554527, -0.030019912868738174, 0.005064120516180992, 0.005681849084794521,
- -0.008309905417263508, 0.00972468126565218, 0.025116141885519028, -0.0057762092910707,
- -0.05736398696899414, 0.00909363478422165, 0.10920654237270355, 0.035263024270534515,
- -0.0481884628534317, 0.02909199148416519, -0.07043290138244629, 0.01863563433289528,
- -0.03056717850267887, 0.11330662667751312, -0.11697906255722046, 0.024231042712926865,
- -0.017347190529108047, -0.061172083020210266, 0.04206613451242447, -0.0261036716401577,
- -0.04827246069908142, -0.08621160686016083, 0.06882169842720032, 0.04777562618255615,
- 0.09121979027986526, 0.017041804268956184, -0.016950586810708046, 0.03437754511833191,
- -0.06685115396976471, 0.012005114927887917, -0.10249137878417969, 0.08065831661224365,
- 0.010428558103740215, -0.06551019102334976, -0.005305543541908264, 0.03647056967020035,
- 0.030591662973165512, 0.07100418210029602, 0.020179161801934242, 0.0718325674533844,
- 0.013012925162911415, 0.000645653810352087, 0.06636804342269897, 0.019080858677625656,
- 0.02213381603360176, 0.07577444612979889, -0.13005776703357697, 0.0055296095088124275,
- -0.046950191259384155, -0.01094936951994896, 0.013113067485392094, -0.08082379400730133,
- 0.038732897490262985, 0.030781008303165436, 0.05176476016640663, -0.009786183014512062,
- 0.0707884356379509, 0.03380688279867172, -0.018422182649374008, -0.02575235441327095,
- 0.03911557048559189, -0.017380226403474808, -0.016301877796649933,
- -0.021429207175970078, 0.014087826013565063, 0.06215068697929382, 0.02276572957634926,
- -0.06358812749385834, -0.008103402331471443, -0.00827883742749691, -0.03877085819840431,
- -0.06178281828761101, 0.007272051647305489, -0.027097605168819427, 0.0421416312456131,
- -0.08450113236904144, -0.04388107359409332, -0.026268010959029198, 0.027414686977863312,
- -0.006212180480360985, -0.028414743021130562, 0.007735523395240307, -0.0876808911561966,
- 0.026290621608495712, -0.0052837105467915535, 0.012041032314300537,
- 0.004785825498402119, -0.05444779992103577, -0.02807488851249218, -0.051348622888326645,
- -0.06227891892194748, 0.046101659536361694, -0.01759280264377594, -0.05080435797572136,
- -0.023902293294668198, -0.06743800640106201, 0.006403401959687471, -0.02454964630305767,
- -0.03033016249537468, 0.004073212388902903, 0.05777105689048767, 0.037899211049079895,
- -0.00867413729429245, -0.02508694678544998, 0.039283934980630875, -0.033714428544044495,
- 0.012055594474077225, 0.05775231122970581, 0.006683824118226767, 0.04644692689180374,
- -0.04515592008829117, 0.012853582389652729, -0.0939311608672142, -0.024487320333719254,
- -0.045077189803123474, 0.06431899964809418, -0.05396274849772453, -0.03156864643096924,
- -0.02591433748602867, -0.0053047798573970795, 0.0655059963464737, -0.0713360607624054,
- -0.048247575759887695, -0.06632804125547409, 0.08130073547363281,
- -0.0031412120442837477, 0.01918322965502739, 0.00883045420050621, -0.028100263327360153,
- 0.041934385895729065, 0.07074117660522461, 0.0315166600048542, 0.07997586578130722,
- 0.0729668140411377, -0.01880967803299427, 0.006341305561363697, 0.07567708939313889,
- 0.015962358564138412, 0.014533540233969688, 0.07803475856781006, 0.38506418466567993,
- -0.1379842460155487, 0.11236114054918289, 0.0709598958492279, 0.019199565052986145,
- 0.032403867691755295, -0.005938928108662367, 0.03942868113517761, 0.02574874646961689,
- 0.06870527565479279, 0.09108829498291016, -0.024178331717848778, 0.0022568977437913418,
- -0.03461097925901413, 0.03507167100906372, -0.007638420909643173, -0.007140379399061203,
- -0.005587206222116947, -0.044701285660266876, -0.029338568449020386,
- 0.02563103474676609, -0.04851829633116722, 0.006764913909137249, -0.03867742419242859,
- -0.08506404608488083, 0.04871174320578575, 0.06498652696609497, 0.03067738562822342,
- -0.007103734649717808, 0.026131045073270798, -0.0006775872316211462,
- -0.0031300950795412064, -0.0076310038566589355, 0.033188652247190475,
- -0.03861681744456291, 0.06115531176328659, -0.0683029443025589, -0.09701357036828995,
- 0.06487584114074707, 0.04352221637964249, 0.03101632371544838, 0.005320670083165169,
- -0.00946698896586895, 0.04669477045536041, 0.01832672581076622, -0.02803642302751541,
- -0.025249328464269638, 0.01996534690260887, 0.03633049875497818, 0.07039115577936172,
- 0.11538524925708771, 0.02118688076734543, 0.012638069689273834, -0.07203373312950134,
- 0.03218226134777069, 0.08523257821798325, -0.027029650285840034, 0.020126352086663246,
- -0.012537636794149876, 0.024831663817167282, 0.013342101126909256, -0.01610095240175724,
- -0.06712469458580017, 0.002743171062320471, -0.025845836848020554, 0.05678509175777435,
- 0.03876303508877754, -0.021383754909038544, -0.1272953748703003, -0.03550026938319206,
- -0.062202081084251404, 0.03593509644269943, 0.10853732377290726, -0.06506627053022385,
- 0.008546901866793633, 0.026181887835264206, -0.009587479755282402, 0.005934322252869606,
- -0.05151991546154022, 0.0008548181504011154, -0.09783148765563965, 0.005812047980725765,
- 0.08215522766113281, 0.03936855122447014, -0.04274885356426239, 0.030280204489827156,
- -0.08940291404724121, 0.00006151897832751274, -0.052721377462148666,
- -0.03427071496844292, -0.0016473010182380676, -0.05069670453667641,
- 0.026893753558397293, -0.011119717732071877, -0.0028554797172546387,
- -0.04961615055799484, -0.026104360818862915, -0.01912451907992363, -0.07834093272686005,
- -0.08363515883684158, -0.01238834485411644, -0.04850529134273529, 0.07288642227649689,
- -0.03779327869415283, 0.012797990813851357, 0.021411646157503128, -0.027113521471619606,
- 0.0028365235775709152, 0.028170008212327957, -0.06916584074497223, -0.06008274480700493,
- -0.028455769643187523, -0.0012507885694503784, -0.008580712601542473,
- 0.012478064745664597, -0.077524833381176, -0.03130646422505379, 0.08549326658248901,
- -0.006512843072414398, -0.06205909699201584, 0.0011768639087677002,
- -0.016801759600639343, 0.07038155198097229, -0.06116335093975067, -0.4967770576477051,
- 0.0647251307964325, 0.047971032559871674, 0.04308387264609337, 0.009313927963376045,
- -0.07992864400148392, 0.00978520605713129, 0.02619580738246441, 0.015264846384525299,
- 0.06874815374612808, -0.04907860979437828, 0.018761269748210907, -0.013163493946194649,
- -0.05174405500292778, 0.007432727143168449, -0.07663030922412872, 0.003514713840559125,
- 0.02285158820450306, -0.023759940639138222, -0.05039644613862038, -0.07971090078353882,
- -0.006019853055477142, -0.04658103734254837, -0.03302045911550522, -0.04426241293549538,
- -0.006314627826213837, -0.06640631705522537, -0.0748639851808548, 0.04882640019059181,
- 0.07653443515300751, 0.00822919700294733, -0.037937041372060776, -0.0006177108734846115,
- 0.028383323922753334, -0.025081435218453407, 0.10617764294147491, 0.028195546939969063,
- -0.02593434602022171, -0.04946457967162132, 0.04749162495136261, 0.08356329798698425,
- 0.19200074672698975, -0.020573273301124573, 0.08120784163475037, 0.019571766257286072,
- 0.07251530140638351, -0.03510785102844238, 0.05035600811243057, -0.041496895253658295,
- -0.024025261402130127, 0.018504928797483444, -0.026936717331409454,
- 0.023108160123229027, -0.027318045496940613, -0.01963663473725319, -0.04012562334537506,
- -0.015855692327022552, -0.05109081789851189, -0.032610561698675156, 0.16444215178489685,
- 0.031374458223581314, 0.021926134824752808, 0.023218326270580292, -0.007537847384810448,
- -0.03741160035133362, -0.1048051118850708, 0.0030804136767983437, -0.042361531406641006,
- -0.00910937413573265, 0.04125409573316574, -0.04785870388150215, -0.0654909759759903,
- -0.028872821480035782, 0.016434742137789726, 0.014172738417983055, 0.11286842077970505,
- -0.04797569662332535, 0.03216695785522461, -0.02733890525996685, 0.12748666107654572,
- 0.007584414444863796, 0.05003095790743828, 0.018505936488509178, 0.05520446598529816,
- -0.0006336858496069908, -0.027723027393221855, -0.0578463152050972,
- -0.02874760702252388, -0.010546755976974964, 0.12032154947519302, 0.020564744248986244,
- 0.12561538815498352, 0.05781614035367966, 0.021006926894187927, -0.020355917513370514,
- 0.024455923587083817, -0.012293893843889236, 0.00031703338027000427,
- -0.47368288040161133, -0.03284987807273865, 0.09957458823919296, -0.004366242326796055,
- 0.002145417034626007, 0.04855756089091301, 0.03772880136966705, -0.012968743219971657,
- 0.0488574281334877, -0.07761071622371674, 0.019781803712248802, 0.037971511483192444,
- 0.04761233925819397, -0.10809653997421265, -0.01248612254858017, 0.08054833859205246,
- 0.02493865415453911, -0.03253581374883652, 0.01951836422085762, -0.1452917456626892,
- 0.004495227709412575, -0.013900325633585453, 0.10331666469573975, 0.02359868586063385,
- 0.023177430033683777, 0.08999983221292496, -0.040847159922122955, 0.03416584059596062,
- 0.04661479964852333, 0.09060481935739517, 0.04511978477239609, -0.005615907721221447,
- -0.062323641031980515, 0.0662788525223732, 0.04532715678215027, 0.14849144220352173,
- 0.00023660354781895876, 11.643272399902344, 0.04064903035759926, 0.03522885590791702,
- -0.09039483219385147, 0.009419668465852737, -0.06386393308639526, 0.04839768260717392,
- -0.02485382743179798, 0.09075373411178589, 0.0730663612484932, 0.010670969262719154,
- -0.04000332951545715, -0.07738912105560303, -0.04861834645271301, 0.005389908328652382,
- -0.03621989116072655, -0.010179243050515652, -0.0008127214387059212,
- 0.034755803644657135, -0.04532092064619064, -0.014061372727155685, 0.04348595067858696,
- 0.059268705546855927, -0.019758831709623337, -0.09784363955259323, 0.05738522857427597,
- 0.00428419653326273, 0.06443160027265549, 0.013278590515255928, 0.05306222662329674,
- 0.02721240185201168, 0.011102989315986633, 0.08717545866966248, 0.04006245732307434,
- 0.028029773384332657, 0.02624421939253807, -0.008033700287342072, 0.009495020844042301,
- 0.0415363572537899, 0.03976696357131004, 0.017752887681126595, 0.036260876804590225,
- 0.006041230633854866, 0.033690065145492554, 0.07046737521886826, 0.009844060055911541,
- -0.004177550785243511, 0.0931660607457161, 0.0060205599293112755, 0.026966208592057228,
- 0.03932880610227585, 0.004763894714415073, 0.11060184985399246, 0.012046683579683304,
- -0.016126923263072968, -0.0022704158909618855, 0.015821654349565506,
- -0.0556119829416275, 0.0697348564863205, -0.008979734033346176, -0.027814310044050217,
- 0.11056169122457504, 0.032275401055812836, 0.10128511488437653, 0.0464661568403244,
- 0.04993955045938492, 0.07509060204029083, 0.08332199603319168, -0.06866186857223511,
- 0.006446016952395439, 0.03620497137308121, -0.1152644008398056, -0.04778238385915756,
- 0.00202212855219841, 0.010784003883600235, 0.013621586374938488, 0.019444230943918228,
- -0.018537787720561028, 0.04183121770620346, -0.026227569207549095, 0.027588114142417908,
- 0.01973176747560501, -0.07093054801225662, 0.03350629657506943, 0.02951807528734207,
- 0.019784389063715935, 0.03799032047390938, 0.08201505243778229, 0.00017230864614248276,
- -0.06228160485625267, -0.08214487135410309, 0.03700514882802963, 0.012765280902385712,
- -0.000315200537443161, 0.028567973524332047, -0.03210114687681198, 0.04281049221754074,
- -0.14191019535064697, 0.07538159936666489, 0.08443662524223328, -0.05095308646559715,
- 0.009353086352348328, -0.018282204866409302, 0.10804665088653564, 0.009811429306864738,
- -0.0011119432747364044, -0.014243350364267826, 0.013342905789613724,
- 0.010385669767856598, 0.046621229499578476, -0.0671653300523758, 0.0677959993481636,
- 0.02909626066684723, -0.04383343458175659, 0.06402262300252914, 0.04783991724252701,
- -0.01812012679874897, -0.027433132752776146, 0.05294445529580116, 0.024492789059877396,
- -0.07535390555858612, -0.003096683882176876, -0.033138763159513474,
- -0.019297633320093155, -0.014923220500349998, -0.028021477162837982,
- -0.008443543687462807, -0.0025852788239717484, -0.015997298061847687,
- -0.009790151380002499, 0.017859552055597305, 0.050583407282829285, 0.11741586029529572,
- 0.003675924614071846, 0.023975761607289314, -0.009356942027807236, -0.0350600890815258,
- 0.059713806957006454, 0.0798913985490799, 0.08629841357469559, -0.04666068032383919,
- -0.012642757035791874, -0.0003289049491286278, -0.09709693491458893,
- -0.022957725450396538, 0.06468302011489868, 0.05860282480716705, 0.04991506040096283,
- 0.004703832790255547, -0.02641269937157631, 0.0041857026517391205, 0.09669995307922363,
- 0.03558121249079704, 0.012137018144130707, 0.012275010347366333, -0.020055927336215973,
- 0.011204526759684086, 0.08138127624988556, -0.03902144730091095, 0.0062755742110311985,
- 0.006903624162077904, -0.22857537865638733, 0.01430758647620678, 0.05646504461765289,
- -0.00946342945098877, 0.010122982785105705, 0.06630513072013855, 0.005375824403017759,
- -0.003351619467139244, 0.040308110415935516, 0.006359382066875696, -0.03751320391893387,
- -0.0683293417096138, -0.07845849543809891, 0.0028801802545785904, 0.05170045793056488,
- 0.11884631216526031, -0.17094577848911285, -0.007709715515375137, -0.020862344652414322
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 305,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 1,
- "similarity": 0.997622013092041
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 13,
- "similarity": 0.9976153373718262
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 14,
- "similarity": 0.9975923895835876
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Ben Geman"],
- "epoch_date_downloaded": 1661126400,
- "epoch_date_modified": 1661126400,
- "epoch_date_submitted": 1608163200,
- "flag": null,
- "report_number": 1943,
- "source_domain": "axios.com",
- "submitters": ["Charlie Pownall", "Ingrid Dickinson (CSET)"],
- "title": "YouTube faces criticism over climate misinformation",
- "url": "https://www.axios.com/youtube-climate-change-misinformation-8ff85b76-285b-4b40-b8ca-2b7211246fb2.html"
- },
- {
- "__typename": "Report",
- "authors": ["Avaaz"],
- "epoch_date_downloaded": 1661126400,
- "epoch_date_modified": 1661126400,
- "epoch_date_submitted": 1661126400,
- "flag": null,
- "report_number": 1942,
- "source_domain": "secure.avaaz.org",
- "submitters": ["Khoa Lam"],
- "title": "Why is YouTube Broadcasting Climate Misinformation to Millions?",
- "url": "https://secure.avaaz.org/campaign/en/youtube_climate_misinformation/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "tesla",
- "name": "Tesla"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "tesla",
- "name": "Tesla"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "unnamed-tesla-owner",
- "name": "unnamed Tesla owner"
- },
- {
- "__typename": "Entity",
- "entity_id": "tesla-drivers",
- "name": "Tesla drivers"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [10, 11, 24, 38, 40, 53, 54, 20, 52, 67, 208, 71],
- "editor_similar_incidents": [70, 178, 294],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1949, 1948, 1946],
- "vector": [
- -0.09102117270231247, 0.06133410334587097, -0.014178887940943241, -0.055490270256996155,
- 0.07349769026041031, -0.030319228768348694, -0.0069677266292274, 0.019555246457457542,
- 0.037721242755651474, -0.1481149047613144, 0.013149797916412354, 0.05840055271983147,
- 0.0435623936355114, -0.09192007780075073, 0.06963861733675003, -0.10727500915527344,
- -0.08063197135925293, -0.03994404897093773, 0.005272766575217247, -0.09562841802835464,
- -0.08419102430343628, 0.007204787340015173, 0.03458799049258232, 0.11272314935922623,
- -0.042940158396959305, 0.002114488510414958, 0.12386292219161987, 0.08535381406545639,
- -0.07080500572919846, 0.023924177512526512, -0.01194750890135765, -0.034532517194747925,
- 0.10716980695724487, 0.02884197048842907, 0.029878348112106323, 0.10338880866765976,
- 0.039686169475317, -0.03310910984873772, -0.11237579584121704, -0.01670031063258648,
- 0.05880532041192055, 0.20581631362438202, -0.02562294714152813, -0.04187172278761864,
- 0.05394089221954346, -0.044072408229112625, 0.045462291687726974, -0.00210518017411232,
- 0.01942266896367073, 0.007698796223849058, -0.005474252626299858, -0.01107263844460249,
- -0.03217281773686409, 0.01670118235051632, -0.08414723724126816, 0.08303385972976685,
- 0.02430240996181965, 0.019516943022608757, 0.05699795484542847, -0.07681871950626373,
- -0.058989036828279495, -0.18673117458820343, -0.06025896593928337,
- -0.049051668494939804, 0.08183879405260086, -0.10137497633695602, -0.007325753569602966,
- 0.015137195587158203, 0.0061464193277060986, 0.0784987285733223, 0.08200489729642868,
- -0.08348406106233597, -0.012422140687704086, 0.02884177304804325, -0.007889057509601116,
- 0.0020870743319392204, -0.023358521983027458, 0.22051572799682617, -0.10305901616811752,
- 0.00926048494875431, 0.09594213217496872, -0.09451038390398026, 0.4226745069026947,
- 0.03522757813334465, -0.047083716839551926, -0.015895986929535866, 0.10213613510131836,
- 0.05205567553639412, 0.014480109326541424, 0.04382787272334099, -0.009253826923668385,
- 0.029844539240002632, -0.05722324922680855, 0.02898838184773922, 0.06168219819664955,
- 0.021153410896658897, -0.0044939517974853516, -0.017604880034923553,
- -0.009882309474050999, -0.037308383733034134, 0.017638692632317543,
- -0.07829742878675461, 0.10189389437437057, 0.052099596709012985, -0.04646952077746391,
- 0.004805519711226225, 0.095034658908844, -0.01817060261964798, 0.049826350063085556,
- -0.058716852217912674, 0.012440812774002552, 0.06085796281695366, 0.06670782715082169,
- -0.0033723737578839064, 0.04152803122997284, -0.06815587729215622,
- -0.013475734740495682, 0.030774200335144997, 0.08899066597223282, 0.04118223115801811,
- -0.0358419306576252, 0.08202451467514038, 0.1481858193874359, -0.08877751976251602,
- -0.03646590933203697, -0.026365837082266808, -0.0840083584189415, -0.013079814612865448,
- -0.04822850227355957, -0.0004038437327835709, -0.0492243766784668, -0.24523024260997772,
- 0.01833759993314743, 0.07026927918195724, 0.0058083608746528625, -0.01491761114448309,
- -0.001256910152733326, -0.10752461105585098, 0.05759964883327484, -0.04032198712229729,
- 0.004456513095647097, 0.056549523025751114, 0.03239821270108223, -0.0007537994533777237,
- 0.11266583949327469, 0.05619032680988312, -0.03753653168678284, -0.0704629123210907,
- 0.001958707347512245, -0.019126931205391884, 0.07647571712732315, -0.11516516655683517,
- -0.058304090052843094, 0.03545807674527168, 0.009953905828297138, 0.6517641544342041,
- 0.11183195561170578, 0.16027410328388214, -0.008766181766986847, -0.013210832141339779,
- 0.18447451293468475, -0.005229384172707796, 0.034720759838819504, -0.061132531613111496,
- -0.09315166622400284, 0.013983596116304398, -0.049329545348882675, -0.0291911531239748,
- 0.03892163559794426, -0.001037966227158904, 0.0908142626285553, 0.05026483163237572,
- 0.10258273035287857, -0.006943387445062399, -0.0812380313873291, -0.01589583419263363,
- 0.04641721025109291, 0.02882298082113266, -0.10887762159109116, -0.03707876801490784,
- 0.023293323814868927, 0.09233591705560684, -0.05280289426445961, 0.022851398214697838,
- -0.01085128728300333, 0.03241277486085892, -0.007343564182519913, 0.030081434175372124,
- -0.01184029970318079, -0.003047717735171318, 0.05082634091377258, 0.06271766871213913,
- -0.03813415393233299, -0.06015282869338989, -0.01295450609177351, 0.08224249631166458,
- -0.015749210491776466, -0.040473852306604385, 0.01683123968541622, -0.10204541683197021,
- 0.07343577593564987, 0.017107807099819183, 0.17167119681835175, -0.11332757025957108,
- 0.07513028383255005, 0.02956269681453705, 0.011816824786365032, 0.04072629287838936,
- -0.024637168273329735, -0.06456572562456131, -0.07839440554380417, 0.07304096966981888,
- 0.06404025107622147, 0.07395763695240021, 0.09532058238983154, -0.038852497935295105,
- 0.04295898601412773, 0.08288180083036423, -0.011106695979833603, -0.01940666325390339,
- 0.07285371422767639, 0.06816837936639786, -0.02858712337911129, -0.06978914886713028,
- -0.004382386803627014, 0.00605820631608367, 0.059459388256073, 0.018389781937003136,
- 0.04959450289607048, 0.01041052769869566, -0.032528020441532135, 0.038589756935834885,
- 0.028775669634342194, 0.06103429198265076, 0.1047215685248375, -0.09660205245018005,
- -0.08278292417526245, -0.02622579038143158, -0.0527944453060627, -0.03152893856167793,
- -0.04367399215698242, 0.08978591114282608, 0.07293947786092758, 0.08064614981412888,
- 0.016508979722857475, 0.054856136441230774, 0.0432211272418499, 0.07827407866716385,
- 0.04975448176264763, 0.046220630407333374, -0.03424810245633125, -0.0773334875702858,
- -0.02022848092019558, -0.007321181241422892, 0.0945884957909584, 0.03314412757754326,
- -0.0736585333943367, -0.03804181516170502, -0.035882368683815, -0.03170865774154663,
- -0.09793845564126968, -0.005117654334753752, -0.045144543051719666, 0.0643438920378685,
- -0.07258176058530807, -0.025052206590771675, -0.10323049873113632, 0.012747053988277912,
- 0.07114201784133911, 0.008640051819384098, 0.011147283017635345, -0.08428522199392319,
- -0.03346020355820656, -0.05473457649350166, 0.007427421864122152, -0.020937813445925713,
- -0.008575151674449444, -0.010677137412130833, -0.05506391450762749,
- -0.02030770294368267, -0.0135410837829113, -0.08356022834777832, -0.04645296931266785,
- -0.1002233624458313, -0.010945457033813, 0.010497263632714748, 0.022216567769646645,
- 0.022564059123396873, 0.039885494858026505, 0.006220533978193998, 0.039070840924978256,
- -0.009896202944219112, -0.01890973560512066, 0.0601070336997509, -0.016403337940573692,
- -0.011910931207239628, 0.06508570164442062, -0.00035704424954019487,
- 0.053779274225234985, -0.048072680830955505, -0.07618493586778641, -0.060585867613554,
- 0.04269617423415184, -0.06168780103325844, 0.052122484892606735, -0.05000622197985649,
- -0.016118088737130165, -0.02478601224720478, -0.013456166721880436, 0.04703409597277641,
- -0.056363001465797424, -0.07292502373456955, -0.11076128482818604, 0.10731171816587448,
- -0.020114589482545853, -0.019002428278326988, 0.03252954035997391,
- -0.019692858681082726, 0.05619852617383003, 0.010527203790843487, 0.01134407613426447,
- 0.058333951979875565, 0.05833728238940239, -0.03769032284617424, 0.08647146075963974,
- 0.0659693256020546, -0.05261808633804321, -0.013347312808036804, 0.08605074137449265,
- 0.40755343437194824, -0.21894122660160065, 0.0867607519030571, 0.09163571149110794,
- 0.011797177605330944, 0.07608609646558762, -0.03903970494866371, 0.07573176175355911,
- 0.045827243477106094, 0.11027306318283081, 0.14034073054790497, -0.03506320342421532,
- 0.028438398614525795, -0.03874504193663597, 0.07880892604589462, -0.0052221897058188915,
- -0.007708842400461435, 0.009333895519375801, -0.058047275990247726,
- -0.009630654938519001, 0.060520172119140625, -0.07113916426897049, 0.004263489972800016,
- -0.01670452579855919, -0.11405032128095627, 0.011570442467927933, 0.013786930590867996,
- 0.040572389960289, -0.03718944266438484, 0.01041796151548624, -0.030072512105107307,
- 0.004836551379412413, -0.011516589671373367, 0.03128094598650932, -0.09536642581224442,
- 0.07353086024522781, -0.1285737305879593, -0.11279982328414917, 0.09340136498212814,
- -0.045548487454652786, 0.04295481741428375, 0.08649001270532608, -0.04539136588573456,
- 0.016842873767018318, -0.03806884214282036, -0.05443836376070976, -0.004428863525390625,
- 0.024449244141578674, 0.02713627554476261, 0.09185737371444702, 0.14619936048984528,
- -0.015784237533807755, -0.023547910153865814, -0.05940762162208557,
- 0.059380024671554565, 0.085804283618927, -0.06880313903093338, 0.03627166524529457,
- -0.04454300180077553, 0.06323873996734619, 0.0014318525791168213, -0.05256837606430054,
- -0.06222615763545036, 0.004624543245881796, -0.035587821155786514, 0.03197402134537697,
- 0.0027373433113098145, -0.055347707122564316, -0.08023849129676819,
- -0.04891366884112358, -0.0409361831843853, 0.03096420131623745, 0.13236136734485626,
- -0.08072622120380402, 0.029990537092089653, 0.042942315340042114, -0.02359524928033352,
- 0.030038246884942055, -0.09738540649414062, 0.01531908381730318, -0.08292486518621445,
- 0.034991536289453506, 0.054467394948005676, 0.07606419175863266, -0.04321346804499626,
- 0.04238462820649147, -0.08414849638938904, 0.055173713713884354, 0.007968783378601074,
- 0.03139173611998558, 0.013699018396437168, -0.020045768469572067, 0.050825536251068115,
- 0.05063499137759209, -0.04221197962760925, 0.01740715093910694, -0.07411161065101624,
- 0.0015128465602174401, -0.10120951384305954, -0.06569153815507889, -0.04528732970356941,
- -0.08897268772125244, 0.093514584004879, -0.0797305777668953, -0.035540446639060974,
- -0.045134324580430984, -0.015061293728649616, 0.05061153694987297, 0.06611641496419907,
- 0.02715768851339817, -0.16325697302818298, -0.005005911458283663, -0.02631510980427265,
- 0.05038316920399666, 0.0032966553699225187, -0.03327786549925804, -0.04821179434657097,
- 0.09468475729227066, 0.025345852598547935, -0.007926727645099163, 0.033516306430101395,
- -0.064739890396595, 0.018801100552082062, -0.0744001492857933, -0.4963512420654297,
- 0.04613789543509483, 0.04480859637260437, 0.04060397297143936, -0.005938358139246702,
- -0.07955893129110336, 0.020709505304694176, 0.017007427290081978, -0.025065695866942406,
- 0.09025797247886658, -0.052242230623960495, 0.03259720653295517, -0.025233715772628784,
- -0.0875888466835022, -0.02833326905965805, -0.056677330285310745, -0.009430060163140297,
- 0.04211604967713356, -0.0315723717212677, -0.08624204993247986, -0.06835880130529404,
- 0.010682436637580395, -0.04874147102236748, -0.031471364200115204,
- -0.015965374186635017, 0.015657125040888786, -0.11019279807806015, -0.05452394485473633,
- 0.0017116687959060073, 0.04725583270192146, 0.04783516749739647, -0.06767896562814713,
- -0.04070531204342842, 0.016593584790825844, -0.02349981479346752, 0.14467211067676544,
- 0.012054767459630966, -0.03142381086945534, -0.10005085915327072, 0.041167251765728,
- 0.07321127504110336, 0.18502874672412872, -0.008644833229482174, 0.0483083613216877,
- 0.018216019496321678, 0.16010628640651703, 0.01775178126990795, 0.02117610163986683,
- -0.05093221366405487, -0.012763991951942444, 0.007736547384411097,
- -0.008732879534363747, 0.011608739383518696, -0.09337718039751053, -0.03653600439429283,
- 0.0006017911364324391, -0.016478752717375755, -0.02657931111752987,
- 0.022202348336577415, 0.1822890043258667, 0.014088301919400692, 0.04240149259567261,
- 0.0025035985745489597, -0.030631372705101967, -0.01894698105752468,
- -0.05951739475131035, -0.04053270444273949, -0.034987855702638626,
- -0.003391636535525322, 0.03270401433110237, -0.04474155232310295, -0.1446690410375595,
- -0.00024647577083669603, -0.03411690890789032, -0.01329017709940672,
- 0.11422556638717651, 0.017242208123207092, 0.03893588110804558, -0.037791185081005096,
- 0.13980033993721008, 0.04783424362540245, 0.03843344375491142, 0.03531276062130928,
- 0.11517628282308578, 0.04379408061504364, -0.0027743957471102476, -0.030083557590842247,
- -0.054504722356796265, 0.024456998333334923, 0.10714352875947952, -0.050236865878105164,
- 0.1031167209148407, 0.022506697103381157, 0.016525782644748688, -0.07153555005788803,
- 0.03637108579277992, 0.011712317354977131, 0.023869583383202553, -0.48946166038513184,
- -0.01615898311138153, 0.12806792557239532, 0.02089613676071167, 0.03668162226676941,
- 0.07336406409740448, 0.04357479512691498, -0.01112393569201231, -0.03569568693637848,
- -0.04870583489537239, 0.11816491931676865, -0.017364563420414925, 0.0558173768222332,
- -0.08921334892511368, 0.01984092965722084, 0.0695747658610344, -0.014529089443385601,
- -0.045716602355241776, 0.06270837038755417, -0.23476676642894745, 0.01730264350771904,
- -0.059923309832811356, 0.1800249218940735, 0.05624248459935188, 0.03428971394896507,
- 0.07827802747488022, -0.050680261105298996, 0.05737760290503502, 0.03141823038458824,
- 0.013411730527877808, 0.06337194889783859, 0.022294020280241966, -0.008807874284684658,
- 0.10831763595342636, 0.09748858213424683, 0.13854855298995972, 0.005243515130132437,
- 12.041095733642578, 0.06204729154706001, 0.02981792390346527, -0.05515553057193756,
- 0.024070972576737404, -0.063491590321064, 0.041754577308893204, -0.11797792464494705,
- 0.05594365671277046, 0.14763592183589935, -0.008650762028992176, -0.0319657064974308,
- -0.016100894659757614, -0.08847349882125854, 0.009422498755156994, -0.09906276315450668,
- -0.00914053339511156, -0.02968456782400608, 0.03949220851063728, -0.07572297006845474,
- -0.009985397569835186, 0.018602503463625908, 0.07135855406522751, 0.035585109144449234,
- -0.07712846249341965, 0.08335081487894058, 0.01007875707000494, -0.017521142959594727,
- 0.014462221413850784, 0.024192968383431435, -0.010435291565954685, 0.002106579951941967,
- 0.0739300474524498, 0.0136623689904809, 0.05028891563415527, 0.0884639248251915,
- 0.03168759495019913, 0.07166266441345215, -0.004697630647569895, 0.06412210315465927,
- 0.012111291289329529, 0.013671238906681538, 0.04259359836578369, 0.027681494131684303,
- 0.020481424406170845, 0.06137348338961601, 0.06984826922416687, 0.1413087546825409,
- 0.005832089111208916, 0.040826331824064255, 0.08266877382993698, -0.0025646567810326815,
- 0.1294800341129303, 0.036936577409505844, 0.0031430982053279877, 0.0034383179154247046,
- 0.005238019395619631, -0.0624820776283741, 0.07011977583169937, 0.11758828163146973,
- -0.05004239082336426, 0.10879609733819962, 0.0021133876871317625, 0.10500907152891159,
- 0.014131046831607819, 0.04645245894789696, 0.07569365948438644, 0.08377977460622787,
- -0.14481599628925323, -0.07660306245088577, 0.05514082312583923, -0.11143732070922852,
- -0.039511460810899734, 0.04454895481467247, 0.054131168872117996, -0.04568655416369438,
- 0.06641045957803726, -0.06484634429216385, 0.025624120607972145, -0.054511141031980515,
- -0.016564277932047844, 0.02294122986495495, -0.0026304100174456835,
- 0.008024615235626698, 0.04535723105072975, 0.0037849631626158953, 0.09748560935258865,
- 0.08545365184545517, -0.014560294337570667, -0.07330222427845001, -0.07266271114349365,
- 0.07418441027402878, -0.02275298722088337, -0.058075204491615295, 0.023617038503289223,
- -0.05057555064558983, 0.05382784083485603, -0.15593591332435608, 0.08412542194128036,
- 0.07075344771146774, -0.05427495017647743, -0.03176772594451904, -0.027166491374373436,
- 0.0530010461807251, -0.006287014577537775, 0.053131699562072754, -0.050153832882642746,
- -0.035189103335142136, 0.04023386165499687, 0.06089647486805916, -0.036669183522462845,
- 0.1141098141670227, 0.06919843703508377, -0.058562833815813065, 0.05478130653500557,
- 0.05482746660709381, 0.005135830957442522, -0.04691147431731224, 0.02508631907403469,
- 0.06983818858861923, -0.08872301131486893, -0.027293531224131584, -0.024702638387680054,
- -0.04989996552467346, -0.016918661072850227, -0.04926246777176857, 0.00481967069208622,
- 0.028851160779595375, -0.06443721055984497, -0.03802146762609482, -0.011095662601292133,
- 0.026361102238297462, 0.12601493299007416, -0.040264908224344254, 0.07536589354276657,
- -0.0778130441904068, -0.05016230419278145, 0.048128772526979446, 0.05737616494297981,
- 0.06974368542432785, -0.014803233556449413, 0.020427344366908073, -0.03728504478931427,
- -0.11993557214736938, 0.025319555774331093, 0.1323648989200592, 0.08435989171266556,
- 0.08100951462984085, 0.06520422548055649, -0.09549792855978012, -0.024273565039038658,
- 0.13122253119945526, 0.039578940719366074, -0.02269143797457218, 0.025593938305974007,
- -0.043835531920194626, -0.02235906757414341, 0.15434503555297852, -0.05280931666493416,
- 0.026313014328479767, 0.018397513777017593, -0.10986334085464478, 0.051302243024110794,
- 0.06345980614423752, 0.06043528392910957, 0.04945503547787666, 0.036769382655620575,
- 0.0007816646248102188, 0.05473009869456291, -0.03230742737650871, 0.022656910121440887,
- 0.009808603674173355, -0.13046497106552124, -0.08794686198234558, 0.040109895169734955,
- 0.07531353086233139, 0.06695768982172012, -0.13992778956890106, -0.029736055061221123,
- -0.012761485762894154
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 306,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 20,
- "similarity": 0.9981280565261841
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 71,
- "similarity": 0.9978168606758118
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 67,
- "similarity": 0.997796893119812
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Tim Stevens"],
- "epoch_date_downloaded": 1661212800,
- "epoch_date_modified": 1661212800,
- "epoch_date_submitted": 1661212800,
- "flag": null,
- "report_number": 1949,
- "source_domain": "cnet.com",
- "submitters": ["Thomas Giallella (CSET)"],
- "title": "Tesla Model S on Autopilot crashes into van parked on highway",
- "url": "https://www.cnet.com/roadshow/news/model-s-on-autopilot-crashes-into-other-car-proving-yet-again-tesla-owners-arent-paying-close-enough/"
- },
- {
- "__typename": "Report",
- "authors": [" C T"],
- "epoch_date_downloaded": 1661212800,
- "epoch_date_modified": 1661212800,
- "epoch_date_submitted": 1661212800,
- "flag": null,
- "report_number": 1948,
- "source_domain": "youtu.be",
- "submitters": ["Khoa Lam"],
- "title": "Tesla Model S adaptive cruise control crashes into Van",
- "url": "https://youtu.be/qQkx-4pFjus"
- },
- {
- "__typename": "Report",
- "authors": ["Fred Lambert"],
- "epoch_date_downloaded": 1661212800,
- "epoch_date_modified": 1661212800,
- "epoch_date_submitted": 1661212800,
- "flag": null,
- "report_number": 1946,
- "source_domain": "electrek.co",
- "submitters": ["Thomas Giallella (CSET)"],
- "title": "Tesla Model S driver crashes into a van while on Autopilot",
- "url": "https://electrek.co/2016/05/26/tesla-model-s-crash-autopilot-video/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "apple",
- "name": "Apple"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "apple",
- "name": "Apple"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "iphone-x-face-id-users",
- "name": "iPhone X Face ID users"
- },
- {
- "__typename": "Entity",
- "entity_id": "iphone-face-id-users",
- "name": "iPhone Face ID users"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1947],
- "vector": [
- -0.05848057195544243, 0.10540302842855453, 0.032331205904483795, -0.16127510368824005,
- 0.07395464926958084, -0.036362990736961365, 0.013363664969801903, 0.08041785657405853,
- 0.066439189016819, -0.13960431516170502, 0.04331377521157265, 0.06551283597946167,
- 0.03794413432478905, -0.1433592140674591, 0.03744897618889809, -0.0469101257622242,
- -0.10096348077058792, -0.07632480561733246, -0.019372936338186264, -0.15374256670475006,
- -0.09884804487228394, -0.029614457860589027, -0.003502612467855215, 0.13435089588165283,
- -0.05153148993849754, 0.023987242951989174, 0.14469076693058014, 0.11373522877693176,
- -0.0530485138297081, 0.09175490587949753, 0.018943576142191887, -0.1593007892370224,
- 0.1492653787136078, 0.029184749349951744, 0.009290925227105618, 0.1506456583738327,
- -0.01282690092921257, -0.005337599199265242, 0.01870701089501381, -0.010451607406139374,
- 0.025294968858361244, 0.22834329307079315, -0.015022726729512215, -0.024441534653306007,
- 0.048254285007715225, -0.05944381281733513, 0.06168147176504135, 0.09029858559370041,
- 0.012773794122040272, 0.012476704083383083, -0.02132277563214302, -0.009791708551347256,
- -0.07047125697135925, 0.06385280191898346, -0.12174640595912933, 0.05834823101758957,
- -0.021619483828544617, 0.04071050509810448, 0.017942560836672783, -0.10268603265285492,
- -0.04583336412906647, -0.20156356692314148, -0.029564889147877693,
- -0.0028011754620820284, 0.08515006303787231, -0.11840461939573288,
- -0.008687562309205532, 0.01727508194744587, -0.009263270534574986, 0.0634428858757019,
- 0.057891685515642166, -0.03519369289278984, -0.04950978606939316, 0.03492856025695801,
- -0.04131093621253967, -0.005109030287712812, -0.019953928887844086, 0.1826436072587967,
- -0.08595041185617447, -0.01293253805488348, 0.15289877355098724, -0.13471923768520355,
- 0.33550211787223816, 0.03774752467870712, -0.05228909105062485, -0.03776755928993225,
- 0.0943182185292244, 0.08094362169504166, 0.058064382523298264, 0.04052817076444626,
- -0.04034166783094406, 0.002661803737282753, -0.031382475048303604, -0.04375777766108513,
- 0.06584185361862183, 0.042972102761268616, 0.0010195866925641894, -0.051340918987989426,
- -0.017624013125896454, -0.0989602580666542, 0.026795722544193268, -0.021515049040317535,
- 0.08524308353662491, 0.11088971793651581, -0.09200485795736313, -0.004057555925101042,
- 0.047131896018981934, -0.11913508176803589, 0.12587836384773254, -0.10076764225959778,
- 0.05663838982582092, 0.0255977064371109, 0.03260151296854019, -0.04671243950724602,
- 0.04408935457468033, -0.11296209692955017, 0.005043943412601948, 0.010920564644038677,
- 0.09015104919672012, -0.00042403675615787506, 0.00440067145973444, 0.0497237928211689,
- 0.08829332888126373, -0.0973464772105217, -0.06631717085838318, -0.03904363140463829,
- -0.08113759011030197, -0.019512809813022614, -0.054312288761138916, 0.06628911942243576,
- -0.0559985525906086, -0.20550251007080078, 0.08484068512916565, 0.07275793701410294,
- -0.05763505399227142, -0.036929648369550705, 0.0022580446675419807,
- -0.07163316011428833, 0.05764584243297577, -0.02557513304054737, -0.050431832671165466,
- 0.05340251699090004, 0.04010350629687309, 0.02087530307471752, 0.09045396000146866,
- 0.03793396055698395, -0.0507507398724556, 0.001592088839970529, 0.0016086531104519963,
- -0.030604634433984756, 0.14960359036922455, -0.19351410865783691, -0.053056664764881134,
- -0.001206565648317337, -0.11406306177377701, 0.779664158821106, 0.10762341320514679,
- 0.21178194880485535, 0.005569165106862783, -0.017275981605052948, 0.1928516924381256,
- 0.004525188356637955, 0.12607267498970032, -0.13805831968784332, -0.026391465216875076,
- 0.03908238187432289, -0.08969791233539581, -0.04777625948190689, 0.0492546521127224,
- 0.011432289145886898, 0.08145066350698471, 0.054680392146110535, 0.10588112473487854,
- 0.03909764438867569, -0.09729054570198059, -0.000006617992767132819,
- 0.03761398047208786, 0.037762731313705444, -0.10270397365093231, -0.055994194000959396,
- 0.03897922858595848, 0.09049158543348312, -0.11124624311923981, 0.032336607575416565,
- -0.1065443828701973, 0.07143793255090714, -0.06528683006763458, 0.05713282525539398,
- -0.03418922424316406, -0.008156967349350452, -0.04371965304017067, 0.1272125095129013,
- -0.03003106638789177, -0.09598834812641144, -0.024099240079522133, 0.057813793420791626,
- -0.024958407506346703, -0.016106897965073586, 0.08529040217399597, -0.09553971886634827,
- 0.049862876534461975, 0.00012318920926190913, 0.22946739196777344, -0.11775287985801697,
- 0.05556245520710945, -0.010081448592245579, -0.03556792065501213, -0.013816168531775475,
- -0.023289619013667107, -0.0720224678516388, -0.06897662580013275, 0.09198972582817078,
- 0.009156147949397564, 0.03458073362708092, 0.09995971620082855, -0.04466237500309944,
- 0.0810466855764389, 0.0294707790017128, -0.030505811795592308, -0.0724402517080307,
- 0.10799585282802582, 0.09146587550640106, -0.1035977303981781, -0.05455918237566948,
- 0.04925836995244026, 0.03788980841636658, 0.023490427061915398, -0.028407741338014603,
- 0.10278047621250153, -0.041191186755895615, -0.10682674497365952, 0.018503276631236076,
- 0.11561891436576843, 0.06863460689783096, 0.08303789794445038, 0.006312532816082239,
- -0.05952807143330574, -0.05983724072575569, -0.04140898585319519, 0.02270708791911602,
- -0.07574433088302612, 0.07636737823486328, 0.10699387639760971, 0.07969396561384201,
- 0.011668636463582516, -0.04787382856011391, 0.05860663577914238, 0.05765163153409958,
- 0.051624514162540436, 0.12311497330665588, -0.02166343294084072, -0.06756890565156937,
- -0.015149041078984737, -0.036287806928157806, -0.04559814929962158,
- -0.011696436442434788, -0.03902505338191986, -0.037896838039159775, -0.1323564648628235,
- -0.06099611520767212, -0.16030079126358032, -0.0768471285700798, 0.00865613017231226,
- 0.029107600450515747, -0.06510403007268906, -0.13107189536094666, -0.09427333623170853,
- 0.021641582250595093, 0.15975169837474823, 0.010424520820379257, -0.0029463081154972315,
- -0.08675450086593628, 0.04633476957678795, -0.08205590397119522, 0.050223030149936676,
- -0.06049712002277374, 0.023479368537664413, -0.026867983862757683, -0.12539805471897125,
- 0.05822213739156723, -0.023510776460170746, 0.07557734102010727, -0.023942992091178894,
- -0.11651835590600967, 0.002970608649775386, -0.0449155755341053, -0.03590107336640358,
- -0.02789299748837948, 0.0016741979634389281, 0.05138857290148735, 0.037048179656267166,
- -0.04278438538312912, -0.04008196294307709, 0.014844147488474846, -0.018409855663776398,
- -0.059457868337631226, 0.06882455199956894, -0.030332880094647408, 0.03070126473903656,
- -0.041859839111566544, -0.10096172243356705, 0.012996826320886612, 0.028396006673574448,
- -0.02162209525704384, 0.03924666717648506, -0.03834456950426102, 0.023162612691521645,
- -0.023348037153482437, -0.03825069218873978, 0.05107812210917473, -0.03347849100828171,
- -0.09842200577259064, -0.039322707802057266, 0.12580475211143494, -0.04791097715497017,
- -0.03356434777379036, 0.10207704454660416, -0.08089625090360641, 0.06873886287212372,
- -0.029594464227557182, -0.0008260131580755115, 0.03526091203093529, 0.03979009389877319,
- -0.012657061219215393, 0.0934785008430481, 0.061930760741233826, -0.039708156138658524,
- 0.06444006413221359, 0.04047214612364769, 0.45263856649398804, -0.2539055347442627,
- 0.11068932712078094, 0.1543494462966919, 0.009090467356145382, 0.034086715430021286,
- -0.014620172791182995, 0.12257792800664902, 0.0648772120475769, 0.11336812376976013,
- 0.12639468908309937, -0.05387011542916298, -0.015871427953243256, -0.06754148006439209,
- 0.11326940357685089, -0.01200964767485857, 0.05253339931368828, -0.015082985162734985,
- -0.12946675717830658, 0.0009008428314700723, 0.003250656882300973, -0.07357347756624222,
- -0.01861889474093914, -0.07578592002391815, -0.0510377436876297, -0.0228615440428257,
- 0.020015297457575798, 0.07761487364768982, -0.005002244841307402, 0.016218191012740135,
- 0.005509412381798029, 0.03278958052396774, 0.0885162279009819, 0.014450914226472378,
- -0.11778105795383453, 0.019670672714710236, -0.0793754830956459, -0.10108914226293564,
- 0.0805947333574295, 0.007074694614857435, 0.10177739709615707, 0.08358795195817947,
- -0.06310565769672394, 0.05802702531218529, -0.07033753395080566, -0.054472725838422775,
- 0.02941478230059147, 0.05066707357764244, 0.0393499992787838, 0.12921419739723206,
- 0.1787746697664261, -0.05032235383987427, -0.0704050213098526, -0.06003887951374054,
- 0.045518357306718826, 0.1446361392736435, -0.012152250856161118, 0.015295841731131077,
- 0.039670396596193314, 0.03331244736909866, -0.06280601769685745, -0.05026068165898323,
- -0.06731380522251129, -0.018299266695976257, -0.0491621159017086, 0.08165832608938217,
- 0.036329373717308044, -0.022929515689611435, -0.13763533532619476,
- -0.018827425315976143, -0.08012140542268753, 0.058711983263492584, 0.13139231503009796,
- -0.06066689267754555, -0.02623104304075241, 0.0010052084689959884,
- -0.0013767126947641373, 0.011626312509179115, -0.0784684345126152,
- -0.008677280507981777, -0.051745131611824036, 0.048607610166072845, 0.07748973369598389,
- 0.11067015677690506, 0.09155996143817902, 0.11119447648525238, -0.06564545631408691,
- 0.05361860990524292, 0.03557282313704491, -0.08063732832670212, 0.01768573746085167,
- -0.044358860701322556, 0.02141784504055977, 0.02403397671878338, -0.128364697098732,
- -0.00047709434875287116, -0.05941552296280861, -0.0432865284383297,
- -0.008991229347884655, -0.07042700797319412, -0.043571509420871735,
- -0.11018591374158859, 0.03578827157616615, -0.12010116875171661, -0.023675711825489998,
- -0.058834873139858246, 0.004957881756126881, -0.03738917037844658, 0.03349565714597702,
- 0.0483001284301281, -0.1482580304145813, 0.02154909260571003, -0.030008532106876373,
- 0.05704278498888016, -0.12725858390331268, -0.009519606828689575, 0.023306068032979965,
- 0.07511753588914871, 0.012104899622499943, -0.04999617114663124, 0.02897658944129944,
- 0.008622778579592705, 0.027250688523054123, -0.16599804162979126, -0.39737096428871155,
- 0.08940333873033524, 0.01996827870607376, -0.012786109000444412, 0.02676447667181492,
- -0.052228961139917374, 0.07680004835128784, 0.03159230947494507, -0.012315128929913044,
- 0.11564097553491592, -0.06638612598180771, 0.06904381513595581, -0.04120395705103874,
- -0.041658058762550354, -0.014820519834756851, -0.04902172088623047,
- -0.07972302287817001, 0.02092577889561653, -0.03427893668413162, -0.042646508663892746,
- -0.11847583949565887, -0.007017871830612421, -0.030503660440444946,
- 0.009641974233090878, 0.02733123116195202, 0.030425112694501877, -0.0014458984369412065,
- -0.012435900047421455, 0.042665012180805206, 0.0502820685505867, 0.04557095095515251,
- -0.08763733506202698, 0.031460534781217575, 0.01098447386175394, 0.030766386538743973,
- 0.15394172072410583, 0.001413435093127191, 0.03170911222696304, -0.08311481028795242,
- 0.05312861129641533, 0.07624166458845139, 0.18016721308231354, -0.06397291272878647,
- 0.004060923121869564, -0.006108985282480717, 0.145305335521698, 0.13814935088157654,
- -0.014019830152392387, -0.022561879828572273, 0.009917986579239368,
- -0.01879005692899227, -0.03581306338310242, 0.0979423001408577, -0.048250503838062286,
- -0.03125879913568497, 0.0032739921007305384, 0.03177578002214432, 0.02551974356174469,
- 0.020805904641747475, 0.25150948762893677, 0.03290605545043945, 0.01940520666539669,
- 0.07689302414655685, -0.05311417952179909, 0.04511360079050064, -0.09626232832670212,
- -0.08041957020759583, -0.04268570616841316, 0.01684224233031273, 0.021540898829698563,
- -0.10723117738962173, -0.15025563538074493, -0.016668222844600677, 0.04040997475385666,
- -0.014664766378700733, 0.17101415991783142, -0.01918637938797474, 0.07438450306653976,
- -0.029142536222934723, 0.13704471290111542, 0.024584420025348663, -0.02050727792084217,
- 0.08481568098068237, 0.0902663916349411, -0.020988769829273224, 0.044172730296850204,
- 0.0405133031308651, -0.14749369025230408, 0.007723575923591852, 0.14480285346508026,
- -0.012268825434148312, 0.13040895760059357, 0.05984315276145935, -0.0869026854634285,
- -0.09857744723558426, -0.003689640201628208, -0.05514148622751236, 0.027142632752656937,
- -0.4576764702796936, -0.006224752403795719, 0.13203532993793488, -0.03400499373674393,
- 0.0627586767077446, 0.06234639137983322, -0.03427974507212639, -0.06804314255714417,
- -0.12680549919605255, -0.05009373277425766, 0.14405186474323273, -0.017255721613764763,
- -0.0068080672062933445, -0.13803330063819885, 0.05556405335664749, 0.042052511125802994,
- -0.010341936722397804, -0.0028821644373238087, 0.03412150219082832, -0.3623589277267456,
- -0.018528874963521957, -0.033014778047800064, 0.12682795524597168, 0.05076425522565842,
- 0.02169734612107277, 0.1045326218008995, -0.05552972853183746, 0.028674360364675522,
- 0.039163488894701004, 0.049862757325172424, 0.06725616008043289, -0.06635216623544693,
- -0.006649837363511324, 0.15909594297409058, 0.11285990476608276, 0.08087266236543655,
- -0.023579681292176247, 12.300012588500977, 0.05509183928370476, 0.0424228236079216,
- -0.13512322306632996, -0.014063459821045399, -0.07225364446640015, 0.016848651692271233,
- -0.09856424480676651, 0.15026932954788208, 0.10912231355905533, -0.031821951270103455,
- -0.06760518997907639, 0.028719795867800713, -0.12382009625434875, 0.044890861958265305,
- -0.12518896162509918, -0.0619661845266819, -0.046992115676403046, 0.09259722381830215,
- -0.019751621410250664, -0.028985850512981415, 0.09619976580142975, 0.0432552769780159,
- 0.014370707795023918, -0.11027564853429794, 0.05509009584784508, 0.02583184465765953,
- -0.02687431499361992, -0.004795779474079609, 0.009789995849132538,
- 0.0023252128157764673, -0.019115272909402847, 0.08528773486614227,
- -0.019826700910925865, 0.022461267188191414, 0.14745265245437622, 0.056461140513420105,
- 0.07362819463014603, 0.032647471874952316, 0.060229018330574036, 0.0457538440823555,
- 0.006584302522242069, 0.01877724751830101, 0.028520578518509865, 0.08393943309783936,
- 0.08042967319488525, 0.053725481033325195, 0.18386772274971008, 0.012319126166403294,
- 0.10506850481033325, 0.08397790789604187, -0.0156549159437418, 0.04815976694226265,
- -0.0012849271297454834, 0.001251922338269651, 0.09868460893630981,
- -0.010668128728866577, -0.06110823526978493, 0.081100232899189, 0.09637469798326492,
- -0.02772262878715992, 0.06840141117572784, 0.005188832990825176, 0.13112948834896088,
- -0.03078095242381096, 0.05106351897120476, 0.073931984603405, 0.06625498086214066,
- -0.07615307718515396, -0.16437889635562897, 0.07317492365837097, -0.07527580112218857,
- -0.11285152286291122, 0.10187426954507828, 0.15360549092292786, -0.02352968044579029,
- 0.029290340840816498, -0.07916733622550964, 0.06638305634260178, -0.04704255610704422,
- -0.016489369794726372, 0.06865040212869644, 0.014148497022688389, 0.07717586308717728,
- -0.06528425961732864, 0.04938838630914688, -0.007143253926187754, 0.13341490924358368,
- 0.023017313331365585, -0.0837569311261177, -0.05284871160984039, 0.0776408314704895,
- 0.0055870600044727325, -0.06376800686120987, 0.02283373288810253, -0.08559281378984451,
- 0.015649905428290367, -0.148725226521492, 0.05784493312239647, 0.14330247044563293,
- -0.10309372842311859, -0.04553708806633949, -0.03344743326306343, 0.04766529053449631,
- -0.004287775605916977, 0.07039672136306763, -0.10411708801984787, 0.015571937896311283,
- 0.1117185726761818, 0.08443983644247055, -0.0201890729367733, 0.09609504044055939,
- 0.11399435251951218, -0.024408534169197083, -0.014228757470846176, 0.09237098693847656,
- -0.07238823175430298, -0.040575794875621796, 0.042574696242809296, 0.0807463526725769,
- -0.06706943362951279, -0.06459137797355652, -0.020159833133220673, -0.09037680178880692,
- 0.001340030925348401, -0.057704005390405655, 0.05929430574178696, 0.006236185319721699,
- -0.05327709764242172, -0.043718114495277405, 0.052169933915138245, 0.07012949883937836,
- 0.10868199169635773, 0.011963807977735996, 0.10557208210229874, -0.04757482931017876,
- -0.10298970341682434, 0.012210729531943798, 0.0328083410859108, 0.05800754949450493,
- -0.16878703236579895, -0.03796956315636635, -0.051129184663295746, -0.14483995735645294,
- 0.10349129885435104, 0.15914945304393768, 0.02201748639345169, 0.03090221807360649,
- -0.007267131935805082, -0.12220827490091324, -0.06004935875535011, 0.11225545406341553,
- 0.06181910261511803, 0.059842776507139206, 0.06314685940742493, -0.05440250039100647,
- -0.03667266666889191, 0.09661448746919632, 0.004048225469887257, 0.03557247295975685,
- -0.017121706157922745, -0.06750866770744324, 0.171131893992424, 0.16346193850040436,
- 0.04323871433734894, 0.022915204986929893, 0.0677650198340416, -0.00303591787815094,
- 0.12247198820114136, -0.03507209196686745, 0.02122345380485058, -0.03619877249002457,
- -0.1028234213590622, -0.09946686029434204, 0.018758052960038185, 0.10772833228111267,
- 0.049687765538692474, -0.11629302054643631, -0.033884141594171524,
- -0.0006177315954118967
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 307,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Rachel Withers"],
- "epoch_date_downloaded": 1661212800,
- "epoch_date_modified": 1661212800,
- "epoch_date_submitted": 1661212800,
- "flag": null,
- "report_number": 1947,
- "source_domain": "slate.com",
- "submitters": ["Ingrid Dickinson (CSET)"],
- "title": "The iPhone’s Cruel Face ID Refuses to Recognize Some Users First Thing in the Morning",
- "url": "https://slate.com/technology/2018/07/iphone-face-id-struggles-to-recognize-people-in-the-morning.html"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "boston-dynamics",
- "name": "Boston Dynamics"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "boston-dynamics",
- "name": "Boston Dynamics"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "none",
- "name": "none"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [38],
- "editor_similar_incidents": [51, 68],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1953, 1952],
- "vector": [
- -0.08680665493011475, 0.04316439479589462, -0.005332218483090401, -0.10659024864435196,
- 0.09549611806869507, -0.03849591687321663, 0.0007709132041782141, 0.011210552416741848,
- 0.09806974232196808, -0.13207294046878815, -0.040065228939056396, 0.04678495600819588,
- 0.030534617602825165, -0.03720539063215256, 0.02623388171195984, -0.03611518442630768,
- -0.06884942948818207, 0.0015166159719228745, 0.02427188865840435, -0.12813544273376465,
- -0.11486110091209412, -0.014413038268685341, -0.004457232542335987, 0.09944035857915878,
- -0.008729841560125351, 0.01964407041668892, 0.083491750061512, 0.09392097592353821,
- -0.055681608617305756, 0.02397490106523037, -0.05393297225236893, -0.08271555602550507,
- 0.09215382486581802, -0.01656988263130188, -0.010887272655963898, 0.10416056215763092,
- 0.02983369678258896, -0.030621014535427094, -0.09304361045360565, -0.00718910014256835,
- 0.01937238872051239, 0.14836382865905762, -0.02037937194108963, -0.030793555080890656,
- 0.07040392607450485, -0.006097928620874882, 0.028010711073875427, 0.02367551252245903,
- -0.024336501955986023, 0.003755209967494011, 0.00910083670169115, 0.0005515068769454956,
- -0.04115993529558182, -0.016493305563926697, -0.038744211196899414, 0.07690110802650452,
- 0.04912989214062691, 0.05682039260864258, 0.05316436290740967, -0.036833442747592926,
- 0.01399733405560255, -0.1039561778306961, -0.07387669384479523, -0.04387439042329788,
- 0.03085377998650074, -0.056048981845378876, -0.04434540495276451, 0.04413370043039322,
- 0.015733614563941956, 0.04959438368678093, 0.04521157220005989, -0.029683467000722885,
- -0.019487464800477028, -0.05007922649383545, -0.00704154372215271, 0.01552652195096016,
- 0.02224460244178772, 0.28202250599861145, -0.10728184133768082, 0.04492631554603577,
- 0.08577552437782288, -0.07386954128742218, 0.3007872700691223, 0.0403805635869503,
- -0.036803875118494034, -0.03712621331214905, 0.11432582139968872, 0.03640555590391159,
- 0.025833135470747948, 0.05198422074317932, 0.0123438760638237, 0.05051130801439285,
- -0.014518070966005325, 0.007615283597260714, 0.053845979273319244, 0.029544992372393608,
- -0.010189280845224857, -0.04035726189613342, -0.023886490613222122,
- -0.06935905665159225, 0.021647462621331215, -0.07006043940782547, 0.12553244829177856,
- 0.04902442917227745, -0.025331243872642517, 0.013322494924068451, 0.03627850115299225,
- -0.003358433023095131, 0.033200979232788086, -0.08544465154409409, 0.04713933914899826,
- 0.04099474102258682, 0.040672387927770615, 0.019581951200962067, 0.014278065413236618,
- -0.06382489204406738, -0.0183781236410141, 0.028171150013804436, 0.07923230528831482,
- 0.020591653883457184, -0.04226946458220482, 0.09813478589057922, 0.0989154726266861,
- -0.06610614061355591, -0.007530541159212589, -0.04303688183426857,
- -0.0061800009571015835, 0.003751646727323532, -0.008194932714104652,
- 0.05999968200922012, -0.03689989820122719, -0.18273134529590607, 0.039987873286008835,
- 0.11664216965436935, 0.045653119683265686, 0.013373018242418766, 0.028534356504678726,
- -0.06168264150619507, 0.02632228098809719, 0.010973654687404633, -0.0014798559714108706,
- 0.06740434467792511, 0.03490109741687775, 0.03417700156569481, 0.09622544050216675,
- -0.0043803006410598755, -0.02530369535088539, -0.06376096606254578, 0.01883121393620968,
- -0.014784678816795349, 0.07898258417844772, -0.12112413346767426, -0.02453753724694252,
- 0.01985166221857071, -0.0012619365006685257, 0.5318616628646851, 0.04669051617383957,
- 0.12865276634693146, -0.019198168069124222, -0.010213777422904968, 0.12226112186908722,
- -0.007915874011814594, 0.008270403370261192, -0.007006695494055748,
- -0.04388962686061859, 0.004710163921117783, -0.06101761758327484,
- -0.0033731451258063316, 0.022044522687792778, -0.003315047360956669,
- 0.08399880677461624, 0.05819860100746155, 0.10968856513500214, -0.040187861770391464,
- -0.03720314800739288, -0.05150577425956726, -0.04464886710047722, 0.06111627072095871,
- -0.12406070530414581, -0.019151851534843445, 0.05225029215216637, 0.08510176837444305,
- -0.03623270243406296, -0.0020201564766466618, 0.003739258274435997,
- 0.027627509087324142, -0.005163965746760368, 0.014410893432796001,
- -0.012055383063852787, 0.030336938798427582, 0.07778077572584152, 0.025364207103848457,
- -0.04897981509566307, -0.042731232941150665, -0.006671164184808731, 0.12098126113414764,
- 0.007656094152480364, -0.012073328718543053, 0.07112067937850952, -0.0796259194612503,
- -0.0026375283487141132, -0.04620923846960068, 0.11918413639068604, -0.10162217915058136,
- 0.07061710953712463, -0.016873208805918694, -0.007313234731554985, 0.031980402767658234,
- -0.041736241430044174, -0.07210784405469894, -0.047769851982593536, 0.07275768369436264,
- 0.03984484821557999, 0.05251868814229965, 0.03717340528964996, -0.015822771936655045,
- 0.05937492102384567, 0.02515404485166073, 0.03980673849582672, -0.058503005653619766,
- 0.05979188531637192, 0.020210102200508118, -0.04828896373510361, 0.03161412477493286,
- 0.0073636737652122974, -0.012643247842788696, 0.024505814537405968,
- 0.020519066601991653, 0.04117707535624504, 0.005260813981294632, 0.010160554200410843,
- -0.0027728420682251453, 0.08224862813949585, 0.045838117599487305, 0.06727898865938187,
- -0.1233520358800888, -0.052522629499435425, -0.037894107401371, -0.056429117918014526,
- 0.004250346217304468, -0.04930732026696205, 0.05327785760164261, 0.07401750981807709,
- 0.05183742195367813, 0.012813042849302292, 0.03370361775159836, 0.03155762329697609,
- 0.06989599764347076, 0.008495648391544819, 0.03389769047498703, -0.03269375115633011,
- -0.018783578649163246, -0.060798682272434235, -0.004244835115969181,
- 0.044688183814287186, 0.00692175654694438, -0.07498057931661606, -0.02400888502597809,
- -0.05042687803506851, -0.02332763932645321, -0.07513948529958725, -0.037209056317806244,
- -0.003997802268713713, -0.0018795104697346687, -0.07391290366649628,
- -0.07668362557888031, -0.040730055421590805, 0.01326176431030035, 0.029198169708251953,
- -0.05964041128754616, -0.012717067264020443, -0.09395922720432281,
- -0.00027756020426750183, 0.00881231389939785, 0.0178231168538332, 0.023223847150802612,
- -0.01631898619234562, -0.011813021264970303, -0.04128183051943779,
- -0.007732965983450413, 0.04034378007054329, -0.0473407618701458, -0.05849197506904602,
- -0.06684739887714386, -0.03291071951389313, 0.03185998648405075, 0.0033897720277309418,
- -0.026634277775883675, 0.03103494644165039, 0.04746924340724945, 0.05784071981906891,
- 0.015166450291872025, -0.017852650955319405, 0.027361351996660233,
- -0.015247412025928497, 0.0150230061262846, 0.06128661334514618, 0.019722705706954002,
- 0.051165319979190826, -0.0333745963871479, -0.012781394645571709, -0.06398481875658035,
- -0.002271627075970173, -0.05409552901983261, 0.04011954367160797, -0.0662756860256195,
- -0.028619656339287758, -0.026761088520288467, 0.04011041671037674, 0.0803961306810379,
- -0.04766712337732315, -0.02443740889430046, -0.0877399742603302, 0.10096517205238342,
- -0.005340578965842724, -0.003296242095530033, 0.02382330223917961,
- -0.011749669909477234, 0.04191495478153229, 0.02374080941081047, 0.00238968338817358,
- 0.04678749293088913, 0.08641254901885986, -0.03223510831594467, -0.00023013586178421974,
- 0.053223367780447006, 0.027369773015379906, -0.008519453927874565, 0.0681128203868866,
- 0.398849219083786, -0.23178160190582275, 0.10389815270900726, 0.07709597051143646,
- 0.004212480038404465, 0.07948628067970276, -0.04507869482040405, 0.062021903693675995,
- 0.017019910737872124, 0.06428885459899902, 0.11225759983062744, -0.03764214366674423,
- 0.05096016079187393, -0.0300602950155735, 0.0392148420214653, 0.04019417613744736,
- -0.01792559213936329, -0.020923562347888947, -0.023643236607313156,
- -0.004137345589697361, 0.038619279861450195, -0.05025747790932655, 0.028506625443696976,
- -0.04547731205821037, -0.018867379054427147, 0.0071121640503406525, 0.0891258716583252,
- 0.04290980100631714, -0.023732684552669525, 0.03557621315121651, -0.012368515133857727,
- 0.07903330773115158, 0.019514048472046852, 0.054402656853199005, -0.09052646160125732,
- 0.07609491050243378, -0.07429240643978119, -0.15274783968925476, 0.05719466879963875,
- -0.013856379315257072, 0.020193375647068024, 0.021023735404014587,
- -0.013378975912928581, 0.025963563472032547, 0.023503661155700684,
- -0.008114751428365707, -0.03752744197845459, 0.05899742990732193, 0.06033775210380554,
- 0.04296848550438881, 0.1386181116104126, -0.014878659509122372, 0.011341317556798458,
- -0.06974025815725327, 0.0697912722826004, 0.09399982541799545, -0.05079226195812225,
- 0.011924509890377522, -0.010892029851675034, 0.015230126678943634,
- -0.006885180249810219, -0.031042685732245445, -0.08190307766199112,
- -0.010204027406871319, -0.07638421654701233, 0.048891954123973846,
- -0.012116425670683384, -0.053518179804086685, -0.1314319670200348, -0.04179176688194275,
- -0.03358042240142822, 0.0021088114008307457, 0.11098405718803406, -0.07383345067501068,
- 0.032430872321128845, 0.014873158186674118, 0.019711777567863464, 0.013435646891593933,
- -0.0657770112156868, 0.01684274524450302, -0.05531282722949982, 0.022456346079707146,
- 0.11318208277225494, 0.03883697837591171, -0.041969504207372665, 0.024760890752077103,
- -0.09292023628950119, 0.013986488804221153, -0.01762225478887558, -0.03077983483672142,
- 0.06497594714164734, -0.04073963314294815, 0.039272308349609375, 0.0009075466077774763,
- -0.047812025994062424, 0.003538047894835472, -0.042597174644470215,
- -0.012811889871954918, -0.059876397252082825, -0.09330105036497116,
- -0.029023094102740288, -0.04073546081781387, 0.0760425329208374, -0.02632569707930088,
- -0.005166621878743172, -0.04577235132455826, -0.008993769064545631,
- 0.021166633814573288, 0.023499183356761932, -0.018997807055711746, -0.10718665271997452,
- -0.023225072771310806, 0.00004969025030732155, 0.007323745638132095,
- 0.016954956576228142, -0.03983909264206886, -0.010593281127512455, 0.10548362135887146,
- 0.011438922956585884, -0.047990091145038605, 0.023036470636725426, -0.0467374213039875,
- 0.061458736658096313, -0.06527923792600632, -0.45429596304893494, 0.046078622341156006,
- 0.045753903687000275, 0.012361410073935986, 0.02104526199400425, -0.0748235285282135,
- 0.007328122854232788, -0.010875481180846691, 0.031641118228435516, 0.05701945349574089,
- -0.054418861865997314, -0.010326201096177101, -0.02900421805679798,
- -0.06188107281923294, 0.014202442020177841, -0.0729401633143425, -0.02032601833343506,
- 0.008414849638938904, -0.00737946480512619, 0.011808523908257484, -0.06909511983394623,
- -0.012355584651231766, -0.038456615060567856, -0.03708436340093613,
- -0.04454394802451134, 0.0010942320805042982, -0.06997025012969971, -0.07758482545614243,
- -0.0038247909396886826, 0.05801468715071678, 0.03545423224568367, -0.05319337174296379,
- -0.01871856488287449, 0.0485096275806427, 0.014811927452683449, 0.11653396487236023,
- 0.0007371315732598305, -0.010067610070109367, -0.05043619126081467,
- 0.010143764317035675, 0.07662051916122437, 0.18794900178909302, -0.019987232983112335,
- 0.08816054463386536, -0.023316139355301857, 0.07397041469812393, -0.013135865330696106,
- 0.01864594966173172, -0.056352972984313965, -0.033303577452898026, 0.04587859660387039,
- -0.0450371652841568, 0.05919773876667023, -0.04426287114620209, -0.02043011225759983,
- -0.004989558830857277, -0.020221691578626633, -0.041812293231487274, 0.0158444382250309,
- 0.1177530363202095, 0.028396407142281532, 0.04511839151382446, 0.044746894389390945,
- -0.034593433141708374, 0.004953729920089245, -0.0245516337454319, -0.027666252106428146,
- -0.03341105580329895, -0.015941321849822998, -0.007688985206186771,
- -0.07914292812347412, -0.07206621021032333, -0.01483197696506977,
- -0.0013867742381989956, -0.010397126898169518, 0.07839204370975494,
- -0.017742689698934555, 0.02833116427063942, -0.0421106293797493, 0.13454166054725647,
- 0.024975718930363655, 0.04306384176015854, 0.022769629955291748, 0.07340395450592041,
- 0.04283063858747482, -0.013699359260499477, -0.010664471425116062,
- -0.020274512469768524, 0.042990006506443024, 0.10455001890659332, -0.050698086619377136,
- 0.1480431854724884, 0.03479733318090439, 0.02180800586938858, -0.023488663136959076,
- 0.024051882326602936, 0.0527491495013237, -0.02161570079624653, -0.4962507486343384,
- -0.038752008229494095, 0.1295180767774582, -0.011662699282169342, 0.014703297056257725,
- 0.06217903271317482, 0.030285710468888283, -0.017679885029792786, 0.017199499532580376,
- -0.03573625534772873, 0.07292276620864868, 0.020244209095835686, 0.08464948832988739,
- -0.08183687925338745, 0.020692549645900726, 0.07545235008001328, -0.037491749972105026,
- -0.019884370267391205, 0.0678718239068985, -0.2495964914560318, -0.003972127567976713,
- -0.023995105177164078, 0.15102225542068481, 0.0430552214384079, 0.01726439967751503,
- 0.06391292810440063, -0.02130572870373726, 0.08715760707855225, 0.049328990280628204,
- 0.045395586639642715, 0.09645036607980728, 0.01169263944029808, -0.02659144625067711,
- 0.08821583539247513, 0.08358477056026459, 0.06892003118991852, 0.01647438481450081,
- 11.924256324768066, 0.022838424891233444, 0.06375716626644135, -0.05251191556453705,
- -0.011648207902908325, -0.05460072681307793, 0.03363395482301712, -0.049600254744291306,
- 0.05133359879255295, 0.08501424640417099, 0.01090655941516161, -0.028643693774938583,
- -0.06392725557088852, -0.07004944980144501, 0.014080211520195007, -0.029061559587717056,
- -0.047322578728199005, -0.020630810409784317, 0.06469926238059998,
- -0.029803823679685593, -0.05659594386816025, 0.060753826051950455, 0.03556051105260849,
- 0.016728032380342484, -0.08665598928928375, 0.07852882146835327, 0.0274740569293499,
- 0.0030635539442300797, -0.008584960363805294, 0.029439110308885574,
- 0.015192247927188873, 0.06445423513650894, 0.025789566338062286, -0.028803514316678047,
- 0.02839304879307747, 0.06595046073198318, -0.0008968040347099304, 0.06250342726707458,
- 0.045452870428562164, 0.08158377557992935, 0.04408888891339302, 0.022195516154170036,
- 0.02681797742843628, 0.016483088955283165, 0.07522343099117279, 0.036059506237506866,
- 0.013238445855677128, 0.1248493641614914, -0.01884055696427822, 0.036493659019470215,
- 0.08790384232997894, -0.05763627588748932, 0.10581566393375397, 0.024920422583818436,
- -0.03293245658278465, -0.012311946600675583, 0.010033858940005302, -0.04503815993666649,
- 0.07918727397918701, 0.030814247205853462, -0.04267158359289169, 0.07588007301092148,
- 0.0360761433839798, 0.07847532629966736, -0.026400767266750336, 0.04774950444698334,
- 0.0673498883843422, 0.05260467529296875, -0.020987974479794502, -0.0374889075756073,
- 0.02926206961274147, -0.10320083796977997, -0.04474855586886406, 0.009618666023015976,
- 0.05403425544500351, -0.025710470974445343, 0.10403270274400711, -0.028908967971801758,
- 0.029710344970226288, -0.012070889584720135, 0.041392602026462555, 0.03364324942231178,
- -0.05127769336104393, 0.0397404208779335, -0.0000881339656189084, 0.02624436467885971,
- 0.08496490865945816, 0.04605071246623993, 0.020374108105897903, -0.013977723196148872,
- -0.07297007739543915, 0.11525540053844452, -0.009906470775604248, -0.0568266361951828,
- 0.05099420249462128, -0.0249154195189476, 0.015291008166968822, -0.09766722470521927,
- 0.04460065811872482, 0.10571958124637604, -0.07232116162776947, -0.006167507730424404,
- 0.002922783838585019, 0.08783301711082458, -0.016903383657336235, 0.04213784635066986,
- -0.03729770705103874, -0.017258360981941223, 0.037709787487983704, 0.029184924438595772,
- -0.04061120003461838, 0.028881926089525223, 0.02936488576233387, -0.04457728937268257,
- 0.03477835655212402, 0.026812797412276268, -0.0011183703318238258, -0.02563980408012867,
- 0.0619647316634655, 0.0425453782081604, -0.0591089129447937, -0.027288950979709625,
- -0.07857847958803177, -0.03342690318822861, -0.005839331075549126, 0.012170449830591679,
- -0.0033770049922168255, 0.039619334042072296, -0.03018711507320404,
- -0.016619641333818436, 0.006486589554697275, 0.043951503932476044, 0.09742456674575806,
- 0.00904817134141922, 0.06923063844442368, -0.029879488050937653, -0.0391436368227005,
- 0.044824399054050446, 0.03203872591257095, 0.09507933259010315, -0.08516459912061691,
- -0.0190495103597641, -0.014600439928472042, -0.11040914058685303, 0.0007943394593894482,
- 0.03514868766069412, 0.040328726172447205, 0.05794096738100052, 0.0009174981969408691,
- -0.06233088672161102, -0.027390964329242706, 0.07858899980783463, 0.012358835898339748,
- -0.009738849475979805, 0.035564254969358444, -0.039583299309015274,
- 0.011359385214745998, 0.10525064170360565, -0.027035826817154884, 0.007574208080768585,
- 0.03382135182619095, -0.0945151150226593, -0.008899493142962456, 0.06537217646837234,
- -0.01948757842183113, 0.021517356857657433, 0.03231685981154442, -0.019325722008943558,
- -0.0038465801626443863, -0.02232234738767147, 0.019108537584543228,
- -0.008014561608433723, -0.09943278878927231, -0.07007548213005066, 0.003292504698038101,
- 0.060300301760435104, 0.06749723851680756, -0.17802713811397552, -0.019000837579369545,
- -0.03163731470704079
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 308,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 68,
- "similarity": 0.9985575675964355
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 38,
- "similarity": 0.9982261657714844
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 51,
- "similarity": 0.9982100129127502
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["NeAr Gaming"],
- "epoch_date_downloaded": 1661212800,
- "epoch_date_modified": 1661299200,
- "epoch_date_submitted": 1661212800,
- "flag": null,
- "report_number": 1953,
- "source_domain": "youtube.com",
- "submitters": ["Khoa Lam"],
- "title": "Boston Dynamics' Atlas Falls Over After Demo at the Congress of Future Scientists and Technologists",
- "url": "https://www.youtube.com/watch?v=TxobtWAFh8o\u0026t=240s"
- },
- {
- "__typename": "Report",
- "authors": ["Adam Clark Estes"],
- "epoch_date_downloaded": 1661212800,
- "epoch_date_modified": 1661299200,
- "epoch_date_submitted": 1661212800,
- "flag": null,
- "report_number": 1952,
- "source_domain": "gizmodo.com",
- "submitters": ["Ingrid Dickinson (CSET)"],
- "title": "Watch ATLAS the Robot Autonomously Fall Off a Stage",
- "url": "https://gizmodo.com/watch-atlas-the-robot-autonomously-fall-off-a-stage-1797591668"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "metropolitan-police-service",
- "name": "Metropolitan Police Service"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "unknown",
- "name": "Unknown"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "notting-hill-carnival-goers",
- "name": "Notting Hill Carnival goers"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [2030, 1960, 1956, 1954],
- "vector": [
- -0.055368177592754364, 0.039786241948604584, 0.02077629789710045, -0.12104539573192596,
- 0.06652585417032242, -0.0689319297671318, 0.0036404181737452745, 0.01743731088936329,
- 0.05492202192544937, -0.10247763246297836, -0.0024885344319045544, 0.044779904186725616,
- 0.0302765890955925, -0.06324058026075363, 0.06004960089921951, -0.11917184293270111,
- -0.10229986906051636, -0.03141308203339577, -0.05076802521944046, -0.09846875816583633,
- -0.09288082271814346, 0.0024075598921626806, 0.05996180698275566, 0.10639987140893936,
- -0.04958294332027435, 0.029886895790696144, 0.08990353345870972, 0.10877145826816559,
- -0.0573275163769722, 0.04200662672519684, -0.02061014622449875, -0.049240581691265106,
- 0.11919393390417099, 0.023402824997901917, -0.011138916015625, 0.08896531909704208,
- 0.058752723038196564, -0.04130687564611435, -0.005008221138268709,
- -0.012424293905496597, 0.023398829624056816, 0.22686177492141724, -0.020517000928521156,
- -0.0011065860744565725, 0.047543082386255264, -0.0385412834584713,
- -0.010316690430045128, 0.06343428045511246, -0.005904768127948046, 0.008337751030921936,
- 0.012010679580271244, 0.014845275320112705, -0.02353493496775627, 0.03585535287857056,
- -0.0837482437491417, 0.04349437355995178, 0.03838939219713211, 0.000016811027307994664,
- 0.02342401258647442, -0.08212074637413025, -0.01938224397599697, -0.2138863354921341,
- -0.06500843167304993, -0.0736183226108551, 0.08330711722373962, -0.09983905404806137,
- -0.03728635981678963, -0.00037123728543519974, 0.014941906556487083,
- 0.04305364564061165, 0.06825918704271317, -0.0423094779253006, 0.0030018179677426815,
- -0.004866843111813068, 0.007106293458491564, -0.0012210761196911335,
- -0.005161996930837631, 0.16924087703227997, -0.09293923527002335, 0.01756473444402218,
- 0.09899984300136566, -0.08009407669305801, 0.3785601854324341, 0.015685778111219406,
- -0.007603731006383896, -0.05700886622071266, 0.08057807385921478, 0.019048456102609634,
- 0.04851844906806946, 0.033572111278772354, 0.005361539777368307, 0.043653883039951324,
- -0.07713320851325989, 0.0018566418439149857, 0.06838793307542801, 0.033401284366846085,
- -0.009790242649614811, 0.03249017894268036, -0.00849143136292696, -0.03935299813747406,
- -0.0629546269774437, -0.0299476757645607, 0.08828108012676239, 0.09720614552497864,
- -0.049425482749938965, -0.003875164082273841, 0.05447210744023323, -0.02792062796652317,
- 0.06384602934122086, -0.03404289484024048, 0.021785734221339226, 0.031174037605524063,
- 0.07546913623809814, 0.012033943086862564, 0.0245114266872406, -0.047249339520931244,
- 0.0037385744508355856, 0.045847080647945404, 0.07268200814723969, 0.019944576546549797,
- -0.01256275549530983, 0.060139987617731094, 0.05555320903658867, -0.07403308153152466,
- -0.004653060808777809, -0.027867933735251427, -0.07037762552499771,
- -0.054657384753227234, -0.03517244756221771, 0.00020894641056656837,
- -0.039330217987298965, -0.20353253185749054, 0.016295555979013443, 0.05840037763118744,
- 0.018241895362734795, -0.03524676710367203, 0.032265279442071915, -0.036281272768974304,
- 0.028593923896551132, -0.02266877144575119, -0.04204241931438446, 0.08899213373661041,
- 0.0009621910285204649, 0.01931130513548851, 0.13667292892932892, 0.02968478575348854,
- -0.06987424939870834, -0.028032787144184113, -0.016540277749300003,
- -0.011566074565052986, 0.09409564733505249, -0.1152859702706337, -0.03324820101261139,
- 0.016771772876381874, 0.01985795423388481, 0.6775871515274048, 0.07216528058052063,
- 0.15723831951618195, -0.0009697703644633293, 0.008585061877965927, 0.18278709053993225,
- 0.014960505068302155, 0.06551449745893478, -0.056272413581609726, -0.051161378622055054,
- 0.04129962995648384, -0.045403312891721725, -0.017153330147266388, 0.023186886683106422,
- 0.030713338404893875, 0.08319730311632156, 0.015562457963824272, 0.08578263223171234,
- -0.018564319238066673, -0.10146848857402802, -0.028397494927048683,
- 0.055326711386442184, -0.007079637609422207, -0.10426975786685944, -0.04398047924041748,
- 0.07465261965990067, 0.08236683905124664, -0.08778314292430878, 0.01959865912795067,
- -0.055414579808712006, 0.0407441109418869, -0.001031590043567121, 0.0826035663485527,
- -0.02076507732272148, 0.017873363569378853, 0.024357371032238007, 0.016622865572571754,
- 0.010051261633634567, -0.07720094174146652, -0.014112396165728569, 0.08802604675292969,
- 0.012292257510125637, -0.026312772184610367, 0.09272079169750214, -0.0883273184299469,
- 0.018712196499109268, 0.01645505242049694, 0.13503944873809814, -0.12725606560707092,
- 0.001726033864542842, 0.001101030851714313, -0.01260665524750948, 0.04744766652584076,
- 0.003886740654706955, -0.05838688462972641, -0.0529930405318737, 0.07691788673400879,
- 0.03172193840146065, 0.10357725620269775, 0.038014836609363556, -0.04770057648420334,
- 0.04492216184735298, 0.09865672886371613, -0.0012399805709719658, -0.016564806923270226,
- 0.06211003661155701, 0.0505630299448967, -0.0286882184445858, -0.004136560019105673,
- 0.07173332571983337, -0.005911237560212612, 0.028381645679473877,
- -0.0026676219422370195, 0.04089469462633133, -0.033621057868003845,
- -0.045193783938884735, 0.048963431268930435, 0.02961258590221405, 0.019938696175813675,
- 0.10110485553741455, -0.05716690048575401, -0.03057800605893135, -0.019489148631691933,
- -0.034043651074171066, 0.008768250234425068, -0.045035868883132935, 0.0693332627415657,
- 0.07619455456733704, 0.052720122039318085, 0.017617912963032722, 0.027460085228085518,
- 0.05817081779241562, 0.021641334518790245, 0.08286292105913162, 0.03346666693687439,
- -0.017148438841104507, -0.05612998455762863, -0.005783936474472284,
- -0.01038291398435831, 0.04123087227344513, 0.059819187968969345, -0.07616385817527771,
- -0.016728980466723442, 0.00496804341673851, -0.03389563038945198, -0.08134835958480835,
- -0.025216437876224518, -0.008640991523861885, 0.011666934937238693,
- -0.05565551668405533, -0.07824529707431793, -0.09070202708244324, 0.007023286074399948,
- 0.0652109906077385, -0.058200448751449585, -0.011263741180300713, -0.11252870410680771,
- 0.016020625829696655, -0.03141690790653229, 0.04797622933983803, -0.023823801428079605,
- 0.028142983093857765, 0.028538502752780914, -0.037044040858745575, 0.02385532110929489,
- -0.007438387256115675, -0.08491083234548569, -0.033910006284713745, -0.0453474260866642,
- -0.037619974464178085, 0.007826345041394234, 0.0004716605180874467,
- -0.022005900740623474, 0.03510437533259392, 0.05703193321824074, 0.046360962092876434,
- -0.017463132739067078, -0.00313652865588665, 0.062159061431884766,
- -0.010510840453207493, -0.0073544783517718315, 0.1087731271982193, -0.03342578932642937,
- 0.04165558144450188, -0.030462821945548058, -0.08296501636505127, -0.055278245359659195,
- 0.0006851480575278401, -0.022690489888191223, 0.023891136050224304,
- -0.04098602756857872, 0.010369942523539066, -0.023362593725323677, -0.03976898640394211,
- 0.06672586500644684, -0.07743250578641891, -0.06121944636106491, -0.07217517495155334,
- 0.10401713848114014, 0.02981526032090187, -0.0036713131703436375, 0.014566780999302864,
- -0.04438318684697151, 0.05507311969995499, 0.010461103171110153, 0.0008903607376851141,
- 0.06676340848207474, 0.062452588230371475, -0.025113288313150406, 0.01756562665104866,
- 0.056587234139442444, 0.012337159365415573, -0.021334530785679817, 0.06116994842886925,
- 0.4314705729484558, -0.19199924170970917, 0.08092880994081497, 0.08177640289068222,
- 0.008998872712254524, 0.04583645239472389, -0.022827044129371643, 0.051839254796504974,
- 0.09996050596237183, 0.13390052318572998, 0.10991334170103073, -0.046417538076639175,
- -0.012196884490549564, -0.08653058856725693, 0.07618342339992523, 0.036090731620788574,
- -0.02277815155684948, -0.003613449167460203, -0.06391537189483643,
- -0.028176037594676018, 0.01780819520354271, -0.04280642420053482, 0.04261639714241028,
- 0.03800790011882782, -0.06347109377384186, 0.010770143941044807, 0.021358182653784752,
- 0.01139010488986969, -0.017716286703944206, 0.054750293493270874, -0.02443048730492592,
- 0.06590379029512405, 0.01332179270684719, 0.047761790454387665, -0.09843795746564865,
- 0.008798936381936073, -0.04810303449630737, -0.07998397946357727, 0.10663846135139465,
- -0.015919556841254234, 0.039643898606300354, 0.06132157891988754, -0.05814044177532196,
- 0.06236947327852249, -0.0548211969435215, -0.058924004435539246, -0.0005897674709558487,
- 0.04343494400382042, 0.007631021551787853, 0.0777759701013565, 0.15892183780670166,
- -0.033032696694135666, -0.032297153025865555, -0.06716900318861008, 0.07887948304414749,
- 0.12024420499801636, -0.03988457843661308, -0.002558003179728985,
- -0.0026364349760115147, -0.025363212451338768, -0.016222873702645302,
- -0.026558691635727882, -0.08550120145082474, 0.004538292996585369, -0.01297963410615921,
- 0.09266752004623413, 0.03722039982676506, -0.02959294244647026, -0.11905096471309662,
- -0.029166974127292633, -0.03541479632258415, 0.0013698707334697247, 0.07445129752159119,
- -0.06705384701490402, 0.01718834415078163, -0.018541764467954636, 0.02332053706049919,
- 0.044717274606227875, -0.03799225762486458, 0.0003282453981228173, -0.06561711430549622,
- 0.052751652896404266, 0.045090533792972565, 0.046426571905612946, -0.040557000786066055,
- 0.06796935945749283, -0.10395185649394989, 0.052287474274635315, 0.019155384972691536,
- -0.022197391837835312, 0.052217837423086166, -0.012933501973748207, 0.02434799075126648,
- 0.006841127295047045, -0.007935291156172752, -0.013487126678228378,
- -0.027288781479001045, -0.03141084685921669, -0.07804941385984421, -0.05022110790014267,
- -0.028875909745693207, -0.09019190818071365, 0.04314381256699562, -0.056265510618686676,
- -0.008792300708591938, -0.03025026060640812, -0.02752050571143627, 0.016156800091266632,
- 0.04080319404602051, 0.013947652652859688, -0.11591117829084396, -0.04331538453698158,
- -0.007192636840045452, 0.04690004512667656, 0.02276194840669632, -0.03716779127717018,
- 0.03854602202773094, 0.07195215672254562, 0.03866837918758392, -0.05844486877322197,
- -0.010596566833555698, -0.06158698350191116, 0.03252297639846802, -0.11828789114952087,
- -0.39387989044189453, 0.0412943996489048, -0.016255255788564682, 0.04393605515360832,
- 0.034789588302373886, -0.09377673268318176, 0.03133740648627281, 0.002679010620340705,
- -0.02671215683221817, 0.048019226640462875, -0.026288121938705444, 0.025690395385026932,
- -0.011393924243748188, -0.06483837962150574, -0.01382724940776825, -0.06357014179229736,
- -0.02489267848432064, 0.05454067885875702, -0.010041218250989914, -0.07972852885723114,
- -0.08631022274494171, 0.01910061202943325, 0.0013470257399603724, 0.039877042174339294,
- 0.01759517751634121, 0.033118292689323425, -0.06303096562623978, -0.05844014137983322,
- 0.015635723248124123, 0.07552363723516464, 0.012673646211624146, -0.05135224014520645,
- 0.014293773099780083, 0.07760097831487656, -0.011158938519656658, 0.08087560534477234,
- 0.029284901916980743, -0.0062625231221318245, -0.057858437299728394,
- 0.07547494769096375, 0.0422934889793396, 0.18628495931625366, -0.0004122662066947669,
- 0.0040649352595210075, 0.025850698351860046, 0.1521199345588684, -0.004536557476967573,
- 0.022826842963695526, -0.043930619955062866, 0.005203332286328077, 0.015758469700813293,
- 0.016868362203240395, 0.07822522521018982, -0.08143895119428635, -0.029224693775177002,
- -0.051018692553043365, 0.014622972346842289, -0.02127508632838726, -0.0358944796025753,
- 0.21134373545646667, 0.036408957093954086, 0.024511463940143585, 0.025425098836421967,
- -0.06912027299404144, 0.00645603658631444, -0.05725177377462387, -0.09807021915912628,
- -0.007537044119089842, -0.009212767705321312, -0.004496430512517691,
- -0.03593327850103378, -0.12525750696659088, -0.0244294423609972, 0.0007041210192255676,
- -0.023268915712833405, 0.08834801614284515, -0.03429419919848442, 0.0656278133392334,
- -0.06690288335084915, 0.13253624737262726, 0.04380544275045395, 0.008503895252943039,
- 0.03185892105102539, 0.12735438346862793, -0.0011870338348671794, -0.01548206526786089,
- -0.057516466826200485, -0.0885709673166275, -0.019424015656113625, 0.10373451560735703,
- -0.05900438129901886, 0.10383071005344391, 0.02690110355615616, -0.05825864523649216,
- -0.05091802775859833, 0.02227824740111828, -0.0029311487451195717,
- -0.019256005063652992, -0.42732536792755127, -0.03766957297921181, 0.12586288154125214,
- -0.006103464402258396, 0.0037988454569131136, 0.04618993401527405, -0.01030484214425087,
- -0.0345006100833416, -0.03282551467418671, -0.0768715888261795, 0.13762162625789642,
- 0.01932353898882866, 0.08301710337400436, -0.10739574581384659, 0.060006946325302124,
- 0.07567887008190155, -0.01913050189614296, -0.0032999583054333925, 0.03876444697380066,
- -0.22976171970367432, 0.011164492927491665, -0.03436560556292534, 0.11518847197294235,
- 0.042281344532966614, 0.02229531854391098, 0.08280575275421143, -0.04909847676753998,
- 0.007353061344474554, 0.03942223638296127, -0.003843145677819848, 0.03080856427550316,
- 0.005088688340038061, -0.03607812151312828, 0.07890299707651138, 0.07612085342407227,
- 0.06788769364356995, -0.014761652797460556, 11.985610961914062, 0.05783062055706978,
- 0.06603942066431046, -0.087001271545887, 0.009799303486943245, -0.04581061005592346,
- 0.015971893444657326, -0.07771198451519012, 0.06980597972869873, 0.11103017628192902,
- 0.005778701975941658, -0.04012535512447357, -0.027924800291657448, -0.12254078686237335,
- 0.022760942578315735, -0.010216387920081615, -0.058773186057806015,
- -0.06989780068397522, 0.052126139402389526, -0.028148245066404343,
- -0.026463884860277176, 0.025425303727388382, 0.06874139606952667, 0.025474298745393753,
- -0.08039811253547668, -0.016985604539513588, 0.011902148835361004,
- -0.023872261866927147, 0.01714901439845562, 0.017056617885828018, -0.007881726138293743,
- 0.008074191398918629, 0.0667734369635582, 0.0172688290476799, 0.035706233233213425,
- 0.004390863701701164, 0.06620325148105621, 0.044949453324079514, -0.005142629612237215,
- 0.08838573098182678, 0.0008548420155420899, 0.020153537392616272, 0.004848731681704521,
- 0.03832915052771568, 0.071192167699337, 0.055993176996707916, 0.0507996492087841,
- 0.08337795734405518, 0.02951427921652794, 0.08056502044200897, 0.1024353951215744,
- -0.009022057056427002, 0.12332497537136078, 0.012422190047800541, 0.015140140429139137,
- 0.07333623617887497, 0.03380966931581497, -0.06817106902599335, 0.06106872484087944,
- 0.0738239586353302, -0.05071643739938736, 0.13166838884353638, 0.014204587787389755,
- 0.1347174495458603, -0.006547348573803902, 0.069608673453331, 0.0960020050406456,
- 0.0881243571639061, -0.12304462492465973, -0.043967586010694504, 0.0169985368847847,
- -0.11003351211547852, -0.06270957738161087, 0.03658398985862732, 0.03791952133178711,
- -0.026184849441051483, 0.06722495704889297, -0.018486468121409416, 0.03267231583595276,
- -0.03213411569595337, -0.008262650109827518, 0.0426371768116951, -0.03330542519688606,
- 0.012198127806186676, 0.08042148500680923, 0.014541893266141415, 0.09070611000061035,
- 0.09437230229377747, 0.04608703404664993, -0.1280696839094162, -0.04077721759676933,
- 0.12989264726638794, -0.006949355360120535, -0.08497199416160583, -0.00472439406439662,
- -0.036665014922618866, 0.04170908033847809, -0.14791248738765717, 0.062215257436037064,
- 0.14633312821388245, -0.0857907086610794, -0.03074536845088005, -0.05100664496421814,
- 0.0902794897556305, -0.009332051500678062, 0.018947117030620575, -0.060003988444805145,
- 0.021122166886925697, 0.018856966868042946, 0.023461904376745224, -0.04319477453827858,
- 0.08744887262582779, 0.08983535319566727, -0.043805595487356186, 0.010760056786239147,
- 0.06856831163167953, -0.008921334519982338, -0.04525429382920265, 0.05255710706114769,
- 0.027047956362366676, -0.09862106293439865, -0.03520791232585907, -0.03248852863907814,
- -0.023799795657396317, -0.004598276689648628, -0.03596239164471626,
- -0.01625429466366768, 0.0654880627989769, -0.0753321647644043, -0.02037225291132927,
- -0.00243326835334301, 0.05517086014151573, 0.0701908990740776, -0.033853381872177124,
- 0.05862051993608475, -0.052609097212553024, -0.05377688258886337, 0.04909580200910568,
- 0.07988789677619934, 0.06640420109033585, -0.05940647050738335, -0.06683029979467392,
- -0.03877987340092659, -0.10488922894001007, 0.016211343929171562, 0.12840448319911957,
- 0.01993589475750923, 0.06696081161499023, 0.044336214661598206, -0.07990045845508575,
- -0.03897664695978165, 0.09511640667915344, 0.021094946190714836, -0.016953498125076294,
- 0.052119895815849304, -0.06652036309242249, -0.03769446909427643, 0.08764297515153885,
- -0.0645819902420044, -0.013369843363761902, 0.011127235367894173, -0.017717398703098297,
- 0.09187746047973633, 0.061994537711143494, 0.0628548115491867, 0.013642334379255772,
- 0.04151412099599838, 0.0239619892090559, -0.009406435303390026, -0.0035654427483677864,
- 0.016985472291707993, -0.05092955753207207, -0.1085686907172203, -0.08809201419353485,
- 0.042046792805194855, 0.09846001118421555, 0.0275600366294384, -0.11317149549722672,
- -0.0177855733782053, -0.05298134684562683
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 309,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 54,
- "similarity": 0.9987533092498779
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 11,
- "similarity": 0.9984160661697388
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 51,
- "similarity": 0.9982761740684509
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Alexander J Martin"],
- "epoch_date_downloaded": 1662508800,
- "epoch_date_modified": 1663027200,
- "epoch_date_submitted": 1662508800,
- "flag": null,
- "report_number": 2030,
- "source_domain": "news.sky.com",
- "submitters": ["Nickie Demakos"],
- "title": "Police facial recognition trial led to 'erroneous arrest'",
- "url": "https://news.sky.com/story/police-facial-recognition-trial-led-to-erroneous-arrest-11013418"
- },
- {
- "__typename": "Report",
- "authors": ["Rebecca Hill"],
- "epoch_date_downloaded": 1661299200,
- "epoch_date_modified": 1661299200,
- "epoch_date_submitted": 1661299200,
- "flag": null,
- "report_number": 1960,
- "source_domain": "theregister.com",
- "submitters": ["Khoa Lam"],
- "title": "Zero arrests, 2 correct matches, no criminals: London cops' facial recog tech slammed",
- "url": "https://www.theregister.com/2018/05/15/met_police_slammed_inaccurate_facial_recognition/"
- },
- {
- "__typename": "Report",
- "authors": ["Biometrics Commissioner"],
- "epoch_date_downloaded": 1661299200,
- "epoch_date_modified": 1661299200,
- "epoch_date_submitted": 1661299200,
- "flag": null,
- "report_number": 1956,
- "source_domain": "gov.uk",
- "submitters": ["Khoa Lam"],
- "title": "Metropolitan Police’s use of Facial Recognition Technology at the Notting Hill Carnival, 2017",
- "url": "https://www.gov.uk/government/news/metropolitan-polices-use-of-facial-recognition-technology-at-the-notting-hill-carnival-2017"
- },
- {
- "__typename": "Report",
- "authors": ["Hannah Fry"],
- "epoch_date_downloaded": 1661299200,
- "epoch_date_modified": 1661299200,
- "epoch_date_submitted": 1661299200,
- "flag": null,
- "report_number": 1954,
- "source_domain": "wsj.com",
- "submitters": ["Ingrid Dickinson (CSET)"],
- "title": "Don’t Believe the Algorithm",
- "url": "https://www.wsj.com/articles/dont-believe-the-algorithm-1536157620"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "south-wales-police",
- "name": "South Wales Police"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "nec",
- "name": "NEC"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "finals-attendees",
- "name": "FInals attendees"
- },
- {
- "__typename": "Entity",
- "entity_id": "falsely-accused-finals-attendees",
- "name": "falsely accused Finals attendees"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1955, 1957, 1958, 1959, 2126, 2127, 2128, 2269],
- "vector": [
- -0.04545444110408425, 0.06088692927733064, -0.005956809472991154, -0.10709070973098278,
- 0.0620739939622581, -0.0875651491805911, 0.006773038061510306, 0.039377402048558,
- 0.07024227548390627, -0.1021630484610796, 0.0023571561032440513, 0.04546439182013273,
- 0.03209203446749598, -0.0514112520031631, 0.035527873202227056, -0.12677676416933537,
- -0.10906554292887449, -0.019654306932352483, -0.046343230293132365,
- -0.08312950073741376, -0.09593368973582983, 0.012128722009947523, 0.06625524791888893,
- 0.09022779809311032, -0.02497132762800902, 0.040848187752999365, 0.08120259270071983,
- 0.12616095878183842, -0.04225563246291131, 0.030792166697210632, -0.0074774073727894574,
- -0.045847036642953753, 0.12137728184461594, 0.006714851479046047, 0.007627953891642392,
- 0.08844956383109093, 0.0671119294129312, -0.041129252676910255, -0.0387283785676118,
- -0.02186212601372972, 0.021999964694259688, 0.1915505137294531, -0.014862583586364053,
- -0.028165513300336897, 0.06162927160039544, -0.021762237593065947, 0.009490102005656809,
- 0.06950921914540231, -0.006248055986361578, 0.007459659886080772, 0.033325005788356066,
- -0.0017146089812740684, -0.037990368000464514, 0.014402876142412424,
- -0.059130581648787484, 0.04744385136291385, 0.017951864225324243, 0.009014793511596508,
- 0.03630591358523816, -0.09014779841527343, -0.005286300845909864, -0.17215955909341574,
- -0.07830624445341527, -0.0795410982100293, 0.07437308644875884, -0.08550760708749294,
- -0.0324083719169721, 0.019459079805528745, 0.019943148301535985, 0.05872857291251421,
- 0.06301904050633311, -0.045345810474827886, 0.010463238751981407, -0.038653807423543185,
- 0.00756239851762075, -0.004502537904045312, 0.013596832461189479, 0.1950152162462473,
- -0.07759563787840307, 0.05166635091882199, 0.08277728268876672, -0.08333164779469371,
- 0.3354810867458582, 0.026699370791902766, -0.028305070591159165, -0.02542748357518576,
- 0.08473303774371743, 0.04293616954237223, 0.027072451717685908, 0.017108429310610518,
- -0.0005459415260702372, 0.04503570625092834, -0.033191796799656004,
- 0.011168849072419107, 0.061021037166938186, 0.02439409919315949, 0.001950463221874088,
- -0.031948122474204865, -0.0354305207147263, -0.01667490719410125, -0.03550108434865251,
- -0.032613628543913364, 0.10728033073246479, 0.08109174482524395, -0.041234646923840046,
- 0.008981114988273475, 0.05426572868600488, -0.00801487930584699, 0.040528603247366846,
- -0.041993978433310986, 0.02887191972695291, 0.07966133736772463, 0.09758040402084589,
- 0.03132017084863037, 0.018005115911364555, -0.03331062034703791, -0.006584127899259329,
- 0.03088974073762074, 0.05142005579546094, 0.015568967355648056, 0.00113261716614943,
- 0.06762226670980453, 0.08942315122112632, -0.03008634233265184, 0.001503791194409132,
- -0.020104177005123347, -0.041794536635279655, -0.04445114638656378,
- -0.039214984397403896, 0.009135163214523345, -0.02208963833982125, -0.19245411083102226,
- 0.029668166884221137, 0.06669031851924956, 0.01948518662538845, -0.021318166749551892,
- 0.013685885351151228, -0.050701156724244356, 0.05588432005606592, 0.0027141965547343716,
- -0.0275386477005668, 0.0734904664568603, 0.027030727185774595, 0.014092047757003456,
- 0.08520590048283339, 0.0015857702383073047, -0.04727082629688084, -0.030846826382912695,
- -0.02373513235943392, 0.002817923261318356, 0.0912636392749846, -0.1016294565051794,
- -0.04036743738106452, 0.03777040191926062, 0.012857558147516102, 0.6260593123733997,
- 0.08868253184482455, 0.10368652828037739, -0.01899336214410141, -0.008186669438146055,
- 0.15776554122567177, 0.030963858996983618, 0.06386022514197975, -0.025472306072515494,
- -0.05208255292382091, 0.019211698207072914, -0.028920704557094723, 0.005414851504610851,
- 0.014080780412768945, 0.05008808759157546, 0.08262256300076842, 0.008211423468310386,
- 0.0793035114184022, -0.016128037415910512, -0.06868817564100027, 0.011326902949804207,
- 0.015275040554115549, -0.00587556860409677, -0.10079063195735216, -0.035104278758808505,
- 0.0397493583150208, 0.061155918054282665, -0.05799460201524198, 0.025041776651050895,
- -0.036263764603063464, 0.03424475999781862, -0.006244228017749265, 0.05314722831826657,
- -0.027926896611461416, 0.006843134469818324, 0.025121713726548478, 0.04627534933388233,
- 0.0073357996880076826, -0.08568700263276696, -0.020706927083665505, 0.08964872639626265,
- 0.028847203066106886, -0.023120873186599056, 0.08404244249686599, -0.08784473408013582,
- 0.018525737810705323, -0.0008406350971199572, 0.1462305160239339, -0.10681886598467827,
- 0.020433449652045965, 0.014596962049836293, -0.0021476473775692284,
- 0.047341177822090685, -0.025956021796446294, -0.05611831904388964, -0.05411184090189636,
- 0.06460435001645237, 0.027045731229009107, 0.09044117666780949, 0.03392641129903495,
- -0.010175458854064345, 0.028717312146909535, -0.0011432583560235798,
- 0.007456330815330148, -0.07615196472033858, 0.07356742955744267, 0.05449233506806195,
- -0.026038678945042193, 0.01830155312200077, 0.07749366469215602, 0.013276024139486253,
- 0.01852401182986796, -0.0015338230105044204, 0.05021423823200166, -0.011165526826516725,
- -0.03435208019800484, 0.06999585847370327, 0.022283077239990234,
- -0.00012500135926529765, 0.10643637459725142, -0.08925034443382174,
- -0.027740204357542098, -0.03298783834907226, -0.03286412142915651, 0.00457429134985432,
- -0.0372255751863122, 0.040750927990302444, 0.056897339411079884, 0.046416396740823984,
- 0.003038709459360689, 0.04130613441520836, 0.030169292993377894, 0.017789627891033888,
- 0.056361326249316335, 0.02019045337510761, -0.03530079312622547, -0.039550622983369976,
- -0.004061505518620834, -0.015411758082336746, 0.07805626699700952, 0.0504913892436889,
- -0.072596539510414, 0.0047001491620903835, 0.028540928789880127, -0.030494999256916344,
- -0.06173403817228973, -0.03033153945580125, -0.016325753673299914,
- -0.008223355514928699, -0.05379820289090276, -0.06427871598862112,
- -0.052935954241547734, 0.018315127676032716, 0.04928026915877126, -0.04665538156405091,
- 0.004918197431834415, -0.0766773265786469, -0.0027838455862365663, -0.0035831203131238,
- 0.04685589880682528, -0.010450098488945514, 0.020317212329246104, 0.0029142906423658133,
- -0.040247293189167976, 0.0012804696762032108, 0.028533854754641652,
- -0.06656414945609868, -0.034597028628923, -0.048757480923086405, -0.02451352309435606,
- 0.021373850526288152, 0.002468549180775881, -0.02142122620716691, 0.042556896107271314,
- 0.05293108359910548, 0.031220960037899204, -0.028633156209252775, 0.007696158019825816,
- 0.07132173469290137, -0.021420927485451102, 0.013463174807839096, 0.06739001674577594,
- -0.02559627965092659, 0.02965085132746026, -0.026772253564558923, -0.048025022726505995,
- -0.06108099827542901, -0.03826421010307968, -0.03827149118296802, 0.030700056871864945,
- -0.06328605918679386, -0.00004364057895145379, -0.02095701068174094,
- -0.036954970157239586, 0.06788441038224846, -0.0879921386949718, -0.047612234484404325,
- -0.09306556452065706, 0.09110915940254927, -0.0002570361175457947,
- 0.00013786929775960743, 0.016962902853265405, -0.032560342689976096,
- 0.030360459932126105, 0.007725741219474003, 0.01749429025221616, 0.07707952195778489,
- 0.06513990228995681, -0.016411720658652484, 0.008589234261307865, 0.05819896887987852,
- -0.00953021040186286, 0.0026366582605987787, 0.06503553572110832, 0.41831889748573303,
- -0.11215009849365742, 0.07478723698295653, 0.07947139232419431, 0.02536601130850613,
- 0.04697189584840089, -0.014866224431898445, 0.05155430594459176, 0.057186795223969966,
- 0.09590584365651011, 0.10186797752976418, -0.02803241164656356, -0.015067314729094505,
- -0.05074436217546463, 0.06195638654753566, 0.027609997778199613, -0.0032202289439737797,
- -0.010945906164124608, -0.0692820125259459, -0.02516063500661403, 0.02839461830444634,
- -0.03358577040489763, 0.04542353143915534, 0.0029088218580000103, -0.06708127213642001,
- 0.0251460945000872, 0.050200275145471096, 0.015364641629275866, -0.020449968054890633,
- 0.03869381977710873, -0.030381818804016802, 0.035185563494451344, 0.02408901170747413,
- 0.032992486347211525, -0.045549975358881056, 0.011638935306109488, -0.05549488024553284,
- -0.098714844789356, 0.09523183573037386, -0.002296850783750415, 0.04768792673712596,
- 0.05361493770033121, -0.013984642107971013, 0.05847130576148629, -0.07114350097253919,
- -0.033035588305210695, -0.009713169099995866, 0.025918395520420745,
- 0.027221286902204156, 0.06976370280608535, 0.14616694301366806, -0.014961345223127864,
- -0.021548933582380414, -0.07141542923636734, 0.05733144376426935, 0.10566858341917396,
- -0.036327199661172926, 0.0081782259803731, 0.005916279666053015, 0.006121785088907927,
- -0.007492913486203179, 0.0027015123050659895, -0.10919683240354061, 0.03830341249704361,
- -0.021761831667390652, 0.07960490183904767, 0.01800019107758999, -0.04071591736283153,
- -0.14841383509337902, -0.02946004128898494, -0.048492179717868567, 0.01794724923092872,
- 0.08534680912271142, -0.05140927340835333, -0.01550763807608746, 0.021747759368736297,
- 0.010478135161974933, -0.000813800492323935, -0.04878048272803426, -0.02272774337325245,
- -0.05868398229358718, 0.0432177884504199, 0.04641707078553736, 0.055819014087319374,
- -0.023766851518303156, 0.06276837881887332, -0.09171843621879816, 0.031981236301362514,
- 0.02800838898838265, -0.01907394709996879, 0.048829696606844664, -0.012220694290590473,
- 0.042255062911863206, -0.0014432429743465036, -0.004033247227198444,
- -0.05022731234203093, -0.04760524467565119, -0.007914298126706854, -0.08619252732023597,
- -0.026677857793401927, -0.02722108026728165, -0.0871024620719254, 0.07551601994782686,
- -0.02916281227953732, -0.01973430922953412, -0.020502447136095725, -0.03552850254345685,
- 0.01269950585992774, 0.03182228220975958, -0.005898058152524754, -0.10763419652357697,
- -0.06274374341592193, -0.0035391337987675797, 0.03954858024371788,
- -0.011367878199962433, -0.05239423445891589, 0.0311516099027358, 0.06272695068037137,
- 0.013076292700134218, -0.07567567005753517, 0.010232824424747378, -0.04046230693347752,
- 0.035824391117785126, -0.08133963542059064, -0.4352071173489094, 0.05575707321986556,
- 0.02935059085575631, 0.0433154049096629, 0.01936498866416514, -0.08373460965231061,
- 0.02524807129520923, 0.019396143707126612, -0.002579338528448716, 0.04555501230061054,
- -0.04744171118363738, 0.025140920712146908, 0.0008421567908953875, -0.03957329725380987,
- -0.005504220542206895, -0.08306571329012513, -0.02085264428751543, 0.034320625476539135,
- -0.02019054306583712, -0.07339276070706546, -0.06761378282681108, -0.002032843476627022,
- -0.02010203414829448, 0.0004764754994539544, 0.002809226221870631,
- 0.0018982627079822123, -0.09133054688572884, -0.052662340574897826, 0.03146755916532129,
- 0.05236722028348595, -0.006236301676835865, -0.05400957399979234, 0.014383168714630301,
- 0.057480607414618134, 0.006046958966180682, 0.08274760656058788, 0.03519950690679252,
- -0.002614580327644944, -0.06483268458396196, 0.061576143372803926, 0.03775871219113469,
- 0.1890480685979128, -0.014641385801951401, 0.04225881146885513, 0.02113235800061375,
- 0.11668002512305975, -0.012993690848816186, 0.04371970472857356, -0.03688399796374142,
- 0.0022674690699204803, 0.019079763980698772, 0.017935406183823943, 0.05456416867673397,
- -0.06993443006649613, 0.003831451525911689, -0.04851352656260133, -0.03204598999582231,
- -0.03306507575325668, -0.020616927242372185, 0.19743786845356226, 0.014630844598286785,
- 0.02114561991766095, 0.0442560245282948, -0.06255054450593889, -0.019508836609020364,
- -0.05480377213098109, -0.0509731361962622, -0.03428329376038164, -0.008400875725783408,
- 0.0251140144537203, -0.03995394369121641, -0.1229721624404192, -0.026940853509586304,
- -0.0163427733205026, -0.026531583498581313, 0.0764965417329222, -0.05242127599194646,
- 0.05770783685147762, -0.06794563634321094, 0.1267961421981454, 0.030176311323884875,
- 0.045855999924242496, 0.03049996343906969, 0.09306356590241194, 0.0064650558633729815,
- -0.042754774156492203, -0.043718468863517046, -0.08496693149209023,
- -0.020713421366963303, 0.08415282890200615, -0.033211302405106835, 0.1006122911348939,
- 0.013645873725181445, -0.044116277946159244, -0.04487743478966877, 0.016048381745349616,
- 0.005837658478412777, -0.01818175041626091, -0.46268949657678604, -0.030847182031720877,
- 0.13615013286471367, -0.025843361479928717, 0.03739003662485629, 0.04615902551449835,
- -0.009475382350501604, -0.022020490374416113, 0.023545226256828755,
- -0.07300468813627958, 0.14623523596674204, 0.029896418913267553, 0.07236308045685291,
- -0.08222890563774854, 0.03624832408968359, 0.06537574715912342, -0.015705141893704422,
- -0.027575886342674494, 0.0161906240737153, -0.2522946372628212, -0.005962479131994769,
- -0.04259966337122023, 0.11954981926828623, 0.07288879761472344, 0.029534259054344147,
- 0.09383264649659395, -0.0495278550661169, 0.013791669101919979, 0.04468732677923981,
- 0.01650330430129543, 0.056338621536269784, 0.011441153823398054, -0.04403205355629325,
- 0.08197086397558451, 0.052286144345998764, 0.07720026443712413, -0.020370465594169218,
- 11.822442770004272, 0.05590181518346071, 0.06830821419134736, -0.06877219211310148,
- 0.013488185475580394, -0.0560071705840528, 0.04298029956407845, -0.0485678258119151,
- 0.07939697755500674, 0.06866644602268934, 0.005293151145451702, -0.049694476183503866,
- -0.043143960065208375, -0.0844669706420973, 0.009536488156300038, -0.007762754612485878,
- -0.027955128432950005, -0.03251659218221903, 0.034429580555297434,
- -0.040195791982114315, -0.00047689427447039634, 0.024348775070393458,
- 0.06335133500397205, 0.028496350190835074, -0.09683349169790745, -0.013769128592684865,
- -0.005498838305356912, -0.0059958817437291145, 0.027064083420555107,
- 0.028636773815378547, -0.008256207220256329, -0.0060890824170201086, 0.0866748564876616,
- 0.012036583793815225, 0.025968164001824334, 0.021587396797258407, 0.032714754808694124,
- 0.03249422243243316, 0.023015572340227664, 0.03861779475118965, 0.00800374577738694,
- 0.03515430762854521, 0.0017765152879292145, 0.03325282456353307, 0.05503159645013511,
- 0.048093529392644996, 0.04854386914121278, 0.0930774761363864, 0.02066263387678191,
- 0.06570271076634526, 0.07895485032349825, 0.0064094474946614355, 0.09972452092915773,
- 0.024682965922693256, 0.0074648741283454, 0.03692373144440353, 0.019845634466037154,
- -0.061280354333575815, 0.054606272373348475, 0.1027821283787489, -0.039150109281763434,
- 0.11928049381822348, 0.02076873742043972, 0.0950191649608314, -0.024304100108565763,
- 0.04091268125921488, 0.09416928701102734, 0.09506223257631063, -0.15809368016198277,
- -0.03681211204821011, 0.03308405552525073, -0.10539758112281561, -0.04842846520477906,
- 0.04698840936180204, 0.030592194641940296, -0.020778491802047938, 0.07247286313213408,
- -0.025954273907700554, 0.04235849995166063, -0.0478134173899889, -0.008949980576289818,
- 0.013832200085744262, -0.0477197629516013, 0.00914413057762431, 0.02981199750502128,
- 0.013672422675881535, 0.07262220559641719, 0.11891799420118332, 0.041910267900675535,
- -0.09446540474891663, -0.07317933975718915, 0.10049654147587717, 0.0004701333018601872,
- -0.0571361999027431, 0.002625064691528678, -0.04308016470167786, 0.01980225625447929,
- -0.12144576013088226, 0.04554158612154424, 0.11020587477833033, -0.08844763832166791,
- -0.018210992362583056, -0.03523779439274222, 0.09465111372992396, -0.01547008310444653,
- 0.008866930180374766, -0.06297543412074447, 0.05028166569536552, 0.02928503172006458,
- 0.027353233832400292, -0.06931290682405233, 0.09877013601362705, 0.056812905124388635,
- -0.039465091191232204, 0.036352581228129566, 0.0502972062677145, -0.013985036057420075,
- -0.036836703307926655, 0.042581726564094424, 0.02159412542823702, -0.11823292728513479,
- -0.035503117978805676, -0.030188116477802396, -0.016932472441112623,
- -0.01234763304819353, -0.03535459947306663, -0.02146562229609117, 0.0423391773365438,
- -0.06469814921729267, -0.02528704283758998, 0.003485108245513402, 0.06409914139658213,
- 0.06911637750454247, -0.023014094214886427, 0.028968087397515774, -0.02378852106630802,
- -0.04598658226314001, 0.06363000767305493, 0.07798311114311218, 0.0758727234788239,
- -0.05246852186974138, -0.02707322034984827, -0.01945747774152551, -0.09831779543310404,
- 0.009838362471782602, 0.08447496965527534, 0.04950815140909981, 0.03795164963230491,
- 0.04722292470978573, -0.044652890879660845, -0.023762672673910856, 0.10105441510677338,
- 0.008419270860031247, 0.0000028592476155608892, 0.053091117879375815,
- -0.07433253480121493, -0.006637144790147431, 0.08262014854699373, -0.03428982000332326,
- -0.0010237727547064424, 0.0026575386291369796, -0.09404494636692107,
- 0.04376027057878673, 0.057463045726763085, 0.04599388304632157, -0.007600581615406554,
- 0.06287019606679678, 0.013536748883780092, 0.01249891528277658, 0.0036043731961399317,
- 0.011975100787822157, -0.05977508705109358, -0.07607809733599424, -0.07773174392059445,
- 0.020373832783661783, 0.0802993313409388, 0.07744049420580268, -0.13318284135311842,
- -0.014799310538364807, -0.03629942931002006
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 310,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 162,
- "similarity": 0.9977969527244568
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 87,
- "similarity": 0.9976571798324585
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 48,
- "similarity": 0.9972187876701355
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Marco Marcelline"],
- "epoch_date_downloaded": 1668556800,
- "epoch_date_modified": 1668643200,
- "epoch_date_submitted": 1668556800,
- "flag": null,
- "report_number": 2269,
- "source_domain": "pcmag.com",
- "submitters": ["Kate Perkins"],
- "title": "UK Police Use of Facial Recognition Fails to Meet 'Legal And Ethical Standards'",
- "url": "https://www.pcmag.com/news/uk-police-use-of-facial-recognition-fails-to-meet-legal-and-ethical-standards"
- },
- {
- "__typename": "Report",
- "authors": ["Hunton Andrews Kurth"],
- "epoch_date_downloaded": 1663977600,
- "epoch_date_modified": 1665619200,
- "epoch_date_submitted": 1663977600,
- "flag": null,
- "report_number": 2128,
- "source_domain": "huntonprivacyblog.com",
- "submitters": ["Srishti Khemka (CSET)"],
- "title": "UK Court of Appeal Finds Automated Facial Recognition Technology Unlawful in Bridges v South Wales Police",
- "url": "https://www.huntonprivacyblog.com/2020/08/12/uk-court-of-appeal-finds-automated-facial-recognition-technology-unlawful-in-bridges-v-south-wales-police/"
- },
- {
- "__typename": "Report",
- "authors": ["Courts and Tribunals Judiciary"],
- "epoch_date_downloaded": 1663977600,
- "epoch_date_modified": 1665619200,
- "epoch_date_submitted": 1663977600,
- "flag": null,
- "report_number": 2127,
- "source_domain": "judiciary.uk",
- "submitters": ["Khoa Lam"],
- "title": "EWCA Civ 1058 – R (Bridges) v. CC South Wales",
- "url": "https://www.judiciary.uk/judgments/r-bridges-v-cc-south-wales/"
- },
- {
- "__typename": "Report",
- "authors": ["NEC Corporation"],
- "epoch_date_downloaded": 1663977600,
- "epoch_date_modified": 1665619200,
- "epoch_date_submitted": 1663977600,
- "flag": null,
- "report_number": 2126,
- "source_domain": "nec.com",
- "submitters": ["Srishti Khemka (CSET)"],
- "title": "NEC provides facial recognition system to South Wales Police in the UK",
- "url": "https://www.nec.com/en/press/201707/global_20170711_01.html"
- },
- {
- "__typename": "Report",
- "authors": ["Peter Farquhar"],
- "epoch_date_downloaded": 1661299200,
- "epoch_date_modified": 1661299200,
- "epoch_date_submitted": 1661299200,
- "flag": null,
- "report_number": 1959,
- "source_domain": "businessinsider.com",
- "submitters": ["Khoa Lam"],
- "title": "British police defend their new criminal facial recognition technology – even though it's failing at a rate of 92%",
- "url": "https://www.businessinsider.com/british-police-defend-criminal-facial-recognition-service-but-its-failing-at-rate-of-92-2018-5"
- },
- {
- "__typename": "Report",
- "authors": ["Ciaran Jones"],
- "epoch_date_downloaded": 1661299200,
- "epoch_date_modified": 1661299200,
- "epoch_date_submitted": 1661299200,
- "flag": null,
- "report_number": 1958,
- "source_domain": "walesonline.co.uk",
- "submitters": ["Khoa Lam"],
- "title": "Facial recognition wrongly identified 2,000 people as possible criminals when Champions League final came to Cardiff",
- "url": "https://www.walesonline.co.uk/news/wales-news/facial-recognition-wrongly-identified-2000-14619145"
- },
- {
- "__typename": "Report",
- "authors": ["Cyrus Farivar"],
- "epoch_date_downloaded": 1661299200,
- "epoch_date_modified": 1661299200,
- "epoch_date_submitted": 1661299200,
- "flag": null,
- "report_number": 1957,
- "source_domain": "arstechnica.com",
- "submitters": ["Khoa Lam"],
- "title": "UK police say 92% false positive facial recognition is no big deal",
- "url": "https://arstechnica.com/tech-policy/2018/05/uk-police-say-92-percent-false-positive-facial-recognition-is-no-big-deal/"
- },
- {
- "__typename": "Report",
- "authors": ["BBC News"],
- "epoch_date_downloaded": 1661299200,
- "epoch_date_modified": 1661299200,
- "epoch_date_submitted": 1661299200,
- "flag": null,
- "report_number": 1955,
- "source_domain": "bbc.com",
- "submitters": ["Khoa Lam"],
- "title": "2,000 wrongly matched with possible criminals at Champions League",
- "url": "https://www.bbc.com/news/uk-wales-south-west-wales-44007872"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "youtube",
- "name": "YouTube"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "youtube",
- "name": "YouTube"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "women-of-sex-tech-conference-organizers",
- "name": "Women of Sex Tech conference organizers"
- },
- {
- "__typename": "Entity",
- "entity_id": "women-of-sex-tech-conference-attendants",
- "name": "Women of Sex Tech conference attendants"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1962, 1961],
- "vector": [
- -0.07361595332622528, 0.04910571128129959, 0.0019597867503762245, -0.11833750456571579,
- 0.06504498422145844, -0.04910360276699066, 0.013408808968961239, 0.04241258651018143,
- 0.07068608701229095, -0.1452588438987732, -0.009591735899448395, 0.05890317261219025,
- 0.03202226758003235, -0.06031285598874092, 0.03893408924341202, -0.05175941810011864,
- -0.11618165671825409, -0.013375911861658096, 0.024204712361097336, -0.10956889390945435,
- -0.09211549162864685, 0.010594191029667854, 0.0377211757004261, 0.08661375939846039,
- -0.00789682287722826, -0.008870666846632957, 0.06749497354030609, 0.16119584441184998,
- -0.024625523015856743, 0.05417117103934288, -0.02023497223854065, -0.06098160147666931,
- 0.10741442441940308, 0.009916849434375763, 0.028274787589907646, 0.048176441341638565,
- 0.043565645813941956, -0.060712650418281555, -0.0826488733291626, -0.014280196279287338,
- 0.06830880790948868, 0.16123604774475098, -0.023548074066638947, -0.029509883373975754,
- 0.06842231750488281, -0.0060983020812273026, 0.06156639754772186, 0.0034516211599111557,
- -0.01944654807448387, -0.004599614068865776, 0.018766209483146667,
- -0.004154898226261139, -0.027190029621124268, 0.010060759261250496,
- -0.09571145474910736, 0.0643344521522522, 0.03295006975531578, -0.024998649954795837,
- -0.0065116723999381065, -0.05844855308532715, -0.056515924632549286,
- -0.21066492795944214, -0.05584283173084259, -0.03874106705188751, 0.08060646057128906,
- -0.08800392597913742, -0.002237526932731271, 0.05433440953493118, 0.017924722284078598,
- 0.06675483286380768, 0.06919321417808533, -0.04272783547639847, -0.0137168038636446,
- 0.0004883422516286373, -0.028859391808509827, -0.008927054703235626,
- 0.04502641037106514, 0.17513202130794525, -0.11561436206102371, -0.0001522209495306015,
- 0.1141965240240097, -0.09850559383630753, 0.38616180419921875, 0.04064726084470749,
- -0.00935328844934702, 0.009331421926617622, 0.05509302765130997, 0.027080439031124115,
- 0.0014341985806822777, 0.03549565002322197, 0.01671360619366169, 0.053610652685165405,
- -0.058032818138599396, 0.03233211487531662, 0.0719674751162529, 0.036225270479917526,
- -0.029338406398892403, 0.007392179220914841, -0.013816596008837223,
- -0.07803729176521301, 0.05549292266368866, -0.04897778108716011, 0.12132421135902405,
- 0.0518437922000885, -0.020193811506032944, 0.008806711994111538, 0.06776455044746399,
- -0.05709590017795563, 0.05992969870567322, -0.06188560277223587, 0.000373861868865788,
- 0.02846263162791729, 0.08747686445713043, 0.009833062067627907, 0.06049293279647827,
- -0.05328414589166641, -0.017314333468675613, 0.04518789052963257, 0.06585035473108292,
- 0.028789788484573364, 0.008558807894587517, 0.05529750883579254, 0.08186329901218414,
- -0.05614926666021347, -0.02029690518975258, -0.05424433946609497, -0.06538910418748856,
- -0.006631035357713699, -0.01310411561280489, 0.04174462705850601, -0.03452243655920029,
- -0.22393128275871277, 0.009468473494052887, 0.08551166951656342, 0.024472862482070923,
- 0.004821609240025282, 0.041659846901893616, -0.06154094636440277, 0.002698181662708521,
- 0.012634415179491043, -0.00001716194674372673, 0.06783372163772583,
- 0.015996288508176804, 0.05351066216826439, 0.08596538752317429, 0.00836480874568224,
- -0.02034849300980568, -0.08232389390468597, -0.007391572929918766, -0.01385878399014473,
- 0.10262257605791092, -0.12492077797651291, -0.03278021886944771, -0.007855026051402092,
- 0.01726585626602173, 0.6266974210739136, 0.10298006236553192, 0.14747516810894012,
- -0.017213575541973114, 0.005118289031088352, 0.18083900213241577, -0.016531413421034813,
- 0.049408771097660065, -0.053065571933984756, -0.07649070769548416,
- -0.004407435655593872, -0.014768210239708424, -0.04575807601213455, 0.02401769906282425,
- 0.039437271654605865, 0.08482292294502258, 0.041010648012161255, 0.10422752052545547,
- -0.001957879401743412, -0.07247011363506317, -0.0093421321362257, 0.003965658135712147,
- 0.019286764785647392, -0.09746924042701721, -0.036007072776556015, 0.033042848110198975,
- 0.0797569751739502, -0.048821114003658295, -0.006401472724974155, -0.05136097967624664,
- 0.0815829336643219, -0.014412939548492432, 0.08501143753528595, 0.008139894343912601,
- -0.00352692324668169, 0.042823389172554016, 0.01994270458817482, -0.031129155308008194,
- -0.08723321557044983, -0.02140539512038231, 0.0989411249756813, -0.00389503943733871,
- -0.033580102026462555, 0.07371626049280167, -0.077994704246521, 0.01942659541964531,
- 0.019553804770112038, 0.17902979254722595, -0.1344996690750122, 0.011196542531251907,
- -0.023294607177376747, -0.026369638741016388, 0.05640101432800293, -0.02653001807630062,
- -0.06087370589375496, -0.10216809809207916, 0.04789762943983078, 0.027298204600811005,
- 0.0868011862039566, 0.05892390012741089, -0.026919586583971977, 0.03996996581554413,
- 0.001990613993257284, 0.010043970309197903, -0.05667059123516083, 0.07522271573543549,
- 0.028919219970703125, -0.03666693717241287, -0.06352958083152771, 0.04220300167798996,
- 0.038918446749448776, 0.03920604661107063, 0.023048005998134613, 0.05232684314250946,
- -0.006455960217863321, -0.011082511395215988, 0.10107240080833435, 0.00801596138626337,
- 0.047764115035533905, 0.08469332754611969, -0.104953333735466, -0.06339017301797867,
- -0.029962139204144478, -0.00918304082006216, 0.033468522131443024, -0.07618188858032227,
- 0.061218857765197754, 0.08009590208530426, 0.07564730942249298, 0.001721176435239613,
- 0.03014674037694931, 0.053246475756168365, 0.024649668484926224, -0.01714898645877838,
- 0.0738183781504631, -0.04401744157075882, -0.023606451228260994, -0.036878302693367004,
- 0.024862181395292282, 0.03812491148710251, 0.05382762476801872, -0.05911003053188324,
- -0.0429479219019413, 0.030207492411136627, -0.06552135944366455, -0.08569900691509247,
- 0.006045851856470108, 0.0022792755626142025, 0.03283616900444031, -0.10797069221735,
- -0.06855147331953049, -0.09156668931245804, 0.011189024895429611, 0.03481367975473404,
- -0.01015929039567709, -0.016311373561620712, -0.09863141179084778, 0.001542010810226202,
- -0.0414905771613121, 0.048292435705661774, 0.009385667741298676, -0.015920884907245636,
- -0.0035512344911694527, -0.05773548036813736, -0.02323324978351593,
- -0.0048521473072469234, -0.05542229115962982, -0.04074545577168465,
- -0.06681119650602341, -0.03804606944322586, -0.020486511290073395,
- 0.0035123187117278576, -0.030323311686515808, 0.038643017411231995, 0.06540141999721527,
- 0.04285694658756256, -0.03296207636594772, -0.009871190413832664, 0.02128482423722744,
- -0.04359140992164612, 0.024679087102413177, 0.04847040772438049, -0.0018709003925323486,
- 0.024830518290400505, -0.05940309166908264, -0.05475403741002083, -0.05998764932155609,
- -0.03318462893366814, -0.04102194309234619, 0.09219919145107269, -0.03218104690313339,
- -0.034175463020801544, -0.02291812188923359, -0.017385166138410568, 0.07054854184389114,
- -0.04770781844854355, -0.05180836096405983, -0.0824955403804779, 0.12814265489578247,
- -0.027195684611797333, 0.03649488836526871, 0.005395669024437666, -0.09256353229284286,
- 0.04993223026394844, 0.028216440230607986, -0.0054031736217439175, 0.06707318872213364,
- 0.01610090397298336, 0.005316001828759909, 0.023699503391981125, 0.08482399582862854,
- -0.02252499759197235, 0.03354983031749725, 0.08931919932365417, 0.38686323165893555,
- -0.16967782378196716, 0.0899362787604332, 0.07647186517715454, 0.009964758530259132,
- 0.06116396561264992, -0.01932852901518345, 0.09131687879562378, 0.06472060829401016,
- 0.10003609955310822, 0.082749143242836, -0.0678514689207077, 0.031163712963461876,
- -0.059002671390771866, 0.06309060752391815, 0.04006214067339897, 0.021366702392697334,
- 0.0023537063971161842, -0.04508345574140549, -0.024783920496702194, 0.03304167836904526,
- -0.0466877818107605, 0.00023049348965287209, -0.0030062408186495304,
- -0.08006927371025085, 0.050390515476465225, 0.03648151084780693, 0.05130033195018768,
- -0.02927125059068203, 0.008439257740974426, 0.03946112468838692, 0.011537963524460793,
- -0.01563183218240738, 0.03778406232595444, -0.027613874524831772, 0.06788074970245361,
- -0.06593066453933716, -0.10910426080226898, 0.06707620620727539, -0.006535071413964033,
- 0.04053913801908493, 0.07200992852449417, 0.023458346724510193, 0.00981287844479084,
- 0.00199750903993845, -0.08310256153345108, -0.0070855384692549706, 0.02458273433148861,
- 0.003740896936506033, 0.10684028267860413, 0.18590864539146423, -0.021401166915893555,
- -0.01583746075630188, -0.061033666133880615, 0.040287382900714874, 0.09680993109941483,
- -0.023908639326691628, 0.0428311713039875, 0.0058291275054216385, 0.01820593886077404,
- 0.006769751198589802, -0.01945796236395836, -0.0854249969124794, -0.037325769662857056,
- -0.034860797226428986, 0.06359865516424179, 0.025171395391225815, -0.07477761805057526,
- -0.1698877066373825, -0.06903226673603058, -0.08020022511482239, 0.046237438917160034,
- 0.13234594464302063, -0.06739869713783264, 0.03955535590648651, 0.007332231849431992,
- 0.0006477371789515018, -0.003979765810072422, -0.10986492782831192, 0.03891356661915779,
- -0.0778561383485794, 0.028459563851356506, 0.06365606933832169, 0.046567633748054504,
- -0.07462960481643677, 0.07830691337585449, -0.10274165868759155, 0.04807380214333534,
- -0.030674226582050323, -0.017635609954595566, 0.016568753868341446,
- -0.05106200650334358, 0.008277786895632744, 0.008531288243830204, -0.030213888734579086,
- 0.010483833029866219, -0.030213631689548492, -0.02928926981985569, -0.08537829667329788,
- -0.05431731045246124, -0.042378708720207214, -0.06231508404016495, 0.07942698895931244,
- -0.0598214790225029, 0.014963936060667038, -0.028960837051272392, -0.014619643799960613,
- -0.0008857114007696509, 0.06525036692619324, -0.003724895417690277, -0.1395508199930191,
- -0.0542779415845871, -0.003304037731140852, 0.027230150997638702, -0.04898907616734505,
- -0.04288216680288315, -0.029067348688840866, 0.09984761476516724, 0.005462764762341976,
- -0.01887384057044983, 0.03128402307629585, -0.047403331845998764, 0.05496366322040558,
- -0.09140412509441376, -0.5030926465988159, 0.02146797440946102, 0.026404697448015213,
- 0.036627884954214096, 0.03201562911272049, -0.09187127649784088, 0.033859983086586,
- -0.016894102096557617, -0.024037063121795654, 0.04223755747079849, -0.05031772702932358,
- 0.030925825238227844, -0.017302075400948524, -0.07366993278265, 0.004719575867056847,
- -0.08097808063030243, -0.027497626841068268, 0.02326030470430851, -0.025709763169288635,
- -0.057400330901145935, -0.06964437663555145, 0.017674075439572334,
- -0.013077722862362862, -0.009134503081440926, -0.01664322055876255,
- 0.018093790858983994, -0.07515214383602142, -0.07535888254642487, 0.018092749640345573,
- 0.06568224728107452, 0.018369559198617935, -0.06492123007774353, -0.01114082895219326,
- 0.0702790915966034, -0.0069691939279437065, 0.11436431109905243, 0.0399882048368454,
- 0.007008063606917858, -0.0729699581861496, 0.04145636036992073, 0.09515654295682907,
- 0.18864873051643372, -0.011823347769677639, 0.07694306969642639, -0.018845420330762863,
- 0.10634687542915344, -0.00308661418966949, 0.050972141325473785, -0.0694325864315033,
- -0.0065270885825157166, -0.032794445753097534, -0.027538346126675606,
- 0.03840245306491852, -0.07475098967552185, -0.00898862723261118, -0.015221145004034042,
- -0.02473464608192444, -0.028274424374103546, -0.0027119149453938007,
- 0.18813782930374146, 0.0424102246761322, 0.03645624220371246, 0.013484710827469826,
- -0.023517731577157974, -0.005024172365665436, -0.060292236506938934,
- -0.07158726453781128, -0.019946610555052757, 0.001026989077217877, 0.0332949198782444,
- -0.04928005859255791, -0.07364876568317413, -0.00692309346050024, -0.028607698157429695,
- -0.008124304935336113, 0.10128330439329147, -0.05774302035570145, 0.05310541391372681,
- -0.02356216497719288, 0.1459609717130661, 0.041098058223724365, 0.07618404179811478,
- 0.04854724556207657, 0.08481064438819885, 0.005117925349622965, -0.007815130054950714,
- -0.058272890746593475, -0.09918418526649475, -0.010374018922448158, 0.1694447100162506,
- -0.0057822782546281815, 0.09627670049667358, 0.018831398338079453,
- -0.024796076118946075, -0.012470163404941559, 0.007077738642692566,
- -0.00166587985586375, -0.005308384075760841, -0.45798277854919434, -0.05167851597070694,
- 0.11168220639228821, -0.0037007946521043777, 0.009909337386488914, 0.07551206648349762,
- 0.009453678503632545, -0.04759037494659424, -0.0262623131275177, -0.09680034220218658,
- 0.07959865778684616, 0.02543105185031891, 0.07923991978168488, -0.06373364478349686,
- 0.04337610304355621, 0.07938212901353836, 0.003907215315848589, -0.03851626068353653,
- 0.05517527833580971, -0.22600115835666656, 0.024051226675510406, 0.010067660361528397,
- 0.14572280645370483, 0.01391767431050539, 0.0328998938202858, 0.09739185869693756,
- -0.05723839998245239, 0.04387478902935982, 0.028600864112377167, 0.04543084651231766,
- 0.04196838662028313, -0.021950190886855125, -0.049115411937236786, 0.07947785407304764,
- 0.07311935722827911, 0.12101132422685623, 0.004850602243095636, 11.845710754394531,
- 0.04525255039334297, 0.0594119131565094, -0.06684723496437073, 0.020216677337884903,
- -0.0389767587184906, 0.04232596978545189, -0.06522785872220993, 0.07477354258298874,
- 0.10142286121845245, -0.013807222247123718, -0.009196719154715538, -0.06949938833713531,
- -0.07678776234388351, 0.014759675599634647, -0.04633282870054245, -0.022467732429504395,
- -0.06404223293066025, 0.025392744690179825, -0.0562020018696785, -0.05769258365035057,
- 0.04180518537759781, 0.052335694432258606, 0.013940885663032532, -0.0748370811343193,
- 0.07968387752771378, -0.026859218254685402, 0.03199632465839386, -0.014913266524672508,
- 0.009608653374016285, 0.0457499735057354, 0.012199042364954948, 0.0619303323328495,
- 0.04815556854009628, 0.06373079121112823, 0.013149546459317207, 0.016586415469646454,
- 0.03641264885663986, 0.036981649696826935, 0.056838929653167725, -0.0140858618542552,
- -0.022002749145030975, 0.02514791488647461, 0.0662597268819809, 0.055422887206077576,
- 0.024336272850632668, 0.024754686281085014, 0.13118787109851837, 0.0054678963497281075,
- 0.02883818745613098, 0.07409726083278656, -0.016825009137392044, 0.08472352474927902,
- 0.03645215556025505, -0.011864337138831615, 0.022880442440509796, -0.03438640013337135,
- -0.06486301124095917, 0.08828039467334747, 0.06297053396701813, -0.04992498457431793,
- 0.0870288759469986, 0.029234908521175385, 0.12455619871616364, 0.0072747692465782166,
- 0.03687718138098717, 0.05192721635103226, 0.08149738609790802, -0.12747050821781158,
- -0.03609416261315346, 0.029215537011623383, -0.08729684352874756, -0.047948166728019714,
- 0.033852048218250275, 0.05883064866065979, -0.025858495384454727, 0.04865885525941849,
- -0.011374582536518574, 0.04786388576030731, -0.03910968452692032, 0.0357830636203289,
- 0.03752537816762924, -0.053266480565071106, 0.015286413952708244, 0.0694524347782135,
- 0.014799801632761955, 0.1038602888584137, 0.09780023247003555, -0.014500895515084267,
- -0.09997043013572693, -0.031084496527910233, 0.07356802374124527, 0.012211424298584461,
- -0.06582031399011612, 0.02629951201379299, -0.0703204870223999, -0.020534589886665344,
- -0.17403271794319153, 0.08933042734861374, 0.1163613423705101, -0.07672205567359924,
- -0.027797920629382133, -0.014940883032977581, 0.13342797756195068,
- -0.0010935175232589245, -0.04047805443406105, -0.0678250640630722, 0.01725848764181137,
- 0.01695150136947632, 0.05550684034824371, -0.040895383805036545, 0.11315742135047913,
- 0.07498966157436371, -0.04995021969079971, 0.058954641222953796, 0.05005083978176117,
- -0.01899777725338936, -0.02730323188006878, 0.06558072566986084, 0.03754843771457672,
- -0.10840530693531036, -0.01980770379304886, -0.07693423330783844, -0.05252283811569214,
- -0.010263243690133095, -0.010888509452342987, -0.02114044316112995,
- 0.007499920669943094, -0.02179768495261669, -0.022011112421751022, 0.003888443112373352,
- 0.07271301746368408, 0.1294015645980835, 0.026453685015439987, 0.06782889366149902,
- -0.030187206342816353, -0.03861433267593384, 0.07856159657239914, 0.05859468877315521,
- 0.08698078989982605, -0.03374302014708519, 0.017467323690652847, -0.0068079521879553795,
- -0.06771494448184967, 0.07097527384757996, 0.06383414566516876, 0.04397856071591377,
- 0.034093670547008514, 0.007088593207299709, -0.06833532452583313, -0.026205576956272125,
- 0.1048191636800766, 0.04162595421075821, 0.011219041422009468, 0.029030021280050278,
- -0.01952648162841797, -0.013935700058937073, 0.11334164440631866, -0.04261159151792526,
- 0.00775020569562912, 0.04238220304250717, -0.09178763628005981, 0.037452828139066696,
- 0.07554690539836884, 0.0373295396566391, 0.0372963547706604, 0.0062060486525297165,
- 0.03302440419793129, -0.008500305935740471, 0.0013287169858813286, 0.007716921158134937,
- -0.048635996878147125, -0.06453106552362442, -0.0645902007818222, 0.035456202924251556,
- 0.09398321062326431, 0.07674122601747513, -0.16524839401245117, 0.015206266194581985,
- -0.011846791952848434
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 311,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 197,
- "similarity": 0.9978429079055786
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 1,
- "similarity": 0.9977229833602905
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 144,
- "similarity": 0.9976710081100464
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Kayla Kibbe"],
- "epoch_date_downloaded": 1661299200,
- "epoch_date_modified": 1661299200,
- "epoch_date_submitted": 1661299200,
- "flag": null,
- "report_number": 1962,
- "source_domain": "insidehook.com",
- "submitters": ["Khoa Lam"],
- "title": "YouTube Automatically Banned a Sex Tech Conference",
- "url": "https://www.insidehook.com/daily_brief/tech/youtube-banned-sex-tech-conference"
- },
- {
- "__typename": "Report",
- "authors": ["James Pero"],
- "epoch_date_downloaded": 1661299200,
- "epoch_date_modified": 1661299200,
- "epoch_date_submitted": 1661299200,
- "flag": null,
- "report_number": 1961,
- "source_domain": "dailymail.co.uk",
- "submitters": ["Ingrid Dickinson (CSET)"],
- "title": "YouTube says ban of women's sex tech live show was algorithm's fault",
- "url": "https://www.dailymail.co.uk/sciencetech/article-8302379/YouTube-blames-removal-live-streamed-womens-sex-tech-conference-moderation-algorithm.html"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "sanas",
- "name": "Sanas"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "sanas",
- "name": "Sanas"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "people-having-non-midwestern-american-accent",
- "name": "people having non-Midwestern-American accent"
- },
- {
- "__typename": "Entity",
- "entity_id": "call-center-agents-having-non-midwestern-american-accent",
- "name": "call center agents having non-Midwestern-American accent"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [155, 278, 285, 290, 291, 303, 26, 17],
- "editor_similar_incidents": [39],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1966, 1965, 1964, 1963],
- "vector": [
- -0.09598902612924576, 0.09239037334918976, 0.013916414231061935, -0.12370101362466812,
- 0.10039177536964417, -0.039799563586711884, 0.025230368599295616, 0.04856397956609726,
- 0.10831231623888016, -0.1676989644765854, -0.01054899487644434, 0.05572716146707535,
- 0.024413226172327995, -0.07054910808801651, 0.02212642878293991, -0.03744915500283241,
- -0.10817123204469681, -0.08131249994039536, -0.01995706558227539, -0.14728383719921112,
- -0.07061883807182312, -0.018336733803153038, -0.007186169736087322, 0.12118376046419144,
- -0.038180697709321976, 0.03702279180288315, 0.10616689920425415, 0.11935057491064072,
- -0.0692908763885498, 0.011397842317819595, -0.03537091985344887, -0.09690944105386734,
- 0.11304721981287003, -0.005861707031726837, 0.008808831684291363, 0.11177481710910797,
- 0.04385363683104515, -0.04213474318385124, 0.0012638815678656101, -0.008483638986945152,
- 0.04056505858898163, 0.25688669085502625, 0.005243668798357248, -0.03557547181844711,
- 0.09035315364599228, -0.029080571606755257, -0.0002592923119664192, 0.0602494552731514,
- -0.004037179052829742, -0.02082373946905136, 0.007201849948614836, 0.03095381334424019,
- -0.06717842072248459, 0.04297616332769394, -0.07493594288825989, 0.11091098189353943,
- 0.027763307094573975, 0.016024013981223106, 0.05927068740129471, -0.10266441106796265,
- -0.007950755767524242, -0.1438361406326294, -0.05003673583269119, -0.09933735430240631,
- 0.11477808654308319, -0.0737604945898056, -0.03677942231297493, 0.04406382143497467,
- -0.004746885038912296, 0.051040563732385635, 0.06434264034032822, -0.058174341917037964,
- -0.03757069632411003, -0.020033912733197212, -0.03888114169239998,
- -0.016337186098098755, 0.009060687385499477, 0.23641063272953033, -0.1115972101688385,
- 0.04020630940794945, 0.10670244693756104, -0.1113816648721695, 0.38217693567276,
- 0.050174862146377563, -0.007825437001883984, 0.008381091058254242, 0.09776285290718079,
- 0.03593781217932701, 0.035682473331689835, 0.016137991100549698, 0.02313673123717308,
- 0.046539057046175, -0.0647595077753067, 0.010323337279260159, 0.0908990278840065,
- -0.0027594310231506824, -0.02668817527592182, 0.0020594464149326086,
- -0.031342409551143646, -0.12245713174343109, 0.007742007728666067,
- -0.013214727863669395, 0.13485874235630035, 0.0537993498146534, -0.03820444643497467,
- 0.02517387643456459, 0.059030648320913315, -0.050023630261421204, 0.016720697283744812,
- -0.07253462821245193, 0.06315294653177261, -0.01719256117939949, 0.06555970013141632,
- -0.024875057861208916, 0.023738328367471695, -0.08517654985189438, 0.00582001730799675,
- 0.031561896204948425, 0.09470446407794952, 0.06320443004369736, 0.004986229818314314,
- 0.05022849142551422, 0.11759672313928604, -0.05640114098787308, -0.024105800315737724,
- -0.019735977053642273, -0.02015637420117855, -0.022641614079475403,
- -0.025965150445699692, 0.0018265806138515472, -0.06146116554737091,
- -0.21652361750602722, 0.033251505345106125, 0.06177240610122681, -0.023839328438043594,
- -0.026029421016573906, -0.0006296141073107719, -0.08527276664972305, 0.0122759360820055,
- -0.0031517711468040943, -0.008316826075315475, 0.06831307709217072,
- 0.0037108934484422207, 0.030577514320611954, 0.12772919237613678, 0.0367574505507946,
- -0.052127763628959656, -0.05957208573818207, -0.034620847553014755,
- -0.017717476934194565, 0.13562065362930298, -0.1517167091369629, -0.07012549042701721,
- 0.00924032460898161, -0.013864079490303993, 0.676220178604126, 0.11746972799301147,
- 0.1695137321949005, -0.005472935736179352, -0.004198639653623104, 0.1582031548023224,
- 0.004345654044300318, 0.07646523416042328, -0.054343026131391525, -0.052076928317546844,
- -0.013154580257833004, -0.056067995727062225, -0.024525107815861702,
- 0.007546204142272472, 0.012780051678419113, 0.10193093121051788, 0.0017964326543733478,
- 0.10433081537485123, -0.0034467270597815514, -0.0785708874464035, 0.004273109138011932,
- 0.02772665210068226, 0.03994501382112503, -0.1289903074502945, -0.017282826825976372,
- 0.05596855655312538, 0.05837668851017952, -0.08718927204608917, -0.01791323348879814,
- -0.026886841282248497, 0.07281104475259781, -0.046222299337387085, 0.016688112169504166,
- 0.0024570145178586245, 0.0765063539147377, 0.037650492042303085, 0.06498181074857712,
- -0.0024883958976715803, -0.10829618573188782, -0.042678046971559525,
- 0.08769064396619797, 0.00457631703466177, -0.02351442351937294, 0.04826992005109787,
- -0.0685674250125885, 0.038723427802324295, 0.0456501841545105, 0.1696189045906067,
- -0.09098810702562332, 0.04457404091954231, -0.014379915781319141, -0.005359478294849396,
- 0.04685331508517265, -0.018078401684761047, -0.03766787797212601, -0.08515653014183044,
- 0.06486217677593231, 0.031372442841529846, 0.05610569566488266, 0.03253638371825218,
- -0.025404786691069603, 0.047247715294361115, -0.0005177317652851343,
- 0.003372193081304431, -0.07565866410732269, 0.06655532121658325, 0.030270598828792572,
- -0.007891383953392506, -0.03921777382493019, 0.009522678330540657, 0.042923152446746826,
- 0.06037891283631325, 0.01112712174654007, 0.049088943749666214, 0.0034766225144267082,
- -0.05424388498067856, 0.04119822382926941, 0.03343956544995308, 0.05199437588453293,
- 0.09236671030521393, -0.06107496842741966, -0.059731725603342056, -0.03929787874221802,
- -0.017547789961099625, -0.02357596345245838, -0.03413163498044014, 0.06981591135263443,
- 0.08845104277133942, 0.06367138028144836, 0.022532857954502106, 0.04027384892106056,
- 0.07582758367061615, 0.04972216486930847, 0.005253766197711229, 0.05306374654173851,
- -0.05270873010158539, -0.030883053317666054, -0.03875594586133957,
- -0.011675314046442509, 0.07686897367238998, 0.008875043131411076, -0.06253048032522202,
- -0.03538985550403595, -0.06451822072267532, -0.035745687782764435, -0.06893400847911835,
- -0.07197310775518417, -0.019505683332681656, 0.040434081107378006, -0.07133717834949493,
- -0.0886848196387291, -0.08350389450788498, 0.025054939091205597, 0.0917946845293045,
- -0.009328512474894524, -0.027722423896193504, -0.11121222376823425, 0.0314621776342392,
- -0.017994867637753487, 0.07547802478075027, 0.005167356226593256, 0.022116761654615402,
- -0.028888216242194176, -0.08116988837718964, 0.02956582047045231, 0.03227518871426582,
- -0.01713642105460167, 0.033856622874736786, -0.05377744510769844, -0.030719496309757233,
- 0.00824650190770626, -0.011278843507170677, -0.022151045501232147, 0.039452433586120605,
- 0.0468597412109375, 0.0744650587439537, 0.014347922056913376, -0.008959511294960976,
- 0.036201734095811844, -0.02897849678993225, 0.011372135020792484, 0.06701795011758804,
- -0.027858158573508263, 0.0266965813934803, -0.04038273170590401, -0.07035408914089203,
- -0.0760578066110611, -0.02432926371693611, -0.046089448034763336, 0.049706947058439255,
- -0.0415499173104763, -0.007895535789430141, -0.06230102851986885, 0.0005882858531549573,
- 0.042540617287158966, -0.051762185990810394, -0.07166661322116852, -0.06597702205181122,
- 0.11873158067464828, -0.01241152361035347, -0.003570490051060915, 0.03347650170326233,
- -0.07327880710363388, 0.04617462307214737, -0.0060641090385615826, 0.015947960317134857,
- 0.05190417170524597, 0.06972256302833557, -0.021009614691138268, 0.07818574458360672,
- 0.07470908761024475, -0.05343363806605339, -0.004825573414564133, 0.06124701350927353,
- 0.4236922860145569, -0.19947218894958496, 0.11894330382347107, 0.11026213318109512,
- 0.046173639595508575, 0.0511305034160614, -0.025043843314051628, 0.0805118978023529,
- 0.026642609387636185, 0.11629326641559601, 0.10884630680084229, -0.03550951927900314,
- -0.009432167746126652, -0.11574357748031616, 0.10775964707136154,
- -0.0026868884451687336, 0.045984286814928055, -0.02123243734240532,
- -0.06913052499294281, 0.0063797770999372005, 0.09560524672269821, -0.06006139516830444,
- -0.010771510191261768, -0.033322229981422424, -0.09250551462173462, 0.03790092095732689,
- 0.030751638114452362, 0.0594010204076767, -0.05634422227740288, 0.054773829877376556,
- 0.01177424006164074, 0.021737590432167053, 0.014958162792026997, 0.020653439685702324,
- -0.11928180605173111, 0.04819951206445694, -0.07887227833271027, -0.12061012536287308,
- 0.05270642042160034, -0.013760169968008995, 0.07324862480163574, 0.06653642654418945,
- -0.005658400245010853, 0.03912195563316345, -0.05064709857106209, -0.06249864399433136,
- -0.012295417487621307, 0.062108781188726425, 0.04069606959819794, 0.08106114715337753,
- 0.17119303345680237, -0.04931052401661873, -0.06009942293167114, -0.07385376840829849,
- 0.0772135779261589, 0.08404392749071121, -0.007866518571972847, 0.017756422981619835,
- 0.009464130736887455, 0.026157788932323456, 0.015930483117699623, -0.03278468921780586,
- -0.0649571344256401, -0.02089860662817955, -0.06494680047035217, 0.047586921602487564,
- 0.02325485832989216, -0.042386699467897415, -0.13096219301223755, -0.026026323437690735,
- -0.052698757499456406, 0.053990934044122696, 0.13845323026180267, -0.050430066883563995,
- 0.017268668860197067, 0.0022013611160218716, 0.016710752621293068,
- -0.022694844752550125, -0.09835235029459, 0.011934131383895874, -0.036201074719429016,
- 0.03178062289953232, 0.07815190404653549, 0.053543683141469955, -0.04702130705118179,
- 0.04263535887002945, -0.10557755827903748, 0.02054652012884617, -0.009634392336010933,
- -0.037247415632009506, 0.035563766956329346, -0.032208070158958435, 0.0600256621837616,
- 0.006602241657674313, -0.07637149095535278, 0.002274642465636134, -0.04796431586146355,
- -0.03710538148880005, -0.08162302523851395, -0.06787697970867157, -0.03402683138847351,
- -0.08544699102640152, 0.044521357864141464, -0.1175331100821495, -0.021403102204203606,
- -0.04226257652044296, -0.022428834810853004, -0.015193107537925243,
- 0.030826987698674202, 0.00023197452537715435, -0.11474737524986267,
- 0.011204227805137634, -0.0430377721786499, 0.013397195376455784, -0.009357691742479801,
- -0.05501092970371246, 0.00238877534866333, 0.06496233493089676, 0.022105693817138672,
- -0.04098335653543472, 0.013838325627148151, -0.07840883731842041, 0.04672343283891678,
- -0.10834937542676926, -0.4471319317817688, 0.060411278158426285, -0.004847594071179628,
- 0.02724447101354599, 0.006519451271742582, -0.039617300033569336, 0.04690853878855705,
- 0.024010879918932915, -0.07489064335823059, 0.09053436666727066, -0.060082562267780304,
- 0.052571699023246765, -0.04369446635246277, -0.038968876004219055, -0.02446104772388935,
- -0.09719014167785645, -0.03498362377285957, 0.03163335472345352, 0.0010992084862664342,
- -0.05560985580086708, -0.10663219541311264, 0.0013453011633828282, -0.03070807456970215,
- 0.0001472202711738646, -0.0072140684351325035, -0.013502174988389015,
- -0.06876100599765778, -0.07177367061376572, 0.008482884615659714, 0.06815549731254578,
- 0.004955681040883064, -0.09081652760505676, 0.0011613324750214815, 0.013007303699851036,
- -0.014185789972543716, 0.13456298410892487, 0.010662094689905643, 0.011610487475991249,
- -0.09182385355234146, 0.05471251532435417, 0.08588037639856339, 0.18363095819950104,
- -0.05720042064785957, 0.05405325070023537, 0.0026585054583847523, 0.15538164973258972,
- 0.04402974247932434, 0.05780166760087013, -0.0446540005505085, -0.016935136169195175,
- 0.019597474485635757, -0.04540034383535385, 0.06993547081947327, -0.0989522635936737,
- -0.0005734603619202971, -0.006343409419059753, -0.06360268592834473,
- -0.0332283191382885, -0.029745478183031082, 0.14926153421401978, 0.027671311050653458,
- 0.04083776846528053, 0.0076794917695224285, -0.043366480618715286, 0.02087213099002838,
- -0.04281162470579147, -0.05877566337585449, -0.026854295283555984, -0.0440978929400444,
- 0.008150615729391575, -0.01714291423559189, -0.07432269304990768, 0.0033618740271776915,
- 0.014017350971698761, -0.030669771134853363, 0.12991516292095184, -0.07327690720558167,
- 0.02520570531487465, -0.0317777544260025, 0.13117973506450653, 0.03012736514210701,
- 0.03486788645386696, 0.04333953186869621, 0.10063739120960236, 0.028834233060479164,
- 0.0480477474629879, -0.03218114748597145, -0.06280374526977539, -0.027512243017554283,
- 0.1344163417816162, -0.045788027346134186, 0.13338226079940796, 0.05026060342788696,
- 0.004334433935582638, -0.04863002523779869, 0.007730603218078613, 0.007588782347738743,
- 0.04647239297628403, -0.47569704055786133, -0.042958419770002365, 0.11053376644849777,
- -0.04388862103223801, 0.023458892479538918, 0.07696716487407684, 0.05626235902309418,
- -0.023108715191483498, -0.013432315550744534, -0.09863360226154327, 0.1111578494310379,
- 0.049740761518478394, 0.08567391335964203, -0.08701524138450623, 0.0007552152965217829,
- 0.07975229620933533, 0.025247184559702873, -0.0053486209362745285, 0.06204961985349655,
- -0.2897006869316101, -0.007454484235495329, -0.019720911979675293, 0.1455969214439392,
- -0.00522921746596694, 0.024975484237074852, 0.09956035763025284, -0.0676112025976181,
- 0.010591004975140095, 0.06254852563142776, 0.033800408244132996, 0.05237695202231407,
- -0.010480436496436596, 0.0073708402924239635, 0.0924549475312233, 0.10355152189731598,
- 0.04571208730340004, 0.011554748751223087, 12.118734359741211, 0.05943160504102707,
- 0.08242365717887878, -0.10845388472080231, 0.008301042951643467, -0.03343859314918518,
- 0.028039582073688507, -0.06614577025175095, 0.08650228381156921, 0.14030452072620392,
- -0.03173181042075157, -0.04958825185894966, -0.054537609219551086, -0.08851843327283859,
- 0.027238670736551285, -0.06472121179103851, -0.033680595457553864, -0.03390183672308922,
- 0.07208563387393951, -0.049036405980587006, -0.08434004336595535, 0.08747861534357071,
- 0.06722307205200195, 0.007479730062186718, -0.13450489938259125, 0.038421839475631714,
- -0.00268783001229167, -0.009925832971930504, -0.010201399214565754, 0.054157804697752,
- 0.008573593571782112, 0.006181614473462105, 0.06653043627738953, -0.003098526503890753,
- 0.06731045991182327, 0.04461775720119476, 0.06884461641311646, 0.06820782274007797,
- 0.043071914464235306, 0.05611978843808174, -0.014693348668515682, 0.017956417053937912,
- 0.015779251232743263, 0.06645756959915161, 0.05336623266339302, 0.008644997142255306,
- 0.03795146197080612, 0.15918004512786865, -0.022442946210503578, 0.06436094641685486,
- 0.1008107140660286, 0.0008703948697075248, 0.10117942094802856, 0.03621651977300644,
- -0.015003335662186146, 0.036057837307453156, 0.004102708771824837, -0.05211930721998215,
- 0.07669369131326675, 0.013365981169044971, -0.045382026582956314, 0.12998537719249725,
- 0.0342884361743927, 0.11152219772338867, 0.039520151913166046, 0.06917794793844223,
- 0.03678916394710541, 0.1127941831946373, -0.10598111152648926, -0.0926084816455841,
- 0.0008891761535778642, -0.11161966621875763, -0.10697837918996811, 0.08490625023841858,
- 0.10268227010965347, -0.03470176085829735, 0.023751093074679375, -0.02114991284906864,
- 0.031940050423145294, -0.017357880249619484, 0.012896637432277203, 0.07089877128601074,
- -0.019494129344820976, 0.035554297268390656, 0.04909415543079376, 0.03793748840689659,
- 0.07770310342311859, 0.1511794626712799, -0.018123449757695198, -0.09135519713163376,
- -0.05269321799278259, 0.05697541683912277, -0.018730919808149338, -0.08038675785064697,
- 0.020230816677212715, -0.0724170133471489, 0.035385988652706146, -0.17707118391990662,
- 0.11874975264072418, 0.12005174160003662, -0.062277521938085556, -0.002149293664842844,
- -0.01807740144431591, 0.11632424592971802, 0.009039831347763538, 0.004273539874702692,
- -0.062448568642139435, -0.034315574914216995, 0.027521900832653046, 0.03972432762384415,
- -0.06169973686337471, 0.07284467667341232, 0.05571785196661949, -0.07745073735713959,
- 0.04923298954963684, 0.04516409710049629, -0.03728243708610535, 0.009536136873066425,
- 0.03881589323282242, 0.0550265908241272, -0.07555806636810303, -0.03926960378885269,
- -0.07539644092321396, -0.0561881922185421, -0.01820940151810646, -0.0540756955742836,
- 0.02128409408032894, 0.025955071672797203, -0.0489875003695488, -0.018029464408755302,
- 0.05923641845583916, 0.06058187410235405, 0.12325791269540787, -0.034365732222795486,
- 0.10133187472820282, -0.049032311886548996, -0.033702731132507324, 0.05386927351355553,
- 0.05150891840457916, 0.08720283210277557, -0.013749870471656322, -0.040206097066402435,
- -0.024990923702716827, -0.11964669078588486, 0.05396156385540962, 0.08914680033922195,
- 0.028544563800096512, 0.004911178722977638, 0.028266657143831253, -0.07056643068790436,
- -0.04502825811505318, 0.11369077861309052, 0.042855627834796906, 0.02473892830312252,
- 0.05608037859201431, -0.07209934294223785, -0.015835806727409363, 0.08065930753946304,
- -0.022781938314437866, 0.02308184653520584, 0.00202167802490294, -0.10273335129022598,
- 0.09274518489837646, 0.12166832387447357, 0.025174535810947418, 0.047968652099370956,
- 0.010816100053489208, -0.0010805805213749409, 0.07966239750385284,
- 0.000024588487576693296, 0.04853761941194534, -0.04193541780114174,
- -0.059963393956422806, -0.06850770860910416, 0.016031982377171516, 0.0712117850780487,
- 0.06546316295862198, -0.14556369185447693, -0.01091794017702341, -0.04087290167808533
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 312,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 39,
- "similarity": 0.9973636865615845
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 26,
- "similarity": 0.9973039031028748
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 17,
- "similarity": 0.997290849685669
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Mark Frauenfelder"],
- "epoch_date_downloaded": 1661731200,
- "epoch_date_modified": 1661731200,
- "epoch_date_submitted": 1661385600,
- "flag": null,
- "report_number": 1966,
- "source_domain": "boingboing.net",
- "submitters": ["Daniel Atherton (BNH.ai)"],
- "title": "Startup uses AI to transform call center workers' accents into \"white voice\"",
- "url": "https://boingboing.net/2022/08/23/startup-uses-ai-to-transform-call-center-workers-accents-into-white-voice.html"
- },
- {
- "__typename": "Report",
- "authors": ["Matt Wille"],
- "epoch_date_downloaded": 1661299200,
- "epoch_date_modified": 1661731200,
- "epoch_date_submitted": 1661385600,
- "flag": null,
- "report_number": 1965,
- "source_domain": "inputmag.com",
- "submitters": ["Catharina Doria"],
- "title": "This startup will make you sound whiter and it sees nothing wrong with that",
- "url": "https://www.inputmag.com/tech/sanas-accent-software-voice-deepfake-venture-capital"
- },
- {
- "__typename": "Report",
- "authors": ["Scott Budman"],
- "epoch_date_downloaded": 1661299200,
- "epoch_date_modified": 1661731200,
- "epoch_date_submitted": 1661385600,
- "flag": null,
- "report_number": 1964,
- "source_domain": "nbcbayarea.com",
- "submitters": ["Catharina Doria"],
- "title": "Silicon Valley Startup Sparks Controversy Over What Critics Call ‘Racist Software'",
- "url": "https://www.nbcbayarea.com/news/tech/silicon-valley-controversy-sanas/2984603/"
- },
- {
- "__typename": "Report",
- "authors": ["Joshua Bote"],
- "epoch_date_downloaded": 1661299200,
- "epoch_date_modified": 1661731200,
- "epoch_date_submitted": 1661385600,
- "flag": null,
- "report_number": 1963,
- "source_domain": "sfgate.com",
- "submitters": ["Catharina Doria"],
- "title": "Buzzy Silicon Valley startup wants to make the world sound whiter",
- "url": "https://www.sfgate.com/news/article/sanas-startup-creates-american-voice-17382771.php"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "meta",
- "name": "Meta"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "meta",
- "name": "Meta"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "marietje-schaake",
- "name": "Marietje Schaake"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1967],
- "vector": [
- -0.0873267725110054, 0.01616215892136097, -0.03791230544447899, -0.12242147326469421,
- 0.06906449794769287, -0.08504284173250198, -0.004089993424713612, 0.06391356140375137,
- 0.1016385406255722, -0.11744780838489532, -0.009985152631998062, 0.08979890495538712,
- -0.03861632198095322, -0.06356116384267807, 0.0027783995028585196,
- -0.004459304269403219, -0.12436558306217194, 0.027069702744483948,
- -0.011794612742960453, -0.06675302982330322, -0.0978238582611084, 0.08102153241634369,
- -0.01940160058438778, 0.14601202309131622, -0.04305066913366318, 0.018194524571299553,
- 0.08809302002191544, 0.09530729055404663, -0.09044449776411057, 0.014137458056211472,
- -0.048281170427799225, -0.019391395151615143, 0.0769633799791336, -0.013338053598999977,
- 0.055964723229408264, 0.05616119131445885, -0.011932779103517532, -0.07548721134662628,
- -0.11198142170906067, 0.021975068375468254, 0.017001420259475708, 0.08097118884325027,
- 0.028295136988162994, 0.004367252346128225, 0.09736743569374084, -0.0478832870721817,
- 0.027894729748368263, 0.05409879609942436, 0.0008430996094830334, 0.01855374686419964,
- -0.013775731436908245, -0.013759584166109562, -0.09170181304216385,
- 0.024060828611254692, -0.029238896444439888, 0.05037808418273926, 0.02595723420381546,
- 0.022097470238804817, 0.03100701794028282, -0.0160380732268095, -0.019131401553750038,
- -0.08812226355075836, -0.12179490178823471, 0.03692083805799484, 0.016947638243436813,
- 0.0018034217646345496, -0.07307659089565277, -0.024989832192659378,
- -0.00006948180816834792, 0.007289205677807331, 0.031894538551568985,
- -0.03405513986945152, 0.03301667422056198, -0.07782702147960663, -0.052008748054504395,
- -0.009108617901802063, 0.01916213519871235, 0.4224146902561188, -0.07378166913986206,
- 0.03074178844690323, 0.06394805014133453, -0.10501618683338165, 0.30825868248939514,
- -0.024380844086408615, -0.00011237786384299397, 0.03949609771370888,
- 0.09877550601959229, 0.011148259975016117, 0.06151880696415901, 0.02409329265356064,
- 0.052880480885505676, 0.07646273076534271, -0.08012979477643967, -0.009654073044657707,
- 0.026287727057933807, 0.011128551326692104, 0.04498204216361046, -0.11055542528629303,
- -0.026442140340805054, -0.023362720385193825, 0.01642659492790699, -0.05813073366880417,
- 0.06242658942937851, 0.07153835147619247, 0.02514243870973587, -0.007571512833237648,
- 0.0372529961168766, -0.05010718107223511, 0.06142439320683479, -0.04820699244737625,
- 0.03017493709921837, 0.017624635249376297, 0.08498172461986542, 0.03067704290151596,
- -0.021354632452130318, -0.016519414260983467, -0.0016786425840109587,
- 0.01697421818971634, 0.041756127029657364, 0.13466490805149078, -0.05088948458433151,
- 0.07572802901268005, 0.08256039023399353, -0.0654984787106514, -0.033781830221414566,
- -0.0032072917092591524, 0.012909441255033016, 0.03768707439303398,
- -0.025217635557055473, 0.045955732464790344, -0.04486517235636711, -0.24636000394821167,
- 0.04435005038976669, 0.027627578005194664, 0.046630118042230606, -0.0034719607792794704,
- 0.10065189749002457, -0.07100081443786621, 0.05613711103796959, -0.03699604049324989,
- -0.04375240206718445, 0.0978337749838829, 0.06489162147045135, 0.01994914561510086,
- 0.09875883162021637, 0.023725636303424835, -0.026665525510907173, 0.0050769345834851265,
- -0.04324306920170784, -0.05832766741514206, 0.09292173385620117, -0.11015313118696213,
- -0.016132768243551254, 0.04374876245856285, 0.02073480375111103, 0.47191932797431946,
- 0.07507764548063278, 0.0757439136505127, -0.038542941212654114, -0.00041872914880514145,
- 0.10288243740797043, -0.04779988154768944, 0.05191179737448692, -0.001551979803480208,
- -0.013479217886924744, 0.015720292925834656, -0.0947069525718689, 0.04626444727182388,
- 0.07178550213575363, 0.029568245634436607, 0.06640367954969406, 0.032366398721933365,
- 0.0650402158498764, -0.029377877712249756, -0.051334161311388016, -0.02585422806441784,
- -0.058622654527425766, 0.030704135075211525, -0.13191093504428864, -0.04661018028855324,
- 0.04548104479908943, 0.09180564433336258, -0.07397594302892685, -0.022530067712068558,
- -0.0574551485478878, 0.009015589021146297, -0.019879568368196487, 0.008567331358790398,
- 0.03034231625497341, -0.018576648086309433, 0.09636309742927551, -0.027860106900334358,
- -0.014029409736394882, -0.05175859108567238, -0.004921688232570887, 0.0915505662560463,
- -0.043845389038324356, -0.03669843450188637, 0.10013345628976822, -0.06472500413656235,
- 0.051785051822662354, -0.1453230232000351, 0.13859254121780396, -0.1459430754184723,
- 0.023659957572817802, 0.00111831771209836, -0.05790867283940315, 0.027492927387356758,
- -0.034881457686424255, -0.07414515316486359, -0.06253264099359512, 0.04988452419638634,
- 0.012156359851360321, 0.015545044094324112, 0.07440707087516785, -0.08669784665107727,
- 0.014604070223867893, 0.01439438946545124, -0.004944816697388887, -0.05812579393386841,
- 0.023707455024123192, 0.0625213161110878, -0.04168342053890228, -0.028876537457108498,
- 0.07218655943870544, 0.056782182306051254, 0.003381720744073391, 0.002824620343744755,
- 0.03986245021224022, 0.005049149971455336, -0.027410700917243958, -0.0102545116096735,
- 0.033392082899808884, -0.002878987230360508, 0.0417850986123085, -0.17150910198688507,
- 0.009894195012748241, -0.06498811393976212, 0.013353514485061169, 0.03001510351896286,
- -0.03752165287733078, 0.025883615016937256, 0.08008776605129242, 0.022075282409787178,
- 0.03084026649594307, -0.009209240786731243, 0.02435138449072838, 0.1274568736553192,
- -0.0181221142411232, 0.1248212531208992, 0.0005184027832001448, 0.031149255111813545,
- -0.042313721030950546, -0.02100079320371151, 0.05571413040161133, 0.055755287408828735,
- -0.11992058157920837, -0.06889671087265015, 0.02689138613641262, 0.01761065609753132,
- -0.03986743465065956, -0.041506893932819366, -0.003488263813778758,
- -0.02292744815349579, -0.1179991066455841, -0.05616162344813347, 0.016853658482432365,
- -0.0002495910448487848, 0.06384376436471939, -0.05413771793246269, 0.021580681204795837,
- -0.08219560980796814, 0.05274820700287819, -0.008382636122405529, 0.014938434585928917,
- 0.016638461500406265, -0.0868389904499054, -0.03611518442630768, 0.013305854052305222,
- -0.00933150015771389, 0.04097948223352432, 0.040372807532548904, -0.054955821484327316,
- -0.004937084391713142, -0.09089479595422745, 0.0030127898789942265, -0.0993862971663475,
- -0.017973972484469414, -0.032673221081495285, 0.025341620668768883,
- 0.033302225172519684, 0.020480742678046227, 0.000919562007766217, 0.04616339132189751,
- -0.07309971004724503, 0.03848238289356232, 0.1162869781255722, -0.019441314041614532,
- -0.0023592431098222733, 0.02278546430170536, -0.08901224285364151, -0.0518411360681057,
- -0.07814405113458633, -0.015518268570303917, 0.05803844705224037, -0.07204613834619522,
- -0.021117407828569412, 0.020335011184215546, 0.0435674712061882, 0.05859695374965668,
- -0.0018574065761640668, -0.011013193055987358, -0.03328381106257439,
- 0.12232519686222076, -0.015636727213859558, 0.051737163215875626, -0.025241537019610405,
- -0.034126460552215576, 0.08967700600624084, 0.055172789841890335,
- -0.0029247382190078497, -0.00884581170976162, 0.1285352110862732, -0.04853033274412155,
- 0.02178318053483963, 0.08431772142648697, 0.004587499424815178, -0.009653938002884388,
- 0.06403263658285141, 0.4441196024417877, -0.3567371964454651, 0.08114209026098251,
- 0.06063777580857277, -0.006085101515054703, 0.07408218830823898, -0.03391363099217415,
- 0.08751028776168823, 0.012584277428686619, 0.08547742664813995, 0.07536356151103973,
- -0.06679753214120865, 0.035308972001075745, -0.02687838114798069, 0.07470542937517166,
- 0.006149832624942064, 0.0723111554980278, -0.05921100825071335, -0.0409155935049057,
- -0.03486718609929085, 0.00009777016384759918, -0.03255822882056236,
- 0.026332251727581024, 0.03243676945567131, -0.07204069942235947, 0.024354496970772743,
- 0.11804014444351196, 0.0854993537068367, -0.05169936642050743, -0.023620299994945526,
- -0.03200087323784828, -0.014817324467003345, 0.0968441292643547, 0.04113340377807617,
- -0.06959573924541473, 0.08813231438398361, -0.09073693305253983, -0.08061066269874573,
- 0.01777045428752899, 0.033007893711328506, 0.049561064690351486, 0.0676717609167099,
- -0.04557570815086365, 0.013250297866761684, -0.03112313337624073, -0.030274346470832825,
- 0.04959704726934433, 0.013308439403772354, 0.021625693887472153, 0.021123219281435013,
- 0.15071320533752441, 0.025197386741638184, -0.01888403110206127, 0.0012616118183359504,
- 0.03302691504359245, 0.19502831995487213, -0.06740396469831467, 0.023570049554109573,
- 0.0021593733690679073, 0.046298444271087646, -0.013569578528404236,
- -0.03910381346940994, -0.08525781333446503, -0.018579376861453056, -0.06515873968601227,
- 0.12203776091337204, 0.02073844149708748, -0.04433005303144455, -0.15173745155334473,
- -0.03569731488823891, -0.061547115445137024, -0.004388463217765093, 0.22497832775115967,
- -0.09573659300804138, -0.044150013476610184, -0.04336245357990265, 0.03580620884895325,
- -0.023020638152956963, -0.07217558473348618, -0.061231840401887894,
- -0.14143487811088562, -0.019750386476516724, 0.08249563723802567, 0.047571588307619095,
- -0.09653717279434204, -0.023168886080384254, -0.06379906833171844, 0.04861431568861008,
- -0.0029752219561487436, -0.11228763312101364, 0.03174068406224251, 0.0416981466114521,
- 0.04229895770549774, 0.052389487624168396, -0.04074593260884285, -0.005650458857417107,
- -0.062136441469192505, 0.07481393963098526, -0.03996819630265236, -0.05592888593673706,
- -0.05977381020784378, -0.027016665786504745, 0.021106887608766556, -0.09101608395576477,
- 0.019666383042931557, 0.030283883213996887, 0.004334363155066967, 0.00679990416392684,
- 0.0622093491256237, -0.008504848927259445, -0.02139231190085411, 0.06120562553405762,
- -0.023355551064014435, -0.0006463173776865005, 0.0012711499584838748,
- -0.06967490166425705, 0.016709521412849426, 0.06175012141466141, 0.022280361503362656,
- -0.1029515191912651, -0.0026570255868136883, -0.058842532336711884, 0.17392005026340485,
- -0.08871541172266006, -0.5577560067176819, 0.0372496172785759, 0.03432198986411095,
- 0.0077053396962583065, 0.02849072776734829, -0.07408177107572556, 0.05814966931939125,
- 0.043378427624702454, -0.02637156844139099, 0.12868361175060272, -0.059373028576374054,
- -0.009337244555354118, -0.02807742729783058, -0.017989881336688995,
- 0.051728103309869766, -0.09223852306604385, -0.04461659491062164, 0.09869943559169769,
- 0.015454685315489769, -0.022710159420967102, -0.06380786001682281,
- -0.028049003332853317, -0.01832469180226326, 0.0466763898730278, -0.009401786141097546,
- -0.011209470219910145, -0.032556887716054916, 0.016638822853565216, 0.10953283309936523,
- 0.02679116278886795, -0.02316412515938282, -0.04813581332564354, -0.011306505650281906,
- -0.00045326774124987423, 0.04353407770395279, 0.09544984251260757, -0.01778986118733883,
- -0.02765931747853756, -0.12563449144363403, 0.03362923115491867, 0.043431416153907776,
- 0.1862507164478302, 0.04084377363324165, 0.12400694936513901, -0.019677147269248962,
- 0.10649874806404114, 0.03150967136025429, 0.03849510848522186, -0.04624734818935394,
- 0.02217913419008255, 0.0026836416218429804, -0.0034431510139256716, 0.05023420602083206,
- -0.131109818816185, -0.022618504241108894, -0.10719028860330582, -0.009156354703009129,
- -0.04274897649884224, -0.007611737120896578, 0.16961580514907837, 0.019878234714269638,
- -0.0006353224744088948, 0.033300481736660004, -0.006401053164154291,
- -0.014154707081615925, -0.05641094595193863, -0.03360003978013992,
- -0.017849184572696686, -0.015177622437477112, -0.008979322388768196,
- -0.08931712061166763, -0.09322832524776459, -0.016474183648824692, 0.06814207881689072,
- -0.02744162827730179, 0.048390284180641174, -0.010407302528619766, 0.06113617122173309,
- -0.06925823539495468, 0.11596226692199707, -0.005074216052889824, 0.06107814982533455,
- 0.054874446243047714, 0.049562886357307434, 0.051585279405117035, -0.04440798982977867,
- 0.0031546514946967363, -0.0663255974650383, -0.02223852649331093, 0.1623176485300064,
- 0.05566513538360596, 0.14094743132591248, 0.07588864117860794, 0.023268813267350197,
- -0.06148761138319969, 0.0390736423432827, 0.0008088165195658803, -0.07137534022331238,
- -0.611737072467804, 0.011008059605956078, 0.06285085529088974, -0.001104300725273788,
- 0.02329029142856598, 0.08148252964019775, 0.04882713407278061, -0.052408792078495026,
- -0.0022111330181360245, -0.027475224807858467, 0.06080035865306854, 0.0078528868034482,
- 0.0827561616897583, -0.14142140746116638, 0.059378281235694885, 0.07659812271595001,
- -0.014965641312301159, -0.009855901822447777, 0.019384723156690598, -0.2791859805583954,
- -0.02007233537733555, -0.026802774518728256, 0.2662397623062134, 0.02359650284051895,
- 0.03638902306556702, 0.09337174892425537, 0.047976620495319366, -0.007472525350749493,
- 0.09108414500951767, 0.09767937660217285, 0.07125084102153778, 0.0012150758411735296,
- 0.009096543304622173, 0.03829456493258476, 0.12884335219860077, 0.07084787636995316,
- -0.05130411311984062, 12.012413024902344, -0.015402556397020817, 0.0977083072066307,
- -0.0641721561551094, -0.01824931614100933, -0.042518261820077896, 0.0579855740070343,
- -0.046477124094963074, 0.03476320207118988, 0.04171301797032356, 0.013006373308598995,
- -0.026369448751211166, -0.06105569005012512, -0.020228557288646698,
- -0.00020416261395439506, 0.003293316811323166, -0.004285822156816721,
- -0.055845532566308975, 0.10290751606225967, -0.06754329800605774, -0.03652573004364967,
- 0.06424931436777115, 0.01532495953142643, -0.015160299837589264, -0.05188296362757683,
- -0.0087569709867239, 0.041923195123672485, 0.05025283992290497, -0.009207547642290592,
- 0.07190043479204178, 0.016304772347211838, 0.044373635202646255, 0.11542249470949173,
- 0.06799550354480743, 0.0741410106420517, 0.03795846179127693, 0.012275989167392254,
- 0.04389909654855728, 0.022327004000544548, 0.05365431308746338, 0.035301581025123596,
- 0.0644015371799469, 0.06893175840377808, -0.02484617941081524, 0.043633922934532166,
- 0.08781208842992783, 0.005951207131147385, 0.11142637580633163, -0.038093823939561844,
- 0.00708914315328002, 0.09550992399454117, -0.06158439442515373, 0.058965034782886505,
- -0.04467100650072098, 0.00045745205716229975, 0.026917260140180588,
- -0.04907682538032532, -0.0411958321928978, 0.041074324399232864, -0.001088128425180912,
- -0.008430150337517262, 0.1201104149222374, 0.029948050156235695, 0.06853301078081131,
- -0.03284318000078201, 0.07903488725423813, 0.1061871349811554, 0.14148709177970886,
- -0.05359227955341339, -0.06294185668230057, 0.044929590076208115, -0.026928847655653954,
- 0.011091189458966255, -0.025526484474539757, 0.04093843698501587, -0.050352487713098526,
- 0.15964779257774353, -0.07904104888439178, 0.09500836580991745, -0.11537668108940125,
- -0.018103325739502907, 0.022645173594355583, -0.03724551945924759, 0.009885631501674652,
- -0.030971217900514603, -0.0012112498516216874, 0.03480127453804016, 0.08476310223340988,
- 0.0453115850687027, -0.02054704539477825, -0.1359940767288208, 0.05560276284813881,
- -0.03025059588253498, -0.03756032884120941, 0.05538355931639671, -0.06753577291965485,
- 0.04879355430603027, -0.09987058490514755, 0.08738691359758377, 0.07631915807723999,
- -0.07193530350923538, 0.024779899045825005, -0.02298884466290474, 0.09836849570274353,
- 0.03464409336447716, 0.05108403414487839, -0.08620960265398026, 0.011410822160542011,
- 0.035740405321121216, 0.037955392152071, -0.0627853199839592, 0.045429084450006485,
- -0.02622978575527668, -0.02842020057141781, 0.031775765120983124, 0.04028252512216568,
- -0.02262132242321968, 0.04152049124240875, 0.035918254405260086, 0.031427957117557526,
- -0.09615468233823776, -0.0292664747685194, -0.07052380591630936, -0.06130171939730644,
- 0.0007154911290854216, -0.01585306040942669, -0.03320273011922836, -0.0433792807161808,
- -0.005083480384200811, -0.0720425397157669, 0.0287633016705513, 0.04216495156288147,
- 0.0661698579788208, -0.008535685017704964, 0.02122737467288971, -0.05248640477657318,
- -0.10042789578437805, 0.07207579910755157, 0.12530633807182312, 0.10084864497184753,
- -0.12695778906345367, -0.0214302409440279, 0.00041157036321237683, -0.13966621458530426,
- -0.007586606312543154, 0.057263053953647614, 0.054521236568689346, 0.0903678610920906,
- 0.07494691014289856, -0.06172182783484459, 0.04697362706065178, 0.05977165699005127,
- 0.08654344826936722, -0.041015177965164185, -0.015555065125226974,
- -0.00005899502139072865, -0.01550599280744791, 0.11859305948019028, 0.05377272889018059,
- 0.01884731650352478, 0.0010964716784656048, -0.11034661531448364, 0.003190884366631508,
- 0.04340524598956108, -0.00918715912848711, -0.015763605013489723, 0.04805154725909233,
- 0.06598716229200363, 0.021199267357587814, 0.0596628300845623, -0.03959750011563301,
- -0.002512917621061206, -0.08960295468568802, -0.10586966574192047, 0.023630090057849884,
- 0.06822220236063004, 0.07677262276411057, -0.16429539024829865, -0.008854624815285206,
- -0.044905271381139755
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 313,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Marietje Schaake"],
- "epoch_date_downloaded": 1661472000,
- "epoch_date_modified": 1661731200,
- "epoch_date_submitted": 1661472000,
- "flag": null,
- "report_number": 1967,
- "source_domain": "twitter.com",
- "submitters": ["Cesar Varela"],
- "title": "Tweet: @MarietjeSchaake",
- "url": "https://twitter.com/MarietjeSchaake/status/1562515297688399873"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "stability-ai",
- "name": "Stability AI"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "stability-ai",
- "name": "Stability AI"
- },
- {
- "__typename": "Entity",
- "entity_id": "runway",
- "name": "Runway"
- },
- {
- "__typename": "Entity",
- "entity_id": "laion",
- "name": "LAION"
- },
- {
- "__typename": "Entity",
- "entity_id": "eleutherai",
- "name": "EleutherAI"
- },
- {
- "__typename": "Entity",
- "entity_id": "compvis-lmu",
- "name": "CompVis LMU"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "stability-ai",
- "name": "Stability AI"
- },
- {
- "__typename": "Entity",
- "entity_id": "deepfaked-celebrities",
- "name": "deepfaked celebrities"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [13, 59, 81, 285, 290, 303, 6, 14, 60],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1968],
- "vector": [
- -0.0692659243941307, 0.05282619222998619, -0.0052359504625201225, -0.09894055873155594,
- 0.09049582481384277, -0.050260499119758606, 0.005945576820522547, 0.019137462601065636,
- 0.056386400014162064, -0.14525465667247772, 0.021995341405272484, 0.0450393408536911,
- 0.017550263553857803, -0.07331616431474686, 0.035168904811143875, -0.05278794839978218,
- -0.10381399840116501, -0.01167510636150837, 0.01278042234480381, -0.12735673785209656,
- -0.08395698666572571, -0.031003989279270172, 0.022101137787103653, 0.09425699710845947,
- -0.02356041595339775, 0.04204881936311722, 0.1199234202504158, 0.12536828219890594,
- -0.06593461334705353, 0.02685909904539585, -0.017789961770176888, -0.06510845571756363,
- 0.13439641892910004, -0.023878803476691246, -0.002707855077460408, 0.07493571192026138,
- 0.028643805533647537, -0.0397847481071949, -0.06433910131454468, -0.0250739436596632,
- 0.03218446671962738, 0.152472123503685, -0.006393299903720617, -0.02220223657786846,
- 0.08046291768550873, 0.0022788383066654205, 0.0264070276170969, 0.027470527216792107,
- -0.024524463340640068, -0.011619696393609047, -0.008819942362606525,
- -0.04144030064344406, -0.0742175430059433, 0.02509261481463909, -0.09590622037649155,
- 0.042636938393116, 0.027796108275651932, 0.0440676249563694, 0.02165878564119339,
- -0.02578515186905861, -0.023607823997735977, -0.1375410407781601, -0.05064266175031662,
- -0.027306484058499336, 0.07168768346309662, -0.07701241970062256, -0.014011487364768982,
- 0.04986046254634857, 0.003806913271546364, 0.054158251732587814, 0.04332403466105461,
- -0.055007293820381165, -0.0456589050590992, -0.050128333270549774, -0.02869698591530323,
- -0.033318892121315, 0.03701413422822952, 0.18933919072151184, -0.07639212161302567,
- 0.02505592815577984, 0.10505130887031555, -0.0923137441277504, 0.26346123218536377,
- 0.011025083251297474, -0.030973372980952263, 0.03448079153895378, 0.08737017214298248,
- 0.06001812964677811, 0.020685406401753426, 0.03441779688000679, 0.025156717747449875,
- 0.03301805630326271, -0.0465972013771534, -0.028121991083025932, 0.06400998681783676,
- 0.014131455682218075, -0.011297561228275299, -0.1142076849937439, -0.001451360760256648,
- -0.03287328779697418, 0.036373432725667953, -0.04966278374195099, 0.116789311170578,
- 0.12032545357942581, -0.04088064283132553, 0.02976403571665287, 0.11376423388719559,
- -0.0623992420732975, 0.031824253499507904, -0.06483560800552368, 0.044729676097631454,
- 0.03349932283163071, 0.05050758644938469, 0.014369960874319077, 0.008716368116438389,
- -0.056464023888111115, 0.0051300544291734695, 0.025897420942783356, 0.06947550177574158,
- 0.05252472683787346, 0.02702171914279461, 0.06554314494132996, 0.05358544737100601,
- -0.07344100624322891, 0.01656578853726387, -0.017895327880978584, -0.024519668892025948,
- 0.025394132360816002, -0.02611815370619297, 0.05237223207950592, -0.03462757542729378,
- -0.18238948285579681, 0.005618450231850147, 0.0539846196770668, 0.0025509041734039783,
- -0.011194595135748386, 0.01964961364865303, -0.05818326398730278, -0.017014293000102043,
- 0.018996139988303185, -0.027636507526040077, 0.035063281655311584, 0.05919882655143738,
- 0.055838294327259064, 0.0915449932217598, 0.004522124771028757, -0.04459768533706665,
- -0.05541074275970459, -0.03127491474151611, -0.07479527592658997, 0.09618769586086273,
- -0.12843449413776398, -0.011938204057514668, -0.0048638638108968735,
- -0.00941828265786171, 0.5864319205284119, 0.06910905241966248, 0.12791085243225098,
- 0.012415132485330105, -0.00007737921259831637, 0.1461857110261917,
- -0.021620573475956917, 0.04746953770518303, -0.05456233769655228, -0.051130637526512146,
- -0.03371838107705116, -0.051970839500427246, -0.025675438344478607, 0.00952464621514082,
- 0.02728934958577156, 0.08447792381048203, 0.01816912181675434, 0.10826791077852249,
- -0.015598790720105171, -0.06298764795064926, -0.015123809687793255,
- 0.015476742759346962, 0.024772662669420242, -0.1171703040599823, -0.027640385553240776,
- 0.061157651245594025, 0.09489267319440842, -0.042975135147571564, -0.015184544026851654,
- -0.069015271961689, 0.0410003699362278, -0.014432241208851337, 0.06357865035533905,
- 0.016871290281414986, 0.01816488616168499, 0.04867766052484512, 0.06267103552818298,
- -0.03908461332321167, -0.05377295985817909, -0.01447291113436222, 0.10564588755369186,
- -0.022177789360284805, -0.030864892527461052, 0.08879655599594116,
- -0.056079261004924774, 0.008373592980206013, -0.038207124918699265, 0.11173780262470245,
- -0.09256209433078766, 0.04461805894970894, -0.01711673103272915, 0.01747049205005169,
- 0.04151630029082298, -0.0110421571880579, -0.07552564144134521, -0.07408902049064636,
- 0.1025325283408165, 0.025999825447797775, 0.07199929654598236, 0.027041492983698845,
- -0.023651598021388054, 0.0425480380654335, -0.007279102690517902, 0.016514068469405174,
- -0.09024524688720703, 0.0697331503033638, 0.015499556437134743, -0.06047142297029495,
- -0.04377400502562523, 0.04460893198847771, 0.030785802751779556, 0.04447140544652939,
- 0.005266763735562563, 0.066031314432621, -0.03185122460126877, -0.01573985442519188,
- 0.011930585838854313, 0.04369032382965088, 0.04985620081424713, 0.06254526972770691,
- -0.07728075236082077, -0.021619388833642006, -0.032462358474731445,
- -0.0013941922225058079, 0.022312989458441734, -0.07279159873723984, 0.06870477646589279,
- 0.09008732438087463, 0.05802123621106148, 0.0024388963356614113, 0.029185328632593155,
- 0.07396507263183594, 0.05729365348815918, -0.020483605563640594, 0.07086475938558578,
- -0.03198781609535217, -0.0413525216281414, -0.011366715654730797, 0.02925143390893936,
- 0.03160945326089859, -0.011364562436938286, -0.0512920618057251, -0.03658663108944893,
- -0.03935936465859413, -0.04491979256272316, -0.08687274158000946, -0.02154041826725006,
- 0.01035973709076643, 0.034620676189661026, -0.07403062283992767, -0.09926068037748337,
- -0.05402268096804619, 0.039621807634830475, 0.037006914615631104, -0.010011762380599976,
- -0.02191242016851902, -0.07304729521274567, 0.02084672823548317, -0.0036427739541977644,
- 0.01164502464234829, 0.010291684418916702, 0.021340077742934227, -0.05379506200551987,
- -0.09517763555049896, 0.01193217933177948, 0.024640994146466255, -0.01365690492093563,
- -0.03429447114467621, -0.04703449457883835, -0.02223891206085682, 0.0002759123162832111,
- 0.01202558632940054, -0.034787364304065704, 0.00870306696742773, 0.061709243804216385,
- 0.0497526116669178, -0.052347153425216675, 0.010780887678265572, 0.022690052166581154,
- -0.03671402111649513, -0.019802765920758247, 0.07131659984588623, -0.032074011862277985,
- 0.028088686987757683, -0.03385275974869728, -0.024098386988043785, -0.06167721375823021,
- 0.004565706476569176, -0.04902727156877518, 0.061750173568725586, -0.0501800961792469,
- 0.015728773549199104, -0.044457077980041504, 0.01579895056784153, 0.052743494510650635,
- -0.061350636184215546, -0.06273391842842102, -0.06805654615163803, 0.095725879073143,
- -0.021261893212795258, -0.010037465952336788, 0.004246172960847616,
- -0.020146459341049194, 0.04838709160685539, 0.04359113797545433, 0.027771994471549988,
- 0.07043209671974182, 0.06742090731859207, 0.0012676843907684088, 0.0346900075674057,
- 0.09137707203626633, 0.02636140026152134, 0.01836695522069931, 0.05655396729707718,
- 0.3691483438014984, -0.18062464892864227, 0.09116049855947495, 0.06247508153319359,
- 0.019987910985946655, 0.04971925914287567, -0.059196218848228455, 0.062433622777462006,
- 0.0319511704146862, 0.09190742671489716, 0.10436131805181503, -0.04827920347452164,
- 0.02696053497493267, 0.008733180351555347, 0.05060134455561638, -0.0045761289075016975,
- 0.011649641208350658, -0.03423814848065376, -0.024604007601737976,
- -0.009431916289031506, 0.03399135544896126, -0.033371735364198685, 0.01126355491578579,
- -0.04942687973380089, -0.031844187527894974, 0.01739232987165451, 0.04692291095852852,
- 0.034369487315416336, -0.01572399027645588, 0.021200764924287796, 0.05939473956823349,
- 0.03214048966765404, 0.038215961307287216, 0.03789985552430153, -0.08213944733142853,
- 0.06805557757616043, -0.0677986741065979, -0.12119117379188538, 0.0407722145318985,
- 0.026604659855365753, 0.058339208364486694, 0.03882380574941635, -0.018173350021243095,
- 0.042045045644044876, 0.009363117627799511, -0.019120028242468834, -0.02311543934047222,
- 0.013874960131943226, 0.007418002467602491, 0.07085025310516357, 0.1301489770412445,
- -0.025682572275400162, 0.005483553279191256, -0.06627557426691055, 0.049850139766931534,
- 0.10934020578861237, -0.017233125865459442, 0.035203736275434494, 0.01753666065633297,
- 0.0003674869076348841, -0.021307842805981636, -0.05092195048928261,
- -0.08671161532402039, -0.04203921929001808, -0.07213524729013443, 0.06864245235919952,
- 0.06054461747407913, -0.04002002999186516, -0.13877125084400177, -0.014154797419905663,
- -0.05039560794830322, 0.03373880684375763, 0.08503208309412003, -0.03627728670835495,
- 0.06011907756328583, 0.032904524356126785, 0.017850445583462715, 0.005642976611852646,
- -0.06806741654872894, -0.010603914968669415, -0.06343010812997818, 0.010068354196846485,
- 0.06617914140224457, 0.05304596945643425, -0.03482192009687424, 0.05983300134539604,
- -0.08160620182752609, 0.03333067521452904, -0.0032741716131567955, -0.03935987502336502,
- 0.04620891064405441, -0.06661546975374222, 0.048695746809244156, 0.02116825431585312,
- -0.05840053781867027, -0.026957351714372635, -0.04281696677207947, -0.063967265188694,
- -0.06591976433992386, -0.0732840746641159, -0.04462408646941185, -0.06061446666717529,
- 0.05703141167759895, -0.04434334486722946, 0.01552220992743969, -0.04943578690290451,
- 0.020618075504899025, -0.01734195463359356, 0.012277607806026936, -0.03854318708181381,
- -0.11639963090419769, -0.01587732695043087, -0.0025549582205712795,
- 0.012264731340110302, -0.034304048866033554, -0.05946747213602066, 0.008321475237607956,
- 0.04575840011239052, -0.0017664742190390825, -0.05905937775969505, 0.01826602593064308,
- -0.06299866735935211, 0.07525978237390518, -0.0819808840751648, -0.446525514125824,
- 0.042611755430698395, 0.009648657403886318, 0.030359530821442604,
- -0.0034366054460406303, -0.03717856481671333, 0.048874519765377045,
- 0.0031385994516313076, 0.04232262447476387, 0.052567385137081146, -0.0523064024746418,
- 0.023921646177768707, -0.07434629648923874, -0.05967776104807854, -0.005915565881878138,
- -0.07525401562452316, -0.039226241409778595, 0.03130766749382019,
- -0.0007277036202140152, -0.03282426670193672, -0.07892823964357376,
- 0.027665065601468086, -0.011969446204602718, -0.03244596719741821,
- -0.010008921846747398, 0.002912146272137761, -0.05308947712182999, -0.08543520420789719,
- 0.01512494683265686, 0.04291430860757828, 0.013330590911209583, -0.07842375338077545,
- -0.0041127013973891735, 0.06340091675519943, 0.01454964280128479, 0.11090914160013199,
- 0.02810591459274292, -0.01182515174150467, -0.07029178738594055, 0.07814070582389832,
- 0.06652843952178955, 0.19054988026618958, -0.021252647042274475, 0.06233573332428932,
- -0.007404641713947058, 0.061857495456933975, 0.01417284831404686, 0.027195584028959274,
- -0.04242211580276489, -0.011470507830381393, 0.01666935533285141, -0.013395498506724834,
- 0.09395448863506317, -0.06573230028152466, -0.007213401608169079, -0.021765485405921936,
- -0.03554647043347359, -0.032799288630485535, -0.013589068315923214, 0.17346711456775665,
- 0.04380527511239052, -0.004274287726730108, 0.02068525366485119, -0.01875523291528225,
- 0.01570080779492855, -0.0773322805762291, -0.029652288183569908, -0.03218349441885948,
- -0.03151247650384903, 0.03945823758840561, -0.049102842807769775, -0.07622098177671432,
- -0.011222833767533302, -0.000845889444462955, -0.001717781531624496,
- 0.10105995833873749, -0.03130834549665451, 0.010249905288219452, -0.02270648442208767,
- 0.1292153000831604, -0.011089693754911423, 0.03039623238146305, 0.0398748517036438,
- 0.06429386138916016, 0.018089253455400467, -0.0029459786601364613,
- -0.018352298066020012, -0.07605703920125961, 0.0072449687868356705, 0.1573522537946701,
- -0.0007458854233846068, 0.1012575551867485, 0.026864172890782356, -0.009677962400019169,
- -0.01666715182363987, 0.01817096769809723, 0.021950379014015198, -0.009440425783395767,
- -0.49642717838287354, -0.03561493009328842, 0.13696971535682678, 0.0018268264830112457,
- 0.03526730835437775, 0.042143311351537704, -0.024431833997368813, -0.010019141249358654,
- -0.008117051795125008, -0.037873487919569016, 0.03000926971435547, 0.020161135122179985,
- 0.05103931576013565, -0.1000896692276001, 0.02880536951124668, 0.07576923817396164,
- -0.0060527874156832695, 0.016446352005004883, 0.014357328414916992,
- -0.25930213928222656, -0.003399273846298456, -0.029399046674370766, 0.13794352114200592,
- 0.06042242422699928, 0.017855774611234665, 0.07128728181123734, -0.03235888108611107,
- 0.04521457850933075, 0.04677918925881386, 0.05074974149465561, 0.0881364494562149,
- -0.010806617327034473, -0.037668101489543915, 0.08763252943754196, 0.06778664886951447,
- 0.09874897450208664, 0.028859203681349754, 11.75252628326416, 0.01961318962275982,
- 0.06871780753135681, -0.0787520706653595, 0.022472193464636803, -0.04724165424704552,
- 0.04729506000876427, -0.05201171338558197, 0.057379595935344696, 0.14131073653697968,
- -0.01417954359203577, -0.0104602025821805, -0.051865771412849426, -0.03085528314113617,
- 0.01965499483048916, -0.04154900088906288, -0.007313556037843227, -0.016662780195474625,
- 0.023184631019830704, -0.06432343274354935, -0.028379365801811218, 0.052051275968551636,
- 0.06841243803501129, -0.003986771684139967, -0.07886974513530731, 0.06496337056159973,
- -0.013821371830999851, 0.02159292809665203, -0.004807295743376017, 0.01417967863380909,
- 0.01913018897175789, 0.06657639145851135, 0.0717826634645462, 0.00651136040687561,
- -0.005487596616148949, 0.08302654325962067, 0.03183954581618309, 0.04100809618830681,
- 0.04381664842367172, 0.0563088096678257, 0.014408188872039318, 0.014908271841704845,
- 0.005457099061459303, 0.06191926449537277, 0.08105530589818954, 0.01418390404433012,
- 0.024942178279161453, 0.16191454231739044, 0.0329725444316864, 0.06095913425087929,
- 0.0601094551384449, -0.028888899832963943, 0.06226636469364166, 0.03493272140622139,
- -0.02070598490536213, -0.029379677027463913, -0.023708822205662727,
- -0.04349007084965706, 0.11113929003477097, 0.024686412885785103, -0.037649258971214294,
- 0.13240154087543488, 0.05585268512368202, 0.11009214073419571, 0.05574462190270424,
- 0.02799544669687748, 0.04830582067370415, 0.07512083649635315, -0.03517034649848938,
- -0.042650897055864334, 0.049530770629644394, -0.06824740767478943, -0.0579456090927124,
- 0.04493438079953194, 0.04479042813181877, 0.0008910068427212536, 0.049949489533901215,
- -0.028082381933927536, 0.02190784364938736, -0.011287413537502289, 0.027470918372273445,
- 0.021404318511486053, -0.08623584359884262, 0.013631791807711124, 0.03306281566619873,
- 0.047919776290655136, 0.06583946943283081, 0.12639343738555908, 0.016040362417697906,
- -0.0523737408220768, -0.07421115785837173, 0.07883241772651672, 0.0009645989630371332,
- -0.05119550600647926, 0.04918557405471802, -0.05666136369109154, 0.007763906382024288,
- -0.1578691601753235, 0.07862839847803116, 0.10560928285121918, -0.04323454201221466,
- -0.050591811537742615, -0.04106048494577408, 0.12347076833248138, -0.01200844720005989,
- -0.0013691846979781985, -0.07667920738458633, -0.006592750549316406,
- 0.01624351367354393, 0.05698668211698532, -0.03209227696061134, 0.06934639066457748,
- 0.0396721176803112, -0.06641650944948196, 0.08162334561347961, 0.057884007692337036,
- -0.02220958285033703, -0.01505680475383997, 0.05932396650314331, 0.058111533522605896,
- -0.0764961689710617, -0.04057355970144272, -0.028700804337859154, -0.032122816890478134,
- -0.0016148203285411, -0.01523556187748909, -0.01778077520430088, -0.017467688769102097,
- 0.0034552712459117174, -0.030299127101898193, 0.01221567951142788, 0.07972627878189087,
- 0.17082443833351135, -0.02290351130068302, 0.068731389939785, -0.02714516781270504,
- -0.03570236638188362, 0.056726664304733276, 0.06621117144823074, 0.09399152547121048,
- -0.08778193593025208, -0.023614371195435524, -0.026203563436865807,
- -0.09589795023202896, 0.0230930857360363, 0.03613986447453499, 0.03129328042268753,
- 0.023717505857348442, -0.00941845029592514, -0.05225188657641411, -0.053045257925987244,
- 0.07376164942979813, 0.029704755172133446, 0.006925936788320541, 0.04788821190595627,
- -0.03691579028964043, -0.006615391932427883, 0.09590636193752289, -0.029928933829069138,
- -0.017089400440454483, 0.01134502049535513, -0.143800750374794, 0.03748950734734535,
- 0.09621734172105789, -0.006319356616586447, 0.045790817588567734, 0.028097016736865044,
- 0.002182404277846217, 0.036504052579402924, 0.017836475744843483, 0.020977402105927467,
- -0.03781569376587868, -0.05975450575351715, -0.07002508640289307, -0.002134121721610427,
- 0.07453455030918121, 0.11159692704677582, -0.17314299941062927, 0.007788509596139193,
- -0.06084757670760155
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 314,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 14,
- "similarity": 0.9977126717567444
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 60,
- "similarity": 0.9976485967636108
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 6,
- "similarity": 0.9976086616516113
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Kyle Wiggers"],
- "epoch_date_downloaded": 1661731200,
- "epoch_date_modified": 1661731200,
- "epoch_date_submitted": 1661385600,
- "flag": null,
- "report_number": 1968,
- "source_domain": "techcrunch.com",
- "submitters": ["Daniel Atherton (BNH.ai)"],
- "title": "Deepfakes: Uncensored AI art model prompts ethics questions",
- "url": "https://techcrunch.com/2022/08/24/deepfakes-for-all-uncensored-ai-art-model-prompts-ethics-questions/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "ntechlab",
- "name": "NtechLab"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "ntechlab",
- "name": "NtechLab"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "russian-sex-workers",
- "name": "Russian sex workers"
- },
- {
- "__typename": "Entity",
- "entity_id": "russian-pornographic-actresses",
- "name": "Russian pornographic actresses"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [16, 17, 60],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1970],
- "vector": [
- -0.07341761887073517, 0.059849970042705536, 0.01697608269751072, -0.13982386887073517,
- 0.049752335995435715, -0.02581850439310074, -0.00827220268547535, 0.01924598217010498,
- 0.027077261358499527, -0.1543739140033722, -0.04545216262340546, 0.0007811650866642594,
- 0.04774609953165054, -0.05286406725645065, 0.02744406834244728, 0.0037304640281945467,
- -0.1253330111503601, -0.004481758922338486, -0.030824728310108185, -0.12506793439388275,
- -0.048798929899930954, 0.0009880834259092808, 0.04218849167227745, 0.14341747760772705,
- -0.06284409016370773, 0.007436767686158419, 0.12686751782894135, 0.14831063151359558,
- -0.1090971976518631, 0.07158828526735306, -0.013051530346274376, -0.05854678899049759,
- 0.17781145870685577, 0.0026744611095637083, 0.013029981404542923, 0.07709480822086334,
- 0.05328952521085739, -0.04029519483447075, 0.005760173313319683, -0.006591317243874073,
- 0.0671478658914566, 0.20898596942424774, -0.007124935742467642, -0.005957834888249636,
- 0.05751674249768257, -0.0011032940819859505, 0.042226310819387436, 0.06526567041873932,
- 0.008928639814257622, -0.0037757917307317257, -0.01942862570285797,
- -0.041766103357076645, -0.08131188899278641, 0.04098138585686684, -0.09693970531225204,
- 0.08527578413486481, 0.02369951829314232, -0.05167269706726074, 0.015521235764026642,
- -0.06899173557758331, -0.04169834777712822, -0.18110647797584534, -0.07930190116167068,
- -0.07969602942466736, 0.08607285469770432, -0.08282839506864548, -0.04505699500441551,
- -0.002022028435021639, 0.022353393957018852, 0.037308283150196075, 0.027076156809926033,
- -0.09731990844011307, -0.02464970201253891, 0.03167789801955223, 0.009330029599368572,
- -0.022457242012023926, 0.0021743415854871273, 0.20039474964141846, -0.07658124715089798,
- 0.04658397659659386, 0.11200607568025589, -0.0989568904042244, 0.4121650755405426,
- -0.0012497814605012536, -0.03874891996383667, 0.0925024077296257, 0.09677253663539886,
- 0.07399142533540726, 0.05584564432501793, 0.06585021317005157, -0.004099513404071331,
- 0.035469185560941696, -0.07669749855995178, -0.007976531982421875, 0.04478398337960243,
- 0.04991203546524048, -0.015108218416571617, 0.04984082654118538, -0.002388409338891506,
- -0.041378479450941086, 0.023603685200214386, -0.061869435012340546, 0.12069270014762878,
- 0.08536041527986526, -0.045032843947410583, -0.021944867447018623, 0.06994959712028503,
- -0.08251184970140457, 0.05171257257461548, -0.08921395242214203, 0.05127677693963051,
- -0.008641625754535198, 0.08819781988859177, -0.022814512252807617, 0.01284339465200901,
- -0.040595076978206635, -0.014512315392494202, -0.01789267174899578, 0.06888085603713989,
- 0.07188384979963303, -0.018190426751971245, 0.07924189418554306, 0.09621188789606094,
- -0.09664273262023926, -0.03817440941929817, -0.013456402346491814, -0.0816570371389389,
- -0.018599551171064377, -0.011590512469410896, 0.03175061568617821, -0.03221939131617546,
- -0.19831494987010956, 0.0186475683003664, 0.01661042869091034, -0.03372438624501228,
- -0.0260818712413311, 0.032360173761844635, -0.07383936643600464, -0.02135809138417244,
- -0.0019409623928368092, -0.005190486088395119, 0.0806107148528099, 0.10458533465862274,
- 0.03254067525267601, 0.12284757941961288, 0.06978605687618256, -0.04275785759091377,
- -0.038701340556144714, 0.007106008939445019, -0.06715703010559082, 0.10946689546108246,
- -0.10612719506025314, -0.036593127995729446, -0.0004160039534326643,
- -0.004368357360363007, 0.6841697692871094, 0.11136991530656815, 0.16864575445652008,
- -0.009385584853589535, -0.01583169773221016, 0.18140894174575806, -0.05623752996325493,
- 0.11490095406770706, -0.0750950500369072, -0.05985928326845169, -0.006717108190059662,
- -0.06298620998859406, -0.009544909000396729, 0.007306674961000681, 0.022925544530153275,
- 0.08453813940286636, 0.029348263517022133, 0.1291682869195938, 0.02474665269255638,
- -0.13178689777851105, -0.00843836460262537, 0.08086379617452621, 0.009305426850914955,
- -0.09601529687643051, -0.016479967162013054, 0.04931750148534775, 0.10431988537311554,
- -0.07545991986989975, 0.01593071036040783, -0.04992032051086426, 0.07535292208194733,
- -0.040084488689899445, 0.060874395072460175, 0.017875319346785545, 0.06887724995613098,
- 0.04084134101867676, 0.06185807287693024, -0.03136434406042099, -0.08802603930234909,
- -0.10849015414714813, 0.10137885063886642, -0.02798151783645153, -0.03240561485290527,
- 0.09215980023145676, -0.0723782330751419, 0.05514150857925415, 0.031250037252902985,
- 0.1636929214000702, -0.14318321645259857, 0.03964276984333992, 0.011193945072591305,
- -0.019341571256518364, 0.08713343739509583, -0.004627831280231476, -0.09452313929796219,
- -0.09829296171665192, 0.1094779521226883, 0.05984021723270416, 0.06584997475147247,
- 0.04580211266875267, -0.03430140018463135, 0.035507697612047195, 0.07063058018684387,
- 0.01034793071448803, -0.039019420742988586, 0.05146448686718941, 0.03048992156982422,
- 0.0021844741422683, -0.054160598665475845, 0.048832476139068604, 0.010377956554293633,
- 0.047006092965602875, 0.003381164511665702, 0.06536753475666046, -0.01650778390467167,
- -0.051069166511297226, 0.0337161161005497, 0.0458659790456295, 0.047167450189590454,
- 0.08220224827528, -0.10412029176950455, -0.014467189088463783, -0.01393571775406599,
- -0.004290768411010504, 0.022735420614480972, -0.005490646231919527, 0.07008852809667587,
- 0.10120727121829987, 0.08437051624059677, 0.031450338661670685, 0.03983132541179657,
- 0.04581216350197792, 0.036799632012844086, 0.011192562058568, 0.11906904727220535,
- -0.01614679954946041, -0.054334256798028946, 0.005376473534852266, 0.00981119368225336,
- 0.021247847005724907, 0.013195998035371304, -0.06424013525247574,
- -0.0006213384331203997, -0.08523440361022949, -0.04684237763285637,
- -0.08869669586420059, -0.050819575786590576, -0.0013324288884177804,
- 0.049127787351608276, -0.07243552803993225, -0.07640548050403595, -0.06500864028930664,
- 0.009463110938668251, 0.0832899957895279, -0.03292038291692734, -0.001558442017994821,
- -0.12308825552463531, 0.03746986389160156, -0.004379564896225929, 0.05390506237745285,
- -0.038158830255270004, 0.017935248091816902, -0.04913944751024246, -0.08690569549798965,
- 0.022604389116168022, 0.008470797911286354, -0.02934727631509304, -0.04419057443737984,
- -0.06303118914365768, -0.03506969287991524, -0.03221214935183525, 0.015174581669270992,
- -0.020923279225826263, 0.003279214957728982, 0.016797417774796486, 0.06738521158695221,
- -0.046864572912454605, -0.018986113369464874, 0.02713649533689022, -0.0411292240023613,
- -0.057933259755373, 0.115560382604599, -0.03155097737908363, 0.011478803120553493,
- 0.014619812369346619, -0.06247758865356445, -0.06289971619844437, -0.02521703951060772,
- -0.056243978440761566, 0.04769493639469147, -0.0484611839056015, -0.06118890270590782,
- -0.03691382706165314, -0.0223992969840765, 0.021896380931138992, -0.06118977442383766,
- -0.09020937979221344, -0.08148901164531708, 0.13191042840480804, -0.0644843801856041,
- -0.019911542534828186, 0.04576408490538597, -0.0342385433614254, 0.0675540640950203,
- 0.006421944592148066, 0.017052851617336273, 0.056417595595121384, 0.10874715447425842,
- -0.007947133854031563, 0.057242050766944885, 0.03712235391139984, -0.01949889026582241,
- -0.02646324224770069, 0.05656784027814865, 0.44510871171951294, -0.22247202694416046,
- 0.07831227034330368, 0.09681307524442673, 0.05043311417102814, 0.0010678760008886456,
- -0.038089949637651443, 0.05338272452354431, 0.048762694001197815, 0.14097049832344055,
- 0.16488322615623474, -0.06325270980596542, 0.002072869800031185, -0.0903821736574173,
- 0.1067955493927002, 0.010877734050154686, 0.045444827526807785, 0.011697615496814251,
- -0.0599907822906971, -0.018075840547680855, 0.058292634785175323, -0.036574237048625946,
- 0.039567362517118454, -0.009748361073434353, -0.02665630541741848, 0.03906059265136719,
- 0.0779699757695198, 0.09603039920330048, -0.025303209200501442, 0.05758131667971611,
- -0.041240476071834564, 0.021419579163193703, -0.006725809071213007, 0.06333653628826141,
- -0.08511780202388763, 0.005502377636730671, -0.06235698610544205, -0.0899031013250351,
- 0.07288426905870438, 0.025274675339460373, 0.08675913512706757, 0.036637082695961,
- -0.04599937051534653, 0.06654403358697891, -0.051829274743795395, -0.020839475095272064,
- 0.031435929238796234, 0.04680657014250755, 0.03946635127067566, 0.12457264959812164,
- 0.16156679391860962, -0.019019633531570435, -0.04551389068365097, -0.0659683421254158,
- 0.06439905613660812, 0.10971149057149887, -0.021919384598731995, 0.03970601409673691,
- 0.04939377307891846, -0.025105472654104233, -0.004885864444077015, -0.05828728526830673,
- -0.06467282772064209, 0.0007272863294929266, -0.08125181496143341, 0.08950132131576538,
- 0.04646769538521767, 0.005344876088202, -0.10640334337949753, -0.0007402250776067376,
- -0.02489454485476017, -0.004550261422991753, 0.10288823395967484, -0.05270418897271156,
- 0.0165624488145113, -0.025872355327010155, 0.0013889024266973138, -0.020782621577382088,
- -0.09943893551826477, -0.03420725464820862, -0.02188737876713276, 0.018614066764712334,
- 0.08554287254810333, 0.0432734414935112, -0.058343544602394104, 0.056440241634845734,
- -0.1377803385257721, 0.03961055725812912, 0.041722964495420456, -0.007759565953165293,
- 0.019248951226472855, -0.046490732580423355, 0.0032718696165829897,
- -0.007701895199716091, -0.0715213194489479, 0.005942458752542734, -0.03926893696188927,
- -0.07813603430986404, -0.05458679422736168, -0.10924745351076126, -0.04713474214076996,
- -0.10075531154870987, 0.03207065165042877, -0.1426597386598587, 0.0058541065081954,
- -0.0330679677426815, -0.005032615270465612, -0.006374260876327753, 0.027483953163027763,
- -0.0050637200474739075, -0.11488879472017288, 0.009338993579149246,
- -0.045093435794115067, 0.025957703590393066, -0.02890389785170555, -0.09696125239133835,
- -0.0021029056515544653, 0.05928774178028107, 0.029390716925263405, -0.03545926511287689,
- -0.010837361216545105, -0.04911215975880623, 0.09321986883878708, -0.16226887702941895,
- -0.42861151695251465, 0.06231814995408058, 0.048516739159822464, 0.06047508493065834,
- -0.020310567691922188, -0.05823857709765434, 0.057231396436691284,
- 0.00048450438771396875, -0.03923240303993225, 0.11445707082748413, -0.06089651212096214,
- -0.009161178022623062, -0.05173646658658981, -0.027391502633690834,
- 0.0033617685548961163, -0.07551605999469757, -0.038948193192481995, 0.02686985582113266,
- 0.02446099929511547, -0.059397295117378235, -0.1114082783460617, 0.0256281066685915,
- -0.01568039506673813, 0.010023228824138641, 0.02796345204114914, 0.019848555326461792,
- -0.03336318954825401, -0.05356203019618988, 0.0011945184087380767, 0.06692367792129517,
- 0.0010300050489604473, -0.07574813067913055, -0.015182246454060078, 0.03738037496805191,
- 0.005547231528908014, 0.10112544894218445, 0.0646091178059578, 0.028792789205908775,
- -0.08436316251754761, 0.0823482796549797, 0.07161153107881546, 0.18627111613750458,
- -0.04444492980837822, 0.023122847080230713, 0.008768082596361637, 0.13064123690128326,
- 0.06026178598403931, 0.03181256726384163, -0.033312760293483734, -0.0029384095687419176,
- 0.00015965373313520104, -0.013334332033991814, 0.09461713582277298,
- -0.06457359343767166, -0.04695846140384674, -0.015371948480606079,
- -0.024349486455321312, -0.051119085401296616, 0.04229210317134857, 0.22893232107162476,
- 0.03593942150473595, -0.007371234241873026, 0.011274967342615128, -0.0296513382345438,
- 0.0018072666134685278, -0.08748095482587814, -0.03699498623609543, -0.03733318671584129,
- -0.0212495606392622, 0.028027446940541267, -0.06641413271427155, -0.10745000094175339,
- -0.01095106452703476, -0.0157631803303957, 0.004599990323185921, 0.11690522730350494,
- -0.04641452431678772, -0.02101430855691433, -0.02113530784845352, 0.17172767221927643,
- 0.04582182317972183, 0.009783965535461903, 0.07719458639621735, 0.11898922920227051,
- 0.028571264818310738, 0.019974535331130028, -0.0018637022003531456, -0.0673334077000618,
- -0.015917586162686348, 0.13575860857963562, -0.03230070695281029, 0.13424189388751984,
- 0.05985944718122482, -0.057581931352615356, -0.05234239622950554, -0.008500179275870323,
- -0.011431984603404999, 0.03307923674583435, -0.47429168224334717, -0.006534107495099306,
- 0.12348674982786179, -0.00022280673147179186, 0.02392764389514923, 0.0762491375207901,
- 0.025703895837068558, 0.00395575538277626, -0.0684470385313034, -0.08859950304031372,
- 0.13114115595817566, -0.026234541088342667, 0.07018756866455078, -0.1439824253320694,
- 0.04133082553744316, 0.0937565490603447, -0.01836599037051201, 0.0057709431275725365,
- 0.02978045679628849, -0.26423901319503784, -0.023195287212729454, -0.007439292035996914,
- 0.14386068284511566, -0.020645685493946075, -0.00916703138500452, 0.1015939936041832,
- -0.05787256732583046, 0.032731927931308746, 0.017281485721468925, -0.03970438241958618,
- 0.03506674990057945, -0.03210772946476936, -0.04947461560368538, 0.11824016273021698,
- 0.14500148594379425, 0.05259709432721138, -0.02863912656903267, 11.959230422973633,
- 0.06943629682064056, 0.10085370391607285, -0.11878727376461029, -0.017699824646115303,
- -0.053115859627723694, 0.016457920894026756, -0.09390542656183243, 0.034671343863010406,
- 0.13616283237934113, -0.005989487282931805, -0.024640532210469246, -0.05973034352064133,
- -0.07912437617778778, -0.004651003051549196, -0.042456284165382385, -0.0702676847577095,
- -0.03239940479397774, 0.04536433145403862, -0.06998482346534729, -0.04669016972184181,
- -0.009510303847491741, 0.07021712511777878, 0.02493824064731598, -0.06053668633103371,
- 0.025532880797982216, 0.025695793330669403, 0.04496162757277489, 0.006542597431689501,
- 0.008866685442626476, 0.045170269906520844, 0.06337044388055801, 0.06975720822811127,
- 0.0038850223645567894, 0.025444675236940384, 0.05082682520151138, 0.015414181165397167,
- 0.018122076988220215, 0.028234990313649178, 0.03832106664776802, 0.0010713484371080995,
- 0.037655308842659, 0.03185150772333145, 0.0548769012093544, 0.07242602854967117,
- 0.037497714161872864, 0.05541795492172241, 0.10971637070178986, 0.009809409268200397,
- 0.060869429260492325, 0.08150313049554825, -0.04692807421088219, 0.08150868117809296,
- 0.000782406481448561, -0.03323441371321678, 0.030536528676748276, -0.021221879869699478,
- -0.10417400300502777, 0.08424071967601776, 0.01712127774953842, -0.019896410405635834,
- 0.1386565864086151, 0.03476713225245476, 0.09673042595386505, -0.016547616571187973,
- 0.02568201534450054, 0.08984390646219254, 0.08479823172092438, -0.14105670154094696,
- -0.080342598259449, 0.04601571336388588, -0.0974096730351448, -0.1020052507519722,
- 0.10088762640953064, 0.06820360571146011, -0.01454588957130909, 0.04475713148713112,
- -0.024856088683009148, 0.03284692019224167, 0.012576562352478504, 0.02508280798792839,
- 0.05513370409607887, -0.05614137649536133, 0.026901520788669586, 0.020016111433506012,
- 0.03565749153494835, 0.08494368195533752, 0.09883611649274826, -0.009809963405132294,
- -0.06974170356988907, -0.07330593466758728, 0.10019146651029587, 0.0052963970229029655,
- -0.041424598544836044, 0.02391969971358776, -0.0873105525970459, 0.04229264333844185,
- -0.1679762899875641, 0.091501384973526, 0.07560283690690994, -0.045354656875133514,
- -0.05185892432928085, -0.04359380900859833, 0.06562872976064682, -0.006042527034878731,
- 0.038989078253507614, -0.03467738255858421, 0.023677749559283257, 0.0333145372569561,
- 0.06504065543413162, -0.03385019302368164, 0.1181885227560997, 0.047733891755342484,
- -0.08099216222763062, -0.014708135277032852, 0.07597148418426514, -0.03742001950740814,
- -0.039895910769701004, 0.0472404845058918, 0.0443347804248333, -0.07798364013433456,
- -0.014650275930762291, -0.06406458467245102, -0.059263523668050766,
- -0.02513662725687027, -0.045414604246616364, -0.010797807946801186, 0.04815413057804108,
- -0.05883127450942993, -0.053352296352386475, 0.013597531244158745, 0.09580684453248978,
- 0.11731128394603729, -0.02811454050242901, 0.059065867215394974, -0.04396882653236389,
- -0.015385003760457039, 0.04179047793149948, 0.0741875097155571, 0.06586359441280365,
- -0.06655371189117432, -0.04688461124897003, -0.04809178039431572, -0.12965045869350433,
- 0.06121135503053665, 0.058234866708517075, 0.010200263932347298, 0.03393534570932388,
- 0.03420789912343025, -0.08863934874534607, -0.04792320728302002, 0.12245188653469086,
- 0.0658215656876564, 0.027417289093136787, 0.07557685673236847, -0.06026218459010124,
- -0.0836254358291626, 0.06475609540939331, -0.045025747269392014, -0.004966340027749538,
- 0.01569940708577633, -0.07874604314565659, 0.11149286478757858, 0.09451635926961899,
- 0.07394318282604218, 0.03962092101573944, 0.08074750751256943, -0.0010965934488922358,
- 0.014585396274924278, 0.025950809940695763, 0.03146183118224144, -0.020959030836820602,
- -0.0780162364244461, -0.11071357876062393, 0.02507079765200615, 0.09339756518602371,
- 0.04996480792760849, -0.1353445053100586, -0.007574304472655058, -0.03794310241937637
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 315,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 17,
- "similarity": 0.9979870915412903
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 16,
- "similarity": 0.9979742169380188
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 60,
- "similarity": 0.997929036617279
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Kevin Rothrock"],
- "epoch_date_downloaded": 1661731200,
- "epoch_date_modified": 1661731200,
- "epoch_date_submitted": 1661731200,
- "flag": null,
- "report_number": 1970,
- "source_domain": "advox.globalvoices.org",
- "submitters": ["Khoa Lam"],
- "title": "Facial Recognition Service Becomes a Weapon Against Russian Porn Actresses",
- "url": "https://advox.globalvoices.org/2016/04/22/facial-recognition-service-becomes-a-weapon-against-russian-porn-actresses/#"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "facebook",
- "name": "Facebook"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "facebook",
- "name": "Facebook"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "facebook-users",
- "name": "Facebook users"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [15, 35, 39],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1971],
- "vector": [
- -0.11218353360891342, 0.0895770862698555, 0.015105641447007656, -0.12559688091278076,
- 0.0788303092122078, -0.019683629274368286, 0.027948737144470215, 0.10534713417291641,
- 0.0692954882979393, -0.16271787881851196, -0.000620779930613935, 0.06934238225221634,
- 0.018204670399427414, -0.06677595525979996, 0.036126621067523956, -0.14268098771572113,
- -0.11997713893651962, -0.05487010255455971, -0.04174086079001427, -0.08184304088354111,
- -0.0830976665019989, 0.041043102741241455, 0.10221872478723526, 0.16402438282966614,
- -0.04264310747385025, 0.08659912645816803, 0.059559416025877, 0.1674911081790924,
- -0.12877912819385529, 0.07200215011835098, -0.06435418874025345, -0.07249462604522705,
- 0.13032817840576172, 0.048207130283117294, -0.010530898347496986, 0.07348635792732239,
- 0.015043876133859158, -0.03326399624347687, 0.01597311720252037, 0.017310241237282753,
- 0.06362216174602509, 0.23889362812042236, -0.005331735592335463, -0.040946703404188156,
- 0.016894884407520294, -0.05658862739801407, 0.011001015082001686, 0.0354464054107666,
- -0.007765405345708132, 0.0008661705069243908, 0.04241964593529701,
- -0.019230246543884277, -0.03925004228949547, 0.053293537348508835, -0.09973202645778656,
- 0.11960645020008087, 0.0686296671628952, 0.03228650614619255, -0.0027345989365130663,
- -0.08372168987989426, -0.13037723302841187, -0.20983366668224335, -0.03944247215986252,
- -0.14677809178829193, 0.116828553378582, -0.1122138500213623, -0.02786947228014469,
- 0.01286598015576601, 0.008448260836303234, 0.06625666469335556, 0.05970313027501106,
- -0.015914814546704292, -0.016068287193775177, 0.015496809035539627,
- -0.028425663709640503, -0.03644687682390213, 0.0006435457617044449, 0.26195618510246277,
- -0.12788815796375275, -0.009824449196457863, 0.11477330327033997, -0.07748657464981079,
- 0.47339141368865967, -0.01615775004029274, -0.020463332533836365, -0.027471622452139854,
- 0.09554380923509598, -0.0083009023219347, 0.04650474712252617, 0.012234285473823547,
- -0.049720022827386856, 0.07636993378400803, -0.040072839707136154, 0.025849806144833565,
- 0.09261372685432434, 0.03712888062000275, -0.0016642921837046742, 0.048075392842292786,
- -0.03567088022828102, -0.06346849352121353, 0.0038034762255847454,
- -0.059284765273332596, 0.10532236844301224, 0.06742221862077713, -0.04395836219191551,
- -0.028328869491815567, 0.13007427752017975, -0.1028919667005539, 0.12347905337810516,
- -0.08912559598684311, 0.006576698273420334, -0.006374700460582972, 0.03117484599351883,
- -0.052377812564373016, 0.04305294156074524, -0.020438356325030327, 0.006981357000768185,
- 0.009105835109949112, 0.03482236713171005, 0.09844452887773514, -0.060812052339315414,
- 0.036173176020383835, 0.05597095936536789, -0.16991208493709564, -0.0841585248708725,
- -0.06625115126371384, -0.11223029345273972, -0.04042826220393181, 0.03196408599615097,
- 0.005128853488713503, -0.049611374735832214, -0.20820575952529907,
- 0.0011679938761517406, 0.03364948555827141, 0.023229755461215973, 0.014199906960129738,
- 0.009160920977592468, -0.11887568980455399, 0.027484526857733727, -0.04430855065584183,
- -0.03237191587686539, 0.10262378305196762, 0.024373289197683334, 0.026834776625037193,
- 0.10648835450410843, 0.054989174008369446, -0.004084903746843338, -0.010503621771931648,
- 0.02922709472477436, -0.037161603569984436, 0.08243610709905624, -0.16111186146736145,
- -0.04514696076512337, -0.03352003172039986, 0.06803231686353683, 0.7164450883865356,
- 0.12194692343473434, 0.15841610729694366, -0.01508195511996746, -0.03276490792632103,
- 0.2099858820438385, 0.03822463005781174, 0.05559892579913139, -0.05126241222023964,
- -0.0643189325928688, -0.024371415376663208, -0.047502029687166214,
- -0.010652289725840092, 0.056371696293354034, 0.003120099427178502, 0.10531184077262878,
- 0.07694936543703079, 0.10833065211772919, -0.029147084802389145, -0.14493174850940704,
- -0.009185876697301865, 0.06618905812501907, 0.02825952135026455, -0.07068905234336853,
- -0.011842216365039349, 0.02892855741083622, 0.10532807558774948, -0.08690914511680603,
- -0.007690818514674902, -0.06383831799030304, 0.0486326701939106, -0.012543252669274807,
- 0.049355048686265945, -0.010133618488907814, 0.022083520889282227, 0.08823753893375397,
- 0.0334324985742569, 0.030434852465987206, -0.1272762566804886, -0.04078347608447075,
- 0.11334195733070374, -0.018346115946769714, -0.07202546298503876, 0.04920700192451477,
- -0.10539442300796509, 0.02133157290518284, 0.03846881538629532, 0.1975211352109909,
- -0.14175188541412354, -0.04990970343351364, -0.021817412227392197, -0.06283911317586899,
- 0.0379805751144886, -0.004635396879166365, -0.08689702302217484, -0.05015949532389641,
- 0.1161409318447113, 0.05103083699941635, 0.10786735266447067, 0.05498139560222626,
- -0.06058799847960472, 0.030504224821925163, 0.017474360764026642, 0.021148908883333206,
- -0.053196053951978683, 0.09110995382070541, 0.027007075026631355, -0.03275725245475769,
- -0.024704916402697563, 0.029507402330636978, 0.005410796031355858, 0.07395300269126892,
- 0.018679136410355568, 0.07251245528459549, 0.007980500347912312, -0.05653761327266693,
- -0.01029406301677227, -0.037447769194841385, 0.03702481463551521, 0.0789702758193016,
- -0.06166969984769821, -0.05635549873113632, -0.045220840722322464,
- -0.032506294548511505, 0.003582888748496771, -0.058062635362148285, 0.10970686376094818,
- 0.08672621101140976, 0.0643870159983635, 0.049631163477897644, -0.03796079009771347,
- 0.06573198735713959, 0.013227316550910473, 0.016206203028559685, 0.05640578269958496,
- -0.012264522723853588, -0.09440182149410248, -0.042318303138017654,
- -0.010242820717394352, 0.06854923814535141, 0.04317687824368477, -0.08847498148679733,
- -0.05286260321736336, -0.03398443013429642, -0.03701448068022728, -0.11910829693078995,
- 0.008664221502840519, -0.010578380897641182, 0.09564191848039627, -0.11160288751125336,
- -0.028531255200505257, -0.0606628954410553, 0.01584034413099289, 0.11780527979135513,
- 0.009473607875406742, -0.047483719885349274, -0.13206729292869568, 0.05987429618835449,
- -0.12125066667795181, 0.0722813755273819, -0.04683090001344681, 0.01597457006573677,
- -0.031754449009895325, -0.11732687056064606, 0.0315430611371994, 0.008234399370849133,
- -0.06078248471021652, -0.053647805005311966, -0.10754604637622833, 0.015508992597460747,
- -0.0385451577603817, -0.07001661509275436, 0.005596064031124115, 0.03964100778102875,
- 0.03797293081879616, 0.09687783569097519, 0.0076759690418839455, -0.05685316026210785,
- 0.035557135939598083, -0.023880090564489365, 0.0586279034614563, 0.12295746058225632,
- -0.021419113501906395, 0.029980367049574852, -0.07049915939569473, -0.0851612240076065,
- -0.06186912953853607, 0.038006339222192764, -0.064626045525074, 0.08795534074306488,
- -0.04097983241081238, -0.012283630669116974, -0.054831184446811676,
- -0.04063381999731064, 0.051570288836956024, -0.01730703003704548, -0.11343590915203094,
- -0.09214556962251663, 0.1320132464170456, -0.025848906487226486, 0.039966437965631485,
- 0.035988375544548035, -0.0348234586417675, 0.06630877405405045, 0.03161920607089996,
- 0.03977621719241142, 0.05832357332110405, 0.08213797956705093, -0.0595710389316082,
- 0.05519826337695122, 0.10725432634353638, -0.0952308401465416, -0.02441757544875145,
- 0.06463344395160675, 0.42733773589134216, -0.22496193647384644, 0.07143709808588028,
- 0.15310916304588318, 0.044717032462358475, 0.017485080286860466, -0.0971909910440445,
- 0.049866341054439545, 0.04156074672937393, 0.18244613707065582, 0.15091942250728607,
- -0.016805576160550117, 0.040791288018226624, -0.06274963170289993, 0.08659747242927551,
- -0.004751360975205898, 0.0477730892598629, -0.01665576733648777, -0.09920769184827805,
- -0.017554996535182, 0.05886133387684822, -0.06035280600190163, 0.017838021740317345,
- 0.010040010325610638, -0.0915282741189003, 0.06940660625696182, 0.11026154458522797,
- 0.026720555499196053, 0.012143012136220932, 0.0572453998029232, -0.09511234611272812,
- 0.04543062299489975, 0.059656884521245956, 0.03593895956873894, -0.10365437716245651,
- 0.01888503134250641, -0.029818829149007797, -0.12146864831447601, 0.13522812724113464,
- 0.0135771119967103, 0.06238754093647003, 0.08629001677036285, -0.08651668578386307,
- 0.04372665658593178, -0.04159185662865639, -0.05497540533542633, 0.07435189932584763,
- 0.03967447206377983, -0.004726311657577753, 0.07225582748651505, 0.12760059535503387,
- -0.045984651893377304, -0.004948233719915152, -0.060371555387973785,
- 0.03565802052617073, 0.1490458846092224, -0.05594769865274429, 0.02675868384540081,
- -0.00836617685854435, 0.06040379777550697, 0.01392502710223198, -0.08907201141119003,
- -0.06624817848205566, -0.04465218633413315, -0.06143491342663765, 0.05349675565958023,
- 0.05888298526406288, 0.00005926028825342655, -0.2514522969722748, -0.01562860980629921,
- -0.038128212094306946, 0.014876815490424633, 0.18851685523986816, -0.09139565378427505,
- -0.017306527122855186, 0.0027776784263551235, -0.04489603266119957, 0.00139857386238873,
- -0.08814971148967743, -0.007983042858541012, -0.13306686282157898, 0.07513386011123657,
- 0.09018097072839737, 0.04348728060722351, -0.12353833019733429, 0.09929512441158295,
- -0.09790543466806412, 0.06615503877401352, -0.022050239145755768, 0.0020320387557148933,
- -0.04024152830243111, -0.09146928787231445, 0.09541714936494827, 0.029287755489349365,
- -0.09385266900062561, 0.05376966670155525, -0.021210545673966408, -0.04860074445605278,
- -0.10779082775115967, -0.09103769809007645, -0.0043056420981884, -0.1042928397655487,
- 0.017081884667277336, -0.08759783208370209, -0.009620197117328644, -0.0499371774494648,
- 0.006152074318379164, 0.032824546098709106, 0.09835606068372726, -0.0014194026589393616,
- -0.10105573385953903, -0.023110011592507362, -0.03609554097056389, 0.030498793348670006,
- 0.004797298461198807, -0.0691099539399147, -0.04913639649748802, 0.08049851655960083,
- 0.007308959495276213, -0.018162138760089874, 0.06386740505695343, -0.05928996950387955,
- 0.09995918720960617, -0.10947231948375702, -0.4662975072860718, 0.06852325052022934,
- 0.014883313328027725, 0.04148293659090996, -0.01125609502196312, -0.09444035589694977,
- 0.04016358405351639, -0.008804482407867908, -0.006462156306952238, 0.08249133080244064,
- -0.05698257312178612, 0.02173890918493271, -0.030964955687522888, -0.11973792314529419,
- -0.05202310532331467, -0.01422941219061613, -0.052926771342754364, 0.09914953261613846,
- -0.03032589517533779, -0.03839379549026489, -0.10041597485542297, 0.04998233541846275,
- -0.010584634728729725, 0.015293953008949757, -0.06005241349339485,
- -0.002437843009829521, -0.01797402650117874, -0.06889211386442184,
- -0.003779598046094179, 0.051767218858003616, 0.057910121977329254,
- -0.054534051567316055, -0.034135330468416214, 0.05580133944749832, 0.009690300561487675,
- 0.1626482605934143, -0.017462458461523056, -0.04015215113759041, -0.14431904256343842,
- 0.0655592679977417, 0.08981803059577942, 0.18156355619430542, -0.03342278301715851,
- 0.07986588031053543, 0.06941212713718414, 0.1322280317544937, 0.06961237639188766,
- 0.039687011390924454, -0.04026557132601738, 0.028693020343780518, 0.010541064664721489,
- -0.0174282006919384, 0.0821368619799614, -0.10580144822597504, -0.03417202830314636,
- -0.03195485845208168, -0.0429554358124733, -0.0068482705391943455, -0.03579341620206833,
- 0.2486497461795807, 0.029456311836838722, 0.023286687210202217, 0.00502089224755764,
- -0.011929725296795368, 0.03330419585108757, -0.11485818028450012, -0.029048088937997818,
- -0.017766112461686134, 0.014608520083129406, -0.01576566882431507, -0.06992140412330627,
- -0.09384743124246597, -0.05847349762916565, -0.0003495478304103017,
- -0.01926252990961075, 0.12216189503669739, -0.00915745459496975, -0.007915222086012363,
- -0.010787755250930786, 0.16286255419254303, 0.013434939086437225, -0.03839244693517685,
- 0.014868788421154022, 0.06631699204444885, 0.03167494758963585, -0.011722843162715435,
- -0.05293325334787369, -0.09860972315073013, -0.01884375512599945, 0.178042933344841,
- -0.04117667302489281, 0.19232286512851715, 0.09087757766246796, -0.015270977281033993,
- -0.062014587223529816, 0.04255715757608414, -0.060395438224077225, 0.014554559253156185,
- -0.5135142803192139, 0.006150314584374428, 0.09199091792106628, -0.017234424129128456,
- 0.013097275979816914, 0.11696809530258179, 0.12847763299942017, -0.03267325460910797,
- -0.04932904988527298, -0.0552188940346241, 0.11842712759971619, -0.0022372298408299685,
- 0.0384521558880806, -0.1314822882413864, 0.01847490482032299, 0.051866672933101654,
- 0.02558794431388378, 0.02261839248239994, 0.03314193710684776, -0.21630942821502686,
- -0.0026106121949851513, -0.024165872484445572, 0.16273899376392365,
- 0.013783100061118603, 0.008779339492321014, 0.12208662182092667, 0.0006068835500627756,
- 0.03132570907473564, 0.021540023386478424, 0.006814595777541399, -0.015768226236104965,
- -0.04433377832174301, -0.05569904297590256, 0.15962004661560059, 0.13814283907413483,
- -0.03570522740483284, 0.00040443806210532784, 12.21636962890625, 0.08467783033847809,
- 0.08685867488384247, -0.07741579413414001, 0.059692054986953735, -0.01478941086679697,
- 0.025486329570412636, -0.06708469241857529, 0.012449606321752071, 0.13184796273708344,
- -0.020408332347869873, -0.02258368767797947, -0.048059865832328796,
- -0.12785717844963074, 0.00803888589143753, -0.07586479932069778, -0.06458383798599243,
- -0.06153504550457001, 0.02605091966688633, -0.0618501640856266, -0.030858658254146576,
- -0.01013113558292389, 0.04100576043128967, 0.010914701968431473, -0.08597821742296219,
- 0.04882408306002617, 0.04781341552734375, -0.03992341458797455, -0.0066737825982272625,
- 0.07514213025569916, 0.024124061688780785, 0.06556622684001923, 0.06613893806934357,
- -0.012931425124406815, 0.06938470900058746, 0.03456626832485199, 0.0781407579779625,
- 0.053720079362392426, -0.00405398104339838, 0.04097877815365791, -0.01899896375834942,
- 0.07570365071296692, 0.0706714317202568, 0.04361196979880333, 0.033100660890340805,
- -0.003915369510650635, 0.054322343319654465, 0.12689997255802155, 0.011774840764701366,
- 0.06948663294315338, 0.15103499591350555, -0.02260529436171055, 0.12327277660369873,
- 0.07001501321792603, 0.04150073975324631, 0.06444598734378815, -0.011710396967828274,
- -0.07130280882120132, 0.07693073153495789, 0.030439261347055435, -0.037791937589645386,
- 0.1292264461517334, 0.02245398238301277, 0.1075393557548523, -0.02386343479156494,
- 0.0557384118437767, 0.09877922385931015, 0.10764513909816742, -0.17636987566947937,
- -0.1336086243391037, 0.025418130680918694, -0.10085629671812057, -0.08759593963623047,
- 0.05670103803277016, 0.07120082527399063, -0.024046393111348152, 0.07723454385995865,
- -0.046313267201185226, 0.012587485834956169, 0.05257108435034752, -0.03324945271015167,
- 0.06092871353030205, -0.01530067715793848, -0.0005817675846628845, 0.04670002683997154,
- 0.04260195046663284, 0.10924340784549713, 0.09163245558738708, 0.0068137673661112785,
- -0.12126938253641129, -0.04855543375015259, 0.072615846991539, -0.000562039262149483,
- -0.050760407000780106, -0.0012756583746522665, -0.04981977865099907,
- 0.05746372789144516, -0.18060627579689026, 0.11946664750576019, 0.06787990033626556,
- -0.08447334915399551, -0.036301229149103165, 0.009000557474792004, 0.039142969995737076,
- 0.008254580199718475, 0.05771506205201149, -0.041952356696128845, 0.010358029045164585,
- 0.053468719124794006, 0.0822836309671402, -0.044024527072906494, 0.13445354998111725,
- 0.08335121721029282, -0.1015835702419281, 0.0019338078564032912, 0.0754314661026001,
- 0.009382170625030994, -0.016620127484202385, 0.05255317687988281, 0.01626337692141533,
- -0.11682827770709991, -0.02917039766907692, -0.0540153793990612, -0.053693804889917374,
- -0.057820774614810944, -0.043985214084386826, 0.0056759268045425415,
- 0.04793008416891098, -0.08852449804544449, -0.025079503655433655, 0.03777926787734032,
- 0.06167200580239296, 0.04171249270439148, -0.04978613555431366, 0.04995705187320709,
- -0.11784130334854126, -0.10637228935956955, 0.04309361055493355, 0.07566802948713303,
- -0.007567332126200199, -0.04862724617123604, -0.053096968680620193,
- -0.06936699151992798, -0.11518026143312454, 0.08479393273591995, 0.14121109247207642,
- 0.06182456016540527, 0.08593427389860153, 0.08762668818235397, -0.07059549540281296,
- -0.04849344864487648, 0.05041677877306938, 0.08019061386585236, 0.038337841629981995,
- 0.03818390145897865, -0.040249843150377274, -0.06337682157754898, 0.1544354408979416,
- -0.025046898052096367, 0.01921886019408703, 0.012700274586677551, -0.007594875060021877,
- 0.15050086379051208, 0.12589532136917114, 0.06469370424747467, 0.08299323171377182,
- 0.08967018872499466, -0.019699811935424805, -0.023269040510058403, 0.02142978645861149,
- -0.014496478252112865, -0.026738855987787247, -0.10318047553300858,
- -0.060908082872629166, 0.03024032898247242, 0.11774426698684692, 0.012668497860431671,
- -0.1106342151761055, 0.0027664126828312874, -0.09668953716754913
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 316,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 39,
- "similarity": 0.9965996742248535
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 35,
- "similarity": 0.9965887665748596
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 15,
- "similarity": 0.9964755177497864
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Hunchly", " Justin Seitz"],
- "epoch_date_downloaded": 1661731200,
- "epoch_date_modified": 1661731200,
- "epoch_date_submitted": 1661731200,
- "flag": null,
- "report_number": 1971,
- "source_domain": "medium.com",
- "submitters": ["Ingrid Dickinson (CSET)"],
- "title": "Bait and Switch: The Failure of Facebook Advertising — An OSINT Investigation",
- "url": "https://medium.com/@hunchly/bait-and-switch-the-failure-of-facebook-advertising-an-osint-investigation-37d693b2a858"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "facebook",
- "name": "Facebook"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "facebook",
- "name": "Facebook"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "facebook-users-posting-legitimate-covid-19-news",
- "name": "Facebook users posting legitimate COVID-19 news"
- },
- {
- "__typename": "Entity",
- "entity_id": "facebook-users",
- "name": "Facebook users"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [102, 127, 84, 16],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1976],
- "vector": [
- -0.056393831968307495, 0.07109836488962173, 0.0089701097458601, -0.0914573073387146,
- 0.08599670231342316, -0.014424493536353111, 0.01283738948404789, 0.04567915201187134,
- 0.04105248674750328, -0.13888095319271088, 0.0027047900948673487, 0.05073251575231552,
- 0.009235425852239132, -0.061317335814237595, 0.028545521199703217, -0.07570593804121017,
- -0.08701859414577484, -0.06669051200151443, -0.00007905371603555977,
- -0.10645509511232376, -0.03800588846206665, -0.004806382581591606,
- 0.0026077902875840664, 0.08903967589139938, 0.004224828910082579, 0.004723711870610714,
- 0.07289385050535202, 0.15192347764968872, -0.014093905687332153, -0.0023746113292872906,
- 0.0028608411084860563, -0.019486606121063232, 0.10988692939281464,
- 0.0017172112129628658, 0.0310992244631052, 0.07661667466163635, 0.036005206406116486,
- -0.01610850915312767, -0.08268340677022934, 0.01593799702823162, 0.013458332978188992,
- 0.218967005610466, -0.0019374402472749352, -0.03774019703269005, 0.05034042149782181,
- 0.01259147934615612, 0.012551229447126389, 0.060750678181648254, -0.009382440708577633,
- -0.01051449403166771, -0.01649298332631588, 0.04580078646540642, -0.05772833526134491,
- 0.010139388963580132, -0.08336110413074493, 0.06504537910223007, 0.04373638331890106,
- -0.0036428021267056465, 0.05658522620797157, -0.046378616243600845,
- -0.01607525162398815, -0.2115306258201599, -0.012018874287605286, -0.017833378165960312,
- 0.08640050888061523, -0.11429047584533691, -0.000036931854992872104,
- 0.033157140016555786, 0.024595661088824272, 0.03092162311077118, 0.05553631857037544,
- -0.02914935164153576, -0.039198871701955795, 0.025834254920482635,
- -0.007281611207872629, -0.01856161840260029, 0.04287508875131607, 0.19176939129829407,
- -0.053859028965234756, 0.029417667537927628, 0.11605134606361389, -0.1260879784822464,
- 0.37019968032836914, 0.03831364959478378, -0.0035682530142366886, -0.030578074976801872,
- 0.07529818266630173, 0.03330516070127487, 0.01850544475018978, 0.04397780820727348,
- -0.03635125234723091, 0.01979687623679638, -0.04447610676288605, 0.02641260251402855,
- 0.04320145025849342, 0.022973710671067238, -0.04905712231993675, -0.03771271929144859,
- -0.0015618146862834692, -0.07772233337163925, -0.0006979749887250364,
- -0.0230653565376997, 0.09387778490781784, 0.02290290780365467, -0.02458689548075199,
- 0.023371921852231026, 0.047463223338127136, -0.09194789081811905, 0.047186851501464844,
- -0.07927576452493668, 0.0043859705328941345, 0.009294778108596802, 0.10372360050678253,
- -0.011712506413459778, 0.05802733451128006, -0.01891089230775833, 0.012250359170138836,
- 0.07667277753353119, 0.06826622039079666, 0.03514695540070534, 0.04396509751677513,
- 0.06263283640146255, 0.0396730899810791, -0.022074369713664055, 0.00047670421190559864,
- -0.05072888359427452, -0.054012320935726166, 0.005247224122285843, -0.03655054420232773,
- 0.04974159225821495, -0.07442214339971542, -0.19572868943214417, 0.05994667485356331,
- 0.0876203179359436, 0.013986874371767044, -0.05691877380013466, 0.05706426128745079,
- -0.049446433782577515, 0.0014870812883600593, -0.01876007951796055,
- -0.023063041269779205, 0.05812755972146988, -0.014607513323426247, 0.05647234246134758,
- 0.10325796902179718, 0.029622141271829605, -0.025436004623770714, -0.08141067624092102,
- 0.018308252096176147, -0.029138930141925812, 0.10423871129751205, -0.0862036794424057,
- -0.05707085505127907, -0.023665038868784904, -0.060907308012247086, 0.6945284605026245,
- 0.09563813358545303, 0.18364132940769196, 0.03493757173418999, -0.0457860603928566,
- 0.16776306927204132, 0.014386683702468872, 0.057380255311727524, -0.04299110919237137,
- -0.0944073498249054, 0.0473879799246788, -0.0697135180234909, -0.02835828997194767,
- 0.028687549754977226, 0.05145157501101494, 0.11085248738527298, 0.012117530219256878,
- 0.09970474988222122, 0.021644599735736847, -0.09891553223133087, -0.04120028764009476,
- 0.04160405695438385, 0.0015576964942738414, -0.143050417304039, -0.017682522535324097,
- 0.05278509855270386, 0.09433320164680481, -0.06913939118385315, 0.032309699803590775,
- -0.037257540971040726, 0.08353681117296219, -0.009598677977919579, 0.06472980976104736,
- -0.040812019258737564, 0.023971309885382652, 0.011261631734669209,
- -0.027919625863432884, 0.0043322364799678326, -0.0879153162240982,
- -0.020381560549139977, 0.12360205501317978, -0.017008928582072258,
- -0.022622058168053627, 0.06251226365566254, -0.0562618263065815, 0.0397823266685009,
- 0.021569116041064262, 0.17632146179676056, -0.11530818045139313, -0.021609488874673843,
- -0.01409896556288004, -0.037839289754629135, 0.027941817417740822,
- -0.015952980145812035, -0.03385328873991966, -0.059561338275671005, 0.0774165540933609,
- -0.0023052229080349207, -0.012591524980962276, 0.05591427907347679,
- -0.07042423635721207, 0.026507046073675156, 0.0421425960958004, -0.04807358235120773,
- -0.034679945558309555, 0.05838359147310257, 0.019130965694785118, -0.04211582988500595,
- -0.052841078490018845, 0.039011627435684204, 0.0641382709145546, 0.04895584285259247,
- -0.03358793258666992, 0.06820371001958847, -0.007166040595620871, -0.03987780213356018,
- 0.08630337566137314, 0.012117065489292145, 0.019641894847154617, 0.09702014923095703,
- -0.07022927701473236, -0.04621252045035362, -0.032058484852313995, -0.04033792391419411,
- 0.02692480944097042, -0.0012078194413334131, 0.08573897927999496, 0.10766889899969101,
- 0.0814417377114296, 0.04262451082468033, 0.0336604006588459, 0.031534526497125626,
- -0.009133245795965195, 0.020114457234740257, 0.044674113392829895,
- -0.050098344683647156, -0.011529299430549145, -0.009233897551894188,
- -0.013262583874166012, 0.018753744661808014, 0.00005800761573482305,
- -0.04519326239824295, -0.024756457656621933, -0.019031725823879242,
- -0.05084604397416115, -0.09253615885972977, -0.040104128420352936, 0.09475672990083694,
- 0.06738491356372833, -0.027228210121393204, -0.11543233692646027, -0.0581626333296299,
- 0.014512855559587479, 0.02065548300743103, 0.009091407991945744, -0.006806768011301756,
- -0.09384378045797348, 0.031142450869083405, 0.034674011170864105, 0.026072019711136818,
- 0.0015721215168014169, -0.027306053787469864, 0.0091200340539217, -0.044055722653865814,
- 0.008087300695478916, -0.02930130809545517, 0.015031194314360619, -0.0398133248090744,
- -0.08127138018608093, -0.07173953950405121, 0.0033555475529283285,
- -0.006485348101705313, -0.03252255171537399, 0.021598944440484047, 0.040284596383571625,
- 0.020815301686525345, 0.025444187223911285, -0.014137791469693184, 0.05264558643102646,
- -0.07176624238491058, -0.019603118300437927, 0.028218941763043404, -0.04249080643057823,
- 0.039351873099803925, -0.020219193771481514, -0.08654633909463882, 0.02022279053926468,
- 0.01598430424928665, -0.05434416979551315, 0.05947012081742287, -0.011180311441421509,
- 0.04371388256549835, -0.08027664572000504, -0.00601932080462575, 0.0649264007806778,
- -0.06603866815567017, -0.07192500680685043, -0.0928918868303299, 0.1282762587070465,
- 0.013758973218500614, -0.011911059729754925, -0.001073209336027503,
- -0.03991639241576195, 0.009242040105164051, -0.030954604968428612,
- -0.013772081583738327, -0.01068560779094696, 0.017911436036229134, 0.018034489825367928,
- -0.013097808696329594, 0.06756532937288284, -0.022151602432131767, 0.06287641078233719,
- 0.0801934152841568, 0.40454021096229553, -0.1881864368915558, 0.0653848648071289,
- 0.0661001056432724, 0.020810537040233612, 0.03422432392835617, -0.039107803255319595,
- 0.08900988101959229, 0.09230943769216537, 0.11412426829338074, 0.05494280532002449,
- -0.036102354526519775, 0.029894379898905754, -0.0985611155629158, 0.09503781795501709,
- -0.010384357534348965, -0.008049891330301762, -0.021565129980444908,
- -0.03742174431681633, -0.04644875228404999, 0.03870503976941109, -0.02519506774842739,
- -0.022627972066402435, -0.03086961805820465, -0.015914693474769592,
- 0.054233208298683167, 0.04546557366847992, 0.06846223026514053, -0.011375566013157368,
- 0.024035077542066574, 0.043411437422037125, 0.01716795191168785, 0.033881328999996185,
- 0.018359370529651642, -0.1102079227566719, 0.06768518686294556, -0.07959479838609695,
- -0.09412028640508652, 0.06719893962144852, 0.003953562583774328, 0.09344243258237839,
- 0.029692379757761955, -0.0024445736780762672, 0.00967367272824049,
- -0.000218340297578834, -0.05498899891972542, 0.008877220563590527, 0.09127381443977356,
- 0.0529562346637249, 0.11439671367406845, 0.17751286923885345, -0.04159234091639519,
- -0.04345698654651642, -0.06263871490955353, 0.04001809284090996, 0.11727163940668106,
- -0.059906307607889175, -0.00009218492050422356, -0.0013386886566877365,
- -0.05858023464679718, -0.005651876796036959, -0.037818752229213715,
- -0.07249358296394348, -0.021762792021036148, -0.02958405390381813, 0.03235417231917381,
- 0.02657114714384079, -0.07614054530858994, -0.1954440474510193, -0.0855913758277893,
- -0.04240773245692253, -0.006998640950769186, 0.1708265244960785, -0.09292884916067123,
- 0.03435058146715164, 0.04245613515377045, -0.02759711630642414, -0.006444419734179974,
- -0.07050566375255585, -0.01212029904127121, -0.035485584288835526, 0.036929648369550705,
- 0.039988622069358826, 0.053951606154441833, -0.0626450851559639, 0.10986886918544769,
- -0.09008441120386124, 0.05370669811964035, -0.020057637244462967, -0.021629778668284416,
- 0.028827376663684845, -0.07305848598480225, 0.01671503484249115, 0.017175838351249695,
- -0.047037508338689804, 0.0027834672946482897, -0.017841488122940063,
- -0.04723363369703293, -0.06464248895645142, -0.049263227730989456, -0.04655544087290764,
- -0.0441620871424675, 0.05492715537548065, -0.11972030252218246, 0.0023996417876333,
- 0.002192612737417221, -0.0408194437623024, -0.0326409712433815, 0.0226433165371418,
- -0.005934091750532389, -0.16018307209014893, -0.04314720630645752, 0.02542758919298649,
- 0.03922834247350693, -0.0030062070582062006, -0.01738770678639412, 0.011039302684366703,
- 0.09571054577827454, 0.05083348602056503, 0.013325494714081287, 0.005657763220369816,
- -0.050356194376945496, 0.06697539985179901, -0.12408499419689178, -0.5457767844200134,
- 0.054774776101112366, 0.025669362396001816, 0.03221121057868004, 0.05187748372554779,
- -0.0641855001449585, 0.0541057363152504, 0.012990517541766167, -0.05835998058319092,
- 0.09019892662763596, -0.057797621935606, 0.04594924673438072, -0.015103618614375591,
- 0.007427082862704992, -0.02735290303826332, -0.08167586475610733, -0.054751452058553696,
- 0.03924407437443733, -0.03469491004943848, -0.027709227055311203, -0.08033645153045654,
- 0.01942445896565914, -0.025307146832346916, -0.011197233572602272, 0.026728404685854912,
- 0.011328310705721378, -0.070523202419281, -0.05023825913667679, 0.031892891973257065,
- 0.10155825316905975, 0.03579722344875336, -0.06825476139783859, 0.0028546322137117386,
- 0.08831607550382614, -0.006097776815295219, 0.12465540319681168, 0.03071736916899681,
- -0.011293796822428703, -0.09547586739063263, 0.09191543608903885, 0.07460726797580719,
- 0.18862155079841614, 0.025202976539731026, 0.04959357529878616, -0.005317655857652426,
- 0.150287464261055, 0.05303594097495079, 0.04119141027331352, -0.04840542748570442,
- -0.01204011868685484, -0.016820013523101807, -0.043538402765989304,
- 0.059820421040058136, -0.05738979950547218, -0.02076508104801178, -0.01445409469306469,
- -0.012955140322446823, -0.040972184389829636, -0.022548716515302658,
- 0.19339822232723236, -0.012831605970859528, 0.02486085146665573, 0.014400424435734749,
- -0.03526352345943451, 0.018421262502670288, -0.08011939376592636, -0.14336083829402924,
- -0.017889101058244705, 0.05532395467162132, 0.021990874782204628, -0.017327526584267616,
- -0.09294381737709045, 0.00906375702470541, -0.02049208991229534, 0.007738713175058365,
- 0.12556377053260803, -0.03445224463939667, 0.06017395481467247, -0.04510880634188652,
- 0.1280527114868164, -0.022864827886223793, 0.034957777708768845, 0.06456697732210159,
- 0.1385347694158554, 0.05562854930758476, -0.035501811653375626, -0.0442521758377552,
- -0.032306306064128876, 0.005180056672543287, 0.14489535987377167, -0.0545416921377182,
- 0.16243675351142883, 0.055845826864242554, -0.0036822620313614607, -0.0141599141061306,
- 0.020804446190595627, 0.007176805753260851, 0.033308956772089005, -0.4563693106174469,
- -0.05698283761739731, 0.1100725382566452, 0.017367983236908913, -0.0026784739457070827,
- 0.11051323264837265, -0.014841672964394093, -0.059718869626522064,
- -0.027987129986286163, -0.06986746191978455, 0.0974857360124588, 0.015292977914214134,
- 0.06338903307914734, -0.10781098902225494, 0.0043781655840575695, 0.07322888821363449,
- -0.02432067133486271, 0.0030722343362867832, 0.017907598987221718, -0.21958884596824646,
- -0.014014272950589657, -0.04435919597744942, 0.13056617975234985, -0.006255430169403553,
- 0.03209459036588669, 0.1004345566034317, -0.092107392847538, 0.054247766733169556,
- 0.02303563803434372, 0.004735217895358801, 0.0823422446846962, -0.026413001120090485,
- -0.047651246190071106, 0.10925385355949402, 0.08951698988676071, 0.158970907330513,
- -0.04119805246591568, 11.831770896911621, 0.04215160384774208, 0.04057539254426956,
- -0.0858084186911583, 0.03232259675860405, -0.05985080823302269, 0.02103934809565544,
- -0.08674667030572891, 0.09769972413778305, 0.11517421901226044, -0.023475348949432373,
- 0.007129210513085127, -0.03788849338889122, -0.11806512624025345, 0.002617942402139306,
- -0.03486485406756401, -0.04841192811727524, -0.08479832857847214, 0.002631358802318573,
- -0.04317872226238251, -0.060135990381240845, 0.09254483133554459, 0.06882252544164658,
- 0.026167919859290123, -0.07023245841264725, 0.09204713255167007, -0.01600363478064537,
- 0.025222674012184143, 0.0061699943616986275, -0.005999049637466669, 0.03160031884908676,
- 0.01628025621175766, 0.05174461379647255, 0.06075013428926468, -0.0010509887943044305,
- 0.057229168713092804, 0.05340887978672981, 0.008588684722781181, 0.041893694549798965,
- 0.04477595537900925, -0.020013948902487755, -0.017674323171377182, -0.03757498413324356,
- 0.07968053966760635, 0.03437284007668495, 0.06555341184139252, 0.03493659943342209,
- 0.16287648677825928, -0.0025422920007258654, 0.07371050119400024, 0.07570257037878036,
- 0.004425466526299715, 0.10501228272914886, 0.036237314343452454, -0.02890852652490139,
- 0.07264450192451477, -0.04280943423509598, -0.08249826729297638, 0.08614082634449005,
- 0.02367987670004368, -0.0474637933075428, 0.10308022052049637, -0.0017648087814450264,
- 0.11216317862272263, -0.009769491851329803, 0.04300876334309578, 0.047382015734910965,
- 0.09804608672857285, -0.07496900111436844, -0.0623437762260437, 0.010181162506341934,
- -0.08065199106931686, -0.08445581048727036, 0.024097803980112076, 0.0952678918838501,
- -0.044166360050439835, 0.00966249592602253, -0.020498448982834816, 0.0172401312738657,
- -0.033706311136484146, 0.01758275181055069, 0.0559251569211483, -0.027331518009305,
- 0.006811003666371107, 0.07387132197618484, -0.01921996846795082, 0.052003685384988785,
- 0.1395968645811081, 0.011888484470546246, -0.07231967151165009, -0.055332452058792114,
- 0.08702101558446884, 0.0068078115582466125, -0.05846830829977989,
- -0.0029403092339634895, -0.07582355290651321, 0.017656786367297173, -0.1857677400112152,
- 0.06434935331344604, 0.08496291190385818, -0.049766622483730316, -0.04244949296116829,
- -0.008532737381756306, 0.06903792917728424, -0.021497169509530067, 0.01803489774465561,
- -0.0809759870171547, 0.028089217841625214, -0.02954380214214325, 0.0612444244325161,
- -0.01946626976132393, 0.0012929791118949652, 0.060481876134872437, -0.05468345806002617,
- 0.0689464807510376, 0.042531512677669525, -0.021781262010335922, -0.02292310819029808,
- 0.0730324313044548, 0.004581741522997618, -0.0773506909608841, -0.01235254481434822,
- -0.07203516364097595, -0.037767887115478516, 0.008944297209382057,
- -0.005963432602584362, -0.003869635984301567, -0.008506541140377522,
- -0.004393576178699732, -0.0018085244810208678, 0.04246491193771362,
- 0.052535682916641235, 0.10586874932050705, -0.00462306197732687, 0.028152620419859886,
- -0.02960830368101597, -0.01644393615424633, 0.09821819514036179, 0.07384847849607468,
- 0.11647088080644608, -0.06874053925275803, -0.02786877192556858, -0.049936868250370026,
- -0.10614079236984253, 0.05036741495132446, 0.04761962592601776, 0.004518219269812107,
- -0.01974974200129509, -0.004163417033851147, -0.0694042444229126, 0.0008239398594014347,
- 0.07915264368057251, 0.01504407450556755, 0.01779617927968502, 0.0022203789558261633,
- -0.06284154951572418, -0.02215556986629963, 0.08172357827425003, -0.05196963623166084,
- 0.004020140506327152, 0.014262450858950615, -0.08926932513713837, 0.062410928308963776,
- 0.1293392926454544, 0.03134795278310776, 0.01703573763370514, -0.0002034645149251446,
- 0.044402360916137695, 0.037095509469509125, 0.023868251591920853, 0.01116836629807949,
- -0.03531409054994583, -0.10768160223960876, -0.08709441870450974, 0.055872973054647446,
- 0.1108819991350174, 0.0712842121720314, -0.1614237129688263, -0.030834238976240158,
- 0.021756542846560478
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 317,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 84,
- "similarity": 0.998241662979126
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 16,
- "similarity": 0.9981613159179688
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 127,
- "similarity": 0.998043954372406
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Rob Price"],
- "epoch_date_downloaded": 1661731200,
- "epoch_date_modified": 1661817600,
- "epoch_date_submitted": 1661817600,
- "flag": null,
- "report_number": 1976,
- "source_domain": "businessinsider.com",
- "submitters": ["Ingrid Dickinson (CSET)"],
- "title": "Facebook is wrongly blocking news articles about the coronavirus pandemic",
- "url": "https://www.businessinsider.com/facebook-blocking-coronavirus-articles-bug-2020-3"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "facebook",
- "name": "Facebook"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "facebook",
- "name": "Facebook"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "facebook-users",
- "name": "Facebook users"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [113, 267, 84, 205, 213],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1978, 1977],
- "vector": [
- -0.059525277465581894, 0.04549398273229599, -0.0030319534707814455,
- -0.07812269032001495, 0.030809523537755013, -0.05137309432029724, 0.026503492146730423,
- 0.04063165932893753, 0.0448770746588707, -0.13895311951637268, 0.007023141253739595,
- 0.02937367744743824, -0.00041542574763298035, -0.11778277158737183, 0.0246998630464077,
- -0.12333887815475464, -0.08516614139080048, 0.007488775998353958,
- -0.0015210737474262714, -0.1321609914302826, -0.06571465730667114, 0.018053309991955757,
- 0.034242257475852966, 0.09282806515693665, -0.015996338799595833, 0.017551889643073082,
- 0.07413608580827713, 0.1450708955526352, -0.04936247691512108, 0.04446253925561905,
- 0.004600756336003542, -0.07881850749254227, 0.1231163889169693, 0.025067325681447983,
- 0.011568091809749603, 0.13518932461738586, 0.025910289958119392, -0.06234140694141388,
- -0.07628969103097916, -0.011236250400543213, -0.02207239344716072, 0.2219667136669159,
- -0.012923341244459152, -0.03964410349726677, 0.06810532510280609, 0.004269014112651348,
- 0.027900584042072296, 0.05605068430304527, 0.003905924502760172, -0.01929943822324276,
- -0.026742130517959595, 0.065654456615448, -0.06771355122327805, 0.013883460313081741,
- -0.0798356756567955, 0.07178136706352234, 0.0364227294921875, -0.04528374969959259,
- 0.02981514483690262, -0.039131246507167816, -0.028027189895510674, -0.22343993186950684,
- -0.08167782425880432, -0.041624974459409714, 0.06864166259765625, -0.06158851087093353,
- -0.00045541441068053246, 0.015356947667896748, 0.02111923322081566, 0.05038182809948921,
- 0.02736571431159973, -0.065708689391613, 0.0003093741834163666, 0.010555414482951164,
- 0.03782352805137634, -0.01741999201476574, 0.033994633704423904, 0.21149411797523499,
- -0.06885130703449249, 0.017220251262187958, 0.10041891038417816, -0.06950777024030685,
- 0.3872295022010803, -0.0047501507215201855, -0.029619960114359856, 0.03191915899515152,
- 0.07476682960987091, 0.023339608684182167, -0.011072340421378613, 0.02803053706884384,
- -0.054036885499954224, 0.05043435096740723, -0.02018754370510578, -0.007260432466864586,
- 0.04040420055389404, 0.020412765443325043, -0.012259711511433125, 0.00704132579267025,
- 0.015761522576212883, -0.04554044082760811, 0.0333620049059391, -0.01287840399891138,
- 0.05868980288505554, 0.07666780054569244, -0.037815701216459274, 0.015829093754291534,
- 0.047253698110580444, -0.06064970791339874, 0.007823728024959564, -0.030598198994994164,
- 0.023041043430566788, 0.009165827184915543, 0.05118396878242493, 0.006517588160932064,
- 0.047792524099349976, -0.03253956139087677, -0.01418633759021759, 0.04013625532388687,
- 0.07406431436538696, 0.005204109475016594, 0.021002884954214096, 0.06907564401626587,
- 0.081721231341362, -0.05702976882457733, -0.019317369908094406, -0.027979649603366852,
- -0.051149629056453705, -0.000019219936802983284, -0.037327516824007034,
- 0.05633632093667984, -0.06346175074577332, -0.17358168959617615, 0.04757125303149223,
- 0.08866988122463226, 0.014684662222862244, -0.059440962970256805, 0.042419783771038055,
- -0.056540291756391525, 0.029852457344532013, 0.007594647351652384,
- -0.014348472468554974, 0.09458594024181366, 0.0020083514973521233, 0.05569669231772423,
- 0.07313907891511917, 0.028234820812940598, -0.04457081854343414, -0.05631902813911438,
- 0.024168014526367188, -0.020881453529000282, 0.06396039575338364, -0.12767992913722992,
- -0.03511212766170502, -0.0001168539747595787, 0.012806429527699947, 0.6444792747497559,
- 0.08928219974040985, 0.16880172491073608, 0.027022162452340126, -0.01993338018655777,
- 0.14880841970443726, 0.016016002744436264, 0.05523385480046272, -0.09422138333320618,
- -0.057912103831768036, 0.026807677000761032, -0.06297826766967773,
- -0.041132159531116486, -0.0003434917889535427, 0.04315242916345596, 0.07557807117700577,
- 0.02947378344833851, 0.11095545440912247, 0.0352453887462616, -0.07766540348529816,
- -0.05534666031599045, 0.024270059540867805, -0.017076263204216957, -0.1372368484735489,
- -0.03472448140382767, 0.08491073548793793, 0.0891990065574646, -0.04214882850646973,
- 0.01812821812927723, -0.03696077689528465, 0.05666561797261238, -0.029482759535312653,
- 0.02944548800587654, -0.02700209803879261, 0.04784156382083893, 0.011928152292966843,
- 0.07360345125198364, -0.004963793326169252, -0.126215398311615, -0.012081124819815159,
- 0.1238955408334732, -0.009687838144600391, -0.04239027574658394, 0.08374004065990448,
- -0.059645943343639374, 0.016607578843832016, -0.004483472555875778, 0.14620324969291687,
- -0.12912806868553162, -0.0701388269662857, 0.00016999943181872368, -0.04567655175924301,
- 0.04369349032640457, -0.025280307978391647, -0.010356169193983078, -0.0484655536711216,
- 0.09526079893112183, 0.057325176894664764, 0.03045124188065529, 0.04714588448405266,
- -0.05706867575645447, 0.031662289053201675, 0.015640538185834885, 0.03820861130952835,
- -0.05517342686653137, 0.06946538388729095, 0.03827403858304024, -0.08000660687685013,
- -0.029394321143627167, 0.04676796495914459, 0.11190025508403778, 0.014047564938664436,
- -0.017732778564095497, 0.044822439551353455, -0.0036186077632009983,
- -0.0429709330201149, 0.05741304159164429, 0.044976212084293365, -0.01525032613426447,
- 0.059392496943473816, -0.10793229937553406, -0.01846526376903057, -0.045008014887571335,
- -0.0008720892947167158, 0.002096251118928194, -0.011789752170443535,
- 0.06307193636894226, 0.09525792300701141, 0.06597556918859482, 0.035505153238773346,
- 0.029338784515857697, 0.036480862647295, 0.028164606541395187, 0.006339075043797493,
- 0.09680290520191193, -0.005328578408807516, -0.055989690124988556, -0.03603018820285797,
- 0.02027764916419983, 0.015412497334182262, 0.03085252270102501, -0.06388266384601593,
- -0.014930328354239464, -0.027918078005313873, -0.05942981690168381,
- -0.08283132314682007, -0.06797170639038086, 0.06626750528812408, 0.051936741918325424,
- -0.04085410758852959, -0.10978493094444275, -0.06334028393030167, 0.01997804269194603,
- 0.06690730154514313, -0.01930045709013939, -0.0287738349288702, -0.07807651907205582,
- 0.02509079873561859, 0.006541130132973194, 0.037991393357515335, -0.016223758459091187,
- 0.021358516067266464, -0.05849526822566986, -0.06862637400627136, -0.020354801788926125,
- 0.002027691574767232, -0.0055420901626348495, -0.031309012323617935,
- -0.07528206706047058, -0.08451160788536072, -0.03272199258208275, 0.02314380183815956,
- -0.03836404159665108, 0.051312536001205444, 0.02681800350546837, 0.03169337660074234,
- -0.021389681845903397, 0.009898057207465172, 0.07686394453048706, -0.04788391664624214,
- -0.025703109800815582, 0.07681819796562195, -0.004877232480794191,
- -0.00003154325531795621, 0.019525891169905663, -0.023997778072953224,
- -0.041048113256692886, -0.014942489564418793, -0.03766784444451332, 0.06705977022647858,
- -0.015872834250330925, -0.00755535252392292, -0.03754027187824249,
- -0.003558098804205656, 0.06382894515991211, -0.07631686329841614, -0.07081076502799988,
- -0.056392066180706024, 0.1330694854259491, -0.026319753378629684, 0.0028025470674037933,
- -0.0011462196707725525, -0.06669781357049942, 0.02290312945842743, 0.016043120995163918,
- 0.025835305452346802, 0.019225992262363434, 0.054764218628406525, -0.018248574808239937,
- 0.001882258104160428, 0.06688623130321503, -0.025077644735574722, 0.05285119265317917,
- 0.07860125601291656, 0.4285282790660858, -0.1538243591785431, 0.08585289865732193,
- 0.050530388951301575, -0.018809029832482338, 0.031406767666339874, -0.0456494577229023,
- 0.0701676607131958, 0.06784956157207489, 0.11165247112512589, 0.04903539642691612,
- -0.043997008353471756, 0.02982589229941368, -0.05296436697244644, 0.08899398148059845,
- -0.0009855395182967186, 0.023655513301491737, -0.029748596251010895,
- 0.005670555401593447, -0.03754371404647827, 0.060569219291210175, -0.037993818521499634,
- -0.003037954680621624, -0.026466509327292442, -0.041016317903995514,
- 0.025270216166973114, 0.024963147938251495, 0.042346686124801636, -0.030877389013767242,
- 0.008804397657513618, 0.029079802334308624, 0.009592975489795208, -0.006953747011721134,
- 0.08382366597652435, -0.08127845823764801, 0.030166929587721825, -0.05904952436685562,
- -0.1124669685959816, 0.05732621252536774, -0.01823275350034237, 0.08252181857824326,
- 0.01955472119152546, 0.04623660817742348, 0.012699857354164124, 0.032755136489868164,
- -0.05863237380981445, 0.022447342053055763, 0.03974493592977524, 0.041013799607753754,
- 0.09475944936275482, 0.1615464687347412, -0.028685158118605614, -0.03761814907193184,
- -0.08334611356258392, 0.045856453478336334, 0.10988724231719971, -0.0440836101770401,
- 0.017588278278708458, 0.04349813610315323, -0.013558857142925262, 0.004746096208691597,
- -0.03253496438264847, -0.07383790612220764, 0.011005434207618237, -0.012455630116164684,
- 0.09779180586338043, 0.0324026495218277, -0.052683696150779724, -0.13988043367862701,
- -0.04487273097038269, -0.04976911097764969, 0.007640293333679438, 0.17690390348434448,
- -0.09111997485160828, 0.055956918746232986, 0.02083301544189453, 0.015335268341004848,
- 0.033455900847911835, -0.059947699308395386, -0.011388551443815231,
- -0.030839471146464348, 0.026558099314570427, 0.04654761031270027, 0.04110117256641388,
- -0.05233773589134216, 0.06190323457121849, -0.08661414682865143, 0.01743997633457184,
- 0.011859305202960968, -0.01999562792479992, 0.04841553419828415, -0.062104515731334686,
- 0.003684033639729023, 0.022255443036556244, -0.03444492071866989, -0.01445769239217043,
- -0.014540383592247963, -0.018112972378730774, -0.06778739392757416, -0.0784083679318428,
- -0.05752010643482208, -0.04403814673423767, 0.033304858952760696, -0.09815692901611328,
- 0.007150537334382534, -0.042140450328588486, 0.01679474301636219, -0.032035429030656815,
- 0.043307360261678696, 0.01023433543741703, -0.13677236437797546, -0.05187709257006645,
- 0.033275067806243896, 0.0361984446644783, -0.023267712444067, -0.08018460869789124,
- 0.021551404148340225, 0.08471700549125671, 0.01445828564465046, -0.048211611807346344,
- 0.04036683961749077, -0.09225450456142426, 0.06802497059106827, -0.09226354956626892,
- -0.49903279542922974, 0.06371831148862839, 0.021427758038043976, 0.053208157420158386,
- -0.0010800838936120272, -0.07798228412866592, 0.07753480970859528, 0.032690681517124176,
- -0.015440128743648529, 0.07662753015756607, -0.04965154081583023, 0.043754808604717255,
- -0.019068751484155655, -0.014872996136546135, -0.008857756853103638,
- -0.12480480968952179, -0.03954095393419266, 0.0017444065306335688,
- -0.028133925050497055, -0.0619618222117424, -0.08241909742355347, 0.026965484023094177,
- 0.016169071197509766, -0.006393155083060265, 0.0109706437215209, 0.06077326461672783,
- -0.037782542407512665, -0.0427425354719162, 0.041727229952812195, 0.036646515130996704,
- 0.015606050379574299, -0.06994948536157608, -0.009899750351905823, 0.0779537558555603,
- 0.01164516992866993, 0.10676805675029755, 0.019698329269886017, 0.03835481405258179,
- -0.08046373724937439, 0.09547217190265656, 0.051949795335531235, 0.18963512778282166,
- 0.02566492184996605, 0.050466328859329224, 0.026007557287812233, 0.1344309151172638,
- 0.009532343596220016, 0.026596786454319954, -0.0566265694797039, 0.029265349730849266,
- -0.00285906670615077, -0.009630002081394196, 0.06765792518854141, -0.09619307518005371,
- -0.018036238849163055, -0.047323815524578094, -0.011689597740769386,
- -0.011621211655437946, 0.00025700731202960014, 0.15021291375160217,
- 0.014592288061976433, 0.0026639881543815136, 0.034201640635728836,
- -0.0031356769613921642, 0.020326294004917145, -0.08938636630773544,
- -0.11054809391498566, 0.016842007637023926, 0.007971404120326042, 0.026926640421152115,
- -0.0179012268781662, -0.10338394343852997, 0.004677562974393368, -0.019196059554815292,
- -0.0034836584236472845, 0.07760738581418991, -0.08408243954181671, 0.012198364362120628,
- -0.04749800264835358, 0.11381387710571289, 0.016731351613998413, 0.01197428721934557,
- 0.06292524188756943, 0.089196115732193, 0.01924460008740425, -0.05570981651544571,
- -0.02922891080379486, -0.08909539133310318, -0.025557659566402435, 0.14574119448661804,
- -0.04013362154364586, 0.13476696610450745, 0.015093870460987091, -0.03660522401332855,
- -0.03007003664970398, 0.009039107710123062, -0.00752092432230711, -0.018189167603850365,
- -0.4681209325790405, -0.02848067507147789, 0.09117311984300613, 0.014355717226862907,
- 0.03687417879700661, 0.09841115027666092, 0.017386918887495995, -0.043379418551921844,
- -0.0075241439044475555, -0.10386350750923157, 0.12003803253173828,
- -0.004355642944574356, 0.04030219465494156, -0.12098630517721176, 0.05119718611240387,
- 0.10484856367111206, -0.04581732675433159, -0.0002111300127580762, 0.020305506885051727,
- -0.24898844957351685, -0.03287672623991966, -0.0396478995680809, 0.15389931201934814,
- 0.0014076326042413712, 0.03326043486595154, 0.06940902769565582, -0.045275330543518066,
- 0.01690468192100525, 0.03442299738526344, -0.02295318804681301, 0.0717105120420456,
- -0.02591194398701191, -0.013585291802883148, 0.10409974306821823, 0.1285363733768463,
- 0.10239364206790924, -0.03034968301653862, 11.764406204223633, 0.06796050071716309,
- 0.0811610072851181, -0.09644260257482529, 0.04432932287454605, -0.0320640429854393,
- 0.03891538083553314, -0.10257400572299957, 0.0754450112581253, 0.10133007913827896,
- -0.018769200891256332, -0.04123038798570633, -0.05820208787918091, -0.05609247833490372,
- -0.0007917126640677452, -0.003930468112230301, -0.04697179049253464,
- -0.023906957358121872, 0.03808794543147087, -0.03650890663266182, -0.04424142464995384,
- 0.039934344589710236, 0.07179403305053711, 0.05664438009262085, -0.07922976464033127,
- 0.07085937261581421, -0.0004384932108223438, -0.002709571272134781,
- -0.008380083367228508, -0.024572405964136124, 0.016235405579209328, 0.03212390094995499,
- 0.09213690459728241, 0.0586261972784996, -0.029483916237950325, 0.05919467285275459,
- 0.02800721861422062, -0.026192929595708847, 0.002024225424975157, 0.050905991345644,
- -0.02141517773270607, -0.006328267510980368, -0.026268068701028824, 0.0702732503414154,
- 0.03984026610851288, 0.06024754047393799, 0.020192451775074005, 0.13679645955562592,
- 0.030094105750322342, 0.07166565954685211, 0.08473844826221466, 0.003942391369491816,
- 0.06991875171661377, 0.084959015250206, 0.006689184345304966, 0.07285749912261963,
- -0.03522038459777832, -0.04763762652873993, 0.10153144598007202, 0.015170380473136902,
- -0.027543406933546066, 0.07112772762775421, 0.010958172380924225, 0.10070676356554031,
- 0.021703528240323067, 0.0524727925658226, 0.02939191646873951, 0.14268189668655396,
- -0.12812680006027222, -0.07609867304563522, 0.05253244936466217, -0.0553467720746994,
- -0.04914311692118645, 0.04002698138356209, 0.10693881660699844, -0.021893272176384926,
- 0.013852672651410103, 0.025182904675602913, 0.0222175270318985, -0.048490483313798904,
- 0.007968863472342491, 0.032657478004693985, -0.05896583944559097, -0.019367966800928116,
- 0.03650148957967758, 0.005628474988043308, 0.09680302441120148, 0.1368369460105896,
- -0.013101646676659584, -0.07068028301000595, -0.09245185554027557, 0.08239813148975372,
- 0.017417743802070618, -0.037566643208265305, 0.007049964740872383, -0.07466264814138412,
- -0.004556312225759029, -0.1809660792350769, 0.08651198446750641, 0.10307027399539948,
- -0.05594955384731293, -0.04911937937140465, -0.00429044384509325, 0.12513741850852966,
- 0.019330337643623352, -0.011664613150060177, -0.10662372410297394, 0.032178208231925964,
- 0.004281904082745314, 0.05362449213862419, -0.0432855524122715, 0.019706569612026215,
- 0.010744985193014145, -0.04500138387084007, 0.07287103682756424, 0.053141556680202484,
- -0.08022157102823257, -0.00956028513610363, 0.09488366544246674, 0.029210221022367477,
- -0.09620828926563263, -0.024452589452266693, -0.04145432636141777, -0.05561167001724243,
- 0.01371932215988636, -0.061210088431835175, 0.014531735330820084,
- -0.0006464091129601002, -0.026921238750219345, -0.019435491412878036,
- 0.03306053578853607, 0.07437141984701157, 0.13022851943969727, 0.04280228912830353,
- 0.06765760481357574, -0.029539616778492928, 0.0028076516464352608, 0.08614650368690491,
- 0.0314299575984478, 0.06036961078643799, -0.05981380492448807, -0.00140696344897151,
- -0.030178889632225037, -0.10183306038379669, 0.016093896701931953, 0.05481967702507973,
- -0.005700228735804558, -0.020871493965387344, 0.014209374785423279,
- -0.04577022045850754, -0.00034549832344055176, 0.05460990220308304,
- 0.009437471628189087, 0.016148775815963745, 0.0024279202334582806, -0.04146642982959747,
- -0.010408507660031319, 0.0877295508980751, -0.013712269254028797, -0.012103953398764133,
- 0.06222004070878029, -0.10954246670007706, 0.052815891802310944, 0.02647457644343376,
- 0.037643466144800186, 0.028433095663785934, 0.07797335088253021, 0.026475802063941956,
- 0.023809563368558884, -0.0025696810334920883, -0.008073495700955391, -0.0530398003757,
- -0.04911712929606438, -0.06347957253456116, 0.030442725867033005, 0.07381876558065414,
- 0.06041727215051651, -0.12305732071399689, 0.0034889201633632183, -0.035287484526634216
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 318,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 84,
- "similarity": 0.9974516034126282
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 205,
- "similarity": 0.9973255395889282
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 213,
- "similarity": 0.9972376823425293
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Tech Transparency Project"],
- "epoch_date_downloaded": 1661731200,
- "epoch_date_modified": 1661817600,
- "epoch_date_submitted": 1661817600,
- "flag": null,
- "report_number": 1978,
- "source_domain": "techtransparencyproject.org",
- "submitters": ["Khoa Lam"],
- "title": "How Facebook Profits from the Insurrection",
- "url": "https://www.techtransparencyproject.org/articles/how-facebook-profits-insurrection"
- },
- {
- "__typename": "Report",
- "authors": ["Ryan Mac", " Craig Silverman"],
- "epoch_date_downloaded": 1661731200,
- "epoch_date_modified": 1661817600,
- "epoch_date_submitted": 1661817600,
- "flag": null,
- "report_number": 1977,
- "source_domain": "buzzfeednews.com",
- "submitters": ["Ingrid Dickinson (CSET)"],
- "title": "Facebook Is Showing Military Gear Ads Next To Insurrection Posts",
- "url": "https://www.buzzfeednews.com/article/ryanmac/facebook-profits-military-gear-ads-capitol-riot"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "tesla",
- "name": "Tesla"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "tesla",
- "name": "Tesla"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "the-monets'-family",
- "name": "the Monets' family"
- },
- {
- "__typename": "Entity",
- "entity_id": "jenna-monet",
- "name": "Jenna Monet"
- },
- {
- "__typename": "Entity",
- "entity_id": "derrick-monet",
- "name": "Derrick Monet"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [31],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1993, 1984, 1983, 1982, 1981],
- "vector": [
- -0.10430438816547394, 0.0785910114645958, -0.03085479699075222, -0.05572069436311722,
- 0.048291996121406555, -0.0255376398563385, 0.00010155067138839513, 0.025075292214751244,
- 0.06979254633188248, -0.13651397824287415, -0.007751016411930323, 0.06657195091247559,
- 0.01819523237645626, -0.049696456640958786, 0.05933414772152901, -0.15823844075202942,
- -0.0708676353096962, -0.03043188527226448, 0.0020709845703095198, -0.06956948339939117,
- -0.08599256724119186, 0.01451576966792345, 0.06753305345773697, 0.13176670670509338,
- -0.043954260647296906, 0.038463205099105835, 0.0753994956612587, 0.12292583286762238,
- -0.08431807905435562, 0.05260075256228447, -0.028951117768883705, -0.054065920412540436,
- 0.12951433658599854, 0.015284990891814232, 0.03187360614538193, 0.11698833853006363,
- 0.03887123614549637, -0.021633433178067207, -0.045112986117601395,
- -0.019661447033286095, 0.0572158619761467, 0.21980401873588562, -0.022064421325922012,
- -0.0029468252323567867, 0.036291904747486115, -0.03418709710240364,
- 0.019435971975326538, 0.04736695811152458, 0.010790643282234669, 0.024136360734701157,
- 0.002268024953082204, 0.0150983314961195, -0.023136723786592484, 0.01898006908595562,
- -0.1149238795042038, 0.0682162269949913, 0.03436760604381561, -0.005151806864887476,
- 0.040825895965099335, -0.08138589560985565, -0.07702074944972992, -0.19797223806381226,
- -0.059010785073041916, -0.0847110003232956, 0.08512933552265167, -0.09977607429027557,
- -0.028329435735940933, -0.002782112453132868, 0.02606733702123165, 0.07524473965167999,
- 0.0738305002450943, -0.05272585153579712, -0.01622774824500084, -0.015421802178025246,
- 0.011604863218963146, 0.004649607930332422, 0.007854647003114223, 0.23191776871681213,
- -0.10359878838062286, 0.02063155546784401, 0.10901553928852081, -0.08668158948421478,
- 0.4502984881401062, 0.0149384168908, -0.020429885014891624, -0.04396369680762291,
- 0.0797773152589798, 0.03212883323431015, 0.02311902865767479, 0.05127675086259842,
- -0.017177646979689598, 0.040226466953754425, -0.0211379025131464, 0.03498432785272598,
- 0.08052860200405121, 0.04346386715769768, 0.010129819624125957, 0.010278133675456047,
- -0.017159003764390945, -0.06817912310361862, 0.015421037562191486, -0.03911774978041649,
- 0.08807908743619919, 0.05412457510828972, -0.023114757612347603, 0.03745300695300102,
- 0.08041727542877197, -0.03506026417016983, 0.05645974352955818, -0.06261720508337021,
- 0.01632188819348812, 0.04240934178233147, 0.05166251212358475, 0.007648820988833904,
- 0.04918721318244934, -0.08290736377239227, 0.024487856775522232, 0.041779886931180954,
- 0.0723533183336258, -0.007045376114547253, -0.026872996240854263, 0.06568547338247299,
- 0.14504879713058472, -0.07455161213874817, -0.03304769843816757, -0.03138868883252144,
- -0.07271680980920792, -0.0037442122120410204, -0.019512522965669632,
- 0.029752293601632118, -0.03995708376169205, -0.21431629359722137, 0.01845432259142399,
- 0.06594261527061462, 0.004645290784537792, -0.029346421360969543, 0.003167095361277461,
- -0.09098072350025177, 0.05326040834188461, -0.021076936274766922, -0.015578920021653175,
- 0.0633024349808693, 0.029195019975304604, 0.02366984821856022, 0.0938296839594841,
- 0.0455210842192173, -0.0506942979991436, -0.06394845992326736, 0.0008292652782984078,
- -0.04020876809954643, 0.043825991451740265, -0.11000750213861465, -0.06147602200508118,
- 0.0468631312251091, -0.013581337407231331, 0.6346235275268555, 0.1342717707157135,
- 0.12734782695770264, 0.00605779280886054, -0.026294037699699402, 0.17697641253471375,
- -0.0010239839321002364, 0.042028967291116714, -0.06765085458755493,
- -0.058912865817546844, 0.008315776474773884, -0.06358110904693604,
- -0.014363324269652367, 0.024049408733844757, 0.03980488330125809, 0.11539094150066376,
- 0.04238604009151459, 0.08792461454868317, -0.0050827087834477425, -0.09609103202819824,
- -0.015349912457168102, 0.022522293031215668, 0.023191044107079506, -0.09215628355741501,
- -0.02650209330022335, 0.036850620061159134, 0.0910179391503334, -0.04272875189781189,
- 0.010352684184908867, -0.04368580877780914, 0.017989525571465492, -0.024907071143388748,
- 0.020074710249900818, -0.019602486863732338, -0.004842731170356274,
- 0.050258737057447433, 0.08194755762815475, -0.004747830796986818, -0.08672310411930084,
- -0.04599521681666374, 0.12801408767700195, 0.014764693565666676, -0.04519934207201004,
- 0.07885661721229553, -0.10028374195098877, 0.058073244988918304, -0.006994192488491535,
- 0.13956966996192932, -0.10707145929336548, 0.05906397104263306, -0.01144426129758358,
- 0.013147668913006783, 0.05355726554989815, -0.030471855774521828, -0.04628418758511543,
- -0.054696012288331985, 0.06457550078630447, 0.04775455221533775, 0.08868294954299927,
- 0.06179656833410263, -0.042513422667980194, 0.024503255262970924, 0.014250330626964569,
- -0.020326267927885056, -0.04400651901960373, 0.08391022682189941, 0.08158563077449799,
- -0.03403907269239426, 0.004010348580777645, 0.03521352261304855, 0.0017527893651276827,
- 0.03231219947338104, 0.030620839446783066, 0.04310062900185585, 0.036256976425647736,
- -0.02991647645831108, 0.03130625933408737, 0.004620464984327555, 0.021596070379018784,
- 0.08668414503335953, -0.11040862649679184, -0.03854404389858246, -0.030401593074202538,
- -0.03613964468240738, -0.019191408529877663, -0.027536556124687195, 0.08992139995098114,
- 0.05077168345451355, 0.09484554082155228, 0.00612243264913559, 0.04971284791827202,
- 0.0557878240942955, 0.06251662969589233, 0.05994536727666855, 0.047575317323207855,
- -0.013354961760342121, -0.0784122571349144, -0.04224743694067001,
- -0.0030823410488665104, 0.07955816388130188, 0.037526849657297134, -0.04910500720143318,
- -0.030459558591246605, -0.02623908780515194, -0.03755699843168259, -0.10184316337108612,
- -0.0325997993350029, -0.021681323647499084, 0.06639344990253448, -0.06824108958244324,
- -0.03251705691218376, -0.09867819398641586, 0.04392651468515396, 0.040802471339702606,
- 0.006095320452004671, -0.01636664755642414, -0.08977426588535309, -0.014654509723186493,
- -0.030621018260717392, 0.048335786908864975, -0.0010418996680527925,
- -0.0032023065723478794, -0.023776713758707047, -0.06080837920308113,
- -0.012955905869603157, -0.018040809780359268, -0.046364881098270416,
- -0.08763264119625092, -0.09707026183605194, -0.030427828431129456, 0.010766559280455112,
- 0.006439677439630032, -0.0038663013838231564, 0.04830266535282135, 0.00764684472233057,
- 0.030288830399513245, -0.03046361543238163, -0.009175491519272327, 0.07870183885097504,
- -0.049954332411289215, -0.002128995954990387, 0.07545899599790573,
- 0.0011682240292429924, 0.0394219234585762, 0.0025410109665244818, -0.08486155420541763,
- -0.0644630491733551, -0.019442975521087646, -0.06759031116962433, 0.02850755676627159,
- -0.03556244447827339, -0.00226762262172997, -0.02027878351509571, -0.005938992835581303,
- 0.07595886290073395, -0.06343262642621994, -0.04660116881132126, -0.09220936894416809,
- 0.10447754710912704, 0.002219902817159891, -0.0019476063316687942, 0.04136205464601517,
- -0.06486519426107407, 0.06328233331441879, -0.006689070258289576,
- 0.000033401698601664975, 0.049079135060310364, 0.04807274416089058,
- -0.02834346890449524, -0.023089542984962463, 0.060116492211818695, -0.02644927427172661,
- -0.007867621257901192, 0.06863756477832794, 0.4153227210044861, -0.09084808826446533,
- 0.0769304409623146, 0.08575034886598587, 0.006581516470760107, 0.06231769919395447,
- -0.055500924587249756, 0.06955187022686005, 0.058301620185375214, 0.10928823798894882,
- 0.09738225489854813, -0.028837775811553, 0.0013160150265321136, -0.030505914241075516,
- 0.08203060179948807, 0.014951108023524284, 0.01179445069283247, -0.011273575946688652,
- -0.0777830183506012, -0.004815960302948952, 0.05518374592065811, -0.04488121718168259,
- 0.010988272726535797, 0.0013562894891947508, -0.08604301512241364, 0.006676009856164455,
- 0.01118381880223751, 0.00927446223795414, -0.0108697060495615, -0.011176676489412785,
- -0.05057490989565849, 0.02334282174706459, -0.0015777669614180923, 0.042229581624269485,
- -0.07140743732452393, 0.06370583176612854, -0.11671386659145355, -0.06239088624715805,
- 0.09044408798217773, -0.008101322688162327, 0.020614638924598694, 0.06884785741567612,
- -0.040763385593891144, 0.0067710853181779385, -0.028276141732931137,
- -0.03986015170812607, 0.01055925339460373, 0.07529086619615555, 0.0184344332665205,
- 0.08716794848442078, 0.13350136578083038, -0.022608231753110886, -0.018812935799360275,
- -0.0482775941491127, 0.07636521756649017, 0.09190674126148224, -0.0519305095076561,
- 0.04057783633470535, -0.047082629054784775, 0.022825539112091064, 0.0197234395891428,
- -0.04983232170343399, -0.07883036136627197, 0.03774850815534592, -0.039076067507267,
- 0.046381693333387375, 0.011138850823044777, -0.03508305177092552, -0.17911526560783386,
- -0.020525982603430748, -0.0647490844130516, 0.003941243048757315, 0.11287274211645126,
- -0.053774408996105194, -0.009792374446988106, 0.05256394296884537,
- -0.014878968708217144, 0.02110784687101841, -0.0816926583647728, 0.024849683046340942,
- -0.0870027169585228, 0.018974293023347855, 0.05272377282381058, 0.043714411556720734,
- -0.07916329056024551, 0.05603400990366936, -0.08431188762187958, 0.02173774130642414,
- 0.05974205583333969, 0.001484300009906292, -0.020687084645032883, -0.03219988942146301,
- 0.056762415915727615, 0.024979079142212868, -0.03367844223976135, 0.005003232508897781,
- -0.05373447388410568, -0.010273726657032967, -0.09704585373401642, -0.07078567892313004,
- -0.027478689327836037, -0.06984579563140869, 0.08619203418493271, -0.05423010513186455,
- -0.03059348464012146, -0.029644686728715897, -0.027118483558297157, 0.02486969530582428,
- 0.06447029858827591, 0.008466501720249653, -0.12956897914409637, 0.020876195281744003,
- -0.008130731992423534, 0.05849664285778999, -0.006794350687414408, -0.0535854808986187,
- -0.01321526151150465, 0.14275723695755005, 0.02739441953599453, -0.029181400313973427,
- 0.013815181329846382, -0.03109751269221306, 0.009934166446328163, -0.0731067806482315,
- -0.44433221220970154, 0.06409014761447906, 0.03780975192785263, 0.07802451401948929,
- 0.003809453221037984, -0.04923155531287193, 0.03832755610346794, -0.014771285466849804,
- -0.00829055905342102, 0.06414975225925446, -0.05799722671508789, 0.021353544667363167,
- 0.005229557864367962, -0.06785053014755249, -0.0239286907017231, -0.05959859490394592,
- -0.033799879252910614, 0.039661847054958344, -0.020018450915813446,
- -0.06764068454504013, -0.09939288347959518, 0.024856872856616974, -0.025293800979852676,
- -0.002346509601920843, -0.02803831361234188, 0.023483943194150925, -0.12249636650085449,
- -0.0572960190474987, 0.0037781470455229282, 0.045744385570287704, 0.03667186200618744,
- -0.048369016498327255, -0.029421919956803322, 0.033232182264328, -0.0327000692486763,
- 0.1480063945055008, 0.018496157601475716, 0.01335054449737072, -0.10834679752588272,
- 0.048716239631175995, 0.06379152834415436, 0.18628370761871338, -0.025568250566720963,
- 0.0690079778432846, 0.03681711107492447, 0.13132509589195251, 0.003944898955523968,
- 0.054477982223033905, -0.02074047364294529, -0.000774393614847213, 0.00127233169041574,
- -0.009066334925591946, 0.04003623127937317, -0.07864642143249512, -0.03008616343140602,
- -0.029013121500611305, 0.004830577410757542, -0.016041139140725136,
- 0.003112614154815674, 0.17559078335762024, 0.017934683710336685, 0.02566688321530819,
- 0.011197519488632679, -0.03992125019431114, -0.02458764612674713, -0.05202625319361687,
- -0.09778274595737457, -0.03216565027832985, -0.008857833221554756, 0.011751361191272736,
- -0.025702307000756264, -0.10874130576848984, -0.022685786709189415,
- -0.048480186611413956, -0.01326015591621399, 0.10358909517526627, -0.04550379514694214,
- 0.02265075407922268, -0.010125532746315002, 0.11321011930704117, 0.03443693742156029,
- 0.03180202096700668, 0.04424296319484711, 0.07284532487392426, 0.009842879138886929,
- -0.002396790776401758, -0.028539473190903664, -0.08128383755683899,
- 0.001507005887106061, 0.10005152225494385, -0.041232164949178696, 0.1018315926194191,
- 0.04710335657000542, 0.0006116934237070382, -0.05561885982751846, 0.049283988773822784,
- 0.0186215378344059, 0.011685739271342754, -0.464155375957489, -0.014340686611831188,
- 0.12436755001544952, 0.0039403862319886684, 0.049231480807065964, 0.05902476981282234,
- 0.0460985004901886, -0.03234941139817238, -0.04639040678739548, -0.04339957237243652,
- 0.0819626897573471, -0.016454124823212624, 0.06937840580940247, -0.0854402482509613,
- 0.056040793657302856, 0.09495864063501358, -0.029248058795928955, -0.03983209654688835,
- 0.03415540233254433, -0.20932836830615997, -0.0042043039575219154, -0.07207819074392319,
- 0.19282600283622742, 0.08547252416610718, 0.03379680588841438, 0.06483478844165802,
- -0.05971187353134155, 0.06351758539676666, 0.055822450667619705, 0.029456818476319313,
- 0.08482561260461807, 0.0018289129948243499, -0.06035400554537773, 0.11727473884820938,
- 0.051413655281066895, 0.08382944762706757, 0.002093401737511158, 11.97367000579834,
- 0.0752614289522171, 0.03794324770569801, -0.07077192515134811, 0.05774017423391342,
- -0.03538583964109421, 0.034674376249313354, -0.09090296179056168, 0.057784564793109894,
- 0.09247544407844543, -0.01257298607379198, -0.02262963354587555, -0.04964469373226166,
- -0.08276797086000443, 0.002674390096217394, -0.05716540291905403, -0.036809634417295456,
- -0.029086600989103317, 0.0020231883972883224, -0.06571751087903976,
- -0.0035923949908465147, -0.014370694756507874, 0.0710422620177269, 0.011042270809412003,
- -0.0997501015663147, 0.05072830989956856, 0.050918854773044586, -0.008885549381375313,
- 0.0026972193736582994, 0.012644338421523571, -0.025674689561128616,
- 0.013461330905556679, 0.061719782650470734, 0.03408750146627426, -0.02850024774670601,
- 0.05740457773208618, 0.026697570458054543, 0.05963422730565071, 0.009144311770796776,
- 0.06334054470062256, 0.01281910203397274, 0.035412076860666275, 0.015847792848944664,
- 0.03657788038253784, 0.04178658500313759, 0.028944795951247215, 0.07873330265283585,
- 0.11746831238269806, 0.02983802556991577, 0.05929994583129883, 0.07388544082641602,
- -0.005681895650923252, 0.11363659054040909, 0.02991674840450287, 0.013989721424877644,
- 0.03900527209043503, 0.022267689928412437, -0.07119817286729813, 0.059290409088134766,
- 0.11682745069265366, -0.0405428409576416, 0.09034393727779388, 0.015990544110536575,
- 0.093543641269207, -0.016615677624940872, 0.027863826602697372, 0.09132378548383713,
- 0.06896401941776276, -0.13802731037139893, -0.05671055242419243, 0.04799666255712509,
- -0.12319855391979218, -0.04287457466125488, 0.05469966679811478, 0.04759812727570534,
- -0.04132312536239624, 0.11858557164669037, -0.04423152655363083, 0.03096352145075798,
- -0.02754073776304722, 0.0031304270960390568, 0.014910636469721794,
- -0.040565021336078644, 0.015881286934018135, 0.01829487644135952, -0.005317548755556345,
- 0.09498442709445953, 0.10003700107336044, -0.025009742006659508, -0.1028294712305069,
- -0.07765083760023117, 0.08068963140249252, -0.023746268823742867, -0.02323796972632408,
- 0.008939994499087334, -0.05594498664140701, 0.02041591890156269, -0.1279086321592331,
- 0.06705144047737122, 0.09557372331619263, -0.06111687421798706, -0.008656254038214684,
- -0.027017518877983093, 0.06110405921936035, -0.00782291404902935, 0.05553842708468437,
- -0.05942140892148018, 0.023094279691576958, 0.004146592225879431, 0.0633840262889862,
- -0.06145544722676277, 0.07720345258712769, 0.04391702264547348, -0.08942081779241562,
- 0.05836616829037666, 0.0685051679611206, -0.007922659628093243, -0.06881280988454819,
- 0.05716635659337044, 0.03482021018862724, -0.10547194629907608, -0.06398163735866547,
- -0.0169048048555851, -0.05121302604675293, -0.02865518257021904, -0.018583182245492935,
- 0.00047175289364531636, 0.022027339786291122, -0.07194216549396515,
- -0.030526798218488693, 0.024191131815314293, -0.0004093628376722336,
- 0.11447547376155853, 0.03490564599633217, 0.04702389985322952, -0.07226346433162689,
- -0.029446687549352646, 0.06798037886619568, 0.022301794961094856, 0.07304088771343231,
- -0.012239251285791397, 0.04414879530668259, -0.08091309666633606, -0.09481991827487946,
- -0.021685587242245674, 0.12964609265327454, 0.08911336958408356, 0.04060535877943039,
- 0.059265267103910446, -0.08265425264835358, -0.01024097390472889, 0.13428667187690735,
- 0.04699058085680008, 0.0015163386706262827, 0.03459595888853073, -0.09769991040229797,
- -0.02226937748491764, 0.15192291140556335, -0.04287053272128105, -0.008392315357923508,
- 0.061346136033535004, -0.0770854726433754, 0.04730715602636337, 0.05095626786351204,
- 0.07573609054088593, 0.03930377960205078, 0.005373921245336533, -0.00798741728067398,
- -0.0062223998829722404, 0.004781791474670172, 0.012257607653737068,
- 0.017926562577486038, -0.12625297904014587, -0.06651762872934341, 0.023408761247992516,
- 0.092244453728199, 0.02687462791800499, -0.1204596608877182, -0.024190835654735565,
- -0.05595342442393303
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 319,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["John Goreham"],
- "epoch_date_downloaded": 1661904000,
- "epoch_date_modified": 1661904000,
- "epoch_date_submitted": 1661904000,
- "flag": null,
- "report_number": 1993,
- "source_domain": "torquenews.com",
- "submitters": ["Thomas Giallella (CSET)"],
- "title": "Second Crash In One Month Of A Tesla Into A Parked Firetruck Results In Fatality",
- "url": "https://www.torquenews.com/1083/second-crash-one-month-tesla-parked-firetruck-results-fatality"
- },
- {
- "__typename": "Report",
- "authors": ["Scott Nordlund"],
- "epoch_date_downloaded": 1661817600,
- "epoch_date_modified": 1661817600,
- "epoch_date_submitted": 1661817600,
- "flag": null,
- "report_number": 1984,
- "source_domain": "driveteslacanada.ca",
- "submitters": ["Khoa Lam"],
- "title": "Man suing Tesla over 2019 Autopilot accident",
- "url": "https://driveteslacanada.ca/news/man-suing-tesla-over-2019-autopilot-accident/"
- },
- {
- "__typename": "Report",
- "authors": ["National Highway Traffic Safety Administration"],
- "epoch_date_downloaded": 1661817600,
- "epoch_date_modified": 1661817600,
- "epoch_date_submitted": 1661817600,
- "flag": null,
- "report_number": 1983,
- "source_domain": "static.nhtsa.gov",
- "submitters": ["Khoa Lam"],
- "title": "ODI Resume",
- "url": "https://static.nhtsa.gov/odi/inv/2021/INOA-PE21020-1893.PDF"
- },
- {
- "__typename": "Report",
- "authors": ["Kayla Dwyer"],
- "epoch_date_downloaded": 1661817600,
- "epoch_date_modified": 1661817600,
- "epoch_date_submitted": 1661817600,
- "flag": null,
- "report_number": 1982,
- "source_domain": "indystar.com",
- "submitters": ["Khoa Lam"],
- "title": "A federal investigation into Tesla autopilot crashes includes 2019 fatal Indiana crash",
- "url": "https://www.indystar.com/story/news/local/transportation/2021/08/17/tesla-autopilot-investigation-11-accidents-indiana-fatal/8163602002/"
- },
- {
- "__typename": "Report",
- "authors": ["The Associated Press"],
- "epoch_date_downloaded": 1661817600,
- "epoch_date_modified": 1663027200,
- "epoch_date_submitted": 1661817600,
- "flag": null,
- "report_number": 1981,
- "source_domain": "detroitnews.com",
- "submitters": ["Thomas Giallella (CSET)"],
- "title": "Telsa rear-ends fire truck in Indiana, killing Arizona woman",
- "url": "https://www.detroitnews.com/story/business/autos/2019/12/30/telsa-rear-ends-fire-truck-indiana-killing-arizona-woman/40911551/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "tesla",
- "name": "Tesla"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "tesla",
- "name": "Tesla"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "tesla-drivers",
- "name": "Tesla drivers"
- },
- {
- "__typename": "Entity",
- "entity_id": "culver-city-fire-department",
- "name": "Culver City Fire Department"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [319],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [2007, 1987, 1986, 1985],
- "vector": [
- -0.09807619452476501, 0.056954894214868546, -0.017847824841737747, -0.09178756177425385,
- 0.06631691753864288, -0.021839674562215805, -0.03056052327156067, 0.011842804029583931,
- 0.05705041438341141, -0.13698725402355194, 0.006285645999014378, 0.0541822649538517,
- 0.019678372889757156, -0.06400371342897415, 0.053453199565410614, -0.11156352609395981,
- -0.06503763794898987, -0.01828286051750183, 0.0071708341129124165, -0.08955548703670502,
- -0.07715174555778503, -0.013976075686514378, 0.05417991429567337, 0.09278211742639542,
- -0.028400568291544914, 0.01843598112463951, 0.08382539451122284, 0.1368151754140854,
- -0.07247495651245117, 0.051497265696525574, -0.020515188574790955, -0.04024478793144226,
- 0.11817260086536407, 0.013348115608096123, 0.013833720237016678, 0.12196052819490433,
- 0.054101910442113876, -0.03835870698094368, -0.09873870015144348, -0.022321991622447968,
- 0.02608189918100834, 0.2341814637184143, -0.0003334775101393461, -0.021272897720336914,
- 0.06012711301445961, -0.03976825252175331, 0.03205275908112526, 0.016521377488970757,
- 0.007063598372042179, 0.02286524884402752, -0.009789406321942806, 0.07340360432863235,
- -0.0220172181725502, 0.026806175708770752, -0.1283506155014038, 0.07240047305822372,
- 0.030379151925444603, -0.00643084105104208, 0.06479097902774811, -0.07472316175699234,
- -0.058807894587516785, -0.2178698480129242, -0.05792675167322159, -0.04211442917585373,
- 0.0818387120962143, -0.0887812077999115, -0.027860941365361214, -0.0024361051619052887,
- 0.02268538810312748, 0.07445614784955978, 0.07186959683895111, -0.04585712030529976,
- -0.03552568703889847, -0.014259526506066322, -0.012288952246308327, 0.00994411576539278,
- 0.008120028302073479, 0.22596785426139832, -0.11407120525836945, 0.006483706645667553,
- 0.11640313267707825, -0.08133538067340851, 0.4158817529678345, 0.013512165285646915,
- -0.047756001353263855, -0.02173548936843872, 0.08144079148769379, 0.05758063495159149,
- 0.03711415082216263, 0.06129012256860733, -0.009089774452149868, 0.011535387486219406,
- -0.019872277975082397, 0.05709086358547211, 0.06549093127250671, 0.04016459733247757,
- -0.0019203601405024529, 0.02530079148709774, -0.021754378452897072,
- -0.05808555707335472, 0.04667514190077782, -0.059300877153873444, 0.10494958609342575,
- 0.036067381501197815, -0.015952985733747482, 0.04782772809267044, 0.1193850189447403,
- -0.02361699938774109, 0.03340761363506317, -0.04708453640341759, 0.02184334397315979,
- 0.025346998125314713, 0.04969324171543121, 0.009204416535794735, 0.06025436520576477,
- -0.06884831935167313, 0.0031202705577015877, 0.037728019058704376, 0.08580407500267029,
- -0.01320179644972086, -0.001986840507015586, 0.06957611441612244, 0.11916352063417435,
- -0.06078224629163742, -0.03582465648651123, -0.00824771635234356, -0.04246687516570091,
- -0.009566343389451504, -0.04130629450082779, 0.028657767921686172, -0.05846628546714783,
- -0.19438177347183228, 0.036112237721681595, 0.10704439878463745, 0.02133755572140217,
- -0.030634049326181412, 0.0010638413950800896, -0.09219978004693985,
- 0.035988472402095795, -0.012733466923236847, -0.021313514560461044, 0.05873663350939751,
- 0.06674864143133163, 0.016996612772345543, 0.11462830752134323, 0.04749791696667671,
- -0.05013037472963333, -0.05813807621598244, 0.005650701466947794, -0.03556862846016884,
- 0.06550585478544235, -0.10012517869472504, -0.06653697788715363, 0.051041435450315475,
- 0.013356531038880348, 0.6347997188568115, 0.12638700008392334, 0.15633979439735413,
- 0.014495613053441048, -0.03349921479821205, 0.1738220602273941, 0.023193513974547386,
- 0.07007383555173874, -0.05951913446187973, -0.0660545602440834, 0.028334060683846474,
- -0.08175036311149597, -0.0382583886384964, 0.013295811600983143, 0.022504324093461037,
- 0.11630195379257202, 0.048420701175928116, 0.08983363956212997, -0.02107268199324608,
- -0.1124512106180191, -0.03187679871916771, 0.0517360121011734, 0.03136742487549782,
- -0.09917058050632477, -0.044860370457172394, 0.034669507294893265, 0.07992252707481384,
- -0.04682888090610504, 0.02661074697971344, -0.04734480008482933, 0.030867943540215492,
- -0.0376981757581234, 0.0009407803299836814, -0.032155051827430725,
- -0.003438941203057766, 0.0516592301428318, 0.0977194756269455, -0.005172412376850843,
- -0.12132613360881805, -0.04615833982825279, 0.12740418314933777, 0.010770177468657494,
- -0.04237814247608185, 0.06795059144496918, -0.09220580011606216, 0.05598129332065582,
- 0.002946529071778059, 0.13048718869686127, -0.10145974159240723, 0.019414564594626427,
- -0.000603365246206522, 0.011353126727044582, 0.07522398978471756, -0.02696651592850685,
- -0.05990905687212944, -0.06074954941868782, 0.08156266808509827, 0.02845362387597561,
- 0.09768383204936981, 0.0797690600156784, -0.04602407291531563, 0.04383409023284912,
- 0.054496243596076965, -0.012405679561197758, -0.03432997688651085, 0.07751913368701935,
- 0.08314666897058487, -0.01726321317255497, 0.0109854219481349, 0.03851114958524704,
- 0.013974773697555065, 0.01976694166660309, 0.0008697091834619641, 0.05305308848619461,
- 0.029386738315224648, -0.01987142488360405, 0.014844855293631554, 0.006188773550093174,
- 0.012626598589122295, 0.10209794342517853, -0.08110024780035019, -0.055671144276857376,
- -0.008579693734645844, -0.02291053906083107, -0.02984071709215641, -0.05320388451218605,
- 0.07843133062124252, 0.03951581194996834, 0.09164626151323318, 0.013041782192885876,
- 0.037687815725803375, 0.058095235377550125, 0.06134621798992157, 0.020204780623316765,
- 0.046301573514938354, -0.02075287699699402, -0.06721555441617966, -0.016329271718859673,
- -0.006335476879030466, 0.06916554272174835, 0.0337764210999012, -0.06930257380008698,
- -0.03817588835954666, -0.01446367334574461, 0.016822408884763718, -0.06378545612096786,
- -0.01982158049941063, -0.0038370497059077024, 0.053288884460926056,
- -0.05363399535417557, -0.062441445887088776, -0.0991896390914917, 0.028960619121789932,
- 0.03502989187836647, -0.0006364269065670669, -0.003196287900209427,
- -0.08629445731639862, -0.03632126376032829, -0.014617745764553547, 0.03876924514770508,
- -0.004052739590406418, -0.01092522218823433, -0.020579224452376366,
- -0.06889912486076355, -0.003780943574383855, -0.016061292961239815,
- -0.02978612668812275, -0.07948809117078781, -0.0815257728099823, -0.0319233201444149,
- -0.010308068245649338, 0.0011658193543553352, -0.003487770911306143,
- 0.05334402620792389, 0.035342711955308914, 0.025336813181638718, -0.013058004900813103,
- -0.01617838814854622, 0.0775667056441307, -0.03997528925538063, -0.010331109166145325,
- 0.08226828277111053, -0.01799769140779972, 0.05161560699343681, 0.02622555010020733,
- -0.08950600028038025, -0.024279989302158356, 0.004961784929037094, -0.06836993992328644,
- 0.04437932372093201, -0.04347185045480728, -0.01962900534272194, -0.016024461016058922,
- 0.024530047550797462, 0.03997525945305824, -0.06936515867710114, -0.07266007363796234,
- -0.11952215433120728, 0.11447519063949585, -0.011193137615919113, -0.02522406540811062,
- 0.023716852068901062, -0.05743963271379471, 0.0497732013463974, -0.010086112655699253,
- 0.0019030076218768954, 0.046164125204086304, 0.05256589502096176, -0.027776364237070084,
- -0.0034932235721498728, 0.05352765694260597, -0.027394859120249748,
- -0.006523742340505123, 0.0640278235077858, 0.42481866478919983, -0.18130266666412354,
- 0.07722896337509155, 0.07036567479372025, 0.017293039709329605, 0.08605048060417175,
- -0.07048299163579941, 0.05145131051540375, 0.05876230448484421, 0.11750447750091553,
- 0.08377097547054291, -0.021745715290308, 0.020158030092716217, -0.03639239817857742,
- 0.08832061290740967, 0.016856364905834198, 0.016295528039336205, -0.0033531715162098408,
- -0.09017980098724365, -0.005892185494303703, 0.07435678690671921, -0.05326007306575775,
- 0.013646447099745274, -0.006425163708627224, -0.07583192735910416, 0.020804760977625847,
- 0.029236886650323868, 0.02113044075667858, -0.043716639280319214, 0.0036662095226347446,
- 0.005899341311305761, 0.021438170224428177, 0.005603283643722534, 0.058153700083494186,
- -0.08607891201972961, 0.06511962413787842, -0.12592294812202454, -0.06718926131725311,
- 0.06872949749231339, -0.036641400307416916, 0.004303128458559513, 0.05329210311174393,
- -0.022791393101215363, 0.021074922755360603, 0.014032575301826, -0.055110760033130646,
- 0.020044337958097458, 0.05911380797624588, 0.021068360656499863, 0.09401017427444458,
- 0.16224265098571777, -0.020704496651887894, -0.057943329215049744, -0.05360323190689087,
- 0.08536083251237869, 0.06518913060426712, -0.031325872987508774, 0.01060671079903841,
- -0.027803659439086914, -0.008194171823561192, 0.021264653652906418,
- -0.04231324791908264, -0.08412967622280121, 0.012474216520786285, -0.035881705582141876,
- 0.06265068054199219, 0.0053023709915578365, -0.015758538618683815, -0.16460484266281128,
- -0.024596398696303368, -0.03661913052201271, 0.009079580195248127, 0.1338239461183548,
- -0.0524977371096611, 0.002356006531044841, 0.07201319187879562, -0.02344273403286934,
- 0.03975436091423035, -0.08955660462379456, 0.013861154206097126, -0.05842210724949837,
- 0.03321639448404312, 0.03882721811532974, 0.061253271996974945, -0.046692535281181335,
- 0.05090415105223656, -0.08623985201120377, 0.01809440180659294, 0.032048918306827545,
- 0.002918330719694495, 0.0404309518635273, -0.04332021251320839, 0.05345836281776428,
- 0.03012327291071415, -0.032301317900419235, -0.018819449469447136,
- -0.051335446536540985, -0.04224737733602524, -0.11978864669799805, -0.06448515504598618,
- -0.038892023265361786, -0.0815330445766449, 0.10159029066562653, -0.10936141014099121,
- -0.036330852657556534, -0.021617969498038292, -0.0030201105400919914,
- 0.05146170035004616, 0.05885697156190872, 0.0347890742123127, -0.12184794247150421,
- 0.02970861829817295, -0.011319946497678757, 0.07331837713718414, -0.023444660007953644,
- -0.03215879946947098, 0.0213623009622097, 0.09885244071483612, 0.028457436710596085,
- -0.008832436054944992, -0.0018201126949861646, -0.04069264233112335,
- 0.01233757846057415, -0.0714988112449646, -0.5430400371551514, 0.05702505260705948,
- 0.04162001237273216, 0.05818599835038185, 0.007911866530776024, -0.059610962867736816,
- 0.02456212230026722, -0.00947048794478178, -0.03028661571443081, 0.0885898545384407,
- -0.05059461295604706, 0.021761130541563034, 0.02997756004333496, -0.051268745213747025,
- -0.04422467574477196, -0.05554899945855141, -0.037089958786964417, 0.029346831142902374,
- -0.03541376814246178, -0.06077788025140762, -0.07283301651477814, -0.005806841887533665,
- -0.034401506185531616, -0.019269824028015137, -0.01625930145382881, 0.0188965555280447,
- -0.0972200557589531, -0.06475037336349487, 0.015510006807744503, 0.06320317834615707,
- 0.017478499561548233, -0.05657746270298958, -0.024902915582060814, 0.030947713181376457,
- -0.03949109464883804, 0.15059496462345123, 0.02072663977742195, 0.04217984527349472,
- -0.08999432623386383, 0.059711068868637085, 0.030597303062677383, 0.1878318041563034,
- -0.024364542216062546, 0.0775025263428688, 0.02978043630719185, 0.11789093911647797,
- 0.009081412106752396, 0.041364673525094986, -0.019503656774759293, 0.002674949588254094,
- 0.022006332874298096, -0.022360030561685562, 0.0334460586309433, -0.06578411906957626,
- -0.02362683042883873, -0.02050568163394928, 0.0010324764298275113,
- -0.022388514131307602, 0.03854716569185257, 0.19182521104812622, 0.018217990174889565,
- 0.037705518305301666, 0.02510678954422474, -0.06882123649120331, -0.027287136763334274,
- -0.0358511246740818, -0.09073185175657272, -0.030864646658301353, -0.033560242503881454,
- 0.009660250507295132, -0.021775489673018456, -0.11409960687160492, -0.01938435435295105,
- -0.06010206788778305, -0.02002052776515484, 0.09444501250982285, -0.014279216527938843,
- 0.04106803610920906, -0.012719513848423958, 0.1112404465675354, 0.04453285411000252,
- 0.01426396518945694, 0.06438585370779037, 0.07583598792552948, 0.028166398406028748,
- -0.007959531620144844, -0.048936180770397186, -0.0974644273519516, 0.018564483150839806,
- 0.11549683660268784, -0.043378524482250214, 0.0677061676979065, 0.04814031347632408,
- -0.015209661796689034, -0.04730476066470146, 0.015888812020421028, 0.021007277071475983,
- 0.028644293546676636, -0.5266830921173096, -0.0058899507857859135, 0.12594950199127197,
- 0.02253597043454647, 0.03810157999396324, 0.07978887856006622, 0.05005466192960739,
- -0.016934139654040337, -0.02850472927093506, -0.029892275109887123, 0.1563900113105774,
- -0.008036218583583832, 0.05171605944633484, -0.11114589869976044, 0.052892304956912994,
- 0.0651533454656601, -0.011216994374990463, -0.041569922119379044, 0.06461454927921295,
- -0.236993670463562, 0.0021224424708634615, -0.06565463542938232, 0.19122029840946198,
- 0.07832024991512299, 0.01975967548787594, 0.07421763241291046, -0.061679959297180176,
- 0.03216579556465149, 0.039938703179359436, 0.021647924557328224, 0.0831834077835083,
- 0.023149384185671806, -0.043996233493089676, 0.1281290501356125, 0.05742698535323143,
- 0.06838341802358627, -0.00455044861882925, 11.865310668945312, 0.04891147464513779,
- 0.02474845200777054, -0.05090270936489105, 0.049984194338321686, -0.053387291729450226,
- 0.04042421281337738, -0.09377455711364746, 0.04612124711275101, 0.1211024820804596,
- -0.016028625890612602, -0.01506571751087904, -0.054403990507125854, -0.0720280110836029,
- -0.018716325983405113, -0.08955059945583344, -0.033581748604774475,
- -0.02104371041059494, 0.022739289328455925, -0.0345308855175972, 0.002616399433463812,
- 0.0052452427335083485, 0.062195293605327606, 0.03316734358668327, -0.10512907058000565,
- 0.07165658473968506, 0.04825805127620697, 0.005083199590444565, 0.015291597694158554,
- 0.038900136947631836, -0.028037525713443756, 0.01960173435509205, 0.06841295957565308,
- 0.009656919166445732, -0.04516041278839111, 0.08163098245859146, 0.04175616800785065,
- 0.05261456221342087, 0.012091624550521374, 0.06251756846904755, 0.04448416456580162,
- 0.030556660145521164, 0.004670952912420034, 0.013217435218393803, 0.02681795507669449,
- 0.038209471851587296, 0.06665513664484024, 0.1062278151512146, 0.04346649348735809,
- 0.03472505882382393, 0.06611619889736176, -0.027169223874807358, 0.13704940676689148,
- 0.03103702701628208, -0.014551416970789433, 0.03004756011068821, -0.021279728040099144,
- -0.057105012238025665, 0.08341269195079803, 0.08237838000059128, -0.03442801907658577,
- 0.09030435979366302, 0.016700513660907745, 0.11736949533224106, -0.029563970863819122,
- 0.04079180210828781, 0.08150991052389145, 0.06819041073322296, -0.12887588143348694,
- -0.052531007677316666, 0.04993119090795517, -0.13485433161258698, -0.06033092737197876,
- 0.05978728085756302, 0.09405206888914108, -0.04317256063222885, 0.044375255703926086,
- -0.04336772859096527, 0.02593497559428215, -0.03208769112825394, -0.010837994515895844,
- 0.024151630699634552, -0.02847404219210148, 0.012324376963078976, 0.04565278813242912,
- -0.00032565928995609283, 0.08835121989250183, 0.09897556155920029,
- -0.023735562339425087, -0.07428600639104843, -0.1215805783867836, 0.08286471664905548,
- -0.01967329904437065, -0.04876725748181343, 0.03435829281806946, -0.06194566190242767,
- 0.025665372610092163, -0.15178586542606354, 0.07539232820272446, 0.08441466093063354,
- -0.10372864454984665, 0.003192287404090166, -0.03545425832271576, 0.05046074837446213,
- -0.026304373517632484, 0.04449653625488281, -0.051121219992637634, 0.020509811118245125,
- 0.02053789794445038, 0.04374333471059799, -0.050375550985336304, 0.060309745371341705,
- 0.03778884559869766, -0.08767662197351456, 0.06290994584560394, 0.06385111808776855,
- -0.014776655472815037, -0.056247830390930176, 0.07052238285541534, 0.011346274986863136,
- -0.08325366675853729, -0.04371014982461929, -0.02282198891043663, -0.032326556742191315,
- -0.02229520119726658, -0.043934863060712814, 0.007548789493739605, 0.011977040208876133,
- -0.0713622123003006, -0.032104577869176865, 0.010000196285545826, 0.01848483830690384,
- 0.12103137373924255, 0.020083732903003693, 0.052462559193372726, -0.07115475088357925,
- -0.025859713554382324, 0.05577621981501579, 0.04009450227022171, 0.08133891969919205,
- -0.024335043504834175, 0.030857056379318237, -0.053106050938367844,
- -0.10070884227752686, 0.000053108553402125835, 0.0987282246351242, 0.057544223964214325,
- 0.02485176920890808, 0.05644216015934944, -0.08457759767770767, -0.03577994555234909,
- 0.12448907643556595, 0.037874985486269, -0.006341674365103245, 0.008292571641504765,
- -0.1020607203245163, -0.012322397902607918, 0.13995690643787384, -0.05031422898173332,
- 0.0185557771474123, 0.03041372075676918, -0.049541376531124115, 0.06914757192134857,
- 0.07343583554029465, 0.06449608504772186, 0.018275026232004166, 0.01907048001885414,
- 0.0013185605639591813, 0.0149755934253335, -0.01740856282413006, 0.01307724043726921,
- -0.006342423614114523, -0.14299923181533813, -0.0878973975777626, 0.040076423436403275,
- 0.10067349672317505, 0.011185040697455406, -0.1290660947561264, -0.028986893594264984,
- -0.0427270382642746
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 320,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 20,
- "similarity": 0.998910129070282
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 67,
- "similarity": 0.9987335801124573
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 71,
- "similarity": 0.998681366443634
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Clifford Atiyeh"],
- "epoch_date_downloaded": 1661904000,
- "epoch_date_modified": 1662508800,
- "epoch_date_submitted": 1661904000,
- "flag": null,
- "report_number": 2007,
- "source_domain": "caranddriver.com",
- "submitters": ["Thomas Giallella (CSET)"],
- "title": "Tesla Driver Was on Autopilot Eating a Bagel and Hit a Fire Truck",
- "url": "https://www.caranddriver.com/news/a28911259/tesla-crash-california-autopilot-driver-ntsb/"
- },
- {
- "__typename": "Report",
- "authors": ["Culver City Observer"],
- "epoch_date_downloaded": 1661817600,
- "epoch_date_modified": 1661904000,
- "epoch_date_submitted": 1661817600,
- "flag": null,
- "report_number": 1987,
- "source_domain": "culvercityobserver.com",
- "submitters": ["Khoa Lam"],
- "title": "NTSB Issues Report on Tesla Crash with Culver City Fire Engine",
- "url": "https://www.culvercityobserver.com/story/2019/09/12/news/ntsb-issues-report-on-tesla-crash-with-culver-city-fire-engine/8414.html"
- },
- {
- "__typename": "Report",
- "authors": ["Associated Press"],
- "epoch_date_downloaded": 1661817600,
- "epoch_date_modified": 1661904000,
- "epoch_date_submitted": 1661817600,
- "flag": null,
- "report_number": 1986,
- "source_domain": "latimes.com",
- "submitters": ["Khoa Lam"],
- "title": "Tesla car was on Autopilot when it hit a Culver City firetruck, NTSB finds",
- "url": "https://www.latimes.com/business/story/2019-09-03/tesla-was-on-autopilot-when-it-hit-culver-city-fire-truck-ntsb-finds"
- },
- {
- "__typename": "Report",
- "authors": ["John Goreham"],
- "epoch_date_downloaded": 1661817600,
- "epoch_date_modified": 1661904000,
- "epoch_date_submitted": 1661817600,
- "flag": null,
- "report_number": 1985,
- "source_domain": "torquenews.com",
- "submitters": ["Thomas Giallella (CSET)"],
- "title": "Tesla Police Blotter News - Tesla Driver Hits Parked Firetruck - Blames Autopilot",
- "url": "https://www.torquenews.com/1083/tesla-police-blotter-news-tesla-driver-hits-parked-firetruck-blames-autopilot"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "tesla",
- "name": "Tesla"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "tesla",
- "name": "Tesla"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "walter-huang's-family",
- "name": "Walter Huang's family"
- },
- {
- "__typename": "Entity",
- "entity_id": "walter-huang",
- "name": "Walter Huang"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [320],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1995, 1990, 1989, 1988, 212, 209, 200, 199, 195, 194, 190, 188],
- "vector": [
- -0.10193934291601181, 0.07691393047571182, -0.013121080584824085, -0.08582668751478195,
- 0.06637677550315857, -0.0373266227543354, -0.018729539588093758, 0.02198193222284317,
- 0.05369172990322113, -0.14589761197566986, -0.0022461109329015017, 0.06314826756715775,
- 0.0318911112844944, -0.06512913852930069, 0.06435343623161316, -0.11140082031488419,
- -0.08983907103538513, -0.022141864523291588, 0.004949310794472694, -0.08552160859107971,
- -0.08659172058105469, -0.009137279354035854, 0.06084473803639412, 0.09444200247526169,
- -0.038932282477617264, 0.014880782924592495, 0.08564551919698715, 0.12510928511619568,
- -0.06150995194911957, 0.033940792083740234, -0.007093800697475672,
- -0.036541569977998734, 0.12533263862133026, 0.011925446800887585, 0.005078762304037809,
- 0.09397172927856445, 0.038925353437662125, -0.03141939267516136, -0.07706988602876663,
- -0.0031273129861801863, 0.026881540194153786, 0.2283451408147812, -0.010005414485931396,
- -0.019799131900072098, 0.05034396052360535, -0.03045145608484745, 0.03262060508131981,
- 0.03239388391375542, 0.010912311263382435, 0.012450795620679855, -0.008412203751504421,
- 0.05372841656208038, -0.03009776584804058, 0.022809846326708794, -0.10572004318237305,
- 0.06784834712743759, 0.02844676375389099, -0.014906548894941807, 0.06413725763559341,
- -0.06689315289258957, -0.06243942677974701, -0.21371395885944366, -0.06081452965736389,
- -0.0469563789665699, 0.07022025436162949, -0.08419115096330643, -0.025176437571644783,
- 0.00397368473932147, 0.03160220757126808, 0.07964431494474411, 0.07180926203727722,
- -0.05226929113268852, -0.022250836715102196, 0.0029452962335199118,
- -0.012130822986364365, -0.004133997950702906, -0.002702463651075959,
- 0.20995718240737915, -0.1165023222565651, 0.00404417933896184, 0.11308389157056808,
- -0.10065269470214844, 0.4181840121746063, 0.0226525217294693, -0.03984476253390312,
- -0.021356070414185524, 0.08922819048166275, 0.03700009360909462, 0.036907512694597244,
- 0.039892714470624924, -0.018444158136844635, 0.017872894182801247, -0.01875458098948002,
- 0.05056390166282654, 0.07845545560121536, 0.04411250352859497, -0.00711672892794013,
- 0.03242465853691101, -0.011234581470489502, -0.06265800446271896, 0.04970385134220123,
- -0.06619615107774734, 0.10512053221464157, 0.045502036809921265, -0.017103271558880806,
- 0.03804749250411987, 0.09531474113464355, -0.024949586018919945, 0.04265199974179268,
- -0.05838489159941673, 0.022048344835639, 0.03174927830696106, 0.06068547070026398,
- 0.011136751621961594, 0.05912620201706886, -0.07245746999979019, -0.00230627553537488,
- 0.04775455594062805, 0.08706116676330566, 0.0076803588308393955, -0.026728054508566856,
- 0.07840830087661743, 0.102205790579319, -0.06769689172506332, -0.008517432026565075,
- -0.0174628347158432, -0.06048484146595001, -0.018851986154913902, -0.027890585362911224,
- 0.03044242411851883, -0.06904257088899612, -0.2039569616317749, 0.027356786653399467,
- 0.10578650236129761, -0.00624611834064126, -0.027441807091236115, -0.015112643130123615,
- -0.09100499749183655, 0.03179756924510002, -0.011888506822288036, -0.012774697504937649,
- 0.055317867547273636, 0.044563114643096924, 0.024049879983067513, 0.10526905208826065,
- 0.04613465443253517, -0.046233247965574265, -0.053406234830617905,
- -0.0023343239445239305, -0.03198458254337311, 0.07941382378339767, -0.1060696467757225,
- -0.05735279992222786, 0.03239218145608902, 0.020709848031401634, 0.6584309935569763,
- 0.09797471016645432, 0.14980173110961914, 0.00883454829454422, -0.035645198076963425,
- 0.1682085543870926, 0.003390655154362321, 0.06137385964393616, -0.05618768557906151,
- -0.07006604969501495, 0.021789608523249626, -0.07134627550840378, -0.0346335843205452,
- 0.025600045919418335, 0.02850387990474701, 0.11304227262735367, 0.040104832500219345,
- 0.10881397128105164, -0.016435211524367332, -0.08442813158035278, -0.03451733663678169,
- 0.04552018269896507, 0.027742840349674225, -0.09399756044149399, -0.05089794099330902,
- 0.03161494806408882, 0.09458085149526596, -0.046918947249650955, 0.007367478683590889,
- -0.04075510799884796, 0.03454810753464699, -0.024442704394459724, 0.02438243478536606,
- -0.023970147594809532, 0.006405351217836142, 0.04008978232741356, 0.07473574578762054,
- -0.010458074510097504, -0.10956982523202896, -0.03736139088869095, 0.11640050262212753,
- 0.016169019043445587, -0.029093855991959572, 0.07088977098464966, -0.08762535452842712,
- 0.04825371876358986, 0.011056839488446712, 0.1337229460477829, -0.09218701720237732,
- 0.026958413422107697, 0.00923111755400896, 0.006060234736651182, 0.06043374538421631,
- -0.015707438811659813, -0.07824929803609848, -0.07236125320196152, 0.0632236897945404,
- 0.039914075285196304, 0.0841100737452507, 0.07296513766050339, -0.03197095915675163,
- 0.04112182557582855, 0.03454355522990227, -0.0024275423493236303, -0.04638931155204773,
- 0.06431327015161514, 0.08128387480974197, -0.03564668074250221, -0.018740901723504066,
- 0.036184001713991165, 0.011849895119667053, 0.03587854281067848, -0.0015421673888340592,
- 0.06521647423505783, 0.020832473412156105, -0.033242762088775635, 0.03434276953339577,
- 0.011988894082605839, 0.02058926410973072, 0.11484793573617935, -0.08731500059366226,
- -0.067671999335289, -0.02110237441956997, -0.03079930692911148, -0.01256569754332304,
- -0.03560110181570053, 0.08615899831056595, 0.05415507033467293, 0.08990746736526489,
- 0.018827931955456734, 0.044240113347768784, 0.06458592414855957, 0.050860341638326645,
- 0.042342957109212875, 0.044224824756383896, -0.026716260239481926, -0.06535394489765167,
- -0.010081470012664795, 0.004910603631287813, 0.06534845381975174, 0.030946992337703705,
- -0.06604882329702377, -0.040601227432489395, -0.021305030211806297,
- -0.012692544609308243, -0.08193130791187286, -0.020084939897060394,
- -0.008532148785889149, 0.065524160861969, -0.05400755628943443, -0.04676729068160057,
- -0.08699536323547363, 0.0163163710385561, 0.03305293247103691, -0.001803492195904255,
- 0.0011754084844142199, -0.08985988050699234, -0.024340959265828133,
- -0.02358570136129856, 0.026611819863319397, -0.005931772291660309,
- -0.006310436874628067, -0.019046319648623466, -0.061518024653196335,
- -0.023727931082248688, -0.003069896949455142, -0.04575951024889946,
- -0.05276425555348396, -0.07090519368648529, -0.04183205962181091,
- -0.0050822109915316105, 0.022214023396372795, 0.0011848924914374948,
- 0.04452774301171303, 0.04913435876369476, 0.031852953135967255, -0.024027392268180847,
- -0.0011291933478787541, 0.06677589565515518, -0.03232289105653763, -0.00206354190595448,
- 0.07247571647167206, -0.01258674543350935, 0.04105314612388611, -0.006958529818803072,
- -0.060367271304130554, -0.04745485261082649, 0.0030701227951794863,
- -0.07333027571439743, 0.054487306624650955, -0.04143577441573143, -0.012206842191517353,
- -0.02649744413793087, 0.03064284473657608, 0.04343213513493538, -0.07530955225229263,
- -0.06834767758846283, -0.10531505942344666, 0.10048028826713562, -0.011815358884632587,
- -0.007338009774684906, 0.03028533048927784, -0.04222572222352028, 0.06003062427043915,
- -0.0029927678406238556, 0.0017867541173473, 0.052113790065050125, 0.05733329430222511,
- -0.029948467388749123, 0.011490322649478912, 0.048982296139001846,
- -0.023862222209572792, 0.009004342369735241, 0.07018419355154037, 0.4022010862827301,
- -0.14215196669101715, 0.058198925107717514, 0.07658107578754425, 0.00854283757507801,
- 0.07558729499578476, -0.04675676301121712, 0.06331254541873932, 0.049215465784072876,
- 0.10456925630569458, 0.11613255739212036, -0.03010380268096924, -0.004456144291907549,
- -0.04386696219444275, 0.08067499101161957, 0.009000053629279137,
- -0.00021288923744577914, -0.006394609343260527, -0.07238172739744186,
- 0.007348878309130669, 0.04769670590758324, -0.05070409178733826, 0.012361685745418072,
- -0.02786647342145443, -0.09384521096944809, 0.0017338916659355164, 0.027466436848044395,
- 0.01558429654687643, -0.029942160472273827, 0.01122712716460228, -0.013318389654159546,
- 0.010515663772821426, -0.005285695195198059, 0.0528307668864727, -0.08392754197120667,
- 0.0678095743060112, -0.114166259765625, -0.0832020565867424, 0.08102650940418243,
- -0.01472682598978281, 0.034452181309461594, 0.057342518121004105, -0.022977197542786598,
- 0.02378259040415287, -0.02011709474027157, -0.06060091778635979, 0.009903407655656338,
- 0.04710103198885918, 0.011457053013145924, 0.08516993373632431, 0.15500709414482117,
- -0.024663060903549194, -0.05151240900158882, -0.06556131690740585, 0.07784637063741684,
- 0.08006662875413895, -0.04400748386979103, 0.0229960847645998, -0.033710163086652756,
- 0.004368767607957125, 0.015131235122680664, -0.053999949246644974, -0.07301824539899826,
- 0.01013777032494545, -0.04352780058979988, 0.04487648233771324, -0.004965042229741812,
- -0.03948337957262993, -0.16526861488819122, -0.03130101412534714, -0.034760162234306335,
- 0.02854704111814499, 0.12356168776750565, -0.0592530332505703, -0.0048966421745717525,
- 0.0646086260676384, -0.022527752444148064, -0.0014116782695055008, -0.09994550794363022,
- 0.00018045835895463824, -0.056075017899274826, 0.031045103445649147,
- 0.03497593477368355, 0.05519537255167961, -0.04685866832733154, 0.05217615142464638,
- -0.0995003804564476, 0.03268684819340706, 0.026630952954292297, 0.008600162342190742,
- 0.052918966859579086, -0.045804526656866074, 0.05289537087082863, 0.03596096113324165,
- -0.0342826284468174, 0.0013046171516180038, -0.05220919847488403, -0.013705740682780743,
- -0.11642581969499588, -0.07102585583925247, -0.03531334921717644, -0.07794027775526047,
- 0.0894804298877716, -0.08483225852251053, -0.03972000628709793, -0.04117697849869728,
- -0.004040094558149576, 0.036121297627687454, 0.06477424502372742, 0.02944011427462101,
- -0.13115960359573364, 0.009783171117305756, -0.016745107248425484, 0.07015351206064224,
- -0.035571157932281494, -0.03879215195775032, 0.0038944666739553213, 0.10698457807302475,
- 0.031024068593978882, -0.007966924458742142, 0.0077002160251140594,
- -0.04937304928898811, 0.02101662941277027, -0.0690496489405632, -0.47969523072242737,
- 0.044480349868535995, 0.02452637068927288, 0.049979593604803085, 0.008783792145550251,
- -0.04942220449447632, 0.025770151987671852, 0.00009895709081320092,
- -0.02835831046104431, 0.08636004477739334, -0.05455737188458443, 0.024781547486782074,
- 0.006012318655848503, -0.04173177480697632, -0.03370387852191925, -0.055159181356430054,
- -0.037732817232608795, 0.044186417013406754, -0.0317990817129612, -0.06286000460386276,
- -0.08375224471092224, 0.022618545219302177, -0.02984037809073925, -0.028234170749783516,
- -0.0020024655386805534, 0.01748085208237171, -0.09733899682760239, -0.06319423019886017,
- 0.02039625309407711, 0.05823662877082825, 0.029677284881472588, -0.06779437512159348,
- -0.026778368279337883, 0.033449362963438034, -0.05729566141963005, 0.1461130827665329,
- 0.013863638043403625, 0.022083692252635956, -0.0835864320397377, 0.06527148932218552,
- 0.048687294125556946, 0.18653397262096405, -0.03686205670237541, 0.06135447695851326,
- 0.027460776269435883, 0.1368919163942337, 0.01576181687414646, 0.03784114494919777,
- -0.02147393859922886, 0.005258969496935606, 0.02158980630338192, -0.02552383579313755,
- 0.04020528495311737, -0.06457770615816116, -0.018040183931589127, -0.025544820353388786,
- -0.007490473333746195, -0.021854868158698082, 0.014456205070018768, 0.1810576319694519,
- 0.018067242577672005, 0.03508376330137253, -0.0022326402831822634,
- -0.051602985709905624, -0.04328799247741699, -0.052704211324453354,
- -0.07777413725852966, -0.03828800097107887, -0.01152262557297945, 0.02333936095237732,
- -0.03838060423731804, -0.11594533920288086, -0.017819760367274284, -0.03647219017148018,
- -0.012847446836531162, 0.10092934966087341, -0.006948632653802633, 0.044747691601514816,
- -0.018623825162649155, 0.11867102235555649, 0.033979400992393494, 0.029236778616905212,
- 0.05593498423695564, 0.08263228088617325, 0.016092874109745026, 0.0016955104656517506,
- -0.03280257061123848, -0.07022646814584732, 0.010621238499879837, 0.11349105089902878,
- -0.04124445095658302, 0.08239112794399261, 0.042087484151124954, -0.00952885765582323,
- -0.048150692135095596, 0.03335054591298103, 0.00866782944649458, 0.041415244340896606,
- -0.49111542105674744, -0.015012637712061405, 0.12129145115613937,
- 0.00004196535155642778, 0.0366058349609375, 0.0745086818933487, 0.03822869062423706,
- -0.02846447564661503, -0.040360063314437866, -0.04021769016981125, 0.12741170823574066,
- -0.013431803323328495, 0.056307416409254074, -0.10060272365808487, 0.04201081767678261,
- 0.0835130587220192, -0.015216623432934284, -0.03676282614469528, 0.05635519698262215,
- -0.24003608524799347, 0.013204771094024181, -0.05647793784737587, 0.14339031279087067,
- 0.05819931626319885, 0.03510449081659317, 0.08686680346727371, -0.048793867230415344,
- 0.04943392053246498, 0.042495787143707275, 0.011882416903972626, 0.08821031451225281,
- 0.007455198559910059, -0.03393454849720001, 0.1121346578001976, 0.05979815497994423,
- 0.11368391662836075, -0.0022417574655264616, 11.952775001525879, 0.07324543595314026,
- 0.04336324706673622, -0.06676728278398514, 0.044710785150527954, -0.05790788307785988,
- 0.03387683257460594, -0.08718670159578323, 0.052320320159196854, 0.10994944721460342,
- -0.016536923125386238, -0.020717578008770943, -0.024730199947953224,
- -0.08268033713102341, 0.003547941567376256, -0.09086707979440689, -0.031265739351511,
- -0.020679457113146782, 0.031630970537662506, -0.05193045362830162,
- 0.0033223163336515427, -0.008242102339863777, 0.0842224732041359, 0.03210863098502159,
- -0.09539377689361572, 0.07704086601734161, 0.026285484433174133, 0.012582950294017792,
- 0.010244042612612247, 0.01858150027692318, -0.027925966307520866, 0.022990413010120392,
- 0.06980255246162415, 0.012034672312438488, -0.016701877117156982, 0.0787913128733635,
- 0.030643902719020844, 0.06754014641046524, 0.020097820088267326, 0.06364446133375168,
- 0.03221550211310387, 0.01968776248395443, 0.018491001799702644, 0.03432987257838249,
- 0.0330796092748642, 0.028111381456255913, 0.07556667923927307, 0.11881766468286514,
- 0.022610731422901154, 0.04575756564736366, 0.08373226970434189, -0.012125854380428791,
- 0.12978993356227875, 0.029617438092827797, -0.00495903892442584, 0.014191783033311367,
- -0.02190089039504528, -0.0705859437584877, 0.0750340148806572, 0.07363726943731308,
- -0.052566275000572205, 0.0907856896519661, 0.02248579077422619, 0.12238684296607971,
- -0.008274073712527752, 0.05109072104096413, 0.07780779898166656, 0.07628601044416428,
- -0.11930296570062637, -0.0542973093688488, 0.04620129242539406, -0.11587914824485779,
- -0.04470522329211235, 0.03696257248520851, 0.0913730040192604, -0.04083162546157837,
- 0.05980056896805763, -0.04826784133911133, 0.03376798331737518, -0.022545360028743744,
- -0.010141448117792606, 0.020678209140896797, -0.03578019142150879, 0.026669500395655632,
- 0.037900179624557495, 0.007346015889197588, 0.08755287528038025, 0.09512607008218765,
- -0.029653534293174744, -0.07593920826911926, -0.10123538970947266, 0.06648015230894089,
- -0.00541086308658123, -0.04494414106011391, 0.016516290605068207, -0.042384177446365356,
- 0.028713317587971687, -0.15978951752185822, 0.06311476230621338, 0.10889378935098648,
- -0.10413598269224167, -0.01133359968662262, -0.02661234140396118, 0.06572470813989639,
- -0.012911922298371792, 0.03104299120604992, -0.04515290632843971, 0.012178572826087475,
- 0.02903399057686329, 0.048218462616205215, -0.0589049756526947, 0.07852691411972046,
- 0.06177479028701782, -0.09500827640295029, 0.0712389275431633, 0.06351612508296967,
- -0.013220983557403088, -0.05364631116390228, 0.05707680061459541, 0.03229016810655594,
- -0.09169068932533264, -0.043748706579208374, -0.04517626762390137,
- -0.059083711355924606, -0.028320586308836937, -0.03629114851355553,
- -0.001120801200158894, 0.021641278639435768, -0.06661731004714966,
- -0.030553041025996208, -0.00254822988063097, 0.024370700120925903, 0.12444847077131271,
- 0.01593986339867115, 0.05116521194577217, -0.0740579143166542, -0.03299544379115105,
- 0.05619337037205696, 0.05006013438105583, 0.07384946942329407, -0.03190033510327339,
- 0.015510587953031063, -0.04999515414237976, -0.11071640253067017, 0.003635275410488248,
- 0.08867589384317398, 0.06970386207103729, 0.05170386657118797, 0.04741000756621361,
- -0.07364492863416672, -0.04599745571613312, 0.11687292903661728, 0.04591257497668266,
- 0.0033164191991090775, 0.006841250229626894, -0.08770212531089783,
- 0.0015659179771319032, 0.1509338617324829, -0.03909536823630333, 0.006763821467757225,
- 0.02392183430492878, -0.07325074821710587, 0.04966885223984718, 0.08984306454658508,
- 0.07104545086622238, 0.036546505987644196, 0.020911088213324547, -0.007518933620303869,
- 0.008652512915432453, -0.01084427535533905, 0.016773410141468048,
- -0.0019937336910516024, -0.1417432725429535, -0.08237069100141525, 0.041288238018751144,
- 0.08436273783445358, 0.01700005494058132, -0.1445530652999878, -0.028089791536331177,
- -0.035756465047597885
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 321,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 20,
- "similarity": 0.9981266260147095
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 52,
- "similarity": 0.9981123208999634
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 25,
- "similarity": 0.9980059266090393
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Alan Levin", " Ryan Beene"],
- "epoch_date_downloaded": 1661904000,
- "epoch_date_modified": 1661904000,
- "epoch_date_submitted": 1661904000,
- "flag": null,
- "report_number": 1995,
- "source_domain": "bnnbloomberg.ca",
- "submitters": ["Khoa Lam"],
- "title": "Tesla Model X in California Crash Sped Up Seconds Before Impact",
- "url": "https://www.bnnbloomberg.ca/tesla-model-x-in-california-crash-sped-up-seconds-before-impact-1.1089329"
- },
- {
- "__typename": "Report",
- "authors": ["National Transportation Safety Board"],
- "epoch_date_downloaded": 1661904000,
- "epoch_date_modified": 1661904000,
- "epoch_date_submitted": 1661904000,
- "flag": null,
- "report_number": 1990,
- "source_domain": "ntsb.gov",
- "submitters": ["Khoa Lam"],
- "title": "Collision Between a Sport Utility Vehicle Operating With Partial Driving Automation and a Crash Attenuator",
- "url": "https://www.ntsb.gov/investigations/Pages/HWY18FH011.aspx"
- },
- {
- "__typename": "Report",
- "authors": ["Roberto Baldwin"],
- "epoch_date_downloaded": 1661904000,
- "epoch_date_modified": 1661904000,
- "epoch_date_submitted": 1661904000,
- "flag": null,
- "report_number": 1989,
- "source_domain": "caranddriver.com",
- "submitters": ["Khoa Lam"],
- "title": "Driver in Fatal Tesla Model X Crash Had Complained about Autopilot",
- "url": "https://www.caranddriver.com/news/a30877577/driver-tesla-model-x-crash-complained-autopilot/"
- },
- {
- "__typename": "Report",
- "authors": ["John Goreham"],
- "epoch_date_downloaded": 1661904000,
- "epoch_date_modified": 1661904000,
- "epoch_date_submitted": 1661904000,
- "flag": null,
- "report_number": 1988,
- "source_domain": "torquenews.com",
- "submitters": ["Thomas Giallella (CSET)"],
- "title": "Report: Model X In Latest Tesla Autopilot Death Accelerated And Steered Into Barrier",
- "url": "https://www.torquenews.com/1083/report-model-x-latest-tesla-autopilot-death-accelerated-and-steered-barrier"
- },
- {
- "__typename": "Report",
- "authors": ["BBC News"],
- "epoch_date_downloaded": 1661904000,
- "epoch_date_modified": 1661904000,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 212,
- "source_domain": "bbc.com",
- "submitters": ["Anonymous"],
- "title": "Tesla in fatal California crash was on Autopilot",
- "url": "https://www.bbc.com/news/world-us-canada-43604440"
- },
- {
- "__typename": "Report",
- "authors": ["Jon Fingas"],
- "epoch_date_downloaded": 1661904000,
- "epoch_date_modified": 1661904000,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 209,
- "source_domain": "engadget.com",
- "submitters": ["Anonymous"],
- "title": "Tesla Model X driver dies in Mountain View crash",
- "url": "https://www.engadget.com/2018/03/24/tesla-model-x-driver-dies-in-mountain-view-crash/"
- },
- {
- "__typename": "Report",
- "authors": ["The Guardian"],
- "epoch_date_downloaded": 1662595200,
- "epoch_date_modified": 1662595200,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 200,
- "source_domain": "theguardian.com",
- "submitters": ["Thomas Giallella (CSET)"],
- "title": "Tesla car that crashed and killed driver was running on Autopilot, firm says",
- "url": "https://www.theguardian.com/technology/2018/mar/31/tesla-car-crash-autopilot-mountain-view"
- },
- {
- "__typename": "Report",
- "authors": ["Mike Brown"],
- "epoch_date_downloaded": 1661904000,
- "epoch_date_modified": 1661904000,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 199,
- "source_domain": "inverse.com",
- "submitters": ["Anonymous"],
- "title": "Watch Tesla Autopilot Tackle This ‘Curve of Death’ in Impressive Video",
- "url": "https://www.inverse.com/article/42105-tesla-autopilot-curve-of-death"
- },
- {
- "__typename": "Report",
- "authors": ["Bruce Brown"],
- "epoch_date_downloaded": 1661904000,
- "epoch_date_modified": 1661904000,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 195,
- "source_domain": "digitaltrends.com",
- "submitters": ["Anonymous"],
- "title": "NTSB: Tesla driver killed in crash did not have his hands on the wheel",
- "url": "https://www.digitaltrends.com/cars/tesla-autopilot-fatal-crash-warnings-ignored/"
- },
- {
- "__typename": "Report",
- "authors": ["Reuters"],
- "epoch_date_downloaded": 1661904000,
- "epoch_date_modified": 1661904000,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 194,
- "source_domain": "cnbc.com",
- "submitters": ["Anonymous"],
- "title": "Tesla says crashed vehicle had been on autopilot prior to accident",
- "url": "https://www.cnbc.com/2018/03/30/tesla-says-crashed-vehicle-had-been-on-autopilot-prior-to-accident.html"
- },
- {
- "__typename": "Report",
- "authors": ["Maya Oppenheim"],
- "epoch_date_downloaded": 1661904000,
- "epoch_date_modified": 1661904000,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 190,
- "source_domain": "independent.co.uk",
- "submitters": ["Anonymous"],
- "title": "Tesla car with 'autopilot' function investigated after fatal crash",
- "url": "https://www.independent.co.uk/life-style/gadgets-and-tech/tesla-autopilot-investigation-self-driving-cars-crash-driver-death-elon-musk-a8277306.html"
- },
- {
- "__typename": "Report",
- "authors": ["Jack Stewart"],
- "epoch_date_downloaded": 1661904000,
- "epoch_date_modified": 1661904000,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 188,
- "source_domain": "wired.com",
- "submitters": ["Anonymous"],
- "title": "Tesla's Self-Driving Autopilot Involved in Another Deadly Crash",
- "url": "https://www.wired.com/story/tesla-autopilot-self-driving-crash-california/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "tesla",
- "name": "Tesla"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "tesla",
- "name": "Tesla"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "connecticut-state-police",
- "name": "Connecticut State Police"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [320],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [1994, 1991],
- "vector": [
- -0.11210579425096512, 0.06286077201366425, 0.0030732066370546818, -0.06876982003450394,
- 0.08341176807880402, -0.05190722644329071, -0.0016790088266134262,
- 0.0061698975041508675, 0.07953284680843353, -0.1393788456916809, -0.043262407183647156,
- 0.09754602611064911, 0.0362955741584301, -0.05854920297861099, 0.057300008833408356,
- -0.11227217316627502, -0.0894174873828888, -0.055010415613651276, -0.013511249795556068,
- -0.09372451901435852, -0.08422668278217316, 0.022721057757735252, 0.08355462551116943,
- 0.11466769129037857, -0.01827603578567505, 0.03542730584740639, 0.07473745942115784,
- 0.1048288345336914, -0.0841975063085556, 0.04144170507788658, -0.034415699541568756,
- -0.0881773829460144, 0.14917804300785065, 0.0007077478803694248, 0.023113274946808815,
- 0.1263277530670166, 0.05234827846288681, -0.05098158121109009, -0.0510018952190876,
- 0.01941179484128952, 0.047847598791122437, 0.23987627029418945, -0.02990783005952835,
- -0.02328525111079216, 0.023333437740802765, -0.0501350462436676, 0.04726271331310272,
- 0.0316799022257328, 0.011267812922596931, 0.030936185270547867, -0.0017481320537626743,
- 0.006375575438141823, -0.03813401609659195, 0.030674748122692108, -0.10740500688552856,
- 0.10046663880348206, 0.06835423409938812, 0.011342846788465977, 0.03794310241937637,
- -0.10455778241157532, -0.06604889035224915, -0.24358269572257996, -0.05730309337377548,
- -0.05843665450811386, 0.08633144944906235, -0.09921836853027344, -0.04806438088417053,
- -0.0038903560489416122, -0.00646334420889616, 0.05383104085922241, 0.09932857751846313,
- -0.09173966944217682, -0.0050398316234350204, -0.007982838898897171,
- -0.0013013446005061269, -0.015165174379944801, -0.005208146758377552,
- 0.16557475924491882, -0.11415942013263702, 0.013023119419813156, 0.10460986196994781,
- -0.10620786249637604, 0.5039267539978027, 0.01670665666460991, -0.03751922398805618,
- -0.04763276129961014, 0.09476170688867569, 0.015352698042988777, 0.043348029255867004,
- 0.07383180409669876, -0.01943235471844673, 0.01635235920548439, -0.024799516424536705,
- 0.07879618555307388, 0.09016017615795135, 0.05625085532665253, -0.01453867182135582,
- 0.07099974155426025, -0.03407950699329376, -0.09468315541744232, 0.026236947625875473,
- -0.07252341508865356, 0.09538330137729645, 0.012666975148022175, -0.02292744815349579,
- 0.02070240117609501, 0.09514154493808746, -0.020107010379433632, 0.04229885712265968,
- -0.0594123937189579, 0.020105630159378052, 0.07310608774423599, 0.07617507129907608,
- -0.01394981611520052, 0.05008979141712189, -0.07580126076936722, -0.005759724881500006,
- 0.03666872903704643, 0.08436976373195648, 0.006992716807872057, -0.06308542191982269,
- 0.0606456995010376, 0.11914198100566864, -0.10074497759342194, 0.004677001852542162,
- -0.0603165477514267, -0.10354150831699371, -0.01845286600291729, -0.01444665715098381,
- -0.006001065950840712, -0.06349514424800873, -0.214778333902359, 0.03916297107934952,
- 0.07754973322153091, 0.014265683479607105, -0.0020736726000905037,
- -0.019714366644620895, -0.09790205955505371, 0.02039230801165104, -0.014700794592499733,
- -0.001692548394203186, 0.05743683874607086, -0.004513470456004143, 0.022678788751363754,
- 0.10657352209091187, 0.047003209590911865, -0.06473680585622787, -0.026470985263586044,
- -0.0039112744852900505, -0.032069962471723557, 0.06509406119585037,
- -0.11502739042043686, -0.08338446915149689, 0.04812099039554596, 0.039570607244968414,
- 0.6933915615081787, 0.11971651017665863, 0.18905216455459595, -0.008325794711709023,
- -0.01729673519730568, 0.17515629529953003, 0.008197571150958538, 0.047329872846603394,
- -0.048606257885694504, -0.09590514004230499, 0.012139377184212208,
- -0.054669708013534546, -0.04187259450554848, 0.08400006592273712, 0.029561832547187805,
- 0.10910625755786896, 0.042395349591970444, 0.11901716887950897, 0.0029631927609443665,
- -0.10106118023395538, -0.005379155278205872, 0.06844881922006607, 0.04571747034788132,
- -0.08692871034145355, -0.029295478016138077, 0.057213205844163895, 0.10217799246311188,
- -0.05062904953956604, 0.008446602150797844, -0.027489133179187775, 0.060016803443431854,
- -0.024098128080368042, 0.0022792331874370575, -0.06452815234661102, 0.0312761515378952,
- 0.061598025262355804, 0.07830286026000977, -0.03456348925828934, -0.13670101761817932,
- -0.06659647822380066, 0.14168736338615417, 0.0025118722114712, -0.026458030566573143,
- 0.058087047189474106, -0.10921165347099304, 0.03247693553566933, 0.04475531727075577,
- 0.16604307293891907, -0.12433501332998276, -0.0012949872761964798, 0.021450739353895187,
- 0.009433271363377571, 0.016557594761252403, 0.01119679119437933, -0.06277196109294891,
- -0.05553814768791199, 0.06276830285787582, 0.04927399009466171, 0.10862492024898529,
- 0.0883803516626358, -0.026036247611045837, 0.03689645230770111, 0.0571422204375267,
- -0.026786569505929947, -0.014062714762985706, 0.08395718038082123, 0.047147274017333984,
- -0.033574193716049194, -0.003877030685544014, 0.043998539447784424,
- -0.011972817592322826, 0.07892824709415436, 0.0163652952760458, 0.06421072781085968,
- 0.006393520161509514, -0.02086602710187435, 0.028627753257751465, 0.044670600444078445,
- 0.02589501440525055, 0.12810109555721283, -0.09471200406551361, -0.08814023435115814,
- -0.000863226130604744, -0.07294491678476334, -0.02516823448240757, -0.04555632546544075,
- 0.110651396214962, 0.06833193451166153, 0.10773899406194687, 0.032624974846839905,
- 0.05849011614918709, 0.0639418512582779, 0.03606913238763809, 0.08324787020683289,
- 0.037898510694503784, -0.06795654445886612, -0.06945443153381348, -0.021955374628305435,
- 0.026920242235064507, 0.09760589897632599, 0.03911137580871582, -0.07889591157436371,
- -0.04134174436330795, -0.00459298025816679, -0.0678052306175232, -0.12859007716178894,
- -0.03328942507505417, -0.016144510358572006, 0.0766216591000557, -0.08528542518615723,
- -0.04407191276550293, -0.09199319779872894, -0.009336212649941444, 0.08012211322784424,
- -0.005764461122453213, -0.006303275935351849, -0.10232514142990112,
- 0.021603761240839958, -0.01945045217871666, 0.029851630330085754, -0.019126825034618378,
- -0.01077970489859581, -0.0026166620664298534, -0.06202536076307297,
- -0.006103065330535173, -0.009439242072403431, -0.08093921840190887,
- -0.08067247271537781, -0.08466128259897232, -0.008636868558824062, 0.012209034524857998,
- 0.00376909039914608, -0.009921055287122726, 0.032502371817827225, 0.037537701427936554,
- 0.0449606254696846, -0.02759421616792679, -0.012565420009195805, 0.06907633692026138,
- -0.02723904326558113, -0.021421892568469048, 0.08062118291854858, 0.01085685845464468,
- 0.08502427488565445, -0.028990577906370163, -0.10584723949432373, -0.04165339842438698,
- 0.011592958122491837, -0.05967996269464493, 0.06168428063392639, -0.06265057623386383,
- 0.004162193741649389, -0.02835698425769806, 0.043618712574243546, 0.0564178004860878,
- -0.05113036185503006, -0.11784087866544724, -0.11330795288085938, 0.11330438405275345,
- -0.00553859630599618, -0.03496089577674866, 0.07133886218070984, -0.040873363614082336,
- 0.04865964874625206, -0.006363400723785162, 0.020999670028686523, 0.06370080262422562,
- 0.04873896390199661, -0.025823626667261124, 0.06508660316467285, 0.0374239981174469,
- -0.050253383815288544, 0.022160692140460014, 0.05775878205895424, 0.43220552802085876,
- -0.21714451909065247, 0.08248428255319595, 0.09318865090608597, -0.017129261046648026,
- 0.06554873287677765, -0.06829410791397095, 0.08387746661901474, 0.06231905519962311,
- 0.1179264485836029, 0.14705201983451843, -0.0392012745141983, 0.01743699423968792,
- -0.06280376017093658, 0.09611241519451141, -0.0010573728941380978,
- -0.008732210844755173, 0.002313923090696335, -0.09214730560779572, 0.009965338744223118,
- 0.056870706379413605, -0.06924714148044586, 0.011342478916049004, -0.022730689495801926,
- -0.09111997485160828, 0.009831935167312622, 0.016199231147766113, 0.010349898599088192,
- -0.07091889530420303, 0.011093221604824066, 0.0116612259298563, 0.03336894139647484,
- -0.003030231921002269, 0.04417981579899788, -0.07875044643878937, 0.059271249920129776,
- -0.11522665619850159, -0.1151348203420639, 0.10291443765163422, -0.012683775275945663,
- 0.06993075460195541, 0.045175790786743164, -0.035046473145484924, 0.024007493630051613,
- -0.04988262429833412, -0.06453634798526764, 0.0014709066599607468, 0.06708347797393799,
- 0.06830202043056488, 0.11272849142551422, 0.17792609333992004, -0.03999369218945503,
- -0.05493144690990448, -0.06154429540038109, 0.06479738652706146, 0.05527728423476219,
- -0.06884679943323135, 0.006759277544915676, -0.05109115689992905, 0.018601536750793457,
- 0.0031087580136954784, -0.057212427258491516, -0.07860079407691956,
- 0.013942575082182884, -0.06768672168254852, 0.03053012117743492, 0.004532467573881149,
- -0.05306553095579147, -0.14683414995670319, -0.032597944140434265, -0.03155312314629555,
- 0.02358991466462612, 0.1568887084722519, -0.044644199311733246, 0.016486208885908127,
- 0.03133359178900719, 0.0031603395473212004, 0.03155239298939705, -0.1118636354804039,
- 0.004609976429492235, -0.10094717890024185, 0.06042982265353203, 0.0573648139834404,
- 0.07463036477565765, -0.07854564487934113, 0.035384420305490494, -0.11177052557468414,
- 0.047861695289611816, -0.0000697409559506923, 0.0193940382450819, 0.013337546028196812,
- -0.04080824553966522, 0.06409496068954468, 0.007211324293166399, -0.029721487313508987,
- 0.00045676156878471375, -0.05408564954996109, -0.03806624934077263,
- -0.12002888321876526, -0.09817516803741455, -0.022189417853951454, -0.04783681035041809,
- 0.11254441738128662, -0.11026743799448013, -0.04217606782913208, -0.06260842829942703,
- -0.03644980490207672, 0.018978197127580643, 0.07949994504451752, -0.017314117401838303,
- -0.1751585453748703, -0.00051856879144907, -0.04685647785663605, 0.0716765969991684,
- -0.004210877697914839, -0.039995014667510986, -0.03823684900999069, 0.12168234586715698,
- 0.0468272864818573, 0.006310705095529556, -0.03527935594320297, -0.07741487771272659,
- 0.0010147131979465485, -0.14074015617370605, -0.5202439427375793, 0.04780420660972595,
- 0.026018386706709862, 0.053200863301754, 0.0039405846036970615, -0.04247158765792847,
- 0.015961693599820137, -0.011159946210682392, -0.064356729388237, 0.07819343358278275,
- -0.07106146216392517, 0.03188001364469528, -0.0029042751993983984, -0.09115809202194214,
- -0.029540138319134712, -0.08907443284988403, -0.03354230523109436, 0.02737361006438732,
- -0.049136389046907425, -0.0668247640132904, -0.08374957740306854, 0.012859970331192017,
- -0.05483148247003555, 0.0038201373536139727, -0.03230446204543114, 0.03319179266691208,
- -0.11712706089019775, -0.05059429258108139, 0.009634219110012054, 0.057782553136348724,
- 0.04270927608013153, -0.09340685606002808, -0.029515335336327553, 0.045471809804439545,
- -0.013220981694757938, 0.16306783258914948, 0.020846432074904442, 0.026733210310339928,
- -0.08892501890659332, 0.05265247821807861, 0.0715518593788147, 0.18215426802635193,
- -0.04819469526410103, 0.057494476437568665, 0.05631792172789574, 0.1581394076347351,
- 0.031531739979982376, 0.04233214259147644, -0.02315392903983593, -0.000539613189175725,
- 0.0028630984015762806, -0.04621092975139618, 0.03658138960599899, -0.06074637174606323,
- -0.02359684929251671, -0.010968639515340328, -0.012657178565859795,
- -0.03251107409596443, 0.0469556488096714, 0.17988088726997375, 0.0331561453640461,
- 0.057968415319919586, -0.003771152812987566, -0.04226403683423996,
- -0.010963477194309235, -0.035058703273534775, -0.07763029634952545,
- -0.03395860642194748, -0.023669205605983734, 0.008927308022975922,
- -0.052330318838357925, -0.1199607402086258, -0.0047378093004226685,
- -0.05367512255907059, -0.030222725123167038, 0.1468667984008789, -0.02496487833559513,
- 0.03165949881076813, -0.029877163469791412, 0.16234228014945984, 0.03357027843594551,
- 0.034368425607681274, 0.050162337720394135, 0.10513154417276382, 0.019615186378359795,
- 0.018642254173755646, -0.06295659393072128, -0.08981382101774216, 0.01130473893135786,
- 0.09618474543094635, -0.07599135488271713, 0.06683331727981567, 0.02902987040579319,
- -0.004710852168500423, -0.07406710088253021, 0.04623272642493248, 0.00889923982322216,
- 0.01176378782838583, -0.48963093757629395, -0.015784643590450287, 0.13728812336921692,
- -0.0036775702610611916, 0.04277076572179794, 0.0931985005736351, 0.03624531626701355,
- -0.004167614039033651, -0.009065849706530571, -0.057683065533638, 0.10576359182596207,
- 0.0019676601514220238, 0.043124862015247345, -0.10429814457893372, 0.054686885327100754,
- 0.10621020942926407, 0.022990236058831215, -0.014523560181260109, 0.08015445619821548,
- -0.27130863070487976, 0.020092083141207695, -0.018446076661348343, 0.20400476455688477,
- 0.021215172484517097, 0.028369685634970665, 0.04610462114214897, -0.0704231858253479,
- 0.025432473048567772, 0.03860468789935112, -0.0007261624559760094, 0.025952395051717758,
- -0.007471807301044464, -0.06522869318723679, 0.11599762737751007, 0.07709909230470657,
- 0.10909628123044968, 0.029689613729715347, 12.196819305419922, 0.0934211015701294,
- 0.06502851843833923, -0.05783902853727341, 0.054999835789203644, -0.041571926325559616,
- 0.020087387412786484, -0.09449692815542221, 0.07373804599046707, 0.12826216220855713,
- -0.017899852246046066, -0.03144895285367966, -0.014360829256474972,
- -0.08992108702659607, -0.004432465881109238, -0.09057265520095825,
- -0.040353402495384216, -0.02660488523542881, 0.014739695005118847, -0.06508372724056244,
- -0.008057592436671257, 0.024694902822375298, 0.09285610914230347, 0.028776340186595917,
- -0.08584554493427277, 0.03028644248843193, 0.013960173353552818, -0.01332236360758543,
- 0.02889479137957096, 0.0024493401870131493, -0.020336994901299477,
- -0.008442793041467667, 0.05595996230840683, 0.01873571053147316, -0.03470923751592636,
- 0.10678151249885559, 0.051586467772722244, 0.09448075294494629, 0.007824716158211231,
- 0.04074997827410698, 0.011201372370123863, 0.035466015338897705, 0.03472686931490898,
- 0.062261663377285004, 0.023860495537519455, 0.05003996565937996, 0.0571933314204216,
- 0.14295613765716553, 0.04130873084068298, 0.06306514143943787, 0.10543664544820786,
- 0.0031282231211662292, 0.16195902228355408, 0.08640692383050919, 0.00674042385071516,
- 0.021587779745459557, 0.011692715808749199, -0.05935853719711304, 0.05957138538360596,
- 0.08053981512784958, -0.07012468576431274, 0.0893918052315712, -0.009686173871159554,
- 0.14952091872692108, 0.025721386075019836, 0.03590903803706169, 0.08549946546554565,
- 0.08479480445384979, -0.1427229642868042, -0.07914846390485764, 0.061835214495658875,
- -0.1315009593963623, -0.08762100338935852, 0.03804905340075493, 0.08937735110521317,
- -0.020508257672190666, 0.06969888508319855, -0.07187069952487946, 0.010752493515610695,
- -0.07313130795955658, -0.01725260354578495, 0.035581398755311966, 0.012348482385277748,
- 0.002057950710877776, 0.035666968673467636, -0.009250267408788204, 0.0862296000123024,
- 0.09599960595369339, -0.029411615803837776, -0.13697949051856995, -0.06194762885570526,
- 0.05432526022195816, -0.0027913753874599934, -0.04833010584115982, 0.03402237594127655,
- -0.09236729890108109, 0.07286704331636429, -0.1795187145471573, 0.07458242774009705,
- 0.11864489316940308, -0.0681503415107727, -0.020355671644210815, -0.0449114665389061,
- 0.07106666266918182, -0.009759335778653622, 0.05875495448708534, -0.0609905868768692,
- -0.018108107149600983, 0.030749157071113586, 0.031125783920288086, -0.02896134927868843,
- 0.10705949366092682, 0.08194953203201294, -0.08013470470905304, 0.05538427084684372,
- 0.06618007272481918, 0.0008175862021744251, -0.07007277756929398, 0.0427703931927681,
- 0.062467336654663086, -0.07471238821744919, -0.038248103111982346, -0.01204704213887453,
- -0.053247250616550446, -0.03125159814953804, -0.018180735409259796,
- 0.0000414140522480011, 0.05055004358291626, -0.10028986632823944, -0.026332024484872818,
- -0.009045380167663097, -0.007271605543792248, 0.15385641157627106,
- -0.028699403628706932, 0.07035206258296967, -0.08881315588951111, -0.00910504162311554,
- 0.06371819972991943, 0.04600995033979416, 0.07489804178476334, 0.024963241070508957,
- 0.0004326961934566498, -0.07113805413246155, -0.08924723416566849, 0.029670188203454018,
- 0.12975209951400757, 0.06222712621092796, 0.04482417553663254, 0.06716671586036682,
- -0.1078154519200325, -0.050195254385471344, 0.13050726056098938, 0.046773310750722885,
- -0.035345401614904404, 0.046094268560409546, -0.0952015295624733, -0.01797407679259777,
- 0.13229624927043915, -0.07310570776462555, 0.05168342962861061, 0.05478372797369957,
- -0.03180608153343201, 0.08692402392625809, 0.10314159095287323, 0.0873827114701271,
- 0.04522614926099777, 0.03330026566982269, -0.001220053993165493, 0.017696458846330643,
- -0.019739914685487747, 0.013526971451938152, -0.010999912396073341,
- -0.17411531507968903, -0.09715116024017334, 0.0883655846118927, 0.0963311642408371,
- 0.02172056771814823, -0.11093777418136597, -0.02326047606766224, -0.014322571456432343
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 322,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Sean Szymkowski"],
- "epoch_date_downloaded": 1661904000,
- "epoch_date_modified": 1661904000,
- "epoch_date_submitted": 1661904000,
- "flag": null,
- "report_number": 1994,
- "source_domain": "cnet.com",
- "submitters": ["Khoa Lam"],
- "title": "Tesla Model 3 crashes into police car with Autopilot engaged",
- "url": "https://www.cnet.com/roadshow/news/tesla-model-3-autopilot-crash-police-car/"
- },
- {
- "__typename": "Report",
- "authors": ["John Goreham"],
- "epoch_date_downloaded": 1661904000,
- "epoch_date_modified": 1661904000,
- "epoch_date_submitted": 1661904000,
- "flag": null,
- "report_number": 1991,
- "source_domain": "torquenews.com",
- "submitters": ["Thomas Giallella (CSET)"],
- "title": "Tesla Model 3 On Autopilot Hits Yet Another Police Vehicle - Why Won't They Stop?",
- "url": "https://www.torquenews.com/1083/tesla-model-3-autopilot-hits-yet-another-police-vehicle-why-wont-they-stop"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "tesla",
- "name": "Tesla"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "tesla",
- "name": "Tesla"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "laguna-beach-police-department",
- "name": "Laguna Beach Police Department"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [2006, 1992, 1193],
- "vector": [
- -0.09557054191827774, 0.07696842402219772, -0.01809033937752247, -0.07284384965896606,
- 0.0757659450173378, -0.03318246826529503, -0.005313025321811438, 0.010042550973594189,
- 0.05324143171310425, -0.13012975454330444, 0.027579432353377342, 0.0754375085234642,
- 0.011924129910767078, -0.057757046073675156, 0.03390403836965561, -0.1396673619747162,
- -0.08568796515464783, -0.04273459315299988, -0.04354965314269066, -0.10906662791967392,
- -0.08556180447340012, -0.00344415963627398, 0.07561778277158737, 0.0947895422577858,
- -0.06405950337648392, 0.02489071525633335, 0.07278243452310562, 0.09846382588148117,
- -0.06681779772043228, 0.055884260684251785, 0.004137279465794563, -0.04211583733558655,
- 0.16069035232067108, 0.023102030158042908, 0.018867099657654762, 0.11197755485773087,
- 0.034699343144893646, -0.02404136210680008, -0.07970476895570755, 0.010523785836994648,
- -0.011262781918048859, 0.19569243490695953, 0.00299789453856647, -0.021916747093200684,
- 0.059195440262556076, -0.04012945294380188, 0.01011624839156866, 0.04938143864274025,
- 0.014640999026596546, 0.027999654412269592, -0.004209872800856829, 0.06658822298049927,
- -0.03159450367093086, 0.019448768347501755, -0.12837249040603638, 0.05512816831469536,
- 0.03508632257580757, -0.013951152563095093, 0.06442604213953018, -0.07641231268644333,
- -0.055343594402074814, -0.19942457973957062, -0.06728184968233109, -0.04525594785809517,
- 0.08597120642662048, -0.09189262241125107, -0.0290882159024477, 0.025681516155600548,
- 0.014588340185582638, 0.07237952202558517, 0.07566040009260178, -0.06760594248771667,
- -0.015164053998887539, -0.022794706746935844, 0.014220327138900757,
- 0.0025104647502303123, -0.008543044328689575, 0.20978428423404694, -0.0936279296875,
- 0.014354745857417583, 0.12029985338449478, -0.1238454207777977, 0.4753336012363434,
- 0.007634375244379044, -0.050410330295562744, -0.04367400333285332, 0.07538887858390808,
- 0.04630390927195549, 0.046981263905763626, 0.07264657318592072, -0.01862141489982605,
- 0.023525983095169067, -0.0218361783772707, 0.027880074456334114, 0.057066719979047775,
- 0.04464114084839821, 0.0038976233918219805, 0.044215720146894455, -0.02138403058052063,
- -0.04740104451775551, 0.023546554148197174, -0.04534071683883667, 0.08648738265037537,
- 0.03150240704417229, -0.0052139344625175, 0.045363739132881165, 0.09351232647895813,
- -0.03233766183257103, 0.020060082897543907, -0.05136604979634285, 0.02142925001680851,
- 0.02227463386952877, 0.05984954908490181, 0.01641961745917797, 0.06971326470375061,
- -0.056370873004198074, 0.0223893653601408, 0.06437945365905762, 0.08657615631818771,
- -0.03191874548792839, -0.02241920493543148, 0.07694324851036072, 0.09868910163640976,
- -0.053306400775909424, 0.0068147797137498856, -0.01590983383357525,
- -0.053987544029951096, -0.013028438203036785, -0.032536786049604416,
- 0.028383076190948486, -0.0641491711139679, -0.2524523437023163, 0.026513202115893364,
- 0.09359810501337051, 0.01930762268602848, -0.04472091421484947, 0.0050780377350747585,
- -0.10952428728342056, 0.049043506383895874, -0.02860780619084835, -0.04428042471408844,
- 0.07821571081876755, 0.034478168934583664, 0.028303414583206177, 0.10567595809698105,
- 0.05888882279396057, -0.05917784199118614, -0.0301510002464056, -0.010277275927364826,
- -0.022671373561024666, 0.05249077454209328, -0.08008983731269836, -0.08241935819387436,
- 0.05021505057811737, 0.027427107095718384, 0.6331555247306824, 0.10918053239583969,
- 0.15618111193180084, 0.00309592392295599, -0.00874390173703432, 0.18235237896442413,
- 0.00881925132125616, 0.08900775760412216, -0.05375036224722862, -0.06878063827753067,
- 0.04205919802188873, -0.08686944842338562, -0.0373469777405262, 0.020311301574110985,
- 0.03532576188445091, 0.09741281718015671, 0.04449203610420227, 0.08282995223999023,
- 0.004778881557285786, -0.1130799725651741, -0.01106350775808096, 0.04908819869160652,
- 0.024365367367863655, -0.0987054780125618, -0.0548539012670517, 0.031248576939105988,
- 0.0956834927201271, -0.06816891580820084, 0.04853005334734917, -0.035979434847831726,
- 0.030947083607316017, -0.014130494557321072, 0.004977104719728231,
- -0.037377700209617615, 0.0077047268860042095, 0.04191659763455391, 0.08652094006538391,
- -0.01769724301993847, -0.14111120998859406, -0.031373221427202225, 0.13540618121623993,
- 0.03623991087079048, -0.04076376184821129, 0.07640623301267624, -0.09555676579475403,
- 0.04900289699435234, 0.025159655138850212, 0.14065401256084442, -0.06791005283594131,
- 0.0005971728824079037, 0.020211057737469673, 0.010569542646408081, 0.06194380298256874,
- -0.02661612629890442, -0.06448575109243393, -0.05354433134198189, 0.08210396766662598,
- 0.03194058686494827, 0.07281080633401871, 0.06877783685922623, -0.024016588926315308,
- 0.04360811039805412, 0.019111603498458862, -0.009604805149137974, -0.03548106923699379,
- 0.0794958546757698, 0.08528643101453781, -0.02937818504869938, 0.007683830801397562,
- 0.02447986789047718, 0.011451858095824718, 0.028398213908076286, -0.011748070828616619,
- 0.06533738225698471, 0.017099685966968536, -0.02925361879169941, 0.04355713725090027,
- 0.0012432999210432172, -0.009536520577967167, 0.12372604757547379, -0.06711633503437042,
- -0.05994613468647003, 0.007161744404584169, -0.025427306070923805, -0.02342548780143261,
- -0.017141293734312057, 0.09535479545593262, 0.02849441207945347, 0.07942202687263489,
- 0.025656620040535927, 0.041027527302503586, 0.05861863121390343, 0.04896281659603119,
- 0.0600874237716198, 0.028869865462183952, -0.019527340307831764, -0.09937810152769089,
- -0.01037297397851944, -0.0049428497441112995, 0.09211280941963196, 0.07373590022325516,
- -0.09068533033132553, -0.025756582617759705, 0.024338142946362495,
- -0.023510629311203957, -0.07357024401426315, -0.014871805906295776,
- -0.001369056641124189, 0.050682395696640015, -0.03900621458888054,
- -0.043073248118162155, -0.1121985912322998, 0.029125535860657692, 0.06865468621253967,
- -0.002168528502807021, 0.0022512085270136595, -0.08817372471094131,
- -0.026209920644760132, -0.038942087441682816, 0.04621872305870056,
- 0.00013509888958651572, 0.005654144566506147, 0.005921998526901007,
- -0.03630765154957771, -0.013599052093923092, 0.0005704586510546505,
- -0.044559042900800705, -0.03532557189464569, -0.0697188675403595, -0.042085301131010056,
- 0.019693659618496895, 0.009658544324338436, -0.0035286496859043837, 0.06908681988716125,
- 0.05195056274533272, 0.03999626263976097, -0.011936661787331104, 0.005349386483430862,
- 0.07170147448778152, -0.057408202439546585, -0.002894025994464755, 0.09247874468564987,
- -0.008990701287984848, 0.029044264927506447, -0.017219185829162598,
- -0.07375190407037735, -0.03791293501853943, 0.0018493210664018989, -0.05404893681406975,
- 0.04800068959593773, -0.05021710321307182, -0.004113982897251844, -0.036896396428346634,
- 0.004108879715204239, 0.052478332072496414, -0.06651847064495087, -0.059386640787124634,
- -0.11873779445886612, 0.11331089586019516, -0.028679415583610535, -0.03275564685463905,
- 0.018733998760581017, -0.06878568977117538, 0.05634431168437004, -0.04019169881939888,
- -0.010507483966648579, 0.04861198738217354, 0.04231727123260498, -0.03425298258662224,
- 0.004193541128188372, 0.03922389820218086, -0.009546995162963867, -0.01538929808884859,
- 0.057965829968452454, 0.4156155586242676, -0.1733008474111557, 0.048214975744485855,
- 0.07950566709041595, 0.016008751466870308, 0.0847439095377922, -0.042160529643297195,
- 0.04902200773358345, 0.07175859808921814, 0.1012473925948143, 0.06757008284330368,
- -0.0013870004331693053, -0.0009645682875998318, -0.0414709635078907,
- 0.09507691115140915, 0.005205080378800631, 0.008176099509000778, -0.00954403169453144,
- -0.0761713758111, 0.004648381378501654, 0.0265133585780859, -0.06283023953437805,
- 0.017006834968924522, -0.004045551642775536, -0.1036592423915863, 0.004925596062093973,
- 0.013499955646693707, 0.048804327845573425, -0.022914821282029152, 0.006408838089555502,
- 0.0019334354437887669, 0.029881427064538002, 0.01377937477082014, 0.04462471231818199,
- -0.08306199312210083, 0.04207665100693703, -0.12438683956861496, -0.08955007791519165,
- 0.09333749860525131, -0.029290825128555298, 0.023161940276622772, 0.06769728660583496,
- -0.016438880935311317, 0.03187213093042374, -0.019102657213807106, -0.07479341328144073,
- 0.01993652991950512, 0.04571674391627312, 0.023099534213542938, 0.08429497480392456,
- 0.15588998794555664, -0.05102438107132912, -0.05409073829650879, -0.06484583020210266,
- 0.06752658635377884, 0.07262543588876724, -0.057939786463975906, 0.029284195974469185,
- -0.01605174131691456, 0.002604071982204914, 0.01646445319056511, -0.03928958997130394,
- -0.07732820510864258, 0.040533095598220825, -0.018132811412215233, 0.06463371962308884,
- -0.0006521896575577557, -0.024917788803577423, -0.15569500625133514,
- -0.02135310508310795, -0.04270235821604729, -0.0012643629452213645, 0.13943590223789215,
- -0.05296618863940239, -0.019837962463498116, 0.06426424533128738, -0.012120977975428104,
- 0.027229085564613342, -0.08052115887403488, -0.012849408201873302, -0.08196350187063217,
- 0.04967606067657471, 0.042346928268671036, 0.055150192230939865, -0.0456056110560894,
- 0.054984766989946365, -0.0838276743888855, 0.04454807937145233, 0.07137639075517654,
- -0.0156856719404459, 0.041445065289735794, -0.010074682533740997, 0.0785340890288353,
- 0.014288060367107391, -0.026703426614403725, -0.010592210106551647,
- -0.04023971036076546, -0.041283681988716125, -0.12250790745019913,
- -0.057691361755132675, -0.038155946880578995, -0.07652492076158524, 0.0885089635848999,
- -0.08070055395364761, -0.02826261706650257, -0.03766686096787453, 0.004126988351345062,
- 0.029475323855876923, 0.059433747082948685, 0.02626977302134037, -0.14344380795955658,
- -0.0013134792679920793, -0.02538914419710636, 0.06816475838422775, -0.05953337252140045,
- -0.07259096950292587, 0.04242679104208946, 0.10464420169591904, 0.036604899913072586,
- -0.020041583105921745, 0.015236753039062023, -0.043809592723846436,
- 0.027462748810648918, -0.1031644344329834, -0.5394619703292847, 0.02677711844444275,
- 0.018033893778920174, 0.06016599014401436, -0.003671160200610757, -0.06957907974720001,
- 0.05389733240008354, 0.011485911905765533, -0.040497731417417526, 0.08655282855033875,
- -0.056096915155649185, 0.04438551142811775, 0.029192110523581505, -0.06064774468541145,
- -0.010366073809564114, -0.06296742707490921, -0.030478784814476967,
- 0.025578968226909637, -0.03085118532180786, -0.08145350962877274, -0.0809093564748764,
- 0.008911187760531902, -0.006617933977395296, 0.017247498035430908, -0.03473665937781334,
- 0.03426292911171913, -0.09969684481620789, -0.06073402985930443, 0.008432877250015736,
- 0.06397116929292679, 0.025129059329628944, -0.05987013503909111, -0.038116205483675,
- 0.07249781489372253, -0.036821331828832626, 0.13368436694145203, 0.008026119321584702,
- 0.027948589995503426, -0.09960722923278809, 0.08136199414730072, 0.04063792899250984,
- 0.18496322631835938, -0.04588155820965767, 0.08016359806060791, 0.023700037971138954,
- 0.1363946795463562, 0.020116904750466347, 0.031535156071186066, -0.025674333795905113,
- 0.018281659111380577, 0.02859421633183956, -0.001323525793850422, 0.03580869361758232,
- -0.07901543378829956, -0.012422996573150158, -0.048626746982336044,
- -0.014713452197611332, -0.025621503591537476, 0.012995645403862, 0.17687338590621948,
- 0.03246928006410599, 0.04687061905860901, 0.007012911140918732, -0.07334897667169571,
- -0.007666944060474634, -0.03161069378256798, -0.08768519014120102,
- -0.005082688760012388, -0.0025555179454386234, 0.00953572615981102,
- 0.0032721832394599915, -0.12437188625335693, -0.012831571511924267,
- -0.04188080504536629, -0.026782462373375893, 0.07975509017705917, -0.01665090024471283,
- 0.0662722960114479, -0.04448273777961731, 0.10536667704582214, 0.042747750878334045,
- 0.02811668999493122, 0.06028832122683525, 0.07621882855892181, -0.0046316105872392654,
- -0.0354023315012455, -0.06342703104019165, -0.08816667646169662, -0.02867620624601841,
- 0.10507306456565857, -0.04807455837726593, 0.07753032445907593, 0.019573280587792397,
- -0.0049267602153122425, -0.04879700019955635, 0.027665069326758385,
- 0.012703129090368748, 0.03588511422276497, -0.5204663872718811, 0.00423259986564517,
- 0.1422766000032425, 0.005747916176915169, 0.042795151472091675, 0.09468870609998703,
- 0.0513157956302166, -0.03087768517434597, -0.016987314447760582, -0.028705330565571785,
- 0.12982073426246643, -0.006001036614179611, 0.0499366819858551, -0.09630611538887024,
- 0.060637038201093674, 0.07777035981416702, -0.008513939566910267, -0.04786635562777519,
- 0.044148173183202744, -0.1878565549850464, -0.010783963836729527, -0.05753910541534424,
- 0.16977958381175995, 0.06369876116514206, 0.012825466692447662, 0.06760784238576889,
- -0.06855986267328262, 0.03708010911941528, 0.06244051083922386, 0.045424412935972214,
- 0.0846027135848999, 0.0033960144501179457, -0.049898937344551086, 0.1003432497382164,
- 0.06432650983333588, 0.07955238223075867, 0.017717091366648674, 12.032520294189453,
- 0.07808705419301987, 0.05704882740974426, -0.07258576154708862, 0.055568795651197433,
- -0.07238782197237015, 0.03603774681687355, -0.11919515579938889, 0.060615506023168564,
- 0.09168436378240585, -0.009470016695559025, -0.028560617938637733, -0.03205935284495354,
- -0.08571123331785202, -0.01544479001313448, -0.09559643268585205, -0.016441447660326958,
- -0.03744739666581154, 0.02723103202879429, -0.03346968814730644, -0.0052940272726118565,
- 0.0015012124786153436, 0.07697689533233643, 0.04700795188546181, -0.10903524607419968,
- 0.03525303304195404, 0.030729757621884346, -0.011384007520973682, -0.003236871212720871,
- 0.019451716914772987, -0.04317842051386833, 0.003939857706427574, 0.064213827252388,
- 0.020546192303299904, -0.021843666210770607, 0.08273708075284958, 0.016697853803634644,
- 0.06376349180936813, -0.010294914245605469, 0.08638902753591537, 0.02935674600303173,
- -0.017279965803027153, 0.013127333484590054, 0.023296719416975975, 0.05005098506808281,
- 0.04032076522707939, 0.07784340530633926, 0.12246925383806229, 0.04944758117198944,
- 0.041544828563928604, 0.0843171700835228, -0.017552364617586136, 0.1373576521873474,
- 0.0611005537211895, 0.0053305537439882755, 0.04943714663386345, -0.011625896207988262,
- -0.061769481748342514, 0.06521352380514145, 0.09709355980157852, -0.04209781065583229,
- 0.07901296764612198, 0.0028856461867690086, 0.10786504298448563, 0.007040107622742653,
- 0.028251102194190025, 0.08023432642221451, 0.09788621217012405, -0.14722244441509247,
- -0.052282076328992844, 0.051539044827222824, -0.12436576932668686, -0.04206870123744011,
- 0.019302494823932648, 0.06236698105931282, -0.056705016642808914, 0.049669597297906876,
- -0.04952169582247734, 0.024193912744522095, -0.05981597304344177, -0.025469070300459862,
- 0.021197205409407616, -0.0232858806848526, 0.023617224767804146, 0.0390893779695034,
- 0.008654042147099972, 0.08694741874933243, 0.08853856474161148, -0.0013089478015899658,
- -0.12091097980737686, -0.09797456115484238, 0.11314467340707779, -0.03536367788910866,
- -0.05936281010508537, 0.002044920576736331, -0.06956091523170471, 0.022120527923107147,
- -0.16387714445590973, 0.06668321043252945, 0.10836204141378403, -0.09872931241989136,
- -0.011430233716964722, -0.04071594774723053, 0.08508700132369995, -0.02227245829999447,
- 0.04921778663992882, -0.05488211289048195, 0.02210433967411518, 0.006641943007707596,
- 0.043038260191679, -0.06440509110689163, 0.053619384765625, 0.07112231850624084,
- -0.06620223075151443, 0.06036229804158211, 0.05692712962627411, -0.016357917338609695,
- -0.06780079752206802, 0.07952796667814255, 0.032070424407720566, -0.10549011081457138,
- -0.04063825309276581, -0.018266519531607628, -0.047220055013895035,
- -0.005796266254037619, -0.05373910069465637, 0.0010556256165727973,
- 0.025800952687859535, -0.05861542746424675, -0.024591997265815735, 0.013745901174843311,
- 0.0032385338563472033, 0.11132705211639404, 0.02199496328830719, 0.06830589473247528,
- -0.052557747811079025, -0.017818620428442955, 0.06433891505002975, 0.048337485641241074,
- 0.08356361836194992, 0.004266844596713781, 0.011233426630496979, -0.06039489433169365,
- -0.09820252656936646, -0.023657621815800667, 0.09998980909585953, 0.05730314925312996,
- 0.03111279010772705, 0.04450945183634758, -0.09069695323705673, -0.016082337126135826,
- 0.11899087578058243, 0.01572493650019169, -0.006594536360353231, 0.0006111326511017978,
- -0.11303620785474777, 0.0018317500362172723, 0.14232218265533447, -0.06415557116270065,
- 0.006447625812143087, 0.009106614626944065, -0.06559592485427856, 0.06079097092151642,
- 0.05872523412108421, 0.07713250815868378, 0.011980648152530193, 0.016962260007858276,
- 0.012231257744133472, 0.0032824173104017973, -0.012449469417333603,
- -0.005925499368458986, -0.0026544604916125536, -0.1505080610513687, -0.0837428867816925,
- 0.08231005072593689, 0.07428092509508133, 0.013115757144987583, -0.13041456043720245,
- -0.019014013931155205, -0.05620712414383888
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 323,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 20,
- "similarity": 0.9987024068832397
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 67,
- "similarity": 0.9986467957496643
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 71,
- "similarity": 0.9985110759735107
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Brittny Mejia"],
- "epoch_date_downloaded": 1661904000,
- "epoch_date_modified": 1662508800,
- "epoch_date_submitted": 1661904000,
- "flag": null,
- "report_number": 2006,
- "source_domain": "latimes.com",
- "submitters": ["Khoa Lam"],
- "title": "Tesla in Autopilot mode crashes into parked Laguna Beach police cruiser",
- "url": "http://www.latimes.com/local/lanow/la-me-ln-tesla-collision-20180529-story.html"
- },
- {
- "__typename": "Report",
- "authors": ["John Goreham"],
- "epoch_date_downloaded": 1661904000,
- "epoch_date_modified": 1661904000,
- "epoch_date_submitted": 1661904000,
- "flag": null,
- "report_number": 1992,
- "source_domain": "torquenews.com",
- "submitters": ["Thomas Giallella (CSET)"],
- "title": "Another Tesla On Autopilot Hits Another Emergency Vehicle - You Can't Make This Stuff Up",
- "url": "https://www.torquenews.com/1083/report-another-tesla-autopilot-hits-another-emergency-vehicle-you-cant-make-stuff"
- },
- {
- "__typename": "Report",
- "authors": ["BBC News"],
- "epoch_date_downloaded": 1661904000,
- "epoch_date_modified": 1661904000,
- "epoch_date_submitted": 1559347200,
- "flag": null,
- "report_number": 1193,
- "source_domain": "bbc.com",
- "submitters": ["Catherine Olsson"],
- "title": "Tesla hit parked police car 'while using Autopilot'",
- "url": "https://www.bbc.com/news/technology-44300952"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "the-bl",
- "name": "The BL"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "unknown",
- "name": "Unknown"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "instagram-users",
- "name": "Instagram users"
- },
- {
- "__typename": "Entity",
- "entity_id": "facebook-users",
- "name": "Facebook users"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [174, 205],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [2003, 2002, 2001, 2000, 1999, 1998],
- "vector": [
- -0.0681607723236084, 0.041396550834178925, 0.0015540121821686625, -0.10804333537817001,
- 0.08964324742555618, -0.07058180123567581, 0.012865491211414337, 0.021823666989803314,
- 0.06575101613998413, -0.13960620760917664, -0.023463232442736626, 0.0206705704331398,
- 0.02937597781419754, -0.11250027269124985, 0.01920132152736187, -0.07098744809627533,
- -0.10768520832061768, 0.009061162360012531, 0.02289249747991562, -0.09562721103429794,
- -0.06654071807861328, 0.011396906338632107, 0.032563161104917526, 0.13493092358112335,
- 0.01926499605178833, 0.033871524035930634, 0.10650330781936646, 0.15533263981342316,
- -0.10204029083251953, 0.04724273085594177, -0.014946282841265202, -0.04744948819279671,
- 0.14879746735095978, -0.023853501304984093, 0.005929118022322655, 0.08895692974328995,
- 0.05840587615966797, -0.02585729770362377, -0.0303445253521204, -0.011783890426158905,
- 0.046063680201768875, 0.19422225654125214, -0.02702435851097107, -0.018764367327094078,
- 0.05792025104165077, 0.004564038012176752, 0.014291085302829742, 0.059168148785829544,
- -0.014866220764815807, -0.033432457596063614, -0.0036661503836512566,
- -0.031174177303910255, -0.05348174646496773, 0.007678364869207144, -0.07661395519971848,
- 0.08259674161672592, 0.047242939472198486, -0.057875048369169235, 0.006569989025592804,
- -0.0405111126601696, -0.020710662007331848, -0.23720787465572357, -0.047229211777448654,
- -0.04465514048933983, 0.061529453843832016, -0.07499541342258453, -0.017608365043997765,
- 0.005715940613299608, 0.025767521932721138, 0.04889567196369171, 0.02497469075024128,
- -0.07286545634269714, -0.01803429238498211, -0.003677367465570569, 0.00602734973654151,
- -0.02374698407948017, 0.043921757489442825, 0.14960874617099762, -0.05704733356833458,
- 0.028273532167077065, 0.0859258696436882, -0.07366582751274109, 0.3734606206417084,
- -0.00764467241242528, -0.015407382510602474, 0.03956392779946327, 0.09608110785484314,
- 0.022206395864486694, 0.005267505068331957, 0.03985213860869408, -0.000380426092306152,
- 0.04322553053498268, -0.05194258689880371, 0.009325943887233734, 0.05212411284446716,
- 0.03692299872636795, -0.012114121578633785, -0.027818895876407623, -0.02861102856695652,
- -0.049251604825258255, 0.01358141377568245, -0.020407212898135185, 0.12722666561603546,
- 0.07776428014039993, -0.03526343032717705, 0.032784346491098404, 0.06355833262205124,
- -0.07805608958005905, 0.0283991489559412, -0.047400325536727905, 0.006192801985889673,
- 0.012930301018059254, 0.07909171283245087, 0.011465958319604397, 0.03233151137828827,
- -0.02569372020661831, -0.026750771328806877, 0.009670251049101353, 0.06058593466877937,
- 0.052533894777297974, 0.030246177688241005, 0.07432489097118378, 0.09800206869840622,
- -0.06015203893184662, -0.012634905986487865, -0.04491583630442619,
- -0.045165617018938065, 0.014674796722829342, -0.02992156147956848, 0.02777041308581829,
- -0.04117308929562569, -0.14120115339756012, 0.03826418146491051, 0.0417666882276535,
- -0.00157071091234684, -0.04303942248225212, 0.021589279174804688, -0.06087054684758186,
- -0.009957347065210342, 0.01881754957139492, 0.010030500590801239, 0.07624370604753494,
- 0.0369376465678215, 0.027691489085555077, 0.10872062295675278, 0.0012466838816180825,
- -0.03568216413259506, -0.06407264620065689, -0.006726778578013182, -0.03887946158647537,
- 0.07472474128007889, -0.08655810356140137, -0.031011050567030907, 0.010681002400815487,
- 0.0007679045666009188, 0.6624996662139893, 0.09802482277154922, 0.16497193276882172,
- 0.014037243090569973, -0.019174961373209953, 0.16783350706100464, 0.005717914551496506,
- 0.04044689983129501, -0.039266832172870636, -0.08423218131065369, 0.010001851245760918,
- -0.030070872977375984, -0.029222285374999046, 0.020944619551301003, 0.03865627944469452,
- 0.08516254276037216, 0.03335254266858101, 0.12714053690433502, 0.022708088159561157,
- -0.07699138671159744, -0.04257368668913841, 0.030120274052023888, 0.0028669743333011866,
- -0.09862484782934189, -0.014610483311116695, 0.07229354977607727, 0.09592484682798386,
- -0.054771289229393005, 0.0007295183022506535, -0.06295336037874222, 0.09369180351495743,
- -0.01669122837483883, 0.05233113840222359, -0.01456741988658905, 0.035824961960315704,
- 0.015793299302458763, 0.025378607213497162, -0.005566941574215889, -0.06350374966859818,
- -0.05835555121302605, 0.0896015539765358, 0.0165609959512949, -0.03238344565033913,
- 0.0695091262459755, -0.07159099727869034, 0.0316707044839859, 0.008182444609701633,
- 0.14255380630493164, -0.1192115768790245, -0.014981601387262344, -0.013874231837689877,
- -0.045114923268556595, 0.037024904042482376, -0.015238750725984573,
- -0.05646022781729698, -0.09522431343793869, 0.07628289610147476, 0.040520329028367996,
- 0.0704011395573616, 0.027142852544784546, -0.01603163778781891, 0.03572910279035568,
- -0.01688123680651188, 0.031177014112472534, -0.08575538545846939, 0.07470716536045074,
- -0.0028955114539712667, -0.04767150059342384, -0.02688601426780224, 0.07359301298856735,
- 0.04627811536192894, 0.040382836014032364, -0.020471682772040367, 0.06534392386674881,
- -0.007216414902359247, -0.013395488262176514, 0.048317525535821915, 0.02709728479385376,
- 0.018479712307453156, 0.06589478999376297, -0.1439325213432312, -0.030931225046515465,
- -0.05351069197058678, -0.015319055877625942, 0.015506497584283352,
- -0.036428555846214294, 0.05680030956864357, 0.07927315682172775, 0.07429471611976624,
- 0.014127373695373535, 0.05619308352470398, 0.055124614387750626, 0.043539419770240784,
- -0.0032808107789605856, 0.09827810525894165, -0.008296790532767773,
- -0.013268493115901947, -0.03494635596871376, 0.01918460987508297, 0.03139297291636467,
- 0.0033033147919923067, -0.05190125107765198, -0.024105893447995186,
- -0.04839786887168884, -0.04420815035700798, -0.09001617878675461, -0.048970144242048264,
- 0.05572729930281639, 0.0626186802983284, -0.060523223131895065, -0.05514116957783699,
- -0.040135208517313004, 0.011574700474739075, 0.03428361564874649, -0.009623480029404163,
- -0.023794278502464294, -0.10086961835622787, 0.021108010783791542,
- -0.012469698674976826, 0.049743711948394775, -0.0269697904586792, 0.012984012253582478,
- -0.028761394321918488, -0.06284753233194351, -0.008576060645282269,
- 0.017963483929634094, -0.029163949191570282, -0.033914223313331604,
- -0.05919167399406433, -0.046697601675987244, -0.03305859863758087, 0.01628235913813114,
- -0.013121356256306171, -0.002761578420177102, 0.046952929347753525, 0.04456791654229164,
- -0.02922295778989792, 0.023652104660868645, 0.04982740804553032, -0.054200679063797,
- -0.020044289529323578, 0.07816760241985321, -0.04832084849476814, 0.04563143849372864,
- -0.013998604379594326, -0.03440604731440544, -0.04742415249347687,
- -0.0022908637765794992, -0.0415901280939579, 0.04819941520690918, -0.020053599029779434,
- -0.028554340824484825, -0.035332560539245605, 0.006810825318098068, 0.08406266570091248,
- -0.07828668504953384, -0.07189615070819855, -0.08946475386619568, 0.11444041132926941,
- -0.026567859575152397, 0.014856881462037563, 0.01084199920296669, -0.01557787787169218,
- 0.014603025279939175, 0.028943626210093498, 0.03654547035694122, 0.05430694296956062,
- 0.0715307965874672, -0.012468413449823856, -0.026801718398928642, 0.06272942572832108,
- -0.015515646897256374, 0.03142167255282402, 0.07739996910095215, 0.40549254417419434,
- -0.12431313842535019, 0.09091648459434509, 0.08703102916479111, 0.03424841910600662,
- 0.04074960574507713, -0.03570367023348808, 0.08463738113641739, 0.056821420788764954,
- 0.09013908356428146, 0.12690524756908417, -0.06699899584054947, 0.04455220326781273,
- -0.036533329635858536, 0.06624790281057358, 0.02780257910490036, 0.016375361010432243,
- -0.009097870439291, -0.006513005588203669, -0.04206767678260803, 0.058605071157217026,
- -0.011143661104142666, 0.008373526856303215, -0.035938698798418045,
- -0.035512927919626236, 0.04332813248038292, 0.05214064195752144, 0.030877811834216118,
- -0.0380060188472271, 0.032019276171922684, 0.01016423013061285, 0.0025017079897224903,
- 0.002831332618370652, 0.05499565228819847, -0.07375849038362503, 0.016360284760594368,
- -0.04201052710413933, -0.09802918881177902, 0.05766011402010918, 0.03928616642951965,
- 0.05526791885495186, 0.019877681508660316, 0.0031083894427865744, 0.04140811040997505,
- 0.010407333262264729, -0.027792541310191154, -0.014674450270831585,
- 0.051848407834768295, 0.012887336313724518, 0.12459691613912582, 0.1472739428281784,
- -0.02317541092634201, -0.011325889267027378, -0.09220666438341141, 0.037880051881074905,
- 0.10231924802064896, -0.02180417813360691, 0.02016216330230236, 0.01698668673634529,
- -0.006109117995947599, -0.00968166347593069, -0.044103171676397324,
- -0.06370089948177338, -0.021919578313827515, -0.06456867605447769, 0.07202737778425217,
- 0.039302293211221695, -0.04373898729681969, -0.1304006427526474, -0.03079202026128769,
- -0.0403020940721035, 0.04808993265032768, 0.09101322293281555, -0.07228872179985046,
- 0.014414716511964798, 0.023566817864775658, 0.005874530877918005, -0.0379464291036129,
- -0.06273171305656433, -0.011126727797091007, -0.0462738536298275, 0.027361711487174034,
- 0.07576286792755127, 0.05715024471282959, -0.06675464659929276, 0.06160837039351463,
- -0.13376089930534363, 0.02325555682182312, 0.003186693647876382, -0.010436476208269596,
- 0.005493739619851112, -0.05758988857269287, 0.0110752759501338, -0.00905830878764391,
- -0.04622777923941612, -0.029250046238303185, -0.026476427912712097,
- -0.03378332778811455, -0.07199620455503464, -0.0650610700249672, -0.045158643275499344,
- -0.06590811163187027, 0.07038746029138565, -0.09838435053825378, 0.027975335717201233,
- -0.04290877655148506, -0.004065459128469229, -0.017883582040667534, 0.04971882328391075,
- -0.008923670276999474, -0.13205339014530182, -0.03386550769209862,
- -0.004738219082355499, 0.04492698609828949, -0.021883072331547737, -0.07708967477083206,
- -0.03126630559563637, 0.05630236864089966, -0.0003818521508947015, -0.04151063784956932,
- 0.021116701886057854, -0.04114268720149994, 0.05980365350842476, -0.10722901672124863,
- -0.4038996398448944, 0.05643397569656372, 0.017468824982643127, 0.06017013266682625,
- -0.004186328966170549, -0.0782541036605835, 0.040162600576877594, -0.005197108257561922,
- -0.026559604331851006, 0.06225034222006798, -0.034018442034721375, 0.023594938218593597,
- -0.026563329622149467, -0.033909667283296585, -0.01224703248590231,
- -0.07809402793645859, -0.04522140696644783, 0.005912707652896643, -0.009490340948104858,
- -0.04955393075942993, -0.07663468271493912, 0.034121185541152954, -0.024217909201979637,
- -0.03677517548203468, 0.025186942890286446, 0.012163915671408176, -0.07193753868341446,
- -0.06317061185836792, 0.04012032225728035, 0.056827325373888016, 0.0015602639177814126,
- -0.0705040693283081, -0.01415309775620699, 0.08460348844528198, 0.012140650302171707,
- 0.1219412162899971, 0.03327185660600662, 0.026407888159155846, -0.06730249524116516,
- 0.07548005133867264, 0.0746166929602623, 0.1893254965543747, -0.01888091489672661,
- 0.03329142555594444, 0.0337185338139534, 0.07664546370506287, 0.01597791351377964,
- 0.039113402366638184, -0.05239013954997063, -0.00620518671348691, -0.010087813250720501,
- -0.00310678337700665, 0.07391811907291412, -0.06747166067361832, -0.008559887297451496,
- -0.04209199175238609, -0.0187364611774683, -0.03845783695578575, -0.019157495349645615,
- 0.15884976089000702, 0.013858242891728878, -0.01689215935766697, 0.02571081556379795,
- -0.02813241071999073, -0.012859836220741272, -0.09302723407745361, -0.05161357298493385,
- -0.02778746746480465, 0.014347605407238007, 0.02810768224298954, -0.07058651000261307,
- -0.0889621153473854, -0.002135190647095442, -0.010685461573302746, 0.011717441491782665,
- 0.11843222379684448, -0.0566139854490757, -0.0011927952291443944,
- -0.0069184862077236176, 0.1408996731042862, 0.021992996335029602, 0.029873870313167572,
- 0.04696786031126976, 0.07721642404794693, 0.021322166547179222, -0.017240770161151886,
- -0.009057549759745598, -0.08057150989770889, -0.0011986644240096211, 0.1388479620218277,
- -0.026688484475016594, 0.1377178132534027, 0.016550930216908455, -0.012711667455732822,
- -0.0416497103869915, 0.006524324882775545, 0.010910850018262863, 0.018810680136084557,
- -0.4261782169342041, -0.04253320023417473, 0.10032551735639572, -0.005760957021266222,
- 0.023142343387007713, 0.06291928142309189, 0.004024794790893793, -0.02233395166695118,
- -0.014106404036283493, -0.08370225876569748, 0.10477880388498306, 0.003142639761790633,
- 0.041095081716775894, -0.12405397742986679, 0.02208940126001835, 0.11650753766298294,
- -0.0011115135857835412, -0.010471519082784653, 0.01806173287332058,
- -0.22736896574497223, -0.0029523952398449183, -0.01902521401643753, 0.11582142114639282,
- 0.013292103074491024, 0.030540795996785164, 0.09120427817106247, -0.021361522376537323,
- 0.020347269251942635, 0.029862573370337486, -0.0000424791760451626, 0.05539192631840706,
- -0.008747926913201809, -0.03784775733947754, 0.1030770018696785, 0.09675223380327225,
- 0.08628034591674805, -0.02696090005338192, 11.800762176513672, 0.06235893443226814,
- 0.07019241899251938, -0.09028170257806778, 0.018738994374871254, -0.04088657721877098,
- 0.02863767184317112, -0.04592369496822357, 0.06316056102514267, 0.10323702543973923,
- 0.0051209465600550175, -0.03337107226252556, -0.07995980978012085, -0.06373210996389389,
- 0.0011172130471095443, -0.01106305792927742, -0.05547186732292175,
- -0.027481524273753166, 0.01981496810913086, -0.03156030550599098, -0.045004185289144516,
- 0.05251837149262428, 0.07237433642148972, 0.012065461836755276, -0.08331546932458878,
- 0.05778328701853752, 0.0032623622100800276, 0.01406948547810316, 0.005607567261904478,
- 0.0289743784815073, 0.06186605617403984, 0.031213514506816864, 0.10725007206201553,
- 0.035398390144109726, 0.0066269636154174805, 0.062212396413087845, 0.0355503223836422,
- 0.003745380789041519, 0.05783310905098915, 0.01398767065256834, -0.009070703759789467,
- 0.029698727652430534, -0.013491693884134293, 0.0658937394618988, 0.034541934728622437,
- 0.04411865398287773, 0.010049744509160519, 0.1045091524720192, 0.009053576737642288,
- 0.05240253731608391, 0.07704829424619675, 0.00048136874102056026, 0.09699606895446777,
- 0.030470609664916992, -0.005832677707076073, 0.04021817445755005, -0.021939871832728386,
- -0.07155928015708923, 0.09023824334144592, 0.014423493295907974, -0.05318165943026543,
- 0.09462007135152817, 0.02648991532623768, 0.12580843269824982, 0.018677005544304848,
- -0.008646656759083271, 0.06332438439130783, 0.09139732271432877, -0.09655965119600296,
- -0.0811804011464119, 0.057486847043037415, -0.08572956919670105, -0.05968434736132622,
- 0.06868799030780792, 0.08116068691015244, 0.013661687262356281, 0.05392136052250862,
- 0.009764635004103184, 0.043877024203538895, -0.026170939207077026, 0.005108444020152092,
- 0.04422615095973015, -0.07982334494590759, 0.006234172731637955, 0.0397971011698246,
- 0.004087868612259626, 0.06838672608137131, 0.1176050677895546, -0.0028839800506830215,
- -0.053711894899606705, -0.08136666566133499, 0.07376275956630707, 0.03833923116326332,
- -0.01921541802585125, 0.034160465002059937, -0.06087116524577141, 0.006873392034322023,
- -0.16064085066318512, 0.06795060634613037, 0.11338502168655396, -0.07540728151798248,
- -0.055972885340452194, -0.004565639421343803, 0.0893600583076477, 0.010998892597854137,
- 0.01782589592039585, -0.05032983794808388, -0.0019485565135255456, 0.03820028528571129,
- 0.024464478716254234, -0.043949246406555176, 0.036923445761203766, 0.03688754513859749,
- -0.06334533542394638, 0.05942907556891441, 0.06263110786676407, -0.032726261764764786,
- -0.012843996286392212, 0.0671033039689064, 0.02111194096505642, -0.09309282898902893,
- -0.0544474758207798, -0.06565625220537186, -0.03878389671444893, -0.009630908258259296,
- -0.028552347794175148, -0.024275122210383415, 0.036552924662828445,
- -0.048696499317884445, -0.01506803184747696, 0.033504072576761246, 0.053350627422332764,
- 0.13936667144298553, -0.010668355040252209, 0.030136482790112495, -0.03053451143205166,
- 0.006696209777146578, 0.07376458495855331, 0.040090154856443405, 0.09437844902276993,
- -0.06633203476667404, -0.01683877967298031, -0.018852492794394493, -0.10315698385238647,
- 0.02450569160282612, 0.044994745403528214, 0.014594358392059803, 0.01569315977394581,
- 0.01682375557720661, -0.06452342867851257, -0.052099067717790604, 0.08466324955224991,
- 0.03480886295437813, 0.009358121082186699, 0.05372026190161705, -0.04479718208312988,
- -0.0073850504122674465, 0.09214765578508377, -0.04288725182414055,
- -0.005665542557835579, 0.02213790826499462, -0.1205887570977211, 0.04201110824942589,
- 0.06159423664212227, 0.055297259241342545, 0.020334942266345024, 0.0459810234606266,
- 0.005755340680480003, -0.011773212812840939, 0.01780564896762371, -0.008593378588557243,
- -0.06274543702602386, -0.02942848950624466, -0.10073821991682053, 0.01634361781179905,
- 0.06982729583978653, 0.10707532614469528, -0.1296326369047165, 0.009063181467354298,
- -0.03590424731373787
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 324,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 205,
- "similarity": 0.9981464147567749
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 174,
- "similarity": 0.9980172514915466
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 84,
- "similarity": 0.99793541431427
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Paris Martineau"],
- "epoch_date_downloaded": 1662422400,
- "epoch_date_modified": 1662422400,
- "epoch_date_submitted": 1662422400,
- "flag": null,
- "report_number": 2003,
- "source_domain": "wired.com",
- "submitters": ["Khoa Lam"],
- "title": "Facebook Removes Accounts With AI-Generated Profile Photos",
- "url": "https://www.wired.com/story/facebook-removes-accounts-ai-generated-photos/"
- },
- {
- "__typename": "Report",
- "authors": ["Nathaniel Gleicher"],
- "epoch_date_downloaded": 1662422400,
- "epoch_date_modified": 1662422400,
- "epoch_date_submitted": 1662422400,
- "flag": null,
- "report_number": 2002,
- "source_domain": "about.fb.com",
- "submitters": ["Khoa Lam"],
- "title": "Removing Coordinated Inauthentic Behavior From Georgia, Vietnam and the US",
- "url": "https://about.fb.com/news/2019/12/removing-coordinated-inauthentic-behavior-from-georgia-vietnam-and-the-us/"
- },
- {
- "__typename": "Report",
- "authors": ["Alex Kasprak", " Jordan Liles"],
- "epoch_date_downloaded": 1662422400,
- "epoch_date_modified": 1662422400,
- "epoch_date_submitted": 1662422400,
- "flag": null,
- "report_number": 2001,
- "source_domain": "snopes.com",
- "submitters": ["Khoa Lam"],
- "title": "How a Pro-Trump Network Is Building a Fake Empire on Facebook and Getting Away with It",
- "url": "https://www.snopes.com/news/2019/11/12/bl-fake-profiles/"
- },
- {
- "__typename": "Report",
- "authors": ["Alex Kasprak"],
- "epoch_date_downloaded": 1662422400,
- "epoch_date_modified": 1662422400,
- "epoch_date_submitted": 1662422400,
- "flag": null,
- "report_number": 2000,
- "source_domain": "snopes.com",
- "submitters": ["Khoa Lam"],
- "title": "If Facebook Is Dealing with Deceptive ‘BL’ Network, It's Not Working",
- "url": "https://www.snopes.com/news/2019/12/13/facebook-bl-cib/"
- },
- {
- "__typename": "Report",
- "authors": ["Alex Kasprak"],
- "epoch_date_downloaded": 1662422400,
- "epoch_date_modified": 1662422400,
- "epoch_date_submitted": 1662422400,
- "flag": null,
- "report_number": 1999,
- "source_domain": "snopes.com",
- "submitters": ["Khoa Lam"],
- "title": "Media Outlet The BL Evaded a Facebook Ban By Making a Copy of Its Site",
- "url": "https://www.snopes.com/news/2020/08/05/the-bl-evaded-facebook-ban/"
- },
- {
- "__typename": "Report",
- "authors": ["Paris Martineau"],
- "epoch_date_downloaded": 1662422400,
- "epoch_date_modified": 1662422400,
- "epoch_date_submitted": 1662422400,
- "flag": null,
- "report_number": 1998,
- "source_domain": "arstechnica.com",
- "submitters": ["Ingrid Dickinson (CSET)"],
- "title": "Facebook removes accounts with AI-generated profile photos",
- "url": "https://arstechnica.com/tech-policy/2019/12/facebook-removes-accounts-with-ai-generated-profile-photos/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "facebook",
- "name": "Facebook"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "facebook",
- "name": "Facebook"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "olivia-solon's-facebook-connections",
- "name": "Olivia Solon's Facebook connections"
- },
- {
- "__typename": "Entity",
- "entity_id": "olivia-solon",
- "name": "Olivia Solon"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [2005, 2004],
- "vector": [
- -0.023898759856820107, 0.045431360602378845, -0.014414321631193161,
- -0.11758305132389069, 0.09359428286552429, -0.1051177829504013, 0.03018912486732006,
- 0.00818709284067154, 0.04954037070274353, -0.11704106628894806, -0.012925470247864723,
- 0.03431392461061478, 0.02143898606300354, -0.06618236750364304, 0.01809348538517952,
- -0.040405839681625366, -0.08115386962890625, -0.02085738256573677, 0.03346037492156029,
- -0.07732966542243958, -0.0736866444349289, 0.04373370110988617, 0.048126544803380966,
- 0.1306285262107849, 0.010845585726201534, 0.015492837876081467, 0.11269199848175049,
- 0.11615945398807526, -0.04476013034582138, 0.04119173437356949, -0.012181947939097881,
- -0.03337300196290016, 0.12936604022979736, 0.011664866469800472, 0.009211110882461071,
- 0.06601470708847046, 0.05417025461792946, -0.02796247787773609, -0.08473809063434601,
- -0.005823641084134579, 0.04148481786251068, 0.1176862120628357, -0.026945868507027626,
- -0.022846102714538574, 0.05870556831359863, -0.029401425272226334, 0.01998808979988098,
- 0.020564448088407516, 0.015024869702756405, -0.014064189977943897, 0.03205535188317299,
- -0.009722381830215454, -0.08108200132846832, 0.058405280113220215, -0.08536931127309799,
- 0.045688413083553314, 0.043211761862039566, -0.021277787163853645, 0.03491494059562683,
- -0.01897873915731907, -0.08281220495700836, -0.1262032389640808, -0.09542813152074814,
- -0.01236720196902752, 0.06405583024024963, -0.06758823990821838, 0.004290664102882147,
- -0.004379689693450928, 0.0021862650755792856, 0.028070880100131035,
- 0.015558119863271713, -0.05157705768942833, -0.01610066182911396, -0.02534898929297924,
- 0.00008800812065601349, -0.03360729292035103, 0.05552211403846741, 0.2807445526123047,
- -0.09218644350767136, 0.030332524329423904, 0.11765280365943909, -0.1200229823589325,
- 0.3188989758491516, -0.003955436870455742, -0.018666423857212067, 0.04623845964670181,
- 0.08146966248750687, 0.010112765245139599, 0.03321355581283569, 0.025753598660230637,
- -0.0043023731559515, 0.06950771808624268, -0.023465875536203384, -0.031142016872763634,
- 0.023613667115569115, 0.013243097811937332, 0.015604573301970959, -0.08168809115886688,
- -0.02871018648147583, -0.05759042501449585, 0.010005231946706772, -0.007279932964593172,
- 0.11277563869953156, 0.047092705965042114, -0.008935388177633286, 0.004844248294830322,
- 0.055772069841623306, -0.04931879788637161, 0.026968691498041153, -0.014903915114700794,
- -0.00485173799097538, 0.008322786539793015, 0.06996291875839233, 0.005304649472236633,
- 0.04521629959344864, -0.018530961126089096, 0.01663682423532009, 0.026020843535661697,
- 0.06345827132463455, 0.07847902923822403, 0.017580367624759674, 0.08071177452802658,
- 0.09869084507226944, -0.05611894279718399, -0.0003661038354039192,
- -0.005105973687022924, -0.03125728666782379, 0.02790980413556099, -0.007870725356042385,
- 0.051485978066921234, -0.01382686197757721, -0.23608145117759705, 0.005060408264398575,
- 0.016923964023590088, 0.030720198526978493, -0.0399598591029644, 0.04628279060125351,
- -0.07579554617404938, 0.0386812686920166, -0.025911670178174973, -0.012438813224434853,
- 0.06221470609307289, 0.036545876413583755, 0.048282820731401443, 0.12832844257354736,
- 0.035685960203409195, -0.003900584764778614, -0.060153111815452576,
- -0.008867485448718071, -0.023256808519363403, 0.039557505398988724,
- -0.08567657321691513, -0.015564785338938236, 0.026393694803118706,
- -0.013295651413500309, 0.561596691608429, 0.08222760260105133, 0.12087974697351456,
- -0.006459350697696209, 0.016311166808009148, 0.16207794845104218, -0.07100728899240494,
- 0.03516769781708717, -0.07212622463703156, -0.06043347716331482, 0.011715533211827278,
- -0.08106429874897003, -0.00408041849732399, 0.029337361454963684, 0.012512162327766418,
- 0.09588288515806198, 0.06050995737314224, 0.13060778379440308, 0.01111640315502882,
- -0.10317026078701019, -0.046820200979709625, 0.026374991983175278, 0.013589471578598022,
- -0.099807970225811, -0.022911526262760162, 0.01159721054136753, 0.07930512726306915,
- -0.05220481753349304, 0.03324452415108681, -0.04321666434407234, 0.04454302415251732,
- 0.010363408364355564, 0.03343392536044121, 0.04300990700721741, 0.018240829929709435,
- 0.02540355548262596, 0.017084697261452675, 0.005385557189583778, -0.05563775449991226,
- -0.0023067574948072433, 0.14267978072166443, -0.02240758389234543, -0.06279459595680237,
- 0.10226814448833466, -0.08885854482650757, 0.013518424704670906, 0.008892649784684181,
- 0.12353567779064178, -0.1288827508687973, -0.011697881855070591, -0.027830978855490685,
- -0.044564343988895416, 0.024511562660336494, -0.04535537213087082, -0.08987564593553543,
- -0.08433983474969864, 0.056496672332286835, 0.02237781137228012, 0.03619015961885452,
- 0.013875789009034634, -0.06142401695251465, -0.04379554092884064, 0.01937488466501236,
- 0.03722884878516197, -0.05635267496109009, 0.05477789044380188, 0.04173517972230911,
- -0.05538206920027733, -0.05756117403507233, 0.09105101972818375, 0.09045548737049103,
- 0.01794063113629818, -0.020471084862947464, 0.059673011302948, -0.016210878267884254,
- 0.003835268784314394, 0.028340185061097145, 0.003956768661737442, -0.015846963971853256,
- 0.06698548793792725, -0.11854416131973267, -0.024321958422660828, -0.04189692437648773,
- 0.022998766973614693, 0.03602571412920952, -0.05762496218085289, 0.06800027191638947,
- 0.08764516562223434, 0.036649852991104126, 0.008669531904160976, 0.015860218554735184,
- 0.04747878015041351, 0.055310048162937164, -0.01983141526579857, 0.11484616994857788,
- -0.020785948261618614, 0.01523033156991005, -0.04967636987566948, -0.0116725480183959,
- 0.06854592263698578, 0.04895477741956711, -0.05584530532360077, -0.038905978202819824,
- 0.012571928091347218, -0.03150826320052147, -0.10618039965629578, -0.021255772560834885,
- 0.04869610816240311, 0.011760889552533627, -0.08841946721076965, -0.08371567726135254,
- -0.03673594444990158, -0.011479213833808899, 0.10664976388216019, 0.0004974012263119221,
- -0.012167572043836117, -0.12611733376979828, -0.006785068195313215,
- -0.007117154076695442, 0.04800082743167877, -0.010403009131550789, -0.03840592876076698,
- -0.023681730031967163, -0.07180614769458771, -0.006495489738881588, 0.05285603553056717,
- -0.0548042394220829, -0.016057796776294708, -0.0416799932718277, -0.04794447124004364,
- -0.002487660851329565, -0.07035614550113678, 0.02825520746409893,
- -0.0024022702127695084, 0.02159814164042473, 0.0498494952917099, -0.027287162840366364,
- 0.005013253074139357, 0.06140398234128952, -0.04850130155682564, 0.027876073494553566,
- 0.07057701051235199, -0.018239937722682953, 0.038647331297397614, -0.0247206911444664,
- -0.003404251765459776, -0.061392948031425476, -0.01995210535824299,
- -0.023763148114085197, 0.07943515479564667, -0.05712100863456726, -0.007569367531687021,
- -0.04056117683649063, -0.03872287645936012, 0.10291527956724167, -0.05919080227613449,
- -0.04113391041755676, -0.07631537318229675, 0.12439990043640137, -0.002644253894686699,
- 0.053886398673057556, -0.01869160495698452, -0.04963872581720352, 0.06929737329483032,
- 0.014838253147900105, 0.0005359365604817867, 0.022321127355098724, 0.0691511332988739,
- -0.016374535858631134, 0.015302132815122604, 0.07361581176519394, 0.048537470400333405,
- 0.0003835184033960104, 0.0942203626036644, 0.41746091842651367, -0.22495557367801666,
- 0.09057039022445679, 0.06058252602815628, 0.019245829433202744, -0.005142101086676121,
- 0.011580374091863632, 0.08119404315948486, 0.03471669182181358, 0.07054796814918518,
- 0.0701034739613533, -0.07275006920099258, 0.03237507864832878, -0.043505482375621796,
- 0.10024143755435944, 0.03902168199419975, 0.024577999487519264, 0.0037218183279037476,
- 0.00375388003885746, -0.04134716838598251, 0.018621936440467834, -0.06073424592614174,
- -0.013768022879958153, -0.03476173058152199, -0.06172719597816467, 0.03119264915585518,
- 0.06571485102176666, 0.09763457626104355, -0.032715559005737305, 0.021520022302865982,
- -0.06885726749897003, 0.008334738202393055, 0.03702627494931221, 0.03434928506612778,
- -0.0935608297586441, 0.061793725937604904, -0.05231429263949394, -0.07739229500293732,
- 0.029763661324977875, -0.011675081215798855, 0.019379224628210068, 0.042656347155570984,
- -0.02432592399418354, 0.03699951991438866, -0.03732378035783768, -0.06161699444055557,
- 0.024347778409719467, 0.01278829574584961, 0.025923006236553192, 0.12046442180871964,
- 0.13974685966968536, -0.0024245958775281906, 0.01786217652261257, -0.04871194437146187,
- 0.05319919064640999, 0.11171138286590576, -0.050246965140104294, 0.04522758722305298,
- 0.03240319341421127, 0.060892317444086075, -0.012853851541876793, -0.051853444427251816,
- -0.050412025302648544, -0.05279754474759102, -0.08849814534187317, 0.07728290557861328,
- 0.02987886406481266, -0.04821097105741501, -0.13831490278244019, -0.05792345851659775,
- -0.07102829217910767, -0.002175417961552739, 0.1369752287864685, -0.09475473314523697,
- 0.02154558338224888, -0.005545780993998051, 0.01259700395166874, -0.01874018833041191,
- -0.05346499755978584, -0.020644182339310646, -0.10927248001098633, 0.04973745718598366,
- 0.06309738010168076, 0.0632738396525383, -0.08499521017074585, 0.0364910289645195,
- -0.09467488527297974, 0.057892296463251114, -0.02997492253780365, -0.03365366905927658,
- -0.03545944392681122, -0.03346126899123192, 0.017329420894384384, 0.011092637665569782,
- -0.0333944670855999, -0.022687595337629318, 0.012164951302111149, -0.018198763951659203,
- -0.07962560653686523, -0.06805100291967392, -0.08838622272014618, -0.06195873022079468,
- 0.055481646209955215, -0.05491756275296211, 0.03687836229801178, -0.0069428300485014915,
- -0.0007208180613815784, -0.008201762102544308, 0.04743155464529991,
- -0.031151708215475082, -0.10152970254421234, -0.034225694835186005,
- -0.025920629501342773, 0.025156311690807343, -0.06618474423885345, -0.09213700145483017,
- -0.00117143162060529, 0.039139263331890106, -0.0014324879739433527,
- -0.07771112024784088, 0.04335233196616173, -0.025467805564403534, 0.11274013668298721,
- -0.0826977789402008, -0.5190537571907043, 0.07064510881900787, 0.04034668952226639,
- 0.05618582293391228, 0.02028709091246128, -0.08210191130638123, 0.0759972482919693,
- 0.00731686782091856, -0.036194659769535065, 0.07470006495714188, -0.04906432330608368,
- 0.02146846055984497, -0.011954239569604397, -0.023258468136191368, 0.008094710297882557,
- -0.08129717409610748, -0.03384288772940636, 0.0237276628613472, 0.017665909603238106,
- -0.0016127116978168488, -0.10211855918169022, 0.013102613389492035,
- 0.017212700098752975, 0.0013859523460268974, 0.021898848935961723, 0.021293774247169495,
- -0.062259260565042496, -0.03145782649517059, 0.02944021299481392, 0.05301593989133835,
- -0.0049628750421106815, -0.038187891244888306, -0.015919141471385956,
- 0.055445607751607895, 0.02320077456533909, 0.11682659387588501, 0.032160259783267975,
- -0.02782646007835865, -0.09551581740379333, 0.051642581820487976, 0.06581743061542511,
- 0.18545879423618317, -0.01141585223376751, 0.06379666924476624, 0.0034777354449033737,
- 0.13164985179901123, 0.050224173814058304, 0.0019209086894989014, -0.05896787717938423,
- 0.035901568830013275, -0.0011598156997933984, -0.015590288676321507,
- 0.03620424121618271, -0.09966659545898438, -0.027108067646622658, -0.04495549947023392,
- -0.004900555592030287, -0.06171889975667, -0.047338537871837616, 0.16238993406295776,
- 0.01789250411093235, -0.027550140395760536, 0.0027214037254452705, -0.02632875367999077,
- 0.011593379080295563, -0.08642083406448364, -0.032697129994630814, -0.03858466446399689,
- 0.026686154305934906, 0.026426643133163452, -0.06258498877286911, -0.11860953271389008,
- -0.01953142136335373, -0.017843736335635185, 0.007899702526628971, 0.08796882629394531,
- -0.03025759756565094, 0.06128915399312973, -0.02836410328745842, 0.12416370958089828,
- 0.013160458765923977, 0.016404887661337852, 0.07714216411113739, 0.08396797627210617,
- 0.01994253322482109, -0.05097293108701706, -0.015279257670044899, -0.0418502613902092,
- -0.012111985124647617, 0.18391647934913635, 0.007844379171729088, 0.18742693960666656,
- 0.011197270825505257, 0.03127158805727959, -0.026606077328324318, 0.015212870202958584,
- -0.023517929017543793, -0.03604555130004883, -0.4817473292350769, -0.02134370617568493,
- 0.08873941749334335, 0.01446885522454977, -0.007953409105539322, 0.10877937078475952,
- 0.049296773970127106, -0.02853752113878727, -0.03540244698524475, -0.042417947202920914,
- 0.1306305080652237, -0.01768510788679123, 0.055459558963775635, -0.11183136701583862,
- -0.00035483483225107193, 0.10111167281866074, -0.015027206391096115,
- 0.018451416864991188, 0.008627335540950298, -0.2911834120750427, -0.04608513042330742,
- -0.03250493109226227, 0.17587395012378693, 0.04487118124961853, 0.01318519189953804,
- 0.11983297020196915, -0.013216227293014526, 0.025331541895866394, -0.03837210685014725,
- 0.029982414096593857, 0.02734864130616188, 0.015529664233326912, -0.017860759049654007,
- 0.09187017381191254, 0.07089707255363464, 0.08771899342536926, -0.051043201237916946,
- 12.047006607055664, 0.029248790815472603, 0.06969840824604034, -0.07638126611709595,
- 0.01102142408490181, -0.06717618554830551, 0.03085707128047943, -0.11258143186569214,
- 0.032573211938142776, 0.061300456523895264, -0.028506752103567123,
- -0.021725289523601532, -0.0816478431224823, -0.04885327070951462, 0.01583048701286316,
- -0.009453118778765202, -0.0391208752989769, -0.04248114675283432, 0.06494266539812088,
- -0.03124472126364708, -0.05040692538022995, 0.09128794074058533, 0.06690070033073425,
- -0.03423510119318962, -0.033339448273181915, 0.08477278053760529, -0.02095530554652214,
- -0.0018070678925141692, -0.00613107904791832, 0.0587354451417923, 0.051045168191194534,
- 0.03845186159014702, 0.07085001468658447, 0.005605756305158138, 0.059120163321495056,
- 0.058507613837718964, 0.010547644458711147, 0.0018145348876714706, 0.03226025030016899,
- 0.059943847358226776, -0.013094630092382431, 0.013259618543088436, 0.01263321191072464,
- 0.048983462154865265, 0.027392873540520668, 0.0780164822936058, 0.017749974504113197,
- 0.14410319924354553, -0.01522635854780674, 0.045825615525245667, 0.08585897088050842,
- -0.01856566034257412, 0.08766817301511765, 0.03179269656538963, 0.0016753608360886574,
- 0.047555867582559586, -0.04784046486020088, -0.08382818102836609, 0.086426742374897,
- 0.04143816977739334, -0.0460611954331398, 0.10535076260566711, 0.06235324591398239,
- 0.08679668605327606, 0.028554126620292664, 0.05226927995681763, 0.074324831366539,
- 0.08315034955739975, -0.0839993804693222, -0.062110140919685364, 0.05607549101114273,
- -0.04438371956348419, -0.026786627247929573, 0.013383705168962479, 0.031085675582289696,
- 0.019953418523073196, 0.11273673176765442, -0.016499489545822144, 0.06627707183361053,
- -0.04264579713344574, -0.0018375664949417114, 0.04518194869160652, -0.05234140902757645,
- -0.010934769175946712, 0.0073038386180996895, 0.003674012143164873, 0.10173313319683075,
- 0.08010076731443405, 0.0315597727894783, -0.08044439554214478, -0.06628195941448212,
- 0.09113793075084686, -0.007886376231908798, -0.0426936075091362, 0.008364313282072544,
- -0.08843373507261276, 0.025074388831853867, -0.14839932322502136, 0.09775891900062561,
- 0.0748351663351059, -0.045059602707624435, -0.051446203142404556, 0.0035750013776123524,
- 0.10986921191215515, 0.005665121600031853, -0.002758825197815895, -0.05424772575497627,
- 0.01574387401342392, 0.023646481335163116, 0.05665619671344757, -0.028548190370202065,
- 0.02246219478547573, 0.030701836571097374, -0.03110712766647339, 0.030189000070095062,
- 0.049786414951086044, -0.026403024792671204, -0.025122907012701035, 0.04491230100393295,
- 0.003621308133006096, -0.07289925217628479, -0.01379404217004776, -0.05335322022438049,
- -0.036089882254600525, 0.0064878142438828945, -0.06012843921780586,
- -0.017240382730960846, 0.012462988495826721, -0.013875607401132584,
- -0.04514545947313309, 0.0363929457962513, 0.060961849987506866, 0.054455794394016266,
- 0.024282746016979218, 0.027475565671920776, -0.06701341271400452, 0.007821941748261452,
- 0.045830219984054565, 0.048445090651512146, 0.08938206732273102, -0.06508645415306091,
- 0.0024853860959410667, -0.026212487369775772, -0.13285276293754578, 0.02361808530986309,
- 0.09841939806938171, 0.05118134990334511, 0.031553611159324646, 0.027340495958924294,
- -0.035905420780181885, 0.019099943339824677, 0.049321118742227554, 0.04589777812361717,
- 0.008448377251625061, 0.00579232070595026, -0.01902705244719982, -0.025225775316357613,
- 0.1144164651632309, -0.014109073206782341, -0.029984092339873314, 0.006054980680346489,
- -0.1310340166091919, 0.06551974266767502, 0.02827153168618679, 0.06008660048246384,
- 0.01458106841892004, 0.05383320897817612, 0.00903427042067051, -0.018290136009454727,
- 0.02576030045747757, 0.011754654347896576, -0.014127714559435844, -0.0675814300775528,
- -0.09493190795183182, 0.03249707072973251, 0.06792299449443817, 0.1160111129283905,
- -0.15268173813819885, -0.006515955552458763, -0.008026044815778732
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 325,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Olivia Solon"],
- "epoch_date_downloaded": 1662422400,
- "epoch_date_modified": 1662508800,
- "epoch_date_submitted": 1662422400,
- "flag": null,
- "report_number": 2005,
- "source_domain": "twitter.com",
- "submitters": ["Khoa Lam"],
- "title": "Tweet: @oliviasolon",
- "url": "https://twitter.com/oliviasolon/status/910894061657006080"
- },
- {
- "__typename": "Report",
- "authors": ["Sam Levin"],
- "epoch_date_downloaded": 1662422400,
- "epoch_date_modified": 1662422400,
- "epoch_date_submitted": 1662422400,
- "flag": null,
- "report_number": 2004,
- "source_domain": "theguardian.com",
- "submitters": ["Ingrid Dickinson (CSET)"],
- "title": "Instagram uses 'I will rape you' post as Facebook ad in latest algorithm mishap",
- "url": "https://www.theguardian.com/technology/2017/sep/21/instagram-death-threat-facebook-olivia-solon"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "facebook",
- "name": "Facebook"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "facebook",
- "name": "Facebook"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "facebook-users-having-posts-about-painful-events",
- "name": "Facebook users having posts about painful events"
- },
- {
- "__typename": "Entity",
- "entity_id": "facebook-users",
- "name": "Facebook users"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [2013, 2012, 2008],
- "vector": [
- -0.10873398929834366, 0.0876326784491539, 0.014196359552443027, -0.13764731585979462,
- 0.13994698226451874, -0.023750638589262962, 0.014746519736945629, 0.04518189653754234,
- 0.06263206154108047, -0.129190593957901, -0.002317671896889806, 0.04218390956521034,
- 0.03496408835053444, -0.08077625930309296, 0.027729367837309837, -0.07525208592414856,
- -0.14285947382450104, -0.035147085785865784, -0.005076979752629995,
- -0.14417095482349396, -0.0286292415112257, -0.022726476192474365, 0.05171731114387512,
- 0.1441061943769455, -0.0639784038066864, 0.02678653597831726, 0.16151244938373566,
- 0.16016574203968048, -0.04464402422308922, 0.11198524385690689, -0.0213382039219141,
- -0.09852945804595947, 0.14740370213985443, 0.02495376020669937, 0.013189020566642284,
- 0.10027766227722168, 0.023000327870249748, -0.03602498769760132, -0.005208365153521299,
- -0.04934310540556908, 0.06862742453813553, 0.23573081195354462, -0.001095902523957193,
- -0.01779591478407383, 0.03800474479794502, 0.010686066001653671, 0.03607761487364769,
- 0.0708010122179985, 0.0037107851821929216, 0.0030875559896230698, -0.024956772103905678,
- 0.03911273553967476, -0.039951398968696594, 0.061192404478788376, -0.1244153380393982,
- 0.050794508308172226, 0.05411545932292938, -0.02886223793029785, 0.027557170018553734,
- -0.09681590646505356, -0.03359317407011986, -0.21070390939712524, -0.07014813274145126,
- -0.07971630245447159, 0.08944395929574966, -0.08090373873710632, -0.03732408955693245,
- 0.018462643027305603, 0.027312293648719788, 0.09107580780982971, 0.0195157453417778,
- -0.056044936180114746, -0.03901548683643341, 0.015477967448532581,
- -0.014333019964396954, -0.06308188289403915, 0.016865529119968414, 0.2704569399356842,
- -0.11888966709375381, -0.004714237060397863, 0.13734622299671173, -0.10760140419006348,
- 0.4591289460659027, -0.00419703871011734, -0.029872940853238106, -0.005130814854055643,
- 0.10308609157800674, 0.05650554224848747, 0.02919241227209568, 0.0290191899985075,
- -0.008525506593286991, 0.0688910260796547, -0.05585275962948799, 0.06561989337205887,
- 0.08483994007110596, 0.02886429987847805, -0.024831974878907204, 0.07442264258861542,
- -0.01612112484872341, -0.06534569710493088, 0.0028253227937966585,
- -0.015180863440036774, 0.1532474011182785, 0.11993711441755295, -0.06358236819505692,
- -0.024749912321567535, 0.08661650866270065, -0.09387870877981186, 0.08024727553129196,
- -0.030511006712913513, 0.019256828352808952, -0.0714140310883522, 0.06295037269592285,
- -0.016508938744664192, 0.04870741069316864, -0.03974131867289543, 0.017331978306174278,
- 0.05048732832074165, 0.09422522038221359, 0.07892903685569763, -0.029648682102560997,
- 0.06943779438734055, 0.12250909954309464, -0.08452152460813522, -0.06124827265739441,
- -0.007128726691007614, -0.11931123584508896, -0.028514042496681213,
- -0.02030612900853157, 0.011993014253675938, -0.04827682301402092, -0.20265908539295197,
- 0.015983058139681816, 0.048074860125780106, -0.05518537387251854, -0.058631282299757004,
- 0.024525275453925133, -0.08126319199800491, 0.02267431654036045, -0.07166068255901337,
- -0.019224390387535095, 0.07710752636194229, 0.037473972886800766, 0.03708506003022194,
- 0.08726639300584793, 0.05471097305417061, -0.06517744064331055, -0.06671712547540665,
- -0.0092193353921175, -0.03758412227034569, 0.11094021052122116, -0.1524057537317276,
- 0.010841957293450832, -0.013185151852667332, -0.021134531125426292, 0.6617357134819031,
- 0.11358218640089035, 0.19572336971759796, 0.009686792269349098, -0.02496187388896942,
- 0.20691968500614166, -0.019151465967297554, 0.07194092124700546, -0.13395105302333832,
- -0.060439158231019974, 0.010777336545288563, -0.06425745040178299,
- -0.038207653909921646, 0.04372848942875862, -0.0007044098456390202, 0.12189388275146484,
- 0.016932154074311256, 0.12255122512578964, 0.03128894045948982, -0.1451343446969986,
- -0.05403551831841469, 0.11440760642290115, -0.010066983290016651, -0.12099386006593704,
- -0.03996608778834343, -0.023386150598526, 0.08761010318994522, -0.0817178413271904,
- 0.05255621671676636, -0.09268365055322647, 0.06070299074053764, -0.01832709275186062,
- 0.02005835808813572, 0.027196668088436127, 0.030771354213356972, 0.05432404577732086,
- 0.0529744029045105, -0.00899424497038126, -0.07310691475868225, -0.071620874106884,
- 0.11449583619832993, -0.033411841839551926, -0.05270695686340332, 0.1346949189901352,
- -0.0947391614317894, 0.021484307944774628, 0.033999402076005936, 0.17911981046199799,
- -0.14943106472492218, 0.007569717243313789, -0.009422102011740208, -0.03261185809969902,
- 0.04156211391091347, -0.04922671988606453, -0.05222201347351074, -0.057174693793058395,
- 0.08927664160728455, -0.012753807939589024, 0.054550688713788986, 0.043451011180877686,
- -0.039344146847724915, 0.013570179231464863, 0.04801611602306366, 0.015503987669944763,
- -0.03658755496144295, 0.0813533291220665, 0.04477367922663689, -0.07166915386915207,
- -0.08072031289339066, 0.04050065577030182, 0.03355196490883827, 0.059878215193748474,
- 0.02138499915599823, 0.06555546820163727, 0.005242352839559317, -0.05238382890820503,
- 0.03188418224453926, 0.004013023804873228, 0.04395174980163574, 0.08294568955898285,
- -0.08917798846960068, -0.03159252926707268, -0.05042171850800514, 0.001894397079013288,
- 0.0067292191088199615, -0.03628614917397499, 0.11069350689649582, 0.12083371728658676,
- 0.09824588894844055, -0.004106238950043917, 0.04807422682642937, 0.047430504113435745,
- 0.0893026813864708, 0.028554683551192284, 0.11207611113786697, 0.005023048724979162,
- -0.11035644263029099, -0.03761475905776024, -0.009299257770180702, 0.04127247631549835,
- -0.018211819231510162, -0.04838985577225685, -0.037664495408535004, -0.0599430687725544,
- -0.051032036542892456, -0.14765597879886627, -0.008206493221223354,
- 0.046137962490320206, 0.051374658942222595, -0.0875900611281395, -0.12765000760555267,
- -0.11857988685369492, -0.013021628372371197, 0.11565759032964706, 0.013263714499771595,
- -0.035852253437042236, -0.13673579692840576, 0.022990671917796135,
- -0.008152889087796211, 0.05539026856422424, -0.0679682120680809, 0.06573603302240372,
- -0.027750590816140175, -0.14480336010456085, 0.03350643441081047,
- -0.0029388582333922386, -0.049238454550504684, -0.058885782957077026,
- -0.07879136502742767, -0.045405205339193344, -0.01771790347993374,
- -0.0056565976701676846, 0.031225189566612244, 0.0007589714950881898,
- 0.02321140468120575, 0.06068995222449303, -0.054871100932359695, -0.034736692905426025,
- 0.045399341732263565, -0.025114649906754494, 0.015347864478826523, 0.07939380407333374,
- -0.06489347666501999, 0.0023897013161331415, -0.022809632122516632,
- -0.07305329293012619, -0.03449159860610962, 0.02812669426202774, -0.0264993105083704,
- 0.06866591423749924, -0.030815856531262398, 0.010724179446697235, -0.0459863655269146,
- -0.056024033576250076, 0.03482505679130554, -0.041483618319034576, -0.078537218272686,
- -0.06355314701795578, 0.10146888345479965, -0.007281395141035318,
- -0.0075775329023599625, 0.06892748922109604, -0.05673976615071297, 0.06907137483358383,
- -0.00205386895686388, 0.0080556096509099, 0.03641623258590698, 0.09090495854616165,
- -0.02684543840587139, 0.04122544452548027, 0.0911659374833107, -0.028386274352669716,
- 0.009026790969073772, 0.034007612615823746, 0.41501128673553467, -0.27693983912467957,
- 0.12229055166244507, 0.08139558136463165, -0.0034849727526307106, 0.03190998733043671,
- -0.06344709545373917, 0.07612236589193344, 0.06108638271689415, 0.14661580324172974,
- 0.1520395427942276, -0.057159800082445145, 0.014449488371610641, -0.09721031039953232,
- 0.09900327771902084, 0.0006756177172064781, 0.0356929749250412, 0.05174388363957405,
- -0.04544413089752197, -0.05114184692502022, 0.026001418009400368, -0.06968896090984344,
- 0.02431994490325451, -0.021635055541992188, -0.0464373379945755, 0.02603202499449253,
- 0.05320963263511658, 0.04664300009608269, 0.019744085147976875, 0.05268719419836998,
- -0.04045524075627327, -0.01258497778326273, 0.03538499027490616, 0.04629058763384819,
- -0.15171094238758087, 0.010766096413135529, -0.04996991157531738, -0.11374306678771973,
- 0.0965726375579834, 0.026193073019385338, 0.08202824741601944, 0.0878184363245964,
- -0.043960366398096085, 0.010407427325844765, -0.03465286269783974, -0.0757678970694542,
- 0.007567663211375475, 0.04457087442278862, 0.01227573025971651, 0.09814783185720444,
- 0.1757630556821823, -0.04275812208652496, -0.032264500856399536, -0.09150093048810959,
- 0.05531584098935127, 0.11001700162887573, -0.027963608503341675, 0.04556707665324211,
- -0.003850084962323308, 0.012211345136165619, -0.00860699824988842, -0.08035649359226227,
- -0.06491675227880478, -0.08117517828941345, -0.09250789135694504, 0.08132600039243698,
- 0.030195146799087524, -0.025792762637138367, -0.1570061594247818, -0.02493918500840664,
- -0.02394109033048153, -0.004928561858832836, 0.1111811101436615, -0.07574216276407242,
- -0.01811097003519535, -0.007047460880130529, 0.016729621216654778, 0.026640767231583595,
- -0.09138450026512146, 0.004625621717423201, -0.052048373967409134, 0.045695960521698,
- 0.0397554375231266, 0.05722542479634285, -0.07033476233482361, 0.07963001728057861,
- -0.11564245074987411, 0.08894035965204239, -0.04340626299381256, -0.09719562530517578,
- 0.017907822504639626, -0.07998213917016983, 0.04690093919634819, 0.03725968673825264,
- -0.06331700086593628, 0.03760557621717453, 0.022022025659680367, -0.057177867740392685,
- -0.08195178955793381, -0.08071741461753845, -0.05498778820037842, -0.10409601777791977,
- 0.02905750833451748, -0.1133715882897377, -0.0005311944405548275, -0.005811505019664764,
- -0.005128100980073214, -0.0014405399560928345, 0.07831192016601562,
- 0.0013239321997389197, -0.16592450439929962, -0.006305318791419268,
- -0.06002308800816536, 0.09514429420232773, -0.03212030604481697, -0.028959056362509727,
- 0.006268419791013002, 0.11263420432806015, 0.044215455651283264, -0.054283007979393005,
- 0.03349361568689346, -0.06970686465501785, 0.09335865825414658, -0.12047076225280762,
- -0.4845832586288452, 0.06866467744112015, 0.01104858797043562, 0.0474260151386261,
- -0.0017099506221711636, -0.04938693344593048, 0.0731801763176918,
- -0.0012132545234635472, -0.03710125759243965, 0.1320205181837082, -0.04555230960249901,
- 0.024279311299324036, -0.03147956728935242, -0.04091012477874756,
- -0.0005483769928105175, -0.04647201672196388, -0.07742073386907578, 0.03972671553492546,
- 0.010381418280303478, -0.059256184846162796, -0.10624229907989502, 0.021624520421028137,
- 0.024379154667258263, -0.026390761137008667, -0.003098566085100174, 0.02950477786362171,
- -0.0418926440179348, -0.05859975889325142, 0.019420279189944267, 0.05144159123301506,
- 0.016593294218182564, -0.071890689432621, -0.0032566848676651716, 0.07283282279968262,
- 0.03679130598902702, 0.13631223142147064, 0.027865281328558922, -0.003190041286870837,
- -0.08771436661481857, 0.07335061579942703, 0.03819569945335388, 0.17896008491516113,
- -0.03795270621776581, 0.04144422337412834, -0.029805509373545647, 0.19254273176193237,
- 0.09016182273626328, -0.00454527884721756, -0.05228249728679657, 0.030777717009186745,
- 0.0017041967948898673, -0.00899137556552887, 0.10074212402105331, -0.05767088010907173,
- -0.0461881160736084, -0.0005343609373085201, -0.030436763539910316,
- -0.024506477639079094, 0.006864181254059076, 0.22310692071914673, 0.03285614028573036,
- 0.020717281848192215, 0.009984548203647137, -0.04726214334368706, -0.016697613522410393,
- -0.13777804374694824, -0.03555472567677498, -0.04644295200705528, -0.04592479392886162,
- -0.013333956710994244, -0.043924812227487564, -0.11188647150993347,
- -0.05210396647453308, -0.015947120264172554, -0.02994016744196415, 0.12502190470695496,
- -0.04919328913092613, 0.028140785172581673, -0.006893274839967489, 0.184462308883667,
- 0.06751319020986557, 0.015899233520030975, 0.040675047785043716, 0.08906018733978271,
- 0.03494586423039436, 0.024034934118390083, -0.0676514059305191, -0.11201392859220505,
- -0.05138102173805237, 0.15619699656963348, -0.005420539993792772, 0.17079651355743408,
- 0.01649692840874195, -0.02236642688512802, -0.047094058245420456, 0.033418089151382446,
- -0.0443929024040699, 0.014816545881330967, -0.5087816119194031, 0.0022779095452278852,
- 0.13784384727478027, -0.0027847327291965485, 0.008868315257132053, 0.07750748842954636,
- 0.022333404049277306, -0.04649606719613075, -0.05872737243771553, -0.09019651263952255,
- 0.14424821734428406, 0.012302258051931858, 0.04722713306546211, -0.13737468421459198,
- 0.06201675534248352, 0.09724924713373184, -0.025919461622834206, 0.007617546711117029,
- 0.04764106497168541, -0.3010936677455902, -0.03420942276716232, -0.045889969915151596,
- 0.13697201013565063, 0.021609410643577576, 0.03087630309164524, 0.1359705775976181,
- -0.02465144731104374, -0.01582253910601139, -0.041742537170648575,
- -0.003954438492655754, 0.010396267287433147, -0.031240029260516167,
- -0.022443942725658417, 0.13795381784439087, 0.12563000619411469, 0.09884718805551529,
- -0.03673238307237625, 12.379538536071777, 0.05025352165102959, 0.08555696159601212,
- -0.1279475837945938, 0.03496202453970909, -0.041656073182821274, -0.04267427325248718,
- -0.11517367511987686, 0.0749523714184761, 0.11913782358169556, -0.016669636592268944,
- -0.02276550978422165, -0.03948545828461647, -0.15347903966903687, 0.025930186733603477,
- -0.10630609840154648, -0.09058845043182373, -0.02051478624343872, 0.040245845913887024,
- -0.08253825455904007, -0.042426448315382004, 0.07438194006681442, 0.08036742359399796,
- 0.01738766022026539, -0.054614413529634476, 0.03615988418459892, 0.01716269738972187,
- -0.008244500495493412, 0.008246065117418766, 0.035125717520713806,
- 0.0038179594557732344, 0.06843660026788712, 0.06457805633544922, -0.03631824627518654,
- 0.013573716394603252, 0.08782830089330673, 0.054191816598176956, 0.005118936765938997,
- 0.011529538780450821, 0.08716610819101334, -0.023348798975348473, 0.036034513264894485,
- 0.02556569315493107, 0.06251459568738937, 0.04422171041369438, 0.04053406044840813,
- 0.03172965720295906, 0.13853269815444946, 0.020159432664513588, 0.05265449360013008,
- 0.11452803760766983, 0.012488256208598614, 0.14594940841197968, 0.03713378682732582,
- -0.020594796165823936, 0.06427076458930969, -0.02625233680009842, -0.103089340031147,
- 0.10496021062135696, 0.052573252469301224, -0.04850533604621887, 0.10480150580406189,
- 0.044628169387578964, 0.15378719568252563, -0.008482596836984158, 0.05416080355644226,
- 0.07737971097230911, 0.052428122609853745, -0.08844958990812302, -0.09393355995416641,
- 0.017221063375473022, -0.08020102977752686, -0.07720369100570679, 0.06912272423505783,
- 0.12213347107172012, -0.011116239242255688, 0.03395866975188255, 0.004416977521032095,
- 0.05145227536559105, -0.05243226885795593, -0.0007165403221733868, 0.05769208073616028,
- -0.06048708036541939, 0.014812176115810871, 0.07571258395910263, 0.012591739185154438,
- 0.05866362154483795, 0.1261054426431656, 0.009112049825489521, -0.1209806501865387,
- -0.07965067774057388, 0.06481778621673584, -0.019956307485699654, 0.001887193531729281,
- 0.04201434925198555, -0.10945398360490799, 0.10190451145172119, -0.21268562972545624,
- 0.06942681223154068, 0.11696704477071762, -0.06674462556838989, -0.058376431465148926,
- -0.026532068848609924, 0.08770745992660522, -0.003675812156870961, 0.008016543462872505,
- -0.04767497256398201, 0.035391200333833694, 0.02297309599816799, 0.08080758899450302,
- -0.05233226716518402, 0.0815739706158638, 0.09074171632528305, -0.1057666540145874,
- 0.006583217531442642, 0.09356304258108139, -0.026333672925829887, -0.03919403254985809,
- 0.08683272451162338, 0.05293415114283562, -0.06646125018596649, -0.07934966683387756,
- -0.054979339241981506, -0.04946094751358032, -0.02234247885644436, -0.07275883108377457,
- 0.04011157527565956, 0.022836389020085335, -0.04258914291858673, -0.020843764767050743,
- 0.04217607155442238, 0.07627487182617188, 0.07950034737586975, 0.03762703761458397,
- 0.0849326029419899, -0.09222027659416199, -0.03542344644665718, 0.051569461822509766,
- 0.05669450759887695, 0.07499303668737411, -0.06675460189580917, -0.0639318898320198,
- -0.04108656942844391, -0.15631809830665588, 0.03137827292084694, 0.08830049633979797,
- 0.0578492172062397, 0.038252443075180054, 0.02150523103773594, -0.09699078649282455,
- -0.06457030028104782, 0.10068527609109879, 0.08599031716585159, 0.009641065262258053,
- 0.060185570269823074, -0.047465723007917404, -0.05550236999988556, 0.08593013137578964,
- -0.02698119729757309, 0.020653821527957916, 0.01720932312309742, -0.033335957676172256,
- 0.1269582062959671, 0.09234130382537842, 0.0615583173930645, 0.08212538808584213,
- 0.05810621380805969, -0.01203223317861557, 0.024678444489836693, 0.03974605351686478,
- 0.023539850488305092, -0.0043557072058320045, -0.10435574501752853,
- -0.09279438108205795, 0.08593394607305527, 0.08840837329626083, 0.0628066211938858,
- -0.1150195375084877, -0.00632864236831665, 0.017372412607073784
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 326,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 15,
- "similarity": 0.9970391988754272
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 6,
- "similarity": 0.9968758821487427
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 16,
- "similarity": 0.9967966079711914
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Eric Meyer"],
- "epoch_date_downloaded": 1662508800,
- "epoch_date_modified": 1662508800,
- "epoch_date_submitted": 1662508800,
- "flag": null,
- "report_number": 2013,
- "source_domain": "meyerweb.com",
- "submitters": ["Khoa Lam"],
- "title": "Inadvertent Algorithmic Cruelty",
- "url": "http://meyerweb.com/eric/thoughts/2014/12/24/inadvertent-algorithmic-cruelty/"
- },
- {
- "__typename": "Report",
- "authors": ["Alex Hern"],
- "epoch_date_downloaded": 1662508800,
- "epoch_date_modified": 1662508800,
- "epoch_date_submitted": 1662508800,
- "flag": null,
- "report_number": 2012,
- "source_domain": "theguardian.com",
- "submitters": ["Ingrid Dickinson (CSET)"],
- "title": "Facebook apologises over 'cruel' Year in Review clips",
- "url": "https://www.theguardian.com/technology/2014/dec/29/facebook-apologises-over-cruel-year-in-review-clips"
- },
- {
- "__typename": "Report",
- "authors": ["Damon Poeter"],
- "epoch_date_downloaded": 1662508800,
- "epoch_date_modified": 1662508800,
- "epoch_date_submitted": 1662508800,
- "flag": null,
- "report_number": 2008,
- "source_domain": "pcmag.com",
- "submitters": ["Ingrid Dickinson (CSET)"],
- "title": "Facebook Apologizes for Year in Review Gaffe",
- "url": "https://www.pcmag.com/news/facebook-apologizes-for-year-in-review-gaffe"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "facebook",
- "name": "Facebook"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "facebook",
- "name": "Facebook"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "facebook-users-having-posts-about-painful-events",
- "name": "Facebook users having posts about painful events"
- },
- {
- "__typename": "Entity",
- "entity_id": "facebook-users",
- "name": "Facebook users"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [2011],
- "vector": [
- -0.10102768987417221, 0.06068560853600502, 0.029997369274497032, -0.10090837627649307,
- 0.15390808880329132, -0.04646316543221474, -0.010991592891514301, 0.018998080864548683,
- 0.015336528420448303, -0.13541167974472046, -0.03582287207245827, 0.04349571466445923,
- 0.025451386347413063, -0.06790653616189957, 0.013752073980867863, -0.005203465465456247,
- -0.09474232792854309, -0.049650851637125015, -0.000517370761372149,
- -0.11201106011867523, -0.0402829572558403, -0.0516299232840538, 0.08483972400426865,
- 0.11951864510774612, -0.052245911210775375, 0.013386344537138939, 0.1135028600692749,
- 0.137369304895401, -0.034323565661907196, 0.07687187194824219, -0.006668318063020706,
- -0.05446620658040047, 0.12264708429574966, -0.022722681984305382, 0.022059179842472076,
- 0.05652859807014465, 0.039228249341249466, -0.00558111909776926, -0.026289239525794983,
- 0.019182607531547546, 0.05245542526245117, 0.19218413531780243, 0.01136799342930317,
- -0.035839974880218506, 0.06503880769014359, 0.014569124206900597, 0.06796929240226746,
- 0.09304261952638626, -0.014025268144905567, -0.040283914655447006,
- -0.023122698068618774, 0.05949309840798378, -0.07204786688089371, 0.07303205877542496,
- -0.12536148726940155, 0.0755980983376503, 0.04758436977863312, -0.07841154932975769,
- 0.035624343901872635, -0.06699094921350479, -0.008453846909105778, -0.22468653321266174,
- -0.0894400030374527, -0.08322004973888397, 0.08516999334096909, -0.08866573125123978,
- -0.032922904938459396, -0.05048779770731926, 0.04743979498744011, 0.06191715970635414,
- 0.022194920107722282, -0.1037614643573761, -0.02971598319709301, 0.030774995684623718,
- -0.008112207986414433, -0.0439361147582531, 0.013382358476519585, 0.24085389077663422,
- -0.09614411741495132, -0.02390109933912754, 0.09330359101295471, -0.10231231153011322,
- 0.42101210355758667, 0.014433866366744041, -0.00637907674536109, -0.038016945123672485,
- 0.1078144982457161, 0.06777504831552505, 0.013519476167857647, 0.07160390168428421,
- -0.051523856818675995, 0.052362989634275436, -0.06662429869174957, 0.038390401750802994,
- 0.05407068878412247, 0.08009802550077438, -0.011565246619284153, 0.13262306153774261,
- -0.023449577391147614, -0.0657733902335167, -0.024857953190803528,
- -0.015315557830035686, 0.13596418499946594, 0.06675148010253906, -0.06917891651391983,
- -0.008393506519496441, 0.09380532801151276, -0.12637798488140106, 0.08113466203212738,
- -0.06743710488080978, 0.02446516416966915, -0.0777980163693428, 0.07129685580730438,
- -0.03950713947415352, 0.03772519901394844, -0.06495915353298187, 0.0134290661662817,
- -0.0025603913236409426, 0.08213155716657639, 0.08307484537363052, -0.036833178251981735,
- 0.08133663982152939, 0.11073536425828934, -0.0480257011950016, -0.045824792236089706,
- -0.009570261463522911, -0.09463357925415039, 0.0006598831387236714,
- -0.006081707775592804, 0.027806075289845467, -0.009626445360481739,
- -0.15930716693401337, 0.006765712518244982, 0.06525647640228271, -0.013327566906809807,
- -0.03709949180483818, 0.046030689030885696, -0.0920725092291832, -0.005703719332814217,
- -0.03737083822488785, 0.004777759313583374, 0.06364301592111588, 0.053762227296829224,
- -0.020840676501393318, 0.08432414382696152, 0.017110958695411682, -0.02250949665904045,
- -0.023050816729664803, -0.014104037545621395, -0.034727562218904495,
- 0.062433890998363495, -0.1153443306684494, -0.0056158192455768585, 0.010199838317930698,
- -0.005335111171007156, 0.6766728162765503, 0.12077920883893967, 0.17919503152370453,
- -0.033842917531728745, -0.010806029662489891, 0.16920991241931915,
- -0.00012136183067923412, 0.04751725494861603, -0.10219673812389374,
- -0.08964945375919342, 0.014912569895386696, -0.02423303760588169, -0.028759680688381195,
- 0.05775804817676544, 0.038995493203401566, 0.11518340557813644, 0.015867842361330986,
- 0.14072997868061066, -0.0016584245022386312, -0.1232084333896637, -0.04420611262321472,
- 0.11499626189470291, -0.039833322167396545, -0.053728196769952774, -0.02929099090397358,
- 0.018531715497374535, 0.06501872837543488, -0.08634904026985168, 0.0037647304125130177,
- -0.03730395808815956, 0.04610133543610573, -0.023878280073404312, 0.025820370763540268,
- 0.02930316887795925, 0.0737389549612999, 0.05416354537010193, 0.029054030776023865,
- 0.028020644560456276, -0.05478529632091522, -0.09836557507514954, 0.14401622116565704,
- -0.028247691690921783, -0.03569301590323448, 0.12334072589874268, -0.08869189023971558,
- 0.02407810464501381, 0.0644674301147461, 0.13112276792526245, -0.1254887878894806,
- 0.03908570110797882, -0.01611718349158764, -0.0004727468185592443, 0.07254105806350708,
- -0.020302755758166313, -0.07820916920900345, -0.054138537496328354, 0.11140711605548859,
- 0.01984223909676075, 0.07544378936290741, -0.00807786826044321, -0.03052346780896187,
- 0.012669776566326618, 0.08168838173151016, -0.01484718918800354, -0.021894851699471474,
- 0.06197262927889824, 0.03922823444008827, -0.02153424173593521, -0.030590686947107315,
- 0.022793728858232498, 0.05720960348844528, 0.08100948482751846, 0.023821713402867317,
- 0.05313429236412048, 0.009328131563961506, -0.03305423632264137, 0.010042967274785042,
- 0.021244671195745468, 0.01044621504843235, 0.11029642075300217, -0.08783391863107681,
- 0.009625790640711784, -0.0507606565952301, -0.038233496248722076, 0.013336981646716595,
- -0.043555356562137604, 0.09720870852470398, 0.08518379926681519, 0.12951765954494476,
- 0.014593532308936119, 0.07599560916423798, 0.03602170944213867, 0.10811961442232132,
- 0.03227241709828377, 0.14667345583438873, -0.004605749621987343, -0.006899620871990919,
- -0.04956045001745224, -0.04052914306521416, 0.021521227434277534, -0.013564773835241795,
- -0.04587779939174652, -0.03510351851582527, -0.042590487748384476, -0.07397592812776566,
- -0.09142736345529556, -0.019346149638295174, 0.0707915648818016, 0.025756921619176865,
- -0.059185195714235306, -0.10074299573898315, -0.08940240740776062, 0.008891534060239792,
- 0.09747443348169327, 0.004848390351980925, -0.044416215270757675, -0.11333876848220825,
- 0.009084044024348259, -0.005955496337264776, 0.06521285325288773, -0.04226988926529884,
- -0.00165081606246531, -0.044205598533153534, -0.09843385219573975, 0.004510106984525919,
- 0.011071939021348953, -0.016865134239196777, -0.040119826793670654,
- -0.05953355133533478, -0.013496093451976776, -0.04376622289419174, 0.010728142224252224,
- 0.03824134171009064, 0.05399851128458977, 0.03550238907337189, 0.03658144921064377,
- -0.003968422766774893, -0.024953791871666908, 0.03765849396586418,
- -0.020959382876753807, 0.01729123480618, 0.06197698786854744, -0.03422658517956734,
- 0.0361483208835125, -0.043810293078422546, -0.027832241728901863, -0.08656321465969086,
- 0.007003392092883587, -0.05303925275802612, 0.043659910559654236, -0.03325764089822769,
- 0.01543530635535717, -0.07862775027751923, 0.004798204638063908, 0.04140098765492439,
- -0.021410688757896423, -0.04822120815515518, -0.08074343204498291, 0.11135316640138626,
- -0.003141173394396901, 0.004329454619437456, 0.05784070864319801, -0.030252758413553238,
- 0.08640175312757492, 0.020892763510346413, -0.019380467012524605, 0.02615792490541935,
- 0.10058308392763138, -0.011648005805909634, -0.01803463324904442, 0.07539791613817215,
- -0.0042041148990392685, 0.043692659586668015, 0.06627120077610016, 0.4105342924594879,
- -0.24580280482769012, 0.06299377977848053, 0.08433160930871964, 0.02554454281926155,
- 0.018088890239596367, -0.03864865377545357, 0.08111140877008438, 0.043862804770469666,
- 0.10342208296060562, 0.14475804567337036, -0.04106733575463295, 0.00846104510128498,
- -0.07942885905504227, 0.0812998041510582, 0.04678929224610329, 0.022214502096176147,
- 0.01809840276837349, -0.012511773966252804, -0.043689701706171036, 0.0651620402932167,
- -0.024043284356594086, -0.011923498474061489, 0.0015754877822473645,
- -0.03572291508316994, 0.020453890785574913, 0.0437423400580883, 0.03607383742928505,
- -0.02818937785923481, 0.04837575927376747, -0.010948502458631992, 0.02916715480387211,
- 0.03063078224658966, 0.03865432366728783, -0.130483478307724, 0.026112407445907593,
- -0.0373789519071579, -0.05334671586751938, 0.09358073770999908, 0.02430926077067852,
- 0.09754443168640137, 0.0636497363448143, -0.04101943597197533, 0.005774917546659708,
- -0.01177927479147911, -0.024311387911438942, 0.0015749407466500998, 0.04295852780342102,
- 0.056756358593702316, 0.10123927146196365, 0.16371704638004303, -0.019914472475647926,
- -0.017194807529449463, -0.06414587795734406, 0.06728603690862656, 0.0903838649392128,
- -0.05974292755126953, 0.05479402840137482, -0.01613776758313179, 0.007749284617602825,
- 0.002509084763005376, -0.07059634476900101, -0.05714251473546028, -0.03309071809053421,
- -0.11069542914628983, 0.06688088178634644, 0.016835710033774376, -0.008474030531942844,
- -0.22515209019184113, 0.00018215352611150593, -0.052085161209106445,
- 0.0015537813305854797, 0.10031147301197052, -0.06794942170381546, -0.021404042840003967,
- 0.03646004945039749, -0.021325845271348953, 0.0014237194554880261, -0.06326010823249817,
- -0.009208811447024345, -0.007761845830827951, 0.02502109482884407, 0.09009742736816406,
- 0.06504171341657639, -0.07314454019069672, 0.02238493226468563, -0.1213531568646431,
- 0.031677380204200745, -0.03425499424338341, 0.014425691217184067, -0.029392167925834656,
- -0.05430486425757408, 0.03357337415218353, 0.02306014858186245, -0.04500967636704445,
- 0.03630293160676956, 0.023704322054982185, -0.026381392031908035, -0.07168520241975784,
- -0.08944052457809448, -0.030931131914258003, -0.09324830025434494, 0.04214463755488396,
- -0.15048043429851532, -0.0049354443326592445, -0.006203195545822382,
- -0.00787933636456728, 0.0034044357016682625, 0.08240440487861633, -0.031894467771053314,
- -0.11903766542673111, -0.004471233114600182, -0.018026035279035568, 0.06099255383014679,
- 0.015649303793907166, -0.03733076900243759, -0.04367094114422798, 0.13480153679847717,
- 0.056936562061309814, -0.038470182567834854, -0.005040263757109642, -0.0912105068564415,
- 0.08920502662658691, -0.10145790874958038, -0.5045086741447449, 0.05136359855532646,
- 0.04118071496486664, 0.06242023780941963, 0.011044878512620926, -0.04045021906495094,
- 0.010348607785999775, -0.015229455195367336, -0.04264919459819794, 0.07497432082891464,
- -0.024944787845015526, -0.02106909640133381, -0.04539201036095619, -0.02756715752184391,
- -0.017109762877225876, -0.0521068349480629, -0.10065923631191254, 0.0857817530632019,
- 0.00042662207852117717, -0.047087039798498154, -0.09728150069713593,
- 0.009570418857038021, 0.02633638307452202, -0.034004442393779755, -0.012021547183394432,
- 0.006243307609111071, -0.05104123428463936, -0.05750279501080513, 0.0625586286187172,
- 0.05245433375239372, 0.02730507403612137, -0.10187002271413803, -0.05947491154074669,
- 0.05701104924082756, 0.00814793724566698, 0.1328766644001007, 0.019983695819973946,
- 0.005748212803155184, -0.07797355949878693, 0.09586288779973984, 0.04447399079799652,
- 0.18445977568626404, -0.02750615030527115, 0.06249900907278061, 0.008288922719657421,
- 0.18130680918693542, 0.08748266100883484, -0.017158495262265205, -0.02412852644920349,
- -0.019103817641735077, 0.014373082667589188, 0.0034437449648976326, 0.0671837329864502,
- -0.08403197675943375, -0.03319370001554489, -0.038756076246500015,
- -0.003392943413928151, -0.04586557298898697, 0.013424795120954514, 0.17470182478427887,
- 0.0018230408895760775, 0.01888914778828621, -0.04145044460892677, -0.053473275154829025,
- -0.014639075845479965, -0.09586397558450699, 0.002815967658534646, -0.04371374100446701,
- -0.04124448448419571, -0.001212773029692471, -0.11329580098390579, -0.10456765443086624,
- -0.032728224992752075, -0.003998220432549715, -0.010524198412895203,
- 0.06889673322439194, -0.023389874026179314, 0.012000663205981255, -0.017137473449110985,
- 0.13646437227725983, 0.04359558969736099, -0.01861361227929592, 0.027477877214550972,
- 0.11405379325151443, 0.029608717188239098, 0.03296220302581787, -0.046411894261837006,
- -0.06921283900737762, -0.042532436549663544, 0.13583238422870636, -0.02330443263053894,
- 0.14922823011875153, 0.03493281081318855, -0.03584805876016617, -0.022779958322644234,
- 0.01538538746535778, -0.03155297785997391, 0.036514125764369965, -0.50921630859375,
- -0.006953733507543802, 0.09557617455720901, -0.021243279799818993, 0.011705962009727955,
- 0.06524568796157837, -0.007546707056462765, -0.016238288953900337, -0.01808835007250309,
- -0.04827256128191948, 0.1116119772195816, -0.03650032356381416, 0.036498989909887314,
- -0.1293799877166748, 0.02834126353263855, 0.07841703295707703, -0.027123404666781425,
- 0.0024103547912091017, 0.005159569904208183, -0.28108468651771545,
- -0.013786662369966507, -0.05777304247021675, 0.16295863687992096, -0.01928671821951866,
- 0.028080856427550316, 0.09405185282230377, -0.01667201519012451, 0.061999090015888214,
- -0.02256430871784687, -0.0023190437350422144, -0.0012505309423431754,
- -0.0393780879676342, -0.06200633943080902, 0.10029143840074539, 0.1268465369939804,
- 0.08599407225847244, -0.02112032286822796, 12.082488059997559, 0.0693894475698471,
- 0.09569717943668365, -0.1048407107591629, 0.054133690893650055, -0.06089217588305473,
- -0.028641631826758385, -0.07453614473342896, 0.06569226831197739, 0.10806115716695786,
- -0.014523699879646301, -0.016963042318820953, -0.06481681764125824,
- -0.14097262918949127, 0.019700855016708374, -0.0672900527715683, -0.09133713692426682,
- -0.061288267374038696, -0.008685706183314323, -0.06326744705438614,
- -0.004485134966671467, 0.08614335209131241, 0.08313664048910141, 0.009747184813022614,
- -0.08604208379983902, 0.06166941672563553, 0.044137660413980484, -0.00518236355856061,
- -0.006442221812903881, 0.033779267221689224, 0.006414132192730904, 0.06960251927375793,
- 0.07599986344575882, -0.04193528741598129, 0.024304741993546486, 0.059850599616765976,
- 0.00725809670984745, 0.05122166499495506, 0.032860592007637024, 0.08372071385383606,
- -0.012283152900636196, 0.028116118162870407, 0.042429931461811066, 0.05467299744486809,
- 0.026923028752207756, 0.04655231907963753, 0.06529258191585541, 0.1651652455329895,
- -0.03380076587200165, 0.08158615976572037, 0.12016947567462921, -0.03847799822688103,
- 0.11560484021902084, 0.028877241536974907, -0.02980732172727585, 0.027001559734344482,
- -0.022572262212634087, -0.08581653982400894, 0.10788116604089737, 0.043492622673511505,
- -0.04291031137108803, 0.06969430297613144, 0.043510135263204575, 0.08257259428501129,
- -0.022446492686867714, 0.09798615425825119, 0.06027601286768913, 0.055948611348867416,
- -0.0733906626701355, -0.09521690011024475, 0.034290753304958344, -0.0998210534453392,
- -0.05945935845375061, 0.047011617571115494, 0.10280576348304749, -0.028903475031256676,
- 0.06993288546800613, -0.007113939616829157, 0.021768342703580856, -0.058861374855041504,
- 0.009079279378056526, 0.047958314418792725, -0.06127912551164627, -0.004888114519417286,
- 0.08421558886766434, 0.0432468056678772, 0.05110791698098183, 0.09309746325016022,
- -0.04902289807796478, -0.12535876035690308, -0.08573491871356964, 0.07633034139871597,
- 0.00032048672437667847, -0.004258544184267521, 0.02639586292207241,
- -0.06751923263072968, 0.07330271601676941, -0.20390456914901733, 0.09761811047792435,
- 0.13988223671913147, -0.08551529794931412, -0.01958390139043331, -0.026833219453692436,
- 0.04852951318025589, 0.01988762803375721, 0.035851918160915375, -0.07434634119272232,
- 0.044595103710889816, 0.028346670791506767, 0.06293010711669922, -0.057284511625766754,
- 0.0465189591050148, 0.09826865792274475, -0.07998771965503693, -0.005177542567253113,
- 0.10189969092607498, 0.00180247297976166, -0.03437148779630661, 0.08168264478445053,
- 0.02171933837234974, -0.07205848395824432, -0.05070760101079941, -0.0649770200252533,
- -0.06379340589046478, -0.027407491579651833, -0.09627304971218109, 0.005423650611191988,
- 0.03571246936917305, -0.07271076738834381, -0.022804800420999527, 0.017604155465960503,
- 0.05015334114432335, 0.03270649537444115, -0.008616807870566845, 0.06151247397065163,
- -0.042310651391744614, -0.03434070199728012, 0.06511007249355316, 0.03886818140745163,
- 0.09086025506258011, -0.0062583512626588345, -0.033877432346343994,
- -0.03286891430616379, -0.12194537371397018, 0.004456756636500359, 0.03221148997545242,
- 0.0550277978181839, 0.03452153503894806, 0.040549423545598984, -0.08309483528137207,
- -0.040498536080121994, 0.08978740125894547, 0.07744884490966797, 0.019241806119680405,
- 0.013648537918925285, -0.04317966476082802, -0.05815132334828377, 0.07836224138736725,
- -0.014168436639010906, -0.020792406052350998, 0.01821349374949932, 0.030336957424879074,
- 0.06742662936449051, 0.08431846648454666, 0.1121058240532875, 0.07971661537885666,
- 0.05657047778367996, -0.02392766997218132, 0.027617966756224632, 0.025756940245628357,
- 0.0032916220370680094, 0.006030051503330469, -0.17319129407405853, -0.05205348879098892,
- 0.038062933832407, 0.08640094846487045, 0.05329110845923424, -0.14568625390529633,
- -0.008508056402206421, 0.03080185130238533
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 327,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 16,
- "similarity": 0.9977761507034302
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 53,
- "similarity": 0.9976314902305603
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 68,
- "similarity": 0.9975717663764954
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Josh Dzieza"],
- "epoch_date_downloaded": 1662508800,
- "epoch_date_modified": 1662508800,
- "epoch_date_submitted": 1662508800,
- "flag": null,
- "report_number": 2011,
- "source_domain": "theverge.com",
- "submitters": ["Khoa Lam"],
- "title": "Facebook's new nostalgia feature is already bringing up painful memories",
- "url": "https://www.theverge.com/2015/4/2/8315897/facebook-on-this-day-nostalgia-app-bringing-back-painful-memories"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "spamouflage-dragon",
- "name": "Spamouflage Dragon"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "unknown",
- "name": "Unknown"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "youtube-users",
- "name": "YouTube users"
- },
- {
- "__typename": "Entity",
- "entity_id": "twitter-users",
- "name": "Twitter Users"
- },
- {
- "__typename": "Entity",
- "entity_id": "facebook-users",
- "name": "Facebook users"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [2032, 2014],
- "vector": [
- -0.09207181632518768, 0.036066602915525436, 0.009868651628494263, -0.09432141482830048,
- 0.07926252484321594, -0.011705761775374413, 0.0013762768357992172, 0.03649100661277771,
- 0.06178230792284012, -0.1554139405488968, -0.026867900043725967, 0.03608757257461548,
- 0.04286304861307144, -0.10732010006904602, 0.01818113587796688, -0.09532971680164337,
- -0.12344153225421906, -0.029811985790729523, -0.007926350459456444, -0.1725846529006958,
- -0.08426892012357712, 0.03372139856219292, 0.01662612520158291, 0.12102723866701126,
- -0.028845787048339844, 0.04322044923901558, 0.12005366384983063, 0.1296989917755127,
- -0.14779098331928253, 0.04290788248181343, -0.021709995344281197, -0.07286876440048218,
- 0.16526266932487488, 0.0029097162187099457, 0.039309680461883545, 0.10810229927301407,
- 0.05047541484236717, -0.025627877563238144, -0.005233506206423044,
- -0.002641804749146104, 0.007993429899215698, 0.24444225430488586, -0.03702627494931221,
- -0.02056596800684929, 0.05330803990364075, -0.03031899407505989, -0.007689058780670166,
- 0.030518068000674248, 0.015007355250418186, -0.017014505341649055, -0.01709008775651455,
- -0.023431925103068352, -0.04084467515349388, 0.052383460104465485, -0.09998796880245209,
- 0.09838852286338806, 0.048933692276477814, -0.042433734983205795,
- -0.0005698087625205517, -0.10302577912807465, -0.05340896174311638, -0.2689572274684906,
- -0.015322974883019924, -0.10013958811759949, 0.07081925868988037, -0.09916062653064728,
- -0.043496932834386826, 0.0323970690369606, 0.02554561011493206, 0.039858996868133545,
- 0.05795235186815262, -0.0430709570646286, -0.004000159911811352, 0.01522312592715025,
- 0.0039046178571879864, -0.04997047781944275, 0.03602180629968643, 0.1221439465880394,
- -0.07332342863082886, 0.04994148015975952, 0.09832441061735153, -0.0771074891090393,
- 0.4313916862010956, 0.03405871242284775, -0.04557434096932411, 0.061556313186883926,
- 0.11207534372806549, 0.016454637050628662, 0.016523104161024094, 0.01552364882081747,
- -0.014233225956559181, 0.04292965307831764, -0.09116564691066742, 0.01438099518418312,
- 0.08349690586328506, 0.014011241495609283, -0.0032789665274322033, 0.029800470918416977,
- -0.03186672553420067, -0.06311608850955963, 0.015494583174586296, -0.031462978571653366,
- 0.1260506510734558, 0.05069723725318909, -0.024139683693647385, 0.0026503512635827065,
- 0.07086870074272156, -0.09299769252538681, 0.038796741515398026, -0.0815863162279129,
- -0.0009082802571356297, -0.0203541349619627, 0.08503344655036926, -0.025278305634856224,
- 0.05161849781870842, -0.059200726449489594, -0.004162405617535114, 0.017754575237631798,
- 0.08276455104351044, 0.05869290977716446, 0.014635678380727768, 0.0670006051659584,
- 0.10042122006416321, -0.054729413241147995, -0.03744299337267876, -0.07198576629161835,
- -0.051922231912612915, -0.004069316200911999, -0.015586654655635357,
- 0.03774655610322952, -0.04300175979733467, -0.19752487540245056, 0.0187099426984787,
- 0.028950951993465424, -0.00805429182946682, -0.021629827097058296, 0.018056906759738922,
- -0.08879032731056213, -0.012361573055386543, 0.009163104929029942,
- -0.001237096032127738, 0.08862674981355667, 0.0155367786064744, 0.01975133642554283,
- 0.12753412127494812, 0.0463956817984581, -0.04789689555764198, -0.09820109605789185,
- -0.03669051080942154, -0.017304297536611557, 0.08024383336305618, -0.09526778757572174,
- -0.05256390571594238, -0.014189227484166622, -0.005209025926887989, 0.6993082761764526,
- 0.11446119844913483, 0.1890290379524231, 0.004435444716364145, -0.023233093321323395,
- 0.1703852117061615, 0.008394133299589157, 0.06924903392791748, -0.0552176833152771,
- -0.07756310701370239, 0.022801943123340607, -0.03195653110742569, -0.003191776806488633,
- 0.020955849438905716, 0.007030958775430918, 0.07927286624908447, 0.01590946689248085,
- 0.14514842629432678, 0.05730794370174408, -0.07095195353031158, -0.039609409868717194,
- 0.03993169963359833, 0.021486684679985046, -0.10917449742555618, -0.019047660753130913,
- 0.02448984608054161, 0.10456053912639618, -0.052618395537137985, -0.005483112297952175,
- -0.08450599759817123, 0.07647207379341125, -0.03799249976873398, 0.05066896975040436,
- -0.020494021475315094, 0.05899808928370476, 0.0508868433535099, 0.032707713544368744,
- -0.009092872031033039, -0.09959089756011963, -0.04250011593103409, 0.07566219568252563,
- -0.014039665460586548, -0.04551506042480469, 0.07668166607618332, -0.07306873798370361,
- 0.051555849611759186, 0.023217663168907166, 0.18290852010250092, -0.1206885576248169,
- -0.019476203247904778, -0.009128423407673836, -0.018748054280877113, 0.0188079085201025,
- 0.001270250417292118, -0.05490843579173088, -0.09059792757034302, 0.07783276587724686,
- 0.04409085959196091, 0.05599522218108177, 0.04014550521969795, -0.016044292598962784,
- 0.0634458139538765, -0.025228774175047874, 0.022719746455550194, -0.07991494983434677,
- 0.10821187496185303, 0.009741147980093956, -0.07053397595882416, -0.07078652083873749,
- 0.025034304708242416, 0.06026393175125122, 0.026392731815576553, 0.004160109907388687,
- 0.04846886545419693, 0.030978836119174957, -0.022793855518102646, 0.05351050943136215,
- 0.016077719628810883, 0.057934731245040894, 0.06233640015125275, -0.11683179438114166,
- -0.07257471978664398, -0.06727655977010727, -0.05191178619861603, -0.001302562654018402,
- 0.004987286403775215, 0.08978500962257385, 0.07345806807279587, 0.07003564387559891,
- 0.013902401551604271, 0.05115693062543869, 0.09771909564733505, -0.003215828910470009,
- 0.003988269250839949, 0.06979537755250931, -0.042330533266067505, -0.027059391140937805,
- -0.03653419762849808, 0.02655576542019844, 0.042199477553367615, 0.006797207519412041,
- -0.05647730454802513, -0.027092305943369865, -0.06213676929473877,
- -0.050348684191703796, -0.11627712845802307, -0.009482116438448429, 0.0521111898124218,
- 0.0946488082408905, -0.0748051106929779, -0.04367482289671898, -0.07736919820308685,
- -0.022599678486585617, 0.06404397636651993, -0.015895189717411995, -0.02665294148027897,
- -0.10392528772354126, 0.0426187701523304, -0.040363751351833344, 0.027685411274433136,
- -0.03474611043930054, -0.015532116405665874, 0.029923846945166588, -0.0705774649977684,
- 0.004955402575433254, -0.002302867826074362, -0.053104449063539505,
- 0.005070305895060301, -0.06386756151914597, -0.0465230867266655, -0.029721122235059738,
- 0.009567986242473125, -0.028835350647568703, 0.032564882189035416, 0.045176513493061066,
- 0.06362320482730865, -0.018620161339640617, -0.009671195410192013, 0.052347440272569656,
- -0.046260297298431396, -0.04085586220026016, 0.09013774991035461,
- -0.0074371700175106525, 0.03707678243517876, -0.03529684990644455, -0.07571068406105042,
- -0.03803696110844612, 0.008686290122568607, -0.061341844499111176, 0.0675734430551529,
- 0.00772470235824585, -0.028201978653669357, -0.02630147710442543, -0.002445738762617111,
- 0.08363625407218933, -0.042226940393447876, -0.11437907814979553, -0.08733467757701874,
- 0.11445930600166321, -0.03103180229663849, 0.016718236729502678, 0.0046517266891896725,
- -0.025024522095918655, 0.05658353492617607, 0.021226581186056137, 0.002917927224189043,
- 0.04035741835832596, 0.08390802145004272, -0.0004816311411559582, 0.04191863536834717,
- 0.05899066478013992, -0.05807878077030182, 0.051876895129680634, 0.08068174123764038,
- 0.42309704422950745, -0.12787586450576782, 0.06061190366744995, 0.0946202427148819,
- -0.015217434614896774, 0.034971684217453, -0.05113939195871353, 0.0771198719739914,
- 0.07060852646827698, 0.12039820849895477, 0.12633007764816284, -0.04999981075525284,
- 0.026185426861047745, -0.07985152304172516, 0.08193448185920715, 0.04172619432210922,
- 0.017359083518385887, -0.011248581111431122, -0.029138505458831787,
- -0.04587627202272415, 0.09851523488759995, -0.04143897444009781, 0.006104880943894386,
- -0.0182487815618515, -0.05683251470327377, 0.03486813232302666, 0.03746470808982849,
- 0.026013920083642006, -0.021635863929986954, 0.04252735525369644, -0.02368030697107315,
- 0.016812918707728386, -0.01559162326157093, 0.05344449356198311, -0.09779216349124908,
- 0.01512738224118948, -0.05543482303619385, -0.09003988653421402, 0.046277355402708054,
- 0.03582575544714928, 0.07076948881149292, 0.05004419386386871, 0.015063791535794735,
- 0.03773284703493118, -0.033269643783569336, -0.06201829016208649, 0.01658158376812935,
- 0.07590597867965698, 0.0037549003027379513, 0.1338232010602951, 0.1430814117193222,
- -0.02820410206913948, 0.009400414302945137, -0.09352010488510132, 0.06190758943557739,
- 0.10430632531642914, -0.019172754138708115, 0.03293418884277344, -0.0028509553521871567,
- -0.02484283223748207, 0.002665354870259762, -0.0372287780046463, -0.07201296091079712,
- -0.03962334990501404, -0.05440932512283325, 0.054323308169841766, 0.051673829555511475,
- -0.05177312344312668, -0.19929148256778717, -0.016663046553730965,
- -0.025006065145134926, 0.05594097822904587, 0.11043453216552734, -0.08663642406463623,
- 0.007349345833063126, 0.036772675812244415, 0.013692190870642662, -0.03433884680271149,
- -0.06894661486148834, -0.01187699381262064, -0.058878906071186066, 0.017192404717206955,
- 0.03464963287115097, 0.06552696973085403, -0.053411904722452164, 0.0888659805059433,
- -0.12252245843410492, 0.03946255147457123, 0.035801611840724945, -0.013016976416110992,
- 0.013901036232709885, -0.048849280923604965, 0.009414072148501873, -0.00765931885689497,
- -0.07399715483188629, -0.007682217285037041, -0.04752173274755478, -0.03798134624958038,
- -0.0818357914686203, -0.08071868866682053, -0.037334658205509186, -0.0661914125084877,
- 0.07092540711164474, -0.07086359709501266, 0.0034882486797869205, -0.06279519200325012,
- -0.023383885622024536, -0.03467508777976036, 0.05187408998608589, -0.01087162084877491,
- -0.17292530834674835, -0.027570268139243126, 0.007324852515012026, 0.03880432993173599,
- -0.03813105449080467, -0.06481719017028809, -0.02968156337738037, 0.05405016243457794,
- 0.018821602687239647, -0.01352732628583908, 0.03025663271546364, -0.03345203772187233,
- 0.05965444818139076, -0.11001741886138916, -0.3628327250480652, 0.06047353893518448,
- 0.03922488912940025, 0.042567238211631775, 0.0015006177127361298, -0.058282628655433655,
- 0.02440003678202629, 0.013368479907512665, -0.05102768540382385, 0.06826691329479218,
- -0.05665547773241997, 0.0039049084298312664, -0.047133415937423706,
- -0.07015397399663925, -0.00461924122646451, -0.09501156955957413, -0.061961110681295395,
- -0.012182251550257206, -0.024578992277383804, -0.06095888465642929,
- -0.10176593065261841, 0.03622588887810707, -0.040059417486190796, 0.007194290868937969,
- 0.009339824318885803, 0.051289282739162445, -0.07064174115657806, -0.07768668234348297,
- 0.038418009877204895, 0.04369436949491501, 0.02145986258983612, -0.07311038672924042,
- -0.021019676700234413, 0.0911666676402092, 0.005557902157306671, 0.1305999904870987,
- 0.008204041048884392, -0.022681165486574173, -0.08151722699403763, 0.04062953218817711,
- 0.07208040356636047, 0.18536224961280823, -0.0032515348866581917, 0.014218256808817387,
- 0.06557051837444305, 0.1490507870912552, 0.03943594545125961, 0.046221502125263214,
- -0.037195511162281036, -0.004056642297655344, -0.013540605083107948,
- -0.011251517571508884, 0.08366268873214722, -0.04935307428240776, -0.006953762844204903,
- -0.015060055069625378, -0.025873316451907158, -0.05432761833071709,
- 0.0063976021483540535, 0.1790541112422943, 0.01795978471636772, 0.015109912492334843,
- 0.0009335873182862997, -0.040110379457473755, -0.012330366298556328,
- -0.08718682825565338, -0.036659352481365204, -0.012900372967123985,
- -0.018887989223003387, 0.021840078756213188, -0.04873853921890259, -0.11997507512569427,
- -0.012527575716376305, -0.02766946330666542, 0.0002826303243637085, 0.12145775556564331,
- -0.05256953835487366, 0.008503524586558342, -0.03051067516207695, 0.16260771453380585,
- 0.030965469777584076, 0.02669868990778923, 0.05568784475326538, 0.1021786704659462,
- 0.02295999974012375, -0.008743350394070148, -0.0004628049209713936,
- -0.08346401900053024, -0.007981865666806698, 0.15210860967636108, -0.03602641820907593,
- 0.14511115849018097, 0.03568902611732483, -0.009643019177019596, -0.06502412259578705,
- 0.01698528230190277, -0.011658999137580395, 0.03844313323497772, -0.3697459101676941,
- -0.010824332013726234, 0.10322433710098267, 0.007864555343985558, 0.014986388385295868,
- 0.07375668734312057, 0.025395100936293602, -0.01623980887234211, -0.036250218749046326,
- -0.12381871789693832, 0.13859960436820984, 0.018090058118104935, 0.059455785900354385,
- -0.08285751938819885, 0.025752341374754906, 0.10940736532211304, 0.0009948424994945526,
- 0.001291151624172926, 0.027013856917619705, -0.16391311585903168, -0.007227576337754726,
- -0.00850917398929596, 0.11562980711460114, -0.014588521793484688, 0.04427748918533325,
- 0.07374425232410431, -0.034808576107025146, -0.00362754357047379, 0.042689286172389984,
- -0.01610714942216873, 0.048108186572790146, -0.017380286008119583,
- -0.011551272124052048, 0.1273687481880188, 0.13204601407051086, 0.08453750610351562,
- -0.03850466012954712, 12.024940490722656, 0.07623104006052017, 0.08110915124416351,
- -0.09695103764533997, 0.02299405261874199, -0.039347194135189056, 0.02396116778254509,
- -0.09199385344982147, 0.091013103723526, 0.1126125305891037, -0.002863345667719841,
- -0.0561421662569046, -0.027138326317071915, -0.10502922534942627, 0.013068048283457756,
- -0.03865655139088631, -0.024231096729636192, -0.02592979557812214, 0.033783070743083954,
- -0.05622927471995354, -0.06795002520084381, 0.051165804266929626, 0.07608366757631302,
- 0.025956999510526657, -0.0800478532910347, 0.04009818285703659, 0.006379459984600544,
- -0.010696605779230595, -0.0008230501553043723, 0.0008343526860699058,
- 0.028116457164287567, 0.02333616279065609, 0.0972629189491272, 0.009345727041363716,
- 0.008146646432578564, 0.0981099009513855, 0.040292754769325256, 0.028794942423701286,
- 0.03812389820814133, 0.042618025094270706, -0.011819702573120594, 0.02621130831539631,
- -0.011899150907993317, 0.08325408399105072, 0.03994576632976532, 0.035785071551799774,
- 0.03348260745406151, 0.13216757774353027, -0.002771548228338361, 0.06953638046979904,
- 0.09724041819572449, 0.004950711969286203, 0.10469917953014374, 0.09384369850158691,
- 0.0064213271252810955, 0.06628035753965378, -0.02863140031695366, -0.08995545655488968,
- 0.0684937983751297, 0.012177308090031147, -0.06239054352045059, 0.10380278527736664,
- 0.033915095031261444, 0.14045590162277222, 0.03618115931749344, -0.006464249920099974,
- 0.06733877211809158, 0.08074243366718292, -0.13914625346660614, -0.13615106046199799,
- 0.08038616180419922, -0.11576591432094574, -0.07890813052654266, 0.040434569120407104,
- 0.09194747358560562, 0.014738779515028, 0.03826329857110977, -0.038419224321842194,
- 0.014276348054409027, -0.020783010870218277, -0.0009379135444760323,
- 0.06979841738939285, -0.06498311460018158, 0.007535528391599655, 0.038601361215114594,
- 0.025858063250780106, 0.09735698997974396, 0.14533597230911255, 0.02565724402666092,
- -0.09095528721809387, -0.04894457012414932, 0.09061585366725922, 0.008876854553818703,
- -0.03417780250310898, 0.03298414871096611, -0.05355177819728851, 0.018304090946912766,
- -0.17746835947036743, 0.06915011256933212, 0.11296560615301132, -0.05582612752914429,
- -0.04439065605401993, 0.0033237896859645844, 0.09050972014665604, 0.013527204282581806,
- 0.05209287256002426, -0.06615719199180603, -0.03904564678668976, 0.03906052187085152,
- 0.04162636026740074, -0.03861047327518463, 0.08738517761230469, 0.07882106304168701,
- -0.07338115572929382, 0.05537444353103638, 0.053713079541921616, -0.020427927374839783,
- -0.010580050759017467, 0.0531294085085392, 0.05086600407958031, -0.0942121297121048,
- -0.0572410523891449, -0.044199176132678986, -0.059469692409038544,
- -0.004494849126785994, -0.028171896934509277, 0.008059971034526825, 0.04662110283970833,
- -0.06454755365848541, -0.0453275591135025, 0.06002116948366165, 0.07506591081619263,
- 0.1714610457420349, -0.009641436859965324, 0.058609798550605774, -0.0740809217095375,
- -0.023553432896733284, 0.06423895806074142, 0.051444053649902344, 0.05441620945930481,
- -0.03236492723226547, -0.03597329556941986, -0.03249000012874603, -0.0784185379743576,
- 0.04976624622941017, 0.09654480218887329, 0.026158109307289124, 0.022694379091262817,
- 0.03180472552776337, -0.08489188551902771, -0.057331133633852005, 0.11312918365001678,
- 0.025247767567634583, -0.003673856146633625, 0.016632122918963432, -0.04374111071228981,
- -0.04125215858221054, 0.11895981431007385, -0.03049713745713234, -0.00542596448212862,
- 0.013367651030421257, -0.08427112549543381, 0.08893129974603653, 0.10500931739807129,
- 0.05333477258682251, 0.04867622256278992, 0.03632890805602074, 0.012305229902267456,
- 0.05924278497695923, -0.0057843998074531555, 0.019464004784822464, -0.08564721047878265,
- -0.05410391092300415, -0.08513814210891724, 0.04534950479865074, 0.07530602812767029,
- 0.08451870083808899, -0.1398804485797882, -0.00025072135031223297, -0.03091924637556076
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 328,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 14,
- "similarity": 0.997528076171875
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 60,
- "similarity": 0.9974913001060486
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 229,
- "similarity": 0.9974508881568909
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Ben Nimmo", " Camille François", " C. Shawn Eib", " Léa Ronzaud"],
- "epoch_date_downloaded": 1662508800,
- "epoch_date_modified": 1663027200,
- "epoch_date_submitted": 1662508800,
- "flag": null,
- "report_number": 2032,
- "source_domain": "graphika.com",
- "submitters": ["Khoa Lam"],
- "title": "Spamouflage Goes to America — Pro-Chinese Inauthentic Network Debuts English-Language Videos",
- "url": "https://www.graphika.com/reports/spamouflage-dragon-goes-to-america"
- },
- {
- "__typename": "Report",
- "authors": ["Michael Kan"],
- "epoch_date_downloaded": 1662508800,
- "epoch_date_modified": 1662508800,
- "epoch_date_submitted": 1662508800,
- "flag": null,
- "report_number": 2014,
- "source_domain": "pcmag.com",
- "submitters": ["Ingrid Dickinson (CSET)"],
- "title": "Pro-China Propaganda Act Used Fake Followers Made With AI-Generated Images",
- "url": "https://www.pcmag.com/news/pro-china-propaganda-act-used-fake-followers-made-with-ai-generated-images"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "amazon",
- "name": "Amazon"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "amazon",
- "name": "Amazon"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "amazon-users",
- "name": "Amazon users"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [2015],
- "vector": [
- -0.02625397779047489, 0.10570347309112549, -0.014220468699932098, -0.09369626641273499,
- 0.03954692929983139, -0.013158640824258327, 0.011309240013360977, 0.015089409425854683,
- 0.13365915417671204, -0.062020860612392426, 0.05331578105688095, 0.0011610036017373204,
- -0.006619594991207123, -0.047908950597047806, 0.05991106852889061, -0.17375533282756805,
- -0.09167780727148056, -0.0251433327794075, -0.0291791670024395, -0.0548141710460186,
- -0.11392373591661453, 0.05190911144018173, 0.054882775992155075, 0.13462446630001068,
- -0.035685569047927856, 0.04886849969625473, 0.08469519764184952, 0.1462375372648239,
- -0.05915294587612152, -0.045913681387901306, -0.03871162235736847, -0.02947130799293518,
- 0.15017439424991608, 0.018367169424891472, 0.0015682345256209373, 0.08685126900672913,
- 0.003698562504723668, -0.04306305572390556, -0.023859620094299316, -0.01200743205845356,
- 0.030989650636911392, 0.25978925824165344, -0.0019269352778792381, 0.04302933067083359,
- 0.015088469721376896, -0.05459343269467354, -0.015171089209616184, 0.02200956456363201,
- -0.008713820949196815, 0.010468265041708946, -0.059437595307826996, 0.05633603781461716,
- -0.042102694511413574, 0.046314749866724014, -0.08725626021623611, 0.09283971041440964,
- 0.024546179920434952, -0.03596215322613716, 0.0016719956183806062,
- -0.034226641058921814, -0.08342205733060837, -0.22103305160999298, -0.08201530575752258,
- -0.05319330096244812, 0.09380799531936646, -0.07079732418060303, -0.0459551103413105,
- -0.02260785922408104, 0.004180744290351868, 0.058074645698070526, 0.04255318641662598,
- 0.026842376217246056, -0.01657162420451641, -0.06249373033642769, 0.014562051743268967,
- -0.034872859716415405, 0.00750364363193512, 0.209400936961174, -0.030701039358973503,
- 0.06216360256075859, 0.07277289032936096, -0.06943373382091522, 0.33495843410491943,
- 0.023722484707832336, -0.021854789927601814, -0.045890070497989655,
- 0.003013815963640809, -0.0015531361568719149, 0.031439658254384995,
- 0.011492626741528511, -0.003373366314917803, 0.060397084802389145, -0.03213466331362724,
- -0.029304610565304756, 0.06693156063556671, 0.029103409498929977, 0.01364463847130537,
- -0.09824100881814957, -0.011658753268420696, -0.046961624175310135, 0.07396508753299713,
- -0.08425932377576828, 0.07172717899084091, 0.07821409404277802, -0.041605494916439056,
- 0.008530034683644772, 0.046649109572172165, -0.007594932336360216, 0.05462754890322685,
- -0.029463959857821465, 0.020499633625149727, 0.05711061507463455, 0.08889645338058472,
- 0.036378782242536545, 0.0700853019952774, 0.013401908800005913, 0.013423078693449497,
- 0.06395936012268066, 0.05446762219071388, 0.031234165653586388, 0.05147097632288933,
- 0.036990199238061905, -0.018562648445367813, -0.11711642146110535, 0.023196855559945107,
- 0.013955069705843925, -0.07939518988132477, -0.030329080298542976, 0.05012740567326546,
- 0.04853210598230362, -0.0789230540394783, -0.233304962515831, 0.0068946722894907,
- 0.096685491502285, -0.009894237853586674, 0.006611010525375605, -0.04100954532623291,
- -0.11333468556404114, 0.07700623571872711, -0.019634060561656952, -0.06390265375375748,
- 0.09895876049995422, 0.039591047912836075, 0.07187490910291672, 0.10215654969215393,
- 0.055083755403757095, -0.03190328925848007, -0.014142259024083614, 0.03118000738322735,
- -0.02569255419075489, 0.06546010822057724, -0.10560652613639832, -0.06229740381240845,
- 0.00027296761982142925, -0.0003663437382783741, 0.6078976392745972, 0.1233832910656929,
- 0.12026358395814896, 0.007193328812718391, -0.04818641394376755, 0.17352908849716187,
- -0.06080217659473419, 0.0524657666683197, -0.05779607594013214, -0.07655131816864014,
- 0.017160875722765923, -0.03571043536067009, -0.03430147096514702, 0.042065054178237915,
- 0.01722411997616291, 0.072984978556633, 0.004944960121065378, 0.1289491206407547,
- -0.013541849330067635, -0.12140092253684998, -0.05669558420777321, 0.040789224207401276,
- 0.021202584728598595, -0.135104700922966, -0.04534675553441048, 0.09588642418384552,
- 0.09842240810394287, -0.06017143651843071, 0.04703111946582794, -0.067910335958004,
- 0.08621256053447723, -0.026329725980758667, -0.0005986986798234284, -0.0649760514497757,
- -0.014607254415750504, 0.05087347701191902, 0.02698882482945919, -0.04153184965252876,
- -0.10043278336524963, 0.002371164271607995, 0.12876534461975098, 0.04403805732727051,
- -0.0625612810254097, 0.03329132869839668, -0.07508987933397293, 0.04601999372243881,
- 0.002535911276936531, 0.11369539052248001, -0.13994459807872772, -0.06379318982362747,
- 0.01685883104801178, -0.026634586974978447, 0.03026275523006916, 0.044182147830724716,
- -0.07281195372343063, -0.07793357968330383, 0.08279690146446228, 0.013215245679020882,
- 0.10360066592693329, -0.034370627254247665, -0.1031966581940651, 0.09665945172309875,
- 0.024390501901507378, -0.0017158322734758258, -0.06423988938331604, 0.06630862504243851,
- 0.045515287667512894, -0.04653318598866463, -0.008857859298586845, 0.020534005016088486,
- 0.07292313128709793, -0.0009050473454408348, -0.0006519724265672266,
- 0.05476796627044678, 0.010154979303479195, -0.04654090851545334, 0.0573853999376297,
- 0.009140880778431892, -0.000709302315954119, 0.0037179645150899887,
- -0.11213059723377228, -0.026028946042060852, -0.050949808210134506,
- -0.0015988037921488285, -0.016214488074183464, -0.027835140004754066,
- 0.10947029292583466, 0.11070308834314346, 0.062363892793655396, 0.014908802695572376,
- 0.03409954160451889, 0.03880854696035385, 0.07667647302150726, 0.026650765910744667,
- 0.024702778086066246, -0.03399594500660896, -0.10569974035024643, -0.08170711249113083,
- 0.0050180526450276375, 0.018166108056902885, 0.08394625037908554, -0.09854733943939209,
- -0.008804967626929283, 0.05787301063537598, 0.07088875770568848, -0.1136341243982315,
- -0.04702046141028404, 0.03929867967963219, 0.010700158774852753, -0.06927457451820374,
- -0.033415600657463074, -0.10928434878587723, -0.0012953864643350244, 0.0866556242108345,
- -0.06254357099533081, -0.01661519519984722, -0.09641003608703613, 0.04794963821768761,
- 0.0022817945573478937, 0.041810061782598495, 0.027315674349665642, 0.026355167850852013,
- -0.00728364335373044, -0.09171723574399948, -0.010663862340152264,
- -0.006016627419739962, -0.08688060939311981, -0.13194693624973297,
- -0.054495491087436676, -0.0255387332290411, -0.09315887093544006, 0.042167019098997116,
- -0.028234723955392838, 0.03633217141032219, 0.0688120573759079, 0.08249033242464066,
- -0.00411497475579381, 0.015835050493478775, 0.058254241943359375, -0.049315445125103,
- 0.033127330243587494, 0.09751810878515244, -0.029389917850494385, 0.03450823575258255,
- 0.04021314159035683, -0.10120198875665665, -0.06215665116906166, -0.04690807685256004,
- -0.0296645388007164, 0.02978561818599701, -0.012991921044886112, 0.01597144827246666,
- -0.012923093512654305, -0.00543771730735898, 0.050846073776483536, -0.06848905235528946,
- -0.09816766530275345, -0.07707155495882034, 0.13410545885562897, -0.03600752353668213,
- 0.05757817625999451, -0.003975576721131802, -0.0380743183195591, 0.031555164605379105,
- -0.04897822439670563, 0.03229200839996338, 0.06686627864837646, 0.11520400643348694,
- -0.09996604174375534, -0.02733197994530201, 0.06038765609264374, -0.029550930485129356,
- -0.021483326330780983, 0.035334646701812744, 0.47813597321510315, -0.15713569521903992,
- 0.038591329008340836, 0.0809364914894104, -0.028683234006166458, 0.06206178292632103,
- -0.0331084318459034, 0.04544347897171974, 0.10218727588653564, 0.1115572601556778,
- 0.0801432877779007, 0.026108935475349426, 0.02034774050116539, -0.06773698329925537,
- 0.04785507172346115, -0.028121212497353554, 0.04169321432709694, 0.029212696477770805,
- -0.015653833746910095, 0.002261091023683548, 0.008014911785721779, -0.03644290938973427,
- 0.040395304560661316, 0.005831459071487188, -0.05736873671412468, 0.0464230515062809,
- 0.02588810957968235, 0.026998287066817284, -0.021173793822526932,
- -0.0005377859924919903, -0.0769534558057785, 0.06426673382520676,
- -0.0003353050851728767, 0.05931845307350159, -0.04856416583061218,
- 0.0020822198130190372, -0.05412951111793518, -0.09730695188045502, 0.04268094524741173,
- -0.0026903951074928045, 0.08393529057502747, 0.07430907338857651, -0.0418105311691761,
- 0.02804185450077057, -0.023847447708249092, -0.052946027368307114, 0.061329521238803864,
- 0.0731743797659874, 0.04574888199567795, 0.05417988821864128, 0.17268294095993042,
- -0.04205982759594917, -0.03550221398472786, -0.05580630525946617, 0.03642618656158447,
- 0.1211099624633789, 0.01987079158425331, 0.044505853205919266, -0.00446630222722888,
- 0.016077296808362007, -0.006641433108597994, 0.0006474846741184592,
- -0.027975602075457573, 0.0062339045107364655, -0.009277332574129105,
- 0.11599881947040558, 0.034469228237867355, -0.05884949117898941, -0.18856824934482574,
- 0.0357176698744297, -0.020133601501584053, 0.058403871953487396, 0.11298709362745285,
- -0.10775640606880188, 0.025825276970863342, -0.038521260023117065, 0.02632266841828823,
- 0.006236064247786999, -0.08752784878015518, 0.001491175265982747,
- -0.0077507710084319115, 0.012958066537976265, 0.0317879356443882, -0.01614050753414631,
- -0.08331713825464249, 0.08106046169996262, -0.0997253879904747, 0.036989592015743256,
- 0.05085757374763489, -0.017236895859241486, 0.0026936610229313374, 0.002784124342724681,
- 0.05300777778029442, 0.04202137514948845, -0.019833048805594444, -0.019785059615969658,
- -0.008418113924562931, -0.008338545449078083, -0.07764704525470734,
- -0.11419510841369629, 0.01146668940782547, -0.08357782661914825, 0.05445914342999458,
- -0.043502502143383026, 0.06739126890897751, -0.035565100610256195,
- -0.051663048565387726, -0.03014475665986538, 0.04242067411541939, -0.007618626579642296,
- -0.13832084834575653, -0.01418083906173706, 0.0005534643423743546, 0.059778109192848206,
- 0.03693169727921486, -0.06871116906404495, -0.03891918063163757, 0.08852367103099823,
- 0.03722114488482475, -0.04665641859173775, 0.005250505171716213, -0.04550986737012863,
- 0.05788574740290642, -0.0945197343826294, -0.3437120318412781, 0.03987175598740578,
- 0.0501558855175972, 0.05213528871536255, -0.020666930824518204, -0.1498669981956482,
- 0.06629607826471329, 0.05939343944191933, 0.00023165432503446937, 0.07942351698875427,
- -0.05148964375257492, 0.059204671531915665, 0.016694944351911545, -0.053970348089933395,
- -0.02594337798655033, -0.06741481274366379, -0.039175353944301605, 0.007736656814813614,
- -0.0597577728331089, -0.05707992985844612, -0.11503195762634277, 0.04054852947592735,
- -0.015333984047174454, 0.013084360398352146, -0.008319114334881306,
- 0.059088628739118576, -0.06184379756450653, -0.049453966319561005, 0.0249159038066864,
- 0.04085425287485123, 0.000724509940482676, -0.10151445865631104, 0.010977396741509438,
- 0.06167532503604889, 0.03416481986641884, 0.08702158182859421, 0.012938984669744968,
- -0.08502433449029922, -0.13516248762607574, 0.06263735145330429, 0.02474033273756504,
- 0.18991316854953766, 0.0016427533701062202, 0.018789630383253098, 0.04380054026842117,
- 0.09202124178409576, 0.0028737110551446676, 0.023373248055577278, 0.0067617264576256275,
- 0.04553923383355141, 0.06930768489837646, -0.0015326046850532293, 0.07167084515094757,
- -0.12384655326604843, -0.01750052720308304, -0.0416378378868103, -0.012135039083659649,
- -0.01145949587225914, -0.05654089152812958, 0.1842195987701416, 0.019940059632062912,
- 0.023258542641997337, 0.00662838201969862, -0.022168399766087532, 0.08592040836811066,
- -0.10725556313991547, -0.07910516858100891, 0.01535243634134531, 0.04536771401762962,
- 0.03328871354460716, -0.047294341027736664, -0.0955456867814064, -0.0518527515232563,
- 0.0020027682185173035, 0.0088320542126894, 0.0736040472984314, -0.05136736109852791,
- 0.009937389753758907, -0.04103147238492966, 0.14329631626605988, 0.01664378121495247,
- 0.02878583036363125, 0.032764215022325516, 0.059974305331707, 0.015393600799143314,
- 0.03454811871051788, -0.07126882672309875, -0.12768246233463287, -0.047679148614406586,
- 0.11840929836034775, -0.04936312511563301, 0.09607648849487305, 0.06307851523160934,
- -0.03100486658513546, -0.04235609248280525, 0.03146442770957947, -0.0021682768128812313,
- -0.03985244035720825, -0.43071645498275757, -0.008857007138431072, 0.06213724613189697,
- 0.023638971149921417, 0.003088839817792177, 0.12613901495933533, 0.05259893834590912,
- -0.04747064411640167, -0.006072644144296646, -0.10176175087690353, 0.15259167551994324,
- -0.03378348797559738, 0.04448320344090462, -0.06014047935605049, 0.03837282955646515,
- 0.13144032657146454, -0.03831392526626587, -0.012425773777067661, 0.060866571962833405,
- -0.07237211614847183, 0.032064009457826614, 0.002889030147343874, 0.20538988709449768,
- 0.06022632494568825, 0.060355570167303085, 0.09753791242837906, -0.1158040314912796,
- -0.010438358411192894, 0.03570188209414482, -0.0029905352275818586, 0.0885835736989975,
- 0.013103698380291462, -0.059435226023197174, 0.05844376981258392, 0.13285215198993683,
- 0.1177220270037651, -0.009836806915700436, 11.735733032226562, 0.06825702637434006,
- 0.04897041246294975, -0.09939608722925186, 0.02708844281733036, -0.042306143790483475,
- 0.03378058224916458, -0.08435893058776855, -0.0011625797487795353, 0.1330292820930481,
- -0.015864351764321327, 0.007348987739533186, -0.0285134706646204, -0.04153820499777794,
- 0.009649910032749176, -0.02560657449066639, 0.00541610037907958, -0.07892343401908875,
- 0.05619710311293602, -0.07438796758651733, -0.07086235284805298, -0.02114826999604702,
- 0.09483734518289566, 0.02100813202559948, -0.08414746820926666, 0.03688139468431473,
- -0.021460600197315216, -0.04846959933638573, -0.013645894825458527, 0.02077534608542919,
- 0.012899255380034447, 0.013170215301215649, 0.08276020735502243, 0.016415521502494812,
- 0.07253015786409378, -0.0002620874438434839, 0.035265449434518814, 0.057236816734075546,
- -0.013362393714487553, 0.016591301187872887, 0.011000663973391056,
- -0.001100250636227429, 0.0017224354669451714, 0.011607672087848186,
- 0.059263575822114944, 0.0044538481160998344, 0.006722453515976667, 0.08441338688135147,
- 0.046134039759635925, 0.10716315358877182, 0.11063110828399658, -0.014292336069047451,
- 0.0904579907655716, 0.08569391816854477, -0.01817827671766281, 0.052712492644786835,
- -0.04978155717253685, -0.06429910659790039, 0.09247931092977524, 0.06188060715794563,
- -0.08015177398920059, 0.0997275784611702, 0.042297445237636566, 0.17634080350399017,
- 0.07646623998880386, 0.02595585584640503, 0.041228607296943665, 0.11989600956439972,
- -0.1416323333978653, -0.03159612789750099, 0.036308787763118744, -0.08400682359933853,
- -0.029125496745109558, 0.08937129378318787, 0.07698588073253632, -0.022843852639198303,
- 0.12352985143661499, -0.011959449388086796, -0.0019487007521092892,
- -0.030994608998298645, 0.01662525348365307, 0.03989080339670181, -0.052318643778562546,
- 0.012523259967565536, 0.04318130388855934, -0.0093346843495965, 0.07969312369823456,
- 0.021581288427114487, -0.018805645406246185, -0.10293427854776382, -0.05043962597846985,
- 0.10741590708494186, -0.03265728801488876, -0.06353586167097092, 0.00013144630065653473,
- -0.03801419958472252, 0.006636629346758127, -0.12715096771717072, 0.08078942447900772,
- 0.10406476259231567, -0.04167098551988602, -0.03882979601621628, -0.04545401409268379,
- 0.12251114100217819, -0.010466757230460644, 0.019089723005890846, -0.0807022750377655,
- -0.0192392747849226, 0.014555591158568859, 0.06505698710680008, -0.08293480426073074,
- 0.11308714747428894, 0.07231759279966354, -0.04108739644289017, 0.006766484584659338,
- 0.08459989726543427, -0.040513064712285995, -0.054895155131816864, 0.06103374436497688,
- 0.009587393142282963, -0.10573302209377289, 0.0012360543478280306,
- -0.004854410886764526, -0.003948325756937265, 0.0527304969727993, -0.03860478848218918,
- -0.05341165512800217, 0.028222378343343735, -0.1005924716591835, -0.02005903609097004,
- 0.03404056280851364, 0.000521042849868536, 0.12014695256948471, -0.028221722692251205,
- 0.016028128564357758, -0.046846598386764526, -0.024973060935735703, 0.0469476580619812,
- 0.05246589332818985, 0.042413946241140366, -0.0760551393032074, -0.04714842885732651,
- -0.04315396770834923, -0.06174040585756302, 0.0412338487803936, 0.1500222086906433,
- 0.07002594321966171, 0.055446259677410126, 0.048968203365802765, -0.056321851909160614,
- -0.03922053426504135, 0.040910754352808, 0.029829295352101326, -0.019550159573554993,
- 0.06379254907369614, -0.023266175761818886, -0.0408589169383049, 0.044553548097610474,
- -0.03582284227013588, 0.003975946921855211, 0.0021805777214467525, -0.13301175832748413,
- 0.16328205168247223, 0.10323300957679749, 0.0010519869392737746, 0.016384020447731018,
- 0.057107508182525635, 0.02556256391108036, -0.007708692457526922, 0.03976833075284958,
- 0.03115171752870083, -0.05691826343536377, -0.09947224706411362, -0.08456240594387054,
- 0.07203180342912674, 0.096763476729393, -0.005074570886790752, -0.08308572322130203,
- -0.03611287474632263, -0.06778289377689362
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 329,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Siobhan Kennedy"],
- "epoch_date_downloaded": 1662508800,
- "epoch_date_modified": 1662508800,
- "epoch_date_submitted": 1662508800,
- "flag": null,
- "report_number": 2015,
- "source_domain": "channel4.com",
- "submitters": ["Ingrid Dickinson (CSET)"],
- "title": "Potentially deadly bomb ingredients are ‘frequently bought together’ on Amazon",
- "url": "https://www.channel4.com/news/potentially-deadly-bomb-ingredients-on-amazon"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "amazon",
- "name": "Amazon"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "amazon",
- "name": "Amazon"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "amazon-users",
- "name": "Amazon users"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [2017],
- "vector": [
- -0.07573093473911285, 0.0710306316614151, 0.008468658663332462, -0.15101595222949982,
- 0.12347055226564407, -0.03330764174461365, 0.006994873750954866, 0.037431128323078156,
- 0.10774698108434677, -0.12580765783786774, 0.006438487209379673, 0.017844609916210175,
- 0.05362668260931969, -0.12031063437461853, 0.04198947548866272, -0.11977192759513855,
- -0.09760724008083344, 0.0002615590929053724, 0.020243024453520775, -0.1462051421403885,
- -0.06713136285543442, 0.019576556980609894, 0.053998418152332306, 0.1732613891363144,
- 0.006960389204323292, 0.019668756052851677, 0.1086612269282341, 0.16088451445102692,
- -0.08539504557847977, 0.03730405122041702, -0.0194841455668211, -0.05975242704153061,
- 0.15416209399700165, -0.005169173236936331, -0.06273727864027023, 0.12597064673900604,
- 0.021124746650457382, -0.07196668535470963, -0.030136017128825188,
- -0.040404438972473145, 0.0754665955901146, 0.2474367320537567, 0.011718342080712318,
- -0.044196903705596924, 0.06765014678239822, -0.03855154663324356,
- -0.0015519782900810242, 0.04755350947380066, 0.009770677424967289,
- -0.023945946246385574, -0.014143753796815872, 0.01754736341536045, -0.0735890120267868,
- 0.05333993583917618, -0.11378082633018494, 0.10094178467988968, 0.044505827128887177,
- -0.027484973892569542, 0.011918948963284492, -0.07662806659936905, -0.02338794805109501,
- -0.270575612783432, -0.030046800151467323, -0.07160548120737076, 0.09301428496837616,
- -0.07412376999855042, -0.046117495745420456, 0.002458032453432679, 0.011986193247139454,
- 0.05626185983419418, 0.0478188581764698, -0.042939357459545135, -0.04955765977501869,
- 0.04807882010936737, -0.011846152134239674, -0.06638990342617035, 0.06019306555390358,
- 0.17735673487186432, -0.0866117849946022, 0.024888567626476288, 0.10393814742565155,
- -0.1034376472234726, 0.48571789264678955, 0.007430695462971926, -0.04837430641055107,
- 0.002514574909582734, 0.0764591321349144, 0.023638999089598656, 0.04272890463471413,
- 0.016654634848237038, -0.024222586303949356, 0.05758938565850258, -0.06942940503358841,
- 0.022312963381409645, 0.1194162666797638, 0.022958846762776375, -0.03869851678609848,
- -0.05994447320699692, 0.003884565085172653, -0.0544244647026062, 0.011119200848042965,
- -0.018398607149720192, 0.19402934610843658, 0.0762038379907608, -0.05011473596096039,
- -0.015226945281028748, 0.09717433899641037, -0.04170228913426399, 0.04513552784919739,
- -0.05024614557623863, 0.06103925779461861, -0.0283712986856699, 0.12095032632350922,
- -0.012354506179690361, 0.05458147078752518, -0.00022443063789978623,
- -0.0015336456708610058, 0.04475802183151245, 0.06472484022378922, 0.06690087914466858,
- 0.005509016569703817, 0.04168086126446724, 0.07792051881551743, -0.0651419460773468,
- -0.05907874554395676, -0.032925110310316086, -0.05962825194001198,
- -0.037146877497434616, -0.025966178625822067, -0.001937443041242659,
- -0.06508256494998932, -0.17043502628803253, 0.04961461201310158, 0.022525301203131676,
- -0.016947120428085327, -0.03422706574201584, 0.002926966641098261, -0.05719919502735138,
- 0.012773163616657257, 0.011086482554674149, -0.024028457701206207, 0.06773114204406738,
- 0.051845867186784744, 0.03846093639731407, 0.15128788352012634, 0.04520494118332863,
- -0.04410233721137047, -0.040320735424757004, 0.013329035602509975,
- -0.025342334061861038, 0.13272856175899506, -0.09716629236936569, -0.06494426727294922,
- 0.03422399237751961, 0.014940327033400536, 0.6975753307342529, 0.07224973291158676,
- 0.22439172863960266, 0.0013586165150627494, -0.021190060302615166, 0.19953544437885284,
- -0.02789178490638733, 0.0779004842042923, -0.09953243285417557, -0.1169360876083374,
- 0.0005021801334805787, -0.10328584164381027, -0.020560232922434807, 0.02421342022716999,
- -0.02242598496377468, 0.11881272494792938, 0.021986596286296844, 0.1453137993812561,
- 0.011415811255574226, -0.14546607434749603, -0.03199637308716774, 0.05147933214902878,
- 0.03345978632569313, -0.124732106924057, -0.02301446534693241, 0.061677198857069016,
- 0.08980923891067505, -0.09406790137290955, 0.01010157074779272, -0.08669761568307877,
- 0.0820339024066925, -0.044694896787405014, 0.050121285021305084, -0.0012864600867033005,
- 0.07320991158485413, 0.023800134658813477, 0.09816765785217285, 0.02776098996400833,
- -0.12718559801578522, -0.05642350763082504, 0.1422671675682068, -0.010186885483562946,
- -0.07268276810646057, 0.0374765582382679, -0.08825163543224335, 0.05007210746407509,
- 0.11253014206886292, 0.1241861879825592, -0.13706454634666443, -0.07068274170160294,
- 0.013588747009634972, -0.044562261551618576, 0.04569895565509796, 0.012040100060403347,
- -0.03600030392408371, -0.11646518111228943, 0.12512075901031494, -0.01752101629972458,
- 0.09682287275791168, 0.059999000281095505, -0.04375966638326645, 0.026689665392041206,
- 0.04735581949353218, -0.03314769268035889, -0.03868219256401062, 0.09578321129083633,
- -0.0001436255406588316, -0.02520899660885334, -0.07161630690097809, 0.04590565711259842,
- 0.030493121594190598, 0.05885370075702667, -0.03373977914452553, 0.0700686052441597,
- -0.014166422188282013, -0.07019796222448349, 0.03509635850787163, 0.016981089487671852,
- 0.028829816728830338, 0.1008472740650177, -0.02867824025452137, -0.041370972990989685,
- -0.02539835311472416, -0.010193060152232647, 0.03827252611517906, -0.010047436691820621,
- 0.09997063875198364, 0.10599680989980698, 0.0685136690735817, 0.011609949171543121,
- 0.05917687714099884, 0.06812594085931778, 0.03802047669887543, 0.03862559050321579,
- 0.12004309147596359, -0.010531116276979446, -0.08979152143001556, -0.043462686240673065,
- 0.03700725734233856, 0.05983186885714531, -0.0003461879095993936, -0.055172502994537354,
- -0.019707534462213516, -0.059640418738126755, -0.07391539961099625,
- -0.08972737193107605, -0.09879624098539352, -0.0008800994837656617, 0.0456230603158474,
- -0.06338688731193542, -0.07571501284837723, -0.08934731036424637, 0.0340694896876812,
- 0.07968845218420029, -0.011240467429161072, -0.0036766023840755224,
- -0.13151614367961884, 0.01889263466000557, -0.01976284757256508, 0.05418875068426132,
- -0.003121814224869013, -0.013107795268297195, 0.007946635596454144,
- -0.08352645486593246, 0.017585119232535362, 0.008418611250817776, -0.06741572171449661,
- -0.11225930601358414, -0.022279467433691025, -0.031910885125398636,
- -0.02306104451417923, 0.04734180122613907, -0.017403259873390198,
- -0.0003390451893210411, 0.06546830385923386, 0.12213224917650223, -0.018241312354803085,
- -0.008040976710617542, 0.07636290788650513, -0.07007476687431335, 0.007712612859904766,
- 0.10235690325498581, -0.048959050327539444, 0.059066012501716614, 0.018355701118707657,
- -0.03165002539753914, -0.032393790781497955, -0.02514311857521534,
- -0.053532931953668594, 0.07117460668087006, -0.0390646792948246, -0.006606729701161385,
- -0.06491535156965256, -0.002892702119424939, 0.08235331624746323, -0.06484729796648026,
- -0.14785799384117126, -0.09207320958375931, 0.11244098842144012, -0.030140526592731476,
- 0.004529776517301798, 0.06373526901006699, -0.05535145103931427, 0.07204832881689072,
- -0.01061822846531868, 0.0367448590695858, 0.04638857766985893, 0.07618384808301926,
- -0.07073071599006653, 0.044863902032375336, 0.08296780288219452, -0.04841066151857376,
- 0.02862633392214775, 0.0482037179172039, 0.4296058118343353, -0.17500069737434387,
- 0.12035664170980453, 0.12126487493515015, 0.07282714545726776, 0.05647461861371994,
- -0.04138712212443352, 0.06903920322656631, 0.0854223221540451, 0.12709027528762817,
- 0.1205625832080841, -0.05513666942715645, 0.024292929098010063, -0.11620407551527023,
- 0.10794030874967575, 0.0029544332064688206, -0.004682703875005245, 0.023249410092830658,
- -0.03705248609185219, -0.019221894443035126, 0.07759985327720642, -0.0440237931907177,
- -0.0128234988078475, -0.03665400296449661, -0.05658699944615364, 0.06043456867337227,
- 0.005709344521164894, 0.049729932099580765, -0.016100799664855003, 0.03624380752444267,
- -0.03132430091500282, 0.005585995968431234, -0.024887962266802788, 0.024306172505021095,
- -0.0977562814950943, 0.008111199364066124, -0.030250512063503265, -0.12123511731624603,
- 0.07754584401845932, 0.03350389376282692, 0.08719422668218613, 0.03035569377243519,
- -0.04204670339822769, 0.0577077679336071, 0.026612870395183563, -0.04477417841553688,
- 0.020569080486893654, 0.0455363430082798, 0.04829580709338188, 0.13480602204799652,
- 0.1728445589542389, -0.014844309538602829, -0.03353620320558548, -0.06583822518587112,
- 0.0763358473777771, 0.10618219524621964, -0.023910675197839737, 0.012830296531319618,
- -0.0051142554730176926, -0.07416374236345291, -0.005855336785316467,
- -0.07852037996053696, -0.04826978221535683, -0.03448658809065819, -0.09040967375040054,
- 0.1149756982922554, 0.044576507061719894, -0.0357273630797863, -0.09023717045783997,
- -0.026922617107629776, -0.06442204117774963, 0.008589357137680054, 0.08941605687141418,
- -0.08632782846689224, 0.04517582431435585, -0.024327408522367477, 0.022936895489692688,
- -0.03597816452383995, -0.0738728791475296, -0.007832142524421215, -0.07588191330432892,
- 0.05825167894363403, 0.06596565991640091, 0.024010837078094482, -0.07416129112243652,
- 0.07226356863975525, -0.14061182737350464, 0.05298803001642227, 0.03597536310553551,
- -0.0071157184429466724, 0.0360044464468956, -0.05461603030562401, 0.02475154586136341,
- -0.00633337814360857, -0.07536209374666214, -0.04669398069381714, -0.044833749532699585,
- -0.0818421021103859, -0.09464896470308304, -0.04178478941321373, -0.04744768887758255,
- -0.11976306885480881, 0.03894028067588806, -0.10808291286230087, 0.025528253987431526,
- 0.008357572369277477, 0.012641075998544693, 0.017153317108750343, 0.043796464800834656,
- -0.015274480916559696, -0.17186059057712555, 0.002088119275867939, -0.04818106070160866,
- 0.0529446080327034, -0.010582727380096912, -0.07443747669458389, 0.039456434547901154,
- 0.05500636622309685, 0.00914421770721674, -0.02781279943883419, -0.01717575639486313,
- -0.03716128319501877, 0.0027710217982530594, -0.17871834337711334, -0.422419935464859,
- 0.027715887874364853, -0.004222236108034849, 0.0627998560667038, -0.00705652916803956,
- -0.09473563730716705, 0.0766788125038147, 0.04441768676042557, -0.11013414710760117,
- 0.12036142498254776, -0.04293345287442207, 0.07643809169530869, -0.025324931368231773,
- -0.03526566922664642, -0.03883900120854378, -0.08705787360668182, -0.03724950551986694,
- 0.026998594403266907, -0.022944744676351547, -0.07046988606452942, -0.1286572962999344,
- 0.06399673968553543, -0.0115886852145195, -0.012423484586179256, 0.00800393708050251,
- 0.015152978710830212, -0.04365387186408043, -0.05426314100623131, 0.03235659375786781,
- 0.06889109313488007, -0.0070115611888468266, -0.08869852870702744,
- 0.0006052179378457367, 0.08795411884784698, -0.014301268383860588, 0.1572585254907608,
- 0.030129849910736084, 0.028364047408103943, -0.1097557544708252, 0.09301262348890305,
- 0.09346889704465866, 0.18338264524936676, -0.04452984780073166, -0.01504712924361229,
- 0.014288275502622128, 0.138810396194458, 0.059380777180194855, 0.05544205754995346,
- -0.04446333274245262, -0.007303870748728514, 0.02533973567187786, -0.0335688441991806,
- 0.11048638820648193, -0.06317876279354095, -0.039612941443920135, -0.031489353626966476,
- -0.07803844660520554, -0.020885100588202477, -0.026394976302981377, 0.21917131543159485,
- 0.03424953669309616, -0.022100206464529037, 0.05551226809620857, -0.07754979282617569,
- 0.03343799710273743, -0.07513274997472763, -0.09567110985517502, -0.01696152798831463,
- -0.018549736589193344, 0.04644078016281128, -0.06846513599157333, -0.10529014468193054,
- -0.036808185279369354, -0.03108171932399273, 0.00793670117855072, 0.17002353072166443,
- -0.07223145663738251, 0.007096140645444393, -0.0029821875505149364, 0.16817742586135864,
- 0.05325544998049736, -0.005553856026381254, 0.03866147994995117, 0.107390396296978,
- 0.019286146387457848, 0.02411569468677044, -0.020959382876753807, -0.0762699618935585,
- 0.0015096946153789759, 0.14251375198364258, -0.02562004327774048, 0.1586465686559677,
- 0.051628414541482925, -0.007410308346152306, -0.07522625476121902, 0.009112050756812096,
- -0.013341912999749184, 0.016208162531256676, -0.44151735305786133, -0.03736750781536102,
- 0.09138453006744385, 0.022886386141180992, 0.010956122539937496, 0.08745992928743362,
- 0.005617284681648016, -0.0367511585354805, -0.09881775826215744, -0.15549683570861816,
- 0.11497291922569275, 0.056850090622901917, 0.036538347601890564, -0.15166053175926208,
- 0.016478778794407845, 0.0968121886253357, 0.0032881139777600765, 0.019127871841192245,
- 0.06607282906770706, -0.25058433413505554, 0.009788003750145435, 0.007018600590527058,
- 0.06831719726324081, -0.005424848757684231, 0.03734670951962471, 0.08477576076984406,
- -0.03483091667294502, 0.023130884394049644, -0.0023262961767613888, 0.01950748637318611,
- 0.04458234831690788, 0.01056615635752678, -0.01614617183804512, 0.1041477844119072,
- 0.13367144763469696, 0.13985715806484222, -0.0005616404814645648, 12.11443042755127,
- 0.08273300528526306, 0.048347294330596924, -0.15092779695987701, 0.026422224938869476,
- -0.05959823727607727, 0.039486028254032135, -0.09086910635232925, 0.04732319712638855,
- 0.13833563029766083, -0.042292192578315735, -0.025139063596725464, -0.06516754627227783,
- -0.1013806089758873, 0.0364680290222168, -0.07257958501577377, -0.09813868254423141,
- -0.04725773632526398, 0.06911617517471313, -0.07860411703586578, -0.061530932784080505,
- 0.06964164227247238, 0.07025444507598877, 0.013559794053435326, -0.08854477107524872,
- 0.025515446439385414, 0.0187764260917902, 0.011248315684497356, 0.015521944500505924,
- -0.018613986670970917, 0.03447122499346733, 0.007297268137335777, 0.08092015236616135,
- -0.0068742563016712666, 0.034969113767147064, 0.1055094450712204, 0.11480425298213959,
- 0.016806473955512047, 0.05428965389728546, 0.029705248773097992, -0.0727655440568924,
- 0.03627831116318703, 0.022282209247350693, 0.034634124487638474, 0.037020567804574966,
- 0.026940355077385902, 0.0015187973622232676, 0.14446572959423065, -0.007416899316012859,
- 0.07337398827075958, 0.08990000188350677, 0.028550870716571808, 0.1212865486741066,
- 0.030444376170635223, -0.02269344963133335, 0.030669352039694786, -0.047609031200408936,
- -0.10129160434007645, 0.11710715293884277, -0.03140408918261528, -0.07029034942388535,
- 0.1590784788131714, 0.04350343719124794, 0.13741080462932587, 0.030988920480012894,
- 0.028868263587355614, 0.04858141019940376, 0.11537697911262512, -0.15192894637584686,
- -0.07955781370401382, 0.029952628538012505, -0.07832662761211395, -0.11526410281658173,
- 0.12421424686908722, 0.13909806311130524, 0.0022302167490124702,
- -0.000014974575606174767, -0.013746891170740128, 0.056505657732486725,
- -0.005891801789402962, -0.0008699639001861215, 0.06796638667583466,
- -0.028216348960995674, 0.004287297837436199, 0.07073651999235153, 0.00268940650857985,
- 0.051329147070646286, 0.05973004177212715, -0.01336665078997612, -0.06019261106848717,
- -0.10241419076919556, 0.08874396979808807, 0.02476288005709648, -0.05652768537402153,
- 0.01008481066673994, -0.10236334800720215, 0.04009578004479408, -0.20074720680713654,
- 0.09416290372610092, 0.08657628297805786, -0.076522596180439, -0.028836149722337723,
- -0.04271882399916649, 0.10317189246416092, 0.01303028967231512, -0.019526144489645958,
- -0.04998880252242088, -0.009099999442696571, -0.00010849614773178473,
- 0.05423568934202194, -0.02925362065434456, 0.07216641306877136, 0.0769459530711174,
- -0.090792216360569, 0.017910167574882507, 0.06267346441745758, -0.03761647269129753,
- -0.037853043526411057, 0.08433005213737488, 0.07165054231882095, -0.06163543462753296,
- -0.026700565591454506, -0.05993734672665596, -0.01384574081748724, -0.03699507191777229,
- -0.0879598930478096, -0.0255670677870512, 0.04809956252574921, -0.07359649240970612,
- -0.006755690090358257, 0.11240245401859283, 0.06872017681598663, 0.14081576466560364,
- -0.010967268608510494, 0.05646522715687752, -0.0733238160610199, 0.007748568896204233,
- 0.05205850675702095, -0.01682240702211857, 0.06692862510681152, -0.03509525582194328,
- -0.067497119307518, -0.061302632093429565, -0.1329348385334015, 0.029599446803331375,
- 0.027280321344733238, 0.028838813304901123, 0.03842993080615997, 0.002395778661593795,
- -0.08243253827095032, -0.08530071377754211, 0.10912563651800156, 0.06316070258617401,
- 0.05686750262975693, 0.06463157385587692, -0.06893392652273178, -0.028461076319217682,
- 0.09384918957948685, -0.05985980108380318, 0.03858884423971176, 0.04616191238164902,
- -0.16205927729606628, 0.13298888504505157, 0.12520818412303925, 0.025332294404506683,
- 0.06866884231567383, 0.050086382776498795, -0.026859380304813385, 0.006693301722407341,
- -0.003380018984898925, 0.048812855035066605, -0.052979547530412674,
- -0.05824330076575279, -0.13940589129924774, 0.06291071325540543, 0.06982843577861786,
- 0.09111092239618301, -0.13832996785640717, -0.0022805090993642807, -0.054115746170282364
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 330,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 15,
- "similarity": 0.9968718886375427
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 14,
- "similarity": 0.9967836737632751
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 46,
- "similarity": 0.996709942817688
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Nicole Nguyen"],
- "epoch_date_downloaded": 1662508800,
- "epoch_date_modified": 1662595200,
- "epoch_date_submitted": 1662508800,
- "flag": null,
- "report_number": 2017,
- "source_domain": "buzzfeednews.com",
- "submitters": ["Ingrid Dickinson (CSET)"],
- "title": "“Amazon’s Choice” Does Not Necessarily Mean A Product Is Good",
- "url": "https://www.buzzfeednews.com/article/nicolenguyen/amazons-choice-bad-products"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "instagram",
- "name": "Instagram"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "instagram",
- "name": "Instagram"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "instagram-users",
- "name": "Instagram users"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [2023, 2022],
- "vector": [
- -0.07050074636936188, 0.05729606747627258, -0.01457954291254282, -0.08145300298929214,
- 0.06375358998775482, -0.04519333690404892, -0.00041602173587307334, 0.04831201583147049,
- 0.05148104950785637, -0.12043088674545288, 0.016767019405961037, 0.03462058678269386,
- 0.03993801027536392, -0.08225169777870178, 0.036249302327632904, -0.08526961505413055,
- -0.10366350412368774, 0.009492754936218262, -0.011584656313061714, -0.13303819298744202,
- -0.0734068751335144, -0.014700767584145069, 0.02629159204661846, 0.09947265684604645,
- -0.016298986971378326, 0.014841391704976559, 0.12689730525016785, 0.1463385820388794,
- -0.056711092591285706, 0.03657403960824013, -0.019602401182055473, -0.10023589432239532,
- 0.12394101917743683, 0.030417844653129578, 0.02636861987411976, 0.08788588643074036,
- 0.022101137787103653, -0.027860477566719055, -0.06294412165880203,
- 0.0039386870339512825, 0.021622218191623688, 0.22844834625720978, -0.036761485040187836,
- -0.049085281789302826, 0.0812496542930603, -0.009165691211819649, 0.04460804909467697,
- -0.020324496552348137, 0.00968414917588234, -0.004718077834695578,
- -0.004923273343592882, 0.00706838071346283, -0.06281527131795883, 0.017915785312652588,
- -0.09545870870351791, 0.08994385600090027, 0.024994805455207825, -0.053120918571949005,
- 0.007306039333343506, -0.057589925825595856, -0.0519578754901886, -0.220982164144516,
- -0.05865991860628128, -0.06737276911735535, 0.06874699890613556, -0.07987123727798462,
- -0.036599718034267426, 0.0265228059142828, 0.01972861774265766, 0.05255290865898132,
- 0.029964687302708626, -0.05497696250677109, 0.004704651888459921, -0.02070942521095276,
- 0.017797939479351044, -0.043750591576099396, 0.03293371573090553, 0.21812289953231812,
- -0.09079671651124954, 0.015853742137551308, 0.09431762248277664, -0.07302369177341461,
- 0.3793873190879822, 0.004384452942758799, -0.04497268423438072, 0.03407702594995499,
- 0.07386167347431183, -0.0029694917611777782, -0.012325795367360115,
- 0.045370012521743774, -0.023765426129102707, 0.05624961107969284, -0.03820924833416939,
- 0.030070781707763672, 0.04646926373243332, 0.03339596092700958, -0.003207900794222951,
- 0.015878532081842422, 0.022451819851994514, -0.07526939362287521, 0.009911889210343361,
- -0.025800827890634537, 0.11647824943065643, 0.04038261994719505, -0.04311833903193474,
- 0.04560206085443497, 0.07123303413391113, -0.053006045520305634, 0.014871940948069096,
- -0.028616122901439667, 0.014614412561058998, -0.018816189840435982, 0.11951089650392532,
- -0.022194743156433105, 0.028751585632562637, -0.03217511251568794,
- -0.00024245161330327392, 0.037375424057245255, 0.08453678339719772, 0.07961445301771164,
- 0.021147361025214195, 0.06405547261238098, 0.15279436111450195, -0.05603514611721039,
- -0.012538937851786613, -0.009462052956223488, -0.09231559932231903,
- 0.0007296977564692497, -0.053347114473581314, 0.04840599745512009,
- -0.030761171132326126, -0.18563053011894226, 0.021385885775089264, 0.07649579644203186,
- -0.019271910190582275, -0.04419288784265518, 0.0014849016442894936, -0.0511743426322937,
- 0.055264126509428024, -0.025235529989004135, -0.025632575154304504,
- 0.057553425431251526, 0.02231566794216633, 0.02316208928823471, 0.05288524553179741,
- 0.024100732058286667, -0.03647788614034653, -0.07487029582262039, -0.013504471629858017,
- -0.02586987242102623, 0.08400192856788635, -0.1177595853805542, -0.039791494607925415,
- -0.009635521098971367, 0.005462882574647665, 0.6294050216674805, 0.07034417986869812,
- 0.15083226561546326, -0.010969972237944603, -0.028112070634961128, 0.17086678743362427,
- -0.006252874620258808, 0.08085186034440994, -0.052489377558231354, -0.03880220651626587,
- 0.025440145283937454, -0.04774312674999237, -0.05347425490617752, 0.005852082744240761,
- 0.012333661317825317, 0.06643171608448029, 0.029854077845811844, 0.12112698704004288,
- 0.066532664000988, -0.08685223758220673, -0.0323619470000267, 0.028692591935396194,
- -0.016175810247659683, -0.12794312834739685, -0.03138316795229912, 0.050952330231666565,
- 0.08707660436630249, -0.054047293961048126, -0.00018915359396487474,
- -0.031564854085445404, 0.0667065978050232, 0.022505488246679306, 0.048238858580589294,
- 0.009127936325967312, 0.03329770639538765, 0.03394137695431709, 0.04839670658111572,
- -0.023065775632858276, -0.06331750750541687, -0.05144740641117096, 0.09319180250167847,
- 0.009798754006624222, -0.03838961571455002, 0.07268384099006653, -0.08860424160957336,
- 0.059171516448259354, 0.020619312301278114, 0.20305025577545166, -0.13039952516555786,
- 0.01734190806746483, 0.01593179814517498, -0.05201173573732376, 0.0358375646173954,
- -0.04160162806510925, -0.038764625787734985, -0.09764302521944046, 0.07692733407020569,
- 0.020767390727996826, 0.03343053162097931, -0.00391542399302125, -0.04253128543496132,
- -0.00982910767197609, -0.05227416008710861, 0.013574685901403427, -0.11085787415504456,
- 0.08928275108337402, 0.024507328867912292, -0.0869280993938446, -0.050140976905822754,
- 0.04171381890773773, 0.06643679738044739, 0.033446233719587326, 0.006394460331648588,
- 0.020624583587050438, 0.0012049535289406776, 0.019999435171484947, 0.07068467885255814,
- -0.024818845093250275, 0.03917207941412926, 0.06166844815015793, -0.1268385946750641,
- -0.04358792304992676, -0.044964008033275604, -0.01355105172842741, 0.022063693031668663,
- -0.022115886211395264, 0.05910985916852951, 0.0864136815071106, 0.026565928012132645,
- 0.0037059071473777294, 0.033268023282289505, 0.053787171840667725, 0.020613867789506912,
- 0.04285765811800957, 0.10220681130886078, -0.039837855845689774, -0.034711919724941254,
- -0.055340588092803955, -0.000615036697126925, 0.08939656615257263, 0.018500182777643204,
- -0.0717831403017044, -0.009724126197397709, -0.024828467518091202,
- -0.046720560640096664, -0.07502813637256622, -0.049458637833595276, 0.04191398620605469,
- 0.020765619352459908, -0.0695573017001152, -0.10045333206653595, -0.04870685935020447,
- 0.0017329289112240076, 0.08079785853624344, -0.034870781004428864, -0.02987011894583702,
- -0.10535122454166412, 0.004416452720761299, -0.03986092656850815, 0.02423279359936714,
- -0.02540953829884529, 0.039527375251054764, -0.07847441732883453, -0.0824354812502861,
- -0.03478366136550903, 0.0064619155600667, -0.012605637311935425, -0.008026350289583206,
- -0.06564128398895264, -0.06530507653951645, -0.01852569915354252, 0.014960864558815956,
- -0.03534416854381561, 0.05513705313205719, 0.026683028787374496, 0.028894323855638504,
- -0.013805393129587173, 0.025981858372688293, 0.06366362422704697, -0.03997206687927246,
- -0.011050993576645851, 0.07031698524951935, 0.017358101904392242, 0.01704907976090908,
- -0.019235899671912193, -0.09446689486503601, -0.06505830585956573,
- -0.018254058435559273, -0.019186656922101974, 0.0693933516740799, -0.025783317163586617,
- 0.005708514712750912, -0.029688548296689987, 0.0013652555644512177, 0.06579515337944031,
- -0.07048783451318741, -0.07225671410560608, -0.09480372816324234, 0.11669893562793732,
- -0.05060682073235512, 0.024882622063159943, 0.013850032351911068, -0.051013849675655365,
- 0.05674060061573982, -0.01782127469778061, 0.0028176605701446533, 0.017786040902137756,
- 0.051732953637838364, -0.006449466105550528, 0.03651302680373192, 0.04486129432916641,
- -0.0329909473657608, 0.034455835819244385, 0.09210804104804993, 0.44562840461730957,
- -0.11793074011802673, 0.055521782487630844, 0.05329185724258423, -0.029645901173353195,
- 0.05602085590362549, -0.04156508669257164, 0.09045030176639557, 0.07943280786275864,
- 0.12419773638248444, 0.1330638825893402, -0.05269736796617508, 0.016853129491209984,
- -0.05244602635502815, 0.09806734323501587, 0.022301780059933662, 0.029367458075284958,
- 0.009864996187388897, -0.017335757613182068, -0.004876718856394291,
- 0.027116689831018448, -0.049207739531993866, 0.005110483150929213, 0.003856479190289974,
- -0.08179295063018799, 0.03575124591588974, 0.0024678483605384827, 0.05724363401532173,
- -0.04296918213367462, 0.04892725497484207, 0.018520984798669815, 0.011584757827222347,
- 0.0029948712326586246, 0.06639039516448975, -0.05167510360479355, 0.03571748360991478,
- -0.06330209970474243, -0.11710672080516815, 0.057583488523960114, 0.002787352539598942,
- 0.08128311485052109, 0.041684865951538086, 0.027561895549297333, 0.03869643434882164,
- -0.03346956521272659, -0.07074443250894547, -0.0034286584705114365,
- 0.018957126885652542, 0.022115662693977356, 0.06590454280376434, 0.13436931371688843,
- 0.002661554142832756, -0.01531671080738306, -0.05656503885984421, 0.0591692179441452,
- 0.1369483768939972, -0.007752265781164169, 0.0450894720852375, 0.01575310155749321,
- 0.023304764181375504, 0.01689697429537773, -0.02566930651664734, -0.0901375487446785,
- -0.006373017560690641, -0.04355507344007492, 0.07643601298332214, 0.04149346053600311,
- -0.05035201832652092, -0.15664274990558624, -0.09865885227918625, -0.027649596333503723,
- 0.055441100150346756, 0.12448283284902573, -0.0864572823047638, -0.020805932581424713,
- 0.02205197513103485, 0.016830872744321823, 0.030033186078071594, -0.11480896174907684,
- -0.05118604749441147, -0.03985314443707466, 0.03100595995783806, 0.034628789871931076,
- 0.062153879553079605, -0.07937610149383545, 0.050198525190353394, -0.1136588379740715,
- 0.025034796446561813, 0.017105022445321083, -0.01761549338698387, -0.036592964082956314,
- -0.029912173748016357, 0.027694931253790855, 0.020394213497638702, -0.03131188079714775,
- -0.014188189059495926, -0.03413568064570427, 0.00019293464720249176,
- -0.05492592230439186, -0.08312679827213287, -0.05568112060427666, -0.08884917944669724,
- 0.05327581241726875, -0.07920193672180176, 0.02111857756972313, -0.047060493379831314,
- -0.02456444874405861, -0.0013147094286978245, 0.05830668658018112, 0.012905892916023731,
- -0.1471540629863739, -0.04379257187247276, 0.016097581014037132, 0.04167668893933296,
- -0.034072764217853546, -0.08106505125761032, -0.020055990666151047, 0.06343969702720642,
- 0.012130463495850563, -0.0675710141658783, 0.023758314549922943, -0.07928484678268433,
- 0.08863680809736252, -0.06515869498252869, -0.42683660984039307, 0.06112769618630409,
- 0.04147152602672577, 0.07589001208543777, -0.0044163865968585014, -0.06479296833276749,
- 0.04574890807271004, 0.03495096415281296, -0.0012966878712177277, 0.059591539204120636,
- -0.026992663741111755, 0.017998289316892624, -0.02394549362361431, -0.0410151444375515,
- 0.044070564210414886, -0.10802163183689117, -0.01821530982851982, 0.02166459709405899,
- 0.022228630259633064, -0.06807231903076172, -0.07673247903585434, 0.027635451406240463,
- -0.013328290544450283, -0.02007117308676243, -0.015819605439901352, 0.03818656876683235,
- -0.04264522343873978, -0.08165600895881653, 0.053826846182346344, 0.05851908400654793,
- 0.01729583367705345, -0.08729659020900726, -0.00890447199344635, 0.04496649652719498,
- 0.03460828959941864, 0.11265823990106583, 0.013002803549170494, 0.01882542297244072,
- -0.08491965383291245, 0.0607188455760479, 0.061542827636003494, 0.18741057813167572,
- 0.0157000795006752, 0.051550742238759995, 0.029885008931159973, 0.14633610844612122,
- 0.038207389414310455, 0.03509098291397095, -0.036447662860155106,
- -0.00007913261651992798, -0.05816958099603653, -0.006799372378736734,
- 0.07267783582210541, -0.10108626633882523, -0.016192864626646042, -0.03619356453418732,
- -0.042408816516399384, -0.03454969450831413, 0.021048933267593384, 0.21399687230587006,
- 0.02197295054793358, 0.019457967951893806, 0.012634839862585068, -0.009869279339909554,
- 0.025352507829666138, -0.14099937677383423, -0.059946902096271515, -0.03209463506937027,
- 0.010467625223100185, 0.02015654370188713, -0.011059903539717197, -0.10225987434387207,
- 0.009844277985394001, -0.04816892743110657, 0.002693354617804289, 0.09756872057914734,
- -0.05137494206428528, -0.009663351811468601, -0.039764683693647385, 0.1479407548904419,
- 0.03245537728071213, 0.027144266292452812, 0.047095298767089844, 0.11268988251686096,
- -0.0035114125348627567, -0.006819549016654491, -0.0365091934800148, -0.0907910168170929,
- -0.012672482058405876, 0.15740066766738892, -0.026311706751585007, 0.14468523859977722,
- 0.0016606885474175215, 0.009917737916111946, -0.023964963853359222,
- 0.025290653109550476, -0.005348604172468185, -0.0018954216502606869,
- -0.47269800305366516, 0.007013995200395584, 0.08337530493736267, -0.015521857887506485,
- 0.02883562259376049, 0.05743199214339256, 0.004944908432662487, -0.03793457895517349,
- -0.04944608360528946, -0.1062207818031311, 0.1330493986606598, -0.005178485531359911,
- 0.09730197489261627, -0.11214657127857208, 0.05033831298351288, 0.09208742529153824,
- -0.038925908505916595, -0.022252170369029045, -0.005106910597532988,
- -0.2759298086166382, 0.004357304889708757, -0.037830352783203125, 0.1618466079235077,
- 0.005228621885180473, 0.03309669345617294, 0.09533758461475372, -0.026592373847961426,
- -0.0031575681641697884, 0.02218722365796566, 0.01870650239288807, 0.053635597229003906,
- -0.03921382501721382, -0.028821300715208054, 0.10804229974746704, 0.08884578943252563,
- 0.11295528709888458, -0.023079751059412956, 11.89961051940918, 0.05823691189289093,
- 0.06887179613113403, -0.09911897778511047, 0.02516457624733448, -0.0682067722082138,
- 0.004343799315392971, -0.10430482029914856, 0.0678878054022789, 0.10390956699848175,
- -0.007050022948533297, -0.06148426607251167, -0.041657909750938416, -0.0511336512863636,
- 0.03303927928209305, -0.03294287249445915, -0.038836222141981125, -0.04903464764356613,
- 0.07927475869655609, -0.06670895963907242, -0.06484386324882507, 0.07797455787658691,
- 0.08880597352981567, 0.0718504786491394, -0.08531138300895691, 0.06558632850646973,
- 0.0030821491964161396, -0.004869694821536541, 0.0036274236626923084,
- 0.04589217156171799, 0.031726107001304626, 0.018382620066404343, 0.12707863748073578,
- 0.05579707399010658, 0.048453912138938904, 0.07315008342266083, -0.0005367882549762726,
- 0.012975294142961502, -0.0032611405476927757, 0.037012048065662384,
- -0.04779057949781418, 0.01576610654592514, -0.03630320727825165, 0.01893896795809269,
- 0.03330792486667633, 0.04919116944074631, 0.03280746191740036, 0.15879955887794495,
- -0.019625119864940643, 0.07406604290008545, 0.09974607080221176, 0.01890905573964119,
- 0.08327333629131317, 0.08073081076145172, 0.003464651294052601, 0.024729784578084946,
- 0.00964987464249134, -0.09955799579620361, 0.08503514528274536, 0.027385564520955086,
- -0.06710103899240494, 0.11477963626384735, 0.020531056448817253, 0.1125773936510086,
- 0.04761560633778572, 0.031948816031217575, 0.036214154213666916, 0.11898253858089447,
- -0.11966250836849213, -0.0887182280421257, 0.06354596465826035, -0.10207071155309677,
- -0.04233396425843239, 0.08475682139396667, 0.10205643624067307, -0.010396154597401619,
- 0.07601298391819, -0.023757383227348328, 0.032331954687833786, -0.0665837824344635,
- 0.01655971258878708, 0.03126266226172447, -0.0441720075905323, -0.010715150274336338,
- 0.02878476120531559, 0.006933455355465412, 0.04109031334519386, 0.14328572154045105,
- -0.02126181870698929, -0.07906033098697662, -0.047148242592811584, 0.06983237713575363,
- -0.002746143378317356, -0.013078952208161354, 0.019295811653137207,
- -0.04431397095322609, -0.0036788382567465305, -0.16731925308704376, 0.1367698460817337,
- 0.10468863695859909, -0.055323414504528046, -0.08224514126777649, -0.018819160759449005,
- 0.11675052344799042, 0.016738759353756905, 0.009489753283560276, -0.10254202783107758,
- 0.01621788926422596, 0.04308454692363739, 0.04563116282224655, -0.04630875959992409,
- 0.05379302427172661, 0.03180195391178131, -0.04935172200202942, 0.07178792357444763,
- 0.07741139084100723, -0.05043140798807144, -0.011971056461334229, 0.05040639638900757,
- 0.05594930425286293, -0.10985661298036575, -0.04585476964712143, -0.055741213262081146,
- -0.05981605499982834, 0.004082940984517336, -0.013381650671362877, 0.011156567372381687,
- 0.005609126295894384, -0.05599861964583397, -0.06593772023916245, 0.04278339818120003,
- 0.06814438849687576, 0.1532512903213501, 0.04479106888175011, 0.051585860550403595,
- -0.009975705295801163, -0.008417543023824692, 0.06381145864725113, 0.0704912543296814,
- 0.08026771992444992, -0.05650356411933899, 0.027971932664513588, -0.02932928316295147,
- -0.09875035285949707, 0.03855041414499283, 0.11078453063964844, 0.01443945150822401,
- -0.007854042574763298, 0.08029982447624207, -0.07343165576457977, -0.027041204273700714,
- 0.07231611013412476, 0.02092013880610466, 0.004404417239129543, 0.026882585138082504,
- -0.009834801778197289, -0.02375597320497036, 0.11517265439033508, 0.0016566566191613674,
- -0.0039495122618973255, 0.024783480912446976, -0.1169358342885971, 0.041254930198192596,
- 0.06025488302111626, 0.0322759747505188, 0.04009861871600151, 0.056473508477211,
- 0.006756485905498266, 0.06327161192893982, -0.011459922417998314, 0.06801805645227432,
- -0.05945548415184021, -0.061440564692020416, -0.08966639637947083, 0.007674543187022209,
- 0.07474276423454285, 0.0675690695643425, -0.14040231704711914, 0.0068360003642737865,
- -0.051663096994161606
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 331,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 213,
- "similarity": 0.9975953102111816
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 103,
- "similarity": 0.9975607395172119
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 13,
- "similarity": 0.9974992871284485
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Tech Transparency Project"],
- "epoch_date_downloaded": 1662595200,
- "epoch_date_modified": 1663027200,
- "epoch_date_submitted": 1662595200,
- "flag": null,
- "report_number": 2023,
- "source_domain": "techtransparencyproject.org",
- "submitters": ["Khoa Lam"],
- "title": "Instagram’s Hashtag Blocking Favors Trump, Hurts Biden",
- "url": "https://www.techtransparencyproject.org/articles/instagrams-hashtag-blocking-favors-trump-hurts-biden"
- },
- {
- "__typename": "Report",
- "authors": ["Ryan Mac"],
- "epoch_date_downloaded": 1662595200,
- "epoch_date_modified": 1663027200,
- "epoch_date_submitted": 1662595200,
- "flag": null,
- "report_number": 2022,
- "source_domain": "buzzfeednews.com",
- "submitters": ["Ingrid Dickinson (CSET)"],
- "title": "A “Bug” In Instagram's Hashtags Has Been Favoring Donald Trump",
- "url": "https://www.buzzfeednews.com/article/ryanmac/instagram-related-hashtags-favoring-trump-over-biden"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "google",
- "name": "Google"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "google",
- "name": "Google"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "google-users",
- "name": "Google users"
- },
- {
- "__typename": "Entity",
- "entity_id": "black-women",
- "name": "Black women"
- },
- {
- "__typename": "Entity",
- "entity_id": "black-people",
- "name": "Black People"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [2044, 2041, 2040, 2033],
- "vector": [
- -0.054865993559360504, 0.054866570979356766, 0.010725826025009155, -0.13130925595760345,
- 0.07976299524307251, -0.07770688086748123, 0.011172660626471043, 0.0314217172563076,
- 0.03918277472257614, -0.12629830837249756, -0.02380000427365303, 0.056351520121097565,
- 0.03945920243859291, -0.041720062494277954, 0.06396978348493576, -0.042494915425777435,
- -0.11362706869840622, 0.001785092637874186, 0.03225317597389221, -0.1134607195854187,
- -0.07499530911445618, 0.019792668521404266, -0.012519938871264458, 0.12908780574798584,
- -0.01813807524740696, -0.001107759540900588, 0.09666363894939423, 0.1006569117307663,
- -0.04472687467932701, 0.03563976287841797, -0.022428100928664207, -0.07782447338104248,
- 0.09821063280105591, -0.008382027968764305, -0.008219022303819656, 0.0596809908747673,
- 0.04879895970225334, -0.042813848704099655, -0.042173076421022415, 0.0159014780074358,
- 0.05798139050602913, 0.1837107241153717, -0.02298358455300331, 0.013476597145199776,
- 0.0370522178709507, -0.000682012818288058, 0.042021993547677994, 0.05421936511993408,
- 0.009342467412352562, 0.009474222548305988, 0.002496887231245637, -0.009880242869257927,
- -0.0647737979888916, 0.022254476323723793, -0.10702235251665115, 0.05922834575176239,
- 0.04188210889697075, -0.0038660960271954536, 0.02694324404001236, -0.06584882736206055,
- 0.007503079250454903, -0.17667847871780396, -0.06854646652936935, -0.0598481260240078,
- 0.0799207091331482, -0.06744082272052765, -0.023812878876924515, 0.01402901392430067,
- 0.027772173285484314, 0.05583574250340462, 0.05617043375968933, -0.07449802756309509,
- -0.02918459102511406, -0.004942611791193485, -0.039442822337150574,
- -0.028770241886377335, 0.012159328907728195, 0.22641126811504364, -0.10925228893756866,
- -0.0000542079251317773, 0.08566214889287949, -0.08722178637981415, 0.35334092378616333,
- 0.024622099474072456, -0.030234912410378456, -0.00035591190680861473,
- 0.08194804191589355, 0.009542814455926418, 0.051655154675245285, 0.03098481521010399,
- 0.039837148040533066, 0.08151494711637497, -0.046860478818416595, 0.015369756147265434,
- 0.052826713770627975, 0.02708791196346283, -0.0234697088599205, -0.034062765538692474,
- -0.01344385277479887, -0.08184918761253357, 0.0005185557529330254,
- -0.036957889795303345, 0.13326090574264526, 0.058523088693618774, -0.039567966014146805,
- 0.01900097355246544, 0.09774413704872131, -0.03547495976090431, 0.06533339619636536,
- -0.04628727585077286, 0.044751450419425964, 0.030328137800097466, 0.07922766357660294,
- -0.009911434724926949, 0.03311856836080551, -0.020372971892356873,
- -0.013303049840033054, 0.019196124747395515, 0.08122535794973373, 0.07092051208019257,
- 0.020610207691788673, 0.07449042797088623, 0.10988736152648926, -0.05223237723112106,
- -0.03297973796725273, -0.018857765942811966, -0.04474356397986412, 0.016786012798547745,
- 0.0007790079107508063, 0.02609073743224144, -0.038615401834249496, -0.20579490065574646,
- 0.010603654198348522, 0.0462690144777298, -0.0447506457567215, -0.013834726996719837,
- 0.01356993243098259, -0.060221392661333084, 0.0033166413195431232, -0.02933540567755699,
- -0.02380981855094433, 0.07136134058237076, 0.022629817947745323, 0.03944777324795723,
- 0.11441084742546082, 0.06113988533616066, -0.040516942739486694, -0.08106561005115509,
- -0.04473351687192917, -0.07148559391498566, 0.09341643750667572, -0.10750793665647507,
- -0.033942095935344696, -0.01040683127939701, 0.009200982749462128, 0.6212272644042969,
- 0.11111404001712799, 0.1606348752975464, -0.00678914925083518, -0.014577046036720276,
- 0.15859617292881012, -0.034020356833934784, 0.06397424638271332, -0.044371020048856735,
- -0.03410100191831589, 0.027580633759498596, -0.08349507302045822, -0.046566322445869446,
- 0.03757433965802193, 0.03697515279054642, 0.08782713860273361, 0.021691206842660904,
- 0.11392112076282501, 0.024476729333400726, -0.10102657973766327, -0.05132201686501503,
- 0.029124539345502853, 0.02254873886704445, -0.10422588139772415, -0.017639635130763054,
- 0.0488579161465168, 0.08099038898944855, -0.056420810520648956, 0.01163472980260849,
- -0.06054225564002991, 0.07773566991090775, -0.014851300045847893, 0.050834063440561295,
- -0.012186253443360329, 0.03445993736386299, 0.032125167548656464, 0.025034215301275253,
- -0.005377581343054771, -0.05733654275536537, -0.04636591300368309, 0.1093129888176918,
- -0.006007102318108082, -0.03116442821919918, 0.04234343022108078, -0.08349310606718063,
- 0.036800168454647064, 0.02634950540959835, 0.11781120300292969, -0.15558721125125885,
- 0.033911362290382385, -0.024506447836756706, 0.02097919210791588, 0.04666665568947792,
- -0.004435512237250805, -0.05980793759226799, -0.0744624063372612, 0.12118315696716309,
- 0.03748030960559845, 0.0530586913228035, 0.011317666620016098, -0.03794525936245918,
- 0.026039468124508858, 0.025070276111364365, 0.00020521529950201511,
- -0.06909748911857605, 0.07262084633111954, 0.03837867081165314, -0.03898442164063454,
- -0.03335871919989586, 0.06956318765878677, 0.021118324249982834, 0.04232452064752579,
- -0.007264810148626566, 0.040867533534765244, -0.00016747834160923958,
- -0.045221198350191116, 0.05568854510784149, -0.01460342202335596, 0.06291836500167847,
- 0.05970385670661926, -0.08972788602113724, -0.04871608316898346, -0.019447028636932373,
- -0.03160467371344566, 0.03220294788479805, -0.062397122383117676, 0.07836981862783432,
- 0.04748627543449402, 0.0594148114323616, 0.006850339472293854, 0.034923721104860306,
- 0.05887264385819435, 0.057909224182367325, 0.01257401891052723, 0.06602788716554642,
- -0.02160481922328472, -0.02695132978260517, -0.014067195355892181,
- -0.0014039268717169762, 0.058036260306835175, 0.03347271308302879,
- -0.060498759150505066, -0.03288019821047783, -0.016309618949890137,
- -0.02462630905210972, -0.0698523223400116, -0.02282584458589554, 0.01621219329535961,
- 0.002415214665234089, -0.07093553245067596, -0.09182503819465637, -0.08381399512290955,
- -0.002544394228607416, 0.03511340916156769, -0.04453922063112259, -0.007946775294840336,
- -0.11327721923589706, 0.008230880834162235, -0.028955738991498947, 0.06351090222597122,
- -0.025169335305690765, 0.003414448816329241, 0.011127366684377193, -0.07556741684675217,
- 0.024748431518673897, 0.02631935104727745, -0.05951175466179848, -0.053016744554042816,
- -0.08235520869493484, -0.04542764648795128, -0.0048188017681241035,
- -0.01882658153772354, -0.006663520820438862, 0.02614590711891651, 0.07046608626842499,
- 0.07695029675960541, -0.03125368803739548, -0.015250517055392265, 0.03740585967898369,
- -0.04639352858066559, -0.013094952329993248, 0.0714370608329773, -0.014335153624415398,
- 0.03962332010269165, -0.018712762743234634, -0.054952602833509445, -0.0518060103058815,
- -0.0519159659743309, -0.037081606686115265, 0.04545383155345917, -0.01716790720820427,
- -0.03239918127655983, -0.019796887412667274, -0.013139981776475906, 0.05650224909186363,
- -0.0524706169962883, -0.07217113673686981, -0.08930444717407227, 0.12169504165649414,
- -0.028663428500294685, 0.011430878192186356, 0.020195085555315018, -0.03297941014170647,
- 0.058672770857810974, 0.006355720572173595, -0.011025046929717064, 0.0677846148610115,
- 0.057998985052108765, 0.013146351091563702, 0.005634228233247995, 0.05570412427186966,
- -0.01205415092408657, 0.02198995091021061, 0.06856796145439148, 0.44810357689857483,
- -0.2600575089454651, 0.08083638548851013, 0.09949242323637009, 0.0015724294353276491,
- 0.07194571197032928, -0.006051213480532169, 0.06606665253639221, 0.08323713392019272,
- 0.11541364341974258, 0.11929257214069366, -0.05205075442790985, 0.01095607876777649,
- -0.06753276288509369, 0.06388621032238007, 0.04840277135372162, 0.007451644167304039,
- -0.003371197497472167, -0.05758451670408249, -0.03489566221833229, 0.047606512904167175,
- -0.05080172419548035, 0.007391918450593948, -0.017406849190592766, -0.06366851925849915,
- 0.02577178180217743, 0.03206387534737587, 0.0488293282687664, -0.0506003201007843,
- 0.058035727590322495, 0.009849677793681622, 0.03652575984597206, 0.03702691197395325,
- 0.013687793165445328, -0.05637267604470253, 0.05552831292152405, -0.024586305022239685,
- -0.07540570199489594, 0.06866524368524551, 0.013136789202690125, 0.024457119405269623,
- 0.0434565432369709, -0.020740298554301262, 0.016727840527892113, -0.03610627353191376,
- -0.08006372302770615, -0.005114834755659103, 0.04238363355398178, 0.03363830968737602,
- 0.08132491260766983, 0.1414341777563095, -0.029781170189380646, -0.009179120883345604,
- -0.08120264858007431, 0.05403277277946472, 0.12461382895708084, -0.01561530027538538,
- 0.019653480499982834, -0.002108683343976736, -0.005165543872863054,
- 0.023561624810099602, -0.03060746006667614, -0.06483238190412521, -0.051869578659534454,
- -0.07416006922721863, 0.08836966753005981, 0.04193390905857086, -0.02629578486084938,
- -0.1464909017086029, -0.015771478414535522, -0.048355959355831146, 0.04406162351369858,
- 0.05984408035874367, -0.06509986519813538, 0.01471385546028614, -0.02306745946407318,
- 0.02885190024971962, 0.026305757462978363, -0.0773727297782898, 0.003380357753485441,
- -0.060481950640678406, 0.06731604784727097, 0.08771302551031113, 0.05675309896469116,
- -0.03629463165998459, 0.02760450914502144, -0.10185866057872772, 0.01855524070560932,
- -0.01001740526407957, -0.013762346468865871, 0.01394208800047636, -0.009578049182891846,
- 0.03721369057893753, 0.0009395441738888621, -0.06300479918718338, 0.022253751754760742,
- -0.01767570897936821, -0.013134010136127472, -0.06525833159685135, -0.0657731369137764,
- -0.017956698313355446, -0.06990545988082886, 0.07341934740543365, -0.07614771276712418,
- -0.01002553105354309, -0.02626880817115307, 0.01583019644021988, 0.005448279436677694,
- 0.055851783603429794, -0.02667032927274704, -0.11817863583564758, -0.008408267982304096,
- -0.022348593920469284, 0.06290522962808609, -0.06721272319555283, -0.050988245755434036,
- -0.0034984431695193052, 0.07737216353416443, 0.015681114047765732, -0.06233061105012894,
- -0.009134658612310886, -0.03520854935050011, 0.05438440665602684, -0.10987050831317902,
- -0.4497535824775696, 0.044984370470047, 0.023608162999153137, 0.047949180006980896,
- 0.001043072436004877, -0.05356694012880325, 0.03431033343076706, -0.013627948239445686,
- -0.034263238310813904, 0.05245909094810486, -0.02703779563307762, 0.023722365498542786,
- -0.030676644295454025, -0.0645781084895134, 0.025693103671073914, -0.06718427687883377,
- -0.06211685389280319, 0.03507431223988533, -0.027824990451335907, -0.05365776643157005,
- -0.06836391240358353, 0.02901112288236618, 0.013752338476479053, 0.021775919944047928,
- -0.013174953870475292, 0.0024221197236329317, -0.07020294666290283, -0.065309077501297,
- 0.05083594471216202, 0.07333271205425262, 0.032263319939374924, -0.07346515357494354,
- 0.006263246759772301, 0.061823517084121704, 0.019902730360627174, 0.09220019727945328,
- 0.020973455160856247, -0.02788267657160759, -0.06260351836681366, 0.03889429569244385,
- 0.08298753947019577, 0.18584370613098145, -0.01700272411108017, 0.05829693749547005,
- -0.0015232742298394442, 0.1126110628247261, 0.026905959472060204, 0.020657097920775414,
- -0.04370327666401863, -0.007200964726507664, -0.00810498371720314, -0.01992146298289299,
- 0.07400926947593689, -0.05047478526830673, -0.04232143610715866, -0.013066914863884449,
- -0.007943485863506794, -0.03784555196762085, -0.007946962490677834, 0.20399810373783112,
- 0.03436466306447983, 0.009263262152671814, 0.011081065982580185, -0.032972946763038635,
- 0.0076516373082995415, -0.08684857189655304, -0.02534179389476776, -0.03540678322315216,
- -0.02436676435172558, -0.00800384022295475, -0.03003186546266079, -0.04809097945690155,
- -0.02463741973042488, -0.016453705728054047, -0.006790434941649437, 0.11666180938482285,
- -0.04935649782419205, 0.01164818275719881, -0.0054932283237576485, 0.13688315451145172,
- 0.02743673510849476, 0.038269609212875366, 0.0731177031993866, 0.09747810661792755,
- 0.010212069377303123, 0.031044580042362213, -0.0006439904682338238,
- -0.06793288886547089, -0.0228224266320467, 0.1414240002632141, -0.040352702140808105,
- 0.11108636111021042, 0.029260195791721344, -0.03694778308272362, -0.029028791934251785,
- 0.023424796760082245, 0.0008885213756002486, 0.0070333280600607395, -0.509833812713623,
- -0.04618596285581589, 0.07454247027635574, -0.013021943159401417, 0.024680711328983307,
- 0.05223972722887993, -0.0001794848358258605, -0.04718425124883652,
- -0.019719308242201805, -0.1088072657585144, 0.11264262348413467, 0.020124584436416626,
- 0.07666512578725815, -0.09163288027048111, 0.021961910650134087, 0.10386187583208084,
- -0.013127617537975311, 0.015990661457180977, 0.025414012372493744, -0.23149478435516357,
- 0.010597674176096916, -0.014124657027423382, 0.13493095338344574, 0.023555422201752663,
- 0.041328638792037964, 0.08936836570501328, -0.06597822904586792, 0.023223774507641792,
- 0.01952178403735161, 0.010910116136074066, 0.050394557416439056, -0.039293158799409866,
- -0.016987254843115807, 0.06751703470945358, 0.08282306790351868, 0.0887545645236969,
- -0.0028614713810384274, 12.016620635986328, 0.05495314672589302, 0.07179294526576996,
- -0.07748471200466156, 0.011657703667879105, -0.03340102359652519, 0.019421925768256187,
- -0.1376870721578598, 0.06297706812620163, 0.12710174918174744, -0.012929036282002926,
- -0.04764231666922569, -0.06097770109772682, -0.08680594712495804, 0.01718253828585148,
- -0.05911824479699135, -0.07074578106403351, -0.03823338449001312, 0.04635516181588173,
- -0.06692701578140259, -0.02819986455142498, 0.09800033271312714, 0.07484427094459534,
- 0.003849263535812497, -0.06485673785209656, 0.023437142372131348,
- -0.0028714046347886324, 0.009241374209523201, 0.024835199117660522, 0.03286725655198097,
- 0.021010784432291985, 0.0308647770434618, 0.08682482689619064, 0.01601162925362587,
- 0.048601847141981125, 0.07254118472337723, 0.04353627562522888, 0.038802266120910645,
- 0.024238346144557, 0.05032903701066971, -0.0008361977525055408, 0.0089900316670537,
- 0.008815840817987919, 0.02093207836151123, 0.04709968715906143, 0.03128504008054733,
- 0.06589023768901825, 0.11028456687927246, 0.017927536740899086, 0.053903091698884964,
- 0.07985435426235199, -0.016043487936258316, 0.10437222570180893, -0.008772207424044609,
- -0.0063097733072936535, 0.07756142318248749, 0.00027430092450231314,
- -0.08025401830673218, 0.054890792816877365, -0.014141835272312164, -0.06063089519739151,
- 0.11865723133087158, 0.03404013812541962, 0.11683449149131775, -0.0024341843090951443,
- 0.026700560003519058, 0.1006774753332138, 0.07081375271081924, -0.09993725270032883,
- -0.06335670500993729, 0.04238148778676987, -0.09710242599248886, -0.06545178592205048,
- 0.058247581124305725, 0.05777445062994957, -0.03924908488988876, 0.04745764285326004,
- -0.030116530135273933, 0.03397992253303528, 0.005987280979752541, 0.024773836135864258,
- 0.031908486038446426, -0.030194198712706566, -0.014261992648243904,
- 0.034744638949632645, 0.01458217203617096, 0.018286971375346184, 0.10208611935377121,
- -0.016152966767549515, -0.06313882768154144, -0.05481869727373123, 0.1027185246348381,
- 0.005809985101222992, -0.054322220385074615, 0.05661779269576073, -0.08874101936817169,
- 0.032972551882267, -0.1679779440164566, 0.09464699029922485, 0.15893185138702393,
- -0.0907982662320137, -0.03379286080598831, -0.03662322089076042, 0.10179596394300461,
- 0.011330981738865376, 0.01339710969477892, -0.039665184915065765, 0.004311363212764263,
- 0.030105967074632645, 0.026048339903354645, -0.02907351218163967, 0.03592357784509659,
- 0.06907264143228531, -0.062378205358982086, -0.012180333025753498, 0.056684501469135284,
- -0.0155203090980649, -0.01978018879890442, 0.07468285411596298, 0.034372396767139435,
- -0.056638240814208984, -0.05317295342683792, -0.06593333184719086,
- -0.027348674833774567, 0.011645321734249592, -0.019025692716240883,
- -0.0059298318810760975, 0.058145683258771896, -0.04283488541841507,
- -0.02028895542025566, 0.011587503366172314, 0.0701136440038681, 0.11610151082277298,
- 0.012675708159804344, 0.04969947412610054, -0.018461093306541443, -0.03900863602757454,
- 0.03690172731876373, 0.04686538130044937, 0.07080744951963425, -0.05152163654565811,
- -0.05134207755327225, -0.03541693463921547, -0.11258432269096375, 0.0003760091494768858,
- 0.03691263124346733, 0.021471230313181877, 0.04195592552423477, 0.05330074951052666,
- -0.08464919030666351, -0.023621493950486183, 0.093350850045681, 0.038478877395391464,
- 0.006771276239305735, 0.05060063302516937, -0.0348581001162529, -0.027300694957375526,
- 0.11065653711557388, -0.02904457412660122, 0.0005750117124989629, 0.04933677986264229,
- -0.09055311977863312, 0.0677775964140892, 0.0783805400133133, 0.04525109380483627,
- 0.01883101463317871, 0.020565619692206383, 0.025774270296096802, 0.023014970123767853,
- 0.010765772312879562, 0.00649825856089592, -0.037972934544086456, -0.07110585272312164,
- -0.08031398802995682, 0.047802843153476715, 0.08042643219232559, 0.07484784722328186,
- -0.10796463489532471, -0.02495119906961918, -0.042308591306209564
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 332,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 53,
- "similarity": 0.9966880083084106
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 16,
- "similarity": 0.9963809251785278
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 144,
- "similarity": 0.9963122010231018
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Leigh Alexander"],
- "epoch_date_downloaded": 1663027200,
- "epoch_date_modified": 1663113600,
- "epoch_date_submitted": 1663027200,
- "flag": null,
- "report_number": 2044,
- "source_domain": "theguardian.com",
- "submitters": ["Srishti Khemka (CSET)"],
- "title": "Do Google's 'unprofessional hair' results show it is racist?",
- "url": "https://www.theguardian.com/technology/2016/apr/08/does-google-unprofessional-hair-results-prove-algorithms-racist-"
- },
- {
- "__typename": "Report",
- "authors": ["Emily Gaynor"],
- "epoch_date_downloaded": 1663027200,
- "epoch_date_modified": 1663113600,
- "epoch_date_submitted": 1663027200,
- "flag": null,
- "report_number": 2041,
- "source_domain": "teenvogue.com",
- "submitters": ["Srishti Khemka (CSET)"],
- "title": "This Is the Appalling Result When You Google “Unprofessional” Hairstyles",
- "url": "https://www.teenvogue.com/story/google-unprofessional-hairstyles-problem"
- },
- {
- "__typename": "Report",
- "authors": ["Lauren Hubbard"],
- "epoch_date_downloaded": 1663027200,
- "epoch_date_modified": 1663113600,
- "epoch_date_submitted": 1663027200,
- "flag": null,
- "report_number": 2040,
- "source_domain": "allure.com",
- "submitters": ["Srishti Khemka (CSET)"],
- "title": "Why The Google Search Results For Unprofessional Hairstyles Are Seriously Disturbing",
- "url": "https://www.allure.com/story/google-search-unprofessional-hair"
- },
- {
- "__typename": "Report",
- "authors": ["Phoebe Jackson-Edwards"],
- "epoch_date_downloaded": 1663027200,
- "epoch_date_modified": 1663027200,
- "epoch_date_submitted": 1663027200,
- "flag": null,
- "report_number": 2033,
- "source_domain": "dailymail.co.uk",
- "submitters": ["Srishti Khemka (CSET)"],
- "title": "Woman is shocked by 'racist' Google search results",
- "url": "https://www.dailymail.co.uk/femail/article-3527717/Student-left-shocked-Google-search-unprofessional-hairstyles-work-features-black-women.html"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "tesla",
- "name": "Tesla"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "tesla",
- "name": "Tesla"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "unnamed-22-year-old-male-driver",
- "name": "unnamed 22-year-old male driver"
- },
- {
- "__typename": "Entity",
- "entity_id": "tesla-drivers",
- "name": "Tesla drivers"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [2148, 2146, 2137, 2136, 2135, 2045],
- "vector": [
- -0.10484572499990463, 0.07286077737808228, -0.016962828114628792, -0.0843137726187706,
- 0.08225826919078827, -0.030097534880042076, -0.0012924429029226303,
- 0.017725754529237747, 0.0362120158970356, -0.1605459302663803, -0.010435768403112888,
- 0.06380996853113174, 0.026110151782631874, -0.09638819843530655, 0.044223178178071976,
- -0.10718656331300735, -0.0792851522564888, -0.04663756862282753, 0.001911674626171589,
- -0.13025645911693573, -0.06877943873405457, -0.05394485965371132, 0.05819479003548622,
- 0.10066431760787964, -0.057200681418180466, 0.03165841102600098, 0.06707023829221725,
- 0.12996584177017212, -0.06327158957719803, 0.10048849135637283, -0.016503000631928444,
- -0.04817764833569527, 0.15217691659927368, 0.004978487733751535, 0.006835106294602156,
- 0.11508896946907043, 0.033366065472364426, -0.034500736743211746, -0.11394032835960388,
- -0.004799760412424803, 0.034334879368543625, 0.23694419860839844, -0.010796894319355488,
- -0.030848605558276176, 0.05617799982428551, -0.050409987568855286, 0.03229447081685066,
- 0.05158935859799385, 0.014663471840322018, 0.017144670709967613, -0.0027798525989055634,
- 0.016062745824456215, -0.01339269895106554, 0.013530709780752659, -0.1231631338596344,
- 0.09213630110025406, 0.0319351851940155, -0.01147463545203209, 0.03987892344594002,
- -0.060788292437791824, -0.0985741913318634, -0.2522275149822235, -0.05639295652508736,
- -0.07390204817056656, 0.08764791488647461, -0.09479578584432602, -0.026209181174635887,
- 0.024449603632092476, 0.05167282745242119, 0.06817631423473358, 0.05225108191370964,
- -0.07493770867586136, -0.04145687445998192, 0.002817468484863639, 0.020365780219435692,
- 0.0011632140958681703, -0.008175482042133808, 0.18242724239826202, -0.12399185448884964,
- 0.009481909684836864, 0.11435035616159439, -0.09452113509178162, 0.513467013835907,
- 0.015599388629198074, -0.05335254967212677, -0.0075575485825538635, 0.09086066484451294,
- 0.04649430513381958, 0.027856089174747467, 0.049726519733667374, -0.028851158916950226,
- 0.006671028211712837, -0.016932928934693336, 0.05732442066073418, 0.0842856839299202,
- 0.05858394503593445, -0.003926151432096958, 0.055324167013168335, -0.02636181004345417,
- -0.058097902685403824, 0.013710320927202702, -0.047208771109580994, 0.09389406442642212,
- 0.02024172432720661, -0.025875309482216835, 0.026226306334137917, 0.09681739658117294,
- -0.030063850805163383, 0.04918598011136055, -0.07467519491910934, 0.021474478766322136,
- 0.035392627120018005, 0.06404571980237961, 0.013922210782766342, 0.06979464739561081,
- -0.039197880774736404, -0.0014756998280063272, 0.023003680631518364,
- 0.09572601318359375, -0.002244038740172982, -0.027126559987664223, 0.05865449085831642,
- 0.09423103928565979, -0.05937949940562248, -0.023762233555316925, -0.041314784437417984,
- -0.05889643356204033, -0.017209066078066826, -0.027358492836356163,
- 0.023366587236523628, -0.0659307911992073, -0.2295471876859665, 0.03515511378645897,
- 0.07964783161878586, 0.0059340032748878, -0.028605571016669273, -0.0025150200817734003,
- -0.09901746362447739, 0.023988151922822, -0.012071014381945133, -0.02738962508738041,
- 0.06689281016588211, 0.04183293506503105, 0.043622568249702454, 0.09588849544525146,
- 0.06311864405870438, -0.0565570704638958, -0.05056367442011833, -0.0010779736330732703,
- -0.030454272404313087, 0.04753284156322479, -0.12286745756864548, -0.05330023542046547,
- 0.043396610766649246, 0.01847442239522934, 0.6733603477478027, 0.13541831076145172,
- 0.1811138540506363, 0.010504011996090412, -0.055584218353033066, 0.17270587384700775,
- 0.003725292393937707, 0.06568937748670578, -0.059101685881614685, -0.08063376694917679,
- 0.011343100108206272, -0.09264063835144043, -0.04370765760540962, 0.030815070495009422,
- 0.06189441308379173, 0.13888134062290192, 0.03340708091855049, 0.10173162072896957,
- 0.012040325440466404, -0.12834416329860687, -0.022461405023932457, 0.06537651270627975,
- 0.02408417873084545, -0.10929879546165466, -0.028025830164551735, 0.05726936459541321,
- 0.11310476064682007, -0.06232399120926857, 0.03406238183379173, -0.035288255661726,
- 0.03726499155163765, -0.01305497344583273, 0.027511432766914368, -0.029303932562470436,
- 0.03543952479958534, 0.0403040386736393, 0.0967116579413414, -0.019681569188833237,
- -0.14056119322776794, -0.05406937003135681, 0.10282249003648758, 0.01891995780169964,
- -0.04262528195977211, 0.06595942378044128, -0.09226670861244202, 0.04483003541827202,
- 0.013258525170385838, 0.13526777923107147, -0.10705237835645676, 0.009578559547662735,
- 0.02404235489666462, 0.006430027540773153, 0.0840023085474968, -0.040695447474718094,
- -0.06901318579912186, -0.05301361158490181, 0.059919457882642746, 0.05322408303618431,
- 0.08595354110002518, 0.09467703849077225, -0.031525906175374985, 0.031139574944972992,
- 0.0446929968893528, 0.011633943766355515, -0.02320508100092411, 0.06161530688405037,
- 0.07454722374677658, -0.026607679203152657, -0.006829056888818741, 0.05294119939208031,
- 0.04278382286429405, 0.06248487904667854, 0.00038535278872586787, 0.07762721180915833,
- -0.003858424723148346, -0.04015852138400078, 0.03131131827831268, 0.016560398042201996,
- 0.009029798209667206, 0.12443679571151733, -0.05840802192687988, -0.047337621450424194,
- 0.0042097498662769794, 0.003007578896358609, -0.02453562617301941, -0.03380944952368736,
- 0.09756189584732056, 0.0622757188975811, 0.10053163766860962, 0.04025803506374359,
- 0.04370442032814026, 0.061558421701192856, 0.047725096344947815, 0.04949935898184776,
- 0.03951198235154152, -0.024684512987732887, -0.10627705603837967, -0.009980564936995506,
- -0.0037022458855062723, 0.08072927594184875, 0.029416033998131752, -0.05910804495215416,
- -0.022408999502658844, -0.028296709060668945, -0.02900686115026474,
- -0.10328084230422974, -0.04678519070148468, -0.005797759164124727, 0.09225747734308243,
- -0.06232837215065956, -0.05325900390744209, -0.10475554317235947, 0.03485409915447235,
- 0.05710253119468689, 0.01598982699215412, -0.01678612269461155, -0.11392384767532349,
- -0.0432395376265049, -0.038054246455430984, 0.04030313715338707, -0.004750861786305904,
- -0.017558502033352852, -0.021660814061760902, -0.07367343455553055,
- -0.004136796575039625, -0.010337701067328453, -0.03791261091828346,
- -0.04537690803408623, -0.07435174286365509, -0.04664729908108711, 0.02759103663265705,
- 0.013935801573097706, -0.018801676109433174, 0.04876227676868439, 0.03934250399470329,
- 0.04629184305667877, -0.048159267753362656, -0.00008759313641348854,
- 0.08235722035169601, -0.05052551254630089, -0.0019233542261645198, 0.08488105982542038,
- -0.0027943968307226896, 0.030330723151564598, -0.004979309625923634,
- -0.07910502701997757, -0.02266957052052021, -0.014280294068157673, -0.066121406853199,
- 0.04721583053469658, -0.04096638411283493, -0.015339403413236141, -0.030326971784234047,
- 0.02786335162818432, 0.08951365202665329, -0.07668671756982803, -0.041847094893455505,
- -0.11370301991701126, 0.11918145418167114, -0.01396427396684885, -0.011847727000713348,
- 0.030384516343474388, -0.056396663188934326, 0.05452748015522957, -0.018936332315206528,
- -0.012123577296733856, 0.049768950790166855, 0.03343664109706879, -0.028020372614264488,
- -0.01432464923709631, 0.043206218630075455, -0.05114053189754486, 0.008702111430466175,
- 0.07546291500329971, 0.3919454514980316, -0.12069636583328247, 0.07005837559700012,
- 0.09129215031862259, 0.018178807571530342, 0.06884564459323883, -0.06641113758087158,
- 0.06972208619117737, 0.05530435964465141, 0.10733779519796371, 0.10375525802373886,
- -0.02356364019215107, 0.016814809292554855, -0.03964296728372574, 0.0966249629855156,
- 0.011841273866593838, 0.029882654547691345, -0.04156516119837761, -0.08579698204994202,
- -0.014345306903123856, 0.042876437306404114, -0.04529142007231712,
- -0.010917910374701023, -0.007773581892251968, -0.07320836931467056,
- -0.010392778553068638, 0.015223405323922634, 0.032725974917411804, -0.04419681429862976,
- 0.013066048733890057, -0.01450074091553688, 0.01106042880564928, 0.00613808399066329,
- 0.06021838262677193, -0.10014944523572922, 0.045190777629613876, -0.09910421818494797,
- -0.0772845596075058, 0.08457639068365097, -0.003777013160288334, 0.04742450639605522,
- 0.04543209448456764, -0.017606377601623535, 0.028536329045891762, -0.009108112193644047,
- -0.06760147958993912, 0.020928218960762024, 0.058746833354234695, 0.014384407550096512,
- 0.09074994176626205, 0.15584784746170044, -0.04189031943678856, -0.06302066892385483,
- -0.0755772590637207, 0.08285395801067352, 0.09118258953094482, -0.06797010451555252,
- 0.007444420829415321, -0.04769359529018402, -0.01882931776344776, 0.00450550951063633,
- -0.0791073814034462, -0.05300091207027435, 0.018139014020562172, -0.04847666248679161,
- 0.06365162134170532, -0.006877407431602478, -0.04460833594202995, -0.1448296457529068,
- -0.01305097434669733, -0.043630242347717285, 0.004761930555105209, 0.13911676406860352,
- -0.046935100108385086, 0.0062438021413981915, 0.0514020174741745, -0.010147124528884888,
- 0.025288864970207214, -0.09360942989587784, 0.01469506323337555, -0.06659334152936935,
- 0.04899740219116211, 0.034276217222213745, 0.06507404893636703, -0.09048262983560562,
- 0.05763884261250496, -0.09275450557470322, 0.030928893014788628, 0.04744577780365944,
- 0.02592303417623043, 0.029252914711833, -0.04671981930732727, 0.03623521700501442,
- 0.020537957549095154, -0.042754244059324265, -0.006643041968345642,
- -0.06481563299894333, -0.033188723027706146, -0.10727041959762573, -0.05744647607207298,
- -0.03789016976952553, -0.0787096694111824, 0.07672730833292007, -0.12188562005758286,
- -0.025724997743964195, -0.042388707399368286, 0.0007309452630579472,
- 0.028794607147574425, 0.08047661930322647, 0.029928969219326973, -0.1353340595960617,
- 0.03206272050738335, -0.01576165296137333, 0.08373019844293594, -0.0481121689081192,
- -0.0680769756436348, 0.01046981941908598, 0.12627488374710083, 0.033222541213035583,
- -0.016215438023209572, -0.010590783320367336, -0.04362606629729271,
- 0.009701654314994812, -0.10325968265533447, -0.4948224127292633, 0.03329448029398918,
- 0.00116336636710912, 0.055565521121025085, -0.02007204480469227, -0.05880481004714966,
- 0.03839372098445892, -0.023424476385116577, -0.037276726216077805, 0.0972675308585167,
- -0.053981125354766846, 0.01892632059752941, 0.015611860901117325, -0.03607423976063728,
- -0.039843134582042694, -0.0841938778758049, -0.04033074155449867, 0.027729906141757965,
- -0.027263058349490166, -0.06335384398698807, -0.08398591727018356, 0.041571181267499924,
- -0.004693965427577496, -0.005526220425963402, -0.01435739267617464,
- 0.022943714633584023, -0.09817776829004288, -0.049786508083343506, 0.00568549707531929,
- 0.06279592961072922, 0.028843211010098457, -0.05762942135334015, -0.03946850076317787,
- 0.06297633051872253, -0.03982284292578697, 0.17064116895198822, 0.013909630477428436,
- 0.07068254053592682, -0.08272603154182434, 0.09667553752660751, 0.050659384578466415,
- 0.18558837473392487, -0.037823304533958435, 0.04916827008128166, 0.027557382360100746,
- 0.15118436515331268, 0.02666351944208145, 0.04424944147467613, -0.020745841786265373,
- 0.0037477808073163033, 0.0018980689346790314, -0.005172190722078085,
- 0.07052671164274216, -0.07813554257154465, -0.03249502554535866, -0.021188968792557716,
- -0.018560590222477913, -0.012078933417797089, 0.01798233762383461, 0.1854536384344101,
- 0.04090927541255951, 0.02608751505613327, 0.009608520194888115, -0.07744815945625305,
- -0.011008594185113907, -0.02571466751396656, -0.11968489736318588, 0.008588777855038643,
- -0.012422190047800541, 0.0226877573877573, -0.038480546325445175, -0.12593401968479156,
- -0.01494027953594923, -0.04176299646496773, -0.017795460298657417, 0.12212378531694412,
- -0.03165661171078682, 0.04151349887251854, -0.03968331590294838, 0.11985541135072708,
- 0.04195474088191986, 0.026034926995635033, 0.07039260864257812, 0.0816265270113945,
- -0.004417227581143379, -0.011648823507130146, -0.01997927576303482,
- -0.07095890492200851, -0.01006082072854042, 0.09001118689775467, -0.05685235187411308,
- 0.05734165385365486, 0.04236612841486931, -0.030358070507645607, -0.07148874551057816,
- 0.038621727377176285, -0.01115234661847353, 0.05289468169212341, -0.470846027135849,
- -0.023026756942272186, 0.1394500583410263, -0.002002498134970665, 0.052304256707429886,
- 0.06531327217817307, 0.05434636399149895, -0.02258465252816677, -0.06833183020353317,
- -0.045741885900497437, 0.11950892210006714, -0.006095631513744593, 0.06467422097921371,
- -0.1284780651330948, 0.06538338959217072, 0.10654930025339127, 0.0022451665718108416,
- -0.011855694465339184, 0.04962407425045967, -0.20411400496959686, -0.02159171551465988,
- -0.04673823341727257, 0.16965095698833466, 0.06102887913584709, 0.01415310800075531,
- 0.054214220494031906, -0.06581524759531021, 0.029499193653464317, 0.039691533893346786,
- 0.01059305015951395, 0.09131520241498947, -0.0073242043145000935, -0.03624361380934715,
- 0.13504643738269806, 0.06345508992671967, 0.08324429392814636, 0.009973612613976002,
- 11.994854927062988, 0.08728740364313126, 0.05058187618851662, -0.07923854142427444,
- 0.07154112309217453, -0.04733038321137428, 0.03277265653014183, -0.12333077937364578,
- 0.0867382287979126, 0.10496170073747635, -0.02246525138616562, -0.019565025344491005,
- -0.04735588654875755, -0.09429662674665451, -0.004942900035530329, -0.08048088103532791,
- -0.05488944053649902, -0.04017283394932747, 0.020168442279100418, -0.049646779894828796,
- 0.0027393242344260216, 0.004792493302375078, 0.07755377143621445, 0.022277548909187317,
- -0.09139350056648254, 0.05647895857691765, 0.04600309208035469, -0.006758373696357012,
- -0.008694827556610107, 0.01968681998550892, -0.019057469442486763, 0.005107443779706955,
- 0.0564887635409832, 0.03414958342909813, -0.05409279838204384, 0.10681936889886856,
- 0.05153855308890343, 0.06993121653795242, 0.014027044177055359, 0.07528805732727051,
- 0.008891582489013672, 0.045477304607629776, 0.017911557108163834, 0.053617577999830246,
- 0.03201058879494667, 0.027741925790905952, 0.07442604750394821, 0.12022519111633301,
- 0.02089674584567547, 0.051878903061151505, 0.09490159153938293, -0.012044425122439861,
- 0.11055174469947815, 0.056123197078704834, -0.00014496226503979415, 0.03571968898177147,
- -0.021616997197270393, -0.07437466830015182, 0.055491190403699875, 0.05850234255194664,
- -0.04893574118614197, 0.0929943323135376, 0.028625601902604103, 0.13889746367931366,
- -0.020113544538617134, 0.004410980734974146, 0.0962127149105072, 0.045499105006456375,
- -0.11670786142349243, -0.06811964511871338, 0.05185799300670624, -0.13205482065677643,
- -0.05845487490296364, 0.0390273816883564, 0.049125149846076965, -0.0355704128742218,
- 0.06054476276040077, -0.054716918617486954, 0.029613345861434937, -0.027568070217967033,
- -0.011560575105249882, 0.03205280005931854, -0.033879220485687256, 0.009428117424249649,
- 0.04540960118174553, -0.015931040048599243, 0.08543205261230469, 0.08976506441831589,
- -0.04166242107748985, -0.10749730467796326, -0.10337653756141663, 0.11682898551225662,
- -0.03343718871474266, -0.06146837770938873, 0.01607407256960869, -0.060020942240953445,
- 0.03286062553524971, -0.16021139919757843, 0.08850517123937607, 0.11816351860761642,
- -0.09079041332006454, -0.01997857540845871, -0.027011020109057426, 0.07770784944295883,
- -0.01600867696106434, 0.01844487339258194, -0.04926180839538574, 0.020809082314372063,
- 0.006325114518404007, 0.05282817408442497, -0.04741491749882698, 0.07724647969007492,
- 0.07519637793302536, -0.11428755521774292, 0.0418904609978199, 0.08016759902238846,
- -0.03626081719994545, -0.07482563704252243, 0.07203595340251923, 0.057425107806921005,
- -0.0892215147614479, -0.058491289615631104, -0.03219951316714287, -0.061832740902900696,
- -0.029020214453339577, -0.024156950414180756, -0.014939903281629086,
- 0.05139324441552162, -0.06747646629810333, -0.03164207935333252, 0.01581614278256893,
- 0.01921253092586994, 0.11185858398675919, 0.020324984565377235, 0.06389625370502472,
- -0.06161351129412651, -0.022057386115193367, 0.08125398308038712, 0.035925351083278656,
- 0.08605366200208664, -0.0134744793176651, 0.033307675272226334, -0.051494184881448746,
- -0.11256084591150284, 0.00045187686919234693, 0.08560090512037277, 0.052153896540403366,
- 0.06457947194576263, 0.055651549249887466, -0.0780075341463089, -0.046043168753385544,
- 0.13481764495372772, 0.041553955525159836, 0.018423190340399742, 0.025050349533557892,
- -0.11838165670633316, -0.01694720797240734, 0.16146685183048248, -0.04283643886446953,
- 0.0020801741629838943, 0.04478229209780693, -0.04021210968494415, 0.08734595775604248,
- 0.10873875021934509, 0.09862086921930313, 0.05653548240661621, 0.028914155438542366,
- -0.010965798050165176, -0.016767876222729683, 0.010617236606776714,
- -0.012195095419883728, 0.008889223448932171, -0.12947553396224976, -0.09617447853088379,
- 0.07167673856019974, 0.06724708527326584, 0.024308063089847565, -0.09496736526489258,
- -0.0033354265615344048, -0.05926721170544624
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 333,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 20,
- "similarity": 0.9987714886665344
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 4,
- "similarity": 0.9986178278923035
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 52,
- "similarity": 0.9986017942428589
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Marie Weidmayer"],
- "epoch_date_downloaded": 1663113600,
- "epoch_date_modified": 1665619200,
- "epoch_date_submitted": 1663113600,
- "flag": null,
- "report_number": 2148,
- "source_domain": "mlive.com",
- "submitters": ["Khoa Lam"],
- "title": "Self-driving Tesla hits Michigan State Police car on freeway",
- "url": "https://www.mlive.com/news/jackson/2021/03/self-driving-tesla-hits-michigan-state-police-car-on-freeway.html"
- },
- {
- "__typename": "Report",
- "authors": ["Alex Kierstein"],
- "epoch_date_downloaded": 1663113600,
- "epoch_date_modified": 1665619200,
- "epoch_date_submitted": 1663113600,
- "flag": null,
- "report_number": 2146,
- "source_domain": "motortrend.com",
- "submitters": ["Thomas Giallella (CSET)"],
- "title": "Tesla on \"Autopilot\" Crashes Into Parked Michigan State Police Car",
- "url": "https://www.motortrend.com/news/tesla-michigan-state-autopilot-crash-report/"
- },
- {
- "__typename": "Report",
- "authors": ["Andrew J. Hawkins"],
- "epoch_date_downloaded": 1663804800,
- "epoch_date_modified": 1665619200,
- "epoch_date_submitted": 1663804800,
- "flag": null,
- "report_number": 2137,
- "source_domain": "theverge.com",
- "submitters": ["Thomas Giallella (CSET)"],
- "title": "The federal government is investigating yet another Tesla Autopilot crash",
- "url": "https://www.theverge.com/2021/3/18/22338427/tesla-autopilot-crash-michigan-nhtsa-investigation"
- },
- {
- "__typename": "Report",
- "authors": ["Kenneth Garger"],
- "epoch_date_downloaded": 1663804800,
- "epoch_date_modified": 1665619200,
- "epoch_date_submitted": 1663804800,
- "flag": null,
- "report_number": 2136,
- "source_domain": "nypost.com",
- "submitters": ["Thomas Giallella (CSET)"],
- "title": "Tesla on autopilot crashes into Michigan cop’s patrol car",
- "url": "https://nypost.com/2021/03/18/tesla-on-autopilot-crashes-into-michigan-troopers-patrol-car/"
- },
- {
- "__typename": "Report",
- "authors": ["Michael Wayland", " Lora Kolodny"],
- "epoch_date_downloaded": 1663804800,
- "epoch_date_modified": 1665619200,
- "epoch_date_submitted": 1663804800,
- "flag": null,
- "report_number": 2135,
- "source_domain": "cnbc.com",
- "submitters": ["Thomas Giallella (CSET)"],
- "title": "Tesla faces second NHTSA probe in Michigan this month",
- "url": "https://www.cnbc.com/2021/03/17/tesla-in-autopilot-hits-police-car-in-michigan-officials-say.html"
- },
- {
- "__typename": "Report",
- "authors": ["Abdullah"],
- "epoch_date_downloaded": 1663113600,
- "epoch_date_modified": 1663113600,
- "epoch_date_submitted": 1663113600,
- "flag": null,
- "report_number": 2045,
- "source_domain": "gizchina.com",
- "submitters": ["Srishti Khemka (CSET)"],
- "title": "Tesla on autopilot crashes a police car",
- "url": "https://www.gizchina.com/2021/03/18/tesla-on-autopilot-crashes-a-police-car/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "uber",
- "name": "Uber"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "uber",
- "name": "Uber"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "local-law-enforcement-officers",
- "name": "local law enforcement officers"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [2077, 2046],
- "vector": [
- -0.07347816228866577, 0.07164118438959122, -0.004326672293245792, -0.10317400842905045,
- 0.059472233057022095, -0.04566211253404617, 0.01223632413893938, 0.023868035525083542,
- 0.067330002784729, -0.13773566484451294, -0.018596291542053223, 0.017407508566975594,
- 0.03944037854671478, -0.04350478574633598, 0.017994269728660583, -0.07279571890830994,
- -0.11745193600654602, 0.002870033960789442, -0.016786307096481323, -0.12286524474620819,
- -0.04235507547855377, 0.006424682214856148, 0.023400697857141495, 0.13839833438396454,
- -0.04646419733762741, 0.03117685765028, 0.09646187722682953, 0.1534777581691742,
- -0.07235579192638397, 0.08283564448356628, -0.009898394346237183, -0.04466886818408966,
- 0.1480477899312973, 0.00603558961302042, 0.022074956446886063, 0.10876963287591934,
- 0.04329799488186836, -0.05636387690901756, -0.023984357714653015,
- -0.0046709380112588406, 0.02755214087665081, 0.20395129919052124, -0.02300463430583477,
- 0.006814736407250166, 0.05762423574924469, -0.01962881162762642, 0.0200190469622612,
- 0.04536300152540207, 0.007939409464597702, -0.02739124558866024, -0.03366050496697426,
- 0.039644986391067505, -0.03688563033938408, 0.01096687838435173, -0.08318007737398148,
- 0.057532988488674164, 0.031723178923130035, -0.03378738462924957, 0.05389253795146942,
- -0.052620913833379745, -0.04759088531136513, -0.23821434378623962,
- -0.055456243455410004, -0.044342055916786194, 0.07671023905277252, -0.07195448875427246,
- -0.01645645499229431, 0.025310229510068893, 0.009945300407707691, 0.035100556910037994,
- 0.031797777861356735, -0.04788060486316681, -0.01249875221401453, 0.0017308862879872322,
- -0.013573079369962215, -0.009576994925737381, 0.01976667530834675, 0.13887900114059448,
- -0.0916418805718422, 0.011495436541736126, 0.09774602949619293, -0.10052777826786041,
- 0.40683722496032715, 0.00454287463799119, -0.013468405231833458, 0.0204887967556715,
- 0.10443232953548431, 0.04324846342206001, 0.03965989500284195, 0.02778295800089836,
- -0.028882808983325958, 0.016902808099985123, -0.03900455683469772, 0.018273722380399704,
- 0.0724165216088295, 0.055308908224105835, 0.013471229001879692, 0.014146022498607635,
- -0.009806635789573193, -0.07508984208106995, 0.04741164296865463, -0.04000568017363548,
- 0.10249899327754974, 0.05624851584434509, -0.023294810205698013, 0.0010354035766795278,
- 0.07402145862579346, -0.060767948627471924, 0.0408455953001976, -0.03272920101881027,
- 0.0012530204840004444, 0.014694064855575562, 0.07181891798973083, 0.02066890150308609,
- 0.023019878193736076, -0.06843768060207367, -0.003298636758700013, 0.023493552580475807,
- 0.09072501212358475, 0.007674864027649164, 0.0009475403930991888, 0.09028948098421097,
- 0.08354847133159637, -0.057269513607025146, -0.02982310578227043, -0.04439021274447441,
- -0.04045238345861435, -0.04207632690668106, -0.006254629697650671, 0.017176857218146324,
- -0.06249949336051941, -0.17949967086315155, 0.024270420894026756, 0.08395902812480927,
- -0.002042811829596758, -0.03979925811290741, 0.014026308432221413, -0.07048830389976501,
- 0.04132923483848572, 0.015028073452413082, -0.021792210638523102, 0.08564489334821701,
- 0.03740216791629791, 0.043905749917030334, 0.1045188382267952, 0.030086137354373932,
- -0.04374808073043823, -0.049459345638751984, 0.007720198482275009,
- -0.0001649621408432722, 0.06936608254909515, -0.11537742614746094,
- -0.030794862657785416, 0.033260419964790344, -0.01263000164180994, 0.6679373383522034,
- 0.08448600769042969, 0.1626288890838623, -0.005390729755163193, -0.02709966152906418,
- 0.1692095845937729, -0.026845965534448624, 0.0802573636174202, -0.06690827012062073,
- -0.0769619420170784, 0.017463240772485733, -0.07303622364997864, -0.01852443628013134,
- 0.022866882383823395, 0.03390784189105034, 0.12274651229381561, 0.07016722857952118,
- 0.11799272894859314, 0.004489094950258732, -0.09175623953342438, -0.000788938719779253,
- 0.07052135467529297, 0.01670612022280693, -0.13168767094612122, -0.04992043599486351,
- 0.05352787300944328, 0.09826137125492096, -0.06413987278938293, 0.04939870536327362,
- -0.05653182789683342, 0.053237929940223694, -0.02349589765071869, 0.03528525307774544,
- 0.004370382055640221, 0.02869245782494545, 0.010528150014579296, 0.08910953998565674,
- 0.01031603291630745, -0.13229018449783325, -0.06989642977714539, 0.09120148420333862,
- 0.02153243124485016, -0.042018406093120575, 0.10425325483083725, -0.0504269078373909,
- 0.04410850256681442, 0.022461358457803726, 0.17325183749198914, -0.14574511349201202,
- -0.011121582239866257, 0.0040000006556510925, 0.00686682341620326, 0.07187660038471222,
- -0.011394724249839783, -0.06666386127471924, -0.08848405629396439, 0.04606511443853378,
- 0.028639093041419983, 0.0748261958360672, 0.043889932334423065, -0.06261759251356125,
- 0.013919064775109291, -0.0017097946256399155, 0.014980651438236237,
- -0.06510777026414871, 0.07889719307422638, 0.04175185039639473, -0.038428209722042084,
- -0.01971357874572277, 0.04324109107255936, 0.030153527855873108, 0.05113615095615387,
- -0.022598333656787872, 0.053945086896419525, -0.005094342865049839,
- -0.03270849585533142, 0.02438986673951149, 0.06400366127490997, -0.003245572093874216,
- 0.10450489819049835, -0.09115837514400482, -0.020895248278975487, -0.0337786003947258,
- 0.003904738463461399, -0.010800693184137344, -0.05078331381082535, 0.06035136431455612,
- 0.08290685713291168, 0.07893648743629456, 0.045022062957286835, 0.05691182240843773,
- 0.04620024561882019, 0.0740947425365448, 0.02482469193637371, 0.079872265458107,
- -0.034079305827617645, 0.0038975579664111137, -0.009196779690682888,
- 0.003567154984921217, 0.04592373967170715, 0.041819017380476, -0.028849566355347633,
- -0.027840597555041313, -0.018722500652074814, -0.03613852337002754,
- -0.08647609502077103, -0.04817691445350647, -0.004059514496475458, 0.04087459295988083,
- -0.06171188876032829, -0.09177374839782715, -0.05062032490968704, 0.014869991689920425,
- 0.04964734986424446, -0.03456403315067291, -0.01163945160806179, -0.12979133427143097,
- 0.022008338943123817, -0.017029641196131706, 0.042938247323036194, 0.005311161279678345,
- 0.05113229900598526, -0.036611407995224, -0.06898153573274612, 0.0056766243651509285,
- 0.009329910390079021, -0.020342836156487465, -0.06105003505945206, -0.0557345412671566,
- -0.05090983957052231, 0.003833353752270341, 0.027075104415416718, -0.03614355996251106,
- 0.02421829104423523, 0.0277966670691967, 0.05446045845746994, -0.013031433336436749,
- 0.015018266625702381, 0.05001802742481232, -0.046914417296648026, -0.027585599571466446,
- 0.07250706851482391, -0.011782743036746979, 0.028773080557584763, -0.012294864282011986,
- -0.062102414667606354, -0.05347687751054764, -0.0009005146566778421,
- -0.0696137547492981, 0.07264456152915955, -0.025074787437915802, -0.05474519729614258,
- -0.061484530568122864, -0.018507907167077065, 0.05612849444150925, -0.08017977327108383,
- -0.07757394760847092, -0.09015196561813354, 0.09527517855167389, -0.02474147453904152,
- 0.008969930931925774, 0.01299071591347456, -0.06732379645109177, 0.05979226529598236,
- 0.00013538217172026634, 0.02111244946718216, 0.03513309732079506, 0.04942683130502701,
- -0.029654111713171005, 0.028916247189044952, 0.04298160970211029, -0.05766124650835991,
- 0.008063915185630322, 0.08719305694103241, 0.4318723678588867, -0.12087128311395645,
- 0.1255682408809662, 0.09067206084728241, 0.017180077731609344, 0.05915544182062149,
- -0.025540051981806755, 0.0793621689081192, 0.056551557034254074, 0.10287674516439438,
- 0.0938476026058197, -0.06467245519161224, 0.011288374662399292, -0.05986882746219635,
- 0.11037890613079071, 0.007335291244089603, 0.035977594554424286, -0.026231706142425537,
- -0.031221816316246986, -0.035177841782569885, 0.036290619522333145,
- -0.020718086510896683, 0.008577493019402027, -0.04589112848043442, -0.05226418375968933,
- 0.030850665643811226, 0.023466259241104126, 0.028589285910129547, -0.024225758388638496,
- 0.024013333022594452, -0.012488830834627151, 0.04640181362628937,
- 0.00008330028504133224, 0.06441153585910797, -0.07179228961467743,
- -0.0027666494715958834, -0.0783713087439537, -0.10016617178916931, 0.0802164226770401,
- -0.0016744423191994429, 0.055191487073898315, 0.04973223805427551,
- -0.003537632990628481, 0.062176384031772614, -0.022577432915568352,
- -0.046537160873413086, 0.024675674736499786, 0.022192616015672684, 0.04856238514184952,
- 0.10973919928073883, 0.14400912821292877, -0.037179626524448395, -0.05512065440416336,
- -0.0780181735754013, 0.04372476041316986, 0.08618983626365662, 0.0009253360331058502,
- 0.021431315690279007, 0.008921714499592781, -0.06944733113050461, -0.011307263746857643,
- -0.05355760455131531, -0.05885680764913559, 0.030380114912986755, -0.05646509677171707,
- 0.08977706730365753, 0.012979410588741302, -0.044181108474731445, -0.12995098531246185,
- -0.04048874229192734, -0.0325232595205307, 0.015611025504767895, 0.10134899616241455,
- -0.040368348360061646, 0.0390331968665123, 0.0028419801965355873, 0.019199712201952934,
- -0.020803486928343773, -0.08648516237735748, -0.004132323432713747,
- -0.028140980750322342, 0.06261909008026123, 0.09037245064973831, 0.030433356761932373,
- -0.07713890075683594, 0.07096868753433228, -0.1317499577999115, 0.046889036893844604,
- 0.03970624506473541, -0.022287342697381973, 0.04246978089213371, -0.021329734474420547,
- 0.04529133066534996, 0.01096775010228157, -0.039420995861291885, -0.01945371925830841,
- -0.03812301903963089, -0.07895241677761078, -0.09530000388622284, -0.05121295899152756,
- -0.052322469651699066, -0.09588348865509033, 0.04094034433364868, -0.11313097178936005,
- -0.011959219351410866, -0.03570665419101715, 0.0045801554806530476,
- 0.027998872101306915, 0.05781536549329758, 0.0481700599193573, -0.1440608650445938,
- 0.0013064863160252571, -0.01778983697295189, 0.06826362758874893, -0.03230953589081764,
- -0.059369221329689026, 0.03384274244308472, 0.06888709217309952, 0.020419497042894363,
- -0.028095312416553497, -0.017710454761981964, -0.03772910311818123,
- 0.017281964421272278, -0.12108004838228226, -0.471885085105896, 0.06210523843765259,
- -0.021006284281611443, 0.06656210124492645, 0.011417252942919731, -0.08000428974628448,
- 0.041704270988702774, -0.03308838605880737, -0.02777852490544319, 0.0700734406709671,
- -0.04590935632586479, 0.01196068525314331, 0.03103042021393776, -0.022308724001049995,
- -0.023327458649873734, -0.038132183253765106, -0.02890234813094139, 0.02019185945391655,
- 0.005866613704711199, -0.06489619612693787, -0.07926897704601288, 0.027710817754268646,
- 0.018549177795648575, -0.030247380957007408, 0.060380153357982635, 0.012500636279582977,
- -0.07919049263000488, -0.05197902396321297, 0.03888199105858803, 0.041934892535209656,
- -0.002631162293255329, -0.03434620797634125, 0.00469173165038228, 0.07116704434156418,
- -0.01526837982237339, 0.14238382875919342, 0.018678249791264534, 0.06644219160079956,
- -0.07865693420171738, 0.08113695681095123, 0.058347344398498535, 0.18923471868038177,
- -0.024370776489377022, 0.04006466642022133, 0.0480152852833271, 0.0808895081281662,
- 0.04519176483154297, 0.05938730761408806, -0.052260614931583405, 0.003531936090439558,
- -0.002582346787676215, -0.005933074280619621, 0.07434052228927612, -0.05381113290786743,
- -0.030113443732261658, -0.0586744099855423, -0.04565989971160889, -0.07085159420967102,
- -0.014520315453410149, 0.19621050357818604, 0.028377119451761246, 0.0021008155308663845,
- 0.04125773161649704, -0.06910012662410736, 0.00930805318057537, -0.06001666188240051,
- -0.09110599011182785, -0.032057031989097595, 0.014899753034114838, 0.037369176745414734,
- -0.05215191841125488, -0.14056572318077087, -0.027768807485699654,
- -0.0021518561989068985, -0.00103815458714962, 0.11562613397836685, -0.06252755224704742,
- 0.014885740354657173, -0.0006466441554948688, 0.12811924517154694, 0.026500090956687927,
- 0.00646174605935812, 0.05079583823680878, 0.06631791591644287, 0.0201558955013752,
- -0.03235003724694252, -0.05417783930897713, -0.05407293513417244, 0.04628949612379074,
- 0.13582083582878113, -0.04998534545302391, 0.10353206098079681, 0.048016421496868134,
- -0.031091775745153427, -0.0525873526930809, 0.04008296877145767, -0.010273110121488571,
- 0.061587199568748474, -0.44332408905029297, -0.04488472640514374, 0.10058937966823578,
- -0.012099253945052624, 0.010244347155094147, 0.09298942983150482, 0.03946869075298309,
- -0.025184642523527145, -0.05431341007351875, -0.07760569453239441, 0.15369656682014465,
- -0.015989011153578758, 0.03648985177278519, -0.1400364637374878, 0.037722498178482056,
- 0.10999538004398346, 0.03225371241569519, -0.018791688606142998, 0.03374621272087097,
- -0.24655583500862122, -0.00517279701307416, -0.0332670733332634, 0.11416341364383698,
- 0.03021964058279991, 0.01101016253232956, 0.0685134008526802, -0.05098971724510193,
- -0.0036200666800141335, 0.018756486475467682, -0.0026012291200459003,
- 0.07058419287204742, -0.03936600685119629, 0.004731007385998964, 0.10789147019386292,
- 0.08743119239807129, 0.10626330971717834, -0.020690109580755234, 11.78187370300293,
- 0.03929782658815384, 0.07751908898353577, -0.09738612920045853, 0.026063183322548866,
- -0.0363021157681942, 0.03510494530200958, -0.04226024076342583, 0.08483290672302246,
- 0.08570665866136551, -0.01747095212340355, -0.031512029469013214, -0.05612897500395775,
- -0.08075352013111115, 0.004033221863210201, -0.07274894416332245, -0.0893806666135788,
- -0.01960461214184761, 0.03566586226224899, -0.04761531949043274, -0.023851126432418823,
- 0.03532560542225838, 0.060894887894392014, 0.027893133461475372, -0.08728789538145065,
- 0.04807193577289581, 0.005208353046327829, -0.0012752972543239594,
- -0.012955347076058388, 0.006784618832170963, 0.007342803291976452,
- -0.0013497509062290192, 0.10843537747859955, 0.027891796082258224, -0.02288980782032013,
- 0.07475972175598145, 0.02345450036227703, 0.040102217346429825, 0.021895568817853928,
- 0.04857180640101433, 0.009253641590476036, 0.06374534219503403, 0.0034085798542946577,
- 0.04347100853919983, 0.03223273903131485, 0.0429810993373394, 0.014314151369035244,
- 0.09082382172346115, 0.01564551703631878, 0.05230037122964859, 0.09101057052612305,
- -0.01835041493177414, 0.10324358940124512, 0.018481161445379257, -0.0009500326123088598,
- 0.03240611404180527, -0.023587187752127647, -0.061294328421354294, 0.0740455761551857,
- 0.037913139909505844, -0.053246259689331055, 0.1179734468460083, 0.03845841437578201,
- 0.11304822564125061, -0.01880694180727005, 0.03517891466617584, 0.05406728759407997,
- 0.0950685441493988, -0.11822649836540222, -0.08514490723609924, 0.06685478985309601,
- -0.09668406844139099, -0.05585095286369324, 0.07023154944181442, 0.06690103560686111,
- 0.030454352498054504, 0.0674973577260971, -0.010364796966314316, 0.0572219118475914,
- -0.049143217504024506, -0.01443463284522295, 0.06009199470281601, -0.018580112606287003,
- 0.014271308667957783, 0.04583189636468887, -0.012423552572727203, 0.11114056408405304,
- 0.1032203733921051, -0.004241867456585169, -0.07030238956212997, -0.09167984127998352,
- 0.08773446083068848, 0.012095589190721512, -0.07326331734657288, 0.0055217985063791275,
- -0.06322253495454788, 0.025559015572071075, -0.1553492695093155, 0.06768763065338135,
- 0.09915271401405334, -0.05524522438645363, -0.06317788362503052, 0.010597148910164833,
- 0.08584251999855042, 0.026660170406103134, 0.016692299395799637, -0.03553145378828049,
- 0.014786279760301113, 0.004937736317515373, 0.039769016206264496, -0.053653351962566376,
- 0.10852769017219543, 0.051952194422483444, -0.05945123732089996, 0.048386141657829285,
- 0.057395197451114655, -0.059308648109436035, -0.046174824237823486, 0.05423038452863693,
- 0.06088702753186226, -0.09637817740440369, -0.049458347260951996, -0.05328524857759476,
- -0.03629797697067261, -0.016126826405525208, -0.03495394438505173, -0.017324173822999,
- 0.011200271546840668, -0.0491616316139698, -0.03243528679013252, 0.036854762583971024,
- 0.044928789138793945, 0.10405702888965607, 0.006455901078879833, 0.06495007872581482,
- -0.07710430026054382, -0.04686013609170914, 0.05990062654018402, 0.07481436431407928,
- 0.08249160647392273, -0.03161202743649483, -0.014993558637797832, -0.07466363161802292,
- -0.08883693814277649, 0.052197277545928955, 0.0843057930469513, 0.012604264542460442,
- 0.021841246634721756, 0.011245684698224068, -0.08174141496419907, -0.03829456865787506,
- 0.1360131949186325, 0.04122726619243622, 0.03618387505412102, 0.028233852237462997,
- -0.06918679177761078, -0.040853433310985565, 0.12272828817367554, -0.050929851830005646,
- 0.011942209675908089, 0.047978609800338745, -0.0893944650888443, 0.06531377136707306,
- 0.08010432869195938, 0.0018633322324603796, 0.06180906295776367, 0.004594074096530676,
- 0.004228763747960329, 0.006834337022155523, 0.0052984654903411865, 0.016117006540298462,
- -0.07862059772014618, -0.06944761425256729, -0.08935549855232239, 0.0028084043879061937,
- 0.0624254047870636, 0.012276601046323776, -0.13493773341178894, -0.008708730340003967,
- -0.0370313860476017
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 334,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Mike Isaac"],
- "epoch_date_downloaded": 1663545600,
- "epoch_date_modified": 1665273600,
- "epoch_date_submitted": 1663545600,
- "flag": null,
- "report_number": 2077,
- "source_domain": "nytimes.com",
- "submitters": ["Khoa Lam"],
- "title": "How Uber Deceives the Authorities Worldwide",
- "url": "https://www.nytimes.com/2017/03/03/technology/uber-greyball-program-evade-authorities.html"
- },
- {
- "__typename": "Report",
- "authors": ["Julia Carrie Wong"],
- "epoch_date_downloaded": 1663545600,
- "epoch_date_modified": 1663545600,
- "epoch_date_submitted": 1663545600,
- "flag": null,
- "report_number": 2046,
- "source_domain": "theguardian.com",
- "submitters": ["Khoa Lam"],
- "title": "Greyball: how Uber used secret software to dodge the law",
- "url": "https://www.theguardian.com/technology/2017/mar/03/uber-secret-program-greyball-resignation-ed-baker"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "uk-visas-and-immigration",
- "name": "UK Visas and Immigration"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "uk-visas-and-immigration",
- "name": "UK Visas and Immigration"
- },
- {
- "__typename": "Entity",
- "entity_id": "uk-home-office",
- "name": "UK Home Office"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "uk-visa-applicants-from-some-countries",
- "name": "UK visa applicants from some countries"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [2125, 2124, 2123, 2122, 2092, 2091, 2090, 2047],
- "vector": [
- -0.03585372492671013, 0.0784301683306694, 0.021232711151242256, -0.10804212093353271,
- 0.034080054610967636, -0.07126878947019577, 0.02797403559088707, 0.07199748605489731,
- 0.09674681723117828, -0.11080794781446457, -0.00676985178142786, 0.015460347756743431,
- 0.05055913329124451, -0.06680108606815338, 0.03921797126531601, -0.1739525943994522,
- -0.11105681210756302, -0.02229374647140503, -0.028330009430646896, -0.0957639217376709,
- -0.10358577966690063, 0.0016581404488533735, 0.043744876980781555, 0.11820735782384872,
- -0.03287825360894203, 0.06818747520446777, 0.08521395921707153, 0.11487068235874176,
- -0.033043209463357925, 0.06725624948740005, -0.028778379783034325, -0.06820607930421829,
- 0.14074376225471497, 0.028898343443870544, 0.010744933970272541, 0.10645325481891632,
- 0.033626407384872437, -0.026239044964313507, -0.01418675109744072,
- -0.012803216464817524, 0.04861316457390785, 0.21719525754451752, -0.015804357826709747,
- -0.00488676130771637, 0.043138664215803146, -0.04117005318403244, 0.02713748812675476,
- 0.03460369631648064, 0.008589336648583412, 0.012974093668162823, 0.019803443923592567,
- 0.03139210864901543, -0.019901830703020096, 0.03580231964588165, -0.077435202896595,
- 0.05329341068863869, 0.038015253841876984, 0.0024730637669563293, 0.019876156002283096,
- -0.11223392188549042, 0.029746901243925095, -0.17690369486808777, -0.08462365716695786,
- -0.0875653326511383, 0.06308794021606445, -0.09648976475000381, -0.03315271437168121,
- 0.008995858952403069, -0.0025152384769171476, 0.08998632431030273, 0.0485144779086113,
- -0.012092914432287216, -0.00047271818039007485, -0.029879063367843628,
- 0.015398846007883549, -0.04279191419482231, -0.014722561463713646, 0.2002440243959427,
- -0.08376714587211609, 0.013607735745608807, 0.11884643137454987, -0.13478809595108032,
- 0.384366899728775, -0.009614551439881325, -0.002488777507096529, 0.00489776860922575,
- 0.07266127318143845, 0.04667020961642265, 0.03605547919869423, 0.01348206214606762,
- -0.01203390583395958, 0.03629215806722641, -0.034882474690675735,
- -0.0015414528315886855, 0.06691594421863556, 0.010394719429314137,
- -0.049416907131671906, -0.011056390590965748, -0.025235585868358612,
- -0.05607006326317787, 0.0020552631467580795, -0.03193235397338867, 0.09782001376152039,
- 0.09933912754058838, -0.04747108370065689, -0.009077457711100578, 0.11022534966468811,
- -0.017667703330516815, 0.04804366081953049, -0.010636409744620323, 0.05362526699900627,
- 0.05493440106511116, 0.10748568177223206, 0.024619562551379204, 0.03725571930408478,
- -0.04686861112713814, 0.004429408814758062, 0.08281663060188293, 0.07577263563871384,
- 0.02678648941218853, -0.010870384983718395, 0.058116402477025986, 0.059299297630786896,
- -0.07454651594161987, 0.041238974779844284, -0.022136328741908073,
- -0.031205151230096817, -0.02468259260058403, -0.04693257436156273, 0.034312549978494644,
- -0.0742807611823082, -0.19745968282222748, 0.009257111698389053, 0.051939986646175385,
- 0.028532616794109344, -0.018860314041376114, -0.0005388628924265504,
- -0.03725990280508995, 0.04495852440595627, -0.0021241356153041124,
- -0.012670865282416344, 0.08590058237314224, -0.016864359378814697, 0.05743905529379845,
- 0.09968125075101852, 0.013256835751235485, -0.07006478309631348, -0.032132502645254135,
- -0.035080686211586, -0.00044702127343043685, 0.09729482978582382, -0.13897942006587982,
- -0.047750748693943024, 0.00821814313530922, 0.03519843891263008, 0.6611953377723694,
- 0.10126110911369324, 0.13388076424598694, -0.006092489697039127, -0.0004472171131055802,
- 0.1713758409023285, 0.04580329358577728, 0.080781951546669, -0.04839885234832764,
- -0.06451855599880219, 0.03007165528833866, -0.06857878714799881, -0.04272220656275749,
- 0.02345830388367176, 0.023088578134775162, 0.08210868388414383, 0.012262080796062946,
- 0.08511466532945633, -0.046076495200395584, -0.09833251684904099, 0.0017082580598071218,
- 0.026884036138653755, 0.013186311349272728, -0.12850624322891235, -0.05841780826449394,
- 0.04563787579536438, 0.08921866863965988, -0.0896434560418129, 0.032261740416288376,
- -0.09044160693883896, 0.043431561440229416, -0.01764988899230957, 0.056877631694078445,
- -0.006494759116321802, 0.03802953287959099, 0.025312120094895363, 0.04666226729750633,
- 0.013266973197460175, -0.06629470735788345, 0.03197098895907402, 0.1016942635178566,
- 0.024589987471699715, -0.02160097099840641, 0.10619523376226425, -0.09489300101995468,
- 0.018647247925400734, 0.03039681166410446, 0.14915400743484497, -0.132527157664299,
- -0.050977256149053574, 0.004420167300850153, -0.04582031071186066, 0.07046356052160263,
- -0.00673844525590539, -0.04831032082438469, -0.06846039742231369, 0.03063047304749489,
- 0.030467960983514786, 0.06953474134206772, 0.05304379761219025, -0.023813914507627487,
- 0.05842128396034241, 0.07514731585979462, 0.042015887796878815, -0.03122316487133503,
- 0.0734901949763298, 0.033183127641677856, -0.08071091771125793, -0.00423488998785615,
- 0.03622813522815704, 0.019167955964803696, -0.007579402066767216, -0.012383467517793179,
- 0.04290642961859703, -0.016611604019999504, -0.05921277031302452, 0.03660191595554352,
- 0.007417755201458931, -0.012530321255326271, 0.08799496293067932, -0.06084859371185303,
- -0.045993372797966, -0.03867197409272194, -0.037358514964580536, 0.028060682117938995,
- -0.014426492154598236, 0.07294334471225739, 0.08860772103071213, 0.03336770832538605,
- 0.020432880148291588, 0.022657018154859543, 0.06811030209064484, 0.043493956327438354,
- 0.05671592801809311, 0.0344887301325798, -0.04288100078701973, -0.03693250194191933,
- -0.007968674413859844, 0.0019971237052232027, 0.06091111898422241, 0.05356830358505249,
- -0.11735665798187256, 0.00024329610459972173, 0.0020171995274722576,
- -0.04230096936225891, -0.07702185958623886, -0.02258320525288582, 0.013914477080106735,
- -0.03853757679462433, -0.04968512803316116, -0.048619773238897324, -0.08215289562940598,
- -0.005326016340404749, 0.029534604400396347, -0.05114000663161278,
- -0.005536159034818411, -0.09715315699577332, 0.008438695222139359, -0.03828413784503937,
- 0.062036529183387756, -0.016903838142752647, 0.023299308493733406, 0.02640788070857525,
- -0.08675741404294968, -0.01643853634595871, 0.041002802550792694, -0.09214845299720764,
- -0.025872746482491493, -0.05198456719517708, -0.042325593531131744, 0.03574834018945694,
- -0.00901007279753685, -0.03167618066072464, 0.03541680425405502, 0.0638069212436676,
- 0.07309792935848236, -0.0289483480155468, 0.012631184421479702, 0.03883613646030426,
- -0.038627028465270996, 0.025379816070199013, 0.08446473628282547, -0.05623723939061165,
- -0.0031483008060604334, -0.041756656020879745, -0.04385373741388321, -0.05009775608778,
- 0.0033721046056598425, -0.04846314713358879, 0.03801974281668663, -0.01827288791537285,
- 0.01623130403459072, -0.031454477459192276, -0.04194536805152893, 0.08540386706590652,
- -0.08683526515960693, -0.08776426315307617, -0.06187601387500763, 0.09945331513881683,
- 0.024991653859615326, -0.011590659618377686, -0.00562530942261219, -0.05920450761914253,
- 0.03549609333276749, 0.01659443974494934, 0.014130327850580215, 0.05571949854493141,
- 0.04303618520498276, -0.041578441858291626, 0.038269925862550735, 0.0515311099588871,
- 0.010880259796977043, 0.0006074431003071368, 0.09209869056940079, 0.4178326725959778,
- -0.18067215383052826, 0.07159187644720078, 0.07555794715881348, 0.018179520964622498,
- 0.044724997133016586, -0.04245646670460701, 0.06942718476057053, 0.09020090848207474,
- 0.1310543715953827, 0.11636366695165634, -0.05259614437818527, -0.030004147440195084,
- -0.08047238737344742, 0.08169200271368027, 0.023087486624717712, 0.009294926188886166,
- -0.00010430920519866049, -0.06736702471971512, -0.034777022898197174,
- -0.012136797420680523, -0.04990252107381821, 0.03855236992239952, 0.008096632547676563,
- -0.08896314352750778, 0.00894494354724884, 0.03760593757033348, 0.02306765876710415,
- 0.006095662247389555, 0.07812716066837311, -0.01384304091334343, 0.028026632964611053,
- 0.013544976711273193, 0.06549190729856491, -0.05944858118891716, 0.058535318821668625,
- -0.03479805216193199, -0.12358678877353668, 0.10691072046756744, 0.02220270410180092,
- 0.03227579593658447, 0.030514614656567574, -0.01090297382324934, 0.06961798667907715,
- -0.07447414100170135, -0.06551729142665863, 0.02055048756301403, 0.022939614951610565,
- 0.02172706462442875, 0.052062686532735825, 0.1553381383419037, -0.05576467141509056,
- -0.021548369899392128, -0.09576795995235443, 0.040445663034915924, 0.13524766266345978,
- -0.022633476182818413, 0.01720726303756237, 0.0385429672896862, 0.014849457889795303,
- 0.0026110413018614054, -0.022803228348493576, -0.10535959154367447,
- 0.015620483085513115, -0.0169414971023798, 0.08798575401306152, 0.03423198312520981,
- -0.06087751314043999, -0.12235477566719055, -0.031249674037098885,
- -0.053176891058683395, 0.015816735103726387, 0.1246332973241806, -0.08689478039741516,
- 0.006443281192332506, -0.021544495597481728, 0.023837897926568985, 0.04273802787065506,
- -0.05274057760834694, -0.022401485592126846, -0.0833427757024765, 0.03944972902536392,
- 0.044355358928442, 0.06764310598373413, -0.03847863897681236, 0.08266003429889679,
- -0.09637768566608429, 0.05527354031801224, 0.05611981824040413, -0.05206402391195297,
- 0.09288152307271957, -0.041564829647541046, 0.027543088421225548, 0.01861158013343811,
- -0.05480356514453888, 0.0025739220436662436, -0.047144051641225815,
- -0.013269334100186825, -0.11919448524713516, -0.0449741892516613, -0.05356227234005928,
- -0.08401191234588623, 0.05984320864081383, -0.012749354355037212, -0.010360227897763252,
- -0.003651757026091218, 0.0047366200014948845, 0.020991584286093712, 0.0427047424018383,
- 0.025614991784095764, -0.1689848005771637, -0.058178819715976715,
- -0.0010460487101227045, 0.03320310637354851, -0.04175916686654091,
- -0.032141126692295074, 0.010840903967618942, 0.02293831668794155, 0.039731137454509735,
- -0.041757501661777496, 0.023824363946914673, -0.0876501202583313, 0.042577337473630905,
- -0.08181691914796829, -0.3959599435329437, 0.034289758652448654, -0.04262273758649826,
- 0.03046294115483761, 0.02935730293393135, -0.07846467941999435, 0.037080634385347366,
- 0.033209796994924545, -0.026518559083342552, 0.05595306307077408, -0.043406687676906586,
- 0.0498613566160202, -0.03108220174908638, -0.06069472059607506, -0.01718670129776001,
- -0.09939508140087128, -0.022593917325139046, 0.05006018280982971, -0.02594578079879284,
- -0.10492535680532455, -0.0683298334479332, 0.0007078460184857249, -0.010732890106737614,
- 0.059282734990119934, 0.00801733136177063, 0.01197498943656683, -0.07074419409036636,
- -0.06037084385752678, 0.03438877686858177, 0.04587845131754875, -0.006724718026816845,
- -0.0679807960987091, 0.010146038606762886, 0.09164296835660934, -0.01200998667627573,
- 0.13535535335540771, 0.04166571795940399, -0.015475433319807053, -0.08342605084180832,
- 0.09249308705329895, 0.07396115362644196, 0.18518371880054474, -0.022187896072864532,
- 0.022299442440271378, 0.024438776075839996, 0.15934450924396515, 0.002190680941566825,
- 0.0418626070022583, -0.03651871532201767, 0.05028015747666359, 0.022068072110414505,
- 0.039125438779592514, 0.12079787254333496, -0.07715097814798355, 0.013165637850761414,
- -0.05325013026595116, -0.026573628187179565, -0.0271927397698164, -0.04258684068918228,
- 0.21383537352085114, 0.02854640781879425, 0.028164856135845184, -0.010402726009488106,
- -0.09278285503387451, -0.00723296357318759, -0.08937923610210419, -0.10466922074556351,
- -0.028106631711125374, 0.014558285474777222, 0.025546612218022346,
- -0.051318589597940445, -0.11961556226015091, -0.03595341742038727, 0.004790556617081165,
- 0.00800944585353136, 0.07196390628814697, -0.07833148539066315, 0.07160570472478867,
- -0.05965089797973633, 0.12037819623947144, 0.0589502714574337, 0.023271972313523293,
- 0.030585454776883125, 0.06221470236778259, -0.00330521771684289, -0.04476551711559296,
- -0.05541229993104935, -0.10769511014223099, -0.03156417980790138, 0.1382499486207962,
- -0.0255031269043684, 0.10076878219842911, -0.003420390887185931, -0.05690539628267288,
- -0.041678451001644135, 0.018918616697192192, -0.004908813163638115,
- -0.027791660279035568, -0.4357093274593353, -0.045063115656375885, 0.1555892378091812,
- 0.005396201740950346, 0.014246052131056786, 0.07408101856708527, 0.0233730748295784,
- -0.07791900634765625, -0.019232459366321564, -0.10305285453796387, 0.17446750402450562,
- -0.009120463393628597, 0.09331972897052765, -0.10371627658605576, 0.015431130304932594,
- 0.06975116580724716, -0.019465770572423935, -0.01911192573606968, 0.03104337677359581,
- -0.25565385818481445, -0.0020775769371539354, -0.054723724722862244, 0.1333393156528473,
- 0.03879191353917122, 0.04567700996994972, 0.09477821737527847, -0.057974670082330704,
- -0.013630995526909828, 0.043512776494026184, -0.01314394362270832, 0.04227433353662491,
- 0.01904597505927086, -0.051757145673036575, 0.0814957544207573, 0.055455345660448074,
- 0.0415196418762207, -0.023439355194568634, 12.037606239318848, 0.07563379406929016,
- 0.08551591634750366, -0.06793195754289627, 0.011038018390536308, -0.06715937703847885,
- 0.0321291945874691, -0.07904019951820374, 0.05229758098721504, 0.10423047840595245,
- -0.0014839112991467118, -0.0380861759185791, 0.012921587564051151, -0.0900261327624321,
- 0.007305892650038004, 0.0015459288842976093, -0.04345104098320007,
- -0.029641158878803253, 0.030088501051068306, -0.03516441956162453,
- -0.038172099739313126, 0.020981812849640846, 0.07730479538440704, 0.03812020272016525,
- -0.10061948001384735, 0.003399322973564267, -0.014178446494042873,
- -0.016905251890420914, -0.003192535601556301, 0.016118932515382767,
- -0.052150122821331024, 0.0340803898870945, 0.07430827617645264, 0.01727074198424816,
- 0.051209405064582825, -0.0058596692979335785, 0.061784736812114716, 0.03311087191104889,
- 0.0013754275860264897, 0.05222174525260925, -0.017176209017634392, 0.026594094932079315,
- 0.018524495884776115, 0.0991196259856224, 0.06851419806480408, 0.017034238204360008,
- 0.04772770777344704, 0.06646478921175003, 0.018166616559028625, 0.06365925073623657,
- 0.10209700465202332, 0.028811804950237274, 0.12410295009613037, 0.04749893769621849,
- 0.011005677282810211, 0.06072660908102989, -0.009019429795444012, -0.08022593706846237,
- 0.08385910093784332, 0.05884993448853493, -0.05809807777404785, 0.12328296154737473,
- 0.053690630942583084, 0.14778763055801392, 0.04604185372591019, 0.059112705290317535,
- 0.099462129175663, 0.10629221051931381, -0.18889832496643066, -0.04788553714752197,
- -0.005805480293929577, -0.0695757120847702, -0.057076241821050644, 0.05112859606742859,
- 0.039485134184360504, -0.02830248884856701, 0.05553745850920677, -0.014342946000397205,
- 0.035049255937337875, -0.02579154074192047, -0.023141035810112953, 0.00826972909271717,
- -0.0572589747607708, -0.012791676446795464, 0.08214768767356873, -0.01072187814861536,
- 0.09754033386707306, 0.12562452256679535, 0.03650076687335968, -0.09118065237998962,
- -0.04893714562058449, 0.12581798434257507, -0.006416492164134979, -0.0524928905069828,
- -0.00828536506742239, -0.05867176502943039, -0.016124339774250984, -0.1559504121541977,
- 0.08818808197975159, 0.14977391064167023, -0.13485339283943176, -0.041943758726119995,
- -0.02411171793937683, 0.09124011546373367, -0.003061399096623063, -0.026787331327795982,
- -0.07688426226377487, 0.04876777529716492, 0.022289365530014038, 0.021590357646346092,
- -0.07272571325302124, 0.07813061773777008, 0.08613031357526779, -0.036356519907712936,
- 0.06056411191821098, 0.0785423293709755, -0.04394261911511421, -0.025857238098978996,
- 0.0532088503241539, 0.022479025647044182, -0.11812140792608261, -0.039018940180540085,
- -0.035499799996614456, -0.010416562668979168, 0.018049342557787895,
- -0.06582333147525787, 0.0025960614439100027, 0.05182456970214844, -0.03713798150420189,
- -0.01129207480698824, 0.0026133358478546143, 0.0637616515159607, 0.06610541045665741,
- -0.015605060383677483, 0.07299023121595383, -0.05103670060634613, -0.05618442967534065,
- 0.03907947614789009, 0.033624302595853806, 0.04586968198418617, -0.05420425906777382,
- -0.06407380104064941, -0.01996871456503868, -0.10592696815729141, -0.005478540901094675,
- 0.14262506365776062, 0.04626329988241196, 0.08397870510816574, 0.025113124400377274,
- -0.08146486431360245, -0.033757489174604416, 0.08590273559093475, 0.011932816356420517,
- -0.0061310394667088985, 0.04656250774860382, -0.07374287396669388,
- 0.0015621734783053398, 0.10304442793130875, -0.03636912256479263,
- -0.0063271913677453995, -0.012664450332522392, -0.0751897320151329, 0.10706712305545807,
- 0.06212718039751053, 0.10978211462497711, 0.0024721180088818073, 0.05947662517428398,
- 0.00688522681593895, -0.004951216280460358, 0.019055765122175217,
- -0.0032209614291787148, -0.07989716529846191, -0.04670944809913635,
- -0.05854836851358414, 0.047807179391384125, 0.07969319820404053, 0.04652411863207817,
- -0.10410907864570618, -0.00872577354311943, -0.06415079534053802
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 335,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 189,
- "similarity": 0.9982776045799255
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 309,
- "similarity": 0.9978809356689453
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 206,
- "similarity": 0.9977169036865234
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Foxglove"],
- "epoch_date_downloaded": 1664323200,
- "epoch_date_modified": 1665619200,
- "epoch_date_submitted": 1664323200,
- "flag": null,
- "report_number": 2125,
- "source_domain": "foxglove.org.uk",
- "submitters": ["Khoa Lam"],
- "title": "Legal action to challenge Home Office use of secret algorithm to assess visa applications",
- "url": "https://www.foxglove.org.uk/2017/10/29/legal-action-to-challenge-home-office-use-of-secret-algorithm-to-assess-visa-applications/"
- },
- {
- "__typename": "Report",
- "authors": ["Foxglove"],
- "epoch_date_downloaded": 1664323200,
- "epoch_date_modified": 1665619200,
- "epoch_date_submitted": 1664323200,
- "flag": null,
- "report_number": 2124,
- "source_domain": "foxglove.org.uk",
- "submitters": ["Khoa Lam"],
- "title": "Update: papers filed for judicial review of the Home Office’s visa algorithm",
- "url": "https://www.foxglove.org.uk/2020/06/22/update-papers-filed-for-judicial-review-of-the-home-offices-visa-algorithm/"
- },
- {
- "__typename": "Report",
- "authors": ["Joint Council for the Welfare of Immigrants"],
- "epoch_date_downloaded": 1664323200,
- "epoch_date_modified": 1665619200,
- "epoch_date_submitted": 1664323200,
- "flag": null,
- "report_number": 2123,
- "source_domain": "jcwi.org.uk",
- "submitters": ["Khoa Lam"],
- "title": "We won! Home Office to stop using racist visa algorithm",
- "url": "https://www.jcwi.org.uk/news/we-won-home-office-to-stop-using-racist-visa-algorithm"
- },
- {
- "__typename": "Report",
- "authors": ["BBC News"],
- "epoch_date_downloaded": 1664323200,
- "epoch_date_modified": 1665619200,
- "epoch_date_submitted": 1664323200,
- "flag": null,
- "report_number": 2122,
- "source_domain": "bbc.com",
- "submitters": ["Anonymous"],
- "title": "Home Office drops 'racist' algorithm from visa decisions",
- "url": "https://www.bbc.com/news/technology-53650758"
- },
- {
- "__typename": "Report",
- "authors": ["Foxglove"],
- "epoch_date_downloaded": 1664323200,
- "epoch_date_modified": 1665273600,
- "epoch_date_submitted": 1664323200,
- "flag": null,
- "report_number": 2092,
- "source_domain": "foxglove.org.uk",
- "submitters": ["Khoa Lam"],
- "title": "Home Office says it will abandon its racist visa algorithm - after we sued them",
- "url": "https://www.foxglove.org.uk/2020/08/04/home-office-says-it-will-abandon-its-racist-visa-algorithm-after-we-sued-them/"
- },
- {
- "__typename": "Report",
- "authors": ["Natasha Lomas"],
- "epoch_date_downloaded": 1664323200,
- "epoch_date_modified": 1665273600,
- "epoch_date_submitted": 1664323200,
- "flag": null,
- "report_number": 2091,
- "source_domain": "techcrunch.com",
- "submitters": ["Srishti Khemka (CSET)"],
- "title": "UK commits to redesign visa streaming algorithm after challenge to 'racist' tool",
- "url": "https://techcrunch.com/2020/08/04/uk-commits-to-redesign-visa-streaming-algorithm-after-challenge-to-racist-tool/"
- },
- {
- "__typename": "Report",
- "authors": ["Nardos Engada", " Tim Richards"],
- "epoch_date_downloaded": 1664323200,
- "epoch_date_modified": 1665273600,
- "epoch_date_submitted": 1664323200,
- "flag": null,
- "report_number": 2090,
- "source_domain": "kingsleynapley.co.uk",
- "submitters": ["Srishti Khemka (CSET)"],
- "title": "The use of Artificial Intelligence by the Home Office to stream visa applications",
- "url": "https://www.kingsleynapley.co.uk/insights/blogs/immigration-law-blog/the-use-of-artificial-intelligence-by-the-home-office-to-stream-visa-applications"
- },
- {
- "__typename": "Report",
- "authors": ["Henry McDonald"],
- "epoch_date_downloaded": 1663977600,
- "epoch_date_modified": 1664323200,
- "epoch_date_submitted": 1663977600,
- "flag": null,
- "report_number": 2047,
- "source_domain": "theguardian.com",
- "submitters": ["Khoa Lam"],
- "title": "AI system for granting UK visas is biased, rights groups claim",
- "url": "https://www.theguardian.com/uk-news/2019/oct/29/ai-system-for-granting-uk-visas-is-biased-rights-groups-claim"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "uk-home-office",
- "name": "UK Home Office"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "uk-home-office",
- "name": "UK Home Office"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "uk-immigrant-newlyweds",
- "name": "UK immigrant newlyweds"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [2121, 2120, 2119, 2048],
- "vector": [
- -0.07918643206357956, 0.06520020961761475, 0.012714116834104061, -0.07173771411180496,
- 0.053731195628643036, -0.0896635428071022, 0.024094298481941223, 0.05355186015367508,
- 0.1026977151632309, -0.11216986179351807, -0.02199694514274597, 0.03986607491970062,
- 0.04676152765750885, -0.0780431255698204, 0.027498934417963028, -0.1281086802482605,
- -0.10442095994949341, -0.02961672656238079, -0.012948736548423767, -0.10801587998867035,
- -0.13178355991840363, 0.014626670628786087, 0.06525513529777527, 0.10688106715679169,
- -0.05038606747984886, 0.06127813458442688, 0.08007162809371948, 0.11572565138339996,
- -0.024444477632641792, 0.026157263666391373, -0.026406878605484962,
- -0.040105585008859634, 0.13585199415683746, 0.03226717188954353, 0.022218642756342888,
- 0.09267572313547134, 0.04397106543183327, -0.0490989051759243, -0.028082771226763725,
- -0.01813068985939026, 0.046772196888923645, 0.2028975933790207, -0.01994270645081997,
- 0.005993751809000969, 0.029933277517557144, -0.02863367274403572, 0.02885627932846546,
- 0.016405658796429634, 0.01709425076842308, 0.003870569635182619, 0.030935047194361687,
- 0.010905800387263298, -0.021635349839925766, 0.02659597061574459, -0.06490562111139297,
- 0.05819758027791977, 0.0037794325035065413, 0.023608896881341934, -0.004209091421216726,
- -0.11451579630374908, -0.04312146082520485, -0.18027248978614807, -0.07323522120714188,
- -0.05008278787136078, 0.06710467487573624, -0.08408573269844055, -0.03662566840648651,
- -0.022141577675938606, -0.00679186312481761, 0.06892978399991989, 0.06662192940711975,
- -0.04163511469960213, 0.016269944608211517, 0.0004975621122866869,
- -0.009888284839689732, 0.002999617252498865, 0.036916762590408325, 0.17596837878227234,
- -0.06605111062526703, 0.046986062079668045, 0.11814423650503159, -0.09325272589921951,
- 0.38484257459640503, 0.04577457904815674, -0.004212976433336735, 0.014738217927515507,
- 0.06867299228906631, 0.04394949972629547, 0.028599269688129425, 0.031136404722929,
- -0.005023497622460127, 0.0785427838563919, -0.05460645258426666, 0.015551144257187843,
- 0.08116160333156586, 0.02628336474299431, -0.03416604548692703, -0.07177788764238358,
- -0.011886118911206722, -0.06603535264730453, 0.021997662261128426, -0.0600571483373642,
- 0.0922790914773941, 0.06078064814209938, -0.08209671080112457, -0.00740448571741581,
- 0.0861406922340393, -0.021791033446788788, 0.03774087131023407, -0.0295404102653265,
- 0.023659776896238327, 0.03623863309621811, 0.09760359674692154, 0.02151285670697689,
- 0.022675082087516785, -0.03055894933640957, 0.03585565835237503, 0.06790004670619965,
- 0.08225192129611969, 0.03878659009933472, -0.010856784880161285, 0.05312761291861534,
- 0.11207766085863113, -0.09834770858287811, -0.0015825774753466249, 0.005428127013146877,
- -0.06805877387523651, -0.01989332027733326, -0.028303802013397217, 0.03344741463661194,
- -0.0523422546684742, -0.19916020333766937, -0.0005846924614161253, 0.022862019017338753,
- 0.01463252305984497, -0.015380136668682098, -0.014418372884392738, -0.04226192086935043,
- 0.07726257294416428, 0.00862323772162199, 0.0011080269468948245, 0.08914145827293396,
- -0.007336455397307873, 0.058392297476530075, 0.08786895126104355, 0.02004222758114338,
- -0.05804997310042381, -0.04104215279221535, -0.03421177342534065, 0.013002142310142517,
- 0.09046843647956848, -0.13171198964118958, -0.05107497796416283, 0.009668792597949505,
- 0.031776778399944305, 0.6474344730377197, 0.07094330340623856, 0.08712251484394073,
- -0.008501287549734116, -0.03599746897816658, 0.17530587315559387, 0.0028694598004221916,
- 0.07168598473072052, -0.03403197601437569, -0.06726490706205368, 0.04031243920326233,
- -0.028986215591430664, -0.013015471398830414, 0.034279387444257736, 0.01963246800005436,
- 0.08105689287185669, 0.008621367625892162, 0.12498781085014343, 0.022046849131584167,
- -0.0901479721069336, -0.01188068836927414, 0.019179873168468475, 0.00040818704292178154,
- -0.1261712908744812, -0.050910647958517075, 0.03417389094829559, 0.04782149940729141,
- -0.07212162762880325, 0.02069997973740101, -0.06176452338695526, 0.05286923795938492,
- -0.0192203838378191, 0.03497449308633804, 0.0029912712052464485, 0.010213890112936497,
- 0.034920524805784225, 0.029317764565348625, 0.015624672174453735, -0.07772577553987503,
- 0.02903129532933235, 0.05504855141043663, 0.02438996732234955, -0.023570222780108452,
- 0.08894580602645874, -0.06745488941669464, 0.03752848505973816, 0.013903102837502956,
- 0.1886807233095169, -0.12962518632411957, 0.008425287902355194, 0.008324170485138893,
- -0.02923658676445484, 0.05249287560582161, 0.01155416015535593, -0.06377080827951431,
- -0.0871504619717598, 0.003657569410279393, 0.04715259373188019, 0.0937018096446991,
- 0.04299745336174965, -0.05118656903505325, 0.034921273589134216, 0.0073966337367892265,
- 0.0395684689283371, -0.07655752450227737, 0.08566977083683014, 0.03467809408903122,
- -0.0849774181842804, 0.011940891854465008, 0.026643535122275352, 0.03912539780139923,
- 0.009840842336416245, -0.0056269168853759766, 0.05353701859712601,
- -0.006353897508233786, -0.03396395221352577, 0.08340298384428024,
- -0.0006709435256198049, 0.0034639229997992516, 0.08341612666845322,
- -0.08409347385168076, -0.03263586759567261, -0.04249493032693863, -0.0729958564043045,
- 0.0008112748619168997, -0.03313789144158363, 0.06951837241649628, 0.08228731155395508,
- 0.05018866807222366, 0.012944092974066734, 0.03748045489192009, 0.044294264167547226,
- -0.009784729219973087, 0.0843270942568779, 0.04931706190109253, -0.06447138637304306,
- -0.00725928507745266, 0.013080241158604622, 0.0006075984565541148, 0.07715847343206406,
- 0.021925872191786766, -0.08555974811315536, 0.009023361839354038,
- -0.0006214119493961334, -0.05274888873100281, -0.07863160222768784,
- -0.05905422195792198, 0.001017020083963871, -0.02785378135740757, -0.08961066603660583,
- -0.03915631026029587, -0.06722550094127655, 0.0031918452586978674, 0.07677769660949707,
- -0.0324258953332901, 0.005823539569973946, -0.11249109357595444, 0.025095921009778976,
- -0.016207944601774216, 0.04973684623837471, -0.023811066523194313,
- -0.023925550282001495, 0.014176083728671074, -0.08972781896591187, -0.04538356512784958,
- 0.029931655153632164, -0.11478164047002792, -0.05479205399751663, -0.03718815743923187,
- -0.03240201994776726, 0.026510246098041534, 0.025255654007196426, -0.01965804398059845,
- -0.0013745380565524101, 0.04728914424777031, 0.0546448677778244, -0.021843187510967255,
- 0.008158298209309578, 0.05304422229528427, -0.02748785726726055, 0.03855108097195625,
- 0.0848686471581459, -0.02520298771560192, 0.03459332510828972, -0.06692349165678024,
- -0.07512068003416061, -0.06290769577026367, -0.04615508392453194, -0.04452536255121231,
- 0.05021229758858681, -0.01788056455552578, -0.014187641441822052, -0.027083562687039375,
- -0.050974808633327484, 0.0788036435842514, -0.07550250738859177, -0.06229788064956665,
- -0.08946526050567627, 0.08905377984046936, -0.0007058458868414164, 0.012428848072886467,
- -0.0004621773259714246, -0.0847669392824173, 0.05547609180212021, 0.03246902674436569,
- -0.001462525106035173, 0.059979669749736786, 0.057507410645484924,
- -0.025133084505796432, 0.07134243845939636, 0.06519988179206848, -0.0184402447193861,
- 0.004147171042859554, 0.0925958901643753, 0.4357040524482727, -0.07241775840520859,
- 0.08031556755304337, 0.0674218013882637, 0.01975446380674839, 0.033816635608673096,
- 0.0029649692587554455, 0.053800903260707855, 0.0785437598824501, 0.13885754346847534,
- 0.12815336883068085, -0.02764010988175869, -0.042015716433525085, -0.1208740845322609,
- 0.08893361687660217, 0.009871447458863258, 0.02091842144727707, 0.038257308304309845,
- -0.06300363689661026, -0.03393019735813141, -0.018676400184631348, -0.06619895249605179,
- 0.047993022948503494, 0.005737700499594212, -0.08757434785366058, 0.002950375434011221,
- 0.017592595890164375, 0.028556888923048973, -0.0035939672961831093, 0.05230863764882088,
- -0.02537694200873375, 0.020356958732008934, -0.00788798276335001, 0.06355144828557968,
- -0.034853000193834305, 0.017299961298704147, -0.06812664121389389, -0.08783161640167236,
- 0.07127432525157928, 0.02838151715695858, 0.06119801476597786, 0.08529412746429443,
- -0.013941084034740925, 0.04575403779745102, -0.0914369523525238, -0.06334681808948517,
- 0.030783534049987793, 0.00347327534109354, 0.033079929649829865, 0.04719403386116028,
- 0.148458331823349, -0.029200870543718338, -0.017211202532052994, -0.07217279821634293,
- 0.03204978629946709, 0.11757408827543259, -0.022820856422185898, 0.0012113595148548484,
- 0.041808828711509705, 0.0324450246989727, 0.031616345047950745, -0.00978416670113802,
- -0.0983421728014946, 0.021025829017162323, -0.02048345096409321, 0.07233192026615143,
- 0.03980694338679314, -0.059357672929763794, -0.08966687321662903, -0.027172408998012543,
- -0.06012531369924545, 0.046766381710767746, 0.11688407510519028, -0.08026690781116486,
- 0.020375635474920273, -0.03316275775432587, 0.02302749827504158, -0.0038982515688985586,
- -0.06425310671329498, -0.03459012135863304, -0.05320436507463455, 0.03580280393362045,
- 0.03846084699034691, 0.06002732366323471, -0.07257530838251114, 0.07504674792289734,
- -0.10109731554985046, 0.031238863244652748, 0.03662063926458359, -0.05439753830432892,
- 0.009113067761063576, -0.01937127858400345, 0.03035423904657364, -0.017069723457098007,
- -0.027919955551624298, -0.06343329697847366, -0.05277159437537193,
- 0.0005313674919307232, -0.10899841785430908, -0.04904494062066078,
- -0.027248132973909378, -0.06928291916847229, 0.05406041443347931, -0.023840349167585373,
- -0.004842157009989023, -0.0394587479531765, -0.019282573834061623, -0.00825631432235241,
- 0.043110042810440063, -0.011251725256443024, -0.14245395362377167, -0.07451391220092773,
- -0.022789333015680313, 0.041678089648485184, -0.027976900339126587,
- -0.050263676792383194, -0.0224913377314806, 0.046675778925418854, 0.05563921853899956,
- -0.049965761601924896, -0.004564621485769749, -0.027290431782603264,
- 0.04608062654733658, -0.09113328903913498, -0.35659921169281006, 0.06743223965167999,
- -0.0036387480795383453, 0.05495750904083252, 0.036700621247291565, -0.08552532643079758,
- 0.04708085209131241, 0.0447792112827301, -0.043542880564928055, 0.09136425703763962,
- -0.05389970541000366, 0.05112390220165253, -0.007524932734668255, -0.07825175672769547,
- 0.012010275386273861, -0.09266725927591324, 0.005660352297127247, 0.03952162340283394,
- -0.016645440831780434, -0.1067500114440918, -0.07769139111042023, 0.005126310512423515,
- -0.002264500129967928, 0.043770816177129745, 0.007538110949099064, 0.011929094791412354,
- -0.06917887926101685, -0.06829692423343658, 0.024120008572936058, 0.047099173069000244,
- -0.02104657143354416, -0.05743534862995148, -0.006387150380760431, 0.052387483417987823,
- -0.0005482316482812166, 0.09912603348493576, 0.03230363503098488, -0.006520213559269905,
- -0.08007572591304779, 0.0730452910065651, 0.07715533673763275, 0.18537649512290955,
- -0.004936426877975464, 0.009589908644557, 0.030549827963113785, 0.13325801491737366,
- 0.010755936615169048, 0.05700298771262169, -0.03713566064834595, 0.023114876821637154,
- -0.007743396330624819, 0.010823393240571022, 0.09662719815969467, -0.07071446627378464,
- -0.0030073297675698996, -0.05125213414430618, -0.03276088461279869,
- -0.05230908468365669, -0.05241509899497032, 0.1868555247783661, 0.015553968958556652,
- 0.03283237665891647, 0.005886775441467762, -0.053017910569906235,
- -0.0057722353376448154, -0.09558454900979996, -0.06266406923532486,
- -0.012551362626254559, 0.024473991245031357, 0.03599739074707031, -0.05609552934765816,
- -0.1348596066236496, -0.03202172368764877, -0.009214198216795921,
- -0.0065594082698225975, 0.07192491739988327, -0.09214915335178375, 0.08255921304225922,
- -0.09675095230340958, 0.149205282330513, 0.029748432338237762, 0.025923458859324455,
- 0.043190907686948776, 0.10459068417549133, -0.0055567179806530476, -0.06129927933216095,
- -0.04253937676548958, -0.0736863911151886, -0.06502828001976013, 0.12337202578783035,
- -0.030785711482167244, 0.11074922978878021, -0.009525262750685215,
- -0.015547812916338444, -0.07070381939411163, 0.02592771127820015, -0.039862263947725296,
- -0.030715622007846832, -0.4083611071109772, -0.04594697430729866, 0.1506313532590866,
- 0.0017924793064594269, -0.0025291137862950563, 0.07622437924146652,
- 0.011946185491979122, -0.05352664738893509, -0.010115950368344784, -0.10843499004840851,
- 0.14790146052837372, 0.011087855324149132, 0.10688702017068863, -0.08762886375188828,
- 0.0135981859639287, 0.09240716695785522, -0.027481595054268837, -0.048219919204711914,
- 0.009880762547254562, -0.23002487421035767, 0.018630655482411385, -0.026660151779651642,
- 0.13145865499973297, 0.0379655547440052, 0.04844719544053078, 0.08089885115623474,
- -0.052727293223142624, -0.0027068015187978745, 0.0012378625106066465,
- 0.02747717872262001, 0.05657223239541054, -0.00028222461696714163, -0.05110770836472511,
- 0.07080748677253723, 0.07492927461862564, 0.11244608461856842, -0.01610931009054184,
- 12.038933753967285, 0.0798233300447464, 0.07813181728124619, -0.09385188668966293,
- -0.01983434148132801, -0.0645696371793747, 0.04680990055203438, -0.10300643742084503,
- 0.07331819832324982, 0.09409837424755096, 0.0033174564596265554, -0.056945644319057465,
- -0.004779742565006018, -0.07829732447862625, 0.026163775473833084,
- -0.026875462383031845, 0.017349421977996826, -0.05236019566655159, 0.04162391275167465,
- -0.05506186559796333, -0.05518929287791252, 0.036042049527168274, 0.06574209034442902,
- 0.016826756298542023, -0.11869226396083832, 0.029998192563652992, -0.03211166709661484,
- -0.000575549085624516, 0.018028810620307922, -0.007450845092535019,
- -0.02769814431667328, -0.00786871463060379, 0.0984615683555603, 0.005162392742931843,
- 0.08855414390563965, 0.0035586298909038305, 0.014698652550578117, 0.014296173118054867,
- -0.006003923248499632, 0.03352382034063339, -0.018293431028723717, 0.03214054927229881,
- 0.021616797894239426, 0.10719515383243561, 0.05754631757736206, 0.03300125524401665,
- 0.03675583377480507, 0.11903776973485947, -0.006095058284699917, 0.07906736433506012,
- 0.09782209247350693, 0.031524498015642166, 0.09066280722618103, 0.03887508809566498,
- 0.030571745708584785, 0.02974512428045273, 0.03319557383656502, -0.07231970131397247,
- 0.061492934823036194, 0.08037954568862915, -0.06231534481048584, 0.14825251698493958,
- 0.04198846593499184, 0.10989539325237274, 0.034244224429130554, 0.04318487271666527,
- 0.09945579618215561, 0.09132632613182068, -0.20001544058322906, -0.02227894403040409,
- -0.000010377321814303286, -0.0828331857919693, -0.04286739230155945,
- 0.047980401664972305, 0.009825673885643482, -0.003167459974065423, 0.0789492279291153,
- -0.02278284728527069, 0.05028354749083519, -0.03304874897003174, -0.019574476405978203,
- 0.033688317984342575, -0.04333343356847763, -0.01231410726904869, 0.06307877600193024,
- -0.027200374752283096, 0.09561718255281448, 0.1330600529909134, -0.019893348217010498,
- -0.1178431436419487, -0.029698694124817848, 0.07622899115085602, 0.00135518005117774,
- -0.036067865788936615, 0.010907580144703388, -0.07232435047626495,
- -0.021089967340230942, -0.15792253613471985, 0.09510290622711182, 0.12471017986536026,
- -0.08519986271858215, -0.0021027391776442528, -0.011707429774105549,
- 0.08941669762134552, 0.014889460057020187, -0.001078723813407123, -0.049087852239608765,
- 0.0023803042713552713, 0.014097288250923157, 0.03313765674829483, -0.02592593804001808,
- 0.14989668130874634, 0.06439576297998428, -0.039512623101472855, 0.05150996148586273,
- 0.08242683112621307, -0.022065559402108192, -0.04235001653432846, 0.051966238766908646,
- 0.04445323348045349, -0.10240285098552704, -0.028531312942504883, -0.024790717288851738,
- -0.035939399152994156, 0.04064683988690376, -0.05493782088160515, 0.00320337968878448,
- 0.03015643171966076, -0.07618078589439392, -0.036561302840709686, 0.0019345982000231743,
- 0.05575999617576599, 0.10743886977434158, 0.017886660993099213, 0.07111628353595734,
- -0.0667208880186081, -0.0634608119726181, 0.039868250489234924, 0.02992352470755577,
- 0.0716572105884552, -0.03100917488336563, -0.018932988867163658, -0.018579483032226562,
- -0.0961836501955986, 0.007422753609716892, 0.1522400826215744, 0.07003148645162582,
- 0.0724356546998024, 0.0454658642411232, -0.05862566828727722, -0.008032924495637417,
- 0.09705521911382675, 0.018420178443193436, -0.013448940590023994, 0.04784692823886871,
- -0.015717092901468277, -0.02268238365650177, 0.08681171387434006, -0.01054622232913971,
- -0.012402717024087906, 0.037711892277002335, -0.1557755172252655, 0.08214378356933594,
- 0.052998341619968414, 0.070584736764431, 0.014304367825388908, 0.06919350475072861,
- 0.025684094056487083, 0.006518699694424868, -0.000731065811123699, 0.004322387743741274,
- -0.07213114202022552, -0.05579341575503349, -0.06382077187299728, 0.01976783014833927,
- 0.08751289546489716, 0.06559797376394272, -0.10850116610527039, -0.022908823564648628,
- -0.03148550167679787
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 336,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 43,
- "similarity": 0.9980531930923462
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 309,
- "similarity": 0.9980214834213257
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 183,
- "similarity": 0.9979755878448486
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Nigel Morris"],
- "epoch_date_downloaded": 1664323200,
- "epoch_date_modified": 1665619200,
- "epoch_date_submitted": 1664323200,
- "flag": null,
- "report_number": 2121,
- "source_domain": "inews.co.uk",
- "submitters": ["Khoa Lam"],
- "title": "'Sham marriage' algorithm raises fears of discrimination by nationality and age",
- "url": "https://inews.co.uk/news/politics/sham-marriage-algorithm-raises-fears-discrimination-nationality-age-962732"
- },
- {
- "__typename": "Report",
- "authors": ["Public Law Project"],
- "epoch_date_downloaded": 1664323200,
- "epoch_date_modified": 1665619200,
- "epoch_date_submitted": 1664323200,
- "flag": null,
- "report_number": 2120,
- "source_domain": "publiclawproject.org.uk",
- "submitters": ["Khoa Lam"],
- "title": "'Sham marriages' and algorithmic decision-making in the Home Office",
- "url": "https://publiclawproject.org.uk/latest/sham-marriages-and-algorithmic-decision-making-in-the-home-office/"
- },
- {
- "__typename": "Report",
- "authors": ["Tatiana Kazim"],
- "epoch_date_downloaded": 1664323200,
- "epoch_date_modified": 1665619200,
- "epoch_date_submitted": 1664323200,
- "flag": null,
- "report_number": 2119,
- "source_domain": "freemovement.org.uk",
- "submitters": ["Khoa Lam"],
- "title": "Home Office refuses to explain secret sham marriage algorithm",
- "url": "https://freemovement.org.uk/home-office-refuses-to-disclose-inner-workings-of-sham-marriage-algorithm"
- },
- {
- "__typename": "Report",
- "authors": ["Alice Milliken"],
- "epoch_date_downloaded": 1664323200,
- "epoch_date_modified": 1664323200,
- "epoch_date_submitted": 1664323200,
- "flag": null,
- "report_number": 2048,
- "source_domain": "thebureauinvestigates.com",
- "submitters": ["Khoa Lam"],
- "title": "Home Office algorithm to detect sham marriages may contain built-in discrimination",
- "url": "https://www.thebureauinvestigates.com/stories/2021-04-19/home-office-algorithm-sham-marriages"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "tesla",
- "name": "Tesla"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "tesla",
- "name": "Tesla"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "william-varner",
- "name": "William Varner"
- },
- {
- "__typename": "Entity",
- "entity_id": "unnamed-passenger",
- "name": "unnamed passenger"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [2237, 2118, 2117, 2116, 2115, 2112, 2072, 2071, 2049],
- "vector": [
- -0.10587599128484726, 0.06422416865825653, -0.010856272652745247, -0.09429141134023666,
- 0.06108582019805908, -0.015263189561665058, -0.00885692611336708, 0.0231894813477993,
- 0.057204026728868484, -0.1646633744239807, 0.0003179726772941649, 0.050164371728897095,
- 0.010684228502213955, -0.06566744297742844, 0.041302889585494995, -0.11635097116231918,
- -0.07186521589756012, -0.024071451276540756, -0.002190898172557354,
- -0.09322033822536469, -0.08099287003278732, 0.0035634515807032585, 0.05708262696862221,
- 0.11051922291517258, -0.04149741306900978, 0.02940782532095909, 0.0660029947757721,
- 0.13755708932876587, -0.08070717751979828, 0.0403614342212677, -0.03369361534714699,
- -0.05156172811985016, 0.12047910690307617, 0.007754439488053322, -0.0040983837097883224,
- 0.10100941359996796, 0.019688326865434647, -0.04722457379102707, -0.0407475121319294,
- -0.015293313190340996, 0.04307318106293678, 0.24458837509155273, 0.00627669133245945,
- -0.016153013333678246, 0.053729377686977386, -0.05726393684744835, 0.03289351239800453,
- 0.05053035914897919, 0.00993653479963541, 0.014458541758358479, -0.02207844890654087,
- 0.05149013176560402, -0.028510967269539833, 0.026150917634367943, -0.12247930467128754,
- 0.0803893655538559, 0.03600871562957764, -0.011347319930791855, 0.038581058382987976,
- -0.06333690136671066, -0.07339947670698166, -0.2538120150566101, -0.046637192368507385,
- -0.04851691797375679, 0.08059486746788025, -0.10613392293453217, -0.03467966616153717,
- -0.013382547535002232, 0.007346067111939192, 0.06625200062990189, 0.06586840748786926,
- -0.06489704549312592, -0.034589335322380066, -0.004934284836053848,
- 0.006232725456357002, -0.0021456805989146233, 0.012486078776419163, 0.20787537097930908,
- -0.10712811350822449, 0.027523331344127655, 0.12832851707935333, -0.08804300427436829,
- 0.46571648120880127, 0.019235732033848763, -0.04466250166296959, -0.038545746356248856,
- 0.08985509723424911, 0.019748078659176826, 0.037635430693626404, 0.05823291838169098,
- -0.022023387253284454, 0.020032711327075958, -0.020021634176373482,
- 0.051849376410245895, 0.06840632110834122, 0.0314285047352314, -0.019950009882450104,
- 0.04672855883836746, -0.018181394785642624, -0.07051198184490204, 0.04526105895638466,
- -0.05504053086042404, 0.08005742728710175, 0.036805685609579086, -0.03019612655043602,
- 0.031821347773075104, 0.08371343463659286, -0.04659150913357735, 0.02994816191494465,
- -0.06161496415734291, 0.0291576124727726, 0.004285692702978849, 0.07759082317352295,
- -0.000959141063503921, 0.04644846171140671, -0.07045209407806396, 0.011273844167590141,
- 0.040589407086372375, 0.08207980543375015, -0.0008526713354513049,
- -0.015277218073606491, 0.05860245227813721, 0.09479980915784836, -0.0752616673707962,
- -0.036041829735040665, -0.011724259704351425, -0.07678859680891037,
- -0.01158193126320839, -0.027927838265895844, 0.04986157640814781, -0.06934867054224014,
- -0.20039306581020355, 0.032818641513586044, 0.09942373633384705, -0.026455366984009743,
- -0.02939767949283123, -0.021558228880167007, -0.09256667643785477, 0.03132328391075134,
- -0.012644730508327484, -0.023714421316981316, 0.06571802496910095, 0.046275366097688675,
- 0.020373286679387093, 0.0975920706987381, 0.060980021953582764, -0.0684204176068306,
- -0.05477791652083397, -0.002873915946111083, -0.037202730774879456, 0.06273870915174484,
- -0.1191050186753273, -0.0651024729013443, 0.039322368800640106, 0.004083140753209591,
- 0.6539461612701416, 0.09887801110744476, 0.15721495449543, 0.011299710720777512,
- -0.020814964547753334, 0.16419418156147003, 0.0008006484713405371, 0.06499198079109192,
- -0.05155526101589203, -0.07762220501899719, 0.027568522840738297, -0.06518975645303726,
- -0.028723780065774918, 0.03075549378991127, 0.03157996013760567, 0.10512847453355789,
- 0.04250861704349518, 0.10983094573020935, -0.006923552602529526, -0.1282721310853958,
- -0.0455021895468235, 0.0516127273440361, 0.03192903473973274, -0.09517766535282135,
- -0.02981405146420002, 0.04014825448393822, 0.07674998044967651, -0.04181861877441406,
- 0.003508431138470769, -0.03975065052509308, 0.03677701577544212, -0.025681503117084503,
- 0.0016895066946744919, -0.04573248326778412, 0.019237827509641647, 0.05445818975567818,
- 0.09326441586017609, -0.011863503605127335, -0.12318180501461029, -0.04509058594703674,
- 0.11421211808919907, 0.019238924607634544, -0.0526791550219059, 0.06053421273827553,
- -0.0939023494720459, 0.0547836497426033, 0.019740616902709007, 0.14632704854011536,
- -0.09823182225227356, 0.022826112806797028, 0.015520178712904453, 0.016367528587579727,
- 0.05368160083889961, -0.020745495334267616, -0.049369927495718, -0.06338034570217133,
- 0.07335346937179565, 0.04983535036444664, 0.09656231105327606, 0.08590315282344818,
- -0.056438103318214417, 0.05476390942931175, 0.058501191437244415, 0.0037106461822986603,
- -0.026209287345409393, 0.07282904535531998, 0.06276725232601166, -0.026916123926639557,
- 0.0017655164701864123, 0.046056125313043594, 0.03276136890053749, 0.0411362461745739,
- 0.010144785046577454, 0.07255074381828308, 0.014185773208737373, -0.03826334327459335,
- 0.03005339950323105, 0.0408024936914444, 0.01481314841657877, 0.09494886547327042,
- -0.09677650779485703, -0.042211201041936874, -0.014461182989180088,
- -0.034005697816610336, -0.038276635110378265, -0.05116208270192146, 0.08908599615097046,
- 0.06520500034093857, 0.09693393111228943, 0.03118351846933365, 0.03689374029636383,
- 0.059723835438489914, 0.03246167302131653, 0.057711344212293625, 0.05446606129407883,
- -0.030370308086276054, -0.07154951244592667, -0.027307890355587006,
- -0.018739987164735794, 0.05757904052734375, 0.03728337585926056, -0.07202136516571045,
- -0.0444033220410347, -0.02334783785045147, -0.003875540802255273, -0.09888546913862228,
- -0.03235583379864693, -0.01062631793320179, 0.0761876255273819, -0.061865754425525665,
- -0.06158941239118576, -0.09906281530857086, 0.028536183759570122, 0.04984403774142265,
- 0.003564028302207589, -0.021913042291998863, -0.10362031310796738, 0.006121865473687649,
- -0.016115151345729828, 0.044500790536403656, -0.004130662884563208,
- -0.004831118043512106, -0.014844217337667942, -0.03104783408343792,
- -0.00964141171425581, -0.0077068679966032505, -0.035731106996536255,
- -0.06028616428375244, -0.07393784821033478, -0.02425423264503479, -0.011164833791553974,
- 0.0412609837949276, -0.011916322633624077, 0.0431382954120636, 0.0395573265850544,
- 0.02302984707057476, -0.01102876104414463, -0.030301490798592567, 0.06336628645658493,
- -0.04348066449165344, -0.01612631231546402, 0.07712560892105103, -0.0014306269586086273,
- 0.04955105483531952, 0.007614746689796448, -0.07405009865760803, -0.04066886380314827,
- -0.0017034509219229221, -0.0715361014008522, 0.04196976125240326, -0.04110074043273926,
- 0.00877545028924942, -0.031015319749712944, 0.021259909495711327, 0.05091533064842224,
- -0.06822366267442703, -0.06434314697980881, -0.0865749716758728, 0.1079583689570427,
- -0.008253454230725765, -0.015216175466775894, 0.014576734974980354,
- -0.05986979231238365, 0.0424034520983696, -0.01760690286755562, 0.013897706754505634,
- 0.06125412508845329, 0.054601773619651794, -0.016338491812348366, 0.004857443738728762,
- 0.0755624771118164, -0.016901526600122452, 0.0004787577490787953, 0.05568722262978554,
- 0.41419920325279236, -0.16879384219646454, 0.08245814591646194, 0.07714483886957169,
- 0.01779710315167904, 0.07152697443962097, -0.04683736339211464, 0.06989604234695435,
- 0.06343746930360794, 0.1126699298620224, 0.12645022571086884, -0.023070834577083588,
- 0.027521273121237755, -0.07801443338394165, 0.08868244290351868, 0.011636693961918354,
- 0.009386948309838772, -0.022326158359646797, -0.06545468419790268,
- -0.010868997313082218, 0.07257142663002014, -0.053351156413555145, 0.006122981198132038,
- -0.002983102574944496, -0.09179536253213882, 0.005234532989561558, 0.01902955025434494,
- 0.027760230004787445, -0.0357947051525116, 0.01517448015511036, -0.029849879443645477,
- 0.031189216300845146, 0.005713143385946751, 0.05276134982705116, -0.08759572356939316,
- 0.03819296881556511, -0.1017325222492218, -0.07792827486991882, 0.08852358907461166,
- -0.023608308285474777, 0.05292339622974396, 0.07055234909057617, -0.019233740866184235,
- 0.006990715861320496, -0.011016655713319778, -0.04796025529503822, 0.021449826657772064,
- 0.07196886092424393, 0.02474258653819561, 0.10371324419975281, 0.14658355712890625,
- -0.027358897030353546, -0.05476878583431244, -0.05361487716436386, 0.0813872218132019,
- 0.08418720215559006, -0.03525296971201897, 0.019701890647411346, -0.03900034725666046,
- 0.0036485285963863134, 0.012300360016524792, -0.05185982957482338,
- -0.057397451251745224, 0.020928140729665756, -0.04495285451412201, 0.05753563344478607,
- -0.0021709792781621218, -0.03912956640124321, -0.14667639136314392,
- -0.008937669917941093, -0.05511387810111046, 0.0035398369655013084, 0.12914565205574036,
- -0.04988361522555351, 0.0039487797766923904, 0.04698600992560387, -0.00664857029914856,
- 0.02247540093958378, -0.1032835841178894, 0.012056894600391388, -0.06599163264036179,
- 0.04577279090881348, 0.05091379955410957, 0.04731731116771698, -0.06635992228984833,
- 0.04144842550158501, -0.1121041476726532, 0.03107944130897522, 0.026938950642943382,
- 0.009686585515737534, 0.03011913411319256, -0.02625248208642006, 0.026777930557727814,
- 0.039193134754896164, -0.04625573381781578, 0.0190538689494133, -0.049415696412324905,
- -0.02476584166288376, -0.10606756061315536, -0.07697654515504837, -0.02841273881494999,
- -0.06222085654735565, 0.0673370435833931, -0.0790790319442749, -0.008388940244913101,
- -0.057269565761089325, -0.02440781518816948, 0.02915046364068985, 0.05964179337024689,
- 0.038661692291498184, -0.13152843713760376, 0.01523649226874113, -0.01583930291235447,
- 0.06651756167411804, -0.012857023626565933, -0.0260258000344038, 0.005448466632515192,
- 0.08910978585481644, 0.03529690206050873, 0.007199988700449467, -0.006080332677811384,
- -0.03901311755180359, 0.013550162315368652, -0.054522555321455, -0.4533737897872925,
- 0.06152268126606941, 0.027484126389026642, 0.06361847370862961, 0.0035572266206145287,
- -0.04977058619260788, 0.01840832084417343, 0.0002937920799013227, -0.04636358097195625,
- 0.08498561382293701, -0.05193966254591942, 0.02000737003982067, 0.010730122216045856,
- -0.062487322837114334, -0.0181271955370903, -0.049073509871959686, -0.03676772862672806,
- 0.05442017316818237, -0.02279455028474331, -0.0520072840154171, -0.07976116240024567,
- 0.022691860795021057, -0.020168475806713104, -0.018488852307200432,
- -0.02585027366876602, 0.021266795694828033, -0.07691477984189987, -0.06681962311267853,
- -0.0033526699990034103, 0.06555159389972687, 0.03590982407331467, -0.056581489741802216,
- -0.029599368572235107, 0.043343983590602875, -0.033885832875967026, 0.14870133996009827,
- 0.014508171007037163, 0.04233137145638466, -0.09044891595840454, 0.07358966022729874,
- 0.06290391087532043, 0.18578721582889557, -0.025036733597517014, 0.046384889632463455,
- 0.03004330024123192, 0.12433189898729324, 0.018027842044830322, 0.03959079459309578,
- -0.023685382679104805, -0.011485855095088482, 0.023286959156394005,
- -0.02507939003407955, 0.048815179616212845, -0.06992532312870026, -0.030474841594696045,
- -0.013310287147760391, -0.022446976974606514, 0.0009635439491830766,
- -0.0034795780666172504, 0.14687281847000122, 0.026653176173567772, 0.02894379384815693,
- 0.01801859401166439, -0.027625659480690956, -0.006150666158646345,
- -0.046729400753974915, -0.10973434150218964, -0.01791989430785179, -0.02051042579114437,
- 0.01776580885052681, -0.034089792519807816, -0.11490580439567566, 0.010617436841130257,
- -0.050795916467905045, -0.026907814666628838, 0.1116507351398468, -0.02234424278140068,
- 0.022389810532331467, -0.02736518904566765, 0.12421609461307526, 0.042460907250642776,
- 0.02059928886592388, 0.06467422097921371, 0.08755096793174744, 0.007683872245252132,
- 0.0048491763882339, -0.02485373243689537, -0.08131454885005951, -0.005008444655686617,
- 0.08848077803850174, -0.05322261154651642, 0.08866027742624283, 0.05399499088525772,
- -0.018731333315372467, -0.07147732377052307, 0.023853501304984093, 0.006731762550771236,
- 0.05641568452119827, -0.4541046917438507, -0.009444196708500385, 0.11830483376979828,
- -0.0071637374348938465, 0.044718049466609955, 0.06638813018798828, 0.04780759662389755,
- -0.01346614584326744, -0.03619850426912308, -0.03853966295719147, 0.1484156847000122,
- -0.009148589335381985, 0.04956229031085968, -0.09494777768850327, 0.0549696683883667,
- 0.09309881925582886, -0.004164041951298714, -0.034835562109947205, 0.05248573049902916,
- -0.1846960037946701, -0.00252793962135911, -0.050093743950128555, 0.20618876814842224,
- 0.04748966172337532, 0.017963502556085587, 0.07909446209669113, -0.03456985950469971,
- 0.04288823902606964, 0.04887481406331062, -0.002848391653969884, 0.07887344062328339,
- -0.0011702267220243812, -0.040591467171907425, 0.11426058411598206, 0.08067765831947327,
- 0.07897711545228958, -0.0021981571335345507, 11.986607551574707, 0.08681115508079529,
- 0.04878687858581543, -0.09009363502264023, 0.05260113999247551, -0.037057001143693924,
- 0.024981580674648285, -0.12220040708780289, 0.050154704600572586, 0.10748817771673203,
- -0.029804714024066925, -0.018571078777313232, -0.02393871359527111,
- -0.08393198996782303, -0.005836347118020058, -0.077231265604496, -0.03998787701129913,
- -0.02966891974210739, 0.02242441102862358, -0.05030432343482971, -0.0135300662368536,
- -0.00947511289268732, 0.08153467625379562, 0.01100041065365076, -0.09008818864822388,
- 0.07049613445997238, 0.05016319453716278, -0.004848669748753309, -0.002155657857656479,
- 0.023294102400541306, -0.026779837906360626, 0.010872655548155308, 0.0705280527472496,
- -0.0022878162562847137, -0.02780839055776596, 0.0631091371178627, 0.04356953874230385,
- 0.0735103189945221, 0.0155471907928586, 0.06341283023357391, 0.010102050378918648,
- 0.023747779428958893, 0.011597378179430962, 0.04956799000501633, 0.024001888930797577,
- 0.02162320539355278, 0.06881418824195862, 0.10754001140594482, 0.013376502320170403,
- 0.05208062008023262, 0.0877704843878746, -0.03161609172821045, 0.12389865517616272,
- 0.03859933838248253, 0.0025718335527926683, 0.026426685974001884, -0.016659649088978767,
- -0.06416410952806473, 0.08195129036903381, 0.06459441781044006, -0.05553976073861122,
- 0.09457607567310333, 0.013584006577730179, 0.12321421504020691, -0.016004327684640884,
- 0.029908306896686554, 0.07864684611558914, 0.06955085694789886, -0.1143568605184555,
- -0.06093893572688103, 0.05481521412730217, -0.11929730325937271, -0.06538835912942886,
- 0.06560290604829788, 0.0852484181523323, -0.040264490991830826, 0.09099459648132324,
- -0.04486669972538948, 0.03299231827259064, 0.003249565837904811, -0.003027167171239853,
- 0.03904925286769867, -0.0294279083609581, 0.03598586842417717, 0.02778215892612934,
- 0.0047531044110655785, 0.11326711624860764, 0.10085957497358322, -0.031749188899993896,
- -0.08854755759239197, -0.09071901440620422, 0.080721914768219, -0.01404925063252449,
- -0.05284285545349121, 0.014092262834310532, -0.07829443365335464, 0.03635440766811371,
- -0.15431912243366241, 0.0700930655002594, 0.11659577488899231, -0.08434421569108963,
- -0.015028472058475018, -0.026021702215075493, 0.05086873844265938,
- -0.007645148318260908, 0.039137162268161774, -0.06411085277795792,
- -0.0008125044405460358, 0.014453709125518799, 0.04918593168258667, -0.0606662817299366,
- 0.07593613862991333, 0.05934276804327965, -0.09394317120313644, 0.05133672058582306,
- 0.07856965810060501, -0.023694075644016266, -0.045262351632118225, 0.06259175390005112,
- 0.03883183002471924, -0.11111288517713547, -0.0551922507584095, -0.0389951691031456,
- -0.05809169262647629, -0.021050546318292618, -0.016269436106085777,
- 0.005434313789010048, 0.024276630952954292, -0.0873493105173111, -0.030237071216106415,
- 0.028571000322699547, 0.02760554477572441, 0.13198550045490265, 0.01317798625677824,
- 0.0588739849627018, -0.07853511720895767, -0.011400137096643448, 0.06668522208929062,
- 0.05442523956298828, 0.08619340509176254, -0.03576511889696121, 0.023443691432476044,
- -0.05349242687225342, -0.10978134721517563, 0.020328260958194733, 0.13278116285800934,
- 0.024388698861002922, 0.034541092813014984, 0.037371449172496796, -0.08441115915775299,
- -0.05204540118575096, 0.10886117815971375, 0.015106363222002983, 0.009083662182092667,
- -0.006164647173136473, -0.09271886944770813, -0.025466715916991234, 0.1568373739719391,
- -0.029334111139178276, -0.0036769455764442682, 0.03683975711464882,
- -0.02514859288930893, 0.07132437825202942, 0.10643908381462097, 0.06148206442594528,
- 0.036963410675525665, 0.004283912479877472, -0.009106612764298916,
- -0.008399143815040588, 0.0013915859162807465, -0.0036282348446547985,
- -0.017229128628969193, -0.12245643138885498, -0.07680478692054749, 0.035020384937524796,
- 0.09637349098920822, 0.0016789569053798914, -0.14277249574661255, -0.03307320177555084,
- -0.03846194967627525
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 337,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 20,
- "similarity": 0.998469889163971
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 52,
- "similarity": 0.9984642863273621
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 4,
- "similarity": 0.9982991814613342
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Aarian Marshall"],
- "epoch_date_downloaded": 1657497600,
- "epoch_date_modified": 1667952000,
- "epoch_date_submitted": 1657497600,
- "flag": null,
- "report_number": 2237,
- "source_domain": "wired.com",
- "submitters": ["Kate Perkins"],
- "title": "A Fatal Crash Renews Concerns Over Tesla’s ‘Autopilot’ Claim",
- "url": "https://www.wired.com/story/fatal-crash-renews-concerns-teslas-autopilot/"
- },
- {
- "__typename": "Report",
- "authors": ["Amanda Cochran", " Deven Clarke"],
- "epoch_date_downloaded": 1664323200,
- "epoch_date_modified": 1665619200,
- "epoch_date_submitted": 1664323200,
- "flag": null,
- "report_number": 2118,
- "source_domain": "click2houston.com",
- "submitters": ["Khoa Lam"],
- "title": "‘No one was driving the car’: 2 men dead after fiery Tesla crash near The Woodlands, officials say",
- "url": "https://www.click2houston.com/news/local/2021/04/18/2-men-dead-after-fiery-tesla-crash-in-spring-officials-say/"
- },
- {
- "__typename": "Report",
- "authors": ["Fred Lambert"],
- "epoch_date_downloaded": 1664323200,
- "epoch_date_modified": 1665619200,
- "epoch_date_submitted": 1664323200,
- "flag": null,
- "report_number": 2117,
- "source_domain": "electrek.co",
- "submitters": ["Thomas Giallella (CSET)"],
- "title": "Tesla releases more details about fatal crash in Texas, but there are still a lot of questions unanswered",
- "url": "https://electrek.co/2021/04/26/tesla-releases-more-details-fatal-crash-in-texas-but-questions-unanswered/"
- },
- {
- "__typename": "Report",
- "authors": ["Brad Templeton"],
- "epoch_date_downloaded": 1664496000,
- "epoch_date_modified": 1665619200,
- "epoch_date_submitted": 1664496000,
- "flag": null,
- "report_number": 2116,
- "source_domain": "forbes.com",
- "submitters": ["Thomas Giallella (CSET)"],
- "title": "Fatal Tesla Crash In Texas: What We Know And What We Don’t",
- "url": "https://www.forbes.com/sites/bradtempleton/2021/04/22/fatal-tesla-crash-in-texas-what-we-know-and-what-we-dont/"
- },
- {
- "__typename": "Report",
- "authors": ["Lucas Manfredi"],
- "epoch_date_downloaded": 1664496000,
- "epoch_date_modified": 1665619200,
- "epoch_date_submitted": 1664496000,
- "flag": null,
- "report_number": 2115,
- "source_domain": "foxbusiness.com",
- "submitters": ["Khoa Lam"],
- "title": "Deadly Texas crash involving Tesla worth $80,000 sparks 4-hour fire",
- "url": "https://www.foxbusiness.com/lifestyle/two-killed-in-driverless-tesla-crash"
- },
- {
- "__typename": "Report",
- "authors": ["Bryan Pietsch"],
- "epoch_date_downloaded": 1664841600,
- "epoch_date_modified": 1665619200,
- "epoch_date_submitted": 1664841600,
- "flag": null,
- "report_number": 2112,
- "source_domain": "nytimes.com",
- "submitters": ["Srishti Khemka (CSET)"],
- "title": "2 Killed in Driverless Tesla Car Crash, Officials Say",
- "url": "https://www.nytimes.com/2021/04/18/business/tesla-fatal-crash-texas.html"
- },
- {
- "__typename": "Report",
- "authors": ["Lucas Manfredi"],
- "epoch_date_downloaded": 1664755200,
- "epoch_date_modified": 1665273600,
- "epoch_date_submitted": 1664755200,
- "flag": null,
- "report_number": 2072,
- "source_domain": "foxbusiness.com",
- "submitters": ["Thomas Giallella (CSET)"],
- "title": "Tesla claims deadly Texas car crash may have had passenger behind the wheel",
- "url": "https://www.foxbusiness.com/markets/tesla-claims-deadly-texas-car-crash-may-have-had-passenger-behind-the-wheel"
- },
- {
- "__typename": "Report",
- "authors": ["Andrew J. Hawkins"],
- "epoch_date_downloaded": 1664755200,
- "epoch_date_modified": 1665273600,
- "epoch_date_submitted": 1664755200,
- "flag": null,
- "report_number": 2071,
- "source_domain": "theverge.com",
- "submitters": ["Thomas Giallella (CSET)"],
- "title": "Tesla claims someone was in the driver’s seat in deadly Texas crash",
- "url": "https://www.theverge.com/2021/4/26/22404677/tesla-texas-crash-driver-seat-earnings-musk"
- },
- {
- "__typename": "Report",
- "authors": ["Sean Szymkowski"],
- "epoch_date_downloaded": 1664323200,
- "epoch_date_modified": 1664323200,
- "epoch_date_submitted": 1664323200,
- "flag": null,
- "report_number": 2049,
- "source_domain": "cnet.com",
- "submitters": ["Thomas Giallella (CSET)"],
- "title": "Elon Musk refutes initial findings from deadly Tesla Model S crash",
- "url": "https://www.cnet.com/roadshow/news/elon-musk-tesla-model-s-crash-texas-autopilot-dead/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "students",
- "name": "students"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "sudowrite",
- "name": "Sudowrite"
- },
- {
- "__typename": "Entity",
- "entity_id": "openai",
- "name": "OpenAI"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "teachers",
- "name": "Teachers"
- },
- {
- "__typename": "Entity",
- "entity_id": "non-cheating-students",
- "name": "non-cheating students"
- },
- {
- "__typename": "Entity",
- "entity_id": "cheating-students",
- "name": "cheating students"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [2491, 2063, 2051],
- "vector": [
- -0.06354280312856038, 0.0686432346701622, 0.0001292489469051361, -0.09759289274613063,
- 0.08209896335999171, -0.06631222491463025, 0.023867544097205002, 0.05164225026965141,
- 0.0775812566280365, -0.1353194167216619, -0.004792886010060708, 0.03994675353169441,
- 0.05381196985642115, -0.039904575794935226, 0.02180772569651405, -0.09269936755299568,
- -0.1083962470293045, -0.01517910324037075, -0.026052879790465038, -0.1187133068839709,
- -0.08847843358914058, 0.011919714122389754, -0.0054469057358801365, 0.08341962347428004,
- -0.0016314793998996417, 0.04170219600200653, 0.08912106355031331, 0.09883284196257591,
- -0.08432953432202339, 0.015791895139651995, -0.05826679617166519, -0.04693980577091376,
- 0.11799647410710652, 0.003219389667113622, 0.010259473075469335, 0.09620757897694905,
- 0.04430714870492617, -0.03936218346158663, -0.028015948211153347, -0.005728799694528182,
- 0.02800251015772422, 0.1815295567115148, -0.019053938177724678, -0.011590323178097606,
- 0.041210394042233624, -0.024841743676612776, -0.008740404426741103,
- -0.001991038278598959, -0.014663634821772575, 0.005201128001014392,
- 0.004770322702825069, -0.027514173959692318, -0.04203190038485142, 0.04011626774445176,
- -0.08468103036284447, 0.06101629137992859, 0.027570985878507297, 0.008220060883710781,
- 0.0279742827018102, -0.08191183706124623, -0.015597077280593416, -0.147016113003095,
- -0.05143530791004499, -0.07125646620988846, 0.10381727914015453, -0.08561197916666667,
- -0.033632119496663414, 0.007903320404390493, 0.012928047527869543, 0.051589520648121834,
- 0.06275566232701142, -0.023045286536216736, -0.02445776341482997, -0.016734429945548374,
- -0.018996013949314754, -0.01353575506558021, 0.022015962128837902, 0.1692019204298655,
- -0.08226402476429939, 0.00933221789697806, 0.08396454155445099, -0.10851242641607921,
- 0.31649719675381977, 0.025083324988372624, 0.009048279064397017, -0.01221315423026681,
- 0.07533076778054237, 0.0274988388021787, 0.03484876321939131, 0.024333694328864414,
- 0.005588860095789035, 0.03353869915008545, -0.047550673286120095, 0.022250346781220287,
- 0.06301213925083478, 0.055776851872603096, -0.011838021610553065, -0.035060430566469826,
- -0.0350359616180261, -0.04836290702223778, -0.0006744371106227239,
- -0.056800066183010735, 0.10783719023068745, 0.05115147493779659, -0.039575476199388504,
- 0.026591045471529167, 0.058110481748978295, -0.03819548711180687, 0.04207206020752589,
- -0.048942502588033676, 0.026891763011614483, 0.03187496028840542, 0.09225179627537727,
- -0.0026455633342266083, 0.03230316874881586, -0.045049612099925675,
- 0.020605875179171562, 0.039766184675196804, 0.05445027785996596, 0.0688670886059602,
- 0.004867340127627055, 0.06166099260250727, 0.07342744556566079, -0.028484700868527096,
- -0.0019076322787441313, -0.011659152805805206, -0.03432234578455488,
- -0.0013402520368496578, 0.008672164818563033, 0.029419606551527977,
- -0.04203098422537247, -0.18139371275901794, 0.012081285317738851, 0.05486060306429863,
- -0.014081679284572601, -0.00496871373616159, 0.006349369961147507, -0.04521266371011734,
- 0.04186089523136616, 0.010020975411559144, 0.011824354885902721, 0.05081010361512502,
- 0.030216022084156673, 0.041825911651055016, 0.09761260449886322, 0.04124822157124678,
- -0.014819584166010221, -0.05243064152697722, -0.002614647150039673,
- -0.04300253465771675, 0.09060119092464447, -0.10293446232875188, -0.03665161753694216,
- 0.0018065785989165306, -0.03310600140442451, 0.6476771632830302, 0.08080256854494412,
- 0.13871867209672928, -0.002134184663494428, -0.024841490822533768, 0.13965250303347906,
- 0.013010927631209293, 0.03806384280323982, -0.03103012964129448, -0.0705731138586998,
- -0.01285628043115139, -0.05832654796540737, -0.010500074286634723,
- -0.003381699750510355, 0.04497475052873293, 0.09506244709094365, 0.012386196680987874,
- 0.09381044904390971, 0.012963998946361244, -0.077210978915294, -0.030260177018741768,
- 0.013657440120975176, 0.048508605609337486, -0.10558853795131047, -0.013262404594570398,
- 0.048433163513739906, 0.0744894544283549, -0.07908752808968227, -0.009353267028927803,
- -0.035827873895565666, 0.06337391833464305, -0.0066262589146693545,
- 0.027521755546331406, -0.0005026285847028097, 0.011552140271912018,
- 0.058133826280633606, 0.03246986555556456, -0.022094089227418106, -0.053508651753266655,
- 0.0011237555493911107, 0.09314924602707227, -0.003329345335563024, -0.02619290289779504,
- 0.06963116923967998, -0.08645663162072499, 0.02983829937875271, 0.010631693139051398,
- 0.14188338071107864, -0.10169435044129689, 0.04653040940562884, -0.01997335037837426,
- -0.0036389315500855446, 0.040608384336034455, 0.003429101314395666,
- -0.05721500640114149, -0.05908748755852381, 0.05284034336606661, 0.028281497458616894,
- 0.05448987645407518, 0.05217675119638443, -0.019965820635358494, 0.052780501544475555,
- 0.060543750102321305, 0.006087924508998792, -0.043334449330965676, 0.06112063924471537,
- 0.032013274574031435, -0.07220881804823875, 0.0006823482496353487, 0.03683416607479254,
- 0.023320353745172422, 0.04043156995127598, -0.003545530450840791, 0.04111246392130852,
- -0.019803779510160286, -0.016775410622358322, 0.06492837394277255, 0.021807614403466385,
- 0.03924408865471681, 0.08018423865238826, -0.09675216861069202, -0.05339651430646578,
- -0.048753334830204643, -0.03365933212141196, -0.0018892257163921993,
- -0.056593029449383415, 0.06121159344911575, 0.0678606244424979, 0.07063935200373332,
- 0.023702295710487913, 0.04529357453187307, 0.05804893746972084, 0.05852829602857431,
- 0.021540349970261257, 0.03102152111629645, -0.036053882290919624, -0.01632706169039011,
- -0.03948460829754671, 0.012112175114452839, 0.04789210297167301, 0.005388681466380755,
- -0.06904330725471179, -0.02266671322286129, -0.020630264189094305,
- -0.021087737133105595, -0.08541462818781535, -0.0470768337448438, 0.007114127084302406,
- 0.02800498204305768, -0.08081534877419472, -0.07793564349412918, -0.06036735946933428,
- 0.010964813331762949, 0.04677803566058477, -0.02757572289556265, -0.0075076060214390354,
- -0.10916116585334142, 0.015782287654777367, 0.006189680813501279, 0.05519852787256241,
- -0.003990657006700833, 0.006002548771599929, 0.0204518587027754, -0.08067219828565915,
- -0.0006991171588500341, 0.035222524466613926, -0.06983247771859169,
- -0.021888456617792446, -0.039044635370373726, -0.04365575686097145,
- -0.009163442378242811, 0.010714387598757943, -0.03148511424660683, 0.023371031352629263,
- 0.07001981635888417, 0.04122434991101424, -0.0183947558204333, -0.02458307317768534,
- 0.04648586983482043, -0.032819000693658985, -0.003905856360991796, 0.07833413407206535,
- -0.04222311327854792, 0.04551221740742525, -0.03561983567972978, -0.05553960303465525,
- -0.05716583039611578, -0.005494638656576474, -0.05949991072217623, 0.049238914623856544,
- -0.04435734450817108, -0.020939439923192065, -0.023687276368339855,
- -0.04574487187589208, 0.04473522678017616, -0.05989449347058932, -0.07527430479725201,
- -0.11148156225681305, 0.10210765898227692, -0.021294694083432358, 0.005653908476233482,
- 0.021756576063732307, -0.033019992212454476, 0.05749543011188507, 0.003613663682093223,
- 0.027038116628925007, 0.052515313029289246, 0.05213983729481697, -0.0025350720000763736,
- 0.026718550982574623, 0.09783913443485896, -0.001534184751411279, 0.010679312981665134,
- 0.07384042317668597, 0.403349111477534, -0.17092507084210715, 0.08195699503024419,
- 0.07267824560403824, 0.01819983823224902, 0.03047858737409115, -0.04971102625131607,
- 0.0530290516714255, 0.06017363191737483, 0.09247137109438579, 0.12465249001979828,
- -0.052453080813090004, 0.023601451888680458, -0.05462800773481528, 0.05085258434216181,
- 0.006761864991858602, -0.0014259787276387215, -0.02134037980188926,
- -0.043308096627394356, -0.023559937175984185, 0.0402976411084334, -0.0585751918454965,
- 0.031196375687917072, 0.011026532699664434, -0.03912350659569105, 0.022881157075365383,
- 0.01796414703130722, 0.04145412286743522, -0.017010453933229048, 0.044620937357346215,
- -0.024191126693040133, 0.03345898538827896, 0.015759975959857304, 0.03184920890877644,
- -0.06810937573512395, 0.025536303718884785, -0.10489900410175323, -0.08513687551021576,
- 0.058683126543958984, 0.008415378630161285, 0.05579245711366335, 0.04192376943926016,
- -0.010903994708011547, 0.030947221365446847, -0.032009197709461056,
- -0.029164046049118042, 0.005013647799690564, 0.06274477019906044,
- -0.0021229684352874756, 0.05571925640106201, 0.14178673923015594, -0.011340305053939423,
- 0.011563483315209547, -0.0841175007323424, 0.051731327548623085, 0.11708063880602519,
- -0.0076938240478436155, 0.012757790042087436, -0.0020747923214609423,
- 0.015468450884024302, 0.009409602809076508, -0.04814860286811987, -0.0706464871764183,
- -0.002298874780535698, -0.07198876390854518, 0.07536950334906578, 0.03562825545668602,
- -0.04491948522627354, -0.12512302150328955, -0.048783780386050545,
- -0.045533611749609314, 0.028038519124190014, 0.1088211511572202, -0.060704016437133156,
- 0.012007355690002441, 0.01605141907930374, -0.018829853584369022, 0.014671790103117624,
- -0.07924111311634381, -0.0006443279562518001, -0.0644122709830602, 0.03876659770806631,
- 0.060006553307175636, 0.03828016792734464, -0.06129463451604048, 0.07603035494685173,
- -0.08455248177051544, 0.03602278015265862, 0.0002650398140152295, -0.027658360078930855,
- 0.02417304863532384, -0.055204376578330994, 0.046338693549235664, 0.01626250733776639,
- -0.03729540513207515, -0.018128085260589916, -0.04111728693048159, -0.03593152451018492,
- -0.09252007553974788, -0.07836191604534785, -0.02433285489678383, -0.07001559312144916,
- 0.057710482428471245, -0.026571796741336584, 0.0014790606995423634,
- -0.032669682055711746, -0.03852847497910261, -0.0012613713430861633,
- 0.035553177197774254, -0.019160751874248188, -0.1277358109752337, -0.0344994862874349,
- 0.0006959517486393452, 0.02641230697433154, -0.03928731878598531, -0.07657297203938167,
- 0.009309154624740282, 0.032820132871468864, 0.008429010709126791, -0.05494533975919088,
- -0.024153862769405048, -0.07055443897843361, 0.060963064432144165, -0.11122557024161021,
- -0.4218769967556, 0.07863029713431995, 0.06779037167628606, 0.03468743277092775,
- 0.002969434834085405, -0.05727927635113398, 0.026850779230395954, 0.00957850378472358,
- -0.008114191393057505, 0.06282973910371463, -0.046296709527572, 0.040569870422283806,
- -0.04797768406569958, -0.04203452356159687, -0.013726520196845135, -0.03609274420887232,
- -0.01326340790061901, 0.025770478571454685, -0.013144776225090027,
- -0.044864607974886894, -0.05552337939540545, 0.006472047573576371,
- -0.024495508521795273, -0.0170064028352499, -0.017008966766297817, 0.020637745037674904,
- -0.059479704747597374, -0.054696002354224525, 0.000005212922890981038,
- 0.05874004835883776, -0.003863904159516096, -0.08236056566238403, -0.009169631637632847,
- 0.037360825265447296, -0.005473257352908452, 0.11034658302863438, 0.024505956719319027,
- 0.009166315197944641, -0.08345822989940643, 0.06668260072668393, 0.07706055045127869,
- 0.18867103258768717, -0.0030885832384228706, 0.030833651272890467, 0.011700866433481375,
- 0.1288699967165788, 0.017333906221513946, 0.0417494922876358, -0.020534708475073177,
- 0.0002499236725270748, 0.04298991151154041, -0.007986676879227161, 0.06630318363507588,
- -0.07269749666253726, -0.02929676479349534, -0.019959882833063602,
- -0.013097864265243212, -0.0550970584154129, -0.03858796072502931, 0.1888276288906733,
- 0.02309962920844555, 0.02960047001640002, 0.00783178023993969, -0.04435703344643116,
- -0.005744481148819129, -0.053532190000017486, -0.02805853186873719,
- -0.03565028992791971, -0.0011581593037893374, 0.01640446080515782, -0.0468460905055205,
- -0.09526427835226059, -0.016888789211710293, -0.00999317397751535,
- -0.005539399416496356, 0.09469061841567357, -0.041707814981540046, 0.04005014069844037,
- -0.052742648869752884, 0.13217353324095407, 0.020553790653745335, 0.04969694217046102,
- 0.02382058867563804, 0.07331510012348492, 0.02206452563405037, -0.006428537269433339,
- -0.044044602662324905, -0.05558835715055466, 0.0034332952151695886, 0.153754194577535,
- -0.013923553129037222, 0.1228581170241038, 0.0453694611787796, 0.022754907608032227,
- -0.043957993388175964, 0.03295911227663358, 0.015747956931591034, -0.005706543102860451,
- -0.4341951111952464, -0.06389203791817029, 0.12949037800232568, 0.0002821536230233808,
- 0.016583510519315798, 0.04527312517166138, 0.00003764576589067777,
- -0.003017154522240162, 0.0323916549483935, -0.08087589591741562, 0.09500375390052795,
- 0.028565759770572186, 0.054411920408407845, -0.05768963818748792, 0.025010688230395317,
- 0.07313745220502217, -0.02105312227892379, -0.01446067945410808, 0.03513211694856485,
- -0.2374604195356369, 0.019916335741678875, -0.02786216450234254, 0.12948370228211084,
- 0.040910275653004646, 0.02951450428615014, 0.08389669408400853, -0.0466155211130778,
- 0.035492587834596634, 0.04610446902612845, 0.032646028945843376, 0.04815179373448094,
- 0.009227337005844069, -0.03793733815352122, 0.08223676929871242, 0.10152840117613475,
- 0.10283008714516957, -0.006463506103803714, 11.846357981363932, 0.04137617566933235,
- 0.05873823165893555, -0.06966126958529155, 0.0026424489139268794, -0.0508900818725427,
- 0.047375556702415146, -0.05554172582924366, 0.05742828547954559, 0.12214572479327519,
- -0.0014357969630509615, -0.02013747611393531, -0.04668035311624408, -0.0879555270075798,
- 0.01123702231173714, -0.0473299448688825, -0.019026138198872406, -0.03092390950769186,
- 0.022821476683020592, -0.05715467035770416, -0.051637101297577225, 0.04983150586485863,
- 0.059324768682320915, -0.009630633828540644, -0.08241711308558781, 0.05364009008432428,
- -0.022808206578095753, 0.005837392993271351, -0.0045898729003965855,
- 0.03473701110730568, 0.029072239995002747, 0.02788310529043277, 0.061898590375979744,
- 0.013273143908008933, 0.03714098470906416, 0.05838480840126673, 0.024538501165807247,
- 0.04010748242338499, 0.04483092203736305, 0.06705356885989507, 0.019629677136739094,
- 0.0060491977880398435, 0.019986291105548542, 0.030104486892620724, 0.06622151161233585,
- 0.03362312912940979, 0.024666645874579746, 0.11351076265176137, 0.028249866018692654,
- 0.07520792881647746, 0.08332830667495728, 0.008266668921957413, 0.11044256140788396,
- 0.03805315618713697, -0.011415484611158414, 0.02251812250566824, 0.0024665608846892915,
- -0.08054629464944203, 0.09669702500104904, 0.03204307798296213, -0.04558462711671988,
- 0.13638226191202799, 0.03191519156098366, 0.1248624970515569, 0.039357803761959076,
- 0.02428559532078604, 0.07361066838105519, 0.048898221304019295, -0.13049628337224325,
- -0.05303569634755453, 0.018281512583295505, -0.08452903603514035, -0.04035842108229796,
- 0.06885136663913727, 0.038415673499306045, 0.00383597860733668, 0.052879588678479195,
- -0.03701124154031277, 0.016050828620791435, -0.008994929182032744, 0.013116077519953251,
- 0.022885579771051805, -0.06908418734868367, 0.014631844436128935, 0.0522544733248651,
- 0.030395794038971264, 0.06884992371002834, 0.08454322069883347, 0.010230476502329111,
- -0.08824391042192777, -0.03773885158201059, 0.08135063325365384, -0.009418918751180172,
- -0.054427901903788246, 0.024529914061228435, -0.05657512818773588, 0.017628259335954983,
- -0.1450436090429624, 0.054928635557492576, 0.11921998610099156, -0.08946188166737556,
- -0.021752649297316868, -0.03195559699088335, 0.09197495877742767, 0.005561668319084371,
- 0.025551961346839864, -0.056405081103245415, -0.0051235780119895935,
- 0.023901744435230892, 0.03165022718409697, -0.05197900409499804, 0.11120245109001796,
- 0.08171767306824525, -0.05384351871907711, 0.052507350842158, 0.04486803710460663,
- -0.026264111511409283, -0.019550844794139266, 0.05188593144218127, 0.05465421825647354,
- -0.07388657952348392, -0.026102393865585327, -0.03141912709300717, -0.02453500994791587,
- 0.002351429497745509, -0.03143880609422922, -0.007319619646295905, 0.03979438170790672,
- -0.04051149015625318, -0.01127836829982698, 0.03159258576730887, 0.05404112984736761,
- 0.10144732147455215, -0.024254159070551395, 0.053033724427223206, -0.0240703293432792,
- -0.03485354594886303, 0.06039496138691902, 0.05635604386528333, 0.06960555538535118,
- -0.05999517937501272, -0.056896342585484184, -0.007442834942291181,
- -0.09037518501281738, 0.0039204820059239864, 0.07538931723684072, 0.03366398004194101,
- 0.05958979638914267, 0.046169993157188095, -0.06234270799905062, -0.04267378399769465,
- 0.09746736536423366, 0.029036921138564747, -0.011140770589311918, 0.04890253519018491,
- -0.043479170029362045, -0.01843300803254048, 0.1020975336432457, -0.04310012453546127,
- -0.012376832775771618, 0.006075465275595586, -0.0837084340552489, 0.06488561816513538,
- 0.08485241731007893, 0.05545474666481217, 0.014316501251111427, 0.03025560958000521,
- 0.011939880438148975, 0.010096303808192411, 0.005152292549610138, 0.006018830152849357,
- -0.028034091616670292, -0.08290984978278478, -0.10674930612246196, 0.019918108669420082,
- 0.09676023821036021, 0.09130412340164185, -0.15300539384285608, -0.02208938884238402,
- -0.05589958777030309
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 339,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["The National"],
- "epoch_date_downloaded": 1673308800,
- "epoch_date_modified": 1673222400,
- "epoch_date_submitted": 1673222400,
- "flag": null,
- "report_number": 2491,
- "source_domain": "thenationalnews.com",
- "submitters": ["Daniel Atherton (BNH.ai)"],
- "title": "ChatGPT AI tool used by students to generate assignments, academics warn",
- "url": "https://www.thenationalnews.com/uae/2023/01/09/chatgpt-ai-tool-used-by-students-to-generate-assignments-academics-warn/"
- },
- {
- "__typename": "Report",
- "authors": ["James Felton"],
- "epoch_date_downloaded": 1664496000,
- "epoch_date_modified": 1665187200,
- "epoch_date_submitted": 1664496000,
- "flag": null,
- "report_number": 2063,
- "source_domain": "iflscience.com",
- "submitters": ["Khoa Lam"],
- "title": "Redditor Claims To Be Using AI-Written Essays To Get Straight A's In School",
- "url": "https://iflscience.com/redditor-claims-to-be-using-ai-written-essays-to-get-straight-as-in-school-65485"
- },
- {
- "__typename": "Report",
- "authors": ["Aki Peritz"],
- "epoch_date_downloaded": 1664496000,
- "epoch_date_modified": 1664496000,
- "epoch_date_submitted": 1664496000,
- "flag": null,
- "report_number": 2051,
- "source_domain": "slate.com",
- "submitters": ["Khoa Lam"],
- "title": "A Fun, Easy New Way for Students to Cheat",
- "url": "https://slate.com/technology/2022/09/ai-students-writing-cheating-sudowrite.html"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "honda",
- "name": "Honda"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "honda",
- "name": "Honda"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "honda-customers",
- "name": "Honda customers"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [2053],
- "vector": [
- -0.06974326819181442, 0.10409282147884369, 0.018156735226511955, -0.10914842784404755,
- 0.13604268431663513, -0.05556010827422142, -0.02746507339179516, -0.01578589901328087,
- 0.05563843250274658, -0.08711358159780502, -0.021977638825774193, 0.11115391552448273,
- 0.03765913471579552, -0.08042299002408981, 0.09967910498380661, -0.031491369009017944,
- -0.10979399085044861, -0.06321019679307938, 0.006137500982731581, -0.10688845813274384,
- -0.0750589519739151, -0.04105902090668678, 0.010241875424981117, 0.10393023490905762,
- -0.0461394228041172, -0.03023013472557068, 0.07449546456336975, 0.07000049203634262,
- -0.0009181887144222856, 0.012348671443760395, 0.0008472363115288317,
- -0.032560259103775024, 0.06771661341190338, 0.0006788818282075226, -0.03257047384977341,
- 0.06421378254890442, 0.04353386163711548, -0.016228383406996727, -0.06256046146154404,
- -0.009061543270945549, 0.05337923765182495, 0.25352001190185547, -0.02337334305047989,
- -0.016460159793496132, 0.030822264030575752, -0.0476645827293396, 0.004347450099885464,
- -0.0015226159011945128, -0.0010436961892992258, 0.03935379534959793,
- 0.04733498394489288, 0.024883151054382324, -0.023190442472696304, 0.01736832968890667,
- -0.08816716074943542, 0.016289133578538895, 0.04385404661297798, 0.0032739504240453243,
- 0.05968954786658287, -0.1143382266163826, 0.01261694822460413, -0.1628476083278656,
- -0.0733063742518425, -0.11406251788139343, 0.12182179093360901, -0.05726184323430061,
- -0.03945149481296539, -0.02125616744160652, -0.010405180044472218, 0.09524660557508469,
- 0.07093910872936249, -0.05186564475297928, -0.004330333322286606, 0.06726880371570587,
- -0.020146021619439125, 0.016818678006529808, -0.07022302597761154, 0.1990198940038681,
- -0.14924421906471252, 0.01716036908328533, 0.09912078082561493, -0.10853227227926254,
- 0.3585750460624695, 0.021296676248311996, 0.00272937654517591, -0.07726987451314926,
- 0.09729830920696259, 0.04965252801775932, 0.032676178961992264, 0.005029081832617521,
- -0.03728115186095238, 0.013197869062423706, -0.07372890412807465, 0.044341668486595154,
- 0.0769960954785347, 0.028810134157538414, -0.02274009957909584, 0.039131443947553635,
- -0.00896964780986309, -0.018625853583216667, 0.01379405427724123, -0.02652091532945633,
- 0.14070533215999603, 0.009453869424760342, -0.013712195679545403, 0.037915345281362534,
- 0.06545083224773407, -0.02164003625512123, 0.11691973358392715, -0.09084635972976685,
- 0.022664787247776985, 0.013234274461865425, 0.01353665255010128, -0.004483032040297985,
- 0.034323133528232574, -0.08779403567314148, 0.0031458514276891947, 0.00845259428024292,
- 0.10852931439876556, -0.006507745012640953, -0.04660183563828468, 0.026935886591672897,
- 0.11625175923109055, -0.10720742493867874, -0.0541437491774559, 0.015826689079403877,
- -0.07119778543710709, -0.03340258076786995, -0.04566099867224693, 0.02230243943631649,
- -0.014528116211295128, -0.1715191751718521, 0.02596222423017025, 0.127301886677742,
- 0.0018035274697467685, -0.055842623114585876, 0.008273814804852009,
- -0.12541228532791138, 0.056549835950136185, -0.02706841751933098, -0.02170853316783905,
- 0.048503708094358444, 0.050543736666440964, 0.004262203816324472, 0.1762569546699524,
- 0.07434338331222534, -0.023362204432487488, -0.053624317049980164,
- -0.016939260065555573, -0.013161279261112213, 0.05859298259019852, -0.0891387015581131,
- -0.0463767908513546, 0.018006257712841034, -0.0069527109153568745, 0.6938540935516357,
- 0.0768672525882721, 0.1822773665189743, -0.013308417052030563, -0.03180790692567825,
- 0.17452937364578247, -0.009326918981969357, 0.043774690479040146, -0.03847271203994751,
- -0.07062921673059464, 0.05250668153166771, -0.0462239645421505, -0.002715171780437231,
- 0.07782546430826187, 0.03221837058663368, 0.12082384526729584, 0.038751278072595596,
- 0.06691130250692368, -0.02875145524740219, -0.11037746071815491, -0.05748927220702171,
- 0.07953453063964844, -0.0027573059778660536, -0.07773002237081528,
- -0.026348579674959183, 0.07800953835248947, 0.08104055374860764, -0.1119387224316597,
- 0.018321126699447632, -0.019648943096399307, 0.045714862644672394,
- -0.048681728541851044, 0.01631023734807968, -0.04828750714659691, 0.053125347942113876,
- 0.0002026513684540987, 0.027747955173254013, 0.048509273678064346, -0.09667026996612549,
- -0.03282895311713219, 0.09579586237668991, 0.012831834144890308, -0.016827452927827835,
- 0.008966222405433655, -0.08143492043018341, 0.05064563453197479, -0.02577483281493187,
- 0.1510002464056015, -0.11466822028160095, 0.03176744654774666, -0.0014270743122324347,
- 0.05427892878651619, 0.01055949553847313, 0.03339012712240219, -0.06004142761230469,
- -0.07944565266370773, 0.07537897676229477, 0.04919832944869995, 0.1272846758365631,
- 0.08774355798959732, -0.053674690425395966, 0.039092857390642166, 0.06729774922132492,
- -0.08442208170890808, -0.023034289479255676, 0.05047830194234848, 0.0602041557431221,
- 0.04537191614508629, -0.02131911739706993, 0.008061572909355164, -0.024877678602933884,
- 0.03835891932249069, 0.005588321015238762, 0.02657906897366047, -0.005237697158008814,
- -0.06530503183603287, 0.01289578527212143, 0.002636929973959923, 0.044890396296978,
- 0.10674138367176056, -0.05072079226374626, -0.08264514058828354, -0.023020466789603233,
- -0.00398512277752161, 0.002441943157464266, -0.005396025720983744, 0.09248257428407669,
- 0.0541270412504673, 0.10371669381856918, 0.030780116096138954, 0.033487021923065186,
- 0.0399027056992054, 0.05456720292568207, -0.0011887680739164352, 0.06379549950361252,
- -0.01949848234653473, -0.06851476430892944, -0.02345452271401882, 0.0361282154917717,
- 0.0033058819826692343, 0.04948335140943527, -0.07629194855690002, -0.039520807564258575,
- -0.04459857940673828, -0.02852117270231247, -0.06470657140016556, -0.038643985986709595,
- -0.019527902826666832, 0.047104205936193466, -0.07371342927217484, -0.05036049336194992,
- -0.09997855126857758, 0.024290187284350395, 0.09403275698423386, 0.004681382328271866,
- -0.012399918399751186, -0.10659997910261154, -0.03793958202004433, -0.05831575021147728,
- 0.04128623753786087, 0.008408169262111187, -0.002632559509947896, 0.011882358230650425,
- -0.08212420344352722, 0.022025085985660553, 0.000713432440534234, -0.04934965446591377,
- -0.03519624471664429, -0.06547626107931137, -0.0564853772521019, 0.028059137985110283,
- -0.012811761349439621, 0.0011193653335794806, 0.05285351723432541,
- -0.011078623123466969, 0.04602236673235893, 0.011028680950403214, -0.03960707038640976,
- 0.04649132862687111, 0.02353871427476406, -0.04372267425060272, 0.04413922503590584,
- 0.0036536664701998234, 0.058128368109464645, -0.07395083457231522, -0.07002685219049454,
- -0.0654292181134224, 0.006651859264820814, -0.06363382935523987, 0.01246718317270279,
- -0.016439145430922508, 0.04128817841410637, -0.05679723620414734, -0.036223154515028,
- 0.0589505136013031, -0.044352937489748, -0.09109298139810562, -0.07586563378572464,
- 0.07180269062519073, 0.018050003796815872, -0.06855114549398422, 0.06858361512422562,
- -0.030217137187719345, 0.07833100110292435, -0.017388848587870598, -0.02016233280301094,
- 0.062204182147979736, 0.010511514730751514, -0.013470355421304703, 0.017589649185538292,
- 0.03403814136981964, -0.019199857488274574, 0.02819771133363247, 0.037313252687454224,
- 0.4098488986492157, -0.2528266906738281, 0.07032901048660278, 0.14190396666526794,
- 0.039891451597213745, 0.08053826540708542, -0.010630297474563122, 0.0641096979379654,
- 0.08896759152412415, 0.09055934846401215, 0.07568863779306412, -0.007484855130314827,
- -0.036481596529483795, -0.08431096374988556, 0.08942601829767227, 0.0177824255079031,
- -0.020451482385396957, -0.006725504994392395, -0.11377133429050446, 0.01092845294624567,
- 0.07545080780982971, -0.05789589881896973, -0.013864549808204174, -0.011652149260044098,
- -0.0650767832994461, -0.023472126573324203, -0.0030310950241982937, 0.01117285992950201,
- -0.0028236578218638897, 0.012870914302766323, -0.06418943405151367, 0.0962296575307846,
- 0.059395041316747665, -0.02834029123187065, -0.1694292277097702, 0.06336192786693573,
- -0.105427086353302, -0.08888742327690125, 0.0934486985206604, -0.03410138189792633,
- -0.0003071209357585758, 0.08561032265424728, -0.08951668441295624,
- -0.024167267605662346, -0.006586458068341017, -0.05888758599758148,
- 0.025699852034449577, 0.03046800196170807, 0.010000253096222878, 0.07413172721862793,
- 0.18324854969978333, -0.015176411718130112, -0.04082488641142845, -0.0649491474032402,
- 0.09527720510959625, 0.09976581484079361, -0.055016692727804184, 0.04069102555513382,
- -0.03207526355981827, 0.048130933195352554, 0.033572353422641754, -0.07975173741579056,
- -0.03414721414446831, -0.04704881086945534, -0.07533161342144012, 0.03825576975941658,
- -0.026274360716342926, -0.03533686697483063, -0.22311867773532867, 0.01709303818643093,
- -0.07789333909749985, 0.034149326384067535, 0.1443505734205246, -0.04481392726302147,
- 0.0153350830078125, 0.03738603740930557, -0.00946818944066763, 0.006202833727002144,
- -0.06724417209625244, 0.036601804196834564, -0.03337785229086876, 0.014711443334817886,
- 0.017124351114034653, 0.055026695132255554, -0.01630042865872383, 0.05328047275543213,
- -0.07161732763051987, 0.03336528316140175, 0.025320203974843025, 0.02071782946586609,
- 0.013000285252928734, -0.04901173710823059, 0.03433849662542343, 0.04361778497695923,
- -0.03858957067131996, 0.03007170557975769, -0.04179008677601814,
- -0.00024361276882700622, -0.11289209127426147, -0.07172980159521103,
- -0.00014644025941379368, -0.038854263722896576, 0.11558839678764343,
- -0.13634927570819855, -0.06766274571418762, -0.04527921974658966, -0.09139500558376312,
- 0.046166159212589264, 0.04784594476222992, -0.012124617584049702, -0.13129165768623352,
- 0.01581716351211071, -0.04326167702674866, 0.06968329101800919, 0.03391563519835472,
- -0.016297107562422752, -0.038784585893154144, 0.22925478219985962, 0.03901250287890434,
- -0.03833989053964615, 0.047459833323955536, -0.06455724686384201, 0.020531361922621727,
- -0.05684672296047211, -0.47000956535339355, 0.08618161827325821, 0.015649402514100075,
- 0.03789016231894493, -0.005211504641920328, -0.0066714719869196415,
- -0.00604661600664258, 0.01617809385061264, -0.031171046197414398, 0.0665096864104271,
- -0.08334899693727493, 0.03666473925113678, 0.02150670252740383, -0.04309152439236641,
- -0.08838311582803726, -0.06079879775643349, -0.04259289801120758, 0.09226225316524506,
- -0.03662015497684479, -0.053857993334531784, -0.15929530560970306,
- -0.008223392069339752, -0.03626308590173721, -0.013627308420836926,
- 0.009543937630951405, 0.009799945168197155, -0.10576394200325012, -0.0531160943210125,
- 0.05222216248512268, 0.08077171444892883, 0.05035191401839256, -0.047077152878046036,
- -0.024897262454032898, 0.005758525338023901, -0.040133461356163025, 0.1789611577987671,
- -0.02519219182431698, 0.0009223897359333932, -0.0671934261918068, 0.0872180312871933,
- 0.05172882601618767, 0.18545551598072052, -0.0008921907283365726, 0.036159634590148926,
- 0.012690462172031403, 0.17391078174114227, 0.07031102478504181, -0.030558789148926735,
- -0.002197078661993146, 0.03527321666479111, 0.025923704728484154, -0.032719675451517105,
- 0.0213644877076149, -0.11388649791479111, -0.028406290337443352, -0.06070740148425102,
- 0.003233094699680805, 0.004991070833057165, 0.004891319666057825, 0.19071140885353088,
- 0.005114773754030466, 0.053167108446359634, -0.030476504936814308, -0.04651335999369621,
- -0.026673398911952972, -0.0741615742444992, -0.04494793340563774, -0.06318734586238861,
- -0.043081339448690414, -0.011292565613985062, -0.05970480293035507,
- -0.11184389144182205, -0.025348274037241936, 0.006113035138696432,
- -0.003962149377912283, 0.15944916009902954, 0.055001042783260345, 0.04007761552929878,
- 0.003132093232125044, 0.09112808853387833, 0.05787016823887825, -0.002633454045280814,
- 0.07524881511926651, 0.0867927074432373, 0.04123126342892647, -0.005017304327338934,
- -0.0025620886590331793, -0.06606782972812653, 0.003045621793717146, 0.11168494075536728,
- -0.06699345260858536, 0.10776863247156143, 0.08117808401584625, -0.048223160207271576,
- -0.05234488844871521, 0.030063729733228683, -0.007153127808123827, 0.0539785698056221,
- -0.46070972084999084, -0.03634028136730194, 0.1006864607334137, 0.04410639777779579,
- 0.026623906567692757, 0.11970140784978867, 0.07123098522424698, -0.07609668374061584,
- -0.035121310502290726, -0.04237742722034454, 0.036663033068180084, 0.009620766155421734,
- 0.06291408091783524, -0.09745178371667862, 0.044557541608810425, 0.053950902074575424,
- -0.024362700060009956, -0.01649824157357216, 0.08630810678005219, -0.2482689768075943,
- 0.03984139487147331, -0.09876418858766556, 0.10311833769083023, 0.02834484726190567,
- -0.003537318203598261, 0.08883590996265411, -0.07784131914377213, 0.06273821741342545,
- 0.08396882563829422, 0.0719347894191742, 0.08656639605760574, 0.017529752105474472,
- -0.001530533074401319, 0.11947799474000931, 0.030664987862110138, 0.18192419409751892,
- -0.0348825566470623, 12.0236177444458, 0.03371937572956085, 0.034589093178510666,
- -0.07345128059387207, 0.055150106549263, -0.08062659204006195, 0.03063248284161091,
- -0.0665760487318039, 0.06857510656118393, 0.1329779177904129, -0.016285549849271774,
- -0.024911513552069664, -0.06267321109771729, -0.12184463441371918, 0.005287788808345795,
- -0.09067874401807785, -0.08127924054861069, -0.030080707743763924, 0.04988044872879982,
- -0.029433414340019226, 0.03833805397152901, 0.06950124353170395, 0.07816500216722488,
- 0.024972185492515564, -0.05102849379181862, 0.03523008152842522, 0.002315334975719452,
- -0.032191477715969086, -0.006662803236395121, 0.032108012586832047,
- -0.021886350587010384, -0.010774238966405392, 0.03855358809232712,
- -0.036281973123550415, 0.05355490744113922, 0.06300238519906998, 0.10836734622716904,
- 0.09466315805912018, 0.02476966567337513, 0.11209762096405029, 0.006231171544641256,
- 0.00758649967610836, 0.03485609591007233, 0.09688686579465866, 0.011429926380515099,
- 0.07260844111442566, 0.04535651579499245, 0.13240459561347961, 0.01705862581729889,
- 0.056320857256650925, 0.06840694695711136, -0.0085346894338727, 0.14993147552013397,
- -0.008091898635029793, 0.011108404025435448, 0.09544549137353897, 0.04897022247314453,
- -0.06983303278684616, 0.0503915399312973, 0.10236137360334396, -0.06941263377666473,
- 0.09593815356492996, -0.021030772477388382, 0.10990668088197708, -0.06060817092657089,
- 0.103182852268219, 0.08189473301172256, 0.04259268566966057, -0.06071777641773224,
- -0.08502120524644852, 0.025139030069112778, -0.13244347274303436, -0.07578953355550766,
- 0.036765553057193756, 0.17545472085475922, -0.07652191817760468, 0.03957591578364372,
- -0.02085762284696102, 0.02236669696867466, 0.0096218790858984, -0.04103449359536171,
- 0.03047391027212143, -0.01211799681186676, 0.026140544563531876, 0.05587735027074814,
- 0.04726247116923332, 0.013701120391488075, 0.06470929831266403, -0.09359495341777802,
- -0.08197835087776184, -0.10107680410146713, 0.0896899551153183, -0.006326553411781788,
- -0.06265018880367279, -0.024751724675297737, -0.03707563132047653, 0.08480207622051239,
- -0.15938811004161835, 0.04371131584048271, 0.0850742757320404, -0.10830536484718323,
- -0.01289640087634325, -0.037765197455883026, 0.02290661260485649, -0.012792542576789856,
- 0.042995356023311615, -0.03646738454699516, 0.02317754551768303, 0.03861619904637337,
- 0.03316216543316841, -0.06055944412946701, 0.048999641090631485, 0.08134274184703827,
- -0.06144227087497711, -0.0014779544435441494, 0.046513885259628296,
- -0.0018238553311675787, -0.031472112983465195, 0.041739609092473984,
- -0.011848448775708675, -0.048288848251104355, -0.027711879462003708,
- -0.06559067219495773, -0.06123622879385948, -0.017389461398124695, -0.07663262635469437,
- 0.028669841587543488, 0.04689580947160721, -0.11149851977825165, 0.019907478243112564,
- -0.02444971166551113, 0.02082567848265171, 0.07381422072649002, 0.014392714016139507,
- 0.08339961618185043, -0.08182559907436371, -0.05078218877315521, 0.012252545915544033,
- 0.040551841259002686, 0.061789970844984055, 0.03582775592803955, 0.0010228999890387058,
- -0.02900768257677555, -0.09850439429283142, -0.013440634123980999, 0.11470882594585419,
- 0.12241817265748978, 0.057856399565935135, 0.013629021123051643, -0.08819769322872162,
- -0.03517032414674759, 0.14665091037750244, 0.07531021535396576, 0.050028685480356216,
- 0.06515335291624069, -0.06477776169776917, -0.027598749846220016, 0.10954006016254425,
- -0.054178182035684586, 0.0019494658336043358, 0.05458996444940567, 0.00821744091808796,
- 0.08456291258335114, 0.06633716821670532, 0.0365690179169178, 0.05273934826254845,
- 0.050928909331560135, -0.01322074607014656, 0.052274033427238464, -0.017277033999562263,
- 0.06452403217554092, 0.06498914957046509, -0.1473318636417389, -0.016457000747323036,
- 0.05009372532367706, 0.13137884438037872, 0.04268703982234001, -0.09974134713411331,
- -0.04557158425450325, 0.0030028654728084803
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 340,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 20,
- "similarity": 0.9979218244552612
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 52,
- "similarity": 0.9977553486824036
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 71,
- "similarity": 0.9977142810821533
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Richard W. Stevens"],
- "epoch_date_downloaded": 1664755200,
- "epoch_date_modified": 1664755200,
- "epoch_date_submitted": 1664755200,
- "flag": null,
- "report_number": 2053,
- "source_domain": "mindmatters.ai",
- "submitters": ["Thomas Giallella (CSET)"],
- "title": "Artificial Intelligence Slams on the Brakes",
- "url": "https://mindmatters.ai/2021/04/artificial-intelligence-slams-on-the-brakes/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "nissan",
- "name": "Nissan"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "nissan",
- "name": "Nissan"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "traffic-participants",
- "name": "traffic participants"
- },
- {
- "__typename": "Entity",
- "entity_id": "nissan-drivers",
- "name": "Nissan drivers"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [2200, 2199, 2198, 2114, 2054],
- "vector": [
- -0.057323575019836426, 0.0944531261920929, -0.03169160708785057, -0.07060888409614563,
- 0.056534312665462494, -0.04305998980998993, 0.009567406959831715, 0.05622823163866997,
- 0.07985346019268036, -0.12862753868103027, 0.0002023994893534109, 0.06982704997062683,
- 0.050138432532548904, -0.07133390009403229, 0.05106089264154434, -0.14090986549854279,
- -0.10628259181976318, -0.022865483537316322, -0.009932484477758408,
- -0.08639226853847504, -0.10797114670276642, 0.0013649764005094767, 0.02975071407854557,
- 0.10623826831579208, -0.025953833013772964, 0.04100898653268814, 0.06330019980669022,
- 0.08906745165586472, -0.042647071182727814, 0.026653528213500977, -0.007717338390648365,
- -0.03912089392542839, 0.11312001943588257, -0.005968236830085516, 0.011751650832593441,
- 0.10960865020751953, 0.023586183786392212, -0.029931288212537766, -0.07043733447790146,
- -0.0318981409072876, 0.03002273105084896, 0.2371576577425003, -0.04534519463777542,
- 0.0023650932125747204, 0.05097651481628418, -0.017223769798874855, 0.026553506031632423,
- 0.03839262202382088, -0.0005729444092139602, 0.01114112138748169, 0.004710157867521048,
- 0.005707504693418741, -0.03158323094248772, 0.008163022808730602, -0.08073045313358307,
- 0.08398492634296417, 0.007191779557615519, 0.005330436863005161, 0.03366059809923172,
- -0.06351488083600998, -0.010840138420462608, -0.16945849359035492, -0.05826958268880844,
- -0.0611661896109581, 0.07378418743610382, -0.09191922098398209, -0.030809009447693825,
- 0.026007359847426414, 0.0120011568069458, 0.0774746984243393, 0.06515606492757797,
- -0.06331571191549301, -0.014086112380027771, 0.010549907572567463,
- -0.0023065446875989437, -0.014390724711120129, -0.013348892331123352,
- 0.17391225695610046, -0.058106303215026855, 0.03803112357854843, 0.1168578714132309,
- -0.07769596576690674, 0.3648938536643982, 0.031352147459983826, -0.05056343227624893,
- -0.00008159950084518641, 0.06017645075917244, 0.06849322468042374, 0.01376892440021038,
- 0.02272876538336277, -0.030776500701904297, 0.01879497803747654, -0.03522355481982231,
- -0.005814571864902973, 0.08613163232803345, 0.039390258491039276, -0.008655352517962456,
- -0.05792692303657532, -0.030408624559640884, -0.06544364988803864, 0.041160982102155685,
- -0.05932743474841118, 0.10447399318218231, 0.07396631687879562, -0.04564301669597626,
- 0.036487020552158356, 0.08662118017673492, -0.003962942399084568, 0.029275646433234215,
- -0.05882559344172478, 0.030944565311074257, 0.06950852274894714, 0.05171496421098709,
- 0.011696165427565575, 0.05599264055490494, -0.09247878938913345,
- -0.00021445006132125854, 0.03089461848139763, 0.07927165925502777, 0.006957868579775095,
- -0.0027302114758640528, 0.06968628615140915, 0.10860910266637802, -0.051287949085235596,
- -0.011885145679116249, -0.021371033042669296, -0.05854560807347298,
- -0.017708495259284973, -0.033566344529390335, 0.055794328451156616,
- -0.05081920698285103, -0.17815206944942474, 0.027015116065740585, 0.07967033237218857,
- -0.0036825716961175203, -0.018116915598511696, 0.0020135960076004267,
- -0.061018653213977814, 0.05454131215810776, 0.01597987860441208, -0.014018744230270386,
- 0.054128844290971756, 0.04057174175977707, 0.03313698619604111, 0.1069432869553566,
- 0.037562914192676544, -0.03696497157216072, -0.048951201140880585,
- -0.010744472034275532, -0.02676139399409294, 0.056329429149627686, -0.10487931966781616,
- -0.07027073949575424, 0.04280969500541687, 0.01953640580177307, 0.656750500202179,
- 0.09679631888866425, 0.11335643380880356, -0.01405979972332716, -0.04130077362060547,
- 0.177288219332695, 0.005496207159012556, 0.06002092361450195, -0.07292085140943527,
- -0.07935415208339691, 0.018509987741708755, -0.07783741503953934, -0.025114336982369423,
- 0.017252137884497643, 0.015465488657355309, 0.09733039140701294, 0.06665913760662079,
- 0.08684250712394714, -0.015992246568202972, -0.07655994594097137, -0.017005525529384613,
- 0.010606946423649788, 0.025438720360398293, -0.11349485069513321, -0.024054231122136116,
- 0.03326945751905441, 0.06516418606042862, -0.07072576880455017, 0.014333412051200867,
- -0.03368261829018593, 0.05026465654373169, -0.026460450142621994, 0.016378501430153847,
- -0.041459936648607254, -0.003572155488654971, 0.045260947197675705, 0.09125655144453049,
- -0.02312733232975006, -0.09216134250164032, -0.03628929704427719, 0.12512138485908508,
- -0.0022524732630699873, -0.022058282047510147, 0.0491190031170845, -0.09316324442625046,
- 0.06570488214492798, 0.012128176167607307, 0.1500900238752365, -0.09459672123193741,
- 0.05261712521314621, -0.0006374967051669955, -0.0038491464219987392,
- 0.046677134931087494, 0.0016685209702700377, -0.04566284269094467, -0.07520155608654022,
- 0.05300610512495041, 0.057870157063007355, 0.09199698269367218, 0.07444287836551666,
- -0.038451433181762695, 0.02689131163060665, 0.03810783475637436, -0.03102753683924675,
- -0.058917392045259476, 0.07830442488193512, 0.06907622516155243, -0.04284993186593056,
- -0.030704637989401817, 0.02447899617254734, 0.021145349368453026, 0.021830689162015915,
- 0.003119746455922723, 0.06332115083932877, -0.005014069844037294, -0.04384986311197281,
- 0.038923539221286774, 0.043732900172472, 0.014818969182670116, 0.09452085196971893,
- -0.06909992545843124, -0.020329341292381287, -0.031796567142009735,
- -0.06096765398979187, -0.0032539863605052233, -0.03256767615675926, 0.06611282378435135,
- 0.06402309238910675, 0.051979828625917435, 0.0047090197913348675, 0.043735772371292114,
- 0.070545993745327, 0.06948009878396988, 0.04492709040641785, 0.0920235887169838,
- -0.0331360325217247, -0.06239394098520279, -0.036045562475919724, 0.0015397615497931838,
- 0.059808455407619476, 0.03242010995745659, -0.07387997210025787, -0.021913593634963036,
- -0.038431622087955475, -0.017241263762116432, -0.08055637776851654, -0.0788908451795578,
- -0.03383411467075348, 0.04722026735544205, -0.050267212092876434, -0.08267495781183243,
- -0.07720071822404861, 0.035146117210388184, 0.04764402285218239, -0.007984588854014874,
- -0.0137361790984869, -0.07459335029125214, -0.0030405570287257433, -0.01565461978316307,
- 0.040906067937612534, -0.00031468458473682404, -0.024002300575375557,
- -0.02285299077630043, -0.06925905495882034, -0.009071039035916328, 0.01040559820830822,
- -0.06274975836277008, -0.07198508828878403, -0.07094772160053253, -0.022324077785015106,
- 0.025822971016168594, 0.030172908678650856, -0.012677019461989403, 0.02836472913622856,
- 0.058564700186252594, 0.05327683687210083, -0.02904031239449978, -0.0014717716258019209,
- 0.06365345418453217, -0.049668144434690475, 0.0013682283461093903, 0.07242529094219208,
- -0.009796252474188805, 0.02633027732372284, -0.03762868791818619, -0.01783248595893383,
- -0.06575866788625717, -0.025254184380173683, -0.07620348036289215, 0.026824379339814186,
- -0.04170826077461243, 0.016578055918216705, -0.02760656736791134, 0.007141149137169123,
- 0.03793127089738846, -0.06730170547962189, -0.08577938377857208, -0.08763574063777924,
- 0.07920841872692108, -0.01253152173012495, -0.03104429878294468, 0.04460146278142929,
- -0.05971324443817139, 0.04878251999616623, -0.004396452568471432, 0.010175916366279125,
- 0.04571294039487839, 0.06252695620059967, -0.03774179145693779, 0.03561628609895706,
- 0.03746925666928291, -0.022904783487319946, 0.014997541904449463, 0.06340473890304565,
- 0.3769753873348236, -0.09793315827846527, 0.07049114257097244, 0.07782413065433502,
- 0.032929565757513046, 0.09433867782354355, -0.025679346174001694, 0.051018524914979935,
- 0.05413351207971573, 0.09961250424385071, 0.09618762135505676, -0.01055163238197565,
- 0.012435352429747581, -0.03987126052379608, 0.08886712789535522, -0.016237657517194748,
- 0.0069303265772759914, -0.02030508778989315, -0.04784242808818817, 0.01681763119995594,
- 0.04029742628335953, -0.04747584089636803, 0.004473189357668161, -0.014801213517785072,
- -0.06513716280460358, 0.024629732593894005, 0.01590493880212307, 0.03282011300325394,
- -0.024143006652593613, 0.01931186020374298, -0.04047267884016037, 0.02404135838150978,
- 0.009075896814465523, 0.027571294456720352, -0.04581525921821594, 0.046362221240997314,
- -0.1081143468618393, -0.08007775992155075, 0.06042911484837532, -0.013415207155048847,
- 0.05268777534365654, 0.061009325087070465, -0.01959954760968685, 0.04336162656545639,
- -0.02146168053150177, -0.04649808257818222, 0.01393978763371706, 0.024726662784814835,
- 0.020437858998775482, 0.07629922032356262, 0.16625338792800903, -0.01615210250020027,
- -0.0279681533575058, -0.05679454281926155, 0.06101866811513901, 0.05597630888223648,
- -0.035245224833488464, 0.022674350067973137, -0.027678564190864563, 0.0228261761367321,
- 0.01093105599284172, -0.03428378701210022, -0.0876060202717781, 0.06400974839925766,
- -0.0482417456805706, 0.05742260068655014, -0.021423090249300003, -0.047487713396549225,
- -0.11174730211496353, -0.02814500406384468, -0.08274982124567032, 0.029106825590133667,
- 0.11317197233438492, -0.0494656041264534, 0.035709310322999954, 0.04572936147451401,
- 0.01235478650778532, 0.016398821026086807, -0.06745314598083496, -0.02304246462881565,
- -0.05129555985331535, 0.026021724566817284, 0.03057212568819523, 0.06350977718830109,
- -0.019266758114099503, 0.052672456949949265, -0.08385767787694931,
- -0.004584538284689188, 0.03824089840054512, -0.003650844097137451, 0.03259875997900963,
- -0.030704304575920105, 0.04897594451904297, 0.012418335303664207, -0.024634886533021927,
- -0.045704666525125504, -0.08091340959072113, -0.010822221636772156,
- -0.09235574305057526, -0.0680626779794693, -0.03323065862059593, -0.0685986801981926,
- 0.10009025037288666, -0.08271093666553497, -0.03270474821329117, -0.01689782366156578,
- -0.00021867602481506765, 0.0008076558588072658, 0.053381431847810745,
- -0.00017311424016952515, -0.13818222284317017, 0.017874768003821373,
- -0.0005799679202027619, 0.0376882329583168, -0.037063103169202805, -0.0627804771065712,
- 0.003723186906427145, 0.10376565158367157, 0.009440377354621887, -0.025009293109178543,
- 0.007523057516664267, -0.01845875009894371, 0.025201236829161644, -0.10853809118270874,
- -0.3843507468700409, 0.05833990126848221, 0.025929376482963562, 0.053803782910108566,
- -0.004328444600105286, -0.08207173645496368, 0.03841797262430191, 0.026956090703606606,
- -0.01766902022063732, 0.08387863636016846, -0.0553048737347126, 0.05363135412335396,
- -0.007901784032583237, -0.054220519959926605, 0.004984973464161158,
- -0.08902376145124435, -0.030115623027086258, -0.0009652154403738678,
- -0.04062134027481079, -0.0661550983786583, -0.07139696925878525, -0.0015843578148633242,
- -0.04521637409925461, -0.009762583300471306, 0.005926073528826237, 0.015800604596734047,
- -0.12103354930877686, -0.044729143381118774, -0.0012525173369795084,
- 0.04347603768110275, 0.017786726355552673, -0.07852968573570251, -0.0034448362421244383,
- 0.049492694437503815, -0.03850697726011276, 0.14043600857257843, 0.03163544461131096,
- 0.0230400450527668, -0.09006142616271973, 0.08933088928461075, 0.07082100212574005,
- 0.18918004631996155, -0.01703425869345665, 0.011704881675541401, -0.002053231466561556,
- 0.11071423441171646, 0.020480817183852196, 0.0550747886300087, -0.008387187495827675,
- 0.0018543798942118883, 0.016436686739325523, -0.005019611679017544, 0.0658307895064354,
- -0.083767369389534, -0.013807205483317375, -0.03377906233072281, -0.002028076210990548,
- -0.0218354444950819, -0.007734815590083599, 0.16408878564834595, -0.001435784506611526,
- 0.024572184309363365, 0.024973761290311813, -0.06114105135202408, -0.033943600952625275,
- -0.04755571112036705, -0.08470802009105682, -0.030223974958062172,
- -0.002063574269413948, 0.029283905401825905, -0.04968373104929924, -0.12182743847370148,
- -0.023021351546049118, -0.0516655333340168, 0.011283515021204948, 0.09341499209403992,
- -0.03563307970762253, 0.03593030571937561, -0.03214135766029358, 0.11974342912435532,
- 0.035098493099212646, 0.04036196693778038, 0.03489666432142258, 0.08764837682247162,
- 0.01572093740105629, -0.0032047382555902004, -0.03465038910508156, -0.07875734567642212,
- 0.0011023238766938448, 0.10242317616939545, -0.03143613785505295, 0.10391495376825333,
- 0.039613328874111176, -0.03249857574701309, -0.05327882245182991, 0.03151129186153412,
- -0.018904266878962517, 0.0024338350631296635, -0.4480266571044922,
- -0.018086880445480347, 0.09512642025947571, 0.009915371425449848, 0.049447618424892426,
- 0.0691744014620781, 0.02240954153239727, -0.04039531201124191, -0.02768890932202339,
- -0.05605122447013855, 0.1377093493938446, -0.0035611665807664394, 0.05927930399775505,
- -0.08380208909511566, 0.037865929305553436, 0.07374061644077301, -0.014573988504707813,
- -0.018951114267110825, 0.04349086806178093, -0.23096072673797607, 0.006553966552019119,
- -0.06272289901971817, 0.14390508830547333, 0.08108454942703247, 0.02448013797402382,
- 0.06964249163866043, -0.05193294212222099, 0.04388453811407089, 0.013168158940970898,
- 0.012212651781737804, 0.07976312190294266, 0.018668735399842262, -0.027629714459180832,
- 0.10455337911844254, 0.057999879121780396, 0.09014525264501572, 0.011935021728277206,
- 11.797658920288086, 0.07557262480258942, 0.035436537116765976, -0.06367580592632294,
- 0.023711197078227997, -0.041754838079214096, 0.04638844355940819, -0.07674996554851532,
- 0.039633359760046005, 0.11141959577798843, -0.017545143142342567, -0.019198080524802208,
- -0.035100363194942474, -0.06099404767155647, 0.002082986291497946, -0.06668330729007721,
- -0.022548962384462357, -0.03962957113981247, 0.03805813938379288, -0.05491391569375992,
- 0.0004808841331396252, -0.01593431644141674, 0.07096046209335327, 0.027643883600831032,
- -0.0937030166387558, 0.02638126350939274, 0.009142851456999779, -0.009545083157718182,
- -0.004882252775132656, 0.0064772008918225765, -0.0036546140909194946,
- 0.003910216502845287, 0.10197825729846954, 0.020686091855168343, 0.011771244928240776,
- 0.07998747378587723, 0.05958721041679382, 0.051201242953538895, 0.015285611152648926,
- 0.061758898198604584, 0.015868963673710823, 0.03995511680841446, 0.014439402148127556,
- 0.050361357629299164, 0.045883405953645706, 0.036358386278152466, 0.03800037130713463,
- 0.1149660125374794, 0.012209776788949966, 0.09008780866861343, 0.06746338307857513,
- 0.00487624853849411, 0.10228560119867325, 0.04445751756429672, 0.004489090293645859,
- 0.04970215633511543, 0.003007268300279975, -0.06084771081805229, 0.06205350160598755,
- 0.10435140132904053, -0.061069320887327194, 0.11034207046031952, 0.009154265746474266,
- 0.1061103567481041, 0.018940094858407974, 0.03390852361917496, 0.08181251585483551,
- 0.062000881880521774, -0.16536426544189453, -0.041594766080379486, 0.047904159873723984,
- -0.1080939993262291, -0.05573965236544609, 0.07392227649688721, 0.05365061014890671,
- -0.057402461767196655, 0.10366559028625488, -0.0431925393640995, 0.035671744495630264,
- -0.03195878863334656, 0.006504607852548361, 0.019540216773748398, -0.021515335887670517,
- -0.00019841194443870336, 0.024924080818891525, -0.0116624366492033, 0.09645761549472809,
- 0.11639893054962158, -0.026558879762887955, -0.057079583406448364, -0.0626329854130745,
- 0.0767488107085228, 0.006816566921770573, -0.05150247737765312, -0.00974166952073574,
- -0.05858246237039566, -0.017365049570798874, -0.13562501966953278, 0.07553784549236298,
- 0.09128634631633759, -0.06493491679430008, -0.014751024544239044, -0.01355835236608982,
- 0.06902311742305756, -0.021909674629569054, 0.01790648140013218, -0.05673710256814957,
- 0.017648374661803246, 0.017613450065255165, 0.05427294969558716, -0.06165485456585884,
- 0.07430285960435867, 0.04150589555501938, -0.06284699589014053, 0.05452549457550049,
- 0.06333303451538086, -0.013470212928950787, -0.03370703011751175, 0.035414278507232666,
- 0.05559835582971573, -0.08100859820842743, -0.043080829083919525, -0.023456308990716934,
- -0.04319731518626213, -0.007381625473499298, -0.05734505131840706,
- -0.004725015722215176, 0.02166438102722168, -0.054279349744319916,
- -0.039552729576826096, 0.008377653546631336, 0.02597924694418907, 0.1483496129512787,
- 0.006278521381318569, 0.06220081448554993, -0.0562550313770771, -0.021695930510759354,
- 0.05835409089922905, 0.02498461678624153, 0.07679992914199829, -0.0016217862721532583,
- 0.004834850784391165, -0.04576120525598526, -0.12248352915048599,
- -0.0035268005449324846, 0.10259375721216202, 0.08505557477474213, 0.038417406380176544,
- 0.021541651338338852, -0.04498346149921417, -0.01957688108086586, 0.11281950771808624,
- 0.03317062184214592, 0.005518899764865637, 0.023972902446985245, -0.06330052018165588,
- 0.007154586259275675, 0.10720761865377426, -0.05491292476654053, 0.005747802555561066,
- 0.06471802294254303, -0.1262321174144745, 0.06917086988687515, 0.0361199751496315,
- 0.05422045662999153, 0.03253992646932602, 0.04381883889436722, -0.008051732555031776,
- 0.051174063235521317, 0.0037984377704560757, 0.04472730681300163, -0.01348063163459301,
- -0.08984280377626419, -0.06949688494205475, 0.03385184705257416, 0.09861757606267929,
- 0.08826782554388046, -0.10501126945018768, -0.025109220296144485, -0.04664651304483414
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 341,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 20,
- "similarity": 0.9980000257492065
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 181,
- "similarity": 0.9978731274604797
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 293,
- "similarity": 0.9978379607200623
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Michael Brooks"],
- "epoch_date_downloaded": 1666483200,
- "epoch_date_modified": 1667347200,
- "epoch_date_submitted": 1666483200,
- "flag": null,
- "report_number": 2200,
- "source_domain": "autosafety.org",
- "submitters": ["Khoa Lam"],
- "title": "Center for Auto Safety Calls on NHTSA to Investigate Malfunctioning Automatic Emergency Braking System on 2017-2018 Nissan Rogue Vehicles",
- "url": "https://www.autosafety.org/center-for-auto-safety-calls-on-nhtsa-investigate-malfunctioning-automatic-emergency-braking-system-on-2017-2018-nissan-rogue-vehicles/"
- },
- {
- "__typename": "Report",
- "authors": ["Matt Posky"],
- "epoch_date_downloaded": 1666483200,
- "epoch_date_modified": 1667347200,
- "epoch_date_submitted": 1666483200,
- "flag": null,
- "report_number": 2199,
- "source_domain": "thetruthaboutcars.com",
- "submitters": ["Khoa Lam"],
- "title": "Center for Auto Safety Asks Nissan to Brake Check Itself",
- "url": "https://www.thetruthaboutcars.com/2020/08/center-for-auto-safety-asks-nissan-to-brake-check-itself/"
- },
- {
- "__typename": "Report",
- "authors": ["Knight Law Group"],
- "epoch_date_downloaded": 1666483200,
- "epoch_date_modified": 1667347200,
- "epoch_date_submitted": 1666483200,
- "flag": null,
- "report_number": 2198,
- "source_domain": "knightlawgroup.com",
- "submitters": ["Khoa Lam"],
- "title": "Top 9 Things To Know about Nissan’s Automatic Emergency Braking",
- "url": "https://knightlawgroup.com/nissan-automatic-emergency-braking-lawsuits/"
- },
- {
- "__typename": "Report",
- "authors": ["Stef Schrader"],
- "epoch_date_downloaded": 1664755200,
- "epoch_date_modified": 1665619200,
- "epoch_date_submitted": 1664755200,
- "flag": null,
- "report_number": 2114,
- "source_domain": "thedrive.com",
- "submitters": ["Thomas Giallella (CSET)"],
- "title": "Judge Allows Class-Action Lawsuit Over Nissan Automatic Emergency Braking Issues to Proceed",
- "url": "https://www.thedrive.com/news/37413/judge-allows-class-action-lawsuit-over-nissan-automatic-emergency-braking-issues-to-proceed"
- },
- {
- "__typename": "Report",
- "authors": ["Aryn Plax"],
- "epoch_date_downloaded": 1664755200,
- "epoch_date_modified": 1664755200,
- "epoch_date_submitted": 1664755200,
- "flag": null,
- "report_number": 2054,
- "source_domain": "knightlawgroup.com",
- "submitters": ["Thomas Giallella (CSET)"],
- "title": "Forward Emergency Braking: Nissan’s First Class Action Lawsuit",
- "url": "https://knightlawgroup.com/forward-emergency-braking-nissan/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "twitter",
- "name": "Twitter"
- },
- {
- "__typename": "Entity",
- "entity_id": "instagram",
- "name": "Instagram"
- },
- {
- "__typename": "Entity",
- "entity_id": "facebook",
- "name": "Facebook"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "twitter",
- "name": "Twitter"
- },
- {
- "__typename": "Entity",
- "entity_id": "instagram",
- "name": "Instagram"
- },
- {
- "__typename": "Entity",
- "entity_id": "facebook",
- "name": "Facebook"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "twitter-users",
- "name": "Twitter Users"
- },
- {
- "__typename": "Entity",
- "entity_id": "marcus-rashford",
- "name": "Marcus Rashford"
- },
- {
- "__typename": "Entity",
- "entity_id": "jadon-sancho",
- "name": "Jadon Sancho"
- },
- {
- "__typename": "Entity",
- "entity_id": "instagram-users",
- "name": "Instagram users"
- },
- {
- "__typename": "Entity",
- "entity_id": "facebook-users",
- "name": "Facebook users"
- },
- {
- "__typename": "Entity",
- "entity_id": "bukayo-saka",
- "name": "Bukayo Saka"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [2113, 2056],
- "vector": [
- -0.06625252962112427, 0.02915012463927269, 0.0074599082581698895, -0.08550958335399628,
- 0.06763666868209839, -0.054370760917663574, 0.026234939694404602, 0.01885661482810974,
- 0.06816213577985764, -0.13090351223945618, -0.014259247109293938, 0.024455184116959572,
- 0.044224027544260025, -0.061596743762493134, 0.018161756917834282, -0.07330469787120819,
- -0.09414656460285187, -0.009588643908500671, 0.009281925857067108, -0.10999274253845215,
- -0.06350332498550415, -0.008575324900448322, 0.05112659931182861, 0.11555787920951843,
- -0.00192000693641603, 0.03064253181219101, 0.09912258386611938, 0.13911086320877075,
- -0.06026717647910118, 0.03304395452141762, -0.03522607311606407, -0.05609048157930374,
- 0.1257760375738144, -0.02152753621339798, 0.02135452814400196, 0.05926840752363205,
- 0.06838391721248627, -0.05798405036330223, -0.03470684587955475, -0.017077304422855377,
- 0.02985498309135437, 0.1928969919681549, -0.041701141744852066, -0.022867020219564438,
- 0.06626727432012558, 0.006849578581750393, 0.04561566561460495, 0.06104818731546402,
- -0.003538290271535516, -0.019024718552827835, 0.005089571699500084,
- -0.018701545894145966, -0.055688925087451935, -0.005033138208091259,
- -0.0726233720779419, 0.06712928414344788, 0.047256916761398315, -0.006036789622157812,
- -0.008450171910226345, -0.05959301441907883, 0.025077519938349724, -0.19608548283576965,
- -0.0774468183517456, -0.04335397481918335, 0.06792749464511871, -0.085953488945961,
- -0.020242711529135704, 0.023739052936434746, 0.04958437383174896, 0.04683058708906174,
- 0.03316313773393631, -0.06728199869394302, -0.005085097160190344,
- -0.0008799995412118733, -0.016627542674541473, -0.019694996997714043,
- 0.012813141569495201, 0.2072136104106903, -0.0910838171839714, 0.03484497219324112,
- 0.10054950416088104, -0.0759967714548111, 0.38632315397262573, 0.008286607451736927,
- -0.022771984338760376, 0.00510387122631073, 0.06652876734733582, 0.008884766139090061,
- 0.019562650471925735, 0.043878212571144104, 0.028497805818915367, 0.0569104366004467,
- -0.00921657681465149, 0.045529164373874664, 0.05253344774246216, 0.045323602855205536,
- -0.010205148719251156, -0.0013740253634750843, -0.025775276124477386,
- -0.0659102275967598, -0.023981845006346703, -0.03852279856801033, 0.12277667224407196,
- 0.0480680987238884, -0.053973034024238586, 0.015817979350686073, 0.07623350620269775,
- -0.04478839784860611, 0.02068571001291275, -0.06488043069839478, 0.022757088765501976,
- 0.0399666503071785, 0.0796414166688919, -0.0013381680473685265, 0.03487107902765274,
- -0.029458416625857353, 0.0018834397196769714, 0.029197784140706062, 0.06745816767215729,
- 0.06500331312417984, 0.029577210545539856, 0.09419809281826019, 0.16195306181907654,
- -0.03358970582485199, -0.025680173188447952, -0.012559821829199791,
- -0.05854296684265137, 0.006276336498558521, -0.010631836019456387, 0.014047336764633656,
- -0.030004778876900673, -0.15903246402740479, 0.04213205724954605, 0.05384906753897667,
- -0.00546014541760087, -0.0287152212113142, 0.0006277589127421379, -0.06613799929618835,
- 0.02354872226715088, -0.030739951878786087, -0.007466410286724567, 0.08526986092329025,
- 0.04117527976632118, 0.03714970126748085, 0.06747543811798096, 0.004438957665115595,
- -0.02091364562511444, -0.07022655010223389, -0.029349129647016525, -0.04974091053009033,
- 0.057810425758361816, -0.11232569813728333, -0.05874878913164139, 0.0323391817510128,
- 0.0053541092202067375, 0.5791003108024597, 0.10086746513843536, 0.15357233583927155,
- -0.019959334284067154, -0.00038902368396520615, 0.16589051485061646,
- -0.005204349290579557, 0.047059379518032074, -0.03503246232867241, -0.06831899285316467,
- 0.01843130588531494, -0.03130198270082474, -0.010885924100875854, 0.033410537987947464,
- 0.0366450771689415, 0.10222640633583069, 0.009585466235876083, 0.1179749071598053,
- 0.02861694246530533, -0.07494337111711502, -0.06243592128157616, 0.021814970299601555,
- 0.006889814976602793, -0.12451759725809097, -0.01333119161427021, 0.05325641110539436,
- 0.07922732084989548, -0.04598010331392288, 0.020328985527157784, -0.030255384743213654,
- 0.06339650601148605, -0.01049584150314331, 0.029096359387040138, -0.0009503243491053581,
- 0.027315493673086166, -0.009300344623625278, 0.05062054097652435,
- -0.0003081239992752671, -0.04391938075423241, -0.04956468194723129, 0.134367436170578,
- 0.022949453443288803, -0.02991507574915886, 0.08250720798969269, -0.08060616999864578,
- 0.04229089245200157, 0.03342948108911514, 0.15065209567546844, -0.13765010237693787,
- 0.02805805578827858, -0.004850404802709818, -0.02475622668862343, 0.046040624380111694,
- -0.0383586660027504, -0.049376990646123886, -0.0820741206407547, 0.061522744596004486,
- 0.05111340433359146, 0.08098481595516205, 0.012284744530916214, -0.039785612374544144,
- -0.0004905257374048233, -0.05778682976961136, 0.020806029438972473, -0.101517453789711,
- 0.08069537580013275, 0.0202280655503273, -0.05996229499578476, -0.06656509637832642,
- 0.07000936567783356, 0.05005861446261406, 0.07532703131437302, -0.0012248381972312927,
- 0.05890445411205292, 0.004602955188602209, -0.009520482271909714, 0.07178521156311035,
- -0.01827329397201538, 0.02283504232764244, 0.07284998893737793, -0.11085015535354614,
- -0.02188674733042717, -0.02807602286338806, -0.03073432482779026, 0.0014541777782142162,
- -0.058657966554164886, 0.049445390701293945, 0.05018652603030205, 0.06428571045398712,
- -0.008033666759729385, 0.059868913143873215, 0.05532260611653328, 0.03454894945025444,
- 0.011830022558569908, 0.055318646132946014, -0.018773900344967842,
- -0.016838930547237396, -0.018496761098504066, -0.005307985469698906, 0.0867767184972763,
- 0.029723748564720154, -0.0651545375585556, -0.02797599509358406, -0.05185162276029587,
- -0.044504132121801376, -0.10111798346042633, -0.01725342497229576, 0.011481644585728645,
- 0.0383383072912693, -0.07547290623188019, -0.09869788587093353, -0.047852806746959686,
- 0.00803929939866066, 0.04722624272108078, -0.03420465067028999, -0.017226265743374825,
- -0.08579516410827637, 0.035110924392938614, 0.010533619672060013, 0.048722043633461,
- -0.034033555537462234, -0.010963158681988716, -0.02777455374598503,
- -0.03828990086913109, -0.014655763283371925, 0.04021170735359192, -0.038280658423900604,
- -0.00429948465898633, -0.05820092931389809, -0.032728686928749084, 0.0120098777115345,
- 0.03750322014093399, -0.004922262392938137, 0.0011315937153995037, 0.0632091760635376,
- 0.04370136559009552, -0.04462196305394173, 0.04351960867643356, 0.04592370614409447,
- -0.042597368359565735, 0.007503889501094818, 0.055414244532585144, -0.02947266772389412,
- 0.03810892999172211, -0.03296598419547081, -0.02931399829685688, -0.07769174128770828,
- -0.015195945277810097, -0.04305991530418396, 0.05903911218047142, -0.04595950245857239,
- -0.04222181439399719, -0.028384223580360413, 0.019356995820999146, 0.08448831737041473,
- -0.07405856251716614, -0.03102049231529236, -0.08449701964855194, 0.11402322351932526,
- -0.010237511247396469, 0.03323119878768921, -0.013330369256436825,
- -0.016404060646891594, 0.02497785910964012, 0.03356911242008209, 0.016542084515094757,
- 0.07598545402288437, 0.06595392525196075, -0.014464530162513256, 0.024228785187005997,
- 0.09324584901332855, -0.02057158201932907, 0.021596012637019157, 0.062251001596450806,
- 0.39920181035995483, -0.15839970111846924, 0.10618419945240021, 0.041460949927568436,
- 0.022268155589699745, 0.03780818358063698, -0.0034090112894773483, 0.07860209047794342,
- 0.030190419405698776, 0.09543345868587494, 0.13758999109268188, -0.0661841630935669,
- 0.02765488810837269, -0.060604214668273926, 0.061270661652088165, 0.027682814747095108,
- 0.015768148005008698, -0.012072455137968063, -0.02617453597486019, -0.04941944405436516,
- 0.0586228147149086, -0.029270801693201065, -0.0010075763566419482,
- -0.043657854199409485, -0.06453393399715424, 0.044268958270549774, 0.04211491346359253,
- 0.04449960216879845, -0.04707801714539528, 0.07025103271007538, 0.018566908314824104,
- 0.011199846863746643, -0.011840642429888248, 0.04260898754000664, -0.05218809098005295,
- 0.028754521161317825, -0.03857799246907234, -0.10584859549999237, 0.07604174315929413,
- 0.02171838842332363, 0.053087227046489716, 0.04559784382581711, -0.0027730034198611975,
- 0.03995388373732567, -0.027135610580444336, -0.05677220597863197, -0.022929726168513298,
- 0.009586505591869354, 0.045906536281108856, 0.11902497708797455, 0.12980276346206665,
- -0.006394258700311184, -0.019760919734835625, -0.09160800278186798, 0.04636497050523758,
- 0.06930592656135559, -0.02386985719203949, 0.02182343602180481, 0.01639321632683277,
- 0.00584835559129715, -0.004002346657216549, -0.038809340447187424, -0.0706576406955719,
- -0.01627984829246998, -0.06726609915494919, 0.0680500715970993, 0.021420933306217194,
- -0.07267805933952332, -0.07441553473472595, -0.029763508588075638, -0.04796150326728821,
- 0.023828662931919098, 0.09416717290878296, -0.04927464574575424, 0.00946847815066576,
- 0.011594104580581188, 0.029126452282071114, -0.029325082898139954, -0.06331143528223038,
- -0.006848569959402084, -0.07036630064249039, 0.0419096015393734, 0.07534079998731613,
- 0.061917781829833984, -0.0725054144859314, -0.004924245644360781, -0.12698054313659668,
- 0.023685235530138016, 0.0030388236045837402, -0.020020928233861923, 0.01425568200647831,
- -0.04718412458896637, 0.043530240654945374, 0.0075361100025475025, -0.03217735514044762,
- -0.05891571566462517, -0.04216458275914192, 0.022514384239912033, -0.10036908090114594,
- -0.0585528239607811, -0.04311671853065491, -0.08468946814537048, 0.07525788247585297,
- -0.08288055658340454, 0.016374850645661354, -0.03791417181491852, -0.013452483341097832,
- 0.008306356146931648, 0.06753414124250412, -0.033739764243364334, -0.12141931056976318,
- -0.04677189886569977, -0.007995858788490295, 0.03773892670869827, -0.04674587771296501,
- -0.06407369673252106, -0.01960025355219841, 0.05536596104502678, 0.004894242621958256,
- -0.052417948842048645, -0.008816391229629517, -0.025382114574313164,
- 0.05918644741177559, -0.07236259430646896, -0.4838305711746216, 0.043360594660043716,
- 0.01268576830625534, 0.06123780459165573, -0.005209679715335369, -0.061194662004709244,
- 0.035457078367471695, -0.011029285378754139, -0.018090464174747467, 0.04474861919879913,
- -0.045212503522634506, 0.02995746210217476, -0.04247210919857025, -0.04976601153612137,
- 0.02089613303542137, -0.08718764781951904, -0.020183121785521507, 0.03702238202095032,
- 0.01075810194015503, -0.05592019110918045, -0.03595343977212906, 0.011206015944480896,
- -0.006500960327684879, -0.02706587314605713, -0.023106738924980164,
- 0.011068165302276611, -0.06922516971826553, -0.06576523184776306, 0.01135040633380413,
- 0.050583675503730774, 0.0049919672310352325, -0.0477997362613678, -0.009263938292860985,
- 0.06888697296380997, 0.0006570694968104362, 0.10705716907978058, 0.022988513112068176,
- 0.008801976218819618, -0.07334885001182556, 0.04306259751319885, 0.06819748878479004,
- 0.18752819299697876, -0.02389601804316044, 0.0852024257183075, 0.007618328556418419,
- 0.11237260699272156, -0.009170306846499443, 0.055199094116687775, -0.05097384750843048,
- 0.01807243376970291, -0.011160716414451599, -0.0161207877099514, 0.07491539418697357,
- -0.06169756501913071, -0.02976858615875244, -0.03991589695215225, -0.02652919664978981,
- -0.04028463363647461, -0.013213498517870903, 0.13972632586956024, 0.03276832774281502,
- 0.0067988308146595955, 0.019501183182001114, -0.03856440633535385,
- -0.013382095843553543, -0.09387604892253876, -0.04439253732562065, -0.04288368299603462,
- -0.011496515944600105, 0.01640389859676361, -0.03177593648433685, -0.08368663489818573,
- -0.002111272420734167, -0.04640654847025871, -0.01000135950744152, 0.1373894214630127,
- -0.05796943977475166, -0.01536218635737896, -0.01859547756612301, 0.15122884511947632,
- 0.029202286154031754, 0.053039196878671646, 0.04510226845741272, 0.08014750480651855,
- 0.007511604111641645, -0.03957653045654297, -0.02940617874264717, -0.08236303180456161,
- -0.0016137149650603533, 0.12000568211078644, -0.04597314074635506, 0.1426410675048828,
- 0.016463719308376312, 0.0190905574709177, -0.04265299439430237, 0.022395383566617966,
- 0.017104970291256905, 0.003962328657507896, -0.4570527970790863, -0.03635331615805626,
- 0.10759547352790833, -0.009339258074760437, 0.044669054448604584, 0.0648268610239029,
- -0.012245282530784607, -0.028938379138708115, -0.007167134899646044,
- -0.11950483918190002, 0.12025974690914154, 0.02149933949112892, 0.07174161821603775,
- -0.09315559267997742, 0.03941091522574425, 0.09594063460826874, 0.003467236179858446,
- -0.01718754507601261, -0.009102413430809975, -0.22331048548221588,
- -0.022033974528312683, -0.02985697239637375, 0.13271485269069672, 0.011190325021743774,
- 0.02581217512488365, 0.10762161761522293, -0.0384957417845726, 0.024903537705540657,
- -0.008006555959582329, -0.005782864056527615, 0.07377436757087708,
- -0.039235517382621765, -0.033728938549757004, 0.09522511810064316, 0.07481394708156586,
- 0.07889418303966522, -0.004530593287199736, 11.931356430053711, 0.07044602930545807,
- 0.0857645720243454, -0.0829630196094513, 0.012076983228325844, -0.04888279363512993,
- 0.016786593943834305, -0.09283167123794556, 0.08933982998132706, 0.0866347998380661,
- 0.010993163101375103, -0.03732363134622574, -0.04948406666517258, -0.06547105312347412,
- 0.008160296827554703, -0.0354500338435173, -0.05394209548830986, -0.014525667764246464,
- 0.059077680110931396, -0.05658351629972458, -0.02997300587594509, 0.05768902599811554,
- 0.0848708301782608, 0.008781077340245247, -0.08158152550458908, 0.055671434849500656,
- -0.01131189800798893, 0.005704712588340044, 0.03568270057439804, 0.0204140804708004,
- 0.031377919018268585, 0.03599562123417854, 0.0816168338060379, 0.02789813093841076,
- 0.027937637642025948, 0.0470527783036232, -0.014882000163197517, 0.005355001427233219,
- 0.011321721598505974, 0.0433175265789032, -0.04138388857245445, 0.00417828606441617,
- -0.025022029876708984, 0.06847905367612839, 0.04964732378721237, 0.019994312897324562,
- 0.027280578389763832, 0.13043202459812164, -0.007589039392769337, 0.05045461654663086,
- 0.08803428709506989, 0.0020985426381230354, 0.1160130500793457, 0.04323508217930794,
- 0.004953403957188129, 0.066426582634449, -0.01481480523943901, -0.050464753061532974,
- 0.07051318883895874, 0.03681164234876633, -0.05418802425265312, 0.11307722330093384,
- 0.040065452456474304, 0.09612618386745453, -0.002554643899202347, 0.027988702058792114,
- 0.09129118919372559, 0.10542891919612885, -0.09865717589855194, -0.02370879054069519,
- 0.03514515608549118, -0.10038051009178162, -0.07172860205173492, 0.04776279628276825,
- 0.0415513813495636, -0.026066448539495468, 0.06894396245479584, -0.011918271891772747,
- 0.06672817468643188, -0.031010009348392487, 0.012118455953896046, 0.043138936161994934,
- -0.07208086550235748, -0.005046402104198933, 0.03155897557735443, 0.007232528645545244,
- 0.09200466424226761, 0.14553779363632202, -0.039039500057697296, -0.09045623242855072,
- -0.10560210794210434, 0.06454462558031082, 0.010371463373303413, -0.037835873663425446,
- 0.0433768630027771, -0.0714331567287445, 0.03694513440132141, -0.17130154371261597,
- 0.0712670087814331, 0.12259616702795029, -0.08765808492898941, -0.0661216527223587,
- 0.0084580909460783, 0.12811873853206635, -0.008405888453125954, 0.014472697861492634,
- -0.05542756989598274, 0.03221608325839043, 0.009680964052677155, 0.028475947678089142,
- -0.0718725323677063, 0.08235415816307068, 0.044640928506851196, -0.04813772439956665,
- 0.04974588751792908, 0.0597696490585804, -0.02589666098356247, -0.029747048392891884,
- 0.06857224553823471, 0.014123917557299137, -0.0753730982542038, -0.04245726391673088,
- -0.07175692915916443, -0.037384577095508575, 0.007396253291517496, -0.03678514063358307,
- -0.0011564693413674831, 0.024126585572957993, -0.03206752985715866,
- -0.04318114370107651, 0.020533638074994087, 0.09183144569396973, 0.1500483602285385,
- -0.010307298973202705, 0.05512087419629097, 0.010567650198936462,
- -0.0054298643954098225, 0.06522230803966522, 0.049442075192928314, 0.1038549393415451,
- -0.03972809761762619, -0.01596856862306595, -0.017008965834975243, -0.08445806801319122,
- 0.039752982556819916, 0.06220218539237976, 0.0006060211453586817, 0.02391825243830681,
- 0.0158692616969347, -0.03300144150853157, -0.026205221191048622, 0.08036360889673233,
- 0.0013387473300099373, -0.005547615699470043, 0.04794764518737793, -0.07058053463697433,
- -0.026965562254190445, 0.08777152001857758, -0.01922326721251011, -0.005509284324944019,
- 0.05727715417742729, -0.1309167444705963, 0.048430439084768295, 0.05554023012518883,
- 0.051917433738708496, 0.016177767887711525, 0.050522610545158386, 0.002525587100535631,
- 0.010738945566117764, 0.01598779484629631, 0.0346195362508297, -0.06304426491260529,
- -0.08159621059894562, -0.07897080481052399, 0.06906376779079437, 0.06144331395626068,
- 0.10286775976419449, -0.13431726396083832, -0.013278834521770477, -0.03383473679423332
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 343,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 53,
- "similarity": 0.9978551268577576
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 16,
- "similarity": 0.9977127313613892
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 73,
- "similarity": 0.9976473450660706
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Andrew Hutchinson"],
- "epoch_date_downloaded": 1664841600,
- "epoch_date_modified": 1665619200,
- "epoch_date_submitted": 1664841600,
- "flag": null,
- "report_number": 2113,
- "source_domain": "socialmediatoday.com",
- "submitters": ["Srishti Khemka (CSET)"],
- "title": "Facebook Provides New Overview of its Efforts to Combat Racist Abuse Online in the Wake of Euro 2020",
- "url": "https://www.socialmediatoday.com/news/facebook-provides-new-overview-of-its-efforts-to-combat-racist-abuse-online/603424/"
- },
- {
- "__typename": "Report",
- "authors": ["Shirin Ghaffary"],
- "epoch_date_downloaded": 1664841600,
- "epoch_date_modified": 1664841600,
- "epoch_date_submitted": 1664841600,
- "flag": null,
- "report_number": 2056,
- "source_domain": "vox.com",
- "submitters": ["Srishti Khemka (CSET)"],
- "title": "Racist trolls attacked England’s soccer team. Fans fought back.",
- "url": "https://www.vox.com/recode/2021/7/14/22577682/marcus-rashford-sancho-bukayo-saka-england-facebook-instagram-social-media-racism-england-twitter"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "myinterview",
- "name": "MyInterview"
- },
- {
- "__typename": "Entity",
- "entity_id": "curious-thing",
- "name": "Curious Thing"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "myinterview",
- "name": "MyInterview"
- },
- {
- "__typename": "Entity",
- "entity_id": "curious-thing",
- "name": "Curious Thing"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "job-candidates-using-myinterview",
- "name": "job candidates using MyInterview"
- },
- {
- "__typename": "Entity",
- "entity_id": "job-candidates-using-curious-thing",
- "name": "job candidates using Curious Thing"
- },
- {
- "__typename": "Entity",
- "entity_id": "employers-using-myinterview",
- "name": "employers using MyInterview"
- },
- {
- "__typename": "Entity",
- "entity_id": "employers-using-curious-thing",
- "name": "employers using Curious Thing"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [2057],
- "vector": [
- -0.09634839743375778, 0.07704991847276688, 0.0352826863527298, -0.10542725771665573,
- 0.1142553836107254, -0.024200962856411934, 0.01351544726639986, 0.09425072371959686,
- 0.0911562517285347, -0.10124660283327103, -0.015052150003612041, 0.05851301923394203,
- 0.01974974200129509, -0.07549109309911728, 0.003770741866901517, -0.05779116600751877,
- -0.11113395541906357, -0.05166773870587349, -0.041298989206552505, -0.13300007581710815,
- -0.11201869696378708, 0.02705095149576664, -0.05400604382157326, 0.1215711385011673,
- -0.07702237367630005, 0.00663197785615921, 0.07155273109674454, 0.095519058406353,
- -0.053386423736810684, 0.024133581668138504, -0.06703763455152512, -0.08633784204721451,
- 0.11942833662033081, 0.019585685804486275, 0.032693106681108475, 0.08698012679815292,
- 0.014166395179927349, -0.03786586970090866, 0.017847880721092224, 0.008108154870569706,
- 0.051690760999917984, 0.24083364009857178, -0.001721087610349059, -0.021107934415340424,
- 0.032238468527793884, -0.03157791122794151, -0.02775939740240574, 0.07651437073945999,
- -0.02623160555958748, 0.04081299155950546, -0.01220573578029871, 0.11326134949922562,
- -0.032571952790021896, 0.028687437996268272, -0.11957192420959473, 0.030531203374266624,
- 0.07016927748918533, 0.009534920565783978, 0.041744034737348557, -0.14670239388942719,
- 0.015198505483567715, -0.19483385980129242, -0.005457421764731407, -0.04449163377285004,
- 0.11078345030546188, -0.09061233699321747, -0.06523096561431885, 0.04009842127561569,
- 0.009124437347054482, 0.06118258833885193, 0.11064973473548889, -0.016939708963036537,
- -0.04636010527610779, 0.005772160831838846, -0.04895599186420441, -0.018541809171438217,
- -0.014019439928233624, 0.14573568105697632, -0.09289932250976562, 0.03646194562315941,
- 0.07286953181028366, -0.07284799963235855, 0.4226205348968506, 0.0451030358672142,
- -0.01118327397853136, -0.0800972506403923, 0.09772524237632751, 0.07143069803714752,
- 0.05734271928668022, 0.03578723594546318, 0.017819203436374664, 0.03165300562977791,
- -0.08760195970535278, -0.012344807386398315, 0.09466580301523209, 0.04584050551056862,
- -0.01714053750038147, -0.036844562739133835, 0.010450651869177818, -0.09001477807760239,
- -0.06708217412233353, -0.04454614222049713, 0.10778012871742249, 0.03328704088926315,
- -0.059310588985681534, 0.0255590733140707, 0.04223287105560303, -0.07452119886875153,
- 0.06443338841199875, -0.04665497690439224, 0.05741409957408905, -0.017701346427202225,
- 0.045634008944034576, 0.029155997559428215, 0.013510184362530708, -0.020253760740160942,
- 0.0102351950481534, 0.10024988651275635, 0.07336392253637314, 0.07390019297599792,
- 0.008722036145627499, 0.03166528791189194, 0.11151523143053055, -0.05850128084421158,
- -0.09321798384189606, -0.012605106458067894, -0.1028607115149498, -0.05081935226917267,
- -0.03415221348404884, 0.03979910910129547, -0.07507313787937164, -0.1416471302509308,
- 0.011254948563873768, 0.0966983512043953, -0.04279953986406326, -0.012754272669553757,
- -0.003577138064429164, -0.043859053403139114, 0.037125661969184875,
- -0.016256755217909813, -0.00821336917579174, 0.051033057272434235, 0.003736301325261593,
- 0.0012770723551511765, 0.10789890587329865, 0.06095330789685249, -0.06792743504047394,
- -0.04485900327563286, -0.01601850800216198, -0.016852257773280144, 0.1474502682685852,
- -0.11253970116376877, -0.07218562811613083, -0.03407213091850281, -0.06954609602689743,
- 0.7722784876823425, 0.15229001641273499, 0.18791735172271729, 0.049124326556921005,
- -0.061048638075590134, 0.16027504205703735, 0.013147903606295586, 0.04169744998216629,
- -0.032111119478940964, -0.03943004459142685, 0.022167949005961418, -0.09717664867639542,
- -0.053066808730363846, -0.004232694394886494, 0.012200466357171535, 0.11826741695404053,
- -0.016296636313199997, 0.06437697261571884, 0.001113975653424859, -0.08968938142061234,
- -0.0488554909825325, 0.08324900269508362, 0.00977165438234806, -0.08132079988718033,
- 0.018832655623555183, 0.0478116050362587, 0.08333955705165863, -0.0742381140589714,
- 0.0017136761453002691, -0.0914951041340828, 0.04120740666985512, -0.03645460307598114,
- 0.07685288786888123, -0.0517197921872139, 0.057541921734809875, 0.03272691369056702,
- 0.015357294119894505, 0.012634783051908016, -0.07462984323501587, -0.011187928728759289,
- 0.06962756812572479, -0.02661130018532276, -0.020328687503933907, 0.06458340585231781,
- -0.10628632456064224, 0.03318287432193756, -0.021607549861073494, 0.25111696124076843,
- -0.10345956683158875, 0.035058505833148956, -0.03952864557504654, 0.008721912279725075,
- 0.023452945053577423, 0.03946400806307793, -0.04702232405543327, -0.0681462287902832,
- 0.10334677249193192, 0.050845809280872345, 0.11115824431180954, 0.07616259902715683,
- 0.0010277529945597053, 0.07451346516609192, 0.04977960139513016, -0.032270509749650955,
- -0.021870210766792297, 0.09325770288705826, 0.026444632560014725, -0.06631796061992645,
- -0.038124799728393555, 0.009764809161424637, 0.018476242199540138, 0.035434119403362274,
- 0.03018517792224884, -0.005867519415915012, -0.007767385803163052,
- -0.058813441544771194, 0.07093512266874313, 0.08217334002256393, 0.04936495050787926,
- 0.08284406363964081, -0.001061870134435594, -0.061224013566970825, -0.03776952251791954,
- -0.07898939400911331, 0.0369340144097805, -0.04364819452166557, 0.10930010676383972,
- 0.09761150181293488, 0.09258345514535904, 0.024318350479006767, 0.004767671227455139,
- 0.01941460743546486, -0.025848574936389923, 0.04120205342769623, 0.022398831322789192,
- -0.053999826312065125, 0.04382649064064026, -0.02063092775642872, 0.006602074485272169,
- 0.022356610745191574, -0.06073247641324997, -0.0765896663069725, -0.027164611965417862,
- -0.06508398801088333, -0.12613946199417114, -0.0972507894039154, -0.07056719809770584,
- 0.04618062451481819, 0.07573595643043518, -0.04613525792956352, -0.02888677269220352,
- -0.0978497862815857, -0.0013885059161111712, 0.0466746985912323, -0.031057948246598244,
- -0.030941192060709, -0.1138978898525238, 0.045917704701423645, 0.036517996340990067,
- 0.05445219576358795, -0.0030525948386639357, -0.0523342601954937, 0.018273133784532547,
- -0.0378611721098423, 0.051927123218774796, -0.02041456289589405, -0.07111642509698868,
- -0.011379877105355263, -0.06722026318311691, -0.06292425841093063,
- -0.010282989591360092, 0.004906806163489819, -0.09143181145191193, 0.008238285779953003,
- 0.04262406378984451, 0.02893313392996788, 0.012769835069775581, -0.07868433743715286,
- 0.023228241130709648, -0.023235730826854706, -0.013424064964056015, 0.05012965574860573,
- -0.01682281121611595, 0.039829183369874954, 0.009564870968461037, -0.10724485665559769,
- -0.040626008063554764, -0.0014462338294833899, -0.03779727220535278,
- 0.0009045213810168207, 0.0019782341551035643, 0.02676701545715332,
- -0.006401665974408388, -0.005894441623240709, 0.027770206332206726,
- -0.03610386699438095, -0.13904009759426117, -0.06342034786939621, 0.12224984169006348,
- 0.03335046395659447, -0.04520726948976517, 0.026160400360822678, -0.05285828933119774,
- 0.0495724193751812, -0.03115798346698284, -0.009071330539882183, 0.023625647649168968,
- 0.04232732579112053, 0.01914077252149582, 0.05720514804124832, 0.062281280755996704,
- -0.0007201125263236463, 0.028725814074277878, 0.055261820554733276, 0.46612873673439026,
- -0.231673464179039, 0.07764837890863419, 0.06970635801553726, 0.012959567829966545,
- 0.03552618250250816, -0.06379253417253494, 0.07907839119434357, 0.1107926145195961,
- 0.13900604844093323, 0.1280401349067688, -0.05052247270941734, -0.02036067470908165,
- -0.13943547010421753, 0.08616379648447037, -0.013754777610301971, 0.023893805220723152,
- -0.04018878936767578, -0.11958152055740356, -0.00013185654825065285,
- 0.08588641881942749, -0.025482982397079468, 0.01460852287709713, -0.0038004103116691113,
- -0.05703158676624298, -0.010502208024263382, -0.013998376205563545,
- -0.031114544719457626, -0.02796400524675846, 0.02664032019674778, -0.05756046995520592,
- 0.08025390654802322, 0.08575966954231262, 0.041493721306324005, -0.14405834674835205,
- 0.03231414034962654, -0.041894860565662384, -0.1149815171957016, 0.11776300519704819,
- -0.017829183489084244, 0.01806000806391239, 0.07345808297395706, -0.04128514975309372,
- -0.004923304542899132, 0.017333580181002617, -0.02683030627667904, 0.007017751690000296,
- 0.12136397510766983, 0.059703528881073, 0.05622159317135811, 0.17835159599781036,
- -0.032270580530166626, -0.02729663997888565, -0.05098976567387581, 0.05839210003614426,
- 0.12252046912908554, 0.020878639072179794, 0.03108038194477558, 0.038003213703632355,
- -0.0460081547498703, 0.02885066717863083, -0.004302117507904768, -0.11169221252202988,
- -0.025068461894989014, -0.05827370658516884, 0.06521597504615784, 0.04101872071623802,
- -0.018615519627928734, -0.14754007756710052, -0.012152519077062607,
- -0.03639136254787445, 0.041509438306093216, 0.11237818747758865, -0.08049415796995163,
- 0.0508636049926281, 0.020980922505259514, 0.00404529320076108, 0.05969296768307686,
- -0.0751597136259079, 0.01938525401055813, -0.05295409634709358, 0.013667603954672813,
- 0.05137540027499199, 0.04427643492817879, -0.06145297363400459, 0.09295158833265305,
- -0.08589034527540207, 0.10019725561141968, -0.0038965516723692417,
- -0.062368445098400116, 0.007668213918805122, -0.025919737294316292,
- 0.005346562247723341, 0.028907522559165955, -0.037731267511844635,
- -0.0024071841035038233, -0.014309725724160671, -0.00731031596660614,
- -0.048262279480695724, -0.06159838289022446, -0.008973242715001106,
- -0.09136700630187988, 0.04692591726779938, -0.10410524904727936, -0.013977192342281342,
- -0.0467233881354332, -0.09795834869146347, -0.004476183094084263, 0.0038052292075008154,
- -0.023444995284080505, -0.13666731119155884, -0.018630284816026688,
- -0.01579269953072071, 0.04921315982937813, 0.044779084622859955, -0.03793361783027649,
- -0.01196825411170721, 0.12459484487771988, 0.062399815768003464, -0.020264655351638794,
- -0.07130029797554016, -0.07088407129049301, 0.05718135088682175, -0.07684962451457977,
- -0.42780324816703796, 0.054253462702035904, 0.027548810467123985, -0.014611627906560898,
- 0.009557313285768032, -0.07809819281101227, 0.017411038279533386, 0.007263564970344305,
- -0.04704974591732025, 0.04126586765050888, -0.07054077833890915, 0.014965275302529335,
- -0.028968706727027893, -0.0634765699505806, -0.026726365089416504, -0.06301160901784897,
- -0.032295405864715576, 0.05214919522404671, -0.05011765658855438, -0.06277208030223846,
- -0.10442405194044113, 0.006216777954250574, -0.0825706347823143, 0.03799903392791748,
- 0.014275207184255123, 0.012078514322638512, -0.0645802766084671, -0.06077657267451286,
- 0.033208880573511124, 0.075837641954422, 0.05463879555463791, -0.071241594851017,
- 0.02083170786499977, 0.05164724215865135, 0.0012022064765915275, 0.1278637945652008,
- 0.0021749217994511127, 0.03758740425109863, -0.009389017708599567, 0.059357330203056335,
- 0.06336000561714172, 0.18461516499519348, 0.027199985459446907, -0.005012178793549538,
- -0.0016643209382891655, 0.1268334537744522, 0.03290226310491562, 0.02284219115972519,
- -0.016994906589388847, -0.017592044547200203, 0.04179050773382187, -0.05178872123360634,
- 0.08376283198595047, -0.056944385170936584, -0.026588983833789825, -0.0171224195510149,
- -0.013704601675271988, -0.04526621103286743, -0.008208932355046272, 0.21145349740982056,
- -0.019403154030442238, 0.05191168934106827, 0.04294575750827789, -0.029546530917286873,
- 0.013299617916345596, -0.05356769636273384, -0.13946932554244995, -0.07138582319021225,
- 0.01747504062950611, 0.0025228552985936403, -0.04131990671157837, -0.07236665487289429,
- -0.01342075876891613, 0.019924072548747063, 0.012002636678516865, 0.15572111308574677,
- -0.047479838132858276, 0.01919272169470787, -0.019892258569598198, 0.1224210187792778,
- 0.018918627873063087, 0.028914181515574455, 0.049948640167713165, 0.16472795605659485,
- 0.06960465759038925, 0.06876464933156967, -0.05571625381708145, -0.03984485939145088,
- 0.016785303130745888, 0.10054919868707657, -0.014209079556167126, 0.07874484360218048,
- 0.09998452663421631, -0.01428586058318615, -0.05286617577075958, 0.04523211345076561,
- -0.03171014413237572, 0.00650882488116622, -0.4432618319988251, -0.05357053503394127,
- 0.10596822202205658, 0.05546589195728302, -0.04227375239133835, 0.08833916485309601,
- 0.022253913804888725, -0.014861817471683025, -0.017993459478020668,
- -0.10265271365642548, 0.10366277396678925, 0.04540330171585083, 0.10952560603618622,
- -0.06545522809028625, 0.011073094792664051, 0.09784436225891113, -0.04494878649711609,
- 0.007035121321678162, 0.077302947640419, -0.17179258167743683, -0.008711805567145348,
- 0.003843551967293024, 0.14129963517189026, -0.0029284292832016945, 0.04904783517122269,
- 0.10002259910106659, -0.072413869202137, 0.043170858174562454, 0.06498490273952484,
- 0.010775070637464523, 0.04329335689544678, -0.024979444220662117, -0.027431583032011986,
- 0.111798495054245, 0.08294729143381119, 0.1088443323969841, -0.03899247944355011,
- 12.061800956726074, 0.01766689121723175, 0.02861558459699154, -0.09670272469520569,
- -0.002332520904019475, -0.044218163937330246, 0.054147131741046906,
- -0.15153652429580688, 0.03428426757454872, 0.16178306937217712, -0.020318830385804176,
- -0.10119140148162842, 0.00007755654951324686, -0.08755867183208466, 0.03465111553668976,
- -0.021972134709358215, -0.06780974566936493, -0.057314079254865646,
- 0.0003172552678734064, -0.05580319091677666, -0.07973416149616241, 0.044455889612436295,
- 0.07320576161146164, 0.005592924077063799, -0.06018265709280968, 0.019256535917520523,
- 0.03289491683244705, 0.0063689639791846275, 0.022127510979771614, 0.019572898745536804,
- -0.02127000503242016, -0.013544170185923576, 0.05866911634802818,
- -0.0009833136573433876, 0.06171523779630661, 0.05936150625348091, 0.133517786860466,
- 0.04873591288924217, 0.06741897016763687, 0.10298766940832138, -0.015284741297364235,
- -0.010957489721477032, -0.008213942870497704, 0.05801395699381828, 0.07415902614593506,
- 0.1019943356513977, 0.036166027188301086, 0.10680217295885086, -0.0032274762634187937,
- 0.08208651095628738, 0.061732593923807144, 0.022141726687550545, 0.13299158215522766,
- 0.08266374468803406, -0.03127404302358627, 0.04156892001628876, -0.013020397163927555,
- -0.07674143463373184, 0.06442975997924805, -0.01853429712355137, -0.05529908463358879,
- 0.1517302244901657, -0.015210321173071861, 0.15504582226276398, 0.03286390006542206,
- 0.06824096292257309, 0.05011573061347008, 0.09407474100589752, -0.1299992799758911,
- -0.040539272129535675, -0.00413104984909296, -0.15467602014541626, -0.14086811244487762,
- 0.1043459102511406, 0.10120613127946854, -0.09797218441963196, 0.03202413395047188,
- 0.012077048420906067, 0.017871050164103508, -0.04983002319931984, 0.014994112774729729,
- 0.04671250283718109, -0.014413366094231606, 0.027999740093946457, 0.05698351562023163,
- 0.09395326673984528, 0.06707032769918442, 0.11653398722410202, -0.025637492537498474,
- -0.0707329586148262, -0.07400114089250565, 0.039981432259082794, -0.030179418623447418,
- -0.060031238943338394, -0.03263071924448013, -0.05785083398222923, 0.02978246659040451,
- -0.13702601194381714, 0.0643937811255455, 0.09987502545118332, -0.11893638223409653,
- -0.03138203173875809, -0.06528687477111816, 0.06015012413263321, 0.025536254048347473,
- 0.07947307825088501, -0.06243555620312691, -0.03769173473119736, -0.016028331592679024,
- 0.02433333732187748, -0.059642672538757324, 0.028721462935209274, 0.06196817383170128,
- -0.08027724176645279, 0.023691384121775627, 0.02474200166761875, 0.017879754304885864,
- -0.005275920033454895, 0.08015066385269165, 0.03704756125807762, -0.10751475393772125,
- -0.006265917327255011, -0.05987628921866417, -0.048179373145103455,
- -0.000247731659328565, -0.011453050188720226, -0.0017831857549026608,
- 0.03112446330487728, -0.0676770955324173, 0.004811280407011509, 0.011869417503476143,
- 0.05087520182132721, 0.06475242227315903, -0.030004991218447685, 0.0864579826593399,
- -0.024056535214185715, -0.08695162087678909, 0.08598986268043518, 0.05043569207191467,
- 0.0625140517950058, -0.08313854038715363, -0.013439910486340523, -0.06279473751783371,
- -0.09927783161401749, 0.08472122251987457, 0.02019943669438362, 0.049496978521347046,
- 0.018375998362898827, 0.0034688920713961124, -0.07811366766691208, -0.07969363778829575,
- 0.07864438742399216, 0.023722698912024498, -0.029174892231822014, 0.06377232074737549,
- -0.030408062040805817, -0.06222028657793999, 0.06830760091543198, -0.06720098853111267,
- 0.012503782287240028, 0.036465637385845184, -0.02015666849911213, 0.10593275725841522,
- 0.193575918674469, 0.0326923169195652, 0.04121456295251846, 0.014844126999378204,
- 0.04803107678890228, -0.006285723298788071, 0.00461428752169013, 0.049431055784225464,
- -0.035615190863609314, -0.13361427187919617, -0.054018501192331314,
- 0.041631028056144714, 0.113434799015522, 0.04561306908726692, -0.11050309985876083,
- -0.03808723762631416, -0.019593654200434685
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 344,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 7,
- "similarity": 0.9979029893875122
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 40,
- "similarity": 0.9978580474853516
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 59,
- "similarity": 0.9978452324867249
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Sheridan Wall", "Hilke Schellmann"],
- "epoch_date_downloaded": 1664841600,
- "epoch_date_modified": 1664841600,
- "epoch_date_submitted": 1664841600,
- "flag": null,
- "report_number": 2057,
- "source_domain": "technologyreview.com",
- "submitters": ["Devon Colmer (CSET)"],
- "title": "We tested AI interview tools. Here’s what we found.",
- "url": "https://www.technologyreview.com/2021/07/07/1027916/we-tested-ai-interview-tools/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "insurance-companies",
- "name": "insurance companies"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "tractable",
- "name": "Tractable"
- },
- {
- "__typename": "Entity",
- "entity_id": "ccc-information-services",
- "name": "CCC Information Services"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "vehicle-repair-shops",
- "name": "vehicle repair shops"
- },
- {
- "__typename": "Entity",
- "entity_id": "vehicle-owners",
- "name": "vehicle owners"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [2058],
- "vector": [
- -0.07876086980104446, 0.12429386377334595, 0.04883061721920967, -0.1074109673500061,
- 0.10286962985992432, -0.0861746147274971, -0.05335351079702377, 0.01601867377758026,
- 0.07693308591842651, -0.10744378715753555, -0.06843797117471695, 0.10657560080289841,
- 0.0758347138762474, -0.08733468502759933, 0.06276068836450577, -0.05428821220993996,
- -0.1270790845155716, -0.05149218440055847, -0.03669095039367676, -0.11733651906251907,
- -0.0323740653693676, -0.009820203296840191, 0.04226769506931305, 0.15797267854213715,
- -0.028369661420583725, -0.01380943413823843, 0.1050780713558197, 0.10192644596099854,
- -0.00915678683668375, 0.011802619323134422, -0.009058736264705658, -0.11788799613714218,
- 0.10417862981557846, 0.023076143115758896, 0.019557051360607147, 0.09455253928899765,
- -0.013690318912267685, -0.04465935751795769, 0.031205318868160248, -0.01634098030626774,
- 0.04363589361310005, 0.29306578636169434, 0.01494603231549263, 0.0012911688536405563,
- 0.05573402717709541, -0.026927923783659935, 0.0010074317688122392, 0.09299073368310928,
- -0.020386187359690666, 0.012234216555953026, -0.0521431639790535, 0.09632153064012527,
- -0.07871433347463608, 0.052402302622795105, -0.13396847248077393, 0.020197486504912376,
- 0.015106908045709133, 0.014334229752421379, 0.10638206452131271, -0.1237250491976738,
- 0.02527841553092003, -0.17511138319969177, -0.011988352984189987, -0.1292131543159485,
- 0.14358538389205933, -0.08393397182226181, -0.05384872853755951, -0.02354148030281067,
- 0.022580934688448906, 0.08893889933824539, 0.10404117405414581, -0.07122981548309326,
- -0.01383894681930542, 0.09604542702436447, -0.03520878031849861, 0.06141369044780731,
- -0.0024658809415996075, 0.18378186225891113, -0.11110782623291016, -0.02535848878324032,
- 0.07520073652267456, -0.11225507408380508, 0.4669727087020874, 0.026138272136449814,
- -0.00547058554366231, -0.06911730021238327, 0.11477501690387726, 0.09541510045528412,
- 0.05462584272027016, 0.08146856725215912, 0.004498562775552273, 0.07212768495082855,
- -0.12751924991607666, 0.02281283400952816, 0.06881845742464066, 0.005488271359354258,
- 0.017111867666244507, 0.08594267815351486, -0.03360951691865921, -0.0909477099776268,
- -0.0437072291970253, -0.02533690445125103, 0.16615703701972961, 0.07070441544055939,
- -0.025243990123271942, -0.03636258468031883, 0.07571449130773544, -0.04862133041024208,
- 0.06712789088487625, -0.0830206498503685, 0.04184466600418091, -0.017791127786040306,
- 0.0188231710344553, -0.014359964057803154, -0.004495955538004637, -0.06241898983716965,
- 0.02463076449930668, 0.038886189460754395, 0.06278099864721298, 0.05759742483496666,
- -0.03997832536697388, 0.07978545129299164, 0.08132065087556839, 0.014984626322984695,
- -0.07290517538785934, -0.02744879573583603, -0.10485386103391647, -0.07338788360357285,
- -0.02504381537437439, 0.02095947042107582, -0.015180625952780247, -0.12170559912919998,
- -0.051765814423561096, 0.08840897679328918, -0.015123999677598476,
- -0.026154469698667526, 0.030837778002023697, -0.049300357699394226, 0.05318222567439079,
- -0.005868609994649887, -0.03407859429717064, 0.07806739211082458, 0.06032031029462814,
- 0.03088735230267048, 0.18316155672073364, 0.04827212914824486, -0.01393887959420681,
- -0.05164119973778725, 0.003741868771612644, -0.03236605226993561, 0.16480593383312225,
- -0.13775107264518738, -0.012303044088184834, 0.010415262542665005, -0.0439898744225502,
- 0.8189088702201843, 0.17969293892383575, 0.18001574277877808, -0.03525552153587341,
- -0.04240836948156357, 0.20023205876350403, -0.0022482776548713446, 0.05861477181315422,
- -0.061712224036455154, -0.04749324545264244, -0.005168040748685598,
- -0.04699636623263359, -0.035609565675258636, 0.022663814947009087,
- -0.005146190989762545, 0.12516362965106964, 0.034580692648887634, 0.10673584043979645,
- 0.049933332949876785, -0.06701842695474625, -0.029367340728640556, 0.1412504017353058,
- -0.027942903339862823, -0.05856134369969368, 0.016933204606175423, 0.04960539564490318,
- 0.052717942744493484, -0.11187794804573059, 0.013212733902037144, -0.09973593056201935,
- 0.049691177904605865, -0.07575997710227966, 0.06793280690908432, -0.032797813415527344,
- 0.06278498470783234, 0.021968094632029533, 0.039521344006061554, 0.05252959206700325,
- -0.0858118012547493, -0.0740482285618782, 0.15064723789691925, -0.07589635252952576,
- 0.011508279480040073, 0.04262421280145645, -0.11764329671859741, 0.043601684272289276,
- 0.004621563479304314, 0.16156183183193207, -0.08790894597768784, 0.08042515069246292,
- -0.002248876029625535, 0.05644501373171806, 0.06280000507831573, 0.021470842882990837,
- -0.029237523674964905, -0.05182759091258049, 0.09569627791643143, 0.052192751318216324,
- 0.10608614236116409, 0.07152409851551056, -0.01301621738821268, 0.048811834305524826,
- 0.11006706207990646, -0.0168149471282959, 0.02676982618868351, 0.07694244384765625,
- 0.05428002029657364, -0.03278568014502525, -0.0427294597029686, -0.03413854166865349,
- -0.007622273173183203, 0.06528963893651962, 0.01985817588865757, 0.04270007461309433,
- 0.018168173730373383, -0.046189095824956894, 0.07213803380727768, 0.04403975233435631,
- 0.03550717234611511, 0.12167526036500931, -0.06503020226955414, -0.07301288843154907,
- -0.030111083760857582, -0.037212029099464417, 0.04777670279145241, 0.013151847757399082,
- 0.08524095267057419, 0.08845414966344833, 0.09574998915195465, 0.050693437457084656,
- 0.06543637067079544, 0.050270289182662964, 0.014880592003464699, 0.025444546714425087,
- 0.09566842019557953, -0.07119543105363846, -0.08152443170547485, -0.01765093021094799,
- 0.019671276211738586, 0.07067841291427612, 0.015704359859228134, -0.05122516304254532,
- -0.00035792545531876385, -0.12601731717586517, -0.08184728026390076,
- -0.033183012157678604, -0.0769023671746254, -0.006902680732309818, 0.06034407019615173,
- -0.03196057677268982, -0.02810908481478691, -0.11782562732696533, 0.027722077444195747,
- 0.07266619801521301, 0.00852428749203682, -0.03275233134627342, -0.11570578813552856,
- 0.01614958979189396, -0.000009206574759446084, 0.0688963383436203, 0.03877979516983032,
- 0.033143941313028336, 0.04239310696721077, -0.022793356329202652, 0.07378078997135162,
- -0.019494563341140747, -0.06474833935499191, -0.09366659075021744,
- -0.028016138821840286, -0.044612228870391846, 0.05846063047647476,
- -0.015533626079559326, -0.019510112702846527, 0.04550571367144585,
- -0.012058747000992298, 0.04035598039627075, 0.010205631144344807, -0.0946100652217865,
- 0.06583752483129501, 0.02956565096974373, -0.04941268265247345, 0.04069950059056282,
- -0.046772897243499756, 0.05059488117694855, -0.014000308699905872, -0.07685016095638275,
- -0.07724511623382568, 0.038704756647348404, -0.06539509445428848, -0.02184707298874855,
- -0.011078142561018467, 0.007193163502961397, -0.08232122659683228,
- -0.028033996000885963, -0.0025712877977639437, -0.08385713398456573,
- -0.12423831224441528, -0.09706930071115494, 0.13033467531204224, 0.012987472116947174,
- -0.03447522968053818, 0.09067261219024658, -0.02446771413087845, 0.029051972553133965,
- 0.004526752512902021, -0.006682709790766239, 0.01975635625422001, 0.02564002200961113,
- 0.0007689592894166708, 0.03143451362848282, 0.028419073671102524, -0.04683604836463928,
- 0.07537153363227844, 0.060373444110155106, 0.437489777803421, -0.26610010862350464,
- 0.08622411638498306, 0.05603368207812309, 0.04230465739965439, 0.04228637367486954,
- -0.07825381308794022, 0.10749249905347824, 0.13297805190086365, 0.1036861464381218,
- 0.1123536005616188, -0.026353558525443077, -0.012392261996865273, -0.12913580238819122,
- 0.08020789176225662, -0.014472450129687786, 0.03316863998770714, 0.0004993889597244561,
- -0.11969035118818283, -0.016551218926906586, 0.08898407965898514, -0.06005187705159187,
- 0.010628866031765938, 0.024042796343564987, -0.041172515600919724, 0.004797253757715225,
- -0.0014985906891524792, -0.05064908415079117, -0.04543386399745941, 0.05110488831996918,
- -0.05793480947613716, 0.09426228702068329, 0.027062902227044106, 0.043628059327602386,
- -0.1675327718257904, 0.0283348485827446, -0.13264454901218414, -0.11001277714967728,
- 0.12007664144039154, -0.00878529716283083, 0.010017065331339836, 0.06831343472003937,
- -0.102384053170681, -0.021289337426424026, 0.04074568301439285, -0.020163435488939285,
- 0.0071867178194224834, 0.1112690195441246, 0.0177069790661335, 0.055751360952854156,
- 0.17240653932094574, -0.03751393035054207, -0.08041450381278992, -0.08493739366531372,
- 0.08708108961582184, 0.15609700977802277, -0.01073418091982603, 0.06743687391281128,
- -0.0015050340443849564, -0.03725341707468033, 0.009960190393030643,
- -0.045013196766376495, -0.10679195821285248, -0.004032503813505173,
- -0.025222934782505035, 0.05604184791445732, 0.024772528558969498, -0.022006403654813766,
- -0.11491141468286514, 0.026575658470392227, -0.09347935765981674, 0.020275818184018135,
- 0.07812777161598206, -0.036350067704916, 0.07020016759634018, 0.010380907915532589,
- -0.03003043867647648, 0.02984876185655594, -0.08197986334562302, 0.01858552359044552,
- -0.039898063987493515, -0.026322945952415466, 0.08577362447977066, 0.04205135256052017,
- -0.02186466194689274, 0.10366687178611755, -0.09730411320924759, 0.05646194517612457,
- 0.010882629081606865, -0.019983192905783653, -0.02157864347100258,
- -0.025283455848693848, 0.013214261271059513, 0.03598394989967346, -0.027763137593865395,
- 0.026219459250569344, -0.013660469092428684, -0.07135266810655594, -0.10985781252384186,
- -0.054680123925209045, 0.016752397641539574, -0.06897665560245514, 0.04177172854542732,
- -0.1356845647096634, -0.0417318195104599, -0.04203476384282112, -0.08054468035697937,
- 0.002514669904485345, 0.02796892449259758, -0.01962379924952984, -0.10703570395708084,
- 0.025740591809153557, -0.038444723933935165, 0.04991239309310913, 0.0243939608335495,
- -0.02555982768535614, -0.0057826233096420765, 0.16904491186141968, 0.0822005569934845,
- -0.0439918152987957, 0.004156950861215591, -0.06588839739561081, 0.02451092004776001,
- -0.07706455886363983, -0.49549397826194763, 0.05778617411851883, 0.02544991672039032,
- 0.03426939994096756, 0.018685506656765938, -0.02870705910027027, 0.0014654840342700481,
- -0.014296810142695904, -0.09167655557394028, 0.07681787014007568, -0.06537823379039764,
- -0.007838061079382896, -0.031190980225801468, -0.08730043470859528,
- -0.02881716936826706, -0.006241710390895605, -0.0698421373963356, 0.09947976469993591,
- -0.06160527095198631, -0.10702484846115112, -0.16678926348686218,
- -0.0011097112437710166, 0.00434318371117115, -0.021939700469374657,
- 0.005101315677165985, -0.014361954294145107, -0.10047093033790588, -0.07418649643659592,
- 0.019238729029893875, 0.028773397207260132, 0.048189278692007065, -0.10119140148162842,
- -0.030600331723690033, 0.040471356362104416, -0.03218509629368782, 0.14290529489517212,
- -0.02708587609231472, -0.036293093115091324, -0.030026059597730637, 0.11216288805007935,
- 0.04642459750175476, 0.1804342418909073, -0.009594801813364029, 0.02580835297703743,
- 0.005981313996016979, 0.22436170279979706, 0.06178572028875351, -0.0037111195269972086,
- -0.003911708015948534, 0.02812611311674118, 0.025990622118115425, -0.03778941184282303,
- 0.05708476901054382, -0.059910036623477936, -0.0557907372713089, -0.056732531636953354,
- -0.016450559720396996, -0.031584594398736954, -0.005964182782918215, 0.2167275846004486,
- -0.010297599248588085, 0.055780112743377686, 0.008540788665413857, -0.05688043683767319,
- 0.02207467518746853, -0.07270630449056625, -0.10401124507188797, -0.04883440211415291,
- -0.07928195595741272, 0.013720104470849037, -0.0848541259765625, -0.10839620232582092,
- -0.015546320006251335, 0.0033254085574299097, 0.0007174313650466502,
- 0.09040657430887222, 0.07490242272615433, 0.00885636918246746, -0.004474707879126072,
- 0.12224110960960388, 0.08059193938970566, -0.0304025337100029, 0.058765705674886703,
- 0.1701732873916626, 0.024451622739434242, 0.013108945451676846, -0.03935346379876137,
- -0.0439947135746479, 0.056225959211587906, 0.07101282477378845, -0.04442235827445984,
- 0.05664444714784622, 0.04604300111532211, -0.03323392570018768, -0.043763983994722366,
- 0.0013528676936402917, -0.006946845445781946, 0.056959040462970734, -0.5167094469070435,
- -0.046310052275657654, 0.1211007609963417, -0.019704952836036682, 0.016662057489156723,
- 0.058125052601099014, 0.05544067174196243, 0.00096120749367401, -0.020495044067502022,
- -0.09494365006685257, 0.07403087615966797, 0.03359678387641907, 0.08174511790275574,
- -0.07761756330728531, 0.004557168576866388, 0.05305129662156105, -0.083016037940979,
- -0.00020419966313056648, 0.06102679297327995, -0.23328500986099243,
- 0.002289093565195799, -0.02861923538148403, 0.12019814550876617, -0.00532101932913065,
- 0.017027612775564194, 0.0787920355796814, -0.0592321902513504, 0.09975316375494003,
- 0.06315085291862488, -0.022708525881171227, 0.0223175510764122, -0.025997448712587357,
- -0.00695530790835619, 0.10984636843204498, 0.062226466834545135, 0.09590929746627808,
- -0.0029178170952945948, 12.307007789611816, 0.02062750980257988, 0.04345177486538887,
- -0.12575899064540863, 0.0077940491028130054, -0.055168516933918, 0.015807297080755234,
- -0.1268133521080017, 0.07669644057750702, 0.12437961250543594, -0.015026086010038853,
- -0.048418037593364716, -0.041154056787490845, -0.14480185508728027, 0.04518498480319977,
- -0.07725625485181808, -0.10063435137271881, -0.029314707964658737,
- -0.0009171525598503649, -0.06743534654378891, -0.002748565748333931,
- 0.04636472463607788, 0.052195776253938675, 0.01745954528450966, -0.027801701799035072,
- 0.008209412917494774, 0.06625604629516602, -0.0078109088353812695, 0.013279473409056664,
- -0.024767808616161346, -0.02607477828860283, 0.00629414152354002, 0.05056176707148552,
- -0.0028223362751305103, 0.02975422702729702, 0.03971707448363304, 0.1520313173532486,
- 0.08599849790334702, 0.05089686065912247, 0.09235084056854248, 0.0032008951529860497,
- -0.013999774120748043, 0.024511612951755524, 0.03838888183236122, 0.08628111332654953,
- 0.08014531433582306, -0.009164812974631786, 0.15314890444278717, -0.01112000085413456,
- 0.13140317797660828, 0.09423406422138214, -0.009804116562008858, 0.12043912708759308,
- -0.046202402561903, 0.028045978397130966, 0.03208768740296364, 0.025745557621121407,
- -0.0907842218875885, 0.06781839579343796, 0.031025661155581474, -0.07818906754255295,
- 0.11761000007390976, -0.014341039583086967, 0.09406605362892151, -0.028009304776787758,
- 0.11779044568538666, 0.06080818921327591, 0.059996988624334335, -0.09863405674695969,
- -0.026602819561958313, -0.00905295368283987, -0.1424853652715683, -0.1591634750366211,
- 0.0673169195652008, 0.15265114605426788, -0.10215764492750168, -0.06198074668645859,
- 0.025396615266799927, -0.003700939239934087, -0.06422977894544601,
- -0.019304316490888596, 0.07766325026750565, 0.014107146300375462, -0.024048926308751106,
- 0.12619708478450775, 0.061156343668699265, 0.04686853662133217, 0.08146164566278458,
- -0.05555189028382301, -0.08722510933876038, -0.08328955620527267, 0.0537756010890007,
- -0.011715701781213284, -0.035567380487918854, -0.03650704398751259,
- -0.05650468170642853, 0.052829790860414505, -0.16677558422088623, 0.08166877180337906,
- 0.10826573520898819, -0.1232859268784523, -0.016837097704410553, -0.042609427124261856,
- 0.04771195352077484, -0.011386360973119736, 0.06902994960546494, -0.06218439340591431,
- 0.04269970953464508, -0.03794044256210327, 0.026211827993392944, -0.05438362807035446,
- 0.06288187950849533, 0.08081243187189102, -0.10102875530719757, 0.002388208406046033,
- 0.03588712215423584, 0.0345035195350647, -0.03746071457862854, 0.06446952372789383,
- 0.0837879404425621, -0.06120724976062775, -0.06059347838163376, -0.010095816105604172,
- -0.06443752348423004, -0.0603630393743515, -0.04609530791640282, 0.03046795353293419,
- 0.03703242167830467, -0.07381420582532883, 0.005720280576497316, 0.016909094527363777,
- 0.05972104147076607, 0.046943970024585724, -0.05376690253615379, 0.09172243624925613,
- -0.06490156799554825, -0.049035198986530304, 0.08056705445051193, 0.02332199551165104,
- 0.02302275225520134, 0.00924846064299345, -0.017247969284653664, -0.09727960079908371,
- -0.10798050463199615, -0.015829365700483322, 0.06407463550567627, 0.07320558279752731,
- 0.039375439286231995, 0.009230497293174267, -0.11385032534599304, -0.06789063662290573,
- 0.09289441257715225, 0.04491397738456726, 0.010809718631207943, 0.02424134872853756,
- -0.08541803807020187, -0.055551014840602875, 0.0710064172744751, -0.0963992327451706,
- 0.05185322463512421, -0.008967353031039238, 0.01675993949174881, 0.07808517664670944,
- 0.057888228446245193, 0.06123172119259834, 0.07554186880588531, 0.04558127745985985,
- -0.03442994877696037, 0.05936446040868759, -0.035283949226140976, 0.04531748965382576,
- 0.009204764850437641, -0.18698722124099731, -0.04941634088754654, 0.03406775742769241,
- 0.10147576779127121, 0.06353738158941269, -0.11759626120328903, -0.030848858878016472,
- -0.022587455809116364
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 345,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 7,
- "similarity": 0.9975601434707642
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 10,
- "similarity": 0.9975025653839111
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 54,
- "similarity": 0.9974936842918396
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Aarian Marshall"],
- "epoch_date_downloaded": 1664841600,
- "epoch_date_modified": 1664841600,
- "epoch_date_submitted": 1664841600,
- "flag": null,
- "report_number": 2058,
- "source_domain": "wired.com",
- "submitters": ["Thomas Giallella (CSET)"],
- "title": "AI Comes to Car Repair, and Body Shop Owners Aren’t Happy",
- "url": "https://www.wired.com/story/ai-car-repair-shop-owners-not-happy/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "henn-na-hotel",
- "name": "Henn na Hotel"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "unknown",
- "name": "Unknown"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "henn-na-hotel-guests",
- "name": "Henn na Hotel guests"
- },
- {
- "__typename": "Entity",
- "entity_id": "henn-na-hotal-staff",
- "name": "Henn na Hotal staff"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [2110, 2109, 2108, 2062, 2059],
- "vector": [
- -0.08424793183803558, 0.07785337418317795, 0.03119424544274807, -0.1305922269821167,
- 0.07461200654506683, -0.04046925529837608, -0.0024342560209333897, 0.025914881378412247,
- 0.11387263238430023, -0.12705601751804352, -0.021104244515299797, 0.017317628487944603,
- 0.04094696044921875, -0.06554065644741058, -0.002577145118266344, -0.06299431622028351,
- -0.09887637943029404, 0.027155455201864243, -0.024918070062994957, -0.11416065692901611,
- -0.07273639738559723, 0.003994024824351072, 0.01666981540620327, 0.09984637796878815,
- -0.03528832644224167, 0.011959072202444077, 0.1105864867568016, 0.12244193255901337,
- -0.058500416576862335, 0.04813339561223984, -0.04049499332904816, -0.08744402229785919,
- 0.12336907535791397, -0.0012990024406462908, 0.015419865027070045, 0.08430515974760056,
- 0.009274761192500591, -0.023355768993496895, -0.015086984261870384,
- -0.006052921060472727, 0.0423518642783165, 0.17425817251205444, -0.013383927755057812,
- 0.007488122675567865, 0.06571322679519653, 0.004431103356182575, 0.0399307981133461,
- 0.06770144402980804, 0.003336261259391904, 0.03405345603823662, -0.006748890969902277,
- 0.020459767431020737, -0.00944326538592577, 0.03129782900214195, -0.07046326249837875,
- 0.06664334982633591, 0.018820539116859436, 0.006651816423982382, 0.052219707518815994,
- -0.05380890890955925, 0.029190948233008385, -0.16387048363685608, -0.04729468375444412,
- -0.028448497876524925, 0.06291487067937851, -0.059088222682476044, -0.04227067530155182,
- 0.01673479750752449, 0.028128301724791527, 0.07486793398857117, 0.0576469711959362,
- -0.038232170045375824, 0.001977471634745598, -0.004292622208595276,
- -0.020224759355187416, -0.010750670917332172, -0.008107855916023254,
- 0.17686112225055695, -0.0739000216126442, -0.00959046185016632, 0.12229211628437042,
- -0.09971916675567627, 0.350461483001709, -0.006962948478758335, 0.011014195159077644,
- 0.002826177980750799, 0.08346888422966003, 0.06619913876056671, 0.0308002270758152,
- 0.024915622547268867, -0.008041506633162498, 0.029613012447953224, -0.05218679830431938,
- 0.009613902308046818, 0.0719883069396019, 0.027317380532622337, -0.030546192079782486,
- 0.03414233773946762, -0.01633828692138195, -0.0540720596909523, 0.0125309182330966,
- -0.025015536695718765, 0.12640772759914398, 0.0885784775018692, -0.02035359852015972,
- 0.021560873836278915, 0.06317088007926941, -0.06348580121994019, 0.056383538991212845,
- -0.04295114427804947, 0.030912131071090698, 0.005725383758544922, 0.056919582188129425,
- 0.0031481508631259203, 0.029415437951683998, -0.06379358470439911,
- 0.00039879418909549713, 0.07100246101617813, 0.05515340715646744, 0.030543213710188866,
- -0.010053226724267006, 0.07453655451536179, 0.09825380146503448, -0.0407981276512146,
- -0.0030058808624744415, -0.027268219739198685, -0.046142470091581345,
- 0.0004350062517914921, -0.019214114174246788, 0.05123152211308479,
- -0.054774343967437744, -0.2190338671207428, 0.004257597029209137, 0.06752971559762955,
- 0.0016288615297526121, -0.0014910614117980003, 0.017161019146442413,
- -0.057512473315000534, 0.05516143888235092, -0.02092720940709114, -0.02286299131810665,
- 0.06779257953166962, 0.035857684910297394, 0.045666761696338654, 0.09179404377937317,
- 0.02315884456038475, -0.006366712041199207, -0.038403257727622986,
- -0.012577531859278679, -0.014181460253894329, 0.10825344175100327, -0.1423805058002472,
- -0.0361005961894989, 0.016686147078871727, -0.01232389360666275, 0.6346110105514526,
- 0.10087905079126358, 0.12293024361133575, -0.03748759999871254, -0.016291199252009392,
- 0.15029025077819824, -0.016723405569791794, 0.06675811111927032, -0.06274928897619247,
- -0.07386067509651184, 0.01684594713151455, -0.05160418152809143, 0.002268814714625478,
- 0.029666882008314133, 0.005077078938484192, 0.11125431209802628, 0.016149049624800682,
- 0.08985419571399689, -0.005258728750050068, -0.05743129923939705, 0.00429402943700552,
- 0.05036525800824165, 0.031370487064123154, -0.1028018370270729, -0.012414549477398396,
- 0.046611037105321884, 0.09464515745639801, -0.05898327752947807, -0.0016568636056035757,
- -0.0518464557826519, 0.04703446477651596, -0.03269746154546738, 0.04687429219484329,
- -0.0036314476747065783, 0.02950911596417427, 0.03717338293790817, 0.05254986137151718,
- -0.01599225029349327, -0.0636957436800003, -0.03484175726771355, 0.13848848640918732,
- -0.0017542842542752624, -0.01745857670903206, 0.06177733093500137, -0.07571683824062347,
- 0.0029968249145895243, -0.009366055950522423, 0.13383233547210693, -0.0940336212515831,
- 0.029172521084547043, 0.0017172679072245955, 0.014890949241816998, 0.04939043149352074,
- 0.002799568697810173, -0.03903823345899582, -0.07415897399187088, 0.08645294606685638,
- 0.024651136249303818, 0.0857502818107605, 0.01926959864795208, -0.02248302288353443,
- 0.055386535823345184, 0.05089893192052841, 0.010814768262207508, -0.03834305331110954,
- 0.05613895133137703, 0.02738998271524906, -0.06047217175364494, -0.024385245516896248,
- 0.004661635495722294, 0.025455961003899574, 0.04703110083937645, -0.0027965144254267216,
- 0.06219134479761124, -0.00983413029462099, -0.03883783146739006, 0.06474491208791733,
- 0.020170871168375015, 0.004555827938020229, 0.08600623905658722, -0.07016538083553314,
- -0.027303650975227356, -0.04687822237610817, -0.03072035312652588, -0.012166703119874,
- -0.06280357390642166, 0.05444294214248657, 0.10035394132137299, 0.08449302613735199,
- 0.03875870257616043, 0.04751448705792427, 0.07301603257656097, 0.04257827624678612,
- -0.0013461705530062318, 0.05871075391769409, -0.04534014314413071,
- -0.014594890177249908, -0.02670447528362274, 0.02179138921201229, 0.05244298651814461,
- 0.0005851917085237801, -0.06333888322114944, -0.028742482885718346,
- -0.060886722058057785, -0.04058116674423218, -0.07206950336694717,
- -0.019419854506850243, 0.0427645742893219, 0.011060968972742558, -0.08434657752513885,
- -0.12267152220010757, -0.07366852462291718, 0.012962442822754383, 0.04652639478445053,
- -0.029595226049423218, 0.00005669821985065937, -0.11504407227039337,
- 0.038413770496845245, -0.01561861764639616, 0.05219997093081474, -0.002208519261330366,
- 0.032459065318107605, -0.025663334876298904, -0.07815978676080704, 0.013766949065029621,
- 0.013318182900547981, -0.012151835486292839, -0.051208484917879105,
- -0.04504392296075821, -0.02162219025194645, 0.020875578746199608, 0.01529430877417326,
- -0.06147491931915283, 0.016465848311781883, 0.04224902018904686, 0.06389404088258743,
- -0.028209004551172256, -0.01432527881115675, 0.05354904383420944, -0.02626597322523594,
- -0.011213848367333412, 0.0866144448518753, -0.02075161598622799, -0.00484661478549242,
- -0.019510092213749886, -0.06065040081739426, -0.07268430292606354,
- -0.012327788397669792, -0.05919846147298813, 0.07181393355131149, -0.05214787274599075,
- -0.022415397688746452, -0.031119991093873978, -0.0018042974406853318,
- 0.045079153031110764, -0.03950641304254532, -0.06657393276691437, -0.05349729582667351,
- 0.10889875888824463, 0.0013695016968995333, -0.0009633066365495324,
- 0.052185386419296265, -0.058592893183231354, 0.07082347571849823, 0.010844714008271694,
- 0.00792138185352087, 0.05060017108917236, 0.054132603108882904, -0.039013102650642395,
- 0.029652263969182968, 0.061300862580537796, 0.017748020589351654, 0.03868663311004639,
- 0.052736300975084305, 0.405254989862442, -0.18907049298286438, 0.10355186462402344,
- 0.09652869403362274, -0.0025139744393527508, 0.049829937517642975,
- -0.030884940177202225, 0.05065620690584183, 0.03566484898328781, 0.09578150510787964,
- 0.11693315207958221, -0.05742214247584343, 0.008970433846116066, -0.067756786942482,
- 0.07781370729207993, 0.01971319131553173, 0.022174157202243805, -0.005384138319641352,
- -0.04060659185051918, -0.02034430392086506, -0.0020602389704436064,
- -0.059442318975925446, 0.011329391039907932, -0.019979339092969894,
- -0.07565582543611526, 0.018733590841293335, 0.05581919476389885, 0.0439608208835125,
- -0.04513591527938843, 0.041827492415905, -0.05598118156194687, 0.04635164514183998,
- 0.03201671317219734, 0.0581490695476532, -0.0723654180765152, 0.014553618617355824,
- -0.10513827949762344, -0.0970885306596756, 0.05744604021310806, 0.003987719304859638,
- 0.0597233772277832, 0.059467922896146774, -0.027003314346075058, 0.04134006053209305,
- 0.004467383958399296, -0.03842166066169739, -0.00996699370443821, 0.039439134299755096,
- 0.038261767476797104, 0.07451710850000381, 0.14709699153900146, 0.00033317654742859304,
- -0.028912577778100967, -0.07807318866252899, 0.04409894347190857, 0.0865020826458931,
- -0.01003828551620245, 0.024540403857827187, -0.028233136981725693, -0.0042466064915061,
- 0.0010108820861205459, -0.034322429448366165, -0.09186230599880219,
- -0.022494036704301834, -0.06350110471248627, 0.0718640685081482, 0.029059002175927162,
- -0.07554367929697037, -0.09566189348697662, -0.008089554496109486,
- -0.049833834171295166, 0.009597014635801315, 0.09492552280426025, -0.049418896436691284,
- 0.03772604465484619, -0.027407389134168625, 0.0018095762934535742, 0.006735852919518948,
- -0.09223944693803787, 0.02618684247136116, -0.046788863837718964, 0.03321417421102524,
- 0.09872143715620041, 0.043809570372104645, -0.06568008661270142, 0.06064232066273689,
- -0.10489114373922348, 0.035813841968774796, 0.015643779188394547, -0.0487661138176918,
- 0.06823436915874481, -0.018705150112509727, 0.038764845579862595, 0.017904695123434067,
- -0.05036211758852005, 0.006860221736133099, -0.05239812657237053, -0.06144822761416435,
- -0.10170209407806396, -0.07962524890899658, -0.04609495773911476, -0.0731792077422142,
- 0.029163232073187828, -0.07941432297229767, -0.01398024708032608, -0.0343906506896019,
- -0.0013639036333188415, 0.0019085664534941316, 0.019022973254323006,
- -0.014296558685600758, -0.10901238769292831, -0.014218365773558617,
- -0.018444281071424484, 0.0425548255443573, -0.03170548751950264, -0.06829231232404709,
- 0.042914699763059616, 0.1079266294836998, 0.032623231410980225, -0.04189549759030342,
- -0.02021004818379879, -0.06636969745159149, 0.026437783613801003, -0.11501841247081757,
- -0.4842635989189148, 0.045994602143764496, 0.0352308452129364, 0.03707791119813919,
- 0.034858740866184235, -0.071815125644207, 0.03018057905137539, 0.0014733098214492202,
- -0.01776527799665928, 0.07230565696954727, -0.0483311228454113, 0.012177412398159504,
- -0.006211020052433014, -0.04245593026280403, -0.0321216844022274, -0.08297251164913177,
- -0.023204196244478226, 0.034314267337322235, -0.00838866364210844, -0.08507706969976425,
- -0.08071009814739227, 0.01861058920621872, -0.01826627552509308, 0.009536695666611195,
- -0.014294059947133064, 0.014535695314407349, -0.061739373952150345,
- -0.049018751829862595, 0.028161192312836647, 0.020132597535848618, 0.02107442542910576,
- -0.10385267436504364, 0.0036424200516194105, 0.058816421777009964, -0.02037426456809044,
- 0.11984068155288696, 0.028592348098754883, 0.0061959801241755486, -0.03715640679001808,
- 0.03764272481203079, 0.044842448085546494, 0.18876127898693085, -0.03890622407197952,
- 0.04850277304649353, -0.026292767375707626, 0.08701654523611069, 0.031035762280225754,
- 0.03952143341302872, -0.013529623858630657, -0.003504931926727295, 0.03622392192482948,
- -0.03678975626826286, 0.077771857380867, -0.056669920682907104, -0.02441064454615116,
- -0.009899979457259178, -0.026732781901955605, -0.027474528178572655,
- 0.01745784282684326, 0.1813029944896698, 0.03547440096735954, 0.024715902283787727,
- 0.027317460626363754, -0.04945003241300583, 0.014905174262821674, -0.04125767946243286,
- -0.0367768332362175, -0.042515046894550323, -0.00959157943725586,
- -0.0010922668734565377, -0.03592555224895477, -0.08501366525888443,
- -0.025800803676247597, 0.02013895846903324, -0.016169648617506027, 0.11352185159921646,
- -0.04246256500482559, 0.010692983865737915, -0.02073230966925621, 0.1282496154308319,
- 0.04623354598879814, 0.0673164501786232, 0.03209204971790314, 0.06750304996967316,
- 0.026388153433799744, -0.008568085730075836, -0.062145382165908813,
- -0.053297776728868484, 0.027241310104727745, 0.1143791452050209, -0.032295599579811096,
- 0.10083683580160141, 0.01756584644317627, -0.006298304535448551, -0.04170981049537659,
- 0.01923723891377449, 0.031275540590286255, 0.03591636195778847, -0.4711231589317322,
- -0.032465673983097076, 0.131684347987175, 0.0005652032559737563, 0.012268644757568836,
- 0.07377098500728607, 0.021367311477661133, -0.036136843264102936, -0.008330313488841057,
- -0.09321122616529465, 0.10089602321386337, 0.008610691875219345, 0.03542789816856384,
- -0.11721287667751312, 0.038768839091062546, 0.0806388333439827, 0.004090757574886084,
- -0.02525988593697548, 0.04451162368059158, -0.24120521545410156, 0.024993164464831352,
- -0.009299997240304947, 0.12168385088443756, -0.0023105584550648928, 0.0412968248128891,
- 0.08074084669351578, -0.025736838579177856, 0.058863889425992966, 0.06371225416660309,
- 0.02317926287651062, 0.062117062509059906, -0.017196277156472206, -0.01631523109972477,
- 0.0896904319524765, 0.06353464722633362, 0.10357628762722015, 0.016222774982452393,
- 11.827865600585938, 0.07155311107635498, 0.08397360146045685, -0.08700863271951675,
- -0.0030332666356116533, -0.053535111248493195, 0.04635022208094597, -0.0623394250869751,
- 0.009408767335116863, 0.0874093621969223, -0.001912191160954535, -0.03464910387992859,
- -0.025478169322013855, -0.07047724723815918, 0.023269226774573326, -0.06650872528553009,
- -0.04487622529268265, -0.03075084090232849, 0.049594391137361526, -0.07975046336650848,
- -0.026092935353517532, 0.08642008155584335, 0.06632660329341888, 0.03697168081998825,
- -0.06565158814191818, 0.05394074320793152, 0.014102086424827576, -0.0023617984261363745,
- 0.0027380038518458605, -0.028339480981230736, 0.0007202252745628357,
- 0.06738398969173431, 0.05838598683476448, 0.022179311141371727, 0.026290159672498703,
- 0.0618070587515831, 0.025247961282730103, 0.04943873733282089, 0.04724903777241707,
- 0.05449654906988144, 0.022672832012176514, 0.013552653603255749, 0.02264535054564476,
- 0.01799160987138748, 0.05999022722244263, 0.01863943412899971, 0.01933092437684536,
- 0.1077965721487999, -0.010441379621624947, 0.07484029233455658, 0.08093681931495667,
- 0.004448747728019953, 0.09270738065242767, 0.01623092219233513, -0.005824031308293343,
- 0.0552111379802227, -0.0027508907951414585, -0.08027983456850052, 0.07488182187080383,
- 0.05456953123211861, -0.06594658643007278, 0.10939595848321915, 0.03764837980270386,
- 0.12369497865438461, 0.013065459206700325, 0.042062047868967056, 0.07275135070085526,
- 0.05813445523381233, -0.08122257143259048, -0.051942795515060425, 0.02584170177578926,
- -0.0930122509598732, -0.06797514855861664, 0.05089681223034859, 0.0715770274400711,
- -0.05151580646634102, 0.049365878105163574, -0.043862760066986084, 0.03922975808382034,
- -0.04082081466913223, 0.0037994335871189833, 0.02163187600672245, -0.06201319023966789,
- 0.031339168548583984, 0.04676705598831177, 0.02070842869579792, 0.05418288707733154,
- 0.09948465973138809, -0.019185595214366913, -0.0734872967004776, -0.09342020750045776,
- 0.07887193560600281, -0.01788967475295067, -0.06177293136715889, -0.003186442656442523,
- -0.04549118131399155, 0.016293104737997055, -0.15524502098560333, 0.05010189488530159,
- 0.1069638729095459, -0.09779157489538193, -0.022148752585053444, -0.02368762716650963,
- 0.10032501071691513, -0.0003894563706126064, 0.026347637176513672, -0.0639043003320694,
- 0.012223746627569199, 0.018808722496032715, 0.022991660982370377, -0.029888059943914413,
- 0.060112882405519485, 0.05975983291864395, -0.05153292417526245, 0.027628233656287193,
- 0.06687267869710922, -0.024233493953943253, -0.010082628577947617, 0.048445284366607666,
- 0.018850672990083694, -0.08452089875936508, -0.0751950666308403, -0.055017441511154175,
- -0.05404381826519966, -0.0472317710518837, -0.03873009979724884, 0.0087989317253232,
- 0.008517546579241753, -0.03986338526010513, -0.03923627361655235, 0.004641289822757244,
- 0.05860468000173569, 0.10327057540416718, 0.016154790297150612, 0.07802318036556244,
- -0.04906407743692398, -0.03370124101638794, 0.061639659106731415, 0.036671821027994156,
- 0.06731744855642319, -0.019467364996671677, -0.037790436297655106, -0.0287124402821064,
- -0.10246380418539047, 0.021591315045952797, 0.08345691859722137, 0.02332940883934498,
- 0.054550834000110626, -0.0057175057008862495, -0.05991264432668686, -0.0550234392285347,
- 0.08090969920158386, 0.043335702270269394, 0.02485791966319084, 0.038855113089084625,
- -0.05457998439669609, -0.00953221507370472, 0.07555162161588669, -0.047734957188367844,
- 0.007717105560004711, 0.00626060226932168, -0.03366703912615776, 0.08341947942972183,
- 0.05667906999588013, 0.04528048262000084, 0.04428178817033768, -0.005067094694823027,
- -0.011405396275222301, 0.012701913714408875, -0.00914159044623375, 0.023647388443350792,
- -0.049464158713817596, -0.08346723020076752, -0.07242438197135925, 0.010413393378257751,
- 0.0723755732178688, 0.005910760257393122, -0.14431443810462952, -0.024554450064897537,
- -0.028756434097886086
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 346,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 24,
- "similarity": 0.9978759288787842
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 68,
- "similarity": 0.9977397918701172
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 37,
- "similarity": 0.997676432132721
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Alastair Gale", "Takashi Mochizuki"],
- "epoch_date_downloaded": 1664928000,
- "epoch_date_modified": 1665619200,
- "epoch_date_submitted": 1664928000,
- "flag": null,
- "report_number": 2110,
- "source_domain": "wsj.com",
- "submitters": ["Khoa Lam"],
- "title": "Robot Hotel Loses Love for Robots",
- "url": "https://www.wsj.com/articles/robot-hotel-loses-love-for-robots-11547484628"
- },
- {
- "__typename": "Report",
- "authors": ["Esther Hertzfeld"],
- "epoch_date_downloaded": 1664928000,
- "epoch_date_modified": 1665619200,
- "epoch_date_submitted": 1664928000,
- "flag": null,
- "report_number": 2109,
- "source_domain": "hotelmanagement.net",
- "submitters": ["Srishti Khemka (CSET)"],
- "title": "Japan’s Henn na Hotel fires half its robot workforce",
- "url": "https://www.hotelmanagement.net/tech/japan-s-henn-na-hotel-fires-half-its-robot-workforce"
- },
- {
- "__typename": "Report",
- "authors": ["Shannon Liao"],
- "epoch_date_downloaded": 1664928000,
- "epoch_date_modified": 1665619200,
- "epoch_date_submitted": 1664928000,
- "flag": null,
- "report_number": 2108,
- "source_domain": "theverge.com",
- "submitters": ["Srishti Khemka (CSET)"],
- "title": "Japan’s robot hotel lays off half the robots after they created more work for humans",
- "url": "https://www.theverge.com/2019/1/15/18184198/japans-robot-hotel-lay-off-work-for-humans"
- },
- {
- "__typename": "Report",
- "authors": ["Melanie Ehrenkranz"],
- "epoch_date_downloaded": 1664928000,
- "epoch_date_modified": 1670976000,
- "epoch_date_submitted": 1664928000,
- "flag": null,
- "report_number": 2062,
- "source_domain": "gizmodo.com",
- "submitters": ["Srishti Khemka (CSET)"],
- "title": "Robots Ruin Robot Hotel",
- "url": "https://gizmodo.com/robots-ruin-robot-hotel-1831772555"
- },
- {
- "__typename": "Report",
- "authors": ["Independent.ie"],
- "epoch_date_downloaded": 1664928000,
- "epoch_date_modified": 1664928000,
- "epoch_date_submitted": 1664928000,
- "flag": null,
- "report_number": 2059,
- "source_domain": "independent.ie",
- "submitters": ["Srishti Khemka (CSET)"],
- "title": "Hotel sacks half of its robot staff for being bad at their jobs",
- "url": "https://www.independent.ie/world-news/asia-pacific/hotel-sacks-half-of-its-robot-staff-for-being-bad-at-their-jobs-37727564.html"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "waymo",
- "name": "Waymo"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "waymo",
- "name": "Waymo"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "waymo-passengers",
- "name": "Waymo passengers"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [2099, 2098, 2060],
- "vector": [
- -0.07973656803369522, 0.04611459746956825, 0.007282976061105728, -0.1099003478884697,
- 0.07180009037256241, -0.04934487119317055, -0.011377077549695969, 0.04454057291150093,
- 0.05953576788306236, -0.13817109167575836, 0.00456276023760438, 0.05617823824286461,
- 0.039731644093990326, -0.07146306335926056, 0.07879800349473953, -0.05407790467143059,
- -0.07176800817251205, -0.019888149574398994, -0.03610984608530998, -0.08327802270650864,
- -0.10237500816583633, 0.010363596491515636, 0.05526064336299896, 0.10446462780237198,
- -0.06556849181652069, 0.010770588181912899, 0.07890834659337997, 0.10905852168798447,
- -0.05104559287428856, -0.003720540553331375, -0.007643515709787607,
- -0.045041631907224655, 0.12130991369485855, 0.02690371312201023, 0.009988569654524326,
- 0.0785144567489624, 0.03754707798361778, -0.04020056128501892, -0.062478795647621155,
- 0.00719118257984519, 0.025649575516581535, 0.14101926982402802, 0.023973310366272926,
- -0.03719687461853027, 0.06439898163080215, -0.013483108021318913, 0.016728049144148827,
- 0.047457143664360046, -0.02729867398738861, -0.009619462303817272,
- 0.0073968288488686085, 0.02765265293419361, -0.04436427727341652, 0.02433614991605282,
- -0.08180845528841019, 0.0789162889122963, 0.043902888894081116, 0.005925917997956276,
- 0.03709259256720543, -0.08938617259263992, -0.003781649051234126, -0.14585120975971222,
- -0.06426645070314407, -0.03414374589920044, 0.070860855281353, -0.04309898987412453,
- -0.042306140065193176, 0.01808023452758789, 0.007382995914667845, 0.056992366909980774,
- 0.06388922035694122, -0.06141260266304016, 0.003478868631646037, -0.025126570835709572,
- -0.027892177924513817, -0.02890739031136036, 0.016692359000444412, 0.2139483243227005,
- -0.12036669999361038, 0.014841978438198566, 0.09506962448358536, -0.10295996814966202,
- 0.3614172637462616, 0.03318449482321739, -0.031021827831864357, -0.028820499777793884,
- 0.08300187438726425, 0.0276706013828516, 0.053875911980867386, 0.020258909091353416,
- 0.0075704739429056644, 0.03604808449745178, -0.039569925516843796, 0.04403745010495186,
- 0.08076838403940201, 0.0023806949611753225, 0.005689383950084448, -0.008596302941441536,
- -0.015735261142253876, -0.054343629628419876, 0.06982892751693726, -0.06363343447446823,
- 0.1161431074142456, 0.02044331468641758, -0.016906246542930603, -0.01565943844616413,
- 0.0938524678349495, -0.0005520405247807503, 0.023753071203827858, -0.039091188460588455,
- 0.007674867752939463, 0.048784028738737106, 0.05204157158732414, 0.003288221312686801,
- 0.02424604445695877, -0.05308566614985466, -0.017436929047107697, 0.049587901681661606,
- 0.09126376360654831, 0.036015912890434265, -0.01094451081007719, 0.06547409296035767,
- 0.11917030811309814, -0.07441624253988266, 0.02649824321269989, -0.03915842995047569,
- -0.03779365494847298, -0.022419007495045662, -0.02806003950536251, 0.010263655334711075,
- -0.042210448533296585, -0.21583984792232513, 0.012558461166918278, 0.10447400063276291,
- 0.038003403693437576, -0.032871443778276443, -0.006997112650424242,
- -0.08358704298734665, 0.039580345153808594, -0.013611141592264175, -0.02431611903011799,
- 0.08359553664922714, 0.053306128829717636, 0.023082608357071877, 0.1151878759264946,
- 0.021402614191174507, -0.028183722868561745, -0.04544917866587639,
- -0.002540063112974167, -0.023926228284835815, 0.09525474160909653, -0.07455053925514221,
- -0.051039353013038635, 0.036393411457538605, 0.04191174730658531, 0.6020193099975586,
- 0.08141577243804932, 0.13692429661750793, -0.00646947929635644, -0.013086886145174503,
- 0.1689104437828064, 0.0069701517932116985, 0.06222827360033989, -0.022703567519783974,
- -0.06696993112564087, 0.005778725724667311, -0.03271820768713951, -0.035104479640722275,
- 0.014298568479716778, 0.030988216400146484, 0.0812179446220398, 0.03842141851782799,
- 0.10345474630594254, -0.023611830547451973, -0.08958566933870316, -0.010771644301712513,
- 0.020899156108498573, 0.01461742538958788, -0.07562892884016037, -0.041245561093091965,
- 0.048347461968660355, 0.07934043556451797, -0.022538507357239723, -0.00707781920209527,
- -0.03149723634123802, 0.05157819762825966, -0.02585434913635254, 0.028235189616680145,
- -0.03130863979458809, 0.02277510054409504, 0.03160882368683815, 0.04098272696137428,
- -0.010236755944788456, -0.07369162887334824, -0.020458431914448738, 0.14638812839984894,
- 0.05385156348347664, -0.03668611869215965, 0.030525818467140198, -0.07628753036260605,
- 0.03308206796646118, -0.006174386944621801, 0.15339697897434235, -0.08438972383737564,
- 0.0160499420017004, 0.007380977272987366, 0.005480184685438871, 0.03455619141459465,
- -0.03045707382261753, -0.05847903713583946, -0.07766114920377731, 0.0467897467315197,
- 0.02435520850121975, 0.1142645999789238, 0.04006807133555412, -0.009772850200533867,
- 0.02965325117111206, 0.010500316508114338, 0.01975191943347454, -0.05868224427103996,
- 0.06933323293924332, 0.06602740287780762, -0.05116739496588707, 0.003292503533884883,
- 0.0223515834659338, 0.04010426998138428, 0.04100928455591202, -0.009598090313374996,
- 0.04833872616291046, 0.03745153173804283, 0.009780005551874638, 0.03346537798643112,
- -0.018588952720165253, 0.013109673745930195, 0.09260860085487366, -0.05848415568470955,
- -0.0557018406689167, -0.016901947557926178, -0.029566729441285133, 0.004700124263763428,
- -0.06304845213890076, 0.06326741725206375, 0.01800088956952095, 0.055685173720121384,
- 0.008512694388628006, 0.04613940417766571, 0.042521070688962936, 0.052830055356025696,
- 0.036097317934036255, 0.04544520750641823, -0.04287285730242729, -0.04769009351730347,
- -0.024108240380883217, -0.009281559847295284, 0.08016035705804825, 0.04701119661331177,
- -0.07071827352046967, -0.012344914488494396, 0.02876845747232437, -0.07369440048933029,
- -0.04052886739373207, 0.007821712642908096, -0.030431753024458885, 0.03137735649943352,
- -0.07808776944875717, -0.07076069712638855, -0.04325242340564728,
- -0.0027564195916056633, 0.03909287974238396, -0.02615959197282791, -0.01036016270518303,
- -0.08615236729383469, -0.01381613314151764, -0.03845078870654106, 0.038511279970407486,
- 0.011517555452883244, -0.0022872949484735727, -0.04460543394088745,
- -0.07264935970306396, -0.009625659324228764, 0.03807121515274048, -0.04450979828834534,
- -0.024863088503479958, -0.07817576080560684, -0.03494137153029442, 0.02111145108938217,
- -0.019827349111437798, -0.01523571740835905, 0.04900389909744263, 0.06029142066836357,
- 0.06664033979177475, 0.00612516887485981, -0.007113841827958822, 0.024464035406708717,
- -0.020154524594545364, 0.005668950732797384, 0.07055170089006424, 0.024007102474570274,
- 0.04094294086098671, -0.03220782428979874, -0.05401568487286568, -0.06522992998361588,
- -0.005798760801553726, -0.0462898313999176, 0.06060779094696045, -0.060043636709451675,
- -0.025165436789393425, -0.01716892048716545, 0.00729275681078434, 0.04833003506064415,
- -0.06643245369195938, -0.06036442518234253, -0.09886790066957474, 0.12207875400781631,
- -0.01711289770901203, -0.026788195595145226, 0.047853630036115646,
- -0.023825449869036674, 0.03814003989100456, 0.02146555483341217, 0.038550328463315964,
- 0.0758429765701294, 0.0958297923207283, -0.025414690375328064, 0.02636638469994068,
- 0.04068009555339813, -0.026389405131340027, 0.013883174397051334, 0.07094918936491013,
- 0.42400553822517395, -0.20184361934661865, 0.03606335446238518, 0.08761486411094666,
- 0.014620368368923664, 0.08025047183036804, -0.02216362953186035, 0.05711774155497551,
- 0.028232349082827568, 0.07414285093545914, 0.09268008917570114, -0.020620254799723625,
- -0.012775241397321224, -0.041792068630456924, 0.04310990497469902,
- 0.0038581686094403267, 0.00817877147346735, -0.021517110988497734, -0.06085135415196419,
- -0.00013364168989937752, 0.03418255224823952, -0.06148791313171387,
- 0.011137242428958416, -0.022738516330718994, -0.10164374858140945, 0.016007767990231514,
- 0.0433802455663681, 0.011651661247015, -0.029521016404032707, 0.01704329065978527,
- -0.012704700231552124, 0.02168438397347927, -0.009079194627702236, 0.05344796180725098,
- -0.04654906317591667, 0.05854625627398491, -0.0647338330745697, -0.10048773139715195,
- 0.07589056342840195, -0.005885904189199209, 0.049119818955659866, 0.06361239403486252,
- -0.021280528977513313, 0.028622368350625038, -0.017100825905799866,
- -0.05674603953957558, -0.010142776183784008, 0.04405832290649414, 0.04546505585312843,
- 0.06654002517461777, 0.14998634159564972, -0.02737540565431118, -0.030058646574616432,
- -0.07058125734329224, 0.0577569305896759, 0.07494701445102692, -0.03550976887345314,
- 0.01965714432299137, 0.0008706357330083847, 0.011478633619844913, -0.002063550753518939,
- -0.027973607182502747, -0.08809065073728561, 0.006100183818489313, -0.03579843044281006,
- 0.04355558753013611, 0.01656574383378029, -0.024146385490894318, -0.1637859344482422,
- -0.047747183591127396, -0.015172016806900501, 0.03622990474104881, 0.09774026274681091,
- -0.048501819372177124, -0.015945028513669968, 0.03607301414012909,
- -0.010314038954675198, -0.014967608265578747, -0.08123753219842911, 0.02581309713423252,
- -0.043369848281145096, 0.02921692281961441, 0.06409413367509842, 0.054002225399017334,
- -0.025944435968995094, 0.03273727372288704, -0.08976325392723083, 0.02610194683074951,
- -0.004189835395663977, -0.0002602614986244589, 0.03175953030586243,
- -0.053100522607564926, 0.07041192799806595, 0.013848955743014812, -0.01588752679526806,
- -0.008747856132686138, -0.03887704387307167, -0.015521015040576458, -0.0980173870921135,
- -0.08448783308267593, -0.027015184983611107, -0.07732930034399033, 0.0645364448428154,
- -0.0670602098107338, -0.061757490038871765, -0.03700912743806839,
- -0.0009419688140042126, 0.019805297255516052, 0.048261355608701706,
- 0.019155560061335564, -0.11761514097452164, -0.015078596770763397, -0.01196600217372179,
- 0.04655856266617775, 0.006488401908427477, -0.05658785626292229, -0.020672762766480446,
- 0.07344049215316772, 0.034676436334848404, -0.027403727173805237, 0.03898743912577629,
- -0.044282395392656326, -0.0036772300954908133, -0.0650167167186737, -0.5584996342658997,
- 0.04099474102258682, 0.014444026164710522, 0.029033930972218513, 0.01654207892715931,
- -0.06992224603891373, 0.019218333065509796, 0.0058577400632202625,
- -0.012241092510521412, 0.04724361374974251, -0.054850984364748, 0.021325470879673958,
- 0.020594725385308266, -0.060574427247047424, -0.021347060799598694,
- -0.05912432074546814, -0.03036251850426197, 0.04078182950615883, -0.03903578221797943,
- -0.08057235926389694, -0.07810664921998978, 0.01002090610563755, -0.0449255108833313,
- -0.014545336365699768, -0.014780275523662567, -0.015514246188104153,
- -0.10671160370111465, -0.07237529009580612, 0.027842381969094276, 0.0692373514175415,
- 0.02202862687408924, -0.04816591367125511, -0.022238969802856445, 0.029518844559788704,
- -0.03716867044568062, 0.1237797737121582, 0.03402884677052498, 0.007810128852725029,
- -0.07419242709875107, 0.051021676510572433, 0.06576082110404968, 0.18707327544689178,
- -0.048130881041288376, 0.10300902277231216, 0.031662922352552414, 0.13034382462501526,
- -0.004171662963926792, 0.0337289534509182, -0.03416473791003227, -0.0025359836872667074,
- 0.03557616472244263, -0.02607595920562744, 0.009698058478534222, -0.07513094693422318,
- -0.022826969623565674, -0.03552616760134697, -0.029036903753876686,
- -0.061127930879592896, 0.02420564740896225, 0.17907996475696564, 0.0354028157889843,
- 0.052567943930625916, -0.009552985429763794, -0.02902928739786148, -0.02213289774954319,
- -0.0709005668759346, -0.035543326288461685, -0.043520551174879074, -0.03005044162273407,
- -0.0010787477949634194, -0.02504388429224491, -0.08230866491794586, -0.0154544273391366,
- -0.0029584739822894335, -0.013635578565299511, 0.09537410736083984,
- -0.018096722662448883, 0.0386759378015995, -0.032837506383657455, 0.09385553747415543,
- 0.02021465264260769, 0.031315531581640244, 0.051318030804395676, 0.07283002883195877,
- 0.029412994161248207, -0.03237505257129669, -0.07053878903388977, -0.03843674436211586,
- -0.009813630022108555, 0.1523492932319641, -0.052263934165239334, 0.09746688604354858,
- 0.013575486838817596, -0.009076502174139023, -0.018488982692360878, 0.03758528456091881,
- 0.008808034472167492, 0.008915280923247337, -0.5282502770423889, 0.0008857359061948955,
- 0.10753550380468369, 0.008491857908666134, 0.012786383740603924, 0.08007390052080154,
- 0.06194878742098808, -0.018786780536174774, 0.03126638010144234, -0.05403158441185951,
- 0.13566622138023376, -0.006409558933228254, 0.05750364065170288, -0.07658664882183075,
- 0.009727527387440205, 0.07173044234514236, 0.022547686472535133, -0.03045218624174595,
- 0.04872828349471092, -0.22960788011550903, 0.012623690068721771, -0.03891758620738983,
- 0.11326804012060165, 0.043883394449949265, 0.020962178707122803, 0.0791156217455864,
- -0.036103639751672745, 0.02985338866710663, 0.05806570127606392, 0.03421906754374504,
- 0.0280807763338089, 0.002290240256115794, -0.04403422400355339, 0.07948117703199387,
- 0.04515768215060234, 0.08467742800712585, 0.03622060269117355, 11.929908752441406,
- 0.03958527371287346, 0.06364104896783829, -0.03814948722720146, 0.02714381366968155,
- -0.06469287723302841, 0.03940160199999809, -0.059902023524045944, 0.056299757212400436,
- 0.11860000342130661, 0.002493322594091296, 0.005686840508133173, -0.04215740039944649,
- -0.06621390581130981, 0.011107034981250763, -0.07047990709543228, -0.017400793731212616,
- -0.024078384041786194, 0.038769979029893875, -0.038941290229558945,
- -0.004898628685623407, 0.018525077030062675, 0.061886977404356, 0.04310840368270874,
- -0.11089914292097092, 0.06663595885038376, 0.01016476284712553, 0.014522838406264782,
- 0.0017295712605118752, 0.052023470401763916, -0.004504676908254623,
- 0.020297301933169365, 0.06890929490327835, 0.03249875828623772, 0.018169201910495758,
- 0.040995899587869644, -0.00878345686942339, 0.05014984682202339, 0.019729362800717354,
- 0.0752781555056572, 0.02787827141582966, 0.0233499426394701, 0.03253825381398201,
- 0.029511919245123863, 0.022259706631302834, 0.04119129478931427, 0.05576188489794731,
- 0.09338321536779404, -0.00408710865303874, 0.0048799640499055386, 0.08328985422849655,
- -0.016731364652514458, 0.11157824844121933, 0.04444648697972298, -0.011576686054468155,
- 0.017228558659553528, -0.00540519692003727, -0.03959989920258522, 0.06600215286016464,
- 0.097808837890625, -0.04028609022498131, 0.10203230381011963, 0.026769375428557396,
- 0.11242882162332535, -0.008622166700661182, 0.022888056933879852, 0.0559883676469326,
- 0.09053335338830948, -0.13963104784488678, -0.04403398558497429, 0.03941698744893074,
- -0.11414283514022827, -0.05387585982680321, 0.01374214980751276, 0.05399324372410774,
- -0.03641941398382187, 0.010048751719295979, -0.035219546407461166, 0.026142502203583717,
- -0.056837186217308044, 0.010250539518892765, 0.015738876536488533, -0.0320899672806263,
- 0.016640305519104004, 0.01691124215722084, 0.035396456718444824, 0.13046906888484955,
- 0.0838107094168663, -0.003274696646258235, -0.05701872333884239, -0.06817375868558884,
- 0.05367578566074371, -0.024274557828903198, -0.04347531124949455,
- -0.00013800400483887643, -0.02869393490254879, 0.042668700218200684,
- -0.15336251258850098, 0.054297227412462234, 0.09887385368347168, -0.0734570100903511,
- 0.008470417000353336, -0.025229228660464287, 0.08960344642400742, -0.009494509547948837,
- 0.02663666568696499, -0.031007060781121254, 0.006211766507476568, 0.04227143153548241,
- 0.02018081583082676, -0.07083311676979065, 0.09064916521310806, 0.058642495423555374,
- -0.0705837532877922, 0.0793970450758934, 0.030654510483145714, 0.011172828264534473,
- -0.021396204829216003, 0.04238054156303406, 0.017167747020721436, -0.10505826026201248,
- -0.010498669929802418, -0.05498930811882019, -0.041352223604917526,
- -0.009442373178899288, -0.04882518947124481, 0.011879820376634598, 0.030613062903285027,
- -0.02473396249115467, -0.02670297585427761, -0.008321094326674938, 0.023978358134627342,
- 0.09388402849435806, 0.011496898718178272, 0.07347065955400467, -0.05397357419133186,
- -0.0223567932844162, 0.057664770632982254, 0.06378764659166336, 0.07338123768568039,
- -0.005919570568948984, 0.009700413793325424, -0.030805131420493126,
- -0.08264445513486862, -0.00004734533649752848, 0.07205761969089508, 0.06199781969189644,
- 0.05503800883889198, 0.03789272904396057, -0.05884668603539467, -0.018205156549811363,
- 0.12401335686445236, 0.04134054481983185, 0.021509407088160515, 0.042893532663583755,
- -0.061998914927244186, 0.012359038926661015, 0.08667769283056259, -0.036800723522901535,
- 0.008480851538479328, 0.015599038451910019, -0.12313967943191528, 0.02102566324174404,
- 0.07388293743133545, 0.006767716724425554, 0.021482674404978752, 0.04162227362394333,
- 0.0022492350544780493, 0.016115503385663033, -0.0007868207176215947,
- 0.03185642138123512, -0.022125452756881714, -0.13302364945411682, -0.07109352201223373,
- 0.009650052525103092, 0.05531113222241402, 0.036222610622644424, -0.15622538328170776,
- -0.017971521243453026, -0.03616940230131149
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 347,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 4,
- "similarity": 0.9978143572807312
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 71,
- "similarity": 0.997714638710022
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 20,
- "similarity": 0.9973850250244141
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["JJRicks Studios"],
- "epoch_date_downloaded": 1664928000,
- "epoch_date_modified": 1665619200,
- "epoch_date_submitted": 1664928000,
- "flag": null,
- "report_number": 2099,
- "source_domain": "youtube.com",
- "submitters": ["Khoa Lam"],
- "title": "Waymo Self Driving Taxi Goes Rogue: Blocks Traffic, Evades Capture | JJRicks Rides With Waymo #54",
- "url": "https://www.youtube.com/watch?v=zdKCQKBvH-A"
- },
- {
- "__typename": "Report",
- "authors": ["BBC News"],
- "epoch_date_downloaded": 1664928000,
- "epoch_date_modified": 1665619200,
- "epoch_date_submitted": 1664928000,
- "flag": null,
- "report_number": 2098,
- "source_domain": "bbc.com",
- "submitters": ["Khoa Lam"],
- "title": "Waymo self-driving taxi confused by traffic cones flees help",
- "url": "https://www.bbc.com/news/technology-57144755"
- },
- {
- "__typename": "Report",
- "authors": ["Matt McFarland"],
- "epoch_date_downloaded": 1664928000,
- "epoch_date_modified": 1664928000,
- "epoch_date_submitted": 1664928000,
- "flag": null,
- "report_number": 2060,
- "source_domain": "wlwt.com",
- "submitters": ["Srishti Khemka (CSET)"],
- "title": "Confused self-driving taxi drives away from its support crew",
- "url": "https://www.wlwt.com/article/arizona-self-driving-taxi-waymo-got-confused/36466487#"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "youtube",
- "name": "YouTube"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "youtube",
- "name": "YouTube"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "youtube-users-skeptical-of-us-election-results",
- "name": "YouTube users skeptical of US election results"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [2096, 2075, 2064],
- "vector": [
- -0.05990462377667427, 0.08590400964021683, 0.015597219578921795, -0.08728587627410889,
- 0.09704480320215225, -0.016899921000003815, 0.0022042039781808853, 0.08920827507972717,
- 0.11174547672271729, -0.18024049699306488, -0.04408371448516846, 0.04497668147087097,
- 0.0035742197651416063, -0.09911972284317017, 0.040607351809740067, -0.09422989934682846,
- -0.15769489109516144, -0.01924961805343628, -0.013019154779613018, -0.1201338991522789,
- -0.11570074409246445, 0.01908300630748272, 0.009803329594433308, 0.07173693925142288,
- -0.07957302778959274, 0.012980110943317413, 0.08771421760320663, 0.09390652179718018,
- -0.050295013934373856, 0.013462632894515991, -0.036517608910799026,
- -0.07049131393432617, 0.1402924805879593, 0.02688577212393284, -0.0037332242354750633,
- 0.09842532873153687, 0.062207724899053574, -0.026160866022109985, -0.011006489396095276,
- 0.005814735312014818, 0.0450487919151783, 0.2912493944168091, -0.026302659884095192,
- -0.023900439962744713, 0.034163061529397964, -0.05235500633716583, -0.01928372122347355,
- 0.036010097712278366, 0.004272338468581438, 0.02509632706642151, 0.03415289148688316,
- 0.03102472983300686, -0.044186681509017944, 0.01178461592644453, -0.10790076851844788,
- 0.06806871294975281, 0.06357749551534653, -0.02398192137479782, -0.014762602746486664,
- -0.1111857071518898, -0.0579434372484684, -0.3001215159893036, -0.014504714868962765,
- -0.07517731934785843, 0.08963374048471451, -0.11574042588472366, -0.013344056904315948,
- 0.02091781236231327, 0.02549918182194233, 0.07840804010629654, 0.07459279149770737,
- -0.04627763852477074, -0.02572840452194214, 0.07040000706911087, -0.02496466599404812,
- -0.02518756128847599, 0.007334647234529257, 0.17181982100009918, -0.05520523712038994,
- 0.048448652029037476, 0.08770489692687988, -0.08270641416311264, 0.43420252203941345,
- 0.008402200415730476, -0.007762966677546501, -0.0618598572909832, 0.08896652609109879,
- 0.007526053115725517, -0.0008680590544827282, 0.03905883803963661,
- -0.039463821798563004, 0.06226136162877083, -0.051284629851579666,
- 0.0032261405140161514, 0.041893571615219116, 0.038269054144620895,
- -0.013256954960525036, 0.011050231754779816, -0.03061218559741974,
- -0.041255418211221695, -0.002917911857366562, -0.026273643597960472,
- 0.08617261052131653, 0.0338483564555645, -0.045532386749982834, 0.009073370136320591,
- 0.03335994482040405, -0.057240426540374756, 0.0526195652782917, -0.04541361331939697,
- 0.007370851933956146, -0.02739875577390194, 0.04156091436743736, -0.019383324310183525,
- 0.021232614293694496, -0.018216436728835106, -0.006254356354475021, 0.06635204702615738,
- 0.06792136281728745, 0.07696259021759033, -0.018623365089297295, 0.02495533786714077,
- 0.08157537132501602, -0.07280357927083969, -0.06496267020702362, -0.033378299325704575,
- -0.04845258593559265, -0.02708306908607483, -0.06998396664857864, 0.0378013551235199,
- -0.03716643527150154, -0.16283075511455536, 0.006059832870960236, 0.07068358361721039,
- -0.037987370043992996, -0.048304926604032516, 0.0375293530523777, -0.03807881847023964,
- 0.017008556053042412, 0.0030109866056591272, 0.03764678165316582, 0.04326699674129486,
- -0.011500847525894642, -0.019047940149903297, 0.09544374793767929, 0.03177165612578392,
- -0.05351388454437256, -0.03599897027015686, 0.03780562803149223, -0.05736987665295601,
- 0.12670810520648956, -0.09151648730039597, -0.053295355290174484, -0.043777987360954285,
- -0.0009124912321567535, 0.723993718624115, 0.1025732234120369, 0.19423335790634155,
- -0.002287239534780383, -0.0459454245865345, 0.1419776827096939, 0.05285206064581871,
- 0.0365111418068409, -0.05092756822705269, -0.051918018609285355, 0.03985472023487091,
- -0.0465758740901947, -0.07288204878568649, 0.01879090629518032, 0.009109805338084698,
- 0.06719839572906494, -0.013751912862062454, 0.10721275955438614, 0.04199502244591713,
- -0.08241981267929077, -0.07012123614549637, 0.016814928501844406, 0.009226305410265923,
- -0.10795002430677414, -0.03085099160671234, 0.07216273993253708, 0.09520002454519272,
- -0.06790810078382492, -0.025027170777320862, -0.022732818499207497, 0.05061857029795647,
- 0.0015498982975259423, 0.07029419392347336, -0.07890113443136215, 0.03443559631705284,
- 0.044702425599098206, 0.02874222956597805, -0.018619893118739128, -0.13297398388385773,
- -0.03691933676600456, 0.0932152271270752, -0.04363571107387543, -0.03654193878173828,
- 0.051927030086517334, -0.10338971018791199, 0.03255988284945488, -0.019584856927394867,
- 0.21953870356082916, -0.17042021453380585, 0.018644273281097412, -0.029452120885252953,
- -0.04968919977545738, 0.023885486647486687, 0.016756603494286537, -0.03829313442111015,
- -0.04037662222981453, 0.057193949818611145, 0.04482351616024971, 0.08283806592226028,
- 0.05645386502146721, -0.01587611250579357, 0.046242550015449524, 0.01605064608156681,
- 0.020801406353712082, -0.07713837176561356, 0.07841303944587708, 0.01960853300988674,
- -0.0539734922349453, -0.012389513663947582, 0.07532567530870438, -0.024860277771949768,
- 0.04089739918708801, -0.00759322801604867, 0.063256174325943, 0.007050695363432169,
- 0.007696069777011871, 0.07100910693407059, 0.015611822716891766, 0.01664586365222931,
- 0.09214691072702408, -0.08928516507148743, -0.04943022131919861, -0.060778792947530746,
- -0.09271353483200073, 0.027005398645997047, -0.03648384287953377, 0.08060768991708755,
- 0.08609658479690552, 0.121625155210495, -0.005392692983150482, 0.05006903409957886,
- 0.00527329184114933, 0.002075695199891925, 0.0436064749956131, 0.08317291736602783,
- -0.012506532482802868, 0.00507889362052083, -0.01821625605225563,
- -0.0012466643238440156, -0.004010885953903198, -0.006168433930724859,
- -0.09269380569458008, 0.0024637223687022924, -0.05976642295718193, -0.04423188790678978,
- -0.06648564338684082, -0.0832424983382225, 0.0580989271402359, 0.047058042138814926,
- -0.05685899034142494, -0.10601315647363663, -0.04842535778880119, -0.00220153178088367,
- 0.07541211694478989, -0.017050355672836304, -0.022678760811686516, -0.11486443132162094,
- 0.021409176290035248, 0.0000583094843022991, 0.04551847279071808, -0.04467000439763069,
- -0.04144876077771187, -0.00036582397297024727, -0.07377143949270248,
- -0.011827223002910614, -0.004754144232720137, -0.05796768143773079,
- -0.005575230345129967, -0.06136639043688774, -0.06047073006629944, -0.05630837380886078,
- -0.011180435307323933, -0.03665520250797272, 0.0031202088575810194, 0.05634617805480957,
- 0.03047357313334942, -0.01153555978089571, -0.04846997559070587, 0.06602988392114639,
- -0.03289783373475075, -0.02727002650499344, 0.0809406265616417, -0.012724161148071289,
- 0.06305030733346939, -0.015123876743018627, -0.07410531491041183, -0.06504373252391815,
- 0.003886451944708824, -0.026644783094525337, 0.0480918288230896, -0.018123364076018333,
- -0.015903590247035027, 0.012924394570291042, 0.06587469577789307, 0.06349316239356995,
- -0.06114239618182182, -0.11671650409698486, -0.1039438247680664, 0.17137236893177032,
- -0.014667208306491375, 0.00959287490695715, 0.011419993825256824, -0.039709270000457764,
- 0.032127682119607925, 0.010800753720104694, 0.021188629791140556, 0.04178893193602562,
- 0.08533815294504166, 0.020322725176811218, -0.02526102401316166, 0.02706095017492771,
- -0.04523481801152229, 0.09724459797143936, 0.07030687481164932, 0.4618972837924957,
- -0.09134495258331299, 0.08233065903186798, 0.0795021578669548, 0.0309111550450325,
- -0.0001726178452372551, -0.08689921349287033, 0.07631584256887436, 0.11229389905929565,
- 0.15056341886520386, 0.1486004739999771, -0.03701857849955559, 0.03723585978150368,
- -0.06708686798810959, 0.08387136459350586, -0.013810661621391773, 0.0016429247334599495,
- 0.01157285738736391, -0.05213141441345215, 0.0062753912061452866, 0.08889684826135635,
- -0.043414801359176636, 0.005139631684869528, -0.01076571736484766, -0.06291007250547409,
- 0.0031914450228214264, 0.04860718548297882, 0.012299307622015476, -0.05265617370605469,
- 0.012361700646579266, 0.0669550895690918, 0.04227397218346596, 0.013241159729659557,
- 0.018806230276823044, -0.13095253705978394, 0.02716793119907379, -0.028126589953899384,
- -0.07839635014533997, 0.0980299636721611, 0.018932271748781204, 0.0723542794585228,
- 0.062190379947423935, -0.007997879758477211, 0.03811424598097801, 0.011590924113988876,
- -0.05255279317498207, -0.013343680649995804, 0.06912972778081894,
- -0.0032336313743144274, 0.06990507990121841, 0.16729408502578735, -0.04064124450087547,
- 0.028442278504371643, -0.0987129732966423, 0.07249227911233902, 0.09305454045534134,
- -0.017224987968802452, 0.00528794014826417, 0.0012521129101514816,
- 0.0029872048180550337, 0.02557963691651821, -0.017497247084975243, -0.09664919227361679,
- -0.0442519374191761, -0.06506387889385223, 0.06590870767831802, 0.031922709196805954,
- -0.010116872377693653, -0.18622387945652008, -0.011603504419326782,
- -0.04584473371505737, 0.08707151561975479, 0.12461360543966293, -0.09769192337989807,
- 0.026148036122322083, 0.02526966668665409, -0.013928990811109543, -0.01869923062622547,
- -0.062248971313238144, -0.016791250556707382, -0.0437106229364872, 0.025953620672225952,
- 0.07011762261390686, 0.05306047201156616, -0.053150683641433716, 0.130636066198349,
- -0.10544627159833908, 0.04082320258021355, -0.04290468618273735, -0.019583597779273987,
- 0.009037073701620102, -0.04796140268445015, 0.011178680695593357,
- -0.0036805877462029457, -0.004341427702456713, -0.009664802812039852,
- -0.0160104651004076, -0.005014114081859589, -0.08240289241075516, -0.06690685451030731,
- -0.020074034109711647, -0.0791485533118248, 0.06307990103960037, -0.09795653820037842,
- -0.003123256377875805, -0.040612898766994476, -0.08307729661464691,
- -0.02610020898282528, 0.002048456808552146, 0.015549835748970509, -0.16050773859024048,
- -0.07657710462808609, 0.02505148947238922, 0.07331661134958267, 0.01927230693399906,
- -0.03988576680421829, -0.05445356294512749, 0.12280891090631485, 0.02735157124698162,
- 0.0003227703273296356, 0.003118319669738412, -0.08532238751649857, 0.02904251031577587,
- -0.09812211990356445, -0.3331800699234009, 0.03993362560868263, 0.03420305624604225,
- 0.052336230874061584, 0.005998674780130386, -0.05782764032483101, 0.027701249346137047,
- -0.0007776760612614453, -0.0771171972155571, 0.07391295582056046, -0.04042434319853783,
- 0.020069699734449387, -0.040654364973306656, -0.05806151404976845,
- -0.026302799582481384, -0.031784672290086746, -0.04622058570384979,
- 0.006856478750705719, -0.002594498684629798, -0.06656971573829651, -0.07338493317365646,
- 0.04143230989575386, -0.05165952071547508, 0.007626789156347513, 0.017152218148112297,
- 0.035718463361263275, -0.044062092900276184, -0.059121888130903244,
- 0.032132089138031006, 0.09764174371957779, 0.039427343755960464, -0.08666440099477768,
- 0.004579319152981043, 0.08536317199468613, 0.024010874330997467, 0.09835093468427658,
- 0.021868892014026642, -0.007040098309516907, -0.057243525981903076, 0.10850661993026733,
- 0.04051205515861511, 0.1845417469739914, 0.023005595430731773, -0.015045731328427792,
- 0.048653170466423035, 0.1404942125082016, 0.05467071756720543, 0.046199534088373184,
- -0.031599778681993484, 0.007916796021163464, -0.00984745379537344, -0.03259594365954399,
- 0.0533151775598526, -0.08100294321775436, -0.008225365541875362, 0.00015903015446383506,
- 0.004332872107625008, -0.004726781044155359, -0.048381268978118896, 0.2329707145690918,
- 0.023853113874793053, 0.03906805440783501, 0.04983222857117653, -0.012140721082687378,
- -0.032493043690919876, -0.12820163369178772, -0.10170668363571167, -0.03570341691374779,
- -0.010692879557609558, 0.010291285812854767, -0.05310174450278282, -0.0846158042550087,
- -0.0075941612012684345, -0.01819724030792713, 0.013310513459146023, 0.12974350154399872,
- -0.034661825746297836, -0.007508732378482819, -0.04367561265826225, 0.13804064691066742,
- 0.016888068988919258, -0.005996713414788246, 0.03923444822430611, 0.11502883583307266,
- 0.030844030901789665, 0.019793719053268433, -0.02622281201183796, -0.07139209657907486,
- -0.024747738614678383, 0.12308481335639954, -0.04516726732254028, 0.13198687136173248,
- 0.042848940938711166, -0.011997575871646404, -0.05495724081993103, 0.03461616113781929,
- -0.0250221136957407, -0.023069163784384727, -0.4022674560546875, -0.06708880513906479,
- 0.10187564045190811, 0.025003021582961082, 0.010809813626110554, 0.0726122260093689,
- 0.003691087244078517, -0.03673252463340759, 0.006165623664855957, -0.06578358262777328,
- 0.17667388916015625, 0.020232345908880234, 0.07580354064702988, -0.03703140839934349,
- 0.018420718610286713, 0.08524810522794724, -0.042815450578927994, -0.003635755507275462,
- 0.06469642370939255, -0.2244434505701065, 0.02298007905483246, -0.004823336843401194,
- 0.11001082509756088, -0.006312642712146044, 0.041902024298906326, 0.10771840810775757,
- -0.06783295422792435, 0.02988027222454548, 0.05305207148194313, -0.003736671293154359,
- 0.052731674164533615, -0.021830953657627106, -0.029980219900608063, 0.12206196784973145,
- 0.10841110348701477, 0.11637628078460693, -0.05287116765975952, 12.065917015075684,
- 0.08135604113340378, 0.030660277232527733, -0.07722588628530502, -0.006585618946701288,
- -0.0675998330116272, 0.01796724833548069, -0.1333683580160141, 0.037815824151039124,
- 0.11270779371261597, 0.0038771547842770815, -0.11183643341064453, -0.016814591363072395,
- -0.0956793949007988, 0.026829615235328674, -0.016554338857531548, -0.05498266592621803,
- -0.040866103023290634, 0.014974757097661495, -0.010902035050094128,
- -0.06597581505775452, 0.06147133186459541, 0.0823546051979065, -0.011032520793378353,
- -0.038570936769247055, 0.034435123205184937, 0.007238235790282488, 0.005397333297878504,
- 0.029035210609436035, 0.026002541184425354, 0.014715008437633514, -0.012279828079044819,
- 0.09916696697473526, 0.03201083838939667, 0.028734013438224792, 0.04004666581749916,
- 0.07191404700279236, 0.01667681895196438, 0.047054633498191833, 0.057189565151929855,
- -0.014386611990630627, 0.009417697787284851, 0.01954679749906063, 0.03558489307761192,
- 0.06778436154127121, 0.09345675259828568, 0.059741344302892685, 0.10976668447256088,
- 0.001116923987865448, 0.0732140764594078, 0.0806674137711525, 0.023258430883288383,
- 0.12984095513820648, 0.06066185235977173, -0.038772206753492355, 0.047637879848480225,
- -0.010858641006052494, -0.10656875371932983, 0.07957766205072403, 0.05293506756424904,
- -0.07212396711111069, 0.08338633179664612, 0.004058105871081352, 0.14357705414295197,
- 0.03334328159689903, 0.054483991116285324, 0.0799938216805458, 0.06570902466773987,
- -0.14969372749328613, -0.09686791896820068, 0.020932668820023537, -0.11558070778846741,
- -0.07437074929475784, 0.0933205783367157, 0.1333734691143036, -0.03565211594104767,
- 0.07059568911790848, -0.009974793531000614, -0.0007309975917451084,
- -0.05202960595488548, 0.0019264904549345374, 0.048597302287817, -0.026152312755584717,
- 0.002840014174580574, 0.03854752331972122, 0.02348712645471096, 0.016027037054300308,
- 0.0982736125588417, -0.004134702030569315, -0.08775415271520615, -0.05595013499259949,
- 0.08670943975448608, 0.02810795046389103, -0.03710049390792847, 0.02554616890847683,
- -0.055608153343200684, 0.028580786660313606, -0.1664653867483139, 0.07640378922224045,
- 0.11377035826444626, -0.08915316313505173, 0.005786451976746321, -0.030835935845971107,
- 0.028764070942997932, 0.0626588687300682, 0.015015830285847187, -0.07800682634115219,
- 0.030799096450209618, 0.02000287175178528, 0.03655103221535683, -0.03949255868792534,
- 0.05773642659187317, 0.04631783440709114, -0.0492258183658123, 0.05584505572915077,
- 0.05360056087374687, -0.004809781443327665, -0.020984699949622154, 0.07135974615812302,
- 0.05719595029950142, -0.06559892743825912, -0.04857965186238289, -0.01841033808887005,
- -0.01894509233534336, -0.027398303151130676, -0.044570308178663254,
- -0.01755739375948906, 0.05180742219090462, -0.056170761585235596, -0.022678084671497345,
- 0.05763622000813484, 0.0793582871556282, 0.1115579605102539, -0.04437856376171112,
- 0.04970552399754524, -0.03934335708618164, -0.004862669389694929, 0.04918092489242554,
- 0.04039904847741127, 0.04661182686686516, -0.04494252800941467, -0.0159155186265707,
- -0.04230133071541786, -0.10915571451187134, 0.027578113600611687, 0.08788856863975525,
- 0.05427979305386543, 0.039780955761671066, 0.03317784145474434, -0.0492582730948925,
- -0.06431208550930023, 0.05820559337735176, 0.05398460105061531, -0.03971920534968376,
- 0.0421287827193737, -0.013567727990448475, -0.02118837833404541, 0.10845589637756348,
- -0.05498966574668884, -0.02448064647614956, 0.01785924844443798, -0.05283598229289055,
- 0.043543919920921326, 0.10955872386693954, 0.07977571338415146, 0.03383737429976463,
- 0.05393638089299202, 0.025483211502432823, 0.02944614179432392, -0.011574458330869675,
- 0.009206906892359257, -0.06347891688346863, -0.12838687002658844, -0.0972311720252037,
- 0.05196991190314293, 0.12228038907051086, 0.04536035656929016, -0.07528502494096756,
- -0.022821344435214996, -0.05235028639435768
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 348,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 13,
- "similarity": 0.9975365996360779
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 161,
- "similarity": 0.9973065257072449
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 14,
- "similarity": 0.9972804188728333
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": [
- "James Bisbee",
- "Megan Brown",
- "Angela Lai",
- "Richard Bonneau",
- "Jonathan Nagler",
- "Joshua A. Tucker"
- ],
- "epoch_date_downloaded": 1665273600,
- "epoch_date_modified": 1665619200,
- "epoch_date_submitted": 1665273600,
- "flag": null,
- "report_number": 2096,
- "source_domain": "tsjournal.org",
- "submitters": ["Khoa Lam"],
- "title": "Election Fraud, YouTube, and Public Perception of the Legitimacy of President Biden",
- "url": "https://tsjournal.org/index.php/jots/article/view/60"
- },
- {
- "__typename": "Report",
- "authors": ["Center for Social Media and Politics"],
- "epoch_date_downloaded": 1665273600,
- "epoch_date_modified": 1665273600,
- "epoch_date_submitted": 1665273600,
- "flag": null,
- "report_number": 2075,
- "source_domain": "csmapnyu.org",
- "submitters": ["Khoa Lam"],
- "title": "Election Fraud, YouTube, and Public Perception of the Legitimacy of President Biden - NYU’s Center for Social Media and Politics",
- "url": "https://csmapnyu.org/research/election-fraud-youtube-and-public-perception-of-the-legitimacy-of-president-biden"
- },
- {
- "__typename": "Report",
- "authors": ["Ashley Belanger"],
- "epoch_date_downloaded": 1665273600,
- "epoch_date_modified": 1665273600,
- "epoch_date_submitted": 1662163200,
- "flag": null,
- "report_number": 2064,
- "source_domain": "arstechnica.com",
- "submitters": ["Daniel Atherton (BNH.ai)"],
- "title": "YouTube algorithm pushed election fraud claims to Trump supporters, report says",
- "url": "https://arstechnica.com/tech-policy/2022/09/youtube-algorithm-pushed-election-fraud-claims-to-trump-supporters-report-says/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "charlotte-mecklenburg-school-district",
- "name": "Charlotte Mecklenburg School District"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "evolv-technology",
- "name": "Evolv Technology"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "teachers-at-charlotte-mecklenburg-schools",
- "name": "teachers at Charlotte Mecklenburg Schools"
- },
- {
- "__typename": "Entity",
- "entity_id": "students-at-charlotte-mecklenburg-schools",
- "name": "students at Charlotte Mecklenburg Schools"
- },
- {
- "__typename": "Entity",
- "entity_id": "security-officers-at-charlotte-mecklenburg-schools",
- "name": "security officers at Charlotte Mecklenburg Schools"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [2095, 2065],
- "vector": [
- -0.10342027246952057, 0.0776982456445694, -0.0039069149643182755, -0.09328468143939972,
- 0.051566410809755325, -0.037093743681907654, 0.027630235999822617, 0.02828207239508629,
- 0.11133290827274323, -0.15728838741779327, -0.031056219711899757, 0.08248230814933777,
- 0.02125050686299801, -0.08755289018154144, -0.014620695263147354, -0.12624606490135193,
- -0.10321056842803955, -0.04859887436032295, -0.007755488157272339, -0.14911514520645142,
- -0.07430148124694824, -0.01532005239278078, 0.03586447238922119, 0.12038056552410126,
- -0.018304480239748955, 0.06502485275268555, 0.09737960994243622, 0.1263727843761444,
- -0.09212049841880798, 0.012914950959384441, -0.009275222197175026, -0.13033975660800934,
- 0.1499139368534088, 0.007896638475358486, 0.007284032180905342, 0.158172607421875,
- 0.02227366901934147, -0.06324250251054764, 0.025210104882717133, -0.01911667361855507,
- 0.052266933023929596, 0.30897796154022217, -0.021515924483537674, -0.015130672603845596,
- 0.04494946822524071, -0.030682971701025963, 0.014475635252892971, 0.07938075065612793,
- 0.0051887258887290955, 0.01334570161998272, -0.010191709734499454, 0.010775000788271427,
- -0.07940059900283813, 0.06910734623670578, -0.11130844056606293, 0.10783249139785767,
- 0.02834954671561718, -0.003046693280339241, 0.024574680253863335, -0.0622209757566452,
- -0.0784197598695755, -0.1982308030128479, -0.02435552328824997, -0.10094504803419113,
- 0.0889497697353363, -0.08939126133918762, -0.03334033116698265, 0.020627029240131378,
- 0.03082604706287384, 0.06308934092521667, 0.058084480464458466, -0.04689747467637062,
- -0.044764064252376556, 0.04996611550450325, -0.013971087522804737, -0.0403454452753067,
- 0.007411405444145203, 0.1852717101573944, -0.09844081848859787, 0.02947167679667473,
- 0.11932221055030823, -0.06338515877723694, 0.5058834552764893, 0.023017600178718567,
- 0.0038500353693962097, 0.007547197863459587, 0.07991648465394974, 0.021734368056058884,
- 0.02596142888069153, 0.027500763535499573, -0.04747109115123749, 0.0660342127084732,
- -0.05195782333612442, 0.021553795784711838, 0.11729204654693604, 0.027244403958320618,
- -0.031202349811792374, 0.03900397941470146, -0.034784723073244095, -0.11065840721130371,
- -0.0019041653722524643, -0.04414907842874527, 0.10092783719301224, 0.09869305789470673,
- -0.05266617238521576, 0.04804432764649391, 0.06229674443602562, -0.07183296233415604,
- 0.038427647203207016, -0.0822526216506958, 0.05962430685758591, 0.002834233921021223,
- 0.0490502193570137, -0.04388333112001419, 0.02721739187836647, -0.04066433757543564,
- 0.0010994997574016452, 0.03269584849476814, 0.0813794657588005, 0.04313458502292633,
- -0.02231740951538086, 0.06712758541107178, 0.14410093426704407, -0.094779372215271,
- -0.010432711802423, -0.04239223524928093, -0.08195902407169342, -0.010790335014462471,
- 0.01771385967731476, 0.0002514580264687538, -0.07700914889574051, -0.20966117084026337,
- 0.07498282194137573, 0.027898676693439484, -0.025595903396606445, -0.01601255312561989,
- -0.02733037620782852, -0.0569484606385231, 0.015838459134101868, -0.00678220484405756,
- 0.035819027572870255, 0.07518305629491806, 0.02184309996664524, 0.041750334203243256,
- 0.11931096017360687, 0.04767914116382599, -0.06055663526058197, -0.053567204624414444,
- -0.012297489680349827, 0.0017633477691560984, 0.08649970591068268, -0.1754748523235321,
- -0.05144072324037552, 0.02742975950241089, -0.009973302483558655, 0.6951520442962646,
- 0.13105644285678864, 0.21669016778469086, 0.028970889747142792, -0.029055217280983925,
- 0.175030916929245, 0.005875851958990097, 0.0526919886469841, -0.10225465893745422,
- -0.08543336391448975, -0.01817348413169384, -0.04363313317298889, -0.025421541184186935,
- 0.024627981707453728, 0.03821919858455658, 0.1213270053267479, 0.0238669253885746,
- 0.1046832799911499, 0.011392324231564999, -0.07637304812669754, -0.047475963830947876,
- 0.06985262036323547, 0.05381647124886513, -0.09550929069519043, -0.009206010028719902,
- 0.043776657432317734, 0.061581313610076904, -0.10167160630226135, 0.004852072335779667,
- -0.053705792874097824, 0.06319001317024231, -0.01807139627635479,
- -0.0016582752577960491, -0.022856580093503, 0.05690827965736389, 0.07893462479114532,
- 0.09331563115119934, -0.012431873008608818, -0.10979651659727097, -0.04848387837409973,
- 0.10279583930969238, -0.02045479416847229, -0.04397443309426308, 0.10213819891214371,
- -0.10608972609043121, 0.029833350330591202, 0.08661309629678726, 0.19531476497650146,
- -0.09118568897247314, 0.011234181001782417, 0.0014527842868119478,
- -0.013620388694107533, 0.004098593723028898, 0.005895780865103006,
- -0.006773012224584818, -0.06624516099691391, 0.07490452378988266, 0.05982714891433716,
- 0.0994572788476944, 0.0640379786491394, -0.026629958301782608, 0.06738866865634918,
- 0.0354946032166481, 0.011994579806923866, -0.043404802680015564, 0.07234465330839157,
- 0.036840394139289856, -0.029453087598085403, -0.038492828607559204,
- 0.035389043390750885, 0.08304288983345032, 0.06063050776720047, 0.026453524827957153,
- 0.048335205763578415, -0.03905642405152321, -0.05776188522577286, 0.05020776018500328,
- 0.048149287700653076, 0.03893139213323593, 0.10275764763355255, -0.07154888659715652,
- -0.05795851722359657, -0.02883395180106163, -0.038734205067157745,
- -0.009457264095544815, -0.06453079730272293, 0.11004999279975891, 0.07183422893285751,
- 0.08115994185209274, -0.005197620484977961, 0.061009254306554794, 0.07542068511247635,
- 0.05779218673706055, 0.06258106231689453, 0.03844477981328964, -0.025370148941874504,
- -0.059270963072776794, -0.03516607731580734, -0.008182896301150322,
- 0.036261267960071564, 0.012093150988221169, -0.09122101217508316, -0.03427891060709953,
- -0.08694442361593246, -0.05713339149951935, -0.11635972559452057, -0.05359648913145065,
- -0.012307554483413696, 0.04147970676422119, -0.07344754785299301, -0.09431196749210358,
- -0.11471530795097351, 0.008872062899172306, 0.11296581476926804, 0.02056988887488842,
- -0.01592330075800419, -0.11364476382732391, 0.03280104324221611, 0.006684758234769106,
- 0.04438605532050133, -0.02034914866089821, 0.03273014724254608, 0.004820344038307667,
- -0.07395096868276596, 0.026163453236222267, -0.0020394944585859776,
- -0.09472128003835678, -0.06945443898439407, -0.06583382934331894, -0.03462621197104454,
- -0.003431495977565646, -0.0028351331129670143, 0.006981044076383114,
- 0.030731674283742905, 0.0644875019788742, 0.07251960039138794, -0.02724512852728367,
- 0.01057074498385191, 0.06564824283123016, -0.04664822667837143, -0.014417569153010845,
- 0.09682419896125793, -0.032344918698072433, 0.03242868930101395, -0.06457547098398209,
- -0.061883360147476196, -0.0679413229227066, -0.009134076535701752, -0.04882112890481949,
- 0.042028747498989105, -0.05956743657588959, -0.0030197370797395706,
- -0.029611557722091675, -0.024663371965289116, 0.05979494750499725,
- -0.050648998469114304, -0.07035641372203827, -0.08583985269069672, 0.1167779192328453,
- -0.042807359248399734, 0.021658269688487053, 0.02785874344408512, -0.07626707851886749,
- 0.0510735884308815, 0.02359917387366295, 0.029945429414510727, 0.049308136105537415,
- 0.05515625327825546, -0.04468775540590286, 0.08349774777889252, 0.10758368670940399,
- -0.02226661890745163, 0.021040869876742363, 0.0504184290766716, 0.4381275773048401,
- -0.1729128360748291, 0.10287436842918396, 0.08315243571996689, 0.039820313453674316,
- 0.045214373618364334, -0.07416172325611115, 0.03762003779411316, 0.04036352410912514,
- 0.11881443858146667, 0.1624370813369751, -0.062135063111782074, 0.01828271895647049,
- -0.09854982793331146, 0.08654990792274475, -0.00738874077796936, 0.018858207389712334,
- -0.003940733149647713, -0.0823235809803009, -0.025893492624163628, 0.06648467481136322,
- -0.04913679510354996, 0.006015760358422995, -0.025307754054665565,
- -0.060352765023708344, 0.011683209799230099, 0.019254647195339203, 0.049725934863090515,
- -0.04983944445848465, 0.032566990703344345, -0.039340876042842865, 0.03622002899646759,
- 0.005052162799984217, 0.04943963140249252, -0.0866328775882721, 0.023908501490950584,
- -0.051129262894392014, -0.09856340289115906, 0.08961308002471924, -0.007902597077190876,
- 0.09234435111284256, 0.06110125035047531, -0.04042958840727806, 0.029205486178398132,
- -0.0010562054812908173, -0.09248387813568115, 0.004720139317214489, 0.05300457030534744,
- 0.047689132392406464, 0.06331868469715118, 0.17349979281425476, -0.06135272979736328,
- -0.04725778102874756, -0.08692334592342377, 0.079951211810112, 0.08770693093538284,
- -0.04075492173433304, -0.006827211938798428, 0.018015902489423752, 0.014889148995280266,
- 0.02048133686184883, -0.062415361404418945, -0.036963559687137604, -0.00841782707720995,
- -0.07276412844657898, 0.0735074132680893, 0.021023066714406013, -0.04515526816248894,
- -0.06698674708604813, -0.028426915407180786, -0.04871729761362076, 0.03055058792233467,
- 0.13283155858516693, -0.07189829647541046, 0.050632961094379425,
- -0.00029371120035648346, 0.007051132153719664, -0.007814674638211727,
- -0.05063755810260773, 0.018839184194803238, -0.06997006386518478, 0.035662513226270676,
- 0.08521613478660583, 0.07064810395240784, -0.06369765847921371, 0.06787415593862534,
- -0.12945841252803802, -0.0075259399600327015, -0.020123682916164398,
- -0.02976912260055542, 0.025086242705583572, -0.0584203340113163, 0.035136960446834564,
- 0.006052576005458832, -0.05883464962244034, -0.004257751628756523, -0.03339909762144089,
- -0.05545838922262192, -0.08615126460790634, -0.07995056360960007, -0.04141276702284813,
- -0.06558758020401001, 0.049232929944992065, -0.13228410482406616, 0.021436497569084167,
- -0.08585989475250244, -0.0032354691065847874, -0.007023502141237259,
- 0.06518594920635223, -0.017768170684576035, -0.14441297948360443, 0.000370134599506855,
- -0.026477640494704247, 0.043603722006082535, -0.03639005124568939, -0.05003522336483002,
- 0.008519282564520836, 0.029164912179112434, 0.016356438398361206, -0.023093506693840027,
- -0.015369251370429993, -0.06312671303749084, 0.008912908844649792, -0.1335860639810562,
- -0.39124101400375366, 0.07523002475500107, -0.006541260983794928, 0.060631170868873596,
- -0.019887953996658325, -0.07720864564180374, 0.045308783650398254,
- -0.007434970699250698, -0.03612007945775986, 0.10835056006908417, -0.03526610508561134,
- 0.06258887052536011, -0.022159693762660027, -0.07693620026111603, -0.020667370408773422,
- -0.11010522395372391, -0.02048746682703495, 0.029380524531006813, 0.0041845813393592834,
- -0.09911804646253586, -0.09536712616682053, 0.033858999609947205, -0.03372626379132271,
- 0.001960163936018944, -0.01920873485505581, 0.016508927568793297, -0.06746282428503036,
- -0.06403879076242447, -0.007131161168217659, 0.05908310040831566, 0.027002887800335884,
- -0.08638069778680801, -0.01528466772288084, 0.02217339351773262, -0.023415222764015198,
- 0.12364853173494339, 0.03160198777914047, 0.03303759917616844, -0.08184292912483215,
- 0.08988448977470398, 0.11289715766906738, 0.18171727657318115, -0.05410774052143097,
- 0.02300657331943512, 0.022857658565044403, 0.14257338643074036, 0.04048968479037285,
- 0.04643982648849487, -0.04664931818842888, 0.0075852409936487675, 0.011746506206691265,
- -0.047033242881298065, 0.10600416362285614, -0.08320203423500061, -0.014791054651141167,
- -0.03243585675954819, -0.04291161894798279, 0.013683866709470749, -0.013633846305310726,
- 0.14948268234729767, 0.049599289894104004, -0.005860127974301577, 0.04759073257446289,
- -0.05174485594034195, -0.01121153961867094, -0.06808920949697495, -0.09504956007003784,
- -0.01842675544321537, -0.01748594455420971, 0.029176663607358932, -0.00425128685310483,
- -0.0975966602563858, -0.01389257051050663, -0.03088536486029625, -0.018702462315559387,
- 0.12335257977247238, -0.07867461442947388, 0.020070195198059082, -0.0490715317428112,
- 0.16317912936210632, 0.0528746135532856, 0.015376097522675991, 0.03293173760175705,
- 0.08728039264678955, 0.03755826875567436, 0.03640288859605789, -0.020062819123268127,
- -0.0852026641368866, -0.01931294985115528, 0.11226972937583923, -0.052687689661979675,
- 0.12525725364685059, 0.042812101542949677, -0.006771896034479141, -0.06141667068004608,
- 0.028119094669818878, -0.03744712471961975, 0.02638106606900692, -0.4216431677341461,
- -0.04513758420944214, 0.13560181856155396, -0.05850280076265335, 0.02238575927913189,
- 0.0575137734413147, 0.02290278859436512, -0.02034224011003971, -0.06013648584485054,
- -0.11287201941013336, 0.13446706533432007, 0.058041539043188095, 0.04267110675573349,
- -0.08294446766376495, 0.05742824822664261, 0.11449877172708511, -0.0036425881553441286,
- 0.01405324600636959, 0.05806157737970352, -0.23089466989040375, 0.021747294813394547,
- -0.004225280601531267, 0.1434289515018463, 0.0015922815073281527, 0.013018982484936714,
- 0.09359107166528702, -0.06832911819219589, 0.044424254447221756, 0.02515023574233055,
- -0.007100829854607582, 0.033945173025131226, -0.01622960716485977, -0.03549298644065857,
- 0.1199963241815567, 0.12755224108695984, 0.027504343539476395, 0.0027684145607054234,
- 12.23105239868164, 0.11393988132476807, 0.07111567258834839, -0.11923420429229736,
- 0.021611234173178673, -0.0046699196100234985, 0.026698589324951172,
- -0.14450587332248688, 0.04277946799993515, 0.12083903700113297, -0.026308324187994003,
- -0.05925167351961136, -0.051736511290073395, -0.11621847003698349, 0.01457935944199562,
- -0.06196964159607887, -0.04342545196413994, -0.01821817085146904, 0.02461419254541397,
- -0.07468928396701813, -0.0739997923374176, 0.03281765431165695, 0.05920639634132385,
- 0.01468812208622694, -0.12349499762058258, 0.06537897139787674, 0.010917095467448235,
- -0.037564411759376526, -0.00567636638879776, 0.011978838592767715, 0.021921832114458084,
- 0.017907842993736267, 0.03026057407259941, -0.007092418149113655, 0.04955224692821503,
- 0.0939372256398201, 0.06735526025295258, 0.036097049713134766, 0.039709411561489105,
- 0.09906749427318573, -0.022411903366446495, 0.045636773109436035, 0.023417292162775993,
- 0.06466082483530045, 0.038264453411102295, 0.026135249063372612, 0.03429393470287323,
- 0.15663257241249084, 0.014805424027144909, 0.048827655613422394, 0.12729598581790924,
- 0.012888875789940357, 0.1069907546043396, 0.05843758583068848, -0.005912226624786854,
- 0.039802663028240204, -0.0025127960834652185, -0.05849502235651016, 0.07527217268943787,
- 0.013489403761923313, -0.05897730216383934, 0.11636451631784439, 0.013474028557538986,
- 0.1559908390045166, 0.058289460837841034, 0.040025584399700165, 0.06968585401773453,
- 0.12217167019844055, -0.15333491563796997, -0.08631076663732529, 0.004923493135720491,
- -0.09308929741382599, -0.06801775097846985, 0.10041962563991547, 0.09185922890901566,
- -0.0025597671046853065, 0.07610993832349777, -0.012136757373809814,
- 0.055046286433935165, -0.053981974720954895, -0.0016354583203792572,
- 0.06302975118160248, -0.03298383951187134, -0.016565881669521332, 0.08039680123329163,
- 0.013734289444983006, 0.060655511915683746, 0.1049497053027153, -0.031746264547109604,
- -0.12513966858386993, -0.05452128127217293, 0.05532287806272507, -0.015480047091841698,
- -0.04747879505157471, 0.028299449011683464, -0.12578631937503815, 0.0984242856502533,
- -0.19409537315368652, 0.08137556910514832, 0.12631961703300476, -0.10580749809741974,
- -0.043314673006534576, -0.02694888785481453, 0.11578673124313354, 0.016976024955511093,
- 0.03559884801506996, -0.060926273465156555, -0.029370468109846115, 0.03969953954219818,
- 0.08056886494159698, -0.02854882925748825, 0.09698545187711716, 0.08170478045940399,
- -0.05447360500693321, 0.010589953511953354, 0.07983008027076721, -0.026134129613637924,
- -0.016499100252985954, 0.0855582058429718, 0.04520612955093384, -0.08720827847719193,
- -0.06158359348773956, -0.04889098182320595, -0.09015411138534546, -0.02993660792708397,
- -0.05391945689916611, 0.00392275070771575, 0.028132688254117966, -0.08056636899709702,
- -0.018728040158748627, 0.03601621836423874, 0.05833813175559044, 0.14797714352607727,
- -0.01400051824748516, 0.07980654388666153, -0.05658327043056488, -0.04714438319206238,
- 0.06980836391448975, 0.025738682597875595, 0.05858263373374939, -0.020607182756066322,
- -0.04436527565121651, -0.0441800057888031, -0.11154748499393463, 0.0015926975756883621,
- 0.09613649547100067, -0.014176570810377598, 0.040364209562540054, 0.05051169916987419,
- -0.05479910969734192, -0.05427149683237076, 0.0806451216340065, 0.055692099034786224,
- -0.0010232552886009216, 0.08100853860378265, -0.07840798795223236,
- -0.040129583328962326, 0.10540901124477386, -0.045791249722242355, 0.04312723129987717,
- 0.04407810792326927, -0.054152511060237885, 0.10404156148433685, 0.09123790264129639,
- 0.05206039547920227, 0.06456613540649414, 0.04862786829471588, 0.0031402879394590855,
- 0.026725128293037415, -0.017901359125971794, 0.020559582859277725, -0.05044369399547577,
- -0.03622858598828316, -0.09753929078578949, 0.03826379030942917, 0.07456813007593155,
- 0.028048677369952202, -0.13193809986114502, 0.0175095796585083, -0.09328743815422058
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 349,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Aaron Gordon", "Janus Rose"],
- "epoch_date_downloaded": 1665273600,
- "epoch_date_modified": 1665619200,
- "epoch_date_submitted": 1665273600,
- "flag": null,
- "report_number": 2095,
- "source_domain": "vice.com",
- "submitters": ["Khoa Lam"],
- "title": "‘The Least Safe Day’: Rollout of Gun-Detecting AI Scanners in Schools Has Been a ‘Cluster,’ Emails Show",
- "url": "https://www.vice.com/en/article/5d3dw5/the-least-safe-day-rollout-of-gun-detecting-ai-scanners-in-schools-has-been-a-cluster-emails-show"
- },
- {
- "__typename": "Report",
- "authors": ["Tim Cushing"],
- "epoch_date_downloaded": 1665273600,
- "epoch_date_modified": 1665273600,
- "epoch_date_submitted": 1662595200,
- "flag": null,
- "report_number": 2065,
- "source_domain": "techdirt.com",
- "submitters": ["Daniel Atherton (BNH.ai)"],
- "title": "Gun Detection AI The Latest Tech To Make Schools Less Safe",
- "url": "https://www.techdirt.com/2022/09/02/gun-detection-ai-the-latest-tech-to-make-schools-less-safe/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "serve-robotics",
- "name": "Serve Robotics"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "serve-robotics",
- "name": "Serve Robotics"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "police-investigators",
- "name": "police investigators"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [2094, 2067],
- "vector": [
- -0.037217769771814346, 0.038845404982566833, 0.0018453319789841771,
- -0.10861589014530182, 0.0956917554140091, -0.023479681462049484, -0.01988549903035164,
- 0.027334988117218018, 0.06089267134666443, -0.1401190608739853, 0.040748968720436096,
- 0.05408541113138199, 0.0067933122627437115, -0.07224234938621521, 0.06560655683279037,
- 0.005168753210455179, -0.019647547975182533, -0.028437960892915726,
- 0.017843544483184814, -0.06955379247665405, -0.09082634747028351, -0.009276432916522026,
- -0.00015558255836367607, 0.09090957045555115, -0.046220481395721436,
- 0.0005281763151288033, 0.05395723879337311, 0.09944912791252136, -0.07237894088029861,
- 0.014426682144403458, -0.026173366233706474, -0.033732905983924866, 0.08578673005104065,
- -0.00867817085236311, -0.004058561287820339, 0.08592760562896729, 0.06227754428982735,
- -0.04166720062494278, -0.07782983779907227, 0.0021764514967799187,
- 0.0015726452693343163, 0.1030050665140152, 0.005231162067502737, -0.03710322082042694,
- 0.08848905563354492, -0.005965603515505791, 0.007757213898003101, -0.005907875951379538,
- 0.0013342092279344797, 0.019455190747976303, 0.0255759134888649, 0.01805562525987625,
- -0.022846559062600136, 0.007784756366163492, -0.09816868603229523, 0.05525271221995354,
- 0.05392363667488098, 0.03852413222193718, 0.030797377228736877, -0.04680919647216797,
- -0.021947767585515976, -0.13700854778289795, -0.03643041476607323, -0.03568144887685776,
- 0.03788115084171295, -0.0510692298412323, -0.024680260568857193, 0.010029701516032219,
- 0.004227039869874716, 0.019901476800441742, 0.03622725233435631, -0.029628830030560493,
- 0.010139117017388344, -0.030063416808843613, -0.024996928870677948,
- -0.008270454593002796, 0.024770433083176613, 0.2842230200767517, -0.09749821573495865,
- 0.025184547528624535, 0.07784958928823471, -0.09655463695526123, 0.31651994585990906,
- 0.03123326040804386, -0.014752116054296494, -0.060856908559799194, 0.10147473961114883,
- 0.05375592038035393, 0.040303491055965424, 0.05419604480266571, 0.0067784786224365234,
- 0.0198686420917511, -0.039210639894008636, 0.017647136002779007, 0.036817893385887146,
- 0.009610302746295929, -0.030110353603959084, -0.07050200551748276,
- -0.011119460687041283, -0.0348728746175766, -0.005296254530549049, -0.04817310720682144,
- 0.09871996939182281, 0.015847932547330856, -0.004845038056373596, -0.05016180872917175,
- 0.07425446808338165, -0.026450570672750473, 0.021160561591386795, -0.05166515335440636,
- 0.023615388199687004, 0.025412453338503838, 0.03700676187872887, 0.02008567936718464,
- 0.015061833895742893, -0.03611896559596062, -0.0007331296801567078, 0.05111981928348541,
- 0.10021138191223145, 0.02312415838241577, 0.025824598968029022, 0.07264018058776855,
- 0.11981329321861267, -0.05799953639507294, -0.017911655828356743, -0.03929135203361511,
- -0.013486174866557121, -0.010415308177471161, -0.024380546063184738,
- 0.054273396730422974, -0.01959913596510887, -0.1974124163389206, 0.019994907081127167,
- 0.12333360314369202, 0.04434669762849808, -0.01907948963344097, 0.05540618672966957,
- -0.07599848508834839, 0.039532147347927094, 0.004966266918927431, -0.03784879297018051,
- 0.08409528434276581, 0.049132589250802994, 0.005410563200712204, 0.13126882910728455,
- 0.019405674189329147, -0.010944217443466187, -0.05683235824108124,
- -0.0011758836917579174, -0.04763659089803696, 0.10042627900838852, -0.07271353900432587,
- -0.03971783071756363, 0.03137730434536934, -0.01641552522778511, 0.5259914398193359,
- 0.0957164466381073, 0.140892893075943, -0.010315295308828354, 0.016514793038368225,
- 0.15148723125457764, -0.008723730221390724, 0.026981838047504425, -0.02317800559103489,
- -0.046633828431367874, 0.007636558264493942, -0.04350791126489639,
- -0.002892468124628067, 0.04773189499974251, 0.0021014115773141384, 0.07640635967254639,
- 0.04300028830766678, 0.07463263720273972, -0.007188370916992426, -0.07953259348869324,
- -0.024594221264123917, -0.007490083575248718, -0.007795518729835749,
- -0.11113636195659637, -0.03565569967031479, 0.06621953099966049, 0.07537397742271423,
- -0.02472943812608719, -0.01576903462409973, -0.012554261833429337, 0.03860132396221161,
- 0.0053710113279521465, 0.03301599994301796, -0.0062386514618992805,
- 0.030278947204351425, 0.06277665495872498, 0.017581861466169357, -0.004424700513482094,
- -0.05072471499443054, 0.02143273316323757, 0.1149236410856247, 0.0038643041625618935,
- -0.016284257173538208, 0.06531435251235962, -0.0684601366519928, 0.01777053065598011,
- -0.0734778344631195, 0.08389212936162949, -0.10382334887981415, 0.05165266618132591,
- 0.0011003725230693817, 0.006495174951851368, 0.0281272754073143, -0.012237546034157276,
- -0.08572551608085632, -0.025527095422148705, 0.0714355930685997, 0.034097254276275635,
- 0.09842109680175781, 0.04494798183441162, -0.03200501203536987, -0.003983207978308201,
- 0.022267624735832214, -0.018327435478568077, -0.046726200729608536, 0.0636720135807991,
- 0.06612858176231384, -0.011707747355103493, 0.025489870458841324, 0.041098207235336304,
- 0.03558703884482384, 0.011946046724915504, 0.003795599564909935, 0.017008604481816292,
- 0.007973126135766506, 0.01650780811905861, 0.011676376685500145, 0.028787605464458466,
- 0.013463195413351059, 0.08278070390224457, -0.0936751514673233, -0.04815002903342247,
- -0.02290331944823265, -0.03520084172487259, 0.01485286746174097, -0.03373579680919647,
- 0.028676800429821014, 0.05249421298503876, 0.04233900085091591, 0.01999276876449585,
- 0.04595057666301727, 0.02398909628391266, -0.0009226655820384622, -0.012754399329423904,
- 0.033572763204574585, -0.019088687375187874, -0.014739388599991798, -0.0336853452026844,
- -0.020525023341178894, 0.04420606791973114, 0.020939849317073822, -0.09100870788097382,
- -0.03966725990176201, 0.006895801983773708, -0.023095011711120605, -0.06486529111862183,
- -0.027414092794060707, -0.014910722151398659, 0.026035169139504433, -0.0651518702507019,
- -0.07761428505182266, -0.040086813271045685, 0.014433702453970909, 0.027967408299446106,
- -0.05122066289186478, 0.0068055447190999985, -0.09184211492538452, 0.02211475372314453,
- 0.00830784160643816, 0.009908393025398254, -0.0013493718579411507, -0.06803636252880096,
- -0.0019711051136255264, -0.051018163561820984, 0.03902266174554825,
- -0.0043694195337593555, -0.03507603332400322, -0.033938754349946976,
- -0.04453388601541519, -0.05293836444616318, 0.003802880644798279, -0.017774268984794617,
- -0.046460576355457306, 0.03199344128370285, 0.012660165317356586, 0.01417398639023304,
- 0.0017973656067624688, -0.027020452544093132, 0.04881342500448227,
- -0.004521153401583433, -0.025385871529579163, 0.06637987494468689, 0.033603355288505554,
- 0.05624360591173172, 0.007551723159849644, -0.082689568400383, -0.05576043576002121,
- 0.03513564169406891, -0.03392937034368515, 0.04220299422740936, -0.059761710464954376,
- -0.00417908513918519, -0.0073266178369522095, 0.016728917136788368, 0.08072897791862488,
- -0.05346536636352539, -0.03241033852100372, -0.09520231187343597, 0.11299151182174683,
- 0.02435941994190216, -0.009103810414671898, 0.021038446575403214, -0.01751738414168358,
- 0.02386518009006977, 0.0006783828139305115, 0.0012499773874878883, 0.011557158082723618,
- 0.06765437126159668, -0.002126789651811123, -0.00020430423319339752,
- 0.031811073422431946, -0.009766546078026295, 0.019361980259418488, 0.06069491058588028,
- 0.39541852474212646, -0.19860148429870605, 0.09030088782310486, 0.06682635098695755,
- 0.0046473038382828236, 0.07496039569377899, -0.017022009938955307, 0.0552082434296608,
- 0.054488956928253174, 0.0788082703948021, 0.08393596112728119, -0.013085445389151573,
- -0.012772295624017715, -0.0472567155957222, 0.04523514211177826, 0.018975861370563507,
- 0.02542068436741829, -0.03210097551345825, -0.02558974176645279, -0.04916682466864586,
- 0.033617813140153885, -0.06476723402738571, 0.010523732751607895, -0.025821078568696976,
- -0.021759076043963432, 0.010164685547351837, 0.040629662573337555, 0.043659940361976624,
- -0.03643219545483589, 0.00900515541434288, -0.0055395495146512985, 0.06387645751237869,
- 0.04421566426753998, 0.04863513261079788, -0.0751953125, 0.05515970289707184,
- -0.059329815208911896, -0.08485426008701324, 0.06201895326375961,
- -0.0007011173292994499, 0.015250340104103088, 0.04143862798810005, -0.02312055230140686,
- 0.02013438753783703, -0.02584998682141304, -0.026279985904693604,
- -0.00019496865570545197, 0.05230386555194855, 0.06027967482805252, 0.08149102330207825,
- 0.12311630696058273, -0.0027576484717428684, -0.014671271666884422,
- -0.04013912379741669, 0.0674128606915474, 0.09245922416448593, -0.058785781264305115,
- 0.01891707070171833, 0.01662449724972248, -0.015024534426629543, -0.009984012693166733,
- -0.05675196647644043, -0.09782470762729645, -0.02772766724228859, -0.044316623359918594,
- 0.06207127869129181, 0.003268323838710785, -0.03898019343614578, -0.166162371635437,
- -0.030014846473932266, -0.02736964076757431, -0.0045135654509067535,
- 0.08775332570075989, -0.06497280299663544, 0.06782548874616623, 0.044568974524736404,
- -0.010496529750525951, -0.00118501135148108, -0.053967952728271484,
- 0.010206400416791439, -0.057342469692230225, 0.02449946105480194, 0.08730631321668625,
- 0.021003546193242073, -0.045471593737602234, 0.0035769641399383545,
- -0.06322914361953735, 0.04363234341144562, 0.031132683157920837, -0.02331480383872986,
- 0.03142722696065903, -0.04026343300938606, 0.017653459683060646, 0.015809232369065285,
- 0.0012595579028129578, -0.0025295696686953306, -0.03208475187420845,
- -0.026328306645154953, -0.05769667774438858, -0.08529888838529587, -0.04085932672023773,
- -0.061174821108579636, 0.04593467712402344, -0.05568614602088928, -0.017225325107574463,
- -0.022731715813279152, -0.014815672300755978, 0.026911092922091484, 0.01937798224389553,
- -0.0040598297491669655, -0.10445243865251541, -0.016221005469560623,
- 0.001466649118810892, 0.03642558306455612, 0.01118029747158289, -0.07869994640350342,
- -0.0009950483217835426, 0.08046257495880127, 0.023498285561800003, -0.04152095317840576,
- 0.023776531219482422, -0.022764500230550766, 0.04449908807873726, -0.0571213960647583,
- -0.4916365146636963, 0.07042807340621948, 0.007079519797116518, 0.021699268370866776,
- 0.042094454169273376, -0.06188414618372917, 0.03760216757655144, -0.020719628781080246,
- 0.02383958175778389, 0.05535631626844406, -0.05458761751651764, 0.005428378004580736,
- -0.014608591794967651, -0.060327980667352676, 0.021796496585011482,
- -0.08554252982139587, -0.015018559992313385, 0.0091916648671031, -0.010292033664882183,
- -0.018954787403345108, -0.09469233453273773, -0.020098848268389702,
- -0.048675138503313065, 0.015584614127874374, -0.011999072507023811,
- -0.02723686769604683, -0.06430117785930634, -0.04472166299819946, 0.01857682690024376,
- 0.06258246302604675, 0.017071332782506943, -0.04804002121090889, -0.0066696456633508205,
- 0.022803988307714462, 0.02130104973912239, 0.11643357574939728, 0.013326904736459255,
- -0.017008144408464432, -0.058499790728092194, 0.02334374189376831, 0.08727435767650604,
- 0.18973089754581451, -0.008070001378655434, 0.09067848324775696, -0.00956941582262516,
- 0.07854493707418442, -0.0056239040568470955, 0.008014600723981857, -0.06165465712547302,
- -0.011508814990520477, 0.046652428805828094, -0.004011514596641064, 0.01941188983619213,
- -0.044843584299087524, -0.05331914871931076, -0.0376724898815155, -0.021983744576573372,
- -0.0690474584698677, 0.025546934455633163, 0.1548444926738739, 0.025387711822986603,
- 0.03432409465312958, 0.03514778986573219, -0.03159697726368904, 0.006413144059479237,
- -0.04026774317026138, -0.05066603422164917, -0.03462701290845871, -0.024048393592238426,
- 0.00793777871876955, -0.0428357757627964, -0.09855432063341141, -0.01161496527493,
- -0.016964655369520187, -0.010872738435864449, 0.10163311660289764, 0.007918436080217361,
- 0.028964383527636528, -0.050266437232494354, 0.10669609159231186, -0.02418777160346508,
- 0.022631479427218437, 0.09845295548439026, 0.09224259853363037, 0.03654666244983673,
- -0.035521768033504486, -0.07236175239086151, -0.028164613991975784,
- -0.014256654307246208, 0.1426772028207779, -0.026180772110819817, 0.13156720995903015,
- 0.040876664221286774, 0.0019701530691236258, -0.02092105709016323, 0.040970996022224426,
- 0.040721092373132706, -0.021097250282764435, -0.505278468132019, 0.019320426508784294,
- 0.07647595554590225, 0.03506217896938324, 0.03080582246184349, 0.07961848378181458,
- 0.0006744703277945518, -0.015778779983520508, 0.057181596755981445,
- -0.015351672656834126, 0.03628499060869217, 0.003405356779694557, 0.09350277483463287,
- -0.12336060404777527, 0.04651877284049988, 0.055235233157873154, -0.0007200487889349461,
- 0.012553032487630844, 0.04008237272500992, -0.23782235383987427, -0.0011232311371713877,
- -0.04927293211221695, 0.1274900883436203, 0.03815964236855507, -0.006566648371517658,
- 0.07425695657730103, -0.04722963273525238, 0.05226907506585121, 0.049814622849226,
- 0.02789025753736496, 0.07005930691957474, 0.012108548544347286, -0.052628107368946075,
- 0.07800106704235077, 0.06267859041690826, 0.1014787033200264, 0.012758355587720871,
- 11.813854217529297, 0.01064351387321949, 0.051090940833091736, -0.03500350937247276,
- 0.010836218483746052, -0.07921627163887024, 0.030153680592775345, -0.059904392808675766,
- 0.07376786321401596, 0.10230039805173874, 0.0027357861399650574, -0.03261960297822952,
- -0.03304634615778923, -0.040139321237802505, 0.024231474846601486, -0.04702671617269516,
- 0.0014784298837184906, -0.04946162551641464, 0.05183872953057289, -0.018996577709913254,
- -0.003641679883003235, 0.07252942025661469, 0.032467521727085114, 0.007860252633690834,
- -0.05639611929655075, 0.03791647031903267, 0.026583125814795494, -0.011476671323180199,
- 0.008584603667259216, 0.03970220685005188, 0.025638999417424202, 0.05515030398964882,
- 0.0761709213256836, 0.013471709564328194, 0.012067882344126701, 0.025628220289945602,
- 0.035207170993089676, 0.02918262407183647, 0.04386286437511444, 0.07852816581726074,
- 0.0569755882024765, 0.019118010997772217, 0.011523393914103508, 0.01887362077832222,
- 0.05360252410173416, 0.08116893470287323, -0.0051229726523160934, 0.1022200807929039,
- 0.001073841005563736, 0.0007717451080679893, 0.08459363132715225, -0.06619130074977875,
- 0.10033412277698517, -0.024097628891468048, -0.030764203518629074, 0.022163866087794304,
- 0.0005795340985059738, -0.039185844361782074, 0.05903024971485138, 0.06994866579771042,
- -0.04327360913157463, 0.09610523283481598, 0.0067668454721570015, 0.06143362075090408,
- -0.04451692849397659, 0.02741655707359314, 0.07976935803890228, 0.05965230613946915,
- -0.05041792243719101, -0.030916625633835793, 0.037356942892074585, -0.08101589977741241,
- -0.02246025763452053, -0.011890836991369724, 0.06858306378126144, -0.03669682890176773,
- 0.07518554478883743, -0.043127767741680145, 0.006406694650650024, -0.03607604280114174,
- 0.034837231040000916, 0.029808852821588516, -0.0543912909924984, 0.012800797820091248,
- -0.003366231918334961, 0.0032320665195584297, 0.10550543665885925, 0.05955401808023453,
- 0.029302438721060753, -0.06953905522823334, -0.04851223900914192, 0.08018579334020615,
- -0.03621954843401909, -0.047341153025627136, 0.04706701636314392, -0.03340683504939079,
- 0.055915966629981995, -0.07463113963603973, 0.037759341299533844, 0.07180178910493851,
- -0.017895272001624107, 0.030179880559444427, -0.016856078058481216, 0.0617656372487545,
- 0.005606723949313164, 0.02199934422969818, -0.0552942231297493, -0.017519958317279816,
- 0.05715419724583626, 0.01481405459344387, -0.04539528116583824, 0.03335123509168625,
- 0.029465314000844955, -0.010794681496918201, 0.03986954316496849, 0.02376449853181839,
- 0.004028751514852047, -0.04319026693701744, 0.06749297678470612, 0.03864804655313492,
- -0.06301146000623703, -0.00994738470762968, -0.025596395134925842, 0.004698554519563913,
- 0.010224802419543266, -0.02987147495150566, 0.013990893959999084, 0.0025544147938489914,
- -0.03505519777536392, -0.04728998988866806, -0.018858665600419044, 0.05125545710325241,
- 0.02048674039542675, 0.004619100131094456, 0.03262695297598839, -0.012420408427715302,
- -0.02208234742283821, 0.045874446630477905, 0.09577500820159912, 0.11650298535823822,
- -0.039120808243751526, 0.004670178517699242, -0.02775881066918373, -0.09538838267326355,
- 0.004109293222427368, 0.03423408046364784, 0.06370972096920013, 0.04304102063179016,
- 0.006311474367976189, -0.06834505498409271, 0.0032488759607076645, 0.09976164996623993,
- 0.006958440877497196, -0.014248529449105263, 0.0436854287981987, -0.06908262521028519,
- -0.00789521262049675, 0.1053762435913086, -0.016088465228676796, 0.011012200266122818,
- 0.00017689354717731476, -0.08835089206695557, 0.019657034426927567, 0.04909317195415497,
- -0.008649623021483421, -0.0016541490331292152, 0.03306739032268524,
- 0.009932607412338257, -0.010901860892772675, -0.037385500967502594,
- 0.008703149855136871, -0.018675142899155617, -0.1190306767821312, -0.0836828351020813,
- -0.00037142657674849033, 0.07054899632930756, 0.03404710814356804, -0.11879912763834,
- -0.008651098236441612, -0.016777265816926956
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 350,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Kirsten Korosec"],
- "epoch_date_downloaded": 1665360000,
- "epoch_date_modified": 1665619200,
- "epoch_date_submitted": 1665360000,
- "flag": null,
- "report_number": 2094,
- "source_domain": "techcrunch.com",
- "submitters": ["Khoa Lam"],
- "title": "This robot crossed a line it shouldn’t have because humans told it to",
- "url": "https://techcrunch.com/2022/09/16/serve-robotics-sidewalk-robot-crime-scene/"
- },
- {
- "__typename": "Report",
- "authors": ["CNN Business"],
- "epoch_date_downloaded": 1663113600,
- "epoch_date_modified": 1665273600,
- "epoch_date_submitted": 1663200000,
- "flag": null,
- "report_number": 2067,
- "source_domain": "cnn.com",
- "submitters": ["Daniel Atherton (BNH.ai)"],
- "title": "Watch: Delivery robot rolls through crime scene",
- "url": "https://www.cnn.com/videos/business/2022/09/14/delivery-robot-crime-scene-orig-fj.cnn-business"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "@tengazillioiniq",
- "name": "@TenGazillioinIQ"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "unknown",
- "name": "Unknown"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "halle-bailey",
- "name": "Halle Bailey"
- },
- {
- "__typename": "Entity",
- "entity_id": "black-actresses",
- "name": "Black actresses"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [2068],
- "vector": [
- -0.10067041963338852, 0.05825119465589523, 0.03499235212802887, -0.14013446867465973,
- 0.13850611448287964, -0.021495938301086426, 0.039025940001010895, 0.08800094574689865,
- 0.0027496509719640017, -0.1234612986445427, 0.0018504471518099308, 0.09552256762981415,
- -0.0012939291773363948, -0.03275947645306587, 0.00374431605450809, -0.0807260274887085,
- -0.0388445183634758, -0.09530709683895111, 0.02617231197655201, -0.18402104079723358,
- -0.032743316143751144, 0.00024025162565521896, 0.08233068883419037, 0.1480790674686432,
- -0.06525363773107529, -0.017266713082790375, 0.15854045748710632, 0.0809568464756012,
- -0.03497646376490593, 0.04244714602828026, -0.04062667116522789, -0.1181739866733551,
- 0.09217456728219986, 0.02316615916788578, -0.057882748544216156, 0.10257261246442795,
- 0.05649469420313835, -0.004254281520843506, -0.05693375691771507, 0.0563364177942276,
- 0.06958507001399994, 0.23970536887645721, 0.020481469109654427, -0.07599730789661407,
- 0.022545896470546722, -0.04595192149281502, -0.018516747280955315, 0.03589114174246788,
- -0.007731407880783081, -0.009704097174108028, 0.019861405715346336,
- 0.028077883645892143, -0.015018045902252197, 0.054404813796281815, -0.12539084255695343,
- 0.05943046510219574, 0.11033890396356583, -0.04637274146080017, 0.06336503475904465,
- -0.12825730443000793, -0.029076378792524338, -0.25121110677719116, -0.0170147605240345,
- -0.11346469074487686, 0.065095916390419, -0.10293998569250107, -0.06663724780082703,
- 0.053561918437480927, -0.007865812629461288, 0.00690712733194232, 0.08983422070741653,
- -0.011574437841773033, -0.03809407725930214, 0.02380436286330223, -0.00826781801879406,
- -0.02622046135365963, 0.08316762745380402, 0.2572798728942871, -0.15281982719898224,
- -0.016260232776403427, 0.11207195371389389, -0.16592830419540405, 0.4883606731891632,
- 0.030415531247854233, 0.010470638982951641, -0.018946904689073563, 0.09246507287025452,
- -0.0647624209523201, 0.05369500815868378, 0.035912420600652695, -0.0616825707256794,
- 0.07013227045536041, -0.05686163529753685, 0.05956136807799339, 0.04182829707860947,
- 0.019283123314380646, -0.05512980371713638, 0.02443213388323784, -0.0066073257476091385,
- -0.09160264581441879, -0.022103654220700264, -0.03149575740098953, 0.16414593160152435,
- 0.008537144400179386, -0.0412135049700737, -0.03247345983982086, 0.0811501294374466,
- -0.03748316690325737, 0.05848170444369316, -0.07574070245027542, 0.031295910477638245,
- -0.019794348627328873, 0.07865156978368759, -0.032544996589422226, 0.03407645598053932,
- 0.0016397983999922872, 0.006119302939623594, 0.049117784947156906, 0.12341830879449844,
- 0.041215986013412476, 0.033283546566963196, 0.04401068016886711, 0.08969733864068985,
- -0.02026870660483837, 0.033749770373106, -0.020416967570781708, -0.10260023921728134,
- -0.03111119009554386, -0.03888900205492973, -0.011165975593030453,
- -0.048989105969667435, -0.2177269607782364, -0.02006521262228489, 0.09972185641527176,
- 0.008170323446393013, -0.07391305267810822, 0.019329452887177467, -0.0453222319483757,
- 0.029737329110503197, -0.08790498971939087, -0.08223643153905869, 0.07937519997358322,
- 0.007060568779706955, 0.04428320378065109, 0.199249729514122, 0.013466548174619675,
- -0.03522038459777832, -0.10002320259809494, -0.037482183426618576, -0.10857030004262924,
- 0.13346216082572937, -0.10598969459533691, -0.017388930544257164, -0.041596345603466034,
- -0.09360723942518234, 0.7360082864761353, 0.10198146849870682, 0.23762021958827972,
- 0.032809093594551086, 0.029721643775701523, 0.14603519439697266, -0.013964098878204823,
- 0.04059860482811928, -0.056669361889362335, -0.13395214080810547, 0.02980387769639492,
- -0.09108848124742508, -0.11884362250566483, 0.06280160695314407, 0.10461710393428802,
- 0.1127137616276741, -0.01726192608475685, 0.07249810546636581, 0.05978197976946831,
- -0.15766660869121552, -0.05140028893947601, 0.045896705240011215, 0.05004424229264259,
- -0.1546362340450287, -0.017508944496512413, 0.05936127156019211, 0.1429101675748825,
- -0.06114392355084419, 0.05185464397072792, -0.0034719069954007864, 0.11476966738700867,
- -0.041857726871967316, 0.04237016290426254, -0.06824307143688202, 0.07220899313688278,
- -0.0012059734435752034, -0.0023189180064946413, -0.020175261422991753,
- -0.05359199643135071, -0.024845384061336517, 0.14114812016487122, -0.014845596626400948,
- -0.03261665999889374, 0.07818349450826645, -0.12830474972724915, 0.09203700721263885,
- 0.006941857282072306, 0.17263177037239075, -0.1809760481119156, -0.04384470358490944,
- -0.03225133940577507, 0.04504255950450897, 0.08146541565656662, -0.029425103217363358,
- -0.0811190977692604, -0.07861334830522537, 0.06473320722579956, -0.03345566987991333,
- 0.03591576963663101, 0.011524037458002567, -0.044459499418735504, -0.012973682023584843,
- 0.029636725783348083, -0.04131584241986275, -0.01468567457050085, 0.08815010637044907,
- 0.04437555372714996, -0.06229252740740776, -0.06520633399486542, 0.03161220997571945,
- 0.08603543788194656, 0.04317905008792877, -0.0012916886480525136, 0.03406761959195137,
- 0.01657887175679207, -0.016468940302729607, 0.04055902361869812, -0.05336262285709381,
- 0.04799298569560051, 0.07360043376684189, -0.13252630829811096, -0.09062536060810089,
- -0.06207284703850746, -0.025010401383042336, 0.08953295648097992, -0.018506363034248352,
- 0.08440076559782028, 0.04069194570183754, 0.09720651060342789, 0.000594952842220664,
- 0.05307786911725998, 0.027338286861777306, 0.05594184622168541, 0.03742825239896774,
- 0.10716696083545685, 0.000999779556877911, -0.050765104591846466, -0.06785690784454346,
- 0.0006282885442487895, 0.05649321898818016, 0.054771628230810165, -0.053379449993371964,
- -0.03815962374210358, 0.03747289255261421, -0.07291339337825775, -0.09137125313282013,
- 0.04032284766435623, 0.09276893734931946, 0.05077169090509415, -0.04130363091826439,
- -0.1527377963066101, -0.12826739251613617, -0.01867256686091423, 0.028827279806137085,
- -0.03506869822740555, -0.07339257746934891, -0.13555331528186798, -0.04022376984357834,
- -0.021364474669098854, 0.06510443985462189, -0.007349611259996891, 0.07380428165197372,
- 0.07302229851484299, -0.01797407865524292, 0.06594736129045486, -0.0056099905632436275,
- -0.006676934659481049, 0.03102293610572815, -0.059464164078235626, -0.04347557574510574,
- -0.029132626950740814, -0.01793740876019001, 0.038492683321237564, 0.05281471461057663,
- 0.07021331787109375, 0.07428012788295746, 0.031917717307806015, -0.05382440984249115,
- 0.06902165710926056, -0.05752820521593094, -0.058140408247709274, 0.018789874389767647,
- -0.009628191590309143, 0.05647364631295204, -0.03090539574623108, -0.1558280736207962,
- -0.024556292220950127, 0.019926616922020912, -0.05840935930609703, 0.06553824245929718,
- 0.04007619619369507, 0.026161272078752518, -0.04368706792593002, -0.0071046920493245125,
- 0.10275179892778397, -0.10065611451864243, -0.0885794535279274, -0.12649351358413696,
- 0.16810357570648193, 0.0421103797852993, -0.019703738391399384, 0.06477460265159607,
- -0.0430002436041832, 0.0664243996143341, -0.0690915510058403, -0.01890457794070244,
- 0.05925453081727028, -0.016273258253932, 0.007212475407868624, -0.0019187432480975986,
- 0.08888402581214905, -0.10195379704236984, 0.0808807834982872, 0.06296312808990479,
- 0.5455960631370544, -0.2996916174888611, 0.15640734136104584, 0.05812216177582741,
- -0.013842018321156502, -0.019732551649212837, -0.10663868486881256, 0.11879117041826248,
- 0.06527093797922134, 0.11405773460865021, 0.036005206406116486, -0.046244002878665924,
- 0.04723643139004707, -0.1432439386844635, 0.08084700256586075, 0.025755465030670166,
- -0.0432584285736084, 0.06813768297433853, -0.09684514254331589, -0.07901746779680252,
- 0.0804537907242775, -0.06214706972241402, -0.032677289098501205, 0.0027841939590871334,
- -0.03380512818694115, 0.04895540699362755, 0.03090444952249527, 0.08981914073228836,
- -0.024653365835547447, 0.04383476823568344, 0.041805900633335114, 0.07105850428342819,
- 0.044101033359766006, -0.010387145914137363, -0.19377662241458893, 0.08739607036113739,
- -0.08804621547460556, -0.08731075376272202, 0.1577945500612259, 0.03334059938788414,
- 0.04733262211084366, 0.052147846668958664, -0.04281904548406601, -0.041132111102342606,
- -0.009136723354458809, -0.08163086324930191, 0.036301009356975555, 0.10171716660261154,
- 0.006113363429903984, 0.10510855913162231, 0.14556409418582916, -0.06149808317422867,
- -0.04043739289045334, -0.04569286108016968, 0.08233759552240372, 0.1352548748254776,
- -0.06360042095184326, 0.02732725441455841, -0.004903862252831459, -0.09706639498472214,
- -0.025109322741627693, -0.04337498918175697, -0.08755885064601898, -0.08053329586982727,
- -0.034852392971515656, 0.1097617894411087, 0.008498212322592735, -0.03706692159175873,
- -0.22245433926582336, -0.04309430345892906, -0.07634864002466202, 0.0031302068382501602,
- 0.16026650369167328, -0.09650468081235886, 0.00628555566072464, -0.019678305834531784,
- -0.022038716822862625, 0.0010687168687582016, -0.12000936269760132,
- 0.017775680869817734, -0.05725134164094925, 0.037237297743558884, 0.07440060377120972,
- 0.04210583493113518, -0.034118812531232834, 0.08588722348213196, -0.13948266208171844,
- 0.07630496472120285, 0.0028667408041656017, 0.006981664802879095, 0.04320713132619858,
- -0.09269686043262482, 0.015221523120999336, 0.025637567043304443, -0.11415093392133713,
- 0.04040679335594177, -0.008843276649713516, -0.05343097820878029, -0.09224818646907806,
- -0.040653958916664124, -0.036144133657217026, -0.09230087697505951, 0.03538798540830612,
- -0.10803424566984177, -0.03377760946750641, -0.0011174965184181929,
- -0.07591842859983444, -0.005312942899763584, 0.07223543524742126, -0.016413025557994843,
- -0.25455084443092346, -0.03477492183446884, -0.018055086955428123, 0.07704466581344604,
- -0.011325324885547161, -0.06988281011581421, 0.029453542083501816, 0.14872747659683228,
- 0.0620916411280632, 0.009411855600774288, -0.012697569094598293, -0.08752115815877914,
- 0.005380157381296158, -0.12766163051128387, -0.6137151718139648, 0.0910765528678894,
- 0.02176545187830925, 0.03562174364924431, 0.03217490389943123, -0.051507800817489624,
- 0.03130553290247917, -0.0361124724149704, -0.10154253989458084, 0.11998763680458069,
- -0.035113781690597534, 0.031089086085557938, -0.04234126955270767, -0.07665950059890747,
- -0.053749583661556244, -0.10065342485904694, -0.04165608808398247, 0.020344633609056473,
- -0.032768771052360535, -0.09907802939414978, -0.0960787907242775,
- -0.0019132792949676514, -0.04367333650588989, 0.04401741176843643,
- -0.029659166932106018, 0.04198679327964783, -0.048949044197797775, -0.05285074561834335,
- 0.03173261135816574, 0.15229803323745728, 0.07328872382640839, -0.07637161016464233,
- 0.023989010602235794, 0.09911612421274185, 0.0568942092359066, 0.18643425405025482,
- 0.04510469734668732, -0.10588278621435165, -0.07958732545375824, -0.011894631199538708,
- 0.10748354345560074, 0.17760391533374786, 0.05256815627217293, 0.09040549397468567,
- -0.03338925167918205, 0.26656970381736755, 0.07654821127653122, 0.026634560897946358,
- -0.046678345650434494, -0.013710771687328815, 0.015985701233148575, -0.0631207525730133,
- 0.0942230373620987, -0.0532076433300972, -0.05460845306515694, 0.035359833389520645,
- -0.03159502148628235, -0.03351325914263725, 0.03681764751672745, 0.28110063076019287,
- 0.05463499575853348, 0.044436194002628326, 0.01085013709962368, -0.06551527231931686,
- 0.046147558838129044, -0.09789547324180603, -0.11013489216566086, -0.051859300583601,
- -0.015808647498488426, -0.011399409733712673, -0.026245679706335068,
- -0.0756332278251648, -0.02934778854250908, -0.01568358577787876, 0.02867816761136055,
- 0.18549595773220062, 0.023545581847429276, 0.0010265016462653875, -0.022098276764154434,
- 0.11928810924291611, 0.05412854626774788, 0.046128854155540466, 0.0797983929514885,
- 0.058724913746118546, -0.01111267227679491, -0.0087229423224926, -0.058951303362846375,
- -0.063356414437294, -0.05406523123383522, 0.14775599539279938, -0.057885441929101944,
- 0.21582184731960297, 0.056975603103637695, 0.007687970530241728, 0.03341063857078552,
- -0.01624877005815506, 0.016658274456858635, 0.05284732207655907, -0.4933997690677643,
- -0.020508214831352234, 0.10474751889705658, 0.024952223524451256, 0.04590336233377457,
- 0.10653632134199142, 0.03535642474889755, -0.05710572004318237, -0.06285271793603897,
- -0.14611190557479858, 0.09369676560163498, -0.007630359847098589, 0.09285178035497665,
- -0.14744579792022705, 0.017308078706264496, 0.11586903035640717, -0.03957958146929741,
- 0.018272459506988525, 0.08323761075735092, -0.30242908000946045, 0.02727143093943596,
- -0.0936059057712555, 0.07550472021102905, 0.07110567390918732, 0.0740533098578453,
- 0.11113304644823074, -0.08774032443761826, 0.024091582745313644, 0.07942834496498108,
- 0.0220565777271986, 0.07263592630624771, -0.09925448149442673, -0.02275191619992256,
- 0.13041402399539948, 0.10409972816705704, 0.1175774335861206, -0.06537305563688278,
- 12.433852195739746, 0.10330063104629517, 0.05401172488927841, -0.07797206193208694,
- 0.05598738044500351, -0.07769207656383514, -0.005873322021216154, -0.11953461170196533,
- 0.11898791044950485, 0.1475389152765274, -0.007588393986225128, -0.05771913379430771,
- -0.04664541035890579, -0.11478506028652191, 0.05292632430791855, -0.042208898812532425,
- -0.08375327289104462, -0.027619119733572006, 0.0023953167255967855,
- -0.045303720980882645, -0.12792418897151947, 0.21567800641059875, 0.1193755641579628,
- -0.013709246180951595, -0.015311721712350845, 0.06540792435407639,
- -0.030040841549634933, -0.023698119446635246, 0.03180905058979988, 0.08963485807180405,
- 0.06066901609301567, 0.03628774359822273, 0.023573998361825943, -0.0251225046813488,
- 0.0657888799905777, 0.08773479610681534, 0.06442037969827652, 0.017320062965154648,
- 0.04791707545518875, 0.07352368533611298, -0.03228117153048515, -0.009770830161869526,
- 0.016159413382411003, 0.014461648650467396, 0.03976840525865555, 0.07246501743793488,
- 0.1053457260131836, 0.13929249346256256, -0.014313283376395702, 0.07434792816638947,
- 0.09056052565574646, -0.015265398658812046, 0.13202114403247833, 0.015667160972952843,
- 0.02059757336974144, 0.10743670165538788, 0.0058622807264328, -0.14262524247169495,
- 0.1339552402496338, 0.11480877548456192, -0.045233603566884995, 0.11135511845350266,
- -0.01864347979426384, 0.10484926402568817, -0.08595306426286697, 0.07498086988925934,
- 0.020542792975902557, 0.09069207310676575, -0.03935416787862778, -0.12271113693714142,
- 0.0008864296250976622, -0.10331588238477707, -0.08586308360099792, 0.024776674807071686,
- 0.21123868227005005, -0.07894675433635712, -0.009406032040715218, -0.1045929566025734,
- 0.017990928143262863, -0.02845567651093006, 0.010556037537753582, 0.09630686789751053,
- -0.045651089400053024, -0.0022518658079206944, 0.013386090286076069,
- 0.06587082892656326, 0.019250310957431793, 0.106612429022789, 0.04558877274394035,
- -0.07164514809846878, 0.01268590148538351, 0.14010027050971985, -0.03679877519607544,
- -0.055905573070049286, 0.04441595450043678, -0.09234517812728882, 0.12969152629375458,
- -0.21823951601982117, 0.07489162683486938, 0.12260812520980835, -0.04443774372339249,
- -0.003389469813555479, -0.047862887382507324, 0.05294922739267349, -0.03971904516220093,
- 0.005669478792697191, -0.13440324366092682, 0.021264398470520973, 0.006448814179748297,
- 0.011122489348053932, -0.077053502202034, 0.040914442390203476, 0.19305437803268433,
- -0.07422612607479095, 0.025011135265231133, 0.04684165120124817, -0.03136187046766281,
- -0.07366792857646942, 0.09585297107696533, -0.004602816887199879, -0.05160091444849968,
- -0.058352991938591, -0.06432695686817169, -0.03831430524587631, -0.018113907426595688,
- -0.011090362444519997, 0.01009580958634615, 0.09063368290662766, 0.002554045058786869,
- -0.01518123410642147, 0.08910500258207321, 0.057444628328084946, 0.03695954754948616,
- 0.04719887301325798, 0.04915585368871689, -0.005534256808459759, -0.05190513655543327,
- 0.06614159047603607, 0.06713035702705383, 0.10901756584644318, -0.04536999389529228,
- -0.09674832224845886, -0.05874321609735489, -0.10272327065467834, 0.007107004057615995,
- 0.053270235657691956, 0.010042686015367508, 0.08402164280414581, 0.002820211462676525,
- -0.0744543969631195, -0.07480595260858536, 0.02833397686481476, -0.02447333373129368,
- -0.005205958150327206, 0.05816397815942764, -0.043932314962148666, -0.02063719555735588,
- 0.10249117761850357, -0.02015157788991928, 0.011318283155560493, 0.06509722769260406,
- -0.025115085765719414, 0.12097617983818054, 0.14465132355690002, 0.052792176604270935,
- -0.0185666736215353, 0.011060226708650589, 0.01169167272746563, 0.0662979781627655,
- 0.01561493519693613, 0.03237102925777435, 0.01553927082568407, -0.15610121190547943,
- -0.09635105729103088, 0.08221783488988876, 0.07929697632789612, 0.10863104462623596,
- -0.20592106878757477, -0.062149062752723694, -0.022885503247380257
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 351,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 60,
- "similarity": 0.9966657757759094
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 6,
- "similarity": 0.9965634942054749
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 16,
- "similarity": 0.9964613318443298
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Erin Keller"],
- "epoch_date_downloaded": 1665273600,
- "epoch_date_modified": 1665273600,
- "epoch_date_submitted": 1663200000,
- "flag": null,
- "report_number": 2068,
- "source_domain": "nypost.com",
- "submitters": ["Daniel Atherton (BNH.ai)"],
- "title": "‘Racist’ AI scientist blasted for ‘fixing’ black Ariel in ‘The Little Mermaid’",
- "url": "https://nypost.com/2022/09/15/racist-ai-scientist-blasted-for-fixing-black-ariel-in-the-little-mermaid/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "stephan-de-vries",
- "name": "Stephan de Vries"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "stephan-de-vries",
- "name": "Stephan de Vries"
- },
- {
- "__typename": "Entity",
- "entity_id": "openai",
- "name": "OpenAI"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "stephan-de-vries",
- "name": "Stephan de Vries"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [2093, 2076, 2070],
- "vector": [
- -0.06267748773097992, 0.05768551273892323, -0.00978903986591225, -0.06676728526751201,
- 0.08207143843173981, -0.05224759255846342, -0.006145233288407326, 0.05504392211635908,
- 0.07972810169061025, -0.11980648587147395, -0.031142984206477802, 0.04073069182535013,
- 0.0362772677714626, -0.08245575428009033, 0.020988540801530082, -0.08598090584079425,
- -0.11789886156717937, -0.014687182692190012, -0.016287147377928097,
- -0.07937441642085712, -0.08862131337324779, 0.010739083091417948, -0.012670752126723528,
- 0.09232744822899501, -0.015941638848744333, 0.021107754204422235, 0.08931092421213786,
- 0.10479562232891719, -0.07199756056070328, 0.039125170558691025, -0.015450691959510246,
- -0.016455715366949637, 0.1285639007886251, -0.01308623980730772, 0.016132880448518943,
- 0.06785945842663448, 0.049310083190600075, -0.025511032280822594, -0.08277520071715117,
- 0.00045278142594421905, 0.011926085377732912, 0.17001366366942725,
- -0.015561343481143316, -0.01969188389678796, 0.051171358209103346, -0.0120050103093187,
- 0.01778517539302508, 0.0428681547443072, -0.015182261355221272, -0.003604253133138021,
- 0.01335632250023385, -0.024439030637343723, -0.07689198354880016, 0.01898989298691352,
- -0.07063813259204228, 0.0682607131699721, 0.030550521487991016, 0.003072444504747788,
- 0.04064977169036865, -0.09251029913624127, -0.016928725332642596, -0.1327086202800274,
- -0.058774215479691826, -0.05678301646063725, 0.09714339673519135, -0.07299043859044711,
- -0.034771502017974854, 0.034663001075387, 0.03393503154317538, 0.031439232251917325,
- 0.043489059433341026, -0.05159976209203402, -0.02335419536878665, -0.007182986941188574,
- 0.000008326605893671513, -0.02606411340336005, 0.02677248480419318, 0.18222671498854956,
- -0.08596281955639522, 0.05195728689432144, 0.07375980913639069, -0.08943791190783183,
- 0.28283704320589703, 0.01836298095683257, -0.03161381588627895, 0.00031791596362988156,
- 0.09891504794359207, 0.022331155681361754, 0.02871794564028581, 0.01757006843884786,
- 0.01042382667462031, 0.03893106741209825, -0.019089172904690106, -0.009621461853384972,
- 0.04263622375826041, 0.034511555607120194, 0.009890627057757229, -0.09716994067033131,
- -0.029367925599217415, -0.059061588098605476, 0.008752505799445013,
- -0.05112822043399016, 0.11952693263689677, 0.044286798064907394, -0.03919783110419909,
- 0.0205837592172126, 0.07573094467322032, -0.03895538796981176, 0.0375986552486817,
- -0.0411374190201362, 0.02640343488504489, 0.02531795607258876, 0.06115466356277466,
- 0.0080650655242304, 0.02990335536499818, -0.007598978156844775, 0.020458195358514786,
- 0.019560393101225298, 0.057728720208009086, 0.089999886850516, -0.007715786729628841,
- 0.07798832406600316, 0.10948965822656949, -0.04887273348867893, 0.008273600290218988,
- -0.03329523171608647, -0.012041095333794752, -0.02456947152192394,
- -0.004950160315881173, 0.05282349387804667, -0.029781316096584003, -0.21199430525302887,
- 0.016684279466668766, 0.05479308528204759, -0.021846294403076172, 0.014207339535156885,
- 0.026625565874079864, -0.06339675808946292, 0.035070286287615694, 0.005917580138581495,
- -0.0059416430691878, 0.05077348959942659, 0.03798299251745144, 0.03691626309106747,
- 0.07584857692321141, 0.02777668461203575, -0.01062698569148779, -0.04977016213039557,
- 0.006556757415334384, -0.04909843020141125, 0.05976269580423832, -0.06021219491958618,
- -0.02466677874326706, 0.001281894976273179, -0.030879515844086807, 0.6448582410812378,
- 0.09039503335952759, 0.1130441203713417, 0.007312881527468562, -0.032679916359484196,
- 0.12618624170621237, -0.0074303920070330305, 0.05034507376452287, -0.020181368260333937,
- -0.03466685131813089, 0.007839687711869677, -0.03456341723601023, -0.018193062394857407,
- 0.001826308046778043, 0.04372263823946317, 0.08326177919904391, 0.03114336480696996,
- 0.10525859147310257, 0.02578805945813656, -0.07492404927810033, -0.032889735574523606,
- 0.0022292006760835648, 0.025222885111967724, -0.07675806060433388,
- -0.008668236434459686, 0.06786221886674564, 0.075819527109464, -0.020120204115907352,
- 0.00585780447969834, -0.020599763995657366, 0.03422889237602552, -0.014124115618566671,
- 0.033734459740420185, 0.0028403221319119134, 0.02858873122992615, 0.03659553825855255,
- 0.011416045327981314, -0.025007012610634167, -0.06300754472613335,
- -0.014965498354285955, 0.10497130453586578, -0.021260714003195364,
- -0.031464011718829475, 0.07914657890796661, -0.06785737350583076, 0.02512447132418553,
- -0.02476650197058916, 0.13406138370434442, -0.12046494583288829, 0.02583290326098601,
- -0.032399821716050305, 0.020004778324315946, 0.04709219311674436, -0.019789565975467365,
- -0.06604877859354019, -0.047755091451108456, 0.07493022332588832, 0.015158133115619421,
- 0.05921677500009537, 0.04399791546165943, -0.010243500272432962, 0.032057282204429306,
- 0.0009082183241844177, -0.017920226479570072, -0.08341932048400243, 0.07563462853431702,
- 0.04829915799200535, -0.056584821393092476, -0.020608472793052595, 0.038201053316394486,
- 0.03223513253033161, 0.04556919758518537, 0.003466777144543206, 0.04999954501787821,
- 0.011507827322930098, -0.01736008663040896, 0.0473342128098011, 0.038133339335521065,
- 0.03758454757432143, 0.07059136529763539, -0.12062821785608928, -0.02703310362994671,
- -0.04356809829672178, -0.030389759068687756, 0.016202442968885105, -0.06881864244739215,
- 0.058551578472057976, 0.074184600263834, 0.04029862768948078, 0.007035978448887666,
- 0.06136660650372505, 0.0282591599971056, 0.022973401316752035, 0.014614845102187246,
- 0.02337779795440535, -0.05871789778272311, -0.02476750376323859, -0.04687722524007162,
- 0.01168634214748939, 0.0604877353956302, -0.02567683843274911, -0.040417423471808434,
- -0.03556148832043012, 0.01908130633334319, -0.04487935019036134, -0.07776597887277603,
- -0.027640878067662317, 0.0160649452979366, 0.02899570142229398, -0.06077072521050771,
- -0.07947077477971713, -0.03497613950942954, 0.0017521286305661004, 0.057269711047410965,
- -0.006822667395075162, 0.002125417503217856, -0.08649961774547894, 0.005973952434336145,
- 0.00979588823732532, 0.022226024690705042, 0.01418289759506782, -0.029720178960512083,
- -0.017449946453173954, -0.08758259564638138, -0.018041325112183888,
- 0.026594817948838074, -0.02292827982455492, -0.027644761372357607, -0.04493469248215357,
- -0.053365384538968406, -0.021338705211140525, -0.014342126746972403,
- -0.046474129582444824, 0.009449225384742022, 0.05128142051398754, 0.03722810372710228,
- -0.04282925929874182, -0.027683043231566746, 0.054108310490846634,
- -0.027412289132674534, -0.004271664811919133, 0.062867717196544, -0.023578986215094726,
- 0.047830974062283836, 0.010602897653977076, -0.05323134424785773, -0.06977298234899838,
- -0.03940327453892678, -0.045447058975696564, 0.029543998340765636, -0.06335263264675935,
- -0.005872559268027544, -0.006083417140568296, -0.004085930685202281,
- 0.041774520029624305, -0.06174357607960701, -0.06853880981604259, -0.08867812405029933,
- 0.13435478011767069, -0.010673219027618567, -0.013897409352163473, 0.024709363157550495,
- -0.019452635198831558, 0.04578136093914509, 0.015721862980475027, 0.027190181116263073,
- 0.04954173291722933, 0.09362359344959259, 0.015649766040345032, 0.02309142518788576,
- 0.06614802653590839, -0.0004723556339740753, 0.02119424908111493, 0.06406532476345699,
- 0.3993545472621918, -0.14990535269801816, 0.0350031570220987, 0.06465135142207146,
- -0.01103284116834402, 0.04271229108174642, -0.061889324337244034, 0.050343011816342674,
- 0.05408198262254397, 0.09636063625415166, 0.10915641734997432, -0.01810490091641744,
- 0.030395707115530968, 0.00021227262914180756, 0.05438238133986791, -0.01790543148914973,
- 0.016141741536557674, -0.007015642399589221, -0.051057118301590286,
- -0.013686960097402334, 0.032293648148576416, -0.04516546055674553, 0.017008921441932518,
- -0.038233937695622444, -0.040356301702558994, 0.011914656963199377, 0.04645772526661555,
- 0.04565500157574812, -0.023382441761593025, 0.022742880741134286, -0.04683562771727642,
- 0.03127831950162848, 0.034433742985129356, 0.015834263215462368, -0.085528959830602,
- 0.054342419297123946, -0.06669697786370914, -0.09754143158594768, 0.04952908679842949,
- 0.028321412081519764, 0.05489034205675125, 0.0427616685628891, -0.011301878684510788,
- 0.03943627389768759, -0.020696849562227726, -0.017661101495226223,
- -0.004059437041481336, 0.03669426217675209, 0.025880897728105385, 0.03862203564494848,
- 0.13353946059942245, 0.010135913481159756, 0.022690830441812675, -0.08012153580784798,
- 0.04249353148043156, 0.12347957988580067, -0.02397029505421718, 0.01670521575336655,
- 0.01726298127323389, 0.010804596822708845, -0.002387884228179852, -0.03201058693230152,
- -0.07125423848628998, -0.0203398282174021, -0.05822349339723587, 0.08978235721588135,
- 0.05323069542646408, -0.06060462196667989, -0.14930948118368784, -0.016881827265024185,
- -0.03441110687951247, 0.03350743278861046, 0.10661989450454712, -0.058047408858935036,
- 0.029786538022259872, 0.026463033243392903, 0.0012057206283013027, 0.009906097004810968,
- -0.0697678563495477, -0.02060188395747294, -0.06947099914153416, 0.020556815434247255,
- 0.05022135361408194, 0.054058791448672615, -0.05513513647019863, 0.05535358237102628,
- -0.087074875831604, 0.06336828445394833, -0.021771749171117943, -0.029744746784369152,
- 0.019058553501963615, -0.035072384402155876, 0.030634647545715172,
- -0.013372271011273066, -0.008919707189003626, -0.045031625467042126,
- -0.04753441239396731, -0.03713405504822731, -0.06286589428782463, -0.08755280822515488,
- -0.01563129760324955, -0.0708762655655543, 0.06925502419471741, -0.06622205177942912,
- -0.019213872185597818, -0.050418753176927567, -0.04396546849360069, 0.01410151575691998,
- 0.020398731421058375, -0.028292064554989338, -0.1218600943684578, -0.05702371740092834,
- -0.0012234446282188098, 0.03043005367120107, -0.009640165915091833,
- -0.09435095141331355, -0.027190756984055042, 0.03305626784761747, 0.008238523888091246,
- -0.07610328619678815, -0.0132600466410319, -0.05391496792435646, 0.06542089954018593,
- -0.08067505061626434, -0.444237877925237, 0.07186022152503331, 0.05345568309227625,
- 0.03718435764312744, 0.016910106719781954, -0.056072380393743515, 0.02552872709929943,
- 0.0338338998456796, 0.012685019008737678, 0.06852409864465396, -0.06273625915249188,
- 0.017572779130811494, -0.05190590148170789, -0.052621440341075264,
- -0.002872271308054527, -0.08593027045329411, -0.009935384305814901, 0.03474144513408343,
- -0.000668596476316452, -0.03746154143785437, -0.045231775691111885,
- 0.025389331858605146, -0.034594326900939144, -0.0212825791289409, -0.00957050547003746,
- 0.0008608636756738027, -0.063344390441974, -0.07395448287328084, 0.016044582550724346,
- 0.05799757937590281, 0.010784496863683065, -0.08146760116020839, -0.004840103288491567,
- 0.03813363425433636, 0.01858526033659776, 0.09922585139671962, 0.015808486690123875,
- -0.004676758001248042, -0.051158253103494644, 0.057803332805633545, 0.05209627995888392,
- 0.18905230363210043, -0.00662854469070832, 0.04925902560353279, -0.020759590280552704,
- 0.08882372081279755, 0.028782506783803303, 0.026072302910809714, -0.0313306941340367,
- -0.009379785071359947, 0.03762264301379522, -0.009161466732621193, 0.06763529777526855,
- -0.06505472585558891, -0.02717982418835163, 0.00734921358525753, -0.02241957311828931,
- -0.06289654100934665, -0.0076542142778635025, 0.18394047021865845, 0.010394320862057308,
- 0.029628058895468712, 0.027942384282747906, -0.019601283594965935, -0.01122520895053943,
- -0.07263281072179477, -0.03960086529453596, -0.07944487656156222, -0.00668689701706171,
- 0.027857823607822258, -0.03524052103360494, -0.09924231966336568, -0.01986133928100268,
- -0.007357799564488232, 0.015274731752773127, 0.1009793554743131, -0.03246597511072954,
- 0.014405505110820135, -0.04496116191148758, 0.12230716397364934, -0.0035709512109557786,
- 0.05303594780464967, 0.05252542967597643, 0.07784810786445935, 0.039532274628678955,
- -0.028428263030946255, -0.0316319294894735, -0.05199753834555546, 0.002455271741685768,
- 0.14528659482796988, -0.029778379946947098, 0.09414747109015782, 0.026438064873218536,
- 0.006453842235108216, -0.025320517054448526, 0.026956142857670784, 0.01216643862426281,
- 0.010097756904239455, -0.5077928404013315, -0.036571733808765806, 0.11809796094894409,
- 0.0019355811333904664, 0.026953938106695812, 0.07457029819488525, 0.011066894745454192,
- -0.03301042846093575, 0.03169876181830963, -0.08045121406515439, 0.0531014750401179,
- 0.020338135461012524, 0.08497753366827965, -0.07701304834336042, 0.019677256233990192,
- 0.07658272236585617, -0.025994896267851193, -0.0000680989275376002,
- 0.025056430759529274, -0.24249285956223807, 0.002915029413998127, -0.06015743936101595,
- 0.10645334670941035, 0.023957176754872005, 0.044102929532527924, 0.08937705804904301,
- -0.040820195650060974, 0.06529833562672138, 0.05690717324614525, 0.04345027357339859,
- 0.07335032522678375, -0.006934292459239562, -0.04098781943321228, 0.08644094318151474,
- 0.09471695870161057, 0.09302783260742824, 0.007148257456719875, 11.829922040303549,
- 0.019255009829066694, 0.05581927920381228, -0.05705384320269028, -0.009742992464452982,
- -0.06773880620797475, 0.05218858147660891, -0.06514820208152135, 0.06055008868376414,
- 0.09049856166044871, 0.013839451285700003, -0.031105248257517815, -0.06383788088957469,
- -0.059118413676818214, 0.03628716804087162, -0.017910293769091368,
- -0.020508735130230587, -0.027261390971640747, 0.02872858429327607, -0.06376758341987927,
- -0.007934770236412684, 0.04962812984983126, 0.0829647531112035, 0.015619372638563314,
- -0.08478080853819847, 0.02831303762892882, -0.038113873451948166, 0.023095838104685146,
- 0.03528845061858495, 0.030933096694449585, 0.01037456855798761, 0.03562733189513286,
- 0.08761949588855107, 0.01914845717449983, 0.013267192368706068, 0.07636391868193944,
- -0.008071351796388626, 0.02419125350813071, 0.0594677689174811, 0.04116011473039786,
- 0.01209531289835771, 0.027007415890693665, 0.007775205885991454, 0.033415515441447496,
- 0.057670549799998604, 0.05061116566260656, 0.040442767242590584, 0.14012941221396127,
- 0.02669384703040123, 0.08143432810902596, 0.05710012838244438, 0.0005262719156841437,
- 0.10085014750560124, 0.0324922331298391, -0.03040114790201187, -0.004259750712662935,
- 0.010090689485271772, -0.08044636870423953, 0.07697934160629909, 0.038620363300045334,
- -0.03876311980032673, 0.12246655921141307, 0.0441199087848266, 0.0723089004556338,
- 0.008942220883909613, 0.03362869222958883, 0.07884461929400761, 0.05804641172289848,
- -0.07652524610360463, -0.04988093550006548, 0.033937171722451843, -0.07370124384760857,
- -0.05414137989282608, 0.03741867398881974, 0.039492642506957054, -0.02958226886888345,
- 0.07503530258933704, -0.03527501846353213, 0.03123510256409645, -0.019967532406250637,
- 0.0289059451315552, 0.00598181551322341, -0.049900539219379425, 0.012182213676472506,
- 0.006506986916065216, 0.035235906951129436, 0.03800470350931088, 0.10057285676399867,
- 0.01052904105745256, -0.06164273743828138, -0.07455828040838242, 0.07666985442241032,
- -0.007371265014323096, -0.03156458710630735, 0.051942902927597366, -0.04912081795434157,
- 0.041601972344021, -0.14688646296660104, 0.04325970634818077, 0.06259991849462192,
- -0.07325974603494008, -0.01783168315887451, -0.019148220647669707, 0.0805467776954174,
- 0.01496899981672565, 0.03691464041670164, -0.04768994636833668, 0.01544000239421924,
- 0.02036173517505328, 0.026473100141932566, -0.014779995506008467, 0.09982266277074814,
- 0.028873649736245472, -0.04788213719924291, 0.07047957430283229, 0.037578445548812546,
- 0.004835220364232858, -0.0072880638763308525, 0.04787017901738485, 0.038189864406983055,
- -0.07587047790487607, -0.030236038379371166, -0.061963800340890884,
- -0.03899050441881021, -0.002441767913599809, -0.01591495507940029, -0.01651444627592961,
- 0.011696844672163328, -0.012179657040784756, -0.02260145079344511, 0.031235092009107273,
- 0.06176437561710676, 0.11538648356993993, -0.009796194732189178, 0.03929207365339001,
- -0.01054636404539148, -0.05369590098659197, 0.07231244693199794, 0.052151525393128395,
- 0.09003517900904019, -0.08046006908019383, -0.02365847009544571, -0.03677159966900945,
- -0.11124970018863678, 0.02024602626139919, 0.015847675560507923, 0.05253967953224977,
- 0.05622873827815056, 0.03534846566617489, -0.052491904546817146, -0.0193938451508681,
- 0.07887166490157445, 0.013792733487207443, -0.031424573001762234, 0.051105026776591934,
- -0.02391312337325265, -0.01589966317017873, 0.08988745013872783, -0.03235203959047794,
- -0.014085404885311922, 0.02230347110889852, -0.1435399241745472, 0.02159876438478629,
- 0.09573304653167725, 0.037940921572347484, 0.015021741390228271, 0.060266945511102676,
- 0.02716144733130932, 0.012820492498576641, 0.010826822370290756, 0.029965192079544067,
- -0.025951690661410492, -0.08630837375919025, -0.07633727913101514, 0.02130884521951278,
- 0.08397336676716805, 0.08980091661214828, -0.13118225087722143, -0.010645763017237186,
- -0.034318787356217705
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 352,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 6,
- "similarity": 0.9985781908035278
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 14,
- "similarity": 0.9983730316162109
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 38,
- "similarity": 0.9982074499130249
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Brandon Vigliarolo"],
- "epoch_date_downloaded": 1672272000,
- "epoch_date_modified": 1672272000,
- "epoch_date_submitted": 1672272000,
- "flag": null,
- "report_number": 2426,
- "source_domain": "theregister.com",
- "submitters": ["Daniel Atherton (BNH.ai)"],
- "title": "GPT-3 'prompt injection' attack causes bot bad manners",
- "url": "https://www.theregister.com/2022/09/19/in_brief_security/"
- },
- {
- "__typename": "Report",
- "authors": ["Simon Willison"],
- "epoch_date_downloaded": 1665273600,
- "epoch_date_modified": 1665273600,
- "epoch_date_submitted": 1665273600,
- "flag": null,
- "report_number": 2093,
- "source_domain": "simonwillison.net",
- "submitters": ["Anonymous"],
- "title": "Prompt injection attacks against GPT-3",
- "url": "https://simonwillison.net/2022/Sep/12/prompt-injection/"
- },
- {
- "__typename": "Report",
- "authors": [
- "Hezekiah J. Branch",
- "Jonathan Rodriguez Cefalu",
- "Jeremy McHugh",
- "Leyla Hujer",
- "Aditya Bahl",
- "Daniel del Castillo Iglesias",
- "Ron Heichman",
- "Ramesh Darwishi"
- ],
- "epoch_date_downloaded": 1665273600,
- "epoch_date_modified": 1665273600,
- "epoch_date_submitted": 1665273600,
- "flag": null,
- "report_number": 2076,
- "source_domain": "arxiv.org",
- "submitters": ["Khoa Lam"],
- "title": "Evaluating the Susceptibility of Pre-Trained Language Models via Handcrafted Adversarial Examples",
- "url": "https://arxiv.org/abs/2209.02128"
- },
- {
- "__typename": "Report",
- "authors": ["Benj Edwards"],
- "epoch_date_downloaded": 1665273600,
- "epoch_date_modified": 1665273600,
- "epoch_date_submitted": 1663372800,
- "flag": null,
- "report_number": 2070,
- "source_domain": "arstechnica.com",
- "submitters": ["Daniel Atherton (BNH.ai)"],
- "title": "Twitter pranksters derail GPT-3 bot with newly discovered “prompt injection” hack",
- "url": "https://arstechnica.com/information-technology/2022/09/twitter-pranksters-derail-gpt-3-bot-with-newly-discovered-prompt-injection-hack/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "tesla",
- "name": "Tesla"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "tesla",
- "name": "Tesla"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "jeremy-banner's-family",
- "name": "Jeremy Banner's family"
- },
- {
- "__typename": "Entity",
- "entity_id": "jeremy-banner",
- "name": "Jeremy Banner"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [2195, 2074, 2073],
- "vector": [
- -0.08035498112440109, 0.08910924444595973, 0.0029675568609188, -0.07486261054873466,
- 0.0793005774418513, -0.036954364428917565, -0.010691503838946423, 0.025818550183127325,
- 0.05697671324014664, -0.14488849540551504, 0.02145243758180489, 0.08524949600299199,
- 0.03125690886129936, -0.058368352552255, 0.04607144743204117, -0.05499076843261719,
- -0.07687497635682423, -0.048503284653027855, 0.019044127004841965, -0.107697494328022,
- -0.05905994772911072, -0.01790876849554479, 0.05120497321089109, 0.11020104835430782,
- -0.04851968213915825, 0.024796340614557266, 0.081296240290006, 0.10564568887154262,
- -0.021803162371118862, 0.03986266379555067, -0.009319650940597057,
- -0.036984777078032494, 0.08744479715824127, -0.012217432105292877,
- -0.006764392678936322, 0.09013366947571437, 0.020229019224643707, -0.02666724193841219,
- -0.08319096639752388, -0.007542431664963563, 0.018998010801927496, 0.2134592334429423,
- 0.009717209885517756, -0.014778619399294257, 0.05690903837482134, -0.03890775702893734,
- 0.04527056279281775, 0.04256741081674894, -0.00646821060217917, -0.003632787304619948,
- -0.004877463759233554, 0.05674863730867704, -0.03166384622454643, 0.0006434060633182526,
- -0.11170990765094757, 0.0632547028362751, 0.033588808650771775, 0.0038013819915552935,
- 0.03538534417748451, -0.05407564342021942, -0.04644324071705341, -0.21783298254013062,
- -0.06637771675984065, -0.06599320843815804, 0.07519120971361797, -0.07303909212350845,
- -0.02453315444290638, -0.018988276987026136, 0.03260152197132508, 0.06612011169393857,
- 0.053627160688241325, -0.0675573783616225, -0.024136727365354698,
- -0.0013863065590461094, 0.0056248644056419534, -0.010897961910814047,
- -0.004695039863387744, 0.24282183249791464, -0.11787160485982895, 0.025346080074086785,
- 0.12387424955765407, -0.10485267887512843, 0.4262540837128957, 0.030474705000718433,
- -0.05044832453131676, -0.07374599575996399, 0.09753770132859547, 0.0409918911755085,
- 0.04207159454623858, 0.06373841812213261, -0.019326545918981235, 0.030362026145060856,
- -0.01838833070360124, 0.04546575993299484, 0.07071506107846896, 0.04286551599701246,
- -0.009037096984684467, 0.06931820201377074, -0.018539638879398506, -0.06656888872385025,
- 0.03781823037813107, -0.05518539249897003, 0.10271501168608665, 0.04049258244534334,
- -0.05392640766998132, 0.034938606123129524, 0.10194875796635945, -0.041978416964411736,
- 0.03594785928726196, -0.06417250260710716, 0.021444361967345078, 0.019714423455297947,
- 0.05865094189842542, 0.0025898925572012863, 0.053048996875683464, -0.06468699003259341,
- 0.00847345528503259, 0.026438081016143162, 0.09290394186973572,
- 0.0000036607185999552407, -0.01998849306255579, 0.0497251662115256, 0.10833927989006042,
- -0.04829510487616062, -0.02124475408345461, -0.012163744676702967, -0.03586729678014914,
- -0.014584049892922243, -0.018863250811894734, 0.045599217837055527,
- -0.02968056744430214, -0.1614856868982315, 0.03176552305618922, 0.10808954884608586,
- 0.008841054203609625, -0.03758683614432812, -0.024621990664551657, -0.0741351122657458,
- 0.06275984272360802, -0.009163389137635628, -0.015131684330602488, 0.04461361716190974,
- 0.07903237144152324, 0.015307049266994, 0.12807834645112356, 0.04616332488755385,
- -0.0391272014627854, -0.03760190059741338, -0.025110965905090172, -0.030261494995405275,
- 0.06935824329654376, -0.10758200784524281, -0.057687231649955116, 0.04770735278725624,
- 0.03185006106893221, 0.6014708578586578, 0.10309546689192454, 0.14946544418732324,
- 0.006396623405938347, -0.005195609914759795, 0.1722196489572525, -0.007470125953356425,
- 0.0552907350162665, -0.040539528553684555, -0.07557585338751475, 0.026028175527850788,
- -0.06449713557958603, -0.035640325397253036, 0.042487463603417076, 0.02891915664076805,
- 0.1261373981833458, 0.0325409850726525, 0.09522377699613571, -0.022374569593618315,
- -0.08467959612607956, -0.042459916323423386, 0.02102596638724208, 0.0006778636404002706,
- -0.09314122796058655, -0.04371048882603645, 0.03633598890155554, 0.07885462045669556,
- -0.05257581484814485, 0.009102396356562773, -0.037040517975886665, 0.020433191986133654,
- -0.03884836162130038, -0.008099737266699472, -0.016463384342690308,
- 0.021153930574655533, 0.03602723032236099, 0.06785152728358905, 0.018644637273003657,
- -0.10131670037905376, -0.032137359182039894, 0.11630960305531819,
- 0.000011499971151351929, -0.02857790080209573, 0.0565396323800087, -0.08827303349971771,
- 0.0529072235027949, 0.013680837427576384, 0.10909662147363026, -0.08781632284323375,
- 0.03499262655774752, -0.000026670439789692562, 0.010938647668808699, 0.0778703826169173,
- -0.012607618235051632, -0.06613698850075404, -0.06599603469173114, 0.06775056943297386,
- 0.0463898666203022, 0.07773944735527039, 0.06793387358387311, -0.04317802811662356,
- 0.009781393067290386, 0.044150118405620255, 0.0015620145325859387, -0.03143384928504626,
- 0.060507760693629585, 0.0790612002213796, -0.018062368656198185, 0.007815369172021747,
- 0.024152240405480068, 0.02348260550449292, 0.045172971983750664, 0.01197697416258355,
- 0.04442268361647924, 0.020629713622232277, -0.03655307208343098, 0.007222490695615609,
- 0.0391576886177063, 0.001359196554403752, 0.11314445982376735, -0.09276498854160309,
- -0.03369320773830017, -0.021128289634361863, -0.03052466797331969, -0.01046033677024146,
- -0.06137267996867498, 0.07738541314999263, 0.04615255817770958, 0.07459245870510738,
- 0.0290522367383043, 0.04375860405464967, 0.03135357486704985, 0.06936455207566421,
- 0.03652315276364485, 0.06366297105948131, -0.017186335404403508, -0.03904580262800058,
- -0.01933662996937831, 0.012908759526908398, 0.06285748382409413, 0.02439133667697509,
- -0.07173016170660655, -0.055007883037130036, -0.04811885952949524,
- -0.048249529053767524, -0.05948358650008837, -0.04985577613115311,
- 0.0005380513612180948, 0.055280547589063644, -0.05859316637118658,
- -0.050125294675429664, -0.08433320994178455, 0.041609205305576324, 0.03661668517937263,
- -0.018072394964595635, -0.02286955326174696, -0.09422298769156139,
- -0.014836460972825686, -0.011575665480146805, 0.02736267012854417, 0.009878294231990973,
- 0.003345801184574763, -0.02054214899544604, -0.06339872131745021, 0.00322872157751893,
- -0.0027177256221572557, -0.007479301032920678, -0.05732049482564131,
- -0.05480325842897097, -0.0446140735099713, 0.008938991464674473, 0.015162593064208826,
- 0.013760558950404326, 0.02880183421075344, 0.03635618044063449, 0.019516586636503536,
- -0.013178249433015784, -0.019140627545615036, 0.06266331548492114, -0.04211919754743576,
- 0.002107189657787482, 0.08253813286622365, -0.0171062818505258, 0.026105370993415516,
- -0.0025328882038593292, -0.035941209100807704, -0.06471399590373039,
- 0.004772370836387078, -0.060506400962670646, 0.03402995318174362, -0.04033068008720875,
- 0.02292785933241248, -0.038581604758898415, 0.025652689238389332, 0.04632333293557167,
- -0.06886907418568929, -0.05350844313700994, -0.09234095116456349, 0.08442994082967441,
- 0.005936558707617223, -0.027896850059429806, -0.0013603211070100467,
- -0.04591502000888189, 0.04955622678001722, 0.012833520226801435, 0.012095038934300343,
- 0.034588792671759926, 0.04079231961319844, -0.02179491116354863, -0.009927993640303612,
- 0.07020976021885872, -0.023683074085662763, 0.019200270685056847, 0.07342023278276126,
- 0.39156536261240643, -0.17031403879324594, 0.08097957074642181, 0.07250783095757167,
- 0.028855824532608192, 0.08837675551573436, -0.04076190106570721, 0.06164264430602392,
- 0.04714933161934217, 0.08990692843993504, 0.08992557227611542, -0.022733794214824837,
- -0.010357922680365542, -0.06232350940505663, 0.07894125084082286, 0.009791681387772163,
- 0.012916277706002196, -0.0174427954480052, -0.07446657866239548, 0.0042670748274152475,
- 0.045111268758773804, -0.03500986471772194, 0.014843996614217758,
- -0.0033931988679493466, -0.07623047133286794, 0.0019861514447256923,
- 0.027955948064724605, 0.01253944889564688, -0.03739876920978228, -0.0015972664890189965,
- -0.00907636247575283, 0.025675379981597263, -0.02065394353121519, 0.03886645659804344,
- -0.09651943917075793, 0.06878703087568283, -0.12340843677520752, -0.06544484570622444,
- 0.09550144771734874, -0.010368710694213709, 0.030509094707667828, 0.0496223084628582,
- -0.0412760308633248, 0.004250331626584132, -0.004542555970450242, -0.046694220354159675,
- 0.011310575995594263, 0.05361130957802137, 0.02741193724796176, 0.061960739394028984,
- 0.14395849158366522, -0.026743656645218532, -0.04629298051198324, -0.061741373191277184,
- 0.07441822191079457, 0.11840441823005676, -0.029940325145920117, 0.01878035565217336,
- -0.028133516878976177, -0.0006872660790880521, 0.0031561318707341948,
- -0.06348472088575363, -0.07709776361783345, 0.012801022734493017, -0.040869258965055145,
- 0.05669869234164556, -0.029859402527411778, -0.013903454256554445, -0.12121191372474034,
- -0.017349741732080776, -0.07018142690261205, 0.02369099793334802, 0.10767259697119395,
- -0.04284525476396084, 0.00477998595063885, 0.05436495691537857, -0.0112951317957292,
- 0.008978084893897176, -0.09954614192247391, -0.005798986026396354, -0.03931946059068044,
- 0.02447630651295185, 0.040491693963607155, 0.050592973828315735, -0.03029586685200532,
- 0.036558372589449085, -0.09738664577404658, 0.020892025747646887, 0.030531772101918857,
- 0.00567893839130799, 0.03977515238026778, -0.037683963775634766, 0.046730143328507744,
- 0.03194750923042496, -0.02222616256525119, -0.000029414892196655273,
- -0.04448086954653263, -0.022846636983255546, -0.1127978985508283, -0.061658854906757675,
- -0.018499557724377762, -0.06065895532568296, 0.06955360434949398, -0.0925373633702596,
- -0.04208998133738836, -0.017988822733362515, 0.00524207375322779, 0.032887861132621765,
- 0.07278369615475337, 0.022784442951281864, -0.09990186244249344, 0.008950400942315659,
- -0.020381545027097065, 0.05934414019187292, -0.017880357181032498, -0.03480746791077157,
- 0.011597765610834662, 0.125032310684522, 0.04054979793727398, -0.03179925726726651,
- -0.014417729165870696, -0.04057735266784827, 0.023331981152296066, -0.07153012976050377,
- -0.508089562257131, 0.06614244480927785, 0.01540757684657971, 0.049266171952088676,
- 0.011798654488908747, -0.022815271047875285, 0.019475020778675873,
- -0.003198124856377641, -0.05010256916284561, 0.07685083026687305, -0.05186891804138819,
- 0.031214183041205008, -0.0020876716201504073, -0.05453992821276188,
- -0.01606445573270321, -0.038400632018844284, -0.04224791626135508, 0.057184264063835144,
- -0.017337494374563295, -0.0661344863474369, -0.09372888753811519, 0.008845712019441029,
- -0.013543651128808657, -0.019443130469880998, -0.011759578017517924,
- 0.0006729753998418649, -0.07614127174019814, -0.06736953804890315, 0.02944061967233817,
- 0.06659715622663498, 0.03492434167613586, -0.051976716766754784, -0.01277555339038372,
- 0.025872972172995407, -0.052998038629690804, 0.15165209273497263, 0.017972909069309633,
- 0.01874213231106599, -0.0837538739045461, 0.07347835972905159, 0.06152326613664627,
- 0.18827701608339945, -0.022211185346047085, 0.07755507032076518, 0.003030534057567517,
- 0.14442279189825058, 0.018014430863937985, 0.034020670844862856, -0.01619866055746873,
- -0.009309356100857258, 0.010633115811894337, -0.00481170400356253, 0.04360821718970934,
- -0.0588403989871343, -0.03759070237477621, -0.025941829507549603, 0.0029384420874218145,
- -0.03296898522724708, 0.007417209446430206, 0.1540736605723699, 0.006632452520231406,
- 0.022358239550764363, -0.01631733061124881, -0.04021764546632767, -0.027363405097275972,
- -0.043285941084225975, -0.09019432961940765, -0.04066915685931841,
- -0.026010521377126377, 0.02841195526222388, -0.042863099525372185, -0.10692598670721054,
- -0.014462411403656006, -0.030459410200516384, -0.009393328179915747,
- 0.08799295127391815, -0.011622226176162561, 0.0450128527979056, -0.04121894265214602,
- 0.10441148529450099, 0.030281676445156336, 0.012444228360739848, 0.05645392835140228,
- 0.09658161054054896, 0.008776751424496373, 0.004156600373486678, -0.02502281901737054,
- -0.05383378267288208, -0.001813114349109431, 0.1031329333782196, -0.029290130361914635,
- 0.08152480671803157, 0.07997810343901317, -0.03564000750581423, -0.05485445881883303,
- 0.030941022249559563, 0.011599545211841663, 0.04925509293874105, -0.5002204279104868,
- -0.023655166073391836, 0.12299229701360066, 0.007588115908826391, 0.027195533116658527,
- 0.06537062178055446, 0.022944993649919827, -0.014113271919389566, -0.03399522051525613,
- -0.03989465472598871, 0.11051364739735921, -0.0052271385211497545, 0.0631503698726495,
- -0.10056528945763905, 0.034689522037903466, 0.07179474954803784, -0.019210420781746507,
- -0.033001928900678955, 0.058032166212797165, -0.24634890258312225, -0.01552114775404334,
- -0.0665462538599968, 0.17286368707815805, 0.0621404784421126, 0.009705183406670889,
- 0.07971152539054553, -0.04440666176378727, 0.04180759812394778, 0.05232455519338449,
- 0.010184102381269136, 0.06999367351333301, -0.007644240511581302, -0.030271497865517933,
- 0.1188650702436765, 0.04406120744533837, 0.091727115213871, -0.00244163628667593,
- 11.861625035603842, 0.0695914626121521, 0.035364327331384025, -0.06700181464354198,
- 0.06124282752474149, -0.07001543045043945, 0.043207539866367974, -0.09257552772760391,
- 0.05937977756063143, 0.09273188561201096, -0.0067459459727009135, -0.021596710042407114,
- -0.04833522819293042, -0.07265051702658336, 0.012070906814187765, -0.07037121305863063,
- -0.03563729382585734, -0.025676972698420286, 0.025459604958693188,
- -0.054015992830197014, 0.0061323440944155054, 0.005816802072028319, 0.06027462830146154,
- 0.018546507383386295, -0.08606324841578801, 0.04108707599031428, 0.03359328396618366,
- 0.009302170481532812, 0.016483086510561407, 0.023214321893950302, -0.020105149286488693,
- 0.018696350045502186, 0.057300813496112823, 0.010857114723573128, -0.011327449542780718,
- 0.053765442222356796, 0.03499979518043498, 0.05721021940310796, 0.01931966453169783,
- 0.07036029423276584, 0.029735399410128593, 0.027887075518568356, 0.03333555938055118,
- 0.04339339770376682, 0.04068052023649216, 0.034587437907854714, 0.07245039939880371,
- 0.10491167505582173, 0.007997329657276472, 0.05287559827168783, 0.06991534307599068,
- -0.022227846862127382, 0.10996158669392268, 0.008174533024430275,
- -0.0029843793066296107, 0.0044699120335280895, -0.001077244058251381,
- -0.0641788939634959, 0.0680428296327591, 0.040909516935547195, -0.052639453361431755,
- 0.0879029780626297, 0.0036494041172166667, 0.08446059624354045, -0.03412938769906759,
- 0.07126165181398392, 0.0894000877936681, 0.059237696851293244, -0.08843954776724179,
- -0.034733461904882766, 0.05366769681374232, -0.11171822001536687, -0.070406769712766,
- 0.04965441053112348, 0.06739211874082685, -0.05550019939740499, 0.07082012916604678,
- -0.052815849582354225, 0.031772331024209656, -0.026444557433327038,
- -0.002390362632771333, 0.025550305532912414, -0.020442777623732884,
- -0.005261124887814124, 0.06672323867678642, 0.00432805724752446, 0.08914627134799957,
- 0.08536806950966518, -0.05098514383037885, -0.05990574508905411, -0.11439634611209233,
- 0.06983287011583646, -0.01403120532631874, -0.0399675245086352, 0.020390566884695243,
- -0.05281473075350126, 0.029973431800802548, -0.15730545669794083, 0.09265297651290894,
- 0.09068498760461807, -0.07932642847299576, 0.008927686450382074, -0.009787497421105703,
- 0.05305809217194716, -0.02127230338131388, 0.03400561958551407, -0.03976819229622682,
- 0.030576438332597416, -0.007666831525663535, 0.05298769474029541, -0.0403582559277614,
- 0.07774027933677037, 0.05654361409445604, -0.08074482282002766, 0.07310150812069575,
- 0.08037821700175603, -0.0026946201299627623, -0.03509803907945752, 0.061789908756812416,
- 0.02394024779399236, -0.08591650674740474, -0.0371245089918375, -0.03436077324052652,
- -0.050312322874863945, -0.036598448331157364, -0.053437946985165276,
- 0.009119045144567886, 0.01877700925494234, -0.055524529268344246, -0.020510142707886796,
- -0.01297754825403293, 0.027872955387768645, 0.1067082683245341, 0.015449799597263336,
- 0.053551619251569114, -0.06449984138210614, -0.025721272298445303, 0.0688735085229079,
- 0.026464381953701377, 0.09125956644614537, -0.007940756777922312, 0.019935494288802147,
- -0.0421682403733333, -0.09696339815855026, -0.005298830258349578, 0.0922205423315366,
- 0.05762005845705668, 0.03700463039179643, 0.03844648910065492, -0.06288908421993256,
- -0.04161654325434938, 0.11225465685129166, 0.018249269264439743, -0.0019648405141197145,
- 0.015877821172277134, -0.08222820113102595, 0.0051549092556039495, 0.15190302828947702,
- -0.02309423211651544, -0.006887982288996379, 0.03842075106998285, -0.038378819823265076,
- 0.05066942982375622, 0.041036223992705345, 0.04519568538914124, 0.03302764364828666,
- 0.01620287688759466, -0.021786405549695093, 0.01238296926021576,
- -0.00027732302745183307, 0.007100508237878482, -0.0025761209738751254,
- -0.11982482920090358, -0.07613331079483032, 0.011542970256414264, 0.09412545710802078,
- 0.02627852000296116, -0.1260311702887217, -0.028869122887651127, -0.030977961296836536
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 353,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 52,
- "similarity": 0.998786449432373
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 20,
- "similarity": 0.998775839805603
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 71,
- "similarity": 0.9984809756278992
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["National Transportation Safety Board"],
- "epoch_date_downloaded": 1666051200,
- "epoch_date_modified": 1668384000,
- "epoch_date_submitted": 1666051200,
- "flag": null,
- "report_number": 2196,
- "source_domain": "scribd.com",
- "submitters": ["Khoa Lam"],
- "title": "Collision Between Car Operating with Partial Driving Automation and Truck-Tractor Semitrailer",
- "url": "https://www.scribd.com/document/595544744/NTSB-Report-on-Fatal-Tesla-crash"
- },
- {
- "__typename": "Report",
- "authors": ["Isobel Asher Hamilton"],
- "epoch_date_downloaded": 1666051200,
- "epoch_date_modified": 1667347200,
- "epoch_date_submitted": 1666051200,
- "flag": null,
- "report_number": 2195,
- "source_domain": "businessinsider.com",
- "submitters": ["Khoa Lam"],
- "title": "'We cannot have technology and sales take over safety': Tesla is being sued again for a deadly Autopilot crash",
- "url": "https://www.businessinsider.com/tesla-sued-family-jeremy-beren-banner-autopilot-crash-2019-8"
- },
- {
- "__typename": "Report",
- "authors": ["CBS12 News"],
- "epoch_date_downloaded": 1665273600,
- "epoch_date_modified": 1665273600,
- "epoch_date_submitted": 1665273600,
- "flag": null,
- "report_number": 2074,
- "source_domain": "cbs12.com",
- "submitters": ["Khoa Lam"],
- "title": "Tesla's autopilot feature at center of wrongful death lawsuit in Palm Beach County",
- "url": "https://cbs12.com/news/local/tesla-crash-lawsuit-jeremy-banner-delray-beach-model-3-sr7-richard-wood-elon-musk-firstfleet-september"
- },
- {
- "__typename": "Report",
- "authors": ["Malathi Nayak"],
- "epoch_date_downloaded": 1664150400,
- "epoch_date_modified": 1665273600,
- "epoch_date_submitted": 1664150400,
- "flag": null,
- "report_number": 2073,
- "source_domain": "bloomberg.com",
- "submitters": ["Daniel Atherton (BNH.ai)"],
- "title": "Tesla’s Autopilot Heads to Trial",
- "url": "https://www.bloomberg.com/news/articles/2022-09-13/tesla-trial-on-fatal-florida-crash-to-test-musk-autopilot-claims"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "uber",
- "name": "Uber"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "uber",
- "name": "Uber"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "uber-drivers",
- "name": "Uber drivers"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [2080, 2079, 2078],
- "vector": [
- -0.03953426703810692, 0.06594561040401459, -0.008749536238610744, -0.040273915976285934,
- -0.029595492407679558, -0.07571538537740707, 0.02789279818534851, 0.04140789806842804,
- 0.0664731040596962, -0.09995358437299728, -0.01921198144555092, 0.07381870597600937,
- 0.03402956575155258, 0.017527082934975624, 0.07593175023794174, -0.09522777795791626,
- -0.09780371934175491, 0.03990485891699791, -0.040862422436475754, 0.01784183271229267,
- -0.11883113533258438, 0.07411614805459976, 0.07061716914176941, 0.13532878458499908,
- -0.032109953463077545, 0.05460955202579498, 0.11495033651590347, 0.0920647382736206,
- -0.029567526653409004, 0.1018352136015892, 0.009311818517744541, -0.019744422286748886,
- 0.11470184475183487, 0.04845505952835083, 0.03068464994430542, 0.10061517357826233,
- 0.055702537298202515, -0.05074775591492653, -0.05343926325440407, -0.03377460315823555,
- 0.056778643280267715, 0.2075638771057129, -0.05907054618000984, 0.017129896208643913,
- 0.03315998986363411, -0.0030709318816661835, 0.04950706288218498, 0.0020935956854373217,
- 0.003482953878119588, 0.04215162992477417, 0.034451574087142944, 0.038969822227954865,
- -0.03587312996387482, 0.04819701239466667, -0.06358295679092407, 0.010423603467643261,
- 0.01991029642522335, 0.04502269998192787, 0.06375632435083389, -0.09372449666261673,
- 0.02491634525358677, -0.06516056507825851, -0.07384953647851944, 0.0072512757033109665,
- 0.06043613329529762, -0.08331385999917984, -0.04650189355015755, 0.0137852244079113,
- 0.01994510553777218, 0.06441789120435715, 0.0431533120572567, -0.04442521929740906,
- 0.025883331894874573, -0.06905893236398697, -0.0020949195604771376, 0.01155274361371994,
- -0.0030748925637453794, 0.18539011478424072, -0.09170930832624435, 0.025318926200270653,
- 0.08363644033670425, -0.08943716436624527, 0.2631446421146393, 0.07718803733587265,
- -0.0191675815731287, 0.039009492844343185, 0.06244489923119545, 0.08411348611116409,
- 0.040216024965047836, 0.028797045350074768, 0.003423735499382019, 0.06319646537303925,
- -0.046756312251091, -0.005752140656113625, 0.035617854446172714, 0.024629898369312286,
- 0.005135631188750267, -0.19965283572673798, -0.01820518635213375, -0.028257520869374275,
- 0.043379347771406174, -0.037360478192567825, 0.08475763350725174, 0.07000798732042313,
- -0.04297053813934326, -0.01601739041507244, 0.048904627561569214, 0.03699851408600807,
- 0.019853323698043823, 0.009786813519895077, 0.028889989480376244, 0.1384618729352951,
- 0.05336584523320198, 0.01826806180179119, 0.041851554065942764, -0.07116401195526123,
- 0.008117749355733395, 0.045581918209791183, 0.03613920882344246, 0.055478427559137344,
- 0.009842579253017902, 0.08103568106889725, 0.04739740863442421, -0.009145350195467472,
- 0.020931735634803772, 0.054009199142456055, -0.011303084902465343, 0.013645193539559841,
- -0.034112777560949326, 0.05765886977314949, -0.011803262867033482, -0.22890864312648773,
- -0.03815113380551338, 0.10022133588790894, 0.03372834250330925, -0.014180709607899189,
- 0.006383275613188744, -0.03333776071667671, 0.075615793466568, -0.03599701449275017,
- -0.010102543979883194, 0.06990784406661987, 0.02217934839427471, 0.05306324362754822,
- 0.10478600859642029, 0.019831394776701927, -0.06648809462785721, -0.0544942282140255,
- -0.015949929133057594, -0.04742590710520744, 0.0787142664194107, -0.0737868919968605,
- -0.034385278820991516, 0.03287035599350929, 0.020542599260807037, 0.6263921856880188,
- 0.0993407592177391, 0.08286073803901672, -0.00547252781689167, -0.012754146941006184,
- 0.15834300220012665, 0.012330549769103527, 0.11856523901224136, -0.034827109426259995,
- -0.058235909789800644, 0.03911106288433075, -0.07591337710618973, -0.026550548151135445,
- 0.012901420705020428, 0.033067431300878525, 0.09094617515802383, 0.05856941267848015,
- 0.06479308754205704, -0.029443854466080666, -0.04992368817329407, -0.013786637224256992,
- -0.011599719524383545, -0.008447370491921902, -0.13332097232341766,
- 0.00010596340143820271, 0.006806739140301943, 0.07369758933782578, -0.07025660574436188,
- 0.043622683733701706, -0.04699365794658661, 0.02978970855474472, -0.044391751289367676,
- 0.03768458589911461, -0.02418951690196991, 0.016619455069303513, -0.00070161372423172,
- 0.07977092266082764, 0.0052918423898518085, -0.07267171144485474, 0.00412818742915988,
- 0.1379343867301941, 0.02574469894170761, 0.01281774416565895, 0.07750140130519867,
- -0.09016525745391846, 0.06678106635808945, 0.006670261267572641, 0.1281595230102539,
- -0.11676031351089478, 0.03424990177154541, -0.03450053557753563, -0.014770612120628357,
- 0.05257539823651314, -0.016555801033973694, -0.08717266470193863, -0.07733217626810074,
- -0.0005613714456558228, 0.028348030522465706, 0.02922770380973816, 0.048032332211732864,
- -0.040727775543928146, 0.030470512807369232, -0.0030708201229572296,
- 0.010897097177803516, -0.08025126904249191, 0.0538862943649292, 0.06812601536512375,
- -0.04282626882195473, -0.019370613619685173, 0.06608232110738754, 0.022793596610426903,
- -0.01047975942492485, 0.007576761767268181, 0.07721296697854996, 0.05680926516652107,
- -0.03727881610393524, -0.003927414771169424, -0.004088045563548803,
- -0.024565761908888817, 0.09419119358062744, -0.10001439601182938, 0.008289680816233158,
- -0.03138621896505356, -0.059826236218214035, 0.06250301748514175, 0.022303052246570587,
- 0.025729255750775337, 0.0430971123278141, 0.011902551166713238, -0.0006942329928278923,
- 0.029612213373184204, 0.015040433965623379, -0.019302451983094215, 0.04944518208503723,
- 0.045655507594347, -0.015904881060123444, -0.03625708818435669, -0.04241431877017021,
- -0.006002916023135185, 0.0784507766366005, 0.03012727200984955, -0.08375328779220581,
- 0.006390705704689026, 0.05094236135482788, -0.04563693702220917, -0.035070110112428665,
- -0.01912100613117218, -0.03431570157408714, -0.025403419509530067, -0.06126917526125908,
- -0.08434319496154785, -0.05922843515872955, 0.03146418556571007, 0.012429777532815933,
- -0.05301980301737785, -0.010960436426103115, -0.08759143948554993, -0.01913660205900669,
- -0.021701747551560402, 0.03891739621758461, 0.011967704631388187, -0.05645095184445381,
- 0.018629884347319603, -0.037017080932855606, -0.05459444597363472,
- 0.0019608314614742994, -0.06837301701307297, -0.07992164045572281, -0.04764637351036072,
- -0.05190831422805786, 0.07652271538972855, -0.027651095762848854, -0.04337245225906372,
- 0.04539922997355461, 0.054565269500017166, 0.03123181127011776, -0.01667287014424801,
- -0.020430730655789375, 0.08544240146875381, -0.05923955515027046, 0.03730444610118866,
- 0.06157262623310089, -0.0195346400141716, 0.016604019328951836, 0.00905753206461668,
- -0.03626137226819992, -0.06115083768963814, -0.023794950917363167, -0.07340400665998459,
- 0.00881208572536707, -0.0007675656233914196, 0.0035659726709127426,
- -0.034840986132621765, -0.05330627039074898, 0.026154736056923866, -0.08891668170690536,
- -0.055864084511995316, -0.06591866165399551, 0.13390107452869415, 0.027883345261216164,
- -0.02926056645810604, 0.029498063027858734, -0.06587248295545578, 0.01773659698665142,
- 0.0020289793610572815, 0.00793431419879198, 0.0725245252251625, 0.020361287519335747,
- -0.036183979362249374, 0.04115676507353783, 0.03381871059536934, 0.028673717752099037,
- -0.01166386529803276, 0.07913900166749954, 0.4046977460384369, -0.11276388168334961,
- 0.0020404632668942213, 0.08708345890045166, -0.044031813740730286, 0.03839955851435661,
- 0.005399408284574747, 0.05318353697657585, 0.04645105078816414, 0.09236884862184525,
- 0.10076362639665604, -0.004560673609375954, -0.014234746806323528,
- -0.035747069865465164, 0.09042181819677353, 0.01078178733587265, -0.013073529116809368,
- 0.009382199496030807, -0.08426269143819809, -0.04151880741119385, -0.006807024125009775,
- -0.1004343032836914, 0.04144449532032013, -0.014304022304713726, -0.15742692351341248,
- 0.02923312783241272, 0.04273774102330208, 0.015990855172276497, -0.005211364012211561,
- 0.0232833344489336, -0.07109472155570984, 0.03726595267653465, 0.01683332957327366,
- 0.07182097434997559, -0.04190493002533913, 0.06939306110143661, -0.11733090877532959,
- -0.06113852933049202, 0.07450176030397415, 0.0028396074194461107, 0.04152045026421547,
- 0.05623938515782356, -0.0011465387651696801, 0.04791483283042908, -0.035292260348796844,
- -0.06197294220328331, 0.028615063056349754, 0.017447249963879585, 0.04140313342213631,
- 0.0955137312412262, 0.14777563512325287, 0.02750314027070999, -0.007097564171999693,
- -0.044938281178474426, 0.02288537658751011, 0.101948082447052, -0.04808978736400604,
- 0.04436652734875679, 0.03309177607297897, 0.0286386851221323, -0.014508531428873539,
- -0.017495624721050262, -0.11086409538984299, 0.05678463354706764,
- -0.0028110339771956205, 0.0674780085682869, 0.018824584782123566, -0.04981169104576111,
- -0.14093749225139618, -0.08208002895116806, -0.04218271002173424, 0.008974643424153328,
- 0.1250242441892624, -0.04948766157031059, 0.005571010056883097, 0.00328363967128098,
- 0.022219086065888405, -0.00048625716590322554, -0.0936097577214241,
- -0.020815597847104073, -0.09779254347085953, 0.05863324925303459, 0.015306152403354645,
- 0.07691732794046402, -0.043328091502189636, 0.051259394735097885, -0.06295309960842133,
- 0.07316258549690247, 0.04916302487254143, -0.06490755826234818, 0.05910404399037361,
- -0.039088889956474304, 0.033598486334085464, 0.031098498031497, 0.0034814763348549604,
- -0.040437519550323486, -0.07381285727024078, 0.024503067135810852, -0.09175929427146912,
- -0.08144035935401917, -0.03629231080412865, -0.062453627586364746, 0.11639634519815445,
- -0.004981519188731909, -0.025889642536640167, 0.015458171255886555,
- -0.0012089628726243973, 0.008702154271304607, 0.02021464705467224,
- -0.023005181923508644, -0.14659059047698975, -0.02254834771156311, 0.029403766617178917,
- 0.041776686906814575, -0.04255009815096855, -0.07468987256288528, -0.01644236035645008,
- 0.07029373198747635, 0.029761245474219322, -0.08236146718263626, 0.02153117023408413,
- -0.03520327806472778, 0.05459832027554512, -0.08165031671524048, -0.46331724524497986,
- 0.03942345455288887, 0.008189599961042404, 0.06624699383974075, 0.002259821631014347,
- -0.08877482265233994, 0.015947958454489708, 0.03062516637146473, 0.018255313858389854,
- 0.08587557077407837, -0.062032561749219894, 0.004020253196358681,
- -0.0074952226132154465, -0.0815219059586525, 0.013370629400014877, -0.09307412058115005,
- -0.045139338821172714, 0.005969993770122528, -0.052842628210783005,
- -0.07903704792261124, -0.06601514667272568, 0.0002924688160419464, -0.03169981762766838,
- 0.04550725594162941, 0.023704012855887413, 0.023804785683751106, -0.12456518411636353,
- -0.008550229482352734, 0.002744615077972412, 0.0329979807138443, -0.023923931643366814,
- -0.027602091431617737, 0.033548060804605484, 0.09214619547128677, -0.006706786807626486,
- 0.11311040073633194, 0.021448438987135887, -0.037390947341918945, -0.05660252273082733,
- 0.0576338917016983, 0.024546794593334198, 0.18732501566410065, 0.035054270178079605,
- 0.014281523413956165, 0.008281231857836246, 0.12475341558456421, -0.00997233111411333,
- 0.04300332069396973, -0.05871137976646423, 0.02893979288637638, 0.023966126143932343,
- 0.01524382084608078, 0.04233202710747719, -0.08112915605306625, -0.02339974045753479,
- -0.03239142522215843, 0.009577170945703983, -0.04602901265025139, -0.04763017222285271,
- 0.19589358568191528, 0.0072629619389772415, 0.00058349734172225, -0.0018559284508228302,
- -0.07146141678094864, -0.014154900796711445, -0.1146787479519844, -0.049971431493759155,
- -0.02982759289443493, 0.0025983185041695833, 0.02703556977212429, -0.04002832621335983,
- -0.08025240153074265, -0.028260933235287666, -0.027704784646630287,
- -0.005770639982074499, 0.09230354428291321, -0.032987330108881, 0.08478126674890518,
- -0.02558014541864395, 0.10077067464590073, 0.032686516642570496, 0.052740175276994705,
- -0.013615789823234081, 0.10476994514465332, 0.0034581348299980164, -0.10599680989980698,
- -0.07161793112754822, -0.07283613085746765, 0.016682924702763557, 0.10755392163991928,
- -0.01816062070429325, 0.11542337387800217, 0.0003154104051645845, -0.025519564747810364,
- -0.03324392810463905, 0.015242177061736584, -0.027081260457634926, 0.006568994373083115,
- -0.4696831703186035, -0.02972278743982315, 0.12497910857200623, -0.01880529895424843,
- 0.043828170746564865, 0.11179784685373306, 0.046701669692993164, -0.07091598957777023,
- 0.05786876007914543, -0.0996931791305542, 0.1531480997800827, 0.007806291338056326,
- 0.07336177676916122, -0.11132892966270447, -0.02832670696079731, 0.07282236218452454,
- -0.06926541775465012, -0.05514267086982727, 0.005469990894198418, -0.23731978237628937,
- -0.012905746698379517, -0.08440902084112167, 0.16231927275657654, 0.11968792229890823,
- 0.052297696471214294, 0.09089598804712296, -0.06097394600510597, -0.03573803976178169,
- 0.04068940505385399, -0.0026736229192465544, 0.06250869482755661, 0.03547799587249756,
- -0.028407439589500427, 0.0603942908346653, 0.025669872760772705, 0.05777183547616005,
- -0.011304882355034351, 11.909499168395996, 0.020861446857452393, 0.063269704580307,
- -0.0356987901031971, -0.0007688819314353168, -0.06756823509931564, 0.028777822852134705,
- -0.08280203491449356, 0.03967094048857689, 0.11328592896461487, -0.015174905769526958,
- -0.03104291670024395, -0.061745669692754745, -0.019854268059134483,
- -0.021117204800248146, 0.0030467642936855555, -0.02774120308458805,
- 0.007925068028271198, 0.03043496608734131, -0.023754969239234924, 0.0002391890884609893,
- -0.036245349794626236, 0.06342151761054993, -0.008779981173574924, -0.0635727271437645,
- 0.047327566891908646, -0.02585100196301937, 0.0014287205412983894, 0.04792041704058647,
- 0.034848716109991074, -0.06318969279527664, 0.007816692814230919, 0.058804064989089966,
- 0.05944417044520378, 0.004641152452677488, 0.01501487661153078, 0.06100025400519371,
- 0.04102102294564247, -0.005557177122682333, 0.0071990652941167355, 0.014545685611665249,
- 0.013198311440646648, -0.0037864232435822487, 0.06541075557470322, 0.06678560376167297,
- 0.0484144389629364, 0.020339591428637505, 0.07632149755954742, 0.040325015783309937,
- 0.05816038325428963, 0.05928703024983406, -0.010395031422376633, 0.09016595035791397,
- 0.05121977999806404, -0.006564537528902292, 0.041198212653398514, 0.008712229318916798,
- -0.07847163826227188, 0.07612361758947372, 0.14044196903705597, -0.03609975799918175,
- 0.08403093367815018, 0.03930337354540825, 0.05835392698645592, 0.05627937614917755,
- 0.043636854737997055, 0.08761030435562134, 0.0637768805027008, -0.179851695895195,
- -0.0025678537786006927, 0.04957689717411995, -0.08147745579481125,
- -0.041085563600063324, 0.035705145448446274, -0.020172374323010445,
- -0.06716904044151306, 0.09295567870140076, -0.03000698797404766, 0.03762224316596985,
- -0.02657942660152912, -0.003679206594824791, 0.03318427503108978, 0.029253527522087097,
- -0.036484722048044205, 0.001779906451702118, 0.012396718375384808, 0.051183443516492844,
- 0.15127229690551758, 0.008517188020050526, -0.007357349153608084, -0.06317688524723053,
- 0.07469657808542252, 0.0016190484166145325, -0.031771399080753326,
- 0.0047598653472959995, -0.08675909042358398, -0.07384396344423294, -0.12731483578681946,
- 0.048907291144132614, 0.10495692491531372, -0.07236521691083908, -0.029095463454723358,
- -0.04477686807513237, 0.11921777576208115, -0.022707557305693626, 0.02334185503423214,
- -0.03433450311422348, 0.05550440028309822, -0.005733055528253317, 0.024910734966397285,
- -0.10464668273925781, 0.14512141048908234, -0.026358043774962425, -0.025344118475914,
- 0.07475490123033524, 0.06033782288432121, -0.025326134636998177, -0.0431416817009449,
- 0.02459896355867386, 0.023815879598259926, -0.13977757096290588, 0.004388408735394478,
- -0.014560853131115437, -0.016917135566473007, 0.022397063672542572,
- -0.011859928257763386, -0.014952202327549458, -0.02267938293516636,
- -0.02798609994351864, -0.029710061848163605, -0.010127242654561996,
- 0.032324086874723434, 0.0752108097076416, 0.010685037821531296, 0.001592011540196836,
- -0.06481689214706421, -0.06762776523828506, 0.03977357968688011, 0.06943712383508682,
- 0.08211114257574081, 0.009505769237875938, 0.03252798318862915, -0.062099892646074295,
- -0.12672536075115204, 0.0045710401609539986, 0.1341589242219925, 0.09412765502929688,
- 0.03809578716754913, 0.04818728566169739, -0.027074353769421577, -0.003866729559376836,
- 0.08758357912302017, 0.019255369901657104, 0.01043569203466177, 0.007891088724136353,
- -0.047205615788698196, -0.018726369366049767, 0.08588316291570663, -0.03089340589940548,
- -0.0010182572295889258, 0.051496315747499466, -0.26492780447006226,
- 0.025083499029278755, 0.010355706326663494, -0.012649144977331161,
- -0.0015310136368498206, 0.07174991816282272, 0.026808366179466248, 0.048953086137771606,
- 0.0017812004080042243, -0.0009846611646935344, -0.04132644832134247,
- -0.05838030204176903, -0.06377830356359482, 0.053078699856996536, 0.1075829267501831,
- 0.06623227149248123, -0.13894380629062653, -0.03074333630502224, -0.009440562687814236
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 354,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 310,
- "similarity": 0.9955921173095703
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 305,
- "similarity": 0.995070219039917
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 254,
- "similarity": 0.994998037815094
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Ekker Advocatuur"],
- "epoch_date_downloaded": 1663545600,
- "epoch_date_modified": 1665273600,
- "epoch_date_submitted": 1663545600,
- "flag": null,
- "report_number": 2080,
- "source_domain": "ekker.legal",
- "submitters": ["Khoa Lam"],
- "title": "Application Pursuant to Art. 15(1) GDPR and Art. 35(1) UAVG",
- "url": "https://ekker.legal/wp-content/uploads/2020/07/Court-application-Uber.pdf"
- },
- {
- "__typename": "Report",
- "authors": ["Anton Ekker"],
- "epoch_date_downloaded": 1663545600,
- "epoch_date_modified": 1665273600,
- "epoch_date_submitted": 1663545600,
- "flag": null,
- "report_number": 2079,
- "source_domain": "ekker.legal",
- "submitters": ["Khoa Lam"],
- "title": "Uber drivers demand access to their personal data",
- "url": "https://ekker.legal/en/2020/07/19/uber-drivers-demand-access-to-their-personal-data/"
- },
- {
- "__typename": "Report",
- "authors": ["App Drivers and Couriers Union"],
- "epoch_date_downloaded": 1663545600,
- "epoch_date_modified": 1665273600,
- "epoch_date_submitted": 1663545600,
- "flag": null,
- "report_number": 2078,
- "source_domain": "adcu.org.uk",
- "submitters": ["Khoa Lam"],
- "title": "Uber Drivers Take Unprecedented International Legal Action to Demand Their Data",
- "url": "https://www.adcu.org.uk/news-posts/uber-drivers-take-unprecedented-international-legal-action-to-demand-their-data"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "uber",
- "name": "Uber"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "uber",
- "name": "Uber"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "uber-drivers",
- "name": "Uber drivers"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [2083, 2082, 2081],
- "vector": [
- -0.01223091408610344, 0.06980321556329727, 0.008992872200906277, -0.10795976966619492,
- -0.004674835596233606, -0.050369393080472946, 0.02746918611228466, 0.06699440628290176,
- 0.08624697476625443, -0.09521978348493576, -0.0011620819568634033, 0.01703028380870819,
- 0.038044076412916183, -0.026638587936758995, 0.05390697717666626, -0.10203402489423752,
- -0.10359764099121094, 0.020759111270308495, -0.02657151222229004, -0.06638983637094498,
- -0.10131395608186722, 0.00393499294295907, 0.06505095213651657, 0.1539323776960373,
- -0.058076635003089905, 0.08215435594320297, 0.11097805947065353, 0.11631515622138977,
- 0.00433135312050581, 0.08776801079511642, -0.02298126183450222, -0.034781038761138916,
- 0.137839674949646, 0.014381109736859798, -0.004833402577787638, 0.09217903017997742,
- 0.012674183584749699, -0.04707863926887512, -0.011294702999293804, -0.03738604485988617,
- 0.09537754207849503, 0.212168887257576, -0.032588548958301544, 0.01145918294787407,
- 0.018044741824269295, -0.02369106374680996, 0.03931323066353798, 0.056080687791109085,
- -0.005834958050400019, 0.011338766664266586, -0.01333781611174345, 0.038120582699775696,
- -0.019480302929878235, 0.0364292711019516, -0.07578247785568237, 0.024320796132087708,
- 0.03602507337927818, 0.04993274435400963, 0.031183158978819847, -0.09191233664751053,
- 0.06555404514074326, -0.1500576287508011, -0.11867314577102661, -0.0490889810025692,
- 0.06738802045583725, -0.07864442467689514, -0.05689341202378273, 0.02467525564134121,
- -0.009040034376084805, 0.09024101495742798, 0.01963048428297043, -0.019654089584946632,
- 0.019297262653708458, -0.039341896772384644, 0.032657016068696976,
- -0.009973946958780289, -0.0020562808495014906, 0.2000674456357956, -0.0831800103187561,
- 0.017646001651883125, 0.09914588183164597, -0.1360183209180832, 0.3530099093914032,
- 0.03685936704277992, -0.020572084933519363, -0.013291589915752411, 0.07728420943021774,
- 0.08456691354513168, 0.05018119141459465, 0.05432033911347389, -0.002732733963057399,
- 0.018431909382343292, -0.045665889978408813, -0.017057834193110466,
- 0.040823210030794144, 0.010538671165704727, -0.022354433313012123,
- -0.021677203476428986, -0.041382621973752975, -0.058027565479278564,
- 0.006496742367744446, -0.02926638163626194, 0.08146048337221146, 0.12599772214889526,
- -0.05485177040100098, -0.025124957785010338, 0.09138066321611404, -0.004624120891094208,
- 0.03076738677918911, -0.029775230213999748, 0.04640236496925354, 0.08183524012565613,
- 0.08118822425603867, 0.04157450050115585, 0.04716211557388306, -0.04930199682712555,
- -0.018970077857375145, 0.05255323648452759, 0.056293461471796036, 0.04707993566989899,
- 0.008832501247525215, 0.0842273011803627, 0.06304504722356796, -0.01519125234335661,
- 0.05204465985298157, -0.011930346488952637, -0.05189450457692146, -0.013206475414335728,
- -0.037071000784635544, 0.03364182636141777, -0.04706108942627907, -0.18692946434020996,
- -0.01535386685281992, 0.09463360160589218, 0.02904348634183407, -0.022268110886216164,
- -0.02351086400449276, -0.011503254063427448, 0.07208555191755295, -0.02799100987613201,
- -0.036293353885412216, 0.05652037262916565, 0.01767176203429699, 0.042569711804389954,
- 0.11916059255599976, 0.034572865813970566, -0.07313438504934311, -0.04071103408932686,
- -0.029447173699736595, -0.07474968582391739, 0.10415627807378769, -0.11506593227386475,
- -0.058813195675611496, 0.042993638664484024, -0.03127177804708481, 0.643139123916626,
- 0.07894127815961838, 0.1636999249458313, -0.013067375868558884, -0.0307163093239069,
- 0.1595863699913025, 0.018662093207240105, 0.09617183357477188, -0.03121623955667019,
- -0.06796145439147949, 0.05892905592918396, -0.10919221490621567, -0.053823262453079224,
- 0.009743531234562397, 0.037375789135694504, 0.11370771378278732, 0.024686433374881744,
- 0.060710299760103226, -0.023470789194107056, -0.045564357191324234,
- -0.008130713365972042, 0.04292477294802666, 0.008091925643384457, -0.13275164365768433,
- -0.026928173378109932, 0.043607041239738464, 0.10011401027441025, -0.09554561972618103,
- 0.0510922335088253, -0.05565148964524269, 0.03239237144589424, -0.0007181344553828239,
- 0.03322305157780647, -0.015603888779878616, 0.056924059987068176, -0.0136712109670043,
- 0.06809850037097931, 0.008569045923650265, -0.06993546336889267, -0.026715338230133057,
- 0.13253192603588104, 0.029134221374988556, 0.010922260582447052, 0.08600958436727524,
- -0.08048702031373978, 0.05360867455601692, 0.0322466678917408, 0.09255513548851013,
- -0.1390451043844223, 0.006266218144446611, -0.019575349986553192, -0.01855621300637722,
- 0.06541567295789719, -0.01478517521172762, -0.09875121712684631, -0.08344286680221558,
- 0.010010938160121441, 0.04533877596259117, 0.03547915443778038, 0.03068568743765354,
- -0.026979029178619385, 0.04331125319004059, 0.0573713518679142, 0.04179329797625542,
- -0.045798271894454956, 0.04951705038547516, 0.055106271058321, -0.04367035627365112,
- 0.00738793658092618, 0.05524931848049164, 0.018335439264774323, -0.0067228595726192,
- -0.005988708231598139, 0.08432361483573914, -0.012279798276722431, -0.05256183072924614,
- 0.01341764722019434, 0.03334057703614235, -0.04972602054476738, 0.09865116328001022,
- -0.06695869565010071, -0.015869954600930214, -0.01544768363237381,
- -0.020473534241318703, 0.0496111698448658, 0.010188360698521137, 0.0420466810464859,
- 0.08298366516828537, 0.031834762543439865, -0.0064633493311703205, 0.05094233527779579,
- 0.027204781770706177, 0.045905064791440964, 0.05672904849052429, 0.058949634432792664,
- -0.019072167575359344, -0.0221059862524271, -0.029754363000392914, 0.01412010658532381,
- 0.04234503582119942, 0.05077158287167549, -0.08162316679954529, 0.005375718232244253,
- -0.019643312320113182, -0.06469988822937012, -0.06239212676882744, -0.0569891519844532,
- -0.029555706307291985, -0.010641556233167648, -0.030207889154553413,
- -0.09311676770448685, -0.07730621844530106, 0.010910660959780216, 0.01029603648930788,
- -0.04083641245961189, -0.025944596156477928, -0.10743532329797745,
- -0.008970588445663452, 0.0023702667094767094, 0.044941049069166183,
- -0.022495394572615623, 0.013199918903410435, 0.026516223326325417,
- -0.035785358399152756, 0.007987524382770061, -0.000935371732339263,
- -0.04083846136927605, -0.041295718401670456, -0.04455878213047981, -0.05341436341404915,
- 0.047308292239904404, 0.038867879658937454, -0.05820168927311897, 0.010024252347648144,
- 0.0690641924738884, 0.031987544149160385, -0.016266092658042908, -0.021366385743021965,
- 0.06735383719205856, -0.04077082499861717, 0.022164205089211464, 0.06788386404514313,
- -0.044780194759368896, 0.01910243183374405, 0.029078403487801552, -0.03441832587122917,
- -0.05891849100589752, -0.00046852105879224837, -0.06852660328149796,
- -0.004517580848187208, -0.02032223343849182, 0.032444775104522705, -0.03889738395810127,
- -0.03732774779200554, 0.06370186060667038, -0.09676667302846909, -0.058180853724479675,
- -0.08757283538579941, 0.0983918234705925, 0.029753580689430237, -0.019348256289958954,
- 0.005153880920261145, -0.02617976814508438, 0.01606047712266445, -0.002664997009560466,
- 0.022796818986535072, 0.08663245290517807, -0.00856318324804306, -0.025876035913825035,
- -0.013072841800749302, 0.0520966611802578, 0.03511371091008186, -0.011691699735820293,
- 0.09558028727769852, 0.404983788728714, -0.10524273663759232, 0.07811849564313889,
- 0.06548669189214706, 0.018943672999739647, 0.04907117411494255, 0.00896193366497755,
- 0.07612594962120056, 0.08899322897195816, 0.09867709875106812, 0.15874619781970978,
- -0.045948002487421036, -0.0418621189892292, -0.07237669825553894, 0.07357589155435562,
- -0.0011238233419135213, 0.005670446436852217, -0.0007391221006400883,
- -0.08080801367759705, -0.046135589480400085, -0.0023329586256295443,
- -0.055852826684713364, 0.034559622406959534, 0.004158129449933767, -0.0897226557135582,
- 0.03277527913451195, 0.048801202327013016, 0.021167613565921783, -0.008244650438427925,
- 0.08615464717149734, -0.04713199660181999, 0.04963165521621704, -0.009330240078270435,
- 0.05649849399924278, -0.08007699251174927, 0.037802670150995255, -0.10225174576044083,
- -0.08712079375982285, 0.092910997569561, 0.011883814819157124, 0.06447017192840576,
- 0.022299841046333313, -0.024737128987908363, 0.06484486907720566, -0.05355286970734596,
- -0.06399480998516083, 0.0028412591200321913, 0.019301746040582657, 0.07239068299531937,
- 0.09305235743522644, 0.14866718649864197, -0.02245178259909153, -0.0426272451877594,
- -0.0870213508605957, 0.01613222435116768, 0.13857148587703705, -0.0014386102557182312,
- -0.0050650364719331264, 0.03470151498913765, -0.04100146144628525,
- -0.013735813088715076, -0.027120118960738182, -0.09955623000860214, 0.04398047924041748,
- -0.06026751175522804, 0.07287728786468506, -0.019323313608765602, -0.0565202534198761,
- -0.10163678973913193, -0.04512800648808479, -0.051331717520952225,
- -0.028414616361260414, 0.10202052444219589, -0.043002981692552567, 0.04067109897732735,
- -0.034168075770139694, 0.03296172246336937, 0.05278708413243294, -0.08671296387910843,
- 0.010736039839684963, -0.04855191707611084, 0.05776471272110939, 0.02623678930103779,
- 0.07068240642547607, -0.0016396259889006615, 0.040516722947359085, -0.10660392045974731,
- 0.0782928317785263, 0.07289054244756699, -0.07124532759189606, 0.06406834721565247,
- -0.035131264477968216, 0.040171410888433456, 0.03970995917916298, -0.025965027511119843,
- 0.011372879147529602, -0.044255953282117844, -0.018111931160092354,
- -0.11732063442468643, -0.05651989206671715, -0.059431061148643494, -0.08261704444885254,
- 0.06491748243570328, -0.02829412929713726, -0.04082685336470604, 0.018197478726506233,
- 0.00811035092920065, 0.02768026292324066, 0.035998422652482986, 0.01931805908679962,
- -0.15382494032382965, -0.013235296122729778, 0.011026705615222454, 0.044210031628608704,
- -0.06430252641439438, -0.06224222481250763, 0.016113443300127983, 0.0411655455827713,
- 0.043577346950769424, -0.03461591899394989, -0.018995439633727074, -0.05049462243914604,
- 0.06202925369143486, -0.09094592183828354, -0.3924194276332855, 0.04037218913435936,
- -0.03981957584619522, 0.03154407814145088, 0.017950506880879402, -0.06286751478910446,
- 0.04905838146805763, 0.03777138516306877, -0.03142542764544487, 0.06220639869570732,
- -0.04277871176600456, 0.02716345153748989, -0.000013881052836950403,
- -0.06700963526964188, 0.01150946319103241, -0.08030999451875687, -0.07302726060152054,
- 0.05742957815527916, -0.01767275296151638, -0.10812512785196304, -0.07534121721982956,
- -0.0005738182808272541, -0.01458952110260725, 0.04964372515678406, 0.009598233737051487,
- -0.00102117785718292, -0.08946624398231506, -0.01731201820075512, 0.027380796149373055,
- 0.024028731510043144, -0.015333053655922413, -0.047735586762428284, 0.05563654378056526,
- 0.09632015973329544, -0.023627035319805145, 0.12409677356481552, 0.03519755229353905,
- -0.02227022498846054, -0.06211651861667633, 0.08781581372022629, 0.05993269383907318,
- 0.18622104823589325, 0.016368046402931213, -0.0028655603528022766,
- 0.0009231262956745923, 0.12451014667749405, 0.017261037603020668, 0.04805508255958557,
- -0.05883347988128662, 0.003055927576497197, 0.022934362292289734, 0.01740424521267414,
- 0.11934950202703476, -0.0593290738761425, -0.01362926047295332, -0.047910477966070175,
- 0.002868437208235264, -0.049973178654909134, -0.05090484395623207, 0.1812451034784317,
- 0.022274358198046684, 0.015391942113637924, -0.006975893396884203, -0.09966006875038147,
- -0.001189269358292222, -0.09552273899316788, -0.12896136939525604, -0.02055872045457363,
- 0.008684459142386913, 0.03352188691496849, -0.05908234044909477, -0.11656177043914795,
- -0.00991916749626398, 0.00601506931707263, 0.01153727900236845, 0.10033797472715378,
- -0.01865014247596264, 0.05303823575377464, -0.05047216638922691, 0.11646877974271774,
- 0.04341023042798042, 0.044938165694475174, 0.01594499684870243, 0.08995091915130615,
- 0.016195794567465782, -0.042373571544885635, -0.07845953106880188, -0.0537789948284626,
- 0.01271145697683096, 0.10888013243675232, -0.0420876182615757, 0.11044687032699585,
- 0.018788853660225868, -0.04844151809811592, -0.04693848267197609, 0.009663371369242668,
- 0.007804980967193842, 0.028654640540480614, -0.4218459129333496, -0.05485299229621887,
- 0.13330690562725067, -0.024857059121131897, 0.028956100344657898, 0.09535107761621475,
- 0.0068777091801166534, -0.06794077903032303, -0.020554831251502037, -0.0851820781826973,
- 0.15383432805538177, -0.010330610908567905, 0.07259499281644821, -0.1325109601020813,
- -0.0017488073790445924, 0.10050160437822342, -0.06583890318870544,
- -0.026393050327897072, 0.044457580894231796, -0.3149377107620239, -0.01742994785308838,
- -0.07840686291456223, 0.1017628088593483, 0.07156407833099365, 0.06793995946645737,
- 0.10249019414186478, -0.05504238232970238, -0.017053989693522453, 0.05347856879234314,
- -0.02012009173631668, 0.039762940257787704, 0.009306824766099453, -0.023572901263833046,
- 0.07320600003004074, 0.03054756484925747, 0.06856999546289444, -0.022512471303343773,
- 11.973526954650879, 0.07866444438695908, 0.06904008984565735, -0.07388301938772202,
- 0.01921745017170906, -0.041473016142845154, 0.02718830108642578, -0.06076860427856445,
- 0.00011842542880913243, 0.10037077218294144, -0.014203093014657497,
- -0.04788723960518837, -0.017477722838521004, -0.06706822663545609,
- -0.0018463280284777284, -0.015266855247318745, -0.0557636134326458,
- 0.005786960478872061, 0.06644643098115921, -0.038261111825704575, 0.016747357323765755,
- -0.003484284272417426, 0.057428717613220215, 0.013430655002593994, -0.06362989544868469,
- 0.04114268347620964, 0.022812264040112495, 0.038294289261102676, 0.042480915784835815,
- 0.04158583655953407, -0.04074527695775032, 0.028313880786299706, 0.056325118988752365,
- 0.03414694592356682, 0.005345209036022425, 0.029187964275479317, 0.07852592319250107,
- 0.058616798371076584, 0.027593085542321205, 0.041358400136232376, 0.011070728302001953,
- 0.035783153027296066, 0.01899862475693226, 0.08276540786027908, 0.06670691817998886,
- 0.026528852060437202, 0.006104504223912954, 0.05363800749182701, -0.0032213113736361265,
- 0.030859405174851418, 0.08219602704048157, 0.009025982581079006, 0.09817752987146378,
- 0.015830518677830696, -0.021621862426400185, 0.04976966977119446, -0.020714005455374718,
- -0.05768853798508644, 0.06400151550769806, 0.08685115724802017, -0.055972445756196976,
- 0.0995333194732666, 0.03919856250286102, 0.10757387429475784, 0.011346787214279175,
- 0.05878612399101257, 0.09912966936826706, 0.07378173619508743, -0.17698363959789276,
- -0.054757893085479736, 0.04379214346408844, -0.0877881720662117, -0.05255211517214775,
- 0.038280192762613297, -0.0043916949070990086, -0.06009594723582268, 0.06043696403503418,
- -0.016653787344694138, 0.01937839202582836, -0.06052472069859505, -0.008869506418704987,
- 0.04330254718661308, 0.004544360563158989, -0.027066195383667946, 0.07197641581296921,
- 0.008464782498776913, 0.098164863884449, 0.10682357102632523, 0.01967482827603817,
- -0.04917502403259277, -0.0603996217250824, 0.11864360421895981, -0.025237686932086945,
- -0.07285117357969284, 0.028811097145080566, -0.07490000128746033, -0.0330672524869442,
- -0.14620597660541534, 0.03902366757392883, 0.1340276151895523, -0.1049576923251152,
- -0.05017787590622902, -0.042464327067136765, 0.10824813693761826, -0.007511602248996496,
- -0.030426742509007454, -0.04481317102909088, 0.04026411846280098, -0.004383822903037071,
- 0.012585252523422241, -0.10981714725494385, 0.13568075001239777, 0.04367603734135628,
- -0.04212591052055359, 0.056097496300935745, 0.05278600752353668, -0.04176458716392517,
- -0.06041469797492027, 0.010869280435144901, 0.022842084988951683, -0.1172422543168068,
- -0.03776519373059273, -0.020640861243009567, 0.019323736429214478,
- -0.0012893782695755363, -0.018663380295038223, -0.0229867622256279,
- 0.045162100344896317, -0.046927183866500854, -0.00904995109885931,
- 0.0024581782054156065, 0.024521611630916595, 0.05694116652011871, 0.007219335529953241,
- 0.049861203879117966, -0.07006561011075974, -0.03083893656730652, 0.030566269531846046,
- 0.03331465646624565, 0.0549301840364933, -0.02959672175347805, -0.023936597630381584,
- -0.04004336893558502, -0.1364208459854126, 0.012896313332021236, 0.09273932129144669,
- 0.019615696743130684, -0.00486789969727397, 0.01333799958229065, -0.05664409324526787,
- -0.06787429004907608, 0.08630876988172531, 0.01808108575642109, 0.02346429042518139,
- 0.05542662739753723, -0.09335565567016602, -0.012427092529833317, 0.1425541192293167,
- -0.030841657891869545, 0.03612694516777992, 0.02367258258163929, -0.11316726356744766,
- 0.03889189660549164, 0.04669460654258728, 0.07071270793676376, 0.0015979210147634149,
- 0.08158927410840988, 0.021468525752425194, 0.04393339157104492, -0.0019919259939342737,
- -0.01041985023766756, -0.03627143055200577, -0.07220349460840225, -0.0734848752617836,
- 0.03188357129693031, 0.09192177653312683, 0.058918654918670654, -0.07811861485242844,
- -0.01053661946207285, -0.05686187744140625
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 355,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 127,
- "similarity": 0.9968854784965515
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 309,
- "similarity": 0.9968570470809937
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 206,
- "similarity": 0.9967479705810547
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Natasha Lomas"],
- "epoch_date_downloaded": 1663545600,
- "epoch_date_modified": 1665273600,
- "epoch_date_submitted": 1663545600,
- "flag": null,
- "report_number": 2083,
- "source_domain": "techcrunch.com",
- "submitters": ["Srishti Khemka (CSET)"],
- "title": "UK Uber drivers are taking the algorithm to court",
- "url": "https://techcrunch.com/2020/07/20/uk-uber-drivers-are-taking-its-algorithm-to-court"
- },
- {
- "__typename": "Report",
- "authors": ["Delphine Strauss", " Siddharth Venkataramakrishnan"],
- "epoch_date_downloaded": 1663545600,
- "epoch_date_modified": 1665273600,
- "epoch_date_submitted": 1663545600,
- "flag": null,
- "report_number": 2082,
- "source_domain": "ft.com",
- "submitters": ["Khoa Lam"],
- "title": "Dutch court rulings break new ground on gig worker data rights",
- "url": "https://www.ft.com/content/334d1ca5-26af-40c7-a9c5-c76e3e57fba1"
- },
- {
- "__typename": "Report",
- "authors": ["App Drivers and Couriers Union"],
- "epoch_date_downloaded": 1663545600,
- "epoch_date_modified": 1665273600,
- "epoch_date_submitted": 1663545600,
- "flag": null,
- "report_number": 2081,
- "source_domain": "adcu.org.uk",
- "submitters": ["Khoa Lam"],
- "title": "App Drivers \u0026 Couriers Union files ground-breaking legal challenge against Uber’s dismissal of drivers by algorithm in the UK and Portugal",
- "url": "https://www.adcu.org.uk/news-posts/app-drivers-couriers-union-files-ground-breaking-legal-challenge-against-ubers-dismissal-of-drivers-by-algorithm-in-the-uk-and-portugal"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "murat-ayfer",
- "name": "Murat Ayfer"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "openai",
- "name": "OpenAI"
- },
- {
- "__typename": "Entity",
- "entity_id": "murat-ayfer",
- "name": "Murat Ayfer"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "historically-disadvantaged-groups",
- "name": "historically disadvantaged groups"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [106, 13],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [2085, 2084],
- "vector": [
- -0.08955655246973038, 0.04937565326690674, -0.010103595443069935, -0.07696352899074554,
- 0.09014640003442764, -0.06752107292413712, 0.009878264740109444, 0.042578186839818954,
- 0.07715814560651779, -0.15432648360729218, -0.013994943350553513, 0.05464279651641846,
- 0.05614593252539635, -0.030550597235560417, 0.029622510075569153, -0.026250168681144714,
- -0.08837585151195526, -0.02546858787536621, -0.000601923675276339, -0.11927349865436554,
- -0.09823034703731537, 0.009575948119163513, 0.009655453264713287, 0.10551908612251282,
- -0.002033472526818514, 0.027986081317067146, 0.10323699563741684, 0.10525806993246078,
- -0.08495092391967773, 0.027817225083708763, -0.037407923489809036, -0.0680251196026802,
- 0.12228675186634064, -0.026230107992887497, 0.020244546234607697, 0.09087900817394257,
- 0.06345082074403763, -0.04848412424325943, -0.011683018878102303, -0.004060138016939163,
- 0.01678043231368065, 0.1560823619365692, -0.0017367061227560043, -0.04704934358596802,
- 0.06910435110330582, -0.006889793090522289, 0.02884223684668541, 0.036210037767887115,
- -0.01167277991771698, -0.00023364409571513534, 0.027011794969439507,
- -0.027641907334327698, -0.051576774567365646, 0.058913592249155045,
- -0.06296022236347198, 0.0889047235250473, 0.01624118536710739, 0.02419796958565712,
- 0.029356738552451134, -0.06671135872602463, -0.023326000198721886, -0.10507025569677353,
- -0.05935211479663849, -0.03571504354476929, 0.08989517390727997, -0.06055966764688492,
- -0.0415472574532032, 0.007953118532896042, 0.008276302367448807, 0.024220788851380348,
- 0.05837597697973251, -0.06338070333003998, -0.005574207752943039, -0.0494396910071373,
- -0.030179893597960472, -0.018556557595729828, 0.040102358907461166, 0.18169647455215454,
- -0.10266751050949097, 0.032645031809806824, 0.08029623329639435, -0.07089598476886749,
- 0.26777902245521545, 0.03230468928813934, -0.005689370445907116, 0.005486181005835533,
- 0.09312347322702408, 0.028312748298048973, 0.030717510730028152, 0.02960575371980667,
- 0.04388740658760071, 0.06102938577532768, -0.05584769695997238, 0.012096846476197243,
- 0.063128761947155, 0.03557587414979935, 0.009357139468193054, -0.12524078786373138,
- -0.011105632409453392, -0.03343475982546806, 0.004477036185562611, -0.04272712022066116,
- 0.1384689211845398, 0.036455366760492325, -0.039217352867126465,
- -0.00024087447673082352, 0.06290512531995773, -0.0261733066290617, 0.014520508237183094,
- -0.060716044157743454, 0.01998695358633995, 0.03921414911746979, 0.04320436343550682,
- -0.01094632688909769, 0.030995585024356842, -0.043084900826215744, 0.011062590405344963,
- 0.004876825958490372, 0.060693562030792236, 0.09938181191682816, -0.000973840244114399,
- 0.05520656704902649, 0.11333397030830383, -0.04910839721560478, -0.021704623475670815,
- 0.005400010384619236, -0.024085262790322304, 0.007677353918552399,
- -0.027218908071517944, 0.015634628012776375, -0.04583047702908516, -0.21568873524665833,
- 0.025851089507341385, 0.03606204688549042, -0.00020552612841129303,
- -0.007654695771634579, -0.007576677016913891, -0.055940043181180954,
- 0.03917005658149719, 0.02744436077773571, 0.008534211665391922, 0.07565411925315857,
- 0.057848550379276276, 0.030977625399827957, 0.07914841175079346, 0.013828475959599018,
- -0.013408789411187172, -0.059846580028533936, -0.010766610503196716,
- -0.01794930174946785, 0.08753456920385361, -0.09860144555568695, -0.05355708673596382,
- 0.002763533964753151, -0.027868693694472313, 0.6070590019226074, 0.06089479476213455,
- 0.09923283010721207, -0.026911607012152672, -0.019476737827062607, 0.15103662014007568,
- 0.005601087585091591, 0.04135315865278244, -0.0533425509929657, -0.04244018718600273,
- -0.010866648517549038, -0.03265788406133652, 0.010530788451433182, 0.023517735302448273,
- 0.015326924622058868, 0.10801349580287933, 0.005303593352437019, 0.10974325984716415,
- 0.038088083267211914, -0.042112112045288086, -0.03276775777339935,
- -0.007097724825143814, 0.023307250812649727, -0.08409329503774643,
- 0.0014937053201720119, 0.030461551621556282, 0.05681592971086502, -0.04062969982624054,
- 0.005310135427862406, -0.044698286801576614, 0.060280054807662964, -0.0237430352717638,
- 0.0038770101964473724, 0.00715186633169651, 0.022386198863387108, 0.05612289533019066,
- 0.07140295207500458, -0.03864336013793945, -0.06364259123802185, -0.04129865765571594,
- 0.10854695737361908, -0.02186964824795723, -0.02861718088388443, 0.07022333145141602,
- -0.07218103110790253, 0.02393648587167263, 0.0024375319480895996, 0.14849212765693665,
- -0.10245518386363983, 0.06052010506391525, -0.012836018577218056, 0.0009062192402780056,
- 0.030499696731567383, -0.005943939555436373, -0.052284225821495056,
- -0.08624620735645294, 0.060004837810993195, 0.042732127010822296, 0.06391678005456924,
- 0.03193158656358719, -0.01747765764594078, 0.031191229820251465, -0.028195137158036232,
- 0.006767788901925087, -0.09471434354782104, 0.07922416925430298, 0.038512907922267914,
- -0.0474947951734066, -0.03717629611492157, 0.024212732911109924, 0.04506625980138779,
- 0.05378808453679085, 0.015540865249931812, 0.035217512398958206, -0.006505743600428104,
- 0.011449026875197887, 0.05067062005400658, 0.05347524583339691, 0.0432296060025692,
- 0.05486813187599182, -0.11369120329618454, -0.0622967965900898, -0.045461155474185944,
- -0.037941910326480865, -0.0062746452167630196, -0.06834815442562103,
- 0.061523646116256714, 0.05230487510561943, 0.05368390679359436, 0.007760185748338699,
- 0.03492571413516998, 0.03601453825831413, 0.0345669761300087, -0.0038618426769971848,
- 0.06908423453569412, -0.03930218890309334, 0.020380834117531776, -0.026781219989061356,
- -0.009004054591059685, 0.040512971580028534, -0.007426158059388399,
- -0.04515870288014412, -0.009329480119049549, -0.004040924832224846, -0.0425996296107769,
- -0.06798563152551651, -0.02004639431834221, 0.016622111201286316, 0.02494758553802967,
- -0.08436533063650131, -0.10057592391967773, -0.049159131944179535,
- -0.0003379403497092426, 0.06565867364406586, -0.032055534422397614,
- -0.014521654695272446, -0.08943790942430496, 0.030785415321588516, 0.003444467671215534,
- 0.031206931918859482, -0.010001542046666145, -0.024564780294895172,
- -0.04933574050664902, -0.09685483574867249, -0.023393478244543076, 0.0460473969578743,
- -0.030373727902770042, 0.002169332467019558, -0.037784647196531296,
- -0.029203902930021286, -0.02186203934252262, -0.019331494346261024,
- -0.013545690104365349, 0.020556816831231117, 0.050947654992341995, 0.03795808553695679,
- -0.021325865760445595, 0.0037898514419794083, 0.028111513704061508,
- -0.03076399862766266, 0.008275624364614487, 0.05562813580036163, -0.005784537643194199,
- 0.04354435205459595, -0.013413875363767147, -0.049933772534132004, -0.06870780885219574,
- -0.03514256328344345, -0.04268672317266464, 0.050178736448287964, -0.055966816842556,
- -0.0039924816228449345, 0.001024040044285357, -0.008883758448064327,
- 0.02622331865131855, -0.057581204921007156, -0.07392923533916473, -0.09518004208803177,
- 0.11457055807113647, -0.009002229198813438, -0.0067938510328531265, 0.02480647899210453,
- -0.03145693987607956, 0.05759591609239578, 0.029076330363750458, 0.02693837136030197,
- 0.05347786098718643, 0.07558494806289673, -0.0056475489400327206, 0.050163596868515015,
- 0.058370959013700485, 0.02155335620045662, 0.00012463144958019257, 0.07858140766620636,
- 0.3863590955734253, -0.18040546774864197, 0.059067822992801666, 0.061705317348241806,
- 0.0254865400493145, 0.05368448421359062, -0.02989370934665203, 0.054225027561187744,
- 0.020679568871855736, 0.07905445247888565, 0.11769561469554901, -0.045616310089826584,
- 0.004781519994139671, -0.045158278197050095, 0.045334313064813614, 0.00486989738419652,
- 0.010342404246330261, -0.008956593461334705, -0.02980031445622444,
- 0.0025194399058818817, 0.05190557613968849, -0.05036940798163414, 0.00723792752251029,
- -0.030876753851771355, -0.07153168320655823, 0.006898820865899324, 0.08340325951576233,
- 0.03889261931180954, -0.01852564699947834, 0.033768463879823685, -0.027534708380699158,
- 0.019268792122602463, 0.0400853231549263, 0.05543069541454315, -0.09237456321716309,
- 0.07866843789815903, -0.07264013588428497, -0.11004766821861267, 0.04305512458086014,
- 0.01376489270478487, 0.06446976959705353, 0.05151869356632233, 0.03242024779319763,
- 0.03976258635520935, -0.03409904986619949, -0.01215315330773592, -0.01071806438267231,
- 0.024692775681614876, 0.005311515647917986, 0.026324540376663208, 0.12855985760688782,
- 0.006549990735948086, 0.008981725201010704, -0.05107913911342621, 0.0528159961104393,
- 0.10474392771720886, -0.0384058877825737, 0.018078917637467384, 0.02763725072145462,
- 0.027432197704911232, 0.01293866615742445, -0.017182286828756332, -0.07993249595165253,
- -0.01387873850762844, -0.0632227435708046, 0.05919119343161583, 0.054390422999858856,
- -0.04540432244539261, -0.1666593700647354, -0.08668611943721771, -0.04162343591451645,
- 0.037476032972335815, 0.1158270537853241, -0.0732758492231369, -0.008026751689612865,
- 0.050724707543849945, 0.02121283859014511, -0.03348393365740776, -0.07622954249382019,
- -0.01189350988715887, -0.08635503798723221, 0.02804488316178322, 0.05075879395008087,
- 0.06131521239876747, -0.029201524332165718, 0.021546656265854836, -0.07570987939834595,
- 0.04162248224020004, -0.0009259823709726334, -0.02458849921822548, 0.018597375601530075,
- -0.0345202311873436, 0.02779146283864975, -0.007706489879637957, -0.032545313239097595,
- -0.018176225945353508, -0.04773513600230217, -0.047169461846351624, -0.0552440881729126,
- -0.0925358384847641, -0.014273064211010933, -0.04592207446694374, 0.0920562744140625,
- -0.06543111801147461, -0.027506442740559578, -0.062405064702034, -0.019224654883146286,
- -0.012682677246630192, 0.04807549715042114, -0.023814061656594276, -0.10220617055892944,
- -0.04534916579723358, -0.014274233020842075, 0.020897313952445984,
- -0.017031308263540268, -0.07673271000385284, -0.01389432791620493, 0.040557678788900375,
- 0.005740586668252945, -0.0745040774345398, -0.014283566735684872, -0.052893273532390594,
- 0.09050481021404266, -0.08740869164466858, -0.4942814111709595, 0.09856224060058594,
- 0.06873980164527893, 0.044450387358665466, -0.010274170897901058, -0.03830471634864807,
- 0.022508367896080017, 0.029748115688562393, -0.012243356555700302, 0.05718156695365906,
- -0.07011359184980392, 0.01750975474715233, -0.04713183268904686, -0.04102613404393196,
- 0.013312329538166523, -0.07480054348707199, -0.034964125603437424, 0.006368165835738182,
- -0.008526721969246864, -0.049042850732803345, -0.06872326880693436,
- 0.0024168347008526325, -0.01745743118226528, -0.04226545989513397, -0.02721136063337326,
- -0.01796850748360157, -0.07401666045188904, -0.08185400068759918, 0.006014364771544933,
- 0.0556192547082901, -0.0002790922299027443, -0.07927937060594559, -0.013410978019237518,
- 0.019892867654561996, 0.01684301719069481, 0.07728660851716995, 0.04954472929239273,
- 0.0003806687891483307, -0.04094410687685013, 0.025657497346401215, 0.0799378901720047,
- 0.18857556581497192, -0.038135260343551636, 0.06331494450569153, 0.01903000846505165,
- 0.10675635933876038, 0.02956065908074379, 0.04225441813468933, -0.049681615084409714,
- -0.011272646486759186, 0.02724674716591835, -0.022722996771335602, 0.04744046926498413,
- -0.06379137933254242, -0.0010071182623505592, -0.004807204008102417,
- -0.031674619764089584, -0.0624052919447422, -0.011368880048394203, 0.16345860064029694,
- 0.014323181472718716, 0.0360177680850029, 0.009391662664711475, 0.002993544563651085,
- -0.0010418049059808254, -0.04854052886366844, -0.0066618537530303, -0.07588633894920349,
- -0.03218900039792061, 0.016246937215328217, -0.04372233897447586, -0.08638077974319458,
- 0.004338236525654793, 0.017846714705228806, -0.004761220421642065, 0.11682366579771042,
- -0.050901614129543304, 0.028997227549552917, -0.03099733777344227, 0.12263838201761246,
- 0.015534861013293266, 0.047431036829948425, 0.04347093775868416, 0.08870374411344528,
- 0.04440826550126076, 0.004928460344672203, -0.03815299645066261, -0.03853513300418854,
- 0.013628071174025536, 0.1523924171924591, -0.031234221532940865, 0.10480378568172455,
- 0.03967779874801636, 0.006885901093482971, -0.02513863705098629, 0.015000205487012863,
- 0.019661102443933487, -0.005281634628772736, -0.5146978497505188, -0.03838783875107765,
- 0.11949422210454941, -0.02436581626534462, 0.024645458906888962, 0.06690502166748047,
- 0.02820311300456524, 0.002450779778882861, 0.04986898601055145, -0.09556043148040771,
- 0.07840333133935928, 0.03494531661272049, 0.08473487943410873, -0.08927224576473236,
- 0.02954075112938881, 0.07766489684581757, -0.018844369798898697, -0.018394559621810913,
- 0.024947313591837883, -0.2715693414211273, -0.014165877364575863, -0.026329483836889267,
- 0.14219051599502563, 0.015672413632273674, 0.041634343564510345, 0.09082245826721191,
- -0.015153526328504086, 0.027417588979005814, 0.03168942779302597, 0.05164194479584694,
- 0.025076577439904213, 0.012482338584959507, -0.0365363173186779, 0.08082955330610275,
- 0.07683096826076508, 0.09176407009363174, 0.019595881924033165, 11.841165542602539,
- 0.02983519248664379, 0.08605532348155975, -0.0792204961180687, 0.002967607229948044,
- -0.05946120247244835, 0.029574697837233543, -0.05045361816883087, 0.057602375745773315,
- 0.13748696446418762, -0.005847702734172344, -0.054185256361961365, -0.06020177900791168,
- -0.039893846958875656, 0.02209385856986046, -0.05884474515914917, 0.007143750786781311,
- -0.025460846722126007, 0.050656139850616455, -0.041449517011642456,
- -0.04063844680786133, 0.031325362622737885, 0.07246305048465729, -0.03197319805622101,
- -0.09944179654121399, 0.046800192445516586, -0.02688705362379551, 0.022920290008187294,
- 0.007255109027028084, 0.05406525358557701, 0.029424291104078293, 0.007156709209084511,
- 0.06914281845092773, 0.018671642988920212, 0.03902370110154152, 0.09245911240577698,
- -0.005264206789433956, 0.017680330201983452, 0.06738901883363724, 0.06215858459472656,
- -0.005798272788524628, 0.03409084305167198, -0.003895969595760107, 0.05995478481054306,
- 0.03802739083766937, 0.03802447393536568, 0.0232620220631361, 0.14660115540027618,
- 0.0032111313194036484, 0.07003764063119888, 0.06554962694644928, -0.004404161591082811,
- 0.10576070845127106, 0.029810184612870216, -0.02323351614177227, 0.006705376785248518,
- 0.009571371600031853, -0.06077377125620842, 0.08300578594207764, -0.01972348801791668,
- -0.03261513262987137, 0.12604975700378418, 0.02905983291566372, 0.09691081941127777,
- 0.03407397121191025, 0.05415838956832886, 0.0561605803668499, 0.09036768972873688,
- -0.10109788179397583, -0.06392508000135422, 0.04246751591563225, -0.09132863581180573,
- -0.06375929713249207, 0.0405021496117115, 0.06662662327289581, 0.002358687110245228,
- 0.03266901895403862, -0.02707967534661293, 0.05841562896966934, -0.03624706342816353,
- 0.03347986191511154, 0.029311183840036392, -0.02968546375632286, 0.021201809868216515,
- 0.012490930035710335, 0.03365728259086609, 0.06900613009929657, 0.12120283395051956,
- 0.005567539483308792, -0.06756452471017838, -0.04715634137392044, 0.03239641338586807,
- -0.008844368159770966, -0.023308778181672096, 0.04438074678182602,
- -0.061773017048835754, -0.004725199192762375, -0.1304275393486023, 0.0851299911737442,
- 0.07523903995752335, -0.05111154541373253, -0.027690118178725243, -0.01782919652760029,
- 0.08918594568967819, -0.011373782530426979, 0.03740715608000755, -0.05992967635393143,
- -0.0157244224101305, 0.04316634684801102, 0.03903564438223839, -0.029058188199996948,
- 0.12287428230047226, 0.015829909592866898, -0.07941742241382599, 0.05564636364579201,
- 0.036362942308187485, -0.02224009856581688, 0.011788883246481419, 0.044050246477127075,
- 0.04198557883501053, -0.06621343642473221, -0.03798165172338486, -0.08245394378900528,
- -0.04905020073056221, 0.007011586334556341, -0.04230763763189316, -0.006414911709725857,
- 0.01887780800461769, -0.004915991798043251, -0.032099902629852295, 0.012034337967634201,
- 0.06199720501899719, 0.1330026239156723, 0.013897913508117199, 0.061581242829561234,
- -0.03586386516690254, -0.031978242099285126, 0.05370873212814331, 0.06494596600532532,
- 0.061154529452323914, -0.058621566742658615, -0.005297308787703514,
- -0.005211451090872288, -0.10733617842197418, 0.03702816367149353, 0.05417238920927048,
- 0.04667959362268448, 0.037423670291900635, 0.031329911202192307, -0.0331178680062294,
- -0.023165391758084297, 0.10759627819061279, 0.021229775622487068, -0.006785149686038494,
- 0.011347447521984577, -0.03470967710018158, -0.015629218891263008, 0.08575660735368729,
- -0.03253866359591484, -0.007407043129205704, 0.02461947873234749, -0.18285618722438812,
- 0.012257257476449013, 0.08669792115688324, 0.01162681169807911, 0.03226803243160248,
- 0.03202404826879501, 0.0028097883332520723, 0.0535651296377182, 0.00958491675555706,
- 0.03663568198680878, -0.045040275901556015, -0.07831786572933197, -0.07616947591304779,
- 0.01432709489017725, 0.057667989283800125, 0.11771354079246521, -0.15048040449619293,
- -0.011191065423190594, -0.023889631032943726
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 356,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Abeba Birhane"],
- "epoch_date_downloaded": 1663632000,
- "epoch_date_modified": 1665273600,
- "epoch_date_submitted": 1663632000,
- "flag": null,
- "report_number": 2085,
- "source_domain": "twitter.com",
- "submitters": ["Khoa Lam"],
- "title": "Tweet: @Abebab",
- "url": "https://twitter.com/abebab/status/1309137018404958215"
- },
- {
- "__typename": "Report",
- "authors": ["Eliza Strickland"],
- "epoch_date_downloaded": 1663632000,
- "epoch_date_modified": 1665273600,
- "epoch_date_submitted": 1663632000,
- "flag": null,
- "report_number": 2084,
- "source_domain": "spectrum.ieee.org",
- "submitters": ["Srishti Khemka (CSET)"],
- "title": "OpenAI's GPT-3 Speaks! (Kindly Disregard Toxic Language)",
- "url": "https://spectrum.ieee.org/open-ais-powerful-text-generating-tool-is-ready-for-business"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "openai",
- "name": "OpenAI"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "openai",
- "name": "OpenAI"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "people-having-personal-data-in-gpt-2's-training-data",
- "name": "people having personal data in GPT-2's training data"
- },
- {
- "__typename": "Entity",
- "entity_id": "openai",
- "name": "OpenAI"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [2088, 2087, 2086],
- "vector": [
- -0.030186474323272705, 0.06208556890487671, -0.009225796908140182, -0.03785906359553337,
- 0.06566468626260757, -0.04908568039536476, -0.013830062933266163, 0.04364120587706566,
- 0.07661270350217819, -0.1381336897611618, -0.04397627338767052, 0.04171724617481232,
- 0.014943386428058147, -0.03783421590924263, 0.007868663407862186, -0.08423981815576553,
- -0.10125920921564102, -0.03562696650624275, -0.018204735592007637, -0.10681384056806564,
- -0.09820710867643356, 0.006451455410569906, 0.00240342877805233, 0.07551795244216919,
- -0.015146342106163502, 0.0514850951731205, 0.10648230463266373, 0.11012908071279526,
- -0.10391648858785629, 0.08201903104782104, -0.022620299831032753, -0.012388922274112701,
- 0.1344338208436966, 0.029804708436131477, 0.03860459104180336, 0.07855261117219925,
- 0.028634309768676758, -0.012644453905522823, -0.027361823245882988,
- -0.0009143107454292476, 0.044538628309965134, 0.2254057675600052, -0.02392876148223877,
- -0.03943772241473198, 0.02131420373916626, -0.028439780697226524, 0.013727455399930477,
- 0.009772119112312794, -0.014584876596927643, -0.007532409857958555,
- 0.0019653725903481245, 0.007116192951798439, -0.04468395188450813, 0.05311525985598564,
- -0.08336896449327469, 0.07866746932268143, 0.029978342354297638, -0.03670119121670723,
- 0.05577903613448143, -0.10686668008565903, -0.0174837838858366, -0.14557187259197235,
- -0.040378205478191376, -0.07836303859949112, 0.08190969377756119, -0.09243294596672058,
- -0.0384557880461216, 0.054151710122823715, 0.014863409101963043, 0.023848773911595345,
- 0.021505920216441154, -0.026666507124900818, -0.035258207470178604,
- 0.012868457473814487, -0.003912511747330427, -0.05424420163035393,
- -0.010964673943817616, 0.22053425014019012, -0.08614955097436905, 0.05443128943443298,
- 0.066387839615345, -0.09642942994832993, 0.3363349139690399, 0.02006673999130726,
- -0.024050114676356316, 0.002920678583905101, 0.10695365071296692, 0.02282150648534298,
- 0.040832504630088806, 0.013896129094064236, -0.014613633044064045, 0.05908181145787239,
- -0.038792818784713745, -0.01727171801030636, 0.05605293810367584, 0.04036114737391472,
- 0.0019834942650049925, -0.10666466504335403, -0.019677843898534775,
- -0.03024050034582615, -0.011796238832175732, -0.05357276275753975, 0.10241899639368057,
- 0.05078316852450371, -0.056796442717313766, 0.021687062457203865, 0.054575663059949875,
- -0.04600892961025238, 0.03908328339457512, -0.044799160212278366, 0.02662883885204792,
- -0.01176759134978056, 0.06972315162420273, -0.019731925800442696, 0.04351361468434334,
- -0.016248900443315506, 0.047948747873306274, 0.052235398441553116, 0.06282032281160355,
- 0.06356082111597061, -0.02433623932301998, 0.06958518177270889, 0.06890539079904556,
- -0.06533098965883255, -0.0434156097471714, -0.02559584379196167, -0.028674976900219917,
- -0.0018373088678345084, -0.0032209977507591248, 0.025685086846351624,
- -0.04849667847156525, -0.25145387649536133, 0.007061657030135393, 0.043390195816755295,
- -0.0438414067029953, -0.010569382458925247, 0.010893522761762142, -0.0677376538515091,
- 0.043081510812044144, -0.0027641132473945618, 0.01828763633966446, 0.05840391293168068,
- 0.006864643190056086, 0.025179987773299217, 0.08598040789365768, 0.020403677597641945,
- -0.05081856623291969, -0.07184097170829773, -0.006894279271364212, -0.04265010729432106,
- 0.07581378519535065, -0.08075559884309769, -0.05704818293452263, -0.0038449496496468782,
- -0.004940517246723175, 0.6932785511016846, 0.10279714316129684, 0.14022581279277802,
- 0.010752499103546143, -0.026953071355819702, 0.13861902058124542, -0.007218558341264725,
- 0.08370592445135117, -0.041243039071559906, -0.01423685997724533, 0.013646564446389675,
- -0.04060043394565582, -0.04145793989300728, 0.01549751590937376, 0.05953240022063255,
- 0.11473435163497925, 0.023036716505885124, 0.0836867019534111, -0.003740129992365837,
- -0.1007217988371849, -0.020824817940592766, 0.05211620405316353, 0.02317882515490055,
- -0.11829464882612228, -0.020352592691779137, 0.0626383125782013, 0.07262396067380905,
- -0.06172952055931091, -0.012381050735712051, -0.034349311143159866, 0.06650000065565109,
- -0.031698208302259445, 0.0495554655790329, -0.005947337951511145, 0.02929936908185482,
- 0.048229340463876724, 0.046381037682294846, -0.03428065776824951, -0.08338173478841782,
- -0.019512755796313286, 0.07676639407873154, -0.006192322820425034, -0.02573719061911106,
- 0.08964544534683228, -0.07973242551088333, 0.037777457386255264, -0.03319862484931946,
- 0.14952678978443146, -0.11553772538900375, 0.009387053549289703, -0.03145973011851311,
- -0.00025160922086797655, 0.04609731212258339, 0.009014601819217205, -0.0761587992310524,
- -0.051304277032613754, 0.10008350759744644, 0.00763373589143157, 0.11257543414831161,
- 0.036737073212862015, -0.01619621366262436, 0.03873929753899574, 0.048606302589178085,
- -0.019496940076351166, -0.06718946248292923, 0.08556792885065079, 0.05835367366671562,
- -0.02818981744349003, -0.021035537123680115, 0.04970001056790352, 0.029420489445328712,
- -0.0006006297771818936, -0.005599426105618477, 0.02992427535355091,
- -0.01681782864034176, -0.029364585876464844, 0.038072455674409866, 0.045172762125730515,
- 0.038197945803403854, 0.07630927115678787, -0.10107209533452988, -0.03113490901887417,
- -0.022234352305531502, -0.05123966932296753, 0.01856829971075058, -0.00459432415664196,
- 0.047455478459596634, 0.10258746147155762, 0.04517702758312225, 0.01178000122308731,
- 0.058928295969963074, 0.04097225144505501, 0.005535029340535402, 0.017716603353619576,
- 0.02266675792634487, -0.03619623929262161, -0.03658651188015938, -0.009739802218973637,
- -0.016422977671027184, 0.045943811535835266, -0.014171388931572437,
- -0.03888832405209541, -0.0461694709956646, -0.03393610566854477, -0.04481153190135956,
- -0.08546784520149231, -0.04900479316711426, 0.015898840501904488, -0.008887063711881638,
- -0.07614629715681076, -0.07255186885595322, -0.04748803749680519, 0.02715679444372654,
- 0.08828123658895493, -0.024921685457229614, 0.00007331868255278096,
- -0.12088823318481445, 0.012265593744814396, -0.004460318014025688, 0.035737693309783936,
- 0.028855590149760246, 0.001675989362411201, 0.01345923263579607, -0.08946948498487473,
- 0.010117186233401299, 0.0005562963779084384, -0.05718624219298363,
- -0.027284711599349976, -0.07247772067785263, -0.028412675485014915,
- -0.03447499871253967, -0.014513292349874973, -0.043868232518434525,
- 0.006926973816007376, 0.07670243829488754, 0.04035854712128639, -0.030379602685570717,
- -0.050021130591630936, 0.06640729308128357, -0.02479453571140766, 0.0015050718793645501,
- 0.10471272468566895, -0.04720011726021767, 0.034818995743989944, 0.013721601106226444,
- -0.08848194032907486, -0.05808806046843529, -0.03225570172071457, -0.025982104241847992,
- 0.0415303073823452, -0.02893597073853016, 0.013345364481210709, -0.02922721393406391,
- -0.00970435794442892, 0.028824523091316223, -0.05666941776871681, -0.06577011942863464,
- -0.07510609924793243, 0.13187099993228912, -0.022653544321656227, 0.005579542834311724,
- 0.039214834570884705, -0.015017185360193253, 0.052573639899492264, 0.006567868869751692,
- 0.009476850740611553, 0.049271564930677414, 0.06997153908014297, 0.002852650359272957,
- 0.05708533525466919, 0.07625174522399902, -0.0026762692723423243,
- -0.0024318706709891558, 0.08694013953208923, 0.41499778628349304, -0.1085481271147728,
- 0.08738920092582703, 0.0993751659989357, -0.0204316396266222, 0.042692769318819046,
- -0.06302694231271744, 0.05354456976056099, 0.07329133152961731, 0.1182493194937706,
- 0.10854553431272507, -0.018656687811017036, 0.02892114408314228, -0.050782281905412674,
- 0.09655787795782089, 0.001660082838498056, 0.026002472266554832, 0.007737028878182173,
- -0.0797654464840889, -0.007462853100150824, 0.01925395056605339, -0.042269814759492874,
- 0.02801552228629589, -0.033814843744039536, -0.056751370429992676, 0.00588918337598443,
- -0.0017550239572301507, 0.048729896545410156, -0.025494232773780823,
- 0.015396769158542156, -0.014642368070781231, 0.04469873383641243, 0.02810612879693508,
- 0.041116949170827866, -0.09877940267324448, 0.04012308642268181, -0.07284527271986008,
- -0.10008440166711807, 0.05205686017870903, 0.023998325690627098, 0.03806445375084877,
- 0.05134803429245949, -0.037791673094034195, 0.08074794709682465, -0.01100687962025404,
- -0.030490851029753685, 0.023199409246444702, 0.07864652574062347, -0.017604820430278778,
- 0.035520270466804504, 0.15757565200328827, 0.0021227330435067415, -0.03164367005228996,
- -0.0873507633805275, 0.049440741539001465, 0.11327338218688965, -0.016222618520259857,
- 0.005691297352313995, 0.0022830066736787558, -0.002995140152052045,
- 0.0038400031626224518, -0.04963540658354759, -0.06241683289408684, -0.03176232799887657,
- -0.052836086601018906, 0.09145153313875198, 0.04160767048597336, -0.03767701983451843,
- -0.12122555822134018, -0.055829841643571854, -0.0057440451346337795,
- 0.014421515166759491, 0.12430218607187271, -0.07599887996912003, 0.0730794295668602,
- 0.007687459234148264, 0.004197011701762676, 0.004253701772540808, -0.07574277371168137,
- -0.00997681263834238, -0.06385841220617294, 0.03615887835621834, 0.06242343410849571,
- 0.053837064653635025, -0.06641394644975662, 0.10348372906446457, -0.08918461948633194,
- 0.06384067982435226, -0.018195291981101036, -0.05614486336708069, 0.002547309035435319,
- -0.05276990309357643, 0.037415653467178345, -0.027271585538983345, -0.03332556039094925,
- -0.008834526874125004, -0.06230640411376953, -0.024821827188134193,
- -0.06179489567875862, -0.11379319429397583, -0.023833775892853737, -0.09230571985244751,
- 0.08321437239646912, -0.07011211663484573, 0.00021273370657581836, -0.03848313167691231,
- -0.05492953583598137, 0.003079894697293639, 0.0072634718380868435,
- -0.005931314546614885, -0.12876065075397491, -0.015245422720909119,
- -0.0006514632259495556, 0.05539257824420929, -0.015684494748711586,
- -0.05871191620826721, -0.004865054041147232, 0.05543316900730133, 0.019257444888353348,
- -0.053654808551073074, -0.02111249603331089, -0.07585014402866364, 0.07371386885643005,
- -0.152414932847023, -0.31902459263801575, 0.06673625111579895, 0.05976216495037079,
- 0.06491268426179886, 0.002998044714331627, -0.06771848350763321, 0.04953702166676521,
- 0.03202269971370697, -0.036317192018032074, 0.07191017270088196, -0.08543393760919571,
- 0.014486782252788544, -0.05524584650993347, -0.04915442690253258, 0.006380910519510508,
- -0.06996189802885056, 0.0018912794766947627, 0.018098974600434303,
- -0.026433611288666725, -0.06373444944620132, -0.10412289947271347, 0.028431974351406097,
- -0.030226746574044228, -0.00818570889532566, -0.007328803185373545,
- 0.044436682015657425, -0.04325563833117485, -0.050150368362665176,
- -0.004437381401658058, 0.07523415237665176, 0.024470260366797447, -0.09535510092973709,
- -0.010159038938581944, 0.040506958961486816, -0.005297644529491663, 0.1060977503657341,
- 0.0013609580928459764, 0.0011208265786990523, -0.09515111893415451, 0.08692113310098648,
- 0.0741015374660492, 0.18654853105545044, 0.009578767232596874, 0.022837774828076363,
- 0.008902276866137981, 0.13053341209888458, 0.04064904525876045, 0.03917434811592102,
- -0.014605865813791752, -0.02781110256910324, 0.04770154133439064, -0.00228279922157526,
- 0.09707549214363098, -0.08632507175207138, -0.005891272332519293, -0.01117399986833334,
- -0.005808202549815178, -0.06226339936256409, -0.04487670958042145, 0.18073208630084991,
- 0.035322707146406174, 0.03431233391165733, 0.03621189668774605, -0.015498802065849304,
- -0.021502727642655373, -0.07247670739889145, -0.05440002679824829, -0.02150440774857998,
- -0.00009263058746000752, 0.020011799409985542, -0.036683179438114166,
- -0.12118791788816452, -0.02171141654253006, -0.006488473620265722, 0.015357482247054577,
- 0.11579302698373795, -0.06166638061404228, 0.021785343065857887, -0.06049584969878197,
- 0.14048482477664948, 0.01897290162742138, 0.01964503526687622, 0.037422146648168564,
- 0.08671552687883377, 0.02802911400794983, -0.0010309753706678748, -0.0209474116563797,
- -0.08660676330327988, 0.0029122093692421913, 0.1623176485300064, -0.024554826319217682,
- 0.12608444690704346, 0.03735383227467537, -0.006190381944179535, -0.07452717423439026,
- 0.029839640483260155, 0.002867959439754486, 0.014221387915313244, -0.44013190269470215,
- -0.02744375169277191, 0.13865844905376434, -0.012592233717441559, 0.026684677228331566,
- 0.0823516920208931, 0.006471795961260796, -0.04604554548859596, 0.008397136814892292,
- -0.10256296396255493, 0.09408175945281982, 0.007451742421835661, 0.07104923576116562,
- -0.10655548423528671, 0.00428213132545352, 0.07212115079164505, -0.011083181016147137,
- 0.014611832797527313, 0.035379428416490555, -0.24028979241847992, 0.01890573464334011,
- -0.04818993806838989, 0.16175775229930878, 0.012682105414569378, 0.026870280504226685,
- 0.0869428738951683, -0.04681366682052612, 0.025338560342788696, 0.02463535964488983,
- 0.005189568269997835, 0.039756182581186295, 0.03265213221311569, -0.03432416915893555,
- 0.09534642845392227, 0.10503710061311722, 0.06769376993179321, 0.018779167905449867,
- 11.973406791687012, 0.015646006911993027, 0.046009089797735214, -0.07553377002477646,
- -0.04553191736340523, -0.06614057719707489, 0.03403885290026665, -0.05335133895277977,
- 0.06854504346847534, 0.13540498912334442, -0.0078169209882617, -0.02349725365638733,
- -0.05113664269447327, -0.0663549080491066, 0.03351977840065956, -0.019666453823447227,
- -0.03147248551249504, -0.04514922574162483, 0.015737436711788177, -0.04902411624789238,
- -0.039955057203769684, 0.032059382647275925, 0.0870906338095665, 0.009594473987817764,
- -0.06034339591860771, 0.026546580716967583, -0.027930697426199913,
- -0.006348608061671257, 0.005248689558357, 0.0367153100669384, 0.02818041481077671,
- 0.014750495553016663, 0.0711820125579834, 0.0003706930729094893, 0.05792013183236122,
- 0.07248058915138245, 0.0023487273138016462, 0.026421459391713142, 0.040506456047296524,
- 0.029714860022068024, -0.01341919880360365, 0.03671545162796974, 0.007563972845673561,
- 0.04951166734099388, 0.052702080458402634, 0.06499966233968735, 0.04253200814127922,
- 0.14103269577026367, 0.042154375463724136, 0.08457425981760025, 0.07876119017601013,
- 0.003813578048720956, 0.10827311128377914, 0.011171519756317139, -0.023276230320334435,
- 0.013175055384635925, 0.010773934423923492, -0.08949014544487, 0.08774349838495255,
- 0.04423749819397926, -0.05027870461344719, 0.14203476905822754, 0.045867372304201126,
- 0.0936494842171669, 0.030181171372532845, 0.04166977480053902, 0.0737513080239296,
- 0.05072850361466408, -0.1446734219789505, -0.07959017902612686, 0.03467225283384323,
- -0.08495548367500305, -0.0569002591073513, 0.09313420206308365, 0.058328185230493546,
- -0.02677895687520504, 0.05397636815905571, -0.03654341399669647, 0.040046267211437225,
- -0.017396189272403717, 0.025761142373085022, 0.021640455350279808, -0.05205780640244484,
- 0.007686340715736151, 0.05561496689915657, 0.03392885997891426, 0.016280753538012505,
- 0.10433026403188705, -0.017611784860491753, -0.10294747352600098, -0.04526872560381889,
- 0.07446224987506866, -0.02437089942395687, -0.04244406521320343, 0.07776398956775665,
- -0.061209920793771744, 0.040043946355581284, -0.14417845010757446, 0.07186654210090637,
- 0.07934805750846863, -0.08938715606927872, -0.03061988763511181, -0.05816200375556946,
- 0.07106850296258926, 0.029633531346917152, 0.04720107093453407, -0.07051512598991394,
- -0.004003432113677263, 0.03424028679728508, 0.0380556583404541, -0.030417976900935173,
- 0.09687329083681107, 0.04678012803196907, -0.04096471518278122, 0.06914874166250229,
- 0.050900984555482864, -0.033191781491041183, -0.0023071467876434326,
- 0.06424614042043686, 0.024520419538021088, -0.08849527686834335, -0.03450717031955719,
- -0.04311063885688782, -0.04345472529530525, 0.005329497624188662, -0.012456133961677551,
- -0.009888854809105396, 0.005605956073850393, -0.02899785526096821,
- -0.017687121406197548, 0.04348419979214668, 0.06171752139925957, 0.09509116411209106,
- -0.02307111956179142, 0.049572136253118515, -0.040905389934778214, -0.04340561851859093,
- 0.033153995871543884, 0.051190365105867386, 0.09606025367975235, -0.05303410813212395,
- -0.036558542400598526, -0.07001929730176926, -0.11208662390708923, 0.03697284311056137,
- 0.1098031997680664, 0.05181731656193733, 0.05197729542851448, 0.04206721857190132,
- -0.04790843650698662, -0.06664076447486877, 0.08696091175079346, 0.036157745867967606,
- -0.008793387562036514, 0.05440305545926094, -0.043257322162389755, -0.02408371865749359,
- 0.06386838108301163, -0.04646056517958641, -0.024420058354735374, 0.006166195496916771,
- -0.15879382193088531, 0.04392975568771362, 0.06897242367267609, 0.0618177205324173,
- 0.04148589447140694, 0.08188122510910034, 0.005618616938591003, 0.010673736222088337,
- 0.013874473981559277, 0.04346390441060066, -0.02989101968705654, -0.051439981907606125,
- -0.08404668420553207, 0.04543308541178703, 0.1049194410443306, 0.03928515687584877,
- -0.15100857615470886, -0.01848854124546051, -0.036035921424627304
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 357,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 118,
- "similarity": 0.9975674152374268
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 13,
- "similarity": 0.9974272847175598
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 59,
- "similarity": 0.9973549246788025
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Katyanna Quach"],
- "epoch_date_downloaded": 1663632000,
- "epoch_date_modified": 1665273600,
- "epoch_date_submitted": 1663632000,
- "flag": null,
- "report_number": 2088,
- "source_domain": "theregister.com",
- "submitters": ["Devon Colmer (CSET)"],
- "title": "What happens when your massive text-generating neural net starts spitting out people's phone numbers? If you're OpenAI, you create a filter",
- "url": "https://www.theregister.com/2021/03/18/openai_gpt3_data/"
- },
- {
- "__typename": "Report",
- "authors": [
- "Nicholas Carlini",
- " Florian Tramer",
- " Eric Wallace",
- " Matthew Jagielski",
- " Ariel Herbert-Voss",
- " Katherine Lee",
- " Adam Roberts",
- " Tom Brown",
- " Dawn Song",
- " Ulfar Erlingsson",
- " Alina Oprea",
- " Colin Raffel"
- ],
- "epoch_date_downloaded": 1663632000,
- "epoch_date_modified": 1665273600,
- "epoch_date_submitted": 1663632000,
- "flag": null,
- "report_number": 2087,
- "source_domain": "arxiv.org",
- "submitters": ["Khoa Lam"],
- "title": "Extracting Training Data from Large Language Models",
- "url": "https://arxiv.org/abs/2012.07805"
- },
- {
- "__typename": "Report",
- "authors": [
- "Eric Wallace",
- " Florian Tramèr",
- " Matthew Jagielski",
- " Ariel Herbert-Voss"
- ],
- "epoch_date_downloaded": 1663632000,
- "epoch_date_modified": 1665273600,
- "epoch_date_submitted": 1663632000,
- "flag": null,
- "report_number": 2086,
- "source_domain": "bair.berkeley.edu",
- "submitters": ["Devon Colmer (CSET)"],
- "title": "Does GPT-2 Know Your Phone Number?",
- "url": "https://bair.berkeley.edu/blog/2020/12/20/lmmem/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "cadillac-fairview",
- "name": "Cadillac Fairview"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "unknown",
- "name": "Unknown"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "market-mall-goers",
- "name": "Market Mall goers"
- },
- {
- "__typename": "Entity",
- "entity_id": "chinook-centre-mall-goers",
- "name": "Chinook Centre mall goers"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [2089],
- "vector": [
- -0.12207823246717453, 0.06516551971435547, 0.04937787353992462, -0.1462405025959015,
- 0.06401844322681427, -0.07178335636854172, -0.01442843209952116, 0.08861037343740463,
- 0.061743929982185364, -0.10436196625232697, -0.007470780052244663, 0.08293469250202179,
- 0.020494874566793442, -0.08394955098628998, 0.086480513215065, -0.08993514627218246,
- -0.1040002703666687, -0.07685030996799469, -0.002682893304154277, -0.08675368130207062,
- -0.05666870251297951, 0.051770325750112534, 0.019476091489195824, 0.1342266947031021,
- -0.0529949925839901, 0.029607044532895088, 0.07853676378726959, 0.1911657601594925,
- -0.023787066340446472, 0.08320298045873642, -0.019949577748775482, -0.06369109451770782,
- 0.14287033677101135, 0.0430433563888073, 0.00455313827842474, 0.09010203182697296,
- 0.023199446499347687, -0.004857751540839672, 0.07875978946685791, 0.06055029481649399,
- 0.04852321371436119, 0.2788907289505005, -0.03145991265773773, 0.011389544233679771,
- -0.0010991955641657114, -0.04445081576704979, 0.024696361273527145, 0.03485617786645889,
- 0.01475958526134491, 0.011797601357102394, -0.017091702669858932, 0.021456651389598846,
- -0.05402655154466629, 0.07399027049541473, -0.07495938986539841, 0.047929756343364716,
- 0.050002321600914, -0.030128469690680504, 0.030938031151890755, -0.08595211803913116,
- -0.0994822308421135, -0.2045827955007553, -0.03443329781293869, -0.07758164405822754,
- 0.04674225673079491, -0.12182502448558807, -0.07124409824609756, 0.014685221016407013,
- -0.00612287875264883, 0.09359309822320938, 0.06789816170930862, -0.0731939822435379,
- 0.00815111305564642, 0.02932671085000038, -0.02969570830464363, -0.03355833515524864,
- -0.02284879796206951, 0.13209058344364166, -0.08342941105365753, -0.003816734068095684,
- 0.11257326602935791, -0.0790291503071785, 0.49456846714019775, 0.05494094640016556,
- -0.0012609949335455894, -0.0360141396522522, 0.06268108636140823, 0.05691731721162796,
- 0.05396241322159767, 0.058626990765333176, -0.04796382039785385, 0.05215632915496826,
- -0.07021680474281311, 0.04751264303922653, 0.10643725097179413, 0.047397203743457794,
- -0.010223445482552052, -0.02226773276925087, -0.027999093756079674,
- -0.11127439141273499, 0.005586828570812941, -0.10440201312303543, 0.10814408957958221,
- 0.0591878779232502, -0.06286904215812683, -0.024841807782649994, 0.008946595713496208,
- -0.04128913953900337, 0.09683382511138916, -0.05778833478689194, 0.03719247505068779,
- -0.023222586140036583, 0.07624562084674835, -0.05933653563261032, 0.016781965270638466,
- -0.03322334960103035, -0.02334977313876152, 0.03600586578249931, 0.08796867728233337,
- 0.08260907232761383, -0.006740665063261986, 0.03401385247707367, 0.06164652481675148,
- -0.045480553060770035, -0.030144184827804565, -0.060164932161569595,
- -0.1434740573167801, -0.06985992938280106, 0.01673629879951477, 0.006705337669700384,
- -0.06001843139529228, -0.22387759387493134, 0.006854456849396229, 0.05688852071762085,
- 0.04943966120481491, -0.005609798710793257, -0.01455257460474968, -0.10421830415725708,
- 0.017062416300177574, -0.03382166475057602, -0.04767005890607834, 0.1032547727227211,
- -0.0016580334631726146, 0.06897593289613724, 0.1450103521347046, 0.03914434090256691,
- -0.034079842269420624, 0.0035316799767315388, 0.008045528084039688, -0.0837893933057785,
- 0.09542093425989151, -0.14457795023918152, -0.06212800741195679, 0.04496805742383003,
- -0.017704710364341736, 0.8220447897911072, 0.11744870990514755, 0.16851674020290375,
- -0.025493640452623367, -0.026623914018273354, 0.16781434416770935,
- -0.0016469946131110191, 0.055916737765073776, -0.10015657544136047, -0.0940096527338028,
- 0.011559106409549713, -0.007471153512597084, -0.009681502357125282, 0.0333305224776268,
- 0.006196682341396809, 0.12423162162303925, 0.021535931155085564, 0.15214745700359344,
- 0.01685268059372902, -0.1257425993680954, -0.023091141134500504, 0.10117092728614807,
- 0.025587599724531174, -0.12773501873016357, -0.0363272950053215, 0.05125651881098747,
- 0.08137618750333786, -0.12929315865039825, -0.05918683856725693, -0.08154398947954178,
- 0.04068225994706154, -0.017086928710341454, 0.024986371397972107, -0.05530133098363876,
- 0.003874955466017127, 0.05399313569068909, 0.0034341413993388414, 0.04138762876391411,
- -0.14031583070755005, -0.05219868943095207, 0.08356021344661713, -0.0067310337908566,
- -0.025677377358078957, 0.056765116751194, -0.11405269056558609, 0.07135198265314102,
- -0.04163002967834473, 0.19206087291240692, -0.13071097433567047, 0.010198961943387985,
- -0.02378476783633232, -0.00889277271926403, 0.004001122433692217,
- -0.0005943847936578095, -0.10522813349962234, -0.07004929333925247, 0.10371652245521545,
- -0.012374194338917732, 0.07658952474594116, 0.09146711230278015, -0.01975913532078266,
- 0.046712569892406464, 0.1344442516565323, 0.0058838799595832825, 0.023112883791327477,
- 0.11637835204601288, 0.042591437697410583, -0.06797458231449127, -0.01627141423523426,
- 0.016597727313637733, 0.04192180186510086, 0.047571901232004166, 0.021317802369594574,
- 0.08259855210781097, 0.015887446701526642, -0.02548188529908657, 0.014724383130669594,
- 0.00943047646433115, 0.03067225031554699, 0.13105280697345734, -0.04437863826751709,
- -0.0895739421248436, -0.005985181778669357, -0.07416946440935135, 0.00854282733052969,
- -0.04417991638183594, 0.08787666261196136, 0.035302892327308655, 0.09498092532157898,
- 0.05555829405784607, 0.07125873863697052, 0.10321348160505295, -0.02385084703564644,
- 0.05135321617126465, 0.0713941752910614, -0.0750354751944542, -0.05596453323960304,
- -0.05097094550728798, -0.0461994968354702, 0.04079478979110718, -0.0019762637093663216,
- -0.0806717500090599, -0.0068001593463122845, 0.004942027386277914, -0.02018088288605213,
- -0.09482374042272568, -0.03776738792657852, 0.059469517320394516, 0.05329084023833275,
- -0.10363668948411942, -0.07996407896280289, -0.0809498131275177, -0.047096412628889084,
- 0.10912449657917023, -0.016647860407829285, -0.02378712221980095, -0.12471985071897507,
- 0.07271761447191238, 0.000004906600224785507, 0.07020928710699081,
- -0.013017713092267513, 0.016398558393120766, 0.046628519892692566, -0.06976870447397232,
- 0.03275877237319946, -0.019151898100972176, -0.09158015251159668, -0.036922067403793335,
- -0.08330220729112625, -0.06743059307336807, 0.014660557731986046, 0.006688735913485289,
- -0.04680273309350014, 0.0483393557369709, 0.012263162061572075, 0.060476671904325485,
- -0.007480427622795105, -0.07977661490440369, 0.048184555023908615,
- -0.017518529668450356, -0.03347352519631386, 0.09941869974136353, -0.026331590488553047,
- 0.12758629024028778, -0.0003694105544127524, -0.08389954268932343,
- -0.057273391634225845, 0.017256759107112885, -0.06331987679004669, 0.03622542321681976,
- -0.07691103219985962, -0.018918029963970184, -0.03431108966469765, -0.04037152975797653,
- 0.057430557906627655, -0.06508317589759827, -0.07366128265857697, -0.11878121644258499,
- 0.11453827470541, -0.016178464516997337, -0.016074050217866898, 0.05050603300333023,
- -0.05638052895665169, 0.04870855435729027, -0.02838941663503647, -0.007144337985664606,
- 0.05602194741368294, 0.030593328177928925, -0.035335514694452286, 0.05571636185050011,
- 0.06406039744615555, -0.07580666989088058, 0.025425588712096214, 0.0693603977560997,
- 0.44452449679374695, -0.17293287813663483, 0.06886221468448639, 0.11956251412630081,
- 0.007645143661648035, -0.0009124798234552145, -0.028969556093215942,
- 0.052965447306632996, 0.11609738320112228, 0.1563224047422409, 0.12273342907428741,
- -0.022067809477448463, 0.030725885182619095, -0.12048406153917313, 0.08207885175943375,
- 0.045934777706861496, -0.027080941945314407, 0.021477852016687393, -0.1194702684879303,
- 0.014593931846320629, 0.03456546738743782, -0.1275930106639862, 0.007499048486351967,
- 0.01306245755404234, -0.043494854122400284, 0.04749896377325058, -0.011473591439425945,
- 0.033490151166915894, -0.06004510819911957, -0.02672095224261284, -0.03436270356178284,
- 0.028752971440553665, 0.0526401624083519, 0.09859257936477661, -0.015512092038989067,
- 0.019174642860889435, -0.12711025774478912, -0.060892678797245026, 0.07660543918609619,
- -0.002941850107163191, 0.04333023354411125, 0.06229168176651001, -0.06767690926790237,
- 0.05110083520412445, -0.0018785276915878057, -0.039004452526569366,
- 0.042410850524902344, 0.10406897962093353, 0.031759392470121384, 0.1255907267332077,
- 0.19011443853378296, -0.04277583956718445, -0.07058807462453842, -0.04101121053099632,
- 0.08715009689331055, 0.07641155272722244, -0.0031459194142371416, 0.04281878471374512,
- -0.010942433960735798, -0.02017093263566494, 0.013601807877421379, -0.0732109546661377,
- -0.09785986691713333, 0.027687745168805122, -0.007759084925055504, 0.028136884793639183,
- 0.049796272069215775, -0.021239198744297028, -0.21362097561359406, -0.06299930810928345,
- -0.017349066212773323, 0.04478681832551956, 0.14209748804569244, -0.03386939689517021,
- -0.04786723107099533, -0.05311821028590202, -0.016274305060505867, -0.04113832861185074,
- -0.1801823377609253, 0.012762444093823433, -0.031138410791754723, 0.04192730784416199,
- 0.048445042222738266, 0.048807933926582336, -0.02767033502459526, 0.09826293587684631,
- -0.10735710710287094, 0.08238999545574188, -0.04348871484398842, -0.007984014227986336,
- 0.007475888356566429, -0.037901218980550766, 0.03463216498494148, 0.013449369929730892,
- -0.04508155584335327, -0.03683007135987282, -0.02659612149000168, -0.04220164567232132,
- -0.050750378519296646, -0.08177942037582397, -0.0073309182189404964,
- -0.06989080458879471, 0.016824103891849518, -0.09604684263467789, -0.08997874706983566,
- -0.024211663752794266, -0.009297538548707962, -0.0032594571821391582,
- 0.07268939167261124, 0.028056863695383072, -0.15006373822689056, 0.02470000833272934,
- -0.02277909591794014, 0.053175441920757294, -0.014675375074148178, -0.06004398316144943,
- -0.01591780036687851, 0.10444164276123047, 0.04819929227232933, -0.05435682088136673,
- 0.010933415964245796, -0.05350061133503914, 0.0658802017569542, -0.114325150847435,
- -0.46607470512390137, 0.09993377327919006, 0.014861766248941422, 0.04109643027186394,
- 0.012662343680858612, -0.11415169388055801, -0.010322799906134605, 0.04316459223628044,
- -0.018547583371400833, 0.10685674101114273, -0.0306989923119545, 0.011615942232310772,
- 0.002632580464705825, -0.09047974646091461, -0.03258427605032921, -0.05442754924297333,
- -0.029146557673811913, 0.046228330582380295, -0.07762401551008224,
- -0.012448471039533615, -0.12068378925323486, 0.0382513552904129, -0.04203036427497864,
- 0.07870384305715561, 0.0013189841993153095, 0.026691827923059464, -0.10127387195825577,
- -0.028396395966410637, 0.03736698254942894, 0.07200807332992554, 0.04105191305279732,
- -0.12316614389419556, -0.0635383129119873, 0.09157805889844894, -0.013051348738372326,
- 0.1289805769920349, 0.04819251596927643, -0.027833275496959686, -0.05756054073572159,
- 0.04650374874472618, 0.08165382593870163, 0.18450166285037994, -0.03171657770872116,
- 0.009735971689224243, 0.07456494867801666, 0.17421257495880127, 0.033692698925733566,
- 0.025477560237050056, -0.004455022979527712, -0.021928496658802032,
- 0.011383888311684132, 0.03220350295305252, 0.009533427655696869, -0.09201598912477493,
- -0.05662024766206741, -0.0175052247941494, -0.027493916451931, -0.05866945534944534,
- 0.07272205501794815, 0.28009721636772156, 0.017728209495544434, 0.06340617686510086,
- 0.028965037316083908, -0.03545759245753288, 0.015496037900447845, -0.11886588484048843,
- -0.10974930226802826, -0.005132284015417099, 0.033926546573638916,
- -0.008251781575381756, -0.08595328778028488, -0.10052758455276489,
- -0.006556856445968151, 0.019667211920022964, -0.04601294919848442, 0.17550919950008392,
- -0.025336826220154762, 0.08239774405956268, 0.00456403149291873, 0.15645354986190796,
- 0.0010496997274458408, 0.06068747118115425, 0.0753554031252861, 0.1325765699148178,
- 0.032975874841213226, 0.03063107281923294, -0.0415860116481781, -0.08686436712741852,
- -0.0704462081193924, 0.12066508829593658, -0.03760151565074921, 0.11916622519493103,
- 0.07645653933286667, -0.048638198524713516, -0.05178000405430794, 0.020530840381979942,
- -0.034771934151649475, -0.006790992803871632, -0.47708216309547424,
- -0.016896596178412437, 0.10509587079286575, -0.0017089481698349118,
- 0.003538053948432207, 0.10708659142255783, 0.045227836817502975, 0.01268920861184597,
- -0.034371763467788696, -0.08435551822185516, 0.11419924348592758, -0.003967702388763428,
- 0.04795670881867409, -0.06920400261878967, 0.01834333874285221, 0.06355307996273041,
- -0.021696599200367928, -0.04881814122200012, 0.07044658064842224, -0.18459714949131012,
- 0.040244147181510925, -0.05101997032761574, 0.16660980880260468, -0.016698723658919334,
- -0.0035106802824884653, 0.1066027507185936, -0.060426801443099976, 0.017444949597120285,
- 0.05296200141310692, -0.028536643832921982, 0.029554808512330055, -0.02427610009908676,
- -0.07349533587694168, 0.08007659018039703, 0.07970351725816727, 0.05340055748820305,
- -0.00782102346420288, 12.017736434936523, 0.07522235065698624, 0.08395469933748245,
- -0.070921391248703, 0.001224353676661849, -0.018279872834682465, -0.016718845814466476,
- -0.05402518808841705, 0.07235223054885864, 0.1838969886302948, -0.06048284098505974,
- -0.02302621677517891, -0.03135666996240616, -0.11201261729001999, 0.018434735015034676,
- -0.08788935840129852, -0.07641062885522842, -0.06972139328718185, 0.016265610232949257,
- -0.04607244208455086, -0.04177206754684448, 0.01640424318611622, 0.05340908095240593,
- 0.06048830971121788, -0.11510903388261795, -0.012372580356895924, 0.004170624539256096,
- -0.05775727704167366, 0.042071230709552765, 0.040557801723480225, 0.020892007276415825,
- 0.005853400100022554, 0.06425357609987259, 0.022316651418805122, -0.02417069673538208,
- -0.004036556463688612, 0.03992462158203125, 0.09650424122810364, 0.04728933423757553,
- 0.10948110371828079, 0.047635551542043686, 0.03923039883375168, 0.045329686254262924,
- -0.016047801822423935, 0.08493048697710037, 0.06059731915593147, 0.10629669576883316,
- 0.12709112465381622, -0.021038345992565155, 0.1296231746673584, 0.11939124017953873,
- -0.02095000445842743, 0.13466478884220123, 0.04066639766097069, -0.017425183206796646,
- 0.09315254539251328, 0.03025074303150177, -0.07599040865898132, 0.06055567413568497,
- 0.07247499376535416, -0.05115709453821182, 0.07804577797651291, -0.01696484349668026,
- 0.1737355887889862, 0.02472497522830963, -0.017518071457743645, 0.08800662308931351,
- 0.10405323654413223, -0.1324322521686554, -0.11383745819330215, 0.006237649358808994,
- -0.12697219848632812, -0.08751992136240005, 0.11907222121953964, 0.15636178851127625,
- -0.06223153695464134, 0.04208877310156822, -0.06985512375831604, -0.029123883694410324,
- 0.025356048718094826, 0.022771190851926804, 0.07461399585008621, -0.013507996685802937,
- 0.0346967950463295, 0.046710409224033356, -0.005666449666023254, 0.11643706262111664,
- 0.1404142677783966, -0.02769283950328827, -0.1213599294424057, -0.034144457429647446,
- 0.10327362269163132, 0.031880464404821396, -0.05771467834711075, -0.014772657305002213,
- -0.04796097055077553, 0.0451776422560215, -0.15124207735061646, 0.07554052770137787,
- 0.11396685987710953, -0.05612245947122574, -0.009541554376482964, -0.05483817309141159,
- 0.025672132149338722, 0.04845757037401199, 0.028764739632606506, -0.036128733307123184,
- -0.0241850595921278, 0.032188981771469116, 0.01745450310409069, -0.0557183213531971,
- 0.10923139750957489, 0.0878801941871643, -0.10423664003610611, -0.00830497220158577,
- 0.10299751162528992, 0.015056585893034935, -0.028131017461419106, 0.04391098767518997,
- 0.02943013794720173, -0.053634218871593475, -0.06378046423196793, 0.022352296859025955,
- -0.07178430259227753, -0.042651835829019547, -0.06157906353473663, -0.05934395268559456,
- 0.06569110602140427, -0.08036188781261444, -0.07118353992700577, 0.04535520821809769,
- 0.03971946984529495, 0.01665298081934452, -0.06442707031965256, 0.04978928714990616,
- -0.0647503212094307, -0.03469308093190193, 0.067886121571064, 0.06316375732421875,
- 0.04774217680096626, -0.008080664090812206, -0.05900511518120766, -0.032716214656829834,
- -0.10974553227424622, 0.04385608807206154, 0.20319034159183502, 0.07816598564386368,
- 0.06319985538721085, 0.10084004700183868, -0.14326632022857666, -0.06681182980537415,
- 0.10935136675834656, 0.07092572003602982, -0.0020574515219777822, 0.07293432950973511,
- -0.0675511434674263, -0.04048648849129677, 0.11437975615262985, -0.07663122564554214,
- 0.005995697807520628, 0.038931481540203094, -0.0548415407538414, 0.12381207942962646,
- 0.1727944165468216, 0.04171053320169449, -0.012920785695314407, 0.032150741666555405,
- -0.02352910116314888, 0.06464482843875885, -0.010043052025139332, 0.04924929887056351,
- -0.023935960605740547, -0.1749269664287567, -0.11786717176437378, 0.011412734165787697,
- 0.11208339780569077, -0.0075583490543067455, -0.13789023458957672, -0.02051408775150776,
- -0.07607513666152954
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 358,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Sarah Rieger"],
- "epoch_date_downloaded": 1663632000,
- "epoch_date_modified": 1665273600,
- "epoch_date_submitted": 1663632000,
- "flag": null,
- "report_number": 2089,
- "source_domain": "cbc.ca",
- "submitters": ["Srishti Khemka (CSET)"],
- "title": "At least two malls are using facial recognition technology to track shoppers' ages and genders without telling",
- "url": "https://www.cbc.ca/news/canada/calgary/calgary-malls-1.4760964"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "twitter",
- "name": "Twitter"
- },
- {
- "__typename": "Entity",
- "entity_id": "instagram",
- "name": "Instagram"
- },
- {
- "__typename": "Entity",
- "entity_id": "facebook",
- "name": "Facebook"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "twitter",
- "name": "Twitter"
- },
- {
- "__typename": "Entity",
- "entity_id": "instagram",
- "name": "Instagram"
- },
- {
- "__typename": "Entity",
- "entity_id": "facebook",
- "name": "Facebook"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "twitter-users",
- "name": "Twitter Users"
- },
- {
- "__typename": "Entity",
- "entity_id": "palestinian-social-media-users",
- "name": "Palestinian social media users"
- },
- {
- "__typename": "Entity",
- "entity_id": "instagram-users",
- "name": "Instagram users"
- },
- {
- "__typename": "Entity",
- "entity_id": "facebook-users",
- "name": "Facebook users"
- },
- {
- "__typename": "Entity",
- "entity_id": "facebook-employees-having-families-affected-by-the-conflict",
- "name": "Facebook employees having families affected by the conflict"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [2097],
- "vector": [
- -0.06643025577068329, 0.060921236872673035, 0.03056187927722931, -0.14583046734333038,
- 0.108432337641716, -0.02375282160937786, -0.0018174478318542242, 0.06229817494750023,
- 0.03490157052874565, -0.1166423037648201, 0.03292356804013252, 0.0858307033777237,
- -0.008830176666378975, -0.0929926335811615, 0.05051209032535553, -0.061667200177907944,
- -0.11023347079753876, -0.035466644912958145, -0.06928833574056625, -0.11747601628303528,
- -0.03410378471016884, 0.003406763542443514, 0.009089565835893154, 0.15527750551700592,
- -0.020954275503754616, 0.01820894330739975, 0.13583719730377197, 0.13344354927539825,
- -0.018515434116125107, 0.031101901084184647, -0.020184021443128586,
- -0.08112409710884094, 0.0686456561088562, -0.006499764509499073, -0.035270798951387405,
- 0.08611269295215607, 0.029359156265854836, -0.06560724973678589, 0.01420010905712843,
- 0.04323749989271164, 0.0022290816996246576, 0.2844015955924988, -0.018711764365434647,
- -0.052852045744657516, 0.04238531365990639, -0.05122271180152893, 0.006819882430136204,
- 0.11388739198446274, -0.023029213771224022, -0.02545483224093914, -0.05584324896335602,
- 0.07018940150737762, -0.04501144587993622, 0.02339846082031727, -0.15157315135002136,
- 0.05541658028960228, 0.08616016805171967, -0.06314206123352051, 0.04065238684415817,
- -0.13870397210121155, -0.06276842206716537, -0.3654845356941223, 0.021632835268974304,
- -0.09540077298879623, 0.0852024182677269, -0.08029720187187195, -0.0520993173122406,
- -0.06957536190748215, 0.03733338043093681, 0.0974726751446724, 0.10332198441028595,
- -0.03956419229507446, -0.04141765087842941, 0.06774622201919556,
- -0.00015710662410128862, -0.032337259501218796, 0.03675977513194084, 0.2320026308298111,
- -0.11872470378875732, 0.006642703898251057, 0.07351431250572205, -0.05014447495341301,
- 0.5778443813323975, 0.011622194200754166, -0.06493713706731796, -0.05576072260737419,
- 0.062473878264427185, 0.0010018788743764162, 0.04679131880402565, 0.07084891200065613,
- 0.017769664525985718, 0.022666357457637787, -0.06978084146976471, 0.06623872369527817,
- 0.08335401117801666, 0.009949651546776295, -0.04712291806936264, 0.1210458055138588,
- 0.02656295709311962, -0.05269447714090347, 0.007846549153327942, -0.02218712493777275,
- 0.07666721194982529, 0.07099153846502304, -0.05003722384572029, -0.041963204741477966,
- 0.09171704202890396, -0.08243492245674133, 0.07516150921583176, -0.03739360719919205,
- 0.0016258495161309838, -0.059974562376737595, 0.09064849466085434, -0.03571658581495285,
- 0.024819713085889816, -0.03734654188156128, -0.02492019161581993, -0.00418412359431386,
- 0.0825178474187851, 0.041486337780952454, 0.02867448702454567, 0.03867924213409424,
- 0.09980957210063934, -0.0628659650683403, -0.01944720931351185, -0.10511388629674911,
- -0.11211327463388443, -0.029463917016983032, -0.05909823998808861,
- -0.015508133918046951, -0.01632111519575119, -0.14285798370838165,
- -0.0002545196912251413, 0.138922780752182, -0.003804537933319807, -0.02711777575314045,
- -0.03216839209198952, -0.06458819657564163, 0.011789370328187943, -0.029503684490919113,
- -0.045181453227996826, 0.06656807661056519, 0.03787141665816307, -0.01697932556271553,
- 0.14555636048316956, 0.04990660026669502, -0.07215499877929688, -0.06351664662361145,
- -0.011150644160807133, -0.03410559147596359, 0.09594891220331192, -0.09238272160291672,
- -0.005351451225578785, 0.009417042136192322, -0.055098757147789, 0.7441695928573608,
- 0.13591530919075012, 0.24213947355747223, 0.00944483932107687, -0.010243451222777367,
- 0.18306206166744232, 0.07545939087867737, 0.0512656643986702, -0.08445826917886734,
- -0.09982043504714966, 0.05941177159547806, -0.07778168469667435, -0.08440236002206802,
- 0.031112637370824814, 0.0345420278608799, 0.1413494348526001, -0.013561474159359932,
- 0.1226954236626625, 0.035802558064460754, -0.14237767457962036, -0.07914820313453674,
- 0.07267393916845322, -0.02962031401693821, -0.09518411010503769, -0.012250338681042194,
- 0.061572302132844925, 0.16111795604228973, -0.03075200878083706, 0.07631276547908783,
- -0.03436018154025078, 0.016417745500802994, -0.04657556116580963, 0.06060647964477539,
- -0.05245997756719589, 0.09168561547994614, -0.037349946796894073, 0.03005101904273033,
- 0.07696110755205154, -0.13068516552448273, -0.08395712822675705, 0.13629966974258423,
- 0.0016043387586250901, -0.026825880631804466, 0.06810041517019272, -0.07857687771320343,
- 0.04507474601268768, 0.023881008848547935, 0.1943163424730301, -0.20311827957630157,
- -0.014919559471309185, -0.01758255437016487, 0.046910759061574936, 0.02603786438703537,
- -0.02979346551001072, -0.06572572141885757, -0.04377652332186699, 0.1521545797586441,
- 0.005513069219887257, 0.06577781587839127, 0.04526185244321823, -0.041698213666677475,
- 0.0257419440895319, 0.10353884100914001, -0.031066907569766045, 0.019304493442177773,
- 0.06271463632583618, 0.05917836353182793, -0.1042182520031929, -0.06158711388707161,
- 0.0702887773513794, 0.10854065418243408, 0.05114114657044411, -0.013597925193607807,
- 0.031129401177167892, 0.026593483984470367, -0.030674276873469353, 0.006377170793712139,
- 0.01732773147523403, 0.03092668205499649, 0.0705496147274971, -0.01564800553023815,
- -0.06393503397703171, -0.051893942058086395, -0.026349851861596107, 0.06247617304325104,
- -0.005636990070343018, 0.0990760400891304, 0.06534446030855179, 0.06734025478363037,
- 0.02438068576157093, 0.07692906260490417, 0.10358944535255432, -0.0703481137752533,
- 0.02133840322494507, 0.10630758851766586, -0.017235375940799713, -0.028948605060577393,
- -0.01952906884253025, -0.01721493899822235, 0.04628102481365204, 0.0074836923740804195,
- -0.03694072365760803, -0.019887786358594894, 0.04624432325363159, -0.09917189925909042,
- -0.09649914503097534, 0.005493282340466976, 0.08331728726625443, 0.10965009033679962,
- 0.005844722501933575, -0.06483687460422516, -0.0856567770242691, -0.07740865647792816,
- 0.042522452771663666, -0.06518292427062988, -0.04780511185526848, -0.11443009972572327,
- 0.00412464514374733, -0.01582513004541397, 0.01937652751803398, -0.04519039765000343,
- 0.01666327752172947, 0.03691856190562248, -0.04148389771580696, 0.09337509423494339,
- -0.055586040019989014, -0.019174862653017044, -0.0400228388607502, -0.11118584871292114,
- -0.11204953491687775, 0.008438635617494583, 0.02220808155834675, -0.05678003281354904,
- 0.05589717626571655, 0.05300149694085121, 0.011846081353724003, 0.030537748709321022,
- -0.07234464585781097, 0.0723867416381836, -0.016218263655900955, -0.06334825605154037,
- 0.06439623981714249, 0.019920578226447105, 0.05870655179023743, 0.01788749173283577,
- -0.12901777029037476, 0.012360265478491783, 0.06307149678468704, -0.045216500759124756,
- 0.031840283423662186, 0.0662165954709053, 0.07996835559606552, -0.02978307567536831,
- 0.005063316784799099, 0.07227873057126999, -0.11339478939771652, -0.15162308514118195,
- -0.08695974200963974, 0.1159803569316864, 0.03303620591759682, -0.041328880935907364,
- 0.03149499371647835, -0.04312870651483536, 0.02078365534543991, -0.04099376127123833,
- -0.015896454453468323, 0.04546995833516121, 0.03619806468486786, -0.0032411357387900352,
- -0.009501601569354534, 0.07717417925596237, -0.0825761929154396, 0.09186295419931412,
- 0.07725755125284195, 0.47805851697921753, -0.22390443086624146, 0.11625390499830246,
- 0.03844728320837021, -0.0611221045255661, 0.061910275369882584, -0.10060449689626694,
- 0.15284816920757294, 0.10254587233066559, 0.13170383870601654, 0.09705673903226852,
- -0.06826446950435638, -0.0004002800560556352, -0.15072351694107056, 0.07648829370737076,
- -0.004786956124007702, -0.0007474108715541661, 0.049436431378126144,
- -0.1129775270819664, -0.04269101098179817, 0.09697854518890381, -0.01972350664436817,
- -0.019871674478054047, -0.006166752427816391, -0.040002841502428055,
- 0.028815213590860367, -0.011245391331613064, -0.01976054720580578, -0.04408277943730354,
- 0.015365075320005417, 0.017821280285716057, 0.039190419018268585,
- -0.0027561611495912075, 0.010034242644906044, -0.21808156371116638, 0.07576598972082138,
- -0.06649809330701828, -0.0992528423666954, 0.13004566729068756, 0.008579819463193417,
- 0.01278671994805336, 0.08821943402290344, 0.009929255582392216, -0.0007530677248723805,
- 0.02372954785823822, -0.09614759683609009, 0.0297147985547781, 0.052407387644052505,
- 0.0184495747089386, 0.05246657878160477, 0.18203313648700714, -0.05693751573562622,
- -0.07167556881904602, -0.057276684790849686, 0.08862204849720001, 0.16319818794727325,
- -0.03495697304606438, 0.02195003256201744, 0.02288929931819439, -0.12618957459926605,
- -0.021830782294273376, -0.059812646359205246, -0.11536118388175964, -0.0660165473818779,
- -0.008869567885994911, 0.087795190513134, 0.046655163168907166, 0.0076095666736364365,
- -0.19635145366191864, -0.03729216754436493, -0.010635601356625557,
- -0.006916823796927929, 0.13503889739513397, -0.08453323692083359, 0.06810025125741959,
- -0.021185386925935745, -0.023523705080151558, 0.03556807339191437, -0.09396281838417053,
- -0.028990155085921288, -0.05474996939301491, -0.00015754642663523555,
- -0.006515320856124163, 0.07788980007171631, -0.03986848145723343, 0.053139764815568924,
- -0.10948915034532547, 0.08758784830570221, -0.03533456474542618, -0.023734359070658684,
- -0.05826735123991966, -0.09049012511968613, -0.0018337066285312176, 0.04687190055847168,
- -0.02332056500017643, 0.027983222156763077, 0.01727285422384739, -0.0021548254881054163,
- -0.10389718413352966, -0.024704115465283394, 0.0007335793925449252,
- -0.05709429457783699, 0.02082180604338646, -0.14714910089969635, -0.041885145008563995,
- -0.021569473668932915, -0.06524483114480972, -0.0033956775441765785,
- 0.01869174838066101, 0.011706785298883915, -0.22779545187950134, 0.010901466943323612,
- 0.03243190795183182, 0.0657954141497612, 0.05991492047905922, -0.007686339318752289,
- 0.06668286770582199, 0.10476462543010712, 0.07374114543199539, 0.047284938395023346,
- -0.009015019051730633, -0.07993023097515106, 0.005284768994897604, -0.07772055268287659,
- -0.44701051712036133, 0.07732797414064407, 0.0021588867530226707, 0.058019768446683884,
- 0.02083086222410202, -0.0669039860367775, 0.061476241797208786, -0.011517858132719994,
- -0.12551625072956085, 0.06719008833169937, -0.05155172571539879, 0.01968102529644966,
- -0.016803933307528496, -0.09089883416891098, -0.04309777170419693, -0.09446365386247635,
- -0.09576372802257538, 0.07293263077735901, -0.05146514251828194, -0.06596433371305466,
- -0.12248335778713226, -0.005897814407944679, -0.041390351951122284,
- -0.008699224330484867, 0.01191214844584465, 0.04946000128984451, -0.10457141697406769,
- -0.037024348974227905, 0.05274062603712082, 0.0788431242108345, 0.0251383688300848,
- -0.022250303998589516, 0.014381863176822662, 0.07253916561603546, -0.025458574295043945,
- 0.13971297442913055, 0.037401001900434494, -0.03182477131485939, -0.04907023534178734,
- 0.04007696732878685, 0.015299222432076931, 0.17900685966014862, 0.06423649191856384,
- 0.03325660154223442, 0.025348635390400887, 0.23814882338047028, 0.04066918417811394,
- -0.006000935565680265, -0.046696580946445465, -0.0011001116363331676,
- -0.06045838072896004, 0.010514662601053715, 0.06073218584060669, -0.06784262508153915,
- -0.054191213101148605, -0.04953395947813988, 0.008671607822179794,
- -0.025110501796007156, 0.015653997659683228, 0.29777905344963074, -0.01806267723441124,
- 0.014371003955602646, 0.008090159855782986, -0.06599758565425873, 0.03354724124073982,
- -0.11761467903852463, -0.0876431092619896, -0.0193481408059597, -0.030246656388044357,
- 0.012145604938268661, -0.042335882782936096, -0.11731331795454025,
- -0.006553382147103548, -0.040503762662410736, -0.0029120331164449453,
- 0.15340237319469452, 0.030571138486266136, -0.005840090569108725, 0.0003669254365377128,
- 0.11878583580255508, 0.06290485709905624, -0.012302582152187824, 0.07167382538318634,
- 0.18541134893894196, 0.02141103334724903, -0.00014846117119304836,
- -0.023351864889264107, -0.061886075884103775, 0.006027188617736101, 0.137875497341156,
- -0.1024375855922699, 0.1249668225646019, 0.10373420268297195, -0.0807865783572197,
- -0.04719990864396095, 0.026201192289590836, -0.025667717680335045, 0.02192840166389942,
- -0.42561471462249756, -0.020634526386857033, 0.10550009459257126, 0.05742880329489708,
- 0.02052059955894947, 0.13709799945354462, -0.006250370759516954, -0.03040049411356449,
- -0.0718495175242424, -0.1322048008441925, 0.20646433532238007, 0.016754478216171265,
- 0.04590632766485214, -0.07190300524234772, 0.040500059723854065, 0.13083413243293762,
- -0.03848995640873909, -0.005350193940103054, 0.04372322931885719, -0.1442742645740509,
- -0.005830978509038687, -0.09160506725311279, 0.16917863488197327, -0.030429784208536148,
- 0.05597377195954323, 0.08452359586954117, -0.05292578786611557, -0.005841745063662529,
- 0.059299178421497345, -0.1079002320766449, 0.0900292918086052, -0.0705484002828598,
- -0.02646026574075222, 0.1162213385105133, 0.132550910115242, 0.0974261537194252,
- -0.10401003062725067, 12.361653327941895, 0.05875474959611893, 0.027432339265942574,
- -0.10546355694532394, 0.05082046985626221, -0.026735106483101845, -0.012997819110751152,
- -0.1297280192375183, 0.0711788684129715, 0.15311598777770996, -0.029383044689893723,
- -0.08466926217079163, -0.053481344133615494, -0.14137065410614014, 0.03446105867624283,
- -0.04607316479086876, -0.11283417046070099, -0.015099470503628254, 0.05872754380106926,
- -0.03252795711159706, -0.0485258586704731, 0.03201847895979881, 0.11127317696809769,
- 0.006027521565556526, -0.010577400214970112, 0.031286828219890594, 0.07343139499425888,
- -0.0026317574083805084, 0.052327267825603485, 0.008789001032710075, 0.03458729386329651,
- 0.01270997617393732, 0.08449707925319672, -0.03197526931762695, -0.03382948786020279,
- 0.05222246050834656, 0.07629712671041489, 0.03652927279472351, 0.02996799349784851,
- 0.11697384715080261, -0.00855991430580616, 0.013403760269284248, 0.0029380302876234055,
- 0.0687221810221672, 0.06734555959701538, 0.06854075193405151, 0.07912211120128632,
- 0.12436185032129288, 0.010410239920020103, 0.05038122087717056, 0.12273723632097244,
- -0.01664063334465027, 0.16560815274715424, 0.039769548922777176, 0.025927353650331497,
- 0.06886424869298935, -0.04264521598815918, -0.1082213968038559, 0.04788843169808388,
- 0.01198726985603571, -0.05538611114025116, 0.07542292773723602, -0.012343513779342175,
- 0.11981788277626038, -0.027609141543507576, 0.09177159518003464, 0.07247955352067947,
- 0.0584750697016716, -0.1545085608959198, -0.1329968124628067, 0.02686440199613571,
- -0.17245526611804962, -0.10999009758234024, 0.04558102786540985, 0.19401562213897705,
- -0.063311368227005, 0.04606003686785698, -0.012412033975124359, -0.012252118438482285,
- -0.05051231384277344, -0.041689883917570114, 0.11929918825626373, -0.02912214584648609,
- -0.020047778263688087, 0.05175657570362091, 0.08072883635759354, 0.12624326348304749,
- 0.19697846472263336, -0.05118809640407562, -0.07007721066474915, -0.12147101759910583,
- 0.08218174427747726, -0.03448790684342384, -0.0342341773211956, 0.03915669396519661,
- -0.0528421550989151, 0.09084845334291458, -0.1754664182662964, 0.06523220241069794,
- 0.12204233556985855, -0.1007864773273468, -0.01785438507795334, -0.031218398362398148,
- 0.06642907857894897, -0.027816327288746834, 0.07938803732395172, -0.07188761234283447,
- -0.028623921796679497, -0.02548464946448803, -0.002227988326922059,
- -0.018843436613678932, 0.10712111741304398, 0.08417494595050812, -0.09147820621728897,
- 0.05171753838658333, 0.08627887070178986, -0.003698917105793953, -0.042527031153440475,
- 0.06624284386634827, 0.008638513274490833, -0.07064468413591385, -0.06635002046823502,
- -0.01939031109213829, -0.0354294553399086, -0.012645663693547249, -0.03415122628211975,
- 0.02970278263092041, 0.01783335767686367, -0.08840326219797134, -0.018949702382087708,
- 0.03443551063537598, 0.06896066665649414, 0.08094767481088638, 0.03130348026752472,
- 0.0984204113483429, -0.051332537084817886, -0.06393993645906448, 0.07749132066965103,
- 0.060292501002550125, 0.0638764351606369, -0.05047980323433876, -0.056742556393146515,
- -0.05844736099243164, -0.080354243516922, 0.06208569183945656, 0.0554564893245697,
- 0.016036566346883774, 0.007972427643835545, 0.007289384491741657, -0.12592709064483643,
- -0.11360692977905273, 0.11762585490942001, 0.0023246274795383215, 0.020353643223643303,
- -0.014795592986047268, -0.08621544390916824, -0.04401623457670212, 0.09664110094308853,
- -0.037034474313259125, 0.03889786824584007, 0.039936598390340805, 0.05536741390824318,
- 0.05238083004951477, 0.14386489987373352, -0.02888377010822296, 0.02648455835878849,
- 0.0613403283059597, 0.018809817731380463, 0.08350948244333267, -0.010911175049841404,
- 0.040027569979429245, -0.00917653739452362, -0.15874171257019043, -0.018703289330005646,
- 0.04985016584396362, 0.09116163849830627, 0.04478630796074867, -0.09180329740047455,
- -0.029903890565037727, -0.0013417392037808895
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 359,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 4,
- "similarity": 0.9971230626106262
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 243,
- "similarity": 0.9970910549163818
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 213,
- "similarity": 0.9969019889831543
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Elizabeth Dwoskin", "Gerrit De Vynck"],
- "epoch_date_downloaded": 1664928000,
- "epoch_date_modified": 1665619200,
- "epoch_date_submitted": 1664928000,
- "flag": null,
- "report_number": 2097,
- "source_domain": "washingtonpost.com",
- "submitters": ["Srishti Khemka (CSET)"],
- "title": "Facebook’s AI treats Palestinian activists like it treats American Black activists. It blocks them.",
- "url": "https://www.washingtonpost.com/technology/2021/05/28/facebook-palestinian-censorship/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "mcdonald's",
- "name": "McDonald's"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "mcd-tech-labs",
- "name": "McD Tech Labs"
- },
- {
- "__typename": "Entity",
- "entity_id": "apprente",
- "name": "Apprente"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "shannon-carpenter",
- "name": "Shannon Carpenter"
- },
- {
- "__typename": "Entity",
- "entity_id": "mcdonald's-customers-residing-in-illinois",
- "name": "McDonald's customers residing in Illinois"
- },
- {
- "__typename": "Entity",
- "entity_id": "mcdonald's-customers",
- "name": "McDonald's customers"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [2218, 2149, 2100],
- "vector": [
- -0.07949318736791611, 0.08431210368871689, -0.002387004205957055, -0.08863893896341324,
- 0.06520990282297134, -0.014806132763624191, 0.004142650868743658, 0.04437382146716118,
- 0.11714784055948257, -0.14657866954803467, -0.006391381379216909, 0.042315512895584106,
- 0.03915293887257576, -0.0444192998111248, 0.014223619364202023, -0.08978765457868576,
- -0.049887508153915405, -0.016802828758955002, -0.01556223351508379,
- -0.10239960998296738, -0.07675803452730179, -0.02575271762907505, 0.023860661312937737,
- 0.11136626452207565, -0.05522138997912407, 0.032093796879053116, 0.08697410672903061,
- 0.1353161484003067, -0.053314585238695145, 0.03780267387628555, -0.03789043799042702,
- -0.06180863454937935, 0.12395089864730835, 0.005687374621629715, 0.0027273334562778473,
- 0.10785379260778427, 0.010008065029978752, -0.032045479863882065, -0.03194396570324898,
- -0.037241268903017044, 0.018878363072872162, 0.2076575607061386, 0.004961734171956778,
- -0.02762208878993988, 0.058320894837379456, -0.03060382604598999, 0.017503028735518456,
- 0.04348590970039368, -0.00602819724008441, 0.0038536498323082924,
- -0.0054574343375861645, 0.029235856607556343, -0.022149333730340004,
- 0.043474357575178146, -0.08465983718633652, 0.053140271455049515, 0.01898426003754139,
- 0.015174109488725662, 0.0745418593287468, -0.07313793897628784, -0.010773825459182262,
- -0.16148875653743744, -0.030929377302527428, -0.06578713655471802, 0.09109092503786087,
- -0.058004558086395264, -0.04554763436317444, 0.018169144168496132, 0.010137579403817654,
- 0.08120416849851608, 0.056678563356399536, -0.02118273824453354, -0.020880552008748055,
- 0.003231941955164075, -0.03158252313733101, -0.030021702870726585, 0.014114256016910076,
- 0.20189940929412842, -0.07040582597255707, 0.0017981970449909568, 0.10203343629837036,
- -0.109369657933712, 0.4008459746837616, 0.046156641095876694, -0.006224632263183594,
- -0.017833920195698738, 0.05343702435493469, 0.06008458137512207, 0.032221484929323196,
- 0.016093341633677483, -0.04557526111602783, 0.004906360525637865, -0.042687784880399704,
- -0.00007876412564655766, 0.08413558453321457, 0.008712004870176315,
- -0.01969783753156662, 0.047888170927762985, -0.022631322965025902, -0.07306068390607834,
- 0.004490818362683058, -0.03498011827468872, 0.11906439810991287, 0.07984452694654465,
- -0.04137526825070381, 0.00006662774831056595, 0.04463799670338631,
- -0.056782614439725876, 0.044732484966516495, -0.05123381316661835, 0.023074476048350334,
- 0.015256598591804504, 0.03960761800408363, -0.011480733752250671, 0.05589638277888298,
- -0.06118148937821388, 0.019433213397860527, 0.04078308120369911, 0.08234768360853195,
- 0.016385415568947792, -0.0039712898433208466, 0.05414816364645958, 0.09764587879180908,
- -0.04944348707795143, -0.03843136876821518, -0.024564528837800026,
- -0.0037534262519329786, -0.0052025048062205315, -0.02120930887758732,
- 0.01839355193078518, -0.0618768185377121, -0.19669316709041595, 0.020784957334399223,
- 0.10672438144683838, -0.012982369400560856, -0.029368028044700623, 0.01250242069363594,
- -0.04768193140625954, 0.05554589256644249, 0.0021827907767146826, -0.04039663076400757,
- 0.0738212913274765, 0.039332278072834015, 0.04135512933135033, 0.12381178885698318,
- 0.016182780265808105, -0.03566655144095421, -0.03608427569270134, 0.0015439469134435058,
- -0.03476586565375328, 0.09755191206932068, -0.14383465051651, -0.06651723384857178,
- 0.04162396863102913, -0.0030364394187927246, 0.6726000905036926, 0.1009049117565155,
- 0.1720975637435913, -0.026010463014245033, -0.03903238847851753, 0.13504305481910706,
- -0.009742231108248234, 0.055047303438186646, -0.04869401827454567,
- -0.061089590191841125, 0.01643749140202999, -0.06855758279561996, -0.02277957834303379,
- 0.033600497990846634, 0.03760458528995514, 0.13808001577854156, -0.0005899506504647434,
- 0.0877365842461586, -0.025697171688079834, -0.05306187644600868, -0.01807836815714836,
- 0.05953940376639366, 0.007901676930487156, -0.12173569202423096, -0.03541270270943642,
- 0.04524339362978935, 0.08444849401712418, -0.08094540983438492, -0.00993743073195219,
- -0.05006064847111702, 0.019222356379032135, -0.03901173546910286, 0.017278647050261497,
- -0.00796705111861229, 0.03477182611823082, 0.07472237199544907, 0.08303912729024887,
- -0.0019029272953048348, -0.11387697607278824, -0.05386937037110329, 0.10845828056335449,
- -0.0006632083095610142, -0.019674817100167274, 0.07252759486436844, -0.0845109298825264,
- 0.038815539330244064, 0.009729904122650623, 0.11893117427825928, -0.08602029085159302,
- 0.0013049956178292632, -0.0032054216135293245, -0.02443043328821659, 0.0716172531247139,
- -0.017934603616595268, -0.07653967291116714, -0.07148010283708572, 0.07095292210578918,
- 0.0050690365023911, 0.08702648431062698, 0.07027770578861237, -0.04391235113143921,
- 0.024261849001049995, 0.044362153857946396, 0.009408556856215, -0.03465282544493675,
- 0.06880880147218704, 0.0757620558142662, -0.05377796292304993, -0.012840751558542252,
- 0.011637146584689617, 0.06074884161353111, 0.036358464509248734, 0.0077326190657913685,
- 0.04125957190990448, -0.01755754090845585, -0.06138477846980095, 0.02784285508096218,
- 0.03614300861954689, -0.005773799028247595, 0.07704015076160431, -0.05315900966525078,
- -0.052487727254629135, -0.05450085923075676, -0.03499779477715492,
- -0.005117913708090782, -0.006625201553106308, 0.055176448076963425, 0.08287323266267776,
- 0.05799764767289162, 0.02870970219373703, 0.03611684963107109, 0.08476457744836807,
- 0.03311276063323021, 0.012290936894714832, 0.06379270553588867, -0.03224332258105278,
- -0.009755338542163372, -0.004442889243364334, -0.0054728128015995026,
- 0.046225931495428085, 0.04881613329052925, -0.0675494521856308, -0.03474586829543114,
- -0.035263542085886, -0.044175729155540466, -0.083734892308712, -0.053244948387145996,
- -0.004110952839255333, 0.025155602023005486, -0.07111459970474243, -0.11828458309173584,
- -0.07811974734067917, 0.03211415931582451, 0.07024077326059341, -0.004727027844637632,
- 0.0006568633834831417, -0.12553153932094574, -0.009814722463488579,
- -0.010717534460127354, 0.05707993730902672, 0.011855904012918472, 0.011525653302669525,
- -0.011867004446685314, -0.08082789927721024, 0.014833354391157627, 0.01976574771106243,
- -0.014208589680492878, -0.029472768306732178, -0.025696570053696632,
- -0.057485681027173996, 0.029468225315213203, 0.01023449283093214, -0.041505154222249985,
- 0.05321982875466347, 0.027970770373940468, 0.062370020896196365, -0.002886587753891945,
- -0.014260959811508656, 0.0630773976445198, -0.04553483799099922, -0.014792509377002716,
- 0.08826223760843277, -0.023879429325461388, 0.01013712678104639, -0.026599230244755745,
- -0.07554968446493149, -0.06892696768045425, 0.012719710357487202, -0.04917990043759346,
- 0.07272020727396011, -0.03833608329296112, -0.0022125288378447294,
- -0.036605652421712875, -0.015018381178379059, 0.04908968508243561, -0.06430217623710632,
- -0.05506616830825806, -0.10854808241128922, 0.10272607952356339, 0.012339713983237743,
- -0.010405956767499447, 0.0392075814306736, -0.020384760573506355, 0.04868359491229057,
- -0.03064432181417942, 0.02578623779118061, 0.03372897580265999, 0.04659930244088173,
- -0.027217721566557884, 0.06254925578832626, 0.0422714538872242, -0.01938147284090519,
- 0.0149685712531209, 0.052264679223299026, 0.3808501958847046, -0.16182012856006622,
- 0.10545582324266434, 0.09909456968307495, 0.019072217866778374, 0.059432704001665115,
- -0.0208579171448946, 0.07554039359092712, 0.07973884046077728, 0.10814432054758072,
- 0.1267973631620407, -0.020033063367009163, -0.03600342944264412, -0.059853505343198776,
- 0.07295611500740051, 0.03618047013878822, 0.025572406128048897, -0.031072935089468956,
- -0.09424734860658646, -0.02254929579794407, 0.04195823892951012, -0.05179234966635704,
- 0.021939732134342194, -0.010616525076329708, -0.06990236788988113, 0.02846994437277317,
- 0.034056954085826874, 0.03592923656105995, -0.04633091390132904, 0.03406067565083504,
- -0.033244531601667404, 0.08286028355360031, -0.005359414964914322, 0.04698668047785759,
- -0.05792824551463127, 0.04128442332148552, -0.10551228374242783, -0.11014777421951294,
- 0.09037613868713379, -0.0029086193535476923, 0.03255412355065346, 0.053102340549230576,
- -0.044775109738111496, 0.04649769142270088, -0.047631531953811646, -0.06426585465669632,
- 0.010384944267570972, 0.0692715123295784, 0.033977631479501724, 0.06712327152490616,
- 0.166672483086586, -0.007934085093438625, -0.06834345310926437, -0.052316222339868546,
- 0.04822166636586189, 0.09446156769990921, -0.013815201818943024, 0.01231836061924696,
- -0.016605252400040627, -0.05083875730633736, -0.002509741811081767,
- -0.06789184361696243, -0.07233589142560959, -0.004940824583172798, -0.04412674903869629,
- 0.06425812095403671, 0.02855822443962097, -0.040496356785297394, -0.11477326601743698,
- -0.042540352791547775, -0.04019990935921669, 0.02265326678752899, 0.10657552629709244,
- -0.021609371528029442, 0.05018561705946922, 0.006565311457961798, -0.004185827448964119,
- -0.006375202443450689, -0.10900195688009262, 0.025590911507606506,
- -0.016216937452554703, 0.024251272901892662, 0.11250346899032593, 0.039059143513441086,
- -0.012028850615024567, 0.043850187212228775, -0.0667952224612236, 0.039028558880090714,
- 0.04899482801556587, -0.048263177275657654, 0.06264644116163254, -0.028697246685624123,
- 0.03980282321572304, -0.0015644137747585773, -0.047839969396591187,
- -0.01572486199438572, -0.04775557294487953, -0.05557902529835701, -0.10709283500909805,
- -0.057804033160209656, -0.03770134598016739, -0.06495235860347748, 0.057317156344652176,
- -0.067259781062603, -0.039090294390916824, -0.01556320395320654, -0.019076457247138023,
- -0.004837268032133579, 0.04175034165382385, 0.034276485443115234, -0.12352818250656128,
- 0.011050728149712086, -0.024986935779452324, 0.07749895751476288, -0.02602122724056244,
- -0.06692173331975937, 0.024403007701039314, 0.10212567448616028, 0.03681708499789238,
- -0.05515395477414131, -0.0007918390328995883, -0.02227085828781128, 0.05309753492474556,
- -0.07418372482061386, -0.4747406244277954, 0.07061506062746048, 0.0016248654574155807,
- 0.038556475192308426, 0.025111272931098938, -0.06783553212881088, 0.02799159288406372,
- 0.004783581476658583, -0.02791140042245388, 0.06415753811597824, -0.060137633234262466,
- 0.029403476044535637, 0.004750145133584738, -0.046594470739364624, -0.03153778612613678,
- -0.06125962361693382, -0.053397130221128464, 0.038944635540246964, -0.04005175083875656,
- -0.047815024852752686, -0.09973479062318802, -0.0007582036778330803,
- -0.0329197496175766, -0.0030676776077598333, -0.0033845938742160797,
- -0.02568209357559681, -0.0848679170012474, -0.06642234325408936, 0.036455582827329636,
- 0.03708229959011078, 0.010542266070842743, -0.1066453754901886, -0.005574255716055632,
- 0.04738542437553406, -0.03303065523505211, 0.14103849232196808, 0.017743248492479324,
- 0.009195681661367416, -0.10072696208953857, 0.06774230301380157, 0.05864536389708519,
- 0.1887516975402832, -0.017871089279651642, 0.04954560101032257, 0.0035174500662833452,
- 0.10872363299131393, 0.02265544794499874, 0.040567588061094284, -0.0351051390171051,
- -0.0007420430774800479, 0.050895530730485916, -0.024793023243546486,
- 0.06668923050165176, -0.06838703900575638, -0.04096662625670433, -0.011172689497470856,
- -0.024672366678714752, -0.02462109364569187, -0.012757685035467148, 0.1806531548500061,
- 0.031217247247695923, 0.009202785789966583, 0.025289246812462807, -0.07088495790958405,
- 0.012117352336645126, -0.03405328094959259, -0.08025717735290527, -0.008957190439105034,
- -0.01843651942908764, 0.011952993459999561, -0.045013438910245895, -0.10973884910345078,
- -0.0356067456305027, 0.019800757989287376, -0.020548203960061073, 0.1330472230911255,
- -0.018857399001717567, 0.03539208695292473, -0.027527527883648872, 0.11739319562911987,
- 0.023034602403640747, 0.03751107305288315, 0.04096521437168121, 0.0788714662194252,
- 0.04264877736568451, -0.005001718178391457, -0.04774581268429756, -0.07787270843982697,
- -0.008747636340558529, 0.1098347082734108, -0.03718707337975502, 0.10545531660318375,
- 0.07423082739114761, -0.04862159863114357, -0.04713691771030426, 0.027914412319660187,
- 0.017399301752448082, 0.05325416848063469, -0.4746370017528534, -0.03937796875834465,
- 0.11112765222787857, -0.013793732039630413, 0.02533266507089138, 0.0739603191614151,
- 0.044781576842069626, -0.03574934974312782, -0.022956637665629387,
- -0.038489729166030884, 0.08098435401916504, 0.026969706639647484, 0.07419055700302124,
- -0.12089452892541885, 0.0172856654971838, 0.06914456933736801, 0.0070595345459878445,
- -0.001987877069041133, 0.03332747519016266, -0.22141516208648682, 0.009137514047324657,
- -0.035406444221735, 0.12310272455215454, 0.02487991191446781, 0.03871920332312584,
- 0.07725730538368225, -0.07178450375795364, 0.028547944501042366, 0.04797676205635071,
- 0.0220185574144125, 0.04584789276123047, 0.004764579236507416, -0.02077971212565899,
- 0.10296864062547684, 0.05544637143611908, 0.09399715065956116, -0.011827432550489902,
- 11.820545196533203, 0.054321929812431335, 0.052554816007614136, -0.08578620105981827,
- 0.035145100206136703, -0.031808238476514816, 0.02560788206756115, -0.07708971947431564,
- 0.07272777706384659, 0.12795016169548035, -0.029999202117323875, -0.0365556962788105,
- -0.031308215111494064, -0.08726563304662704, 0.03790023922920227, -0.0648350939154625,
- -0.03140217438340187, -0.05322567746043205, 0.02697157859802246, -0.050347063690423965,
- -0.008355780504643917, 0.024833403527736664, 0.04894633963704109, 0.022383809089660645,
- -0.08984869718551636, 0.022275017574429512, 0.005621132906526327, -0.01624184660613537,
- 0.0010529718128964305, 0.03905228152871132, 0.010181425139307976, -0.01129100751131773,
- 0.06382434815168381, 0.011144028045237064, 0.038685236126184464, 0.07560058683156967,
- 0.03919794782996178, 0.07752028852701187, 0.057893943041563034, 0.06584330648183823,
- 0.03049527108669281, 0.05981294438242912, 0.0002438034862279892, 0.020146002992987633,
- 0.04067612811923027, 0.03533671051263809, 0.025055544450879097, 0.11381865292787552,
- -0.0037292412016540766, 0.08876743167638779, 0.09080170840024948, 0.009366090409457684,
- 0.09795701503753662, 0.026797333732247353, -0.014755277894437313, 0.0501253604888916,
- 0.019842498004436493, -0.07370088249444962, 0.06313646584749222, 0.06149303913116455,
- -0.04468952491879463, 0.08871620893478394, 0.02507450431585312, 0.11114135384559631,
- 0.01690767891705036, 0.059776272624731064, 0.05163765326142311, 0.10918179899454117,
- -0.1411902755498886, -0.06341264396905899, 0.04104282334446907, -0.10754722356796265,
- -0.05513319745659828, 0.09812923520803452, 0.07599364966154099, -0.060426462441682816,
- 0.0581899918615818, -0.029670586809515953, 0.04098014906048775, -0.015382443554699421,
- 0.023208478465676308, 0.03687100112438202, -0.011657132767140865, -0.008667629212141037,
- 0.052647512406110764, 0.024486063048243523, 0.09618077427148819, 0.07489467412233353,
- -0.023923411965370178, -0.09841465204954147, -0.04636481776833534, 0.06829572468996048,
- -0.00741017097607255, -0.07010644674301147, 0.00984982494264841, -0.039253514260053635,
- 0.006553431507200003, -0.12700924277305603, 0.048390064388513565, 0.1451338231563568,
- -0.08357656002044678, -0.019095759838819504, -0.03305438905954361, 0.07733260095119476,
- 0.02678324282169342, 0.02626376785337925, -0.0795196071267128, 0.0016755337128415704,
- 0.01150271575897932, 0.01869203709065914, -0.060158971697092056, 0.05758310481905937,
- 0.04521552845835686, -0.09314027428627014, 0.03332291543483734, 0.0591609962284565,
- -0.030618978664278984, -0.0046034520491957664, 0.05387387052178383, 0.0308880303055048,
- -0.11601841449737549, -0.0554015226662159, -0.055328357964754105, -0.025358088314533234,
- -0.012823493219912052, -0.03607188165187836, -0.01954190619289875, 0.03937849774956703,
- -0.0657859593629837, -0.00777329271659255, 0.041610244661569595, 0.026286521926522255,
- 0.07067417353391647, -0.01689676195383072, 0.05327586457133293, -0.0489884652197361,
- -0.04394441843032837, 0.06450285017490387, 0.0473882295191288, 0.0759565532207489,
- -0.027512146160006523, -0.009345486760139465, -0.02401086688041687,
- -0.09828833490610123, 0.057655107229948044, 0.11641303449869156, 0.038799382746219635,
- 0.046500999480485916, 0.011160667985677719, -0.052003249526023865, -0.03386443853378296,
- 0.0821676030755043, 0.030741862952709198, 0.029778435826301575, 0.061709705740213394,
- -0.06284293532371521, -0.008333513513207436, 0.11783366650342941, -0.050953637808561325,
- 0.031016061082482338, 0.010540931485593319, -0.07053840160369873, 0.0755097046494484,
- 0.11194676905870438, 0.05000178515911102, 0.026789730414748192, 0.032021623104810715,
- -0.013808575458824635, 0.06626816093921661, 0.010209750384092331, 0.0349721685051918,
- -0.02856149710714817, -0.10188860446214676, -0.08997603505849838, 0.04013368859887123,
- 0.06929624825716019, 0.02087034285068512, -0.1597694605588913, -0.036860302090644836,
- -0.03579220175743103
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 360,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 68,
- "similarity": 0.998115599155426
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 45,
- "similarity": 0.9980972409248352
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 34,
- "similarity": 0.9980030059814453
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Amelia Lucas"],
- "epoch_date_downloaded": 1666656000,
- "epoch_date_modified": 1667347200,
- "epoch_date_submitted": 1666656000,
- "flag": null,
- "report_number": 2218,
- "source_domain": "cnbc.com",
- "submitters": ["Anonymous"],
- "title": "McDonald's is testing automated drive-thru ordering at 10 Chicago restaurants",
- "url": "https://www.cnbc.com/2021/06/02/mcdonalds-tests-automated-drive-thru-ordering-at-10-chicago-restaurants.html"
- },
- {
- "__typename": "Report",
- "authors": ["Jonathan Maze "],
- "epoch_date_downloaded": 1661299200,
- "epoch_date_modified": 1665619200,
- "epoch_date_submitted": 1661299200,
- "flag": null,
- "report_number": 2149,
- "source_domain": "restaurantbusinessonline.com",
- "submitters": ["Sonali Pednekar (CSET)", "AIAAIC"],
- "title": "McDonald’s faces lawsuit over its voice recognition technology",
- "url": "https://www.restaurantbusinessonline.com/technology/mcdonalds-faces-lawsuit-over-its-voice-recognition-technology"
- },
- {
- "__typename": "Report",
- "authors": ["Katyanna Quach"],
- "epoch_date_downloaded": 1664928000,
- "epoch_date_modified": 1665619200,
- "epoch_date_submitted": 1664928000,
- "flag": null,
- "report_number": 2100,
- "source_domain": "theregister.com",
- "submitters": ["Srishti Khemka (CSET)"],
- "title": "McDonald's AI drive-thru bot accused of breaking biometrics privacy law",
- "url": "https://www.theregister.com/2021/06/10/mcdonalds_ai_lawsuit/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "amazon",
- "name": "Amazon"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "amazon",
- "name": "Amazon"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "danielle's-family",
- "name": "Danielle's family"
- },
- {
- "__typename": "Entity",
- "entity_id": "amazon-echo-users",
- "name": "Amazon Echo users"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [2111],
- "vector": [
- -0.09676197916269302, 0.09385693818330765, 0.02681475132703781, -0.12474976480007172,
- 0.18972952663898468, -0.05874710902571678, -0.007840054109692574, 0.01770995743572712,
- 0.060491349548101425, -0.08930302411317825, -0.03779178857803345, 0.02312300354242325,
- 0.007124681957066059, -0.059772759675979614, 0.03876552730798721, 0.0005429271841421723,
- -0.06731446832418442, -0.0644916296005249, -0.02866240032017231, -0.11598340421915054,
- -0.056934189051389694, 0.010379151441156864, 0.019571449607610703, 0.14803707599639893,
- -0.031161794438958168, -0.00022284672013483942, 0.11071572452783585,
- 0.13299785554409027, -0.02270122431218624, 0.02456081658601761, -0.02059069462120533,
- -0.06428484618663788, 0.10586825013160706, 0.02029099315404892, -0.014492897316813469,
- 0.08949226886034012, 0.03149395436048508, -0.05197969824075699, -0.02289002016186714,
- 0.013127991929650307, 0.013341439887881279, 0.1776108741760254, 0.010520831681787968,
- -0.01707267016172409, 0.027439691126346588, 0.0037084142677485943,
- -0.040812693536281586, 0.05015017092227936, 0.0023128229659050703,
- -0.00018300180090591311, 0.004492573905736208, 0.059103358536958694,
- 0.005920379888266325, 0.009627732448279858, -0.09762806445360184, 0.06376466900110245,
- 0.0616673044860363, 0.012100249528884888, 0.07877455651760101, -0.09641727805137634,
- -0.0122081832960248, -0.20523782074451447, -0.06283753365278244, -0.06829648464918137,
- 0.11226668953895569, -0.03416755795478821, -0.06433865427970886, -0.00434128986671567,
- -0.018782924860715866, 0.05928007885813713, 0.08265833556652069, -0.08246606588363647,
- -0.01987200230360031, 0.050818294286727905, -0.028057357296347618,
- -0.004444015212357044, 0.00880790501832962, 0.23649118840694427, -0.07522605359554291,
- 0.06134083494544029, 0.11883340030908585, -0.11044839769601822, 0.3799278438091278,
- 0.009523502551019192, 0.013399201445281506, -0.07793203741312027, 0.06080308556556702,
- 0.040319401770830154, 0.047810256481170654, 0.08406085520982742, -0.029001671820878983,
- 0.009883718565106392, -0.12808772921562195, 0.07609957456588745, 0.07264523953199387,
- 0.010769237764179707, -0.07607386261224747, 0.020609306171536446, 0.017643798142671585,
- -0.07095559686422348, 0.002127641113474965, -0.07888239622116089, 0.10417189449071884,
- 0.0015260647051036358, -0.008233623579144478, 0.0013017498422414064,
- -0.015901682898402214, -0.04541690647602081, 0.04670383781194687, -0.0180114284157753,
- 0.08948421478271484, -0.029300322756171227, 0.017705433070659637, -0.02247205749154091,
- 0.01189152617007494, -0.05011123791337013, 0.058497194200754166, 0.031910091638565063,
- 0.13194474577903748, 0.03082590363919735, -0.02165350876748562, 0.058983057737350464,
- 0.12426970899105072, -0.04202982783317566, -0.10133928805589676, -0.008712932467460632,
- -0.04537051171064377, -0.04033619165420532, -0.06243419274687767, 0.02519124187529087,
- -0.05412375181913376, -0.2011185735464096, 0.0014885826967656612, 0.10137660056352615,
- -0.050903573632240295, -0.04420783743262291, 0.0011115793604403734,
- -0.06857405602931976, 0.04739777371287346, 0.006321705877780914, -0.06327910721302032,
- 0.045378874987363815, 0.02694934979081154, 0.005464117042720318, 0.13968509435653687,
- 0.06573732197284698, -0.03442901000380516, -0.013381948694586754, 0.0016644488787278533,
- -0.05894266813993454, 0.0924215242266655, -0.02999534085392952, -0.07993018627166748,
- 0.0015336557989940047, -0.030862079933285713, 0.697820246219635, 0.1116483062505722,
- 0.1408063769340515, 0.026048732921481133, -0.011408329010009766, 0.14661510288715363,
- 0.009115885943174362, 0.06556455790996552, 0.006391006056219339, -0.06910782307386398,
- 0.041127610951662064, -0.06107252091169357, -0.03221391141414642, 0.054941143840551376,
- 0.05676213651895523, 0.10182901471853256, -0.011659984476864338, 0.04616456478834152,
- -0.013058243319392204, -0.11142977327108383, 0.012636277824640274, 0.04460332915186882,
- -0.001055514090694487, -0.13299772143363953, -0.03887093439698219, 0.07356923073530197,
- 0.08638803660869598, -0.08106863498687744, -0.0394747368991375, -0.04003157094120979,
- 0.0060021234676241875, -0.05419406294822693, 0.010908830910921097, -0.05591510236263275,
- 0.07057414948940277, 0.05126208811998367, 0.01681005395948887, 0.028710264712572098,
- -0.09724289178848267, -0.04447690397500992, 0.06800083070993423, -0.009997524321079254,
- -0.024580255150794983, 0.007822312414646149, -0.09205110371112823, 0.02324930764734745,
- -0.04035412147641182, 0.1191437691450119, -0.16104023158550262, 0.014551580883562565,
- 0.008802035823464394, 0.014034686610102654, 0.044021762907505035,
- -0.00018483227177057415, -0.024209512397646904, -0.08363740146160126,
- 0.04167318716645241, 0.004055643454194069, 0.08251629024744034, 0.04758020117878914,
- -0.01816972903907299, 0.05134246125817299, 0.16054663062095642, -0.03590374067425728,
- 0.02206164039671421, 0.053701262921094894, 0.04883608594536781, 0.07101373374462128,
- 0.015332464128732681, -0.018291717395186424, 0.054678503423929214,
- 0.0025803777389228344, 0.03182249516248703, 0.05886123701930046, 0.016240691766142845,
- -0.047916803508996964, -0.009001665748655796, 0.03641163185238838,
- 0.0025424726773053408, 0.08516791462898254, -0.06874413788318634, -0.023530716076493263,
- -0.05124545097351074, -0.03037438727915287, 0.013525298796594143, -0.039980996400117874,
- 0.05676818639039993, 0.05894722044467926, 0.06942002475261688, -0.002764918142929673,
- 0.02559305727481842, 0.013819033280014992, -0.007418835069984198, 0.025971123948693275,
- 0.09641356766223907, -0.013070940971374512, 0.006250517442822456, -0.018545418977737427,
- 0.052496422082185745, 0.03179677575826645, 0.03300812095403671, -0.07899008691310883,
- -0.007004009559750557, 0.043084852397441864, -0.039572298526763916,
- -0.06987658888101578, -0.10245399177074432, 0.03464609384536743, 0.021288953721523285,
- -0.08249831199645996, -0.16681638360023499, -0.07378192245960236, -0.0377010852098465,
- 0.06088732182979584, -0.042089685797691345, -0.02831358090043068, -0.09174254536628723,
- 0.025719566270709038, -0.028434375301003456, 0.06682073324918747, 0.03260895609855652,
- 0.024171313270926476, 0.08965282142162323, -0.007685419637709856, 0.043591514229774475,
- -0.03159252554178238, -0.027584565803408623, -0.07090310752391815, -0.05567321926355362,
- -0.0557556077837944, -0.018905406817793846, 0.0031265488360077143, 0.02824925072491169,
- 0.012792615219950676, 0.07866143435239792, 0.0314033068716526, 0.02039296180009842,
- -0.12831278145313263, 0.05794617533683777, -0.046219948679208755, 0.013870677910745144,
- 0.0434904620051384, -0.0686497911810875, 0.06754867732524872, 0.011345917358994484,
- -0.04884740710258484, -0.06565394997596741, -0.06505852192640305, -0.02426138147711754,
- 0.059209976345300674, 0.007454004604369402, 0.008717508055269718, -0.06540479511022568,
- -0.02477937377989292, 0.05107678845524788, -0.04130435362458229, -0.07642615586519241,
- -0.0727337971329689, 0.10427536815404892, -0.030803712084889412, -0.05831882357597351,
- 0.04498725011944771, -0.04200601950287819, 0.08657995611429214, -0.08443377166986465,
- -0.020327182486653328, 0.0734490379691124, 0.020015856251120567, -0.002131975954398513,
- 0.013065772131085396, 0.0429304838180542, -0.024298332631587982, 0.04527207836508751,
- 0.03671485185623169, 0.4621305465698242, -0.25739818811416626, 0.10702545195817947,
- 0.0922347828745842, 0.052971743047237396, 0.01658552512526512, -0.04127458482980728,
- 0.049010712653398514, 0.09280949831008911, 0.10597376525402069, 0.073043093085289,
- 0.0002692739071790129, -0.008289104327559471, -0.12434180825948715, 0.10673977434635162,
- -0.0034028906375169754, 0.0021374633070081472, -0.010257288813591003,
- -0.11293432116508484, -0.019951092079281807, 0.06319094449281693, -0.033757250756025314,
- 0.008213984780013561, -0.000874496006872505, -0.03459295257925987,
- -0.036743417382240295, 0.010482687503099442, 0.009262137115001678, -0.06065702438354492,
- -0.010086579248309135, -0.034285612404346466, 0.022871987894177437, 0.01245354488492012,
- -0.026864424347877502, -0.0808945745229721, 0.036699555814266205, -0.11980215460062027,
- -0.05056154727935791, 0.14447307586669922, -0.0335501991212368, -0.010974408127367496,
- 0.07043232023715973, 0.0009459236753173172, 0.026253996416926384, -0.04198598861694336,
- -0.08196219056844711, 0.04018854349851608, 0.09523410350084305, 0.04798033833503723,
- 0.09830658882856369, 0.20406687259674072, -0.07382363826036453, -0.07388295233249664,
- -0.05559596046805382, 0.05979705601930618, 0.11267215758562088, 0.00863400474190712,
- 0.016035839915275574, 0.024597709998488426, -0.025484248995780945, 0.056409358978271484,
- -0.025749605149030685, -0.05400218814611435, -0.016652384772896767,
- -0.006834061816334724, 0.03943287953734398, 0.012727013789117336, -0.03074517659842968,
- -0.2015189230442047, 0.036994580179452896, -0.07215277850627899, 0.05812569335103035,
- 0.13835997879505157, -0.09515683352947235, 0.06331587582826614, -0.0030389323364943266,
- -0.04831893742084503, 0.0040251873433589935, -0.12094789743423462, 0.024385973811149597,
- 0.01399258803576231, 0.04763772711157799, 0.07925765216350555, 0.005710769444704056,
- -0.07394284009933472, 0.07189739495515823, -0.07719497382640839, 0.08141949772834778,
- -0.003618256887421012, 0.022984808310866356, 0.014722257852554321,
- -0.007646936923265457, 0.008001266047358513, -0.04163803532719612,
- -0.010851130820810795, 0.055583562701940536, 0.019469399005174637,
- -0.024325139820575714, -0.09863344579935074, -0.04996989294886589,
- -0.018295947462320328, -0.016450559720396996, 0.04816592484712601, -0.1284199357032776,
- -0.05437110736966133, -0.04472042992711067, -0.02219306118786335, 0.0019684454891830683,
- -0.020692404359579086, 0.01393071934580803, -0.17136429250240326, 0.019996412098407745,
- -0.02417796291410923, 0.10389391332864761, 0.01708439737558365, -0.027176572009921074,
- -0.012119349092245102, 0.1489364057779312, 0.08111681044101715, -0.013919041492044926,
- -0.018080787733197212, -0.0717925950884819, 0.024577828124165535, -0.06914452463388443,
- -0.47721388936042786, 0.11800014972686768, 0.03659805655479431, 0.03772380203008652,
- 0.0059080277569592, -0.03682474046945572, 0.005614886060357094, -0.004853489343076944,
- -0.05162004381418228, 0.06929543614387512, -0.07286674529314041, 0.04477982968091965,
- -0.01001956220716238, -0.02896055579185486, -0.04263153299689293, -0.04327525198459625,
- -0.0030729786958545446, 0.04807814210653305, -0.04275909811258316,
- -0.057730238884687424, -0.13736394047737122, 0.02104833535850048, -0.013754745945334435,
- 0.043622005730867386, -0.001510885078459978, 0.0020601246505975723,
- -0.09330184012651443, -0.03246598318219185, 0.05337942764163017, 0.060303594917058945,
- 0.037673961371183395, -0.06293417513370514, 0.011113356798887253, 0.032086923718452454,
- 0.02069178968667984, 0.11898384243249893, -0.00635879160836339, -0.018240051344037056,
- -0.08988098055124283, 0.08332119882106781, 0.03582169488072395, 0.18886518478393555,
- 0.05257676914334297, 0.03325419872999191, -0.01627654768526554, 0.09140562266111374,
- 0.048198401927948, -0.018065884709358215, -0.021018987521529198, -0.02082267962396145,
- 0.027881566435098648, -0.00880379881709814, 0.021220846101641655, -0.08410216122865677,
- -0.04532051086425781, 0.04067366570234299, 0.02606182172894478, -0.0072339726611971855,
- 0.0519445575773716, 0.1561180204153061, 0.024131204932928085, 0.06430843472480774,
- 0.004353496711701155, -0.04643281176686287, -0.03970872610807419, -0.019248975440859795,
- -0.11061681807041168, -0.039080772548913956, -0.0032411518041044474,
- -0.026309143751859665, -0.03442621976137161, -0.10385847091674805,
- -0.012135734781622887, 0.045271508395671844, -0.016454210504889488, 0.13658159971237183,
- -0.019906766712665558, 0.08150133490562439, -0.06652595102787018, 0.10022490471601486,
- 0.028542693704366684, 0.0254330076277256, 0.049250707030296326, 0.10748811066150665,
- 0.039959244430065155, 0.03042476996779442, -0.022041821852326393, -0.03188508003950119,
- 0.020175080746412277, 0.08675827085971832, -0.05668916180729866, 0.12593252956867218,
- 0.1360708475112915, -0.06086336448788643, -0.05332832783460617, 0.03210429847240448,
- 0.04369477182626724, 0.054425276815891266, -0.4826098084449768, -0.046131156384944916,
- 0.11628998070955276, 0.03827976435422897, 0.00845489650964737, 0.10158956795930862,
- 0.039429403841495514, -0.06775292754173279, -0.015486645512282848, -0.08565297722816467,
- 0.06509334594011307, 0.0027894473168998957, 0.05605996772646904, -0.06390776485204697,
- 0.003781862324103713, 0.08664330095052719, -0.02948143146932125, -0.021797722205519676,
- 0.12036237865686417, -0.2360355406999588, 0.023369314149022102, -0.03892147168517113,
- 0.1454140543937683, -0.03364890068769455, -0.0025559058412909508, 0.08049094676971436,
- -0.06173710525035858, 0.06358394771814346, 0.08616160601377487, -0.02388175018131733,
- 0.023452196270227432, 0.023239770904183388, -0.020712370052933693, 0.09440037608146667,
- 0.10133249312639236, 0.17902536690235138, -0.07022681832313538, 11.790088653564453,
- 0.06869754195213318, 0.04298550263047218, -0.03978271782398224, 0.010464965365827084,
- -0.020547587424516678, 0.020980138331651688, -0.06359554827213287, 0.03721329942345619,
- 0.15372905135154724, -0.009356880560517311, -0.050212252885103226, -0.11719536781311035,
- -0.12172044068574905, 0.0005171812954358757, 0.01793988049030304, -0.07472725212574005,
- -0.029057258740067482, 0.04918666556477547, -0.03780380263924599, -0.028434542939066887,
- 0.09835360199213028, 0.032770395278930664, 0.018796881660819054, -0.012908309698104858,
- 0.017921756953001022, -0.019163362681865692, -0.0361253097653389, 0.044224031269550323,
- 0.06980109959840775, 0.022914526984095573, -0.029724571853876114, 0.036378029733896255,
- -0.027817606925964355, 0.07440943270921707, 0.00043596126488409936, 0.0689242035150528,
- 0.03744284436106682, 0.028415577486157417, 0.1122037023305893, 0.02085413783788681,
- -0.00900486670434475, 0.057265810668468475, 0.006866270676255226, 0.03782585635781288,
- 0.06172516942024231, 0.04612477868795395, 0.09465152770280838, 0.049041714519262314,
- 0.09240280836820602, 0.0625012144446373, -0.06082938238978386, 0.13804751634597778,
- 0.006702397484332323, -0.012256079353392124, 0.07625824958086014, 0.02131734974682331,
- -0.08230141550302505, 0.06785692274570465, 0.045551054179668427, -0.0550825297832489,
- 0.10339093953371048, -0.024232905358076096, 0.07730230689048767, -0.09116235375404358,
- 0.09097012132406235, 0.05278746038675308, 0.1526450216770172, -0.1547909677028656,
- -0.13232958316802979, 0.018921734765172005, -0.09305871278047562, -0.09254295378923416,
- 0.07349223643541336, 0.16483356058597565, -0.12076462805271149, 0.04937589913606644,
- -0.056741900742053986, 0.023153236135840416, -0.00462769391015172, 0.025434400886297226,
- 0.04173566401004791, -0.035848621279001236, -0.017376909032464027, 0.049247972667217255,
- 0.03667116165161133, 0.017390163615345955, 0.06148320063948631, -0.056152354925870895,
- -0.11064934730529785, -0.07234620302915573, 0.09380184859037399, 0.0006703585968352854,
- -0.04768212512135506, 0.033739104866981506, -0.058830730617046356, 0.14517024159431458,
- -0.13276173174381256, 0.06758711487054825, 0.10891029983758926, -0.02756377123296261,
- 0.060100242495536804, -0.037060290575027466, 0.025767192244529724,
- -0.019947974011301994, 0.008097967132925987, -0.045648425817489624, 0.04719435051083565,
- -0.001248812535777688, 0.014607260003685951, -0.04920041561126709, 0.06963781267404556,
- 0.04681428521871567, -0.049495499581098557, -0.03855516389012337, 0.009939698502421379,
- -0.019939301535487175, -0.028752312064170837, 0.07806871086359024,
- 0.00038248681812547147, -0.045309390872716904, -0.005633458960801363,
- -0.04198218882083893, -0.012659127824008465, -0.012137830257415771,
- -0.03419771417975426, 0.04077695310115814, 0.048778366297483444, -0.10542218387126923,
- 0.04229843616485596, 0.0435711033642292, 0.061384741216897964, 0.01896703615784645,
- 0.04618876799941063, 0.04461555927991867, 0.0015676291659474373, -0.05531927943229675,
- 0.004620000254362822, 0.02621919848024845, 0.09706609696149826, -0.0034100180491805077,
- -0.02297206036746502, -0.002980595687404275, -0.10085933655500412, 0.060029346495866776,
- 0.11641206592321396, 0.07195243239402771, 0.05927591770887375, 0.004755881614983082,
- -0.08239845186471939, -0.10970257967710495, 0.13359269499778748, 0.047612350434064865,
- -0.00014555265079252422, 0.07506618648767471, -0.0418175533413887, -0.05746683105826378,
- 0.03934337571263313, -0.07080300897359848, 0.0221773199737072, 0.05746006965637207,
- -0.014234812930226326, 0.06883151084184647, 0.12887710332870483, 0.01123986579477787,
- 0.004101035185158253, -0.05381679907441139, 0.013838466256856918, 0.013887339271605015,
- -0.0022919715847820044, 0.014491994865238667, 0.018270239233970642,
- -0.10368949919939041, -0.053612373769283295, 0.0644073411822319, 0.11671887338161469,
- 0.06410293281078339, -0.1299230456352234, -0.0534169003367424, 0.01948200725018978
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 361,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 34,
- "similarity": 0.9978570938110352
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 33,
- "similarity": 0.9974504113197327
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 55,
- "similarity": 0.9973341822624207
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Gary Horcher"],
- "epoch_date_downloaded": 1664841600,
- "epoch_date_modified": 1665619200,
- "epoch_date_submitted": 1664841600,
- "flag": null,
- "report_number": 2111,
- "source_domain": "kiro7.com",
- "submitters": ["Devon Colmer (CSET)"],
- "title": "Woman says her Amazon device recorded private conversation, sent it out to random contact",
- "url": "https://www.kiro7.com/news/local/woman-says-her-amazon-device-recorded-private-conversation-sent-it-out-to-random-contact/755507974/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "facebook",
- "name": "Facebook"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "facebook",
- "name": "Facebook"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "wny-gardeners",
- "name": "WNY Gardeners"
- },
- {
- "__typename": "Entity",
- "entity_id": "gardening-facebook-groups",
- "name": "gardening Facebook groups"
- },
- {
- "__typename": "Entity",
- "entity_id": "facebook-users-in-gardening-groups",
- "name": "Facebook users in gardening groups"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [2129],
- "vector": [
- -0.09276379644870758, 0.06141174957156181, 0.026731230318546295, -0.10113385319709778,
- 0.13744884729385376, -0.02539224550127983, -0.014328176155686378, 0.03805169835686684,
- -0.010750556364655495, -0.06281401962041855, 0.007598444353789091, 0.055784545838832855,
- 0.017541687935590744, -0.08391637355089188, 0.0538346953690052, -0.014141327701508999,
- -0.06530152261257172, -0.08034434169530869, 0.011283460073173046, -0.1828804463148117,
- -0.041383903473615646, -0.005421658977866173, -0.012504704296588898,
- 0.09900447726249695, -0.06068149209022522, 0.022564372047781944, 0.14302732050418854,
- 0.11770609766244888, 0.02258405089378357, 0.0486847460269928, -0.010590634308755398,
- -0.09626854211091995, 0.11337416619062424, 0.029708612710237503, 0.011263519525527954,
- 0.049232032150030136, 0.03202904388308525, -0.04425226151943207, -0.02444881945848465,
- 0.01966891996562481, 0.07078276574611664, 0.20949487388134003, -0.0017269316595047712,
- -0.04841675981879234, -0.0012235669419169426, -0.013325637206435204,
- -0.02624841406941414, 0.03954188525676727, 0.03196972981095314, 0.012614100240170956,
- -0.010990876704454422, 0.06391260027885437, -0.057546842843294144, 0.010133343748748302,
- -0.13147448003292084, 0.06552473455667496, 0.09162456542253494, 0.0071537974290549755,
- 0.11070398986339569, -0.11689131706953049, -0.03276264667510986, -0.19767585396766663,
- -0.02973898872733116, -0.062345441430807114, 0.10867714136838913, -0.09093762189149857,
- -0.05589055269956589, 0.018382012844085693, -0.040123336017131805, 0.05519784614443779,
- 0.04790569469332695, -0.05636413395404816, -0.016751812770962715, 0.03390668332576752,
- -0.013018847443163395, -0.034503430128097534, -0.02116444520652294, 0.24621520936489105,
- -0.1334259957075119, 0.02103419601917267, 0.09999219328165054, -0.10219801217317581,
- 0.43486690521240234, 0.014694271609187126, -0.026093296706676483, -0.03241827338933945,
- 0.07114248722791672, 0.0562865249812603, 0.08171986788511276, 0.09522747248411179,
- -0.015347165986895561, 0.03812731057405472, -0.08415332436561584, 0.031526874750852585,
- 0.07674001157283783, 0.05710991472005844, -0.03868016228079796, -0.008403974585235119,
- -0.00991000235080719, -0.09309227019548416, -0.013295584358274937, -0.04303181543946266,
- 0.09460826963186264, 0.005464606452733278, -0.06003729626536369, -0.0020560293924063444,
- 0.06550698727369308, -0.01981133036315441, 0.036636799573898315, -0.07494716346263885,
- 0.02968895062804222, -0.07764407992362976, 0.05566633865237236, -0.05142546445131302,
- 0.03132927790284157, -0.0018444895977154374, -0.00863488856703043, 0.06350100040435791,
- 0.09661255776882172, 0.0646873414516449, 0.022755006328225136, 0.0796639621257782,
- 0.09800495207309723, 0.02559385634958744, -0.10581956803798676, -0.04740293323993683,
- -0.055445462465286255, 0.006379240192472935, -0.030301755294203758,
- 0.015938758850097656, -0.050252873450517654, -0.1630936712026596, -0.06025884672999382,
- 0.10054488480091095, 0.004846865776926279, -0.026334192603826523, -0.029341446235775948,
- -0.08468513190746307, 0.02386356331408024, -0.03732040524482727, -0.09147557616233826,
- 0.05084718018770218, 0.051225610077381134, 0.05144535377621651, 0.11422610282897949,
- 0.04222521185874939, -0.05023006349802017, -0.09869799762964249, 0.0012969638919457793,
- -0.07702913135290146, 0.1185392215847969, -0.0845947191119194, -0.005463047418743372,
- 0.015269679017364979, -0.011744068935513496, 0.6973535418510437, 0.13962741196155548,
- 0.1869306117296219, 0.037606045603752136, -0.016838442534208298, 0.178971529006958,
- -0.016364600509405136, 0.04051336646080017, -0.06259111315011978, -0.0538867823779583,
- 0.016246052458882332, -0.10140467435121536, -0.058228448033332825,
- 0.0023032280150800943, 0.04824365675449371, 0.11999314278364182, 0.023761028423905373,
- 0.03543565794825554, 0.0019347474444657564, -0.13549382984638214, -0.04688520357012749,
- 0.09741315990686417, -0.006762528792023659, -0.1378546953201294, -0.02750682830810547,
- 0.04088358208537102, 0.10409751534461975, -0.06144879385828972, 0.010209662839770317,
- -0.035902317613363266, 0.08557747304439545, -0.047199275344610214, 0.05718841776251793,
- 0.0005387499695643783, 0.07321144640445709, -0.021941568702459335, 0.07089380919933319,
- 0.00005796387267764658, -0.09901179373264313, -0.02484988421201706, 0.09196250885725021,
- -0.0025000134482979774, -0.015201939269900322, 0.08971104770898819,
- -0.08251777291297913, 0.05933893099427223, -0.004088405519723892, 0.21271881461143494,
- -0.17191636562347412, 0.010738829150795937, -0.00826766062527895, 0.06350938975811005,
- 0.027898382395505905, -0.004420822951942682, -0.07177047431468964, -0.08834992349147797,
- 0.11203315854072571, -0.0301052313297987, 0.10349824279546738, 0.029999401420354843,
- -0.04848223924636841, 0.041148342192173004, 0.08075328171253204, -0.011747563257813454,
- -0.01724306493997574, 0.07953882962465286, 0.07139892876148224, -0.037215474992990494,
- -0.006705574691295624, -0.004371986724436283, 0.07901517301797867, 0.027432864531874657,
- 0.009421760216355324, 0.0378548689186573, 0.011416865512728691, -0.04882918298244476,
- -0.010408598929643631, 0.008387649431824684, 0.027543069794774055, 0.09103621542453766,
- -0.028470326215028763, -0.07115635275840759, -0.019403764978051186,
- -0.04250417649745941, 0.043916571885347366, -0.04291471093893051, 0.11124061048030853,
- 0.018647700548171997, 0.10698921978473663, 0.027175094932317734, 0.0684153288602829,
- 0.06473720818758011, -0.00661805272102356, -0.003559355391189456, 0.05847188085317612,
- -0.024230018258094788, -0.02764059416949749, -0.005841563921421766,
- 0.007285290863364935, 0.026855269446969032, 0.01876305229961872, -0.01743728667497635,
- 0.0024028285406529903, 0.0003782181011047214, -0.09648901224136353,
- -0.07437442988157272, -0.04843010753393173, 0.08079197257757187, 0.033936064690351486,
- -0.05518057197332382, -0.11517723649740219, -0.07735749334096909, -0.010351115837693214,
- 0.09084371477365494, -0.018208710476756096, -0.05574687197804451, -0.1002347469329834,
- 0.00742513220757246, -0.06366951763629913, 0.05970048904418945, 0.030653027817606926,
- 0.025967895984649658, 0.06805296987295151, -0.05374671146273613, 0.06494304537773132,
- -0.03526272252202034, -0.0414416678249836, -0.06519683450460434, -0.01118090096861124,
- -0.03512067347764969, 0.031054992228746414, -0.04783472791314125, -0.01708979159593582,
- 0.009275252930819988, 0.03598908707499504, 0.06874880939722061, -0.006279663182795048,
- -0.08888731896877289, 0.06092365086078644, -0.031314294785261154, -0.02400590106844902,
- 0.04260936751961708, -0.033668145537376404, 0.07153462618589401, -0.037196092307567596,
- -0.06809572875499725, -0.025565939024090767, -0.0022028665989637375,
- -0.05295403674244881, 0.06327874958515167, 0.021828709170222282, 0.02448253147304058,
- -0.09431197494268417, 0.015242669731378555, 0.05573312193155289, -0.047153208404779434,
- -0.12385459244251251, -0.06501922011375427, 0.1496337503194809, 0.0128923449665308,
- -0.0060079023241996765, 0.04063059762120247, -0.1008279100060463, 0.05813557282090187,
- -0.04475376754999161, -0.035515446215867996, 0.05443773418664932, 0.020574145019054413,
- -0.006994847673922777, 0.05428513512015343, 0.06093057617545128, -0.0898008644580841,
- 0.006069923751056194, 0.023293573409318924, 0.4476473033428192, -0.2815588116645813,
- 0.12388844788074493, 0.10653407126665115, 0.042838215827941895, 0.06588184833526611,
- -0.05774373188614845, 0.0990847647190094, 0.05983853340148926, 0.1521572768688202,
- 0.05508353188633919, -0.039513491094112396, 0.004262893460690975, -0.11763815581798553,
- 0.12665176391601562, 0.032500121742486954, 0.011991306208074093, 0.015012138523161411,
- -0.136844202876091, -0.010282794944941998, 0.005339853931218386, -0.011837278492748737,
- -0.012355237267911434, -0.0038274754770100117, -0.07354775071144104,
- 0.04155898466706276, -0.020829690620303154, 0.014288431033492088, -0.03530411794781685,
- -0.008398741483688354, 0.0041283853352069855, 0.07208438962697983,
- 0.0005515509401448071, 0.008276659063994884, -0.14049161970615387, 0.05891093239188194,
- -0.12527501583099365, -0.09566482901573181, 0.14694924652576447, -0.03858337178826332,
- -0.007867680862545967, 0.11545301973819733, -0.06415768712759018, -0.007850410416722298,
- 0.016221148893237114, -0.07387912273406982, 0.03570343554019928, 0.07157232612371445,
- 0.04240700230002403, 0.06683411449193954, 0.17804782092571259, -0.07358791679143906,
- -0.05169590935111046, -0.0826500654220581, 0.06867167353630066, 0.11982935667037964,
- 0.018538743257522583, 0.037510138005018234, 0.032523393630981445, -0.08655741065740585,
- 0.009104007855057716, -0.04214384779334068, -0.07386677712202072, -0.05797286704182625,
- -0.06982606649398804, 0.057428665459156036, 0.048170313239097595, -0.047665707767009735,
- -0.15579597651958466, -0.009596753865480423, -0.04797360673546791, -0.02164764143526554,
- 0.08083122968673706, -0.0844656303524971, 0.08716410398483276, 0.00015802700363565236,
- 0.008575052954256535, 0.023097483441233635, -0.07684814184904099, 0.010119711980223656,
- -0.012468908913433552, 0.024745440110564232, -0.012162717059254646, 0.04354352504014969,
- -0.039228055626153946, 0.10033407062292099, -0.05881870537996292, 0.060601308941841125,
- 0.009312102571129799, 0.01086291205137968, -0.011673357337713242, -0.07613729685544968,
- -0.016299020498991013, -0.019002793356776237, -0.06954995542764664,
- -0.018036548048257828, 0.019428914412856102, -0.07250776141881943, -0.07833210378885269,
- -0.0687093585729599, -0.047031011432409286, -0.06627779453992844, 0.10616372525691986,
- -0.14257074892520905, -0.02615758217871189, -0.014350573532283306, 0.02861601673066616,
- -0.00784587673842907, 0.015027730725705624, -0.005552268121391535, -0.2247052639722824,
- 0.04874817654490471, -0.023509100079536438, 0.08983996510505676, 0.03999483957886696,
- -0.019773341715335846, 0.007946932688355446, 0.17157919704914093, 0.08357813209295273,
- -0.01039959117770195, 0.028748415410518646, -0.06106601282954216, 0.03011321648955345,
- -0.12166432291269302, -0.493990033864975, 0.06417372822761536, -0.022056981921195984,
- 0.0783730074763298, 0.01644754596054554, -0.11024279147386551, 0.02439860813319683,
- 0.001531566958874464, -0.0966222956776619, 0.10673784464597702, -0.059749800711870193,
- 0.04228678718209267, 0.006254143547266722, -0.06894131004810333, -0.055296458303928375,
- -0.06763134151697159, -0.04293941706418991, 0.01703997328877449, -0.07842067629098892,
- -0.09307099133729935, -0.17059695720672607, 0.05702631175518036,
- -0.00005114051964483224, -0.026401737704873085, -0.005468587391078472,
- 0.026233024895191193, -0.11989199370145798, -0.03465225547552109, 0.03753586485981941,
- 0.09580525755882263, 0.06728142499923706, -0.05619213357567787, -0.041805244982242584,
- 0.01379900798201561, -0.011384054087102413, 0.1330021470785141, 0.019548580050468445,
- -0.010641825385391712, -0.09427487105131149, 0.06302467733621597, 0.057089339941740036,
- 0.18234038352966309, 0.034480247646570206, 0.049645282328128815, -0.050159234553575516,
- 0.1694059818983078, 0.056362591683864594, -0.0037922074552625418, -0.046575699001550674,
- 0.004306268412619829, 0.00827741902321577, -0.026970533654093742, 0.08550037443637848,
- -0.03478330373764038, -0.02874082699418068, -0.028023144230246544, 0.02639022096991539,
- -0.012865300290286541, 0.026599537581205368, 0.2208297997713089, -0.012851674109697342,
- 0.040231019258499146, 0.02211596444249153, -0.11148744821548462, 0.036236368119716644,
- -0.05021250247955322, -0.08244767040014267, -0.05497471243143082, 0.0015537593280896544,
- -0.0031753533985465765, -0.007237710058689117, -0.09013023972511292,
- 0.0000691656387061812, -0.026406144723296165, 0.024097325280308723, 0.17693734169006348,
- -0.009521576575934887, 0.02642030268907547, -0.003222688566893339, 0.1129249557852745,
- 0.05208506062626839, 0.029597502201795578, 0.1125582754611969, 0.20029236376285553,
- 0.04979506880044937, 0.021307382732629776, -0.03678663447499275, -0.0704825296998024,
- 0.022579817101359367, 0.1818060576915741, -0.09874437749385834, 0.12967990338802338,
- 0.07116042077541351, -0.009591618552803993, -0.061444588005542755, 0.03333733230829239,
- -0.04513059929013252, 0.058394018560647964, -0.49963468313217163, -0.03455457091331482,
- 0.10401786863803864, 0.020929014310240746, -0.01350375171750784, 0.14308910071849823,
- -0.01689605601131916, -0.028954004868865013, -0.0446077436208725, -0.12525607645511627,
- 0.0686626136302948, 0.04958602413535118, 0.03677889332175255, -0.08170826733112335,
- 0.015326458029448986, 0.08714430779218674, -0.039185531437397, 0.008508262224495411,
- 0.07181026041507721, -0.18713799118995667, -0.011529909446835518, -0.031208816915750504,
- 0.11193838715553284, -0.025511177256703377, 0.002879631007090211, 0.09558456391096115,
- -0.05894291028380394, 0.020751753821969032, 0.022898823022842407, -0.020843854174017906,
- -0.008902782574295998, 0.004011292941868305, 0.012123254127800465, 0.10988970100879669,
- 0.12998227775096893, 0.17336232960224152, -0.055731792002916336, 12.196248054504395,
- 0.05195276439189911, 0.05027247965335846, -0.11964938044548035, 0.04842885211110115,
- -0.024330899119377136, 0.008631093427538872, -0.04934689402580261, 0.10036569088697433,
- 0.15841859579086304, -0.03975284472107887, -0.027098553255200386, -0.06291677802801132,
- -0.13170966506004333, 0.023652857169508934, -0.03207304701209068, -0.059882499277591705,
- -0.054853182286024094, 0.037005141377449036, -0.04124029353260994,
- -0.056084126234054565, 0.09126830101013184, 0.07336866110563278, 0.00007411088881781325,
- -0.04355739429593086, 0.07443857938051224, -0.010267970152199268, -0.04461461678147316,
- 0.03463437408208847, 0.0052651274017989635, 0.0076408167369663715,
- -0.012899693101644516, 0.004553541541099548, -0.04104049876332283, 0.0466802641749382,
- 0.06982094794511795, 0.07551902532577515, 0.04928218573331833, -0.006759305950254202,
- 0.07812429964542389, 0.008863510563969612, 0.025509022176265717, 0.033612869679927826,
- 0.051064882427453995, 0.04316699504852295, 0.06775423884391785, 0.046592555940151215,
- 0.13638316094875336, 0.10583063960075378, 0.09997107833623886, 0.06833165138959885,
- -0.01637045294046402, 0.1525590717792511, -0.015309765934944153, 0.016292067244648933,
- 0.06057886779308319, -0.03282986581325531, -0.08497488498687744, 0.052799955010414124,
- 0.05475794896483421, -0.017821041867136955, 0.11319060623645782, -0.024613305926322937,
- 0.10283361375331879, -0.013387976214289665, 0.06455285847187042, 0.045865774154663086,
- 0.07036690413951874, -0.18001635372638702, -0.09941776841878891, -0.002054732060059905,
- -0.11048606038093567, -0.08815743774175644, 0.06235259398818016, 0.12249840050935745,
- -0.03721969202160835, -0.060280025005340576, -0.020005464553833008,
- 0.021424833685159683, -0.036631885915994644, -0.0102448221296072, 0.07241825759410858,
- -0.032130736857652664, -0.06006982922554016, 0.04852272942662239, 0.023300539702177048,
- 0.028886860236525536, 0.1272953450679779, -0.0065750922076404095, -0.09622002393007278,
- -0.06909933686256409, 0.10150881111621857, -0.05625397339463234, -0.06009000912308693,
- 0.085174061357975, -0.08752419054508209, 0.1031809002161026, -0.17123611271381378,
- 0.10350752621889114, 0.08285117149353027, -0.08084626495838165, -0.0587129183113575,
- -0.044730547815561295, 0.032901011407375336, -0.0025352707598358393,
- 0.04165926203131676, -0.04619799181818962, 0.017093287780880928, -0.05590399354696274,
- 0.008884676732122898, -0.0446302592754364, 0.08556543290615082, 0.06589257717132568,
- -0.027393803000450134, 0.0026187195908278227, 0.02251940406858921, -0.02594306319952011,
- -0.02318391762673855, 0.05445660278201103, 0.011269735172390938, -0.05519598722457886,
- 0.007938620634377003, -0.03983883187174797, -0.08352960646152496, -0.05028804391622543,
- -0.03535333275794983, 0.03067602962255478, 0.05868956819176674, -0.094209223985672,
- -0.01125702541321516, 0.036981094628572464, 0.045003581792116165, 0.09718271344900131,
- 0.026141613721847534, 0.07476843148469925, -0.08601389825344086, -0.038045573979616165,
- 0.04897390678524971, 0.05828729644417763, 0.09609181433916092, 0.0121938930824399,
- -0.0484466589987278, -0.06694936007261276, -0.08757700771093369, 0.05758335441350937,
- 0.0998520776629448, 0.0049993665888905525, 0.018054233863949776, 0.0021568089723587036,
- -0.10773035138845444, -0.052468977868556976, 0.13954095542430878, 0.0011823049280792475,
- 0.013370651751756668, 0.04288811981678009, -0.045676615089178085, -0.07161352038383484,
- 0.0716661736369133, -0.015191898681223392, 0.044646307826042175, 0.018563583493232727,
- -0.07442472875118256, 0.16562581062316895, 0.07635580003261566, -0.013855251483619213,
- 0.03292354941368103, -0.0009988918900489807, 0.024873260408639908, 0.06944341212511063,
- 0.015615228563547134, 0.025118911638855934, 0.03460666909813881, -0.11491211503744125,
- -0.06408612430095673, 0.07883103936910629, 0.12193905562162399, 0.09478724747896194,
- -0.06791485100984573, -0.01798534020781517, 0.023154238238930702
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 362,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 226,
- "similarity": 0.9976193308830261
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 7,
- "similarity": 0.9976040720939636
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 84,
- "similarity": 0.9975623488426208
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Barbara Ortutay"],
- "epoch_date_downloaded": 1663804800,
- "epoch_date_modified": 1665619200,
- "epoch_date_submitted": 1663804800,
- "flag": null,
- "report_number": 2129,
- "source_domain": "apnews.com",
- "submitters": ["Srishti Khemka (CSET)"],
- "title": "Hoe no! Facebook snafu spells trouble for gardening group",
- "url": "https://apnews.com/article/lifestyle-technology-oddities-business-gardening-9c9f431f91ba450537974758de4f14d2"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "facebook",
- "name": "Facebook"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "facebook",
- "name": "Facebook"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "plymouth-hoe-residents",
- "name": "Plymouth Hoe residents"
- },
- {
- "__typename": "Entity",
- "entity_id": "facebook-users-posting-about-plymouth-hoe",
- "name": "Facebook users posting about Plymouth Hoe"
- },
- {
- "__typename": "Entity",
- "entity_id": "facebook-users-in-plymouth-hoe",
- "name": "Facebook users in Plymouth Hoe"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [2130],
- "vector": [
- -0.047968097031116486, 0.034263573586940765, 0.063245490193367, -0.1160302460193634,
- 0.1344670206308365, -0.03599926829338074, -0.012774640694260597, 0.04723767191171646,
- 0.025683047249913216, -0.05390556901693344, 0.0005298983305692673, 0.0654030442237854,
- 0.025443073362112045, -0.03284193202853203, 0.05189596861600876, -0.06216951087117195,
- -0.12605416774749756, -0.01603858172893524, -0.05795245245099068, -0.03935559466481209,
- -0.06555812060832977, 0.03525181859731674, 0.034778669476509094, 0.0875299721956253,
- -0.04633154720067978, 0.0014800179051235318, 0.03607691824436188, 0.11032040417194366,
- 0.009913632646203041, 0.016819683834910393, 0.01648838073015213, -0.042819444090127945,
- 0.1187051311135292, 0.024034639820456505, 0.030125053599476814, 0.08596299588680267,
- 0.016669321805238724, -0.038540929555892944, -0.0161506999284029, 0.056437697261571884,
- -0.017954764887690544, 0.127829447388649, 0.004771139472723007, 0.015197975561022758,
- 0.023768292739987373, -0.03992096707224846, -0.0013932737056165934, 0.05853620171546936,
- 0.005677393171936274, 0.016534926369786263, -0.017532439902424812, 0.030560852959752083,
- -0.021834272891283035, 0.031245090067386627, -0.11443442106246948, 0.03993537649512291,
- 0.05579879507422447, -0.0142945172265172, 0.0330059677362442, -0.10921972244977951,
- 0.060225825756788254, -0.18403634428977966, -0.1496608555316925, -0.05802896246314049,
- 0.09770513325929642, -0.08075013756752014, -0.024001101031899452, -0.018194088712334633,
- 0.026133151724934578, 0.07012853026390076, 0.09497109055519104, -0.06023477017879486,
- 0.008140943944454193, 0.0048836879432201385, -0.00012002012954326347,
- 0.006225430406630039, -0.017108498141169548, 0.17036767303943634, -0.1410057246685028,
- 0.004284001886844635, 0.1013742983341217, -0.12212443351745605, 0.3415152132511139,
- 0.0133883161470294, 0.011398381553590298, -0.029676679521799088, 0.07675936073064804,
- 0.04634833708405495, 0.0676816776394844, 0.0642433911561966, 0.025209147483110428,
- 0.04083330184221268, -0.06884753704071045, 0.006956808269023895, 0.0348508358001709,
- 0.041405875235795975, -0.03809359669685364, 0.07777594029903412, -0.014213009737432003,
- -0.0678241103887558, -0.012045012786984444, -0.054692480713129044, 0.11864756047725677,
- 0.10667718201875687, -0.023549001663923264, -0.0025471257977187634,
- 0.017088454216718674, -0.011825964786112309, 0.053763289004564285, -0.0574183464050293,
- 0.01768842712044716, 0.04043246805667877, 0.09580531716346741, 0.028660502284765244,
- 0.04602311551570892, -0.0045718904584646225, 0.003544732928276062, 0.08881647139787674,
- 0.0866340920329094, 0.01737651601433754, 0.06805506348609924, 0.08743016421794891,
- 0.06085829809308052, -0.013382257893681526, 0.028126109391450882, -0.03352993354201317,
- -0.09093432128429413, -0.014024733565747738, -0.021676987409591675, 0.01005216222256422,
- -0.05980358645319939, -0.15850843489170074, -0.006156382616609335, 0.07823830842971802,
- 0.0005841887323185802, -0.04054498299956322, 0.010657085105776787, -0.05472881719470024,
- 0.028356071561574936, -0.03899191692471504, -0.08687995374202728, 0.023610297590494156,
- -0.019323067739605904, 0.057208746671676636, 0.08056477457284927, 0.03755172714591026,
- -0.02553943544626236, -0.07236769050359726, -0.026097141206264496, -0.08608874678611755,
- 0.06822793930768967, -0.04662570357322693, -0.01624726876616478, 0.0009246660047210753,
- -0.0119557473808527, 0.6649237871170044, 0.07670183479785919, 0.1373831182718277,
- 0.012963715940713882, 0.012351863086223602, 0.15856575965881348, 0.025285519659519196,
- 0.04523930326104164, -0.04411599785089493, -0.10305872559547424, 0.06849820166826248,
- -0.07855235785245895, -0.04650907590985298, 0.01622345671057701, 0.07205644994974136,
- 0.04247286915779114, 0.031079092994332314, 0.08644431084394455, -0.028964707627892494,
- -0.130105659365654, -0.00978460256010294, 0.0728970617055893, -0.03463529422879219,
- -0.09704700112342834, -0.046870529651641846, 0.03725523129105568, 0.10720234364271164,
- -0.0751926451921463, -0.005884223151952028, -0.04820014163851738, 0.08624931424856186,
- 0.022989660501480103, 0.08307812362909317, -0.035795263946056366, 0.0031335679814219475,
- 0.020445674657821655, -0.02102629467844963, 0.01849612593650818, -0.009934511035680771,
- 0.04526887461543083, 0.13961121439933777, 0.01134482491761446, -0.021280135959386826,
- 0.10018280148506165, -0.06384140253067017, 0.013124140910804272, 0.005272090435028076,
- 0.07711908966302872, -0.11332324892282486, 0.002063671825453639, -0.007074512541294098,
- -0.0032043636310845613, 0.06414064764976501, -0.02324530854821205, -0.08938450366258621,
- -0.020921645686030388, 0.100620336830616, -0.022545956075191498, 0.03471923992037773,
- 0.016456881538033485, -0.014114420861005783, 0.0449351966381073, 0.10956808179616928,
- -0.026856927201151848, -0.0001558272197144106, 0.026834093034267426, 0.0757957473397255,
- -0.039599061012268066, 0.001758102560415864, -0.0015596350422129035,
- 0.02327369712293148, -0.030976861715316772, -0.020230576395988464, 0.07772688567638397,
- 0.026242850348353386, -0.07335282117128372, 0.03845106437802315, 0.006436124909669161,
- -0.03201315924525261, 0.09897913038730621, -0.08437733352184296, -0.04217233136296272,
- -0.00386443710885942, 0.019337445497512817, 0.02297358214855194, -0.06917928904294968,
- 0.07072493433952332, 0.07582685351371765, 0.06052090600132942, 0.05102758854627609,
- 0.01580195687711239, 0.06341191381216049, 0.04601161926984787, 0.06723230332136154,
- 0.06184052675962448, -0.03577645868062973, -0.05926108360290527, -0.010087731294333935,
- 0.03979998826980591, 0.05612098425626755, 0.05886409804224968, -0.07065741717815399,
- -0.01451820693910122, 0.03656512498855591, 0.002238375134766102, -0.049551114439964294,
- -0.006648614536970854, 0.08167426288127899, 0.016568461433053017, -0.014338424429297447,
- -0.10600371658802032, -0.12384621798992157, -0.021217187866568565, 0.044506337493658066,
- -0.08506499975919724, -0.01171131618320942, -0.0668833777308464, -0.04588116332888603,
- -0.011022143997251987, 0.04129152372479439, 0.0031240172684192657, 0.028400704264640808,
- 0.0432422049343586, -0.048164043575525284, 0.025860877707600594,
- -0.00014329349505715072, -0.06801825761795044, -0.03513331338763237,
- -0.051885560154914856, -0.031939778476953506, 0.04115517809987068, -0.01929847151041031,
- 0.007135200314223766, 0.034195855259895325, 0.07167593389749527, 0.0398566909134388,
- -0.0028024569619446993, -0.03585190325975418, 0.043844785541296005,
- 0.004497111774981022, -0.004586902912706137, 0.06935707479715347, -0.003554177237674594,
- 0.04375820234417915, -0.03777896240353584, -0.09067407250404358, -0.05588415265083313,
- -0.03714025020599365, -0.04427127540111542, 0.011989903636276722, -0.030640272423624992,
- 0.031086701899766922, -0.03331713005900383, -0.061027318239212036, 0.0601964071393013,
- -0.07385719567537308, -0.031344860792160034, -0.0840783566236496, 0.1159585490822792,
- 0.011637934483587742, -0.0334293395280838, 0.024581190198659897, -0.06380763649940491,
- 0.08324103057384491, -0.03574127331376076, -0.022295748814940453, 0.07611627876758575,
- 0.050242576748132706, -0.004454384557902813, -0.003706191433593631, 0.07571674138307571,
- 0.05858937278389931, 0.02052774280309677, 0.025324566289782524, 0.42855408787727356,
- -0.2795962989330292, 0.06457903236150742, 0.034651149064302444, 0.0014501346740871668,
- 0.05277985706925392, 0.021248405799269676, 0.050155043601989746, 0.10491594672203064,
- 0.11773619055747986, 0.07190542668104172, -0.041163742542266846, -0.014879264868795872,
- -0.06436953693628311, 0.11953923851251602, 0.0351295992732048, -0.029088161885738373,
- 0.013967503793537617, -0.05576353520154953, -0.026958413422107697,
- 0.0056108469143509865, -0.03206859529018402, 0.017294982448220253, 0.07057022303342819,
- -0.03248578682541847, 0.04467352479696274, 0.01270260475575924, -0.007517786230891943,
- -0.052593715488910675, 0.028207210823893547, -0.017209568992257118,
- 0.020291917026042938, -0.0036597480066120625, 0.027042994275689125,
- -0.050048355013132095, 0.02492540515959263, -0.11768963187932968, -0.08513060957193375,
- 0.08138559758663177, -0.06532497704029083, 0.014261840842664242, 0.032450903207063675,
- -0.0055292025208473206, 0.0428314246237278, -0.007134977728128433,
- -0.026503486558794975, 0.010728319175541401, 0.029531467705965042, -0.02183983102440834,
- 0.07625970989465714, 0.14585237205028534, -0.05449453741312027, -0.044380709528923035,
- -0.071988545358181, 0.04240620508790016, 0.11264589428901672, -0.021824456751346588,
- 0.02747921831905842, -0.02237415313720703, -0.02783576399087906, -0.007271175272762775,
- -0.0036669522523880005, -0.10287777334451675, -0.036965202540159225,
- -0.03824147209525108, 0.08966343849897385, 0.02909071184694767, -0.07200372219085693,
- -0.1867213100194931, -0.004784632474184036, -0.03303856775164604, 0.001045551965944469,
- 0.08458049595355988, -0.048214562237262726, 0.030789541080594063, -0.04444507509469986,
- -0.00034256241633556783, -0.04894266277551651, -0.060354866087436676,
- -0.009225877933204174, -0.04845980927348137, 0.03545580431818962, 0.009087874554097652,
- 0.04191901907324791, -0.03608632832765579, 0.07819893956184387, -0.10457522422075272,
- 0.05819256231188774, 0.033814433962106705, -0.00576407415792346, 0.04802217707037926,
- -0.017139840871095657, 0.024417966604232788, -0.03344243764877319, -0.01315144170075655,
- 0.020143117755651474, 0.0059255575761199, -0.031665168702602386, -0.06668263673782349,
- -0.04676743596792221, -0.027791403234004974, -0.07653025537729263, 0.0708031877875328,
- -0.04719007387757301, -0.054746903479099274, 0.0013474810402840376, 0.02179613895714283,
- 0.0068331267684698105, 0.05110044777393341, -0.001433812896721065, -0.154799684882164,
- -0.06820059567689896, -0.0447002537548542, 0.07122933119535446, -0.008060150779783726,
- -0.006399813573807478, 0.015005424618721008, 0.06429647654294968, 0.07654593884944916,
- -0.016236860305070877, 0.030825220048427582, -0.07631446421146393, 0.010108980350196362,
- -0.047380827367305756, -0.5557425618171692, 0.05308679863810539, 0.01712295599281788,
- -0.007043708581477404, 0.03719023987650871, -0.06928303837776184, 0.042860884219408035,
- 0.012880377471446991, -0.07149724662303925, 0.07438268512487411, -0.053293626755476,
- 0.04977848380804062, 0.010326259769499302, -0.022249186411499977, -0.01879943162202835,
- -0.050783902406692505, -0.006213032640516758, 0.0883665606379509, -0.046360310167074203,
- -0.07170454412698746, -0.08334744721651077, 0.009245771914720535, 0.009466275572776794,
- 0.03678872808814049, -0.030697638168931007, 0.016982296481728554, -0.08083133399486542,
- -0.04704641178250313, 0.03376707062125206, 0.09507256001234055, 0.051461152732372284,
- -0.05279816687107086, 0.012915288098156452, 0.06906761974096298, 0.007451859302818775,
- 0.09862903505563736, 0.031147077679634094, -0.0768309235572815, -0.04431193321943283,
- 0.05662911385297775, 0.0333428680896759, 0.18831796944141388, -0.0007990092854015529,
- 0.03498411551117897, 0.018145063892006874, 0.13237537443637848, -0.00832971092313528,
- -0.01891319267451763, -0.04846526309847832, 0.013837444595992565, 0.022225268185138702,
- 0.013653868809342384, 0.09164320677518845, -0.0792418122291565, -0.015216812491416931,
- -0.02393653802573681, 0.020658550783991814, -0.06067076697945595, -0.023798691108822823,
- 0.247355118393898, 0.030394263565540314, 0.07384610176086426, -0.033207543194293976,
- -0.06726723909378052, -0.0010200439719483256, -0.09173832088708878,
- -0.06297683715820312, -0.039741650223731995, 0.020595351234078407,
- -0.030409248545765877, -0.013126980513334274, -0.09923450648784637,
- -0.012975444085896015, 0.013398856855928898, -0.006127060856670141,
- 0.047558292746543884, -0.027613859623670578, 0.08610773086547852, -0.019984858110547066,
- 0.11626804620027542, 0.05970287695527077, 0.06790336966514587, 0.04387702792882919,
- 0.12525393068790436, 0.0431043840944767, -0.02704385668039322, -0.0762094110250473,
- -0.0730518326163292, 0.030469007790088654, 0.13570508360862732, -0.07373104989528656,
- 0.11810892820358276, 0.02852509170770645, -0.05231030657887459, -0.016933249309659004,
- -0.003992049489170313, -0.019006330519914627, 0.033912621438503265, -0.471718430519104,
- -0.04653564468026161, 0.13411369919776917, 0.01260867528617382, 0.002695289207622409,
- 0.06331318616867065, -0.009465125389397144, -0.03323989734053612, -0.013540181331336498,
- -0.08190728724002838, 0.1449868530035019, -0.04745699092745781, 0.06773298978805542,
- -0.031455621123313904, -0.00654072780162096, 0.0703405812382698, -0.062046751379966736,
- -0.03736092150211334, 0.033478863537311554, -0.15694870054721832,
- -0.0007599276141263545, -0.030160143971443176, 0.12330735474824905,
- 0.004342375323176384, 0.030627276748418808, 0.10585761070251465, -0.0542520247399807,
- 0.01477978378534317, 0.01872197724878788, -0.04650625213980675, 0.01028607226908207,
- 0.054670073091983795, -0.022921495139598846, 0.053447287529706955, 0.07701516151428223,
- 0.13165514171123505, -0.017744677141308784, 11.86449146270752, 0.07407582551240921,
- 0.07150103896856308, -0.03653808683156967, 0.036297306418418884, -0.05907344073057175,
- 0.013097431510686874, -0.05892813950777054, 0.06906257569789886, 0.10764924436807632,
- 0.010323948226869106, 0.028972743079066277, -0.03382164612412453, -0.09964902698993683,
- 0.029575729742646217, 0.008165710605680943, -0.0351627841591835, -0.04508613049983978,
- 0.03886091336607933, -0.02931228093802929, 0.009314543567597866, 0.07378419488668442,
- 0.0646970197558403, 0.0435897633433342, -0.08701813220977783, -0.025876514613628387,
- 0.004295503254979849, -0.02925289049744606, 0.03537106513977051, 0.026736702769994736,
- 0.017642974853515625, 0.021460620686411858, 0.01442828681319952, 0.031109316274523735,
- 0.10639897733926773, -0.02716788649559021, 0.06545388698577881, 0.041527505964040756,
- 0.0050951954908668995, 0.05329058691859245, 0.014890179969370365, -0.059101201593875885,
- 0.030499150976538658, 0.04605318233370781, 0.05776248872280121, 0.04263203963637352,
- 0.08371655642986298, 0.07463692873716354, 0.05057033151388168, 0.0890933945775032,
- 0.07388825714588165, -0.039994072169065475, 0.11627841740846634, 0.002103216014802456,
- -0.013292510993778706, 0.10530946403741837, 0.004424032289534807, -0.044928066432476044,
- 0.0716974139213562, 0.044080618768930435, -0.05887060984969139, 0.08710691332817078,
- 0.030696984380483627, 0.1545535773038864, -0.030621645972132683, 0.078694187104702,
- 0.10392673313617706, 0.07730402797460556, -0.08537749946117401, -0.046355150640010834,
- 0.004630344454199076, -0.11676929891109467, -0.03181576356291771, -0.03705208748579025,
- 0.030740167945623398, -0.06402798742055893, 0.01345710176974535, -0.053779225796461105,
- 0.015362480655312538, -0.030275236815214157, 0.002162936143577099, 0.02575286291539669,
- -0.053027961403131485, -0.054054200649261475, 0.10801733285188675, 0.016855135560035706,
- 0.0975395143032074, 0.11794065684080124, 0.004724916536360979, -0.16345274448394775,
- -0.012188478372991085, 0.13003407418727875, -0.023858893662691116, -0.06987714022397995,
- 0.0014284808421507478, -0.053732942789793015, 0.014410489238798618,
- -0.18581512570381165, 0.04068247601389885, 0.16181568801403046, -0.11892818659543991,
- -0.004405247513204813, -0.035076938569545746, 0.09102056175470352,
- -0.017060142010450363, 0.010260403156280518, -0.07110489904880524, 0.06265540421009064,
- -0.033621419221162796, -0.015519765205681324, -0.05971657112240791,
- 0.051699258387088776, 0.09645743668079376, -0.033157091587781906, 0.01996229961514473,
- 0.021156616508960724, -0.028513344004750252, -0.05341988056898117, 0.026096878573298454,
- -0.005964504089206457, -0.07241787761449814, 0.012437986209988594, -0.01581440307199955,
- -0.05468492582440376, -0.007829219102859497, -0.060925427824258804,
- 0.031281400471925735, 0.07431155443191528, -0.014834198169410229, -0.015315432101488113,
- 0.02174634113907814, 0.05936497077345848, 0.03194994106888771, -0.040634363889694214,
- 0.04263254627585411, -0.028355654329061508, -0.04506377503275871, 0.05110646411776543,
- 0.07690394669771194, 0.09885023534297943, -0.06312984228134155, -0.08401421457529068,
- 0.013407296501100063, -0.10461962968111038, 0.007746994495391846, 0.08361094444990158,
- 0.03740166872739792, 0.05008289963006973, 0.05705781653523445, -0.10017819702625275,
- -0.05530627816915512, 0.06859884411096573, -0.0297705065459013, -0.02403135597705841,
- 0.043753232806921005, -0.059391338378190994, -0.017583448439836502, 0.07658738642930984,
- -0.033247943967580795, -0.01620439812541008, -0.05252720043063164,
- -0.0026579329278320074, 0.10119123756885529, 0.02069149538874626, 0.0913928747177124,
- -0.067524753510952, -0.0023800379130989313, 0.02438771165907383, -0.0007537463097833097,
- 0.05215493217110634, 0.03572244569659233, -0.004855728708207607, -0.14235273003578186,
- -0.07364216446876526, 0.06430016458034515, 0.08856862038373947, 0.05920913815498352,
- -0.12544938921928406, -0.023851823061704636, -0.0068871211260557175
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 363,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 160,
- "similarity": 0.9977766275405884
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 309,
- "similarity": 0.9977476596832275
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 87,
- "similarity": 0.9976879954338074
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Steven Morris"],
- "epoch_date_downloaded": 1663804800,
- "epoch_date_modified": 1665619200,
- "epoch_date_submitted": 1663804800,
- "flag": null,
- "report_number": 2130,
- "source_domain": "theguardian.com",
- "submitters": ["Khoa Lam"],
- "title": "Facebook apologises for flagging Plymouth Hoe as offensive term",
- "url": "https://www.theguardian.com/uk-news/2021/jan/27/facebook-apologises-flagging-plymouth-hoe-offensive-term"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "walmart",
- "name": "Walmart"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "everseen",
- "name": "Everseen"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "walmart-employees",
- "name": "Walmart employees"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [2131],
- "vector": [
- -0.07352086901664734, 0.06654175370931625, 0.031527504324913025, -0.1131354495882988,
- 0.11752796918153763, -0.0316053070127964, -0.021640101447701454, 0.05897362902760506,
- 0.05028090626001358, -0.09625684469938278, -0.015827883034944534, 0.05828449875116348,
- 0.025764239951968193, -0.04534246772527695, 0.04453391954302788, -0.07114257663488388,
- -0.04866507276892662, -0.053581759333610535, -0.02639862895011902, -0.12538450956344604,
- -0.05722276493906975, 0.0047133928164839745, 0.01947675831615925, 0.08190314471721649,
- -0.03340434283018112, -0.01605278067290783, 0.10708843171596527, 0.12953504920005798,
- 0.013835323974490166, -0.025990229099988937, -0.023729296401143074,
- -0.04507298395037651, 0.09880863130092621, 0.00558225205168128, -0.01131023745983839,
- 0.06567680090665817, 0.019653433933854103, -0.06049458682537079, -0.05645172297954559,
- 0.0031437668949365616, 0.010159318335354328, 0.19610926508903503, 0.02239936962723732,
- -0.06022141873836517, 0.017800118774175644, 0.005740711931139231, 0.017400389537215233,
- 0.04974650591611862, -0.008601699024438858, -0.03061574697494507, 0.0031852894462645054,
- 0.07466119527816772, -0.03625091537833214, 0.04607226699590683, -0.08691933006048203,
- 0.05429193750023842, 0.03586990386247635, 0.0057593705132603645, 0.05656004697084427,
- -0.09326967597007751, 0.022168714553117752, -0.1837805211544037, -0.013646927662193775,
- -0.07043073326349258, 0.08255615085363388, -0.052666809409856796, -0.0584191232919693,
- 0.027611948549747467, -0.005723936948925257, 0.06409094482660294, 0.10168716311454773,
- -0.013554194942116737, -0.0224923063069582, 0.02472876012325287, -0.04265034198760986,
- -0.03082895465195179, 0.01687460020184517, 0.197825625538826, -0.08849828690290451,
- -0.019802117720246315, 0.0890960544347763, -0.09894023090600967, 0.3958072066307068,
- 0.05247119069099426, 0.03228040412068367, -0.08534849435091019, 0.048087313771247864,
- 0.030663857236504555, 0.018409324809908867, 0.04699239879846573, -0.02688487432897091,
- 0.06619836390018463, -0.10272838920354843, 0.016919497400522232, 0.07224985957145691,
- 0.016010230407118797, -0.026558279991149902, -0.011861828155815601, 0.02210012637078762,
- -0.07188969105482101, -0.004600480664521456, -0.056323740631341934, 0.12427457422018051,
- 0.01609068736433983, -0.03730875253677368, -0.030761664733290672, 0.0805630162358284,
- -0.026473810896277428, 0.07921816408634186, -0.06377172470092773, 0.04792676866054535,
- -0.03098241053521633, 0.029139218851923943, -0.004010844510048628, 0.028797660022974014,
- -0.05067824199795723, 0.0016697358805686235, 0.0648508295416832, 0.09670711308717728,
- 0.041989363729953766, 0.029486902058124542, 0.06707851588726044, 0.08871394395828247,
- -0.012898418121039867, -0.019706863909959793, -0.04175214096903801,
- -0.030991533771157265, -0.04269442707300186, -0.0596187524497509, 0.026338638737797737,
- -0.022319279611110687, -0.1813458800315857, 0.0021780934184789658, 0.13172273337841034,
- 0.0185204166918993, -0.03548493608832359, 0.04890234395861626, -0.056249454617500305,
- 0.0455176867544651, 0.0030670124106109142, -0.0630204826593399, 0.03767816349864006,
- 0.025615058839321136, 0.027973145246505737, 0.14977462589740753, 0.02208298072218895,
- -0.03442636877298355, -0.0892033576965332, 0.019519999623298645, -0.017252527177333832,
- 0.11719971895217896, -0.09845894575119019, -0.04111386835575104, 0.022576961666345596,
- -0.03543410822749138, 0.6737045049667358, 0.10694881528615952, 0.2111295461654663,
- 0.003990593831986189, -0.029436279088258743, 0.15824876725673676, -0.03418973833322525,
- 0.04989911615848541, -0.03368629142642021, -0.11111417412757874, 0.036907609552145004,
- -0.06591455638408661, -0.017868926748633385, 0.06073584407567978, 0.021822167560458183,
- 0.13838598132133484, 0.018926694989204407, 0.06342095136642456, -0.00879532191902399,
- -0.08752765506505966, -0.013717347756028175, 0.09057053178548813, -0.005945473909378052,
- -0.13601231575012207, -0.02658875845372677, 0.05302083119750023, 0.06839121133089066,
- -0.11263430118560791, 0.007226027548313141, -0.04767744988203049, 0.016571423038840294,
- -0.023307912051677704, 0.06615215539932251, -0.01327873021364212, 0.0427112951874733,
- 0.036825135350227356, 0.03453545272350311, 0.052241139113903046, -0.12829922139644623,
- -0.02341723069548607, 0.10153438150882721, -0.015313203446567059, 0.01653660275042057,
- 0.07894878089427948, -0.08836331963539124, 0.05287277325987816, -0.06453881412744522,
- 0.17859050631523132, -0.130547434091568, -0.002162695163860917, 0.000404410035116598,
- 0.009366238489747047, 0.03727302700281143, 0.027541302144527435, -0.04622459039092064,
- -0.0675792470574379, 0.07584893703460693, 0.01604710891842842, 0.058198705315589905,
- 0.0407516211271286, -0.03247147053480148, 0.008269967511296272, 0.08116793632507324,
- -0.04454387351870537, -0.0006902432069182396, 0.04485396668314934, 0.07770363986492157,
- -0.009289070032536983, -0.014972302131354809, 0.013224939815700054, 0.05544905737042427,
- 0.044875018298625946, -0.011876922100782394, 0.0070248497650027275,
- -0.0014598681591451168, -0.039172448217868805, 0.03774995729327202, 0.02149556204676628,
- 0.03105291910469532, 0.12158294022083282, -0.0450984425842762, -0.035840392112731934,
- -0.060751114040613174, -0.06187501549720764, 0.06683973968029022, -0.03084317222237587,
- 0.05301441624760628, 0.04995691031217575, 0.09865692257881165, 0.012896394357085228,
- 0.0699257105588913, 0.059589073061943054, 0.09481135755777359, 0.007600563578307629,
- 0.0613681934773922, -0.041787296533584595, -0.016451435163617134, -0.01893485151231289,
- 0.00008101579442154616, 0.03339409828186035, 0.005130123347043991, -0.04218604415655136,
- -0.0048135616816580296, -0.025261856615543365, -0.06347944587469101,
- -0.030552620068192482, -0.0860256776213646, 0.010583705268800259, 0.02242734283208847,
- -0.05181242898106575, -0.11250881850719452, -0.0759711042046547, 0.007157562300562859,
- 0.058362554758787155, -0.012542068026959896, -0.011126631870865822,
- -0.10176943242549896, -0.00018477096455171704, 0.018997853621840477,
- 0.04213109612464905, 0.03620091453194618, 0.01236574538052082, 0.02818424440920353,
- -0.021647509187459946, 0.061639804393053055, -0.02059730887413025, -0.03999621421098709,
- -0.07246125489473343, -0.011942957527935505, -0.0763620138168335, 0.035404548048973083,
- 0.02414970099925995, -0.024784160777926445, 0.005593142006546259, 0.059098534286022186,
- 0.044420238584280014, -0.0125079695135355, -0.03839797154068947, 0.03828537091612816,
- -0.018236353993415833, -0.004957808647304773, 0.04229412600398064,
- -0.022080419585108757, 0.08455534279346466, -0.012071644887328148, -0.07100986689329147,
- -0.0445140115916729, -0.03256252408027649, -0.01455614622682333, 0.0431850403547287,
- -0.00011574978998396546, 0.02818801999092102, -0.061175279319286346,
- 0.0000760686889407225, 0.059775106608867645, -0.07365746796131134, -0.11921083182096481,
- -0.0694553554058075, 0.11527026444673538, 0.033443253487348557, -0.007012746296823025,
- 0.04887622594833374, -0.029836520552635193, 0.04720240831375122, -0.029968764632940292,
- -0.001234548632055521, 0.01672777347266674, 0.023594189435243607, 0.013520360924303532,
- 0.0096000200137496, 0.06097663566470146, -0.07100336998701096, 0.026013651862740517,
- 0.012574122287333012, 0.4197380542755127, -0.18707387149333954, 0.11605467647314072,
- 0.0576995313167572, 0.04660453647375107, 0.05615459010004997, -0.057392414659261703,
- 0.048167213797569275, 0.09860672056674957, 0.1088409423828125, 0.045717332512140274,
- -0.04568082094192505, 0.00028086506063118577, -0.1439858078956604, 0.10003684461116791,
- 0.00044664720189757645, -0.041043732315301895, -0.006006798706948757,
- -0.08450089395046234, -0.02616145648062229, 0.061216872185468674, -0.039241205900907516,
- -0.017780417576432228, 0.01593106985092163, 0.0028087010141462088, 0.013114692643284798,
- -0.01469937339425087, 0.008972575888037682, 0.0008013607002794743, 0.01825547404587269,
- 0.024953221902251244, 0.08915862441062927, 0.05646960064768791, 0.02049756795167923,
- -0.09992677718400955, 0.04342392832040787, -0.0826335996389389, -0.06795866787433624,
- 0.09660439193248749, -0.009988021105527878, 0.039703257381916046, 0.050585996359586716,
- -0.06171127408742905, 0.0009657316841185093, 0.03797271102666855, -0.07200667262077332,
- 0.010952978394925594, 0.0553828701376915, 0.036485809832811356, 0.07876136153936386,
- 0.1834941953420639, -0.03721397742629051, -0.09086247533559799, -0.059562936425209045,
- 0.07525065541267395, 0.10796654224395752, -0.003857356496155262, 0.005208170972764492,
- 0.04614375904202461, -0.07912171632051468, -0.027485515922307968, -0.04325754567980766,
- -0.11816735565662384, -0.036892119795084, -0.03527522459626198, 0.04400982707738876,
- 0.0316879041492939, -0.03363259136676788, -0.17027901113033295, -0.04906902834773064,
- -0.0781518891453743, 0.027637679129838943, 0.10686825960874557, -0.046221546828746796,
- 0.08836959302425385, 0.0074161868542432785, -0.04967009276151657, -0.003323238343000412,
- -0.05361223220825195, 0.0032743874471634626, 0.0007791401585564017, 0.04567041993141174,
- 0.056251317262649536, 0.038566626608371735, -0.01160829234868288, 0.085906021296978,
- -0.05035367235541344, 0.06209331750869751, 0.022541828453540802, -0.012754665687680244,
- 0.05170402675867081, -0.0381438210606575, 0.013383818790316582, 0.026825716719031334,
- -0.005503882188349962, -0.009891525842249393, -0.0007567777065560222,
- -0.04128291830420494, -0.09332384169101715, -0.0034103672951459885, -0.0170406736433506,
- -0.08210491389036179, 0.04379347711801529, -0.12357017397880554, -0.012124228291213512,
- -0.011610682122409344, -0.05181591957807541, 0.024111561477184296, 0.02221817523241043,
- -0.013416331261396408, -0.1654864251613617, -0.0008279519388452172,
- 0.0013557577040046453, 0.06577152013778687, 0.041514478623867035, -0.03518053516745567,
- 0.05294942483305931, 0.1565321683883667, 0.06419268995523453, -0.02564127743244171,
- 0.015609132125973701, -0.06234211474657059, 0.037839509546756744, -0.08898929506540298,
- -0.5517596006393433, 0.05568398907780647, 0.01419867668300867, 0.02380763739347458,
- 0.05194889381527901, -0.06804066151380539, 0.04085218906402588, -0.01806456781923771,
- -0.01865525171160698, 0.0773543044924736, -0.053669482469558716, 0.021009447053074837,
- 0.0012039549183100462, -0.024606799706816673, -0.04137974604964256,
- -0.05906644091010094, -0.007863320410251617, 0.047071125358343124,
- -0.048670727759599686, -0.0712001845240593, -0.13787777721881866, 0.027590436860919,
- -0.022294051945209503, -0.0013412210391834378, 0.027292612940073013,
- -0.0018527585780248046, -0.08544878661632538, -0.03338627889752388, 0.03772151842713356,
- 0.05240211635828018, 0.051214538514614105, -0.059511348605155945, -0.019727591425180435,
- 0.011525839567184448, -0.029124099761247635, 0.13216133415699005, 0.03722332417964935,
- -0.019750626757740974, -0.051207732409238815, 0.061732497066259384,
- 0.060829151421785355, 0.18957261741161346, 0.026426618918776512, 0.05082639306783676,
- -0.0052276840433478355, 0.12900590896606445, 0.031788986176252365, 0.026180122047662735,
- -0.028274917975068092, -0.026562675833702087, 0.029737794771790504,
- -0.028734862804412842, 0.05585470050573349, -0.05877828225493431, -0.034074798226356506,
- -0.026100046932697296, 0.0015369509346783161, -0.047133613377809525,
- -0.0013600660022348166, 0.2238195538520813, 0.023453006520867348, 0.03608345612883568,
- 0.039473630487918854, -0.05031154677271843, 0.02671215869486332, -0.04932550713419914,
- -0.13650113344192505, -0.040330853313207626, -0.005938895046710968,
- 0.003156873397529125, -0.021058907732367516, -0.10767418146133423,
- -0.023517318069934845, 0.01948242448270321, 0.004518530797213316, 0.1295834630727768,
- 0.013812263496220112, 0.017768623307347298, -0.018648158758878708, 0.1080184280872345,
- 0.006156145129352808, 0.007869688794016838, 0.06872446835041046, 0.13426756858825684,
- 0.07016152888536453, 0.024603664875030518, -0.10067913681268692, -0.049552515149116516,
- 0.038986507803201675, 0.11449852585792542, -0.05496594309806824, 0.13448405265808105,
- 0.06250739842653275, -0.047340426594018936, -0.04235776141285896, 0.03274194523692131,
- 0.009850476868450642, 0.020512815564870834, -0.4923761785030365, -0.027173614129424095,
- 0.10260440409183502, 0.033924032002687454, 0.0021923244930803776, 0.08421865105628967,
- -0.053936488926410675, -0.03522583842277527, -0.015671011060476303,
- -0.07977375388145447, 0.09294931590557098, 0.02365664206445217, 0.06781739741563797,
- -0.12807881832122803, 0.00026965816505253315, 0.06512627750635147,
- 0.0003113197162747383, -0.026264632120728493, 0.05855625495314598, -0.25936761498451233,
- 0.04777917638421059, -0.016795549541711807, 0.036892905831336975, 0.0209431741386652,
- 0.02093414030969143, 0.06591687351465225, -0.06712822616100311, 0.0870123878121376,
- 0.054296884685754776, 0.005534437019377947, 0.07641436159610748, -0.02569703944027424,
- -0.028454452753067017, 0.07619164884090424, 0.06320103257894516, 0.14555127918720245,
- -0.023135226219892502, 11.765588760375977, 0.03275066614151001, 0.026439983397722244,
- -0.07555276900529861, 0.022684989497065544, -0.05285312607884407, 0.029741879552602768,
- -0.03467819094657898, 0.07259606570005417, 0.1413198858499527, -0.05150580033659935,
- -0.025152631103992462, -0.06617143005132675, -0.09083913266658783, 0.05271041393280029,
- -0.03156706318259239, -0.06979742646217346, -0.07699362933635712, -0.014539779163897038,
- -0.03860438987612724, -0.03465960919857025, 0.10393073409795761, 0.05991490185260773,
- 0.025243209674954414, -0.035146843641996384, 0.02219877764582634, 0.0144933657720685,
- -0.024284865707159042, 0.012892845086753368, 0.020009620115160942, 0.014854350127279758,
- -0.006285907234996557, 0.055232685059309006, -0.008054387755692005,
- 0.054401420056819916, 0.019631968811154366, 0.09199674427509308, 0.01994118094444275,
- 0.05193261429667473, 0.08555984497070312, 0.018168387934565544, 0.020133040845394135,
- 0.0021618108730763197, 0.019659820944070816, 0.06179055571556091, 0.08987165987491608,
- 0.013648084364831448, 0.12230032682418823, 0.015521018765866756, 0.06721638888120651,
- 0.08920808881521225, -0.024015435948967934, 0.09542425721883774, -0.01778746023774147,
- -0.011653146706521511, 0.04653465747833252, 0.021988168358802795, -0.06536773592233658,
- 0.056665681302547455, 0.10488756000995636, -0.05895886570215225, 0.107573501765728,
- -0.009321686811745167, 0.1002245619893074, -0.039360012859106064, 0.09979292750358582,
- 0.029801569879055023, 0.10241133719682693, -0.11339560151100159, -0.06562566757202148,
- 0.003834493923932314, -0.13435566425323486, -0.08266131579875946, 0.03030659817159176,
- 0.1480545848608017, -0.05971773713827133, -0.017458559945225716, -0.008554475381970406,
- 0.02938830852508545, -0.040190137922763824, 0.0010624417336657643, 0.07839484512805939,
- -0.013481101021170616, -0.006672739051282406, 0.051712654531002045,
- 0.013372652232646942, 0.04916331544518471, 0.08521999418735504, -0.046212781220674515,
- -0.07581959664821625, -0.04030214995145798, 0.08827538043260574, -0.02107684686779976,
- -0.08378368616104126, -0.002990818116813898, -0.06442641466856003, 0.06846529245376587,
- -0.1425197571516037, 0.053211987018585205, 0.05948878452181816, -0.05038535222411156,
- 0.011999937705695629, -0.046806544065475464, 0.03737299144268036, 0.016507122665643692,
- 0.02467484027147293, -0.04418912157416344, 0.0013246696908026934, -0.031597163528203964,
- -0.008454572409391403, -0.051961105316877365, 0.05383293330669403, 0.07634885609149933,
- -0.03492235764861107, 0.04257526248693466, 0.02386053279042244, -0.025775518268346786,
- -0.047903403639793396, 0.08199649304151535, 0.033637743443250656, -0.056745000183582306,
- -0.022000128403306007, -0.03509315475821495, -0.021689483895897865,
- -0.03603845462203026, -0.031121544539928436, -0.008173778653144836,
- 0.011109822429716587, -0.08226923644542694, -0.005656606983393431, 0.00559502886608243,
- 0.04695236310362816, 0.047077763825654984, 0.011889313347637653, 0.05756703391671181,
- -0.056493181735277176, -0.05956418812274933, 0.06531228125095367, 0.046706244349479675,
- 0.07260613888502121, -0.04994506761431694, -0.024250434711575508, -0.05844569951295853,
- -0.08787162601947784, 0.007254800293594599, 0.07261800765991211, 0.028095098212361336,
- 0.02588171698153019, -0.017860176041722298, -0.03829345107078552, -0.04906449839472771,
- 0.11767943948507309, 0.033746302127838135, 0.026794156059622765, 0.04414526745676994,
- -0.0647139847278595, -0.013290722854435444, 0.057040080428123474, -0.04680493846535683,
- 0.023179080337285995, 0.04412739351391792, -0.017746442928910255, 0.07469142228364944,
- 0.0777382031083107, -0.004827125929296017, 0.024491513147950172, 0.006283132825046778,
- 0.015162273310124874, 0.03942777216434479, -0.025865565985441208, 0.061075590550899506,
- -0.0028851425740867853, -0.12902499735355377, -0.06720670312643051, 0.0537031926214695,
- 0.08927365392446518, 0.0696541965007782, -0.1734170913696289, -0.035091836005449295,
- -0.01670789159834385
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 364,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 10,
- "similarity": 0.9981324076652527
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 51,
- "similarity": 0.9980081915855408
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 2,
- "similarity": 0.9979886412620544
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Dave Jamieson"],
- "epoch_date_downloaded": 1663804800,
- "epoch_date_modified": 1665619200,
- "epoch_date_submitted": 1663804800,
- "flag": null,
- "report_number": 2131,
- "source_domain": "huffpost.com",
- "submitters": ["Devon Colmer (CSET)"],
- "title": "Self-Checkout Headaches May Be Putting Walmart Workers Too Close To Shoppers",
- "url": "https://www.huffpost.com/entry/self-checkout-headaches-may-be-putting-walmart-workers-too-close-to-shoppers_n_5ec3e5f9c5b68a8b77d87816"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "tiktok",
- "name": "TikTok"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "tiktok",
- "name": "TikTok"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "tiktok-users",
- "name": "TikTok users"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [2140],
- "vector": [
- -0.08742781728506088, 0.059138521552085876, 0.0006531756953336298, -0.08642331510782242,
- 0.17047059535980225, -0.01135061401873827, -0.018915588036179543, 0.06159059330821037,
- 0.0492553785443306, -0.14988702535629272, 0.012259379029273987, 0.022314410656690598,
- 0.018241947516798973, -0.12016599625349045, 0.047848060727119446, -0.033126864582300186,
- -0.10251713544130325, -0.08274870365858078, -0.026294618844985962, -0.15447208285331726,
- -0.05324150249361992, -0.018396947532892227, 0.09052912145853043, 0.09350287914276123,
- -0.10393701493740082, 0.02458888851106167, 0.10964414477348328, 0.1201511099934578,
- 0.004577145911753178, 0.035960473120212555, -0.03852357342839241, -0.05511590465903282,
- 0.11628499627113342, 0.007686615455895662, -0.0000717833754606545, 0.08240296691656113,
- 0.06386103481054306, -0.009213133715093136, -0.015685195103287697, 0.05225371941924095,
- -0.03017507493495941, 0.2320593148469925, 0.04636862501502037, -0.06605798006057739,
- 0.005035618785768747, -0.04255841299891472, 0.018992802128195763, 0.07384379208087921,
- 0.018327970057725906, -0.008438152261078358, -0.03542298451066017, 0.07563900202512741,
- -0.04663917422294617, 0.02129768766462803, -0.14551210403442383, 0.04350753873586655,
- 0.09388155490159988, -0.06059399992227554, 0.04476844146847725, -0.11123060435056686,
- -0.04580805078148842, -0.2730599045753479, -0.030572883784770966, -0.0773388221859932,
- 0.09564369171857834, -0.09745436161756516, -0.03539098799228668, 0.017392607405781746,
- 0.031370148062705994, 0.09217873215675354, 0.07101505249738693, -0.0654374435544014,
- -0.03165910765528679, 0.09646859019994736, 0.04609305039048195, -0.0017728990642353892,
- 0.05795874819159508, 0.256184458732605, -0.1483326256275177, 0.005691999569535255,
- 0.12938304245471954, -0.133171945810318, 0.5218310952186584, 0.0027150812093168497,
- -0.004871864337474108, -0.11986375600099564, 0.08960996568202972, 0.037662386894226074,
- 0.06579718738794327, 0.062312010675668716, -0.054481543600559235, 0.05305106192827225,
- -0.10377448797225952, 0.0733548104763031, 0.11117622256278992, 0.029746901243925095,
- -0.09995288401842117, 0.12379024922847748, -0.03862385451793671, -0.08330722898244858,
- -0.015856267884373665, -0.03458886221051216, 0.04817919433116913, 0.0658360943198204,
- -0.05450490489602089, 0.009169518016278744, -0.008149681612849236,
- -0.049616072326898575, 0.08814622461795807, -0.10820094496011734, 0.017510227859020233,
- -0.07114037871360779, 0.04064968228340149, -0.03350743651390076, 0.06046174466609955,
- 0.0202958807349205, 0.03206450492143631, 0.13877856731414795, 0.11291433125734329,
- 0.023600509390234947, 0.022679632529616356, 0.08852404356002808, 0.08255694806575775,
- -0.042292654514312744, 0.01958656683564186, -0.044632039964199066, -0.06732666492462158,
- -0.07528340071439743, -0.029276829212903976, 0.03371148928999901, -0.05467595160007477,
- -0.24435120820999146, 0.02365540713071823, 0.14068160951137543, 0.0368783101439476,
- -0.06746410578489304, 0.01801917888224125, -0.06366299837827682, -0.03144491836428642,
- -0.08962757140398026, -0.08602315932512283, 0.10340845584869385, -0.01685265637934208,
- 0.025207560509443283, 0.21041066944599152, 0.05213206261396408, -0.07794947177171707,
- -0.0373891182243824, 0.0062323701567947865, -0.051303815096616745, 0.1045582965016365,
- -0.10637714713811874, -0.07947596162557602, -0.020944325253367424,
- -0.0035815017763525248, 0.7443305850028992, 0.13503503799438477, 0.20398454368114471,
- 0.025817012414336205, 0.02141750417649746, 0.16456210613250732, 0.007898962125182152,
- 0.03070230595767498, -0.08392685651779175, -0.1333332061767578, 0.05157661437988281,
- -0.024165263399481773, -0.079926036298275, -0.012924550101161003, -0.011184594593942165,
- 0.1098618432879448, 0.012796115130186081, 0.08856164664030075, 0.029103294014930725,
- -0.10241595655679703, -0.042866937816143036, 0.055694904178380966,
- -0.007714266423135996, -0.11236535757780075, -0.07202023267745972, 0.07821395248174667,
- 0.09946439415216446, -0.06799095869064331, -0.0034645639825612307,
- -0.011559908278286457, -0.013756982050836086, -0.018184276297688484,
- 0.07143957912921906, -0.032868802547454834, 0.04918694123625755, -0.010749035514891148,
- -0.016632597893476486, 0.026314983144402504, -0.16166704893112183,
- -0.001316464738920331, 0.11526743322610855, 0.01828698441386223, 0.001872365828603506,
- 0.08110585808753967, -0.0909431055188179, -0.0075531005859375, 0.07414335012435913,
- 0.16028974950313568, -0.0948701724410057, -0.058164555579423904, -0.015403448604047298,
- -0.05222446843981743, 0.05618022754788399, -0.005222778767347336, -0.07361549139022827,
- -0.043561484664678574, 0.06800999492406845, 0.04510365054011345, 0.027231065556406975,
- 0.09327162057161331, -0.01451337430626154, 0.038316622376441956, 0.09026190638542175,
- 0.06275272369384766, 0.008357199840247631, 0.060103125870227814, 0.04506920650601387,
- -0.03593594953417778, -0.04032403975725174, -0.00909948069602251, 0.0854596495628357,
- 0.029655884951353073, -0.01500600017607212, 0.053784262388944626, 0.05539371818304062,
- -0.05204538255929947, 0.059548888355493546, -0.04925762116909027, -0.020119622349739075,
- 0.125006765127182, -0.06098804250359535, -0.09033571183681488, -0.003755301469936967,
- -0.02854166179895401, 0.01778918318450451, 0.004175642039626837, 0.0936531275510788,
- 0.04800023138523102, 0.12186548858880997, 0.05469748377799988, 0.08523402363061905,
- 0.0777638629078865, -0.03875323385000229, 0.025188447907567024, -0.002445417223498225,
- -0.001149325747974217, -0.04483635723590851, 0.004750814288854599, 0.0191563181579113,
- 0.0705832839012146, 0.043447062373161316, -0.0983567014336586, 0.009107004851102829,
- -0.005612771958112717, -0.07773438841104507, -0.08549267053604126,
- -0.015589520335197449, 0.11881910264492035, 0.12868431210517883, -0.013640757650136948,
- -0.09769341349601746, -0.12455954402685165, 0.011750764213502407, 0.06643122434616089,
- -0.016524463891983032, -0.028959043323993683, -0.12793906033039093,
- 0.022204754874110222, -0.012167718261480331, 0.07917546480894089, -0.01553131639957428,
- -0.02264607697725296, 0.056796640157699585, 0.05408499389886856, 0.08591517060995102,
- -0.011891006492078304, -0.07580767571926117, 0.04136311635375023, -0.0684930607676506,
- -0.09094443172216415, 0.025938011705875397, -0.012730634771287441,
- -0.0015261381631717086, 0.023640895262360573, 0.05350135266780853, 0.026126595214009285,
- 0.0403611995279789, -0.051680997014045715, 0.08509854972362518, -0.03325344994664192,
- -0.046955469995737076, 0.10050918906927109, -0.06187300756573677, 0.03639878332614899,
- -0.05564093589782715, -0.1092696338891983, -0.022818101570010185, 0.06907126307487488,
- -0.0893845409154892, 0.05862225219607353, -0.021242622286081314, -0.008256188593804836,
- -0.07249852269887924, -0.033804260194301605, 0.10650254040956497, -0.09289108961820602,
- -0.04471923038363457, -0.06757950782775879, 0.10032366216182709, 0.058794427663087845,
- -0.014168850146234035, -0.03321310505270958, -0.004010767675936222,
- 0.050419166684150696, -0.06259260326623917, -0.0301609355956316, 0.05012447014451027,
- 0.010125686414539814, -0.00008919673564378172, 0.022196397185325623,
- 0.055319469422101974, -0.037025488913059235, 0.0315987803041935, 0.05661187320947647,
- 0.42210468649864197, -0.30265137553215027, 0.12698741257190704, 0.09400126338005066,
- 0.0005770201096311212, 0.029162799939513206, -0.02745308354496956, 0.07800896465778351,
- 0.11881150305271149, 0.1434103399515152, 0.05549556016921997, -0.014248259365558624,
- -0.024886589497327805, -0.1663287878036499, 0.07297208905220032, 0.01944808103144169,
- 0.025842413306236267, 0.03161999210715294, -0.13673366606235504, -0.03791383281350136,
- 0.06271207332611084, -0.04399631544947624, 0.02437722682952881, 0.016878794878721237,
- -0.056227605789899826, 0.026286683976650238, -0.029599135741591454,
- 0.044934868812561035, -0.043859947472810745, 0.025006351992487907, 0.039002712815999985,
- 0.044636767357587814, -0.025975236669182777, 0.06213811784982681, -0.15809448063373566,
- 0.026635421440005302, -0.11036781966686249, -0.08894980698823929, 0.16196608543395996,
- -0.011645031161606312, 0.040081385523080826, 0.058417584747076035, -0.05244520306587219,
- 0.03393009305000305, -0.07338893413543701, -0.08217817544937134, 0.024557122960686684,
- 0.1331796646118164, 0.045717861503362656, 0.1336747705936432, 0.17840413749217987,
- -0.10301313549280167, -0.10076610743999481, -0.06463064253330231, 0.09870541840791702,
- 0.08766554296016693, -0.06636698544025421, 0.01967669650912285, -0.04460323974490166,
- -0.11128177493810654, 0.022709207609295845, -0.11469642072916031, -0.12071066349744797,
- -0.04140886291861534, 0.027901161462068558, 0.017706628888845444, 0.03552748262882233,
- -0.04870622977614403, -0.17344044148921967, 0.023917028680443764, -0.005425065755844116,
- -0.02698495052754879, 0.15726114809513092, -0.09617136418819427, 0.04344034194946289,
- -0.006136537063866854, -0.015992363914847374, 0.04371613264083862, -0.09183842688798904,
- 0.03934190049767494, 0.003988189622759819, 0.08150958269834518, 0.014279949478805065,
- 0.024529241025447845, -0.09348240494728088, 0.08830319344997406, -0.10920333862304688,
- 0.11895836889743805, -0.10137657076120377, -0.001932670595124364, 0.055707115679979324,
- -0.07371973246335983, 0.01850469969213009, 0.01784217171370983, -0.036723650991916656,
- 0.042461223900318146, 0.06507960706949234, -0.05744171887636185, -0.12345182150602341,
- -0.06592651456594467, -0.04907741770148277, -0.1165488138794899, 0.04525269940495491,
- -0.07049074023962021, -0.03855329006910324, -0.014469625428318977, -0.06004197895526886,
- 0.014214521273970604, 0.01689739152789116, 0.06510869413614273, -0.20803885161876678,
- -0.03672466054558754, 0.023108314722776413, 0.0491238571703434, 0.040214963257312775,
- -0.010307804681360722, 0.03717796131968498, 0.12639234960079193, 0.08013953268527985,
- 0.041653167456388474, 0.034490618854761124, -0.08332675695419312, 0.0025456161238253117,
- -0.11468937993049622, -0.467802494764328, 0.05824638158082962, -0.036702197045087814,
- 0.01822042651474476, 0.016950728371739388, -0.08578234165906906, 0.08903947472572327,
- -0.02209462784230709, -0.08902454376220703, 0.09416235238313675, -0.06997939944267273,
- 0.02154531702399254, -0.0067574866116046906, -0.037101563066244125, -0.0994403064250946,
- -0.03173414617776871, -0.03984284773468971, 0.04117213562130928, -0.053389761596918106,
- -0.046912748366594315, -0.14040127396583557, 0.035289328545331955,
- -0.018387092277407646, 0.047600217163562775, 0.009859787300229073,
- 0.0031939868349581957, -0.10300935804843903, -0.019770579412579536,
- 0.017125066369771957, 0.09259488433599472, 0.039888955652713776, -0.05288124084472656,
- -0.06450622528791428, 0.0550839863717556, -0.04351525008678436, 0.12493301182985306,
- 0.005973674822598696, -0.0804298147559166, -0.08372145146131516, 0.09708847105503082,
- 0.06671562045812607, 0.17804645001888275, 0.01711953990161419, 0.05768085643649101,
- 0.029184432700276375, 0.23600973188877106, -0.03102194331586361, 0.052948810160160065,
- -0.053172700107097626, 0.002160801086574793, 0.08430923521518707, -0.021446647122502327,
- 0.02897443249821663, -0.09967438876628876, -0.057867929339408875,
- -0.0035685687325894833, 0.004226990044116974, -0.017512382939457893,
- -0.018474934622645378, 0.23559828102588654, 0.05239592865109444, 0.0430295504629612,
- -0.049651019275188446, -0.07089987397193909, 0.009993789717555046,
- -0.040933676064014435, -0.16124877333641052, 0.030654069036245346, 0.006261854432523251,
- 0.0038456411566585302, 0.004111927002668381, -0.1141429990530014, -0.012620870023965836,
- -0.009834377095103264, -0.000520600937306881, 0.15106293559074402,
- -0.008522126823663712, 0.08255140483379364, -0.08276820182800293, 0.12128229439258575,
- 0.033568598330020905, 0.008184900507330894, 0.07213461399078369, 0.1680334359407425,
- 0.03448915481567383, -0.00491223344579339, -0.05851728841662407, -0.03296323120594025,
- -0.08257180452346802, 0.12049884349107742, -0.08577658981084824, 0.1605290323495865,
- 0.07439684122800827, -0.026052171364426613, -0.032435741275548935, 0.01776321604847908,
- -0.030066238716244698, 0.05670282617211342, -0.45525720715522766, -0.05913396179676056,
- 0.17271021008491516, -0.001790807582437992, -0.004706064239144325, 0.11189369857311249,
- 0.05333274230360985, -0.032357390969991684, -0.043914876878261566,
- -0.061704859137535095, 0.2078111469745636, 0.04613785445690155, 0.09913719445466995,
- -0.08654511719942093, -0.014416156336665154, 0.11159086227416992, -0.0484963096678257,
- -0.012807074934244156, 0.09114810079336166, -0.19798189401626587, -0.016177022829651833,
- -0.05203837528824806, 0.11758924275636673, -0.023508716374635696, 0.022458555176854134,
- 0.12242424488067627, -0.06731721013784409, 0.04242411255836487, 0.0676887109875679,
- -0.07573866099119186, 0.048573415726423264, -0.0043303449638187885,
- -0.048681870102882385, 0.1236082911491394, 0.09090126305818558, 0.0853293165564537,
- -0.08955030143260956, 12.427684783935547, 0.10013310611248016, 0.053692325949668884,
- -0.09349317103624344, 0.0042421561665833, -0.04552401602268219, -0.032739099115133286,
- -0.123563252389431, 0.05135035514831543, 0.19111305475234985, -0.0053763859905302525,
- -0.06375301629304886, -0.027575068175792694, -0.1518840789794922, -0.017709994688630104,
- -0.016184046864509583, -0.11545722186565399, -0.05408988520503044, 0.04385353624820709,
- 0.004397289827466011, -0.06819862872362137, 0.10111872106790543, 0.0831209123134613,
- -0.01774105615913868, -0.08251082897186279, 0.01888202503323555, -0.03564564511179924,
- -0.030275899916887283, 0.01199045218527317, 0.019194861873984337, -0.0349980853497982,
- 0.0434797964990139, 0.051044173538684845, -0.041698724031448364, 0.0641721710562706,
- -0.02605205401778221, 0.06573682278394699, 0.04737367108464241, -0.003902457421645522,
- 0.1390436738729477, 0.004623949062079191, -0.018444450572133064, 0.0038592179771512747,
- 0.06559070199728012, 0.10209256410598755, 0.04710225388407707, 0.11610687524080276,
- 0.13309209048748016, -0.047074221074581146, 0.0977921113371849, 0.09431933611631393,
- -0.020409496501088142, 0.1810029000043869, 0.027694152668118477, -0.003100696951150894,
- 0.1119341254234314, -0.022896619513630867, -0.08664608746767044, 0.08076658099889755,
- 0.0663595199584961, -0.025347433984279633, 0.04829517379403114, 0.014540503732860088,
- 0.1624966263771057, -0.004463960882276297, 0.10376941412687302, 0.1012313961982727,
- 0.06329339742660522, -0.15186956524848938, -0.0594792440533638, -0.036932703107595444,
- -0.11038763076066971, -0.09095143526792526, 0.03451518714427948, 0.11817677319049835,
- -0.09059271961450577, 0.07273294031620026, -0.04100587218999863, -0.012821660377085209,
- -0.043868232518434525, 0.006105632986873388, 0.04197189584374428, -0.06269505620002747,
- 0.011169892735779285, 0.04868249222636223, 0.03901487961411476, 0.13929063081741333,
- 0.10679268836975098, -0.007720623631030321, -0.16544270515441895, -0.10176192969083786,
- 0.12907348573207855, -0.04017527028918266, -0.03405549004673958, -0.02214014157652855,
- -0.042416106909513474, 0.09170519560575485, -0.1825578510761261, 0.032351408153772354,
- 0.13552074134349823, -0.15248920023441315, 0.03867108374834061, -0.03222421929240227,
- 0.061362069100141525, -0.044907767325639725, 0.02542983926832676, -0.053351473063230515,
- -0.012878927402198315, -0.0059788962826132774, 0.032051533460617065,
- -0.07240105420351028, 0.07340886443853378, 0.1170845702290535, -0.09620177000761032,
- 0.02753513492643833, 0.056110743433237076, -0.015349674969911575, -0.020952103659510612,
- 0.1205616444349289, 0.007397803943604231, -0.09987027198076248, -0.008908765390515327,
- -0.02560815028846264, -0.044205326586961746, -0.021572686731815338,
- -0.05112406238913536, -0.009317629039287567, 0.06853201240301132, -0.05268954485654831,
- 0.015692127868533134, 0.01193065382540226, 0.06741350144147873, -0.03770243749022484,
- 0.028238721191883087, 0.04531930759549141, -0.023130904883146286, -0.022943954914808273,
- 0.07280255854129791, 0.08833470940589905, 0.09692157059907913, -0.010543071664869785,
- -0.07137606292963028, 0.0035727156791836023, -0.09705241769552231,
- 0.0019821375608444214, 0.1444922685623169, 0.04642915353178978, -0.007915721274912357,
- -0.006596671883016825, -0.09802671521902084, -0.12585321068763733, 0.12422851473093033,
- -0.002845369977876544, -0.006186345126479864, 0.0365910679101944, -0.12600161135196686,
- -0.029469281435012817, 0.11718560755252838, -0.06007099151611328,
- -0.0017362299840897322, 0.023565346375107765, 0.019140737131237984, 0.1439540982246399,
- 0.12055961787700653, 0.08111678808927536, -0.012813541106879711, 0.033145755529403687,
- 0.0054338062182068825, -0.027478231117129326, -0.0201276745647192, 0.0710202306509018,
- 0.004199828486889601, -0.17261672019958496, -0.10541477054357529, 0.05534705892205238,
- 0.0942566990852356, -0.03694494068622589, -0.10289506614208221, -0.033595919609069824,
- -0.012431436218321323
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 366,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 1,
- "similarity": 0.9968937039375305
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 51,
- "similarity": 0.9968414306640625
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 4,
- "similarity": 0.996789276599884
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Harry Pettit"],
- "epoch_date_downloaded": 1663632000,
- "epoch_date_modified": 1665619200,
- "epoch_date_submitted": 1663632000,
- "flag": null,
- "report_number": 2140,
- "source_domain": "the-sun.com",
- "submitters": ["Srishti Khemka (CSET)"],
- "title": "TikTok suicide clip that traumatised kids was 'attack plotted on dark web'",
- "url": "https://www.the-sun.com/lifestyle/tech-old/1518690/ronnie-mcnutt-suicide-video-tiktok-coordinated-attack/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "openai",
- "name": "OpenAI"
- },
- {
- "__typename": "Entity",
- "entity_id": "google",
- "name": "Google"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "openai",
- "name": "OpenAI"
- },
- {
- "__typename": "Entity",
- "entity_id": "google",
- "name": "Google"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "underrepresented-groups-in-training-data",
- "name": "underrepresented groups in training data"
- },
- {
- "__typename": "Entity",
- "entity_id": "racial-minority-groups",
- "name": "racial minority groups"
- },
- {
- "__typename": "Entity",
- "entity_id": "gender-minority-groups",
- "name": "gender minority groups"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [59],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [2150],
- "vector": [
- -0.06162430718541145, 0.06190914288163185, -0.018274983391165733, -0.1002814993262291,
- 0.06970254331827164, -0.027531329542398453, 0.009036088362336159, 0.046918075531721115,
- 0.0788639485836029, -0.16686494648456573, 0.014427118934690952, 0.02187010459601879,
- 0.034778278321027756, -0.14237135648727417, -0.005908051040023565, -0.07339724153280258,
- -0.1053357943892479, -0.018817966803908348, 0.030485788360238075, -0.11817128956317902,
- -0.12010171264410019, -0.023353442549705505, 0.009892996400594711, 0.08455454558134079,
- -0.023218339309096336, 0.06639397889375687, 0.1543169468641281, 0.13279786705970764,
- -0.10064996778964996, 0.07744248956441879, -0.07223909348249435, -0.11358560621738434,
- 0.17212846875190735, -0.0018307310529053211, 0.023171499371528625, 0.11818099766969681,
- 0.011410838924348354, -0.01872011460363865, 0.0015992172993719578, -0.04852023720741272,
- 0.04176399111747742, 0.25403162837028503, -0.02102993056178093, -0.02419007569551468,
- 0.045393820852041245, -0.02204747498035431, 0.01941867731511593, 0.024248424917459488,
- 0.002173175336793065, -0.02496315725147724, -0.02294277586042881, -0.013949315994977951,
- -0.04120529815554619, 0.00968240574002266, -0.09928294271230698, 0.11046519875526428,
- 0.048263903707265854, -0.0366939976811409, 0.005100017413496971, -0.10093074291944504,
- -0.03471466526389122, -0.171714648604393, -0.011221347376704216, -0.11789461225271225,
- 0.10397855192422867, -0.07735171169042587, -0.029799161478877068, -0.008625383488833904,
- 0.03618338331580162, 0.06167273223400116, 0.0350581631064415, -0.021505840122699738,
- -0.05701785534620285, 0.0028128339909017086, 0.002739713527262211, -0.08865264803171158,
- 0.03145890682935715, 0.2534978687763214, -0.09409622848033905, 0.028787335380911827,
- 0.09760989248752594, -0.07065846771001816, 0.42444661259651184, 0.002735875081270933,
- -0.0005244681378826499, 0.01797189563512802, 0.08824077248573303, 0.011407188139855862,
- 0.020189926028251648, 0.02730962261557579, -0.02587237022817135, 0.058483004570007324,
- -0.0457189567387104, -0.014759269542992115, 0.09633984416723251, -0.004435774404555559,
- -0.008486312814056873, -0.03902952000498772, -0.0448455773293972, -0.060371387749910355,
- 0.009757843799889088, -0.046909064054489136, 0.16327132284641266, 0.13732899725437164,
- -0.05086759477853775, 0.040180105715990067, 0.10262615233659744, -0.05034956708550453,
- 0.05709543079137802, -0.07785576581954956, 0.04767049476504326, -0.00228547933511436,
- 0.06207982078194618, -0.02432083711028099, 0.03668826445937157, -0.06438512355089188,
- 0.018789296969771385, 0.03344252333045006, 0.05368678271770477, 0.07248271256685257,
- -0.017921198159456253, 0.07454459369182587, 0.1238899976015091, -0.08314395695924759,
- -0.039978694170713425, -0.049208298325538635, -0.05693766474723816, 0.03140725567936897,
- -0.008358890190720558, 0.09374123811721802, -0.0590721033513546, -0.21088659763336182,
- 0.005113562569022179, 0.04235732927918434, -0.06961693614721298, 0.01034066267311573,
- -0.030488701537251472, -0.03561971336603165, -0.018111061304807663,
- -0.030391661450266838, 0.04859529435634613, 0.024186614900827408, 0.061041977256536484,
- 0.017056118696928024, 0.08408746123313904, 0.06592300534248352, -0.0492834597826004,
- -0.05502897500991821, -0.02429150976240635, -0.056302327662706375, 0.09761088341474533,
- -0.11576332151889801, -0.045883700251579285, -0.014061175286769867,
- -0.04917478561401367, 0.6939477324485779, 0.09691588580608368, 0.2002626359462738,
- -0.011594952084124088, -0.018736569210886955, 0.15972402691841125, -0.02685161679983139,
- 0.055191367864608765, -0.05185787379741669, -0.015308371745049953, -0.00290449196472764,
- -0.08605703711509705, -0.02711622789502144, 0.011376313865184784, 0.0189860537648201,
- 0.10760917514562607, 0.013221584260463715, 0.12221529334783554, 0.05014999583363533,
- -0.09934580326080322, -0.04254152625799179, 0.04783455282449722, 0.04226908087730408,
- -0.11215517669916153, -0.012303030118346214, 0.04859708622097969, 0.060242827981710434,
- -0.039879489690065384, 0.001980549655854702, -0.07352109998464584, 0.04929189011454582,
- 0.0025208566803485155, 0.0482749417424202, -0.024844367057085037, 0.07213350385427475,
- 0.06109753996133804, 0.04983283579349518, -0.058193884789943695, -0.09084924310445786,
- -0.05625857412815094, 0.09913487732410431, 0.005978062748908997, -0.03509942814707756,
- 0.09587421268224716, -0.09539812058210373, 0.023996936157345772, 0.020087864249944687,
- 0.16566438972949982, -0.11793879419565201, 0.043459802865982056, -0.012960962019860744,
- -0.03856220468878746, 0.03113827295601368, -0.022402910515666008, -0.08945680409669876,
- -0.060768190771341324, 0.11270665377378464, 0.026799481362104416, 0.09534387290477753,
- 0.08458362519741058, -0.035162072628736496, 0.0761796087026596, 0.03326679766178131,
- 0.0598439946770668, -0.061775751411914825, 0.07934997230768204, 0.03495781496167183,
- -0.0343625582754612, -0.05341511219739914, 0.03835756331682205, 0.04163612425327301,
- 0.0489550344645977, 0.004677069839090109, 0.0335954949259758, -0.01220766082406044,
- -0.046710629016160965, 0.030456338077783585, 0.05462595820426941, 0.09020334482192993,
- 0.03125631436705589, -0.08384235203266144, -0.0340578630566597, -0.017724711447954178,
- -0.01731058955192566, 0.03806176036596298, -0.0002065991284325719, 0.0686025321483612,
- 0.11921840906143188, 0.07764671742916107, -0.013043861836194992, 0.07814795523881912,
- 0.07617136836051941, -0.012805755250155926, 0.012644326314330101, 0.045908089727163315,
- -0.04389574006199837, -0.07115218043327332, -0.03156363219022751, 0.017469001933932304,
- 0.024442356079816818, -0.03990703821182251, -0.07016381621360779, -0.05045974999666214,
- -0.11701350659132004, -0.03719131648540497, -0.10457438230514526, -0.05938492342829704,
- 0.00911000557243824, 0.014917891472578049, -0.05152716487646103, -0.08485160768032074,
- -0.0716916173696518, -0.002916462952271104, 0.057965654879808426, 0.006189254112541676,
- -0.018334008753299713, -0.1084103137254715, -0.00621563708409667, -0.016335126012563705,
- 0.048403892666101456, -0.017069773748517036, 0.031267669051885605, 0.009179627522826195,
- -0.09363535046577454, 0.017459392547607422, -0.004474862944334745, -0.05078810080885887,
- -0.04660354554653168, -0.1123557984828949, -0.01646217331290245, -0.027307596057653427,
- 0.02053099311888218, -0.07416823506355286, 0.027378322556614876, 0.061701081693172455,
- 0.050712209194898605, -0.06265922635793686, -0.0438862107694149, 0.06310398131608963,
- -0.03278655931353569, -0.0016412304248660803, 0.12340317666530609, -0.03437802940607071,
- 0.041239622980356216, 0.0283172819763422, -0.06522424519062042, -0.03686285391449928,
- 0.0037283257115632296, -0.0476640909910202, 0.004773087799549103, -0.053380776196718216,
- 0.004352993797510862, -0.03190581873059273, -0.036579545587301254, 0.08294129371643066,
- -0.030366450548171997, -0.09535279870033264, -0.1197020411491394, 0.10395294427871704,
- -0.06398598104715347, 0.013027622364461422, 0.025839924812316895, 0.00226657185703516,
- 0.07108714431524277, 0.03636164590716362, 0.02168622426688671, 0.06659425050020218,
- 0.07911897450685501, -0.0027317495550960302, 0.025646710768342018, 0.08268369734287262,
- -0.045656729489564896, -0.00904201902449131, 0.10146401822566986, 0.44586193561553955,
- -0.1838109791278839, 0.10579701513051987, 0.08947531878948212, 0.005334293004125357,
- 0.034825582057237625, -0.07614179700613022, 0.0313386395573616, 0.05667450278997421,
- 0.12747228145599365, 0.20782586932182312, -0.04897206276655197, 0.010576240718364716,
- -0.0688207596540451, 0.08610273152589798, 0.023563912138342857, 0.019533488899469376,
- 0.0019821792375296354, -0.09491721540689468, -0.008195732720196247, 0.06265469640493393,
- -0.0743449330329895, 0.05589605122804642, -0.051617179065942764, -0.04489361494779587,
- -0.010365117341279984, 0.011296582408249378, 0.03032219596207142, -0.015556315891444683,
- 0.07937607914209366, -0.09225869923830032, 0.05348953604698181, -0.0026813740842044353,
- 0.09541377425193787, -0.08846214413642883, 0.02077454887330532, -0.05673349276185036,
- -0.12467881292104721, 0.026930533349514008, 0.04162454977631569, 0.06615225970745087,
- 0.04002513363957405, -0.036406610161066055, 0.06060975044965744, -0.04308118671178818,
- -0.05914326384663582, -0.02108442597091198, 0.07979396730661392, 0.038255684077739716,
- 0.08098510652780533, 0.1615305244922638, -0.01375820953398943, -0.02553929202258587,
- -0.1120569109916687, 0.060125771909952164, 0.16265815496444702, 0.015430520288646221,
- 0.018340446054935455, 0.002199698705226183, -0.006837612017989159,
- -0.0050581879913806915, -0.05428588017821312, -0.09904082119464874,
- -0.009863412007689476, -0.08399172127246857, 0.07353273779153824, 0.06311724334955215,
- -0.02435995824635029, -0.11605999618768692, -0.037715427577495575, -0.03825289383530617,
- 0.030107932165265083, 0.06660795956850052, -0.06933031231164932, 0.04822908714413643,
- -0.015374118462204933, -0.012642613612115383, 0.0632997527718544, -0.08116831630468369,
- 0.02808542549610138, -0.04007342457771301, 0.020428527146577835, 0.09930632263422012,
- 0.08525963872671127, -0.028532586991786957, 0.09392581135034561, -0.14858555793762207,
- 0.04682310298085213, -0.006293917074799538, -0.03496486321091652, 0.04220914468169212,
- -0.047673165798187256, 0.012144253589212894, 0.01885356567800045, -0.08593054860830307,
- 0.05112442374229431, -0.05657105892896652, -0.05070580914616585, -0.0786607638001442,
- -0.13441340625286102, -0.022701846435666084, -0.07511156797409058, 0.06825157254934311,
- -0.10330118238925934, 0.02910657227039337, -0.07938914000988007, -0.0242075826972723,
- -0.03537957742810249, 0.05120176449418068, 0.022023577243089676, -0.1256345957517624,
- -0.009343813173472881, -0.037250831723213196, 0.0410594642162323, -0.06149600073695183,
- -0.05625021830201149, -0.07504640519618988, 0.010012910701334476, 0.04007098451256752,
- -0.06522806733846664, 0.007678227499127388, -0.12444456666707993, 0.05732176452875137,
- -0.1484152376651764, -0.32895785570144653, 0.03972160443663597, 0.04252535104751587,
- 0.0517822727560997, -0.03618442639708519, -0.03614798188209534, 0.049971576780080795,
- 0.023472227156162262, 0.006936792749911547, 0.0838150754570961, -0.0370146781206131,
- 0.0043832892552018166, -0.05645151808857918, -0.06540896743535995, 0.007984182797372341,
- -0.05564066395163536, -0.07428030669689178, 0.024653425440192223, -0.009112740866839886,
- -0.07293306291103363, -0.09729703515768051, 0.021261826157569885, -0.04324407875537872,
- -0.035029761493206024, -0.007688951212912798, 0.05042065307497978, -0.01108991727232933,
- -0.06569785624742508, 0.020716145634651184, 0.07740303128957748, 0.028581585735082626,
- -0.09547405689954758, -0.024132195860147476, 0.03485587239265442, 0.04848211631178856,
- 0.11827737092971802, 0.0676937997341156, 0.021006079390645027, -0.055346447974443436,
- 0.06918414682149887, 0.09704796969890594, 0.1837327480316162, -0.03827112168073654,
- 0.038781918585300446, -0.006920755375176668, 0.12284383177757263, 0.058088645339012146,
- 0.019692735746502876, -0.011684341356158257, -0.06632333993911743, 0.016621574759483337,
- -0.01361181028187275, 0.11888155341148376, -0.053290680050849915, -0.01566154696047306,
- 0.012358237989246845, -0.004213913343846798, 0.005868521519005299, 0.017994510009884834,
- 0.16557298600673676, 0.0625896006822586, -0.015377163887023926, 0.005679666996002197,
- -0.03893992304801941, 0.015720749273896217, -0.09927231073379517, -0.04201730713248253,
- -0.02241230197250843, -0.03885224461555481, 0.028126219287514687, -0.04199684038758278,
- -0.10891742259263992, -0.000634143827483058, -0.03589114546775818, 0.0170739833265543,
- 0.11574607342481613, -0.05745375528931618, -0.01513555645942688, -0.035592176020145416,
- 0.17545408010482788, 0.03858646750450134, 0.02787330374121666, 0.0561126172542572,
- 0.10152972489595413, 0.006332276854664087, 0.0480840690433979, 0.03142525255680084,
- -0.09767870604991913, 0.0008000853122211993, 0.1423758566379547, -0.007471925113350153,
- 0.0927635058760643, 0.04180796816945076, -0.04166674241423607, -0.06401532888412476,
- 0.031717151403427124, 0.01402213890105486, 0.05530347675085068, -0.43899455666542053,
- -0.03857016563415527, 0.13808973133563995, -0.0006365641602315009, 0.04767278581857681,
- 0.035537365823984146, -0.03017503395676613, -0.039808839559555054, -0.04280124232172966,
- -0.11292630434036255, 0.13390575349330902, 0.038977447897195816, 0.056638069450855255,
- -0.1285756379365921, 0.052517008036375046, 0.10928568243980408, 0.004823350813239813,
- 0.03354422003030777, 0.07357046753168106, -0.23522739112377167, 0.002037298632785678,
- -0.040465932339429855, 0.15892469882965088, 0.012123309075832367, 0.039141569286584854,
- 0.10084766149520874, -0.027069970965385437, 0.03343813866376877, 0.04660651832818985,
- 0.02088279277086258, 0.04753359407186508, -0.012982076965272427, -0.0035474454052746296,
- 0.11700434237718582, 0.1260175257921219, -0.0174250490963459, 0.023295067250728607,
- 12.11519718170166, 0.04600305110216141, 0.1078263595700264, -0.08885516226291656,
- -0.02146574668586254, -0.03474188223481178, 0.0003959661989938468, -0.11253555864095688,
- 0.06365762650966644, 0.14440210163593292, -0.045469362288713455, -0.04303137585520744,
- -0.026765579357743263, -0.09804484248161316, 0.007034233305603266, -0.05923692137002945,
- -0.06388019025325775, -0.006869451142847538, 0.07648409157991409, -0.0475674644112587,
- -0.03621189668774605, 0.050777386873960495, 0.07423913478851318, 0.038372211158275604,
- -0.07713545113801956, 0.03748628869652748, 0.03398023918271065, 0.0010414526332169771,
- 0.02238074131309986, 0.04605092108249664, 0.058402854949235916, 0.08496983349323273,
- 0.05587318539619446, -0.011403661221265793, 0.015740370377898216, 0.11272133141756058,
- 0.018904298543930054, 0.038551852107048035, 0.07159743458032608, 0.026569224894046783,
- 0.003443159395828843, 0.057123418897390366, 0.05469902977347374, 0.02308383770287037,
- 0.06771364063024521, 0.019370606169104576, 0.03367247059941292, 0.13188070058822632,
- 0.00012601158232428133, 0.02787327580153942, 0.10355690866708755, -0.009540028870105743,
- 0.15341529250144958, 0.018695183098316193, -0.032120827585458755, 0.021535778418183327,
- 0.015941379591822624, -0.10164305567741394, 0.07681046426296234, -0.019897179678082466,
- -0.07011965662240982, 0.0958356112241745, 0.0664721429347992, 0.1050686240196228,
- 0.0747910887002945, -0.024466754868626595, 0.09971925616264343, 0.08348990976810455,
- -0.14609166979789734, -0.09133793413639069, 0.05594214051961899, -0.0942942351102829,
- -0.08500556647777557, 0.10068738460540771, 0.08805658668279648, -0.0037029392551630735,
- 0.023166866973042488, -0.02758396603167057, 0.03799014911055565, -0.045625656843185425,
- 0.03195061534643173, 0.01931775175035, -0.07267729192972183, 0.0404079295694828,
- -0.01076439954340458, 0.0466252863407135, 0.05336128547787666, 0.12546364963054657,
- -0.01904529146850109, -0.07686875015497208, -0.07714405655860901, 0.0757528617978096,
- -0.01003202423453331, -0.057629961520433426, 0.05645202100276947, -0.08680646121501923,
- 0.06201253831386566, -0.18579597771167755, 0.10388711839914322, 0.13444620370864868,
- -0.10698346048593521, -0.09612170606851578, -0.04719017073512077, 0.08826841413974762,
- -0.02972613275051117, 0.026350006461143494, -0.04428625851869583, -0.032752931118011475,
- 0.07175736129283905, 0.06964536011219025, -0.041789937764406204, 0.08211016654968262,
- 0.0973418578505516, -0.09110621362924576, 0.03624679148197174, 0.05489514768123627,
- -0.04359058663249016, -0.014985454268753529, 0.05207085236907005, 0.019335875287652016,
- -0.12801629304885864, -0.07589031755924225, -0.07196971774101257, -0.035160914063453674,
- -0.03168925270438194, -0.042956821620464325, 0.030653640627861023, 0.03679722547531128,
- -0.04880017414689064, -0.028624335303902626, 0.02387332357466221, 0.108356773853302,
- 0.15449315309524536, 0.019466063007712364, 0.07252844423055649, -0.0402502678334713,
- -0.023118020966649055, 0.014402580447494984, 0.032866768538951874, 0.04354535788297653,
- -0.08237956464290619, -0.05619940161705017, -0.05178261175751686, -0.11875128000974655,
- 0.04804859310388565, 0.051892731338739395, 0.03223250433802605, 0.06814665347337723,
- 0.013552354648709297, -0.09216107428073883, -0.08098059147596359, 0.08156000077724457,
- 0.02741358056664467, -0.03537692874670029, 0.07187992334365845, -0.045920100063085556,
- -0.05080794543027878, 0.1129901334643364, -0.03736605867743492, -0.006552379112690687,
- 0.00579869793727994, -0.14726252853870392, 0.08507891744375229, 0.12948110699653625,
- 0.07456140220165253, 0.05929045006632805, 0.08762709051370621, -0.02171626128256321,
- 0.07304491847753525, -0.03737429156899452, 0.006151759997010231, -0.0608958937227726,
- -0.007793191820383072, -0.11070381850004196, 0.028826197609305382, 0.0956801325082779,
- 0.03865904361009598, -0.11649541556835175, 0.03551648184657097, -0.07519026100635529
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 367,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 59,
- "similarity": 0.998188316822052
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 13,
- "similarity": 0.9980829358100891
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 41,
- "similarity": 0.9979315996170044
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Karen Hao"],
- "epoch_date_downloaded": 1663113600,
- "epoch_date_modified": 1665619200,
- "epoch_date_submitted": 1663113600,
- "flag": null,
- "report_number": 2150,
- "source_domain": "technologyreview.com",
- "submitters": ["Srishti Khemka (CSET)"],
- "title": "An AI saw a cropped photo of AOC. It autocompleted her wearing a bikini.",
- "url": "https://www.technologyreview.com/2021/01/29/1017065/ai-image-generation-is-racist-sexist"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "the-israel-military",
- "name": "the Israel military"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "anyvision",
- "name": "AnyVision"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "palestinians-residing-in-the-west-bank",
- "name": "Palestinians residing in the West Bank"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [2161, 2160, 2159, 2157, 2156, 2155, 2154, 2153, 2152, 2151],
- "vector": [
- -0.04799467325210571, 0.09181728959083557, -0.007476960774511099, -0.10698239505290985,
- 0.07282418012619019, -0.07811320573091507, -0.0050138807855546474, 0.03864987939596176,
- 0.07698328793048859, -0.11484560370445251, 0.008259433321654797, 0.029131026938557625,
- 0.02911744825541973, -0.07878714054822922, 0.07019248604774475, -0.058659687638282776,
- -0.035643577575683594, -0.016480647027492523, -0.007564213592559099,
- -0.08608043193817139, -0.0875854566693306, -0.012883390299975872, -0.002665025880560279,
- 0.10014207661151886, -0.03229992836713791, 0.029902055859565735, 0.0897420197725296,
- 0.09003594517707825, -0.0585128590464592, -0.015649111941456795, -0.015966812148690224,
- -0.034225944429636, 0.1116085946559906, -0.04264841601252556, -0.016540003940463066,
- 0.10664740204811096, 0.042781319469213486, -0.08541028201580048, -0.07646279036998749,
- -0.00013951388245914131, 0.00559660280123353, 0.18067346513271332, 0.002253758953884244,
- -0.014606926590204239, 0.06603877991437912, 0.008214849978685379, 0.0018172410782426596,
- 0.0498829148709774, -0.0316041000187397, -0.02263171225786209, -0.004590103402733803,
- 0.006646217778325081, -0.05152222514152527, 0.009911409579217434, -0.054500751197338104,
- 0.0835571214556694, 0.012645713053643703, -0.01817660965025425, 0.007783319801092148,
- -0.06424396485090256, -0.03807856887578964, -0.1602911800146103, -0.023625249043107033,
- -0.04404614493250847, 0.07550027221441269, -0.07566463202238083, -0.045199014246463776,
- -0.04561462998390198, 0.015851857140660286, 0.06401341408491135, 0.09289182722568512,
- -0.030128372833132744, -0.037221964448690414, -0.04969792068004608,
- -0.04840710759162903, -0.03211793676018715, 0.021231036633253098, 0.22183948755264282,
- -0.08736240863800049, 0.011716214008629322, 0.07515354454517365, -0.07457421720027924,
- 0.32529139518737793, 0.06724600493907928, 0.001780773513019085, 0.0006400691345334053,
- 0.024701151996850967, 0.07250184565782547, 0.054722804576158524, -0.004180546384304762,
- -0.0003315631183795631, 0.0018410184420645237, -0.08378762751817703,
- 0.021453529596328735, 0.08998888731002808, -0.0028765208553522825, 0.01156835537403822,
- -0.03452075645327568, -0.006005556788295507, -0.06696159392595291,
- -0.0028339566197246313, -0.04920250177383423, 0.07019409537315369, 0.01078311912715435,
- -0.04301467910408974, -0.0232328400015831, 0.05037565529346466, -0.02863386645913124,
- 0.05016772449016571, -0.03335190936923027, 0.02334948629140854, 0.07525987178087234,
- 0.061679378151893616, 0.006136114709079266, -0.016787569969892502,
- -0.051947806030511856, -0.01590825617313385, 0.03211976960301399, 0.09444259107112885,
- 0.05515465512871742, 0.03749070316553116, 0.043152112513780594, 0.09788886457681656,
- -0.029296008870005608, 0.021143674850463867, -0.03935784474015236,
- -0.017136717215180397, 0.012765634804964066, -0.04186388850212097, 0.0313013419508934,
- -0.008159627206623554, -0.12487359344959259, 0.02079419046640396, 0.05389925837516785,
- 0.030319280922412872, -0.022474970668554306, 0.0029722461476922035,
- -0.03721476346254349, 0.01199992187321186, 0.017869209870696068, 0.008918358013033867,
- 0.07405395060777664, 0.040559493005275726, 0.025955084711313248, 0.13534832000732422,
- 0.006724907550960779, -0.0472957119345665, -0.04883822798728943, -0.007856774143874645,
- -0.037242524325847626, 0.07306276261806488, -0.106097511947155, -0.027967017143964767,
- 0.06178876385092735, -0.02253524214029312, 0.6278789639472961, 0.06219738721847534,
- 0.16652069985866547, -0.022944726049900055, -0.031669724732637405, 0.15516987442970276,
- 0.018097227439284325, 0.040815889835357666, -0.04999542236328125, -0.06382427364587784,
- 0.023848213255405426, -0.026859408244490623, -0.011492518708109856, 0.0251634418964386,
- 0.08296706527471542, 0.10665041953325272, -0.02363242767751217, 0.08961087465286255,
- -0.013692233711481094, -0.1193104088306427, -0.01866495981812477, -0.012489738874137402,
- 0.012108096852898598, -0.11743076890707016, 0.007759849540889263, 0.07289376109838486,
- 0.08050202578306198, -0.07435342669487, 0.03167724609375, -0.03388538211584091,
- 0.04962379112839699, -0.0024406532756984234, 0.01202386524528265, 0.016228852793574333,
- -0.004109397530555725, 0.07298439741134644, 0.030302664265036583, -0.01712748222053051,
- -0.07574893534183502, -0.02054203674197197, 0.1172780767083168, 0.01807287335395813,
- -0.01850544847548008, 0.02653999999165535, -0.0441863052546978, 0.05050422623753548,
- 0.0024088993668556213, 0.1549670398235321, -0.10910775512456894, 0.040377937257289886,
- 0.03671444207429886, 0.01508596446365118, 0.01515359990298748, -0.03255897015333176,
- -0.05985034629702568, -0.08866970986127853, 0.1014464870095253, 0.022259067744016647,
- 0.06446140259504318, 0.062178317457437515, -0.04685249924659729, 0.04099265858530998,
- 0.04672977328300476, -0.02044834941625595, -0.04103448614478111, 0.0463455505669117,
- 0.02913033962249756, -0.038745708763599396, 0.006086417008191347, 0.02176710031926632,
- 0.07602977007627487, 0.06965449452400208, -0.02197652868926525, 0.024138472974300385,
- -0.036175452172756195, -0.0355696976184845, 0.013500658795237541,
- -0.0020049046725034714, 0.03811889514327049, 0.08629819750785828, -0.039496440440416336,
- -0.04450759291648865, -0.03023306466639042, -0.02640126831829548, 0.008558007888495922,
- -0.031990863382816315, 0.06781602650880814, 0.059087011963129044, 0.050854578614234924,
- 0.04285107180476189, 0.08758237212896347, 0.05671705678105354, 0.029827222228050232,
- 0.024808987975120544, 0.09132079780101776, -0.03368905186653137, 0.033195316791534424,
- -0.016273001208901405, -0.020193304866552353, 0.02983347326517105, 0.019045371562242508,
- -0.055289097130298615, -0.02379896119236946, -0.03988856449723244,
- -0.041690193116664886, -0.03641112148761749, -0.0635736808180809, 0.0013061461504548788,
- 0.006543661467730999, -0.06755737960338593, -0.11181145161390305, -0.04333004727959633,
- -0.0204029381275177, 0.04174424707889557, -0.031192272901535034, 0.013324182480573654,
- -0.08453020453453064, 0.03322112187743187, 0.03274201229214668, 0.023979291319847107,
- 0.019902469590306282, -0.010225346311926842, -0.0362115278840065, -0.10580550879240036,
- 0.053886160254478455, 0.007750771474093199, -0.010699025355279446,
- -0.024196283891797066, -0.02450670674443245, -0.07535301893949509,
- -0.017465585842728615, -0.028737852349877357, -0.04364601522684097, 0.03237028419971466,
- 0.022747071459889412, 0.04359405115246773, 0.0025367350317537785, 0.014684169553220272,
- 0.03847026452422142, -0.035227470099925995, -0.008088137954473495, 0.060581617057323456,
- -0.03348888084292412, 0.05252619460225105, -0.03873564675450325, -0.05695598945021629,
- -0.07504361122846603, -0.0028881633188575506, -0.05182335898280144, 0.05169563740491867,
- -0.05039702355861664, -0.005208407063037157, -0.04042212665081024, 0.016326282173395157,
- 0.0790322944521904, -0.0864269956946373, -0.052133724093437195, -0.10007397830486298,
- 0.07944447547197342, -0.02614770457148552, -0.021572323516011238, 0.04946077615022659,
- -0.03495468571782112, 0.03455879166722298, 0.0014748774701729417, 0.014862346462905407,
- 0.020878378301858902, 0.034211207181215286, 0.006953767500817776, 0.013241555541753769,
- 0.024128111079335213, -0.06266111135482788, 0.030000967904925346, 0.08077265322208405,
- 0.4170350432395935, -0.16753503680229187, 0.08765652775764465, 0.09904374927282333,
- 0.027794428169727325, 0.028054146096110344, -0.021222587674856186, 0.06293017417192459,
- 0.01732539013028145, 0.08957520127296448, 0.10376785695552826, -0.04265416041016579,
- -0.01033483725041151, -0.08278641104698181, 0.059856101870536804, 0.00970140378922224,
- 0.018947254866361618, -0.024476811289787292, -0.021261543035507202,
- -0.02555520087480545, 0.005634795408695936, -0.06082192063331604, 0.016030792146921158,
- -0.02796156331896782, -0.06493338197469711, 0.02841912768781185, 0.024553101509809494,
- 0.043616026639938354, -0.04798893257975578, 0.021999895572662354, 0.03003106638789177,
- 0.07840791344642639, -0.0024582892656326294, 0.039276864379644394,
- -0.049056943506002426, 0.08131762593984604, -0.07525921612977982, -0.057796936482191086,
- 0.08413565158843994, 0.027713188901543617, 0.056563135236501694, 0.05028928071260452,
- -0.04214559867978096, 0.0056183068081736565, -0.0224783755838871, -0.045518726110458374,
- 0.010335220023989677, 0.041797809302806854, 0.037507858127355576, 0.04707062989473343,
- 0.15875928103923798, -0.011895044706761837, -0.023187212646007538, -0.04416746646165848,
- 0.0587179958820343, 0.10703815519809723, 0.007202434819191694, 0.01880018785595894,
- 0.011775021441280842, -0.03535914048552513, -0.00975444633513689, -0.027422260493040085,
- -0.05215635150671005, 0.00399948051199317, -0.055981457233428955, 0.06666601449251175,
- 0.06467418372631073, -0.0313885323703289, -0.12480403482913971, -0.07883308827877045,
- -0.06837663799524307, 0.028830919414758682, 0.09976077079772949, -0.0687914714217186,
- 0.024429764598608017, -0.006955565419048071, -0.0021536422427743673,
- -0.025981586426496506, -0.0484604649245739, 0.015537346713244915, -0.002986758714541793,
- 0.01852603442966938, 0.08174069225788116, 0.06147732585668564, -0.012232129462063313,
- 0.019506463780999184, -0.07203876972198486, 0.015361166559159756, 0.0025967040564864874,
- 0.004994087852537632, -0.0006789362523704767, -0.0381113700568676, 0.06648533791303635,
- 0.018122771754860878, -0.026537584140896797, -0.023928217589855194,
- -0.03200232982635498, -0.008568582125008106, -0.0951012596487999, -0.04767816141247749,
- -0.0302203968167305, -0.017778616398572922, 0.03679383173584938, -0.09812402725219727,
- -0.036635272204875946, -0.02205570600926876, -0.009851601906120777,
- -0.004822567570954561, 0.03742575645446777, -0.00022204818378668278,
- -0.14129135012626648, 0.0014920615358278155, 0.00622391514480114, 0.031130695715546608,
- 0.03970615938305855, -0.06022372469305992, 0.044417958706617355, 0.09027297049760818,
- 0.02749728411436081, -0.06499113887548447, -0.03881218284368515, -0.0466528944671154,
- 0.037419743835926056, -0.13306857645511627, -0.4942868947982788, 0.10339168459177017,
- -0.006952683907002211, 0.043100081384181976, 0.03903481736779213, -0.08210036903619766,
- 0.032725218683481216, 0.023615028709173203, -0.0017709796084091067, 0.07964217662811279,
- -0.06831958144903183, 0.05308229476213455, 0.022534990683197975, -0.009006952866911888,
- -0.018306052312254906, -0.06444696336984634, -0.01447250321507454, 0.03480193018913269,
- -0.020866617560386658, -0.07134181261062622, -0.1196235865354538, -0.006999964825809002,
- -0.06212623789906502, -0.012753132730722427, 0.019077546894550323, -0.00722216023132205,
- -0.06403188407421112, -0.05706103518605232, 0.051644548773765564, 0.06901844590902328,
- -0.003171077696606517, -0.041105207055807114, -0.006635413039475679,
- 0.023583633825182915, -0.0644158273935318, 0.10944979637861252, 0.07243159413337708,
- -0.02541111223399639, -0.04240664094686508, 0.07069328427314758, 0.04612254351377487,
- 0.19169485569000244, -0.0031419764272868633, 0.06586434692144394, -0.021118737757205963,
- 0.16364885866641998, 0.03298673778772354, 0.043849505484104156, -0.015695011243224144,
- -0.001472568023018539, -0.021224666386842728, -0.02866768278181553, 0.04032133147120476,
- -0.07337883859872818, -0.051657818257808685, -0.03301889821887016,
- -0.014812871813774109, -0.04760675132274628, -0.01599431410431862, 0.22074510157108307,
- 0.0031813173554837704, -0.016385920345783234, 0.009987417608499527,
- -0.01217692345380783, -0.0016212689224630594, -0.0687461644411087, -0.03483172506093979,
- -0.03318433091044426, 0.0030102008022367954, 0.028497343882918358, -0.03859289363026619,
- -0.11831246316432953, -0.021597864106297493, 0.013860922306776047,
- -0.018695417791604996, 0.10485011339187622, -0.006463382393121719, 0.03534485399723053,
- 0.01667454093694687, 0.09299028664827347, -0.0005654242122545838, -0.008567865006625652,
- 0.0700066089630127, 0.1326613873243332, 0.03322424367070198, -0.012847460806369781,
- -0.017778180539608, 0.021486354991793633, -0.012861616909503937, 0.10423513501882553,
- -0.06520536541938782, 0.09572303295135498, 0.08270123600959778, -0.02828896790742874,
- -0.04250844940543175, 0.032851673662662506, -0.020898109301924706, 0.007477561943233013,
- -0.4632790982723236, -0.05422722175717354, 0.09181250631809235, -0.019673438742756844,
- -0.0018524238839745522, 0.05801977589726448, -0.014598770998418331,
- -0.00861328188329935, 0.0452287495136261, -0.08566852658987045, 0.13944077491760254,
- 0.02545728161931038, 0.03693300858139992, -0.044061943888664246, 0.009213723242282867,
- 0.10152187943458557, 0.012513013556599617, -0.009227730333805084, 0.011918521486222744,
- -0.2073124647140503, 0.02491002157330513, -0.043960023671388626, 0.1374959945678711,
- -0.02012624219059944, 0.04606233909726143, 0.06467891484498978, -0.05152997374534607,
- 0.013476591557264328, 0.07463449239730835, -0.013242308981716633, 0.06923551857471466,
- -0.02552988938987255, -0.053062014281749725, 0.050027910619974136, 0.07646477222442627,
- 0.09957048296928406, -0.02385540120303631, 11.657332420349121, 0.019249504432082176,
- 0.07159561663866043, -0.056927796453237534, 0.020742420107126236, -0.02479940466582775,
- 0.027612924575805664, -0.020433945581316948, 0.09790196269750595, 0.1412840336561203,
- -0.047431252896785736, -0.06347226351499557, -0.05257750675082207, -0.03180043399333954,
- 0.016890740022063255, -0.04736243560910225, -0.04605450481176376, -0.054584801197052,
- 0.02244051732122898, -0.04437103867530823, -0.025911938399076462, 0.03590652346611023,
- 0.04664383828639984, 0.049132101237773895, -0.09044908732175827, 0.07758163660764694,
- 0.011829937808215618, 0.026399247348308563, -0.018935220316052437,
- -0.008965784683823586, 0.04186701774597168, -0.03300957754254341, 0.05390891805291176,
- 0.06711497157812119, -0.018739959225058556, 0.042670950293540955, 0.006794029846787453,
- 0.06096567586064339, 0.04228782281279564, 0.08063963055610657, 0.03137187659740448,
- 0.025106988847255707, 0.007969307713210583, 0.05355876684188843, 0.030864596366882324,
- 0.04516912251710892, -0.0018519664881750941, 0.08558095991611481, 0.00800908263772726,
- 0.024809252470731735, 0.10377649962902069, 0.009768867865204811, 0.07634901255369186,
- 0.04682381823658943, 0.010919746942818165, 0.02373042143881321, 0.010362719185650349,
- -0.07570438832044601, 0.025144582614302635, 0.05080214515328407, -0.05255670100450516,
- 0.13225169479846954, 0.011383574455976486, 0.11839760839939117, -0.008315962739288807,
- 0.03986694663763046, 0.059418193995952606, 0.09945721179246902, -0.08341552317142487,
- -0.03640085086226463, 0.027933770790696144, -0.10373584181070328, -0.05017274245619774,
- 0.04015374183654785, 0.08319336920976639, 0.002231650287285447, 0.03616134822368622,
- -0.05018075555562973, 0.022637149319052696, -0.03380611538887024, 0.014893975108861923,
- 0.0934520810842514, -0.04482920467853546, -0.004040881525725126, 0.026449289172887802,
- 0.03318433091044426, 0.07837889343500137, 0.1338263601064682, -0.04208134487271309,
- -0.050096362829208374, -0.05572132766246796, 0.06946830451488495, -0.004863921087235212,
- -0.050602179020643234, 0.0006591460551135242, -0.04186972603201866,
- 0.048270825296640396, -0.15328888595104218, 0.08909327536821365, 0.11445824056863785,
- -0.06800484657287598, -0.023875948041677475, -0.022440031170845032, 0.09170693159103394,
- -0.0270755086094141, 0.04304223507642746, -0.038485344499349594, -0.02492460235953331,
- 0.02835499309003353, 0.03982497751712799, -0.023837372660636902, 0.05736362561583519,
- 0.005416883155703545, -0.08116437494754791, 0.04788469523191452, 0.029018249362707138,
- -0.03814706951379776, 0.003850996494293213, 0.04633910208940506, 0.035116128623485565,
- -0.061285555362701416, -0.028940647840499878, -0.07076069712638855,
- -0.0000544897084182594, -0.005566723644733429, -0.02971702069044113,
- -0.0030185102950781584, 0.01141211949288845, -0.08364053815603256,
- -0.0016276997048407793, -0.00887374673038721, 0.0809202715754509, 0.15981145203113556,
- 0.01961161568760872, 0.057647235691547394, -0.013676511123776436, -0.04834261164069176,
- 0.03552532196044922, 0.06017530709505081, 0.10820697993040085, -0.014479801058769226,
- -0.028709160163998604, -0.029955929145216942, -0.0736151859164238,
- 0.000048478683311259374, 0.07406570017337799, 0.016158204525709152, 0.04504910856485367,
- 0.05430156737565994, -0.06378121674060822, -0.008572379127144814, 0.15699917078018188,
- 0.008031371049582958, 0.029182715341448784, 0.03480308875441551, -0.07066219300031662,
- -0.03185398131608963, 0.08445966988801956, -0.04964365437626839, -0.0081992382183671,
- 0.011541711166501045, -0.11558349430561066, 0.059157829731702805, 0.10759123414754868,
- -0.04791434854269028, 0.017610615119338036, 0.028432315215468407, 0.01958596520125866,
- 0.07167770713567734, 0.037403855472803116, 0.022674014791846275, -0.009825963526964188,
- -0.10936558991670609, -0.077327199280262, -0.01664568856358528, 0.06819944083690643,
- 0.026969077065587044, -0.12186145037412643, -0.021227650344371796, -0.01683374121785164
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 368,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Daniel Estrin"],
- "epoch_date_downloaded": 1665619200,
- "epoch_date_modified": 1665619200,
- "epoch_date_submitted": 1641081600,
- "flag": null,
- "report_number": 2161,
- "source_domain": "npr.org",
- "submitters": ["Kate Perkins"],
- "title": "Face Recognition Lets Palestinians Cross Israeli Checkposts Fast, But Raises Concerns",
- "url": "https://www.npr.org/2019/08/22/752765606/face-recognition-lets-palestinians-cross-israeli-checkposts-fast-but-raises-conc"
- },
- {
- "__typename": "Report",
- "authors": ["The Week"],
- "epoch_date_downloaded": 1665619200,
- "epoch_date_modified": 1665619200,
- "epoch_date_submitted": 1641081600,
- "flag": null,
- "report_number": 2160,
- "source_domain": "theweek.co.uk",
- "submitters": ["Kate Perkins"],
- "title": "Inside Israel’s facial recognition surveillance system",
- "url": "https://www.theweek.co.uk/news/world-news/middle-east/954723/palestinian-facebook-inside-facial-recognition-system-israeli-surveillance"
- },
- {
- "__typename": "Report",
- "authors": ["Michael Hernandez"],
- "epoch_date_downloaded": 1665619200,
- "epoch_date_modified": 1666051200,
- "epoch_date_submitted": 1641081600,
- "flag": null,
- "report_number": 2159,
- "source_domain": "aa.com.tr",
- "submitters": ["Kate Perkins"],
- "title": "Israel deploys sweeping facial recognition tech in West Bank: report",
- "url": "https://www.aa.com.tr/en/middle-east/israel-deploys-sweeping-facial-recognition-tech-in-west-bank-report/2415316"
- },
- {
- "__typename": "Report",
- "authors": ["Nadine Tag"],
- "epoch_date_downloaded": 1665619200,
- "epoch_date_modified": 1665619200,
- "epoch_date_submitted": 1641081600,
- "flag": null,
- "report_number": 2157,
- "source_domain": "scoopempire.com",
- "submitters": ["Kate Perkins"],
- "title": "\"Facebook for Palestinians\": Israel's New Facial Recognition System Raises Major Concerns",
- "url": "https://scoopempire.com/israels-new-facial-recognition-system-raises-major-concerns/"
- },
- {
- "__typename": "Report",
- "authors": ["Joe Middleton"],
- "epoch_date_downloaded": 1665619200,
- "epoch_date_modified": 1665619200,
- "epoch_date_submitted": 1641081600,
- "flag": null,
- "report_number": 2156,
- "source_domain": "independent.co.uk",
- "submitters": ["Kate Perkins"],
- "title": "Israel escalates surveillance of Palestinians using facial recognition",
- "url": "https://www.independent.co.uk/news/world/middle-east/israel-palestinians-facial-recognition-blue-wolf-b1953856.html"
- },
- {
- "__typename": "Report",
- "authors": ["The Palestine Chronicle"],
- "epoch_date_downloaded": 1665619200,
- "epoch_date_modified": 1665619200,
- "epoch_date_submitted": 1641081600,
- "flag": null,
- "report_number": 2155,
- "source_domain": "palestinechronicle.com",
- "submitters": ["Kate Perkins"],
- "title": "‘Blue Wolf’: Israel Employs Massive Facial Recognition Program in Hebron",
- "url": "https://www.palestinechronicle.com/blue-wolf-israel-employs-massive-facial-recognition-program-in-hebron/"
- },
- {
- "__typename": "Report",
- "authors": ["Shai Danieli"],
- "epoch_date_downloaded": 1641081600,
- "epoch_date_modified": 1665619200,
- "epoch_date_submitted": 1641081600,
- "flag": null,
- "report_number": 2154,
- "source_domain": "haaretz.com",
- "submitters": ["Kate Perkins"],
- "title": "Have You Heard About Blue Wolf?",
- "url": "https://www.haaretz.com/opinion/.premium-have-you-heard-about-blue-wolf-1.10402443"
- },
- {
- "__typename": "Report",
- "authors": ["Mustafa Abu Sneineh"],
- "epoch_date_downloaded": 1641081600,
- "epoch_date_modified": 1665619200,
- "epoch_date_submitted": 1641081600,
- "flag": null,
- "report_number": 2153,
- "source_domain": "middleeasteye.net",
- "submitters": ["Kate Perkins"],
- "title": "Meet Blue Wolf, the app Israel uses to spy on Palestinians in the occupied West Bank",
- "url": "https://www.middleeasteye.net/news/israel-whats-blue-wolf-app-soldiers-use-photograph-palestinians"
- },
- {
- "__typename": "Report",
- "authors": ["Emma Roth"],
- "epoch_date_downloaded": 1665619200,
- "epoch_date_modified": 1665619200,
- "epoch_date_submitted": 1641081600,
- "flag": null,
- "report_number": 2152,
- "source_domain": "theverge.com",
- "submitters": ["Kate Perkins"],
- "title": "The Israeli army is using facial recognition to track Palestinians, former soldiers reveal",
- "url": "https://www.theverge.com/2021/11/8/22769933/israeli-army-facial-recognition-palestinians-track"
- },
- {
- "__typename": "Report",
- "authors": ["Elizabeth Dwoskin"],
- "epoch_date_downloaded": 1641081600,
- "epoch_date_modified": 1665619200,
- "epoch_date_submitted": 1641081600,
- "flag": null,
- "report_number": 2151,
- "source_domain": "washingtonpost.com",
- "submitters": ["Kate Perkins"],
- "title": "Israel escalates surveillance of Palestinians with facial recognition program in West Bank",
- "url": "https://www.washingtonpost.com/world/middle_east/israel-palestinians-surveillance-facial-recognition/2021/11/05/3787bf42-26b2-11ec-8739-5cb6aba30a30_story.html"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "jason-allen",
- "name": "Jason Allen"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "midjourney",
- "name": "Midjourney"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "digital-artists",
- "name": "digital artists"
- },
- {
- "__typename": "Entity",
- "entity_id": "artists-submitting-in-the-digital-arts-category",
- "name": "artists submitting in the digital arts category"
- },
- {
- "__typename": "Entity",
- "entity_id": "artists",
- "name": "artists"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [2162],
- "vector": [
- -0.10704787820577621, 0.06503734737634659, 0.02279195375740528, -0.15021058917045593,
- 0.08277864754199982, -0.025497587397694588, -0.00659260805696249, 0.09911008179187775,
- 0.09903732687234879, -0.17633292078971863, -0.007730027660727501, 0.07123774290084839,
- 0.02771671488881111, -0.08465111255645752, 0.04220341145992279, -0.07743468135595322,
- -0.14855773746967316, -0.045382194221019745, -0.015932291746139526,
- -0.15057551860809326, -0.06944333016872406, -0.043878935277462006, 0.035794273018836975,
- 0.0800449401140213, -0.07498668134212494, 0.04069080948829651, 0.120143361389637,
- 0.1633862555027008, -0.10569427907466888, 0.06463360786437988, -0.050332434475421906,
- -0.1181631088256836, 0.15073895454406738, 0.0111679807305336, 0.029257657006382942,
- 0.09913605451583862, 0.03967871144413948, -0.023773016408085823, -0.019959501922130585,
- -0.021538330242037773, 0.05382963642477989, 0.2357504814863205, -0.015025009401142597,
- -0.01005877461284399, 0.06138811632990837, -0.031581778079271317, 0.01808267831802368,
- 0.04572291672229767, 0.017383215948939323, -0.025463370606303215, -0.014327513985335827,
- -0.011036395095288754, -0.08392352610826492, 0.06093231588602066, -0.11587047576904297,
- 0.11373017728328705, 0.04327281191945076, -0.05404285341501236, 0.03640805184841156,
- -0.08385450392961502, -0.07302171736955643, -0.21941539645195007, -0.05425919592380524,
- -0.12115085124969482, 0.05899655818939209, -0.11887937784194946, -0.0383136160671711,
- 0.08925744891166687, 0.005116379354149103, 0.047779157757759094, 0.011309251189231873,
- -0.07732672244310379, -0.03177991881966591, -0.031908076256513596,
- -0.003878250252455473, -0.02815728820860386, 0.0621662475168705, 0.23706291615962982,
- -0.14081379771232605, 0.04890161752700806, 0.14459338784217834, -0.11289238184690475,
- 0.4477926194667816, 0.043052442371845245, -0.05159197747707367, 0.013785425573587418,
- 0.14714452624320984, 0.07353129237890244, 0.030618082731962204, 0.045200202614068985,
- -0.041197218000888824, 0.04211198538541794, -0.03795185312628746, 0.028611918911337852,
- 0.08278307318687439, 0.0394926555454731, -0.017029620707035065, 0.09903661161661148,
- -0.03954135999083519, -0.0581059455871582, 0.015170687809586525, -0.04820918291807175,
- 0.14735721051692963, 0.0725710466504097, -0.047166235744953156, -0.02913232333958149,
- 0.10807625204324722, -0.09938948601484299, 0.0698777511715889, -0.05260832607746124,
- 0.04693279787898064, 0.0007051668944768608, 0.0629698857665062, -0.04068745672702789,
- 0.008025247603654861, -0.041649386286735535, 0.006702379323542118,
- -0.016167039051651955, 0.10514210909605026, 0.061482932418584824, -0.047438059002161026,
- 0.07501406967639923, 0.07074184715747833, -0.08036152273416519, 0.00019608531147241592,
- -0.05803883075714111, -0.061685603111982346, -0.01550235878676176, 0.01496454980224371,
- 0.017911182716488838, -0.08215725421905518, -0.20264796912670135, 0.04371112957596779,
- 0.09195742011070251, -0.02375921793282032, -0.02035590074956417, 0.017866652458906174,
- -0.05952686816453934, 0.026223139837384224, -0.04107191041111946, 0.008706474676728249,
- 0.06198367848992348, 0.04912587255239487, 0.023792287334799767, 0.08583500981330872,
- 0.04724203795194626, -0.01899039000272751, -0.09665702283382416, 0.05092465877532959,
- -0.05002039298415184, 0.08475848287343979, -0.1620890349149704, 0.01996682956814766,
- -0.031748197972774506, 0.0022062298376113176, 0.685489296913147, 0.08169928193092346,
- 0.13421288132667542, -0.025824308395385742, -0.027736056596040726, 0.17242692410945892,
- 0.0029133264906704426, 0.03562344238162041, -0.1256602257490158, -0.04499632865190506,
- -0.0424041748046875, -0.026994485408067703, -0.02918451651930809, 0.00938559602946043,
- 0.024647202342748642, 0.10164156556129456, -0.01086458284407854, 0.12600788474082947,
- 0.02191731333732605, -0.08224788308143616, -0.04303881898522377, 0.03165622800588608,
- 0.03969358652830124, -0.112228162586689, -0.032530058175325394, 0.023407790809869766,
- 0.0699760839343071, -0.03495611995458603, -0.021183576434850693, -0.0254893209785223,
- 0.03494894877076149, -0.05229691043496132, 0.01831033080816269, -0.013858719728887081,
- 0.020836466923356056, 0.08132052421569824, 0.07402428984642029, -0.02495962753891945,
- -0.08222781866788864, -0.05432899296283722, 0.11306949704885483, -0.023910777643322945,
- -0.06861147284507751, 0.12848296761512756, -0.08439116179943085, 0.02537677437067032,
- 0.03658393397927284, 0.1326831877231598, -0.11753906309604645, 0.07541245222091675,
- -0.01734037511050701, 0.005647249054163694, 0.07013457268476486, -0.017014091834425926,
- -0.06699886918067932, -0.08495989441871643, 0.022774338722229004, 0.01078065112233162,
- 0.09122154861688614, 0.04445374757051468, -0.0403158999979496, 0.07390245050191879,
- 0.00781821645796299, 0.0021616769954562187, -0.06430907547473907, 0.08414464443922043,
- 0.04167552292346954, -0.009936443530023098, -0.03419606387615204, 0.03905180096626282,
- 0.03185473009943962, 0.07564196735620499, 0.05721624568104744, 0.05271267518401146,
- -0.011719747446477413, -0.04865202307701111, -0.007845702581107616, 0.01714889518916607,
- 0.07278987765312195, 0.0660436749458313, -0.12860411405563354, -0.08938943594694138,
- -0.004014748148620129, -0.02807794138789177, -0.005287764128297567,
- -0.025525478646159172, 0.06728976964950562, 0.10571584850549698, 0.12256500124931335,
- 0.07106205075979233, 0.02208074741065502, 0.07938187569379807, 0.06514623761177063,
- 0.016244975849986076, 0.09799820929765701, -0.0488051176071167, -0.09842672199010849,
- -0.05591309815645218, -0.03166395425796509, 0.018130391836166382, -0.008696561679244041,
- -0.09898924827575684, -0.048204127699136734, -0.05823453515768051, -0.03284701332449913,
- -0.09627825021743774, 0.0072299521416425705, 0.0003935412096325308, 0.04747511446475983,
- -0.0871945396065712, -0.13121680915355682, -0.08296013623476028, 0.03285178169608116,
- 0.059757739305496216, 0.03268125653266907, -0.04662759602069855, -0.12264546751976013,
- 0.04796857759356499, -0.02026611939072609, 0.058410342782735825, -0.045154277235269547,
- 0.08855704218149185, -0.007697628811001778, -0.12144400179386139, 0.018818657845258713,
- 0.020126763731241226, -0.03754029795527458, -0.03473475202918053, -0.11542593687772751,
- 0.00108849979005754, -0.030271822586655617, 0.02424326352775097, -0.00942711066454649,
- 0.04247944429516792, 0.03711602836847305, 0.06477833539247513, -0.01932651549577713,
- -0.05927596241235733, 0.04958634078502655, -0.0438062958419323, -0.015558167360723019,
- 0.0968770682811737, -0.011168040335178375, 0.02595905028283596, -0.06232145056128502,
- -0.03211009129881859, -0.09018950164318085, -0.00554582430049777, -0.04080004617571831,
- 0.0811668112874031, -0.04118748754262924, 0.031013431027531624, -0.0631072074174881,
- -0.03156760334968567, 0.05453268066048622, -0.06772124767303467, -0.07166583091020584,
- -0.08683973550796509, 0.053987979888916016, -0.04735691845417023, 0.0031721193809062243,
- 0.0424441322684288, -0.025380892679095268, 0.04395168647170067, 0.009926012717187405,
- 0.01626710221171379, 0.03870067745447159, 0.10642281174659729, -0.028805816546082497,
- 0.045796338468790054, 0.07488588988780975, -0.042617686092853546, 0.014262513257563114,
- 0.04719000682234764, 0.42085087299346924, -0.20898723602294922, 0.08512558043003082,
- 0.11339294165372849, 0.007016066461801529, 0.008783570490777493, -0.1029963418841362,
- 0.06225375831127167, 0.05623025447130203, 0.1377079039812088, 0.16680575907230377,
- -0.023672977462410927, 0.034865278750658035, -0.05982787534594536, 0.09036795794963837,
- 0.02482140250504017, 0.028761887922883034, -0.0073129828087985516, -0.06694505363702774,
- -0.01582906022667885, 0.06311111897230148, -0.0955168753862381, -0.0024171345867216587,
- -0.010830270126461983, -0.037161391228437424, 0.03150474280118942, 0.04845980927348137,
- 0.0850396454334259, -0.05323287099599838, 0.018257776275277138, -0.06156603991985321,
- 0.024199746549129486, 0.025548623874783516, 0.07837644964456558, -0.08857112377882004,
- 0.03230177238583565, -0.05753357708454132, -0.1086365282535553, 0.1005510538816452,
- 0.004187614191323519, 0.10786261409521103, 0.054812077432870865, -0.04287109151482582,
- 0.04306060075759888, -0.03657739609479904, -0.019772445783019066, -0.009267411194741726,
- 0.08342769742012024, 0.036689434200525284, 0.10733883082866669, 0.12808208167552948,
- -0.010164851322770119, 0.01764681749045849, -0.057958487421274185, 0.060579609125852585,
- 0.11976545304059982, 0.0009009750210680068, 0.06884080916643143, 0.01666288450360298,
- -0.0016952477162703872, 0.016125163063406944, -0.06313224881887436,
- -0.08777312934398651, -0.04718274250626564, -0.07726036757230759, 0.06647986173629761,
- 0.043551087379455566, -0.025405649095773697, -0.20685383677482605,
- 0.0038040890358388424, -0.03514274209737778, 0.014155734330415726, 0.044762302190065384,
- -0.03454453870654106, -0.043300334364175797, -0.00615809066221118, 0.014135013334453106,
- 0.016950689256191254, -0.10374388098716736, 0.00890481285750866, -0.056892432272434235,
- 0.0321061871945858, 0.10732376575469971, 0.0470479354262352, -0.06558436900377274,
- 0.08571144938468933, -0.11693638563156128, 0.031324997544288635, 0.0026958968956023455,
- -0.01763620600104332, 0.02972540631890297, -0.04088273271918297, 0.029276538640260696,
- 0.04208609089255333, -0.10919822007417679, 0.036930251866579056, -0.04684142395853996,
- -0.07870893180370331, -0.05017797648906708, -0.10495524853467941, -0.042004477232694626,
- -0.10608068108558655, 0.03665953502058983, -0.08390224725008011, -0.025028537958860397,
- -0.010939142666757107, -0.004668668378144503, -0.017673850059509277,
- 0.08152307569980621, 0.020890988409519196, -0.14830926060676575, -0.028996439650654793,
- -0.05432011932134628, 0.017944803461432457, -0.014554702676832676, -0.07085990160703659,
- -0.028740791603922844, 0.0294880922883749, 0.03371562063694, -0.05814565345644951,
- 0.04415807127952576, -0.10665576905012131, 0.05855751782655716, -0.08338231593370438,
- -0.41413652896881104, 0.05565761774778366, 0.0554363839328289, 0.015118349343538284,
- 0.010582569986581802, -0.0416223481297493, 0.03290816769003868, -0.021065710112452507,
- -0.044727254658937454, 0.11043841391801834, -0.03697600215673447, -0.01565084420144558,
- -0.034643255174160004, -0.06752829253673553, -0.013507280498743057,
- -0.003188980743288994, -0.0843791738152504, 0.06414450705051422, 0.005138973705470562,
- -0.039064500480890274, -0.089542455971241, 0.03258637711405754, -0.026579147204756737,
- 0.024335889145731926, -0.032492659986019135, 0.004112850874662399,
- -0.028207432478666306, -0.0690385103225708, 0.02246551588177681, 0.08625347912311554,
- 0.02442862279713154, -0.09847357869148254, -0.05127349868416786, 0.06126614660024643,
- 0.013969361782073975, 0.1352241337299347, 0.042359355837106705, -0.012565569952130318,
- -0.07642875611782074, 0.06614495068788528, 0.07442677766084671, 0.1805952489376068,
- -0.02333918772637844, 0.04574314132332802, 0.05360723286867142, 0.14175838232040405,
- 0.04983484372496605, 0.018625330179929733, -0.03968719765543938, -0.010320501402020454,
- 0.006970708258450031, -0.020931588485836983, 0.10867740958929062, -0.08304022252559662,
- -0.020495299249887466, 0.00840730406343937, -0.04817979037761688, -0.007311156019568443,
- 0.019088611006736755, 0.1967635303735733, 0.02737727202475071, 0.02045922726392746,
- 0.04496465623378754, -0.03316796198487282, -0.012089465744793415, -0.12036284059286118,
- -0.04398614540696144, -0.01568485237658024, -0.04976973310112953, 0.007824462838470936,
- -0.04524275287985802, -0.08402300626039505, -0.007923989556729794,
- -0.019564339891076088, -0.036867499351501465, 0.0945090651512146, -0.0317390114068985,
- 0.012247893959283829, -0.048729296773672104, 0.18017128109931946, 0.046514205634593964,
- 0.0280460175126791, 0.017412764951586723, 0.08277208358049393, 0.010437728837132454,
- 0.04381322115659714, -0.021360032260417938, -0.09197050333023071, -0.06186266988515854,
- 0.13282673060894012, -0.04323459044098854, 0.12568606436252594, 0.06499365717172623,
- -0.02406778372824192, -0.01624186336994171, 0.004476566333323717, 0.052969854325056076,
- -0.02008139342069626, -0.44870588183403015, 0.004314886871725321, 0.16370272636413574,
- -0.07332570105791092, 0.053506817668676376, 0.04951617121696472, 0.03596944734454155,
- -0.01792917400598526, -0.012954404577612877, -0.06582095474004745, 0.13177625834941864,
- 0.04222042113542557, 0.05172719061374664, -0.08664150536060333, 0.037070710211992264,
- 0.074116550385952, -0.027257444337010384, -0.018686281517148018, 0.03204183280467987,
- -0.22154614329338074, -0.022588104009628296, -0.0162661075592041, 0.1661810278892517,
- 0.01399372611194849, 0.037311360239982605, 0.09207835793495178, -0.026065515354275703,
- 0.01570141315460205, 0.02207026444375515, 0.016556192189455032, 0.014815923757851124,
- -0.02050771377980709, -0.04453107342123985, 0.12992167472839355, 0.1387108713388443,
- 0.03032556362450123, 0.013220918364822865, 12.321023941040039, 0.07935803383588791,
- 0.12546712160110474, -0.10250893235206604, 0.016862574964761734, -0.04551434889435768,
- 0.01609954424202442, -0.041068363934755325, 0.0922451764345169, 0.13060177862644196,
- -0.04378344491124153, -0.034964971244335175, -0.025888007134199142, -0.1421837955713272,
- 0.009875698015093803, -0.0809658095240593, -0.04250800237059593, -0.017445139586925507,
- 0.043424490839242935, -0.07445226609706879, -0.08053404092788696, 0.04720137268304825,
- 0.09517744183540344, 0.015945956110954285, -0.13059906661510468, 0.04671129956841469,
- 0.04846281558275223, -0.0035845728125423193, 0.0026584055740386248, 0.06981190294027328,
- 0.01596563309431076, 0.06222251430153847, 0.03660634532570839, -0.035444825887680054,
- -0.005912187974900007, 0.11203848570585251, 0.0694914236664772, 0.07966987043619156,
- 0.011589977890253067, 0.07853361964225769, 0.002300575375556946, 0.024009350687265396,
- 0.024290667846798897, 0.048869140446186066, 0.029209798201918602, -0.006373824551701546,
- 0.08706654608249664, 0.16844472289085388, -0.02871635928750038, 0.07140249013900757,
- 0.11269176006317139, -0.021302463486790657, 0.09745094180107117, 0.04757022485136986,
- -0.036342620849609375, 0.015157761052250862, -0.01109316572546959, -0.09749891608953476,
- 0.08556396514177322, -0.001929920632392168, -0.06654886156320572, 0.11452633142471313,
- 0.017288140952587128, 0.11658385396003723, -0.0015995476860553026, 0.024587981402873993,
- 0.056938935071229935, 0.09329943358898163, -0.09161270409822464, -0.13020862638950348,
- 0.02803063951432705, -0.08890613168478012, -0.06437967717647552, 0.07700024545192719,
- 0.06957551836967468, -0.012119648978114128, 0.03780448064208031, -0.04648439586162567,
- 0.03708522394299507, -0.01766836643218994, 0.02694719098508358, 0.07052980363368988,
- -0.01309724897146225, 0.04774054139852524, 0.03136659786105156, 0.056480277329683304,
- 0.10251039266586304, 0.07807225733995438, 0.027513977140188217, -0.07715101540088654,
- -0.04348914697766304, 0.10669322311878204, -0.016091352328658104, -0.05310698226094246,
- 0.07550477236509323, -0.05161887779831886, 0.07469351589679718, -0.21692560613155365,
- 0.12263423204421997, 0.15980751812458038, -0.057453691959381104, -0.04286346584558487,
- -0.007912744767963886, 0.1063678115606308, 0.00047890725545585155, 0.05325564369559288,
- -0.057729847729206085, -0.006119206082075834, 0.02513512782752514, 0.07339348644018173,
- -0.048001863062381744, 0.061692602932453156, 0.05435221269726753, -0.1258411407470703,
- 0.045688070356845856, 0.0941164568066597, -0.014110501855611801, -0.0206440519541502,
- 0.05795365944504738, 0.03217123821377754, -0.09905600547790527, -0.07258208841085434,
- -0.045194387435913086, -0.04468440264463425, -0.05673833191394806, -0.05647505819797516,
- -0.007633635308593512, 0.04162761941552162, -0.08280100673437119, -0.001856333459727466,
- 0.039579544216394424, 0.045429833233356476, 0.08891990780830383, -0.04904170706868172,
- 0.06114833429455757, -0.07143867015838623, -0.023583803325891495, 0.04053075611591339,
- 0.0725075900554657, 0.06127001345157623, -0.053141381591558456, -0.05714643746614456,
- -0.05041111260652542, -0.11908037960529327, 0.06763311475515366, 0.1075286716222763,
- 0.03567911684513092, 0.04940842464566231, 0.05114420875906944, -0.08583682030439377,
- -0.03543892130255699, 0.06048235669732094, 0.06603773683309555, 0.045239243656396866,
- 0.08166822791099548, -0.027422841638326645, -0.0470367893576622, 0.11764504760503769,
- -0.039310820400714874, 0.011713940650224686, 0.012860800139605999,
- -0.0007244104635901749, 0.0639919862151146, 0.08924926817417145, 0.05680476874113083,
- 0.0797697976231575, 0.03616000711917877, -0.015593334101140499, 0.07249134033918381,
- 0.020801182836294174, -0.012691725976765156, -0.026478253304958344,
- -0.08260439336299896, -0.11153610795736313, -0.012335928156971931, 0.10368094593286514,
- 0.007220174185931683, -0.10649964213371277, 0.020373210310935974, -0.053078342229127884
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 369,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Matthew Gault"],
- "epoch_date_downloaded": 1661990400,
- "epoch_date_modified": 1665964800,
- "epoch_date_submitted": 1661990400,
- "flag": null,
- "report_number": 2162,
- "source_domain": "vice.com",
- "submitters": ["Luna McNulty"],
- "title": "An AI-Generated Artwork Won First Place at a State Fair Fine Arts Competition, and Artists Are Pissed",
- "url": "https://www.vice.com/en/article/bvmvqm/an-ai-generated-artwork-won-first-place-at-a-state-fair-fine-arts-competition-and-artists-are-pissed"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "google",
- "name": "Google"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "google",
- "name": "Google"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "google's-competitor-shopping-services",
- "name": "Google's competitor shopping services"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [2163],
- "vector": [
- -0.0023049823939800262, 0.11312519013881683, 0.01894710585474968, -0.054784294217824936,
- 0.06879354268312454, -0.12258069962263107, 0.029709069058299065, 0.039102934300899506,
- 0.03283032029867172, -0.1238074079155922, 0.02015569806098938, 0.051844317466020584,
- 0.06023057550191879, -0.04337706416845322, 0.04049282893538475, -0.024032389745116234,
- -0.05549578368663788, 0.03201134875416756, 0.027524733915925026, -0.09834904968738556,
- -0.08337599784135818, -0.004931874107569456, 0.036063745617866516, 0.05329969525337219,
- -0.013917692936956882, 0.04012926667928696, 0.11714643239974976, 0.12698589265346527,
- -0.010035321116447449, 0.09451187402009964, -0.025189589709043503, -0.02650771103799343,
- 0.07484839856624603, -0.033949751406908035, -0.022586457431316376, 0.0527973473072052,
- 0.07414877414703369, -0.04930327087640762, -0.07743636518716812, -0.04561224207282066,
- 0.09951247274875641, 0.202900230884552, -0.041779473423957825, -0.004765903577208519,
- 0.047633424401283264, 0.01386273093521595, 0.03722057864069939, 0.02992839366197586,
- -0.013438917696475983, -0.01310934592038393, 0.0226362943649292, 0.038132958114147186,
- -0.03387913107872009, 0.020179759711027145, -0.07143449038267136, 0.01177990436553955,
- 0.01780962012708187, 0.04224632307887077, 0.04901187866926193, -0.06856516748666763,
- 0.009324549697339535, -0.16529197990894318, -0.03479774296283722, -0.06045999005436897,
- 0.0921664759516716, -0.08809296786785126, -0.018027758225798607, 0.031112749129533768,
- 0.04168492555618286, 0.04307166486978531, 0.046616215258836746, -0.019172867760062218,
- 0.03878682851791382, -0.04743119701743126, -0.014178344048559666, -0.022419419139623642,
- 0.03678777068853378, 0.2359449714422226, -0.07055077701807022, 0.025356784462928772,
- 0.10702992230653763, -0.0798071101307869, 0.32520627975463867, 0.05924796685576439,
- -0.04865695536136627, -0.07389480620622635, 0.07715658098459244, 0.0736377015709877,
- 0.03783759847283363, 0.03607899695634842, -0.00960964523255825, 0.05731051787734032,
- -0.00748512614518404, 0.010058930143713951, 0.0573774054646492, 0.010929119773209095,
- -0.03015291690826416, -0.00428037391975522, -0.03142593801021576, -0.014628994278609753,
- -0.002807841869071126, -0.0517326295375824, 0.1135871633887291, 0.009311921894550323,
- -0.05077271908521652, -0.0018224668456241488, 0.031662359833717346,
- -0.02242710068821907, 0.029479587450623512, -0.00956790056079626, 0.049485139548778534,
- 0.06894420832395554, 0.06543347984552383, 0.009709392674267292, 0.06391831487417221,
- -0.013975453563034534, 0.01956787519156933, 0.04478843882679939, 0.045447126030921936,
- 0.04771145060658455, 0.011901650577783585, 0.08938831090927124, 0.08138889819383621,
- -0.002621616469696164, -0.024888956919312477, -0.03365618735551834,
- 0.015702955424785614, -0.012481835670769215, -0.0269439909607172, 0.013571088202297688,
- 0.0019271966302767396, -0.1164594516158104, -0.0030346401035785675, 0.08229681104421616,
- 0.05306904390454292, -0.01153741218149662, -0.01944613829255104, -0.031244441866874695,
- 0.053079601377248764, 0.0011144222225993872, 0.004602011293172836, 0.07542259991168976,
- 0.025600947439670563, 0.03403099998831749, 0.13111773133277893, 0.00913771241903305,
- -0.026468457654118538, -0.09629058092832565, -0.023816706612706184,
- -0.01129916775971651, 0.10117349028587341, -0.09642674028873444, -0.02825208380818367,
- 0.03226347267627716, 0.014577268622815609, 0.6041831970214844, 0.1154942512512207,
- 0.09297758340835571, -0.09118369221687317, -0.04515235126018524, 0.15353666245937347,
- -0.008769823238253593, 0.056295037269592285, -0.009583934210240841,
- -0.045816849917173386, 0.034488316625356674, -0.08338674157857895, -0.03539296239614487,
- 0.0009939931333065033, 0.008355168625712395, 0.12223140150308609, 0.018623393028974533,
- 0.051045384258031845, -0.002348585519939661, -0.023571891710162163,
- 0.0014973607612773776, -0.020299604162573814, -0.007429435849189758,
- -0.11229237914085388, -0.0001544990809634328, 0.011467281728982925, 0.06830426305532455,
- -0.029443791136145592, 0.021558497101068497, -0.020269708707928658,
- -0.00980257149785757, -0.005766675341874361, 0.014954116195440292, 0.01616332307457924,
- 0.01380967441946268, 0.019286489114165306, 0.07148454338312149, -0.03214629739522934,
- -0.07862278074026108, -0.03399711847305298, 0.09720408171415329, 0.023272963240742683,
- -0.01214693021029234, 0.07938618212938309, -0.10632999241352081, 0.03773961216211319,
- -0.015928851440548897, 0.11642462015151978, -0.08717410266399384, 0.026837656274437904,
- -0.012658067047595978, -0.01717422343790531, 0.05393641069531441, -0.011082728393375874,
- -0.08396832644939423, -0.06130487844347954, 0.06464092433452606, 0.01612512394785881,
- 0.04253967106342316, -0.0004713113303296268, -0.01398061029613018,
- -0.004675279371440411, -0.0009235981851816177, -0.005529144313186407,
- -0.08071590960025787, 0.07398856431245804, 0.029515216127038002, 0.015007899142801762,
- -0.03445577993988991, 0.02356121875345707, 0.02678011544048786, 0.03664311021566391,
- 0.008698704652488232, 0.029806967824697495, -0.02987333945930004, -0.004592963960021734,
- 0.010373911820352077, 0.020927608013153076, 0.009549370035529137, 0.0986086055636406,
- -0.09562303870916367, -0.04209376499056816, -0.016293074935674667, -0.0571325458586216,
- -0.007383652962744236, -0.07993920892477036, 0.02719324640929699, 0.051759034395217896,
- 0.05410752072930336, 0.028689630329608917, 0.06668160855770111, 0.04881507530808449,
- 0.01582334376871586, -0.009980312548577785, 0.011772212572395802, -0.03053831309080124,
- -0.042376238852739334, -0.012247632257640362, 0.013949021697044373, 0.12213743478059769,
- 0.01948605105280876, -0.06124573200941086, 0.007691404782235622, -0.03875884413719177,
- -0.06986945122480392, -0.05006946995854378, -0.011129206046462059, 0.005005670711398125,
- 0.026413651183247566, -0.0633351281285286, -0.05554872751235962, -0.03786219283938408,
- 0.012290997430682182, 0.01398300938308239, -0.01908564195036888, -0.010188519023358822,
- -0.11680162698030472, -0.01849951408803463, -0.012874379754066467, 0.04314260929822922,
- 0.010693761520087719, 0.026250440627336502, 0.047694578766822815, -0.07814524322748184,
- -0.015208883211016655, 0.013081569224596024, -0.0686335638165474, -0.03266320750117302,
- -0.031799040734767914, -0.054523568600416183, 0.04690711572766304, 0.008462237194180489,
- -0.021821381524205208, 0.0254247784614563, 0.032828886061906815, 0.05477987974882126,
- -0.027706649154424667, -0.02890990674495697, 0.06476591527462006, -0.08405695855617523,
- 0.0425163134932518, 0.07802023738622665, -0.004038619343191385, 0.015357025898993015,
- -0.030296070501208305, 0.011398816481232643, -0.04695732146501541,
- -0.017735542729496956, -0.04559699818491936, 0.06287093460559845, -0.037964385002851486,
- 0.00902251061052084, -0.05124619975686073, 0.002496064407750964, 0.0658528208732605,
- -0.1031518280506134, -0.07798386365175247, -0.08243381232023239, 0.09108540415763855,
- 0.030213933438062668, 0.011766723357141018, -0.006795325316488743, -0.03700530529022217,
- 0.024134477600455284, -0.005851940717548132, -0.0143592469394207, 0.0544603131711483,
- 0.00979550089687109, 0.004423398524522781, 0.015559039078652859, 0.04828765243291855,
- -0.015862923115491867, -0.016007862985134125, 0.07788373529911041, 0.36509084701538086,
- -0.1125355064868927, 0.10341828316450119, 0.09880514442920685, -0.010509844869375229,
- 0.05318033695220947, -0.054541174322366714, 0.05062757059931755, 0.03677114471793175,
- 0.09123145043849945, 0.09216393530368805, -0.0014507077867165208, 0.0011318334145471454,
- -0.07533496618270874, 0.06265563517808914, 0.011968896724283695, 0.009324614889919758,
- 0.02667875774204731, -0.045492712408304214, -0.01425019558519125, 0.013803644105792046,
- -0.031045999377965927, -0.022937055677175522, -0.05345149710774422, -0.1002010628581047,
- 0.020636944100260735, 0.021437032148241997, 0.06418078392744064, 0.01038044597953558,
- 0.044044602662324905, 0.00452276598662138, 0.039358776062726974, -0.019524671137332916,
- 0.04370172321796417, -0.08463530242443085, 0.09244518727064133, -0.059487614780664444,
- -0.07233361899852753, 0.11477445065975189, 0.010773775167763233, 0.03317384049296379,
- 0.031852904707193375, -0.000013944889360573143, 0.02251085452735424,
- -0.004097722005099058, -0.06082366779446602, -0.014890105463564396,
- 0.027288559824228287, 0.024347273632884026, 0.06932251900434494, 0.14463593065738678,
- 0.023610956966876984, -0.010815511457622051, -0.08454493433237076, 0.05016656592488289,
- 0.07921842485666275, -0.00544319860637188, 0.058517176657915115, -0.009616403840482235,
- 0.009001397527754307, -0.0019582691602408886, -0.027699753642082214,
- -0.09001658111810684, 0.009596413001418114, -0.07200988382101059, 0.05794382095336914,
- 0.03623250126838684, -0.04734703525900841, -0.015782903879880905, -0.044549908488988876,
- -0.06798956543207169, 0.011515507474541664, 0.05573754757642746, -0.07344043999910355,
- -0.005080580245703459, 0.041498005390167236, -0.00595516012981534, 0.007295545656234026,
- -0.10503378510475159, -0.02109517715871334, -0.0669320598244667, 0.033956706523895264,
- 0.05576557293534279, 0.0689907819032669, -0.03238555043935776, 0.01915421336889267,
- -0.09722772240638733, 0.04036971181631088, 0.001805294188670814, -0.03517376631498337,
- 0.023618260398507118, -0.028575226664543152, 0.030979273840785027, 0.0327468141913414,
- -0.012874435633420944, -0.0542595274746418, -0.03680592402815819, -0.018723158165812492,
- -0.15181103348731995, -0.023091387003660202, -0.01043458841741085, -0.08693450689315796,
- 0.09024115651845932, -0.03764887899160385, 0.012144302949309349, 0.0351281501352787,
- 0.006860054563730955, 0.0050393701530992985, 0.04632538557052612, -0.015445279888808727,
- -0.1320442259311676, -0.06057045981287956, 0.01184819359332323, 0.034332599490880966,
- -0.029911888763308525, -0.059361398220062256, 0.042557135224342346, 0.09712909907102585,
- -0.004806282930076122, -0.05636123567819595, -0.01479205023497343,
- -0.024657713249325752, 0.07950639724731445, -0.05694770812988281, -0.480101615190506,
- 0.05879680812358856, 0.012629060074687004, 0.033324241638183594, 0.03237679973244667,
- -0.09420598298311234, 0.03367558866739273, 0.013760876841843128, -0.012693912722170353,
- 0.06861582398414612, -0.05202922970056534, 0.04527203366160393, 0.007756676524877548,
- -0.029821176081895828, 0.008914151228964329, -0.06793536245822906,
- -0.015342745929956436, 0.03130444511771202, -0.06847654283046722, -0.06641446799039841,
- -0.09562023729085922, -0.0030018039979040623, -0.010587044060230255,
- -0.029206007719039917, 0.014551171101629734, -0.01678447239100933, -0.09806451946496964,
- -0.061695415526628494, 0.011121136136353016, 0.05321228876709938, 0.014350337907671928,
- -0.05766361951828003, 0.028254741802811623, 0.03456537052989006, -0.00726145738735795,
- 0.0866003930568695, 0.031985413283109665, -0.025063401088118553, -0.0728318989276886,
- 0.056503262370824814, 0.039268333464860916, 0.19173221290111542, -0.009840686805546284,
- 0.05307387560606003, -0.0060477121733129025, 0.12796492874622345, 0.0144269447773695,
- 0.025481991469860077, -0.02953198552131653, 0.029145609587430954, -0.009473594836890697,
- 0.0004877879691775888, 0.044965047389268875, -0.030793461948633194,
- -0.016782676801085472, -0.020614150911569595, -0.010522127151489258,
- -0.044524598866701126, -0.043759964406490326, 0.15500931441783905, 0.004652160219848156,
- 0.02811877429485321, 0.04855361580848694, -0.03698952496051788, -0.021743323653936386,
- -0.07790980488061905, -0.04453127086162567, -0.04728931188583374, 0.015210328623652458,
- 0.042772144079208374, -0.059785690158605576, -0.09961572289466858,
- -0.020066462457180023, -0.03803425654768944, 0.0048408713191747665, 0.1398838758468628,
- 0.0030701954383403063, 0.055137794464826584, -0.03707076236605644, 0.11569162458181381,
- 0.015203090384602547, 0.025291847065091133, 0.060822393745183945, 0.11653976887464523,
- 0.0019032505806535482, -0.021435469388961792, -0.027080081403255463,
- -0.06402949243783951, 0.02688264474272728, 0.12658868730068207, -0.03358931839466095,
- 0.0837387964129448, 0.04132366552948952, -0.013674682006239891, -0.01852707378566265,
- -0.005192133132368326, 0.009024771861732006, 0.022891784086823463, -0.4952859878540039,
- -0.04201290011405945, 0.1284191906452179, -0.06111598014831543, 0.03872758522629738,
- 0.06555724143981934, -0.028303449973464012, -0.023704439401626587, 0.032976798713207245,
- -0.07492167502641678, 0.11985202878713608, 0.06971592456102371, 0.06478256732225418,
- -0.15782558917999268, 0.016657061874866486, 0.05670151114463806, -0.016029370948672295,
- -0.014179039746522903, 0.014891347847878933, -0.23517413437366486,
- -0.022141581401228905, -0.050372883677482605, 0.11536587029695511, 0.023187953978776932,
- 0.03594893589615822, 0.0997789278626442, -0.037274908274412155, 0.037984319031238556,
- -0.012337474152445793, 0.031274452805519104, 0.08763473480939865, -0.019583307206630707,
- -0.024410085752606392, 0.11808248609304428, 0.016911569982767105, 0.11801086366176605,
- -0.017968162894248962, 11.6693696975708, 0.023680195212364197, 0.06771879643201828,
- -0.050107795745134354, 0.0305488258600235, -0.028037698939442635, 0.03670838102698326,
- -0.06768418848514557, 0.0694928839802742, 0.06226569041609764, -0.026334619149565697,
- -0.06506261229515076, -0.04967629909515381, -0.06268350034952164, 0.010748893953859806,
- -0.056378405541181564, 0.000415311980759725, -0.008165082894265652,
- 0.039723627269268036, -0.03470294550061226, 0.007033137138932943, 0.08539123833179474,
- 0.06525511294603348, 0.0032345480285584927, -0.048495564609766006, 0.04515722393989563,
- 0.014554779045283794, 0.027595287188887596, 0.03166141360998154, 0.010631092824041843,
- 0.03079278953373432, 0.03319474309682846, 0.0626596063375473, 0.017696134746074677,
- -0.006824078969657421, 0.004808356054127216, 0.004567429423332214, 0.03464478999376297,
- 0.02548391744494438, 0.0010328611824661493, 0.02153097279369831, 0.052226100116968155,
- 0.0004851696139667183, 0.027564477175474167, 0.07340820878744125, 0.020905088633298874,
- -0.01774090714752674, 0.0494951531291008, -0.01009337231516838, 0.024188634008169174,
- 0.04456942528486252, 0.023397574201226234, 0.06527940928936005, 0.013081199489533901,
- 0.01245573628693819, -0.012076803483068943, 0.016354704275727272, -0.09394769370555878,
- 0.06040862575173378, 0.018736325204372406, -0.03988420218229294, 0.10075321793556213,
- -0.009226265363395214, 0.08710428327322006, -0.02089111879467964, 0.1119542121887207,
- 0.08725175261497498, 0.04487314447760582, -0.10869202017784119, -0.017227742820978165,
- 0.03445100784301758, -0.1049589216709137, -0.06918301433324814, 0.06179071590304375,
- -0.001115158898755908, -0.017212484031915665, 0.014580060727894306,
- -0.020142270252108574, 0.02876904420554638, -0.030135318636894226,
- -0.0019008605740964413, 0.01785249263048172, -0.015870604664087296,
- -0.028172336518764496, 0.06212018057703972, 0.031048448756337166, -0.020135074853897095,
- 0.09706800431013107, 0.013690382242202759, -0.020932549610733986, -0.0860438421368599,
- 0.0803828239440918, -0.010554460808634758, -0.04814206063747406, 0.022367088124155998,
- -0.04272405803203583, -0.030356483533978462, -0.14061878621578217, 0.09648358821868896,
- 0.10834337025880814, -0.07785730063915253, -0.01566704362630844, -0.017178911715745926,
- 0.09211501479148865, -0.02180415391921997, -0.004456439986824989, -0.017798112705349922,
- 0.02111232280731201, -0.0022840152960270643, 0.04327668994665146, -0.06779095530509949,
- 0.08889030665159225, -0.013960711658000946, -0.06906959414482117, 0.0658886656165123,
- 0.012835613451898098, -0.04109765589237213, -0.013183750212192535, 0.032793011516332626,
- 0.01789773255586624, -0.07394806295633316, -0.014794625341892242, -0.03212897479534149,
- 0.009916610084474087, -0.033681720495224, -0.04265850409865379, -0.009289497509598732,
- 0.01910828985273838, -0.028629139065742493, -0.03906480222940445, -0.001360624679364264,
- 0.03149028122425079, 0.05068787932395935, 0.05144285410642624, 0.015322809107601643,
- -0.022286850959062576, -0.053226370364427567, 0.06622545421123505, 0.04800070822238922,
- 0.06610620021820068, -0.03273005783557892, 0.013430844061076641, -0.06745464354753494,
- -0.11050248891115189, 0.014589914120733738, 0.07485391199588776, 0.020151961594820023,
- 0.03495006635785103, 0.026241203770041466, 0.0072861285880208015, -0.005656583234667778,
- 0.10112012177705765, -0.010106817819178104, 0.020716935396194458, 0.02209300361573696,
- -0.0594036802649498, 0.00004945328691974282, 0.1368558406829834, 0.0022241317201405764,
- 0.026104407384991646, -0.027000291272997856, -0.11793237924575806, 0.04432595521211624,
- 0.00009043147292686626, 0.011300819925963879, 0.045584551990032196,
- 0.049326881766319275, 0.02203461341559887, 0.034063663333654404, -0.004470953717827797,
- -0.004426205530762672, -0.041338372975587845, -0.05502988398075104,
- -0.05447107553482056, 0.07972334325313568, 0.09388171881437302, 0.07014136761426926,
- -0.08266082406044006, -0.023609016090631485, -0.021318918094038963
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 370,
- "nlp_similar_incidents": [],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Simon Van Dorpe"],
- "epoch_date_downloaded": 1665964800,
- "epoch_date_modified": 1665964800,
- "epoch_date_submitted": 1644624000,
- "flag": null,
- "report_number": 2163,
- "source_domain": "politico.eu",
- "submitters": ["Kate Perkins"],
- "title": "Vestager’s court win opens way for more Google cases",
- "url": "https://www.politico.eu/article/eu-commission-margrethe-vestager-wins-google-shopping-case/"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "ugandan-government",
- "name": "Ugandan government"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "huawei",
- "name": "Huawei"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "political-opposition-in-uganda",
- "name": "political opposition in Uganda"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [2203, 2184, 2167],
- "vector": [
- -0.04726630076766014, 0.061729129403829575, 0.029838047921657562, -0.10559937357902527,
- 0.03055381029844284, -0.05092480406165123, 0.028385043144226074, 0.04199279472231865,
- 0.09160111099481583, -0.13024240732192993, 0.024784088134765625, -0.0053230952471494675,
- 0.0017267741495743394, -0.09236723184585571, 0.04716644808650017, -0.13665573298931122,
- -0.06532741338014603, 0.000043695948988897726, -0.05217590928077698,
- -0.09260860830545425, -0.08344099670648575, 0.04012439772486687, 0.021006939932703972,
- 0.0733603909611702, -0.04337645694613457, 0.05568194016814232, 0.07707292586565018,
- 0.14419035613536835, -0.11624620109796524, 0.018205342814326286, 0.011405684053897858,
- -0.042667876929044724, 0.13915003836154938, 0.03237476944923401, 0.028726087883114815,
- 0.10809654742479324, 0.03286265954375267, -0.0569184310734272, 0.04022088646888733,
- 0.007059508468955755, -0.024320030584931374, 0.2587678134441376, -0.028575019910931587,
- -0.04795460402965546, 0.08435171842575073, -0.05516723915934563, -0.02224103920161724,
- 0.05116366967558861, -0.009631949476897717, 0.005797173362225294,
- -0.0026957059744745493, -0.00464617321267724, -0.0345899760723114, 0.007362016011029482,
- -0.09068872779607773, 0.03999711945652962, -0.0006451818626374006, 0.011333298869431019,
- 0.014748946763575077, -0.05279374495148659, -0.05516417697072029, -0.2291535884141922,
- 0.005383586976677179, -0.08617061376571655, 0.08369704335927963, -0.10818535089492798,
- -0.058239180594682693, 0.05346403643488884, 0.02600448578596115, 0.05876687169075012,
- 0.07609381526708603, -0.023035449907183647, 0.017531057819724083, -0.001323433592915535,
- 0.016158713027834892, -0.03656276687979698, 0.004868806805461645, 0.18911592662334442,
- -0.08000224828720093, 0.010265401564538479, 0.097012959420681, -0.07016432285308838,
- 0.3672586977481842, -0.0020445899572223425, -0.013484970666468143, 0.021315664052963257,
- 0.09037887305021286, 0.0038164258003234863, 0.05561952665448189, 0.06949961930513382,
- -0.021538153290748596, 0.0008584751631133258, -0.05827122926712036,
- -0.051956698298454285, 0.034429773688316345, 0.0033692223951220512,
- -0.017154207453131676, 0.07235392928123474, 0.013333290815353394, -0.05624157190322876,
- -0.03303299844264984, -0.028350939974188805, 0.029756629839539528, 0.08583647012710571,
- -0.04062433913350105, -0.02440592087805271, 0.023951562121510506, -0.08706580847501755,
- 0.05554218962788582, -0.06263843178749084, 0.03282978758215904, 0.042258989065885544,
- 0.0611712783575058, 0.02090778946876526, 0.009654494933784008, -0.0446096807718277,
- 0.028847133740782738, 0.008288665674626827, 0.06361361593008041, 0.004655762109905481,
- 0.005951507017016411, 0.09118010848760605, 0.09340405464172363, -0.061128854751586914,
- -0.041484832763671875, -0.059908751398324966, 0.004514437168836594, -0.0315021276473999,
- -0.06894813477993011, 0.014065507799386978, -0.030092552304267883, -0.16501624882221222,
- 0.029896333813667297, 0.050314027816057205, 0.014351190067827702, -0.02747674100100994,
- -0.013797123916447163, -0.02837962657213211, 0.025433555245399475,
- -0.010788731276988983, -0.028409495949745178, 0.10234840959310532, -0.03773115947842598,
- 0.03415093198418617, 0.10869669169187546, 0.02930338867008686, -0.06207801029086113,
- -0.04091259464621544, -0.007670944090932608, -0.013687696307897568, 0.08456876873970032,
- -0.13541917502880096, -0.07743889093399048, 0.017038075253367424, 0.008245562203228474,
- 0.6930435299873352, 0.0745164155960083, 0.15698979794979095, -0.01767796091735363,
- -0.03287133201956749, 0.18741001188755035, 0.04856540262699127, 0.07248882204294205,
- -0.08317505568265915, -0.05350543186068535, 0.05046432092785835, -0.060211703181266785,
- -0.0027401475235819817, 0.01885063201189041, 0.008778518997132778, 0.08268699795007706,
- 0.00334809604100883, 0.06756871938705444, 0.0037576481699943542, -0.05533823370933533,
- -0.038547392934560776, 0.022085944190621376, -0.03987156227231026, -0.1011645495891571,
- -0.04224957153201103, 0.06330109387636185, 0.10493011027574539, -0.099392831325531,
- -0.007425406482070684, -0.017585068941116333, 0.05096646025776863, -0.03812546655535698,
- 0.07599103450775146, -0.02114548534154892, 0.012803453020751476, 0.024262771010398865,
- 0.020125627517700195, 0.03866363316774368, -0.12119122594594955, -0.024296069517731667,
- 0.06413186341524124, -0.004252053331583738, -0.02767767943441868, 0.09754908084869385,
- -0.09755846858024597, 0.055718421936035156, 0.019540950655937195, 0.15858982503414154,
- -0.16340100765228271, 0.056327592581510544, -0.039869148284196854,
- -0.050286781042814255, 0.07377798855304718, 0.0010090750874951482, -0.04790988937020302,
- -0.031430214643478394, 0.06386911869049072, 0.04718804359436035, 0.04013692960143089,
- 0.016443638131022453, -0.022771939635276794, 0.035819027572870255, 0.07416178286075592,
- 0.0347319021821022, -0.03517181798815727, 0.03964046761393547, 0.06931502372026443,
- -0.050791073590517044, -0.006702538579702377, 0.04053933173418045, 0.055287789553403854,
- 0.02584761567413807, -0.006504475604742765, 0.057899266481399536, -0.027207309380173683,
- -0.042526036500930786, 0.049291420727968216, -0.0019386502681300044,
- -0.005595018621534109, 0.11233266443014145, -0.08163713663816452, -0.011052464134991169,
- -0.04787204787135124, -0.051486123353242874, 0.039683062583208084, -0.00552351912483573,
- 0.06046833470463753, 0.10390487313270569, 0.03834248334169388, 0.040173839777708054,
- 0.06533557176589966, 0.07644972205162048, 0.029517440125346184, 0.04537742957472801,
- 0.1137852594256401, -0.0069652460515499115, -0.05690091848373413, -0.03316861018538475,
- -0.017793329432606697, 0.017314530909061432, 0.0684909000992775, -0.08564212918281555,
- -0.0297302957624197, -0.027138635516166687, -0.03850231692194939, -0.0642099678516388,
- -0.02586548961699009, 0.004775834735482931, 0.05361272767186165, -0.05568830296397209,
- -0.0517328679561615, -0.046218276023864746, -0.012922283262014389, 0.08721622079610825,
- -0.006638687569648027, -0.006933378055691719, -0.12201414257287979, 0.05420566722750664,
- -0.044105175882577896, 0.05601215362548828, -0.03315296396613121, -0.003499600337818265,
- -0.05123625695705414, -0.023767484351992607, 0.010636121034622192,
- -0.008138218894600868, -0.02324938215315342, -0.008423755876719952,
- -0.044827401638031006, -0.06913501769304276, -0.043040718883275986,
- -0.01644090935587883, -0.07730140537023544, 0.027406534180045128, 0.048246581107378006,
- 0.045716118067502975, -0.0266184713691473, -0.00325667392462492, 0.06365356594324112,
- -0.04717027023434639, 0.018330048769712448, 0.112305648624897, -0.02429237775504589,
- 0.003973417449742556, -0.041438329964876175, -0.021781563758850098,
- -0.045269329100847244, 0.018936997279524803, -0.033483367413282394, 0.06435993313789368,
- -0.01942962221801281, -0.0007799739832989872, -0.030468368902802467,
- -0.009217978455126286, 0.10870762914419174, -0.10201273113489151, -0.03013303317129612,
- -0.04478700831532478, 0.11558794975280762, -0.007757939398288727, 0.0034556749742478132,
- -0.01498799305409193, -0.06456354260444641, 0.01222449541091919, 0.028712710365653038,
- -0.003120516426861286, 0.027193838730454445, 0.05574377253651619, -0.018611900508403778,
- -0.020873913541436195, 0.04591129347681999, -0.005154390353709459, 0.021977543830871582,
- 0.09438451379537582, 0.4183710515499115, -0.09611568599939346, 0.0969148576259613,
- 0.09277138859033585, 0.015108372084796429, 0.037913478910923004, -0.019160205498337746,
- 0.07505358010530472, 0.09018456935882568, 0.12643055617809296, 0.10982507467269897,
- -0.04014134407043457, -0.040356528013944626, -0.06157985329627991, 0.055032879114151,
- -0.0067514232359826565, -0.0033749949652701616, -0.05977243185043335,
- -0.06907743215560913, -0.01023095566779375, 0.03953011333942413, -0.0409836508333683,
- 0.010685370303690434, -0.017816023901104927, -0.09696393460035324, 0.035455372184515,
- 0.012403788976371288, 0.030924951657652855, -0.02163010649383068, 0.03447673097252846,
- -0.006927707698196173, 0.03867284953594208, 0.004347187001258135, 0.008628728799521923,
- -0.1066356897354126, 0.03576583415269852, -0.037172574549913406, -0.11719667911529541,
- 0.12255608290433884, 0.010797039605677128, 0.06985554844141006, 0.08656436949968338,
- -0.0562041737139225, 0.0659656748175621, -0.05231492593884468, -0.038560207933187485,
- 0.012533850967884064, 0.02391880936920643, 0.010339253582060337, 0.0783020481467247,
- 0.14764678478240967, -0.026440700516104698, -0.026876166462898254, -0.10307183116674423,
- 0.09229414910078049, 0.11354123800992966, -0.06249648332595825, -0.007489826064556837,
- 0.04907148703932762, -0.021145300939679146, -0.01180822029709816, -0.06514070928096771,
- -0.07722336053848267, 0.013866574503481388, -0.015394754707813263, 0.09294722229242325,
- 0.03630674630403519, -0.05828167870640755, -0.10838788002729416, -0.0654895082116127,
- -0.06815186887979507, 0.026356428861618042, 0.11413797736167908, -0.07012807577848434,
- 0.02856479026377201, 0.009813623502850533, 0.019757376983761787, 0.015401996672153473,
- -0.06271284818649292, -0.004738974384963512, -0.050243061035871506,
- 0.011372660286724567, 0.05577700212597847, 0.0551915168762207, -0.015483631752431393,
- 0.09643903374671936, -0.0921710804104805, 0.03968241438269615, -0.006307211238890886,
- -0.00937020592391491, 0.007235867902636528, -0.04951077327132225, 0.02707083709537983,
- 0.0013881897320970893, -0.04796093702316284, 0.003911908250302076,
- -0.022040322422981262, -0.004889791365712881, -0.10663443058729172,
- -0.02831200696527958, -0.030820973217487335, -0.06295932084321976, 0.05752483382821083,
- -0.09687289595603943, -0.009387844242155552, -0.02938537858426571,
- -0.005439449567347765, -0.010233205743134022, 0.04172753170132637, 0.04666159674525261,
- -0.12312239408493042, -0.0597817488014698, 0.013978474773466587, 0.00741569185629487,
- 0.03018789179623127, -0.06275339424610138, 0.048778001219034195, 0.06171289086341858,
- 0.05008357763290405, -0.055207718163728714, 0.008142061531543732, -0.04434279724955559,
- 0.08277299255132675, -0.14350152015686035, -0.3847300112247467, 0.036532845348119736,
- -0.002398046664893627, 0.06283468753099442, 0.021551096811890602, -0.12408805638551712,
- 0.06243813410401344, 0.01467376109212637, -0.004522816278040409, 0.05477290228009224,
- -0.06257941573858261, 0.021816924214363098, -0.030756376683712006, -0.04706935957074165,
- -0.02241283468902111, -0.11067378520965576, -0.03742288425564766, 0.045190006494522095,
- 0.00048153926036320627, -0.07353690266609192, -0.09351899474859238, 0.04253346845507622,
- 0.008319870568811893, 0.03047759085893631, -0.0037588737905025482,
- -0.0023894747719168663, -0.09914902597665787, -0.05705512687563896, 0.00991168525069952,
- 0.028883567079901695, 0.011471549980342388, -0.059585090726614, 0.026080206036567688,
- 0.03270610794425011, 0.006350995972752571, 0.09406616538763046, 0.029935481026768684,
- 0.0028492168057709932, -0.06489551812410355, 0.08475665003061295, 0.06149894371628761,
- 0.18731945753097534, 0.006770240608602762, 0.02700449526309967, 0.031177019700407982,
- 0.12210848182439804, 0.020566580817103386, 0.03720363602042198, -0.059084147214889526,
- 0.024747654795646667, -0.017278216779232025, -0.0003540966135915369,
- 0.05897136032581329, -0.10774999856948853, -0.007717341184616089, -0.03754580020904541,
- -0.030576525256037712, -0.015820195898413658, 0.008653323166072369, 0.19604848325252533,
- 0.019047530367970467, -0.014128897339105606, 0.03706971928477287, -0.04481730982661247,
- -0.023348234593868256, -0.11885908246040344, -0.09514538198709488, 0.005317131523042917,
- 0.014314722269773483, -0.011082085780799389, -0.04704119265079498, -0.13158203661441803,
- -0.016308892518281937, 0.020798614248633385, 0.013291306793689728, 0.0710597038269043,
- -0.06446053087711334, 0.010836672969162464, -0.06039264798164368, 0.1352829486131668,
- 0.03320697322487831, 0.041548579931259155, 0.048074644058942795, 0.134205162525177,
- 0.01020157802850008, -0.06838966906070709, 0.001576680107973516, -0.025353139266371727,
- 0.03859493508934975, 0.1442154049873352, -0.06761126965284348, 0.11866965144872665,
- 0.04100656136870384, -0.10603240132331848, -0.06453327089548111, 0.04167358577251434,
- 0.00792709831148386, -0.01116990577429533, -0.39215579628944397, -0.05545356869697571,
- 0.10671669244766235, 0.023886630311608315, 0.014756906777620316, 0.07747619599103928,
- 0.014025268144905567, -0.04822905361652374, 0.0053261034190654755, -0.10531962662935257,
- 0.22654271125793457, 0.003422169014811516, 0.06495121866464615, -0.07528906315565109,
- 0.0464506633579731, 0.06506119668483734, -0.014692078344523907, -0.024291614070534706,
- 0.015702983364462852, -0.2613425850868225, 0.0015221997164189816, -0.049876999109983444,
- 0.12513388693332672, 0.037142883986234665, 0.02942868135869503, 0.04562155902385712,
- -0.0835578665137291, 0.0026930763851851225, 0.09262695163488388, -0.03661847859621048,
- 0.03648550435900688, -0.005790509283542633, -0.05014610290527344, 0.06215856596827507,
- 0.08045694977045059, 0.09292616695165634, -0.02228378690779209, 11.911677360534668,
- 0.06488829106092453, 0.058694988489151, -0.09265784174203873, -0.00007703714072704315,
- -0.03260773792862892, 0.04835882782936096, -0.08947468549013138, 0.06227662041783333,
- 0.09086068719625473, 0.02628275938332081, -0.10791254043579102, -0.004626289941370487,
- -0.08311916887760162, 0.013299933634698391, 0.00602456321939826, -0.06141223385930061,
- -0.04726399481296539, 0.04960678890347481, -0.017897620797157288, -0.017042681574821472,
- -0.027950378134846687, 0.03912092372775078, 0.033854998648166656, -0.06489380449056625,
- -0.013918555341660976, -0.0060198656283319, -0.0043619186617434025,
- 0.020842483267188072, 0.017390107735991478, -0.0029472503811120987,
- -0.02372264303267002, 0.11122945696115494, 0.00815004575997591, 0.07517898082733154,
- -0.0009620997007004917, 0.01283472403883934, 0.06764984875917435,
- -0.0060797035694122314, 0.08722236007452011, 0.026820778846740723, 0.021848509088158607,
- -0.01727464608848095, 0.07869576662778854, 0.07542663812637329, 0.01421117503196001,
- 0.014352861791849136, 0.09662670642137527, 0.04757808521389961, 0.07575403898954391,
- 0.10198628157377243, 0.0014410745352506638, 0.10630747675895691, 0.01984991878271103,
- 0.033078547567129135, 0.10693788528442383, 0.010942873544991016, -0.08251947909593582,
- 0.06494897603988647, 0.07616312056779861, -0.039759475737810135, 0.09828934818506241,
- 0.004579497035592794, 0.1157020553946495, 0.023960962891578674, 0.06667253375053406,
- 0.0927974283695221, 0.09196720272302628, -0.18707357347011566, -0.0722678080201149,
- 0.047613903880119324, -0.09822148084640503, -0.07721692323684692, 0.03993861377239227,
- 0.08767783641815186, 0.004900473169982433, 0.09122944623231888, -0.03444100543856621,
- 0.04059595987200737, -0.03639460355043411, -0.008710469119250774, 0.028904587030410767,
- -0.055394455790519714, 0.023451775312423706, 0.03816581517457962, 0.022915927693247795,
- 0.12586310505867004, 0.10160068422555923, 0.019293086603283882, -0.09029559046030045,
- -0.07422950863838196, 0.10177499055862427, -0.03845058009028435, -0.05061675235629082,
- 0.027995890006422997, 0.00316438521258533, -0.0026848476845771074, -0.17848366498947144,
- 0.07501452416181564, 0.1181134581565857, -0.08140508085489273, -0.003719283966347575,
- -0.025569448247551918, 0.11111065000295639, 0.006840867456048727, 0.03890886902809143,
- -0.07469192892313004, 0.05390666052699089, 0.01785278506577015, 0.03112819604575634,
- -0.030923297628760338, 0.08737195283174515, 0.026445478200912476, -0.06206256523728371,
- 0.07302528619766235, 0.04354322329163551, -0.010451741516590118, -0.02420390211045742,
- 0.039646465331315994, 0.03990505635738373, -0.12381213158369064, -0.025141755118966103,
- -0.031747933477163315, -0.025605211034417152, -0.023226125165820122,
- -0.04105066880583763, 0.003218128113076091, 0.019653193652629852, -0.06655586510896683,
- 0.00975185539573431, 0.03672876954078674, 0.061084408313035965, 0.1356898695230484,
- -0.042303044348955154, 0.05362886190414429, -0.032180264592170715, -0.03417286276817322,
- 0.06933504343032837, 0.06007670983672142, 0.045436155050992966, -0.028259748592972755,
- -0.019073864445090294, -0.03461677208542824, -0.08013852685689926, 0.005163698457181454,
- 0.11545712500810623, 0.05508042871952057, 0.04814295843243599, 0.03178486227989197,
- -0.05220874026417732, 0.01115088164806366, 0.11247694492340088, 0.03385324403643608,
- 0.06592351943254471, 0.02403658628463745, -0.08025392144918442, -0.03765767812728882,
- 0.1171000525355339, -0.07993466407060623, -0.028542429208755493, 0.02517237514257431,
- 0.004019893705844879, 0.10353640466928482, 0.07497886568307877, 0.039693865925073624,
- 0.02252836339175701, 0.016210004687309265, 0.01868770830333233, -0.007647072896361351,
- -0.026779646053910255, 0.009534081444144249, -0.07326564192771912, -0.07527019828557968,
- -0.03939201310276985, 0.04224061965942383, 0.057039618492126465, 0.043640028685331345,
- -0.08014502376317978, -0.009622759185731411, -0.0046959007158875465
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 371,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 309,
- "similarity": 0.9983097910881042
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 36,
- "similarity": 0.9979723691940308
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 45,
- "similarity": 0.9979339838027954
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Stephen Kafeero"],
- "epoch_date_downloaded": 1666569600,
- "epoch_date_modified": 1667347200,
- "epoch_date_submitted": 1666569600,
- "flag": null,
- "report_number": 2203,
- "source_domain": "yahoo.com",
- "submitters": ["Anonymous"],
- "title": "Uganda is using Huawei’s facial recognition tech to crack down on dissent after anti-government protests",
- "url": "https://www.yahoo.com/now/uganda-using-huawei-facial-recognition-183653330.html"
- },
- {
- "__typename": "Report",
- "authors": ["The Unwanted Witness"],
- "epoch_date_downloaded": 1666483200,
- "epoch_date_modified": 1667347200,
- "epoch_date_submitted": 1666483200,
- "flag": null,
- "report_number": 2184,
- "source_domain": "unwantedwitness.org",
- "submitters": ["Khoa Lam"],
- "title": "Surveillance, censorship threaten Internet freedom and Democracy in Uganda, says Unwanted Witness",
- "url": "https://www.unwantedwitness.org/surveillance-censorship-threaten-internet-freedom-and-democracy-in-uganda-says-unwanted-witness/"
- },
- {
- "__typename": "Report",
- "authors": ["Stephen Kafeero"],
- "epoch_date_downloaded": 1664928000,
- "epoch_date_modified": 1665100800,
- "epoch_date_submitted": 1664928000,
- "flag": null,
- "report_number": 2167,
- "source_domain": "yahoo.com",
- "submitters": ["Anonymous"],
- "title": "Uganda is using Huawei's facial recognition tech to crack down on dissent after protests",
- "url": "https://www.yahoo.com/now/uganda-using-huawei-facial-recognition-183653330.html"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "google",
- "name": "Google"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "google",
- "name": "Google"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "google-pixel-6a-users",
- "name": "Google Pixel 6a users"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [2178, 2177, 2168],
- "vector": [
- -0.07472459226846695, 0.10127321630716324, -0.023305155336856842, -0.125616654753685,
- 0.07450142502784729, -0.011266614310443401, -0.017008528113365173, 0.05203719809651375,
- 0.05058899521827698, -0.14182351529598236, -0.013264838606119156, 0.04957420751452446,
- 0.030090996995568275, -0.04728947952389717, 0.05418236181139946, -0.03890373185276985,
- -0.09634795039892197, -0.05935205519199371, -0.006976463366299868, -0.09189224243164062,
- -0.09284839034080505, 0.00793453212827444, 0.021846875548362732, 0.12688757479190826,
- -0.008885543793439865, -0.011894979514181614, 0.09789162129163742, 0.06443890184164047,
- -0.02576945535838604, 0.008616901934146881, -0.0028087340760976076,
- -0.06613484770059586, 0.12025173753499985, 0.010065417736768723, 0.005173457786440849,
- 0.08229291439056396, 0.04164876416325569, -0.024473711848258972, -0.08329035341739655,
- -0.01909858174622059, 0.02594018168747425, 0.19008482992649078, 0.022428035736083984,
- -0.049430523067712784, 0.08086362481117249, -0.029154250398278236, 0.01019302848726511,
- 0.03470948338508606, -0.006829830352216959, 0.021062834188342094, -0.0094682602211833,
- 0.03000497631728649, -0.04160769656300545, 0.019461994990706444, -0.13789546489715576,
- 0.02912304736673832, 0.03736085072159767, 0.04972434043884277, 0.07877995818853378,
- -0.08955550938844681, -0.05730961263179779, -0.16538141667842865, -0.053492460399866104,
- -0.05497894808650017, 0.06128060445189476, -0.0636155977845192, -0.032635532319545746,
- 0.0019173423061147332, 0.004757235758006573, 0.0750146135687828, 0.07481656223535538,
- -0.025071626529097557, -0.00004973883551429026, -0.012433950789272785,
- -0.04910561814904213, -0.008928005583584309, -0.01647896133363247, 0.313010036945343,
- -0.12274841219186783, 0.022154590114951134, 0.11221784353256226, -0.11526280641555786,
- 0.39152219891548157, 0.02089305967092514, -0.04037690535187721, -0.07574659585952759,
- 0.08412733674049377, 0.046314824372529984, 0.03718606010079384, 0.033807236701250076,
- -0.016787169501185417, 0.02232818864285946, -0.09807471185922623, -0.015126981772482395,
- 0.07773327082395554, 0.030089810490608215, -0.05088603124022484, -0.03564025089144707,
- 0.010741864331066608, -0.05741128697991371, -0.006078880280256271, -0.05910259485244751,
- 0.08239958435297012, 0.07923316210508347, 0.0024024907033890486, -0.00990911666303873,
- 0.029222404584288597, -0.05034641548991203, 0.06640299409627914, -0.08362102508544922,
- 0.06044679880142212, -0.0010347837815061212, 0.05538492277264595, -0.020708950236439705,
- 0.020669199526309967, -0.04089982435107231, 0.021306365728378296, 0.04748731851577759,
- 0.0923905074596405, -0.0021664912346750498, -0.02099587768316269, 0.04655854031443596,
- 0.08863252401351929, -0.12056193500757217, -0.038082316517829895, -0.041393253952264786,
- -0.060348570346832275, -0.0000013634562492370605, -0.04251301288604736,
- 0.04033629968762398, -0.02585791051387787, -0.22917033731937408, 0.024034857749938965,
- 0.06370090693235397, -0.0051115755923092365, -0.012918494641780853,
- 0.029821181669831276, -0.05799970403313637, 0.036841608583927155, -0.009716007858514786,
- -0.057076480239629745, 0.03449373319745064, 0.04976369068026543, 0.011195995844900608,
- 0.14944638311862946, 0.01980031281709671, -0.04186921939253807, -0.07608363032341003,
- 0.008561672642827034, -0.004607561510056257, 0.11619120091199875, -0.11379114538431168,
- -0.06256719678640366, 0.016302743926644325, -0.021622484549880028, 0.6001099944114685,
- 0.087774358689785, 0.1458187848329544, -0.019551772624254227, -0.01943303644657135,
- 0.1691608875989914, 0.008644959889352322, 0.050960440188646317, -0.045810531824827194,
- -0.03725169226527214, 0.008607138879597187, -0.09954416751861572, -0.008602171204984188,
- 0.05439871922135353, -0.014681640081107616, 0.07270627468824387, 0.020353252068161964,
- 0.08180183917284012, -0.031391751021146774, -0.06844878941774368, -0.07109647244215012,
- 0.01767071522772312, 0.02294587343931198, -0.10475572198629379, -0.015881722792983055,
- 0.0570538230240345, 0.11236516386270523, -0.06958100199699402, 0.0011990256607532501,
- -0.051776573061943054, 0.036654699593782425, -0.006387884262949228, 0.04703474044799805,
- 0.010424576699733734, 0.0007536063785664737, 0.08788809180259705, 0.041177939623594284,
- 0.0008782095392234623, -0.08772250264883041, -0.030277946963906288, 0.07663030177354813,
- -0.03373246267437935, -0.025375450029969215, 0.058356743305921555, -0.11033064872026443,
- 0.021346300840377808, -0.037058740854263306, 0.13981033861637115, -0.10079222172498703,
- 0.052288804203271866, 0.00033247401006519794, 0.009155716747045517,
- 0.031215064227581024, -0.016120072454214096, -0.07751607149839401, -0.04856700822710991,
- 0.1425894945859909, 0.03836820274591446, 0.0501672625541687, 0.06576638668775558,
- -0.013398691080510616, -0.013623405247926712, 0.13874877989292145,
- -0.024859890341758728, -0.00781621690839529, 0.04047738388180733, 0.03489728271961212,
- -0.04809613153338432, -0.034496158361434937, 0.0536893755197525, 0.027206948027014732,
- 0.03138023987412453, 0.01183703076094389, 0.06109471246600151, -0.0029320556204766035,
- -0.0328289270401001, 0.018629824742674828, 0.014879821799695492, 0.04310126230120659,
- 0.1181316077709198, -0.0635751262307167, -0.029028117656707764, -0.05362780764698982,
- -0.07037355750799179, 0.0030901047866791487, -0.0736362561583519, 0.09528744220733643,
- 0.0814988911151886, 0.04778255894780159, 0.005530080292373896, 0.01257984060794115,
- 0.01902167871594429, 0.03259941563010216, 0.02772616595029831, 0.05059753358364105,
- -0.019610024988651276, -0.045200735330581665, -0.01838335208594799,
- 0.012329917401075363, 0.06267271190881729, 0.02097604237496853, -0.09517565369606018,
- -0.023122185841202736, -0.03931988775730133, -0.00030478337430395186,
- -0.07553381472826004, -0.03855637460947037, 0.012362860143184662, 0.02450690232217312,
- -0.0602412074804306, -0.05148187652230263, -0.06739255040884018, 0.001147333881817758,
- 0.09232068806886673, -0.03415330499410629, 0.024907156825065613, -0.09249357134103775,
- -0.01614699512720108, -0.04650817811489105, 0.04377613589167595, -0.020020009949803352,
- 0.004896519239991903, -0.011357833631336689, -0.05720973014831543, 0.014013496227562428,
- -0.014705593697726727, -0.03220831975340843, -0.10184487700462341, -0.07791045308113098,
- -0.04682376980781555, -0.006334129720926285, -0.031077509745955467,
- 0.011218001134693623, 0.0088853994384408, 0.06521767377853394, 0.04358777403831482,
- 0.020529108121991158, -0.04472501575946808, 0.06666336208581924, -0.002891414100304246,
- 0.023739611729979515, 0.07134341448545456, 0.024516792967915535, 0.028435414656996727,
- -0.05061950162053108, -0.047650933265686035, -0.07956145703792572, 0.03252546861767769,
- -0.06253516674041748, 0.01751135103404522, -0.011500080116093159, 0.026443010196089745,
- -0.04967324063181877, 0.012538950890302658, 0.07466749101877213, -0.02607721835374832,
- -0.07717324793338776, -0.06498774886131287, 0.11857939511537552, -0.02949856035411358,
- -0.009179499931633472, 0.06748071312904358, -0.041693031787872314, 0.05920889973640442,
- -0.02515893429517746, -0.001950987265445292, -0.010749037377536297, 0.1099749505519867,
- -0.02888028882443905, 0.06116725876927376, 0.02632029354572296, 0.014502763748168945,
- 0.02620605193078518, 0.043222274631261826, 0.38672032952308655, -0.27699601650238037,
- 0.08385193347930908, 0.07095608115196228, 0.04923096299171448, 0.08656799048185349,
- -0.0422494076192379, 0.06305935233831406, 0.05013830587267876, 0.13110312819480896,
- 0.14492632448673248, -0.022460414096713066, -0.007256065029650927, -0.08129002898931503,
- 0.069879449903965, -0.013784867711365223, 0.012403416447341442, 0.00352557934820652,
- -0.08481200784444809, -0.03200406953692436, 0.06468562036752701, -0.06251557171344757,
- 0.0035032450687140226, 0.0013433980057016015, -0.044767335057258606,
- -0.004337579011917114, 0.06225614622235298, 0.040188003331422806, -0.012198778800666332,
- -0.0072045703418552876, -0.011048556305468082, 0.03473127633333206,
- -0.0010262193391099572, -0.00891626626253128, -0.07513526827096939, 0.04462480545043945,
- -0.04997865483164787, -0.08351635932922363, 0.07727470248937607, -0.02735316939651966,
- 0.00754808634519577, 0.07811891287565231, -0.060492098331451416, 0.024100713431835175,
- -0.040131229907274246, -0.0646730288863182, 0.012501902878284454, 0.06430070102214813,
- 0.0325135812163353, 0.0689130648970604, 0.16981804370880127, -0.03894286975264549,
- -0.006361864507198334, -0.04535380378365517, 0.06363370269536972, 0.10225728899240494,
- -0.06654907763004303, 0.038195569068193436, -0.03565911576151848, 0.0112752765417099,
- 0.005062100011855364, -0.046766411513090134, -0.11315391212701797, -0.03426676243543625,
- -0.0839802622795105, 0.06481783092021942, 0.023007923737168312, -0.036864593625068665,
- -0.15780992805957794, -0.04806043580174446, -0.03790697455406189, 0.021051431074738503,
- 0.10659176111221313, -0.11090558022260666, 0.0340716727077961, -0.001240011304616928,
- -0.004009056370705366, -0.07960405945777893, -0.09324903041124344, -0.00860458705574274,
- -0.07642178237438202, 0.060854215174913406, 0.06042029336094856, 0.048712145537137985,
- -0.002053978620097041, 0.021672794595360756, -0.06815420836210251, 0.05185197293758392,
- -0.020083410665392876, 0.0028664518613368273, -0.012111966498196125,
- -0.040496040135622025, 0.032642994076013565, 0.022399023175239563, -0.05255058780312538,
- 0.011001992039382458, -0.008759799413383007, 0.007185088004916906, -0.08343594521284103,
- -0.09116863459348679, -0.04860517755150795, -0.0987677276134491, 0.06453432142734528,
- -0.07815499603748322, -0.011450175195932388, -0.02231716550886631,
- -0.009869449771940708, 0.01697295345366001, 0.0016081047942861915, 0.016317836940288544,
- -0.12389323860406876, 0.03404874727129936, 0.017248285934329033, 0.06175835430622101,
- 0.009147065691649914, -0.007371991872787476, 0.019534453749656677, 0.12066803127527237,
- 0.038279902189970016, -0.027560286223888397, -0.0029761989135295153,
- -0.047426242381334305, 0.027423804625868797, -0.07604392617940903, -0.4412508010864258,
- 0.054368000477552414, 0.023525387048721313, 0.006909932475537062, 0.02992958016693592,
- -0.06504887342453003, 0.03722474351525307, 0.021466856822371483, -0.009840279817581177,
- 0.07213597744703293, -0.06499464064836502, 0.02945130504667759, -0.06520234048366547,
- -0.027796437963843346, 0.009716521948575974, -0.05156378820538521, -0.03861919790506363,
- 0.04792490601539612, 0.006692924071103334, -0.03166170418262482, -0.13183586299419403,
- 0.029191428795456886, -0.07740510255098343, 0.03276617452502251, -0.012456345371901989,
- -0.018058909103274345, -0.07925955206155777, -0.061518777161836624, 0.02239941991865635,
- 0.03920150175690651, 0.046652767807245255, -0.07854057848453522, -0.035327788442373276,
- 0.031573936343193054, 0.008117030374705791, 0.10017562657594681, -0.005777725484222174,
- -0.06711951643228531, -0.04382209852337837, 0.0809587836265564, 0.0546526201069355,
- 0.18333189189434052, -0.03599747642874718, 0.0506155900657177, 0.00811222568154335,
- 0.13652677834033966, 0.050728630274534225, -0.01334251370280981, -0.026062747463583946,
- 0.00034149782732129097, 0.010456846095621586, -0.03227884694933891, 0.05993948504328728,
- -0.04821424558758736, -0.01833912916481495, 0.023642582818865776, -0.019222907721996307,
- 0.011754784733057022, -0.01679340936243534, 0.1584087759256363, 0.036605577915906906,
- 0.03129740059375763, 0.012420532293617725, -0.02911531925201416, -0.0005301485653035343,
- -0.05551650747656822, -0.04841286316514015, 0.005002458114176989, 0.0036489516496658325,
- 0.00956898182630539, -0.04699484631419182, -0.0899951234459877, -0.05318287014961243,
- 0.03016809932887554, -0.004378530662506819, 0.11507817357778549, 0.00968852173537016,
- 0.06617521494626999, -0.046212807297706604, 0.10918590426445007, 0.012260411866009235,
- 0.0016398405423387885, 0.04443078115582466, 0.11627591401338577, 0.03225530683994293,
- 0.0026054754853248596, 0.026812396943569183, -0.032227467745542526, 0.0572640597820282,
- 0.13068118691444397, -0.026054680347442627, 0.14452354609966278, 0.06592404097318649,
- -0.003967595752328634, -0.04963986948132515, 0.057673294097185135,
- -0.009574880823493004, 0.004354212433099747, -0.5302316546440125, 0.008375280536711216,
- 0.11010923981666565, 0.007974273525178432, 0.008207796141505241, 0.09443937987089157,
- 0.04170602560043335, -0.02200489677488804, -0.03658595308661461, -0.04667440056800842,
- 0.09720882773399353, -0.002875734120607376, 0.09782851487398148, -0.09526357799768448,
- 0.023554181680083275, 0.06561245769262314, -0.03836476430296898, 0.027777135372161865,
- 0.06972679495811462, -0.2527502775192261, 0.017975840717554092, -0.04896913468837738,
- 0.14206160604953766, 0.06151498481631279, 0.007045789156109095, 0.09033740311861038,
- -0.02240154892206192, 0.06600474566221237, 0.044002827256917953, 0.03241569921374321,
- 0.05643860995769501, 0.048429202288389206, -0.02694394625723362, 0.11195369809865952,
- 0.07053374499082565, 0.10557102411985397, -0.008259263820946217, 12.160740852355957,
- 0.04766653850674629, 0.055699218064546585, -0.04738033935427666, 0.04251712188124657,
- -0.0773065835237503, 0.027819538488984108, -0.09499195218086243, 0.005648784339427948,
- 0.12718866765499115, 0.018213288858532906, -0.08259769529104233, -0.011435347609221935,
- -0.12205521017313004, 0.043628763407468796, -0.011723975650966167,
- -0.011877890676259995, -0.07471916824579239, 0.047335777431726456, -0.04992793872952461,
- -0.0200361218303442, 0.03511470928788185, 0.047349512577056885, 0.0200934037566185,
- -0.07253321260213852, 0.03461269661784172, 0.04471077024936676, -0.023242764174938202,
- -0.00007953494787216187, 0.03897449001669884, 0.02280288375914097, 0.02770538628101349,
- 0.06275805085897446, -0.018649229779839516, 0.061876799911260605, 0.06215973570942879,
- 0.03610475733876228, 0.07409585267305374, 0.02691016159951687, 0.06335058063268661,
- 0.05535295978188515, 0.03078143298625946, 0.0387348048388958, 0.03369619697332382,
- 0.05428313836455345, 0.03453977778553963, 0.05284079909324646, 0.13114704191684723,
- 0.0060751973651349545, 0.05348220467567444, 0.09550430625677109, 0.014627897180616856,
- 0.07792587578296661, 0.029353067278862, -0.017376679927110672, 0.004959401208907366,
- 0.0006587840616703033, -0.08169972896575928, 0.07357936352491379, 0.06358572095632553,
- -0.09157977253198624, 0.08736547827720642, 0.010093302465975285, 0.10780876874923706,
- 0.0071004158817231655, 0.0751318410038948, 0.06254322826862335, 0.09301827102899551,
- -0.10246052592992783, -0.09047257900238037, 0.042383719235658646, -0.09963008016347885,
- -0.06438932567834854, 0.04692178592085838, 0.08011358231306076, -0.007331963628530502,
- 0.06811043620109558, -0.07189327478408813, 0.03824354335665703, -0.06420311331748962,
- -0.0008849352598190308, 0.020586978644132614, -0.021700771525502205,
- 0.012497271411120892, 0.04046252742409706, 0.06940008699893951, 0.04073220491409302,
- 0.08449085801839828, -0.007515866309404373, -0.06925279647111893, -0.07583037763834,
- 0.10547704249620438, -0.01707409881055355, -0.06380385905504227, -0.01331272441893816,
- -0.01751258783042431, 0.03167117387056351, -0.12475486844778061, 0.04473048076033592,
- 0.08848220854997635, -0.07745451480150223, -0.009901463985443115, -0.018752118572592735,
- 0.03593596816062927, -0.009620209224522114, 0.014535758644342422, -0.047803688794374466,
- 0.01635166071355343, 0.05069513991475105, 0.05261632427573204, -0.007349146995693445,
- 0.05573496222496033, 0.06326686590909958, -0.06201903894543648, 0.03273066505789757,
- 0.047442108392715454, 0.0026535282377153635, -0.01939656212925911, 0.039453376084566116,
- 0.06877908110618591, -0.07994687557220459, -0.02000197023153305, -0.07242155075073242,
- -0.036510951817035675, -0.012925463728606701, -0.06027139723300934,
- -0.018055006861686707, 0.003653191030025482, -0.04804619029164314, -0.01785772480070591,
- 0.009773683734238148, 0.08545564860105515, 0.05252958461642265, -0.016560183838009834,
- 0.06608552485704422, -0.04945622757077217, -0.06383450329303741, 0.027763716876506805,
- 0.056644368916749954, 0.06656748056411743, -0.08501838892698288, -0.015312854200601578,
- -0.01767529360949993, -0.14636100828647614, 0.03671250864863396, 0.10078109055757523,
- 0.07677626609802246, 0.0806175172328949, 0.027450257912278175, -0.09269203990697861,
- -0.050939422100782394, 0.11470884084701538, 0.06785544753074646, -0.00580045348033309,
- 0.05875977501273155, -0.030746525153517723, -0.020394789054989815, 0.10899025946855545,
- -0.04438270255923271, 0.027645057067275047, 0.0007881627534516156, -0.08824238181114197,
- 0.08029931038618088, 0.11589250713586807, -0.013992112129926682, 0.05897575616836548,
- 0.02562260441482067, 0.04130539298057556, 0.04061301052570343, -0.03396684303879738,
- 0.052950162440538406, -0.02530413307249546, -0.1591128706932068, -0.0831238403916359,
- 0.06039544567465782, 0.09482578188180923, 0.0572485476732254, -0.10252391546964645,
- -0.013597342185676098, -0.018167151138186455
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 372,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 26,
- "similarity": 0.9978405237197876
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 20,
- "similarity": 0.9978318214416504
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 32,
- "similarity": 0.9978160858154297
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Beebom"],
- "epoch_date_downloaded": 1666051200,
- "epoch_date_modified": 1667347200,
- "epoch_date_submitted": 1666051200,
- "flag": null,
- "report_number": 2178,
- "source_domain": "youtube.com",
- "submitters": ["Khoa Lam"],
- "title": "Pixel 6A: One REAL Problem!",
- "url": "https://www.youtube.com/watch?v=WMrumv7DVyk"
- },
- {
- "__typename": "Report",
- "authors": ["Geekyranjit"],
- "epoch_date_downloaded": 1666051200,
- "epoch_date_modified": 1667347200,
- "epoch_date_submitted": 1666051200,
- "flag": null,
- "report_number": 2177,
- "source_domain": "youtube.com",
- "submitters": ["Khoa Lam"],
- "title": "Pixel 6a Fingerprint Scanner Can't be Trusted",
- "url": "https://www.youtube.com/watch?v=RqkydbXgbMA"
- },
- {
- "__typename": "Report",
- "authors": ["Jordan Novet"],
- "epoch_date_downloaded": 1666656000,
- "epoch_date_modified": 1666656000,
- "epoch_date_submitted": 1666656000,
- "flag": null,
- "report_number": 2168,
- "source_domain": "cnbc.com",
- "submitters": ["Daniel Atherton (BNH.ai)"],
- "title": "My friend was able to unlock my new Google phone with his fingerprint",
- "url": "https://www.cnbc.com/2022/08/26/google-pixel-6a-fingerprint-issue-my-friend-unlocked-my-phone.html"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "michigan-unemployment-insurance-agency",
- "name": "Michigan Unemployment Insurance Agency"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "fast-enterprises",
- "name": "Fast Enterprises"
- },
- {
- "__typename": "Entity",
- "entity_id": "csg-government-solutions",
- "name": "CSG Government Solutions"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "unemployed-michigan-residents-falsely-accused-of-fraud",
- "name": "unemployed Michigan residents falsely accused of fraud"
- },
- {
- "__typename": "Entity",
- "entity_id": "unemployed-michigan-residents",
- "name": "unemployed Michigan residents"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [2238, 2216, 2215, 2214, 2213, 2191, 2190, 2189, 2188, 2187, 2169],
- "vector": [
- -0.06300552934408188, 0.08535682410001755, 0.022452713921666145, -0.06907132267951965,
- 0.11809329688549042, -0.05374488607048988, 0.017776206135749817, 0.09188473969697952,
- 0.07476314157247543, -0.12004940211772919, -0.014440279453992844, 0.05280746519565582,
- 0.0448278933763504, -0.06269621104001999, 0.008510983549058437, -0.1350182145833969,
- -0.13718156516551971, -0.04763047769665718, -0.015337521210312843, -0.13979849219322205,
- -0.07701503485441208, -0.016112737357616425, 0.01597115956246853, 0.1126919537782669,
- -0.05305910110473633, 0.053863123059272766, 0.13739857077598572, 0.1210666373372078,
- -0.030706224963068962, 0.09592074900865555, -0.0347435437142849, -0.05013488233089447,
- 0.11434829235076904, 0.006112186703830957, -0.012492680922150612, 0.12249796092510223,
- -0.002299916697666049, -0.01684766449034214, -0.02035783976316452,
- -0.024770868942141533, 0.0588911809027195, 0.24332159757614136, -0.029912151396274567,
- 0.0036632970441132784, 0.029528409242630005, -0.03389160707592964, 0.01964351162314415,
- 0.06965983659029007, 0.00009101007162826136, 0.0039222268387675285,
- -0.0026433849707245827, 0.06380103528499603, -0.03415122255682945, 0.021946944296360016,
- -0.08454238623380661, 0.07920421659946442, 0.028218097984790802, 0.029726367443799973,
- 0.07319814711809158, -0.08717869967222214, -0.055012427270412445, -0.25283873081207275,
- -0.07160875201225281, -0.10095293074846268, 0.08130008727312088, -0.10997024178504944,
- -0.03228450194001198, 0.018788840621709824, 0.01024953369051218, 0.07186375558376312,
- 0.04559651389718056, -0.030382750555872917, 0.025614941492676735, 0.01914552040398121,
- 0.006491728592664003, -0.053724225610494614, -0.008186496794223785, 0.1806047111749649,
- -0.07798287272453308, 0.039002712815999985, 0.10423751175403595, -0.08856937289237976,
- 0.4512624740600586, 0.03950302302837372, -0.02136843651533127, -0.014703746885061264,
- 0.09313802421092987, 0.06275340914726257, 0.03737659007310867, 0.04449653998017311,
- -0.04719618335366249, 0.02239907905459404, -0.06145341321825981, 0.03049594908952713,
- 0.09934261441230774, 0.029796086251735687, -0.018669798970222473, 0.082466259598732,
- -0.020451737567782402, -0.07584398239850998, 0.011120687238872051,
- -0.048328693956136703, 0.09604641795158386, 0.06964398175477982, -0.05341566726565361,
- 0.02191780135035515, 0.07025440037250519, -0.037725310772657394, 0.07408852875232697,
- -0.04395849257707596, 0.02927985228598118, 0.007376593071967363, 0.05080896615982056,
- 0.0019583329558372498, 0.039546817541122437, -0.0417032390832901, 0.0013951649889349937,
- 0.025516729801893234, 0.08777716755867004, -0.003983143251389265,
- -0.0003920515882782638, 0.05202670022845268, 0.10753626376390457, -0.03140479698777199,
- -0.028740424662828445, -0.037449419498443604, -0.07782993465662003,
- -0.024973267689347267, -0.04176781326532364, 0.03479486703872681, -0.06815484166145325,
- -0.1463780254125595, -0.018915297463536263, 0.08596546947956085, -0.009822923690080643,
- -0.020295219495892525, -0.018039293587207794, -0.03352750465273857, 0.06550060212612152,
- -0.02098517306149006, -0.011909500695765018, 0.06260928511619568, 0.032322172075510025,
- 0.038226909935474396, 0.10052966326475143, 0.053506530821323395, -0.0439421571791172,
- -0.042027197778224945, 0.0034968359395861626, -0.0037400058936327696,
- 0.1012561097741127, -0.16503199934959412, -0.03507344424724579, 0.03696383535861969,
- -0.011746387928724289, 0.6755717992782593, 0.10527089238166809, 0.10962951183319092,
- -0.03667536377906799, -0.046296920627355576, 0.16699720919132233, 0.014302575960755348,
- 0.056666646152734756, -0.04221223294734955, -0.054787516593933105, 0.03167067840695381,
- -0.06300903856754303, -0.05569259077310562, 0.04145072028040886, 0.030355794355273247,
- 0.1225966140627861, -0.006147204432636499, 0.1047816202044487, 0.013346894644200802,
- -0.09459979087114334, -0.007838635705411434, 0.057173583656549454,
- 0.0011698603630065918, -0.10504653304815292, -0.014228221960365772, 0.03629659116268158,
- 0.06958924233913422, -0.07992534339427948, 0.024317706003785133, -0.05516040325164795,
- 0.013187500648200512, -0.04687410593032837, 0.014492461457848549, 0.0005453902995213866,
- 0.02828276716172695, 0.04261943697929382, 0.07245495170354843, 0.03579576686024666,
- -0.1251949816942215, -0.06449025124311447, 0.059364352375268936, 0.0014998827828094363,
- -0.02420208603143692, 0.06518186628818512, -0.09381210803985596, 0.05641420930624008,
- 0.017174698412418365, 0.1865808069705963, -0.12775546312332153, 0.01718810945749283,
- -0.028746873140335083, -0.01661289483308792, 0.05912512540817261,
- -0.00005266937296255492, -0.05061383545398712, -0.06593932211399078,
- -0.009752972982823849, 0.04718375205993652, 0.0943414494395256, 0.043407898396253586,
- -0.04474978521466255, 0.03682662174105644, 0.04708738252520561, 0.002212204271927476,
- -0.04390813037753105, 0.08416497707366943, 0.054272688925266266, -0.04749387502670288,
- -0.010537886060774326, -0.00442636338993907, 0.03676239028573036, 0.02675074152648449,
- 0.027035217732191086, 0.030188264325261116, -0.02678009867668152, -0.03433626517653465,
- 0.0485549233853817, 0.018653985112905502, -0.012435373850166798, 0.0754161924123764,
- -0.069713294506073, -0.04726678505539894, -0.04221425950527191, -0.03184972703456879,
- -0.017957009375095367, -0.029101049527525902, 0.07333607226610184, 0.07532549649477005,
- 0.08151276409626007, 0.013539918698370457, 0.053804777562618256, 0.061504267156124115,
- 0.017861180007457733, 0.05903878062963486, 0.08042886853218079, -0.028250837698578835,
- -0.05059386417269707, -0.025796765461564064, -0.008835709653794765, 0.10148895531892776,
- 0.01635665073990822, -0.057823482900857925, -0.030168980360031128, -0.03845923766493797,
- -0.04414622113108635, -0.06743677705526352, -0.06850617378950119, -0.006080009508877993,
- 0.05034000799059868, -0.06870085746049881, -0.10964935272932053, -0.07576505094766617,
- 0.028906064108014107, 0.06784164160490036, -0.009853933937847614, -0.0373319536447525,
- -0.12216980755329132, 0.01674819551408291, -0.03320211544632912, 0.06412005424499512,
- -0.013517164625227451, 0.04943200573325157, 0.02160925418138504, -0.13839732110500336,
- 0.015694789588451385, -0.004535346757620573, -0.056733712553977966,
- -0.08651275187730789, -0.08686298877000809, -0.0478525310754776, 0.02068413607776165,
- 0.027407020330429077, -0.030641216784715652, 0.05134846270084381, 0.027263201773166656,
- 0.05785679817199707, -0.001959464279934764, -0.05737192556262016, 0.09701232612133026,
- -0.05711296945810318, 0.023332644253969193, 0.0946863442659378, -0.0039037985261529684,
- 0.015466239303350449, -0.039876390248537064, -0.057525310665369034,
- -0.06475559622049332, -0.03293624892830849, -0.06336865574121475, 0.058866605162620544,
- -0.032125890254974365, 0.021209079772233963, -0.0651976615190506, -0.023707007989287376,
- 0.013099088333547115, -0.07253118604421616, -0.07682490348815918, -0.08181391656398773,
- 0.09655424952507019, -0.010191584937274456, 0.026013076305389404, 0.006298830732703209,
- -0.05993223190307617, 0.034176055341959, -0.017441896721720695, -0.00179904920514673,
- 0.05099060386419296, 0.021553168073296547, -0.0488070584833622, 0.05579924210906029,
- 0.09675907343626022, -0.046837352216243744, 0.029963087290525436, 0.06981993466615677,
- 0.40182802081108093, -0.10370734333992004, 0.10770383477210999, 0.09243646264076233,
- 0.03131132572889328, 0.07707712054252625, -0.07611968368291855, 0.08383408188819885,
- 0.07024773955345154, 0.13825446367263794, 0.10090995579957962, -0.05163204297423363,
- -0.00890333205461502, -0.11427295953035355, 0.11575529724359512, 0.00697013596072793,
- 0.05646674335002899, -0.011532464064657688, -0.09054794907569885, -0.005514015443623066,
- 0.05240732803940773, -0.02852674573659897, -0.00959657784551382, 0.017105259001255035,
- -0.06462489068508148, 0.035764001309871674, -0.01377418078482151, 0.006881168112158775,
- -0.028822964057326317, 0.03626665472984314, -0.032038867473602295, 0.040708016604185104,
- -0.025702649727463722, 0.022209621965885162, -0.0679292380809784, 0.036500319838523865,
- -0.14579835534095764, -0.06781347841024399, 0.07787560671567917, 0.0029909571167081594,
- 0.05290384590625763, 0.07848194241523743, -0.04166097193956375, 0.037934817373752594,
- -0.050494421273469925, -0.07010763138532639, 0.028094468638300896, 0.043161120265722275,
- 0.02173202484846115, 0.04628126323223114, 0.1709425002336502, -0.01721355877816677,
- -0.030523495748639107, -0.038137927651405334, 0.05421498790383339, 0.1058799996972084,
- -0.016642984002828598, 0.0051438999362289906, -0.010009907186031342,
- 0.012220644392073154, 0.020492112264037132, -0.07347727566957474, -0.10166522860527039,
- -0.00970880314707756, -0.04666006565093994, 0.07050877064466476, 0.007818006910383701,
- -0.030167020857334137, -0.07883387058973312, -0.04873896762728691, -0.06837831437587738,
- 0.05469345673918724, 0.07299267500638962, -0.047896746546030045, 0.03369055688381195,
- -0.0144143495708704, 0.01647093892097473, 0.024626802653074265, -0.09631164371967316,
- 0.01966448314487934, -0.015797032043337822, 0.0015638136537745595, 0.05558209493756294,
- 0.08022788912057877, -0.08000055700540543, 0.06182529777288437, -0.09843862056732178,
- 0.039864152669906616, 0.02627376839518547, -0.021229753270745277,
- -0.0033714391756802797, -0.003930215258151293, 0.04796091467142105,
- 0.027610743418335915, -0.03621667996048927, -0.01806114986538887, -0.04523055627942085,
- -0.02472291700541973, -0.1141987144947052, -0.032072558999061584, -0.004066867753863335,
- -0.09243405610322952, 0.05215884745121002, -0.10967271029949188, -0.0361606739461422,
- -0.02265615202486515, -0.014055734500288963, -0.0019151709275320172,
- 0.059453416615724564, 0.020922640338540077, -0.14104816317558289, -0.014777040109038353,
- -0.031390003859996796, 0.044827576726675034, 0.0024375873617827892,
- -0.04606921598315239, 0.02176765911281109, 0.10158095508813858, 0.053134504705667496,
- -0.040641069412231445, -0.015208322554826736, -0.03641265258193016, 0.05291924625635147,
- -0.07583726197481155, -0.37911778688430786, 0.07324853539466858, -0.0071565075777471066,
- 0.04289915785193443, 0.004546303302049637, -0.04833773151040077, 0.043820206075906754,
- -0.003050359431654215, -0.06606392562389374, 0.06915506720542908, -0.04661388322710991,
- 0.03014899604022503, 0.026080334559082985, -0.05656764283776283, -0.020195605233311653,
- -0.061709508299827576, -0.06020557880401611, 0.0363403856754303, -0.03078526444733143,
- -0.08505188673734665, -0.09014048427343369, 0.0039041279815137386,
- -0.008799469098448753, 0.0036102302838116884, 0.00044599437387660146,
- -0.012551412917673588, -0.103325255215168, -0.04563547298312187, 0.04003680869936943,
- 0.04242860898375511, -0.003985656891018152, -0.08427806943655014, 0.02183843031525612,
- 0.04632192850112915, -0.03496846929192543, 0.1588468998670578, 0.018327638506889343,
- 0.008505435660481453, -0.0861365869641304, 0.05843410640954971, 0.0631309449672699,
- 0.1851271539926529, -0.0038386208470910788, 0.011991697363555431, 0.017491547390818596,
- 0.1263161599636078, 0.03865302726626396, 0.0617368221282959, -0.031127260997891426,
- 0.014769941568374634, -0.02024548500776291, 0.0009431728976778686, 0.0890716165304184,
- -0.057219091802835464, -0.01337882038205862, -0.03942108154296875,
- -0.004778985399752855, -0.026705948635935783, -0.03067532181739807, 0.21362334489822388,
- 0.00463888980448246, 0.01975502073764801, 0.0125935859978199, -0.06658313423395157,
- -0.017393343150615692, -0.07009021937847137, -0.09540314227342606,
- -0.020476892590522766, -0.013401630334556103, 0.0213251281529665, -0.032552383840084076,
- -0.12540219724178314, -0.021262334659695625, -0.04040089622139931,
- -0.0061536128632724285, 0.11794821918010712, -0.03946502506732941, 0.043325938284397125,
- -0.03617023676633835, 0.15094994008541107, 0.05773964896798134, 0.013465053401887417,
- 0.059618961066007614, 0.11896414309740067, 0.034409794956445694, 0.016696112230420113,
- -0.04318147525191307, -0.08406060189008713, -0.046953629702329636, 0.1252647340297699,
- -0.052879881113767624, 0.10091301798820496, 0.05400647968053818, -0.04635722562670708,
- -0.049885094165802, 0.01902570202946663, -0.012485217303037643, 0.026209378615021706,
- -0.4084438979625702, -0.02540457434952259, 0.14974653720855713, -0.031128428876399994,
- 0.023722494021058083, 0.08146362006664276, 0.03366148844361305, -0.040229346603155136,
- -0.026453860104084015, -0.10300710797309875, 0.1846458464860916, 0.03987962007522583,
- 0.10472393035888672, -0.12903548777103424, 0.032914116978645325, 0.09375565499067307,
- -0.02763361856341362, -0.03320873901247978, 0.0527673214673996, -0.22874318063259125,
- 0.012241274118423462, -0.06883688271045685, 0.14335966110229492, 0.0705590471625328,
- 0.045429714024066925, 0.07676496356725693, -0.06430085003376007, -0.005917638540267944,
- 0.015495171770453453, -0.0035199811682105064, 0.04667474329471588,
- -0.011553569696843624, -0.026195412501692772, 0.11335554718971252, 0.06478416174650192,
- 0.0833432525396347, -0.036363985389471054, 12.010682106018066, 0.08152718096971512,
- 0.0696256011724472, -0.06870479881763458, -0.006054700817912817, -0.04553821310400963,
- 0.020001817494630814, -0.10092952102422714, 0.042153820395469666, 0.12133416533470154,
- -0.030956905335187912, -0.06878837943077087, -0.05827770382165909, -0.09583449363708496,
- 0.00341348210349679, -0.054192379117012024, -0.045635007321834564,
- -0.024938778951764107, 0.03139705955982208, -0.059030767530202866, -0.03127317130565643,
- -0.003348599886521697, 0.08315476030111313, -0.008381149731576443, -0.09463513642549515,
- 0.039546363055706024, 0.028104422613978386, -0.011874973773956299, 0.003175875637680292,
- 0.029806453734636307, -0.019701514393091202, 0.018228519707918167, 0.08042974025011063,
- 0.0009750407771207392, 0.05061611905694008, 0.06861502677202225, 0.04283541440963745,
- 0.053326286375522614, 0.021877722814679146, 0.07541733980178833, 0.033080603927373886,
- 0.06194804608821869, 0.031911443918943405, 0.04618794843554497, 0.051498543471097946,
- 0.04035671427845955, 0.02557380683720112, 0.09652820229530334, 0.027693986892700195,
- 0.09826407581567764, 0.11486074328422546, 0.022257233038544655, 0.11187665164470673,
- 0.016740741208195686, 0.009543118067085743, 0.05694155767560005, 0.013315564952790737,
- -0.0669327974319458, 0.06397566944360733, 0.04221940413117409, -0.0459553599357605,
- 0.10381966084241867, -0.009150441735982895, 0.13055795431137085, -0.015670590102672577,
- 0.06607197225093842, 0.07035025209188461, 0.07001465559005737, -0.15469048917293549,
- -0.07720842957496643, 0.008767797611653805, -0.1197451576590538, -0.08434856683015823,
- 0.1089761033654213, 0.062478043138980865, -0.05611173063516617, 0.10512940585613251,
- -0.03891595080494881, 0.04369768127799034, -0.03259958326816559, -0.014438757672905922,
- 0.07545061409473419, -0.02209116891026497, -0.01662864349782467, 0.07075340300798416,
- -0.009692349471151829, 0.10587256401777267, 0.11342260986566544, -0.06733736395835876,
- -0.10568153113126755, -0.056022051721811295, 0.09162580221891403, -0.030126355588436127,
- -0.027526890859007835, -0.001023922930471599, -0.046430133283138275,
- 0.005160687956959009, -0.17698673903942108, 0.09954051673412323, 0.11442556977272034,
- -0.06453615427017212, 0.0013381135649979115, -0.03567260876297951, 0.057989515364170074,
- -0.006958289537578821, 0.021894466131925583, -0.05219846963882446, 0.030281394720077515,
- 0.002330188639461994, 0.0480429083108902, -0.05360324680805206, 0.09517111629247665,
- 0.06384707242250443, -0.07987905293703079, 0.044522132724523544, 0.08287150412797928,
- -0.030137894675135612, -0.021349839866161346, 0.027595151215791702,
- 0.011178860440850258, -0.0913476049900055, -0.05171496048569679, -0.019431835040450096,
- -0.025441111996769905, -0.029335856437683105, -0.06533083319664001,
- -0.01247426774352789, 0.023319870233535767, -0.10090651363134384, -0.03936902433633804,
- 0.04475259408354759, 0.03253670409321785, 0.07226146012544632, -0.009106249548494816,
- 0.07253796607255936, -0.052164241671562195, -0.050281163305044174, 0.06446702033281326,
- 0.02321772091090679, 0.06549591571092606, 0.029003817588090897, 0.010213499888777733,
- -0.06650613248348236, -0.09862127155065536, 0.014356106519699097, 0.10865624248981476,
- 0.07526446133852005, 0.04973549023270607, 0.04355199635028839, -0.044860243797302246,
- -0.04634958505630493, 0.10391782969236374, 0.045569099485874176, 0.04665173590183258,
- 0.03264172002673149, -0.04748174920678139, -0.03329414501786232, 0.11928925663232803,
- -0.03246289864182472, -0.0055914828553795815, 0.025147324427962303, -0.0354045070707798,
- 0.06546232849359512, 0.04277908802032471, 0.057723596692085266, 0.025379883125424385,
- 0.050818268209695816, -0.0011849517468363047, 0.04243575036525726, -0.01493089273571968,
- 0.040781039744615555, -0.031372830271720886, -0.07109690457582474, -0.05112887918949127,
- 0.028117716312408447, 0.08482568711042404, 0.06385885924100876, -0.08415121585130692,
- -0.020220421254634857, -0.021799005568027496
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 373,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 154,
- "similarity": 0.9974443316459656
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 10,
- "similarity": 0.9973343014717102
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 4,
- "similarity": 0.9970336556434631
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Rick Pluta"],
- "epoch_date_downloaded": 1667952000,
- "epoch_date_modified": 1667952000,
- "epoch_date_submitted": 1658880000,
- "flag": null,
- "report_number": 2238,
- "source_domain": "michiganradio.org",
- "submitters": ["Daniel Atherton (BNH.ai)"],
- "title": "State Supreme Court says victims of jobless benefits system failure can seek damages",
- "url": "https://www.michiganradio.org/criminal-justice-legal-system/2022-07-26/state-supreme-court-says-victims-of-jobless-benefits-system-failure-can-seek-damages"
- },
- {
- "__typename": "Report",
- "authors": ["Paul Egan"],
- "epoch_date_downloaded": 1666656000,
- "epoch_date_modified": 1667347200,
- "epoch_date_submitted": 1666656000,
- "flag": null,
- "report_number": 2216,
- "source_domain": "freep.com",
- "submitters": ["Khoa Lam"],
- "title": "Michigan residents falsely accused of jobless fraud can sue, Supreme Court says",
- "url": "https://www.freep.com/story/news/local/michigan/2019/04/05/michigan-job-fraud-cases-supreme-court/3376883002/"
- },
- {
- "__typename": "Report",
- "authors": ["Human Rights Watch"],
- "epoch_date_downloaded": 1666656000,
- "epoch_date_modified": 1667347200,
- "epoch_date_submitted": 1666656000,
- "flag": null,
- "report_number": 2215,
- "source_domain": "hrw.org",
- "submitters": ["Khoa Lam"],
- "title": "Submission to the UN Special Rapporteur on Extreme Poverty \u0026 Human Rights Regarding His Thematic Report on Digital Technology, Social Protection \u0026 Human Rights",
- "url": "https://www.hrw.org/news/2019/05/21/submission-un-special-rapporteur-extreme-poverty-human-rights-regarding-his"
- },
- {
- "__typename": "Report",
- "authors": ["Stephanie Wykstra"],
- "epoch_date_downloaded": 1666656000,
- "epoch_date_modified": 1667347200,
- "epoch_date_submitted": 1666656000,
- "flag": null,
- "report_number": 2214,
- "source_domain": "undark.org",
- "submitters": ["Khoa Lam"],
- "title": "Government’s Use of Algorithm Serves Up False Fraud Charges",
- "url": "https://undark.org/2020/06/01/michigan-unemployment-fraud-algorithm/"
- },
- {
- "__typename": "Report",
- "authors": ["Ed White"],
- "epoch_date_downloaded": 1666656000,
- "epoch_date_modified": 1667347200,
- "epoch_date_submitted": 1666656000,
- "flag": null,
- "report_number": 2213,
- "source_domain": "freep.com",
- "submitters": ["Khoa Lam"],
- "title": "Thousands of unemployed in Michigan wrongly accused of fraud can seek cash from state",
- "url": "https://www.freep.com/story/news/local/michigan/2022/07/26/unemployed-wrongly-accused-fraud-can-seek-cash-state/10157193002/"
- },
- {
- "__typename": "Report",
- "authors": ["Julia Angwin"],
- "epoch_date_downloaded": 1666656000,
- "epoch_date_modified": 1667347200,
- "epoch_date_submitted": 1666656000,
- "flag": null,
- "report_number": 2191,
- "source_domain": "themarkup.org",
- "submitters": ["Anonymous"],
- "title": "The Seven-Year Struggle to Hold an Out-of-Control Algorithm to Account",
- "url": "https://themarkup.org/newsletter/hello-world/the-seven-year-struggle-to-hold-an-out-of-control-algorithm-to-account"
- },
- {
- "__typename": "Report",
- "authors": ["Adrienne Roberts"],
- "epoch_date_downloaded": 1666656000,
- "epoch_date_modified": 1667347200,
- "epoch_date_submitted": 1666656000,
- "flag": null,
- "report_number": 2190,
- "source_domain": "freep.com",
- "submitters": ["Khoa Lam"],
- "title": "Michigan will settle 2015 unemployment false fraud lawsuit for $20 million",
- "url": "https://www.freep.com/story/news/local/michigan/2022/10/20/michiganunemployment-false-fraud-lawsuit/69577567007/"
- },
- {
- "__typename": "Report",
- "authors": ["Paul Egan", "Adrienne Roberts"],
- "epoch_date_downloaded": 1666656000,
- "epoch_date_modified": 1667347200,
- "epoch_date_submitted": 1666656000,
- "flag": null,
- "report_number": 2189,
- "source_domain": "freep.com",
- "submitters": ["Khoa Lam"],
- "title": "Judge: Companies can be sued over Michigan unemployment fraud fiasco",
- "url": "https://www.freep.com/story/news/local/michigan/2021/03/26/judge-unemployment-midas-false-fraud-fast-enterprises-csg/7014975002/"
- },
- {
- "__typename": "Report",
- "authors": ["Ryan Felton"],
- "epoch_date_downloaded": 1666656000,
- "epoch_date_modified": 1667347200,
- "epoch_date_submitted": 1666656000,
- "flag": null,
- "report_number": 2188,
- "source_domain": "theguardian.com",
- "submitters": ["Khoa Lam"],
- "title": "Michigan unemployment agency made 20,000 false fraud accusations",
- "url": "https://www.theguardian.com/us-news/2016/dec/18/michigan-unemployment-agency-fraud-accusations"
- },
- {
- "__typename": "Report",
- "authors": ["Daily Press"],
- "epoch_date_downloaded": 1666656000,
- "epoch_date_modified": 1667347200,
- "epoch_date_submitted": 1666656000,
- "flag": null,
- "report_number": 2187,
- "source_domain": "dailypress.net",
- "submitters": ["Khoa Lam"],
- "title": "Michigan may pay victims of unemployment benefits blunder",
- "url": "https://www.dailypress.net/news/local-news/2017/12/michigan-may-pay-victims-of-unemployment-benefits-blunder/"
- },
- {
- "__typename": "Report",
- "authors": ["David Eggert"],
- "epoch_date_downloaded": 1666656000,
- "epoch_date_modified": 1666656000,
- "epoch_date_submitted": 1666656000,
- "flag": null,
- "report_number": 2169,
- "source_domain": "apnews.com",
- "submitters": ["Khoa Lam"],
- "title": "State apologizes for fraud fiasco, wants to reduce penalties",
- "url": "https://apnews.com/article/c0e2346e85854a5b827ca42653c1fb40"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "uk-office-of-qualifications-and-examinations-regulation",
- "name": "UK Office of Qualifications and Examinations Regulation"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "uk-office-of-qualifications-and-examinations-regulation",
- "name": "UK Office of Qualifications and Examinations Regulation"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "underprivileged-pupils",
- "name": "underprivileged pupils"
- },
- {
- "__typename": "Entity",
- "entity_id": "pupils-in-state-schools",
- "name": "pupils in state schools"
- },
- {
- "__typename": "Entity",
- "entity_id": "gcse-pupils",
- "name": "GCSE pupils"
- },
- {
- "__typename": "Entity",
- "entity_id": "a-level-pupils",
- "name": "A-level pupils"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [2212, 2211, 2210, 2209, 2208, 2207, 2206, 2170],
- "vector": [
- -0.041240792721509933, 0.06492044031620026, -0.0019592619501054287,
- -0.08140021562576294, 0.049250684678554535, -0.07128202170133591, 0.030852941796183586,
- 0.04828425124287605, 0.09640753269195557, -0.09018869698047638, 0.009152968414127827,
- 0.028267893940210342, 0.05432627350091934, -0.07599593698978424, 0.02089863456785679,
- -0.12711100280284882, -0.1279275268316269, -0.0480278916656971, -0.052696116268634796,
- -0.11117163300514221, -0.08989991247653961, 0.01004054956138134, 0.00969156064093113,
- 0.09529894590377808, -0.035018935799598694, 0.05805792286992073, 0.057657379657030106,
- 0.11444181948900223, -0.05792337656021118, 0.03656624257564545, -0.032190851867198944,
- -0.06174543499946594, 0.12355943024158478, 0.010754419490695, 0.0034700948745012283,
- 0.1181623637676239, 0.010857799090445042, -0.03272674232721329, -0.003759063081815839,
- -0.015413223765790462, 0.037162747234106064, 0.2543124854564667, -0.019483786076307297,
- -0.016153549775481224, 0.03385685384273529, -0.043029963970184326, 0.020541487261652946,
- 0.04913398623466492, 0.01014755666255951, 0.0034414520487189293, 0.01023569144308567,
- 0.009649988263845444, -0.022281808778643608, 0.0351547934114933, -0.10304943472146988,
- 0.03827297315001488, 0.04019860923290253, 0.009613621048629284, 0.029004313051700592,
- -0.10087134689092636, -0.0035492603201419115, -0.2106761485338211, -0.06177821382880211,
- -0.07698345929384232, 0.06739545613527298, -0.11002524197101593, -0.04273899644613266,
- 0.03537644445896149, 0.027309967204928398, 0.07332517951726913, 0.050450585782527924,
- -0.01547019649296999, -0.01718611642718315, -0.01955959014594555, 0.005793937016278505,
- -0.02829674258828163, 0.022124212235212326, 0.1829652190208435, -0.07282993942499161,
- 0.00398904038593173, 0.10509815812110901, -0.09387415647506714, 0.3759143054485321,
- -0.0007164889248088002, 0.005901744123548269, -0.010479839518666267,
- 0.07953231036663055, 0.009951340034604073, 0.03735467419028282, 0.027866996824741364,
- -0.0047130826860666275, 0.07769434154033661, -0.05041283369064331, 0.038417454808950424,
- 0.06572266668081284, 0.03414077311754227, -0.027390236034989357, 0.023138878867030144,
- -0.039587609469890594, -0.057727914303541183, 0.010447049513459206,
- -0.052776992321014404, 0.07860826700925827, 0.07640039175748825, -0.05583414062857628,
- 0.0034355816897004843, 0.08898437768220901, -0.01879512146115303, 0.027152394875884056,
- -0.05296197906136513, -0.0034669130109250546, 0.038594163954257965, 0.09793893992900848,
- -0.0024924769531935453, 0.014606034383177757, -0.052533164620399475,
- 0.012007828801870346, 0.06807181239128113, 0.06820525228977203, 0.027965717017650604,
- -0.00803733803331852, 0.0707920715212822, 0.04735365882515907, -0.02955637127161026,
- 0.02112453803420067, -0.01576049253344536, -0.06775407493114471, -0.013562571257352829,
- -0.010536904446780682, 0.04650774225592613, -0.06758087873458862, -0.1725713461637497,
- 0.021653620526194572, 0.020252540707588196, -0.010520784184336662,
- -0.013716967776417732, -0.014721301384270191, -0.026308778673410416,
- 0.07928883284330368, -0.03127674013376236, 0.016328034922480583, 0.05852557718753815,
- 0.008212417364120483, 0.0496060810983181, 0.10129877924919128, 0.032569240778684616,
- -0.05872073024511337, -0.027832863852381706, -0.015958735719323158,
- -0.030028095468878746, 0.10874012112617493, -0.11785762757062912, -0.02931015007197857,
- 0.0005050070467405021, 0.03443591669201851, 0.6621439456939697, 0.10764415562152863,
- 0.12900593876838684, -0.007427984848618507, -0.030887415632605553, 0.17114253342151642,
- 0.0212540365755558, 0.0414600744843483, -0.04701761156320572, -0.0681769847869873,
- 0.00724634388461709, -0.06356297433376312, -0.04800287261605263, 0.015965905040502548,
- 0.01496986486017704, 0.09469005465507507, 0.007956292480230331, 0.09544988721609116,
- -0.0033909983467310667, -0.1024351641535759, -0.053433582186698914, 0.02043628878891468,
- 0.04930472373962402, -0.12017026543617249, -0.029354795813560486, 0.032325223088264465,
- 0.07405655086040497, -0.07475290447473526, 0.020019233226776123, -0.06953118741512299,
- 0.04722161591053009, -0.017933480441570282, 0.054524730890989304, -0.026806872338056564,
- 0.021553989499807358, 0.03599077835679054, 0.02488955669105053, 0.01268848404288292,
- -0.07155363261699677, -0.006944128777831793, 0.10449273139238358, 0.01214317325502634,
- -0.036931734532117844, 0.06440448760986328, -0.09177640080451965,
- -0.0019604188855737448, 0.03649185597896576, 0.16905269026756287, -0.13173739612102509,
- 0.016974832862615585, -0.03567667305469513, -0.03322187066078186, 0.0697740763425827,
- 0.0137319415807724, -0.051095642149448395, -0.04354711249470711, 0.05178644135594368,
- 0.042185235768556595, 0.11128386110067368, 0.06249234080314636, -0.025424202904105186,
- 0.07116835564374924, 0.02489337883889675, 0.03642401471734047, -0.07003185153007507,
- 0.07287692278623581, 0.0497584342956543, -0.08675013482570648, -0.013617430813610554,
- 0.05744057893753052, 0.035156186670064926, 0.028342848643660545, 0.0018878285773098469,
- 0.06222375109791756, 0.004522956907749176, -0.015294408425688744, 0.06657721102237701,
- -0.0015456764958798885, 0.018430104479193687, 0.0806012973189354, -0.10129928588867188,
- -0.05931083485484123, -0.03543020039796829, -0.024921057745814323, 0.006852487102150917,
- -0.047056786715984344, 0.07970977574586868, 0.07573818415403366, 0.05476449802517891,
- 0.008430763147771358, 0.03724914416670799, 0.08203420042991638, 0.023069458082318306,
- 0.06510290503501892, 0.021267754957079887, -0.03394728899002075, -0.04516208544373512,
- -0.0251865666359663, -0.0211475882679224, 0.04519711807370186, 0.007009677588939667,
- -0.06930042058229446, -0.007355148904025555, -0.028421279042959213,
- -0.07142090797424316, -0.08312016725540161, -0.010220646858215332, 0.023805029690265656,
- -0.00515787536278367, -0.05081648379564285, -0.08036965131759644, -0.0859878808259964,
- 0.020283309742808342, 0.07801514118909836, -0.03481625020503998, 0.009720818139612675,
- -0.11048831045627594, 0.01305057480931282, -0.030396593734622, 0.06120660901069641,
- -0.02328701876103878, 0.01802094839513302, 0.03658337518572807, -0.056593962013721466,
- -0.00253650383092463, 0.014290139079093933, -0.10591968148946762, -0.06896842271089554,
- -0.05734455958008766, -0.03397885710000992, 0.02798602730035782, 0.03812854737043381,
- -0.01407911628484726, 0.045560073107481, 0.050479449331760406, 0.06188885122537613,
- -0.0011593251256272197, -0.003340258961543441, 0.06791868805885315,
- -0.04320608451962471, 0.009477082639932632, 0.08898899704217911, -0.03984599560499191,
- 0.027169160544872284, -0.027191627770662308, -0.08842959254980087,
- -0.042040787637233734, -0.022651221603155136, -0.04963447153568268, 0.05158345401287079,
- -0.039926014840602875, -0.02075984515249729, -0.01712013967335224,
- -0.049611955881118774, 0.055142320692539215, -0.055605448782444, -0.06940722465515137,
- -0.07761315256357193, 0.09561501443386078, 0.019619861617684364, 0.031057359650731087,
- 0.006948299705982208, -0.047464217990636826, 0.049398306757211685, 0.052421070635318756,
- 0.01811271905899048, 0.06247102841734886, 0.05217510089278221, -0.03677672520279884,
- 0.03103504329919815, 0.08116848766803741, -0.015945758670568466, -0.0012110233074054122,
- 0.07507934421300888, 0.4268075227737427, -0.16925784945487976, 0.0604969747364521,
- 0.07491766661405563, 0.008327344432473183, 0.04436153173446655, -0.032662972807884216,
- 0.056134164333343506, 0.06805328279733658, 0.12114996463060379, 0.17287178337574005,
- -0.05371445417404175, -0.008075878024101257, -0.08164612948894501, 0.06564925611019135,
- 0.020189428701996803, 0.00967516377568245, -0.01922431029379368, -0.06688946485519409,
- -0.052891939878463745, 0.011415793560445309, -0.05774844437837601, 0.025839731097221375,
- 0.041003745049238205, -0.05657295882701874, 0.007516013458371162, 0.003289861138910055,
- -0.001541115459986031, 0.002666476648300886, 0.05537126958370209, -0.047703493386507034,
- -0.0020071782637387514, -0.00957940611988306, 0.05140511691570282, -0.08161710202693939,
- 0.019737454131245613, -0.04042830690741539, -0.0955335721373558, 0.08261623233556747,
- 0.02302631363272667, 0.07003118097782135, 0.06082025170326233, -0.01786922477185726,
- 0.05221802368760109, -0.04176915064454079, -0.062450721859931946, 0.007507789880037308,
- 0.03477921336889267, 0.00624171644449234, 0.05097203701734543, 0.15373355150222778,
- -0.04096011817455292, -0.0027189243119210005, -0.07584300637245178, 0.04541466012597084,
- 0.11912398785352707, -0.01679990440607071, -0.013257810845971107, -0.011046342551708221,
- 0.009219318628311157, 0.011644219048321247, -0.023275693878531456, -0.09061872214078903,
- -0.025705063715577126, -0.043055083602666855, 0.08734935522079468, 0.04961363971233368,
- -0.07379372417926788, -0.08365138620138168, -0.03658350184559822, -0.05812454596161842,
- 0.028800439089536667, 0.09098271280527115, -0.05566481500864029, 0.03047098219394684,
- -0.013051619753241539, -0.030604787170886993, 0.018094880506396294,
- -0.06277955323457718, -0.028813641518354416, -0.09091386944055557, 0.04258926212787628,
- 0.031062595546245575, 0.0679665133357048, -0.05047997087240219, 0.10927892476320267,
- -0.12131506204605103, 0.04714309424161911, 0.008256309665739536, -0.041806239634752274,
- 0.03848807513713837, -0.026940718293190002, 0.03934301435947418, 0.017438512295484543,
- -0.019744521006941795, -0.0051157535053789616, -0.03822082281112671,
- 0.001991232158616185, -0.1275281012058258, -0.08380963653326035, -0.029299292713403702,
- -0.09159401804208755, 0.044877998530864716, -0.03433552756905556, 0.026805277913808823,
- -0.027223631739616394, -0.01989218220114708, 0.0012091195676475763, 0.06056506559252739,
- -0.002708283718675375, -0.14322146773338318, -0.026188042014837265,
- -0.012687070295214653, 0.05140996724367142, -0.015812518075108528,
- -0.015274597331881523, -0.008074396289885044, 0.03450247645378113, 0.04912630096077919,
- -0.0424630306661129, -0.013187376782298088, -0.032763317227363586, 0.04814452305436134,
- -0.08012694120407104, -0.36575382947921753, 0.02082868292927742, 0.011666159145534039,
- 0.029406646266579628, 0.004344555549323559, -0.086677186191082, 0.02645464986562729,
- -0.002363336505368352, -0.014493400231003761, 0.0803426057100296, -0.024948211386799812,
- 0.04960876703262329, -0.011936749331653118, -0.08479776233434677, -0.005813412833958864,
- -0.07162684202194214, -0.0188619215041399, 0.06490299105644226, 0.001677313121035695,
- -0.09147095680236816, -0.06669995188713074, 0.04065209627151489, -0.010682251304388046,
- 0.01830189675092697, 0.0007663804572075605, 0.00044558191439136863,
- -0.06850139796733856, -0.07064920663833618, 0.018147770315408707, 0.032061804085969925,
- 0.01438350509852171, -0.08410762250423431, -0.0035331067629158497, 0.0759311318397522,
- -0.006191328167915344, 0.09627015143632889, 0.022555939853191376, 0.018741831183433533,
- -0.07105839252471924, 0.08771464973688126, 0.050415992736816406, 0.1842617690563202,
- -0.021613674238324165, 0.015503713861107826, 0.03344489634037018, 0.1504669338464737,
- 0.0010011307895183563, 0.01714218407869339, -0.022681521251797676, 0.029583550989627838,
- 0.01396043598651886, 0.0060897707007825375, 0.0949142724275589, -0.06613534688949585,
- -0.010714733973145485, -0.026376571506261826, -0.01937771961092949,
- -0.01408696360886097, -0.03321780636906624, 0.17115174233913422, 0.03683003783226013,
- 0.02941921539604664, 0.013276776298880577, -0.07864898443222046, -0.03052154742181301,
- -0.08399172872304916, -0.055476415902376175, -0.0027101263403892517,
- -0.011320481076836586, 0.012873168103396893, -0.025268008932471275,
- -0.11585301905870438, -0.02628488466143608, -0.016321517527103424,
- -0.004326814319938421, 0.09030730277299881, -0.05412963405251503, 0.033833060413599014,
- -0.07097599655389786, 0.149186909198761, 0.059527426958084106, 0.053088653832674026,
- 0.02329878695309162, 0.08887678384780884, 0.00910758413374424, -0.04474969953298569,
- -0.033650968223810196, -0.07057736068964005, -0.004821448121219873, 0.1576530933380127,
- -0.04121895134449005, 0.1144108697772026, 0.009351861663162708, -0.03446410596370697,
- -0.054365068674087524, 0.01377832144498825, -0.008459269069135189,
- 0.0025264322757720947, -0.43055689334869385, -0.03752224147319794, 0.13241782784461975,
- -0.027472035959362984, 0.011813409626483917, 0.051199186593294144,
- -0.006998411845415831, -0.058161865919828415, -0.015499529428780079,
- -0.1032336950302124, 0.1991473287343979, 0.036715470254421234, 0.07463116943836212,
- -0.11832387000322342, 0.04089752957224846, 0.08340674638748169, -0.06610425561666489,
- -0.01104526873677969, 0.03786711394786835, -0.2127259224653244, 0.0020057137589901686,
- -0.04001498967409134, 0.12507081031799316, 0.03148699924349785, 0.03636239469051361,
- 0.10701122134923935, -0.019850963726639748, 0.01635037362575531, 0.026046497747302055,
- -0.0069857388734817505, 0.04885641485452652, 0.005284372251480818, -0.04881995916366577,
- 0.0760718509554863, 0.07427481561899185, 0.0519384928047657, 0.0003527655208017677,
- 12.099977493286133, 0.07393297553062439, 0.061162568628787994, -0.0847371369600296,
- -0.009966096840798855, -0.05282742530107498, 0.0019377829739823937,
- -0.10119356215000153, 0.06693160533905029, 0.11223135143518448, 0.0101251732558012,
- -0.051316674798727036, 0.0010381744941696525, -0.10882888734340668, 0.02164863422513008,
- -0.01549066323786974, -0.045405980199575424, -0.03476300835609436, 0.03587416186928749,
- -0.04836900904774666, -0.02936885505914688, 0.011994115076959133, 0.05534099414944649,
- 0.040677510201931, -0.09512975066900253, 0.02247943915426731, -0.012868525460362434,
- 0.0028171928133815527, -0.00020061436225660145, -0.012663873843848705,
- -0.03026636317372322, 0.04093790426850319, 0.057898443192243576, 0.014983244240283966,
- 0.05354643613100052, 0.035153456032276154, 0.030362190678715706, 0.010337526910007,
- 0.025902025401592255, 0.08907940983772278, -0.010031398385763168, 0.03937099128961563,
- 0.04585767164826393, 0.07267028093338013, 0.06333884596824646, 0.03264342248439789,
- 0.038564592599868774, 0.10804765671491623, 0.02899119071662426, 0.0884115919470787,
- 0.12593190371990204, 0.03037997893989086, 0.13253876566886902, 0.03089330717921257,
- 0.021424656733870506, 0.0438762828707695, -0.0034149715211242437, -0.08037613332271576,
- 0.0743771567940712, 0.057272788137197495, -0.06758221238851547, 0.11658519506454468,
- 0.04427969828248024, 0.13598836958408356, 0.03814047947525978, 0.05858975276350975,
- 0.10447817295789719, 0.04814053326845169, -0.16872718930244446, -0.05735209956765175,
- -0.001236642594449222, -0.08683671057224274, -0.051813095808029175, 0.07144022732973099,
- 0.04027263820171356, -0.022396350279450417, 0.054472923278808594, -0.026761971414089203,
- 0.029387684538960457, -0.05697016045451164, -0.0024559851735830307,
- 0.022073334082961082, -0.04904090240597725, -0.01062442734837532, 0.09039297699928284,
- 0.02661949209868908, 0.07839421182870865, 0.10841254144906998, 0.01453343965113163,
- -0.09139728546142578, -0.0650053396821022, 0.07608296722173691, 0.007322228513658047,
- -0.03362821415066719, 0.0028886625077575445, -0.060962703078985214,
- 0.020826254040002823, -0.18181079626083374, 0.07689204812049866, 0.14596273005008698,
- -0.1230640560388565, -0.043689560145139694, -0.03726911172270775, 0.10936838388442993,
- 0.01855340786278248, 0.015835486352443695, -0.057485152035951614, -0.007605098187923431,
- 0.03720458596944809, 0.03204118460416794, -0.0465666763484478, 0.09757306426763535,
- 0.09965846687555313, -0.05714567378163338, 0.06219063326716423, 0.07499706745147705,
- -0.017298530787229538, -0.038122694939374924, 0.06094822287559509, 0.03079780749976635,
- -0.08407747745513916, -0.038973648101091385, -0.0308037418872118, -0.04229573532938957,
- -0.017336349934339523, -0.027212277054786682, -0.009905805811285973,
- 0.06112245097756386, -0.0703413188457489, -0.026674997061491013, 0.03167199343442917,
- 0.06568025797605515, 0.10047823935747147, -0.008825136348605156, 0.05674523860216141,
- -0.03563161939382553, -0.061437517404556274, 0.058161087334156036, 0.01318095251917839,
- 0.056837961077690125, -0.058812715113162994, -0.051196303218603134,
- -0.010170776396989822, -0.10444660484790802, -0.005076364614069462, 0.089009128510952,
- 0.04119211435317993, 0.059889473021030426, 0.051665447652339935, -0.06803634762763977,
- -0.03684672713279724, 0.06343018263578415, 0.041322577744722366, -0.03303233161568642,
- 0.052835170179605484, -0.06586681306362152, -0.019063182175159454, 0.1197410523891449,
- -0.015038862824440002, -0.0017677778378129005, 0.014108387753367424,
- -0.07953730970621109, 0.07798447459936142, 0.08214005827903748, 0.03457772359251976,
- 0.022712506353855133, 0.044571202248334885, 0.00584952300414443, -0.008716625161468983,
- 0.006768684834241867, 0.003483464941382408, -0.06355372071266174, -0.06674950569868088,
- -0.08006670325994492, 0.05215073376893997, 0.09273775666952133, 0.04242367297410965,
- -0.09298999607563019, -0.0008136086398735642, -0.0591079480946064
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 374,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 43,
- "similarity": 0.9976732134819031
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 14,
- "similarity": 0.9973520040512085
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 11,
- "similarity": 0.9973504543304443
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Upol Ehsan", "Ranjit Singh", "Jacob Metcalf", "Mark Riedl"],
- "epoch_date_downloaded": 1666656000,
- "epoch_date_modified": 1667347200,
- "epoch_date_submitted": 1666656000,
- "flag": null,
- "report_number": 2212,
- "source_domain": "dl.acm.org",
- "submitters": ["Nga Than"],
- "title": "The Algorithmic Imprint",
- "url": "https://dl.acm.org/doi/10.1145/3531146.3533186"
- },
- {
- "__typename": "Report",
- "authors": ["Sam Shead"],
- "epoch_date_downloaded": 1666656000,
- "epoch_date_modified": 1667347200,
- "epoch_date_submitted": 1666656000,
- "flag": null,
- "report_number": 2211,
- "source_domain": "cnbc.com",
- "submitters": ["Anonymous"],
- "title": "How a computer algorithm caused a grading crisis in British schools",
- "url": "https://www.cnbc.com/2020/08/21/computer-algorithm-caused-a-grading-crisis-in-british-schools.html"
- },
- {
- "__typename": "Report",
- "authors": ["Jon Porter"],
- "epoch_date_downloaded": 1666656000,
- "epoch_date_modified": 1667347200,
- "epoch_date_submitted": 1666656000,
- "flag": null,
- "report_number": 2210,
- "source_domain": "theverge.com",
- "submitters": ["Anonymous"],
- "title": "UK ditches exam results generated by biased algorithm after student protests",
- "url": "https://www.theverge.com/2020/8/17/21372045/uk-a-level-results-algorithm-biased-coronavirus-covid-19-pandemic-university-applications"
- },
- {
- "__typename": "Report",
- "authors": ["Donna Ferguson", "Michael Savage"],
- "epoch_date_downloaded": 1666656000,
- "epoch_date_modified": 1667347200,
- "epoch_date_submitted": 1666656000,
- "flag": null,
- "report_number": 2209,
- "source_domain": "theguardian.com",
- "submitters": ["Khoa Lam"],
- "title": "Controversial exams algorithm to set 97% of GCSE results",
- "url": "https://www.theguardian.com/education/2020/aug/15/controversial-exams-algorithm-to-set-97-of-gcse-results"
- },
- {
- "__typename": "Report",
- "authors": ["Richard Adams", "Jessica Elgot", "Heather Stewart", "Kate Proctor"],
- "epoch_date_downloaded": 1666656000,
- "epoch_date_modified": 1667347200,
- "epoch_date_submitted": 1666656000,
- "flag": null,
- "report_number": 2208,
- "source_domain": "theguardian.com",
- "submitters": ["Khoa Lam"],
- "title": "Ofqual ignored exams warning a month ago amid ministers' pressure",
- "url": "https://www.theguardian.com/politics/2020/aug/19/ofqual-was-warned-a-month-ago-that-exams-algorithm-was-volatile"
- },
- {
- "__typename": "Report",
- "authors": ["BBC News"],
- "epoch_date_downloaded": 1666656000,
- "epoch_date_modified": 1667347200,
- "epoch_date_submitted": 1666656000,
- "flag": null,
- "report_number": 2207,
- "source_domain": "bbc.com",
- "submitters": ["Khoa Lam"],
- "title": "A-levels and GCSEs: How did the exam algorithm work?",
- "url": "https://www.bbc.com/news/explainers-53807730"
- },
- {
- "__typename": "Report",
- "authors": ["Heather Stewart", "Sally Weale", "Kate Proctor"],
- "epoch_date_downloaded": 1666656000,
- "epoch_date_modified": 1667347200,
- "epoch_date_submitted": 1666656000,
- "flag": null,
- "report_number": 2206,
- "source_domain": "theguardian.com",
- "submitters": ["Khoa Lam"],
- "title": "Ofqual chief to face MPs over exams fiasco and botched algorithm grading",
- "url": "https://www.theguardian.com/education/2020/aug/20/ofqual-chief-to-face-mps-over-exams-fiasco-and-botched-algorithm-grading-system"
- },
- {
- "__typename": "Report",
- "authors": ["Alex Hern"],
- "epoch_date_downloaded": 1666483200,
- "epoch_date_modified": 1666656000,
- "epoch_date_submitted": 1666483200,
- "flag": null,
- "report_number": 2170,
- "source_domain": "theguardian.com",
- "submitters": ["Khoa Lam"],
- "title": "Ofqual's A-level algorithm: why did it fail to make the grade?",
- "url": "https://www.theguardian.com/education/2020/aug/21/ofqual-exams-algorithm-why-did-it-fail-make-grade-a-levels"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "krungthai-bank",
- "name": "Krungthai Bank"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "krungthai-bank",
- "name": "Krungthai Bank"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "thai-citizens",
- "name": "Thai citizens"
- },
- {
- "__typename": "Entity",
- "entity_id": "elder-thai-citizens",
- "name": "elder Thai citizens"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [48],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [2193, 2192, 2171],
- "vector": [
- -0.06001119315624237, 0.005079090129584074, 0.012469951994717121, -0.02816147170960903,
- 0.13082438707351685, -0.034282322973012924, -0.030747493728995323,
- -0.056461866945028305, 0.14131413400173187, -0.05640894174575806, 0.0906062200665474,
- 0.021039003506302834, 0.058821965008974075, 0.13076907396316528, 0.07641001790761948,
- 0.04667603597044945, 0.010593031533062458, 0.02384038083255291, -0.014390318654477596,
- 0.02695302665233612, -0.01600022055208683, 0.13784021139144897, 0.024176204577088356,
- 0.08904866129159927, -0.11842597275972366, 0.03452226147055626, 0.1132410541176796,
- 0.09060127288103104, -0.016846483573317528, -0.09318391233682632, 0.001263833953998983,
- -0.07857941091060638, 0.09977605938911438, 0.0485067218542099, 0.07971867173910141,
- 0.026051437482237816, 0.0734347403049469, -0.11456602811813354, -0.09230992943048477,
- 0.022724129259586334, 0.05947389081120491, 0.04739130660891533, 0.05337555333971977,
- 0.045360926538705826, 0.0952075645327568, -0.03630802035331726, 0.11408406496047974,
- 0.15691109001636505, 0.014210853725671768, 0.03857972100377083, 0.0191799346357584,
- 0.045864224433898926, -0.12146952003240585, 0.02131412923336029, -0.07814954966306686,
- -0.018871620297431946, 0.01091689895838499, 0.10010244697332382, 0.06833852827548981,
- -0.023422958329319954, -0.05325336381793022, -0.05599014833569527, -0.07675144821405411,
- 0.08527351170778275, -0.0021195474546402693, -0.02821381390094757, -0.0443091094493866,
- -0.08134657144546509, 0.06145923212170601, 0.003287225030362606, 0.11300740391016006,
- -0.03450595960021019, 0.10613265633583069, -0.2245592325925827, -0.09825218468904495,
- -0.154419407248497, 0.004104731138795614, 0.38683244585990906, 0.012695868499577045,
- -0.02586529590189457, 0.1388344168663025, -0.042122259736061096, 0.3377176523208618,
- 0.11828581243753433, 0.028224075213074684, 0.025853537023067474, 0.05139421299099922,
- -0.05130067840218544, 0.06213744357228279, 0.09407461434602737, 0.11656749993562698,
- 0.06253129243850708, -0.029184890910983086, -0.037720635533332825, 0.08143115788698196,
- -0.003186633111909032, 0.09062328189611435, -0.3044491708278656, 0.008159507997334003,
- -0.11142496019601822, 0.15115399658679962, -0.03521675989031792, 0.02567138709127903,
- 0.038053419440984726, 0.024024032056331635, -0.10787615925073624, 0.1344439834356308,
- 0.028993437066674232, -0.03472929075360298, 0.04359409213066101, 0.05931888893246651,
- 0.08024830371141434, 0.02566245198249817, 0.021367808803915977, -0.059384673833847046,
- 0.020192107185721397, 0.12079864740371704, -0.02190799079835415, 0.04220389947295189,
- 0.20397312939167023, -0.03326059505343437, 0.028780413791537285, 0.11916915327310562,
- 0.08961047977209091, 0.00037520937621593475, -0.007783147040754557, 0.06427151709794998,
- -0.018232103437185287, 0.00805241335183382, 0.03047681786119938, -0.045361775904893875,
- -0.2933768332004547, -0.025073692202568054, -0.08811356872320175, 0.04841821268200874,
- 0.02005285583436489, -0.05048130452632904, 0.01895921118557453, 0.07018119096755981,
- 0.04000209644436836, -0.05446161329746246, 0.10709204524755478, 0.19128847122192383,
- 0.04038343206048012, 0.11482006311416626, -0.049216073006391525, -0.06970280408859253,
- -0.05360346660017967, -0.061423707753419876, -0.04169507324695587, 0.09101656079292297,
- 0.009679908864200115, -0.03910494223237038, 0.057960331439971924, -0.11360422521829605,
- 0.37394484877586365, 0.14587265253067017, 0.04456423223018646, -0.09110049158334732,
- 0.04579833149909973, 0.12533847987651825, -0.14309120178222656, -0.02119169384241104,
- 0.07101434469223022, 0.04768932983279228, 0.006410831119865179, -0.13189347088336945,
- 0.10009296983480453, 0.11578264832496643, -0.04385882616043091, -0.01580229587852955,
- -0.017844656482338905, 0.053670864552259445, -0.013375352136790752,
- -0.03420688211917877, 0.04693971946835518, 0.017666446045041084, -0.04733261838555336,
- -0.14075690507888794, -0.05194142460823059, 0.02178066223859787, 0.04443533346056938,
- -0.05607050284743309, 0.05234437808394432, 0.016347823664546013, -0.015877924859523773,
- -0.025536976754665375, -0.05486481264233589, 0.1122114285826683, -0.06292449682950974,
- -0.020867109298706055, 0.1312747746706009, 0.07662729173898697, -0.09401481598615646,
- 0.003961553797125816, 0.07312368601560593, 0.05849634110927582, -0.03147275745868683,
- 0.1350526660680771, -0.050770103931427, 0.043939054012298584, -0.023954963311553,
- 0.04030108079314232, -0.15542955696582794, 0.03637397661805153, -0.0185414869338274,
- -0.12322840094566345, 0.05794571712613106, 0.012285022996366024, -0.05690482631325722,
- -0.12054336071014404, 0.03857991471886635, -0.009094168432056904, 0.18753117322921753,
- -0.17941886186599731, 0.0054281908087432384, -0.06888269633054733, -0.18163959681987762,
- 0.07231155037879944, -0.14680324494838715, 0.12987065315246582, 0.10235989093780518,
- -0.0214430782943964, -0.06522680073976517, -0.07915116101503372, 0.06661642342805862,
- 0.05037229135632515, -0.07966482639312744, 0.006462907884269953, 0.06371789425611496,
- 0.009478340856730938, -0.027027389034628868, -0.03059963323175907,
- -0.027483969926834106, 0.04565975442528725, -0.22744356095790863, -0.04592510685324669,
- -0.04647558927536011, 0.007013821508735418, 0.039381448179483414, -0.15141992270946503,
- 0.04532909393310547, 0.0034448355436325073, 0.02495928294956684, 0.04093308746814728,
- 0.15785789489746094, 0.01069947425276041, 0.24648070335388184, -0.01836591586470604,
- -0.08390536159276962, 0.016860978677868843, 0.03563122823834419, -0.14484190940856934,
- 0.01442850660532713, -0.04456606134772301, -0.03340355306863785, -0.03391120955348015,
- -0.0771346390247345, 0.055367112159729004, -0.03634670004248619, -0.04139091446995735,
- -0.0218222513794899, 0.0268740002065897, -0.08013712614774704, -0.1147066056728363,
- -0.1414908766746521, -0.028170576319098473, -0.07247616350650787, 0.07771068066358566,
- -0.018586307764053345, 0.07214304059743881, -0.06682863086462021, 0.015101092867553234,
- -0.013559547252953053, 0.005396688356995583, 0.06589262932538986, -0.22643618285655975,
- -0.09882215410470963, -0.14460965991020203, -0.06425893306732178, 0.08867693692445755,
- -0.06740957498550415, -0.1862281709909439, 0.0681980550289154, -0.0396554097533226,
- 0.10480866581201553, -0.16020534932613373, 0.017293989658355713, 0.09385190159082413,
- 0.026471249759197235, 0.010867685079574585, -0.0029547540470957756,
- -0.023065634071826935, 0.1241975799202919, -0.08863035589456558, 0.15078970789909363,
- 0.025378070771694183, -0.015531756915152073, 0.0670013353228569, 0.1302703320980072,
- -0.09746230393648148, -0.06392542272806168, -0.08573078364133835, 0.004402962047606707,
- 0.10403627902269363, -0.13174887001514435, -0.07186754792928696, 0.013788112439215183,
- 0.057937175035476685, 0.05970192328095436, 0.005579029675573111, -0.04458765313029289,
- -0.00016209110617637634, 0.1562366634607315, 0.036878522485494614, 0.13214480876922607,
- 0.0936179980635643, -0.20163708925247192, 0.05037708953022957, 0.02902967296540737,
- 0.02510540373623371, 0.014777776785194874, 0.08241263777017593, 0.024044694378972054,
- 0.013086349703371525, 0.054098501801490784, -0.031516529619693756, -0.07908409088850021,
- 0.08520722389221191, 0.4968978464603424, -0.225844144821167, 0.03131994605064392,
- 0.05747133493423462, 0.04954143241047859, 0.06495168060064316, 0.01686318963766098,
- -0.002677829936146736, 0.017949912697076797, 0.12237146496772766, 0.09457745403051376,
- -0.0820687934756279, -0.09477446228265762, 0.0019325154135003686, 0.10721296072006226,
- 0.05185141786932945, 0.010439668782055378, -0.02363530360162258, -0.08073166757822037,
- 0.050808560103178024, -0.05541452765464783, 0.002906373469159007, 0.06323964148759842,
- 0.09225619584321976, -0.12735025584697723, -0.1167202889919281, 0.14102192223072052,
- -0.042757678776979446, -0.07175467163324356, -0.021874060854315758, -0.2361576110124588,
- -0.02656695991754532, -0.054029736667871475, 0.06389843672513962, 0.0028700882103294134,
- 0.15295451879501343, -0.10437507182359695, -0.06817042082548141, 0.010261681862175465,
- -0.10023906826972961, 0.05498547479510307, -0.03860771656036377, 0.0015382509445771575,
- 0.04306498169898987, -0.04072507098317146, 0.014452964067459106, 0.003933239262551069,
- 0.032478466629981995, 0.14409030973911285, -0.002415783004835248, 0.05554721876978874,
- 0.07242778688669205, -0.055258858948946, 0.0399436429142952, -0.03801948204636574,
- 0.08583706617355347, -0.03839139640331268, -0.020046044141054153, 0.12096498161554337,
- 0.12347844988107681, 0.023219039663672447, -0.011408369988203049, -0.0948389396071434,
- -0.01101578027009964, -0.020930513739585876, 0.07217589020729065, 0.08184698224067688,
- -0.038551438599824905, -0.21482491493225098, -0.019311264157295227,
- -0.07414214313030243, 0.03273806348443031, 0.1119317039847374, -0.039338331669569016,
- -0.031674474477767944, 0.003072504885494709, -0.0601874440908432, -0.03717736527323723,
- -0.09594690799713135, -0.0193958580493927, -0.1293753683567047, -0.041775334626436234,
- 0.13099251687526703, 0.06491340696811676, -0.014816897921264172, -0.0848737433552742,
- -0.03393631428480148, 0.17612512409687042, -0.10730838775634766, -0.038923926651477814,
- 0.028092438355088234, 0.13274650275707245, 0.009256251156330109, 0.10529569536447525,
- 0.06083933636546135, -0.055951010435819626, -0.03861850127577782, 0.052746694535017014,
- -0.06080929562449455, -0.10308120399713516, -0.028310514986515045, -0.02464357204735279,
- 0.06148320436477661, 0.01274253148585558, -0.0267252866178751, -0.005427129566669464,
- -0.016910869628190994, -0.021313846111297607, 0.048192452639341354, -0.0523875392973423,
- -0.024592271074652672, -0.018173642456531525, -0.06272485852241516,
- -0.022899257019162178, 0.06521110236644745, -0.0021027361508458853, 0.00244113034568727,
- 0.0732349157333374, 0.0311869028955698, -0.13528425991535187, 0.012228179723024368,
- -0.057363491505384445, 0.07931394129991531, 0.04689921438694, -0.6849063038825989,
- 0.03283202275633812, -0.012452996335923672, 0.05041301250457764, 0.04890252277255058,
- -0.08704928308725357, 0.03352323919534683, 0.005210018251091242, 0.024675294756889343,
- 0.042668383568525314, -0.04508471488952637, 0.02066892944276333, 0.04490162059664726,
- -0.03304674103856087, 0.005063241813331842, 0.005750756710767746, -0.006516399327665567,
- 0.10948395729064941, -0.0030825408175587654, -0.02082381211221218, -0.07090907543897629,
- -0.027262993156909943, 0.02037905342876911, 0.062002599239349365, 0.0511813648045063,
- -0.11706596612930298, -0.01981559954583645, -0.06589310616254807, 0.0667942464351654,
- 0.07623910158872604, -0.07956767082214355, -0.05640709027647972, -0.04230394586920738,
- -0.017562715336680412, 0.05554172396659851, 0.03724561259150505, 0.09429564327001572,
- -0.002797672525048256, 0.002791722072288394, -0.040790870785713196, 0.07927598804235458,
- 0.18825113773345947, -0.08764421939849854, 0.114430271089077, 0.030965516343712807,
- 0.1329169124364853, -0.0603935532271862, 0.0576937310397625, -0.020748743787407875,
- 0.18117065727710724, 0.09724435210227966, 0.0018191864946857095, -0.04160289093852043,
- -0.05778391286730766, 0.036779459565877914, -0.0726277157664299, -0.030607059597969055,
- -0.019384222105145454, 0.07909155637025833, 0.11662312597036362, 0.0078031583689153194,
- 0.007409894373267889, 0.01822638511657715, -0.00240150629542768, -0.05652707815170288,
- 0.017285319045186043, 0.016981715336441994, -0.18287153542041779, -0.020613260567188263,
- -0.04820464178919792, -0.04786590859293938, -0.13357281684875488, -0.018365958705544472,
- 0.0917445719242096, 0.00462848087772727, 0.07882315665483475, -0.06824993342161179,
- 0.04089471697807312, -0.0019899976905435324, 0.08721760660409927, 0.016052162274718285,
- 0.12950241565704346, 0.08310966938734055, -0.015615957789123058, 0.0775725394487381,
- 0.08049743622541428, -0.18464505672454834, 0.03858103230595589, 0.028352418914437294,
- 0.20774467289447784, -0.019951460883021355, -0.11262065917253494, 0.03736056759953499,
- 0.0388639010488987, -0.07186757773160934, 0.11840406805276871, -0.04771872237324715,
- 0.06028573587536812, -0.6612403392791748, -0.018828602507710457, 0.003768059192225337,
- -0.05349471792578697, -0.0755326971411705, 0.10445195436477661, -0.03806888684630394,
- 0.028502730652689934, 0.03487447276711464, -0.09295433759689331, 0.10511025041341782,
- -0.0014222869649529457, 0.06538010388612747, -0.20732152462005615, -0.0817592516541481,
- 0.05827406421303749, -0.02973393350839615, -0.06319744139909744, 0.01154738012701273,
- -0.13823841512203217, 0.039778124541044235, 0.10094789415597916, 0.2777955234050751,
- -0.0030123319011181593, 0.04275107383728027, 0.09727741032838821, -0.10517667979001999,
- -0.02439790964126587, 0.02056068368256092, 0.10890427976846695, 0.08207134157419205,
- 0.03722406551241875, -0.11187279224395752, -0.01623532362282276, -0.05471837520599365,
- 0.10712767392396927, 0.04170934483408928, 11.748771667480469, 0.030018894001841545,
- 0.0867353305220604, -0.049560148268938065, -0.08317956328392029, -0.12487273663282394,
- 0.03350050747394562, -0.03084121085703373, 0.048512671142816544, 0.03214460611343384,
- -0.041195496916770935, -0.012183766812086105, 0.014955592341721058, 0.01294848695397377,
- 0.04808717966079712, -0.015466898679733276, 0.10987788438796997, 0.03596532717347145,
- 0.051162589341402054, -0.012734132818877697, -0.0010446530068293214, 0.1561410278081894,
- 0.06478554755449295, 0.07005235552787781, -0.03814828023314476, -0.006063531618565321,
- -0.062164559960365295, 0.1102890595793724, 0.030660266056656837, -0.03195565566420555,
- 0.005765408743172884, 0.07062918692827225, 0.06394476443529129, 0.15555912256240845,
- 0.09577291458845139, -0.030654193833470345, -0.02782713808119297, 0.13306768238544464,
- -0.005179299972951412, 0.053208496421575546, 0.014774431474506855, 0.023994311690330505,
- 0.009184482507407665, -0.03528182581067085, 0.02340647019445896, 0.05765557661652565,
- 0.05249018967151642, 0.05551176145672798, 0.026337942108511925, 0.014609086327254772,
- 0.14507074654102325, -0.07069288939237595, 0.05469806119799614, -0.1459108591079712,
- -0.004066668916493654, -0.11854451149702072, 0.003343723714351654, -0.02521357126533985,
- 0.05140724778175354, 0.175423264503479, 0.033924806863069534, 0.0540277361869812,
- -0.05411340668797493, 0.009514992125332355, 0.176111102104187, 0.025463342666625977,
- 0.07534200698137283, 0.15118740499019623, -0.07173487544059753, 0.05923744663596153,
- 0.0023550044279545546, -0.05695595219731331, -0.014674380421638489,
- -0.12810371816158295, -0.0681658387184143, 0.0321262888610363, 0.02492646686732769,
- 0.006696556229144335, 0.013710538856685162, -0.19021086394786835, -0.008841211907565594,
- 0.04159160330891609, 0.028313934803009033, 0.036707643419504166, -0.062666155397892,
- 0.05479208752512932, -0.04418443143367767, -0.0004340711748227477, -0.0402575321495533,
- 0.036083661019802094, -0.1123776063323021, -0.10719078779220581, -0.15099327266216278,
- -0.008088920265436172, -0.1165219247341156, -0.03705451264977455, 0.15655048191547394,
- 0.0008099584956653416, 0.20312266051769257, 0.01578723080456257, -0.07066883146762848,
- -0.018982743844389915, 0.007444365415722132, 0.09682047367095947, 0.030105112120509148,
- 0.0390775240957737, 0.0821978822350502, -0.025448733940720558, -0.018023591488599777,
- 0.04253449663519859, -0.05108588933944702, 0.14757463335990906, -0.0494290329515934,
- -0.02734435349702835, 0.11426258832216263, 0.0007954384782351553, -0.021060539409518242,
- -0.013126644305884838, 0.016801096498966217, 0.05722573399543762, -0.060946863144636154,
- 0.011904728598892689, -0.02334020473062992, -0.10362797230482101, -0.006424726452678442,
- -0.0656224712729454, -0.06585758924484253, 0.00023974258510861546,
- -0.013179398141801357, -0.043744999915361404, 0.12623345851898193, -0.05380586162209511,
- 0.07196412235498428, -0.004435620736330748, 0.10513833910226822, -0.06331458687782288,
- -0.053119976073503494, 0.08264046907424927, 0.07020803540945053, 0.051271289587020874,
- -0.04508737102150917, 0.07214823365211487, -0.009161668829619884, -0.1344355344772339,
- -0.06149047613143921, 0.1291683465242386, 0.08582129329442978, 0.0661659836769104,
- 0.009918274357914925, -0.07188834995031357, 0.043789174407720566, 0.117418073117733,
- 0.1517762392759323, -0.12320435792207718, -0.07656168192625046, -0.09056615829467773,
- -0.009161763824522495, 0.17080067098140717, 0.04490024968981743, -0.036462076008319855,
- -0.11830327659845352, -0.46115031838417053, -0.029049640521407127, 0.029567407444119453,
- 0.0036848150193691254, -0.08718352764844894, -0.12675358355045319, 0.032767415046691895,
- 0.08375640958547592, -0.08642347902059555, 0.04918258264660835, -0.006785627920180559,
- -0.08510148525238037, -0.07964210957288742, 0.07396388053894043, 0.010426037013530731,
- 0.07418348640203476, -0.08288124203681946, -0.01624181494116783, 0.034355852752923965
- ]
- },
- "flagged_dissimilar_incidents": null,
- "incident_id": 375,
- "nlp_similar_incidents": [
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 305,
- "similarity": 0.9905186295509338
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 134,
- "similarity": 0.9901010990142822
- },
- {
- "__typename": "IncidentNlp_similar_incident",
- "incident_id": 289,
- "similarity": 0.9900029301643372
- }
- ],
- "reports": [
- {
- "__typename": "Report",
- "authors": ["Anonymous"],
- "epoch_date_downloaded": 1666656000,
- "epoch_date_modified": 1667347200,
- "epoch_date_submitted": 1666656000,
- "flag": null,
- "report_number": 2193,
- "source_domain": "pantip.com",
- "submitters": ["Arthit Suriyawongkul"],
- "title": "สแกนหน้าคนละครึ่งไม่ผ่านทำยังไงดีค่ะ ติดต่อธนาคารแล้วธนาคารก็สแกนให้ไม่ได้อีก แบบนี้เราโดนตัดสิทธิ์หรอคะ",
- "url": "https://pantip.com/topic/41095012"
- },
- {
- "__typename": "Report",
- "authors": ["ฐานเศรษฐกิจ"],
- "epoch_date_downloaded": 1666656000,
- "epoch_date_modified": 1667347200,
- "epoch_date_submitted": 1666656000,
- "flag": null,
- "report_number": 2192,
- "source_domain": "thansettakij.com",
- "submitters": ["Arthit Suriyawongkul"],
- "title": "คนละครึ่งเฟส 4 สแกนหน้าไม่ผ่าน ทำไงดี สิ่งนี้ช่วยได้",
- "url": "https://www.thansettakij.com/economy/512550"
- },
- {
- "__typename": "Report",
- "authors": ["Thai PBS"],
- "epoch_date_downloaded": 1666656000,
- "epoch_date_modified": 1666656000,
- "epoch_date_submitted": 1666656000,
- "flag": null,
- "report_number": 2171,
- "source_domain": "thaipbs.or.th",
- "submitters": ["Arthit Suriyawongkul"],
- "title": "คิวล้น! ใช้รองเท้าต่อแถว สแกนใบหน้าไม่ผ่าน \"ชิมช้อปใช้\"",
- "url": "https://www.thaipbs.or.th/news/content/284846"
- }
- ]
- },
- {
- "AllegedDeployerOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "realpage",
- "name": "RealPage"
- }
- ],
- "AllegedDeveloperOfAISystem": [
- {
- "__typename": "Entity",
- "entity_id": "realpage",
- "name": "RealPage"
- },
- {
- "__typename": "Entity",
- "entity_id": "jeffrey-roper",
- "name": "Jeffrey Roper"
- }
- ],
- "AllegedHarmedOrNearlyHarmedParties": [
- {
- "__typename": "Entity",
- "entity_id": "apartment-renters",
- "name": "apartment renters"
- }
- ],
- "__typename": "Incident",
- "editor_dissimilar_incidents": [],
- "editor_similar_incidents": [],
- "embedding": {
- "__typename": "IncidentEmbedding",
- "from_reports": [2172, 2185, 2186, 2261, 2281],
- "vector": [
- -0.08279641717672348, 0.06975974962115288, -0.0032952122259302997, -0.10169017910957337,
- 0.07129819095134735, -0.043758175894618036, 0.009263621270656585, 0.046563750877976415,
- 0.09895858466625214, -0.1427817851305008, -0.016695892438292503, 0.02733589895069599,
- 0.044213345646858214, -0.02101261503994465, 0.010000833263620734, -0.042475225031375886,
- -0.08644063621759415, -0.034182654321193696, 0.0005668253055773675,
- -0.14148107320070266, -0.08373481184244155, 0.0017545638140290976, 0.014423749595880508,
- 0.13486543744802476, -0.01294541396200657, 0.00515550272539258, 0.10136889368295669,
- 0.13023019582033157, -0.0712154395878315, 0.05350570008158684, -0.04175990037620068,
- -0.05587991625070572, 0.12880219668149948, 0.02505607157945633, -0.018575594102730974,
- 0.09889833629131317, 0.012952480837702752, -0.05124709606170654, -0.002523857867345214,
- 0.000629197305534035, 0.05058000087738037, 0.24850584864616393, -0.002767443098127842,
- -0.007361266016960144, 0.04446223279228434, -0.03765314109623432, 0.005314997852838133,
- 0.034058597311377524, -0.020624756603501736, 0.024837865866720675, -0.03539011972025037,
- 0.05989304445683956, -0.02661437466740608, 0.04588469415903092, -0.1198394238948822,
- 0.044517263770103455, 0.04149044305086136, -0.014627027977257966, 0.019819525629282,
- -0.10251534134149551, -0.04239988913759589, -0.21282236278057098, -0.031161561235785486,
- -0.08985625430941582, 0.10361881107091904, -0.08318023830652237, -0.03743078894913197,
- 0.021978569868952035, -0.01019146223552525, 0.07026807814836503, 0.06912017092108727,
- -0.028726356104016304, -0.01571094412356615, 0.035428944416344164,
- -0.014599062595516443, -0.006278750114142894, 0.014592634700238704, 0.2088520348072052,
- -0.0898110255599022, 0.04739699587225914, 0.10527423918247222, -0.06823482960462571,
- 0.45710209012031555, 0.013140158960595727, -0.02839151434600353, -0.04691083133220673,
- 0.08271901458501815, 0.06324908137321472, 0.03842225968837738, 0.04231954962015152,
- -0.02487998401047662, 0.018619092577137054, -0.055912893265485764, 0.011720311595126987,
- 0.10784423351287842, 0.024811180122196675, -0.02526495112106204, 0.07008215934038162,
- -0.011772537138313055, -0.071595698595047, 0.020142678264528514, -0.06243758574128151,
- 0.08556296825408935, 0.04858679769095033, -0.032266476191580296, -0.005707932636141777,
- 0.055546099320054054, -0.06064771413803101, 0.039249764010310176, -0.0453802902251482,
- 0.014222407760098577, -0.01096740048378706, 0.07219153270125389, -0.002775846538133919,
- 0.030549289658665657, -0.028876252099871637, -0.007449073810130357,
- 0.019642786798067392, 0.07467813566327094, 0.009845068864524364, -0.03179854676127434,
- 0.05160464271903038, 0.06563842371106147, -0.04689116664230823, -0.04831665605306625,
- -0.04291266202926636, -0.056451134383678436, -0.0021442823112010957,
- -0.02431983035057783, 0.033564021438360216, -0.03427246324717999, -0.15924556106328963,
- -0.00562902056844905, 0.11890697181224823, -0.005036680027842522, -0.045318246260285376,
- -0.010082068480551242, -0.052551305294036864, 0.02388533968478441, 0.009440618241205812,
- 0.002017434500157833, 0.0676229365170002, 0.05227367952466011, 0.028612883761525154,
- 0.14668525457382203, 0.03584907669574022, -0.04396228156983852, -0.03639520108699799,
- -0.010754436999559403, -0.03747297748923302, 0.10406094491481781, -0.11241350471973419,
- -0.05895764827728271, -0.016647481033578514, 0.0038365632528439162, 0.6769919395446777,
- 0.08676385581493377, 0.16762118339538573, -0.0015157676301896573, -0.027468008548021318,
- 0.13739016205072402, 0.031192569062113762, 0.08407424688339234, -0.07253740653395653,
- -0.061200109869241716, 0.010550262033939361, -0.09089279621839523, -0.03732551634311676,
- 0.01842373264953494, 0.0022627763450145722, 0.11494859904050828, 0.0073987144860439,
- 0.07683844938874244, 0.009844795428216457, -0.09844242632389069, -0.020506542013026773,
- 0.039208469726145265, 0.016996320523321628, -0.12109556645154954, -0.020775427296757697,
- 0.016324982047080994, 0.07995882779359817, -0.08024862930178642, 0.00006240848451852799,
- -0.06442086398601532, 0.027247496834024786, -0.032167123561521294,
- 0.0066019813530147076, -0.006599757261574269, 0.0652036689221859, 0.04649088187143206,
- 0.07840785682201386, 0.02154400940053165, -0.12992603480815887, -0.08417325019836426,
- 0.12105380296707154, -0.02036009094445035, -0.02687107934616506, 0.0789236567914486,
- -0.09290429651737213, 0.05615967363119125, 0.009065852942876517, 0.1634155511856079,
- -0.10397803038358688, -0.02609149254858494, -0.01490748832002282, 0.039172901213169097,
- 0.06009929031133652, 0.01943325288593769, -0.07799601070582866, -0.056152201071381566,
- 0.0778935968875885, 0.05786044970154762, 0.09720161855220795, 0.010867421887814999,
- -0.04374190121889114, 0.036900416016578674, 0.0422263034619391, -0.012059650546871126,
- -0.045459752529859544, 0.06305242031812668, 0.009324278123676777, -0.037593535147607327,
- -0.014754523988813162, 0.01615037303417921, 0.05221324749290943, 0.027559376833960415,
- -0.005030846269801259, 0.04243292585015297, -0.013993094535544514, -0.06098435148596763,
- 0.044572535902261734, 0.056106624007225034, 0.017739696148782968, 0.09797789603471756,
- -0.07895430326461791, -0.05405084118247032, -0.056486645340919496, -0.0470257231965661,
- 0.011616713413968683, -0.027113432995975018, 0.07629801034927368, 0.08174845427274705,
- 0.06984219029545784, 0.017294891830533742, 0.039574958756566046, 0.06138166785240173,
- 0.008558919094502926, 0.04842755831778049, 0.04613911733031273, -0.04069076962769032,
- -0.012632717029191554, -0.023709741607308387, 0.0074459553696215154,
- 0.03789016753435135, 0.021444977028295398, -0.07008851245045662, -0.027923079393804073,
- -0.057632450759410855, -0.06382696330547333, -0.07204365879297256,
- -0.026446682587265968, -0.001476618554443121, 0.036887935176491735,
- -0.06485485360026359, -0.07700935304164887, -0.06421359702944755, 0.04398155994713306,
- 0.05573769100010395, -0.022324375808238983, -0.002479879930615425, -0.11193740367889404,
- 0.006378632038831711, 0.0023384416475892068, 0.06717331781983375, 0.00437577273696661,
- 0.03841895200312138, 0.01785396449267864, -0.020768432901240884, -0.0037732098251581194,
- 0.02862943448126316, -0.02480087149888277, -0.09447087049484253, -0.06336713507771492,
- -0.02715404611080885, 0.010632898937910796, 0.016221115738153456, -0.02905959221534431,
- 0.038663802295923234, 0.057924757897853854, 0.058545459806919095, 0.021142332442104818,
- -0.03913548700511456, 0.07702361643314362, -0.03380321860313416, -0.02932125637307763,
- 0.09393109977245331, -0.027742651477456092, 0.011223869770765305, -0.021535415761172773,
- -0.06459137760102748, -0.06065029725432396, -0.010042148642241955, -0.04477826543152332,
- 0.05474847257137298, -0.02210660632699728, -0.0032930721528828142,
- -0.060363000631332396, -0.009583146381191909, 0.03685230761766434, -0.06864533200860023,
- -0.09402407854795455, -0.09642117321491242, 0.12317973971366883, -0.006000437680631876,
- 0.0016691064462065696, 0.021592426858842374, -0.04517059028148651, 0.05847913399338722,
- -0.014601835701614618, 0.006523891631513834, 0.04357522539794445, 0.021624567382968963,
- -0.024145319079980253, 0.02821440938860178, 0.08050164505839348, -0.03386414609849453,
- 0.02047389033250511, 0.06588756442070007, 0.40982494354248045, -0.12497240453958511,
- 0.1053763598203659, 0.10368911176919937, 0.00629545405972749, 0.041037624888122085,
- -0.0473282665014267, 0.06783167645335197, 0.07116126418113708, 0.13481821566820146,
- 0.11654459238052368, -0.03789720050990582, 0.007265877805184573, -0.10124157965183259,
- 0.1034126564860344, 0.008028098801150917, 0.011629626480862498, 0.024524174630641937,
- -0.0670526683330536, -0.01882334128022194, 0.04812884107232094, -0.04579978100955486,
- -0.009875569480936975, -0.021025224437471478, -0.057351024448871614,
- 0.014709320571273565, 0.01119610401801765, 0.03589652720838785, -0.01656411071307957,
- 0.040288802701979876, -0.01119852772098966, 0.041409337893128395, -0.004922918695956469,
- 0.029514341428875924, -0.0935175321996212, 0.019242231640964745, -0.0949489340186119,
- -0.09902765303850174, 0.0918769434094429, -0.04012144319713116, 0.0290501968935132,
- 0.06005276814103126, -0.020899750851094724, 0.02818906418979168, 0.015794056467711926,
- -0.05012284778058529, 0.014849197352305055, 0.046297738701105116, 0.03687470629811287,
- 0.036067437194287774, 0.16896571218967438, -0.029595248773694037, -0.054265236109495164,
- -0.09506662040948868, 0.04297415874898434, 0.10145073384046555, 0.011294480925425888,
- 0.040297594107687476, 0.019026364758610727, -0.02074021250009537, 0.00706985155120492,
- -0.04964489750564098, -0.07342190891504288, 0.0006956262513995171, -0.05553238280117512,
- 0.06849624142050743, 0.02550206535961479, -0.029677019640803336, -0.1295202873647213,
- -0.018097277358174325, -0.048930615186691284, 0.031643770076334475, 0.1110703855752945,
- -0.029057310125790537, 0.05001655662199482, 0.002399820275604725, -0.033999659959226845,
- 0.01233989829197526, -0.09350412040948868, 0.010058407299220562, -0.07565297335386276,
- 0.03222569804638624, 0.08600445240736007, 0.048693133145570756, -0.05829692780971527,
- 0.061613401398062706, -0.12694144994020462, 0.030336289666593075, 0.04781061038374901,
- -0.04911455661058426, 0.025127461832016706, -0.046463416516780855, 0.028914234414696694,
- -0.0030610790476202966, -0.04278129413723945, -0.017239600699394942,
- -0.005925135500729084, -0.08398742601275444, -0.09502396732568741, -0.04681388232856989,
- -0.030326611921191217, -0.05675305649638176, 0.07049334868788719, -0.08921664506196976,
- 0.0015846609137952327, -0.020172033924609423, -0.017266487516462804,
- -0.0007604050915688276, 0.00540718988631852, -0.0013143382966518402,
- -0.1552376240491867, -0.005227051116526127, -0.00028836154378950594, 0.0572725135833025,
- -0.01852315440773964, -0.050942619889974596, 0.03543696589767933, 0.08484287559986115,
- 0.031756656698416916, -0.03586945668794215, 0.0048998826649039985, -0.05281438082456589,
- 0.05022378084468073, -0.07757263481616974, -0.3997806966304779, 0.055796945840120314,
- 0.02878757081925869, 0.05469586923718452, 0.023022462055087088, -0.10064781904220581,
- 0.05175628587603569, 0.008887388464063405, -0.057424909248948094, 0.08935141861438751,
- -0.04490976445376873, 0.038808712363243104, 0.006382272765040398, -0.046473632007837294,
- -0.029689688142389058, -0.0623414896428585, -0.04724512696266174, 0.04782409705221653,
- -0.03640209026634693, -0.05917513221502304, -0.11472048312425613, 0.032077090535312894,
- -0.004083719337359071, 0.008603144064545631, -0.007319261645898223,
- 0.029140892997384073, -0.06871642246842384, -0.05796861927956343, 0.029691958241164683,
- 0.05821425244212151, 0.034424303006380795, -0.05678277276456356, 0.01148349498398602,
- 0.022784136421978473, -0.029179518669843675, 0.1303839385509491, 0.006382841244339943,
- 0.02953025382012129, -0.08955903053283691, 0.09899898171424866, 0.0631013497710228,
- 0.18630564510822295, 0.010287085454910994, 0.0324370926246047, 0.027430031448602676,
- 0.1442062020301819, 0.03375895377248526, 0.024127567559480666, -0.03031282890588045,
- -0.0002786872442811728, 0.02319644559174776, -0.0046255675028078255,
- 0.08029584288597107, -0.06969859600067138, -0.00927218608558178, -0.053142832964658736,
- -0.051114429533481595, -0.03898216150701046, -0.039722845947835594, 0.195728999376297,
- 0.016308975778520106, 0.04391213804483414, 0.03255304507911205, -0.06629852131009102,
- 0.006823240779340267, -0.06295746341347694, -0.1018572986125946, -0.023700058553367855,
- -0.016706649214029312, 0.034247793909162286, -0.041558897495269774, -0.0963798239827156,
- -0.02087028995156288, 0.015509194368496538, -0.0013292139396071435, 0.128453853726387,
- -0.0192132119089365, 0.035182473622262476, -0.02702465755864978, 0.12106828689575196,
- 0.04052053280174732, 0.012813917174935342, 0.0567913219332695, 0.07943592686206102,
- 0.020563991367816926, 0.037730591371655464, -0.03529128059744835, -0.08037790358066559,
- 0.02405601805076003, 0.13651203513145446, -0.027267245436087252, 0.11378506124019623,
- 0.04425654709339142, -0.030441288277506827, -0.0739950567483902, 0.023075254540890454,
- 0.0006188341416418552, 0.06183828562498093, -0.4435006558895111, -0.022306678537279367,
- 0.09834508746862411, -0.007421869598329067, 0.02637921329587698, 0.08638264909386635,
- 0.03424849864095449, -0.039157890155911444, -0.007362368976464495, -0.07841397523880005,
- 0.11049012541770935, 0.033590286038815975, 0.05215516686439514, -0.09722494035959243,
- 0.026651131827384232, 0.10476814061403275, 0.007103161327540875, -0.012241087749134748,
- 0.04729101434350014, -0.23387742936611175, 0.017404020577669144, -0.036390266939997674,
- 0.1147855743765831, 0.008431580662727357, 0.023131639510393143, 0.0785008043050766,
- -0.0627609971910715, 0.03168223258107901, 0.044777050893753764, -0.0006621845066547393,
- 0.06479359194636344, -0.0454368531703949, -0.04185091629624367, 0.10212206691503525,
- 0.09076613187789917, 0.10849048048257828, -0.010440176725387574, 11.969647216796876,
- 0.07979914397001267, 0.06758729368448257, -0.10209406167268753, 0.03949635867029429,
- -0.024778579361736774, 0.03349986430257559, -0.07718949913978576, 0.05532747507095337,
- 0.120082426071167, -0.030278341518715023, -0.07682740241289139, -0.05743447430431843,
- -0.0894029513001442, 0.006973473355174065, -0.05996705144643784, -0.05623776689171791,
- -0.034630881249904634, 0.03572114184498787, -0.04100460447371006, -0.03119755331426859,
- 0.024498629849404097, 0.0549822174012661, 0.012011406198143958, -0.08373647630214691,
- 0.028432943671941758, 0.047748977690935133, -0.011918306723237038, -0.00561829749494791,
- 0.018501219525933265, 0.009347004257142544, 0.024448689073324203, 0.08150012493133545,
- 0.015837153093889354, 0.06383177526295185, 0.040577151253819464, 0.08700602352619172,
- 0.05756077766418457, 0.022014965862035753, 0.07242866531014443, 0.014188663009554148,
- 0.019623271096497773, -0.005579646490514278, 0.05416142493486405, 0.05166938453912735,
- 0.01990846246480942, 0.0401779668405652, 0.09588559567928315, 0.03347660191357136,
- 0.0943971797823906, 0.093341363966465, -0.027138294652104378, 0.10289158672094345,
- 0.015558367688208818, -0.0042961443774402145, 0.05777075290679932,
- 0.0013328484492376447, -0.08178291246294975, 0.0776260994374752, -0.008952760137617588,
- -0.04356628879904747, 0.11596939712762833, 0.023250281251966952, 0.12266522049903869,
- 0.038505461625754835, 0.0738873191177845, 0.05207411199808121, 0.07369830980896949,
- -0.13763097524642945, -0.08046966567635536, 0.012537779845297